Portfolio Assignment 3 - Preprocessing and Sentiment Analysis¶
In [ ]:
# import packages
import json
import string
import nltk
from nltk.tokenize import word_tokenize
import re
from nltk.stem import WordNetLemmatizer
from transformers import AutoTokenizer, AutoModelForSequenceClassification
import torch
import numpy as np
import pandas as pd
from datetime import datetime
import seaborn as sns
import matplotlib.pyplot as plt
import urllib.request
import csv
from scipy.special import softmax
Loading in data¶
In [ ]:
# loading the data in for liberals
with open('reddit_data_new/democrat_comments.json') as f:
data_lib = json.load(f)
# loading the data in for conservative
with open('reddit_data_new/republican_comments.json') as f:
data_con = json.load(f)
Preparing the twitter-roberta-base model for sentiment analysis¶
In [ ]:
# load the model in and specify its task as sentiment
task='sentiment'
MODEL = f"cardiffnlp/twitter-roberta-base-{task}"
# load huggingface's tokenizer
tokenizer = AutoTokenizer.from_pretrained(MODEL)
model = AutoModelForSequenceClassification.from_pretrained(MODEL)
# Preprocess text (username and links)
def preprocess(text):
new_text = []
for t in text.split(" "):
t = '@user' if t.startswith('@') and len(t) > 1 else t
t = 'http' if t.startswith('http') else t
new_text.append(t)
return " ".join(new_text)
# map the numeric labels onto negative, neutral and positive from a document
labels=[]
mapping_link = f"https://raw.githubusercontent.com/cardiffnlp/tweeteval/main/datasets/{task}/mapping.txt"
with urllib.request.urlopen(mapping_link) as f:
html = f.read().decode('utf-8').split("\n")
csvreader = csv.reader(html, delimiter='\t')
labels = [row[1] for row in csvreader if len(row) > 1]
# look at labels
print("Labels:", labels)
Labels: ['negative', 'neutral', 'positive']
Extract comments from the json-file, which contains comments from r/conservative¶
In [ ]:
# Get comments from the "comment" column, including submission_id
def extract_comments(data_con):
comments_with_timestamps = []
for entry in data_con: # Loop through each object in the JSON
if "comment" in entry and "created" in entry and "submission_id" in entry: # Check if all keys exist
comments_with_timestamps.append({
"comment": entry["comment"],
"created": entry["created"], # Extract the created timestamp
"submission_id": entry["submission_id"] # Extract the submission ID
})
return comments_with_timestamps
# Use the function
text = extract_comments(data_con)
# Let's see what it looks like
for comment in text:
print(comment)
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-18 23:13:31', 'submission_id': '1guh6id'}
{'comment': "We are witnessing the culture changing in a very positive direction and I love it.\n\nI'm not tired of winning yet.", 'created': '2024-11-18 23:23:38', 'submission_id': '1guh6id'}
{'comment': 'Too bad he is kind of a terrible person at times.', 'created': '2024-11-18 23:44:19', 'submission_id': '1guh6id'}
{'comment': "There was another post of his followings, and he didn't have Trump at ALL but had kamala and wals . So he is definitely pandering for sure, and he is a piece of shit also. Prolly is trying to secure a pardon imo fuck jon jones. I used to be a huge fan of his", 'created': '2024-11-18 23:33:44', 'submission_id': '1guh6id'}
{'comment': "Don't be petty like the left dude. This was a great moment.", 'created': '2024-11-18 23:37:03', 'submission_id': '1guh6id'}
{'comment': "Bro, I assure you I'm not, but Jones is not the guy we want", 'created': '2024-11-18 23:47:17', 'submission_id': '1guh6id'}
{'comment': "My brotha, this was a good thing and it was a huge step in a positive direction, even Trump was once a Democrat,people change. \n\nDon't hold people doing the right thing today in contempt for past transgressions, my man that's a signature move of the left and we are SO much better than they are 🤜🤛🇺🇲🇺🇲🇺🇲", 'created': '2024-11-18 23:53:08', 'submission_id': '1guh6id'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-18 22:05:44', 'submission_id': '1gufjhm'}
{'comment': 'Finally! Why does doing the right thing take so long?', 'created': '2024-11-18 22:15:53', 'submission_id': '1gufjhm'}
{'comment': 'But will the Democrats really follow those pesky courts.\n\nEspecially since they think the courts have been overrun by conservative judges (which they have not in Pennsylvania).', 'created': '2024-11-18 22:15:45', 'submission_id': '1gufjhm'}
{'comment': 'Looks like the real election deniers and insurrectionists are rearing their ugly heads.', 'created': '2024-11-18 23:06:22', 'submission_id': '1gufjhm'}
{'comment': "Dems know if they lose this seat, they're cooked in 2026.\xa0", 'created': '2024-11-18 22:16:37', 'submission_id': '1gufjhm'}
{'comment': 'They are all about screaming democracy - u til they aren’t.', 'created': '2024-11-18 23:44:00', 'submission_id': '1gufjhm'}
{'comment': 'Great. Now, federal charges!', 'created': '2024-11-18 23:29:35', 'submission_id': '1gufjhm'}
{'comment': 'That’s great news!!!!', 'created': '2024-11-18 23:08:25', 'submission_id': '1gufjhm'}
{'comment': 'The Democrat Bucks County Commissioners needs to be held accountable for their attempt to facilitate election fraud. 😡👍', 'created': '2024-11-18 22:19:39', 'submission_id': '1gufjhm'}
{'comment': 'The Democrat Bucks County Commissioners needs to be held accountable for their attempt to facilitate election fraud. 😡👍', 'created': '2024-11-18 22:19:21', 'submission_id': '1gufjhm'}
{'comment': 'I hope a lot of cheaters get made an example of in the next few years', 'created': '2024-11-18 22:34:41', 'submission_id': '1gufjhm'}
{'comment': 'Absolutely!', 'created': '2024-11-18 23:08:34', 'submission_id': '1gufjhm'}
{'comment': 'Throw them in jail. Make an example of them.', 'created': '2024-11-18 22:46:40', 'submission_id': '1gufjhm'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-18 20:20:35', 'submission_id': '1gud065'}
{'comment': 'Fingers crossed that this focuses on the violent offenders, terrorist supporters, and gang affiliated as a first priority.', 'created': '2024-11-18 22:05:44', 'submission_id': '1gud065'}
{'comment': 'Finally, as a NYC citizen it’s gotten so out of hand here. My gf is a mexican immigrant, with a full visa and even she agrees get these people out, it’s not fair to people following the rules', 'created': '2024-11-18 22:03:46', 'submission_id': '1gud065'}
{'comment': 'Good', 'created': '2024-11-18 20:58:06', 'submission_id': '1gud065'}
{'comment': 'I love it', 'created': '2024-11-18 20:29:23', 'submission_id': '1gud065'}
{'comment': 'Fine by me, why should I care about people who don’t care about American values or about the other people that live here?', 'created': '2024-11-18 21:56:12', 'submission_id': '1gud065'}
{'comment': 'Good\n, it’s what the people want and he represents the people', 'created': '2024-11-18 20:32:09', 'submission_id': '1gud065'}
{'comment': 'Listen, I\'m a Dallas Cowboys fan and the last time I heard "We\'re all-in!", they left millions disappointed in that statement midway through the season. PLEASE for the love of all that\'s holy, do NOT make Jerry Jones\' aka Al Davis 2.0, same mistake and do nothing to improve the team, in this sense country. We already had 4 years of Hidin Bidin and Horrible Harris!', 'created': '2024-11-18 20:43:35', 'submission_id': '1gud065'}
{'comment': 'As a European, can we borrow Trump for a week and have him do it here too?', 'created': '2024-11-18 22:21:55', 'submission_id': '1gud065'}
{'comment': 'Deportations of those in country illegally need to happen, but would be a very bad look and probably lead to big PR night are given who will control the narrative, flipping Congress in the midterms and then another round of impeach,ent and perhaps restricting military appropriations so such activity cannot happen. Perhaps couple it with legislation to both tighten the border and make LEGAL immigration much easier', 'created': '2024-11-18 23:45:45', 'submission_id': '1gud065'}
{'comment': 'Good man.', 'created': '2024-11-18 20:39:51', 'submission_id': '1gud065'}
{'comment': 'How is 20 million people entering the country not an emergency?', 'created': '2024-11-18 22:12:13', 'submission_id': '1gud065'}
{'comment': 'Hallelujah!', 'created': '2024-11-18 21:00:40', 'submission_id': '1gud065'}
{'comment': 'I think it will be an intelligent deportation \n\nThere is a severe shortage of construction workers \n\nThere is a severe shortage of farm workers \n\nI saw a study recently that those without college education are a net drain and those with a college education are a net positive. Canada learned that a long time ago and has a preferential immigration policy\n\nYou start with those with felonies and those who are living on the dole/not working and those who have not entered the country and those who are a drain etc\n\nI think the biggest value will be it will cause people to think twice about crossing the border', 'created': '2024-11-18 21:58:07', 'submission_id': '1gud065'}
{'comment': 'Thank GOD', 'created': '2024-11-18 22:07:26', 'submission_id': '1gud065'}
{'comment': 'When the dogs get out of the kennel and shit everywhere you gotta break out the big tools to clean that shit up.', 'created': '2024-11-18 22:07:39', 'submission_id': '1gud065'}
{'comment': 'Good! It’s what he ran on. It’s what people want!', 'created': '2024-11-18 21:23:11', 'submission_id': '1gud065'}
{'comment': "I almost can't stand all this winning!", 'created': '2024-11-18 21:25:07', 'submission_id': '1gud065'}
{'comment': "I already voted for Trump. You don't have to convince me at this point 🤣", 'created': '2024-11-18 22:18:20', 'submission_id': '1gud065'}
{'comment': 'Good.', 'created': '2024-11-18 21:16:33', 'submission_id': '1gud065'}
{'comment': 'And the housing crisis and soaring rent prices ARE GONE\n\nPoof', 'created': '2024-11-18 21:40:56', 'submission_id': '1gud065'}
{'comment': 'American Citizens First. Immigrants are welcome through the front door.', 'created': '2024-11-18 22:32:45', 'submission_id': '1gud065'}
{'comment': 'Bravo. At least SOMEone was listening.', 'created': '2024-11-18 21:17:49', 'submission_id': '1gud065'}
{'comment': 'Can this emergency be used to set in his cabinet picks?', 'created': '2024-11-18 22:38:31', 'submission_id': '1gud065'}
{'comment': "Well seeing as how they already deport people if they commit a felony, this really doesn't apply to them.\n\nI was a police officer in Houston, if an illegal immigrant committed a felony there were deported.", 'created': '2024-11-18 22:40:04', 'submission_id': '1gud065'}
{'comment': 'He’s said many times it will, I don’t think we have the resources to deport all illegal immigrants at the same time, but you gotta start somewhere.', 'created': '2024-11-18 22:13:11', 'submission_id': '1gud065'}
{'comment': 'It’s insane that you don’t realize that they’re going to deport your GF too', 'created': '2024-11-18 23:05:25', 'submission_id': '1gud065'}
{'comment': "We are it position to make great changes for the better... or an epic disaster. I'm going with great changes. 😁👍", 'created': '2024-11-18 20:47:21', 'submission_id': '1gud065'}
{'comment': 'This is my favorite comment! 🤣', 'created': '2024-11-18 22:18:22', 'submission_id': '1gud065'}
{'comment': 'Man feel for you guys, its getting crazy there from what I heard', 'created': '2024-11-18 23:25:51', 'submission_id': '1gud065'}
{'comment': "I'm sure he has a few choice words to offer the lost officials there. 😆", 'created': '2024-11-18 22:27:16', 'submission_id': '1gud065'}
{'comment': 'Used to be called an invasion', 'created': '2024-11-18 22:14:46', 'submission_id': '1gud065'}
{'comment': 'Sounds like an invasion. 🤔', 'created': '2024-11-18 22:15:28', 'submission_id': '1gud065'}
{'comment': 'If 20m isn’t a invasion I want to know what is', 'created': '2024-11-18 23:18:18', 'submission_id': '1gud065'}
{'comment': 'Absolutely, we also need to go after people hiring illegal immigrants if we want things to change.', 'created': '2024-11-18 22:16:57', 'submission_id': '1gud065'}
{'comment': 'How does this change that?', 'created': '2024-11-18 22:04:30', 'submission_id': '1gud065'}
{'comment': 'What about the guy who killed Laken Riley? Is he gonna be in a US prison or his home country prison? Just curious how it all works', 'created': '2024-11-18 23:20:42', 'submission_id': '1gud065'}
{'comment': "Texas is good about these things, but we have sanctuary states that don't deport felons (as far as I'm aware.)", 'created': '2024-11-18 22:44:31', 'submission_id': '1gud065'}
{'comment': 'it’s insane that you think they’re going to deport immigrants with visas when there’s 20 million+ illegals here without visas…. She’s fine.', 'created': '2024-11-18 23:21:56', 'submission_id': '1gud065'}
{'comment': "It's insane that you don't realize having a visa means they are here legally. This isn't a visa credit card we're talking about. This has only ever been about undocumented, thus illegal immigrants.", 'created': '2024-11-18 23:23:41', 'submission_id': '1gud065'}
{'comment': 'She has a visa', 'created': '2024-11-18 23:11:51', 'submission_id': '1gud065'}
{'comment': 'It’s insane that you probably are one of those illegals WITHOUT a visa that will be deported.', 'created': '2024-11-18 23:31:22', 'submission_id': '1gud065'}
{'comment': 'You don’t understand how visas work… lol', 'created': '2024-11-18 23:24:16', 'submission_id': '1gud065'}
{'comment': 'It sure does feel like it will be one of the other.', 'created': '2024-11-18 22:17:51', 'submission_id': '1gud065'}
{'comment': "finally a sane idea.\n\nI've been saying for years if politicians where serious about deportation and the border they would give jail time for hiring an illegal.\n\nI guarantee if you give a year in jail for every illegal immigrant you hire. They would instantly all leave and stop coming here.\n\nBut to many companies have interest groups that pay politicians that prevent them from fixing the border.\n\nThey always say they will do something then never do because companies who donate to their super PAC like hiring illegal immigrants. \n\nAn emergency order is for an emergency and they will just come back, it's stupid and a misuse of the power. If they solve the actual issue of companies hiring these people it would be solved and stay solved.\n\nI honestly don't think trump will follow through on this. Nobody ever does.\n\n\nEdit: oh and after they thrownthe first house wife in jail for hiring an illegal cleaning lady in jail for a year, I guarantee 50% of them would be gone before the year is over.", 'created': '2024-11-18 22:33:49', 'submission_id': '1gud065'}
{'comment': 'Less demand for housing = higher supply = lower costs', 'created': '2024-11-18 22:07:08', 'submission_id': '1gud065'}
{'comment': 'It won’t change the housing market that drastically, at least I don’t think it will, but supply and demand man. Less demand (illegal immigrants have to live somewhere right?) should lower the price of houses somewhat.', 'created': '2024-11-18 22:19:22', 'submission_id': '1gud065'}
{'comment': "It depends on the crime... Normally they get deported after they serve the sentence if it's a violate crime.\n\nIf it's a non violent crime they normally will just deport them because it's just a waste of space and you can't exactly put them on probation.\n\n\nIt's up to the country they get arrested in to enforce the punishment.\n\n\nThey normally would get banned from the country for x amount of years or something also of course that's not really helpful for someone who comes here illegally. But they are flagged when their name is ran by police or finger printed that they need to be deported etc.", 'created': '2024-11-18 23:28:05', 'submission_id': '1gud065'}
{'comment': "Houston was a sanctuary city. We weren't allowed to do anything to undocumented people. Even if they commit a misdemeanor.\n\nOnly felonies or prior felonies for kicked out.", 'created': '2024-11-18 22:45:46', 'submission_id': '1gud065'}
{'comment': 'Visa credit card 😂😂 man I hope he doesn’t think that', 'created': '2024-11-18 23:27:49', 'submission_id': '1gud065'}
{'comment': 'I would expect it to be the opposite honesty.\n\nBy getting rid of cheap labor undocumented labor would make it more difficult to build cheap houses.\n\nAn illegal immigrant can\'t purchase a house, they require IDs, credit etc, so most of them are probably living with someone else. Meaning it probably won\'t "free" up many properties.\n\nI would imagine this only having a net negative impact on housing costs, even if illegals aren\'t working in construction, they might be picking up trash, or landscaping, all of which means HOAs having to hire more expensive workers.\n\nI don\'t see a scenario that this helps reduce housing costs.. I could maybe see it having NO effect, but Ive always seen most illegals working in construction or service type jobs.\n\nMmaaybee more apartments, but no where I would want to live.', 'created': '2024-11-18 22:15:57', 'submission_id': '1gud065'}
{'comment': "My understanding the price of housing is high because of zoning restrictions and rich assholes.\n\nRich guys especially in other countries love buying up houses as a way to protect their money. They tend to pay whatever the asking price is for just to hide their money from their country because America is a stable country and real estate always goes up.\n\nZoning restrictions are sort of weird, but also prevents many locations from being built because of weird rules, and nobody really wants to change it because it would cause real estate values to drop.\n\nI dont really understand it, America has a crazy high price for houses while other countries have TO many houses often. It's kinda of weird. I think because Americans tend to want to live in houses instead of apartments maybe?\n\n\nAnd like I stated above, I don't think many illegals immigrants can buy or even rent. Most are likely living with someone", 'created': '2024-11-18 22:25:11', 'submission_id': '1gud065'}
{'comment': 'That’s not happening right now. Because sanctuary cities have laws on the books that prevent local law enforcement to disclose release date to the Feds.', 'created': '2024-11-18 23:37:37', 'submission_id': '1gud065'}
{'comment': "Trust that whatever the government says, the opposite is true. If we're told Trump will bring down costs and reduce crime, the opposite will be true. Especially when idiots are in charge.", 'created': '2024-11-18 22:40:49', 'submission_id': '1gud065'}
{'comment': 'The Consolidated Appropriations Act of 2023 spent \n\n$650 million on housing illegals in 2024\n\n$363 million on housing illegals in 2023 \n\nPlus some of the larger sanctuary cities are offering housing assistance + they get food assistance + they get $750 transportation vouchers plane or bus + religious organizations have been pouring money into it \n\nThe wording “undocumented immigrant” doesn’t actually mean they don’t have documentation it’s just a nicer way to say “illegal alien” which has been the politically correct way of identifying them for over a century \n\nSome states like Washington is allowing illegals to get I’d with no proof of identity \n\nIt’s a organized effort across the country to implant these people everywhere \n\nDemocrats know you can’t catch them all, the ones that make it and have kids here will eventually become democrat voters \n\nIt’s a political game democrats don’t give AF about these people getting raped and murdered coming here. And the citizen victims of future illegal immigration crime. The families getting separated and children being used as tools to enter. \n\nWe spent billions getting them here and we’re going to spend 10x getting them back home', 'created': '2024-11-18 23:34:23', 'submission_id': '1gud065'}
{'comment': 'Not sure what your referencing but we would literally take the person to ICE and put them on a bus when we deported them they were gone in a matter of hours. If they had a deportation flag or felony on their record.\n\nWe also would also escort prisoners from jail to ICE when released if they needed to be deported.\n\nHouston was a sanctuary city. I don\'t know about other cities, but my understanding cities only have so much protection they can give.\n\n\nFor example we didn\'t deport someone for just not having an "ID" or we accepted Mexican IDs which they always freaking had.\n\nBut if they commited a serious crime it was a different story, they got their ass deported. Like I said if it was a felony. Traffic ticket? No. Even assault? If it wasn\'t a felony assault they did not get deported.\n\nWe didnt not document any interactions with illegal immigrant, but we did write a report if they got deported.', 'created': '2024-11-18 23:44:18', 'submission_id': '1gud065'}
{'comment': "Huh? I'm not sure what that has to do with the topic.\n\nEdit: and trump is the government.", 'created': '2024-11-18 22:41:49', 'submission_id': '1gud065'}
{'comment': "I was a police officer in a sanctuary city, Houston.\n\nI'm not sure about the act you listed but illegal immigrants do not qualify for SNAP or housing assistance or anything. \n\nWhen I say illegal immigrant, I'm reference people who cross the border illegally and work here or something.\n\n\nHowever, they do give money to people who are undocumented and food stamps. \n\nWhen I say undocumented I am referring to someone who normally comes here without a passport and unexpectedly. Normally seeking asylum.\n\nIn order to seek asylum you need to first come here and stay without any documentation often and apply for it. They often are given handouts to help them when they first get here while their case is looked at. Only people from certain countries and situations can apply for asylum.\n\n\nI understand it's a bit confusing but just because someone is here with no id or passport doesn't make them here illegally. They are in a sort of purgatory while they go through the legal system.\n\n\nMost illegals actually pay taxes, and few commit crimes their crime rate is slightly lower then the average American. It's hard to avoid sales tax when you buy something or property tax when it's included in your rent. \n\nIf your hiding from the government, committing a crime makes you stand out and they try to avoid that.\n\n\nAnd yes many states and cities IE Houston did not require an ID. Well we couldn't arrest someone for not having an ID. And we accepted Mexican IDs which where basically just printed on a sheet on paper and had no verification.\n\n\nI am not sure what you mean by an organized effort to get them here. There was nothing like that happening around me.", 'created': '2024-11-18 23:58:59', 'submission_id': '1gud065'}
{'comment': 'In 2014, New York City council passed local laws limiting the ability of the Department of Corrections (“DOC”) and NYPD to honor detainers. In practice, the City still cooperates with ICE in situations involving certain felonies, providing notification and helping ICE arrest the person inside the DOC facility.\n\nTimes have changed, I’m not saying all cities but there are laws on the books in certain areas limiting what information the local cops can share with ice \n\nSpecifically release dates. A detainer is no good if the city doesn’t honor it and ice doesn’t know when they are being released to take the hand off \n\nIdk if you heard of the immigrants that jumped the cops in nyc were released on bond. One no $ bond and one 25k bond', 'created': '2024-11-18 23:51:10', 'submission_id': '1gud065'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-18 18:23:01', 'submission_id': '1gua2me'}
{'comment': "So he's draining the swamp by putting in a bunch of millionaires and billionaires in the White House?", 'created': '2024-11-18 20:05:53', 'submission_id': '1gua2me'}
{'comment': "RINOS in President's Trump's inner circle betrayed him and the voters once already.\n\n We won't get fooled again.", 'created': '2024-11-18 23:27:28', 'submission_id': '1gua2me'}
{'comment': 'Sounds like an excellent strategy. Elon and Vivek are already rich. They are not coming in to get rich like the Establishment.\xa0', 'created': '2024-11-18 20:21:12', 'submission_id': '1gua2me'}
{'comment': "That's exactly what they are going to do. Enrich themselves.", 'created': '2024-11-18 20:23:23', 'submission_id': '1gua2me'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-18 17:44:38', 'submission_id': '1gu944z'}
{'comment': "Only 86% of Republicans? I guess 14% of us believe in mutilating kids and that doesn't sit well with me.", 'created': '2024-11-18 17:52:40', 'submission_id': '1gu944z'}
{'comment': 'We need a reform in the healthcare system asap .', 'created': '2024-11-18 17:56:51', 'submission_id': '1gu944z'}
{'comment': "And it shouldn't sit well with anyone. 😡", 'created': '2024-11-18 17:56:32', 'submission_id': '1gu944z'}
{'comment': 'Well it\'s a poll. What are they actually worth? Judging on how Trump was behind in nearly every poll going into election day, they\'re worth not much of anything. As my dad always says, "Figures don\'t lie, but liars can figure."', 'created': '2024-11-18 18:00:14', 'submission_id': '1gu944z'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-18 17:28:13', 'submission_id': '1gu8pso'}
{'comment': 'They straight up admitted to not following the judges orders.', 'created': '2024-11-18 17:34:07', 'submission_id': '1gu8pso'}
{'comment': 'Always remember that Democrats are merely petulant children in adult bodies…', 'created': '2024-11-18 17:47:08', 'submission_id': '1gu8pso'}
{'comment': "And I saw a report that he didn't disagree with what they were doing.\n\n6 months in prison and a $100,000 fine might be in order", 'created': '2024-11-18 17:43:00', 'submission_id': '1gu8pso'}
{'comment': 'Even the New York Times and the Washington Post are against them. They never going to get away with it. In my opinion, they’re just making itself look like bigger asses than they already are.', 'created': '2024-11-18 19:39:26', 'submission_id': '1gu8pso'}
{'comment': "I'm ashamed to be apart of Bucks County. 😬", 'created': '2024-11-18 18:11:03', 'submission_id': '1gu8pso'}
{'comment': 'IMO there need to be some Federal lawsuits regarding election fraud in a number of states, including Arizona, California, Michigan, New Mexico, and Pennsylvania.\n\nMaybe the answer is Federal oversight of their elections for a few decades, as was done in southern states.', 'created': '2024-11-18 19:15:35', 'submission_id': '1gu8pso'}
{'comment': 'Insurrection!!\n\nThe Democratic Election Officials for the State of Pennsylvania are willfully trying to overturn the legally approved results showing they lost. This also despite a Federal ruling by SCOTUS on this very issue.', 'created': '2024-11-18 20:12:48', 'submission_id': '1gu8pso'}
{'comment': 'At least it answers one question. Do PA Democrats engage in fraud? Sure, they do, admitted it on tv.', 'created': '2024-11-18 19:46:44', 'submission_id': '1gu8pso'}
{'comment': 'They need to be locked up', 'created': '2024-11-18 21:00:49', 'submission_id': '1gu8pso'}
{'comment': 'Not surprising coming from Democrats', 'created': '2024-11-18 20:53:52', 'submission_id': '1gu8pso'}
{'comment': 'Will they!? Or will the gop do what it usually does, nothing?', 'created': '2024-11-18 20:25:25', 'submission_id': '1gu8pso'}
{'comment': 'Thus earing themselves a swift judicial ass kicking... 😆', 'created': '2024-11-18 17:35:44', 'submission_id': '1gu8pso'}
{'comment': 'You have my sympathy... 👍', 'created': '2024-11-18 18:13:27', 'submission_id': '1gu8pso'}
{'comment': 'Bedford County here. I’m ashamed of the tools in office in Bucks County.', 'created': '2024-11-18 20:54:10', 'submission_id': '1gu8pso'}
{'comment': 'Yes... Less focus on DEI and more on election integrity. 😁', 'created': '2024-11-18 19:28:05', 'submission_id': '1gu8pso'}
{'comment': 'Enough with the negativity, we get enough of that from the left... 😡', 'created': '2024-11-18 20:29:17', 'submission_id': '1gu8pso'}
{'comment': 'You have too much faith in the scam, I mean, the judicial system', 'created': '2024-11-18 18:55:41', 'submission_id': '1gu8pso'}
{'comment': 'Ditto Scumerset County.', 'created': '2024-11-18 21:23:25', 'submission_id': '1gu8pso'}
{'comment': 'DEI: Democrat Election Interference', 'created': '2024-11-18 21:15:23', 'submission_id': '1gu8pso'}
{'comment': 'If we don’t hold ourselves to account, we can’t count on anyone else to do so.', 'created': '2024-11-18 20:39:30', 'submission_id': '1gu8pso'}
{'comment': "I'm going with...\n\nThe times they are a changing. 😁", 'created': '2024-11-18 19:09:50', 'submission_id': '1gu8pso'}
{'comment': '🤣 I have NEVER heard it called that & my sis lives in that county. LOL', 'created': '2024-11-18 22:32:38', 'submission_id': '1gu8pso'}
{'comment': 'Nice one 👍', 'created': '2024-11-18 21:16:17', 'submission_id': '1gu8pso'}
{'comment': 'My family takes gets big amusement from fracturing names. (PS: half of them are in Bedford. )', 'created': '2024-11-18 23:00:04', 'submission_id': '1gu8pso'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-18 17:15:17', 'submission_id': '1gu8egh'}
{'comment': 'Wooopi is probably pissed that she didn’t get paid as much as Oprah', 'created': '2024-11-18 17:21:18', 'submission_id': '1gu8egh'}
{'comment': 'I heard on a podcast that the major donors are incredibly pissed and think they got bamboozled. I do not expect the big checks to continue to come in now. The democrats are in BIG trouble moving forward.', 'created': '2024-11-18 17:19:36', 'submission_id': '1gu8egh'}
{'comment': 'When you have to buy your way in past the velvet rope but still can’t pass it. I’m guessing Oprah ain’t big on refunds.', 'created': '2024-11-18 17:19:22', 'submission_id': '1gu8egh'}
{'comment': 'The sugar buzz has definitely wore off.\nRemember their silly behavior in July ?', 'created': '2024-11-18 17:30:05', 'submission_id': '1gu8egh'}
{'comment': "Imagine being a billionaire and still asking for money.\n\n\nTrump was a billionaire before he took office in his 1st term. He didn't accept his salary and choose to donate them.", 'created': '2024-11-18 20:23:28', 'submission_id': '1gu8egh'}
{'comment': "The Harris campaign spent $9000 on ice cream and $15,000 on food delivery during the 15 weeks. They're so out of touch with the working class. I'm so happy that they lost.", 'created': '2024-11-18 19:28:20', 'submission_id': '1gu8egh'}
{'comment': 'Do they realize Oprah has been off TV for years? Anyone that could possibly care what Oprah thinks was probably voting Harris anyway. Same with all the other entertainers, did they really think they were going to flip a republican by trotting out Megan the Stallion or Cardi B ?', 'created': '2024-11-18 20:46:05', 'submission_id': '1gu8egh'}
{'comment': "She spent so much money on celebrities wtf even was this campaign dude.\n\nShe has literal constituents in North Carolina who voted her and Biden into office that received little to no aid. Instead of giving away free money to already multimillionaire celebrities why not help the American people? I understand people might say she's buying votes but surely there's better ways to spend $2.5m rather than giving it to Oprah Winfrey.\n\nAlso wtf was the campaign plan? Just give money to already liberal celebs and expect votes?", 'created': '2024-11-18 18:58:46', 'submission_id': '1gu8egh'}
{'comment': 'Wow…. did we dodge a bullet, or what?', 'created': '2024-11-18 22:35:40', 'submission_id': '1gu8egh'}
{'comment': 'They had to burn through all that money or lose it right?', 'created': '2024-11-18 20:00:25', 'submission_id': '1gu8egh'}
{'comment': 'Well employees discussing wages is a right enshrined in labor law 😂', 'created': '2024-11-18 17:39:36', 'submission_id': '1gu8egh'}
{'comment': 'I wonder if they will sue for misappropriation of donations?', 'created': '2024-11-18 17:37:40', 'submission_id': '1gu8egh'}
{'comment': 'Major donors once bitten, twice shy. 😁👍', 'created': '2024-11-18 17:22:19', 'submission_id': '1gu8egh'}
{'comment': 'They probably had hundreds of young staffers and volunteers that could’ve went to pick up all that food and saved half in delivery fees alone. Not very fiscally responsible', 'created': '2024-11-18 20:42:09', 'submission_id': '1gu8egh'}
{'comment': 'Shhh... Never interrupt the other side when they are screwing the pooch. 😆', 'created': '2024-11-18 20:51:02', 'submission_id': '1gu8egh'}
{'comment': 'Saving the democrats from a themselves is a tough job, but someone has to do it. 😁', 'created': '2024-11-18 22:37:32', 'submission_id': '1gu8egh'}
{'comment': "They probably can't, but a major democratic fundraiser who raised millions of dollars for the election said her donors were incredibly upset that Beyonce got $10M, Eminem got $1.8M, Lizzo got $3M, Harpo got $1M, and they build a $100,000 set for Call Her Daddy. It is inexcusable waste fraud and abuse. Just imagine if you are a small donor who works hard for your money just to find out that these millionaires and billionaires got so much to do so little for the campaign. We are extremely lucky as a country that Kamala lost.", 'created': '2024-11-18 17:41:03', 'submission_id': '1gu8egh'}
{'comment': 'We have 2 years to see, the dems are going to be in big trouble financially for the midterms.', 'created': '2024-11-18 17:38:45', 'submission_id': '1gu8egh'}
{'comment': 'I didn’t realize they hired Great White too…', 'created': '2024-11-18 20:37:36', 'submission_id': '1gu8egh'}
{'comment': 'How the fuck did Lizzo get paid more than Eminem?', 'created': '2024-11-18 19:59:50', 'submission_id': '1gu8egh'}
{'comment': "They may still be paying Horrible Harris's campaign bills then... 😆", 'created': '2024-11-18 17:49:39', 'submission_id': '1gu8egh'}
{'comment': 'Was a pretty good song... 😁', 'created': '2024-11-18 20:39:00', 'submission_id': '1gu8egh'}
{'comment': 'Asking the real questions. I demand a senate inquiry!', 'created': '2024-11-18 20:10:25', 'submission_id': '1gu8egh'}
{'comment': 'Well the article does say the democratic party is $20mil in debt 🤣', 'created': '2024-11-18 17:50:40', 'submission_id': '1gu8egh'}
{'comment': "And... I'm betting they aren't reporting all of the money they have wasted on her. 😁", 'created': '2024-11-18 17:55:00', 'submission_id': '1gu8egh'}
{'comment': 'They raised a lot of money. How the hell did they spend more than they earned? Campaigns should not be given credit and not be allowed to have debt. It should be only spend what you have at the time, raise more if you want to spend more.', 'created': '2024-11-18 19:58:39', 'submission_id': '1gu8egh'}
{'comment': 'The government should run that way as well.', 'created': '2024-11-18 20:09:25', 'submission_id': '1gu8egh'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-18 16:07:09', 'submission_id': '1gu6t2g'}
{'comment': "Gee, isn't interesting that the more transparent the new administration is on what it intends to do, the more people on the left there are agreeing with what they see. So far I have heard nothing about taking away women's rights, putting people into camps or creating a police state. Instead we have a man that wants to end the poison in our foods, root out corruption and cut the fat from the budget.", 'created': '2024-11-18 16:40:14', 'submission_id': '1gu6t2g'}
{'comment': 'I recommend all check out at least a portion of RFK Jr Joe Rogan podcast. Every claim he makes is backed up by peer reviewed scientific papers.\n\nI trust that a lot more than NY Times “fact checkers”\n\nLikewise his new book The Real Anthony Fauci was heavily annotated. Had it not been he certainly would’ve been sued for libel by Fauci', 'created': '2024-11-18 18:42:31', 'submission_id': '1gu6t2g'}
{'comment': "NYT is corrupt. It's interesting living in the US but having traveled to Europe to realize how much of our food is full of fake things like dyes, chemicals, hormones, etc. You go into a McDonalds in Germany because you're curious about the differences - and the food there, including the coke, tastes like it used to here in the 80s and 90s. Also they have hot cherry pies. \n\nLook I know we subsidize corn farmers and that a whole host of products made from corn get put into all sorts of our food, but for anyone who remembers what food tasted like a few decades ago or who has traveled abroad, will know that when it comes to food RFK is not that far off with some of his statements and is spot on with others. \n\nThe NYT needs to stop lying and stop reflexively taking an anti-Trump stance on everything and instead give their readers more truth.", 'created': '2024-11-18 21:23:05', 'submission_id': '1gu6t2g'}
{'comment': 'I think it’s also interesting to remember than RFK is still a Democrat, and so is Tulsi Gabbard. Rather than thinking of them as disloyal (a term that is garbage), the Trump administration is bi-partisan.', 'created': '2024-11-18 17:25:28', 'submission_id': '1gu6t2g'}
{'comment': 'Yup. I’ve seen some gross comments about repealing the 19th on videos where people are reacting to the dems melting down. But no politician or anyone important is saying that gross stuff, just weirdos online.', 'created': '2024-11-18 19:34:34', 'submission_id': '1gu6t2g'}
{'comment': "I thought Mrs Gabbard had officially changed her party affiliation? Yes, Trump is certainly bipartisan. My girlfriend is still looking for things to hate about him but the pool grows ever smaller. I'm gonna have a wingasm and we haven't even gotten to the swearing in ceremony yet.", 'created': '2024-11-18 17:29:02', 'submission_id': '1gu6t2g'}
{'comment': 'People say vile shit online all the time hiding behind the anonymity of the net, unless they are actually threatening a life I just ignore them. Now the weirdos wishing harm on politicians, they need to be investigated.', 'created': '2024-11-18 19:40:54', 'submission_id': '1gu6t2g'}
{'comment': 'Trump called her a "proud republican" so I\'m assuming that\'s what she considers herself too. But I can\'t remember if she\'s outwardly said so.', 'created': '2024-11-18 17:39:39', 'submission_id': '1gu6t2g'}
{'comment': "I mean, I know she used to be a centrist Democrat but more and more crazy seeped into the party she decided to cut ties. Doesn't matter one way or another, I love her and think she was an excellent choice.", 'created': '2024-11-18 17:41:25', 'submission_id': '1gu6t2g'}
{'comment': "Agreed. I haven't necessarily been thrilled with all his decisions, but I do like Gabbard and I'm excited for this choice.", 'created': '2024-11-18 17:42:28', 'submission_id': '1gu6t2g'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-18 03:41:46', 'submission_id': '1gtupgj'}
{'comment': "Even a broken clock is right twice a day. Amazing that its from WaPo. Democrats refusing to admit defeat and then claiming that's something Republicans do. Hypocrites. Bob Casey is going to join Stacey Abrams in the lose, but refuse to concede club.", 'created': '2024-11-18 14:01:02', 'submission_id': '1gtupgj'}
{'comment': "It's always been the democrats who are election deniers.", 'created': '2024-11-18 15:13:32', 'submission_id': '1gtupgj'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-18 01:04:55', 'submission_id': '1gtrl95'}
{'comment': 'Surprised RFK likes McDonalds and Coke.', 'created': '2024-11-18 01:18:29', 'submission_id': '1gtrl95'}
{'comment': 'Funny that you can get banned there for your opinion, but wishing physical harm on elected officials, no problem.', 'created': '2024-11-18 01:30:04', 'submission_id': '1gtrl95'}
{'comment': 'Little psycho’s', 'created': '2024-11-18 01:09:34', 'submission_id': '1gtrl95'}
{'comment': 'Comments like this don’t bug me anymore. I actually feel pity for them. To have that much hate & discontent is just sad. Especially when they say that God doesn’t let the plane crash, such sad and miserable people to have that kind of outlook.', 'created': '2024-11-18 01:24:09', 'submission_id': '1gtrl95'}
{'comment': 'Despicable', 'created': '2024-11-18 01:09:45', 'submission_id': '1gtrl95'}
{'comment': 'So hateful. What you wish for others will happen to you, quickly. Time is fast these days. Quick karma...whatch out.', 'created': '2024-11-18 01:19:41', 'submission_id': '1gtrl95'}
{'comment': 'Senyo’s comment is actually pretty funny lol', 'created': '2024-11-18 02:02:53', 'submission_id': '1gtrl95'}
{'comment': 'Totally normal behavior and definitely not psychotic.', 'created': '2024-11-18 01:31:13', 'submission_id': '1gtrl95'}
{'comment': "Probably just teens who don't even understand you can be healthy and still enjoy McDonald's every once in awhile.", 'created': '2024-11-18 01:21:14', 'submission_id': '1gtrl95'}
{'comment': 'Elon spending more time with Trump than his own family statement is true though', 'created': '2024-11-18 12:35:46', 'submission_id': '1gtrl95'}
{'comment': 'That’s just insane to me. If it was a plane full of democrats whose politics I didn’t really care for, that thought wouldn’t even come into my head. How evil are some people?\xa0', 'created': '2024-11-18 01:57:32', 'submission_id': '1gtrl95'}
{'comment': "Between Elon's abnormally large fingers and RFK eating McDonald's with a Coke, I'm not sure this isn't an AI pic.", 'created': '2024-11-18 03:38:41', 'submission_id': '1gtrl95'}
{'comment': 'As I expected this pic is all over the internet making him look like a hypocrite…I swear if these guys don’t make good on their promises I’ll be really disappointed', 'created': '2024-11-18 04:26:47', 'submission_id': '1gtrl95'}
{'comment': 'But no, REPUBLICANS are the violent phycos right? Because a tiny portion of republicans did a raid on the capitol that must be what they all believe in. Pieces of shit.', 'created': '2024-11-18 02:39:11', 'submission_id': '1gtrl95'}
{'comment': "Bad karma comes around - Just sayin'", 'created': '2024-11-18 15:49:24', 'submission_id': '1gtrl95'}
{'comment': 'And they call themselves Christians. 🙄\n\nAnd yes for anyone butthurt, yes I DO believe it is impossible these days to be both democrat & Christian because these days being democrat (more specifically liberal) literally goes against absolutely everything Christianity stands for.', 'created': '2024-11-18 17:47:07', 'submission_id': '1gtrl95'}
{'comment': "It is bad bros. I keep getting banned from subreddits for voicing any opinion the mods don't agree with.\n\nIn white people twitter, I got banned for saying Biden was gonna start ww3 before leaving office. Boom banned by mods because it was against their narrative.\n\nReddit is trash don't stop using your voices, it's drowned out in every other sub", 'created': '2024-11-18 21:37:33', 'submission_id': '1gtrl95'}
{'comment': "Threats of harm are not protected by free speech, but lefties don't care because to them it is.", 'created': '2024-11-18 01:36:06', 'submission_id': '1gtrl95'}
{'comment': 'RFK, blink twice if you’re being forced to eat McD’s', 'created': '2024-11-18 03:02:48', 'submission_id': '1gtrl95'}
{'comment': 'I believe the people who wish bad things to happen to other people who have different opinion and values are sickening. I remember lot of people were celebrating when the Titan submersible implosion happened. These comments are examples of Modern day Schadenfreude.', 'created': '2024-11-18 04:33:20', 'submission_id': '1gtrl95'}
{'comment': 'Money says all of them are atheists', 'created': '2024-11-18 01:42:53', 'submission_id': '1gtrl95'}
{'comment': 'I take the line in the Torah, "I will bless them who bless you and curse them who curse you" not to only be about Abraham\'s descendants, but about humans. If we curse, or wish death upon others, or tragedy to strike others because we are nursing a causeless hatred, those evil wishes may well backfire and we may be the one\'s who have the plane door pop off in flight.', 'created': '2024-11-18 03:07:25', 'submission_id': '1gtrl95'}
{'comment': 'So he’s spending a lot of his time focusing on fixing our country?? Sounds good to me.', 'created': '2024-11-18 04:02:40', 'submission_id': '1gtrl95'}
{'comment': 'https://www.nbcnews.com/politics/2024-election/trump-shares-image-depicting-biden-tied-back-pickup-truck-rcna145712', 'created': '2024-11-18 01:53:35', 'submission_id': '1gtrl95'}
{'comment': 'RFKjr looks rather tanned… are we sure he is okay? Also, why didn’t Mr. Speaker get any McD? Appalling! ;-) \n\nThat said, why is this a meme, or even a thing? Let them enjoy whatever they want to eat. And then allow them to change this country they way it needs to change. Which may not be more fast food. But more Americanness!', 'created': '2024-11-18 03:32:15', 'submission_id': '1gtrl95'}
{'comment': 'The party of peace and acceptance strikes again', 'created': '2024-11-18 03:41:14', 'submission_id': '1gtrl95'}
{'comment': 'Leftists are so disgusting.', 'created': '2024-11-18 10:55:54', 'submission_id': '1gtrl95'}
{'comment': "God is out here having Trump dodge bullets like Neo. I doubt God's plan is now for Trump's plane to crash...", 'created': '2024-11-18 11:49:49', 'submission_id': '1gtrl95'}
{'comment': 'You do have to be rich to afford McDonalds these days. My go to is now $16. It’s no longer cheap or fast.', 'created': '2024-11-18 04:13:17', 'submission_id': '1gtrl95'}
{'comment': "Democrats claim being 'liberal' and then go full downstairs when someone behaves civilized.", 'created': '2024-11-18 03:44:56', 'submission_id': '1gtrl95'}
{'comment': 'Well that idiot does MDMA do what do you expect?', 'created': '2024-11-18 08:44:13', 'submission_id': '1gtrl95'}
{'comment': "That's one thing i do find questionable. Elon does not share traditional conservative family values, countless wives, girlfriend and children. \n\nHe does campaign for freedoms though like free speech which i will always agree with.", 'created': '2024-11-18 14:41:43', 'submission_id': '1gtrl95'}
{'comment': 'They talk like that all the time.', 'created': '2024-11-18 15:00:03', 'submission_id': '1gtrl95'}
{'comment': 'Those are comments by idiots that have probably never worked a day in their life and major in wokeness.', 'created': '2024-11-18 15:40:00', 'submission_id': '1gtrl95'}
{'comment': "Before the election, political analyst Mark Halperin told Tucker Carlson that if Trump wins, we're going to witness one of the biggest mental health breakdowns in history. He was right.", 'created': '2024-11-18 16:06:23', 'submission_id': '1gtrl95'}
{'comment': 'These people pander to being inclusive yet wish harm to the other. They are just vile', 'created': '2024-11-18 16:07:25', 'submission_id': '1gtrl95'}
{'comment': 'With the exception of January 6 you didn’t see people acting like that when Biden got elected it’s ridiculous. What do these people have against him, everyone loved Donald Trump until he was a republican.', 'created': '2024-11-18 16:21:40', 'submission_id': '1gtrl95'}
{'comment': 'These people don’t matter anymore , the election proved it. Ignore them.', 'created': '2024-11-18 16:22:46', 'submission_id': '1gtrl95'}
{'comment': 'Just a hater on twitter it seems', 'created': '2024-11-18 16:56:59', 'submission_id': '1gtrl95'}
{'comment': 'Love watching comments', 'created': '2024-11-18 17:38:03', 'submission_id': '1gtrl95'}
{'comment': 'Isn’t it part of his job now?', 'created': '2024-11-18 18:19:26', 'submission_id': '1gtrl95'}
{'comment': 'Welcome to Reddit', 'created': '2024-11-18 19:59:40', 'submission_id': '1gtrl95'}
{'comment': 'They’re so tolerant', 'created': '2024-11-18 20:06:11', 'submission_id': '1gtrl95'}
{'comment': 'Woah… Democrats being hateful, bigoted, evil monsters wishing death on people? I’m so surprised 😮/s', 'created': '2024-11-18 20:58:15', 'submission_id': '1gtrl95'}
{'comment': 'Not exactly a "healthy food choice", but each to their own.', 'created': '2024-11-18 21:50:21', 'submission_id': '1gtrl95'}
{'comment': 'Lamo raving of the weak and pathetic', 'created': '2024-11-18 01:22:45', 'submission_id': '1gtrl95'}
{'comment': 'Liberals are everything they accuse the right of', 'created': '2024-11-18 03:50:11', 'submission_id': '1gtrl95'}
{'comment': 'The party of "love and acceptance" strikes again.', 'created': '2024-11-18 03:50:31', 'submission_id': '1gtrl95'}
{'comment': 'As a huge supporter of RFK I hate to see him eating McDonald’s it looks hypocritical….nothing wrong with eating fast food every once in awhile but to be eating it right now FRESH off of getting the new gig is not a good look.', 'created': '2024-11-18 04:17:40', 'submission_id': '1gtrl95'}
{'comment': 'And these are the people who say they quit associating with people because they support trump. True colors always come out.', 'created': '2024-11-18 05:24:58', 'submission_id': '1gtrl95'}
{'comment': 'Best believe that in every miserable group there is a God hating athiest who has to make a mocking comment about why God let certain things happen and mock believers to make themeselves feel above and superior to others in their sad and pathetic life.', 'created': '2024-11-18 06:53:18', 'submission_id': '1gtrl95'}
{'comment': 'Deplorable', 'created': '2024-11-18 01:43:17', 'submission_id': '1gtrl95'}
{'comment': 'They are vile people', 'created': '2024-11-18 01:49:09', 'submission_id': '1gtrl95'}
{'comment': "The tolerant left as usual...buncha snakes in the grass...I knew it all along it's nice to be vindicated though", 'created': '2024-11-18 02:43:58', 'submission_id': '1gtrl95'}
{'comment': 'Weird people', 'created': '2024-11-18 02:46:34', 'submission_id': '1gtrl95'}
{'comment': 'There they go. Evil people', 'created': '2024-11-18 02:46:45', 'submission_id': '1gtrl95'}
{'comment': 'This person will probably take back his words when karma hits.', 'created': '2024-11-18 04:06:33', 'submission_id': '1gtrl95'}
{'comment': 'Wow', 'created': '2024-11-18 01:46:51', 'submission_id': '1gtrl95'}
{'comment': 'Doesn’t surprise me. These lefties are all psychotic and think whatever they say and do should be accepted. Fuck that.', 'created': '2024-11-18 03:37:56', 'submission_id': '1gtrl95'}
{'comment': "Honestly these comments are why I left the democrats all they are hypocrites claiming to be tolerant but when u don't have the same view as them they attack u! Even when I was i was a democrat Republicans always respected my opinion!! Never again will I believe their bullshit again im glad to be here", 'created': '2024-11-18 05:32:00', 'submission_id': '1gtrl95'}
{'comment': "I honestly don't get people saying rfk eating mcdonalds is hypocritical, you can want to remove the insane amount of bullshit they put in our food and still enjoy a good bigmac every once in a while", 'created': '2024-11-18 09:36:15', 'submission_id': '1gtrl95'}
{'comment': 'The comments I see from liberals on tiktoks are crazy. Wishing children get 🍇ed and forced to carry children. Or wishing death on pregnant mothers. They are so wild, plus shaving their heads', 'created': '2024-11-18 09:58:29', 'submission_id': '1gtrl95'}
{'comment': 'Evil people. Why would anybody say something like that.', 'created': '2024-11-18 13:01:31', 'submission_id': '1gtrl95'}
{'comment': 'Brainwashing is not a joke', 'created': '2024-11-18 13:57:58', 'submission_id': '1gtrl95'}
{'comment': '2nd Pic is Literally Liberals wanting 9/11 but on 1/20', 'created': '2024-11-18 02:28:48', 'submission_id': '1gtrl95'}
{'comment': 'Mr. Know Everything', 'created': '2024-11-18 02:17:53', 'submission_id': '1gtrl95'}
{'comment': 'Ahh the tolerant left at it again. Funny how these people probably wouldn’t act or say this garbage in public or in real life. They only do it in there safe Reddit echo chambers.', 'created': '2024-11-18 06:05:15', 'submission_id': '1gtrl95'}
{'comment': "The comment is GAY\n\n \npeople don't even know what the fuck their talking about\n\nthen other people see them not knowing wytf their talking about and join in and blindly agree, its literally like a sickness, an epidemic of the mind, people just want to blindly follow who ever hates who they hate\n\n \nits fucking sick\n\n \nsocial media has LITERALLY ruined our country and youth for generations to come\n\n \nits poisoned our country", 'created': '2024-11-18 08:49:53', 'submission_id': '1gtrl95'}
{'comment': 'This looks like it wasn’t his choice.', 'created': '2024-11-18 01:21:43', 'submission_id': '1gtrl95'}
{'comment': 'For the record he has stated he has no problem with fast food or McDonald’s it’s the seed oils they use in the food', 'created': '2024-11-18 01:25:42', 'submission_id': '1gtrl95'}
{'comment': 'You can be healthy and still eat junk food food once in a while.', 'created': '2024-11-18 03:58:07', 'submission_id': '1gtrl95'}
{'comment': 'Everyone has a guilty pleasure lol', 'created': '2024-11-18 01:21:19', 'submission_id': '1gtrl95'}
{'comment': 'I like McDonald’s, Coke and Coca Cola', 'created': '2024-11-18 02:22:10', 'submission_id': '1gtrl95'}
{'comment': '"One last time won\'t hurt" ahh', 'created': '2024-11-18 03:12:11', 'submission_id': '1gtrl95'}
{'comment': 'Doesn’t look like he does… looks like he’s thinking: “WTF guys, I am supposed to be making America healthy again… not eating McDonald’s in my first photo with the team.” 😆', 'created': '2024-11-18 04:04:06', 'submission_id': '1gtrl95'}
{'comment': 'Yea I’m not gonna lie that through me off too', 'created': '2024-11-18 02:18:10', 'submission_id': '1gtrl95'}
{'comment': 'At first I thought the same thing but on second thought, I would assume, given the recent McDonald’s recalls & Trump being a McDonald’s “employee”, it’s probably more like an ad for McDonald’s …”look our food is safe to eat,” if these guys will eat it, it must be safe! I assume they are doing McDonald’s a solid but behind the scenes he probably didn’t actually eat it.', 'created': '2024-11-18 13:37:21', 'submission_id': '1gtrl95'}
{'comment': 'I can see rfk immediately looking at Trump and Musk and asking "what the chicken mcfuck was that"', 'created': '2024-11-18 17:11:14', 'submission_id': '1gtrl95'}
{'comment': 'It’s perfectly fine once in a while. If he practices what he preaches then he can have fast food once every year or two and he’s not gonna drop dead.', 'created': '2024-11-18 18:07:12', 'submission_id': '1gtrl95'}
{'comment': 'He’s having fun. Sometimes we blow our diet when for convenience. As the old saying goes done or raw, do the chaw 🤣', 'created': '2024-11-18 19:55:15', 'submission_id': '1gtrl95'}
{'comment': 'Make America Healthy Again.', 'created': '2024-11-18 06:03:47', 'submission_id': '1gtrl95'}
{'comment': ' Ive Been banned for proving someone wrong🤦', 'created': '2024-11-18 02:23:22', 'submission_id': '1gtrl95'}
{'comment': 'Liberals and democrats love banning people. Proving them wrong or stating facts…..= insta banned lol \n\nrepublicans were smart enough to go after the government….the left burns down innocent peoples businesses, cars, etc. when they get mad or upset lol 😂 or protest on main roads when we just trying to go to work or go home 😂', 'created': '2024-11-18 16:38:23', 'submission_id': '1gtrl95'}
{'comment': "Pretty triggering isn't it?", 'created': '2024-11-18 02:17:01', 'submission_id': '1gtrl95'}
{'comment': 'Yea dude I keep getting banned from subreddits for the same bullshit.\n\nThey are violating free speech', 'created': '2024-11-18 21:38:58', 'submission_id': '1gtrl95'}
{'comment': 'That’s part of the problem I hope Trump corrects. Tired of having to be okay with this type of language used only by one side.', 'created': '2024-11-18 01:35:37', 'submission_id': '1gtrl95'}
{'comment': "Feel bad for them. Hopefully they regret what they're saying and ask for forgiveness, definitely wouldn't wish what they said on anyone not even themselves.", 'created': '2024-11-18 05:17:20', 'submission_id': '1gtrl95'}
{'comment': 'If you think that’s hateful I invite you to look at Elon’s X feed.', 'created': '2024-11-18 16:51:10', 'submission_id': '1gtrl95'}
{'comment': 'And true 🤣 surprised it wasn’t brought up more in the thread', 'created': '2024-11-18 04:35:28', 'submission_id': '1gtrl95'}
{'comment': 'Because they ate it daily for months and now preach it’s bad because they can’t do anything in small proportions', 'created': '2024-11-18 02:25:02', 'submission_id': '1gtrl95'}
{'comment': 'Same. If it happens I think it’s a good lesson for us to realize a two party system is not it.', 'created': '2024-11-18 04:39:17', 'submission_id': '1gtrl95'}
{'comment': 'Facts! And the left burns down innocent businesses, cars, towns, etc. when they get mad lol they aren’t smart enough to go after the government lol 😂', 'created': '2024-11-18 16:40:36', 'submission_id': '1gtrl95'}
{'comment': 'It wasn’t a raid. It wasn’t an insurrection.', 'created': '2024-11-18 17:23:47', 'submission_id': '1gtrl95'}
{'comment': 'Welcome to the club brother\nAt least they didn’t ask you to take your comments back from other sub Reddits then get a chick and do a bad juju dance because they do that too', 'created': '2024-11-18 22:08:13', 'submission_id': '1gtrl95'}
{'comment': 'Unfortunately his ex wife has spoken openly about some of this same with Grimes. He disowned his trans kid and it was a whole ongoing drama for a while.', 'created': '2024-11-18 04:37:58', 'submission_id': '1gtrl95'}
{'comment': 'And it’s full of chemicals and preservatives and taste enhancers not good. Shit.', 'created': '2024-11-18 22:25:53', 'submission_id': '1gtrl95'}
{'comment': 'I thought liberals were the equivalent to the far left versus regular democrats', 'created': '2024-11-18 04:37:03', 'submission_id': '1gtrl95'}
{'comment': 'Can you have kids a lot of us can’t from all the poison the food companies are putting out\nAnd the stuff there spraying in the air and the poison in our water\n\nIm surprised we have any groth in population at all', 'created': '2024-11-18 22:14:56', 'submission_id': '1gtrl95'}
{'comment': 'I so love it', 'created': '2024-11-18 22:13:12', 'submission_id': '1gtrl95'}
{'comment': 'Those were plants that were inciting', 'created': '2024-11-18 22:12:16', 'submission_id': '1gtrl95'}
{'comment': 'Isnt it funny how that happens', 'created': '2024-11-18 22:28:11', 'submission_id': '1gtrl95'}
{'comment': 'The worst thing any of us can do is believe the politicians won’t be politicians at the end of the day.', 'created': '2024-11-18 04:38:52', 'submission_id': '1gtrl95'}
{'comment': '👏🏻👏🏻👏🏻👏🏻👏🏻👏🏻👏🏻 we’re glad to have you.', 'created': '2024-11-18 22:23:19', 'submission_id': '1gtrl95'}
{'comment': 'Eh not cool comparing to 9/11.', 'created': '2024-11-18 04:36:09', 'submission_id': '1gtrl95'}
{'comment': 'The curse of social media', 'created': '2024-11-18 22:22:20', 'submission_id': '1gtrl95'}
{'comment': 'They call it wokism', 'created': '2024-11-18 22:20:47', 'submission_id': '1gtrl95'}
{'comment': 'He could say no thanks.', 'created': '2024-11-18 01:48:39', 'submission_id': '1gtrl95'}
{'comment': 'You can tell he sitting there not to be rude. Look at the shock/disgust on his face he didn’t know the pic was coming and everyone smiling because of it 😂', 'created': '2024-11-18 01:24:36', 'submission_id': '1gtrl95'}
{'comment': 'Sounds odd that that would be the only thing wrong with fast food, but what do I know.', 'created': '2024-11-18 01:50:43', 'submission_id': '1gtrl95'}
{'comment': 'Then, wouldn’t that be the same as being against fast food?', 'created': '2024-11-18 02:30:05', 'submission_id': '1gtrl95'}
{'comment': 'Right lol people act like they’re Gods. They’re human like us', 'created': '2024-11-18 04:58:48', 'submission_id': '1gtrl95'}
{'comment': 'Oh, I forgot to mention the Coca Cola 😂', 'created': '2024-11-18 15:34:55', 'submission_id': '1gtrl95'}
{'comment': 'I don’t even know when the last time America was healthy 🤣🤣', 'created': '2024-11-18 16:34:47', 'submission_id': '1gtrl95'}
{'comment': 'Not surprising on Reddit', 'created': '2024-11-18 21:56:57', 'submission_id': '1gtrl95'}
{'comment': 'hah, too true... "I\'m mad about \\[insert unrelated reason\\], so you don\'t get do go home from work tonight! They\'ll show them!"', 'created': '2024-11-18 18:25:44', 'submission_id': '1gtrl95'}
{'comment': 'It’s free speech. I’ll take the good with the bad, it’s part of it. It’s the people that bad mouth God are the ones now asking for Devine intervention. It makes me shake my head .', 'created': '2024-11-18 01:50:23', 'submission_id': '1gtrl95'}
{'comment': 'Emphasis on “Ex-wife”. Even if it’s true, whatever. \n\nHe’s here to help our country, I’m not concerned about his personal life. If he does a good job for our country, I’m happy.', 'created': '2024-11-18 04:48:44', 'submission_id': '1gtrl95'}
{'comment': 'Make McDonald’s Decent Again!', 'created': '2024-11-18 22:30:17', 'submission_id': '1gtrl95'}
{'comment': 'No more I assume', 'created': '2024-11-18 04:58:16', 'submission_id': '1gtrl95'}
{'comment': 'Im glad to be here with all u fine people', 'created': '2024-11-18 22:58:12', 'submission_id': '1gtrl95'}
{'comment': 'Or communism', 'created': '2024-11-18 22:21:41', 'submission_id': '1gtrl95'}
{'comment': "McDonald's actually has some qualify food, not all. They've heard the complaints of their food is garbage for a long time. Not saying it's healthy but for RFK whose buffer than most people in Reddit, the food would not affect him as much. He can have a cheat day is what I'm saying.", 'created': '2024-11-18 22:48:25', 'submission_id': '1gtrl95'}
{'comment': 'What are you actually talking about? This is a pr stunt. Do any of these people look like ufc fans to you? This was a very smart pr play by them considering every single fighter payed respect to Trump after the matches. Jon jones even did the Trump dance. There’s no way in hell rfk joined this without knowing it was for pr.', 'created': '2024-11-18 14:59:45', 'submission_id': '1gtrl95'}
{'comment': 'It’s not the only thing wrong but it’s a big part of it. \n\nAmerican heart association was bribed by proctor and gamble to falsify research on seed oils in the early 1900’s\n\nhttps://www.eviemagazine.com/post/american-heart-association-was-paid-procter-gamble-heart-disease-saturated-fat-seed-oils-sugar\n\nEver since then there’s been a war on saturated fats imo and many doctors opinion that saturated fats are important for brain development and cell function \n\nSeed oils are inflammatory this is known, what has been happening is inflammation is causing cholesterol to clog aka heart attack/stroke \n\nSo instead of addressing the root cause of the inflammation they attack cholesterol as the problem \n\nCholesterol is soooo important, it’s no coincidence vegan’s offspring has a extremely high rate of autism \n\nBig pharma and big food has made a boatload of money on the backs of American health I have high hopes rfk will get in there and bust up the monopoly and get some truly unbiased research done. \n\nI came across this interview recently it may be of some interest. I’m shocked it came straight from the horses mouth \n\nhttps://youtu.be/Ax0SIbxgqDw?si=5vF-fHsqdyB47t3I', 'created': '2024-11-18 02:04:46', 'submission_id': '1gtrl95'}
{'comment': 'Seed oils are legitimately evil. McDonald’s fry’s weren’t unhealthy when they were fried in beef tallow; extremely calorie dense, but not unreasonable In reasonable quantities.', 'created': '2024-11-18 17:20:41', 'submission_id': '1gtrl95'}
{'comment': 'He’s not against the idea of fast food \n\nSeed oils doesn’t make these restaurants “fast food” \n\nThere was a time when McD didn’t use seed oils in their fryers they used tallow \n\nToday not many restaurants use tallow only major chain I know of is Buffalo wild wings', 'created': '2024-11-18 02:32:45', 'submission_id': '1gtrl95'}
{'comment': "It's not though, because they ban any Republican opinions. It's bull and should be stopped.", 'created': '2024-11-18 21:39:51', 'submission_id': '1gtrl95'}
{'comment': 'Yeah agree but character is usually same in or out of the house regardless of persona. We’re all human and flawed to some degree. None of us even Elon or T are God. I think we can appreciate people without blindly accepting their flaws or turning a blind eye to it. How else does one evolve and grow? \n\nEither way yeah agree, we’re all hoping for the best.', 'created': '2024-11-18 04:55:18', 'submission_id': '1gtrl95'}
{'comment': 'The Trumps are huge UFC fans. So they invited friends that they thought should give it a shot. Elon also likes combat sports believe it or not.', 'created': '2024-11-18 18:17:43', 'submission_id': '1gtrl95'}
{'comment': 'What does a UFC fan “look like”?', 'created': '2024-11-18 18:28:43', 'submission_id': '1gtrl95'}
{'comment': "That's not research, that's a magazine.\nSaturated facts can have a moderate role in a healthy diet, but there obviously is a reason studies **all over the world** call for moderation.\n\nActual research below\n\nhttps://www.researchgate.net/search.Search.html?query=Seed+oils+health&type=publication", 'created': '2024-11-18 06:35:45', 'submission_id': '1gtrl95'}
{'comment': 'Sounds like your parents were extreme vegans', 'created': '2024-11-18 02:43:29', 'submission_id': '1gtrl95'}
{'comment': 'Actual research on the Covid Vaccine\n\n"Peer Reviewed Medical Papers Submitted To Various Medical Journals, Evidencing A Multitude Of Adverse Events In Covid-19 Vaccine Recipients". There\'s over 1000 of them now.\nhttps://www.scribd.com/document/557943346/Updated-Peer-Reviewed-Medical-Papers-Submitted-to-Various-Medical%23from_embed', 'created': '2024-11-18 14:10:36', 'submission_id': '1gtrl95'}
{'comment': 'Okay pfizer', 'created': '2024-11-18 06:37:35', 'submission_id': '1gtrl95'}
{'comment': 'I state facts and you call me autistic \n\nYour really cool Mr Reddit warrior', 'created': '2024-11-18 02:45:11', 'submission_id': '1gtrl95'}
{'comment': 'Exactly \n\nWe’re 100% confident in medical opinion until the opinion changes \n\nFetal heart beat was at 8 months now it’s less than 8 weeks. At one time we thought cocaine was medicine and was sold at sears \n\nCurrent medical opinion is not a hill to die on. Keep a open mind and don’t jump on the newest medical “breakthroughs” \n\nHalf the time it’s a guess and/or financially motivated, look at how there was so many COVID deaths in 2020 and flu deaths dropped off a cliff 🧠', 'created': '2024-11-18 17:38:24', 'submission_id': '1gtrl95'}
{'comment': "Weren't we talking about seed oils?\n\nBut yes the vaccines obviously weren't perfect, no one is claiming that, but we all saw the overcrowded hospitals, the lack of PPE for workers and ventilators.\nWithout those imperfect vaccines a lot more people wouldn't be around anymore.\n\nThough every government needs oversight and a degree of scepticism, RFK is not the kind of guy to question any healthcare or science. He might have the best intentions, but he is clearly misinformed, he isn't unbiased and he isn't scientifically literate.", 'created': '2024-11-18 16:18:47', 'submission_id': '1gtrl95'}
{'comment': 'Pathetic.', 'created': '2024-11-18 06:37:57', 'submission_id': '1gtrl95'}
{'comment': 'You\'re sharing pop "news".\nNot the same as facts.', 'created': '2024-11-18 06:37:41', 'submission_id': '1gtrl95'}
{'comment': 'I appreciate your facts.', 'created': '2024-11-18 04:30:21', 'submission_id': '1gtrl95'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-17 21:29:55', 'submission_id': '1gtmuiy'}
{'comment': 'France and the United Kingdom have also authorised the use of Storm Shadow/SCALP-EG.\n\n[https://www.lefigaro.fr/international/joe-biden-aurait-donne-son-accord-a-l-ukraine-pour-frapper-la-russie-en-profondeur-avec-des-armes-americaines-20241117](https://www.lefigaro.fr/international/joe-biden-aurait-donne-son-accord-a-l-ukraine-pour-frapper-la-russie-en-profondeur-avec-des-armes-americaines-20241117)', 'created': '2024-11-17 22:38:03', 'submission_id': '1gtmuiy'}
{'comment': 'YOLO', 'created': '2024-11-17 21:55:21', 'submission_id': '1gtmuiy'}
{'comment': "Doesn't matter much now. Both sides have talked with Trump and know the deal. Short of attacking a major city or military target successfully, this is a nothing burger.", 'created': '2024-11-17 22:30:41', 'submission_id': '1gtmuiy'}
{'comment': 'He doesn’t have to pick up the \n pieces now. He could have given them those missiles 2 -3 years ago. Minor incursion and all that.', 'created': '2024-11-17 23:45:41', 'submission_id': '1gtmuiy'}
{'comment': 'Does this bring us closer to WW3?', 'created': '2024-11-17 23:48:40', 'submission_id': '1gtmuiy'}
{'comment': 'Why not add a war to his wonderful list of accomplishments? 😡', 'created': '2024-11-17 21:49:00', 'submission_id': '1gtmuiy'}
{'comment': 'His parting gift to the US is WWIII.', 'created': '2024-11-17 21:30:17', 'submission_id': '1gtmuiy'}
{'comment': "It seems odd that Ukraine needs Biden's permission.", 'created': '2024-11-17 22:24:30', 'submission_id': '1gtmuiy'}
{'comment': 'Not clicking on a NYT link.', 'created': '2024-11-17 23:25:53', 'submission_id': '1gtmuiy'}
{'comment': "Neat. Buying more Lockhead Martin shares on Monday. \n\nOur weapons demo showcases in Ukraine and Israel have been doing gangbusters for our international arms sales markets. \n\nTrump is going to be able to create thousands of blue collar manufacturing jobs, with middle class wages, across economically depressed areas in the Midwest to keep up with the demand for all our new products. \n\nBiden couldn't have given Trump a better welcome back gift.", 'created': '2024-11-18 01:27:01', 'submission_id': '1gtmuiy'}
{'comment': 'What a piece of shit lmao anything to escalate the war before he leaves office', 'created': '2024-11-17 22:02:24', 'submission_id': '1gtmuiy'}
{'comment': 'Classic, the Democrat dump all their shit so they can put the blame on others.', 'created': '2024-11-17 23:20:42', 'submission_id': '1gtmuiy'}
{'comment': 'In my opinion, USA shouldn’t be supporting Ukraine at all, it’s not our responsibility and puts us in Russia’s crosshair EVEN MORE, Why aren’t the EU countries helping as much as us?', 'created': '2024-11-17 22:03:43', 'submission_id': '1gtmuiy'}
{'comment': 'Good, fuck Russia', 'created': '2024-11-18 07:01:24', 'submission_id': '1gtmuiy'}
{'comment': 'That son-bitch wants to get WWIII started to fuck over Trump! This is beyond stupid, this is intentionally dangerous to all of humanity! FUCK JOE BIDEN!', 'created': '2024-11-17 23:38:59', 'submission_id': '1gtmuiy'}
{'comment': 'He’s in the Amazon, probably with no idea what’s going on.', 'created': '2024-11-17 22:30:43', 'submission_id': '1gtmuiy'}
{'comment': 'So, start WW3 before Trump can take his seat in the Whitehouse?', 'created': '2024-11-18 12:26:58', 'submission_id': '1gtmuiy'}
{'comment': "What is this, the ultimate obstruction? \n\nThe RESISTANCE?\n\nF'en idiots.", 'created': '2024-11-17 22:32:12', 'submission_id': '1gtmuiy'}
{'comment': "Biden's handlers allowed long range use of the Missiles. Joe doesn't know what day of the week it is. This is one of the parting screw Trump from the Dems. The Dems are a crooked bunch wanting to start global conflict to cover their deeds.", 'created': '2024-11-18 03:33:34', 'submission_id': '1gtmuiy'}
{'comment': 'Liberals celebrating fail to realize, this will either result in complete destruction of Ukraine or World War 3.', 'created': '2024-11-17 22:17:58', 'submission_id': '1gtmuiy'}
{'comment': 'Why do democrats want war so bad and not peace?', 'created': '2024-11-18 05:50:32', 'submission_id': '1gtmuiy'}
{'comment': ' why are we in a war that has nothing to do with America? ukraine was never a nato ally fk the left for wasting our money and lifes over this country.', 'created': '2024-11-18 22:48:20', 'submission_id': '1gtmuiy'}
{'comment': 'If that mfer had allowed an early cease fire early on, thousands of people would still be alive. If he didn’t slow roll military support, thousands of lives would be saved.', 'created': '2024-11-18 00:50:51', 'submission_id': '1gtmuiy'}
{'comment': 'Biden is acting like that 1 friend who won’t leave your house after a party. Can’t take the hint he needs to go home then drinks your last beer without saying goodbye.', 'created': '2024-11-18 02:42:13', 'submission_id': '1gtmuiy'}
{'comment': 'Yes, “Biden” allows this. What amalgamation of decision makers are we currently calling “Biden”?', 'created': '2024-11-17 23:57:43', 'submission_id': '1gtmuiy'}
{'comment': 'Why is he involving us? Permission? WTH?', 'created': '2024-11-18 00:31:48', 'submission_id': '1gtmuiy'}
{'comment': None, 'created': '2024-11-17 22:59:07', 'submission_id': '1gtmuiy'}
{'comment': 'DemocRATS have no problem starting WWIII and killing 4 billion people in a nuclear holocaust.', 'created': '2024-11-17 22:30:37', 'submission_id': '1gtmuiy'}
{'comment': 'Oh booooooy. Dems trying to escalate a war to go WW3 before Trump takes office. Then put the blame on him. But we already know.', 'created': '2024-11-18 20:33:47', 'submission_id': '1gtmuiy'}
{'comment': "Doesn't that allow Russia to do the same?", 'created': '2024-11-17 22:32:27', 'submission_id': '1gtmuiy'}
{'comment': 'Kek. Independent decision making right there', 'created': '2024-11-18 10:47:54', 'submission_id': '1gtmuiy'}
{'comment': 'Talking with trump is a nothing burger until he’s president…', 'created': '2024-11-18 00:07:02', 'submission_id': '1gtmuiy'}
{'comment': "Yeah, and Zelensky turned down Trump's peace deal. I think Zelensky hates his own country, wants to wipe out all the men.", 'created': '2024-11-17 23:53:33', 'submission_id': '1gtmuiy'}
{'comment': 'Do you really think so?\n\nI was feeling a little worried', 'created': '2024-11-18 02:09:51', 'submission_id': '1gtmuiy'}
{'comment': 'Nah, why would Russia bring in nato in a war they’re already struggling in.', 'created': '2024-11-18 01:23:02', 'submission_id': '1gtmuiy'}
{'comment': 'Yes, very much. The only thing that *might* prevent it at this point is that Putin may hold off on retaliating because Trump will be in office in 2 months and will shut the whole thing down.', 'created': '2024-11-18 15:45:05', 'submission_id': '1gtmuiy'}
{'comment': 'So, in order to avoid WWIII you must let a dictator attack and annex little countries around him? That is exactly how WWII started.', 'created': '2024-11-18 13:59:41', 'submission_id': '1gtmuiy'}
{'comment': 'Kamala’d parting gift.\nHell hath no fury like a women scorned', 'created': '2024-11-17 22:02:31', 'submission_id': '1gtmuiy'}
{'comment': 'So, in order to avoid WWIII we must let a dictator attack and annex little countries around him? That is exactly how WWII started.', 'created': '2024-11-18 14:01:07', 'submission_id': '1gtmuiy'}
{'comment': "Yeah cause historically letting dictators do what they want hasn't led to any world wars. Oh wait.", 'created': '2024-11-17 21:33:18', 'submission_id': '1gtmuiy'}
{'comment': 'Yep', 'created': '2024-11-17 22:04:47', 'submission_id': '1gtmuiy'}
{'comment': "Can't step away from office if you're in the middle of a war.", 'created': '2024-11-17 23:07:43', 'submission_id': '1gtmuiy'}
{'comment': 'Not really, the US coalition is giving them weapons. If they didn’t follow rules of engagement we set we would stop, they rely on the aid so they are willing to listen', 'created': '2024-11-17 22:50:34', 'submission_id': '1gtmuiy'}
{'comment': "I'd have to imagine the US pretty much owns Ukraine now after everything they've given them. I doubt it was just out of kindness.", 'created': '2024-11-17 22:43:29', 'submission_id': '1gtmuiy'}
{'comment': 'We had already been supplying them with the missiles, but had refused permission to do deep strikes into Russia with them. Ukraine had been doing them anyway - now they have permission, which drags the US deeper into the war, and makes a direct Russian strike on US assets more likely.', 'created': '2024-11-18 16:19:35', 'submission_id': '1gtmuiy'}
{'comment': "I genuinely want to see a 2nd Russian revolution, leading to the removal of Putin from power and a revival in democracy in Russia.\n\nThroughout this entire war, I've been gritting my teeth seeing how much territory Ukraine has lost against Russia, all because we couldnt supply them with adequate amounts of weapons. I mean really, whats 30 or so Abrams tanks going to do to shape the war in Ukraine. Thats a tiny, tiny amount in the grand scheme of things but yet, its touted as some game breaking wonderweapon that can turn the tides of war. \n\nThe same goes for all the other Nato weapons that have been delivered. Anything less than a couple hundred leopard 2s, challenger 2s or F16s will barely make a dent in the frontline. Earlier this week, i saw some news reporting that France is sending a whopping SIX Mirage 2000s to ukraine. SIX OF THEM. Thats a tiny amount. Not even enough for one squadron. \n\nUnder Biden, the Ukraine war would forever be locked in a eternal stalement with Ukraine slowly but steadily losing ground with occasional weapons aid delivers coming in the form of like, 10 more Abrams tanks and 30 more howitzers. They're just enough to keep the frontline from collapsing, but not enough to change things.\n\nI hope that under Trump and his cabinet, he'll be able to do something more substantial to help ukraine if a peace deal cannot be brokered.", 'created': '2024-11-18 02:09:31', 'submission_id': '1gtmuiy'}
{'comment': 'You really think so? 🙏', 'created': '2024-11-18 05:43:23', 'submission_id': '1gtmuiy'}
{'comment': '...unless there is a retaliation involving long range missile strikes in the US.', 'created': '2024-11-18 15:46:46', 'submission_id': '1gtmuiy'}
{'comment': 'Do you not remember what was happening in 2008? Too young? Or maybe 2020? Worst recession since the depression and then pandemic/race riots/financial crisis… I’m no fan of Dems but your comment is kind of short sighted', 'created': '2024-11-17 23:51:03', 'submission_id': '1gtmuiy'}
{'comment': 'we should support Ukraine imo because every dollar we give them is a dollar going towards weakening russia. it’s better to pay for someone else to fuck them up then go to war with russia ourselves, which would inevitably happen in time if they successfully conquer Ukraine and then move on to more European countries after.', 'created': '2024-11-18 01:14:26', 'submission_id': '1gtmuiy'}
{'comment': 'Ukraine gave up their nukes under the promise that the US and EU would help if Russia invaded.\n\nhttps://en.m.wikipedia.org/wiki/Ukraine_and_weapons_of_mass_destruction', 'created': '2024-11-17 22:33:32', 'submission_id': '1gtmuiy'}
{'comment': 'Ya I wonder why?', 'created': '2024-11-17 22:05:20', 'submission_id': '1gtmuiy'}
{'comment': 'I believe they are, and some even more, if you look at it in terms of aid proportional to gdp.', 'created': '2024-11-17 22:47:26', 'submission_id': '1gtmuiy'}
{'comment': 'I have to ask then, what would Russia have to do to get you to get over your reluctance to become their enemy? If not invading a fully sovereign nation, then what?', 'created': '2024-11-17 22:22:28', 'submission_id': '1gtmuiy'}
{'comment': 'The U.S. is only 19th in the amount of aid given to Ukraine in terms of gdp. Obviously the nation of Denmark is giving them $100 billion', 'created': '2024-11-18 01:21:34', 'submission_id': '1gtmuiy'}
{'comment': 'Or both.', 'created': '2024-11-18 16:18:17', 'submission_id': '1gtmuiy'}
{'comment': "Likely complete destruction of Ukraine, unless they agree to terms. I don't think trump wants any part of it, he will likely try to broker a deal between them. Kinda like how a real estate agent has to force a client to accept less money (Ukraine) even tho they aren't happy with it. 🤷\u200d♂️ just my opinion I can be way off base lol", 'created': '2024-11-17 22:43:02', 'submission_id': '1gtmuiy'}
{'comment': 'The hell are you talking about?', 'created': '2024-11-18 00:01:57', 'submission_id': '1gtmuiy'}
{'comment': 'What? What kind of news do you watch?', 'created': '2024-11-17 23:45:58', 'submission_id': '1gtmuiy'}
{'comment': 'They already are and have been for going on 3 years', 'created': '2024-11-17 22:38:03', 'submission_id': '1gtmuiy'}
{'comment': 'They could always have done the same, but were trying to avoid escalation. Now they have justification.', 'created': '2024-11-18 16:20:22', 'submission_id': '1gtmuiy'}
{'comment': 'Not necessarily. If you look at everything that happened immediately after he was elected, it shows that you don’t need to be in office to make change indirectly. Everyone knows how he’ll govern, including Putin and Zelensky. In fact, after he was elected, Putin congratulated Trump and was “willing to engage in dialogue”', 'created': '2024-11-18 14:06:02', 'submission_id': '1gtmuiy'}
{'comment': 'So if China attacked America you’d rather hand them Alaska then continue fighting? So much for “give me liberty or give me death”…', 'created': '2024-11-18 01:19:26', 'submission_id': '1gtmuiy'}
{'comment': 'He wants the 💵', 'created': '2024-11-18 00:34:38', 'submission_id': '1gtmuiy'}
{'comment': "What are the specifics of Trump's peace deal?", 'created': '2024-11-18 02:19:56', 'submission_id': '1gtmuiy'}
{'comment': "He's a Satanist who wants to kill as many young Christian Ukrainian males as possible", 'created': '2024-11-18 00:03:37', 'submission_id': '1gtmuiy'}
{'comment': "No, in order to avoid WWIII, you don't install a weak President in the US to begin with.\n\n...and remember, like WWIII, WWII ended when nukes started being used. The difference is that in WWIII there are a lot more countries with nukes and a lot more nukes.", 'created': '2024-11-18 15:54:26', 'submission_id': '1gtmuiy'}
{'comment': 'What’s a woman?', 'created': '2024-11-18 02:04:57', 'submission_id': '1gtmuiy'}
{'comment': 'In my opinion, no outcome to this war is ideal. Either we can keep up our current supplying to Ukraine and keep seeing escalations or we can force both sides to come to an agreement and work out a compromise that won’t hurt nor benefit each other more than what the current war will do', 'created': '2024-11-17 23:35:15', 'submission_id': '1gtmuiy'}
{'comment': 'Funny enough is that Republicans deep state will still be supporting Ukraine as a buffer zone for Russia (exactly what dems are doing now) and making sure EU is not out of its orbit (and doesn\'t matter what populist things Trump is saying, we\'ll see his actions), and they don\'t care about "red necks" opinions on reddit (no offense to anyone)', 'created': '2024-11-17 22:38:28', 'submission_id': '1gtmuiy'}
{'comment': 'The US installed a weak leader in the US to control a puppet in the Ukraine. That has consequences.', 'created': '2024-11-18 16:07:14', 'submission_id': '1gtmuiy'}
{'comment': "We don't, but we should. It's the same for the Middle East. No More wars unless we own that shit.", 'created': '2024-11-17 23:22:12', 'submission_id': '1gtmuiy'}
{'comment': "I'd be afraid of someone worse. All the sane people have had accidents with windows, and the ones with power align with Putin.", 'created': '2024-11-18 09:01:00', 'submission_id': '1gtmuiy'}
{'comment': 'The conspiracy part of my brain says Putin will not want a deal with the US just so that he can continue to slaughter his own men/Ukrainians.', 'created': '2024-11-18 15:15:03', 'submission_id': '1gtmuiy'}
{'comment': 'You must’ve voted for Nikki Haley. Warhawk vibes', 'created': '2024-11-18 16:33:50', 'submission_id': '1gtmuiy'}
{'comment': "We're already seeing [record breaking sales](https://search.app?link=https%3A%2F%2Fwww.defense.gov%2FNews%2FNews-Stories%2FArticle%2FArticle%2F3736017%2Fdod-has-seen-huge-increase-in-military-sales-since-ukraine-invasion%2F%23%3A~%3Atext%3D%2522That%2520is%2520a%2520record%252C%2522%2C22%2520Foreign%2520Military%2520Financing%2520program.&utm_campaign=aga&utm_source=agsadl2%2Csh%2Fx%2Fgs%2Fm2%2F4) numbers. The debut of the fill capability of our longer range portable systems is sure to turn a few heads and open a few wallets. \n\nThe wars in Ukraine and Israel being simulcast in 4k has effectively been a reality show-esqe commercial for our weapons systems. Poland has bought almost every single modem system we're currently allowed to sell to foreign powers.\n\nIt's a 1-2 combo. We get to neuter two foreign powers that threaten our interests (Iran and Russia) without directly exposing our troops to harm while also setting ourselves up for profitable future business. All those fancy new systems these countries are buying from us each carry years of maintenance needs and regular updates.\n\nThe up investment is high, but we're cementing our position as the world's gun store for another generation. Each item sold increases the needed repair hours and quantity of replacement parts that will need to be manufactured in an American factory.", 'created': '2024-11-18 06:04:40', 'submission_id': '1gtmuiy'}
{'comment': 'I’m open to being wrong about this and correct me where you see fit but I believe this is a common misconception about the Budapest Memorandum. The USA isn’t obligated to support Ukraine (financially or with military intervention) in the scenario that Russia invades them. The Budapest Memorandum doesn’t call for that. When it speaks about assisting Ukraine it doesn’t mean assisting with money or supplies, it means to support Ukraine diplomatically (more specifically, supporting them around threats of nukes).', 'created': '2024-11-18 02:44:26', 'submission_id': '1gtmuiy'}
{'comment': 'They didn’t have any family members doing shady deals there.', 'created': '2024-11-17 22:33:18', 'submission_id': '1gtmuiy'}
{'comment': 'Bro we are a heartbeat from invading Mexico because their cartels threaten our citizens and border. Russia has a sphere of influence, and Ukraine is not part of ours. I’m all for sovereignty but at some point you gotta draw a line and call it a day.', 'created': '2024-11-17 22:28:11', 'submission_id': '1gtmuiy'}
{'comment': 'It also led to a total decimation of Russians military capabilities for quite a while, though.', 'created': '2024-11-17 22:54:49', 'submission_id': '1gtmuiy'}
{'comment': 'Man living in 2021 prob', 'created': '2024-11-17 22:45:53', 'submission_id': '1gtmuiy'}
{'comment': 'Yeah but we have Liberty Prime 😂', 'created': '2024-11-18 17:01:10', 'submission_id': '1gtmuiy'}
{'comment': 'Ceasefire, drawn a line demilitarized zone and EU allies monitor it. Fully stops the killing of Ukrainians, and Russians to be fair, but Ukraine is getting slaughtered.', 'created': '2024-11-18 02:27:08', 'submission_id': '1gtmuiy'}
{'comment': 'Ok buddy. This is officially a “go touch grass” moment for you.', 'created': '2024-11-18 00:37:50', 'submission_id': '1gtmuiy'}
{'comment': 'What’s ya source ? “Just trust me bro”', 'created': '2024-11-18 00:08:55', 'submission_id': '1gtmuiy'}
{'comment': "You're thinking of putin.", 'created': '2024-11-18 10:27:23', 'submission_id': '1gtmuiy'}
{'comment': 'Not sure why everyone is attacking you. I agree with you. It’s always been about good and evil, and I’m not surprised they’ve been forcing young Christian males into this war.', 'created': '2024-11-18 07:26:34', 'submission_id': '1gtmuiy'}
{'comment': 'Howe dare you sir /s', 'created': '2024-11-18 05:51:14', 'submission_id': '1gtmuiy'}
{'comment': 'Didn’t we try this already with Crimea? Putin will keep nibbling at Ukraine till he has all of it.', 'created': '2024-11-18 14:02:48', 'submission_id': '1gtmuiy'}
{'comment': "While I would love the idea that we can convince Putin to compromise I don't think he will unless we give him territory in Ukraine which history has told us we CANNOT do. \n\nLikely our best bet right now is to simply help Ukraine outlast Russia.", 'created': '2024-11-17 23:37:34', 'submission_id': '1gtmuiy'}
{'comment': '“No offense to anyone” but you offended first. You can’t take back something you put in writing.', 'created': '2024-11-18 01:06:35', 'submission_id': '1gtmuiy'}
{'comment': 'I think you mean to say the US fairly elected a leader who has elected to support Ukraine against a long standing threat against the United States.', 'created': '2024-11-18 16:09:57', 'submission_id': '1gtmuiy'}
{'comment': "Honestly, good point. Putin is atleast able to hold things together and, even though he is a major threat to the world, he atleast isnt insane enough to start ww3 despite all the figurative red lines we've crossed. \n\nStill though, one can only hope that a revolution will keep Russia too busy internally to deal with international affairs.", 'created': '2024-11-18 15:32:33', 'submission_id': '1gtmuiy'}
{'comment': 'Your conspiracy may actually have merit.\n\nRussia is already transforming itself into a pure war time economy so if Putin stops now then all of that transformation would be for waste. \n\nFurthermore, if Putin pulls out of ukraine then the people will overthrow him for wasting so many lives, resources and material for a useless cause. Russian society is already fully geared for war so calling it quits would anger many people.\n\nReally Putin only has one option available. Win in Ukraine no matter the cost. Anything less than that and the people would have his head for trashing the country only to lose.', 'created': '2024-11-18 15:28:05', 'submission_id': '1gtmuiy'}
{'comment': 'I miss the Reagan era of republicans who were hard on the soviets and supported the military. Afterall, "peace through strength" and the "greatest defence is offence."', 'created': '2024-11-18 22:22:13', 'submission_id': '1gtmuiy'}
{'comment': 'However, I see there being a moral argument for supporting Ukraine, but I would still hedge against it', 'created': '2024-11-18 02:47:16', 'submission_id': '1gtmuiy'}
{'comment': 'Oh ya, makes sense', 'created': '2024-11-17 22:37:14', 'submission_id': '1gtmuiy'}
{'comment': "xD\n\nTaiwan is China's sphere of influence, the same as Korea and Japan. By your logic US should fuck off then. Ready to give up on your iPhone?\n\nUpd. the same as Philippines, Vietnam, etc. Also don't forget to fuck off from Middle East because Iran and Saudi Arabia are there to rule, not some foreigner invaders", 'created': '2024-11-17 22:42:52', 'submission_id': '1gtmuiy'}
{'comment': "We're the World Police. Don't know when or how that was decided, but here we are.", 'created': '2024-11-17 22:30:34', 'submission_id': '1gtmuiy'}
{'comment': 'We are not going to invade Mexico...', 'created': '2024-11-17 23:25:40', 'submission_id': '1gtmuiy'}
{'comment': "Not for long. The russians are already in a war economy and if trump lifts sanctions, they will rebuild their arsenal and then some in shorter time than you'd think.", 'created': '2024-11-18 10:35:17', 'submission_id': '1gtmuiy'}
{'comment': 'So basically Russia keeps all of the territory that it has stolen?', 'created': '2024-11-18 17:21:52', 'submission_id': '1gtmuiy'}
{'comment': "Check my account. I'm a fellow republican. It's heartbreaking to see my fellows dogpile and insult me like this", 'created': '2024-11-18 01:50:36', 'submission_id': '1gtmuiy'}
{'comment': "So Ukraine is just supposed to roll over and show its belly? Ukraine is defending against a Russian attacker. I don't see you mentioning the 700,000+ Russian Christian men that have been killed and maimed in this war.", 'created': '2024-11-18 17:06:26', 'submission_id': '1gtmuiy'}
{'comment': 'It’s ma’am!', 'created': '2024-11-18 05:54:33', 'submission_id': '1gtmuiy'}
{'comment': 'Russia isnt getting attritioned. Not when they are tossing north koreans into the mix.', 'created': '2024-11-18 00:45:58', 'submission_id': '1gtmuiy'}
{'comment': 'No, the 2020 election was a fraud. Even some Democrats noticed that 18 million Democrat voters in 2020 vanished in 2024.', 'created': '2024-11-18 16:22:10', 'submission_id': '1gtmuiy'}
{'comment': 'Yeah thank God for the growing isolationist sentiment. Don’t need more Americans dying over superfluous wars.', 'created': '2024-11-18 22:28:08', 'submission_id': '1gtmuiy'}
{'comment': "Prob when the US wise leaders of the past understood that when the world around is burning -- we can't avoid the flame", 'created': '2024-11-17 22:53:49', 'submission_id': '1gtmuiy'}
{'comment': 'Pretty much after WWII. We were the only country with nukes for a few years at least so we became the bastion against Communisim.', 'created': '2024-11-17 23:43:56', 'submission_id': '1gtmuiy'}
{'comment': 'Any world where the U.S. isn’t the global hegemon is a very dystopian world lol', 'created': '2024-11-18 01:23:52', 'submission_id': '1gtmuiy'}
{'comment': 'Because you have a world empire through globalisation and free trade. If you dont protect it, youll lose it.', 'created': '2024-11-18 02:43:04', 'submission_id': '1gtmuiy'}
{'comment': 'At this point yes. Unless you want WWIII and more Ukrainians to die. Certainly do not want young Americans sent over there to die in a war. Believe it or not, Russia is winning.', 'created': '2024-11-18 17:23:33', 'submission_id': '1gtmuiy'}
{'comment': 'I can’t speak for the others but I didn’t insult , you’re making a wild claim without sources , so I asked for your sources. And I’ve yet to see said sources.', 'created': '2024-11-18 02:03:13', 'submission_id': '1gtmuiy'}
{'comment': 'I dont doubt you are lol', 'created': '2024-11-18 02:41:22', 'submission_id': '1gtmuiy'}
{'comment': 'Nobody is insulting you but your views on Ukraine are very misguided so either you are a fellow Republican or you are Russian troll account trying to stir the pot.', 'created': '2024-11-18 17:03:14', 'submission_id': '1gtmuiy'}
{'comment': 'Check the facts, NATO was encroaching on their territory. The agreement was that we wouldn’t do that. So.. if you look at it from an unbiased perspective instead of a “fuck Putin” pov you’d see that. \n\nImagine we had Russia on the Mexico or Canadian border flying drones over. Hell no you wouldn’t be okay with that and would stand your ground. \n\nAll these wars are about money laundering. I hope you realize that. Ukraine can do what it wants without using our tax payer dollars. We need to focus on securing OUR borders first before other countries.', 'created': '2024-11-18 22:12:22', 'submission_id': '1gtmuiy'}
{'comment': "They are absolutely getting attritioned. That's why they're throwing north koreans into the mix, and the north koreans aren't doing so well either.", 'created': '2024-11-18 10:30:21', 'submission_id': '1gtmuiy'}
{'comment': "No it wasn't. In 2020 approximately 155,485,614 people voted. In 2024 150,204,020 votes have been counted so far. That's only a fluctuation of 5,281,594 and votes are still being counted. The votes didn't vanish. Trump just got them.", 'created': '2024-11-18 16:31:11', 'submission_id': '1gtmuiy'}
{'comment': "On the issue of unnneeded, superfluous wars that I do agree upon. The middle east and GWoT debacle was fucking braindead. Furthermore, the U.S sticking its head into EVERY single conflict zone was a bit unneeded as most of those wars will fail to meet its objectives or end up having too minor of an impact. \n\nWith that said it is my personal belief that when it comes to adverseries like Russia and China, isolationism can't be afforded. Not when theyre poised to challenge us and our interest on the world stage. This isnt some goat farmers in the desert making wild claims they'll blow up America. No this is one of the worlds worst dictators poised to invade the rest of europe and start world war 3.\n\nAs much as I'd like to look away for a few years so that we could focus on domestic issues first, the truth is our enemies are gearing up for war and we need to check them before its too late. And I don't think its asking the impossible to maintain a strong foreign deterrence whilst being able to support our own people. We can do both.", 'created': '2024-11-18 22:50:02', 'submission_id': '1gtmuiy'}
{'comment': "It was always burning, since the world's been turning.", 'created': '2024-11-18 00:27:11', 'submission_id': '1gtmuiy'}
{'comment': 'Not going to argue with you, have a nice delusional day.', 'created': '2024-11-18 22:47:02', 'submission_id': '1gtmuiy'}
{'comment': "Votes are still being counted - fraudulently - in Pennsylvania, Arizona, Nevada, and California.\n\nAfter more than 2 centuries of having election results on the night of the election, suddenly blue areas can't manage to count them weeks after the election.", 'created': '2024-11-18 16:38:39', 'submission_id': '1gtmuiy'}
{'comment': 'Why does China and Russia have to be adversaries though? Why are they our adversaries?', 'created': '2024-11-18 22:54:40', 'submission_id': '1gtmuiy'}
{'comment': 'Delusional? You refuted nothing I said. I’m not trying to argue. Simply discussing and giving a different perspective. Look at it how you want, but a TRUE conservative puts their country and their borders first. As well as not egging wars on. How dumb is it to try to help others when we can’t even help ourselves lol', 'created': '2024-11-18 23:02:40', 'submission_id': '1gtmuiy'}
{'comment': '[removed]', 'created': '2024-11-18 16:59:23', 'submission_id': '1gtmuiy'}
{'comment': 'Because as much as I\'d like for peace and prosperity between our nations, China and Russia work against our interest and our people. Foe they also see us as their enemies and rivals.\n\nA quote from the U.S Government of Accountability Office on China "China’s harmful and unfair economic practices, including trade in illicit goods, use of forced labor, and theft of sensitive technologies pose risks to the U.S. economic and security interests. China is also developing its military capabilities, posing challenges to the U.S. military". They\'re oppressive regimes who, outside of oppressing their own people, also harm the peace and stability in their region. China threatens our allies in the region including Taiwan, Philippines, Japan and South korea whilst working to undermine our own capabilities. \n\nRussia on the other hand is gearing up its entire society for war. They\'re indoctrinating their kids to hate on the West so that in the future, they have a steady supply of fresh recruits. All the while they\'re economy is transitioning to a war time economy in preparation for a war. \n\nIn the event that either of these nations get their way, we\'d see the thin peace and stability we enjoy, be shattered as they start world war three over the ambitions of one foolish man.\n\nBelieve me, if there was a way to diplomatically heal the rift between our adverseries, whilst not compromising ourselves and our allies, we would\'ve pursued that a long time ago.', 'created': '2024-11-18 23:10:59', 'submission_id': '1gtmuiy'}
{'comment': 'Listen to yourself, "a TRUE conservative". Sounds like the liberals "you\'re not truly a liberal unless..."\n\nSuffice it to say I have family connections to Ukraine. In my mind a true conservative would not abandon a democracy to a fate worse than death should they lose. Have you read what the Russians are doing? (G)raping pows and civilians, shooting surrendered soldiers, and have you heard about the Bucha Massacre? We were one of the countries that forced Ukraine to give up their nuclear weapons with guarantees to assist them if Russia invaded. If we back out of that promise how does that make the USA look to all of our allies? You think Taiwan, the Philippines, S Korea, Japan, etc are going to continue to trust that we will have their back in the event of war? There are bigger issues at stake here than just hurr durr Ukraine corrupt/money laundering/biden bad. I am putting my country first because the America I know wouldn\'t let a free people become enslaved to a country of monsters.', 'created': '2024-11-18 23:13:38', 'submission_id': '1gtmuiy'}
{'comment': 'https://www.msn.com/en-us/news/politics/pennsylvania-democrats-openly-admit-to-counting-illegal-ballots-in-mccormick-casey-race/ar-AA1uckSy', 'created': '2024-11-18 18:41:02', 'submission_id': '1gtmuiy'}
{'comment': 'If you can’t see how circular your quote is, then Idk what to tell you', 'created': '2024-11-18 23:28:06', 'submission_id': '1gtmuiy'}
{'comment': "Good article. Completely pointless to the point I was making. \n\nFirst of all I disagree with the Democrats who participate in this court ignoring but it will not change who wins that race. This isn't special by the Dems though. The Republicans have been through their own amount of what I like to call political BS. \n\nWith that out of the way that doesn't change that it normally takes weeks if not occasionally months to finish counting and recounting votes. Neither this election nor the last one was stolen by either party.", 'created': '2024-11-18 19:40:20', 'submission_id': '1gtmuiy'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-17 17:35:56', 'submission_id': '1gthgxo'}
{'comment': "This should be interesting. The best candidate should get the job... period. As for those career bureaucrats that choose to ignore or slow walk stuff... FAFO, I'll go pop the popcorn.", 'created': '2024-11-17 18:25:09', 'submission_id': '1gthgxo'}
{'comment': 'There has been an awakening, have you felt it?', 'created': '2024-11-18 03:40:34', 'submission_id': '1gthgxo'}
{'comment': "Never mind, I googled it. I guess it doesn't stand for F all the way the F off.", 'created': '2024-11-17 19:01:04', 'submission_id': '1gthgxo'}
{'comment': '[removed]', 'created': '2024-11-17 18:10:07', 'submission_id': '1gthgxo'}
{'comment': 'Something *better* is coming.', 'created': '2024-11-17 21:27:42', 'submission_id': '1gthgxo'}
{'comment': 'hey, does FAFO stand for what I think it stands for? Because.... I got the salt.... and the butter', 'created': '2024-11-17 18:58:30', 'submission_id': '1gthgxo'}
{'comment': 'hey, does FAFO stand for what I think it stands for? Because.... I got the salt.... and the butter', 'created': '2024-11-17 18:59:08', 'submission_id': '1gthgxo'}
{'comment': 'Foul around and find out.', 'created': '2024-11-17 19:03:07', 'submission_id': '1gthgxo'}
{'comment': "Fùçķ around and find out, I'm sure you were thinking exactly this.", 'created': '2024-11-17 19:00:14', 'submission_id': '1gthgxo'}
{'comment': 'Fouled around, found out, maybe in the near future.', 'created': '2024-11-17 20:53:07', 'submission_id': '1gthgxo'}
{'comment': 'Thank you I was wondering the same thing', 'created': '2024-11-18 00:59:42', 'submission_id': '1gthgxo'}
{'comment': 'Maybe fool around and find out. A lot of F words.', 'created': '2024-11-17 23:31:30', 'submission_id': '1gthgxo'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-17 16:31:32', 'submission_id': '1gtg0sv'}
{'comment': 'Rand Paul better be involved in this. He brings the receipts every festivus.', 'created': '2024-11-17 16:44:06', 'submission_id': '1gtg0sv'}
{'comment': 'The ATF for starters.', 'created': '2024-11-17 17:29:21', 'submission_id': '1gtg0sv'}
{'comment': "1. Improper payments\n2. Tax dollars funding LGBT activism abroad\n3. 'Indigenous knowledge' grants\n4. DEI at the VA and beyond\n5. Inventing gay landmarks", 'created': '2024-11-17 17:03:00', 'submission_id': '1gtg0sv'}
{'comment': 'Yeah we definitely should not be funding LGBTQ activsim abroad (from the article) or at home for that matter, they can fund themselves if they want', 'created': '2024-11-17 18:37:10', 'submission_id': '1gtg0sv'}
{'comment': 'And Musk won’t stop at 5 gov programs…there is so much waste of our tax dollars.', 'created': '2024-11-17 17:49:37', 'submission_id': '1gtg0sv'}
{'comment': 'But where will all the saved $$$$$$$$ go? Will they be put in Social Security or towards debt clearance? Has anyone mentioned anything about that?', 'created': '2024-11-17 22:15:48', 'submission_id': '1gtg0sv'}
{'comment': 'I dont care about those \nCan we get rid of the programs that legally kidnap poor American kids from their parents?\nCan we?\nI want to see that department crumble', 'created': '2024-11-17 21:20:20', 'submission_id': '1gtg0sv'}
{'comment': 'Drops in the bucket.\n\nI want the earth salted with the salty tears of neocons. Audit the pentagon and the federal reserve. Reform social security. If it elicits an eye roll from anyone intelligent, slash it. We must push for REAL fiscal conservatism, and not be gaslit because they stop funding some outrage-bait woke bullshit. \n\nA dollar reduction in tax revenue for every two dollars cut from the budget.\n\nThe election was a chance to PROVE their conservatism, not an acceptance that they are anything other than culture war grifters.\n\nThe only thing I trust less than a repub is a democrat, but they are all politicians. *Republicans are politicians until proven otherwise.*\n\nI will not be impressed by lip service moderation. This is a chance to do great things, and if they fuck it up I have no problem staying home for the midterms and 2028.', 'created': '2024-11-17 20:34:01', 'submission_id': '1gtg0sv'}
{'comment': 'Likely a lot more than 5. I think he should start by listing every department and every program they fund. Remove all duplicates.', 'created': '2024-11-17 17:36:13', 'submission_id': '1gtg0sv'}
{'comment': '[removed]', 'created': '2024-11-17 17:34:57', 'submission_id': '1gtg0sv'}
{'comment': 'Glad to have him, the circle back program has been going on for years. Gov Newscum just bought a new home at 9.1 million on what a salary of 200k BS.', 'created': '2024-11-18 01:30:40', 'submission_id': '1gtg0sv'}
{'comment': 'Our government is so bloated. I really hope we cut like 65% +', 'created': '2024-11-18 05:17:18', 'submission_id': '1gtg0sv'}
{'comment': 'Maybe they can tackle a few of the items on this handy list assembled by [Rep. Bill Posey.](https://search.app?link=https%3A%2F%2Fposey.house.gov%2Fwasteful-spending%2F&utm_campaign=aga&utm_source=agsadl2%2Csh%2Fx%2Fgs%2Fm2%2F4)', 'created': '2024-11-18 19:26:37', 'submission_id': '1gtg0sv'}
{'comment': "it's not going to be an official government agency....", 'created': '2024-11-18 19:49:28', 'submission_id': '1gtg0sv'}
{'comment': 'Will that be easy to do ? I’m for it but curious on the logistics. Those are entrenched Federal agencies. Where will all those jobs go ?', 'created': '2024-11-17 17:18:25', 'submission_id': '1gtg0sv'}
{'comment': 'Love that guy..', 'created': '2024-11-17 16:50:25', 'submission_id': '1gtg0sv'}
{'comment': 'Yes he is the one that have consistently complained about government waste. I think it is wise for Musk and Vivek to involve him.', 'created': '2024-11-18 04:52:37', 'submission_id': '1gtg0sv'}
{'comment': 'Abolishing the National Firearms Act would be a good start towards cutting the BATFE by a significant amount.', 'created': '2024-11-17 19:46:38', 'submission_id': '1gtg0sv'}
{'comment': 'Yessssss', 'created': '2024-11-17 18:20:41', 'submission_id': '1gtg0sv'}
{'comment': 'Be serious here', 'created': '2024-11-17 18:42:29', 'submission_id': '1gtg0sv'}
{'comment': 'Good trash that nonsense', 'created': '2024-11-17 19:19:34', 'submission_id': '1gtg0sv'}
{'comment': 'Wow what the fuck', 'created': '2024-11-17 17:44:04', 'submission_id': '1gtg0sv'}
{'comment': 'In other examples of the left eating their own, AOC dropped her pronouns from her socials like it was July 1. Seeing if they stand up to these things or quietly let them fall will be indicative of how quickly it’s just about the money and power vs being virtuous.', 'created': '2024-11-17 20:25:21', 'submission_id': '1gtg0sv'}
{'comment': 'Fuc', 'created': '2024-11-17 18:42:05', 'submission_id': '1gtg0sv'}
{'comment': "Not wanting to fund it here, either. \n\nDidn't go out of the way to restrict it, but didn't go out of the way to fund it, either.", 'created': '2024-11-17 19:31:20', 'submission_id': '1gtg0sv'}
{'comment': "Every single dollar that isn't being used for absolutely critical programs. \n\nIf I was benevolent dictator, you would be amazed how much will be chopped", 'created': '2024-11-17 22:34:27', 'submission_id': '1gtg0sv'}
{'comment': "You're right. The article left out the obvious: the US Dept of Education. Giving states block grants is such a great idea!", 'created': '2024-11-17 20:16:24', 'submission_id': '1gtg0sv'}
{'comment': 'Those are probably the easiest ones to do.', 'created': '2024-11-18 02:06:27', 'submission_id': '1gtg0sv'}
{'comment': "Honestly, I don't care. If 10-20 million illegal aliens get deported, those useless employees can take one of those job vacancies. The US federal government as a whole is the world's largest employer and there is absolutely no excuse for it.", 'created': '2024-11-17 19:52:22', 'submission_id': '1gtg0sv'}
{'comment': 'Exactly. Let them have their parades, bumper stickers, and fly their flags all that they want. There are many ways they can bring awareness without it costing taxpayer money.', 'created': '2024-11-17 20:59:28', 'submission_id': '1gtg0sv'}
{'comment': 'This is something, while it would be great is highly, highly improbable to actually happen. \n\nThe checks in balances in place that would be difficult to hurdle to say the least will never allow this to happen.', 'created': '2024-11-18 09:57:13', 'submission_id': '1gtg0sv'}
{'comment': 'The issue is that nobody actually cares, so they provide it with government funding to make it appear like people care.', 'created': '2024-11-17 21:08:01', 'submission_id': '1gtg0sv'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-17 16:14:26', 'submission_id': '1gtfnh3'}
{'comment': 'The accounting is going to take a massive effort. Some of these long established government agencies have kick-back money buried everywhere. We all suspect it, but it is difficult to prove.', 'created': '2024-11-17 19:36:22', 'submission_id': '1gtfnh3'}
{'comment': 'Just the beginning.', 'created': '2024-11-17 16:44:38', 'submission_id': '1gtfnh3'}
{'comment': 'They won’t call it a failed audit because it was about half good. Soooo, how does about 50% = almost passing?', 'created': '2024-11-17 21:01:13', 'submission_id': '1gtfnh3'}
{'comment': 'Can we make owning a Shiba Inu a microaggression that triggers college liberals?', 'created': '2024-11-18 03:01:04', 'submission_id': '1gtfnh3'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-17 15:05:10', 'submission_id': '1gte8sp'}
{'comment': 'There is no way I can convince everybody here that human caused climate change exists or has negative consequences.\n\nNow I will put forward that there are other reasons to support more efficient energy sources/production. The US economy benefits when we are efficient, if we can produce the same amount or more with less we are all better off for it. Some sources of energy are not efficient, coal being a prime example; coal power plants that operate in the US have an efficiency of about 33%. Whereas natural gas plants can reach efficiencies in the 70% range. Nuclear is similar to the efficiency of coal; however, the waste produced is in some ways easier to deal with.\n\nMoreover, should be striving to make our vehicles more efficient, just not with the government meddling with how that is accomplished. I am happy when I get good mileage, because it costs me less.', 'created': '2024-11-17 18:40:23', 'submission_id': '1gte8sp'}
{'comment': "Climate change is a problem we have to deal with, that is a must. Doesn't matter if you're a republican or democrat. If anything us republicans should encourage alternatives more, so less government intervention is required in our daily life regarding emissions.\n\nWhat is a bigger issue to me is why the hell would some of you think that governments, private research, universities and etc are employing hundreds and thousands of people all over the world with a ton of money to sit around and try to convince you to lower your emissions and recycle? You not buying more things which are created by making more emissions and waste (makes you richer not companies) or you literally using two garbage bags one for recycle and another for regular, that doesn't benefit anyone financially. There's no global agenda to fool some random carpenter down in Iowa dude. Move on, understand you're not at the center of the universe. If you're brain cannot grasp these concepts in a simple BIO1000 or even a children's book, you can create these experiments for yourself.\n\nTake 3 small plants. Water one regularly, the other over water and another water irregularly. Keep the sunlight as a constant. Some of them will die depending on the species. Just because us humans have a crazy ability to adapt doesn't mean other species can.\n\nOR\n\nTake a cup, put some freezing temp water (the same freezing temp you follow for snow directions) and throw a cube of ice on it and mark the water level once they're both in the freezer. Now lower the degree of the freezer by a tiny degree or two. Recheck the new water level. This is the hard part, imagine that the water is the ocean, and there's hundreds of these ice cubes but the size of texas. I'm sure you can see how a global rising of the temp can create a lot of excess water.\n\nYou can try those without any government or private agency employing hundreds of thousands of 9-5ers all around the world to try and fool you for an unprofitable cause. \n\nAs for historical context, yes global warming and cooling has happened in the past. But the Earth being a simple 10°F cooler was a considered an ice age and if you're wondering if humans would enjoy that go watch the Ice Age movie series maybe it will help you visualize the climate lol. Ideally whenever the next Ice Age is we should work towards mitigating it's effects and not try to bring it closer, unless you want your future generations to freeze over and turn into biological/historical studies to see how the people of a region died during a freeze. \n\nDoubt you all would want government/Uni/private funder researchers to examine the bodies of your future great great great great great great great great great great great great grandchildren to use them in conspiracies once the climate turns normal after the next one. 😃👍", 'created': '2024-11-17 20:08:03', 'submission_id': '1gte8sp'}
{'comment': 'Let make things better and keep progress moving', 'created': '2024-11-17 15:52:17', 'submission_id': '1gte8sp'}
{'comment': '0.04% of our atmosphere is c02,\n\nWe are essentially at our lowest c02 concentration compared to when the earth was completely covered in ice\n\nMan made climate change is a hoax', 'created': '2024-11-17 16:10:15', 'submission_id': '1gte8sp'}
{'comment': "Whenever someone tells me that the earth is too warm and causing climate change I point them to the medieval warm period, call me when Mediterranean plants are growing in North Norway again.\n\nDownvote me all you want, you're just acting like the lefties by doing so. 😂 🤣", 'created': '2024-11-17 15:46:16', 'submission_id': '1gte8sp'}
{'comment': 'Fossil fuel production can be helped by this possible innovation.[https://nypost.com/2024/11/16/us-news/trump-taps-oil-boss-chris-wright-as-secretary-of-energy/?utm_campaign=iphone_nyp&utm_source=pasteboard_app](https://nypost.com/2024/11/16/us-news/trump-taps-oil-boss-chris-wright-as-secretary-of-energy/?utm_campaign=iphone_nyp&utm_source=pasteboard_app)', 'created': '2024-11-17 15:23:22', 'submission_id': '1gte8sp'}
{'comment': 'Likewise on all accounts. I want cleaner cheaper energy and the less I have to fill up the tank the better.', 'created': '2024-11-17 20:27:33', 'submission_id': '1gte8sp'}
{'comment': 'Further, reaching peak efficiency would free the US from any and all dependence of foreign energy sources as well as put a serious crimp in the cash flow of both semi- and openly hostile foreign powers once we sell our new tech to other countries.', 'created': '2024-11-18 05:27:21', 'submission_id': '1gte8sp'}
{'comment': "Hasn't the climate actually cooled off 🤔", 'created': '2024-11-17 21:21:22', 'submission_id': '1gte8sp'}
{'comment': 'You know, while your answer is correct about the 0.04% of CO2, the word "essentially" just ruins the test of your arguement. \nNow it\'s true over the history of the earth, the amount of CO2 has been higher and lower than this. Dramatically higher too ... \nHowever that change has been over many thousands of years. \nWhat is occurring now is change at greater speed, attached to not only the use or fossil fuels, but also the deforestation of the planet. \nWould you like a reasonable and respected source for this information? \nNow, what I think is missing, is the moving away from fossil fuels to alternative natural methods of generating power, however since Fossil fuels energy providers want governments to not develop electric cars, etc .. that\'s the way it\'s been for years. We could have had great, effective electric vehicles decades ago if not for the need to drill baby drill.', 'created': '2024-11-17 16:32:21', 'submission_id': '1gte8sp'}
{'comment': "I am as red as they get, but I am also a scientist and only idiots think we are not causing climate change\n\nThe entire western hemisphere is undergoing extreme droughts, the Caribbean and the Atlantic is far warmer but it should be spawning much more severe storms and many other problems. Even the Northeast is in a major drought and we're having many wildfires \n\nGet your head out of the stand and stop acting like nothing is happening \n\nThe solution just isn't going to be that from the left where the United States should spend trillions of dollars while the rest of the world burns coal\n\nNuclear power will be an amazing solution if people stop cursing it. So is solar and wind and tidal to a certain point", 'created': '2024-11-17 16:11:27', 'submission_id': '1gte8sp'}
{'comment': 'It’s the rate at which the climate is changing that is the issue. Not that climate is changing which is what it always has done and always will do', 'created': '2024-11-17 17:48:59', 'submission_id': '1gte8sp'}
{'comment': 'Doing great with my hybrid. Don’t care about greenhouses unless we are talking tomatoes. Just want the fuel savings.', 'created': '2024-11-18 00:46:21', 'submission_id': '1gte8sp'}
{'comment': 'Anecdotally, when I was a kid, less than 20 years ago, snow would be on the ground in my home town until mid to late March. Now, you might be lucky to have a trace snow on the ground in early March. It is not just the drought, the temperature in January can get into the low 70s; when I was young that did not happen.', 'created': '2024-11-17 21:40:28', 'submission_id': '1gte8sp'}
{'comment': 'How many wind mills would it take to power EV vehicles if every vehicle in the United States was EV? Could we even be able to power them now at our current electric production?', 'created': '2024-11-17 17:26:09', 'submission_id': '1gte8sp'}
{'comment': 'Let go nuclear. I am with you there 100%', 'created': '2024-11-17 16:22:33', 'submission_id': '1gte8sp'}
{'comment': 'I am also a scientist, and I disagree, and there are lots of climate scientists who disagree. I think you need to study paleoclimatology more. There is really no evidence that CO2 is causing catastrophic or even harmful climate change. It was warmer during the medieval warm period. The rate of warming today is not unusual. When we started taking instrumental temperature measurements 150 years ago this was during the coldest time in the last 8000 years when glaciers were at their maximum extent since the ice age. Solar cycles and climate are closely correlated. Like REALLY well correlated. CO2 is beneficial for plants and the world has actually greened in the last 100 years. It is a complete fools errand to try removing beneficial CO2 from the air. More CO2 is a good thing. Agriculture has become more productive due to rising levels of CO2. The media/politicians have really exaggerated the climate change narrative. The more I learn about the science of it the less worried I am about CO2. It’s a non-issue. But I am all for nuclear power. The more energy we have, the more prosperous we will be.', 'created': '2024-11-17 17:12:37', 'submission_id': '1gte8sp'}
{'comment': "Did I say nothing was happening? No, get your head out of the sand and stop mincing my words. Now I'll lay it out to you. Climate change is happening, how much of it is natural cycles in the earth vs human excess noone really knows. I was simply pointing out that there have been warmer periods in human history. If you want something that will really make you think read this:\n\nhttps://www.severe-weather.eu/learnweather/global-weather-drivers/why-is-the-atlantic-ocean-current-collapsing-and-can-it-cause-global-cooling-fa/\n\nWe are also only 1 super eruption away from a severe global cooling cycle.\n\nhttps://www.nps.gov/articles/000/1816-the-year-without-summer.htm\n\nLast I checked, Anak Krakatoa has grown even larger than Krakatoa was when it blew up in the 1880s.\n\nAre humans influencing climate change, yes of course we are, however global climate fluctuations are such a complex thing with many factors. I fully support nuclear energy until we can come up with something different. Next time please have a conversation before plying the downvote button with vigor.", 'created': '2024-11-17 17:55:24', 'submission_id': '1gte8sp'}
{'comment': 'Playing with your hasbro microscope does not make you a scientist bubs.\n\nIf you had any semblance of being a scientist you would know man made climate change is a hoax.', 'created': '2024-11-17 18:54:42', 'submission_id': '1gte8sp'}
{'comment': 'As a scientist what happens when sea water gets warmer? Answer more evaporation.\n\nAs a scientist what happen to warmer air, how much more moisture can it carry? Answer more moisture. \n\nAs a scientist when air heats more than before is convective wind higher or lower? More of course.\n\nAs scientist why do the tropical portions of our globe close to sea water have abundant vegetation and bountiful wild life? \n\nAs a scientist why do parts of the Saudi desert have modest bodies of water for the first time for more than a century? \n\nAs a scientist what happens to cold blooded animals when the environment they live in warms up. Answer metabolically they digest their food faster and eat more of their prey and grow excptionally fast and larger than normal temperature enviroments. Evidence every Texas power station cooled by their own lakes or gulf water or river waters has inordinately plentiful abundant bio growth in the hot outfall without exception for any of them.\n\nAs a scientist solar and wind are known inconsistent power sources and have to have enormous battery banks to back just a full days worth of name plate product. Must of these generators never afforded their backup stage systems. All days after that battery limitation there is zilch capacity left. If they need a fossil or nuclear energized power station to back up that lack of power production, but does not have the contagious normal power sales to pay for those mostly redundant generation capacities. What investor is ever going to spend their fortune building new nuclear or fossil generating capacity that can never pay for itself? Especially considering the inordinately high cost of nuclear power stations. \n\nTexas with it high percentage of "renewable" power souces is already facing this reality, while retiring atrophied coal and lignite fueled stations. The Texas fleet of gas fired stations are aging and not being replaced for lack of sufficient rates of return, while facing threats of premature goverment mandated retirement. When Texas had its 2021 freezagedia (how could it see its 1000+ year inordinately low temperatures during an El Mino year?) without sufficient back up batteries for its new renewable sources? Why do winds stop blowing when heat convection inspired winds stop blowing? Why must iced up wind turbines blades be stopped rotating while they are out of balance due to uneven ice deposits? How long does a snow and ice covered solar station take to get enough heat to clear such an obstruction and return to generating? Will sufficient battery backup be afforded to produce name plate capacity until that ice and snow has melted off. How many weeks will it take for such a more northern state to melt of that coating or clear the turbine blades of their icing imbalancing?\n\nBottom line scientific and engineering minds have not been used to conceive these myoptically highly unreliability reweable dependant systems.', 'created': '2024-11-17 19:40:42', 'submission_id': '1gte8sp'}
{'comment': 'My hybrid has been good too. I’d go electric but I don’t have a good way to charge it and chargers aren’t always available when I would need them for longer trips', 'created': '2024-11-18 00:55:59', 'submission_id': '1gte8sp'}
{'comment': 'That’s an awfully small snapshot of a world that’s millions of years old \n\nWe know historically carbon in the atmosphere was substantially higher. \n\nEven by the greenies own emission, their goal will only reduce carbon by a fraction of 1% \n\nThis whole green energy movement was manufactured and lobbied for by china out of necessity. \n\nThey have a vast mineral supply only thing they are lacking in is oil. So it’s in their best interest in developing alternative energy. \n\nWhat a better way than to scare Americans with cow farts so Americans will develop the tech they need. America has 300 years of oil reserves in ground. \n\nI’d be all for reducing carbon if that means reducing pollution of air and land but the alternative energy materials are just as destructive if not more.', 'created': '2024-11-17 22:58:42', 'submission_id': '1gte8sp'}
{'comment': 'We probably could never have enough windmills or solar to power such a fleet. In the end we need to be pushing nuclear as well not only to power EVs but to satiate our growing power consumption and phase out inefficient coal plants.', 'created': '2024-11-17 17:48:59', 'submission_id': '1gte8sp'}
{'comment': 'It’s a dumb question to begin with.\n\nSticking with my statements on man made climate change being a hoax, the us only accounts for 14% of the world’s c02 emissions.\nAbout 40% of that is transportation.\n\nWasting money on unreliable ev’s will never happen.', 'created': '2024-11-17 18:46:49', 'submission_id': '1gte8sp'}
{'comment': 'A wide array of very safe small and other types of nuclear reactors has been developed since the Chernobyl and Three Mile Island poor designs. \n\nWe could power the entire country on this.\n\nMany jobs would be created and we could put these coast to coast and clear the air of the coal and oil pollution \n\nMany third world countries who struggle with the cost of imports such as the Philippines could be assisted with this and could have energy independence and prosperity', 'created': '2024-11-17 16:28:41', 'submission_id': '1gte8sp'}
{'comment': 'Define lots of climate scientists, is that a handful or >50%? You state that there is “really no evidence” of CO2 causing harmful climate change, can you elaborate with counter evidence?\n\nYou are right removing CO2 is a fools errand; however, reducing the rate that we put previously trapped carbon dioxide into the atmosphere is not. If anything, by reducing the rate we become more efficient in our use of those resources and more competitive as an economy.\n\nI might be selfish, but the rate of warming is a little alarming. I would like my ski seasons to be cold and long.', 'created': '2024-11-17 18:05:57', 'submission_id': '1gte8sp'}
{'comment': 'Yes the medieval warm period is very interesting to study and they have traced it as a cause of viking migrations. It was followed by the little ice age which may have been a factor ushering in the age of exploration.', 'created': '2024-11-17 17:59:59', 'submission_id': '1gte8sp'}
{'comment': 'Dont waste your time on these people. Simple facts disprove their man-made climate change theory but it’s a religion to them.', 'created': '2024-11-17 18:55:20', 'submission_id': '1gte8sp'}
{'comment': 'Biologist by profession\n\nWhereas apparently you were an idiot by profession', 'created': '2024-11-17 19:13:09', 'submission_id': '1gte8sp'}
{'comment': 'I know it is a small snapshot in time; however it is the fact that it is a small snapshot which makes it alarming. If this occurred over the course of a hundred years it would be less alarming.\n\nYes, atmospheric CO2 was much higher millions of years ago. We as a society, out of necessity, increased atmospheric CO2 by around 50% in a few centuries. These processes without our intervention are on an entirely different time scale.\n\nI am not most “greenies”. I know wind and solar are not the complete answer (quick aside: they are unsightly). I want rapid renuclearization of the power grid. I want to phase out as much carbon based power generation as possible (not all). EVs are not a good solution and should not be a main focus. Nor should batteries for grid storage.\n\nI think I’m going to need some evidence to back up your claim that China has manufactured a climate change hoax. Consider, climate change has been researched by western scientists for over 100 years.\n\nWouldn’t it be better if those reserves lasted 600 years. Why should we be opposed to technology that decreases the rate of consumption of limited resources.', 'created': '2024-11-17 23:23:50', 'submission_id': '1gte8sp'}
{'comment': 'You aren’t the one I responded to. I never claimed they were reliable.', 'created': '2024-11-17 19:11:58', 'submission_id': '1gte8sp'}
{'comment': 'Better designs better for the world and more power to improve quality of life.', 'created': '2024-11-17 16:30:27', 'submission_id': '1gte8sp'}
{'comment': 'Yeah I agree, I guess being debate team captain in high school still sticks with me 35 years later 😂', 'created': '2024-11-17 19:02:09', 'submission_id': '1gte8sp'}
{'comment': 'ROFL\n\nImagine thinking being a biologist makes you an expert on “man made climate change”\n\nClimate change theory, especially the way you climate change religion folks try to prove it, is based in physics and math, not biology.\n\nClaiming your degree does not make your argument valid. Plenty of doofuses out there with degrees (including yourself). \xa0Biologists usually end up in the realm of losers who never got into medical school 🤡🤡🤡\n\n-Bioengineering undergrad, MD, and commercial pilot', 'created': '2024-11-17 19:36:39', 'submission_id': '1gte8sp'}
{'comment': 'It’s no coincidence the colleges that do the most for “climate research” get the most $ from China', 'created': '2024-11-18 00:10:17', 'submission_id': '1gte8sp'}
{'comment': 'And idiot', 'created': '2024-11-17 19:37:56', 'submission_id': '1gte8sp'}
{'comment': 'And your medical doctorate relates to climate change?\n\nTo another point, appealing to authority without evidence (your own credentials especially is a logical fallacy). Moreover, when pressed you have failed to produce more evidence than “CO2 concentrations have been higher” and have resorted to childish ad hominem attacks. \n\n- BSME (since you appear to need our credentials)', 'created': '2024-11-17 22:21:37', 'submission_id': '1gte8sp'}
{'comment': 'It is not just universities in the United States that do this sort of research. NCAR and NOAA are reputable government agencies that do this sort of research along side universities. \n\nCan you prove that the money is going towards climate research?\n\nWhat is more likely, that prestigious universities that produce the most overall and climate research are the most funded by US and foreign actors, or that the Chinese have found a way to pay for specific research on climate change without specifically funding those programs not to mention influencing the outcome of said studies in their favor. I find the former more convincing.', 'created': '2024-11-18 00:49:13', 'submission_id': '1gte8sp'}
{'comment': 'But it’s not just “research,” we’re talking about measurable *living memory*. \n\nI’m in Utah right now where geology is king. We can SEE the geologic history with our own eyes (very cool place to visit!). Research talks about what we can guess about temperature (and everything else) way back when.\n\nBut this isn’t that. We’re talking about what my grandma, mom, and I have felt. All of us still alive.', 'created': '2024-11-18 07:15:52', 'submission_id': '1gte8sp'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-17 08:42:16', 'submission_id': '1gt8jsw'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-17 08:15:42', 'submission_id': '1gt86s7'}
{'comment': 'WTH is a TERF?', 'created': '2024-11-17 15:54:25', 'submission_id': '1gt86s7'}
{'comment': 'Nice read. I will use this', 'created': '2024-11-17 23:58:43', 'submission_id': '1gt86s7'}
{'comment': '[removed]', 'created': '2024-11-17 17:24:27', 'submission_id': '1gt86s7'}
{'comment': "trans exclusionary feminist radical. Yeah, It's another made up word by loopy lefty", 'created': '2024-11-17 17:49:15', 'submission_id': '1gt86s7'}
{'comment': 'Trans-Exclusionary Radical Feminist.\n\nEssentially, old-school feminists who understand that men claiming they are women are not women, and say so. This makes the transgender activists unhappy.', 'created': '2024-11-17 20:21:35', 'submission_id': '1gt86s7'}
{'comment': "Don't know, don't care, in 25 years these people will all be regretting this nonsense.", 'created': '2024-11-18 00:06:11', 'submission_id': '1gt86s7'}
{'comment': "You know, I live my life by 3 questions... is what I'm doing interfering with someone else's Life, Liberty and/or Pursuit of Happiness. I don't care what someone else does with their body as long as what they are doing doesn't cause interference in someone else's life, liberty and pursuit of happiness. Don't misinterpret my disinterest in your lifestyle as condemnation.", 'created': '2024-11-17 18:18:22', 'submission_id': '1gt86s7'}
{'comment': 'I imagine so.', 'created': '2024-11-17 20:31:02', 'submission_id': '1gt86s7'}
{'comment': "To feel regret they would have to take accountability for their actions and that's not happening", 'created': '2024-11-18 00:08:03', 'submission_id': '1gt86s7'}
{'comment': "I'm saving this, it's a great perspective! Especially the last sentence, very well said. Thank you!", 'created': '2024-11-17 22:52:23', 'submission_id': '1gt86s7'}
{'comment': 'Well, duh. There is an old saying, "The stupidest people make the stupidest mistakes, and take the longest time to realize the stupidity, but only a self-hating moron wouldn\'t take responsibility for his or her own actions. \n\nIf I fell in my bathroom getting out of the shower, is it my fault? Or is it the fault of the people who built my house in 1948? Or the fault of the owner who left the original bathtub made of porcelain and cast iron in there when it was refloored 50 years ago? Or is it all my fault for not being careful?', 'created': '2024-11-18 00:12:35', 'submission_id': '1gt86s7'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-17 06:57:52', 'submission_id': '1gt72f7'}
{'comment': 'When you call Democrats the biggest hypocrites in history, they always say “challenge accepted” and sink even lower.', 'created': '2024-11-17 07:46:33', 'submission_id': '1gt72f7'}
{'comment': 'Democrats never question climate czar John Kerry on his private jet usage. Even if he flew commercial there’s no reason for his frequent flights in this age of Zoom calls.', 'created': '2024-11-17 09:10:15', 'submission_id': '1gt72f7'}
{'comment': 'More likely Greta said, "that\'s nothing, hold my beer."', 'created': '2024-11-17 19:00:39', 'submission_id': '1gt72f7'}
{'comment': "If Harris wasn't a demonrat bozo thunberg would have already had something to say about this issue.", 'created': '2024-11-17 10:21:15', 'submission_id': '1gt72f7'}
{'comment': '👋 Waves 👋 at woke person humping the down vote button. That will only get you frequent button humper credits. 😆', 'created': '2024-11-17 07:06:40', 'submission_id': '1gt72f7'}
{'comment': '$12 million on a futile cause also.', 'created': '2024-11-18 00:32:14', 'submission_id': '1gt72f7'}
{'comment': 'Ok quick, someone pull out a calculator and figure out how much she owes in carbon credits.\n\n 🤔', 'created': '2024-11-17 07:49:47', 'submission_id': '1gt72f7'}
{'comment': 'Don’t forget the millions to the celebrities.', 'created': '2024-11-18 02:39:09', 'submission_id': '1gt72f7'}
{'comment': 'She proved only one thing. Burning money into the ether is easy.', 'created': '2024-11-17 13:43:35', 'submission_id': '1gt72f7'}
{'comment': "Little Ms. Halfdowns probably doesn't care all that much because she wasn't paid to care this time. Or she's too worried about what the next Palastinian dick she sucks, is going to taste like.", 'created': '2024-11-17 13:23:55', 'submission_id': '1gt72f7'}
{'comment': 'Did Greta Thunberg even support Harris? Thunberg is Pro-Palestine and an environmental activist to the extreme. She would not have liked anyone put forward. She hates Trump obviously, but when you’re that off the deep end into climate activism and spend your time like she does, getting arrested for breaching the peace in the UK (which, let’s be honest…Isn’t hard to accomplish…) you’re not going to care about America’s politics. Harris was pro-fracking which Thunberg probably hates too. She lost a ton of followers being Pro-Palestine, Most of these Pro-Palestine activists are insane and have no idea what they’re even supporting so they need to all be ignored and shoved into the box of irrelevance anyways. Thunberg is just another rich influencer that is detached from the real world.\xa0', 'created': '2024-11-17 17:55:48', 'submission_id': '1gt72f7'}
{'comment': 'Anything to win, for them to lose.', 'created': '2024-11-18 06:12:23', 'submission_id': '1gt72f7'}
{'comment': 'I’m not surprised.', 'created': '2024-11-18 06:19:18', 'submission_id': '1gt72f7'}
{'comment': "Well, I don't see her protesting yet", 'created': '2024-11-18 07:28:09', 'submission_id': '1gt72f7'}
{'comment': 'Can hear her now … How dare they! \n\nThough betting she gives them a pass', 'created': '2024-11-17 12:46:24', 'submission_id': '1gt72f7'}
{'comment': 'Fortunately the Trump campaign travels by trebuchet and saves a lot of carbon', 'created': '2024-11-18 01:50:09', 'submission_id': '1gt72f7'}
{'comment': 'When they go low, we go high…. \n\nUp in the sky apparently.', 'created': '2024-11-17 13:43:04', 'submission_id': '1gt72f7'}
{'comment': 'Or how about AOC and her green new deal? She flies to DC instead of taking the train from NYC', 'created': '2024-11-17 10:53:18', 'submission_id': '1gt72f7'}
{'comment': "I love that they lurk here and see all the facts that we post and comment here and they are STILL brainwashed and angry lmao. The woke radical liberals are so far down the denial rabbit hole it's fucking scary.", 'created': '2024-11-17 07:24:54', 'submission_id': '1gt72f7'}
{'comment': 'Yeah that will get paid right after their 20mil deficit gets paid.', 'created': '2024-11-17 17:18:29', 'submission_id': '1gt72f7'}
{'comment': 'The republicans never shame people about carbon usage so it doesn’t matter how many PJs they use', 'created': '2024-11-18 16:01:51', 'submission_id': '1gt72f7'}
{'comment': "It's like they have nothing better to do.\n\n Wait... Down voting this post could very well be the highlight of their day. 😆", 'created': '2024-11-17 07:33:10', 'submission_id': '1gt72f7'}
{'comment': 'Love your comment! My morning laugh! (Now I gotta go wipe up coffee)', 'created': '2024-11-17 13:41:33', 'submission_id': '1gt72f7'}
{'comment': 'Peanut butter and jellies', 'created': '2024-11-18 16:40:58', 'submission_id': '1gt72f7'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-17 05:05:53', 'submission_id': '1gt59d2'}
{'comment': 'You can tell where the author stands', 'created': '2024-11-17 05:31:41', 'submission_id': '1gt59d2'}
{'comment': 'Playing favorites they are I see', 'created': '2024-11-17 05:11:23', 'submission_id': '1gt59d2'}
{'comment': 'I wonder if Biden’s says that more people died of Covid under his watch than under Trump’s.', 'created': '2024-11-17 06:00:15', 'submission_id': '1gt59d2'}
{'comment': 'Yall should’ve seen it three years ago. It was pretty much a list of negative accomplishments highlighting literally only the worst shit 💀 it got edited because this is not what i read 3 years ago. This is honestly respectable compared to what was there.', 'created': '2024-11-17 07:38:17', 'submission_id': '1gt59d2'}
{'comment': 'Somehow I see the author getting an email from Musk.', 'created': '2024-11-17 13:48:53', 'submission_id': '1gt59d2'}
{'comment': "Wow that's crazy", 'created': '2024-11-17 13:44:17', 'submission_id': '1gt59d2'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-17 04:25:20', 'submission_id': '1gt4jyd'}
{'comment': 'That’s like 6 people murdered by libs over anger about Trump. So crazy', 'created': '2024-11-17 05:01:40', 'submission_id': '1gt4jyd'}
{'comment': 'Why isn’t these election murders being talked about? If it was the other way around this would a epidemic.', 'created': '2024-11-18 07:21:47', 'submission_id': '1gt4jyd'}
{'comment': 'Something ironic is he talked about mental health and how when left unchecked can lead to murder suicides like he did', 'created': '2024-11-17 05:46:13', 'submission_id': '1gt4jyd'}
{'comment': 'These are those men for Kamala? Sad as hell.', 'created': '2024-11-17 05:17:47', 'submission_id': '1gt4jyd'}
{'comment': 'No shit, this is very close to home for me. Fuck this guy and fuck all the libs around me that kept my state blue. And fuck all the news stations that helped this idiot believe “Trump is literally Hitler” Fuck this left-wing nut bag.', 'created': '2024-11-17 05:47:54', 'submission_id': '1gt4jyd'}
{'comment': 'I’m sure the FBI “had him on their radar”. That’s what we always hear after a nut job kills a bunch of innocent people. Oh and how did Minnesota’s gun laws help prevent this? Right they didn’t. But one of the most ironic part of this story is how the murderous loser claims that Trump winning makes it harder for women to leave violent and dangerous relationships. Then he kills his kids and their mothers.', 'created': '2024-11-17 15:43:37', 'submission_id': '1gt4jyd'}
{'comment': 'Listening to the media is a trait that natural selection will continue to disfavor in the coming decades.', 'created': '2024-11-17 05:52:49', 'submission_id': '1gt4jyd'}
{'comment': 'Wow. I know being mentally unstable can spiral out of control quickly, but to be absolutely suicidal over an election. Sad for the family.', 'created': '2024-11-17 15:08:54', 'submission_id': '1gt4jyd'}
{'comment': "And we're the cult full of weirdos.\n\nThese people make scientology look normal", 'created': '2024-11-17 17:02:41', 'submission_id': '1gt4jyd'}
{'comment': 'Make Asylums Great Again', 'created': '2024-11-17 19:36:05', 'submission_id': '1gt4jyd'}
{'comment': "I wonder if we still would've had so many murders of the left hadnt used so much fear mongering this election? Part of me thinks they should at least partially be held responsible for these deaths. Obviously the people aren't right in the head but the left spent 4 years leading them to believe the world would basically end and all hell would break loose. I'm all for free speech but this free speech is leading to violence and deaths. Smh", 'created': '2024-11-18 21:38:36', 'submission_id': '1gt4jyd'}
{'comment': 'Absolutely fucking disgusting.', 'created': '2024-11-17 16:46:01', 'submission_id': '1gt4jyd'}
{'comment': 'I thought they were supposed to be tolerant?', 'created': '2024-11-17 14:38:13', 'submission_id': '1gt4jyd'}
{'comment': 'The media is an accomplice and should be charged as such for reckless endangerment.', 'created': '2024-11-17 16:43:17', 'submission_id': '1gt4jyd'}
{'comment': "This issue was beyond politics though, they guy was mental aside from that. Many things can trigger such people so it's not like a normal person suddenly did this over Trump and no other factors involved.", 'created': '2024-11-18 05:30:41', 'submission_id': '1gt4jyd'}
{'comment': 'All the killings are happening on their end. Not only threats to democracy but also threats to lives.', 'created': '2024-11-18 02:45:55', 'submission_id': '1gt4jyd'}
{'comment': 'Womp womp?', 'created': '2024-11-17 06:49:42', 'submission_id': '1gt4jyd'}
{'comment': 'Trumps body count rising. Lol', 'created': '2024-11-17 06:58:04', 'submission_id': '1gt4jyd'}
{'comment': 'That’s the count as far as I know. There’s also the power lesbian in Seattle who murdered her father over Trump’s victory.[Power Lesbian Murders Father Over Trump’s Victory](https://www.hindustantimes.com/world-news/us-news/triggered-by-donald-trumps-victory-seattle-woman-brutally-kills-father-with-ice-axe-on-election-night-101731567554842-amp.html)', 'created': '2024-11-17 06:39:06', 'submission_id': '1gt4jyd'}
{'comment': 'I don’t remember any Trump supporters committing violent acts like these when he lost in 2020, and the last four years there definitely was a lot of bad news where the financial situation could have pushed a lot of people in that direction. Says a lot about psychological stability where the left versus the right And survivability of Trump supporters.', 'created': '2024-11-18 11:39:44', 'submission_id': '1gt4jyd'}
{'comment': 'Peak irony', 'created': '2024-11-17 06:33:51', 'submission_id': '1gt4jyd'}
{'comment': 'Yep. This is your typical “white dude for Kamala”', 'created': '2024-11-17 06:37:32', 'submission_id': '1gt4jyd'}
{'comment': 'This man died as he lived; a failure and a coward.', 'created': '2024-11-17 06:33:34', 'submission_id': '1gt4jyd'}
{'comment': "There's only so much stupid I can deal with every day and I've used up the next 3 years dealing with the looney left. I guess we can't get back to any real normalcy.", 'created': '2024-11-17 16:00:07', 'submission_id': '1gt4jyd'}
{'comment': 'Yes', 'created': '2024-11-17 06:33:08', 'submission_id': '1gt4jyd'}
{'comment': 'These people just don’t look around. Their news is Reddit or some form of liberal news.\xa0', 'created': '2024-11-17 13:56:00', 'submission_id': '1gt4jyd'}
{'comment': 'In his sick, twisted mind he thought he was saving them from living in a world where Trump rules unfettered.', 'created': '2024-11-17 15:58:11', 'submission_id': '1gt4jyd'}
{'comment': 'Democrat body count you mean.', 'created': '2024-11-17 07:51:54', 'submission_id': '1gt4jyd'}
{'comment': "Power lesbian cracks me the fuck up lmfao. These people are fucking nuts but at the same time it's less votes for the Dems in 28", 'created': '2024-11-17 06:58:13', 'submission_id': '1gt4jyd'}
{'comment': 'Yep. I read that one.', 'created': '2024-11-17 06:39:52', 'submission_id': '1gt4jyd'}
{'comment': 'Go Go Power Lesbian!', 'created': '2024-11-17 07:49:56', 'submission_id': '1gt4jyd'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-17 04:23:52', 'submission_id': '1gt4j2w'}
{'comment': '... Power lesbian?', 'created': '2024-11-17 04:41:52', 'submission_id': '1gt4j2w'}
{'comment': 'She is a lesbian but married to a man, who is transgender but apparently likes women. So, its actually a traditional marriage.', 'created': '2024-11-17 05:05:15', 'submission_id': '1gt4j2w'}
{'comment': 'Impossible. Because blue people are not violent..', 'created': '2024-11-17 04:51:14', 'submission_id': '1gt4j2w'}
{'comment': '> She has been accused of strangling, biting and hacking her father, 67, to death in their $800,000 Seattle home.\n\nShe\'s 33 and lives with her parents? \n\nAnd she\'s a "space rocket program manager?"\n\n#Talk about Failure to Launch', 'created': '2024-11-17 04:41:24', 'submission_id': '1gt4j2w'}
{'comment': 'bring asylum’s back 2024.', 'created': '2024-11-17 05:16:35', 'submission_id': '1gt4j2w'}
{'comment': "Should be all over the news but of course it'll disappear.", 'created': '2024-11-17 04:33:52', 'submission_id': '1gt4j2w'}
{'comment': '“Found clapping and smiling, covered in blood”\n\nGiving me Victoria from Terrifier vibes right there', 'created': '2024-11-17 04:48:06', 'submission_id': '1gt4j2w'}
{'comment': 'Power lesbian..... ok...', 'created': '2024-11-17 05:03:43', 'submission_id': '1gt4j2w'}
{'comment': "And conservatives are the ones who are violent psychopaths? Lol that's multiple stories of people murdering their family over election results all of which lean to the left...wow.", 'created': '2024-11-17 14:19:44', 'submission_id': '1gt4j2w'}
{'comment': 'wtf is a power lesbian', 'created': '2024-11-17 05:26:16', 'submission_id': '1gt4j2w'}
{'comment': 'Prolly excited she gonna be locked up with a bunch of women for the rest of her life… lesbian Valhalla', 'created': '2024-11-17 04:44:33', 'submission_id': '1gt4j2w'}
{'comment': 'These people like her were voters of Kamala Harris... Imagine how they would react, if the opposite was becoming.', 'created': '2024-11-17 07:20:33', 'submission_id': '1gt4j2w'}
{'comment': 'And then they call US a cult. \n\nAh, yes. Someone has a Trump bumpersticker, "It\'s giving cult,"\n\nPeople shave their heads and kill their family members because Trump won \n\n"They\'re just expressing their feelings! This is totally valid!"\n\nJanuary six protested because the election was rigged, and everyone was upset and protesting, "It was violence! We will never forget! It was a riot, They\'re crazy!"\n\nA couple weeks after Trump was called, "Let me just kill my family because someone I don\'t like, won, but January Six was way more violent"', 'created': '2024-11-17 06:37:15', 'submission_id': '1gt4j2w'}
{'comment': 'These are exactly the type of people that helped push independents to cast their vote correctly. There a huge number of people that vote both parties now many of those sane people in the middle dont want to be associated with these kind of people.', 'created': '2024-11-17 08:20:46', 'submission_id': '1gt4j2w'}
{'comment': 'Proves its a mental diseases', 'created': '2024-11-17 12:34:35', 'submission_id': '1gt4j2w'}
{'comment': 'Alright this is a bit strange — the only articles that mention anything about Trump’s election being a factor are written or hosted by Indian news outlets. \n\nThe local Fox report on the situation has zero political mention and just frames it as a mental health crisis. Even KOMO (a pretty right-leaning news org in Seattle) only mentions the election as a theory put forth by an uninformed neighbor. I think someone is just outrage-click farming.', 'created': '2024-11-17 14:07:36', 'submission_id': '1gt4j2w'}
{'comment': 'I don’t understand. I keep getting told the left is the party of joy, love, acceptance, inclusion, etc, etc, etc. In reality, It’s the party of hate and violence and division.', 'created': '2024-11-17 14:14:52', 'submission_id': '1gt4j2w'}
{'comment': "Smoothies aren't known for controlling their feelings and emotions like normal people", 'created': '2024-11-17 05:14:13', 'submission_id': '1gt4j2w'}
{'comment': 'Aside from this being tragic and fueled in part by media misinformation and hyperbole about Trump, I guess we can see now why Blue Origin has fallen so far behind SpaceX. People this crazy are on the payroll.', 'created': '2024-11-17 06:48:01', 'submission_id': '1gt4j2w'}
{'comment': 'Wow', 'created': '2024-11-17 05:59:58', 'submission_id': '1gt4j2w'}
{'comment': "Wow, is this confusing. He is just identifying as a trans, when in reality he's a cross dresser? Can it get any crazier than this? Oh, yeah, she murdered her father...", 'created': '2024-11-17 15:11:43', 'submission_id': '1gt4j2w'}
{'comment': "Wow! talking about Lefty's losing it.", 'created': '2024-11-17 15:42:37', 'submission_id': '1gt4j2w'}
{'comment': 'Off to the mental institution she goes!', 'created': '2024-11-17 15:52:53', 'submission_id': '1gt4j2w'}
{'comment': 'A space rocket program manager. You cannot make that up.', 'created': '2024-11-17 16:23:33', 'submission_id': '1gt4j2w'}
{'comment': 'She looks like AOC right?', 'created': '2024-11-17 14:42:39', 'submission_id': '1gt4j2w'}
{'comment': 'wtf is a power lesbian', 'created': '2024-11-18 02:37:15', 'submission_id': '1gt4j2w'}
{'comment': 'What the f is a power lesbian and where do I get one?', 'created': '2024-11-18 06:25:26', 'submission_id': '1gt4j2w'}
{'comment': 'What is a power lesbian?', 'created': '2024-11-17 17:36:55', 'submission_id': '1gt4j2w'}
{'comment': 'Oh so power lesbian means make believe, got it.', 'created': '2024-11-17 17:53:28', 'submission_id': '1gt4j2w'}
{'comment': 'Since this is Washington State, a marxist "paradise", she\'ll probably get found innocent because Trump...', 'created': '2024-11-17 20:25:34', 'submission_id': '1gt4j2w'}
{'comment': 'Hindustan Times?', 'created': '2024-11-18 00:40:15', 'submission_id': '1gt4j2w'}
{'comment': 'Hindustan Times?', 'created': '2024-11-18 00:40:36', 'submission_id': '1gt4j2w'}
{'comment': 'The Hindustan Times? 🤣', 'created': '2024-11-17 04:50:10', 'submission_id': '1gt4j2w'}
{'comment': 'Probably because an actual news station reported on this and other nothing to do with trump election…\n\nhttps://www.wdbj7.com/2024/11/12/woman-killed-father-with-ice-axe-during-argument-over-lighting-their-home-police-say/', 'created': '2024-11-17 04:49:22', 'submission_id': '1gt4j2w'}
{'comment': 'Go Go Power Lesbian', 'created': '2024-11-17 05:02:55', 'submission_id': '1gt4j2w'}
{'comment': 'He misspelled typical Reddit user.', 'created': '2024-11-17 04:43:09', 'submission_id': '1gt4j2w'}
{'comment': '[The Anatomy of a Power Lesbian](https://www.autostraddle.com/anatomy-of-a-power-lesbian/)', 'created': '2024-11-17 06:53:50', 'submission_id': '1gt4j2w'}
{'comment': 'She can lift dude.', 'created': '2024-11-17 16:19:12', 'submission_id': '1gt4j2w'}
{'comment': 'Labels are important to her. Stupidest shit I’ve ever heard. Hope she likes the label of a criminal- knowing her and how sick she is, i’m going to say yes.', 'created': '2024-11-17 05:15:16', 'submission_id': '1gt4j2w'}
{'comment': 'Straight relationship with extra steps', 'created': '2024-11-17 06:22:31', 'submission_id': '1gt4j2w'}
{'comment': 'Wowwwww……so many extra steps……..to get to the default setting….', 'created': '2024-11-17 06:46:57', 'submission_id': '1gt4j2w'}
{'comment': '🤯', 'created': '2024-11-17 17:26:43', 'submission_id': '1gt4j2w'}
{'comment': 'Lmao 🤣', 'created': '2024-11-17 06:41:54', 'submission_id': '1gt4j2w'}
{'comment': "The article makes it quite clear that she's just plain crazy", 'created': '2024-11-17 08:24:42', 'submission_id': '1gt4j2w'}
{'comment': 'Right?!?! And these are the women who crap on men for not making $250,000 a year and having a mansion.', 'created': '2024-11-17 06:52:45', 'submission_id': '1gt4j2w'}
{'comment': 'Actually, he lived in HER house. And he was essentially there because he needed care due some age-related health issues.', 'created': '2024-11-17 23:08:16', 'submission_id': '1gt4j2w'}
{'comment': 'Please!!', 'created': '2024-11-17 05:32:03', 'submission_id': '1gt4j2w'}
{'comment': 'Yes!!! 👏🙂\u200d↕️🙂\u200d↕️🙂\u200d↕️', 'created': '2024-11-17 06:50:10', 'submission_id': '1gt4j2w'}
{'comment': 'https://dukegomez.com/collections/shop-the-duke-gomez-merch/products/bring-back-insane-asylums-2-0-hoodie', 'created': '2024-11-17 05:52:20', 'submission_id': '1gt4j2w'}
{'comment': 'It was reported, OP is lying. \nhttps://www.wdbj7.com/2024/11/12/woman-killed-father-with-ice-axe-during-argument-over-lighting-their-home-police-say/', 'created': '2024-11-17 04:49:48', 'submission_id': '1gt4j2w'}
{'comment': 'Just your typical liberal white woman these days.', 'created': '2024-11-17 06:54:30', 'submission_id': '1gt4j2w'}
{'comment': '[The Anatomy of a Power Lesbian](https://www.autostraddle.com/anatomy-of-a-power-lesbian/)', 'created': '2024-11-17 06:48:01', 'submission_id': '1gt4j2w'}
{'comment': 'There was more than one that did this? Yikes!', 'created': '2024-11-18 17:34:12', 'submission_id': '1gt4j2w'}
{'comment': "From what I've been told, a rich lesbian lol. There's probably more to it, though.", 'created': '2024-11-17 05:30:55', 'submission_id': '1gt4j2w'}
{'comment': 'That’s what I’m trying to figure out', 'created': '2024-11-17 05:30:53', 'submission_id': '1gt4j2w'}
{'comment': '[The Anatomy of a Power Lesbian](https://www.autostraddle.com/anatomy-of-a-power-lesbian/)', 'created': '2024-11-17 06:35:04', 'submission_id': '1gt4j2w'}
{'comment': 'For anyone wondering what a “power lesbian” is: [The Anatomy of a Power Lesbian](https://www.autostraddle.com/anatomy-of-a-power-lesbian/)', 'created': '2024-11-17 06:36:49', 'submission_id': '1gt4j2w'}
{'comment': 'Right?!', 'created': '2024-11-17 07:49:23', 'submission_id': '1gt4j2w'}
{'comment': 'You f**king nailed it. Could not have said it better.', 'created': '2024-11-17 09:07:57', 'submission_id': '1gt4j2w'}
{'comment': 'Bit to broad dont you think? This girl? total piece of shit. Were there piece of shit that caused violence on Jan6? Yes. Like any protest it only take a small percent (for the media to focus on) to change the narrative. Vast majority where there in protest but be clear there were indeed a number rioting, which is unfortunate but true.', 'created': '2024-11-17 08:24:38', 'submission_id': '1gt4j2w'}
{'comment': 'Nope. Hence why they vote democrat.', 'created': '2024-11-17 06:48:22', 'submission_id': '1gt4j2w'}
{'comment': 'And Boeing for the same reason.', 'created': '2024-11-17 07:52:55', 'submission_id': '1gt4j2w'}
{'comment': 'Yeah it’s crazy. This is what the democrats really are.', 'created': '2024-11-17 06:32:52', 'submission_id': '1gt4j2w'}
{'comment': 'They’re legit. They just have more honest headlines. The US outlets are hiding the fact that she did this over Trump’s victory.', 'created': '2024-11-17 06:49:07', 'submission_id': '1gt4j2w'}
{'comment': '3 other articles reporting the same thing', 'created': '2024-11-17 05:46:36', 'submission_id': '1gt4j2w'}
{'comment': 'A CBS affiliate didn’t report her issues with the election? Shocking.', 'created': '2024-11-17 04:53:38', 'submission_id': '1gt4j2w'}
{'comment': 'The liberal media in the US is actively trying to conceal her motives.', 'created': '2024-11-17 06:49:46', 'submission_id': '1gt4j2w'}
{'comment': 'don’t ever disrespect power rangers like that again.', 'created': '2024-11-17 05:14:42', 'submission_id': '1gt4j2w'}
{'comment': 'Lmao 🤣👏👏👏', 'created': '2024-11-17 06:53:14', 'submission_id': '1gt4j2w'}
{'comment': 'Make Asylums Great Again', 'created': '2024-11-17 13:04:20', 'submission_id': '1gt4j2w'}
{'comment': 'I love this guy!', 'created': '2024-11-17 15:58:12', 'submission_id': '1gt4j2w'}
{'comment': "OP didn't say anything about it being reported or not. The guy you replied to did. The link was for a local affiliate. This doesn't mean it won't be overlooked by the national media in large, which I assume, was OPs original point. No one was lying, though.", 'created': '2024-11-17 05:47:55', 'submission_id': '1gt4j2w'}
{'comment': "That's been debunked. Also, did you even read it? OPs article contains more updated information, including her own statements. Your source has nothing but some blathering from her neighbors.", 'created': '2024-11-17 04:55:46', 'submission_id': '1gt4j2w'}
{'comment': 'https://www.mirror.co.uk/news/us-news/woman-hacks-dad-death-ice-34107687\n\nhttps://www.msn.com/en-us/entertainment/entertainment-celebrity/wife-of-prominent-trans-writer-hacked-father-to-death-with-ice-axe-after-trump-s-election-night-victory-cops/ar-AA1u2csj', 'created': '2024-11-17 04:59:33', 'submission_id': '1gt4j2w'}
{'comment': 'Just like the media, not to tell the whole story', 'created': '2024-11-17 05:31:14', 'submission_id': '1gt4j2w'}
{'comment': 'Hmmm well the article the OP linked to does say it was about the election but this one says it was about the lighting.', 'created': '2024-11-17 04:55:11', 'submission_id': '1gt4j2w'}
{'comment': '[The Anatomy of a Power Lesbian](https://www.autostraddle.com/anatomy-of-a-power-lesbian/)', 'created': '2024-11-17 06:35:57', 'submission_id': '1gt4j2w'}
{'comment': '[The Anatomy of a Power Lesbian](https://www.autostraddle.com/anatomy-of-a-power-lesbian/)', 'created': '2024-11-17 06:35:37', 'submission_id': '1gt4j2w'}
{'comment': 'Yeah the paid actors were the ones rioting and trying to incite violence.', 'created': '2024-11-18 21:50:18', 'submission_id': '1gt4j2w'}
{'comment': '🤣🤣🤣', 'created': '2024-11-17 06:53:04', 'submission_id': '1gt4j2w'}
{'comment': 'Ha ha ha that’s funny shit', 'created': '2024-11-17 15:48:11', 'submission_id': '1gt4j2w'}
{'comment': 'Oh we know it’s TDS', 'created': '2024-11-17 05:30:02', 'submission_id': '1gt4j2w'}
{'comment': 'The outdoor lighting that was highlighting the Harris signs in the yard were switched off. Cost the Dems the election.', 'created': '2024-11-17 16:21:10', 'submission_id': '1gt4j2w'}
{'comment': "It wouldn't surprise me in the least but since there is competing information, I will entertain the idea that it's possibly not related. The left are bigots, not us.", 'created': '2024-11-17 06:43:43', 'submission_id': '1gt4j2w'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-17 00:46:43', 'submission_id': '1gt0dln'}
{'comment': 'Just straight up Hispanic hate? Got it.', 'created': '2024-11-17 00:50:34', 'submission_id': '1gt0dln'}
{'comment': 'Seems the dems never left their old roots after all.', 'created': '2024-11-17 00:59:48', 'submission_id': '1gt0dln'}
{'comment': 'And they call republicans racist.', 'created': '2024-11-17 00:48:42', 'submission_id': '1gt0dln'}
{'comment': 'Screw them. Screw all of them. I’m Latina and I can decide who I want to vote for and their opinion is not my problem.', 'created': '2024-11-17 00:55:38', 'submission_id': '1gt0dln'}
{'comment': 'Wow! Dems entering unhinged state.', 'created': '2024-11-17 00:50:45', 'submission_id': '1gt0dln'}
{'comment': "Yeah it's kinda dark how quickly a lot of Dems went to blaming minorities for their loss instead of thinking that maybe their policies and politics alienated them.", 'created': '2024-11-17 00:52:01', 'submission_id': '1gt0dln'}
{'comment': 'Remember, liberals love minorities until they have a dissenting opinion, then “they aren’t black” or unintelligent according to the tolerant left.', 'created': '2024-11-17 00:58:12', 'submission_id': '1gt0dln'}
{'comment': 'My grandparents came here legally from Mexico in the early 1920s. I’ll never apologize to these closet racists for voting conservative down the ballot.', 'created': '2024-11-17 01:07:46', 'submission_id': '1gt0dln'}
{'comment': 'Hey Latinos , check it out , the true soul of the left on display. Vote accordingly .', 'created': '2024-11-17 01:16:08', 'submission_id': '1gt0dln'}
{'comment': 'as a Latino. This just makes me hate the left even more :)', 'created': '2024-11-17 01:37:42', 'submission_id': '1gt0dln'}
{'comment': 'So , how are we the racist ones again ?', 'created': '2024-11-17 00:56:39', 'submission_id': '1gt0dln'}
{'comment': 'Democrats pretend to be accepting of all cultures until they realize you didn’t help vote for their candidate to win. \n\nGuarantee you if democrats realized the African American population didn’t vote for Kamala they’d use the N word at them more freely', 'created': '2024-11-17 01:04:55', 'submission_id': '1gt0dln'}
{'comment': 'I’m only worried what will happen to me, a US born citizen who pays his taxes, loves this country and fought in the military. My parents are illegal immigrants though… so now my citizenship is going to be revoked? Btw I voted for Trump…', 'created': '2024-11-17 01:04:38', 'submission_id': '1gt0dln'}
{'comment': 'I’m going to be so sad when my dad gets deported to Puerto Rican even after he voted for Trump 😢….. oh wait 🤣', 'created': '2024-11-17 00:52:39', 'submission_id': '1gt0dln'}
{'comment': '“Bro Latinos don’t give a fuck once they get their documents. Also they are religious and heavily against abortion and drugs.” lol what did they expect? I’m sorry that not every culture is as much of degenerates as white liberals', 'created': '2024-11-17 02:03:23', 'submission_id': '1gt0dln'}
{'comment': "Black people have been telling people this forever.. if we say we don't want to vote democrat they say I'm no longer black Lol. I'm a mixed man .. white and black.. always been considered black to most people in my city. But as soon as I decided I didn't want to vote for kamala.. I became a white boy, lol. It's hilarious.", 'created': '2024-11-17 02:46:40', 'submission_id': '1gt0dln'}
{'comment': 'Have you seen the posts where they are calling for a boycott of all “taco trucks” etc 🙄my Latina ass couldn’t care less about their opinion.', 'created': '2024-11-17 02:08:31', 'submission_id': '1gt0dln'}
{'comment': '\'\'Democracy! But take it up the butt! Don\'t question who you\'re supposed to be voting for >:)"', 'created': '2024-11-17 00:57:31', 'submission_id': '1gt0dln'}
{'comment': 'And were the racists ones?? 🤪🤪🤪', 'created': '2024-11-17 18:08:24', 'submission_id': '1gt0dln'}
{'comment': 'And the left wonders why they lost Latino and Black voters this election lol', 'created': '2024-11-17 18:44:35', 'submission_id': '1gt0dln'}
{'comment': 'I seem to have missed the memo. And so did my parents who voted for the first time ever in this election. Both illegal immigrants who crossed the border in the 70s, and became American citizens in the early 80s. It took one bad presidency for them to realize that shit was going south. “¡A la verga pinche Biden!” as my dad submitted his ballot in person. Haha', 'created': '2024-11-17 19:32:31', 'submission_id': '1gt0dln'}
{'comment': 'Wow, stunning to see how much these "tolerant" people hate me because of my skin color. Reinforcing my conservatism even harder.', 'created': '2024-11-17 20:48:52', 'submission_id': '1gt0dln'}
{'comment': 'Latino in the house!\nTRUMP TRUM TRUMP', 'created': '2024-11-18 00:43:54', 'submission_id': '1gt0dln'}
{'comment': 'I’m a Latina and this is one of the MANY reasons I voted for trump. Liberals are so racist', 'created': '2024-11-18 07:06:33', 'submission_id': '1gt0dln'}
{'comment': 'The racist left.. the only thing the left hates more than a conservative, is a minority conservative.', 'created': '2024-11-18 12:53:58', 'submission_id': '1gt0dln'}
{'comment': 'im hispanic and literally my whole family and my girls family voted for trump. i cannot wait to see round 2 of crying dems when he gets into office next year', 'created': '2024-11-18 19:19:49', 'submission_id': '1gt0dln'}
{'comment': 'Where are the comments from? This is freakn crazy racism. 🙊', 'created': '2024-11-17 01:07:02', 'submission_id': '1gt0dln'}
{'comment': 'I just wonder if democrats are going to burn bridges with every minority in the country before they realize they’ve been crazy and in the wrong this entire time. But I doubt it…crazy people never realize that they are actually crazy so 🤷🏼\u200d♀️', 'created': '2024-11-17 01:14:48', 'submission_id': '1gt0dln'}
{'comment': 'Straight racist', 'created': '2024-11-17 01:20:00', 'submission_id': '1gt0dln'}
{'comment': 'These scumbags should be ashamed of themselves', 'created': '2024-11-17 02:47:40', 'submission_id': '1gt0dln'}
{'comment': 'A latino in my construction job , are hard workers. Out side of work they like to find more work. They have documents and think you can work your way to wealth. Now he makes as much as most professionals. They are against social programs for people who just don’t want to work.', 'created': '2024-11-17 04:21:13', 'submission_id': '1gt0dln'}
{'comment': 'We all need to team up and report these racist fucks', 'created': '2024-11-17 01:15:10', 'submission_id': '1gt0dln'}
{'comment': 'Bigotry of lower expectations and white savior complex', 'created': '2024-11-17 01:19:48', 'submission_id': '1gt0dln'}
{'comment': 'If you’re called a racist for being a Republican but then find shit like this… clap your hands? 🤷🏻\u200d♀️', 'created': '2024-11-17 01:21:31', 'submission_id': '1gt0dln'}
{'comment': 'Fuck all that primo. Trump 2024', 'created': '2024-11-17 01:36:16', 'submission_id': '1gt0dln'}
{'comment': 'This is class warfare were the few impose their will on the majority.', 'created': '2024-11-17 01:36:57', 'submission_id': '1gt0dln'}
{'comment': '“They’re only good people if they’re on our side, if not then they’re no-good rotten pieces of trash”', 'created': '2024-11-17 01:38:26', 'submission_id': '1gt0dln'}
{'comment': 'It amazes me how people can be outwardly racist and it’s ok because they are Democrats\n\nWhere’d all the trolls go!? They used to be on these groups in force 🤣', 'created': '2024-11-17 01:42:59', 'submission_id': '1gt0dln'}
{'comment': 'I’m Latino and fuck no. Voted trump because I bleed read white and blue.', 'created': '2024-11-17 01:48:12', 'submission_id': '1gt0dln'}
{'comment': 'Do you think Democrats realize how racist they are? I’m probably more formally educated than every one of those people who left comments, as a first gen darker skinned Cuban-American, from a gang run neighborhood, with a convicted felon for a father. Anyway, can’t wait to see liberals cry all the way to the bank during the next 4 years. I want us all to win.', 'created': '2024-11-17 01:49:00', 'submission_id': '1gt0dln'}
{'comment': 'Is Reddit monitoring the comments again? Not one single upvote on any comment here??!', 'created': '2024-11-17 01:51:42', 'submission_id': '1gt0dln'}
{'comment': 'Scratch a Democrat and they bleed racism.', 'created': '2024-11-17 02:00:20', 'submission_id': '1gt0dln'}
{'comment': 'This is exactly what happens when elites set up a racial caste system', 'created': '2024-11-17 02:19:30', 'submission_id': '1gt0dln'}
{'comment': 'Dems vs Republicans is plain and simply Unhinged Vs Some sense of decency restraint and respectability', 'created': '2024-11-17 02:44:34', 'submission_id': '1gt0dln'}
{'comment': 'Dems are racist AF', 'created': '2024-11-17 02:53:59', 'submission_id': '1gt0dln'}
{'comment': 'I am a white man married to a Hispanic woman, with half Hispanic children. My wife’s grandparents immigrated here. I can say that in my experience, legal Hispanic people hate illegal ones waaaaaaaay more than anyone else. There is no comparison and there is no compassion. The ones that went through the hardship of doing it legally are probably more in favor of deportation than any other demographic.', 'created': '2024-11-17 03:19:51', 'submission_id': '1gt0dln'}
{'comment': 'Democrats are the absolute worst hypocrites and virtue signaling clowns, ever.', 'created': '2024-11-17 04:10:35', 'submission_id': '1gt0dln'}
{'comment': 'I got discriminated by Democrats just for being a Chinese-Filipino', 'created': '2024-11-17 04:44:34', 'submission_id': '1gt0dln'}
{'comment': 'I’m Latino and never experienced any of the hate I’ve experienced since the MSG rally… my entire life. Almost 30 years. And in the last 3 weeks I’ve experienced it more and more everyday. “Sell out Latino” “your gonna get deported!.. well not you but your mom is! 😜”', 'created': '2024-11-17 07:39:25', 'submission_id': '1gt0dln'}
{'comment': 'That just makes me sick', 'created': '2024-11-17 14:28:56', 'submission_id': '1gt0dln'}
{'comment': '‘They are heavily against abortion and drugs”. They’re against drugs and that’s supposed to be a bad thing?', 'created': '2024-11-17 14:57:22', 'submission_id': '1gt0dln'}
{'comment': 'Honestly the dumb democrats spread hate about Latinos shows how dumb they are, it will drive the Latino votes away from them even more currently (couldn’t find 18yo+ from quick google searches) there’s 47.7 million Latinos 16+ (eligible to vote at least next election season) that’s 14.24% of the US total population, almost 40% of California is Latino, if enough get pissed off with racism id say about an additional 1/3rd would swing over to republican and could lead to CA becoming not so easy of a win for democrats, may take 1-3 more elections with democratic hate but they will loose some key electoral players', 'created': '2024-11-17 14:59:56', 'submission_id': '1gt0dln'}
{'comment': 'Latino US Citizens hate illegal Latino immigrants', 'created': '2024-11-17 18:33:34', 'submission_id': '1gt0dln'}
{'comment': 'Who knew the tolerant left is only tolerant to those who subscribe to their demonic agendas?', 'created': '2024-11-17 21:35:00', 'submission_id': '1gt0dln'}
{'comment': 'Jesus Christ they are everything they accuse republicans of being. Bigots, racists, extremist, violent, insane etc. they literally went from “let them in!” To “DEPORT ALL OF THEM 🤬”. Pathetic people behaving in an even more pathetic manner.', 'created': '2024-11-17 21:36:35', 'submission_id': '1gt0dln'}
{'comment': "Wonder what they'll say about blk people if they ever shift to the right?", 'created': '2024-11-17 22:10:19', 'submission_id': '1gt0dln'}
{'comment': 'This is just sad. Why when people don’t get their way do they find it necessary to spout off racial slurs? Seems the Demorats are just sore losers. We welcome the Latino community legally!', 'created': '2024-11-17 22:56:30', 'submission_id': '1gt0dln'}
{'comment': 'When they’re racist but it’s (D)ifferent 🤪🤪🤪🤡', 'created': '2024-11-17 23:24:28', 'submission_id': '1gt0dln'}
{'comment': 'Wow, such racism from the party of peace and love', 'created': '2024-11-18 00:32:08', 'submission_id': '1gt0dln'}
{'comment': "The democrats really shouldn't be surprised at this.\n\nI mean, if they took the time to REALLY understand latinos and latinas then they'd realize alot of their cultures and values goes against left wing idealogy.\n\n\n•Focus on Family oriented values\n\n•Catholic\n\n•Traditional\n\n•Pride in their own culture, resulting in a distain towards shit like Latinx\n\n•Usually lower class to middle class; demographic the democrats seem to have forgotten\n\nThe only thing latinos/latinas can somewhat get behind with leftist on is immigration but even then, a significant portion of their demographic believes in more secure borders. And that really isnt shocking considering it was they who immigrated to the U.S legally like everyone else, only to be lumped in the same category as illegal immigrants. Of those illegal immigrants, they end up being abused and raped by the cartel just to cross into America. So by all means, a safer and more secure border would end up benefitting the hispanic population.", 'created': '2024-11-18 01:43:20', 'submission_id': '1gt0dln'}
{'comment': 'How racist is it to assume all Latinos or Hispanics are illegal lol', 'created': '2024-11-18 01:54:45', 'submission_id': '1gt0dln'}
{'comment': 'But somehow we are the racists? When they are straight up hating on anyone and making it racial and personal for not being brainwashed', 'created': '2024-11-18 01:55:56', 'submission_id': '1gt0dln'}
{'comment': 'Honestly, Reddit is such a biased, shit platform. I just had a call with an FBI agent after reporting something that was posted to this thread from a crazy liberal threatening Republicans. We have to call them out and hold them accountable for the insane, hateful stuff they consistently spew like diarrhea.', 'created': '2024-11-18 02:24:43', 'submission_id': '1gt0dln'}
{'comment': 'They hate anyone that doesn’t think like them.', 'created': '2024-11-18 02:28:54', 'submission_id': '1gt0dln'}
{'comment': 'Latinx*', 'created': '2024-11-17 01:05:57', 'submission_id': '1gt0dln'}
{'comment': 'Smoothies being Smoothies', 'created': '2024-11-17 01:30:43', 'submission_id': '1gt0dln'}
{'comment': 'The hypocrisy of the left on full display.', 'created': '2024-11-17 01:50:07', 'submission_id': '1gt0dln'}
{'comment': 'When a non-white group stops voting democrat, the blue racists come out of the closet.', 'created': '2024-11-17 01:50:11', 'submission_id': '1gt0dln'}
{'comment': "Damn, that's just straight up racism. The moment you don't agree with Democrats, they really go mask off on everyone.", 'created': '2024-11-17 01:51:03', 'submission_id': '1gt0dln'}
{'comment': 'I can think for myself. I don’t need to be told what I should do politically. 🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸', 'created': '2024-11-17 02:08:15', 'submission_id': '1gt0dln'}
{'comment': "It's like they didn't know or want to accept that most of them are catholics 🙏🙏", 'created': '2024-11-17 02:08:25', 'submission_id': '1gt0dln'}
{'comment': 'Democrats love playing the race card, and they call us the racist party…smh', 'created': '2024-11-17 02:11:36', 'submission_id': '1gt0dln'}
{'comment': 'UMMMM EXCUSE YOU ITS ACTUALLY LATINX ☝️🤓', 'created': '2024-11-17 02:14:17', 'submission_id': '1gt0dln'}
{'comment': 'Wow', 'created': '2024-11-17 02:16:17', 'submission_id': '1gt0dln'}
{'comment': 'So Dems are racist confirmed then? Cause they really quickly went from supporting these people to bashing them for voting.', 'created': '2024-11-17 02:20:52', 'submission_id': '1gt0dln'}
{'comment': 'Disgusting behavior', 'created': '2024-11-17 02:30:42', 'submission_id': '1gt0dln'}
{'comment': 'As a Dem I’m honestly disgusted by the pandering and then scapegoating of Latino people during and after the election. Demonising republicans and insulting rep voters didn’t work in 2016 and yet the dems haven’t learned anything since then', 'created': '2024-11-17 02:46:03', 'submission_id': '1gt0dln'}
{'comment': 'Yeah keep it up with these snide remarks and alienate the Latinos from voting Democrats altogether! Very great move indeed!', 'created': '2024-11-17 02:48:50', 'submission_id': '1gt0dln'}
{'comment': 'Dems are just looking for someone to blame so they target a minority for a majority vote.', 'created': '2024-11-17 02:58:44', 'submission_id': '1gt0dln'}
{'comment': 'And the left calls us racist?', 'created': '2024-11-17 03:00:14', 'submission_id': '1gt0dln'}
{'comment': 'yes the tolerant left showing their true colors', 'created': '2024-11-17 03:09:17', 'submission_id': '1gt0dln'}
{'comment': 'To democrats, everyone is a tool', 'created': '2024-11-17 03:09:32', 'submission_id': '1gt0dln'}
{'comment': "Is it racist to think all Latinos are illegal or know illegals? Or maybe the legal ones are tired of being grouped in with them, or losing they're jobs to them?", 'created': '2024-11-17 03:15:26', 'submission_id': '1gt0dln'}
{'comment': 'It’s no longer, “You can’t be racist against white people.” Now it’s, “You can’t be racist toward people who voted for Trump.”', 'created': '2024-11-17 03:16:08', 'submission_id': '1gt0dln'}
{'comment': 'Democrats are going back to their roots', 'created': '2024-11-17 03:16:20', 'submission_id': '1gt0dln'}
{'comment': 'Que se vallan pa la pinga 🤡', 'created': '2024-11-17 03:21:38', 'submission_id': '1gt0dln'}
{'comment': 'Do they seriously not know that trump is only deporting illegals? Legals are staying', 'created': '2024-11-17 03:28:18', 'submission_id': '1gt0dln'}
{'comment': 'they are only supportive of things that fit their narrative', 'created': '2024-11-17 03:36:52', 'submission_id': '1gt0dln'}
{'comment': 'RACISTS!!!!!', 'created': '2024-11-17 04:03:58', 'submission_id': '1gt0dln'}
{'comment': 'Disgusting behavior', 'created': '2024-11-17 04:16:34', 'submission_id': '1gt0dln'}
{'comment': 'It’s so funny how people view Latinos as a big monolith. They don’t realize that Univision news has been showing its Mexican American audience the caravans coming in from South America for years. They fail to realize that not all Hispanic countries get along with each other, and that it would be possible for Mexican Americans to also be against the immigration of Venezuelans who were rumored to be from emptied prisons.', 'created': '2024-11-17 04:46:36', 'submission_id': '1gt0dln'}
{'comment': "Damn, so what was the southern flip they were espousing about? I'm a latino first gen, and now I think I should start packing a bag in case I'm deported by Democrats?\n\nI voted proudly for Trump and am proud to see what the Future holds. MORE PSYCHED FOR THE YEAR PARTY WE ARE GETTING WHOOP WHOOP!", 'created': '2024-11-17 04:58:04', 'submission_id': '1gt0dln'}
{'comment': 'Hispanic Votes Matter', 'created': '2024-11-17 04:59:10', 'submission_id': '1gt0dln'}
{'comment': "Bigotry isn't ideology specific and the left refuses to see that because they're content with demanding everyone conform to stereotypes and then pretending it's being inclusive.\n\nBut anyway it's time to pull out the bottle of hot sauce to sound relatable.", 'created': '2024-11-17 05:02:37', 'submission_id': '1gt0dln'}
{'comment': 'Just as racist as they were in the 1860s apparently', 'created': '2024-11-17 05:04:58', 'submission_id': '1gt0dln'}
{'comment': 'Ah racist. As expected from the left.', 'created': '2024-11-17 05:05:44', 'submission_id': '1gt0dln'}
{'comment': 'I’m Latino and not loyal to any party but for the last 3 presidential elections I have voted Trump. The left has just absolutely lost their damn minds', 'created': '2024-11-17 05:51:13', 'submission_id': '1gt0dln'}
{'comment': 'Lol thats some racist shit coming from the left', 'created': '2024-11-17 06:00:48', 'submission_id': '1gt0dln'}
{'comment': 'The fact that he thinks a Latino voting for Trump will be deported….They’re citizens FFS and now who’s racist.', 'created': '2024-11-17 06:15:57', 'submission_id': '1gt0dln'}
{'comment': 'Really sad.', 'created': '2024-11-17 06:16:40', 'submission_id': '1gt0dln'}
{'comment': 'This is absolutely so deliciously rich, coming from Democrats. We are living a very nice change after four years of hate that we could do nothing about.', 'created': '2024-11-17 06:28:05', 'submission_id': '1gt0dln'}
{'comment': "Where's Ocasio when they need her", 'created': '2024-11-17 06:34:02', 'submission_id': '1gt0dln'}
{'comment': 'Sounds about right, the dems supposedly love all races and ethnicities unless they are republicans. The left should be absolutely ashamed and humiliated of itself! These scumbags think they own the vote of anyone who isn’t white and it’s extremely obvious as they don’t even try to hide it anymore.\xa0', 'created': '2024-11-17 07:00:58', 'submission_id': '1gt0dln'}
{'comment': 'Ya! They are supposed to vote for the party of, “love & tolerance”. What a f*cking joke! They are so mean, like WOW! What an embarrassment. \nThey can all come over our way & we will show em actual love. ❤️', 'created': '2024-11-17 08:24:55', 'submission_id': '1gt0dln'}
{'comment': 'Gotta love the party of tolerance and acceptance', 'created': '2024-11-17 08:35:50', 'submission_id': '1gt0dln'}
{'comment': "Yeah the family hard working group of people with kids is going to be pro increase taxes and abortion... and they're shocked on how they voted?...", 'created': '2024-11-17 09:36:11', 'submission_id': '1gt0dln'}
{'comment': 'This is exactly why you don\'t trust the virtue signaling types. They will turn right back around into evil shit if their "sponsored" group doesn\'t play by the rules.', 'created': '2024-11-17 14:19:32', 'submission_id': '1gt0dln'}
{'comment': 'So much for the party of love and acceptance', 'created': '2024-11-17 14:20:25', 'submission_id': '1gt0dln'}
{'comment': 'these are the people calling Trump racist…', 'created': '2024-11-17 14:33:35', 'submission_id': '1gt0dln'}
{'comment': 'Wow', 'created': '2024-11-17 14:50:58', 'submission_id': '1gt0dln'}
{'comment': 'The liberals have been the meanest, most ruthless, self centered, and hateful people since this election concluded. \n\nIdk how people don’t see that the VAST majority of the liberals saying this are exactly what they deem us too. Which are “privileged white people”. 99% of the shit I see is from a white lady crying. \n\nThey are literally the monster they tried to make up.', 'created': '2024-11-17 15:31:32', 'submission_id': '1gt0dln'}
{'comment': 'That’s the point— that once they get their papers they will want others to come in the legal way like they did!!', 'created': '2024-11-17 15:37:43', 'submission_id': '1gt0dln'}
{'comment': "I'm sorry but Democrats are really starting to scare me. I think the sensible ones voted red and came over to the red side because this is some bull", 'created': '2024-11-17 16:06:03', 'submission_id': '1gt0dln'}
{'comment': 'Oh look! Democrats being true to their political base!', 'created': '2024-11-17 16:16:40', 'submission_id': '1gt0dln'}
{'comment': 'I love how the same group of people that claims it’s racist when I ignore someone’s skin color and treat them as just a fellow human being instantly goes to this the second they don’t vote for them.\n\nI know “Democrats are the REAL racists” is literally a meme at this point, but wow true colors coming out en-masse.', 'created': '2024-11-17 17:07:24', 'submission_id': '1gt0dln'}
{'comment': '😔', 'created': '2024-11-17 15:14:29', 'submission_id': '1gt0dln'}
{'comment': 'Freedom of speech is a beautiful thing.', 'created': '2024-11-17 16:27:45', 'submission_id': '1gt0dln'}
{'comment': 'Hispanics are getting the White guy treatment', 'created': '2024-11-17 02:38:20', 'submission_id': '1gt0dln'}
{'comment': 'It’s called their true colors or being a racist POS. These white wannabe savior leftists are among the most racist people on earth. They look down at people with more melanin. They claim they are on their side but truth be known they see them like they are beneath them.', 'created': '2024-11-17 04:06:36', 'submission_id': '1gt0dln'}
{'comment': 'You mean racism?', 'created': '2024-11-17 03:03:44', 'submission_id': '1gt0dln'}
{'comment': 'But if you say the virus that came from China is Chinese, you’re racist. This isn’t racism though. Because…. Yeah I don’t even have a pretend reason.', 'created': '2024-11-17 18:48:47', 'submission_id': '1gt0dln'}
{'comment': 'Borderline racist.', 'created': '2024-11-17 05:05:48', 'submission_id': '1gt0dln'}
{'comment': 'Hate has been re-defined by libs. Hate speech is anything that they disagree with. This is caring.', 'created': '2024-11-18 02:54:22', 'submission_id': '1gt0dln'}
{'comment': 'They never did. They just masked it', 'created': '2024-11-17 01:31:57', 'submission_id': '1gt0dln'}
{'comment': "What were their old roots ? Sorry for my ignorance, I'm not an american but deeply interested in your country", 'created': '2024-11-17 05:27:42', 'submission_id': '1gt0dln'}
{'comment': "When they don't get their way they absolutely spew hatred, racism and authoritarian fascism. Funny how that works. Projection is one hell of a thing.", 'created': '2024-11-17 02:03:22', 'submission_id': '1gt0dln'}
{'comment': 'Perhaps we could learn from all this tolerance on display!', 'created': '2024-11-17 03:31:34', 'submission_id': '1gt0dln'}
{'comment': 'Literally. When they don’t get their way they result to racism, insults and even threatening people.', 'created': '2024-11-17 15:30:58', 'submission_id': '1gt0dln'}
{'comment': 'Do most Latinos laugh at LatinX?', 'created': '2024-11-17 03:01:31', 'submission_id': '1gt0dln'}
{'comment': 'Yep my wife is Latina, voted trump, her mom is also Latina voted Trump, her mom adores Trump.', 'created': '2024-11-17 02:45:34', 'submission_id': '1gt0dln'}
{'comment': "Yeah but don't you know that white democrats know what's best for you??", 'created': '2024-11-17 03:32:04', 'submission_id': '1gt0dln'}
{'comment': 'THANK YOU!\xa0\n\nRight on my friend, don’t let people tell you how to vote! Pisses me off how Obama was scorching black people to vote for Harris as if he owns the black community. Really should be a wake up call to most people.\xa0', 'created': '2024-11-17 07:21:36', 'submission_id': '1gt0dln'}
{'comment': 'You rock! ♥️🤘', 'created': '2024-11-17 02:32:43', 'submission_id': '1gt0dln'}
{'comment': 'Same here as a Chinese-Filipino', 'created': '2024-11-17 04:49:19', 'submission_id': '1gt0dln'}
{'comment': 'Same here. We voted for a presidential candidate not a personality.', 'created': '2024-11-17 08:23:06', 'submission_id': '1gt0dln'}
{'comment': 'Entering!?', 'created': '2024-11-17 01:16:18', 'submission_id': '1gt0dln'}
{'comment': 'Their true colors', 'created': '2024-11-17 01:59:24', 'submission_id': '1gt0dln'}
{'comment': 'They’ve been there for awhile', 'created': '2024-11-17 02:38:31', 'submission_id': '1gt0dln'}
{'comment': 'Well they’ve been racists the whole time, it’s just showing now.', 'created': '2024-11-17 02:53:01', 'submission_id': '1gt0dln'}
{'comment': "If they had a moderate they could have. Maybe even someone who was unapologetically super far left. But Kamala is your run-of-the-mill, generic left-winger. By admitting it's her policies & politics, they're admitting it's the \\*party's\\* policies and politics. And they don't wanna admit that the party is wrong.", 'created': '2024-11-18 07:55:56', 'submission_id': '1gt0dln'}
{'comment': 'Just like they love, support… other women, until they find out the other women don’t agree with them.', 'created': '2024-11-17 03:53:10', 'submission_id': '1gt0dln'}
{'comment': '100%', 'created': '2024-11-18 18:45:26', 'submission_id': '1gt0dln'}
{'comment': 'I started disliking the left when they tried to victimize latinos into allowing Latinx to be used.', 'created': '2024-11-17 05:03:57', 'submission_id': '1gt0dln'}
{'comment': "Same here. But I'm a Chinese-Filipino\n\nI don't like most leftists", 'created': '2024-11-17 04:51:44', 'submission_id': '1gt0dln'}
{'comment': "Because the MSM will blast soundbites with nsm88 on that boat in the parade in Jupiter FL or the Klan endorsing Trump so they just associate all of us with a lunatic fringe. It's funny how the lying media cleverly edited out all the boats who harassed the nazis with prop wash. I was laughing at how they were screaming nazis when Mike Liddell priced his pillows at $14.88.", 'created': '2024-11-17 02:11:40', 'submission_id': '1gt0dln'}
{'comment': 'You were born here so you aren’t illegal. You also couldn’t have served in the military if you were illegal. You will be fine. Idk about your parents. I’d tell them to apply for citizenship or go to their home country and apply from there and wait instead of getting deported and risking being banned from being able to apply after deportation. I also recommend an immigration attorney.', 'created': '2024-11-17 01:07:27', 'submission_id': '1gt0dln'}
{'comment': 'If they actually try to pass this me and some other local repubs are planning on campaigning against this.\n\nWhile we dont like the idea of anchor babies, stripping their citizenship isnt the solution. American citizenship MUST remain a sacred right. Once they open the pandora box of being able to remove American citizenship.... imagine that but the dems are in control... terrifying.', 'created': '2024-11-17 05:13:46', 'submission_id': '1gt0dln'}
{'comment': 'You are fine, it’s called denaturalization, so they can only revoke your citizenship if you lied and obtained citizenship illegally, like if you fake married a US citizen. In your case, you didn’t intentionally game the system since you were given it at birth.', 'created': '2024-11-17 06:48:12', 'submission_id': '1gt0dln'}
{'comment': 'No, no, no.', 'created': '2024-11-17 01:10:40', 'submission_id': '1gt0dln'}
{'comment': None, 'created': '2024-11-18 00:10:58', 'submission_id': '1gt0dln'}
{'comment': 'Lmao are you serious? That has got to be the most childish response I\'ve ever heard. "W-Well we won\'t buy your food anymore!" That\'s a threat a child would make. 😂', 'created': '2024-11-18 21:10:06', 'submission_id': '1gt0dln'}
{'comment': 'Lots from r/Miami', 'created': '2024-11-17 01:31:53', 'submission_id': '1gt0dln'}
{'comment': 'They’re getting back to their roots apparently. They never cared about minorities.', 'created': '2024-11-17 02:08:41', 'submission_id': '1gt0dln'}
{'comment': 'Yeah, they defiantly can out work others. The ones at my job rarely call off and are reliable for whatever the task is.', 'created': '2024-11-17 04:28:43', 'submission_id': '1gt0dln'}
{'comment': 'Absolutely unhinged', 'created': '2024-11-17 02:38:41', 'submission_id': '1gt0dln'}
{'comment': 'Welcome to the club, glad we can be friends', 'created': '2024-11-17 02:44:29', 'submission_id': '1gt0dln'}
{'comment': 'I love how it never occurs to libs that 90% + of the Hispanic population are in fact WHITE to some degree. Most Latin people have Spanish & Portuguese DNA and incase you weren’t aware those are countries in Europe, you know the place where all those evil white razist are from. When I go to buy a gun, I have to check the white box on the 4473 background check form.', 'created': '2024-11-17 19:03:09', 'submission_id': '1gt0dln'}
{'comment': "Yeah but we know they wouldn't say that to our faces.\xa0\n\n\nHispanics aren't like a lot of white people. They run their mouths, they'll get flipped.", 'created': '2024-11-17 22:11:33', 'submission_id': '1gt0dln'}
{'comment': 'The ones who are decedents of people from SPAIN ARE WHITE GUYS. But the census has been done in a particular way to separate them from the regular old WASPY whiteys.', 'created': '2024-11-18 15:37:41', 'submission_id': '1gt0dln'}
{'comment': 'I’m about it. Everyone in my family, extended family and their extended families all are American citizens, and people have told me that my family is going to get deported and I respond with, “shit! They won’t have to go very far atleast!”', 'created': '2024-11-18 18:44:41', 'submission_id': '1gt0dln'}
{'comment': 'They believe anyone who isnt white needs to be helped. They dont treat them as equals, they are "stupid, inferior and ignorant".', 'created': '2024-11-17 04:35:39', 'submission_id': '1gt0dln'}
{'comment': 'They say every day, “help them because they are lessor people” “respirations because they can’t overcome their own issues” “white privilege” etc They will use and maintain their perceived power over others and punish them if they don’t maintain it.', 'created': '2024-11-17 17:53:08', 'submission_id': '1gt0dln'}
{'comment': 'American leftists are absolutely obsessed with race.', 'created': '2024-11-17 21:46:36', 'submission_id': '1gt0dln'}
{'comment': 'I mean, what did you expect? They’re the party that thrive on the oppression of minorities, they think that they’re too stupid and poor to survive on their own. This shouldn’t come as much of a shocker.', 'created': '2024-11-17 04:06:17', 'submission_id': '1gt0dln'}
{'comment': 'Basically, before the civil war, the roles of the two main parties back then(Republican and Democrat)were different, Dems were the pro-slave conservatives and in support of more power for the states and the Reps were the progressive abolitionist party which wanted more power for the federal government, after the civil war, the party swap would happen, and the Reps became Conservative(not exactly pro-slave tho due to the new law passed that banned it)and the Dems became progressive, with the old outdated views becoming a party of their own(Dixiecrat/Free States Movement)', 'created': '2024-11-17 05:51:32', 'submission_id': '1gt0dln'}
{'comment': 'I couldn’t agree more! Projection is about the only thing they know how to do and they’re not even good at it. They could be accusing us of something as they are in the act of blatantly doing it. I’m just so happy this country is waking up and I have hope that everything will be ok.', 'created': '2024-11-17 07:13:27', 'submission_id': '1gt0dln'}
{'comment': 'Ding ding ding!', 'created': '2024-11-18 02:25:07', 'submission_id': '1gt0dln'}
{'comment': 'Yes sir.', 'created': '2024-11-17 03:29:04', 'submission_id': '1gt0dln'}
{'comment': 'Si', 'created': '2024-11-17 12:06:58', 'submission_id': '1gt0dln'}
{'comment': "I stand corrected. They've been unhinged since forever! This is them being unhinged to the superlative degree.", 'created': '2024-11-17 01:24:35', 'submission_id': '1gt0dln'}
{'comment': "They've been calm because they had the power. Now they've lost it all and are like a cornered beast which makes them all the more dangerous.", 'created': '2024-11-17 04:11:26', 'submission_id': '1gt0dln'}
{'comment': 'Was literally my first thought 😂', 'created': '2024-11-17 03:16:57', 'submission_id': '1gt0dln'}
{'comment': 'lol beat me to it!\xa0', 'created': '2024-11-17 07:13:56', 'submission_id': '1gt0dln'}
{'comment': 'They went full mask off and it’s weird how they ignore 65% of native Americans went for trump too', 'created': '2024-11-17 02:38:56', 'submission_id': '1gt0dln'}
{'comment': 'Democrats are the true racist and condescending creatures. Remember when one of them said in The View, but who’s going to “clean your apartment” or something like that, they think that the only thing they can do is housekeeping lol', 'created': '2024-11-17 06:43:31', 'submission_id': '1gt0dln'}
{'comment': "I disagree. I believe what's happening right now is people creating scape goats.", 'created': '2024-11-17 02:59:39', 'submission_id': '1gt0dln'}
{'comment': 'Yes, but Tom Homan is threatening to end birthright citizenship and revoke the citizenship of many American citizens with illegal immigrant parents.', 'created': '2024-11-17 01:09:09', 'submission_id': '1gt0dln'}
{'comment': 'You misread my comment. I was BORN here so I am currently not illegal so I was able to serve in the military. However, my parents are illegal. The Trump administration is saying that they are going to revoke the citizenship of those who have two illegal immigrant parents.', 'created': '2024-11-17 01:16:16', 'submission_id': '1gt0dln'}
{'comment': 'I think many people are unaware how valuable US citizenship is. I just found out that people overseas contact our county office to find out if a relative was born in our county thereby giving them a legal pathway to dual citizenship. I think that is nuts but it is the law.', 'created': '2024-11-17 14:00:28', 'submission_id': '1gt0dln'}
{'comment': '?', 'created': '2024-11-17 01:12:49', 'submission_id': '1gt0dln'}
{'comment': 'Please go back to middle school and study sarcasm', 'created': '2024-11-18 02:42:06', 'submission_id': '1gt0dln'}
{'comment': '😂 for real?', 'created': '2024-11-17 01:34:25', 'submission_id': '1gt0dln'}
{'comment': 'Exactly', 'created': '2024-11-17 07:48:37', 'submission_id': '1gt0dln'}
{'comment': 'You kinda get used to it… enjoy the club I suppose', 'created': '2024-11-17 15:32:29', 'submission_id': '1gt0dln'}
{'comment': 'Fun fact: In prisons on the west coast The Woods (white boys) and Chicanos (American born Mexicans) have an alliance because we’re the most similar group to each other. Latin Americans have been a part of the same club as white people for a while now, even in the most racially segregated place in modern America.', 'created': '2024-11-17 19:06:54', 'submission_id': '1gt0dln'}
{'comment': 'You, my grandad was from Peru and was mostly Italian and Spanish.', 'created': '2024-11-17 22:00:34', 'submission_id': '1gt0dln'}
{'comment': 'I once knew a Hispanic guy who both his parents were Mexican but he looked whiter than me', 'created': '2024-11-18 00:48:58', 'submission_id': '1gt0dln'}
{'comment': 'A lot of my ancestors from Italy either immigrated to the US, Argentina or Brazil and Latin comes from Italy so it seems labels are being used to scan people and Hispanic wasnt even a category on the census until 1980’s.', 'created': '2024-11-18 23:16:50', 'submission_id': '1gt0dln'}
{'comment': 'Continental Europeans don’t use the White label and most never have as it’s only used in the Anglosphere or Americas. There’s no White or Hispanic category on the Spanish census. Most Hispanics are half Spanish anyways or majoritivily Spanish like Eva Longoria and Jessica alba then there’s 100% Spanish like Pedro pascal and John leguizamo. Some Polish or Greek American gets pushed aside for some 100% Spaniard descended from conquistadors because they forget the “White” demographic is made up of lots of ethnic groups most of whom weren’t colonizers and aren’t even connected to the Atlantic.', 'created': '2024-11-18 23:08:16', 'submission_id': '1gt0dln'}
{'comment': 'Like “Bkack people are too poor and stupid to get ID’s….”\n\nSome racist energy.', 'created': '2024-11-17 12:51:31', 'submission_id': '1gt0dln'}
{'comment': 'In the mid-nineteenth century (when Republicans first established themselves as a party)...\n\nThe Republicans were the party of northern industrialists and Democrats were the party of southern agriculturists. Industry required more infrastructure to flourish, so Reps were progressive and favored government investment in roads and trains and banking systems. Agriculture had sufficient infrastructure already, but it did need a large low-skilled workforce, so Dems were conservative and supported slavery.', 'created': '2024-11-17 15:00:53', 'submission_id': '1gt0dln'}
{'comment': 'So that means they are laughing at AOC too. She has embraced Latinx.', 'created': '2024-11-17 14:05:01', 'submission_id': '1gt0dln'}
{'comment': 'I mean they ignore Native Americans in general. They\'re always talking about other minorities, with an even smaller percentage of the population. Yet they completely forget about Native Americans. \n\nAlthough Canadian leftists don\'t. But a lot of their "support" is just virtue signaling.', 'created': '2024-11-18 07:53:07', 'submission_id': '1gt0dln'}
{'comment': 'I have a friend who’s 18, Native American and he was for Trump but said his family would have disowned him if they knew. Just happy to see younger people going more right lately, it gives me hope!\xa0', 'created': '2024-11-17 07:17:19', 'submission_id': '1gt0dln'}
{'comment': 'Raven Simone “Who’s going to clean your toilets, Donald Trump?”\n\nRosie Perez audibly went, “ooooohhh,” in a tone that conveyed Raven fucked up.\n\nEDIT (3 days later): It was Kelly Osbourne, not Raven Simone who said it.', 'created': '2024-11-17 09:19:26', 'submission_id': '1gt0dln'}
{'comment': 'Speaking of The View -didn\'t Sunny Hostin say that hispanics supported Trump because they\'re "sexist"? You can\'t make this stuff up. Were they sexist in 2016 when they supported Hillary?', 'created': '2024-11-18 07:59:07', 'submission_id': '1gt0dln'}
{'comment': "I mean, it's safe to assume 70m democrats aren't racist. Do do however think it's more then just these 4 randoms Reddit posts. It just makes liberals look super hypocritical because they're the ones always throwing words like that around. Plus, they do tend to group think.", 'created': '2024-11-17 03:54:55', 'submission_id': '1gt0dln'}
{'comment': 'He’s not going to do that to a law abiding, contributing veteran. The focus is getting the criminals out and fixing the loopholes that allow them in. It’s not to uproot people who make the country better. That’s what I’ve been getting from all of their plans, not the negative fear mongering the MSM puts out daily. I also could be wrong and they could go heavy on this but this guy has a cop mentality, he was a cop. I don’t know many cops who don’t appreciate vets and citizens who don’t commit crimes', 'created': '2024-11-17 01:20:50', 'submission_id': '1gt0dln'}
{'comment': 'Not likely to be retroactive -would only apply to people trying to have anchor babies after the law is passed.', 'created': '2024-11-17 01:18:16', 'submission_id': '1gt0dln'}
{'comment': 'It won’t be retroactive. You have a passport, you have citizenship. They are not going to be deporting people who have been here for decades. They want to focus first on the criminals, then all the recent illegals. Please don’t worry.', 'created': '2024-11-17 01:54:26', 'submission_id': '1gt0dln'}
{'comment': 'I have never heard Tim Homan state he is going to end birthright citizenship as he does not have the authority to do so. Im not sure why your parents have not applied for citizenship yet since it sounds like they have been here for many years. As others have suggested, I would strongly recommend them seeking the advice of legal counsel.', 'created': '2024-11-17 13:55:17', 'submission_id': '1gt0dln'}
{'comment': 'That’s why I was saying they should probably be speaking to immigration attorneys. Most of them give free consultations. But I wouldn’t gamble with it if they want a life here, with what I’ve been hearing about being denied citizenship down the road if they have to deport ppl.', 'created': '2024-11-17 01:24:47', 'submission_id': '1gt0dln'}
{'comment': 'Who is reporting this? If you were born here, you are a citizen. If that law changes l? It won’t be retro active. No f-ing way.', 'created': '2024-11-17 01:56:10', 'submission_id': '1gt0dln'}
{'comment': 'This is a Constitutional question and the very conservative Supreme Court isn’t going to buy this. I don’t even see conservative Congress buying this.', 'created': '2024-11-17 01:54:10', 'submission_id': '1gt0dln'}
{'comment': "Honestly, we should be fine. I'm not sure how they would prevent this if newborns are on us soil when birth. \n\nIt'll be very awkward to try to jump legal loopholes like administer a civics test to newborn or all American citizens. Even then I am confident more than 55% of America wouldn't pass and I'm part of the majority lol.", 'created': '2024-11-17 05:02:24', 'submission_id': '1gt0dln'}
{'comment': "Your citizenship won't be revoked, ever. You were born here!", 'created': '2024-11-17 01:21:11', 'submission_id': '1gt0dln'}
{'comment': None, 'created': '2024-11-18 02:46:09', 'submission_id': '1gt0dln'}
{'comment': 'Ive been used to it. One metric they dont teach you in schools i suppose is that 40% of hispanics are... white? Lmao, im part of the minority within hispanics.', 'created': '2024-11-17 17:13:49', 'submission_id': '1gt0dln'}
{'comment': 'It’s why I laugh whenever they accuse us of being racist. Those of us who may, not that I condone it, at least are open about it, typically. But it’s (D)ifferent with them, they get to hide behind that “but xyz needs help with 123!” As if they haven’t been doing it fine before it was brought to attention.', 'created': '2024-11-17 15:35:22', 'submission_id': '1gt0dln'}
{'comment': '"And too stupid to graduate high school. Let\'s lower the standards"\n\nThey literally think this.', 'created': '2024-11-18 07:47:48', 'submission_id': '1gt0dln'}
{'comment': 'It’s kinda interesting how things changed because now we’re somehow both the party of business and the working class. The thriving industry and the flourishing farming. I won’t claim to know what republicans and democrats were like before 2016 or so, too young and I’m having trouble recalling the history books right now. What were they like in the 20th century compared to the 19th?', 'created': '2024-11-17 15:39:41', 'submission_id': '1gt0dln'}
{'comment': 'This exactly!', 'created': '2024-11-17 16:19:50', 'submission_id': '1gt0dln'}
{'comment': "Don't get me wrong. It's MEGA hypocritical but I don't think it's base racism taking effect. People on the left have been told Trump will become king-president of the United States and will take away all freedoms. When fear like that is nurtured people often turn to scape goats to find something to blame for what they believe is the obvious problem causer. Just ask Nazi Germany.\n\nGroup thinking aka echo chambers are an issue both sides suffer with.", 'created': '2024-11-17 03:59:19', 'submission_id': '1gt0dln'}
{'comment': 'Don’t care 😂', 'created': '2024-11-18 02:47:05', 'submission_id': '1gt0dln'}
{'comment': 'Yeah, growing up for the latter half of my life in Florida, I learned that a good chunk of Hispanics are at least partly white. Having Hispanic American friends was interesting because some of them would hit me with some Spanish and I’m just like “right I forgot you’re Hispanic”. Treat Hispanics special and then you’ll never truly know if someone needs to be treated special or if they’re just white, using the liberal’s logic. Whole thing doesn’t make sense to me, your demographic is still American if you can vote.', 'created': '2024-11-17 19:32:40', 'submission_id': '1gt0dln'}
{'comment': 'Now, among the children of the “I don’t need no man” segment of the black American community, there is indeed an educational crisis. Sadly, lowering the standards isn’t the answer. \n\nThe beginning of the answer is a repeal of family-killing , LBJ-era measures like Title IV-D (which is a welfare recovery program thatcompensates the states for every dollar of child support they collect). This program creates a clear conflict of interest where juicy federal dollars come before the best interests of the child and intact families.\n\nRepublican politicians were loathe to touch this for fear of losing the female vote. The recent election cycle busted that right open, so anyone who would have been alienated is already alienated.\n\nRemember..prior to LBJ and the DNC’s so-called “Great Society Reforms”, black American families were among the highest in terms of intact, 2-parent families. Black wealth was on an upward trajectory as was achievement. The Democrats made policies that literally paid black women to have no fathers in the home. They did this for votes, which is beyond criminal. Anyone unfamiliar should do a YouTube search for the “Moynihan Report” to see the devastating effects of LBJ’s policies. The demographic that previously had over 87% of intact families now has 87% broken homes. Again, this is akin to genocide and is a prime reason for poor educational outcomes.\n\nWhen Kamala and the DNC realized how badly they were hemorrhaging black male votes, they came up with a last-minute “empowerment plan.” The plan? Marijuana and more loans to keep them chained to their government. Basically “Hey you losers…here’s some reefer!”\n\nAs Conservatives? We should do our part to reverse this and help black Americans rebuild the family by removing the insidious Democrat policies that destroyed it.', 'created': '2024-11-18 18:25:32', 'submission_id': '1gt0dln'}
{'comment': "At the dawn of the 20th century, Republicans were dominate in the country, and the Democrats mostly only existed as an opposition party. Northern Republicans favored business and Southern Republicans favored civil right, so early-1900-Democrats were against both of these.\n\nEarly in the 20th century, there was a split in Republican ideology: Theodore Roosevelt continued to favor more progressive policies (labor laws protecting women and children; wilderness conservation; pro-union), while William Taft favored more conservative policies (high tariffs to help domestic production; against labor-laws; for the popular election of judges).\n\nThat ideological divide let the Democrat Woodrow Wilson get elected for two terms as president, but otherwise the first third of the 20th century was all Republicans presidents running on pro-business platforms, and business was booming and Republicans got much of the credit.\n\nThen when the stock market crashed in 1929, Republicans got most of the blame, allowing Democrat FDR to win office. Franklin Roosevelt had new ideas on how the Democratic party should work, which allowed the Democratic Party to reinvent itself as the New-Deal party and that let the Dems dominate for the next 30 years, with Republicans as the opposition party.\n\nMessiness surrounding the civil rights movement gave both parties a chance to reinvent themselves, but I'd argue that Republicans didn't develop a national identity again until Ronald Reagan. He built a coalition of business and religious leaders that proved very popular, and that gave birth to organization like the Heritage Foundation and the Federalist Society that still have influence today.", 'created': '2024-11-17 17:02:30', 'submission_id': '1gt0dln'}
{'comment': 'Depends on if they have more Spanish and Portuguese in them than Aztec or Inca. My dad is 80% Spanish and 20% Portuguese and he looks like every other white dude.', 'created': '2024-11-18 18:00:22', 'submission_id': '1gt0dln'}
{'comment': 'Thanks, and following Reagan, how did that change into today? As a kid and teen, until high school really, all over the internet I’d see people calling republicans things like war hawks, corporatists, so on and so forth. I’m glad I got a serious response from you, thank you.', 'created': '2024-11-17 19:37:43', 'submission_id': '1gt0dln'}
{'comment': 'Full disclosure: I consider myself an independent, not a Republican, and I\'m not especially happy with where the Republican party has gone. I try to respect the partisan nature of the subreddit, but still take what I say with a grain of salt.\n\nAfter Reagan, neo conservativism became the dominant voice in the Republican Party controlling the party for the first decade or so of the 21st century. Neocons favor free-market domestic policy and interventionist foreign policy. They don\'t necessarily relish warfare, but that "interventionist foreign policy" will often lead to wars, which is why people call them "war hawks". W Bush was a neo conservative, as was his vice-president Dick Cheney.\n\nThe Tea Party was the other big conservative movement of the early 21st century, a grass-roots movement that pushed for fiscal responsibility and accountability. They had a big influence on congressional elections circa 2008-2016, especially Republican wins in 2010.\n\nNeocons and Tea Partiers ran candidates in 2016, as did more traditional republicans, but Trump emerged as the nominee (other people in this group will do a better job of explaining why than me).', 'created': '2024-11-17 21:33:12', 'submission_id': '1gt0dln'}
{'comment': 'Thank you, I appreciate your input for a young republican like me and I fully respect your opinion on the party. Not too happy with it either but what used to be “this fits some of my values ” turned into “the other side has alienated some of the things I respect”, further pushing me to here. I’m hoping the party resonates better with Americans in the next 4 years. I can’t say where I want democrats and republicans to go, I honestly have no clue. But as I said, thanks for the brief history lesson and I hope that you continue to find blessings in your life. God bless you, brother.', 'created': '2024-11-17 21:40:23', 'submission_id': '1gt0dln'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-16 23:07:44', 'submission_id': '1gsybll'}
{'comment': "That's confirmation hearing is gonna need popcorn.", 'created': '2024-11-17 03:30:06', 'submission_id': '1gsybll'}
{'comment': 'Best cabinet ever', 'created': '2024-11-16 23:37:00', 'submission_id': '1gsybll'}
{'comment': '[removed]', 'created': '2024-11-17 02:20:07', 'submission_id': '1gsybll'}
{'comment': 'We need over/under betting odds on how many stupid questions the dems ask during the hearing.', 'created': '2024-11-18 16:34:32', 'submission_id': '1gsybll'}
{'comment': "All of the hearings. I kinda think it's going to go something like the media releases some made-up bs, and then some drooling idiot 500 lb congressman will grill them on it. This will drag on for months.", 'created': '2024-11-18 19:44:37', 'submission_id': '1gsybll'}
{'comment': "Well you can call government alot of things but fast isn't one of them.", 'created': '2024-11-18 19:46:37', 'submission_id': '1gsybll'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-16 22:42:06', 'submission_id': '1gsxrz3'}
{'comment': 'lol I wonder how many other science based areas will start turning on the DEI garbage', 'created': '2024-11-16 22:55:50', 'submission_id': '1gsxrz3'}
{'comment': "All of it should've always been merit based with simple department overview and possible probes to root out any discrimination and nothing else.\n\nIf you have the qualifications your sex, gender, race, height, weight f***ing hell even if you're an extraterrestrial it shouldn't matter when being hired to a government funded insitution.\n\nOnly thing I will advocate for is annual probes into executive and management suites and their private messaging among employees to check for possible lines of corruption, heavy nepotism and fraternity cultures. This can be the only negatives that can create biases from upper management and as long as those are handled, people applying shouldn't be given special privileges or face hiring discrimination. \n\nIt isn't rocket science, and private business entities shouldn't be entitled to receive tax cuts because they're targetting to assist specific demographics. Give them tax cuts for performing well and distributing a good chunk of profits to their deseving employees, not for hiring a special group of Non-binary individuals or other stupid shit.", 'created': '2024-11-16 23:42:10', 'submission_id': '1gsxrz3'}
{'comment': "I have come accross Climate-alarmist studies that advocate for more money to be given to various 'impacted' areas- only to find that some NASA division is the one who has been 'studying' the issue and supplying them with the needed justifications. \n\nExample: NASA studies showing sea level rise that is endangering Pacific Island nations. Then you find other studies that show Pacific Islands are mostly growing in size. When they kill their reefs and mangroves with polution, it causes beach erosion. Anyway the sand goes somewhere else and another beach grows.", 'created': '2024-11-17 01:49:35', 'submission_id': '1gsxrz3'}
{'comment': 'Maybe a new era for the space program if Elon integrates SpaceX? Or helps more with sub contracting?', 'created': '2024-11-17 20:25:34', 'submission_id': '1gsxrz3'}
{'comment': '110% think DEI is worth it. People need to stop crying about how hard it is to be a white man today, suck it up. White men had hundreds of years.', 'created': '2024-11-17 01:47:25', 'submission_id': '1gsxrz3'}
{'comment': "All of them, if we're lucky. 👍", 'created': '2024-11-16 23:07:40', 'submission_id': '1gsxrz3'}
{'comment': "Hopefully the more companies that do it the more it will embolden others to do so. It's like the bystander effect.", 'created': '2024-11-17 01:53:53', 'submission_id': '1gsxrz3'}
{'comment': 'In this case it might actually be rocket science lol. And potentially lives on the line. Hiring an unqualified person gets people killed in any field involving high tech machinery.', 'created': '2024-11-18 05:22:40', 'submission_id': '1gsxrz3'}
{'comment': 'Worst take ever. Fuck DEI', 'created': '2024-11-17 05:08:01', 'submission_id': '1gsxrz3'}
{'comment': ">110% think DEI is worth it.\n\nReally? Really??? You don't want the *best* person for the job. You want someone who ticks boxes for your own feelings of moral superiority. Identity bullshit should never ever come before choosing the *best* person.", 'created': '2024-11-17 05:10:30', 'submission_id': '1gsxrz3'}
{'comment': 'We. Are. Not. The. Same. People. That. Lived. Hundreds. Of. Years. Ago.', 'created': '2024-11-17 02:59:29', 'submission_id': '1gsxrz3'}
{'comment': "Explain that to the Asians....if that's the case they would fill up all the spots.", 'created': '2024-11-17 05:17:24', 'submission_id': '1gsxrz3'}
{'comment': "No, I wouldn't say that. I agree we do want good people for jobs, but it's important that people feel empowered to apply, and if they don't see themselves represented in a position they may never try in the first place.", 'created': '2024-11-17 05:38:39', 'submission_id': '1gsxrz3'}
{'comment': "Why is it upsetting to help a certain kind of people that have been oppressed for hundreds of years? I don't see how that'll change your life for the worst?", 'created': '2024-11-17 03:01:25', 'submission_id': '1gsxrz3'}
{'comment': 'What?', 'created': '2024-11-17 05:39:05', 'submission_id': '1gsxrz3'}
{'comment': "Again you're discussing OPTICS and not skill. How about pushing those specific identities to be the best first? How about investing in their youth and get them to want to be the best? I know I personally would not want to be offered a job that other people are more qualified for just because they need a female on their payroll. All DEI does is check boxes and nothing more. If not enough skilled and qualified minorities are applying for a job, forcing a company to hire one anyways does not help anyone. Find out WHY they aren't and fix it from within.", 'created': '2024-11-17 17:05:20', 'submission_id': '1gsxrz3'}
{'comment': 'Unqualified people getting jobs because of a physical trait is dumb as fuck', 'created': '2024-11-17 06:09:36', 'submission_id': '1gsxrz3'}
{'comment': "Only government is required for DEI, not private companies, by law, unless some internal company policy. \n\nThat said, have you gone through a government hire process and the applicant and interviewed side? I have. And each and every government interview requires scores and comments, based on experience! Don't forget to mention veteran points, yup, people get extra points for being a veteran, REGARDLESS of skill/knowledge to perform the job. Did you know this? And it's a substantial amount of points. \n\nAfter the interview, those scores and tallied, and the final choice is of the highest rank amongst the interview teams. Yes, DEI is considered in the process, but I am promising it's not the decider. It never has been, the one who knows how to do the job gets it because end of day, those who interview have to work with the person, and they want a competent individual who can get the shit done.", 'created': '2024-11-17 17:13:40', 'submission_id': '1gsxrz3'}
{'comment': "I don't see that happening. For less skilled jobs (cashiers, wait staff, etc) sure, but for more skilled and technical jobs I promise you that just cause of their skin they don't get the job over a white person. It could mess down to knowledge and know how. It doesn't actually happen like that, I would know as I've been involved in many government hires were we consider DEI .... The keyword being consider here. It's not a requirement to hire someone because of their ethnicity, it's just a consideration. It is so misinformed to think cause someone is of color they get a job due to dei. That's not the case, I've never seen that, it comes down to scores and ranks as it always has.", 'created': '2024-11-17 16:16:06', 'submission_id': '1gsxrz3'}
{'comment': 'Forgive me for not believing you at all.', 'created': '2024-11-17 16:29:57', 'submission_id': '1gsxrz3'}
{'comment': 'Then what’s the point in DEI?', 'created': '2024-11-17 22:01:15', 'submission_id': '1gsxrz3'}
{'comment': "Man, see this is the issue. What a bummer. Why would I lie here? And why not believe me? Just cause you don't have first hand knowledge doesn't mean it's not true. But than you go around preaching false information, just isn't the right thing to do. \n\nThose figure heads we see on tv in Senate and Congress, they don't actually hire the real workers in government that get the shit done day on and day out. They're just talking heads, we all know that. \n\nIt becomes more polarized of a world if we choose to not listen and believe each other on this level. I promise I'm telling the truth, I see it first hand. It is NOTHING like the talking heads on TV preach it to be. I'm sorry if you don't agree, but it's true. Also, literally EVERY government job interview is public information, you can look up and formally request scores, comments, notes, etc. start doing that and I'd bet you'd be surprised who gets hired.\n\nIt's also good to know that veterans get a substantial amount of points for simply being veterans , regardless of skill or knowledge for the job position. Based on your argument, is that fair?", 'created': '2024-11-17 17:07:03', 'submission_id': '1gsxrz3'}
{'comment': 'My first issue with what you said is that you assumed I was talking about white people not getting jobs because they are white. I don’t like people getting jobs due to physical traits. \n\nThat includes everyone. Sam Brinton should not have been anywhere near the job he got. The more you divide people based on physical traits the more of a disservice it is to society as a whole. \n\nAnd serving in the military is not a physical trait so yea I’m ok with a veteran receiving additional attention in a job search.\n\nAnd you assumed I was I’m not involved in the hiring process for a government agency and I am. I see DEI candidates that are allowed to skate on things such as criminal history and education level due to their physical traits quite frequently.', 'created': '2024-11-17 17:28:06', 'submission_id': '1gsxrz3'}
{'comment': 'I\'ll give you that, yes, I was making some assumptions for the sake of an argument. \n\nEducation level I see get skirted quite often, yes. The "job requirements" for education is a recommendation and is never set in stone, experience matters more. So I\'d be interested in how many of those "skating" education has the years of experience instead? Probably a notable amount. And if you\'re involved in hiring, you know that HR literally scores resumes based on years of experience, which may make them more qualified than someone who just graduated with a PHD. \n\nI don\'t know about the criminal records, I find that hard to believe. Usually if you have even a DUI you get flagged before the interview process and don\'t get a chance due to HR. So I\'d be interested in what you mean by "criminal records" as I feel most governments have a pretty good background check for that. \n\nI still thinks vets shouldn\'t get points, it\'s not fair. Just cause you served doesn\'t mean you are more qualified for the position, sometimes maybe, but not always. And isn\'t a large portion of the argument against DEI is to hire for the most qualified candidates right? We want the most experienced in the position, not those who get preferred points because of their history...', 'created': '2024-11-17 17:40:33', 'submission_id': '1gsxrz3'}
{'comment': 'So are you for DEI or not? So you would like to give preferential treatment to a less qualified candidate that checks a box socially than someone who has served this country according to your last portion of your comment.', 'created': '2024-11-17 17:46:29', 'submission_id': '1gsxrz3'}
{'comment': "All I'm saying is that it's not as influential in the final decision as people imply to be. People make it out to be that DEI is a final decision on all hiring and that it's driving this huge change, which honestly it is not. But I do think it's important to be considered in the process. \n\nI also don't believe that someone who served in the military deserves preferential points. Anyone can sign up to join the military, I definitely respect that decision 200%. But just cuz you know how to serve in the military doesn't mean you're any more qualified for a specific position. That sad, I think our government needs to take more care of the people that served in the military, and that shouldn't take a job away from someone who's more qualified though.", 'created': '2024-11-17 17:50:34', 'submission_id': '1gsxrz3'}
{'comment': 'Pro DEI anti veteran got it.', 'created': '2024-11-17 18:04:41', 'submission_id': '1gsxrz3'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-16 22:29:36', 'submission_id': '1gsxics'}
{'comment': 'He had some pretty clever lines ripping the dems a new one but I don’t support his anti-Trump BS. I also am not on board with him saying they, the libs, won’t be able to protect democracy and the environment. Give me a break. We have other things to worry about. We can’t spend every cycle putting social issues and climate change first and ignoring everything else. We have debt. We have enemies. Both of which have been growing in the last four years. And it’s not like the democrats really made a dent on saving the environment.', 'created': '2024-11-17 00:38:35', 'submission_id': '1gsxics'}
{'comment': "Stop posting this moron like he's some voice of reason. He's the same as the Democrats he occasionally criticizes, a never-Trumper's never-Trumper. His arrogance was on full display with his cocky calls for Harris to end MAGA. Bill Maher is a snake, pure and simple.", 'created': '2024-11-16 22:36:56', 'submission_id': '1gsxics'}
{'comment': 'Doesn\'t matter their ratings are dropping and the only reason these nightly political "commentators" are screeching is because any normal people taking them seriously have left. They\'re just simply screaming into a very small echochamber and their actions are void of all meaning and they cannot handle it.\n\nThank god I never cared for an opinion or was desparate enough to reaffirm my shitty political opinions from an out of touch night show host who gets paid millions and is the farthest thing from an average working person.', 'created': '2024-11-16 23:34:01', 'submission_id': '1gsxics'}
{'comment': 'He is insufferable.', 'created': '2024-11-17 12:59:32', 'submission_id': '1gsxics'}
{'comment': 'They have a long standing feud. \n\nhttps://www.reuters.com/article/lifestyle/trump-withdraws-orangutan-lawsuit-against-comic-bill-maher-idUSBRE9310PL/\n\nMaher talks sense sometimes but is blinded by hatred of Trump & would never admit it that he agrees with him.', 'created': '2024-11-17 02:19:16', 'submission_id': '1gsxics'}
{'comment': 'Dems are like blind flies buzzing around, Maher has one eye that he uses occasionally but the rest of the time he’s blind as well.', 'created': '2024-11-17 02:31:57', 'submission_id': '1gsxics'}
{'comment': 'Damn that was funny 😆', 'created': '2024-11-16 23:07:00', 'submission_id': '1gsxics'}
{'comment': 'Still trying to figure out what did his 180. In 45 he was anti Trump.', 'created': '2024-11-17 02:18:48', 'submission_id': '1gsxics'}
{'comment': '"Phuck that two faced puto"', 'created': '2024-11-17 02:11:45', 'submission_id': '1gsxics'}
{'comment': 'Everyone commenting is missing the point.\nMaher has the Correct analysis of why the Dems lost.\nIf the party leaders take it to heart and pivot back towards the middle, they could win in 2026 midterms and 2028 election.', 'created': '2024-11-17 15:22:44', 'submission_id': '1gsxics'}
{'comment': 'Not a bad skit but at the end he still pushes the narrative that Trump is a threat to democracy. Perhaps the left has twisted the meaning of democracy in its great rush to be inclusive. Do they forget that there are still rules and laws even Trump has to follow? No, instead they call it undemocratic to apply laws that are already on the books such as immigration. It is going to take a brobdignagian effort for the democrats to extricate themselves from the swamp of crazy they have mired themselves.', 'created': '2024-11-17 20:00:07', 'submission_id': '1gsxics'}
{'comment': 'He’s basically a MAGA guy who hates Trump because Trump sued him. He’d be like Megyn Kelly today, otherwise.', 'created': '2024-11-18 06:55:34', 'submission_id': '1gsxics'}
{'comment': '👏', 'created': '2024-11-17 09:06:06', 'submission_id': '1gsxics'}
{'comment': 'Wow that was beautiful. Good for Bill!!!!', 'created': '2024-11-17 15:01:18', 'submission_id': '1gsxics'}
{'comment': 'I liked Vance’s reasoning best. They say they’re pro environment but they ship all the manufacturing to the dirtiest countries in the world. How does that help the environment?', 'created': '2024-11-18 23:56:43', 'submission_id': '1gsxics'}
{'comment': "As much as I want you to be wrong and somehow think he's changing, you're right. He's just doing it for the clicks", 'created': '2024-11-16 22:46:46', 'submission_id': '1gsxics'}
{'comment': 'I wholeheartedly disagree. I’ve watched Bill for years (since the Bush/Iraq war days). I think he is and always has been genuine with his beliefs. And I do think he really nails it sometimes, and he misses other times. That’s okay, he’s human and that’s what America is all about.\n\nHe’s allowed to not like Trump, they have a storied history. Given that, I don’t think Bill is going to easily come out and open support Trump but he’s slowly getting there and we should support that. Let’s celebrate the wins where we can.\n\nThis kind of attitude is why many people have a bad view of Republicans. Trump ran a campaign on unity and I think we should follow in those footsteps. Just because the left attacks anyone who slightly disagrees with them, doesn’t mean we should do the same. Let’s model better behavior.', 'created': '2024-11-16 23:45:12', 'submission_id': '1gsxics'}
{'comment': 'He did the rounds on conservative shows….when he was pushing a book. Then he has Pelosi on and basically worships her like a god. He panders as much as any other democrat because he wants viewers. Nothing else. He is smart to realize you can’t alienate half the country. Outside of that just another democrat pushing Trump hate.', 'created': '2024-11-16 23:58:24', 'submission_id': '1gsxics'}
{'comment': 'Preach.', 'created': '2024-11-16 23:28:55', 'submission_id': '1gsxics'}
{'comment': 'Don’t get me wrong. What he said is all true. But he’s only saying it because it’s cool now. \n\nDems/libs are all coming out of the woodwork saying normal things most Americans have been saying for years and are acting like they are edgy. Hilarious how 4 weeks ago if he said this he’d be canceled. But now that it’s a recent trend, he’ll be glorified for it. \n\nLook I can’t complain about this recent lib trend to finally wake the fuck up. But I don’t trust it’ll stick. Give it time before they revert back to he/him, she/her, Zi/it, etc.', 'created': '2024-11-17 00:04:35', 'submission_id': '1gsxics'}
{'comment': 'He’s never acted like he’s ok with Trump. He hates Trump. He’s pissed at his party for so many reasons. He wants to end the woke agenda. I am for the guy', 'created': '2024-11-16 23:05:51', 'submission_id': '1gsxics'}
{'comment': "Nobody said he wasn't a snake, but it's still entertaining watching him call out the democrats. 😆", 'created': '2024-11-16 22:47:55', 'submission_id': '1gsxics'}
{'comment': 'I’ve watched him also for years. He showed his real intentions this summer pushing his book. Goes on Fox News and conservative shows. Just pushing his book. \n\nHe will continue pushing the “Trump won’t leave office” bs he always does. He is mad at his party yes because they ran a horrible campaign. I lost some respect for him when I realized he just panders to keep viewers.', 'created': '2024-11-17 00:03:22', 'submission_id': '1gsxics'}
{'comment': 'I agree.', 'created': '2024-11-17 05:15:35', 'submission_id': '1gsxics'}
{'comment': ' Why didn’t the Voters turn up for Harris? Plain and simple, they didn’t like their candidate . She was the least popular VP in recorded history, who bypassed the nomination process, is directly tied to the least popular president in modern history who created massive 20% inflation along with record high interest rates, opened the borders, eliminated U.S. energy independence, allowed 2 major wars to continue, refused to protect women in locker rooms and in sports, attacked parents, attacked the 1st and 2nd amendments and attacked religion. \n\nHarris failed miserably as the Border Czar, refused open, unscripted tv interviews, can’t speak without a teleprompter, had zero proposed policies besides DEI, said she wouldn’t do anything different than Biden did, was part of covering up Biden’s extreme mental decline , spent over a BILLION DOLLARS in her failed campaign and was not endorsed by major papers across the U.S.? 75% of the country thinks the country is going in the wrong direction!!!\n\nDemocrats used DEI, cancel culture, threats and bullying as a platform ,while following their leadership into the toilet. The American people flushed them down the drain with all their bullshit!!! \nRemember, “ We see what can be, unburdened by what we did, by burdening what we saw.”', 'created': '2024-11-17 02:29:09', 'submission_id': '1gsxics'}
{'comment': "Since that's his intended effect and he profits from doing so I'm gonna be a hard pass.", 'created': '2024-11-16 22:49:04', 'submission_id': '1gsxics'}
{'comment': 'In fairness, Trump’s rhetoric and poor behavior during the 2020 election has consequences. \n\nI’m not saying there wasn’t BS fraud in 2020, and I’m not saying the media didn’t actively paint the worst picture of him that they could, but I think we can all agree that Trump could have handled that situation WAY better than he did. \n\nHe understood the media by then, he knew how they were going to spin his actions and words, he should have been way savvier about the whole thing. But he acted on impulse and emotion. Huge mistake, one he’s still paying for.\n\nEven his staunch supporters like Ben Shapiro and Megyn Kelly will say they disagreed with how Trump handled 2020 and Jan 6th. \n\nIt’s not outlandish for liberals, casual voters, those who aren’t MAGA, and those who don’t take the time to dig through all the layers of media lies to have a genuine worry that Trump is an authoritarian who won’t accept election results.\n\nI like Trump, I voted for him, but he made his bed with that one. Huge tactical error and one he’s still paying the price for', 'created': '2024-11-17 00:10:45', 'submission_id': '1gsxics'}
{'comment': "Pandering to keep viewers, pandering to keep voters, pandering to sell books etc. What do you expect? Isn't that the point of entertainers and politicians?", 'created': '2024-11-17 13:57:52', 'submission_id': '1gsxics'}
{'comment': "I don't even particularly like the guy, but an entertainer making a buck entertaining people is a bad thing 🤔\n\nEdit: What level of twisted panties are required to down vote this question, one in desperate need of professional help I suspect. 😆\n\nClearly logic is wasted on some preoccupied with navel lint harvesting. 😆", 'created': '2024-11-16 22:53:04', 'submission_id': '1gsxics'}
{'comment': "All political talk show hosts and influencers profit off their fringe talking points, regardless of which base they appease. This is the game of the industry, don't act like it's exclusive to Bill Maher or Democrats.", 'created': '2024-11-16 23:12:09', 'submission_id': '1gsxics'}
{'comment': 'Sure they all do to some extent. I’ve watched Bill for years and probably still will to some extent. Just didn’t like the whole tour he did being incredibly fake when pushing his book.', 'created': '2024-11-17 15:40:56', 'submission_id': '1gsxics'}
{'comment': 'lol. Naval lint harvesting. That alone deserves an upvote. 🙂😎', 'created': '2024-11-17 01:53:31', 'submission_id': '1gsxics'}
{'comment': 'I hear most liberal colleges are offering an accredited class on the subject. 😆', 'created': '2024-11-17 05:16:59', 'submission_id': '1gsxics'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-16 19:45:56', 'submission_id': '1gstyr6'}
{'comment': 'That and your policies are terrible pretty much cove the Democrat party.', 'created': '2024-11-16 20:08:55', 'submission_id': '1gstyr6'}
{'comment': "It's s religion", 'created': '2024-11-16 19:59:46', 'submission_id': '1gstyr6'}
{'comment': 'They keep talking about changing their message, but it won’t happen. The extremist have ahold of the democratic party, and they are not going to let go. The “if you’re not with us, then you are against us” mentality is never going away. \n\nJust look at what’s happening to those in their own party who speak out with some common sense. They attack, attack, attack the people or group or media who do that. I don’t think they can come back. They’ve given away too much to the extremists to be able to reel them in.', 'created': '2024-11-16 20:13:52', 'submission_id': '1gstyr6'}
{'comment': 'Bad person? Bad person \n\nI think he misspelled racist \n, bigoted, transphobic, white nationalist threat to democracy \n\nThese guys deserve no quarter', 'created': '2024-11-16 20:22:49', 'submission_id': '1gstyr6'}
{'comment': "Their extremism that has manifested in this toxic black and white thinking and behavior pattern is exactly why they lost this election and will continue to lose many more to come if they don't remodel their party to be more moderate like it was 30 years ago. Their party has become quite fascist which is ironic since they are the party of voters who likes to call everyone else fascist. This guy just admitted that Democrat politicians have the emotional intelligence of a two year old, and that isn't a good look, but we already knew that.", 'created': '2024-11-16 21:39:19', 'submission_id': '1gstyr6'}
{'comment': 'You should see all the posts on either r/massachusetts or r/salemma tearing him out for his prior statements re trans inclusion in youth sports - the people in MA, and especially in higher ed or certain fields are very much at one with their group think and if you step outside they work double time to slap you down', 'created': '2024-11-16 20:23:23', 'submission_id': '1gstyr6'}
{'comment': "AOC tweeted that there's a disease in Democrats! Gotta let them speak now!", 'created': '2024-11-16 20:39:14', 'submission_id': '1gstyr6'}
{'comment': 'No, if you disagree, you’re not just a bad person, but a “Nazi”, “Fascist” or some sub-human thing to abhor. There is zero room for an opposing view or even criticism in the Democratic Party. Glad they lost and lost hard and I hope they continue to lose and seethe while they scratch their heads and wonder why. Good times.', 'created': '2024-11-17 16:05:08', 'submission_id': '1gstyr6'}
{'comment': 'He said it', 'created': '2024-11-16 20:29:44', 'submission_id': '1gstyr6'}
{'comment': 'That’s all we hoped for really, for everyone to move to the middle and debate like adults. Like good ole times', 'created': '2024-11-16 23:12:06', 'submission_id': '1gstyr6'}
{'comment': 'Shit, I was like finally someone said it, then I see it was from the Republican subreddit, like awww no Dems won’t use it to wise up now… dang it', 'created': '2024-11-16 23:27:53', 'submission_id': '1gstyr6'}
{'comment': 'And he still is a member? He’s just as bad', 'created': '2024-11-17 09:16:50', 'submission_id': '1gstyr6'}
{'comment': 'Tbf there are some that wish to turn our party into that to, “oh you disagree with us? You must be a rino.”', 'created': '2024-11-17 20:54:18', 'submission_id': '1gstyr6'}
{'comment': 'Reminiscent of Obama hearts and minds campaign. Admit weakness to gain trust......', 'created': '2024-11-18 01:54:22', 'submission_id': '1gstyr6'}
{'comment': 'At least he admitted it.', 'created': '2024-11-16 21:26:32', 'submission_id': '1gstyr6'}
{'comment': 'FINALLY. Someone who gets it.', 'created': '2024-11-16 21:37:18', 'submission_id': '1gstyr6'}
{'comment': 'You don’t say…', 'created': '2024-11-16 20:23:47', 'submission_id': '1gstyr6'}
{'comment': 'We all have faith in something', 'created': '2024-11-16 21:16:47', 'submission_id': '1gstyr6'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-16 17:55:16', 'submission_id': '1gsril9'}
{'comment': 'Who makes the determination what is “disinformation”?', 'created': '2024-11-16 18:33:34', 'submission_id': '1gsril9'}
{'comment': 'This is all the demoncrats ever say. \n\nWe need more laws to take more from you. \n\nAnything we can, money, freedom, anything.', 'created': '2024-11-16 18:01:43', 'submission_id': '1gsril9'}
{'comment': 'What she’s really saying is: “More laws are needed to regulate social media usage by people who vote Republican/Conservative and have opinions, views and facts that I don’t like and disagree with.”\xa0', 'created': '2024-11-16 18:09:02', 'submission_id': '1gsril9'}
{'comment': 'Mmm that weird. How come when they had all the media groups on their side. Was that fair. We have truth social and x.', 'created': '2024-11-16 18:21:58', 'submission_id': '1gsril9'}
{'comment': 'The Wuhan lab leak... The Hunter Biden laptop... The fake dossier and Russia collusion... The Ferguson Missouri incident with Michael Brown.\n\nAll suppressed and twisted to meet the lefts narrative.', 'created': '2024-11-16 18:30:32', 'submission_id': '1gsril9'}
{'comment': 'In other words “Let’s abolish the 1st amendment”.\n\nTraitor.', 'created': '2024-11-16 18:54:43', 'submission_id': '1gsril9'}
{'comment': "Says the administration that pushed Covid likely came from a pot of soup, don't you dare look at our funded sketch lab.", 'created': '2024-11-16 18:02:43', 'submission_id': '1gsril9'}
{'comment': 'How did the democrats get so lost from basic human rights like freedom of speech??', 'created': '2024-11-16 18:49:43', 'submission_id': '1gsril9'}
{'comment': 'The problem is that they decide what is disinformation and what they consider disinformation is actually just inconvenient facts.', 'created': '2024-11-16 18:36:44', 'submission_id': '1gsril9'}
{'comment': 'Whenever Libs say things like this, they are the ones who engage in Trash talk.', 'created': '2024-11-16 18:37:10', 'submission_id': '1gsril9'}
{'comment': 'She is begging for people to not be exposed to the reallity of the lefts corruption.', 'created': '2024-11-16 18:12:44', 'submission_id': '1gsril9'}
{'comment': 'Maybe we can start by sowing a zipper across your face.', 'created': '2024-11-16 18:13:10', 'submission_id': '1gsril9'}
{'comment': "The really funny thing here is people like her are blaming social media for Trump winning. It absolutely couldn't be that they ran a horrible candidate and stuck with a platform that alienated millions of voters...\n\nBut hey, don't change a thing. They refuse to believe their platforms and rhetoric are pushing people away.", 'created': '2024-11-16 19:06:44', 'submission_id': '1gsril9'}
{'comment': 'Regulations need to be placed on organizations that claim to be news outlets. Other than that…. We the people have free speech in this country whether what I say is true or false. But news outlets should face more scrutiny due to journalists standards', 'created': '2024-11-16 18:15:49', 'submission_id': '1gsril9'}
{'comment': 'Ad-supported recommendation engines are a kind of poison that showers our brains with very specific content, not right or left, but to generate a feeling like a drug. I’d like to see limits on these feeds, like we have for gambling, drinking, and other known vices, to help people exercise discipline. Like bars close at a certain time and we’re mostly ok with this. We can still drink, but we have to think and take action before continuing. Maybe there should be a mandatory non-algorithmic option, for example. To help us slow down on scratching whatever itch we’re trying to scratch. Again, it’s really just ad-supported algorithmic feeds where the more we consume, the more money they make. Services like Substack for example don’t have this problem.', 'created': '2024-11-16 18:18:02', 'submission_id': '1gsril9'}
{'comment': 'How no laws or laws for all of media including you! I bet you wouldn’t last 5 minutes like your disinformation czar', 'created': '2024-11-16 18:38:41', 'submission_id': '1gsril9'}
{'comment': 'Spoken like a true Marxist.', 'created': '2024-11-16 19:28:57', 'submission_id': '1gsril9'}
{'comment': "Everytime a Democrat opens their mouth, it's just more and more proof they truly hate the constitution. Hell, some of them will just straight up tell you that they do...", 'created': '2024-11-16 20:18:46', 'submission_id': '1gsril9'}
{'comment': 'Disinformation by the Left', 'created': '2024-11-16 18:14:22', 'submission_id': '1gsril9'}
{'comment': 'Not one single lefty has said, "maybe we need better ideas.". Not a single one. It\'s excuses and the need for more laws. The only reason they want to regulate it is because it\'s where we publish and share all their bullshit.', 'created': '2024-11-16 20:05:22', 'submission_id': '1gsril9'}
{'comment': 'What she really wants is to control thought.', 'created': '2024-11-16 20:18:52', 'submission_id': '1gsril9'}
{'comment': 'Who decides what disinformation is? The people who look at you straight in the eye and tell you a man can become a woman? Sounds a bit dodgy', 'created': '2024-11-16 18:47:56', 'submission_id': '1gsril9'}
{'comment': 'She sure does love to use that term for when it’s anything she deems fit.', 'created': '2024-11-16 18:53:46', 'submission_id': '1gsril9'}
{'comment': 'No peppermint patty, this is what we need less of.', 'created': '2024-11-16 18:58:06', 'submission_id': '1gsril9'}
{'comment': 'When they say new laws to regulate social media they mean they want Goebbels propaganda where it only fits their agenda regardless of their misinformation and silence anyone who disagrees', 'created': '2024-11-16 19:06:13', 'submission_id': '1gsril9'}
{'comment': 'The democrats want to trample on our freedoms and piss on the Constitution. All the care about are power and control.', 'created': '2024-11-16 23:15:31', 'submission_id': '1gsril9'}
{'comment': 'Democrats: save us Obi-government Kenobi, you\'re our only hope. \n \n*When they don\'t have power*\n\n"Reeeeeee The government of fascist!!! "', 'created': '2024-11-16 23:50:40', 'submission_id': '1gsril9'}
{'comment': 'Well imagine that, Peppermint Patty wants more censorship like Twitter used to have and Facebook still has.', 'created': '2024-11-17 00:23:18', 'submission_id': '1gsril9'}
{'comment': 'When I see her face I want to vomit', 'created': '2024-11-17 01:27:14', 'submission_id': '1gsril9'}
{'comment': 'The problem with this is always, who decides what is fact and misinformation. Do they want someone that Trump appoints to decide or Fox News? Doubtful \n\nWe don’t want some birdbrain liberal deciding either. This is exactly why freedom of speech and freedom of the press were put in place. \n\nThe federal government has already proven to us that they will lie to us multiple times. We need real journalists to dig deep into the crap that we are told to find the truth. We cannot rely on the presidents parrot (press secretary) for reliable information.', 'created': '2024-11-17 01:44:21', 'submission_id': '1gsril9'}
{'comment': 'You’re about ten steps behind, Little Miss Red As Her Hair.', 'created': '2024-11-17 02:48:12', 'submission_id': '1gsril9'}
{'comment': "You don't need the law to regulate it. Implementing community notes like X would've get rid of majority of disinformation.", 'created': '2024-11-17 04:31:43', 'submission_id': '1gsril9'}
{'comment': 'She is the worst', 'created': '2024-11-17 08:43:58', 'submission_id': '1gsril9'}
{'comment': "We have a good one already! It's known as the 1st Amendment!", 'created': '2024-11-17 17:36:26', 'submission_id': '1gsril9'}
{'comment': 'An opinion is not misinformation', 'created': '2024-11-17 21:22:45', 'submission_id': '1gsril9'}
{'comment': 'Jen Psaki is saying to remove the first amendment! #never', 'created': '2024-11-17 23:19:10', 'submission_id': '1gsril9'}
{'comment': 'I try to watch her to get another POV but man i cant stand her - i end up turning her off.', 'created': '2024-11-18 01:48:32', 'submission_id': '1gsril9'}
{'comment': "I'm sorry but surely you can find a source that isn't a shoddy site in the vein of a 2005 travel blog. No quote. No source. Not even helpful commentary. Here is a quote and excerpt from The Hill.\n\n\n“Laws have to change. I don’t even know the entire answer to it but that seems to me to be a core issue.”", 'created': '2024-11-18 06:46:21', 'submission_id': '1gsril9'}
{'comment': "And let's start with the MSM", 'created': '2024-11-18 12:52:23', 'submission_id': '1gsril9'}
{'comment': 'Honestly I hate this woman so much', 'created': '2024-11-18 20:05:14', 'submission_id': '1gsril9'}
{'comment': 'Fucking hilarious at the timing of all of this!', 'created': '2024-11-18 23:19:39', 'submission_id': '1gsril9'}
{'comment': 'Liberal "women" are struggling. Lol', 'created': '2024-11-16 20:25:57', 'submission_id': '1gsril9'}
{'comment': 'Since they couldn’t kill the second amendment looks like they are gunning for the first.', 'created': '2024-11-16 21:20:23', 'submission_id': '1gsril9'}
{'comment': 'I agree on the social media stuff as it pertains to our youth. Damn kids have such short attention spans because all they consume or snippet videos on TikTok and IG.', 'created': '2024-11-16 21:50:57', 'submission_id': '1gsril9'}
{'comment': 'To combat disinformation, she should lead by example and just STFU. Problem solved.', 'created': '2024-11-16 22:10:57', 'submission_id': '1gsril9'}
{'comment': 'Sounds like “we need to infringe upon your rights instead”', 'created': '2024-11-16 18:45:17', 'submission_id': '1gsril9'}
{'comment': 'Yea, because of the Left!!', 'created': '2024-11-16 19:04:07', 'submission_id': '1gsril9'}
{'comment': 'SMH', 'created': '2024-11-16 20:34:28', 'submission_id': '1gsril9'}
{'comment': 'Who knew that Carrot Top had two faces to feed?', 'created': '2024-11-16 21:06:01', 'submission_id': '1gsril9'}
{'comment': 'We also need more serial killers, child rapists and more blue haired transsexuals. \n\n\n\n\n..... Not really', 'created': '2024-11-16 21:07:24', 'submission_id': '1gsril9'}
{'comment': 'And Soros just bought 227 radio stations…', 'created': '2024-11-16 21:33:25', 'submission_id': '1gsril9'}
{'comment': '🤣🤣🤣🤣🤣', 'created': '2024-11-16 21:58:33', 'submission_id': '1gsril9'}
{'comment': 'so funny how they want to rid themselves of their old ways of controlling everything now that they go beat so bad in Nov.', 'created': '2024-11-16 22:18:05', 'submission_id': '1gsril9'}
{'comment': 'Remember when she got shat on by Trump lol. You guys are all such suckers haha', 'created': '2024-11-16 18:44:06', 'submission_id': '1gsril9'}
{'comment': 'The fact checkers from FB. Duh.', 'created': '2024-11-16 18:39:51', 'submission_id': '1gsril9'}
{'comment': 'The Southern Poverty Law Center', 'created': '2024-11-16 18:45:36', 'submission_id': '1gsril9'}
{'comment': "THAT is a good question! Wish Tucker Carlson would do a show on that very topic (if he hasn't already)😅", 'created': '2024-11-16 22:00:53', 'submission_id': '1gsril9'}
{'comment': 'Even if something is obviously disinformation it shouldn’t be censored. I think it would be an extremely slippery slope once they start labeling and censoring 😳', 'created': '2024-11-17 04:18:34', 'submission_id': '1gsril9'}
{'comment': 'Not gonna lie I do some content moderation reporting for clients and honestly Europe is the most stringent in defining what that means (albeit there is still room for interpretation on the platforms side). They at least are trying lol', 'created': '2024-11-18 08:46:40', 'submission_id': '1gsril9'}
{'comment': 'The best part about it is that these “new laws” will never happen. We got the house and senate, and this censorship bullshit isn’t gonna fly with them.', 'created': '2024-11-16 22:52:03', 'submission_id': '1gsril9'}
{'comment': 'This. “Disinformation” is just anything the left doesn’t like. \n\nWhen they say “democracy” they mean the Democratic party, not actual democracy. They’ve convinced themselves that they are the only ones who believe in democracy and everyone else is an enemy that needs to be silenced.', 'created': '2024-11-16 18:13:04', 'submission_id': '1gsril9'}
{'comment': 'PERFECTLY SAID lol', 'created': '2024-11-16 21:59:01', 'submission_id': '1gsril9'}
{'comment': 'Of course no laws needed to regulate BlueSky, Mastadon, etc...', 'created': '2024-11-16 18:45:22', 'submission_id': '1gsril9'}
{'comment': 'What Jen doesn’t understand is if she’s offended doesn’t mean she’s right. That’s what the left never understands', 'created': '2024-11-17 01:28:22', 'submission_id': '1gsril9'}
{'comment': 'You forgot the Jesse Smollett case & the kid who was allegedly laughing at the American Indian.', 'created': '2024-11-16 21:30:54', 'submission_id': '1gsril9'}
{'comment': 'You forgot the covid vaccines which they want you to take 6 times a year now.. which dont even stop the spread of covid.', 'created': '2024-11-16 19:10:50', 'submission_id': '1gsril9'}
{'comment': 'But they are the party of freedom!', 'created': '2024-11-16 20:19:48', 'submission_id': '1gsril9'}
{'comment': 'Oh right…silly me', 'created': '2024-11-16 19:12:01', 'submission_id': '1gsril9'}
{'comment': 'They are pushing these vaccines hard, because they colluded with big pharma to create the pandemic hoax. Now big pharma wants the money they promised, so they sell sell sell the vaccine.', 'created': '2024-11-17 17:01:40', 'submission_id': '1gsril9'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-16 17:55:00', 'submission_id': '1gsridr'}
{'comment': 'How is someone so hateful and evil allowed to exist on tv!?', 'created': '2024-11-16 18:20:24', 'submission_id': '1gsridr'}
{'comment': 'Like CNN, MSNBC is struggling and she’s getting the attention she needs for as long as she can.', 'created': '2024-11-16 18:16:16', 'submission_id': '1gsridr'}
{'comment': 'Did she even hear herself?? This is very delusional statement, how is she even on TV??', 'created': '2024-11-16 18:09:51', 'submission_id': '1gsridr'}
{'comment': 'She’s certifiably insane, right?', 'created': '2024-11-16 17:59:31', 'submission_id': '1gsridr'}
{'comment': "Holy fuck. There's free speech and then there's purposely spreading disinformation and lies which should be fucking illegal.", 'created': '2024-11-16 18:17:49', 'submission_id': '1gsridr'}
{'comment': 'The smoothies are getting desperate with the propaganda', 'created': '2024-11-16 18:09:57', 'submission_id': '1gsridr'}
{'comment': 'This woman and a few others need to be tossed out..', 'created': '2024-11-16 19:13:16', 'submission_id': '1gsridr'}
{'comment': 'Well it sure won’t be for her.', 'created': '2024-11-16 18:04:27', 'submission_id': '1gsridr'}
{'comment': "I wanna go back to the times when these ppl on the left were quiet and hid their delusions in fear of being locked up cause that's what alot of them need.", 'created': '2024-11-16 19:05:19', 'submission_id': '1gsridr'}
{'comment': 'I see her clown uni on today so I know this is parody', 'created': '2024-11-16 18:30:25', 'submission_id': '1gsridr'}
{'comment': 'More science fiction from the left . \nThe handmaids tale is democrat rape porn.', 'created': '2024-11-16 19:51:43', 'submission_id': '1gsridr'}
{'comment': 'I would like to suggest since Reddit’s hive-mind left always downvotes/band anyone right leaning:\nLet’s start mass downvoting any lefties in posts shared from other subs. Maybe it would reveal the left isn’t actually moral or righteous and instead they just follow the karma.', 'created': '2024-11-16 23:33:27', 'submission_id': '1gsridr'}
{'comment': 'Dumbest woman on television...even in a world where Joy Behar exists.', 'created': '2024-11-17 03:32:28', 'submission_id': '1gsridr'}
{'comment': '🤦🏻\u200d♂️', 'created': '2024-11-17 04:55:09', 'submission_id': '1gsridr'}
{'comment': "If this was the last woman on earth,I'd opt out and fuck a fish instead. She's fucking unhinged and clueless.", 'created': '2024-11-17 14:15:37', 'submission_id': '1gsridr'}
{'comment': 'Why do so many not through this BS?', 'created': '2024-11-18 00:51:15', 'submission_id': '1gsridr'}
{'comment': 'Love it when Joy melts', 'created': '2024-11-18 02:49:26', 'submission_id': '1gsridr'}
{'comment': 'If they want an audience, they need to get more extreme. It’s been working for them thus far', 'created': '2024-11-16 18:52:05', 'submission_id': '1gsridr'}
{'comment': 'How can someone named Joy be so miserable? Also, is she wearing a clown outfit in that picture?', 'created': '2024-11-16 19:37:26', 'submission_id': '1gsridr'}
{'comment': 'Joy Reid is just jealous that literally no man on earth finds her attractive. Or him. Idk I can’t tell anymore.', 'created': '2024-11-16 20:03:00', 'submission_id': '1gsridr'}
{'comment': 'What a piece of trash', 'created': '2024-11-16 19:22:17', 'submission_id': '1gsridr'}
{'comment': 'When will this evil void go away?', 'created': '2024-11-16 19:28:32', 'submission_id': '1gsridr'}
{'comment': 'When they talk about a two bagger, they’re using both bags on joy', 'created': '2024-11-16 20:09:39', 'submission_id': '1gsridr'}
{'comment': 'When are the republicans going to start suing for defamation. ?', 'created': '2024-11-16 20:12:42', 'submission_id': '1gsridr'}
{'comment': 'How the f does she have a job', 'created': '2024-11-16 20:15:00', 'submission_id': '1gsridr'}
{'comment': 'How does this fear-mongerer have a job?.', 'created': '2024-11-16 21:18:15', 'submission_id': '1gsridr'}
{'comment': 'The insanity of liberals today', 'created': '2024-11-17 00:02:45', 'submission_id': '1gsridr'}
{'comment': 'This is a super biased source & it contradicts itself later in the article. At the beginning of the article it says she said this:\n\n “out to get me and force me to have children by sexual assault.”\n\nWhen later it gives the context of the statement as:\n\n"If you’re a sexual assault survivor, you’re thinking, oh, my God, this country is out to get me. They’re out to get me and force me to have children by sexual assault." \n\nPlease give leftist the same context you expect the left to give Trump.', 'created': '2024-11-17 14:48:35', 'submission_id': '1gsridr'}
{'comment': 'If she was white they would have kicked her off television a long time ago. She is so hateful. So racist. Makes obscene generalizations about certain groups of people. Just an awful person.', 'created': '2024-11-16 20:00:34', 'submission_id': '1gsridr'}
{'comment': "Who named her Joy? That's the opposite of her personality, or absence of that trait", 'created': '2024-11-16 19:21:00', 'submission_id': '1gsridr'}
{'comment': 'This is the exact answer!! Both are looking at tanking ratings & talk of selling or restructuring.', 'created': '2024-11-16 19:51:25', 'submission_id': '1gsridr'}
{'comment': "I love the fact she has Trump hair. That's so funny. 🤣", 'created': '2024-11-16 19:10:05', 'submission_id': '1gsridr'}
{'comment': 'She needs to be fitted for a straight jacket', 'created': '2024-11-16 19:02:24', 'submission_id': '1gsridr'}
{'comment': 'Limiting free speech is really dangerous though and against what our country was founded on. Pretty soon you have the ministry of truth that dictates what is allowed to be said.', 'created': '2024-11-16 20:54:14', 'submission_id': '1gsridr'}
{'comment': 'Propaganda was illegal until Obama repealed it. [https://foreignpolicy.com/2013/07/14/u-s-repeals-propaganda-ban-spreads-government-made-news-to-americans/](https://foreignpolicy.com/2013/07/14/u-s-repeals-propaganda-ban-spreads-government-made-news-to-americans/)', 'created': '2024-11-16 18:31:48', 'submission_id': '1gsridr'}
{'comment': "Who decides what's disinformation? That's dangerously close to reducing freedom of speech. What they should do is just cut the free access that news outlets have if they violate that. Maybe also add a disclaimer. But we can't make any form of nonthreatening speech illegal.\n\n\nI think she's a hag too btw, but as a constitutionalist I believe the amendments should be as close to absolute as realistically possible.", 'created': '2024-11-16 18:45:57', 'submission_id': '1gsridr'}
{'comment': '🤣', 'created': '2024-11-16 18:22:26', 'submission_id': '1gsridr'}
{'comment': 'Remember when Tucker Carlson was sued when he was on Fox News & the lawyers had to say it was entertainment not facts (rightly so because it was his opinion). Dems love to bring this up. Can’t the same argument be made against CNN & MSNBC?', 'created': '2024-11-16 21:21:09', 'submission_id': '1gsridr'}
{'comment': 'And Joy Behar.', 'created': '2024-11-16 21:02:50', 'submission_id': '1gsridr'}
{'comment': 'Dems tried with their “Disinformation Czar”.', 'created': '2024-11-16 21:04:01', 'submission_id': '1gsridr'}
{'comment': 'Hey a fellow Constitutionalist! I agree completely. People can say what they want to say, the constitution protects this, however it does not protect you from the repercussions of what you say.', 'created': '2024-11-18 20:15:54', 'submission_id': '1gsridr'}
{'comment': 'It’s what lawyers call slander.', 'created': '2024-11-16 20:14:17', 'submission_id': '1gsridr'}
{'comment': 'The disinformation is blatantly obvious and the only way to combat it is by regulating the MSM and these goddamned fear mongering celebrities doing it for money. How and who regulates them is the real question.', 'created': '2024-11-16 21:16:14', 'submission_id': '1gsridr'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-16 14:45:17', 'submission_id': '1gsnkos'}
{'comment': 'Note: there are people on both sides that go too far, we need to police ourselves to make sure we aren’t one of them', 'created': '2024-11-16 17:14:32', 'submission_id': '1gsnkos'}
{'comment': 'From the article: "Leftism permits no debate, and even less deviation." Yes, because there was a time I would have been considered a left leaning independent. Not anymore. You get shouted down for daring to have an opinion like, not wanting trans athletes in girls sports. You get shouted down for saying anything positive about Donald Trump. For me, I got shouted down when I said there is no way I could vote for Hillary Clinton and would vote 3rd party. That is when I knew the Democrats had gone too far.', 'created': '2024-11-16 21:15:18', 'submission_id': '1gsnkos'}
{'comment': 'We’ve been telling ya for years', 'created': '2024-11-16 21:57:19', 'submission_id': '1gsnkos'}
{'comment': 'These people are crazy 🤦🏻\u200d♀️', 'created': '2024-11-16 15:52:35', 'submission_id': '1gsnkos'}
{'comment': 'Sick evil people. God protect Trump', 'created': '2024-11-16 14:49:12', 'submission_id': '1gsnkos'}
{'comment': "So the article didn't say, what was that a picture of?", 'created': '2024-11-16 15:46:06', 'submission_id': '1gsnkos'}
{'comment': 'I’ve always been calling them a death cult ever since I realized it over the last few years.\n\n— abortion: they are all about that, doesn’t matter far in the pregnancy, they will terminate. They love to kill babies.\n\n— they advocate death of others who have opposing ideas and don’t want to be apart of their agenda. Push out and alienate people who don’t fall in line.\n\n— they don’t want peace, they want war and revenge.\n\n— fear mongering their own people saying “this, OR ELSE.” So many suicides just because they were fed fear. They have blood on their own hands and they don’t even realize it.', 'created': '2024-11-16 17:39:03', 'submission_id': '1gsnkos'}
{'comment': 'Smoothies are the most miserable, hate filled people alive', 'created': '2024-11-16 16:02:33', 'submission_id': '1gsnkos'}
{'comment': 'Well said.', 'created': '2024-11-16 20:43:23', 'submission_id': '1gsnkos'}
{'comment': 'Trump is amazing', 'created': '2024-11-16 18:18:08', 'submission_id': '1gsnkos'}
{'comment': 'Lol, sure… because MAGAts are no cult. You clearly don’t understand the “left,” or your own candidate’s policies for that matter.', 'created': '2024-11-16 17:41:18', 'submission_id': '1gsnkos'}
{'comment': 'The left follows the CCP doctrine of Moa Marxist ideology', 'created': '2024-11-16 18:25:33', 'submission_id': '1gsnkos'}
{'comment': 'People say that, but I never hear about the crazies on the Right. Whenever there are, everyone is quick to denounce them as not with the rest; but that never happens with the left.', 'created': '2024-11-16 23:29:55', 'submission_id': '1gsnkos'}
{'comment': 'I think it’s protesters in handmaids tale garb, because that’s the future they think will happen if we don’t let them murder their children.', 'created': '2024-11-16 21:23:07', 'submission_id': '1gsnkos'}
{'comment': 'Agreed', 'created': '2024-11-17 05:26:45', 'submission_id': '1gsnkos'}
{'comment': 'Ehh you’re like half right, sometimes the right turns a blind eye too. We all need to remember that behind political parties are people, we’re not all perfect but we are all trying!', 'created': '2024-11-17 02:46:13', 'submission_id': '1gsnkos'}
{'comment': 'I was just about to say this. There is never a shred of real accountability. Instead they change which way their finger is pointed and change the subject. The ones that do start owning up to their failures and misguidance just become conservative in the end.', 'created': '2024-11-16 23:38:29', 'submission_id': '1gsnkos'}
{'comment': 'We shouldn’t use bad behavior as an excuse to do the same.', 'created': '2024-11-17 16:47:05', 'submission_id': '1gsnkos'}
{'comment': "I think you hit the nail on the head. An example would be the (likely fake) boat video with the trump+ nazi flag anddd the real maga American blasting them with water. Sure there's people in the right who are crazy, but most of us will say I'm not with it your wrong. The left is the opposite, they are forced to embrace even the most crazy outlandish lefty's.", 'created': '2024-11-17 00:21:23', 'submission_id': '1gsnkos'}
{'comment': 'Wait until they ACTUALLY read handsmaid tale where the women actually wanted to keep their babies but couldn’t😂✌️', 'created': '2024-11-17 05:26:14', 'submission_id': '1gsnkos'}
{'comment': None, 'created': '2024-11-16 22:25:20', 'submission_id': '1gsnkos'}
{'comment': 'I agree with the second part of your statement, but name even 1 instance where the right should have called out someone for their bad take. AFAIK, it never happens. We\'ve called out "Republicans" like Mitt Romney and Liz Cheny plenty for being RINO\'s, I am unafraid to say someone was wrong even if they are on my political side because as you said, we\'re notr all perfect, but we are trying.', 'created': '2024-11-17 09:08:19', 'submission_id': '1gsnkos'}
{'comment': "I agree completely. But there is an objective divide in the sides when someone becomes a bad actor: the right always condems their bad apples while the left never does. That's all I was saying.", 'created': '2024-11-17 18:59:30', 'submission_id': '1gsnkos'}
{'comment': 'They read? Huh, TIL. (Was that too harsh?)', 'created': '2024-11-17 08:15:29', 'submission_id': '1gsnkos'}
{'comment': 'Weird nothing, sick. If thats their while being, just wow 😐', 'created': '2024-11-16 22:53:27', 'submission_id': '1gsnkos'}
{'comment': 'Yeah except they read booktok smut which is even worse.', 'created': '2024-11-17 15:11:00', 'submission_id': '1gsnkos'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-16 12:28:59', 'submission_id': '1gsldjf'}
{'comment': "Yesterday, I watched a clip of Karoline Leavitt taking CNN anchor Brianna Keilar to task on her show from during the campaign. She's the perfect person for the job of press secretary.", 'created': '2024-11-16 15:10:20', 'submission_id': '1gsldjf'}
{'comment': 'I wanted peter doocy', 'created': '2024-11-16 15:04:22', 'submission_id': '1gsldjf'}
{'comment': 'Good luck to the new Press Secretary!', 'created': '2024-11-17 00:52:55', 'submission_id': '1gsldjf'}
{'comment': 'I was not expecting Karoline Leavitt.\n\nBut I am happy with this pick like the rest of Trump’s 2024 team', 'created': '2024-11-16 18:21:48', 'submission_id': '1gsldjf'}
{'comment': 'I wanted Mark Levin', 'created': '2024-11-16 16:54:49', 'submission_id': '1gsldjf'}
{'comment': "On the other hand, it'll be nice hearing him ask her questions. Wonder if he'll take her to task also? Haha", 'created': '2024-11-16 17:20:14', 'submission_id': '1gsldjf'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-16 12:17:52', 'submission_id': '1gsl85z'}
{'comment': "turns out telling young men that they are sexist racist abusive pieces of shit for their whole lives doesn't get them excited about your platform. and of course liberals pull a disney and get angry at the audience when they bomb.", 'created': '2024-11-16 13:13:57', 'submission_id': '1gsl85z'}
{'comment': 'Oh wow, is this accurate? That is a shockingly high percentage. Democrats have become such a party of elitists that can’t even resonate with minorities anymore much less the working class regardless of race.', 'created': '2024-11-16 15:31:54', 'submission_id': '1gsl85z'}
{'comment': 'The left is already spinning this as “they’re uneducated”, and blaming them. \nI work with high-risk teens and young adults in a large urban area that is blue surrounded by blood red counties. \n\nFrom what these kids have shared they find the social issues laughable like safe spaces and pronouns (both females and male.) Additionally they feel unsafe with liberal lax on crime polices, that have hit close to home. Gen Z is simple- they see Joe’e cognitive deficits and Kamala’s word salad and they think it’s “Weird” “No-Rizz Ohio” and “Bad Vibes” all from social media. This generation isn’t watching MSNBC or The View.', 'created': '2024-11-16 15:55:51', 'submission_id': '1gsl85z'}
{'comment': 'What was funny was all of the left leaning news telling everyone just how many ppl of certain races voted the next morning as if they had all the numbers already and not all states were done counting', 'created': '2024-11-16 12:57:59', 'submission_id': '1gsl85z'}
{'comment': 'I’ve heard some of them but it seems they may not be able to connect history to the current. This is interesting as this group was born during President Obama’s 8 years, 4 under Trump, 4 under Biden and many voting for the first time. Turning Point has done a good job getting into the pockets where young Gen Z are and Dems underestimated the pull of Jake Paul, etc', 'created': '2024-11-16 15:03:28', 'submission_id': '1gsl85z'}
{'comment': 'We need to keep strong and make our young men AND women part of the conversation. They may have some ideas we all don’t agree with but talking down to young ppl has almost never worked. They are the future and we should respect what they have to say as well.', 'created': '2024-11-16 15:35:19', 'submission_id': '1gsl85z'}
{'comment': 'I honestly pray that POTUS Trump and his administration is able to show the voters what can be done with strong leadership. I also pray that the masses are finally recognizing how the media outlets have done nothing but lie and manipulate them and they need to look for different sources of information.', 'created': '2024-11-16 16:40:44', 'submission_id': '1gsl85z'}
{'comment': 'The party of Lincoln baby!', 'created': '2024-11-16 15:51:45', 'submission_id': '1gsl85z'}
{'comment': 'Proud of them! We must invest in urban America and cannot forget our African American brothers!', 'created': '2024-11-16 16:53:06', 'submission_id': '1gsl85z'}
{'comment': 'Similar experience for me. I’m not white and before 2020 I was a Dem. But I didn’t leave the Democrats, the Democrats left me. And Donald Trump was the only person who spoke to my concerns.', 'created': '2024-11-16 21:58:39', 'submission_id': '1gsl85z'}
{'comment': "It's time to wake up to the truth", 'created': '2024-11-16 23:53:38', 'submission_id': '1gsl85z'}
{'comment': 'Maybe it was my *brothers* in Paris 🥺', 'created': '2024-11-16 16:09:44', 'submission_id': '1gsl85z'}
{'comment': 'Gaslight party', 'created': '2024-11-16 13:33:42', 'submission_id': '1gsl85z'}
{'comment': 'I think (maybe hope?) that a lot of black folks are getting tired of being told they basically can’t do whatever cause they’re black.', 'created': '2024-11-16 16:58:21', 'submission_id': '1gsl85z'}
{'comment': 'Especially when it’s coming from Kamala Embarrass and Barry NObama.', 'created': '2024-11-16 13:54:48', 'submission_id': '1gsl85z'}
{'comment': "This is one of the first times I agreed with a republican talking point.\n\nDemocrats are very elitist and tend to act like they are better than others because of their intelligence or actions, etc.\n\nUnfortunately, Trump's party while it may not have the same issues has its own issues.\n\nIt's unfortunate that the Republican party has become a cult that follows trump (BTW previously a Democrat) that has dropped their core values to simply get into office.\n\nBoth parties are disconnected from reality. \n\nI can't handle the disrespect of Trump's party, lack of ethics, and the flat out lies.\n\nI can't handle the democratic party lack of ethics, elitism, out of touch with society.\n\nThe entire reason a country is strong is because of its unity, no matter your beliefs as long as they align with the group/country it makes that country stronger. Having a massive split preventing the ability to work together that we currently have only paralyzes the country from doing anything.\n\n\nHistorically the only time a split in culture is resolved is with a civil war and new countries created.\n\nNo matter your beliefs, our country is literally forever stuck voting on abortion. It CAN NOT be solved, instead of voting on issues that actually effect our lives, we are stuck voting on a stupid issue that doesn't effect 99.9999% of us.\n\nThink about how rare an abortion is. Yet people will vote on that single issue. (Abortion is a example there are a few other big examples). Republicans and Democrats are both guilty of this, although Republicans started it. They all make it sound like we have to voted based on this issue.\n\nI can go on forever but voting on the issues that have no resolution, simply paralyzes our country, how often has our government been shutdown because nobody can agree. Or think about how often a party just cock blocks a bill or pick for a position just to prevent the government from functioning.\n\n\nHalf the population is men where abortion will never apply, and most women won't ever need an abortion. Why does it even matter if it's legal or illegal it doesn't effect you ever.\n\n\nAnd if u wanna protect life, guys I'm sorry to tell you this but we are constantly sending people off to war, executing prisoners and killing animals for food. Life sucks and death is a part of life infact without death we can't have life. \n\nbtw life doesn't start at conception, life started 2-5 billion years ago and has never stopped. Life doesn't start like a light switch. It's always going. \n\nI'm getting way off topic but both parties piss me off. Our country is in a downhill spiral and I understand many people voted for trump because they wanted change. But his changes are not going to make anything better.", 'created': '2024-11-16 19:26:21', 'submission_id': '1gsl85z'}
{'comment': ">This generation isn’t watching MSNBC or The View.\n\nAs much as social media has distorted so many's world view, on the plus side is them getting news from it and others. Actually reading other people's experiences versus the news, reading headlines but them actually watching videos. The past 4 years has definitely showed a huge spike in people watching videos. Unfortunately for the dems, that makes it a lot harder to tell people what said and meant when they're watching and listening for themselves.", 'created': '2024-11-16 17:26:29', 'submission_id': '1gsl85z'}
{'comment': "I hope so but some of these people seem to be so far gone down the rabbit hole of lies and disinformation. I hate seeing my fellow Americans so distraught and hopeless because of the lies they believe. The MSM is to blame for all this hate and the lies going around and these fucks like MSNBC and CNN need to be held accountable. Since when is it ok for media outlets to spread blatant lies and disinformation? The government officials who went on national TV and said blatant lies like saying the end of democracy if Trump won and the dumb fucks saying they will be political prisoners if Trump won. It's straight up despicable and fear mongering and they need to be held accountable.", 'created': '2024-11-16 17:02:30', 'submission_id': '1gsl85z'}
{'comment': "And telling them white people are the cause of all their problems when a lot of them realized racism isn't this giant mountain casting a shadow over their progress. There actually is no mountain.", 'created': '2024-11-16 17:22:17', 'submission_id': '1gsl85z'}
{'comment': '💯\xa0', 'created': '2024-11-17 11:20:03', 'submission_id': '1gsl85z'}
{'comment': 'I agree 100 %, I think legacy media underestimates the power of the comment sections from sources like YouTube, Tik-Tik and IG.', 'created': '2024-11-16 17:42:14', 'submission_id': '1gsl85z'}
{'comment': "I completely agree that the media shoulders a great deal of blame. Then there's reddit and all of the other social media censors. They all need to be held accountable. I'm stunned that slander suits are being brought forward with the level of lies that were spewed. The public needs to have some recourse to keep the media in check.", 'created': '2024-11-16 23:30:39', 'submission_id': '1gsl85z'}
{'comment': "I get a lot of my news and information from comments. There are a lot of things we don't know much about, and there are a lot of people that actually do know. I also know there is too much bullshit in there as well, but critical thinking helps weed that out. That's is what is wrong with leftist redditors, no common sense, no critical thinking, and blindly opening their mouths wide like baby birds swallowing whatever garbage they are fed.", 'created': '2024-11-16 19:33:51', 'submission_id': '1gsl85z'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-16 04:55:07', 'submission_id': '1gsevx5'}
{'comment': '>The idea of having more intercourse to make up for all the people not having any was reportedly originated by Jeff Narvin a man who, coincidentally, was not getting any.\n\nHate to break it to Jeff, but twice as much of 0, is still 0.', 'created': '2024-11-16 06:09:27', 'submission_id': '1gsevx5'}
{'comment': 'Once again we are forced to pick up the slack for the liberals... 😁👍', 'created': '2024-11-16 05:47:49', 'submission_id': '1gsevx5'}
{'comment': 'Awesome Hell Yeah!!!', 'created': '2024-11-16 05:38:01', 'submission_id': '1gsevx5'}
{'comment': "I was already having twice the sex now I have to double that? I'm not young anymore people and there's only so much viagra can do! 😂 🤣", 'created': '2024-11-16 12:25:53', 'submission_id': '1gsevx5'}
{'comment': "Pretty sure I'm already doing my part, but I'm ready to do more. 😁", 'created': '2024-11-17 20:14:39', 'submission_id': '1gsevx5'}
{'comment': '🤭', 'created': '2024-11-16 05:36:04', 'submission_id': '1gsevx5'}
{'comment': 'Their sacrifices shall not be forgotten.', 'created': '2024-11-16 07:24:23', 'submission_id': '1gsevx5'}
{'comment': 'The movement was ruled as a failure due to a pandemic of headaches. \n\nAre we sure this story is satire', 'created': '2024-11-16 06:42:06', 'submission_id': '1gsevx5'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-16 03:03:23', 'submission_id': '1gscwed'}
{'comment': 'It’s so cool that JD has little kids. It’s been a while since small children were in the White House.', 'created': '2024-11-16 03:06:56', 'submission_id': '1gscwed'}
{'comment': 'I’m not the biggest fan of kids (especially small kids), but this is adorable!!!', 'created': '2024-11-16 07:42:07', 'submission_id': '1gscwed'}
{'comment': '...and not being sniffed', 'created': '2024-11-16 03:11:41', 'submission_id': '1gscwed'}
{'comment': 'I like the energy JD brings!!', 'created': '2024-11-16 04:10:43', 'submission_id': '1gscwed'}
{'comment': 'Not that long,Obama had two daughters.', 'created': '2024-11-16 04:47:10', 'submission_id': '1gscwed'}
{'comment': 'Lmao 🤣', 'created': '2024-11-16 03:11:58', 'submission_id': '1gscwed'}
{'comment': "I don't care what side you are but I love Tim Walz And JD Vance attitude doing there debate", 'created': '2024-11-16 18:14:18', 'submission_id': '1gscwed'}
{'comment': 'Yeah I know but they were little older. I mean like toddlers.', 'created': '2024-11-16 04:48:14', 'submission_id': '1gscwed'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 19:04:36', 'submission_id': '1gs2j2z'}
{'comment': "Trump lied.\n\n\nHe said there would be so much winning that we'd get tired of it. I'm not at all tired of it and crave more winning and more liberal tears.", 'created': '2024-11-15 20:05:09', 'submission_id': '1gs2j2z'}
{'comment': '_"Comcast, IBM, Disney, Warner Bros. Discovery, and Lionsgate Entertainment, all of which bolted X a year ago in a dither over the content of the social media platform, have returned, according to AdWeek."_ 😆', 'created': '2024-11-15 19:28:21', 'submission_id': '1gs2j2z'}
{'comment': 'Who’s winning from this?', 'created': '2024-11-15 21:12:12', 'submission_id': '1gs2j2z'}
{'comment': "Man I am having a MAGA Christmas it's starting to turn around thank you Jesus for saving his life. Target it's already coming back to their senses.\n\nhttps://voz.us/en/society/241108/17978/trump-effect-target-woke-returns-to-decorate-its-stores-with-the-phrase-merry-christmas-and-abandons-the-happy-holidays.html", 'created': '2024-11-15 20:59:39', 'submission_id': '1gs2j2z'}
{'comment': ' 👋 Waves 👋 at disgruntaled Horrible Harris voter humping the down vote button like anyone really cares how you spend your day. 😆', 'created': '2024-11-15 19:11:37', 'submission_id': '1gs2j2z'}
{'comment': 'I bill boycott those hypocrits until the day i die', 'created': '2024-11-16 20:07:47', 'submission_id': '1gs2j2z'}
{'comment': 'You’re way too early to declare this. You *WILL* get tired (but not sick) of the amount of winning that our glorious President is going to send your way.', 'created': '2024-11-16 04:37:26', 'submission_id': '1gs2j2z'}
{'comment': '😂😂😂', 'created': '2024-11-15 20:17:26', 'submission_id': '1gs2j2z'}
{'comment': 'Might I suggest to you TikTok where the hate for the GOP never ends and you can argue with leftists to your hearts content.', 'created': '2024-11-15 20:32:04', 'submission_id': '1gs2j2z'}
{'comment': "I'd tell Disney to pound sand until they take care of all the woke shit they've been peddling.", 'created': '2024-11-16 12:36:07', 'submission_id': '1gs2j2z'}
{'comment': 'In a few months it’ll be the list of celebrities', 'created': '2024-11-15 22:50:18', 'submission_id': '1gs2j2z'}
{'comment': 'When the wokeness ends everyone wins... 😁', 'created': '2024-11-15 21:18:03', 'submission_id': '1gs2j2z'}
{'comment': 'America is recovering from wokeness nicely. 😁', 'created': '2024-11-15 21:05:52', 'submission_id': '1gs2j2z'}
{'comment': 'Why, just browse through Reddit. Plenty of hate here for your enjoyment.', 'created': '2024-11-16 01:35:20', 'submission_id': '1gs2j2z'}
{'comment': 'I never really got into the whole woke grifting thing.', 'created': '2024-11-15 21:56:41', 'submission_id': '1gs2j2z'}
{'comment': 'No reason for you to be downvoted.', 'created': '2024-11-16 12:37:36', 'submission_id': '1gs2j2z'}
{'comment': 'Love it', 'created': '2024-11-16 02:38:40', 'submission_id': '1gs2j2z'}
{'comment': 'But at least the people on Reddit have guidelines to follow and they follow those guidelines the people on TikTok just say whatever sometimes', 'created': '2024-11-16 01:47:57', 'submission_id': '1gs2j2z'}
{'comment': 'Guidelines? The posters or the mods? The mods have being going ham perma banning anyone for 0 reason other than were Republican.', 'created': '2024-11-16 12:34:30', 'submission_id': '1gs2j2z'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 18:55:37', 'submission_id': '1gs2bby'}
{'comment': 'American Idol counts 100 million votes during a commercial break.', 'created': '2024-11-15 19:53:59', 'submission_id': '1gs2bby'}
{'comment': 'To be fair they probably have laws on votes like “can’t count a mail in vote received after deadline unless you can’t verify signature, but only if it’s a Tuesday and the vote is for the party deemed to be morally superior by the clerks cousins friend and then only if it’s a vote for a democrat or something like that', 'created': '2024-11-15 21:06:41', 'submission_id': '1gs2bby'}
{'comment': 'California is literally the Democratic Experiment State.', 'created': '2024-11-16 05:20:28', 'submission_id': '1gs2bby'}
{'comment': 'Do we expect anything less from California? It’s a state propped up by federal money, taxes on companies, and a fake and inflated housing and land price system. They can’t do anything right.', 'created': '2024-11-15 19:30:48', 'submission_id': '1gs2bby'}
{'comment': "Well they can't count the votes for Trump, they'll lose California!", 'created': '2024-11-15 19:52:37', 'submission_id': '1gs2bby'}
{'comment': 'I got an email from a Republican State assembly member saying they were throwing out thousands of ballots with the extreme majority being Republican. This is particularly problematic in districts like the 45th in Orange County where by far the most ballots have been thrown out.', 'created': '2024-11-15 21:16:38', 'submission_id': '1gs2bby'}
{'comment': 'Waiting on that box truck at 4 AM with Nevada plates to show up with 500,000 votes like they did in Wayne county Michigan in 2020 and this year in Wisconsin\xa0 to stop hovde.\xa0 Oh we just found 100000 votes in back office\xa0 yeah right!\xa0', 'created': '2024-11-15 19:11:34', 'submission_id': '1gs2bby'}
{'comment': "There are too many suspicious activities here it shouldn't take that long", 'created': '2024-11-15 21:26:33', 'submission_id': '1gs2bby'}
{'comment': "Lib libbing. It's not county, it's manufacturing votes.", 'created': '2024-11-15 19:41:05', 'submission_id': '1gs2bby'}
{'comment': 'Democrats are quitters. They never go the distance especially when they realize they’re losing.', 'created': '2024-11-15 21:22:55', 'submission_id': '1gs2bby'}
{'comment': 'Crazy', 'created': '2024-11-15 21:19:58', 'submission_id': '1gs2bby'}
{'comment': 'That’s crazy but not surprising at all', 'created': '2024-11-15 22:24:29', 'submission_id': '1gs2bby'}
{'comment': 'So with all the tech industry in California you’d think this would be done an hour after the polls close. Florida did just fine.', 'created': '2024-11-15 22:20:06', 'submission_id': '1gs2bby'}
{'comment': 'im assuming when the race is called all the temp workers go home and there is like 3 people left to count millions of votes or something', 'created': '2024-11-16 12:56:04', 'submission_id': '1gs2bby'}
{'comment': "They are vigorously comparing signatures to last will and testimonies with county obituaries, graveyards and the morgue. This could take even more time. Don't rush...", 'created': '2024-11-16 16:55:29', 'submission_id': '1gs2bby'}
{'comment': 'Fuck these asshats! Enough cheating!!!!!!', 'created': '2024-11-16 01:41:51', 'submission_id': '1gs2bby'}
{'comment': 'u/iasazo \n\n Using 2023 data, the only state I listed that cracks the top 10 in defense spending is Arizona at #8. California comes in at #3 with about $61B in defense spending.\n\n2023 defense spending \n**ranks by state**\n\n\\#33 - Lousiana ($4B) \n\n\\#30 - Alaska ($4.7B)\n\n\\#22 - Mississippi (8.9B)\n\n\\#15 - Missouri (13.3B)\n\n\\#8 - Arizona ($17B)\n\n\\#3 - California ($60.8B)\n\n2023 Most federal \n**funding by % of state revenue** \n\n\\#5 - Louisiana (29.8%)\n\n\\#6 - Alaska (29%)\n\n\\#8 - Arizona (28.5%)\n\n\\#13 - Mississippi (25.9%)\n\n\\#33 - Missouri (18.7%)\n\nWith the link below, you can also view the net amount of how much a state ended up receiving or paying into to the federal government without 2021 covid aid being accounted for in the calculations. Even not counting covid aid, the states I listed still were all at least top 15 in receiving more than they pay. \n\n[https://rockinst.org/issue-areas/fiscal-analysis/balance-of-payments-portal/](https://rockinst.org/issue-areas/fiscal-analysis/balance-of-payments-portal/)\n\nDefense spending\n\n[https://www.defense.gov/News/Releases/Release/Article/3935678/dod-releases-report-on-defense-spending-by-state-in-fiscal-year-2023/](https://www.defense.gov/News/Releases/Release/Article/3935678/dod-releases-report-on-defense-spending-by-state-in-fiscal-year-2023/)\n\n% of state budget that comes from federal \ngovernment \n\n[https://www.moneygeek.com/financial-planning/taxes/states-most-reliant-federal-government/](https://www.moneygeek.com/financial-planning/taxes/states-most-reliant-federal-government/)\n\nI definitely agree that using the covid years numbers aren\'t the best representation and greatly inflates a lot of numbers. However, these states\' inefficiency persists through covid to the present day. \n\nYou claim the following to justify poor economic numbers in some states: "In part, having an environment where businesses want to settle despite their smaller populations. Some of those businesses do work for the federal government and get paid for it. The horror." Do you have any sources to justify these businesses draining the federal budget from states that pay more than they receive? Sounds like these businesses need to get DOGE-ed', 'created': '2024-11-16 03:23:43', 'submission_id': '1gs2bby'}
{'comment': '😂', 'created': '2024-11-16 17:37:20', 'submission_id': '1gs2bby'}
{'comment': 'They’re not votes tied to personal information', 'created': '2024-11-15 22:58:28', 'submission_id': '1gs2bby'}
{'comment': 'The name must also have the proper pronouns too.', 'created': '2024-11-16 07:50:27', 'submission_id': '1gs2bby'}
{'comment': 'I got in before the "Muhh, 298% of the national economy" comments!', 'created': '2024-11-15 19:41:36', 'submission_id': '1gs2bby'}
{'comment': "Imagine all states being like this. It'd take more than a week to know who won the election lol. And this wasn't exactly Bush/Gore!", 'created': '2024-11-15 21:58:42', 'submission_id': '1gs2bby'}
{'comment': 'Propped up on federal money? Oh man vivek/elon are going to have fun with that one.', 'created': '2024-11-15 20:00:43', 'submission_id': '1gs2bby'}
{'comment': 'In 2021 California generated $488M of revenue and received $143M in federal grants, which would rank California as the 9th most contributory state to federal funds. This has been a consistent trend for years now. I\'m not really sure where this narrative that FINANCIALLY California is a failed state came from. The state prints money, that doesn\'t mean they SPEND it right. But California rakes cash in. \n\nIn 2024, approximately 32% of California\'s state revenue was from federal funding, ranking at about #40 in the nation. States actually propped up by the federal government are:\n\n\n\nLouisiana - 52% (!!) of state revenue provided by federal government\n\nAlaska - 50% of state revenue provided by federal government \n\nArizona - 47% of state revenue provided by federal government\n\nMississippi - 47% of state revenue provided by federal government\n\nMissouri - 45% of state revenue provided by the federal government \n\n\n\nIf government efficiency is going to actually happen, we all need to collectively open our eyes and read the numbers. It\'s ok to not like California, it\'s not ok to dislike facts. What the hell is happening in the states I listed that causes them to need HALF their budget from the federal government? DOGE should heavily focus in those states. \n\n\n\nSource for 2021 financial numbers under the file "US summary & state estimate tables"\n\n[https://www.census.gov/data/datasets/2021/econ/local/public-use-datasets.html](https://www.census.gov/data/datasets/2021/econ/local/public-use-datasets.html)\n\nThis provides data on the percentage of state revenue provided by federal funding in 2024\n\n[https://worldpopulationreview.com/state-rankings/federal-aid-by-state](https://worldpopulationreview.com/state-rankings/federal-aid-by-state)', 'created': '2024-11-15 22:59:27', 'submission_id': '1gs2bby'}
{'comment': 'They’re either gonna have to stall until people stop asking, commit fraud, or lose because most people voted trump. \n\nLet’s see how this plays out', 'created': '2024-11-15 21:45:20', 'submission_id': '1gs2bby'}
{'comment': "This is true, I don't know very many people here in California that did not vote for Trump", 'created': '2024-11-15 22:00:03', 'submission_id': '1gs2bby'}
{'comment': 'Wait they can just throw out ballots? What if those ballots make the race with the recount threshold?', 'created': '2024-11-15 22:59:09', 'submission_id': '1gs2bby'}
{'comment': 'What was the reason stated for that?', 'created': '2024-11-16 03:47:10', 'submission_id': '1gs2bby'}
{'comment': 'And all of them were blue. At least make your fake votes resemble the percentages of the rest of the state.', 'created': '2024-11-16 12:26:36', 'submission_id': '1gs2bby'}
{'comment': '> Using 2023 data, the only state I listed that cracks the top 10 in defense spending is Arizona at #8\n\nWhat about the per capita defense spending? Obviously CA will be near the top, it is a large border state with a large population. \n\nYou are pushing another bad metric.\n\nedit:\n\nFor example the per capita defense spending in: \nCalifornia: 60.8B / 39.9M = $1560 per capita \nAlaska: 4.7B / 733k = $6412 per capita \n\nIt makes complete sense that "federal spending" is a larger portion of Alaska\'s Revenue than California\'s.', 'created': '2024-11-16 03:29:20', 'submission_id': '1gs2bby'}
{'comment': 'Neither are these - no voter id law in California bucko', 'created': '2024-11-15 23:23:06', 'submission_id': '1gs2bby'}
{'comment': 'Californian here. Your comment is sadly true. I will stop there.', 'created': '2024-11-16 13:52:26', 'submission_id': '1gs2bby'}
{'comment': '> States actually propped up by the federal government are:\n\nThis data does not indicate which states are "propped up by the federal government". You are misrepresenting the data. \n\nThis data includes things like money award to defense contractors. This greatly skews the data against smaller states with defense (or other government) contractors, particularly Arizona, and Alaska. This was also data from 2021 which includes federal COVID money further skewing the data.\n\nYou are being dishonest or are simply wrong about what this data shows. \n\n> it\'s not ok to dislike facts.\n\nI am going with dishonest.\n\n> What the hell is happening in the states I listed that causes them to need HALF their budget from the federal government?\n\nIn part, having an environment where businesses want to settle despite their smaller populations. Some of those businesses do work for the federal government and get paid for it. The horror.\n\nI do appreciate that you included your sources.', 'created': '2024-11-16 01:36:17', 'submission_id': '1gs2bby'}
{'comment': '"In 2021 California generated $488M of revenue and received $143M in federal grants"...and you go on to say you dont know why people consider it a "failed state" when this literally happens:\n\n["California Faces a $68 Billion Deficit. Largely as a result of a severe revenue decline in 2022-23, the state faces a serious budget deficit. Specifically, under the state’s current law and policy, we estimate the Legislature will need to solve a budget problem of $68\xa0billion in the upcoming budget process."](https://www.lao.ca.gov/reports/2023/4819/2024-25-Fiscal-Outlook-120723.pdf)\n\nI\'m sorry, but "488 million" dollars plus a bit from the federal grants of revenue is NOTHING compared to a 68 BILLION dollar deficit.\n\nYours sincerely, someone born and raised in California who left the state a long long time ago.', 'created': '2024-11-16 06:34:45', 'submission_id': '1gs2bby'}
{'comment': 'And Newscum wants CA to recede.', 'created': '2024-11-16 03:58:41', 'submission_id': '1gs2bby'}
{'comment': 'Write a book.', 'created': '2024-11-15 23:11:15', 'submission_id': '1gs2bby'}
{'comment': 'In contra costa I know NO ONE that voted for her, yet supposedly she got 70% of the vote.', 'created': '2024-11-16 03:46:07', 'submission_id': '1gs2bby'}
{'comment': 'I would bet money most people in California didn’t vote Trump. I would be shocked if it was more than 40%.', 'created': '2024-11-15 22:02:44', 'submission_id': '1gs2bby'}
{'comment': 'I think that’s probably the plan', 'created': '2024-11-15 23:04:06', 'submission_id': '1gs2bby'}
{'comment': 'The longer the time goes one the lower the lead gets in the already heinously gerrymandered districts', 'created': '2024-11-16 00:19:37', 'submission_id': '1gs2bby'}
{'comment': 'He was asking for money for lawyers to fight it.\n\nI didn’t give him any but it’s looking like honestly that’s what’s going on.', 'created': '2024-11-16 08:07:42', 'submission_id': '1gs2bby'}
{'comment': 'Easy peasy to cheat', 'created': '2024-11-16 05:50:10', 'submission_id': '1gs2bby'}
{'comment': 'Do facts anger you lol', 'created': '2024-11-15 23:12:34', 'submission_id': '1gs2bby'}
{'comment': 'I’ve already marked California off as a kamala win, but wtf is taking them so long?', 'created': '2024-11-15 22:04:00', 'submission_id': '1gs2bby'}
{'comment': 'It’s California. I bet they have the DMV in charge of counting.', 'created': '2024-11-15 22:42:18', 'submission_id': '1gs2bby'}
{'comment': 'Yeah, the California Department of Manufacturing Votes', 'created': '2024-11-16 03:42:23', 'submission_id': '1gs2bby'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 18:55:19', 'submission_id': '1gs2b3g'}
{'comment': 'Skeletor will never step down.', 'created': '2024-11-15 19:00:32', 'submission_id': '1gs2b3g'}
{'comment': 'They still planning on wheeling this long con running ole hag around?', 'created': '2024-11-15 18:58:14', 'submission_id': '1gs2b3g'}
{'comment': 'Term limits please! Enough of the old fools.', 'created': '2024-11-15 19:11:53', 'submission_id': '1gs2b3g'}
{'comment': 'She should be in jail for insider trading', 'created': '2024-11-15 19:17:47', 'submission_id': '1gs2b3g'}
{'comment': 'I hope Trump gets term limits passed that makes her ineligible to run.', 'created': '2024-11-15 19:08:25', 'submission_id': '1gs2b3g'}
{'comment': 'Better get her a new liver.', 'created': '2024-11-15 19:01:15', 'submission_id': '1gs2b3g'}
{'comment': '2 years is a long time for someone as old as her', 'created': '2024-11-15 19:05:13', 'submission_id': '1gs2b3g'}
{'comment': "If liberals want to save their party they need to vote her out. She's half the problem of what people dont like about democrats", 'created': '2024-11-15 19:23:15', 'submission_id': '1gs2b3g'}
{'comment': 'You are 84 TODAY.\n\nAnd you just announce that in 2 years you want to run again for a 2 year House term.\n\nThis would make you 88 if you make it that far, after that two year term.\n\nI know power is important to politicians, but does any of them want to actually enjoy retirement before they die?\n\nEDIT: Fixed to put her in the House, not the Senate. Sorry, she has been there soo long, I was thinking she was in the Senate where all the old people seems to be.', 'created': '2024-11-15 19:27:32', 'submission_id': '1gs2b3g'}
{'comment': "She will be 86 in two years.\xa0\n\n\n\xa0Remember how they said during Trumps first term that he was too old based on how he held a bottle of water?\xa0\n\n\nThen libs didn't say anything when RBG was on her death bed, and pretended an older Biden was sharp as a tack.\xa0\n\n\nGuess they will keep pretending for Pelosi.", 'created': '2024-11-15 19:35:08', 'submission_id': '1gs2b3g'}
{'comment': "Don't these reptilians ever want to retire someday and go relax on a beach to live out their remaining days?!! It's all about the power and they can't let go.", 'created': '2024-11-15 19:27:04', 'submission_id': '1gs2b3g'}
{'comment': "Maybe her husband's gay lover that broke into his house can be her campaign manager.", 'created': '2024-11-15 19:12:33', 'submission_id': '1gs2b3g'}
{'comment': 'Call me crazy, but there should not be such a thing as “career politicians” IMO. A career politician can’t represent the people because they’re not the people. If you aren’t the people, you don’t share the concerns, struggles, or passions of the people from a truly empathetic position. Again, maybe I’m just a naive moron, but my stomach turns at the thought of an 84 year old career politician in a country where relations amongst the citizens just get worse every year because stirring hate and controversy keeps you in power getting rich.', 'created': '2024-11-15 19:50:33', 'submission_id': '1gs2b3g'}
{'comment': 'She ain’t ever gunna quit', 'created': '2024-11-15 19:18:54', 'submission_id': '1gs2b3g'}
{'comment': 'We could prevent this you know. Congressional elections never get national attention which is why people like her are able to keep getting reelected. All she has to do is trick her little district into electing her over and over again, but if we put a national spotlight onto it we may be able to push her out. 11th district of California in case anyone is wondering. They need to vote her out. Spread the word, make it trend, meme it, whatever. Let the people of her district know what a shitbag she is. We have two years.', 'created': '2024-11-15 20:15:25', 'submission_id': '1gs2b3g'}
{'comment': "She's going to die in office from ill health!\xa0 Gurney office holder.\xa0\xa0", 'created': '2024-11-15 19:13:14', 'submission_id': '1gs2b3g'}
{'comment': 'This is great news for anyone tracking her stock options', 'created': '2024-11-15 19:18:54', 'submission_id': '1gs2b3g'}
{'comment': 'They have all of the money now. They just want power.', 'created': '2024-11-15 19:49:38', 'submission_id': '1gs2b3g'}
{'comment': 'That 84 year old vampire should be shoved into the sunlight.', 'created': '2024-11-15 19:51:43', 'submission_id': '1gs2b3g'}
{'comment': 'She’s as old as dirt', 'created': '2024-11-15 20:14:07', 'submission_id': '1gs2b3g'}
{'comment': 'Crypt keeper 2026', 'created': '2024-11-15 20:25:37', 'submission_id': '1gs2b3g'}
{'comment': 'Nancy will be doing rallies like Tales from the Crypt 🧟\u200d♀️', 'created': '2024-11-15 20:26:38', 'submission_id': '1gs2b3g'}
{'comment': "Democrats will be pushing Nancy around Weekend At Bernie's style by 2026.", 'created': '2024-11-15 20:29:35', 'submission_id': '1gs2b3g'}
{'comment': 'But if she retired we wouldn\'t get to hear Donald say "Nancy..."....\n\nI\'m all for her staying for another term because her incompetence is priceless.\n\nClueless led by the clueless.', 'created': '2024-11-15 20:43:19', 'submission_id': '1gs2b3g'}
{'comment': 'Please enact real term limits across the board. Fuck this old crow', 'created': '2024-11-15 20:49:03', 'submission_id': '1gs2b3g'}
{'comment': 'This is the party of new ideas', 'created': '2024-11-15 20:53:37', 'submission_id': '1gs2b3g'}
{'comment': 'Diane Feinstein remembers…', 'created': '2024-11-15 20:54:17', 'submission_id': '1gs2b3g'}
{'comment': 'She needs several million more for her retirement fund too bad her pay is only 179k a year.', 'created': '2024-11-15 19:22:05', 'submission_id': '1gs2b3g'}
{'comment': None, 'created': '2024-11-15 19:33:52', 'submission_id': '1gs2b3g'}
{'comment': 'Please no, she really needs to step down', 'created': '2024-11-15 19:37:07', 'submission_id': '1gs2b3g'}
{'comment': "And people still don't believe in Vampires ? How much more proof do you need ?", 'created': '2024-11-15 19:38:03', 'submission_id': '1gs2b3g'}
{'comment': 'She will stop when insider trading is frowned upon by the Dems. Till then, open season...', 'created': '2024-11-15 19:39:44', 'submission_id': '1gs2b3g'}
{'comment': 'GO AWAY ALREADY', 'created': '2024-11-15 19:44:10', 'submission_id': '1gs2b3g'}
{'comment': 'Term limits.', 'created': '2024-11-15 19:44:39', 'submission_id': '1gs2b3g'}
{'comment': 'With a Republic majority in the house they can make her life a living hell if they want to.', 'created': '2024-11-15 19:48:49', 'submission_id': '1gs2b3g'}
{'comment': 'Sharp as a tack 😂', 'created': '2024-11-15 19:55:05', 'submission_id': '1gs2b3g'}
{'comment': 'Yes please, my account that mirrors her trades is doing very well.', 'created': '2024-11-15 19:56:13', 'submission_id': '1gs2b3g'}
{'comment': 'Go AWAY!!!!!', 'created': '2024-11-15 20:04:39', 'submission_id': '1gs2b3g'}
{'comment': "Isn't she ☠️ yet?", 'created': '2024-11-15 20:05:26', 'submission_id': '1gs2b3g'}
{'comment': '"come on down to China Town"', 'created': '2024-11-15 20:07:56', 'submission_id': '1gs2b3g'}
{'comment': 'She and all the those that have never worked outside of government need to go. Term limits!', 'created': '2024-11-15 20:08:41', 'submission_id': '1gs2b3g'}
{'comment': 'Just remember that she was alive during World War 2', 'created': '2024-11-15 20:46:10', 'submission_id': '1gs2b3g'}
{'comment': 'I thought she said she wasn’t going to run again?', 'created': '2024-11-15 20:48:10', 'submission_id': '1gs2b3g'}
{'comment': "Bourbon has been hard on her. I'm surprised she has made it this far.", 'created': '2024-11-15 21:04:37', 'submission_id': '1gs2b3g'}
{'comment': 'It’s time to put this old bitch out to pasture', 'created': '2024-11-15 21:09:26', 'submission_id': '1gs2b3g'}
{'comment': 'I hope she gets investigated by Matt Gaetz and gets arrested & charged with insider trading.', 'created': '2024-11-15 21:12:49', 'submission_id': '1gs2b3g'}
{'comment': 'Omg. Geeez', 'created': '2024-11-15 21:18:32', 'submission_id': '1gs2b3g'}
{'comment': 'Hopefully her new face will come off of back order by then.', 'created': '2024-11-15 21:21:41', 'submission_id': '1gs2b3g'}
{'comment': 'Pelosi needs to get out of politics. She is a corrupt relic.', 'created': '2024-11-15 21:24:42', 'submission_id': '1gs2b3g'}
{'comment': 'I need her to get re-elected so my shares in Autopilot can continue to rise.', 'created': '2024-11-15 21:27:28', 'submission_id': '1gs2b3g'}
{'comment': 'She just wants to secure her job and her fully tax payer funded bar 😂', 'created': '2024-11-15 21:28:19', 'submission_id': '1gs2b3g'}
{'comment': 'She needs to take her ass back to California. She’s been there long enough and made plenty off the backs of people. Along with her husband and her insider trading!', 'created': '2024-11-15 21:37:24', 'submission_id': '1gs2b3g'}
{'comment': 'Disgusting', 'created': '2024-11-15 22:23:20', 'submission_id': '1gs2b3g'}
{'comment': 'TERM LIMITS !!!!!!!!!!!!!!!', 'created': '2024-11-15 22:47:23', 'submission_id': '1gs2b3g'}
{'comment': 'Age limits and term limits.', 'created': '2024-11-15 19:54:05', 'submission_id': '1gs2b3g'}
{'comment': 'Watch HER get Pelosi’d this time around.', 'created': '2024-11-15 20:25:13', 'submission_id': '1gs2b3g'}
{'comment': 'Cut. It. out.', 'created': '2024-11-15 20:46:36', 'submission_id': '1gs2b3g'}
{'comment': 'She’s gotta figure out what to do with her hands when she talks… oh and then get grip on policy, too.', 'created': '2024-11-15 21:51:18', 'submission_id': '1gs2b3g'}
{'comment': ' Why didn’t the Voters turn up for Harris? Plain and simple, they didn’t like their candidate . She was the least popular VP in recorded history, who bypassed the nomination process, is directly tied to the least popular president in modern history who created massive 20% inflation along with record high interest rates, opened the borders, eliminated U.S. energy independence, allowed 2 major wars to continue, refused to protect women in locker rooms and in sports, attacked parents, attacked the 1st and 2nd amendments and attacked religion. \n\nHarris failed miserably as the Border Czar, refused open, unscripted tv interviews, can’t speak without a teleprompter, had zero proposed policies besides DEI, said she wouldn’t do anything different than Biden did, was part of covering up Biden’s extreme mental decline , spent over a BILLION DOLLARS in her failed campaign and was not endorsed by major papers across the U.S.? 75% of the country thinks the country is going in the wrong direction!!!\n\nDemocrats used DEI, cancel culture, threats and bullying as a platform ,while following their leadership into the toilet. The American people flushed them down the drain with all their bullshit!!!', 'created': '2024-11-15 21:54:16', 'submission_id': '1gs2b3g'}
{'comment': "I think once DOGE takes a look at government spending and the signatures on the documents, we will see a different attitude. Pelosi enacted laws to allow criminal activity (White Colar- Insider Trading) to be free from prosecution. Pelosi's husband works on Walstreet. Congress and lobbyists have sold this country to line their pockets. Her hands are dirty. She got rich off of lobbyists. I think the climate will change, and all bad actors will be forced to retire and/or face prosecution. They poked the bear and have ripped off Americans for too long. The day of reckoning is upon them. We have been starving for four years. Time to remove the food from their fridges and freeze their assets.", 'created': '2024-11-15 22:06:56', 'submission_id': '1gs2b3g'}
{'comment': 'They haven’t learned yet?', 'created': '2024-11-15 22:09:31', 'submission_id': '1gs2b3g'}
{'comment': 'Her social security number is 1', 'created': '2024-11-15 22:15:43', 'submission_id': '1gs2b3g'}
{'comment': "All that booze and she ain't pickled yet?", 'created': '2024-11-15 22:16:16', 'submission_id': '1gs2b3g'}
{'comment': 'Good God.', 'created': '2024-11-15 22:18:48', 'submission_id': '1gs2b3g'}
{'comment': 'The evil ones live the longest unfortunately', 'created': '2024-11-15 22:38:52', 'submission_id': '1gs2b3g'}
{'comment': 'This “Sith Lord” just can’t give it up while Trump is in office. The Dark Side is keeping her alive', 'created': '2024-11-15 22:41:01', 'submission_id': '1gs2b3g'}
{'comment': 'Anyone over 70 should be considered unfit to hold meaningful government positions.', 'created': '2024-11-15 22:44:00', 'submission_id': '1gs2b3g'}
{'comment': "What is she like 92? She's so old and decrepit not to mention her brain is swimming in so much vodka that she is dumber than Kamala. She wouldn't stand a chance in hell.", 'created': '2024-11-15 22:48:17', 'submission_id': '1gs2b3g'}
{'comment': 'Biden is going to drop a tell-all book blasting this bitch. She will never be elected again!', 'created': '2024-11-15 23:02:15', 'submission_id': '1gs2b3g'}
{'comment': 'Fuck if she gets another 4 years I’m dedicating a portion of my portfolio to pelosi trades I’m hopping on the damn band wagon', 'created': '2024-11-15 23:05:12', 'submission_id': '1gs2b3g'}
{'comment': 'She finna be in a pine box by that point 💀', 'created': '2024-11-15 23:12:47', 'submission_id': '1gs2b3g'}
{'comment': 'She’s gonna be rolled around like the old lady who remembers when chocolate was invented in SpongeBob', 'created': '2024-11-15 23:16:06', 'submission_id': '1gs2b3g'}
{'comment': 'Nancy likes the direction of the economy. Tough for her to pass up those gains 💪', 'created': '2024-11-15 23:17:56', 'submission_id': '1gs2b3g'}
{'comment': "I swear I can smell the vodka when I look at her photo! This can't be real! She has to go!!!", 'created': '2024-11-15 23:18:13', 'submission_id': '1gs2b3g'}
{'comment': 'skeleators back lol-', 'created': '2024-11-15 23:46:26', 'submission_id': '1gs2b3g'}
{'comment': "I'd like to see the source", 'created': '2024-11-15 23:46:44', 'submission_id': '1gs2b3g'}
{'comment': 'Bitch simply won’t die!', 'created': '2024-11-15 23:55:32', 'submission_id': '1gs2b3g'}
{'comment': 'I hope she gets Primaried and loses badly', 'created': '2024-11-16 00:01:38', 'submission_id': '1gs2b3g'}
{'comment': "Are they punking us? This can't be real. Who's gonna reelect this hag?", 'created': '2024-11-16 00:16:01', 'submission_id': '1gs2b3g'}
{'comment': 'Didn’t she say she was done ? Yeah I’m sorry but fuck that, we NEED term limits asap.', 'created': '2024-11-16 00:25:21', 'submission_id': '1gs2b3g'}
{'comment': 'Ofc she would!! She has to know which stocks to trade ahead of the rest of common people!!', 'created': '2024-11-16 00:25:31', 'submission_id': '1gs2b3g'}
{'comment': 'Please no', 'created': '2024-11-16 00:31:16', 'submission_id': '1gs2b3g'}
{'comment': 'Her district is shit, as are all districts of politicians who don’t do their jobs.', 'created': '2024-11-16 00:34:56', 'submission_id': '1gs2b3g'}
{'comment': 'Cryptkeeper', 'created': '2024-11-16 00:40:18', 'submission_id': '1gs2b3g'}
{'comment': "We'll need an old priest and a young one lol", 'created': '2024-11-16 00:48:34', 'submission_id': '1gs2b3g'}
{'comment': 'Hope she loses', 'created': '2024-11-16 00:59:18', 'submission_id': '1gs2b3g'}
{'comment': 'Holy hell 84 she runs on a picture that’s like 50 years ago.', 'created': '2024-11-16 01:05:47', 'submission_id': '1gs2b3g'}
{'comment': "Nancy Pelosi's owners announce they ain't done beatin that old hag yet.", 'created': '2024-11-16 01:24:39', 'submission_id': '1gs2b3g'}
{'comment': "She's not the problem, the sheep that keep voting for her are. I do wish she'd go away, though.", 'created': '2024-11-16 01:28:10', 'submission_id': '1gs2b3g'}
{'comment': 'This woman is 84 years old. Has been in office for 40 years. \n\nThis is what it means to be an ego maniac. Why not train and support a successor.', 'created': '2024-11-16 01:31:40', 'submission_id': '1gs2b3g'}
{'comment': '🤮🤮🤮', 'created': '2024-11-16 01:34:25', 'submission_id': '1gs2b3g'}
{'comment': 'You go, Senile Nancy, never give up on the power you so desperately need to have!!', 'created': '2024-11-16 01:46:22', 'submission_id': '1gs2b3g'}
{'comment': 'We the people just gave the middle finger to the Democratic party and what they had to offer. The time might be right for her to get ousted.', 'created': '2024-11-16 01:48:48', 'submission_id': '1gs2b3g'}
{'comment': 'If she became as infirm as Biden she will need another Pelosi to engineer her exit. Politicians just don’t give up their power willingly.', 'created': '2024-11-16 01:50:50', 'submission_id': '1gs2b3g'}
{'comment': 'The old hag vote', 'created': '2024-11-16 01:55:53', 'submission_id': '1gs2b3g'}
{'comment': 'As a lifelong Californian who has met her, she knows no lows. She is despicable and trying so hard to be woke it’s laughable. The bitch can’t even stay AWOKE.', 'created': '2024-11-16 02:11:09', 'submission_id': '1gs2b3g'}
{'comment': 'Life long politician with no real job. Makes MILLIONS yet her base pay is a fraction. Of course she is running again. And that goes for BOTH AND ALL PARTIES. We need term limits for ALL.', 'created': '2024-11-16 02:52:09', 'submission_id': '1gs2b3g'}
{'comment': "OMG, isn't it past time for her to retire? This should be against the law.", 'created': '2024-11-16 02:55:44', 'submission_id': '1gs2b3g'}
{'comment': 'At the sprite young age of 86.', 'created': '2024-11-16 03:10:09', 'submission_id': '1gs2b3g'}
{'comment': "God in heaven, go away already. \n\nYou're a million years old. I take shits faster than you can think and form coherent sentences.", 'created': '2024-11-16 03:11:45', 'submission_id': '1gs2b3g'}
{'comment': 'She belongs in a museum.', 'created': '2024-11-16 03:37:07', 'submission_id': '1gs2b3g'}
{'comment': 'Are you kidding me?! She just won’t go away. These people are sick and have no self-awareness.', 'created': '2024-11-16 03:53:46', 'submission_id': '1gs2b3g'}
{'comment': "Holy fuck the bag of bones is giving Feinstein a run for her place. Wasn't she just saying the Dems lost because Biden wouldn't step down??", 'created': '2024-11-16 04:08:58', 'submission_id': '1gs2b3g'}
{'comment': 'How is she still alive? I guess the old saying is accurate, true evil never dies', 'created': '2024-11-16 04:13:36', 'submission_id': '1gs2b3g'}
{'comment': 'Babylon Bee endorses this!', 'created': '2024-11-16 04:33:01', 'submission_id': '1gs2b3g'}
{'comment': 'Crook', 'created': '2024-11-16 05:06:13', 'submission_id': '1gs2b3g'}
{'comment': '💀', 'created': '2024-11-16 05:22:05', 'submission_id': '1gs2b3g'}
{'comment': "Can't give up that insider trading can she", 'created': '2024-11-16 05:52:07', 'submission_id': '1gs2b3g'}
{'comment': '2 words...TERM LIMITS', 'created': '2024-11-16 06:12:11', 'submission_id': '1gs2b3g'}
{'comment': "I'm guessing with enough alcohol, she believes she is invincible. /s", 'created': '2024-11-16 06:19:15', 'submission_id': '1gs2b3g'}
{'comment': 'Is this a joke? PLEASE TELL ME THIS IS A JOKE', 'created': '2024-11-16 06:50:14', 'submission_id': '1gs2b3g'}
{'comment': 'some people just need to go away', 'created': '2024-11-16 11:38:07', 'submission_id': '1gs2b3g'}
{'comment': 'Inside trader', 'created': '2024-11-16 12:04:32', 'submission_id': '1gs2b3g'}
{'comment': 'hopefully she campaigns from prison for insider trading.', 'created': '2024-11-16 12:31:41', 'submission_id': '1gs2b3g'}
{'comment': "She's not done stealing taxpayer money through insider trading I guess. I've despised her for decades as I'm one of the few people who knows where she came from as I grew up in Baltimore.", 'created': '2024-11-16 12:44:44', 'submission_id': '1gs2b3g'}
{'comment': '🤮', 'created': '2024-11-16 12:56:58', 'submission_id': '1gs2b3g'}
{'comment': 'She wasn’t planning to run again until Trump won. \nLmao', 'created': '2024-11-16 13:09:25', 'submission_id': '1gs2b3g'}
{'comment': 'Acererak needs to go.', 'created': '2024-11-16 14:40:31', 'submission_id': '1gs2b3g'}
{'comment': 'Yuck i just want her to dissappear!', 'created': '2024-11-16 15:52:34', 'submission_id': '1gs2b3g'}
{'comment': 'Hey, they love her in her district. She won’t be speaker of the house (or minority) so it’s a nothing burger. \nI hope Trump can get this economy going so good that even the leftist of left will start voting for prosperity over gender, race and sexual perversion.', 'created': '2024-11-16 20:20:52', 'submission_id': '1gs2b3g'}
{'comment': "At this rate she'll be calling insider trading tips from the grave.", 'created': '2024-11-16 21:56:08', 'submission_id': '1gs2b3g'}
{'comment': 'She needs the info and influence to make her real money, through insider trading. Trump needs to shut this down and prosecute these criminals.', 'created': '2024-11-16 22:30:21', 'submission_id': '1gs2b3g'}
{'comment': 'Ugh not again. I live in her district.', 'created': '2024-11-17 00:47:44', 'submission_id': '1gs2b3g'}
{'comment': 'I hope they go after her and make her life miserable.', 'created': '2024-11-17 03:16:30', 'submission_id': '1gs2b3g'}
{'comment': 'Instead of harassing Sonia Sotomayor to retire, they should be trying to take down this legitimate vampire who is making their party look like fucking morons.', 'created': '2024-11-17 05:58:34', 'submission_id': '1gs2b3g'}
{'comment': 'term limits for congress please', 'created': '2024-11-17 06:47:43', 'submission_id': '1gs2b3g'}
{'comment': 'God NO! She is so full of herself. Let her go!', 'created': '2024-11-17 18:06:57', 'submission_id': '1gs2b3g'}
{'comment': "For the love of god, why won't this witch die..", 'created': '2024-11-18 17:54:17', 'submission_id': '1gs2b3g'}
{'comment': 'Until we meet again!! Meahhhhhhh!! 💀', 'created': '2024-11-15 19:44:02', 'submission_id': '1gs2b3g'}
{'comment': 'I came to say Crypt Keeper, but I like this better.', 'created': '2024-11-15 21:39:52', 'submission_id': '1gs2b3g'}
{'comment': '😂😂😂😂', 'created': '2024-11-15 19:33:59', 'submission_id': '1gs2b3g'}
{'comment': 'BAHHHHHHAHAHAHAHA! 😂😂', 'created': '2024-11-16 05:11:39', 'submission_id': '1gs2b3g'}
{'comment': 'of course they are she will die in office.', 'created': '2024-11-15 20:20:56', 'submission_id': '1gs2b3g'}
{'comment': "At this point, why the hell is she even still running? She's older than dirt and is no longer a caucus leader. I'm sure she still has power & influence, but is that even worth running in 2026? Was it even worth it once Jeffries took her job?\n\nShe must really hate the concept of retirement, FFS.", 'created': '2024-11-15 21:29:51', 'submission_id': '1gs2b3g'}
{'comment': 'If people keep voting her, then yes', 'created': '2024-11-15 18:59:15', 'submission_id': '1gs2b3g'}
{'comment': 'Maybe she plans to run for President in 2028 too. She is the most power hungry of all politicians.', 'created': '2024-11-17 02:06:13', 'submission_id': '1gs2b3g'}
{'comment': 'I agree, but Trump is only 6 yrs younger than younger than Pelosi…', 'created': '2024-11-15 20:50:55', 'submission_id': '1gs2b3g'}
{'comment': 'They keep her around for that very reason', 'created': '2024-11-16 05:06:59', 'submission_id': '1gs2b3g'}
{'comment': "Even if they do that I'm sure there will be a grandfather clause so that It only applies to new members.", 'created': '2024-11-15 20:06:53', 'submission_id': '1gs2b3g'}
{'comment': 'Her and so many more. I don’t like Trump, but if he can get this pass, I’ll praise him for one day!', 'created': '2024-11-15 19:53:05', 'submission_id': '1gs2b3g'}
{'comment': 'Hopefully, there will be no benefits of any kind after office, too', 'created': '2024-11-16 16:12:20', 'submission_id': '1gs2b3g'}
{'comment': 'Something tells me she has a whole freezer full. Made in China.', 'created': '2024-11-15 19:22:16', 'submission_id': '1gs2b3g'}
{'comment': 'No she’d rather ruin our lives than enjoy hers.', 'created': '2024-11-15 19:44:34', 'submission_id': '1gs2b3g'}
{'comment': 'I mean representatives barely work as is. All government employees barely work.', 'created': '2024-11-15 23:40:19', 'submission_id': '1gs2b3g'}
{'comment': "She doesn't even have the level of power she use to have, either. What's even the point of being there anymore? Just go and enjoy retirement.", 'created': '2024-11-15 21:36:42', 'submission_id': '1gs2b3g'}
{'comment': 'She’s in the House of Representatives… still an old as fuck congresswoman, just not an old as fuck senator. She’s been re-elected by her district every other year since 1987.', 'created': '2024-11-15 20:20:10', 'submission_id': '1gs2b3g'}
{'comment': "She's not in the Senate...she's is Congress", 'created': '2024-11-15 20:08:46', 'submission_id': '1gs2b3g'}
{'comment': "He was too old, Biden was too old, it makes no sense that either would hold office at this age.. the most powerful men in the world... They shouldn't even have been considered.", 'created': '2024-11-15 22:48:15', 'submission_id': '1gs2b3g'}
{'comment': "Imagine the horror of seeing her in a bathing suit, though. But she's rich enough to have her own private beach, I'm sure.", 'created': '2024-11-15 21:41:03', 'submission_id': '1gs2b3g'}
{'comment': 'Oh....damn is that really what happened?', 'created': '2024-11-15 20:05:42', 'submission_id': '1gs2b3g'}
{'comment': 'A so called judge gave him life for that', 'created': '2024-11-16 16:15:07', 'submission_id': '1gs2b3g'}
{'comment': "She's not a senator...she's in Congress...they run for a two year term every two years ..", 'created': '2024-11-15 20:12:38', 'submission_id': '1gs2b3g'}
{'comment': 'She thinks insider trading is free market economy!! 😜', 'created': '2024-11-16 00:27:55', 'submission_id': '1gs2b3g'}
{'comment': 'She’s a liar', 'created': '2024-11-15 21:12:13', 'submission_id': '1gs2b3g'}
{'comment': 'Oh it’s you He-Mannnnnnn meahhhhhhh!! You’ll never defeat my plans! Meahhhhhhh!💀', 'created': '2024-11-15 22:17:11', 'submission_id': '1gs2b3g'}
{'comment': 'Feinstein 2.0', 'created': '2024-11-15 20:56:09', 'submission_id': '1gs2b3g'}
{'comment': "Provided she doesn't croak before she gets there. Or strokes out.", 'created': '2024-11-15 23:52:18', 'submission_id': '1gs2b3g'}
{'comment': "Theres far too many crypt keepers in power, I don't understand it.\n\n**edit: i forgot, they have crypts to keep. Duh.", 'created': '2024-11-16 04:10:12', 'submission_id': '1gs2b3g'}
{'comment': 'She is there and stays there because she is a money machine for the DNC. She raises a lot for all of them. Anyone that can bring in big donors every single cycle gets to stay as long as they want. If Trump can get term limits passed that will be some monumental legislation and one nobody on either side could criticize.', 'created': '2024-11-15 21:50:51', 'submission_id': '1gs2b3g'}
{'comment': 'Maybe you forgot. Her and her husband have made most of their money by “lucky” investments in the stock and commodities markets. If she retired she may not get the same ~~insider information~~ luck she’s had all these years.', 'created': '2024-11-16 07:48:02', 'submission_id': '1gs2b3g'}
{'comment': 'Power. She hates the idea of losing power, and even without being speaker, she still has some — even if it’s just to hear the sound of her own voice.', 'created': '2024-11-16 01:26:35', 'submission_id': '1gs2b3g'}
{'comment': "Trump hasn't been in office for 30 years", 'created': '2024-11-15 21:03:40', 'submission_id': '1gs2b3g'}
{'comment': 'Trump is also in one of the few government positions that actually have a term limit', 'created': '2024-11-16 00:52:53', 'submission_id': '1gs2b3g'}
{'comment': 'Yes, both are way too old to hold any meaningful government position.', 'created': '2024-11-15 22:44:34', 'submission_id': '1gs2b3g'}
{'comment': 'No, it wouldn’t only apply to new members, but it also wouldn’t be retroactive. So everyone already in would be allowed at least one more term no matter how long they have already been there.', 'created': '2024-11-15 20:38:34', 'submission_id': '1gs2b3g'}
{'comment': 'Amen', 'created': '2024-11-16 16:19:57', 'submission_id': '1gs2b3g'}
{'comment': 'Brought to you by Carls Jr.', 'created': '2024-11-15 22:18:18', 'submission_id': '1gs2b3g'}
{'comment': 'Ruining lives is what fuels her.', 'created': '2024-11-15 20:20:17', 'submission_id': '1gs2b3g'}
{'comment': 'She’s still running the Dems, Hakeem Jeffries may be minority leader but no way in hell is Nancy giving any power away. In fact, she may have even more power now as she’s able to direct things without being in the spotlight.', 'created': '2024-11-15 22:45:41', 'submission_id': '1gs2b3g'}
{'comment': "Thanks for catching. Just fixed it. She has been there so long already, I just didn't catch it.", 'created': '2024-11-15 20:18:16', 'submission_id': '1gs2b3g'}
{'comment': 'Congress covers both the house and the senate.\n\nYou meant to say “she’s not in the senate…she’s in the House”', 'created': '2024-11-16 12:01:09', 'submission_id': '1gs2b3g'}
{'comment': 'Don\'t know if those were the circumstances, but I do remember saying "fuck, they missed".', 'created': '2024-11-15 20:21:54', 'submission_id': '1gs2b3g'}
{'comment': '*Biden 2.0', 'created': '2024-11-15 20:57:43', 'submission_id': '1gs2b3g'}
{'comment': "Feinstein, Bader-Ginsburg, McConnell (though he finally stepped down...after falling down, I'm sure.)....\nI decided to look it up and shes SOMEHOW not even the oldest.\n\nThe two oldest people in the US government in 2024 are Grace Napolitano of California (86) and Chuck Grassley of Kentucky (90). Man, this is an epidemic hahah", 'created': '2024-11-16 04:17:19', 'submission_id': '1gs2b3g'}
{'comment': 'Let’s hope not. I want her to live through all 4 years of Trump’s second Presidency. Then when she’s had about all she thinks she would’ve ever dreamed of having to suffer through, she’ll live through the first 4 years of President Vance. Can’t wait.', 'created': '2024-11-16 04:51:05', 'submission_id': '1gs2b3g'}
{'comment': 'She may die, but store bought boobies are forever.', 'created': '2024-11-16 05:14:59', 'submission_id': '1gs2b3g'}
{'comment': 'Can it be on live TV?!', 'created': '2024-11-16 02:13:03', 'submission_id': '1gs2b3g'}
{'comment': 'All we can do is hope', 'created': '2024-11-16 01:44:11', 'submission_id': '1gs2b3g'}
{'comment': 'There it is.', 'created': '2024-11-16 01:40:30', 'submission_id': '1gs2b3g'}
{'comment': 'I hear ya. But I would think she could raise a lot money even while being retired.', 'created': '2024-11-18 06:52:05', 'submission_id': '1gs2b3g'}
{'comment': 'I did forget yep lol.', 'created': '2024-11-18 06:52:27', 'submission_id': '1gs2b3g'}
{'comment': 'Pelosi just won her 20th term. We need new blood in there.', 'created': '2024-11-15 21:18:51', 'submission_id': '1gs2b3g'}
{'comment': "If she wins re-election in 2026, it'll sadly be almost 40 years in office (as she assumed office in June 1987).\n\nAnd if she runs again she'll surely win. Both the general and primary.", 'created': '2024-11-15 21:33:41', 'submission_id': '1gs2b3g'}
{'comment': "He's saying that because it's how it worked when term limits were introduced for presidents. FDR was grandfather out of that rule", 'created': '2024-11-16 05:40:10', 'submission_id': '1gs2b3g'}
{'comment': 'Don’t forget, they’re giving out free hot sandwiches at the Blood Bank tomorrow… 11am-2pm.', 'created': '2024-11-15 22:42:26', 'submission_id': '1gs2b3g'}
{'comment': "Yep....she's been there over 30 years or so", 'created': '2024-11-15 20:20:05', 'submission_id': '1gs2b3g'}
{'comment': 'Why not both?', 'created': '2024-11-15 21:10:12', 'submission_id': '1gs2b3g'}
{'comment': 'Remember when Strom Thurman served? Wasn’t he like 104?', 'created': '2024-11-16 04:19:53', 'submission_id': '1gs2b3g'}
{'comment': "I've already seen enough live streamed medical events with McConnell this year lol, I'm tired of them making us watch geriatric overlords be held up like puppets in front of mics while we all tremble in fear over paying our bills lmao", 'created': '2024-11-16 04:21:46', 'submission_id': '1gs2b3g'}
{'comment': '40 years of lawful insider trading. Dang', 'created': '2024-11-15 22:30:43', 'submission_id': '1gs2b3g'}
{'comment': 'I could see her potentially getting primaried. It would be smart to do', 'created': '2024-11-16 00:55:30', 'submission_id': '1gs2b3g'}
{'comment': 'What? It wasn’t passed by Congress until after FDR was dead.', 'created': '2024-11-16 06:16:25', 'submission_id': '1gs2b3g'}
{'comment': 'Sadly almost 40.', 'created': '2024-11-15 21:37:27', 'submission_id': '1gs2b3g'}
{'comment': 'Bidenstein 2.0?', 'created': '2024-11-15 23:38:44', 'submission_id': '1gs2b3g'}
{'comment': "Biden's old buddy! They're why the government can just take your shit without proving you committed a crime! \n\nI looked it up....101. Like, he died in office at 101 - longest running senetor to this day (longest running senetor *so far*...Nanc is gunning for his spot)\n\n**edit: She's not a senetor. Someone else will have to challenge him I guess.", 'created': '2024-11-16 04:31:04', 'submission_id': '1gs2b3g'}
{'comment': 'You mean the son of a confederate soldier who sounded like Jimmy Carter after a stroke?', 'created': '2024-11-16 05:13:58', 'submission_id': '1gs2b3g'}
{'comment': 'Lol👍', 'created': '2024-11-16 13:38:20', 'submission_id': '1gs2b3g'}
{'comment': 'Smart? In California?', 'created': '2024-11-16 14:57:23', 'submission_id': '1gs2b3g'}
{'comment': "On the one hand, she's a liability for the caucus. On the other, if I were a SF Democrat, I'd probably like that she brings the bacon home lol.", 'created': '2024-11-18 06:53:57', 'submission_id': '1gs2b3g'}
{'comment': "They just got the president wrong. The 22nd Amendment prevents the president from being elected to a third term or a second term if they've served more than 2 years of a previous president's term, and it was passed in 51. Truman was grandfathered and could've run in 52, but chose not to.", 'created': '2024-11-16 08:47:59', 'submission_id': '1gs2b3g'}
{'comment': "I'll allow it...", 'created': '2024-11-15 23:52:51', 'submission_id': '1gs2b3g'}
{'comment': 'Why you creative rascal you! Lol', 'created': '2024-11-16 05:12:52', 'submission_id': '1gs2b3g'}
{'comment': 'Had Dewey won the election he would have been exempted too. We don’t have to have grandfather anyone in. The 25th amendment didn’t grandfather anyone in.', 'created': '2024-11-16 17:28:48', 'submission_id': '1gs2b3g'}
{'comment': "I believe Dewey would have been grandfathered too. The 22nd Amendment that limits presidential terms wasn't ratified untill 51, after the Truman-Dewey election of 48.", 'created': '2024-11-17 22:33:16', 'submission_id': '1gs2b3g'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 18:30:20', 'submission_id': '1gs1prg'}
{'comment': '"birdwatching" is code for spending more time with my 38 cats and ensuring my hair is unkempt.', 'created': '2024-11-15 18:41:36', 'submission_id': '1gs1prg'}
{'comment': '👋 Waves 👋 at woke loser humping the down vote button as the SA subscribers flip them the bird. 😆', 'created': '2024-11-15 18:37:03', 'submission_id': '1gs1prg'}
{'comment': 'This has actually been a pretty damn good week and a half!', 'created': '2024-11-15 21:30:52', 'submission_id': '1gs1prg'}
{'comment': 'Why people destroy their careers by spouting trash publicly on social media would be a scientific field in itself.', 'created': '2024-11-15 20:25:10', 'submission_id': '1gs1prg'}
{'comment': "They're outing and cancelling themselves.\n\nAnd it's delicious to watch.", 'created': '2024-11-15 23:04:20', 'submission_id': '1gs1prg'}
{'comment': 'K girl 👋🐦🐦\u200d⬛🐦🐦\u200d⬛', 'created': '2024-11-15 20:45:47', 'submission_id': '1gs1prg'}
{'comment': "Don't let the door knob hit ya where the good Lord split ya.", 'created': '2024-11-16 03:01:06', 'submission_id': '1gs1prg'}
{'comment': 'She is entitled to her own personal opinions but when her own opinions are affecting her scientific credibility she is no longer viewed as an unbiased scientist. That then reflects on her organization she is employed with. As an educated person she should have known better before spouting her opinions.', 'created': '2024-11-16 04:33:34', 'submission_id': '1gs1prg'}
{'comment': 'That publication has been neither scientific nor American for quite some time now.', 'created': '2024-11-15 22:58:28', 'submission_id': '1gs1prg'}
{'comment': 'Stop attacking cat people. Damn, Im conservative and love my kitties.', 'created': '2024-11-15 19:43:07', 'submission_id': '1gs1prg'}
{'comment': 'It’s fine, she’s going to shave her head', 'created': '2024-11-16 16:55:11', 'submission_id': '1gs1prg'}
{'comment': 'I\'m reminded of the movie "A Few Good Men".\n\n"Your god damned right I did." 🤔', 'created': '2024-11-15 20:34:37', 'submission_id': '1gs1prg'}
{'comment': "Psychologically speaking, social media has allowed vulnerable people to create their own reality online. They get so wrapped up in the fake social media reality that they it's its actual reality. This is why you have people acting weird as you go about your day and saying stuff that nobody with a shred of decorum would say in real life. Social media is a plague on mankind, we didn't need the machines to create the matrix, we did it ourselves.", 'created': '2024-11-16 12:53:20', 'submission_id': '1gs1prg'}
{'comment': 'They are crawling back underneath the rock they crawled from in 2020 they will come out again in 2028.', 'created': '2024-11-16 03:08:39', 'submission_id': '1gs1prg'}
{'comment': "Haven't heard that one in a long time and I live in the South 😂", 'created': '2024-11-16 12:57:03', 'submission_id': '1gs1prg'}
{'comment': 'Seriously I have 2, both rescues but we, as conservatives, treat our kitties much better than libs treat theirs, I mean how many whackadoodles have forced a vegan diet on their pets? And 38 cats is wayyy too many. My mother was a cat hoarder, we had 13 of them growing up. They ruined our house, were sick half the time and it was just a horrible situation.', 'created': '2024-11-16 12:48:27', 'submission_id': '1gs1prg'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 18:28:11', 'submission_id': '1gs1nxe'}
{'comment': 'John Kennedy was a democrat \nAnd Robert offered to run for their side\nThey rejected him.\nThey only have themselves to blame', 'created': '2024-11-15 19:47:47', 'submission_id': '1gs1nxe'}
{'comment': 'They are only panicking because CNN said he was bad for so long. He actually represents more government intervention (although the good kind). Which they would normally love', 'created': '2024-11-16 01:17:57', 'submission_id': '1gs1nxe'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 18:20:35', 'submission_id': '1gs1hdb'}
{'comment': "A select group (probably a large majority) should be dispatched to the areas where ATF was most active in distributing illegal weapons to the cartels. If it's OK to determine FEMA funds based on political views, it's OK to determine which operating theater you are assigned.", 'created': '2024-11-15 18:27:15', 'submission_id': '1gs1hdb'}
{'comment': 'I’m looking forward to the montage of doors being kicked in by ICE with Ice Ice Baby playing in the background.', 'created': '2024-11-15 20:34:21', 'submission_id': '1gs1hdb'}
{'comment': 'I\'ve researched my ancestors who came through Ellis Island from all parts of Eastern Europe. You were required to have a certain amount of money with you to prove you wouldn\'t be indigent and you had to have destination, preferably with family. Few of these illegals and refugees have this and instead become a drain on the local economy, a fact we all know. This is a step in the right direction because as I see it, they come here for the "American Dream" but even those of us born here can\'t find that dream anymore so, America is closed until American Citizens are prosperous.', 'created': '2024-11-16 13:07:59', 'submission_id': '1gs1hdb'}
{'comment': 'Ive been to jail and when you are about to be released they have ICE agents come and take away an illegal alien who is in custody. The funny thing was about 2/3rds of the time they called out a name the person wasn’t there or didn’t respond. So these kinda fat agents would be walking back and forth trying to pronounce foreign names and just getting nothing for it. In jail you take what you can get to stay positive.', 'created': '2024-11-15 19:02:08', 'submission_id': '1gs1hdb'}
{'comment': "Too much winning! \n\nLet's get the National Guard's of TX, NM. AZ & CA out to patrol the borders in January.", 'created': '2024-11-15 21:53:25', 'submission_id': '1gs1hdb'}
{'comment': 'lol r/denver just posted an article saying the schools are going to “protect” the illegals. I hope they send the fucking national guard.', 'created': '2024-11-18 23:25:30', 'submission_id': '1gs1hdb'}
{'comment': 'Bring it on!!', 'created': '2024-11-15 23:32:28', 'submission_id': '1gs1hdb'}
{'comment': 'Activate! Goin’ hot boys.', 'created': '2024-11-16 01:48:46', 'submission_id': '1gs1hdb'}
{'comment': 'Excellent.', 'created': '2024-11-16 01:52:37', 'submission_id': '1gs1hdb'}
{'comment': 'If Biden’s border bill would have been passed, thousands would have been hired last year', 'created': '2024-11-16 04:20:37', 'submission_id': '1gs1hdb'}
{'comment': 'I was thinking Bad Boys... in the background. 🤔', 'created': '2024-11-15 20:37:54', 'submission_id': '1gs1hdb'}
{'comment': 'It must be that rocky mountain high thing... 😆', 'created': '2024-11-18 23:28:10', 'submission_id': '1gs1hdb'}
{'comment': 'If Bidens border bill had been passed, we also be giving amnesty to a significant number of those that are here illegally, and would’ve given people even more incentive to come here illegally down the line.', 'created': '2024-11-16 08:47:30', 'submission_id': '1gs1hdb'}
{'comment': 'Why do you follow the Republican sub when your views are directly opposite? You seem like the biggest troll of a person. Imagine how rattled you must be.', 'created': '2024-11-16 05:01:55', 'submission_id': '1gs1hdb'}
{'comment': 'To pencil push or idly stand by until a quota is reached?', 'created': '2024-11-16 05:38:55', 'submission_id': '1gs1hdb'}
{'comment': 'Phil Collins/Genesis "Illegal Alien"\n\nhttps://youtu.be/aqQv3qef21A?si=LGaNINY1EfMezyPz', 'created': '2024-11-16 12:59:38', 'submission_id': '1gs1hdb'}
{'comment': None, 'created': '2024-11-16 00:24:19', 'submission_id': '1gs1hdb'}
{'comment': 'It’s really just Denver and the rich people in the surrounding areas that have ruined this state.', 'created': '2024-11-18 23:29:38', 'submission_id': '1gs1hdb'}
{'comment': 'I mean I’m more left leaning but I def see the value in paying attention to different political views. A lot of people in liberal subreddits are not open to discussion, this sub is pretty similar honeslt but you’re not gonna get banned here for saying not Republican shit. Civil discourse between different political views should always be encouraged as we should be united.', 'created': '2024-11-16 05:11:49', 'submission_id': '1gs1hdb'}
{'comment': 'This is exactly what Trump has stated. Start with those with a criminal record in their home country and those that have committed crimes while here. Then, find and vet the rest of them and make individual decisions on whether or not they plan to become productive members of American society. If they love America and are willing to learn the language and pay taxes, put them at the back of the line for citizenship. Send anyone else packing.', 'created': '2024-11-16 01:56:28', 'submission_id': '1gs1hdb'}
{'comment': 'Read the rules. This shit is pretty simple. The respect we give other subs to get gaslit over here is wild. We didn’t expect anything different being on a activist app. Christians are Republican and it seems a lot of the people living in America are anti-America/Christianity.', 'created': '2024-11-16 20:02:07', 'submission_id': '1gs1hdb'}
{'comment': None, 'created': '2024-11-16 05:28:07', 'submission_id': '1gs1hdb'}
{'comment': 'Admittedly I hadn’t read the rules, but I have seen posts on here about people getting banned on other subs for commenting opposing views so I just assumed this sub was more supportive of free speech then the others. Also my comment nor the original comment said anything about Christianity. Don’t even disagree with you to an extent.', 'created': '2024-11-16 21:40:20', 'submission_id': '1gs1hdb'}
{'comment': 'It’s estimated that the illegal migrants are costing the American taxpayer $150B per year…', 'created': '2024-11-16 13:18:18', 'submission_id': '1gs1hdb'}
{'comment': "I don't think you realize this is part of what the BP already does ...", 'created': '2024-11-16 08:49:53', 'submission_id': '1gs1hdb'}
{'comment': None, 'created': '2024-11-16 17:44:59', 'submission_id': '1gs1hdb'}
{'comment': None, 'created': '2024-11-16 17:42:43', 'submission_id': '1gs1hdb'}
{'comment': "Even better have court dates and don't show...\n\nhttps://cis.org/Arthur/Massive-Spike-Immigration-Court-NoShows\n\n>In October, DOJ published a chart captioned “In Absentia Removal Orders”, that is, statistics on the number of alien respondents in removal proceedings who were supposed to go to court but didn’t. It reveals that 159,379 aliens failed to appear as required before immigration judges (IJs) in FY 2023, an all-time record. It’s just the latest — but one of the clearest — in a line of examples of how the administration is breaking our immigration system. Those aliens may not care enough to show up, but you should care about the effects it has on the credibility of our system of laws to allow aliens in, and keep them out.\n\nDon't even care enough to show up and make their case for asylum", 'created': '2024-11-16 18:07:43', 'submission_id': '1gs1hdb'}
{'comment': None, 'created': '2024-11-16 19:32:58', 'submission_id': '1gs1hdb'}
{'comment': "> when you bring the right folks.\n\nStarts by following the law. Immigration law is inconvenient so we'll skip it. Next I will ignore other laws like OSHA, ADA, zoning, licensing, health regulations, drivers license, auto insurance, etc\n\nI work in construction I see 3rd world behaviors and attitudes every day.", 'created': '2024-11-17 04:27:30', 'submission_id': '1gs1hdb'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 17:59:00', 'submission_id': '1gs0ynf'}
{'comment': 'I dont think this is true. Cheapest ticket is $1400.', 'created': '2024-11-15 18:39:33', 'submission_id': '1gs0ynf'}
{'comment': 'Taylor Swift tickets are through the roof. OP has some of the worst posts on this sub.', 'created': '2024-11-15 18:44:18', 'submission_id': '1gs0ynf'}
{'comment': "C'mon we're better than this. If we don't care about a celebrity endorsement we shouldn't care about this either.", 'created': '2024-11-15 19:16:15', 'submission_id': '1gs0ynf'}
{'comment': 'I mean I’ve voted for Trump three times now… I also went to the eras tour in 2023 and will be seeing her in Vancouver as well', 'created': '2024-11-15 22:31:15', 'submission_id': '1gs0ynf'}
{'comment': 'I always listen to kids who are bred and groomed to be famous and rich, because they know exactly the problems of our country.', 'created': '2024-11-15 18:18:32', 'submission_id': '1gs0ynf'}
{'comment': 'I wouldn’t pay $20 to see her.', 'created': '2024-11-15 18:37:35', 'submission_id': '1gs0ynf'}
{'comment': 'Rent free at this point. It’s clear her endorsement meant nothing, if you don’t like her music don’t listen to it simple as that. I don’t like her politics but she definitely established herself as one of the greatest pop stars of all time. Gotta respect it regardless', 'created': '2024-11-16 02:36:27', 'submission_id': '1gs0ynf'}
{'comment': "There's no need for lying, misleading, or name calling.\n\nTaylor's tickets sold out in minutes of going on sale. \n\nThis is a resale market. Taylor got paid already.", 'created': '2024-11-15 19:21:42', 'submission_id': '1gs0ynf'}
{'comment': 'Even if her tickets were free for the rest of time, she would still be a billionaire and probably several times over at that', 'created': '2024-11-15 23:17:05', 'submission_id': '1gs0ynf'}
{'comment': 'Hahahahhaha', 'created': '2024-11-16 01:44:33', 'submission_id': '1gs0ynf'}
{'comment': 'Like 4 or 5 years ago I ALMOST went and saw her at the Tacoma Dome. I saw the ticket prices and immediately said “nah I don’t need this” I don’t understand how any “average fan” can afford to go see her. Fucking crazy.', 'created': '2024-11-16 03:23:59', 'submission_id': '1gs0ynf'}
{'comment': 'Bahahahahahahaa', 'created': '2024-11-16 03:47:11', 'submission_id': '1gs0ynf'}
{'comment': 'How nice. Still won’t be buying tickets.', 'created': '2024-11-16 16:10:45', 'submission_id': '1gs0ynf'}
{'comment': 'She lives rent free in your mind. This is in Toronto (which is outside of the US btw) and the tickets declined from $1200 to $900, wow she’s really suffering…', 'created': '2024-11-15 18:30:52', 'submission_id': '1gs0ynf'}
{'comment': 'Wonder how much the Harris campaign paid Taylor for the endorsement.', 'created': '2024-11-15 22:40:59', 'submission_id': '1gs0ynf'}
{'comment': 'It’s one thing if she had simply leaned, left but focused on her music. However, she went all in for Harris and was critical of her fan base. This is a classic”Go woke. Go broke.” So, how about we help her do just that.', 'created': '2024-11-15 18:27:59', 'submission_id': '1gs0ynf'}
{'comment': 'only $1400 for nose bleeds now. practically giving them away', 'created': '2024-11-16 13:05:43', 'submission_id': '1gs0ynf'}
{'comment': 'Fuck Taylor Swift (and not in a good way lol)!!', 'created': '2024-11-16 15:06:03', 'submission_id': '1gs0ynf'}
{'comment': 'Why…..are….we….even….talking…..about….this…. scrawny….skank?', 'created': '2024-11-17 01:32:41', 'submission_id': '1gs0ynf'}
{'comment': 'Her fans lost all their money on Kalshi.', 'created': '2024-11-15 19:34:57', 'submission_id': '1gs0ynf'}
{'comment': 'That face that there’s people out there paying 1000$ to see Taylor swift is fucking hilarious. Like why ?', 'created': '2024-11-15 19:46:54', 'submission_id': '1gs0ynf'}
{'comment': 'That sucks. I heard she puts on a good show. Maybe we’ll be able to afford it now.', 'created': '2024-11-15 20:49:47', 'submission_id': '1gs0ynf'}
{'comment': '👋 Waves 👋 at Taylor Swift good one for actually signing her posts as Childless Cat Lady. 👍', 'created': '2024-11-15 18:05:46', 'submission_id': '1gs0ynf'}
{'comment': 'Simply not true. Find something true to post .', 'created': '2024-11-16 14:49:53', 'submission_id': '1gs0ynf'}
{'comment': 'That’s insane someone would pay that lol', 'created': '2024-11-15 19:24:10', 'submission_id': '1gs0ynf'}
{'comment': 'Probably why the sale numbers are plummetting, that ish is way too expensive.', 'created': '2024-11-15 19:40:15', 'submission_id': '1gs0ynf'}
{'comment': 'Judging by changing prices on resale tickets is a horrible example also. Taylor Swift made her money on the original ticket sale. People being greedy on the resale market and then having to lower cost is zero reflection on the artist. I don’t even like her but let’s all be honest about the report.', 'created': '2024-11-15 22:56:11', 'submission_id': '1gs0ynf'}
{'comment': 'This isn’t true. Sold 2 for 5400 in Miami. People still will go.', 'created': '2024-11-17 00:04:43', 'submission_id': '1gs0ynf'}
{'comment': 'Is that original sale price or resale? What needs to happen is some legislation regulating what fees can be charged for these resale tickets. That’s the real crime! Ticketmaster making huge fees off the same ticket sale over and over. \n\nWhy the artists can’t come together and do something about it is beyond me. I’m guessing because they all just want their money and not be the one that rocks the boat. Us fans get screwed. That is a bipartisan issue we should all be able to get on board with.', 'created': '2024-11-15 22:52:06', 'submission_id': '1gs0ynf'}
{'comment': 'Lmfao\n\nI paid 650 a ticket for the stones last stop at thunder ridge. 3 aisle seats, 10th row stage left. \n\nAmazing experience. 1400 for shit seats for her? 🤣🤣🤣🤣🤣', 'created': '2024-11-16 01:47:47', 'submission_id': '1gs0ynf'}
{'comment': 'It’s a bot, look at its post history', 'created': '2024-11-15 18:46:54', 'submission_id': '1gs0ynf'}
{'comment': 'And yet i can never seem to post🤨', 'created': '2024-11-15 19:24:44', 'submission_id': '1gs0ynf'}
{'comment': 'Living in your mind rent free... 😆\n\nBTW, this place is sure cluttered. 😁', 'created': '2024-11-17 05:25:56', 'submission_id': '1gs0ynf'}
{'comment': 'Fair, but its all relative. Here’s a snippet from the article. Havent looked into this myself though\n\nIn a report published by the New York Post, tickets now start at $991, before fees, while just three days ago, the lowest price was $1,321 before fees, based on searches carried out on Vivid Seats. That represents a decline of more than $300 — a sign of weaker-than-expected demand.', 'created': '2024-11-15 19:17:58', 'submission_id': '1gs0ynf'}
{'comment': 'This. It was fun for the first couple of days seeing MSNBC having a meltdown but let’s move on together as a nation.', 'created': '2024-11-16 03:47:06', 'submission_id': '1gs0ynf'}
{'comment': "It blows my mind that conservatives will in one hand shit all over liberals for shunning conservatives and in the other do exactly the same to liberal celebs. I don't care that Swift is a liberal. My daughters love her, she's insanely smart and talented and I'll happily pay to see her next time she's in my area and I'm a Republican elected official.\n\nWho cares who celebs vote for? Seriously.", 'created': '2024-11-15 23:19:39', 'submission_id': '1gs0ynf'}
{'comment': 'Also my ticket with all the ticket master fees and everything was $250 total. Those prices you’re seeing are resell.', 'created': '2024-11-15 22:32:12', 'submission_id': '1gs0ynf'}
{'comment': 'Like...Trump? Or Elon?', 'created': '2024-11-15 18:46:03', 'submission_id': '1gs0ynf'}
{'comment': "Name calling...\n That's how she signed her post. 😆", 'created': '2024-11-15 19:26:23', 'submission_id': '1gs0ynf'}
{'comment': 'And they’re declining because the shows are happening right now. Vancouver tickets are still priced accordingly.', 'created': '2024-11-15 19:40:00', 'submission_id': '1gs0ynf'}
{'comment': "Careful your butthurtness is showing. 😆\n\nEdit: Looking at the down votes there's a whole lot of butthurtness going on here tonight. 😆", 'created': '2024-11-15 18:34:59', 'submission_id': '1gs0ynf'}
{'comment': 'Amazing... Trump might even be making the Childless Cat Lady concerts affordable again. 😆', 'created': '2024-11-15 20:55:05', 'submission_id': '1gs0ynf'}
{'comment': 'LMOA I would have expected that to be for the first front rows. But thats the \\*cheapest\\* ticket price?', 'created': '2024-11-15 21:53:56', 'submission_id': '1gs0ynf'}
{'comment': 'Seriously.', 'created': '2024-11-15 19:28:47', 'submission_id': '1gs0ynf'}
{'comment': "I just paid near front row tickets for weird Al, who has been my childhood hero since the 80's, that were 250 a piece and I still was cringing pressing that buy button", 'created': '2024-11-16 03:16:48', 'submission_id': '1gs0ynf'}
{'comment': 'My chemical romance floor tickets are apparently going for $2000…. Concerts have become used cars…', 'created': '2024-11-16 00:22:27', 'submission_id': '1gs0ynf'}
{'comment': "I wouldn't even go for free lol you'd had to pay me", 'created': '2024-11-16 06:10:40', 'submission_id': '1gs0ynf'}
{'comment': 'The sales numbers aren’t plummeting. lol. It’s sold out. All you can get are resale tickets', 'created': '2024-11-15 23:13:08', 'submission_id': '1gs0ynf'}
{'comment': 'I prefer endorsements like [this one](https://www.youtube.com/watch?v=4a6YdNmK77k).', 'created': '2024-11-16 22:32:54', 'submission_id': '1gs0ynf'}
{'comment': 'Yeah that’s resale. Her shows sell out in about 30 mins.', 'created': '2024-11-15 23:14:46', 'submission_id': '1gs0ynf'}
{'comment': 'She’s way more popular than the stones believe it or not.', 'created': '2024-11-16 01:55:34', 'submission_id': '1gs0ynf'}
{'comment': 'You should stick with harvesting your navel lint. 😆', 'created': '2024-11-17 05:53:29', 'submission_id': '1gs0ynf'}
{'comment': 'Toronto ticket prices are dropping because the Toronto leg (six shows) started yesterday. \n\nThis “drop” in price has happened at every stop since it started. Vancouver tickets are still in the thousands.', 'created': '2024-11-15 19:39:09', 'submission_id': '1gs0ynf'}
{'comment': 'I agree. Is Taylor paying my bills? Is beyonce paying my bills? Hell no. They are millionaires and billionaires and don’t even know what the inside of a grocery store looks like, I could care less what their political opinion is.', 'created': '2024-11-15 23:25:42', 'submission_id': '1gs0ynf'}
{'comment': 'Trump was groomed to be a business owner, Elon seems to be doing that as well. Taylor is an entertainer, totally different skill sets and background. Not that Taylor doesn’t work hard but she definitely was born into the correct family to be an entertainer. Also I wouldn’t call Trump a Kid. Or Elon he is getting older.', 'created': '2024-11-15 18:50:22', 'submission_id': '1gs0ynf'}
{'comment': 'Yes but they bring a particular set of skills to the table that other people just don’t have. \n\nTaylor swift just knows how to sing well. It’d be a different story if she was engineering rockets.', 'created': '2024-11-15 18:50:36', 'submission_id': '1gs0ynf'}
{'comment': 'You are obsessed with her even after Trump won, I think it’s time to go outside', 'created': '2024-11-15 18:41:51', 'submission_id': '1gs0ynf'}
{'comment': 'No it’s just this whole post and all your comments are fucking crispy cringe', 'created': '2024-11-17 04:58:40', 'submission_id': '1gs0ynf'}
{'comment': 'I too have bought those tickets. Al puts on an amazing show. Every song a banger. Man has been doing this for more than 40 years.', 'created': '2024-11-16 04:08:59', 'submission_id': '1gs0ynf'}
{'comment': 'I thought the music festivals that are usually 3 days long I go too were expensive! 700$! Turns out I’m getting the deal lol', 'created': '2024-11-16 01:08:03', 'submission_id': '1gs0ynf'}
{'comment': 'Just watch her deep fake porns to really piss her off', 'created': '2024-11-15 18:47:07', 'submission_id': '1gs0ynf'}
{'comment': 'When I lived out in the UK I went to Glastonbury once some years ago when Lana Del Rey was there and it cost me £200 a ticket. Open field, lots of festivities, everyone just doing their own thing. It’s crazy how expensive tickets are now a days!', 'created': '2024-11-16 18:13:18', 'submission_id': '1gs0ynf'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 17:56:14', 'submission_id': '1gs0wc1'}
{'comment': 'How nice of them to announce it. Thank the kind person for recording this', 'created': '2024-11-15 18:03:40', 'submission_id': '1gs0wc1'}
{'comment': 'Kind of like a student government? One that has no power and voice, but sounds nice?', 'created': '2024-11-15 18:25:23', 'submission_id': '1gs0wc1'}
{'comment': 'Idiots are too stupid to understand "shadow" in Shadow Cabinet.', 'created': '2024-11-15 18:15:50', 'submission_id': '1gs0wc1'}
{'comment': 'What would be funny is if the Republicans come out with their own shadow cabinet specifically to oppose the Democrats’ shadow cabinet. While Trump’s official Cabinet works for the American people, the Republican shadow cabinet would work to keep the Democrats in check. \n\nSo, if Adam Schiff is the shadow attorney general, the shadow shadow attorney general, say Mike Lee, would work solely to keep the man who lied about Russian collusion for years without a scrap of evidence to back his false claims in check.\n\nIt’d be completely ridiculous but endlessly entertaining.', 'created': '2024-11-15 18:34:06', 'submission_id': '1gs0wc1'}
{'comment': 'All I’m hearing is a plan to actively oppose our government from within..', 'created': '2024-11-15 19:01:25', 'submission_id': '1gs0wc1'}
{'comment': "This is two things, it's an actual act of sedition, therefore treason, and 2) it's an actual threat to our Republic!", 'created': '2024-11-15 18:34:55', 'submission_id': '1gs0wc1'}
{'comment': 'Plans to weaponize the judicial system, like it was used against him?', 'created': '2024-11-15 18:21:30', 'submission_id': '1gs0wc1'}
{'comment': 'The very thought of peace and prosperity is something that they must resist!', 'created': '2024-11-15 19:11:16', 'submission_id': '1gs0wc1'}
{'comment': 'This is probably something that British Labour PM Kier Stammer suggested! … Just shows continued Democrat contempt for the U.S. Constitution!', 'created': '2024-11-15 18:32:48', 'submission_id': '1gs0wc1'}
{'comment': 'Quick question DNC; is this anything like the shadow government the Taliban set up while I was in Afghanistan?', 'created': '2024-11-15 19:19:06', 'submission_id': '1gs0wc1'}
{'comment': 'AOC Stars in…“The Squad: Part 2”! \n\nThis Summer! Same old leftist fools, some new ones added to replace the others voted out! They will ride or die to progressively change America. \n\nONE. COLLEGE. STUDENT. AT. A. TIME!\n\nRated: Him/Her/They/Them/Xer\n\nContains fragility, pandering, victimhood and snowflakes. Viewer Discretion is Advised.', 'created': '2024-11-15 20:29:03', 'submission_id': '1gs0wc1'}
{'comment': 'Sounds like an insurrection to me.', 'created': '2024-11-15 21:01:23', 'submission_id': '1gs0wc1'}
{'comment': 'Why would they announce it 🤣', 'created': '2024-11-15 19:07:03', 'submission_id': '1gs0wc1'}
{'comment': 'Oh another one? All they do is scurry in the shadows like rats and cockroaches', 'created': '2024-11-15 19:09:29', 'submission_id': '1gs0wc1'}
{'comment': "Isn't this redundant? I mean the Democrats are going to do everything in their power to undermine Trump.\n\nWe know that the Left no longer reaches across the aisle.", 'created': '2024-11-15 20:23:59', 'submission_id': '1gs0wc1'}
{'comment': 'Isn’t this highly illegal ?', 'created': '2024-11-16 03:39:40', 'submission_id': '1gs0wc1'}
{'comment': 'lmao I can already see the "Shadow Cabinet" get the boot by DOGE for wasting money', 'created': '2024-11-15 21:08:12', 'submission_id': '1gs0wc1'}
{'comment': 'Sounds like a subversion of the government, seditious and treasonous in fact.', 'created': '2024-11-15 19:12:43', 'submission_id': '1gs0wc1'}
{'comment': 'This guy needs to be expelled from congress. If they don’t like what Trump is doing their ass should’ve done better and won the election but those fuckers didn’t, Trump did', 'created': '2024-11-15 20:22:11', 'submission_id': '1gs0wc1'}
{'comment': 'the left is dim, but this takes the cake. "senator X will be a stong voice...:?" yadda yadda jesus christ these children are annoying', 'created': '2024-11-15 22:36:48', 'submission_id': '1gs0wc1'}
{'comment': 'They don’t give a flying fuck about the people, they will fight and fight even if it ruins the country. Shame on them.', 'created': '2024-11-16 00:21:08', 'submission_id': '1gs0wc1'}
{'comment': 'Just a new name on an old act.', 'created': '2024-11-16 01:55:13', 'submission_id': '1gs0wc1'}
{'comment': 'I swear these fucktards learned nothing with this election', 'created': '2024-11-16 17:53:44', 'submission_id': '1gs0wc1'}
{'comment': 'I genuinely don’t think I’ve ever heard of anything more blatantly suspicious.\n\nIsn’t this like, also literally against our constitution?', 'created': '2024-11-15 21:04:41', 'submission_id': '1gs0wc1'}
{'comment': None, 'created': '2024-11-16 06:09:07', 'submission_id': '1gs0wc1'}
{'comment': 'A Shadow Cabinet makes sense in the UK because they don’t know when the next election might happen. \n\nAnd if the other party wins they take over in a matter of days, not months.\n\nSo having some bench warmers makes sense.', 'created': '2024-11-15 19:54:10', 'submission_id': '1gs0wc1'}
{'comment': 'This guy is very low IQ. They already scream a lot, so what will this change? All they like to do is waste time and money. All liberals need to be out of politics', 'created': '2024-11-15 20:06:22', 'submission_id': '1gs0wc1'}
{'comment': 'Get them all for treason then.', 'created': '2024-11-15 20:31:24', 'submission_id': '1gs0wc1'}
{'comment': "Yes & won't there be some absolute stars to pick from, the problem is they will be asked specific policy questions on their portfolio & to justify past policy positions , this has obviously not been a great strength in the dems.\n\nIf they're not accross their brief & keep it to the usual anti Trump waffle, they will be continuously exposed", 'created': '2024-11-15 21:00:35', 'submission_id': '1gs0wc1'}
{'comment': "I actually have a video of this shadow cabinets first meeting. Didn't go so well. [Here](https://youtu.be/moWe3rk7LzQ?si=VGfdDBxXBeNHA40a)", 'created': '2024-11-15 21:17:16', 'submission_id': '1gs0wc1'}
{'comment': 'This is stupid. Just something useless so the Dems can say hey look we tried.', 'created': '2024-11-15 22:57:39', 'submission_id': '1gs0wc1'}
{'comment': "I don't care to take in the nonsense...\n\nDid they say how they are going to pay these people. They didn't own the purse strings in their own.", 'created': '2024-11-16 00:14:21', 'submission_id': '1gs0wc1'}
{'comment': 'Do it. Give DOGE its first assignment.', 'created': '2024-11-16 02:13:16', 'submission_id': '1gs0wc1'}
{'comment': 'Treason much?', 'created': '2024-11-16 02:50:06', 'submission_id': '1gs0wc1'}
{'comment': "They're not sore losers or anything.", 'created': '2024-11-16 04:24:03', 'submission_id': '1gs0wc1'}
{'comment': "So basically they didn't win so they are forming their own government. Sounds like a inserectoin to me", 'created': '2024-11-16 04:38:05', 'submission_id': '1gs0wc1'}
{'comment': '“Woodchuck to Grey Squirrel, Woodchuck to Grey Squirrel….”', 'created': '2024-11-16 06:11:25', 'submission_id': '1gs0wc1'}
{'comment': 'Just like they did 150 years ago', 'created': '2024-11-16 16:58:51', 'submission_id': '1gs0wc1'}
{'comment': 'Sounds like an episode of The Office.', 'created': '2024-11-15 21:04:08', 'submission_id': '1gs0wc1'}
{'comment': 'Traitorous', 'created': '2024-11-16 05:22:30', 'submission_id': '1gs0wc1'}
{'comment': 'So insurrectionists, awesome. Let’s send them all to jail', 'created': '2024-11-16 09:10:06', 'submission_id': '1gs0wc1'}
{'comment': "Isn't that treason????", 'created': '2024-11-16 15:32:28', 'submission_id': '1gs0wc1'}
{'comment': 'Like the Department of Government Efficiency?', 'created': '2024-11-15 22:10:51', 'submission_id': '1gs0wc1'}
{'comment': 'Just sounds like complaining.', 'created': '2024-11-15 18:20:58', 'submission_id': '1gs0wc1'}
{'comment': 'Well, Lefties don\'t have enough self-control to hold anything in for any group-level of subterfuge.\n\nThat\'s why they are always so shocked by "the hidden Trump vote" because every Republican doesn\'t run around being dramatic like they are.', 'created': '2024-11-15 21:09:53', 'submission_id': '1gs0wc1'}
{'comment': '10000%. It’s not really used in the US, so “idiots” is a bit strong. Most Americans think “shadow” in the frame of government means hidden or clandestine.', 'created': '2024-11-16 16:04:45', 'submission_id': '1gs0wc1'}
{'comment': 'Have John Bolton and Liz Cheney announce the NeoCon shadow cabinet.', 'created': '2024-11-16 15:44:33', 'submission_id': '1gs0wc1'}
{'comment': 'Sedition!!', 'created': '2024-11-16 05:18:59', 'submission_id': '1gs0wc1'}
{'comment': 'So basically the entire trump 1st term....', 'created': '2024-11-16 00:24:32', 'submission_id': '1gs0wc1'}
{'comment': '3) they’re insurrectionists', 'created': '2024-11-15 19:44:04', 'submission_id': '1gs0wc1'}
{'comment': 'But the Democrats are the good guys! The constitution is getting in the way of Democracy!', 'created': '2024-11-15 19:37:02', 'submission_id': '1gs0wc1'}
{'comment': "So they claim - but if Trump can purge the DOJ of Democrat loyalists they'll be prosecuting actual crimes - and the idea of that terrifies Democrats.", 'created': '2024-11-15 18:33:27', 'submission_id': '1gs0wc1'}
{'comment': "Where is the fun in that?\n\nDemocrats lives are meaningless if they have nothing to complain about.\n\nThey want racism, sexism, etc to still exist... for this reason. \n\nThat's why they keep it on life support with more dei and affirmative action.", 'created': '2024-11-17 18:33:06', 'submission_id': '1gs0wc1'}
{'comment': 'It’s also stupid. The shadow cabinet is a parliamentary government convention, it makes no sense in our executive system.\n\nIn UK parliament, their congress is basically in charge of everything, so when the government changes power after an election, there’s no 2 months to Inauguration Day. The new government basically has to hit the ground running immediately, so always having your ducks in a row makes sense. \n\nHere, it’s complete useless since the President Elect decides his or her cabinet, so having the party already propping people up is a recipe for dysfunction.', 'created': '2024-11-16 15:48:49', 'submission_id': '1gs0wc1'}
{'comment': 'Amusingly, AOC just removed her pronouns from her profile on X.', 'created': '2024-11-15 21:04:06', 'submission_id': '1gs0wc1'}
{'comment': 'Because it’s (D)ifferent', 'created': '2024-11-15 21:30:44', 'submission_id': '1gs0wc1'}
{'comment': 'I was thinking the same thing... What do they mean by "form a shadow cabinet"? Are they implying there\'s not already some type of puppet-master pulling the strings? Because nobody TODAY has any idea who has actually been running the country.', 'created': '2024-11-15 19:17:24', 'submission_id': '1gs0wc1'}
{'comment': 'The shadow cabinet in the UK exists because elections don\'t necessarily happen on a regular schedule, and the party out of power may have to take power on no notice.\n\nWe don\'t have that situation here, and the "shadow cabinet" the Democrats are talking about would have opposing everything this government does as its only purpose.', 'created': '2024-11-16 07:17:43', 'submission_id': '1gs0wc1'}
{'comment': "The US Government is already paying them. They're announcing they plan to work against the government using their current positions against it.", 'created': '2024-11-16 07:14:45', 'submission_id': '1gs0wc1'}
{'comment': 'Unless they are given authority by congress... which is now republican', 'created': '2024-11-15 23:11:34', 'submission_id': '1gs0wc1'}
{'comment': "The left was surprised cause they didn't think enough to realize that maybe their candidate switcheroo wouldn't work. \n\nTrump supporters are the ones with the hats, giant truck flags, and also the people who stormed the capital. \n\nThe Right isn't special.", 'created': '2024-11-15 23:00:21', 'submission_id': '1gs0wc1'}
{'comment': 'An actual insurrection is seditious.\n\nStill, point taken.', 'created': '2024-11-15 20:02:23', 'submission_id': '1gs0wc1'}
{'comment': 'Ok thanks sometimes I think they are actually rational then I realize they are still insane.', 'created': '2024-11-17 18:34:23', 'submission_id': '1gs0wc1'}
{'comment': 'Now a US Representative, she was a Congresswoman.', 'created': '2024-11-16 17:54:44', 'submission_id': '1gs0wc1'}
{'comment': 'They don’t have it yet. So again, like student government. Not understanding the disconnect?', 'created': '2024-11-16 01:18:42', 'submission_id': '1gs0wc1'}
{'comment': 'Left is way worse with the college campus protests and BLM riots endless vandalism etc all for the name of social justice.\n\nStorming the capital is like the ONLY dramatic thing the right has done, and they\'re held super accountable when compared to all these lefties getting away with everything because society sees their causes as "virtuous" or whatever.', 'created': '2024-11-16 00:02:42', 'submission_id': '1gs0wc1'}
{'comment': 'Well, unfortunately, they ostracized all the honest rational folk from the party.\n\nActually intelligent people are very good at rationalizing some of the dumbest beliefs, which is why wisdom and common sense are just as, and probably even more important and virtuous, than being booksmart or great at rhetoric.', 'created': '2024-11-17 20:23:03', 'submission_id': '1gs0wc1'}
{'comment': 'It formerly had "she/her".', 'created': '2024-11-17 05:19:04', 'submission_id': '1gs0wc1'}
{'comment': 'brother they dont even EXIST yet', 'created': '2024-11-16 01:19:42', 'submission_id': '1gs0wc1'}
{'comment': 'Common sense is not that common anymore.', 'created': '2024-11-17 20:24:11', 'submission_id': '1gs0wc1'}
{'comment': 'Yup, you’re right! I’m making the mistake of comparing apples to oranges. Much appreciated 🍻', 'created': '2024-11-16 01:22:08', 'submission_id': '1gs0wc1'}
{'comment': 'Well, when the Left views people with common sense as weird, ya not a good sign for the culture.', 'created': '2024-11-17 22:54:08', 'submission_id': '1gs0wc1'}
{'comment': 'Failed attempt to regain lost karma lmao', 'created': '2024-11-16 06:38:39', 'submission_id': '1gs0wc1'}
{'comment': 'Nailed it', 'created': '2024-11-16 06:45:21', 'submission_id': '1gs0wc1'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 17:49:58', 'submission_id': '1gs0r4p'}
{'comment': 'The deep state isn’t as much deep as it is wide.\n\nThis crap ends soon.', 'created': '2024-11-15 17:54:51', 'submission_id': '1gs0r4p'}
{'comment': 'Woke liberals commenting crimes on every scale of government levels without fearing consequences. Examples need made!!', 'created': '2024-11-15 18:06:41', 'submission_id': '1gs0r4p'}
{'comment': 'Nobody is more inferior than those who insist on being equal.', 'created': '2024-11-15 19:20:19', 'submission_id': '1gs0r4p'}
{'comment': '“FEMA’s rotten to a core,” said an employee who worked there for about five years and left earlier this year. “It’s overstaffed, it’s bureaucratic, [and] they don’t really help anybody.” 🤩 Wait til Elon and Vivek get started!! 🤩', 'created': '2024-11-16 04:05:07', 'submission_id': '1gs0r4p'}
{'comment': 'I’m a paramedic. During the course of my career, I have treated some unsavory individuals. I’m talking convicted rapists, pedophiles, murders, gangbangers.. And I’ve treated them all to the best of my ability and with dignity. It’s not my place to judge them or mistreat them. That falls unto God and the court system. It’s my job to render care for these people. Just like it should have been FEMAs place treat and care for everyone. Instead they were okay to pass over Trump supporters and abandon them in their time of need. I can’t believe that my nation has fallen to this point. It’s sick. Hopefully things will change under Trump but he has a lot of work to do.\xa0', 'created': '2024-11-16 21:30:46', 'submission_id': '1gs0r4p'}
{'comment': 'Is that why there are stories of sheriffs in nc and sc turning away qualified people wanting to help before fema got there', 'created': '2024-11-15 19:51:48', 'submission_id': '1gs0r4p'}
{'comment': 'My brother and his girlfriend were 2 of those people.', 'created': '2024-11-16 02:16:17', 'submission_id': '1gs0r4p'}
{'comment': "Could well be... based on what's been going on at FEMA. 🤔", 'created': '2024-11-15 19:55:45', 'submission_id': '1gs0r4p'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 17:23:47', 'submission_id': '1gs04zf'}
{'comment': "....they don't weaponize the DOJ either. Nothing to see here!", 'created': '2024-11-15 17:38:49', 'submission_id': '1gs04zf'}
{'comment': 'They are only "accepting election results" on the Presidential election, because their candidate (Harris) took both a maga and a mega-clobbering! She was slaughtered.\n\nHad the results come down to just a few swing states and like 20 or 30 thousand votes, they would be screaming for recounts and appeals. And shouting about rigging and cheating constantly.', 'created': '2024-11-15 23:35:36', 'submission_id': '1gs04zf'}
{'comment': "It's all over Bob Casey's Senate seat in PA.", 'created': '2024-11-15 20:33:38', 'submission_id': '1gs04zf'}
{'comment': 'This is a marriage of delusion and panic and it is both sad and funny .\n\nTreat them like they treated us for questioning the 2016 election. \nRemember what happened to people who merely questioned the election? \nRemember what happened to people who questioned masks, the jab, the lockdowns and so on and so forth?\n\nIn the name of equality , They need to be held to the same standard we all were . \nNo amnesty \nNo “we are better than that , let’s not stop to their level”\n\nWe need to stoop to their level and pay them back ( within the bounds of the law ) in spades . \nOtherwise they will gleefully do it again.\n\nNever forget these last 4 years , they showed us who they really were , what they really stand for , what lengths they would go to harm us, destroy our lives , businesses , etc. \nWe forget this at our peril and frankly if we do we deserve what we get .', 'created': '2024-11-15 21:44:06', 'submission_id': '1gs04zf'}
{'comment': 'Arrest the county officials that refuse to obey the law.', 'created': '2024-11-15 18:08:35', 'submission_id': '1gs04zf'}
{'comment': 'They need to accept the results', 'created': '2024-11-16 08:26:51', 'submission_id': '1gs04zf'}
{'comment': 'I think a recount is fine, if it were fair, and not packed with illegal votes. But we know that strategy well from the Dems by now.', 'created': '2024-11-15 18:05:19', 'submission_id': '1gs04zf'}
{'comment': "They are only that party when they like the results. Anyone who truly believes they accept election results is delusional. The problem here is that the Dems like to have elections be a little loose around the edges because they usually do well manipulating the results in their favor. Gore vs Bush was a problem because no matter which way they recounted, they kept finding that Bush won. Still, they thought if only they could get the courts to accept the right invalid ballots, then they could surely win, but the Supreme Court finally shut that down.\n\nWe have a broken election system that needs fixing. This is all so absurd and I wish the Dems would get onboard with fixing it, but they like it this way. I'm thankful that Republicans finally had an army of attorneys on election day, as Dems always have, to make sure that bad actors are shutdown as quickly as possible. This fixed a good portion of the Dem strategy of manipulating the vote, but it's all nonsense that needs to be fixed.", 'created': '2024-11-15 18:42:05', 'submission_id': '1gs04zf'}
{'comment': 'They seem to already have whole subreddits dedicated to this conspiracy theory and they are being forced into my reddit feed', 'created': '2024-11-15 18:08:29', 'submission_id': '1gs04zf'}
{'comment': 'Wow! If MSNBC is reporting it then you know it is way worse than what we are seeing here.', 'created': '2024-11-15 18:04:36', 'submission_id': '1gs04zf'}
{'comment': 'Why haven’t Alaska or Iowa been called?', 'created': '2024-11-16 16:20:34', 'submission_id': '1gs04zf'}
{'comment': "Sure they can recount all they want, but Kamala already conceded the election and she can't go back now. Also they can't count misdated or illegal votes.", 'created': '2024-11-17 04:34:25', 'submission_id': '1gs04zf'}
{'comment': 'Insurrection!!\n\nThis is essentially an insurrection by Democratic Officials in the State of Pennsylvania.\n\nOpenly defying the will of the Federal Government (SCOTUS) in an illegal attempt to overthrow the election.', 'created': '2024-11-18 16:52:13', 'submission_id': '1gs04zf'}
{'comment': 'Mooty laches! Reeeeeeeeee!', 'created': '2024-11-15 17:45:00', 'submission_id': '1gs04zf'}
{'comment': "That FBI raid was *insane*, but that's business as usual in the U.S. FBI has always operated at the behest of the president:\n\nHere are some of the key offenders of using the FBI for personal / political advantage: \nFranklin D. Roosevelt: Democratic Party \nHarry S. Truman: Democratic Party \nJohn F. Kennedy: Democratic Party \nRichard Nixon: Republican Party \nLyndon B. Johnson: Democratic Party \nDonald Trump: Republican Party \nJoe Biden: Democratic Party", 'created': '2024-11-15 17:54:04', 'submission_id': '1gs04zf'}
{'comment': 'Just like Gore in 2000.', 'created': '2024-11-17 03:42:50', 'submission_id': '1gs04zf'}
{'comment': 'Absolute shenanigans going on in CA’s 45 district.', 'created': '2024-11-16 16:22:05', 'submission_id': '1gs04zf'}
{'comment': "It's MSN. MSNBC is a completely different thing.", 'created': '2024-11-15 18:34:11', 'submission_id': '1gs04zf'}
{'comment': 'Curious for any examples of Trump using the FBI for personal or political advantage. Can you please fill me in?', 'created': '2024-11-15 17:59:54', 'submission_id': '1gs04zf'}
{'comment': 'Oops, that was my early morning brain, sorry.', 'created': '2024-11-15 18:58:04', 'submission_id': '1gs04zf'}
{'comment': "Trump was accused of pressuring the FBI to drop investigations into his associates and of using the agency to pursue perceived political adversaries. His public criticism of the FBI leadership, particularly former Director James Comey, and his attempts to influence ongoing investigations raised significant concerns.\n\nSource:\nhttps://apnews.com/united-states-government-4ff1ecb621884a728b25e62661257ef0\n\nI voted for Trump, but I don't like this kind of shit.", 'created': '2024-11-15 18:03:39', 'submission_id': '1gs04zf'}
{'comment': 'Fair enough. \n\nI view that situation a bit differently and see it s Trump reacting to improper FBI action against him rather than Trump proactively directing the FBI against political opponents.\n\nThat said, I do appreciate your perspective', 'created': '2024-11-15 18:07:34', 'submission_id': '1gs04zf'}
{'comment': "I wasn't there so I can't claim any special knowledge, and MSM typically biases against Trump -- so I take this stuff with a grain of salt.", 'created': '2024-11-15 18:11:40', 'submission_id': '1gs04zf'}
{'comment': 'I believe the FBI under Comey lied to FISA to illegally wiretap the Trump campaign. Legacy media went bananas about Trump eventually firing Comey even though every Democrat president cleans house without any comment from the media', 'created': '2024-11-15 18:14:19', 'submission_id': '1gs04zf'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 15:55:59', 'submission_id': '1gry551'}
{'comment': 'Gotta love California. Good thing there is #vanlife', 'created': '2024-11-15 16:01:24', 'submission_id': '1gry551'}
{'comment': 'California commuting political and social suicide, film at 11', 'created': '2024-11-15 17:13:32', 'submission_id': '1gry551'}
{'comment': "I submitted a proposal to my (red state) governor and (Republican) delegate for my state to lift the proof of residency requirements to register vehicles in my state. This would allow for people who live in these states to register their RVs here (as well as their regular cars so they don't need safety inspection or emissions) and pay their (significantly lower) vehicle taxes and registration fees to us instead of California.", 'created': '2024-11-15 17:11:16', 'submission_id': '1gry551'}
{'comment': 'Time for a custom build! EV motor for emission testing with a diesel “backup”. It’s only for emergencies when you need to drive to a charger. Never mind the fact the battery power only gets you 20 miles. The charger is 300 miles away!', 'created': '2024-11-15 16:06:06', 'submission_id': '1gry551'}
{'comment': '25 of the 35 most polluted counties are in CA and they focus on electrifying RVs. Clearly going to save the planet 🤣', 'created': '2024-11-15 18:24:29', 'submission_id': '1gry551'}
{'comment': 'In case the Democrats are interested in why they lost my independent vote and have since registered as a Republican, this is the reason. EVs are not better for the environment. The process to make a battery is very toxic to the environment and especially when they catch fire.\n\nEdited to add: Below you will find an insane conversation with a liberal claiming to be a conservative. Enjoy!', 'created': '2024-11-15 18:18:33', 'submission_id': '1gry551'}
{'comment': 'I hope EPA under new leadership will stop this obvious insanity.', 'created': '2024-11-15 17:43:54', 'submission_id': '1gry551'}
{'comment': "Except for the homeless meth addicts living in them in between burglaries I'm guessing?", 'created': '2024-11-15 22:24:53', 'submission_id': '1gry551'}
{'comment': 'When we start to drill baby drill this bullshi-t is going to end .', 'created': '2024-11-15 16:57:16', 'submission_id': '1gry551'}
{'comment': 'Unreal', 'created': '2024-11-15 16:42:33', 'submission_id': '1gry551'}
{'comment': "They expect diesel engines to have zero emissions in vehicles over 8,500 lbs gross weight. Guess heavy duty and semi trucks won't be allowed to be sold or registered in those states, either?", 'created': '2024-11-16 00:22:21', 'submission_id': '1gry551'}
{'comment': 'As soon as it said, "Buy credits", my spidey senses go into full alert. It\'s a money grab. Assholes', 'created': '2024-11-16 03:03:02', 'submission_id': '1gry551'}
{'comment': 'An EV RV would have a range of about 15 miles. Especially if you’re trying to drive it fully loaded over a mountain pass, towing a jeep.', 'created': '2024-11-16 07:59:18', 'submission_id': '1gry551'}
{'comment': "Not really an issue. Most are 5th wheel trailers. It's a stupid move, but there will be work arounds. I also like the pictures in the article. The first looks like a junkyard collection of small rvs and a couple pull behinds, and the bottom is all 5th wheels. Oh no! I cant register my 200k+ moterhome not pictured in this article.", 'created': '2024-11-15 17:08:12', 'submission_id': '1gry551'}
{'comment': '[removed]', 'created': '2024-11-15 16:19:51', 'submission_id': '1gry551'}
{'comment': 'I dream of the day the Supreme Court tells California it can’t have its own vehicle emissions standards and must abide by federal law.', 'created': '2024-11-16 07:57:42', 'submission_id': '1gry551'}
{'comment': 'Doesn’t Jason Mamoa live in one?', 'created': '2024-11-16 08:50:23', 'submission_id': '1gry551'}
{'comment': 'This is an amazing idea! Being in CA I’ll register all my vehicles in your state tomorrow.', 'created': '2024-11-17 07:00:28', 'submission_id': '1gry551'}
{'comment': 'Um. 2014 called, they said “thanks for your invention?”', 'created': '2024-11-15 19:12:50', 'submission_id': '1gry551'}
{'comment': 'Couldn’t make it to the end because it was literally to insane 🤣', 'created': '2024-11-16 11:46:42', 'submission_id': '1gry551'}
{'comment': 'They sure as hell put a lot of money in your bank account though', 'created': '2024-11-15 19:13:38', 'submission_id': '1gry551'}
{'comment': 'Eventually, you are correct. That is part of the law.', 'created': '2024-11-16 07:15:26', 'submission_id': '1gry551'}
{'comment': 'How do EVs put money in my bank account? They cost more to buy, depreciate extremely fast, cost more for insurance, and once the batteries wear out are absurdly expensive to replace. I have four vintage cars and all four together cost less than one EV.', 'created': '2024-11-15 19:19:55', 'submission_id': '1gry551'}
{'comment': 'You\'ve been brainwashed, sorry, My BMW puts $700 per month in savings back into my bank account (I actually use it to Dollar Cost Average new investments).\n\nThe Batteries are warranted for 8 years, by law, minimum. I\'m currently at 87k miles with 4% battery degradation. My insurance (which has to do with credit score and driving record) went DOWN $25 per month (Progressive) and my Home Electric Bill..... you sitting down? Cuz I live in a disturbingly wealthy Red State... went DOWN $50 per month on average.\n\nSo unless you\'re stacking over $7k a year back in your bank account while still doing things you\'d do in an ICE Vehicle, your "math isn\'t mathing."', 'created': '2024-11-15 19:25:06', 'submission_id': '1gry551'}
{'comment': 'If EVs generated $7K in annual income, everyone would have one and nobody would doubt you.', 'created': '2024-11-15 19:28:09', 'submission_id': '1gry551'}
{'comment': "I agree 100%, funny isn't it? It's not income, it's a budget offset... are you familiar with that at all?", 'created': '2024-11-15 19:31:32', 'submission_id': '1gry551'}
{'comment': "I've looked at the budget offset and I will put my 1998 Jeep Grand Cherokee against a new EV any day. I bought it for $2000 earlier this year, fixed the transmission myself and have been driving it ever since. Insurance is $300 per year and fuel is 30 per week. Your brand new BMW cost you how much? Around $90K would be my guess.", 'created': '2024-11-15 19:37:12', 'submission_id': '1gry551'}
{'comment': 'I mean with this with all due respect. \n\nI don’t think you’re actually “flexing” something. \n\nYou probably shouldn’t be buying a 2024 Corolla either. Am I close?', 'created': '2024-11-15 19:40:41', 'submission_id': '1gry551'}
{'comment': "Why shouldn't I be buying a 2024 Corolla? Why would I want one?", 'created': '2024-11-15 19:45:54', 'submission_id': '1gry551'}
{'comment': 'Because you called a 1998 Grand Cherokee “Vintage.”\n\nRoflmao. You have a good day.', 'created': '2024-11-15 19:47:30', 'submission_id': '1gry551'}
{'comment': "That's your issue? At least I have a vehicle that can last 25 years. Your shitty BMW EV sure won't (with all due respect).", 'created': '2024-11-15 19:49:50', 'submission_id': '1gry551'}
{'comment': 'Why would I own a car for 25 years as a Daily Driver?', 'created': '2024-11-15 19:52:30', 'submission_id': '1gry551'}
{'comment': 'If you cared about the environment, you would. Oh wait, for liberals it is always about virtue signaling, not substance. Anyway, thanks for proving my point.', 'created': '2024-11-15 19:54:38', 'submission_id': '1gry551'}
{'comment': "I don't care about the environment, and I'm a Conservative Republican, (just have a brain in my head). \nYou typing this out on your lithium ion powered smart phone or laptop? I'm not a hypocrite.", 'created': '2024-11-15 19:56:16', 'submission_id': '1gry551'}
{'comment': "If you want to now pretend you're a conservative, okay, whatever. Maybe you're a Romney RINO, it really doesn't matter to me. Clearly you are just here to troll and pretend you are someone special. For that matter, I strongly doubt you even have a BMW.\n\nBecause you apparently care, I am typing this out on a desktop computer while enjoying my coffee. Soon, I will go to work and you will be just a funny short term memory for me. Maybe I will drive one of my other, even older Jeeps. Because unlike you, I do care about the environment and driving an older vehicle is better for the environment than a new car.", 'created': '2024-11-15 20:05:42', 'submission_id': '1gry551'}
{'comment': 'Well, listen, enjoy your day at work. Don\'t use that smartphone today, "think of the kids."\n\nYou\'re funny.', 'created': '2024-11-15 20:13:33', 'submission_id': '1gry551'}
{'comment': "Thanks for the laughs. I still don't know what my phone has to do with this conversation, but yeah, you have a great day.", 'created': '2024-11-15 20:20:41', 'submission_id': '1gry551'}
{'comment': "I *believe* that you wouldn't know how... that aligns 100%", 'created': '2024-11-15 20:35:29', 'submission_id': '1gry551'}
{'comment': "Care to explain? Enlighten me since apparently I am too dumb.\n\nEdited to add: That's what I thought. Just here to insult and pretend you're something that you're not. You definitely do not own a new BMW and your claims are fiction.", 'created': '2024-11-15 20:38:46', 'submission_id': '1gry551'}
{'comment': 'There\'s more lithium ion in landfills, unrecycled from smartphones, tablets, and laptops then there ever will be from EVs. And those "kids digging" that you think are there for EVs, are still doing it for your Obamaphone as well anyway.\n\nThat\'s why "I\'m" not a hypocrite. Throw your phones and devices out and I\'ll trade my car in. At least EV batteries are recycled and reused for "good things" like Hospitals, Schools, and Homeless Shelters as well as private residence backups... as opposed to sitting in a landfill. Pound for pound, Dollar for Dollar. You contributed just as much if not "more" to this .... then my car has.', 'created': '2024-11-15 20:51:44', 'submission_id': '1gry551'}
{'comment': "My community has an e-waste recycling program. That is where my old phone will eventually end up. Are you saying that you do not have a phone? \n\nMy guess is you do, so you have both a polluting phone and a polluting car. Where all I have is a phone. Again, liberals like you (that claim you're not) just make me laugh with your virtue signaling.", 'created': '2024-11-15 20:58:00', 'submission_id': '1gry551'}
{'comment': "Thats great for your community, it doesn't change the statistics that already exist. I'm saying I'm not a hypocrite that cries about Lithium Ion when we all have so much of it in our lives... even that little key fob your 1998 Grand Cherokee has a bit of lithium ion in it... do you throw the battery away when it dies or do you bring it your recycling center?\n\nYour 1998 Grand Cherokee doesn't pollute? Oh sweet summer child.", 'created': '2024-11-15 21:12:01', 'submission_id': '1gry551'}
{'comment': "The car didn't come with a key fob, so I don't know what happened to it.\n\nAnd yes, compared to your EV that you claim to have (you don't), my car pollutes much less.", 'created': '2024-11-15 21:17:50', 'submission_id': '1gry551'}
{'comment': 'I don’t have an EV now? You can do better than that.\n\nYou got the cute little GC with the 318 or the 360?', 'created': '2024-11-15 22:06:15', 'submission_id': '1gry551'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 15:48:44', 'submission_id': '1grxzjs'}
{'comment': "Don't want to be the downer but we have all heard that before but I do hope this time it is actually at least more transparent than previous administration's have been.", 'created': '2024-11-15 21:31:10', 'submission_id': '1grxzjs'}
{'comment': '[removed]', 'created': '2024-11-15 16:50:32', 'submission_id': '1grxzjs'}
{'comment': "It's always a good idea to question! You're not a downer, you're a sensible person. Yes, we believe when we see!", 'created': '2024-11-15 22:21:14', 'submission_id': '1grxzjs'}
{'comment': '[removed]', 'created': '2024-11-15 17:02:59', 'submission_id': '1grxzjs'}
{'comment': 'Too many promises undelivered upon to not doubt any politicians anymore no matter the side.', 'created': '2024-11-15 22:44:37', 'submission_id': '1grxzjs'}
{'comment': '[removed]', 'created': '2024-11-15 17:03:05', 'submission_id': '1grxzjs'}
{'comment': 'Yeah but Elon isn’t a politician and tends to follow through on things', 'created': '2024-11-16 06:40:47', 'submission_id': '1grxzjs'}
{'comment': 'While this is true I suspect we’ll be seeing Elon more and more in politics in the future especially if he handles DOGE well', 'created': '2024-11-16 12:59:54', 'submission_id': '1grxzjs'}
{'comment': 'I look forward to it. I think he’s probably the most brilliant man of our lifetime and we could use him in our corner to fight evil!', 'created': '2024-11-16 13:07:19', 'submission_id': '1grxzjs'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 14:22:43', 'submission_id': '1grw878'}
{'comment': 'The rest of woke Europe needs to emulate Hungary.', 'created': '2024-11-15 15:25:51', 'submission_id': '1grw878'}
{'comment': '[removed]', 'created': '2024-11-15 15:47:30', 'submission_id': '1grw878'}
{'comment': 'Hungary is too damn cozy with Russia.', 'created': '2024-11-15 23:19:34', 'submission_id': '1grw878'}
{'comment': '[removed]', 'created': '2024-11-15 15:58:28', 'submission_id': '1grw878'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 10:15:45', 'submission_id': '1grshk3'}
{'comment': 'Doesn’t this happen after ever election cycle?', 'created': '2024-11-15 12:53:52', 'submission_id': '1grshk3'}
{'comment': 'MSNBC had a surge in ratings on Election Day. I seriously believe it was primarily Trump voters tuning in to watch the meltdowns of their on-air talent. (I was one of them.)', 'created': '2024-11-15 14:49:05', 'submission_id': '1grshk3'}
{'comment': 'Oh no the consequences of my own actions!', 'created': '2024-11-15 15:07:13', 'submission_id': '1grshk3'}
{'comment': 'I hear this all the time yet CNN is still the go to for the left', 'created': '2024-11-15 10:17:30', 'submission_id': '1grshk3'}
{'comment': 'Msnbc will probably be fine, their viewers are psychos anyways that cheer for the completely "unbiased" opinions and "facts" used daily. CNN is hurting its been that way since 2020 and beyond and the ceo knows it.', 'created': '2024-11-15 14:22:35', 'submission_id': '1grshk3'}
{'comment': 'Love that word **steamrolls**', 'created': '2024-11-15 17:14:06', 'submission_id': '1grshk3'}
{'comment': "They'll survive, the Legacy Media isn't propped up by politics. They turn plenty of profits just through advertising. Really that's why they have no interest in telling the truth, their survival doesn't rely on the truth but rather viewers.", 'created': '2024-11-15 14:23:18', 'submission_id': '1grshk3'}
{'comment': "Havne't their ratings been extremely low for years at this point?", 'created': '2024-11-15 16:03:58', 'submission_id': '1grshk3'}
{'comment': 'Love that word **steamrolls**', 'created': '2024-11-15 17:14:12', 'submission_id': '1grshk3'}
{'comment': 'Shocking. Anyways', 'created': '2024-11-15 18:45:27', 'submission_id': '1grshk3'}
{'comment': 'Hahahahhaha', 'created': '2024-11-16 01:37:31', 'submission_id': '1grshk3'}
{'comment': '“It didn’t work. The lies, the hysteria, and the besmirchment only made Trump more popular and sunk CNN and MSNBC deeper.”\nMSM needs to go!! Harris sunk herself on the View.', 'created': '2024-11-16 04:07:39', 'submission_id': '1grshk3'}
{'comment': 'MSNBC and CNN are not news stations! Much like Fox News is with Republicans, they are an arm of the DNC. Their broadcasts are a commercial for the Democrats. A good reason to stop watching!!!', 'created': '2024-11-16 18:14:26', 'submission_id': '1grshk3'}
{'comment': 'Good Riddance. Biased Left Wing cultists', 'created': '2024-11-16 18:23:22', 'submission_id': '1grshk3'}
{'comment': 'Ahahahahaaaaaaa!!!! ABC should tank too after the debate!!!', 'created': '2024-11-18 23:33:56', 'submission_id': '1grshk3'}
{'comment': "Tickets to the entire tour sold out after minutes. They are talking about the resale market. There's only 6 dates left on one of the most successful tours ever. Technically amazing and endurance amazing. Love her music or not, its impossible to deny the absolute worldwide success of this tour.", 'created': '2024-11-15 19:17:21', 'submission_id': '1grshk3'}
{'comment': 'Probably. If you lose and you’ve really put your heart into it, it’s healthy to take a media break.', 'created': '2024-11-15 14:41:45', 'submission_id': '1grshk3'}
{'comment': "Yes, but let's hope some of the ratings stay low for good because maybe, just maybe a lot of liberals feel lied to by these manipulators. OR I could be wishful thinking....\n\nIn all honesty, I think this election is going to send a lot of citizens to the independent circuit like Ground News, it's honestly the most bipartisan news website I've ever used and so easy to utilize especially if you pay for the premium. It's like ~10/month or something.", 'created': '2024-11-15 20:41:17', 'submission_id': '1grshk3'}
{'comment': 'I was, too. 🙂', 'created': '2024-11-15 15:20:10', 'submission_id': '1grshk3'}
{'comment': 'I was switching between CNN and MSNBC... those are some mean angry uninformed people.', 'created': '2024-11-15 22:28:13', 'submission_id': '1grshk3'}
{'comment': 'Same.', 'created': '2024-11-15 22:41:57', 'submission_id': '1grshk3'}
{'comment': 'They made a bad call CNN. To compete with Fox News they decided to take a page from their playbook with a left leaning twist. Went from just repeating a news cycle (which was losing ratings) to leaning left commentary (made it worse). Now, since they are owned by Warner Bros. / Discovery have to find a way to regain viewers.\n\nI think a pattern with all it is that they hired too many personnel that lean left. They may have the professional knowledge to do the job. But they let their opinions and egos steer the network’s narrative.\n\nThat’s where they went wrong. For cable news I have more respect for Newsnation. At least they try to maintain a neutrality of sorts. CNN should have never attempted to emulate them.\n\nThere was an honest interview with the owner of the LA Times who self admitted they were compromised and became too far left. When the purpose of a journalistic newspaper is to just tell the news like it is.', 'created': '2024-11-15 10:28:48', 'submission_id': '1grshk3'}
{'comment': "CNN will, once again, say they're changing in order to be more bi-partisan. But, once again, it'll all be empty promises. It'll still very much be a TDS Network, despite Trump winning the EC and popular vote.", 'created': '2024-11-15 21:51:27', 'submission_id': '1grshk3'}
{'comment': "I think you're posting to the wrong thread.", 'created': '2024-11-15 21:52:10', 'submission_id': '1grshk3'}
{'comment': 'It’s healthy to take a break from all politics after an election regardless of whether your side won or not. Election time can be a bit stressful', 'created': '2024-11-17 15:56:02', 'submission_id': '1grshk3'}
{'comment': 'Are you suggesting that CNN was at some point not left-leaning? For decades, it’s been called the Clinton News Network for a reason.', 'created': '2024-11-15 15:49:48', 'submission_id': '1grshk3'}
{'comment': 'Nope. I’m saying that they tried to “compete” with other networks by emulating the Fox News model. In this case they were increasing their left leaning bias. It clearly hasn’t worked for them and other networks as well, like MSNBC.', 'created': '2024-11-15 17:12:38', 'submission_id': '1grshk3'}
{'comment': 'Ahhh gotcha.', 'created': '2024-11-16 17:25:27', 'submission_id': '1grshk3'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 09:30:04', 'submission_id': '1grrvyl'}
{'comment': 'The great reset 😨', 'created': '2024-11-15 17:51:28', 'submission_id': '1grrvyl'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 08:01:30', 'submission_id': '1grqoxj'}
{'comment': "Let's make America healthy again!", 'created': '2024-11-17 01:26:03', 'submission_id': '1grqoxj'}
{'comment': 'A change for the better. \nhttps://www.dailywire.com/episode/tbd-robert-f-kennedy-jr-ad-free', 'created': '2024-11-17 15:37:34', 'submission_id': '1grqoxj'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 04:23:35', 'submission_id': '1grn4d1'}
{'comment': 'Well at least we have one actor with some balls to support Trump! Now if only he would explain how the hell the 3 seashells work.', 'created': '2024-11-15 10:50:36', 'submission_id': '1grn4d1'}
{'comment': 'Yo Adrian! I did it!', 'created': '2024-11-15 05:16:37', 'submission_id': '1grn4d1'}
{'comment': None, 'created': '2024-11-15 05:49:23', 'submission_id': '1grn4d1'}
{'comment': 'I mean aside from having f you money, he’s not really taking a chance here… it great, maybe some others will have the balls to stand up to the lefty’s in pedowood', 'created': '2024-11-15 05:40:30', 'submission_id': '1grn4d1'}
{'comment': 'Rocky Balboa himself. The man who defined drinking raw yolks cause fuck yeah, protein!!', 'created': '2024-11-15 06:33:02', 'submission_id': '1grn4d1'}
{'comment': 'Well Trump has a different approach to things. Wish they would actually give him a chance & let’s see. If it doesn’t work out & the economy, crime, border are worse in 4 years then vote Democrats back in. But I wish they would stop portraying him as the 2nd coming of Hitler & set up opposition before he even gets in office.', 'created': '2024-11-15 07:18:54', 'submission_id': '1grn4d1'}
{'comment': 'Only George Washington could summon a Militia at the drop of the hat... And Trump!', 'created': '2024-11-15 09:37:41', 'submission_id': '1grn4d1'}
{'comment': "We all kinda knew Sly HAD TO BE an in the closet Conservative. I mean, RAMBO?!!! Come on!\n\nGlad that's confirmed. But damn. When you're gonna come out of that closet, don't fumble the hand off. Come on!", 'created': '2024-11-15 09:55:15', 'submission_id': '1grn4d1'}
{'comment': 'Has he renounced gun control yet?', 'created': '2024-11-16 01:58:29', 'submission_id': '1grn4d1'}
{'comment': 'Rocky must have the desantis shoes on', 'created': '2024-11-15 07:14:08', 'submission_id': '1grn4d1'}
{'comment': 'I care about his political views about as much as Taylor Swift.', 'created': '2024-11-15 17:35:39', 'submission_id': '1grn4d1'}
{'comment': '🤣 😂', 'created': '2024-11-15 11:56:24', 'submission_id': '1grn4d1'}
{'comment': 'Get a load of this guy! He doesn’t know how the three seashells work!', 'created': '2024-11-15 15:49:35', 'submission_id': '1grn4d1'}
{'comment': "**after** the election. but credit where credit's due", 'created': '2024-11-15 19:30:29', 'submission_id': '1grn4d1'}
{'comment': 'You win 🏆', 'created': '2024-11-17 02:15:35', 'submission_id': '1grn4d1'}
{'comment': 'Ok', 'created': '2024-11-15 15:43:46', 'submission_id': '1grn4d1'}
{'comment': "He's running a tv series that could get cancelled, i'd say being cancelled is actually a risk. He's got skin in the game", 'created': '2024-11-15 13:12:35', 'submission_id': '1grn4d1'}
{'comment': 'What was the point of drinking them raw? Do you lose nutrients by cooking them? Yuck.', 'created': '2024-11-15 13:54:02', 'submission_id': '1grn4d1'}
{'comment': "I don't know why you're getting downvoted but this is my sentiments exactly. It's called pendulum politics a phenomenon brought on by our 2 party system.", 'created': '2024-11-15 11:55:33', 'submission_id': '1grn4d1'}
{'comment': 'But he was given a chance. And half the country hated him. Republicans didn’t even initially want him in the 2016 primaries but his charisma carried him through. Hell even a ton of republicans don’t like him now. Looking at voter turnout he had less votes than last time. And when you consider there was a shift of blues turning red that means he lost a lot of original reds. Several big time long term republicans even turned on him and endorsed Kamala. The only reason he won was because Kamala was a terrible choice forced in by the DNC. She wasn’t even a great choice as VP to Biden. They only won last time because Biden had popularity from Obama and he was (anyone but Trump). \n\nI do agree the hitler crap needs to stop. Also both parties need to stop crying fascist, Russian puppet, day one impeachments and so on. I personally think Trump was a terrible pick and his cabinet of who’s popular atm rather than who’s the best in their field is almost as bad as his last term of hiring his family into high power positions. But I’ll be happy to be wrong. Imo things are on the upswing the past 1-2 years and I hope it continues through Trumps term. I certainly don’t hope he fails.', 'created': '2024-11-15 14:36:57', 'submission_id': '1grn4d1'}
{'comment': 'Not to brag but that’s one I always kind of knew. Chances are if a big name celebrity is quiet they are most likely Republican.', 'created': '2024-11-15 13:19:42', 'submission_id': '1grn4d1'}
{'comment': None, 'created': '2024-11-15 14:13:20', 'submission_id': '1grn4d1'}
{'comment': "Are you talking about Tusla King? I just started watching it, and it's really good", 'created': '2024-11-16 02:33:25', 'submission_id': '1grn4d1'}
{'comment': 'You lose precious time cooking when you could be lifting or sleeping 😂', 'created': '2024-11-16 03:18:16', 'submission_id': '1grn4d1'}
{'comment': 'Typically yes. Cooking any type of food kills the cells and a large portion of the nutrients it holds, as does freezing. My husband is Japanese and it’s custom in our home to eat raw egg in some dishes like over hot rice, or in ramen. It cooks up a little bit but not fully, which gives it a nice flavor and keeps all the nutrition intact. Drinking them raw rocky balboa style would be hard, but I do drink raw egg in the form of Christmas eggnog and it’s so delicious I can’t tell they’re even there lol.\xa0', 'created': '2024-11-16 17:41:51', 'submission_id': '1grn4d1'}
{'comment': 'If you consider “giving a chance” in 2016 thousands of women in pink hats marching & “the resistance” - hundreds of anti trump groups, while he was first in office. \n\nhttps://www.cnn.com/interactive/2024/politics/2020-2016-exit-polls-2024-dg/\n\nThis shows data from the last 3 elections. It’s encouraging because even among groups that voted blue in 2016 the shift is moving to the right.', 'created': '2024-11-15 15:57:39', 'submission_id': '1grn4d1'}
{'comment': "Trump has more votes then he did in 2020. Look at the latest numbers. The black and Hispanic communities are voting for him in record numbers. He didn't lose popularity. He continue to gain from 2016.", 'created': '2024-11-15 16:44:58', 'submission_id': '1grn4d1'}
{'comment': 'Yeah, agreed. I can\'t say I knew. But it made sense. Just hard to picture any if the major action hero\'s in a "White Guys for Harris" shirt doing the whole soyboy thing... I might have been scarred for life had Sly gone down that road.', 'created': '2024-11-15 18:09:51', 'submission_id': '1grn4d1'}
{'comment': "I hear ya. California is beautiful. But if I had F-You money like Sly, there's a lot of amazing alternatives in this country.", 'created': '2024-11-15 18:16:51', 'submission_id': '1grn4d1'}
{'comment': 'Yep', 'created': '2024-11-16 02:39:24', 'submission_id': '1grn4d1'}
{'comment': "I'd bet that Taylor Sheridan also voted for Trump. I think Sly's going to be just fine.", 'created': '2024-11-16 07:59:12', 'submission_id': '1grn4d1'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 04:17:16', 'submission_id': '1grn05i'}
{'comment': "Didn't this guy almost get the nomination his first term? I believe he advocates for selling federal lands, not a fan.", 'created': '2024-11-15 05:38:05', 'submission_id': '1grn05i'}
{'comment': "These nominations in general haven't been very exciting. Surely, we have more qualified people for the job. Aren't we supposed to be draining the swamp, not filling it more.", 'created': '2024-11-15 16:41:14', 'submission_id': '1grn05i'}
{'comment': 'Lovely, him and DeSantis would get along then.', 'created': '2024-11-15 11:58:39', 'submission_id': '1grn05i'}
{'comment': 'I think during Trumps first term he signed some bill that downsized a national monument in Utah because there was a mine on the land and it couldn’t be accessed so they had to remove the federal protection. Not ideal', 'created': '2024-11-15 13:31:01', 'submission_id': '1grn05i'}
{'comment': 'Yeah not a fan of this pick either for similar reasons', 'created': '2024-11-15 06:28:55', 'submission_id': '1grn05i'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 00:58:13', 'submission_id': '1grj36z'}
{'comment': 'Good someone needs to feel the heat.', 'created': '2024-11-15 02:11:30', 'submission_id': '1grj36z'}
{'comment': 'Aside from this incident, I suspect that FEMA corruption runs deep.', 'created': '2024-11-15 13:54:58', 'submission_id': '1grj36z'}
{'comment': 'Wait a second....\n\nLake Placid, queue up Betty White and the crocodiles. 😆', 'created': '2024-11-15 01:12:36', 'submission_id': '1grj36z'}
{'comment': 'As they should!', 'created': '2024-11-15 12:17:49', 'submission_id': '1grj36z'}
{'comment': 'Someone in the comments of this article said this should be looked into as a "hate crime"- probably should!!! I hope that\'s considered.', 'created': '2024-11-16 07:10:00', 'submission_id': '1grj36z'}
{'comment': 'Good 👍', 'created': '2024-11-16 14:09:20', 'submission_id': '1grj36z'}
{'comment': "I'm sure they target the State of Florida and Trump supporters.", 'created': '2024-11-18 01:11:53', 'submission_id': '1grj36z'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-15 00:09:21', 'submission_id': '1gri1zj'}
{'comment': 'Ah yes, normal person behavior', 'created': '2024-11-15 01:18:46', 'submission_id': '1gri1zj'}
{'comment': 'That is demonic', 'created': '2024-11-15 03:06:02', 'submission_id': '1gri1zj'}
{'comment': 'The party of peace everyone.', 'created': '2024-11-15 03:35:21', 'submission_id': '1gri1zj'}
{'comment': 'I don’t know if her father was a republican, but Maybe the left shouldn’t have called republicans nazis all the time.', 'created': '2024-11-15 02:52:32', 'submission_id': '1gri1zj'}
{'comment': 'Democrats need to distance themselves from these bat shit crazy people who identify as “democrats” \n\nThis is unhinged behavior… I’ve seen so many women lose their minds and embarrass themselves (or worst) over Trump winning', 'created': '2024-11-15 03:18:00', 'submission_id': '1gri1zj'}
{'comment': 'The "tolerant left" that can\'t even tolerate their parents.', 'created': '2024-11-15 01:57:01', 'submission_id': '1gri1zj'}
{'comment': 'Ah yes, the love and unity in this country!', 'created': '2024-11-15 03:36:31', 'submission_id': '1gri1zj'}
{'comment': 'This state is a glorified pysch ward.\xa0', 'created': '2024-11-15 04:08:24', 'submission_id': '1gri1zj'}
{'comment': "Well the MSM and the Dem hype has a lot of blame in this murder. But that's no excuse sorry for the protection of the public locked up no telling when the next time you will snap. For the psychiatrist that says you're ok to release their needs to be a law you approved it your responsible for their future actions.", 'created': '2024-11-15 01:53:14', 'submission_id': '1gri1zj'}
{'comment': 'Insane!', 'created': '2024-11-15 01:30:22', 'submission_id': '1gri1zj'}
{'comment': 'That’s not insane at all…', 'created': '2024-11-15 03:21:48', 'submission_id': '1gri1zj'}
{'comment': 'is she married to a man or a woman ?', 'created': '2024-11-15 04:14:19', 'submission_id': '1gri1zj'}
{'comment': 'What they give that sick little bitch, she deserves it and more. This is where the death penalty needs to be put back in force. She should be in the express lane.', 'created': '2024-11-15 10:28:37', 'submission_id': '1gri1zj'}
{'comment': 'Go find the original article. From ”power lesbian” to “killed him for not turning off the lights” it’s a good read', 'created': '2024-11-15 03:01:18', 'submission_id': '1gri1zj'}
{'comment': 'I would love to hear just one Democrat take responsibility for any part of her actions', 'created': '2024-11-15 03:11:55', 'submission_id': '1gri1zj'}
{'comment': 'Hope she very much enjoys prison. The Ramen! The instant coffee! The dreary grey everywhere! Very liberating.', 'created': '2024-11-15 03:02:05', 'submission_id': '1gri1zj'}
{'comment': 'https://www.kwtx.com/2021/09/10/affidavit-texas-man-murdered-woman-shot-her-husband-because-they-voted-biden/?outputType=amp', 'created': '2024-11-15 14:43:56', 'submission_id': '1gri1zj'}
{'comment': ' Make Asylums Great Again --- again with the eyes', 'created': '2024-11-15 16:17:52', 'submission_id': '1gri1zj'}
{'comment': 'She will get a slap on the wrist', 'created': '2024-11-15 11:30:22', 'submission_id': '1gri1zj'}
{'comment': 'Joy also', 'created': '2024-11-15 16:18:08', 'submission_id': '1gri1zj'}
{'comment': 'The names I’ve had my girlfriend call me is frankly pretty shocking. All because the things she’s listened to have force fed it to her.', 'created': '2024-11-15 05:13:23', 'submission_id': '1gri1zj'}
{'comment': "It's sad, love the geography but place is tainted now", 'created': '2024-11-15 06:24:17', 'submission_id': '1gri1zj'}
{'comment': "My guess is that she's trying to cultivate that impression in order to present a defense that won't result in hard jail time. \n\nThe question is how soft will the King County Prosecutor be on her. King County is possibly the bluest county in the state.", 'created': '2024-11-15 02:21:40', 'submission_id': '1gri1zj'}
{'comment': 'I think she is a he', 'created': '2024-11-15 04:52:16', 'submission_id': '1gri1zj'}
{'comment': 'Do you have a link?', 'created': '2024-11-15 06:39:50', 'submission_id': '1gri1zj'}
{'comment': 'Don\'t forget elevator rides and tinnitus! They don\'t call it "the slammer" for nothing', 'created': '2024-11-15 09:44:49', 'submission_id': '1gri1zj'}
{'comment': '>again with the eyes\n\nYou really can see crazy in the eyes.', 'created': '2024-11-15 17:22:27', 'submission_id': '1gri1zj'}
{'comment': 'Seriously I\'d get out of there before she tries to get you arrested for "abuse" or whatever made up crap she can come up with.', 'created': '2024-11-15 12:00:30', 'submission_id': '1gri1zj'}
{'comment': 'Maybe you should dump her.\xa0\n\n\nDefinitely watch Casey Zander about hypergamy on YouTube\xa0', 'created': '2024-11-15 06:53:45', 'submission_id': '1gri1zj'}
{'comment': 'Dude, you are going to wake up dead one day. Dump the psycho before the left turns your conservative vote to liberal when you are dead.', 'created': '2024-11-15 16:19:01', 'submission_id': '1gri1zj'}
{'comment': 'I know a guy who was Hitler youth. He is 93 years old. There aren’t any Nazis anymore.', 'created': '2024-11-15 05:25:07', 'submission_id': '1gri1zj'}
{'comment': 'And also watch Rich Cooper / Entrepreneurs in Cars on yt too.', 'created': '2024-11-15 15:04:27', 'submission_id': '1gri1zj'}
{'comment': 'Hate seattle so glad I moved my family up out of there, probably 80 percent psychopaths there now the mental derangement is through the roof', 'created': '2024-11-15 06:23:58', 'submission_id': '1gri1zj'}
{'comment': 'I think she’s a she, married to a he that thinks he’s a she. So confusing!', 'created': '2024-11-15 07:35:32', 'submission_id': '1gri1zj'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-14 23:55:45', 'submission_id': '1grhr5s'}
{'comment': 'PA-SCOTUS will need to set a precedent. Otherwise its future rulings are worthless.', 'created': '2024-11-15 00:45:09', 'submission_id': '1grhr5s'}
{'comment': '_"Democrat Commissioners Diane Marseglia and Bob Harvie voted to defy the state\'s Supreme Court in this matter, where Marseglia pretty much says she didn\'t care what the courts say:"_ 🤔', 'created': '2024-11-15 00:31:45', 'submission_id': '1grhr5s'}
{'comment': '> She knows it’s illegal but simply does not care\n\nLiberals in a nutshell', 'created': '2024-11-15 06:48:20', 'submission_id': '1grhr5s'}
{'comment': 'I am sick and tired of their rules for thee not for me. PA has voted, the PA Supreme Court has ruled. This is an attempted insurrection over the will of the people.', 'created': '2024-11-15 00:00:46', 'submission_id': '1grhr5s'}
{'comment': "Where's Shapiro? If he was as good a leader as everyone says, shouldn't he be publicly calling for Casey to concede?", 'created': '2024-11-15 03:24:49', 'submission_id': '1grhr5s'}
{'comment': "Isn't it time to drain the swamp of this type of scum already. 🤔", 'created': '2024-11-15 00:02:07', 'submission_id': '1grhr5s'}
{'comment': 'If she gets this BS to go through, Trump needs to raise hell on her and everyone involved as soon as he takes office. This is the literal definition of an insurrection. If the PA SC ruled against her, that should be it and nobody should be going along with her.', 'created': '2024-11-15 01:30:13', 'submission_id': '1grhr5s'}
{'comment': 'Why do we act surprised? Just think of the things Biden has done… the student loan repayment, remember he said he knew it was unconstitutional but by the time the Supreme Court would get to ruling on it some money would have already been paid off. This is what they do.', 'created': '2024-11-15 06:54:01', 'submission_id': '1grhr5s'}
{'comment': 'It’s already over it’s gonna be stolen, what’s pissing me off is where is the challenge? Why isn’t anyone saying hell no and stopping it? 🤯', 'created': '2024-11-15 00:41:36', 'submission_id': '1grhr5s'}
{'comment': 'They just openly cheat', 'created': '2024-11-16 23:59:05', 'submission_id': '1grhr5s'}
{'comment': 'Welcome to Shitsylvania.', 'created': '2024-11-15 16:06:12', 'submission_id': '1grhr5s'}
{'comment': "just like the magically missing 20k votes that Obama, and hillary didn't get that Joe got that didn't show up for Kamala.", 'created': '2024-11-17 07:56:22', 'submission_id': '1grhr5s'}
{'comment': '*Nothing* else matters if the vote isn’t accurate and accurately counted.', 'created': '2024-11-15 00:16:59', 'submission_id': '1grhr5s'}
{'comment': 'Funny how everyone just assumes people who cannot follow simple instructions or common sense rules are democrat voters.', 'created': '2024-11-15 02:03:46', 'submission_id': '1grhr5s'}
{'comment': 'What a trash bag', 'created': '2024-11-15 03:08:26', 'submission_id': '1grhr5s'}
{'comment': 'Exactly... They need to step up and kick some commissioner ass. 😆', 'created': '2024-11-15 00:49:33', 'submission_id': '1grhr5s'}
{'comment': 'Sounds like contempt to me', 'created': '2024-11-15 03:12:36', 'submission_id': '1grhr5s'}
{'comment': "It's decommission the commission time. 😁👍", 'created': '2024-11-15 00:09:14', 'submission_id': '1grhr5s'}
{'comment': 'He’s not going to stand against his own party. Dems have a ‘win at all cost, and nothing is too low’ motto.', 'created': '2024-11-15 04:25:17', 'submission_id': '1grhr5s'}
{'comment': "I'm thinking this has way too much exposure and too people are saying hell no for them to get away with stealing it. 🤔", 'created': '2024-11-15 00:47:13', 'submission_id': '1grhr5s'}
{'comment': "If it contains invalid ballots there's nothing accurate about it. 😁", 'created': '2024-11-15 00:22:02', 'submission_id': '1grhr5s'}
{'comment': "But isn't it obvious 🤔?", 'created': '2024-11-15 03:53:28', 'submission_id': '1grhr5s'}
{'comment': 'Time to put out the trash. 😆👍', 'created': '2024-11-15 03:09:52', 'submission_id': '1grhr5s'}
{'comment': "I heard Amish were really good building wooden structures. Should hire them for a few platforms that are 10' high", 'created': '2024-11-15 02:02:07', 'submission_id': '1grhr5s'}
{'comment': 'They\'re not called "DemonRats" for nuthin\'...', 'created': '2024-11-16 04:14:36', 'submission_id': '1grhr5s'}
{'comment': 'Hope your right bud, but I think they’ll get away with it.', 'created': '2024-11-15 01:25:31', 'submission_id': '1grhr5s'}
{'comment': 'Exposure where? ABC? CBS? NBC?', 'created': '2024-11-15 03:57:06', 'submission_id': '1grhr5s'}
{'comment': "Let's put it this way if their supreme court doesn't step in they may as well bend over. Because a commission just over ruled them. \n\n😆", 'created': '2024-11-15 02:54:42', 'submission_id': '1grhr5s'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-14 23:42:05', 'submission_id': '1grhg6q'}
{'comment': 'Idk I’m curious why some of the commenters here are so happy with the appointment. I’m happy the Dept might take a different approach from the forcing of vaccines on people, but why couldn’t they find an actual medical professional to lead that charge instead of an irrelevant politician that just became relevant in the last year or two again on the national stage.', 'created': '2024-11-15 16:58:24', 'submission_id': '1grhg6q'}
{'comment': 'Leftist subs are in shambles at the “brainworm” nominee being appointed secretary of health and human services', 'created': '2024-11-15 05:55:56', 'submission_id': '1grhg6q'}
{'comment': 'Is this the most bipartisan cabinet since WWII?', 'created': '2024-11-14 23:45:12', 'submission_id': '1grhg6q'}
{'comment': 'Sorry bias Reddit lol… Trunp for 4 years lol', 'created': '2024-11-14 23:45:13', 'submission_id': '1grhg6q'}
{'comment': "Genuinely happy he's taking a moderate approach because this is an olive branch for moderate dems to come over and realize us Republicans are willing to understand them and cooperate because they're also the other half of us.\n\nToo bad their overly progressive braindead representatives want leftist policies and nothing else. Maybe us having all 3 branches will enlighten moderate dems and marginals enough to flip their states red.", 'created': '2024-11-15 00:30:04', 'submission_id': '1grhg6q'}
{'comment': 'President Trump is building the Dream Team!! \n\nI’m STOKED for this appointment. Everyone should listen to RFK Jr talking about some plans to get chemicals in our food like glyphosate and phthalates. \n\nThe Liberal media making this sound like RFK Jr. is the worst thing ever… Remember they are puppets for Big Pharma. Funny how they LOVED him when he was a blood sucking Democrat but now that he’s a Republican, he’s the “enemy”.. \n\nLET’S MAKE AMERICA HEALTHY AGAIN', 'created': '2024-11-16 02:22:59', 'submission_id': '1grhg6q'}
{'comment': 'I believe this will be the biggest overhaul in his administration. Going to be a wild ride! But thankful to have someone like him who appreciates the true “my body my choice” mantra.', 'created': '2024-11-15 00:52:41', 'submission_id': '1grhg6q'}
{'comment': 'Fire bro. This is fire. RFK is going to clean our country up hardcore.', 'created': '2024-11-15 03:04:14', 'submission_id': '1grhg6q'}
{'comment': 'Ho leee fuck \n\nThe mad lad did it.\n\nI thought he’d give RFK some bullshit “deputy advisor” type position, put him in a corner, and say “yea Bobby, you have lots of influence, keep up the good work”\n\n\nI did not expect him to be in charge of the whole HHS / in the cabinet. \n\nI hope he does after Fauci', 'created': '2024-11-15 04:03:06', 'submission_id': '1grhg6q'}
{'comment': 'I am relishing every second of this!!! To me, this is the dream team so far', 'created': '2024-11-15 04:08:27', 'submission_id': '1grhg6q'}
{'comment': 'How are you all posting good content? I have screenshots of where reddit is biased af and it won’t let me post it', 'created': '2024-11-15 05:20:26', 'submission_id': '1grhg6q'}
{'comment': "Isn't he like super anti vaccine?", 'created': '2024-11-15 20:59:19', 'submission_id': '1grhg6q'}
{'comment': 'Awesome!', 'created': '2024-11-14 23:55:40', 'submission_id': '1grhg6q'}
{'comment': 'Trump is making the swamp,neocons and others crazy!', 'created': '2024-11-15 00:52:29', 'submission_id': '1grhg6q'}
{'comment': 'Excellent 👌', 'created': '2024-11-14 23:58:14', 'submission_id': '1grhg6q'}
{'comment': 'We all kinda knew this was going to happen.', 'created': '2024-11-17 09:58:33', 'submission_id': '1grhg6q'}
{'comment': 'Excellent!', 'created': '2024-11-15 10:25:42', 'submission_id': '1grhg6q'}
{'comment': 'Let’s go!', 'created': '2024-11-15 04:07:59', 'submission_id': '1grhg6q'}
{'comment': "He's just another big government stooge. It's amazing so many of us who voted for trump are so supportive of a guy who just wants to turn the country into california, where apparently everything causes cancer and some shit lib democrat has the power to control what's in your kitchen.\n\nYou could've had the freedom to choose healthier food for yourself, but now this kennedy get's to control what you eat. This is a guy who see's every problem in the world as being solved by a government regulation or program. He thinks he knows what's best for us and that we shouldn't be allowed to make our own choices. That's why he speaks much more in favor of banning vaccines, rather than just making them voluntary.\n\nWe'll regret this. Hopefully trump will sack him within a year once he gets sick of him.", 'created': '2024-11-15 07:49:56', 'submission_id': '1grhg6q'}
{'comment': 'MAHA', 'created': '2024-11-15 19:59:12', 'submission_id': '1grhg6q'}
{'comment': 'A pro-choice HHS head nominated by a Republican president is disgusting. Shame on Trump.', 'created': '2024-11-15 00:05:03', 'submission_id': '1grhg6q'}
{'comment': '[removed]', 'created': '2024-11-15 16:01:52', 'submission_id': '1grhg6q'}
{'comment': 'I’m stoked because he actually wants to make sweeping changes to the chemicals in our food and isn’t paid off by Big Pharma to continue the cycle of poisoning us, then pumping medications down our throat. Sweeping changes are incoming, hopefully. \n\nI’m tired of seeing Europe and other countries banning these chemicals while we spread our cheeks for Big Pharma…', 'created': '2024-11-16 02:29:57', 'submission_id': '1grhg6q'}
{'comment': 'Yeah we have a guy with no medical experience in charge of the hhs and a guy with very little legal experience in charge of the doj.', 'created': '2024-11-16 07:17:24', 'submission_id': '1grhg6q'}
{'comment': 'Have you looked at who was in HHS in recent history?\n\nhttps://x.com/socraticquant/status/1857166807146103160?s=46\n\nCase in point Kennedy is an excellent pick. Not to mention we know the environment is closely tied to our health and well being.', 'created': '2024-11-17 18:43:40', 'submission_id': '1grhg6q'}
{'comment': 'They loved him a few months ago 😂😂', 'created': '2024-11-16 02:30:10', 'submission_id': '1grhg6q'}
{'comment': 'Didn’t you have to have your political opponent as the vice president back then?', 'created': '2024-11-15 00:55:33', 'submission_id': '1grhg6q'}
{'comment': 'West Wing reference?', 'created': '2024-11-15 01:28:39', 'submission_id': '1grhg6q'}
{'comment': 'Has RFJ, Jr ever been liked by the democrats?', 'created': '2024-11-15 04:10:43', 'submission_id': '1grhg6q'}
{'comment': 'What RFK ideas are moderate Dems going to like? Genuinely curious. I usually assume that far-left-for-health-reasons folks are the RFK sympathizers.', 'created': '2024-11-15 03:32:57', 'submission_id': '1grhg6q'}
{'comment': 'I don’t think the goal should be to make every state red or blue as that implies everyone should think the exact same. Some people just don’t have the same values as the Republican Party, which is a good thing if we want to learn to appreciate nuance. The main focus should be to find a middle ground so that everyone’s needs are being met somehow, not to sway everyone to one side of the aisle. Even if that were the intent, it would be impossible. With this red wave, I sincerely hope the needs of all Americans are considered, and not solely those with conservative values. There’s no right or wrong, just different. I’m not a liberal saying this, my family is almost entirely conservative with myself being the only one who actually appreciates both sides enough to not even identify entirely with either. Once being a unit becomes a priority to politicians, we will then see progress. For as long as this is a race to complete dominance, everyone loses. These politicians have weird priorities. This election was super tough for me as I didn’t feel passionate about either party, which is disheartening.', 'created': '2024-11-15 08:38:13', 'submission_id': '1grhg6q'}
{'comment': "RFK is not even close to moderat, he is a conspiracy nut like 90% of the right seem to be these days.\nHe is doing this for exactly two reasons.\n\n1. He knows RFK is a bad pick and he loves to troll.\n\n2. RFK went down on his knees for Trump.\n\nThis will hurt the Republicans as much as anyone, I can't understand it.", 'created': '2024-11-15 06:47:32', 'submission_id': '1grhg6q'}
{'comment': 'We technically have the senate, but I’m not so sure that we have it in reality. There is a reason why Mitch held the vote when he did, and the way he did. Thune will likely carry out his mentor’s “Never Trump” agenda (with the help of a few others). Those few will fight Trump every step of the way, even if it hurts the party/country. Fuck Mitch!', 'created': '2024-11-15 09:12:31', 'submission_id': '1grhg6q'}
{'comment': 'Oh cool! So, abortion should be legal anytime and everywhere in the states?', 'created': '2024-11-15 07:02:27', 'submission_id': '1grhg6q'}
{'comment': 'Super anti *unnecessary* vaccines.', 'created': '2024-11-16 03:37:57', 'submission_id': '1grhg6q'}
{'comment': 'No. He’s said in multiple interviews he’s not against vaccines. He’s against forcing them. Let Americans make their own decisions.', 'created': '2024-11-16 21:35:20', 'submission_id': '1grhg6q'}
{'comment': 'Our food is literally straight up poison, it’s always been known lmao. Half of the country can’t even afford “high quality” foods.\nLiterally look at any chart of the overall health of the average American. Everyone is diabetic, obese, or have a bunch of other health problems.\nDo I agree with Kennedy fully in control of this? No, but it is a start. Btw Texas has started to prohibit Kelloggs in schools due to the chemicals and shit that they add to the food, chemicals that they don’t add in other countries because ITS PROVEN that they are carcinogenics.\n\nHowever his position over vaccines are ridiculous. But as long as he doesn’t interfere with that, all good.', 'created': '2024-11-15 10:42:39', 'submission_id': '1grhg6q'}
{'comment': 'You are misinformed. Listen to RFK’s podcast with Tucker Carlson. The FDA is a den of corruption and our kids are eating poison.', 'created': '2024-11-15 13:50:26', 'submission_id': '1grhg6q'}
{'comment': 'Trump has REPEATEDLY stated that there will be no federal mandates concerning this issue. It was rightfully given back to the states to handle as they see fit according to their constituents. Very much in line with the Constitution.', 'created': '2024-11-15 01:10:15', 'submission_id': '1grhg6q'}
{'comment': 'For doing exactly what he said he would do during his campaign? 😅', 'created': '2024-11-15 00:52:18', 'submission_id': '1grhg6q'}
{'comment': 'I think the positives vastly outweigh the negatives in this case. Let’s not throw out the baby with the bathwater here. The cabinet picks so far have been pretty stellar overall imo', 'created': '2024-11-15 00:40:03', 'submission_id': '1grhg6q'}
{'comment': 'Chill Ozzy. Ifs called bipartisanship', 'created': '2024-11-15 01:19:46', 'submission_id': '1grhg6q'}
{'comment': 'You are focusing on vaccines. RFK has alot more items he wants to go after, most importantly our food health. It’s scary the shit they put into our foods and are literally poisoning us.', 'created': '2024-11-15 16:17:36', 'submission_id': '1grhg6q'}
{'comment': 'Because this will bring down grocery prices 🙄', 'created': '2024-11-16 21:00:16', 'submission_id': '1grhg6q'}
{'comment': 'No that was before 1804 when the 12th amendment was ratified.', 'created': '2024-11-15 00:58:21', 'submission_id': '1grhg6q'}
{'comment': "He was floated by many to take over Hilary's senate seat when she became Sec of State.\n\nThey used to adore him before he became wary of Pharma.", 'created': '2024-11-15 13:59:56', 'submission_id': '1grhg6q'}
{'comment': 'Prior to 2020 they’d have loved him not like pharmaceutical companies.', 'created': '2024-11-15 05:06:00', 'submission_id': '1grhg6q'}
{'comment': 'Don’t know why you’re being downvoted. The swamp still lives. All 3 of the leader candidates were awful in their own right', 'created': '2024-11-15 16:14:40', 'submission_id': '1grhg6q'}
{'comment': "There's a difference between refusing a therapeutic that may or may not affect whether you may or may not get someone else sick but also has consequences to you and choosing to kill another human being to avoid the consequences of your own actions.", 'created': '2024-11-15 11:52:06', 'submission_id': '1grhg6q'}
{'comment': "I disagree completely. It saved many lives and helped our country's economy get moving again.", 'created': '2024-11-16 03:39:33', 'submission_id': '1grhg6q'}
{'comment': 'Vaccine mandates are needed for the same reason speed limits are needed. You are not only hurting yourself when you "make your own decisions". You don\'t get the vaccine and the diseases you pick up can be transmitted to someone who is unable to vaccinate and/or has a bad immune system.', 'created': '2024-11-16 21:43:51', 'submission_id': '1grhg6q'}
{'comment': "Eh, not denying the corruption, but the eating poison is tin foil hat territory. For the most part, the FDA fulfills its purpose of ensuring you and your family AREN'T eating poison.\n\nI'm not looking forward to all the Facebook Moms posting their homeopath bullshit, then down the line posting asking why little Jimmy is constantly shitting his brains out constantly. \n\nThe FDA needs to be reigned in, not dismantled. The agency is a balancing act, that when it tips too far in either direction does not bode well for the consumer.", 'created': '2024-11-15 14:45:55', 'submission_id': '1grhg6q'}
{'comment': 'The audacity!!!', 'created': '2024-11-15 05:30:37', 'submission_id': '1grhg6q'}
{'comment': 'It’s called baby murder.', 'created': '2024-11-15 01:21:36', 'submission_id': '1grhg6q'}
{'comment': "Can you give Examples?\n\n\nEverything is poison at a certain dose. Even oxygen.\n\nYou can't really gauge if something is poisonous just because it contains something, it's all about the levels. Infact many poisonous things are actually required for our body to function.\n\nThat's why it can't be political and needs tedious research.", 'created': '2024-11-16 17:59:49', 'submission_id': '1grhg6q'}
{'comment': 'I’d rather not eat poison……. “🙄”', 'created': '2024-11-17 04:01:48', 'submission_id': '1grhg6q'}
{'comment': 'Ok', 'created': '2024-11-15 01:03:53', 'submission_id': '1grhg6q'}
{'comment': 'I think it’s a stretch to say he was adored by the libs when he hasn’t been relevant for almost 20 years', 'created': '2024-11-15 16:59:50', 'submission_id': '1grhg6q'}
{'comment': 'Interesting. I did some reading and both he and his cousin were floated for the seat to repay them for their early support of Hilary. \n\nI found this statement from 2008 interesting considering the appointment:\n\nFrom a 12/2/2008 NYTimes article:\n\nHe said that his uncle, Senator Kennedy of Massachusetts, had advised him that the right time for him to seek public office might come one day.\n\n“He always advises me to spend time with my family,” Mr. Kennedy said. “He always tells me that, it often seems like things won’t open up. But yet they do. I hope one day that I’ll be able to do public service and government. It might happen one day.”', 'created': '2024-11-15 14:16:37', 'submission_id': '1grhg6q'}
{'comment': "Are we talking about high cost of insulin? Or rolling back measles vaccines? I know he favors the latter but I don't think that is a popular not bipartisan issue (pre 2020 or now) but perhaps you're thinking of a different issue? Obviously price gouging on mega cuts across party lines..", 'created': '2024-11-15 06:51:00', 'submission_id': '1grhg6q'}
{'comment': 'There’s also a difference between an actual medical professional navigating those conversations with people vs a politician influencing public opinion by stating broad platitudes that make great sound bites. I hope he does well but, politics aside, how difficult would it have been to find someone with actual medical experience to lead that department?', 'created': '2024-11-15 16:52:49', 'submission_id': '1grhg6q'}
{'comment': '10000% agreed. There are some amazing vaccines and we need them for herd immunity for sure. But there are some vaccines that shouldn’t be mandated and should be a choice to parents of a newborn. \n\nVaccines are not driving the economy though let’s be honest. Lol. There’s a lot of distrust in big pharma after what they pushed down our throats with COVID.', 'created': '2024-11-16 03:42:56', 'submission_id': '1grhg6q'}
{'comment': 'Abortion is left to the states. Period. Full stop.', 'created': '2024-11-15 02:10:33', 'submission_id': '1grhg6q'}
{'comment': 'Kind of crazy to see this downvoted so much in a republican sub…', 'created': '2024-11-15 07:44:59', 'submission_id': '1grhg6q'}
{'comment': 'Murder is legal in many circumstances.', 'created': '2024-11-15 01:54:10', 'submission_id': '1grhg6q'}
{'comment': 'https://www.theepochtimes.com/health/rfk-jr-has-taken-aim-at-these-additives-what-could-he-do-as-hhs-secretary-5761036?utm_source=partner&utm_campaign=BonginoReport', 'created': '2024-11-18 16:43:24', 'submission_id': '1grhg6q'}
{'comment': "He's won billions in damages in the last 5 years for people hurt by Roundup. I'd say that's pretty relevant.", 'created': '2024-11-16 05:58:35', 'submission_id': '1grhg6q'}
{'comment': "Vaccines should be mandated because they enforce herd immunity. When herd immunity is in effect we don't have major outbreaks therefore people don't have to isolate therefore preventing our economy from slowing down due to another pandemic.", 'created': '2024-11-16 03:44:50', 'submission_id': '1grhg6q'}
{'comment': 'Because we’re done talking about it. It’s the states decision. Period. That’s it. Now let’s move on to other important matters.', 'created': '2024-11-15 15:31:40', 'submission_id': '1grhg6q'}
{'comment': "Eh there are a lot of things stated in that. It would take me forever to look into each one.\n\nApples have aresnic in them that doesn't mean they will kill you.\n\nBut my point is we have a FDA in order to perform investigations into these things, having a person who has political interests and his own opinions on what's bad doesn't make things safe.\n\nYou need independent studies that test these things and are constantly monitoring foods/drugs in order to figure these things out.\n\nHaving ANY political involvement prevents this from happening, remember he is a politician who wants to be elected, he is not the scientist performing the studies he can only parrot information he thinks will win him support.\n\nI'm not saying he's right or wrong. But when you have someone that has something to gain involved in deciding what's is safe or not it becomes a huge problem.\n\nJust because something is dangerous sounding or can cause cancer in high doses, or is a poison does not make it dangerous. You gotta remember often times when testing in rats they will use 10000 times the dose before they become dangerous. \n\n\nMany many many things become dangerous in high amounts, but when used correctly are safe.\n\n\nI'm not saying these things are not dangerous and they very well might be, but before the FDA they had cocaine and heroin in everything, they had lead in almost everything. The average life span was like 30-40, we have made huge progress in this day and age but that's because we used scientific analysis and non-bias testing to get here. We can't have a person who has already made a decision about something running or a part of the agencies.\n\nWe need someone who will look at actually scientific studies or even perform them to get to the bottom of it.\n\nCEOs and politicians have interests in the out come so will view data in a bias view.\n\nI hope that clarifies my point.", 'created': '2024-11-18 17:05:22', 'submission_id': '1grhg6q'}
{'comment': 'Remember when they said we should have herd immunity with the Covid vaccine and then people with the vaccine were still getting Covid?\n\nNo one is arguing against a vaccine for polio, whooping cough, measles, and mumps. But there are unnecessary vaccines that should absolutely not be mandated.', 'created': '2024-11-16 03:51:15', 'submission_id': '1grhg6q'}
{'comment': 'there definitely are people arguing against those.', 'created': '2024-11-16 07:18:47', 'submission_id': '1grhg6q'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-14 23:32:21', 'submission_id': '1grh8f3'}
{'comment': None, 'created': '2024-11-15 06:05:22', 'submission_id': '1grh8f3'}
{'comment': 'Watching folks in my state sub r/massachusetts melt down about this and the other appointment announcements is amazing - all talk of what can be done to obstruct - so much for wanting to work together', 'created': '2024-11-14 23:34:32', 'submission_id': '1grh8f3'}
{'comment': 'President Trump is literally putting the Dream Team together!! I’ve never been this excited about any political organization! LETS GO!!!', 'created': '2024-11-15 00:26:11', 'submission_id': '1grh8f3'}
{'comment': "I'm glad Trump got RFK Jr,Tulsi,Miller,Elon and Vivek in. Those are the 5 best people in his circle.\xa0", 'created': '2024-11-14 23:47:02', 'submission_id': '1grh8f3'}
{'comment': 'Ive never been more excited about government appointments in my life!!! MAGA!!!', 'created': '2024-11-15 03:55:00', 'submission_id': '1grh8f3'}
{'comment': "The bipartisan cooperation is so refreshing. I hope they can keep working on their strengths without being at each other's throats.", 'created': '2024-11-15 05:56:22', 'submission_id': '1grh8f3'}
{'comment': 'Nominating a flagrantly pro-choice HHS head is a disaster. This is a Republican administration. Shameful.', 'created': '2024-11-15 00:03:59', 'submission_id': '1grh8f3'}
{'comment': 'I’m guessing he will start working on banning the food additives that are banned in Europe but allowed here. I’d love to see the food pyramid remade too. No one needs 8-10 serving of bread products a day, it’s so outdated.', 'created': '2024-11-15 06:49:56', 'submission_id': '1grh8f3'}
{'comment': "I genuinely question what the democrats stand for these days. They don't want a strong department of health, they aren't anti war, they don't want a strong economy... What exactly DO they want?", 'created': '2024-11-14 23:36:56', 'submission_id': '1grh8f3'}
{'comment': 'Just left Massachusetts - living in the Live Free or Die. Don’t miss any of it! Come on up!', 'created': '2024-11-15 00:21:23', 'submission_id': '1grh8f3'}
{'comment': "It's fun to see Democrats melting down about a Kennedy being appointed to run a department. That's like as if we melt down because Bernie nominated John Madison to be the AG, or nominating Benjamin Franklin to be the ambassador to France.\n\nIt just makes sense, it's literally reaching across the isle, and they're mad about it, mad about a guy from their legendary family, doing the exact and only thing he really ran for office for. It's wild.", 'created': '2024-11-15 03:21:47', 'submission_id': '1grh8f3'}
{'comment': 'I’d rather have healthy and safe foods than care about trying to fight a losing battle such as getting rid of pro-choice.', 'created': '2024-11-15 02:16:39', 'submission_id': '1grh8f3'}
{'comment': 'Well most of those posts are about what steps they can take to mobilize to block these appointments and be as obstructionist (again) as they were during his past term \n\nBasically they want to be sore losers and are talking about backing extreme socialists like AOC as their option for the next election', 'created': '2024-11-14 23:40:09', 'submission_id': '1grh8f3'}
{'comment': 'They’re just bots operating on the orders of the elite who want to blow up America and the world and see how they can make money from the fallout.', 'created': '2024-11-15 00:14:43', 'submission_id': '1grh8f3'}
{'comment': 'Control over the people and increasing their power.', 'created': '2024-11-15 00:26:40', 'submission_id': '1grh8f3'}
{'comment': 'Is it that much better I feel like too many people here have gone there and made it worse', 'created': '2024-11-15 00:25:35', 'submission_id': '1grh8f3'}
{'comment': 'They are all flipping out saying he has no experience but the Biden appointment was just a pediatrician so it’s not like they had tons of prior experience in the area', 'created': '2024-11-15 03:24:24', 'submission_id': '1grh8f3'}
{'comment': "If AOC is nominated she will do worse than people predicted of Bernie. But she will likely lose in a primary, though. If someone like Shapiro or Beshear is the nominee, though, then I can see her being the Veep nom. But even then it's a slim chance and only if the left absolutely insists on it.\n\nI will say though, it would be intriguing to see a Millennial vs. Millennial Presidential contest (Vance vs. AOC).", 'created': '2024-11-15 04:46:00', 'submission_id': '1grh8f3'}
{'comment': '"We weren\'t extreme enough" Is a hell of a leap in logic.', 'created': '2024-11-14 23:41:20', 'submission_id': '1grh8f3'}
{'comment': 'Yeah I don’t get it either but that seems to be one of the common themes - that Harris tried to be too centrist and or cater to conservative positions which is just crazy talk and delusional.', 'created': '2024-11-14 23:45:18', 'submission_id': '1grh8f3'}
{'comment': 'Well that is good news for us. Let them play off in the weeds while we actually work on centrist goals. That seems like a good recipe for 12+ years of republicans in all 3 seats of government to me.', 'created': '2024-11-14 23:47:34', 'submission_id': '1grh8f3'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-14 21:37:12', 'submission_id': '1greldf'}
{'comment': 'All of her celebrity endorsements were paid. Her entire campaign was fake.', 'created': '2024-11-14 21:48:15', 'submission_id': '1greldf'}
{'comment': 'Raises over a billion in donations from the poor, loses campaign, ends up 20 million in debt. \n\nAnd she was supposed to run the country efficiently? Good grief.', 'created': '2024-11-14 22:21:25', 'submission_id': '1greldf'}
{'comment': "It's rumored she paid Eminem 1.5 million and Beyonce 10 million if we're to believe inside sources.\xa0", 'created': '2024-11-14 22:02:15', 'submission_id': '1greldf'}
{'comment': "If these entertainers actually believed in their candidate, they'd have shown up for free.\n\nWhat's that tell you?", 'created': '2024-11-14 22:38:06', 'submission_id': '1greldf'}
{'comment': 'But she said to tmz person a couple of days ago that she got no money. Another dem supporter taking money from the poor donors', 'created': '2024-11-14 21:50:52', 'submission_id': '1greldf'}
{'comment': 'Interesting article, confirms what most of us already believed .', 'created': '2024-11-14 22:11:58', 'submission_id': '1greldf'}
{'comment': "If these entertainers actually believed in their candidate, they'd have shown up for free.\n\nWhat's that tell you?", 'created': '2024-11-14 22:38:15', 'submission_id': '1greldf'}
{'comment': "For those who don't know, Kamala received $50m from Bill Gates and has a fund which takes anonymous donors. An investigation from Forbes found that 13 other BILLIONAIRES donated large amounts to her campaign through the pact.\n\nTo give context, 'smaller' billionaires don't parttake in heavy lobbying like this. These are absolute whales who have $10bn and above. Only 45 families in the western world have that much. So I'm sure you can imagine, which Presidential candidate was bought outright lol.", 'created': '2024-11-15 00:33:20', 'submission_id': '1greldf'}
{'comment': "You literally had to pay one of the worlds richest women to speak for Harris...that's how bad people didn't like her.", 'created': '2024-11-15 00:15:58', 'submission_id': '1greldf'}
{'comment': 'Ridiculous.', 'created': '2024-11-14 22:23:42', 'submission_id': '1greldf'}
{'comment': 'The board must have forgotten she grew up middle class.', 'created': '2024-11-15 04:38:39', 'submission_id': '1greldf'}
{'comment': "This is the normal operation for Dems they paid all these people now Kamalma bam bam says she's broke. Is she broke really it's circle back money you give someone a million dollars they then give you back 300k they pay tax on the million tax say 300k they walk with 400k. It's not their money they have to clean it and deposit it in a foreign bank under shell companies to be received later. Pelosi and more are millionaires off a congressman's salaries.", 'created': '2024-11-15 04:59:51', 'submission_id': '1greldf'}
{'comment': "Wait, shouldn't Kamala be the one being scolded?", 'created': '2024-11-15 03:06:32', 'submission_id': '1greldf'}
{'comment': "I'd endorse her if she'd pay me 1 million dollars. I'd still vote republican", 'created': '2024-11-16 13:45:15', 'submission_id': '1greldf'}
{'comment': 'This should absolutely tank her credibility', 'created': '2024-11-16 07:20:04', 'submission_id': '1greldf'}
{'comment': 'Wait didn’t Melania get paid to show up?', 'created': '2024-11-15 13:34:47', 'submission_id': '1greldf'}
{'comment': "I'm just wondering if the checks used to make those payments have started bouncing. 😆👍", 'created': '2024-11-14 21:49:52', 'submission_id': '1greldf'}
{'comment': 'I mean, they could also be coerced with Diddy stuff', 'created': '2024-11-16 04:29:08', 'submission_id': '1greldf'}
{'comment': 'How is that possible? She spent 1 billion 20 million?', 'created': '2024-11-14 23:34:27', 'submission_id': '1greldf'}
{'comment': "It tells me it's all part of their elaborate money laundering scheme. 😆", 'created': '2024-11-15 00:06:25', 'submission_id': '1greldf'}
{'comment': "Money laundering at it's finest. 😆", 'created': '2024-11-14 21:53:14', 'submission_id': '1greldf'}
{'comment': 'She might not have been paid. But Harpo productions were. Her company, technically not her. BUT, her company pays her. So the money flow is DNC-Harpo-Oprah. See, Harpo paid Oprah, not the DNC.', 'created': '2024-11-15 00:02:45', 'submission_id': '1greldf'}
{'comment': "I'm suspecting it's even worse... Give the rich taxpayers money to support you. Then claim you're broke to get the money slipped back to you through charitable donations. 😡", 'created': '2024-11-15 00:20:01', 'submission_id': '1greldf'}
{'comment': 'Kamala who? 😆', 'created': '2024-11-15 03:07:51', 'submission_id': '1greldf'}
{'comment': 'Correct. 20m over budget in a matter of months all based on bad plays like celeb endorsements (not even the good ones)', 'created': '2024-11-15 15:00:53', 'submission_id': '1greldf'}
{'comment': 'Cha Ching.', 'created': '2024-11-15 04:02:53', 'submission_id': '1greldf'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-14 20:41:53', 'submission_id': '1grdbe8'}
{'comment': 'good', 'created': '2024-11-14 20:43:35', 'submission_id': '1grdbe8'}
{'comment': 'Perfect. They didn’t help with the tornadoes, they didn’t help with the hurricane, what good are they?', 'created': '2024-11-14 21:07:18', 'submission_id': '1grdbe8'}
{'comment': 'Someone needs to be held responsible, not just the underlings.', 'created': '2024-11-14 23:06:57', 'submission_id': '1grdbe8'}
{'comment': 'double good!', 'created': '2024-11-14 21:20:29', 'submission_id': '1grdbe8'}
{'comment': 'I hope heads roll.', 'created': '2024-11-14 21:28:33', 'submission_id': '1grdbe8'}
{'comment': 'I’m so confused about this Matt gaetz thing. I’ve heard stuff about him potentially not being approved by the senate. Is that true? I don’t know much about how that stuff works. I hope he doesn’t though he honestly seems like a real piece of shit.', 'created': '2024-11-14 20:53:18', 'submission_id': '1grdbe8'}
{'comment': 'Not ideal. "Punitive damage" is just tax money from us.. these people need to be found, fired and lose their fat pensions.', 'created': '2024-11-14 23:32:31', 'submission_id': '1grdbe8'}
{'comment': 'Democrats investigated the guy for 2 years straight and recommended no charges be filed. He severely angered establishment Republicans after helping throw out McCarthy though even if his intentions were righteous. That was the cause of the last ethics report—run by Republicans.\n\nMy guess is he’ll probably become AG, and if not may replace Rubio in the Senate.', 'created': '2024-11-15 21:41:14', 'submission_id': '1grdbe8'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-14 20:13:19', 'submission_id': '1grcn2u'}
{'comment': "well it's a dude with a fake profile proclaiming it ....", 'created': '2024-11-14 20:17:38', 'submission_id': '1grcn2u'}
{'comment': 'Another day and another leftist hoax.', 'created': '2024-11-14 20:39:40', 'submission_id': '1grcn2u'}
{'comment': "I took all the ECON classes and I've came to the opposite conclusion. Prices will be lowered after Trump took office.", 'created': '2024-11-14 21:13:57', 'submission_id': '1grcn2u'}
{'comment': 'Im disliking this post because you’re phone is on its last breath, charge it', 'created': '2024-11-15 04:03:02', 'submission_id': '1grcn2u'}
{'comment': 'The fact these socialists actually want higher prices for food tells you everything you need to know.', 'created': '2024-11-16 13:58:05', 'submission_id': '1grcn2u'}
{'comment': None, 'created': '2024-11-14 21:40:14', 'submission_id': '1grcn2u'}
{'comment': "I don't follow, what's happening here?", 'created': '2024-11-14 20:24:09', 'submission_id': '1grcn2u'}
{'comment': "The only prices that will go up are those that are imported. Maybe it will sting for a little while while the US is transitioning to produce its own products. Overall, we're looking at more US based companies, which translates into more jobs.", 'created': '2024-11-14 23:16:47', 'submission_id': '1grcn2u'}
{'comment': 'There’s really nothing that makes people sound more uneducated than saying “prices never go down” or “prices always go up”. The market always corrects itself. It’s why having a competitive market is important. If you have a product you sell for 5$ and someone else starts selling the same exact product for 3.50$, either you better have something real special to add for brand loyalty, otherwise you’ll be dropping your prices to. I don’t know how this doesn’t make sense to people', 'created': '2024-11-15 08:47:34', 'submission_id': '1grcn2u'}
{'comment': 'I mean Trump had tariffs when he was in office. Farmers did have issues though. Anyone who exported soy to China got hit with retaliatory tariffs that hurt them.', 'created': '2024-11-15 16:35:55', 'submission_id': '1grcn2u'}
{'comment': 'My guy let me double your offer cause that is fake af.', 'created': '2024-11-15 23:57:20', 'submission_id': '1grcn2u'}
{'comment': '“InFlAtIoN iS aLl TrUmPs FaUlT”\n\nJust watch, if/when prices start dropping in about a year/year and a half, they will give Biden the credit. Then when we get another Democrat after a year and a half everything goes to shit they will blame Trump again!\xa0', 'created': '2024-11-18 06:05:23', 'submission_id': '1grcn2u'}
{'comment': "I mean, it's kind of correct. Prices will never drop. Because that's the market value of the goods. What we've lost over the past 4 years has been the income to cost of living ratio. The goal from here needs to be finding a way to increase household incomes while reducing further price increases.", 'created': '2024-11-14 21:08:35', 'submission_id': '1grcn2u'}
{'comment': 'Nobody actually talks like that', 'created': '2024-11-14 20:51:59', 'submission_id': '1grcn2u'}
{'comment': 'Lemons and limes are exported so we won’t have fruit? Someone please explain how us exporting fruit keeps fruit from being in domestic grocery stores.', 'created': '2024-11-14 23:57:21', 'submission_id': '1grcn2u'}
{'comment': 'I have taken no econ classes but saw Trump in my dreams with a Gattling Gun shooting food and gas prices out of the sky. That just means that the prices will fall believe me 😅', 'created': '2024-11-14 22:05:02', 'submission_id': '1grcn2u'}
{'comment': 'This country is going to have to triple its Thorazine production ASAP!!', 'created': '2024-11-14 22:28:21', 'submission_id': '1grcn2u'}
{'comment': 'The smoothies eat up every piece of propaganda like this they read', 'created': '2024-11-14 22:44:26', 'submission_id': '1grcn2u'}
{'comment': 'Someone doesn\'t know how to spell "dessert". They also don\'t know what "export" means.', 'created': '2024-11-15 00:26:37', 'submission_id': '1grcn2u'}
{'comment': 'Trumps 1st term he put tariffs up where he had to bail out farmers, and he had to bail them out with $28 billion, so its not that far fetched.', 'created': '2024-11-14 21:06:19', 'submission_id': '1grcn2u'}
{'comment': 'Prices are decreasing and Gas is due to Biden’s policies however if Trump targets the same tariffs as before groceries will go up unless he pays the farmers again money to repair the damage of tariffs.', 'created': '2024-11-14 21:31:40', 'submission_id': '1grcn2u'}
{'comment': "please explain how higher prices for most commodities lower prices? I can't see it.", 'created': '2024-11-15 01:55:22', 'submission_id': '1grcn2u'}
{'comment': 'Prices will never lower. Thats not how inflation works. It will continue to rise indefinitely and if they aren’t, you have other more pressing economic issues to be concerned about. Inflation is the rate at which that price increase occurs.', 'created': '2024-11-14 23:33:01', 'submission_id': '1grcn2u'}
{'comment': 'Not only that because of the tariffs most drugs that are imported would go up meaning the tariffs are good for slowing down drugs.', 'created': '2024-11-15 23:59:05', 'submission_id': '1grcn2u'}
{'comment': 'Yup, you are right Bubba!', 'created': '2024-11-15 05:35:22', 'submission_id': '1grcn2u'}
{'comment': 'That’s awesome! Haha I just know basic economics but that’s cool man, rooting for you!', 'created': '2024-11-14 21:41:52', 'submission_id': '1grcn2u'}
{'comment': 'It’s a bot account on X making things up so they can try to influence voters lol', 'created': '2024-11-14 20:25:01', 'submission_id': '1grcn2u'}
{'comment': 'And will cause foreign companies to get more competitive with pricing if they don’t want to lose American revenue. The sting will hopefully be mitigated with the tax cuts', 'created': '2024-11-15 08:48:33', 'submission_id': '1grcn2u'}
{'comment': 'I agree. Living expenses are so so expensive now even taking out groceries.', 'created': '2024-11-14 21:43:57', 'submission_id': '1grcn2u'}
{'comment': 'Today prices will never drop is absolutely false. The reason why prices skyrocketed in the first place is because Kamala Harris’s was the tie breaking vote for two very large spending bills that was warned by many economist including former Barack Obama economic advisor that inflation and prices will skyrocket. So yes prices can absolutely come down including gas prices, they have before many times! But nice try though you tried! Turns out when you pass two large spending bills in an overheated economy demand starts to outstrip supply and prices start to increase. To lower cost and inflation, the government needs to stop spending and printing so much. Learn economics', 'created': '2024-11-14 21:12:39', 'submission_id': '1grcn2u'}
{'comment': 'No shit loo', 'created': '2024-11-14 21:06:53', 'submission_id': '1grcn2u'}
{'comment': 'Lol', 'created': '2024-11-14 22:30:40', 'submission_id': '1grcn2u'}
{'comment': 'This has nothing to do with tariffs lol. Trump really only uses tariffs as leverage to get countries to do what he wants, it’s a tactic. The reason why prices skyrocketed is because Kamala Harris was the tie breaking vote for two large spending bills that was warned by many economist including former Obama economic advisor that it would be cause prices to skyrocket. That’s all facts', 'created': '2024-11-14 21:09:09', 'submission_id': '1grcn2u'}
{'comment': 'Read below I’m not explaining this again. Biden and Kamala policies are the one that increased inflation pressures by passing two large spending bills in a recovering/ overheated economy. They were warned by many economist and even Obama former economic advisor that if they passed it it would create inflationary pressures and price increases Kamala broke the tie in the senate to get it passed so no Biden policies have ruined lives by spending too much and by the way Trump doesn’t use tariffs as an economic policy he uses it as leverage to get other countries to do what he wants. But didn’t Biden actually double the tariffs? Didn’t mention that tho', 'created': '2024-11-14 21:34:08', 'submission_id': '1grcn2u'}
{'comment': "higher prices occured because of higher gas prices. Lower gas prices will let company save money on transportation. When 1 company started lower their products' prices, other companies selling the products in the same category will follow.", 'created': '2024-11-15 16:03:07', 'submission_id': '1grcn2u'}
{'comment': "Well, time will tell. We'll come back here on June 20th, 2025 and see who's right, agree?", 'created': '2024-11-14 23:34:42', 'submission_id': '1grcn2u'}
{'comment': "I've never understood these bots. I don't know why I come to reddit. Even the benign subreddits get way over political.", 'created': '2024-11-14 20:44:27', 'submission_id': '1grcn2u'}
{'comment': 'You got downvoted for saying that by a random leftist', 'created': '2024-11-15 02:31:28', 'submission_id': '1grcn2u'}
{'comment': "Gas prices always go up and down. So yeah, they'll go down. I'm talking about things like the price of bread and milk. Things that stay relatively constant. They will likely remain the same. Which is a good thing because incomes should start to increase. So the relative price to income ratio will go down. In a way, that means prices are going down. And no need to be nasty, I'm on your side. The bills definitely did do damage. That's why I made sure I went out to vote so more damage wasn't done.", 'created': '2024-11-14 21:22:13', 'submission_id': '1grcn2u'}
{'comment': "Trump wants to add more tariffs. Tariffs increase prices. It's that simple.\n\nThe original inflation was caused by Dems, but Trump tariffs will increase prices. We're hoping that these Tariffs bring companies and JOBs back to the USA.", 'created': '2024-11-15 05:14:03', 'submission_id': '1grcn2u'}
{'comment': 'If you don\'t think tariffs affect farmers you are horribly wrong. He has to sign a bill in 2018 to bail them out because of his "trade war" he started, this is well before kamala harris.', 'created': '2024-11-14 21:12:56', 'submission_id': '1grcn2u'}
{'comment': '!remindme 218 days', 'created': '2024-11-15 05:08:27', 'submission_id': '1grcn2u'}
{'comment': 'Yeah, not sure why I got downvoted as if currently I struggle to even buy groceries to get through the month. It’s not like im lying millions of other Americans are going through it. Barely can pay rent on time AND groceries are overpriced. Everything is so expensive nowadays it’s honestly sad.', 'created': '2024-11-15 08:08:09', 'submission_id': '1grcn2u'}
{'comment': 'When the government spends less, particularly if it reduces deficit spending, it can decrease inflationary pressures. Less government demand for goods and services can reduce the overall demand in the economy, which may slow down price increases or even lead to price reductions.\n\n\nBut I think the biggest one is energy to reduce overall cost of living', 'created': '2024-11-14 21:26:58', 'submission_id': '1grcn2u'}
{'comment': 'That wasn’t the cause of prices and inflation skyrocketing in 2021 to now. Again I said Trump uses tariffs as leverage not as a permanent economic policy and didn’t Biden actually double the tariffs? Lol', 'created': '2024-11-14 21:14:15', 'submission_id': '1grcn2u'}
{'comment': 'Unless you’ve operated an agriculture business, you have no justification to say this.', 'created': '2024-11-15 08:54:39', 'submission_id': '1grcn2u'}
{'comment': 'Yeah I can agree with that last point. Energy regulations are suffocatingly tight right now. Easing up a bit would reduce the energy market, which could in time be reflected in other costs due to cheaper shipping and transportation costs.', 'created': '2024-11-14 21:32:33', 'submission_id': '1grcn2u'}
{'comment': "I don't know why you keep bringing up 2021? I was just pointing out farmers had to be bailed out previously because of trumps tariffs, so adding more tariffs to everyone would make it even harder on them, but you just keeping spewing BuT DeMoCrAtS", 'created': '2024-11-14 21:19:22', 'submission_id': '1grcn2u'}
{'comment': 'Again Biden doubled those tariffs and Trump doesn’t tariffs as a permanent economic policy. Do I have to explain to you he uses it as leverage? Are you actually trying to gaslight people into thinking this economy is fine? People can’t afford groceries, people can’t afford homes, people can’t afford to have children, rent and interest rates has skyrocketed but yes it is democrats, Kamala being a major factor into breaking the tie in the senate to pass two large spending bills that increased inflation and prices. Nice try tho Libby', 'created': '2024-11-14 21:22:24', 'submission_id': '1grcn2u'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-14 20:11:55', 'submission_id': '1grclwn'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-14 18:54:33', 'submission_id': '1grarhk'}
{'comment': 'The left is desperate for any victory they can claim at this point.', 'created': '2024-11-14 19:12:34', 'submission_id': '1grarhk'}
{'comment': 'So does anyone think all those 18 million extra votes last election were legit? If you look at the numbers, this year had about the same number of people voting in 2016. Then 2020 had a huge spike and it went away.', 'created': '2024-11-14 19:42:02', 'submission_id': '1grarhk'}
{'comment': 'Once a snake, always a snake…', 'created': '2024-11-14 20:35:39', 'submission_id': '1grarhk'}
{'comment': "That's what leftists do.", 'created': '2024-11-14 19:19:06', 'submission_id': '1grarhk'}
{'comment': 'The thirst for power is strong in this one.', 'created': '2024-11-14 21:52:15', 'submission_id': '1grarhk'}
{'comment': '“GTFOA BOB CASEY, YOUER FIRED!!!!!! It’s time to start letting the right people do the job!”', 'created': '2024-11-18 04:51:27', 'submission_id': '1grarhk'}
{'comment': "He should ask the state of Arizona to help. I'm sure they got some ballots from around four years ago just sitting around that he could use.", 'created': '2024-11-14 23:51:41', 'submission_id': '1grarhk'}
{'comment': 'Yes. It’s bad for democracy', 'created': '2024-11-16 15:04:21', 'submission_id': '1grarhk'}
{'comment': '"As of Wednesday, McCormick led by about 28,000 votes out of more than 6.9 million ballots counted — inside the 0.5% margin threshold to trigger an automatic statewide recount under Pennsylvania law."\n\nYou post the most inflammatory shit.', 'created': '2024-11-14 19:14:31', 'submission_id': '1grarhk'}
{'comment': 'This is blatantly obvious by their repeated attempts to break the law. 😆', 'created': '2024-11-14 19:16:43', 'submission_id': '1grarhk'}
{'comment': "I'm not buying that Joe Biden was some 15 million votes more popular than Hillary Clinton or Barak Obama.", 'created': '2024-11-14 20:05:13', 'submission_id': '1grarhk'}
{'comment': 'Absolutely not legit.', 'created': '2024-11-14 19:51:19', 'submission_id': '1grarhk'}
{'comment': 'The democrats had about a 23% increase in votes between 2016 and 2020. Republicans increased by about 18%\n\nSo yes, seems pretty consistent to me.', 'created': '2024-11-14 21:13:18', 'submission_id': '1grarhk'}
{'comment': 'Where are you getting 18 million from?', 'created': '2024-11-14 20:24:54', 'submission_id': '1grarhk'}
{'comment': 'Both in and out of the grass. 😁', 'created': '2024-11-14 20:37:17', 'submission_id': '1grarhk'}
{'comment': "Wouldn't put it past these lowlife scumbags. 🤔", 'created': '2024-11-15 00:10:56', 'submission_id': '1grarhk'}
{'comment': 'In the article it says his : lawyers are actually in court arguing for the following “votes” to be counted: (1) ballots of NON-registered “voters;” (2) un-signed mail in ballots; (3) mail-in ballots w/o dates; (4) ballots cast in a county where the Voter does NOT live. \n\nIf that part is true then his statement is not just being inflammatory but factual', 'created': '2024-11-14 19:28:33', 'submission_id': '1grarhk'}
{'comment': '_"They\'re trying to reframe \'following clear-cut election laws\' as \'Republican efforts to disenfranchise voters.\' \xa0Bob Casey has lost this election, so he\'s reduced to trying sue for law-breaking in order to revive his dead campaign."_ 😁', 'created': '2024-11-14 19:23:37', 'submission_id': '1grarhk'}
{'comment': 'Especially not Obama. He was practically the savior of the left.', 'created': '2024-11-14 21:06:52', 'submission_id': '1grarhk'}
{'comment': 'Popular vote for Hillary compared to Biden compared to Harris I believe', 'created': '2024-11-14 22:08:25', 'submission_id': '1grarhk'}
{'comment': 'This is how they got so many votes in 2020.', 'created': '2024-11-14 19:43:53', 'submission_id': '1grarhk'}
{'comment': "The state laws are currently being litigated in court. That's why Casey's team is fighting them. None of this is new information for those of us that live in Philly. \n\nMick posting stuff leaving out relevant information making it sound sketchy is dumb.\n\n[Philly Senate recount](https://apnews.com/article/casey-mccormick-pennsylvania-senate-recount-f0da8720c540fc1b10328da37135a1ee)\n\n[PA.Gov Recount Story](https://www.pa.gov/en/agencies/dos/newsroom/unofficial-results-in-u-s--senate-race-trigger-legally-required-.html)", 'created': '2024-11-14 19:41:12', 'submission_id': '1grarhk'}
{'comment': 'yeah, he was basically black Jesus to them', 'created': '2024-11-14 21:50:16', 'submission_id': '1grarhk'}
{'comment': 'And especially his first election, he won over a ton of people not on the left. I don’t buy it.', 'created': '2024-11-14 22:47:43', 'submission_id': '1grarhk'}
{'comment': 'Pretty sure this election only has about 6 million less than 2020 and it’s still not totally counted', 'created': '2024-11-15 01:10:04', 'submission_id': '1grarhk'}
{'comment': 'A re count is fine arguing counting ballots from unregistered voters, unsigned ballots, no dates, and wrong counties is silly and sure sounds like stealing votes', 'created': '2024-11-14 19:47:52', 'submission_id': '1grarhk'}
{'comment': 'I appreciate you providing stats. Thank you.', 'created': '2024-11-14 22:17:45', 'submission_id': '1grarhk'}
{'comment': ">those of us that live in Philly. \n\nYa'll held the state hostage along with Pittsburgh in 2020. Fuck, ya'll gave the democrats Fetterman in his primary. Ya'll fucked up the state long enough. Time to sit down and let someone have turn.", 'created': '2024-11-14 23:47:12', 'submission_id': '1grarhk'}
{'comment': "It can sound like a lot of things, but many were mailed prior to the changes made. That's why it's in court. Not saying it's right or wrong, just saying I notice dude is constantly posting stuff leaving out as much information as possible. \n\nAnd of all things, PA is pretty damn purple and has been doing a pretty good job covering both sides of the aisle as far as fair but accessible. Gets annoying seeing dude purposefully posting misleading shit.", 'created': '2024-11-14 20:00:09', 'submission_id': '1grarhk'}
{'comment': "Lots of people have had, have now, and will continue to have turns. Doesn't mean the law doesn't get followed. Which is what they're currently doing. If rolls were reversed right now the exact same thing would be happening because of the last minute changes.\n\nI know some people may like it and some won't, doesn't mean we post up BS narratives.", 'created': '2024-11-15 01:09:54', 'submission_id': '1grarhk'}
{'comment': 'Fair point wasn’t aware it was a recent change for those issues to not be counted', 'created': '2024-11-14 20:03:44', 'submission_id': '1grarhk'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-14 18:25:33', 'submission_id': '1gra21h'}
{'comment': 'Since many on the left claim that children do not get transitioned this should be a none issue for them', 'created': '2024-11-14 18:56:11', 'submission_id': '1gra21h'}
{'comment': 'Hope this passes in Indiana.', 'created': '2024-11-14 20:12:59', 'submission_id': '1gra21h'}
{'comment': "> “This bill is not about bathrooms. It’s about demonizing those who are different, and our children are watching and listening to the fearmongering.”\n\nSee, that's just wrong. It's about those who are NOT different but wish to be treated as different.", 'created': '2024-11-14 19:50:59', 'submission_id': '1gra21h'}
{'comment': 'I’m betting DeWine vetos it and the assembly needs to override his veto', 'created': '2024-11-15 01:37:34', 'submission_id': '1gra21h'}
{'comment': 'Most left wingers say medically transitioned before 18. Not socially. But thinking about it now, maybe there should be rules against adults using school washrooms made for children and teens.', 'created': '2024-11-14 22:41:45', 'submission_id': '1gra21h'}
{'comment': 'Hope it passes everywhere.', 'created': '2024-11-15 01:46:49', 'submission_id': '1gra21h'}
{'comment': 'This bill is about making common sense common again. 😁👍\n\nEdit: 👋 Waves 👋 at gender challenged person against common sense. 😆', 'created': '2024-11-14 20:06:41', 'submission_id': '1gra21h'}
{'comment': 'Most leftist don’t consider puberty blockers transitioning. I haven’t looked up any research but I would think if you take puberty blockers from let’s just say a 4+ years stretch before you turn 18 and change your mind your not going to have a normal puberty and development that comes with it.', 'created': '2024-11-14 23:04:52', 'submission_id': '1gra21h'}
{'comment': 'As an adult if I am at my kids school and need to use the bathroom I am going to use the bathroom in the main office or a faculty bathroom.', 'created': '2024-11-14 23:47:30', 'submission_id': '1gra21h'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-14 17:31:33', 'submission_id': '1gr8scu'}
{'comment': 'I love how the lefties are doing all these things to themselves. They are going celibacy on their own. They are censoring themselves. This is hilarious', 'created': '2024-11-14 17:41:30', 'submission_id': '1gr8scu'}
{'comment': 'They hate free speech that they cannot control…', 'created': '2024-11-14 17:59:27', 'submission_id': '1gr8scu'}
{'comment': 'In an instant with the single click of a mouse, X became a much better place.', 'created': '2024-11-14 17:43:22', 'submission_id': '1gr8scu'}
{'comment': 'My daughter and a few of my friends deleted facebook too\nI suppose they will be back later when the accept the election results and stop freaking out', 'created': '2024-11-14 17:40:15', 'submission_id': '1gr8scu'}
{'comment': "I heard a LOT of people on the left are deleting their X accounts and going to some other apps, it's hilarious 😂", 'created': '2024-11-14 17:50:47', 'submission_id': '1gr8scu'}
{'comment': None, 'created': '2024-11-14 18:26:14', 'submission_id': '1gr8scu'}
{'comment': "Joy Reid and The View's Joy Behar seem to be named ironically. It could be they both shortened their name from Joyless.", 'created': '2024-11-14 19:57:04', 'submission_id': '1gr8scu'}
{'comment': "Aren't you talking about Karen Reid, one of the most joyless PsOS to ever darken a TV screen?", 'created': '2024-11-14 18:00:54', 'submission_id': '1gr8scu'}
{'comment': 'Hope they boot her stupid ass off television also.', 'created': '2024-11-14 18:43:58', 'submission_id': '1gr8scu'}
{'comment': 'Jaime Lee Curtis also left X and Eva Longoria is leaving the country - win, win, win\n\nAnd bakers are refusing to serve Whoopi - it’s about time they got a taste of their own medicine when they kick people out of reataurants', 'created': '2024-11-15 02:18:34', 'submission_id': '1gr8scu'}
{'comment': 'Byeeeeeeeee', 'created': '2024-11-15 01:39:38', 'submission_id': '1gr8scu'}
{'comment': 'Who?', 'created': '2024-11-15 06:47:36', 'submission_id': '1gr8scu'}
{'comment': 'I just tumbled out of bed!\xa0 Thanks so much, for starting my day with laughter!\xa0 God bless you, Brother!😆🤣😆🤣😆', 'created': '2024-11-15 19:21:26', 'submission_id': '1gr8scu'}
{'comment': 'Trump and Elon’s plan is working! I hope those said they will move out of the country keep their word', 'created': '2024-11-17 21:46:36', 'submission_id': '1gr8scu'}
{'comment': '🍾', 'created': '2024-11-14 18:20:15', 'submission_id': '1gr8scu'}
{'comment': 'Who?', 'created': '2024-11-14 23:26:58', 'submission_id': '1gr8scu'}
{'comment': 'Yay!!!!', 'created': '2024-11-15 01:17:05', 'submission_id': '1gr8scu'}
{'comment': "She's so gross", 'created': '2024-11-15 13:51:45', 'submission_id': '1gr8scu'}
{'comment': 'Now if Elon would just buy Reddit...', 'created': '2024-11-16 11:50:15', 'submission_id': '1gr8scu'}
{'comment': 'Can’t wait to see her on the unemployment line 😤', 'created': '2024-11-14 18:47:34', 'submission_id': '1gr8scu'}
{'comment': 'Joy who? Maybe Joy who cares.', 'created': '2024-11-14 19:50:10', 'submission_id': '1gr8scu'}
{'comment': 'During 45 you heard the phrase “ silence is deafening “ a lot from these guys.Now with 47, Silence is Golden.', 'created': '2024-11-14 19:59:08', 'submission_id': '1gr8scu'}
{'comment': 'Do you think it’s best to have varying opinions on X? Also what are your thoughts on Elon shadow banning Liberal accounts in run up to the election? Do you think that’s fair?', 'created': '2024-11-14 18:15:37', 'submission_id': '1gr8scu'}
{'comment': 'Why is this news?', 'created': '2024-11-14 19:08:12', 'submission_id': '1gr8scu'}
{'comment': 'Isn’t it great?! 😂', 'created': '2024-11-14 20:50:12', 'submission_id': '1gr8scu'}
{'comment': "Unfortunately, reddit is full of them... To the point of actually ruining the site, I'm afraid...", 'created': '2024-11-14 18:52:38', 'submission_id': '1gr8scu'}
{'comment': 'Devils advocate but don’t we use telegram and other apps for the same reason? I think it helps keep things less diverse which works out for some of us', 'created': '2024-11-14 17:56:29', 'submission_id': '1gr8scu'}
{'comment': 'Yeah I heard they are making their own new “Democratic Social Media Platform” called Blue Ballz. 😂', 'created': '2024-11-14 20:45:07', 'submission_id': '1gr8scu'}
{'comment': 'Glad you enjoyed, have a great one.👍', 'created': '2024-11-15 19:32:58', 'submission_id': '1gr8scu'}
{'comment': 'Have you met Reddit?', 'created': '2024-11-14 18:23:49', 'submission_id': '1gr8scu'}
{'comment': 'Not at all. You can’t claim you support free speech but then not practice it. I hope they weren’t shadow banning stuff. I’m all for unfiltered free speech. Show me who you are.\n\nIf you do the whole “I like free speech as long as I agree with it” then you are the same as the lefties.', 'created': '2024-11-14 20:20:25', 'submission_id': '1gr8scu'}
{'comment': "Probably not but nobody gave a sht about that in 2020 and even showed in court they have a right as a private company to do so. I'm thinking as long as that's the story might just as well go with it.", 'created': '2024-11-14 18:24:29', 'submission_id': '1gr8scu'}
{'comment': 'Because watching the woke left losing it is so darn entertaining. 😁', 'created': '2024-11-14 19:13:05', 'submission_id': '1gr8scu'}
{'comment': "Yeah it's mind blowing how they seem to all consolidate here on reddit. I don't see left wing stupidity anywhere else like I do here. They are so whiney and immoral it's insane.", 'created': '2024-11-14 19:22:40', 'submission_id': '1gr8scu'}
{'comment': 'How true. Definitely do not join toxic r/Ohio...', 'created': '2024-11-17 21:26:34', 'submission_id': '1gr8scu'}
{'comment': 'We need to start a petition to get Elon to buy it, they will all scatter like they did with X haha 😂', 'created': '2024-11-15 03:12:50', 'submission_id': '1gr8scu'}
{'comment': "Seems like a different style of platform, Telegram is single-threaded... having thousands of people in a real-time chat platform and no algorithm sets it apart from Mastodon, X, Lemmy, etc. Each have their strengths but they're all useful. Although Lemmy seems to have turned hardcore leftist so I don't bother with that one anymore. They're practically embracing communism there now.", 'created': '2024-11-14 22:13:24', 'submission_id': '1gr8scu'}
{'comment': 'LOL! 😆', 'created': '2024-11-16 03:09:21', 'submission_id': '1gr8scu'}
{'comment': "I knew only a damn good MAN, could've posted this!\xa0 I could smell the aftershave!\xa0 Woo!😘", 'created': '2024-11-15 22:32:55', 'submission_id': '1gr8scu'}
{'comment': 'True words. Free speech is free speech even if we don’t agree with something stupid.', 'created': '2024-11-14 22:16:43', 'submission_id': '1gr8scu'}
{'comment': "It's gotten to the point that I wonder if the majority of users here even interact with real world people. Their hyperbole is off the charts with extreme leftism.", 'created': '2024-11-14 20:06:16', 'submission_id': '1gr8scu'}
{'comment': 'Yeah, same with r/Ohio where any positive posts after the election are deemed duplicates and deleted, and told to post in the MegaThread. Kind of pathetic considering no duplicate negative Trump, Vance, Mareno or positive Issue 1 (gerrymandering) posts were allowed and allowed and allowed...', 'created': '2024-11-17 23:37:39', 'submission_id': '1gr8scu'}
{'comment': "Oh...I wouldn't join, but I did comment about the migrants... It was like stepping in poop, no doubt... And that's coming from a Californian! Our whole state is a shitshow right now!", 'created': '2024-11-18 05:56:34', 'submission_id': '1gr8scu'}
{'comment': 'I\'m older than most users here, brought up to respect the Office of the President, regardless of party affiliation... And, while we all were once cut from an umbilical cord, another generation was immediately hooked up with a USB cable... Hence, we have redditors that never had to actually live or learn respect... Many, I\'m afraid, have literally been born into division... This side, that side... They haven\'t been taught that we should all, as a country, respect and hope that the President elect does a great job in protecting the citizens... Am I happy that my choice was chosen by so many? Of course... But, for those who were raised being totally influenced by a USB cable... Might take some weaning... They don\'t know better... We all need to help them understand, "United, We stand... Divided, we fall..." President Trump is here to start that lesson... The only ones who will suffer, are the ones who have abandoned or neglected to follow that simple phrase and chosen to keep us divided...', 'created': '2024-11-14 20:47:23', 'submission_id': '1gr8scu'}
{'comment': "I was taught that too, but unfortunately we have no checks and balances on ideological extremism in our government so they've infiltrated it and are slowly turning it radical. I really don't know if they can be helped, even if we kicked all of those types out of government, healthcare, education etc, the ideology will still exist, it's never going away. In my opinion the two party system is dumb, because it inherently divides people, as we can see. We are one nation, so we should be one party, and our leaders should be trying to unite us and bring us closer together but they don't do that, they just divide us further and further.", 'created': '2024-11-15 03:19:30', 'submission_id': '1gr8scu'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-14 13:25:21', 'submission_id': '1gr3lyd'}
{'comment': "Pretty strong comment on the opposition's policies, isn't it.", 'created': '2024-11-14 13:57:23', 'submission_id': '1gr3lyd'}
{'comment': 'Let the fun begin!', 'created': '2024-11-14 13:51:12', 'submission_id': '1gr3lyd'}
{'comment': 'This whole time we been fighting to win, now that we’ve won let’s see exactly what we’ve been fighting for. Hope they don’t let us down', 'created': '2024-11-14 16:58:25', 'submission_id': '1gr3lyd'}
{'comment': ' 🧹🧹🧹', 'created': '2024-11-14 18:10:07', 'submission_id': '1gr3lyd'}
{'comment': "Now Trump's biggest battle won't be against the Democrats but against the RINOs.", 'created': '2024-11-15 03:43:54', 'submission_id': '1gr3lyd'}
{'comment': '***Why is Trump appointing House Republicans tho***', 'created': '2024-11-14 16:55:35', 'submission_id': '1gr3lyd'}
{'comment': 'It’s not actually full control, if you don’t have at least 60 seats in the senate. People seem to forget that.', 'created': '2024-11-14 17:18:44', 'submission_id': '1gr3lyd'}
{'comment': '**:)**', 'created': '2024-11-14 19:43:09', 'submission_id': '1gr3lyd'}
{'comment': 'Now they all better do right and not go back on their promises. Let’s go!!!!', 'created': '2024-11-14 22:07:20', 'submission_id': '1gr3lyd'}
{'comment': 'Ah yes totalitarian rule is the best for the Constitution..... just like forefathers wanted.', 'created': '2024-11-14 14:38:49', 'submission_id': '1gr3lyd'}
{'comment': 'Only if you use logical thinking, the left still believe it’s because half the country are raciest women haters.', 'created': '2024-11-14 14:31:57', 'submission_id': '1gr3lyd'}
{'comment': "The _only_ thing I ask - and it's going to be tight because they only have two years to make it happen before the midterms reverse all this - is national voter ID requirements. Because unless we can actually ban non-citizens from voting, this will be the last time there's a republican majority in government.", 'created': '2024-11-14 16:58:49', 'submission_id': '1gr3lyd'}
{'comment': None, 'created': '2024-11-14 17:39:33', 'submission_id': '1gr3lyd'}
{'comment': "What's totalitarian about the people voting their preferred party?", 'created': '2024-11-14 14:53:48', 'submission_id': '1gr3lyd'}
{'comment': "I think it's pretty telling that the media talking heads and the social media personalities are still talking down to a clear majority of the nation. What will it take for them to understand that their arrogance is not helping them ?", 'created': '2024-11-14 18:59:02', 'submission_id': '1gr3lyd'}
{'comment': 'Boggles my mind because there were plenty of non-white female Trump supporters. I assume they say those are just brainwashed though.', 'created': '2024-11-14 16:03:42', 'submission_id': '1gr3lyd'}
{'comment': 'I\'m genuinely surprised by their reaction to this - rather than stepping back and saying, "what did we do to push so many people so far away from us", they\'re saying "let\'s keep doing what we did that pushed so many people so far away from is, but even harder!"', 'created': '2024-11-14 16:56:55', 'submission_id': '1gr3lyd'}
{'comment': "True, all the Republicans are from solid districts. And as long the Republicans don't nominate someone like Roy Moore vs. a more moderate Dem. They should be alright. (Nominating Roy Moore over a Trump endorsee was very stupid)", 'created': '2024-11-14 17:41:42', 'submission_id': '1gr3lyd'}
{'comment': 'Never have been, and never will be a fan of 1 party rule.', 'created': '2024-11-14 14:58:43', 'submission_id': '1gr3lyd'}
{'comment': 'You mean Rachel Maddow isn’t god reincarnated on earth to lead us sniveling imbeciles out of the dark and into the rainbows she farts out her ass?', 'created': '2024-11-14 19:35:41', 'submission_id': '1gr3lyd'}
{'comment': 'I’m one of those Non-white male voters and my wife of 12 years is one of those non-white (educated/intelligent in case Mark Cuban is asking) voters. This was our 3rd time voting Trump and it was nice to see that a lot of our non-white family members came the light this last election; the ones that didn’t are the brainwashed ones.', 'created': '2024-11-14 17:18:26', 'submission_id': '1gr3lyd'}
{'comment': None, 'created': '2024-11-14 17:47:29', 'submission_id': '1gr3lyd'}
{'comment': "I'm a fan of having a government voted for by the people.", 'created': '2024-11-14 14:59:42', 'submission_id': '1gr3lyd'}
{'comment': 'Vivek is going to be the DOGE commissioner as per Trump (with Elon)', 'created': '2024-11-14 20:38:49', 'submission_id': '1gr3lyd'}
{'comment': "Honestly I'm not. The average person is a drooling idiot.", 'created': '2024-11-15 05:39:41', 'submission_id': '1gr3lyd'}
{'comment': "Well, when less than 1/3rd of the people voted for it, it's not really voted for by the people.", 'created': '2024-11-14 15:03:26', 'submission_id': '1gr3lyd'}
{'comment': "In that case, you disagree with basically every election we've ever had.", 'created': '2024-11-14 15:06:47', 'submission_id': '1gr3lyd'}
{'comment': "When you run a duopoly designed to disenfranchise the masses, yeah, makes it hard to validate those in positions of authority when the majority doesn't want them.", 'created': '2024-11-14 15:19:41', 'submission_id': '1gr3lyd'}
{'comment': ">when the majority doesn't want them.\n\nThat's quite the claim. I'm sure it's based off of something, right?", 'created': '2024-11-14 15:21:14', 'submission_id': '1gr3lyd'}
{'comment': 'You like excessive government spending? No matter how you feel about Trump, you have to be excited for DOGE if you are really against totalitarian regimes, right?', 'created': '2024-11-14 17:21:26', 'submission_id': '1gr3lyd'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-14 06:09:46', 'submission_id': '1gqxhl9'}
{'comment': 'I know nothing about this guy other than he uses way too much Botox and does some funky stuff with his eyebrows', 'created': '2024-11-14 12:32:14', 'submission_id': '1gqxhl9'}
{'comment': 'I love Trump, but I am not a fan of Gaetz. In my opinion, we have better options', 'created': '2024-11-14 23:43:42', 'submission_id': '1gqxhl9'}
{'comment': 'Maybe we’ll get lucky and he won’t t get confirmed.', 'created': '2024-11-14 08:55:18', 'submission_id': '1gqxhl9'}
{'comment': 'Seems like Trump’s selection process goes something like this: \n\nAttorney General? Who got shafted by the Department of Justice? Matt Gaetz? You are their boss now, go get em! \n\nDirector of National Intelligence? Who got shafted by the intelligence agencies? Tulsi Gabbard? You are their boss now, go get em!', 'created': '2024-11-14 12:35:39', 'submission_id': '1gqxhl9'}
{'comment': 'He looks like a supervillain', 'created': '2024-11-15 04:03:35', 'submission_id': '1gqxhl9'}
{'comment': "Shouldn't he have waited to be confirmed?", 'created': '2024-11-15 03:34:58', 'submission_id': '1gqxhl9'}
{'comment': 'Reminds me of Jim Carrey lol [link to vid](https://youtube.com/shorts/2v6DmGCPXv4?si=o7rHZvNgpQfVqF0X)', 'created': '2024-11-15 03:42:01', 'submission_id': '1gqxhl9'}
{'comment': 'This is an elaborate plan Trump made with Mike Johnson to get Gaetz out of the House. Trump knows he won’t get confirmed by the Senate. Quick and easy way to get rid of a problem without making him mad. 4D chess.', 'created': '2024-11-14 14:41:43', 'submission_id': '1gqxhl9'}
{'comment': 'His quick resignation was a timing thing for the replacement to go through in time for the next session.', 'created': '2024-11-14 14:01:47', 'submission_id': '1gqxhl9'}
{'comment': "It'd be funny if Trump pulls the AG spot from him just to get him out of congress.", 'created': '2024-11-14 17:18:53', 'submission_id': '1gqxhl9'}
{'comment': 'Who replaces him? Special election?', 'created': '2024-11-14 13:53:24', 'submission_id': '1gqxhl9'}
{'comment': 'I just hope there are no delays and the Senate can move forward with voting "yea" for all of Trumps nominations.', 'created': '2024-11-15 15:22:18', 'submission_id': '1gqxhl9'}
{'comment': 'Talk about counting your chickens before they hatch', 'created': '2024-11-14 15:45:03', 'submission_id': '1gqxhl9'}
{'comment': 'Great, another DEI hire.', 'created': '2024-11-14 07:48:02', 'submission_id': '1gqxhl9'}
{'comment': 'He’s getting to work now. No time to waste. No mercy. First up: Mayorkas investigation for his breaking federal laws on immigration.', 'created': '2024-11-14 15:32:57', 'submission_id': '1gqxhl9'}
{'comment': 'An attempt to find out the leaker in the ethics committee. I like the smokescreen but doubt he gets confirmed. Not sure what he will be doing as a private citizen. Most likely has a job on the Trump Train if all fails', 'created': '2024-11-14 16:23:10', 'submission_id': '1gqxhl9'}
{'comment': 'Great pick, one of the better ones aside from RFK and Gabbard', 'created': '2024-11-15 04:02:30', 'submission_id': '1gqxhl9'}
{'comment': 'He reminds me of Adam Baldwin from The Patriot/Firefly/Full Metal Jacket.', 'created': '2024-11-14 17:24:19', 'submission_id': '1gqxhl9'}
{'comment': 'The Botox is beyond creepy. He’s also a trash pick', 'created': '2024-11-15 02:49:13', 'submission_id': '1gqxhl9'}
{'comment': 'Apparently he resigned two days before the ethics report vote was to happen. If he’s not confirmed then I guess we will see him host on Fox?', 'created': '2024-11-14 13:54:18', 'submission_id': '1gqxhl9'}
{'comment': 'I wonder if that was the intent.', 'created': '2024-11-14 12:53:02', 'submission_id': '1gqxhl9'}
{'comment': 'He doesn’t need to get confirmed. If the Senate doesn’t cooperate and confirm Trump’s picks, the Senate will recess and all recess appointments don’t need Senate confirmation. They can remain in that position for 2 years too.', 'created': '2024-11-15 04:37:23', 'submission_id': '1gqxhl9'}
{'comment': 'What are you talking about? Do you even know a single thing about him or do you always just talk out of your ass?', 'created': '2024-11-15 01:41:37', 'submission_id': '1gqxhl9'}
{'comment': 'I actually believe Tulsi Gabbard can do a good job though. Matt Gaetz? That guys an idiot', 'created': '2024-11-14 13:36:14', 'submission_id': '1gqxhl9'}
{'comment': 'No, there was an ethics meeting he wanted out of', 'created': '2024-11-15 06:29:01', 'submission_id': '1gqxhl9'}
{'comment': 'Gaetz is probably in on it. Knows he won’t be confirmed, then gets to go crying back to Florida to run for governor after claiming that he was just too MAGA for the swamp.', 'created': '2024-11-14 17:00:45', 'submission_id': '1gqxhl9'}
{'comment': 'This.', 'created': '2024-11-15 01:45:36', 'submission_id': '1gqxhl9'}
{'comment': 'I think it was so he he could get out before that investigation was released. He’s gross.', 'created': '2024-11-15 01:43:43', 'submission_id': '1gqxhl9'}
{'comment': 'Mayorkas needs to go to prison, I hope Trump goes after his ass, and all the other people responsible for this mess!', 'created': '2024-11-14 16:27:59', 'submission_id': '1gqxhl9'}
{'comment': 'DOJ shills be downvoting 😂', 'created': '2024-11-14 18:54:13', 'submission_id': '1gqxhl9'}
{'comment': 'It’s been discussed in Another Forum that if he doesn’t get confirmed, DeSantis can appoint him to Rubio’s seat once he becomes SoS.\xa0\n\nIt’s a great way to twist their arms. Would they rather have him as AG for a year or two and then be rid of him, or as a permanent colleague in the Senate itself?', 'created': '2024-11-15 06:50:33', 'submission_id': '1gqxhl9'}
{'comment': 'Terrible pick', 'created': '2024-11-15 06:29:09', 'submission_id': '1gqxhl9'}
{'comment': 'So your top two picks are leftist democrats?', 'created': '2024-11-18 16:13:23', 'submission_id': '1gqxhl9'}
{'comment': 'Ahhh, muffin. Worried your lawfare system will be dismantled? It\'s OK, lawfare will continue... just per the Constitution and not some liberal interpretation of a "living document". \n\nDon\'t think your side will be able to continue 4B movement in prison. Bubba or Beatrice will provide them luvin\' whether they want it or not.', 'created': '2024-11-15 15:39:17', 'submission_id': '1gqxhl9'}
{'comment': 'I’d be happy not to see his face ever again.', 'created': '2024-11-15 01:44:12', 'submission_id': '1gqxhl9'}
{'comment': 'Pull that thread. How so?', 'created': '2024-11-14 13:16:05', 'submission_id': '1gqxhl9'}
{'comment': 'Do you think any senator would stand against Trump’s will ?', 'created': '2024-11-15 12:36:57', 'submission_id': '1gqxhl9'}
{'comment': 'Quiet down. Adults are talking.', 'created': '2024-11-15 01:42:12', 'submission_id': '1gqxhl9'}
{'comment': 'Here is the previous resume of the current Director of National Intelligence.\nHaines previously was Deputy National Security Advisor and Deputy Director of the Central Intelligence Agency (CIA) in the Obama administration. \n\nTulsi has been without a job for the last two years. She has no experience to back this kind of appointment other than Trump loyalty. She has atleast alittle more merit but for a party that talks about merit so much, sine by side resume to the last few Directors and she is far behind.', 'created': '2024-11-14 13:59:58', 'submission_id': '1gqxhl9'}
{'comment': 'What on her resume would you cite as evidence for her qualifications?', 'created': '2024-11-14 23:44:56', 'submission_id': '1gqxhl9'}
{'comment': 'Eh tulsi has said openly the us should befriend china and stop being against them. Also her Ukraine position…', 'created': '2024-11-18 16:11:31', 'submission_id': '1gqxhl9'}
{'comment': 'Gaetz also gets out of the investigation that was going on in congress about him being inappropriate.', 'created': '2024-11-14 17:20:20', 'submission_id': '1gqxhl9'}
{'comment': 'I live in Florida and there is no way he would be elected governor. Especially after a masterful governor like DeSantis.', 'created': '2024-11-14 17:02:24', 'submission_id': '1gqxhl9'}
{'comment': 'Agree. There was no presidential executive order to hide behind. He simply instructed repeated breaking of federal law.', 'created': '2024-11-14 18:43:19', 'submission_id': '1gqxhl9'}
{'comment': 'I keep seeing this, can you explain why? \n\nThe most I’ve seen from people is he was investigated for relations with a minor, however being investigated literally means nothing to me. We’ve seen how corrupt the department of justice is and from what I saw the investigation was dropped. \n\nWe can’t go around playing guilty until proven innocent.', 'created': '2024-11-15 09:29:33', 'submission_id': '1gqxhl9'}
{'comment': '2-d thinking here. Fitting for a neocon.', 'created': '2024-11-18 19:35:15', 'submission_id': '1gqxhl9'}
{'comment': 'The ongoing investigation into Gaetz by the House Ethics Committee will have no jurisdiction the second Gaetz resigns from Congress. They can publish their findings but no jurisdiction, no legal consequences.\n\nThe investigation was renewed not too long ago by the Committee, which is led by a Republican, no less.', 'created': '2024-11-14 20:24:25', 'submission_id': '1gqxhl9'}
{'comment': 'It’s possible. Considering 1/3rd of the 100 senators are up for reelection every 2 years. A senator’s willingness to stand up to Trump could be determined by when they are up for reelection (2026, 2028 or 2030). I personally think it would be political suicide to oppose Trump this early after seeing such overwhelming support for him from The People on 5 November. It would almost guarantee they face a very tough primary challenger. \n\n\nTrump only picked about 300 of the roughly 4,000 appointments in his first term. RINOs and establishment Democrats convinced him to pick the other 3,700. He won’t make that mistake again. Trump will have a huge role in all 4,000 picks this time. If he faces resistance, many of the appointments will be made while the Senate is in recess and senate confirmation isn’t needed. We are going to have the ultimate Dream Team this time.', 'created': '2024-11-15 15:54:40', 'submission_id': '1gqxhl9'}
{'comment': 'Okay Junior. At least I have a secret security clearance from actually serving and retiring from the US Army. Sorry I’m not a big man like you.', 'created': '2024-11-15 01:45:32', 'submission_id': '1gqxhl9'}
{'comment': 'I hope you’re right.', 'created': '2024-11-14 17:03:00', 'submission_id': '1gqxhl9'}
{'comment': 'While I do find him insufferable, I also believe these positions should be based on merit, not just loyalty and being a big name. His record as a lawyer is completely inadequate. Out of the whole country, is this really the guy deserving to lead the department of justice? Or is this just patronage?', 'created': '2024-11-16 07:11:25', 'submission_id': '1gqxhl9'}
{'comment': 'They’re stuck on the image thing with MTG like it’s high school. I’d rather have someone that stands on principle than bend over backwards for Ukraine while Americans struggle to afford anything.', 'created': '2024-11-15 12:15:26', 'submission_id': '1gqxhl9'}
{'comment': 'True, I’m a fake conservative lets go ahead and support a former dnc vice chair, democratic presidential nominee, and representative who supports universal basic income, the green new deal, and universal healthcare. Truly the most conservative choice out there.', 'created': '2024-11-18 19:37:30', 'submission_id': '1gqxhl9'}
{'comment': "Well except some of the allegations might have a criminal nexus so while he won't be censored as a Congressman he can still be charged as a suspect in a crime.", 'created': '2024-11-15 03:36:19', 'submission_id': '1gqxhl9'}
{'comment': 'Matt Gaetz and Tulsi Gabbard would never be a dream team. Last time was the dream team with Haley and Pompeo.', 'created': '2024-11-18 16:10:47', 'submission_id': '1gqxhl9'}
{'comment': 'Ooo. I’m sorry. Didn’t realize I was taking to Rambo. Please don’t hurt me.', 'created': '2024-11-15 01:48:02', 'submission_id': '1gqxhl9'}
{'comment': 'You’ve got to have the mind of a child to drag your feet bc you can’t accept people change views based on current facts and stimuli.', 'created': '2024-11-18 19:39:12', 'submission_id': '1gqxhl9'}
{'comment': 'Haley is a RINO and puppet for the MIC. Pompeo is a deep state rat who drew up plans to assassinate Julian Assange. Gaetz and Gabbard are going to be amazing. The best part is they’ll drive low information and low IQ lefties and liberals totally insane.', 'created': '2024-11-18 19:07:35', 'submission_id': '1gqxhl9'}
{'comment': 'No, just someone who’s actually done something for their country and not just sat behind their keyboard saying garbage about true public servants.', 'created': '2024-11-15 01:50:11', 'submission_id': '1gqxhl9'}
{'comment': 'Ofc people can change their views. But I don’t think tulsi has ever publicly denounced her old positions or said anything to not believe she doesn’t still support them, she just only talks about foreign policy and muh deep state. If you can show me a clip where she disagrees with ubi, universal healthcare, or the green new deal then I will gladly admit I was wrong.', 'created': '2024-11-18 19:42:02', 'submission_id': '1gqxhl9'}
{'comment': 'The only reason Trump chose them is cus ‘muh revenge’ not because they’re actually qualified. Idk about you but I think we should focus on doing what’s best for the nation and not completely focus on petty vengeance and vendettas against our political opponents.', 'created': '2024-11-18 19:39:00', 'submission_id': '1gqxhl9'}
{'comment': 'Pshh. Dude. You need to stop sanctifying politicians and using your otherwise admirable service as some permission slip for imagined authority.', 'created': '2024-11-15 01:52:10', 'submission_id': '1gqxhl9'}
{'comment': 'Who cares? It’s not like she’s appointed to a position that will have any sway over those issues.', 'created': '2024-11-18 19:43:32', 'submission_id': '1gqxhl9'}
{'comment': 'Gabbard and Gaetz will be what’s best for the nation. You don’t have to agree. You have every right to your opinion even if your opinion is wrong. \n\n\nIt must be very difficult waking up on the morning of November 6th and realizing that the vast majority of America doesn’t think like you do. That the nation has rejected far-left socialist, Marxist and communist ideologies. Rejected radical progressivism and unchecked liberalism. That the media lied to you for over a decade and convinced you that “orange man bad”. \n\n\nBut this election proved that America isn’t falling for the propaganda, lies, gaslighting, projection, anymore. This 2024 victory was bigger than 2016. The media made it seem like the Left are the majority when in fact they are the small fringe minority. The media was protecting the corrupt system that the democrats are a part of. The small fringe minority is typically the actual cult. Not the vast majority of a nation. \n\n\nYou probably fell for all of the hoaxes, lies and propaganda because you likely get your news from the fake news. CNN, MSNBC, Yahoo News, Newsweek, AP, Reuters, MSN, The Hill, The Atlantic, The Guardian, The NY Times, The Washington Post. It’s all fake news pushing the same propaganda. They get their marching orders from the White House, US State Department and corrupt elements within the IC. Government influence Ops to control the way you think and vote. It’s very powerful stuff. \n\n\nI just don’t see how a Democrat could possibly win a national election for at least the next 12 years. With Democrat voter registrations at a 15 year low, the Democrat party is going extinct. Or at least becoming irrelevant. Enjoy MAGA and the America First agenda until 2036. 😆', 'created': '2024-11-18 20:11:33', 'submission_id': '1gqxhl9'}
{'comment': 'She’ll still be in the cabinet room when those issues are being discussed and able to give advice and feedback. Also more so I’m worried that the gop will be blind to her faults and nominate her for president or vice president in 28.', 'created': '2024-11-18 19:46:18', 'submission_id': '1gqxhl9'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-14 05:35:04', 'submission_id': '1gqwwc6'}
{'comment': 'Someone help me please. My kids are enrolled in public school because my wife and I work. They’ve come out fine since we teach them a lot after work and have family dinners and outings(not worried about them being brainwashed). One wants to be a lawyer and the other a software engineer. They’re both pre teens. I’m worried my kids will be displaced and no where to learn. Homeschooling is not an option that’s feasible for our family. No one can seem to give me a thorough reply when I ask in this subreddit.\n\nEdits: ironically my little one wants to be a math teacher for poor kids and travel (similar to travel nurses). We picked our school district based on reviews and curriculum and haven’t seen our kids lean blue. Truly believe that starts in the house as both my older kids are T supporters', 'created': '2024-11-14 13:07:03', 'submission_id': '1gqwwc6'}
{'comment': 'So no education leads to smarter kids? This doesn’t make sense.', 'created': '2024-11-14 14:02:30', 'submission_id': '1gqwwc6'}
{'comment': "This would be funnier if it weren't so true.", 'created': '2024-11-17 07:50:42', 'submission_id': '1gqwwc6'}
{'comment': 'I approve this message.', 'created': '2024-11-14 05:47:51', 'submission_id': '1gqwwc6'}
{'comment': "68 Billion dollars of deficit spending gone just like that. I'd call that a win. I don't even know what they do because whatever the heck it is there's no way anyone can say that it's working. Unless it's to load dump trucks of cash over to ActBlue.", 'created': '2024-11-14 06:49:49', 'submission_id': '1gqwwc6'}
{'comment': 'We need to start doing things similar to Asia in education. It also starts at home, and yes some kids should be left behind and go to trade school', 'created': '2024-11-14 13:55:04', 'submission_id': '1gqwwc6'}
{'comment': 'Education starts with parenting. Teachers are not babysitters.', 'created': '2024-11-14 16:46:55', 'submission_id': '1gqwwc6'}
{'comment': "I am not sure how transparent the money from the government to the state is and the from the state to the local level. Also don't know are we talking k-12 or higher education. Seems by the time it gets down to the local level everyone has gotten their taste anyway. In Texas government Abbot has not released funds for years. Because the voters have not voted for school choice. Not sure if those from the government are included in that. I would think they are. Not sure if not have the DOE would change anything in Texas at all on the k-12 level.", 'created': '2024-11-14 18:50:33', 'submission_id': '1gqwwc6'}
{'comment': "Abolishing federal oversight for education and employing state representatives do do their jobs. More money will go to schools and teachers as the state owns the schools. States can provide more with state controlled funding. \n\nTrump is removing control from the federal government and empowering states to provide for their citizens. \n\nHence, the overturn of ROE V. WADE. We didn't abolish abortions, we gave the rights back to the states to allow voters to decide. It is how people can hold the government accountable.", 'created': '2024-11-14 19:30:25', 'submission_id': '1gqwwc6'}
{'comment': "Ummm, let's hope so. 🇺🇸", 'created': '2024-11-14 06:38:48', 'submission_id': '1gqwwc6'}
{'comment': 'Too smart or less indoctrinated?', 'created': '2024-11-14 13:03:03', 'submission_id': '1gqwwc6'}
{'comment': 'True.', 'created': '2024-11-14 05:40:43', 'submission_id': '1gqwwc6'}
{'comment': 'Please let’s pray for this', 'created': '2024-11-14 12:10:54', 'submission_id': '1gqwwc6'}
{'comment': 'My understanding, contrary to the first response is that it’s 14% and not 9%, also this will lead to less resources for public schools leading to many closing. Charter schools will open however there isn’t much restrictions on them. Since you work, I’m assuming you may have planned for children to get Pell Grants, those will be gone if Trump gets rid of DOE. I think I would prepare for the worst and pray for the best. Worst may be you may need to cover private school costs or get a voucher and your kids will need to apply to programs. Short term it will be devastating. \n\nLeaving to states, never really works out if you are in states like Mississippi for example as they tend to funnel money into other areas(see Brett Favre or see Jail Wardens high 6 figure salaries).', 'created': '2024-11-14 14:07:03', 'submission_id': '1gqwwc6'}
{'comment': 'the DoE does not operate a single school, not does it employ a single teacher. It oversees federal money sent to states.\n\n\nTrump wants to eliminate it and simply give the money to the states and let them handle it. Which is what we desperately need.\n\n\nAll these people talking about "oh no this will destroy education" are fools.', 'created': '2024-11-14 15:12:56', 'submission_id': '1gqwwc6'}
{'comment': "My understanding is that Trump wants to empower the states to make their own decisions regarding education. The federal government is committing 9% of its budget to the department of education but has 90% restrictions on it. Trump doesn't want to end the funding but he wants to allow the states to make their own decisions on how to educate their children. That's how I understood it at least.", 'created': '2024-11-14 13:53:48', 'submission_id': '1gqwwc6'}
{'comment': 'Why would your kids or any others be displaced? The federal Dept of Education does not educate children. Each state is responsible for their own state’s education system.\n\nThe federal DOE funnels federal tax dollars to the states for certain programs, sure. But there’s no reason to think quality, non-wasteful programs would be eliminated. They’ll simply be run by the state (as they already are doing) and funded directly from Congress.', 'created': '2024-11-14 14:42:34', 'submission_id': '1gqwwc6'}
{'comment': "Your kids will be better students because you as parents are showing an active interest in their education. Many households don't or can't take any interest and those kids will do poorly in school.\n\nSchools existed before 1979 when the federal department of education was created. It was built with good intentions, but has ballooned into a multi billion dollar waste. \n\nAs long as you as parents remain active with your kids homework and with your local school board, you will be fine.", 'created': '2024-11-14 15:18:42', 'submission_id': '1gqwwc6'}
{'comment': 'Dept of Ed has a 289 billion dollar budget. If they go away and we split that money equally across the county by population. In NC that would be adding 7.5 billion to the state to fund education. Trust me when I tell you that is way more than we get from the feds now. If states had that kind of money they would be able to afford to pay teachers and get more services for the kids. Source I work for schools.', 'created': '2024-11-15 04:57:01', 'submission_id': '1gqwwc6'}
{'comment': 'The department of education doles out lots of money with strings attached often to meet various DEI and other nebulous goals. Before 1980 all school funding was local and state and frankly school quality was higher.\n\nRemember the failure of “no child left behind” which was a Department of Education mishap. Not having funding dependent on goals like how many illegals a school takes in is a good thing.', 'created': '2024-11-14 17:52:29', 'submission_id': '1gqwwc6'}
{'comment': '“The department of education” you guys continues to blow my mind. So you instantly think this means no education? Did you vote Kamala? Lol I think he means the entire liberal based narrative in schools aka the department of education.', 'created': '2024-11-14 21:42:23', 'submission_id': '1gqwwc6'}
{'comment': 'Why would there be no education? The DoE does not run schools.', 'created': '2024-11-14 15:19:09', 'submission_id': '1gqwwc6'}
{'comment': 'Before the Carter started the DoE in 1979, the US was #1 in education. Now? Not even close. It’s done more harm than good.', 'created': '2024-11-14 14:47:37', 'submission_id': '1gqwwc6'}
{'comment': 'I approve this approval. 👍\n\nEdit: Image being the woke person whose panties are perpetually twisted so tightly they felt the need to down vote this. 😆', 'created': '2024-11-14 05:56:51', 'submission_id': '1gqwwc6'}
{'comment': 'Yeah I know absolutely nothing about them I doubt they even do anything.', 'created': '2024-11-14 07:34:59', 'submission_id': '1gqwwc6'}
{'comment': 'Carter gave us the DOE and our test scores immediately started to plummet. It isn’t working now and it never has!', 'created': '2024-11-14 14:47:34', 'submission_id': '1gqwwc6'}
{'comment': 'Less time teaching bullshit and more time on actual education means higher educated students that can see through the bullshit.', 'created': '2024-11-14 14:15:14', 'submission_id': '1gqwwc6'}
{'comment': 'If op and his wife are both working they probably wouldn’t qualify for a PEL grant anyways. \n\nIt’s still possible to have grants for higher education. I’m interested to see what the exact plan is before jumping to conclusions.', 'created': '2024-11-14 15:17:26', 'submission_id': '1gqwwc6'}
{'comment': "So how did schools thrive before the DOE was created? Seems local school control has always worked best for many of us before it was born in the late '70s.", 'created': '2024-11-17 08:17:06', 'submission_id': '1gqwwc6'}
{'comment': 'If Maine of all States can figure out how to provide 2 years of college for "free" to kids, it could figure out how to properly fund public schools. However, Trump does not want to end funding. He wants States to figure out how to better educate our children. Kids are stupid. Have you ever tried having a conversation with an early 20 year old these days? Good kids, but were just taught wrong.', 'created': '2024-11-14 23:13:34', 'submission_id': '1gqwwc6'}
{'comment': 'And please keep in mind, that generally federal money has strings attached. I would be much happier with receiving a chunk of money and the State department of education doing with it as it deems fit.', 'created': '2024-11-14 16:44:22', 'submission_id': '1gqwwc6'}
{'comment': 'Thanks. We’ll just wait and see how it goes then. I live in a blue state but in a very red rural-ish city. Should be interesting years', 'created': '2024-11-14 14:01:52', 'submission_id': '1gqwwc6'}
{'comment': 'Do you have a source for these details?', 'created': '2024-11-14 14:03:34', 'submission_id': '1gqwwc6'}
{'comment': 'It sounds like schools would close and charter schools would open or private schools which is more expensive for us.', 'created': '2024-11-14 17:37:23', 'submission_id': '1gqwwc6'}
{'comment': 'Thank you, appreciate it', 'created': '2024-11-14 15:32:25', 'submission_id': '1gqwwc6'}
{'comment': 'Thank you, was that across all 50 states? Do you happen to have the data source the quality statement is from? The state we live in scores high for education- even our red cities so that’s why I’m curious.', 'created': '2024-11-14 17:54:37', 'submission_id': '1gqwwc6'}
{'comment': '? You follow this sub and continuously stir stuff up. You obviously do zero unbiased research based on all your comments.', 'created': '2024-11-16 05:02:17', 'submission_id': '1gqwwc6'}
{'comment': 'It doesn’t but it funds public schools I believe (correct if wrong?) and some of the nicer public schools are pretty good in our experience but I think that’s the concern', 'created': '2024-11-14 17:38:54', 'submission_id': '1gqwwc6'}
{'comment': 'I approve of this approval of the approval 👍🏻', 'created': '2024-11-14 07:41:46', 'submission_id': '1gqwwc6'}
{'comment': "Trump acknowledged in the Rogan interview, I believe, that out of the entire world the USA scores extremely low compared to other countries in the education field despite spending the most money on education. That's an issue. Countries like China who spend less than us are at the top of the leaderboard as far as education is concerned. I believe Trump wants to kill two birds with 1 stone here. More efficient spending on education and having the states set up the curriculum.", 'created': '2024-11-14 14:39:40', 'submission_id': '1gqwwc6'}
{'comment': 'https://www.fox5dc.com/news/trump-calls-disband-department-education\n\nI looked at a few articles but they all say slightly different things. This one was done by fox + AP news and I generally consider AP as good journalism.', 'created': '2024-11-14 14:27:51', 'submission_id': '1gqwwc6'}
{'comment': 'The department of education absolutely has jurisdiction over all 50 states yes. \n\nhttps://blog.aarp.org/bulletin-today/u-s-global-education-rankings-slipping-boomers-once-held-strong-lead\n\nhttps://blog.prepscholar.com/average-sat-scores-over-time', 'created': '2024-11-14 18:12:18', 'submission_id': '1gqwwc6'}
{'comment': 'It gives some funding to public schools. That funding could still be provided to the states to disperse to the schools', 'created': '2024-11-14 19:19:18', 'submission_id': '1gqwwc6'}
{'comment': "It gives some funding but most funding for schools come at the local and state level. You don't need a full fledged Federal department to disperse federal money. You also don't need a bureaucratic department to provide standards and oversight. Much of that can be done by a Congressional committee and that is much better because we elect members of Congress. The bureaucrats in the Dept of Education are unelected and not beholden to the taxpayers.", 'created': '2024-11-15 08:22:50', 'submission_id': '1gqwwc6'}
{'comment': 'Thank you!', 'created': '2024-11-14 19:27:09', 'submission_id': '1gqwwc6'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-14 01:29:39', 'submission_id': '1gqs5sm'}
{'comment': "The podcast blitz that Trump & Vance did before the election is going to be studied for years and is going to become the norm. People want to know that their elected leaders are normal people who can have unscripted conversations. Clearly a box Harris didn't check.", 'created': '2024-11-14 05:26:54', 'submission_id': '1gqs5sm'}
{'comment': 'This is why she lost the election. Not because she had conditions for Joe, but because she refused to have a single open, honest, and free-flowing conversation about her vision for the country even once during her entire campaign.', 'created': '2024-11-14 04:41:07', 'submission_id': '1gqs5sm'}
{'comment': "Why didn't they want her discussing a major issue? They could have had a good 45 minute discussion about it.", 'created': '2024-11-14 02:23:23', 'submission_id': '1gqs5sm'}
{'comment': 'I imagine it’s because of opening her up to exposure of locking people up for weed despite using it herself.', 'created': '2024-11-14 06:23:40', 'submission_id': '1gqs5sm'}
{'comment': 'That\'s hilarilous\n\nI\'m assuming they also had a list of things to make the interview more "structured" lmao.\n\nNot that it would\'ve helped we saw how she couldn\'t answer basic questions on CNN.', 'created': '2024-11-14 05:09:34', 'submission_id': '1gqs5sm'}
{'comment': "Kamala is a bad candidate through and through. She constantly has problems answering questions that has been asked many times before. She struggles and stumbles so much, it's mind boggling.\n\nIt's no wonder she wouldn't go on Rogan. She would have crashed and burned.", 'created': '2024-11-14 11:18:23', 'submission_id': '1gqs5sm'}
{'comment': 'Mean while Vance had a lengthy conversation with Theo Von about addiction and the impact it’s has on people. Then turned around and had a conversation about reclassifying drugs and legalizing testing of psychedelics with Rogan. \nWe definitely shouldn’t talk about weed though.', 'created': '2024-11-14 15:24:57', 'submission_id': '1gqs5sm'}
{'comment': 'Is she even capable of putting more than 2 coherent sentences together?', 'created': '2024-11-14 04:04:52', 'submission_id': '1gqs5sm'}
{'comment': 'Because he’d ask about the disparity of her actual record and the record she chose to run on.', 'created': '2024-11-14 16:46:06', 'submission_id': '1gqs5sm'}
{'comment': 'Didn’t she come out in support of legalization in another podcast to outreach to the black community?', 'created': '2024-11-14 05:33:26', 'submission_id': '1gqs5sm'}
{'comment': 'It definitely sounds like she was back tracking about legalized marijuana by refusing to even discuss it. Considering her track record of jailing a couple thousand people for possessing or dealing it', 'created': '2024-11-15 03:54:27', 'submission_id': '1gqs5sm'}
{'comment': 'Wonder if she will pop up again b4 time runs out. Kinda miss "I come from a middle class family"', 'created': '2024-11-14 11:56:16', 'submission_id': '1gqs5sm'}
{'comment': 'Because people are idiots. Kamala definitely had the ability to gain voters just by being personable. In the lefties mind - orange man = mean = bad president. Regardless of his actual ability to govern the country, he’s just not as like-able to morons who don’t understand policy.', 'created': '2024-11-14 23:52:34', 'submission_id': '1gqs5sm'}
{'comment': 'Lol maybe they’ll learn that conditions for not answering relevant questions means you are incapable of doing anything Americans want you to do. It’s amazing how dumb they think we are.', 'created': '2024-11-15 15:24:06', 'submission_id': '1gqs5sm'}
{'comment': 'Tell me you have no idea what Joe is like without telling me you have no idea what Joe is like lmao', 'created': '2024-11-14 04:32:07', 'submission_id': '1gqs5sm'}
{'comment': 'Agreed. It was probably the single smartest move across all 3 of Trump’s campaigns.', 'created': '2024-11-14 18:31:08', 'submission_id': '1gqs5sm'}
{'comment': 'I’d love to see the debates hosted in a podcast format. Have them every week, each deep-diving on a different topic. Make the candidates sit across from each other and have a real discussion instead of shouting rehearsed lines from a podium.', 'created': '2024-11-14 13:21:49', 'submission_id': '1gqs5sm'}
{'comment': 'Impressive attempt running a campaign without a policy plan. Shows that political sides will vote yes no matter who.', 'created': '2024-11-14 15:48:55', 'submission_id': '1gqs5sm'}
{'comment': "Because she didn't have a vision. She had quips.", 'created': '2024-11-14 12:51:51', 'submission_id': '1gqs5sm'}
{'comment': 'Exactly. All of her interviews showed she really had no idea of the policies she was trying to implement. Sorry, referring to your website doesn’t work Kamala. You have to actually be able to speak off the cuff on these issues which she was completely unable to do.', 'created': '2024-11-14 23:49:13', 'submission_id': '1gqs5sm'}
{'comment': 'Probably because she grew up in a middle class family.', 'created': '2024-11-14 03:03:25', 'submission_id': '1gqs5sm'}
{'comment': 'Rogan thought it might have been because she put a lot of folks in prison for pot, so her staff said it was off limits', 'created': '2024-11-14 04:19:21', 'submission_id': '1gqs5sm'}
{'comment': 'Not sure she could have a good 45 minute discussion about anything', 'created': '2024-11-14 03:07:06', 'submission_id': '1gqs5sm'}
{'comment': ' Why didn’t the Voters turn up for Harris? Plain and simple, they didn’t like their candidate . She was the least popular VP in recorded history, who bypassed the nomination process, is directly tied to the least popular president in modern history who created massive 20% inflation along with record high interest rates, opened the borders, eliminated U.S. energy independence, allowed 2 major wars to continue, refused to protect women in locker rooms and in sports, attacked parents, attacked the 1st and 2nd amendments and attacked religion. \n\nHarris failed miserably as the Border Czar, refused open, unscripted tv interviews, can’t speak without a teleprompter, had zero policies besides DEI, said she wouldn’t do anything different than Biden did, was part of covering up Biden’s extreme mental decline , spent over a BILLION DOLLARS in her failed campaign and was not endorsed by major papers across the U.S.? 75% of the country thinks the country is going in the wrong direction!!!', 'created': '2024-11-14 08:54:12', 'submission_id': '1gqs5sm'}
{'comment': 'Because she put hundreds, probably thousands, of people behind bars for drug related crimes when she was DA in California.', 'created': '2024-11-14 12:17:57', 'submission_id': '1gqs5sm'}
{'comment': 'These are the kinds of things that happen when you lack integrity and moral values.', 'created': '2024-11-14 12:55:19', 'submission_id': '1gqs5sm'}
{'comment': 'And will create an opportunity economy.', 'created': '2024-11-14 03:39:05', 'submission_id': '1gqs5sm'}
{'comment': 'She did?????!!!!!!', 'created': '2024-11-14 03:44:42', 'submission_id': '1gqs5sm'}
{'comment': 'big facts, she grew up in a middle-class family.', 'created': '2024-11-14 07:36:01', 'submission_id': '1gqs5sm'}
{'comment': "No I heard it's because she worked at McDonald's.", 'created': '2024-11-14 12:52:29', 'submission_id': '1gqs5sm'}
{'comment': 'What? This is the first im hearing of this.', 'created': '2024-11-14 07:17:42', 'submission_id': '1gqs5sm'}
{'comment': 'But she was full of joy!', 'created': '2024-11-14 13:18:05', 'submission_id': '1gqs5sm'}
{'comment': 'We keep saying that voters didn’t turn out, but they did. This election was a lot closer than we’re pretending. \n\nShe got nearly 73 million votes with zero platform and being a disliked candidate. Imagine if she had an ounce of charisma or an ounce of proposed policy…\n\n\nI’m excited as hell for the potential turn around this country is about see over the next two Years, but if we don’t prioritize fixing our broken election process, these changes we’re making will be for nothing.', 'created': '2024-11-14 16:05:03', 'submission_id': '1gqs5sm'}
{'comment': 'tapping on the dreams, ambitions and aspirations of the American people.', 'created': '2024-11-14 15:40:29', 'submission_id': '1gqs5sm'}
{'comment': 'I’ve never heard that before. We need details!', 'created': '2024-11-14 04:20:45', 'submission_id': '1gqs5sm'}
{'comment': 'Lol', 'created': '2024-11-14 11:53:24', 'submission_id': '1gqs5sm'}
{'comment': 'She was so full of joy that after she lost there were people screaming "we love you Kamala!" To her. Like why do these people say they love her? Because she\'s a woman? She had no idea what the fuck she was doing and said absolutely nothing important during her campaign and did absolutely nothing to help Americans over the past 4 years. Like wtf do they love so much about her?', 'created': '2024-11-14 15:49:15', 'submission_id': '1gqs5sm'}
{'comment': '🤣😆', 'created': '2024-11-14 04:22:23', 'submission_id': '1gqs5sm'}
{'comment': 'At least we have the senate and the House', 'created': '2024-11-14 03:01:08', 'submission_id': '1gqo8bh'}
{'comment': 'what worries me, is how many of those seats are rhinos? because a specific number of people with an (R) next to their name do vote with the dems on a fair number of issues. and its really hard to tell at a glance, especially since a primary can change that, or a newly flipped seat can be an unknown.', 'created': '2024-11-14 13:21:32', 'submission_id': '1gqo8bh'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 22:03:10', 'submission_id': '1gqni1p'}
{'comment': "I don't think Gaetz will end up with the job. He has a tough time ahead.", 'created': '2024-11-13 23:47:20', 'submission_id': '1gqni1p'}
{'comment': "They put her on a no-fly list as a terrorist (just an error, oops) after she came out supporting Trump and now she's their boss lol.", 'created': '2024-11-13 22:08:46', 'submission_id': '1gqni1p'}
{'comment': 'Yup. NOW it is official Rubio has been put in as Secretary of State.', 'created': '2024-11-13 22:10:03', 'submission_id': '1gqni1p'}
{'comment': 'Has Gaetz ever tried a case in his life? \n\nThere are plenty of prosecutors and defense attorneys in this country should’ve picked one of them.', 'created': '2024-11-13 22:58:19', 'submission_id': '1gqni1p'}
{'comment': 'I love two of these picks. But picking Gaetz is a mistake. He has no experience.', 'created': '2024-11-13 22:11:23', 'submission_id': '1gqni1p'}
{'comment': 'I could understand Jonathon Turley for the position. I wouldn’t trust Gaetz to run my local DMV.', 'created': '2024-11-13 23:12:56', 'submission_id': '1gqni1p'}
{'comment': 'Gaetz horrible', 'created': '2024-11-13 23:00:02', 'submission_id': '1gqni1p'}
{'comment': 'I’m definitely surprised by the Gaetz pick for AG not too sure about it, wonder who else was considered.\nRubio and Gabbard are great picks and I think they’ll do quite well in their roles.', 'created': '2024-11-13 23:16:10', 'submission_id': '1gqni1p'}
{'comment': 'I hope he puts Kash Patel somewhere. I like him', 'created': '2024-11-13 22:50:31', 'submission_id': '1gqni1p'}
{'comment': 'I hate Matt Gaetz more than almost any other politician. Very upset with this pick', 'created': '2024-11-14 01:14:20', 'submission_id': '1gqni1p'}
{'comment': "He must have promised Gaetz the nomination for some reason. Maybe he doesn't really care if he gets confirmed or not and they have to move to the next (better) choice.", 'created': '2024-11-14 00:04:04', 'submission_id': '1gqni1p'}
{'comment': 'Respectfully, but don’t most Republicans like the idea of giving government posts to people based on merit? Yet Gaetz practiced law for like two years before becoming a member of the House, and while Hegseth has combat experience he has never been in command of any kind of larger force, nor been in charge of military strategy or logistics on a large scale. Aren’t there other people way more qualified for these jobs?', 'created': '2024-11-14 10:28:18', 'submission_id': '1gqni1p'}
{'comment': 'I don’t like Gaetz. Him and rep MTG weren’t really helping our party and more directly dividing it when it came to a republican speaker. It was a time to show people we could be united, not divided', 'created': '2024-11-14 04:00:45', 'submission_id': '1gqni1p'}
{'comment': 'Not a fan of the Gaetz pick.', 'created': '2024-11-14 14:45:58', 'submission_id': '1gqni1p'}
{'comment': 'i’ve heard of Rubio a lot but don’t know much anyone care to fill me in?', 'created': '2024-11-13 22:43:03', 'submission_id': '1gqni1p'}
{'comment': 'Elon and Vivek working together though, I love it. Talk about a dream team. I feel like they will actually implement real improvements too and not just be all talk.', 'created': '2024-11-14 05:13:30', 'submission_id': '1gqni1p'}
{'comment': 'Obsessed. I’m feeling sooo optimistic that not even Reddit can drag me down.', 'created': '2024-11-14 02:49:49', 'submission_id': '1gqni1p'}
{'comment': 'Rubio is the worst', 'created': '2024-11-13 23:14:15', 'submission_id': '1gqni1p'}
{'comment': "I can't wait to see where Trump puts Mike Lindell!", 'created': '2024-11-14 21:26:19', 'submission_id': '1gqni1p'}
{'comment': 'Rubio and Gabbard are good selections, in my opinion', 'created': '2024-11-14 23:46:20', 'submission_id': '1gqni1p'}
{'comment': 'Gaetz is the only terrible pick here\n\nThat fox news rando is also kinda bad\n\nBut overall Trump has been on point', 'created': '2024-11-14 03:37:54', 'submission_id': '1gqni1p'}
{'comment': 'I’m so stoked for this Administration! I haven’t been this excited my entire life for anything political. President Trump can finally make changes now that we have the House, Senate & Governors. Crazy!', 'created': '2024-11-13 23:37:19', 'submission_id': '1gqni1p'}
{'comment': 'Bobby Jindal has always been a favorite of mine. Not sure if he will find a place in the admin.', 'created': '2024-11-14 00:17:25', 'submission_id': '1gqni1p'}
{'comment': 'Two outta three ain’t bad.', 'created': '2024-11-14 04:02:21', 'submission_id': '1gqni1p'}
{'comment': 'I like tulsi but the other two are bad picks. It’s like Trump said he’d drain the swamp but only in one part and expand it in another.', 'created': '2024-11-14 08:45:51', 'submission_id': '1gqni1p'}
{'comment': 'Love Gabbard and Gaetz, they are exactly the type of people the we were expecting when we voted for Trump. Marco Rubio is making my head spin, that’s exactly who we expected to stay out of positions of power when we voted for Trump. The picks have been great but Rubio gives me some concern. I guess at the end of the day Trump will be the one negotiating with foreign leaders so maybe it’s not as a dangerous as I suspect, no war hawks!', 'created': '2024-11-14 00:02:33', 'submission_id': '1gqni1p'}
{'comment': "If this is the kind of nominee Trump's considering then it's vitally important that the Senate \\*not\\* go into recess or allow Trump to make any recess appointments. Those were intended only for emergencies, not to allow the President to push through his sycophants without having to go through the nominations process. Time to restore the checks and balances between co-equal branches of government.", 'created': '2024-11-14 14:25:58', 'submission_id': '1gqni1p'}
{'comment': "I would be very surprised if he's confirmed by the Senate. What a terrible pick", 'created': '2024-11-13 23:54:44', 'submission_id': '1gqni1p'}
{'comment': 'This is Trumps revenge team', 'created': '2024-11-14 01:24:32', 'submission_id': '1gqni1p'}
{'comment': 'They did it after she went in on Kamala in 2020.', 'created': '2024-11-13 22:52:16', 'submission_id': '1gqni1p'}
{'comment': 'Gaetz was beyond a headscratching pick. Even the most diehard GOP supporters (like myself) are scratching our heads at that one.', 'created': '2024-11-13 22:50:44', 'submission_id': '1gqni1p'}
{'comment': 'Neither did Robert F. Kennedy before he became a Government employee.', 'created': '2024-11-13 23:40:16', 'submission_id': '1gqni1p'}
{'comment': "Agreed Rubio and Gabbard deserve a spot, with Gatez's sketchy past being AG is kind of a joke. Honestly just seems like he got it for being a trump bootlicker.", 'created': '2024-11-13 23:34:05', 'submission_id': '1gqni1p'}
{'comment': 'Also an alleged child trafficker as well (not saying he did it but the djt admin already going for controversy before he even takes office is a bad look)', 'created': '2024-11-13 22:31:39', 'submission_id': '1gqni1p'}
{'comment': 'Dont forget Hegseth has no experience as well. To be that high of a position from where he was at previously? Seriously could’ve picked someone much more qualified.', 'created': '2024-11-14 00:01:04', 'submission_id': '1gqni1p'}
{'comment': "What is the reason many feel Gaetz wouldn't be a good pick. I hear he would be difficult to confirm, but why?", 'created': '2024-11-14 06:59:14', 'submission_id': '1gqni1p'}
{'comment': 'Agreed. I think he’s a creeper. Love Rubio and Gabbard picks. I hope Gaetz washes out fast and DeSantis gets the nod.', 'created': '2024-11-14 01:59:49', 'submission_id': '1gqni1p'}
{'comment': 'I agree! I\'m excited to see Rubio as our chief diplomat, I think this is a strong choice for our country. \n\nI don\'t know enough about Ms. Gabbard to speak on her qualifications as DNI director, but what I have read about her & what she has stated she stands for, she seems rational & pragmatic, & she clearly is smart & strong enough to be right, instead of on the "right" side \n\nIf that makes sense \n\nGaetz as an AG pick was enough for me to drop weighs at the gym like wtf. That\'s like appointing someone from my 600# life as the secretary for heath.', 'created': '2024-11-14 05:10:32', 'submission_id': '1gqni1p'}
{'comment': 'He’s Trump’s pick for Director of the FBI', 'created': '2024-11-14 00:24:51', 'submission_id': '1gqni1p'}
{'comment': 'Fr', 'created': '2024-11-14 04:02:48', 'submission_id': '1gqni1p'}
{'comment': "I can see this ... promise, but 🤷\u200d♀️ oops sorry it didn't work out", 'created': '2024-11-14 05:11:33', 'submission_id': '1gqni1p'}
{'comment': 'Senator from FL, I am all about giving him a chance. He is WELL AWARE that Trump wants NO new wars.', 'created': '2024-11-13 22:50:36', 'submission_id': '1gqni1p'}
{'comment': 'Swamp creature who’s been in politics his whole career. Very big Israel supporter and war hawk who will pursue war with Iran.', 'created': '2024-11-13 22:47:29', 'submission_id': '1gqni1p'}
{'comment': 'Neocon warmonger. Bad choice', 'created': '2024-11-13 23:14:43', 'submission_id': '1gqni1p'}
{'comment': 'Does anyone think it’s ironically funny that the Department of Government Efficiency has more than one head?\n\n(I get that they both have other jobs, but LOL.)', 'created': '2024-11-14 17:40:25', 'submission_id': '1gqni1p'}
{'comment': 'Hell no. Rubio and gabbard are fantastic picks for his new cabinet. Gaetz is by far the worst.', 'created': '2024-11-14 04:03:28', 'submission_id': '1gqni1p'}
{'comment': 'Pete Hegseth is not a “Fox News rando” boss..', 'created': '2024-11-14 06:20:17', 'submission_id': '1gqni1p'}
{'comment': 'Backwards. Gabbard and Rubio are perfect. Gaetz is the head scratcher here', 'created': '2024-11-14 04:04:12', 'submission_id': '1gqni1p'}
{'comment': 'I live in Gaetz’s district. I’m a Republican voter and I’ve voted for a Republican against him in every primary since 2016. Nobody in this area wants change. I’m glad his arrogance got the better of him and he went ahead and resigned before his confirmation hearings. I hope he’s not confirmed so we can be rid of him. \n\nHe pledged to serve three terms since that matched the term limit resolution he brought to the House in 2017. Which he was just elected to his fifth term. So much for the term limits he wanted…', 'created': '2024-11-14 04:42:59', 'submission_id': '1gqni1p'}
{'comment': 'Isn’t that the point of Trump wanting to do recess appointments? He wants to just bypass the whole process and get his people in ASAP.', 'created': '2024-11-14 04:28:13', 'submission_id': '1gqni1p'}
{'comment': 'Yep. It’s a weird pick. Otherwise, I think he’s made some good choices, but Gaetz really is a head scratcher.', 'created': '2024-11-14 06:10:28', 'submission_id': '1gqni1p'}
{'comment': 'Dems are going to go after Gaetz HARD. It makes the other Trump appointments, which I like, seem not so serious. What was Trump thinking?', 'created': '2024-11-14 08:56:40', 'submission_id': '1gqni1p'}
{'comment': 'He like to court questionably young women. Dude is a scumbag.', 'created': '2024-11-14 01:56:56', 'submission_id': '1gqni1p'}
{'comment': 'Rubio is the one who needs to stay far away from this position', 'created': '2024-11-13 23:36:15', 'submission_id': '1gqni1p'}
{'comment': 'The rumors surrounding him...are not great. There\'s been quite a few people who have witnessed his "questionable character" first hand. \n\nDrug use, womanizing, etc. Once again...rumors.', 'created': '2024-11-13 22:52:32', 'submission_id': '1gqni1p'}
{'comment': 'I thought that too, but the justice department completed investigation and no charges filed due to unreliable witnesses - so was he a victim of a smear campaign? You know they would have charged if there had been a shred, even a hint, of evidence.', 'created': '2024-11-13 22:36:57', 'submission_id': '1gqni1p'}
{'comment': 'His accuser pled guilty to extortion.', 'created': '2024-11-13 23:51:54', 'submission_id': '1gqni1p'}
{'comment': 'I thought that too, but the justice department completed investigation and no charges filed due to unreliable witnesses - so was he a victim of a smear campaign? You know they would have charged if there had been a shred, even a hint, of evidence.', 'created': '2024-11-13 22:36:57', 'submission_id': '1gqni1p'}
{'comment': "Hegseth's problem is that he can't keep his dick in his pants which is why he's on Wife #3.\n\nWhich may explain why Trump picked him.", 'created': '2024-11-14 02:12:29', 'submission_id': '1gqni1p'}
{'comment': "Thanks, I haven't heard that yet!", 'created': '2024-11-14 01:44:01', 'submission_id': '1gqni1p'}
{'comment': 'I like Rubio, seems a pretty grounded guy and he visits the panhandle in Fl. to see how we, his constituents are doing. Plus I also strongly support Israel.', 'created': '2024-11-14 02:03:00', 'submission_id': '1gqni1p'}
{'comment': 'Bleep bloop, words, bloop.', 'created': '2024-11-13 23:53:59', 'submission_id': '1gqni1p'}
{'comment': 'How is Gaetz the worst? Of the three, Rubio is most likely to be the hinderance to Trump’s plans. Gabbard is the best option for sure, and it’ll sure be nice to have someone like Gaetz, who hasn’t accepted a dime from Israel lobbyists in a spot to rek those responsible for the previous bogus lawfare. \n\nRubio is just McCain with a different skin tone. I don’t see how anyone can associate a neocon with an admin for peace and prosperity.', 'created': '2024-11-14 04:19:16', 'submission_id': '1gqni1p'}
{'comment': 'If he loses then DeSantis appoints him to the Senate to replace Rubio. And you have Senator Gaetz with no looming house ethics committee. Win for Gaetz.\n\nAlso he has a law degree and is a solid fiscal conservative. Care to elaborate why you think he’s so bad? He’s millennial MAGA and like some young men can be hot headed. But he’s been married for 3 years and is cooling off.', 'created': '2024-11-14 10:15:25', 'submission_id': '1gqni1p'}
{'comment': "I agree. I doubt he will make it though his Senate confirmation. I honestly, don't know what he was thinking.", 'created': '2024-11-15 14:19:28', 'submission_id': '1gqni1p'}
{'comment': 'From what? From what damnt?', 'created': '2024-11-14 00:54:20', 'submission_id': '1gqni1p'}
{'comment': "Aren't those things just standard politician vices..lol", 'created': '2024-11-14 03:59:45', 'submission_id': '1gqni1p'}
{'comment': 'Tell me where I’m wrong.', 'created': '2024-11-14 00:06:02', 'submission_id': '1gqni1p'}
{'comment': 'Because with that display that Gaetz and MTG showed during the speaker vote, it wasn’t it. Bro didn’t try to like gather support for 1 speaker but instead led us to to a few days without a speaker', 'created': '2024-11-14 12:26:55', 'submission_id': '1gqni1p'}
{'comment': 'Aren’t we for a meritocracy? The guy has barely any actual legal experience and would be extremely unqualified for the position. The only reason to put him in place is loyalty and name recognition.', 'created': '2024-11-16 07:24:41', 'submission_id': '1gqni1p'}
{'comment': 'I don’t think DeSantis will wait that long to announce a Senator. The confirmation hearings will happen after Inauguration Day which is also after the new senate is confirmed, right? He’ll have to appoint someone before then. \n\nSide note: my gut tells me that DeSantis might nominate himself for Senate. That will allow his lieutenant governor to take over now and then still win two more elections so she would be able to serve 10 years. She’s a Cuban American very similar to Rubio, and she’s already represented Miami Dade county. So I feel as though she would not have any trouble with elections. Then, that gives DeSantis a job after his term limits are up and continues a job for him if he doesn’t win the presidency in 2028. \n\nAnd to your question about Gaetz specifically. Let’s assume for these purposes he didn’t sex traffic anyone, use drugs, or share inappropriate images on the House floor all like he was accused of. I personally would like my representative to not be accused of that many different issues, but I understand sometimes accusations happen whether they are true or not.\n\nHe pledged to serve three terms because he said he believes in term limits and even co-sponsored a resolution to the House about 3 terms for House representatives. Yet, he was just elected to his fifth term. Did he decide that he actually did not want term limits? Did he decide that three years was not enough for a House representative? We will never know because he never comes down here unless it’s to campaign for himself or someone else.\n\nHe has never debated anyone running against him\nIn the primaries or general election. Why? Great question. I’d love to know the answer to. Again, could be arrogance because he knows he’s going to get reelected in our area? Possibly. Other people in our area deserve to hear from him, hear his views compared to somebody else, and why he’s the best choice for the role. Especially in the primaries. What separates himself from the other Republican candidates?\n\nThe whole ouster of Kevin McCarthy didn’t sit right with me. He single handily made House Republicans look like idiots. If you do not agree with committeeships or House rules, have discussions. Try to come up with agreements. And if nothing comes of it, you only have to wait two years before the speaker can change and then you can make your voice heard and known before he is granted the role. My theory? He just wanted to say that he has been the only person to help oust the house speaker. Again, contributes to his arrogance. am I wrong? Possibly. But again, he never comes down here to talk to the people for us to know what exactly his process was. Would’ve loved to hear that in a debate format.\n\nOn December 19, 2017, Gaetz was the ONLY representative to vote against the Combating Human Trafficking in Commercial Vehicles Act. The vote was 418-1. He’s the 1. He also voted against the Allow States and Victims to Fight Online Sex Trafficking Act in 2018. The vote count was 388–25. In 2022, he also voted against Frederick Douglass Trafficking Victims Prevention and Protection Reauthorization Act, which passed 401–20. Which I understand if you have firm belief that these are not good bills, you have a right as a representative to vote against them. But if you have sex trafficking allegations against you, voting against all these measures is not a good look.\n\nI have three pretty strong Republican friends that I talk to on a daily basis about politics. Two of which are pretty MAGA heavy. Even they both agree that they don’t like Gaetz as a person, but they keep voting for him because they like his politics. Wow that’s a very small sample size of our area, I feel like that’s probably how much Republicans think. Nobody in this area really likes him. They just keep voting for him because we want to ensure that our area stays red.', 'created': '2024-11-14 12:56:27', 'submission_id': '1gqni1p'}
{'comment': 'Sex trafficking?', 'created': '2024-11-14 15:23:35', 'submission_id': '1gqni1p'}
{'comment': 'Neocons need to be forbidden from these kinds of positions', 'created': '2024-11-14 00:59:14', 'submission_id': '1gqni1p'}
{'comment': 'So, it’s the image from one event you disagree with? What is this, high school?', 'created': '2024-11-14 13:01:24', 'submission_id': '1gqni1p'}
{'comment': 'Loyalty and name recognition? You don’t think there’s anything else that’s happened over the past 4-8 years from the DOJ, to him or Trump, that exemplifies his role there?', 'created': '2024-11-16 13:23:38', 'submission_id': '1gqni1p'}
{'comment': 'I also live in his district and have voted against him every time. With all that is said, I hope there is a backbone by at least 4 Republican Senators to vote against him along with the independents and dems.', 'created': '2024-11-14 15:12:31', 'submission_id': '1gqni1p'}
{'comment': 'He was picked because he’s indicated he’s going to follow trumps lead on foreign policy. This year he voted against funding and he supports trump on ending the war in Ukraine rather than enabling it to continue for years on end. Tulsi as DNI is a position of real power and influence, she will be in trumps ear all the time and trump likes tulsi more than him …so if Rubio strays then his ass is grass.', 'created': '2024-11-14 02:59:45', 'submission_id': '1gqni1p'}
{'comment': 'Oh yea. For sure.', 'created': '2024-11-14 01:01:08', 'submission_id': '1gqni1p'}
{'comment': 'No it was about unity and to show people that we wouldn’t be divided like the democrats', 'created': '2024-11-14 13:13:37', 'submission_id': '1gqni1p'}
{'comment': 'I don’t think disagreeing with the DOJ means we just pick the guy who has the most disdain for the DOJ to lead it lol. You can pick someone who shares your view yet is still most qualified for the job. If I thought there was corruption in the military it doesn’t mean I’d put a private in charge of it', 'created': '2024-11-16 15:32:08', 'submission_id': '1gqni1p'}
{'comment': 'I think they will. A lot of them have already implied it will be a tough process for him. The only issue would be if they allow recess appointments. Which I hope it doesn’t come to that, but we shall see.', 'created': '2024-11-14 15:43:48', 'submission_id': '1gqni1p'}
{'comment': 'I’d love to see it, but neocons gonna neocon. Gabbard is the saving grace for sure. Trading Cheney for Gabbard was the best deal in political history.', 'created': '2024-11-14 04:21:48', 'submission_id': '1gqni1p'}
{'comment': 'Well he’s gone from the House now and can’t cause any more trouble in a chamber with a thin margin. AG is basically the lapdog of the president in any administration.', 'created': '2024-11-14 16:21:00', 'submission_id': '1gqni1p'}
{'comment': 'I’d prefer principle-based judgement toward bad actors as opposed to blind approval for the swamp', 'created': '2024-11-14 16:55:25', 'submission_id': '1gqni1p'}
{'comment': 'Making peace with evil ain’t gonna cut it anymore', 'created': '2024-11-16 16:51:13', 'submission_id': '1gqni1p'}
{'comment': 'So happy about this one!!', 'created': '2024-11-14 05:11:40', 'submission_id': '1gqni1p'}
{'comment': 'Indeed, and if his nomination is opposed, looks like he could potentially be FL Senator', 'created': '2024-11-14 16:54:32', 'submission_id': '1gqni1p'}
{'comment': 'True', 'created': '2024-11-14 18:31:56', 'submission_id': '1gqni1p'}
{'comment': 'I agree. But what Gaetz and MTG did wasn’t great. There’s also plenty of other candidates that would be better as AG as well. But we will see if it work.', 'created': '2024-11-14 18:31:36', 'submission_id': '1gqni1p'}
{'comment': 'In the least, the new admin isn’t 100% bought for by Israel lobbyists', 'created': '2024-11-14 21:38:05', 'submission_id': '1gqni1p'}
{'comment': 'Fair point', 'created': '2024-11-15 00:34:30', 'submission_id': '1gqni1p'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 21:51:53', 'submission_id': '1gqn8b9'}
{'comment': 'This one makes no sense', 'created': '2024-11-13 23:26:54', 'submission_id': '1gqn8b9'}
{'comment': 'A man who is never tried a case is now the nations top prosecutor. Of all the attorneys in America we chose this one?', 'created': '2024-11-14 00:33:48', 'submission_id': '1gqn8b9'}
{'comment': 'He still has to be confirmed by the Senate. There already Repubs that are saying “no way”.', 'created': '2024-11-14 00:28:03', 'submission_id': '1gqn8b9'}
{'comment': 'Fill the swamp lol', 'created': '2024-11-14 12:41:39', 'submission_id': '1gqn8b9'}
{'comment': 'The worst cabinet choice so far. Do not give the other side fuel to fight.', 'created': '2024-11-13 23:57:29', 'submission_id': '1gqn8b9'}
{'comment': 'Awful pick, Gaetz is a POS', 'created': '2024-11-14 01:56:12', 'submission_id': '1gqn8b9'}
{'comment': 'Gross. Can we pick anyone else lol', 'created': '2024-11-14 11:11:58', 'submission_id': '1gqn8b9'}
{'comment': 'Bad', 'created': '2024-11-13 23:40:02', 'submission_id': '1gqn8b9'}
{'comment': 'This is how you know this sub is controlled opposition. This is a fantastic pick.', 'created': '2024-11-15 02:56:57', 'submission_id': '1gqn8b9'}
{'comment': "He's packing the cabinet with sycophants", 'created': '2024-11-14 00:29:31', 'submission_id': '1gqn8b9'}
{'comment': "Isn't he a pedo?", 'created': '2024-11-14 01:50:30', 'submission_id': '1gqn8b9'}
{'comment': 'Nope.', 'created': '2024-11-13 23:48:01', 'submission_id': '1gqn8b9'}
{'comment': 'It should be Senator John Neely Kennedy, I want no one else', 'created': '2024-11-14 01:59:26', 'submission_id': '1gqn8b9'}
{'comment': "Terrible choice. Can't all be home runs I suppose.", 'created': '2024-11-14 00:20:25', 'submission_id': '1gqn8b9'}
{'comment': 'Absolutely baffling', 'created': '2024-11-13 23:13:47', 'submission_id': '1gqn8b9'}
{'comment': 'Bad move.', 'created': '2024-11-14 04:07:06', 'submission_id': '1gqn8b9'}
{'comment': 'Appointed , confirmed, replaced in congress then fired . Bye Matt', 'created': '2024-11-14 10:42:48', 'submission_id': '1gqn8b9'}
{'comment': 'Wow, another head scratcher…', 'created': '2024-11-13 22:10:54', 'submission_id': '1gqn8b9'}
{'comment': "Don't like it at all", 'created': '2024-11-14 16:42:41', 'submission_id': '1gqn8b9'}
{'comment': 'I was sort of expecting him to appoint Pam Bondi. At least bring her into the DOJ.', 'created': '2024-11-14 03:24:14', 'submission_id': '1gqn8b9'}
{'comment': 'Incoming Majority Leader Thune should refuse to even accept the nomination for consideration.', 'created': '2024-11-14 02:10:03', 'submission_id': '1gqn8b9'}
{'comment': "Great pick. \nNormal citizens like that he is a bulldog against the leftists BS. \nMany in congress don't like him. He must be doing something right.", 'created': '2024-11-15 19:40:57', 'submission_id': '1gqn8b9'}
{'comment': "I'm curious, open-minded. All the liberals are saying he's like a Sex trafficker, and he used drugs and something about him having sex or looking at a nude 17 year old at a party. Is all this stuff true, or more fake news, bs?", 'created': '2024-11-14 05:57:26', 'submission_id': '1gqn8b9'}
{'comment': 'Well. Vendettas will be settled in the next four years. That is about all Gaetz will be used for. Other than that, he’s a waste of oxygen. \nOn the bright side, at least he’s finally out of House.', 'created': '2024-11-14 00:58:52', 'submission_id': '1gqn8b9'}
{'comment': 'worst pick possible, hopefully trump will listen to the criticism and make a better pick', 'created': '2024-11-14 17:39:40', 'submission_id': '1gqn8b9'}
{'comment': 'Even after a major win, Republicans are addicted to losing', 'created': '2024-11-14 20:05:16', 'submission_id': '1gqn8b9'}
{'comment': 'Well, this pick is raising some eyebrows.', 'created': '2024-11-14 21:04:58', 'submission_id': '1gqn8b9'}
{'comment': 'No for me but I think Trump has someone else lined up that will create waves and the Gaetz pick is there to soften the blow', 'created': '2024-11-14 23:03:28', 'submission_id': '1gqn8b9'}
{'comment': 'I can’t stand this guy. Certainly there are better options than this.', 'created': '2024-11-15 04:55:57', 'submission_id': '1gqn8b9'}
{'comment': 'Should have been Trey Gowdy.', 'created': '2024-11-15 07:27:41', 'submission_id': '1gqn8b9'}
{'comment': 'I like it because a lot of "anonymous sources" dont. It seems, that may be my new standard.', 'created': '2024-11-14 07:31:20', 'submission_id': '1gqn8b9'}
{'comment': 'I have 2 theories. 1. Trump is doing a loyalty test on the Senate to see how far they will let him go. 2. Trump knows he won’t get confirmed and he made a deal with Mike Johnson to get Gaetz out of the House without destroying him.', 'created': '2024-11-14 14:30:28', 'submission_id': '1gqn8b9'}
{'comment': 'Picking Matt Gaetz is a bold choice. Hopefully Trump has a backup plan in case the Senate passes on him.', 'created': '2024-11-14 08:21:23', 'submission_id': '1gqn8b9'}
{'comment': 'Head shaker. Not an attorney. Tons of baggage.', 'created': '2024-11-14 17:51:36', 'submission_id': '1gqn8b9'}
{'comment': 'Based', 'created': '2024-11-13 22:40:35', 'submission_id': '1gqn8b9'}
{'comment': 'Baste', 'created': '2024-11-13 23:15:47', 'submission_id': '1gqn8b9'}
{'comment': 'He’s good at blowing up things, ask McCarthy', 'created': '2024-11-14 16:17:43', 'submission_id': '1gqn8b9'}
{'comment': 'This will make some liberal heads pop! Love it!\xa0', 'created': '2024-11-13 23:29:11', 'submission_id': '1gqn8b9'}
{'comment': 'disappointed that this sub has so many lame ass moderate Republicans', 'created': '2024-11-14 09:48:04', 'submission_id': '1gqn8b9'}
{'comment': 'I was reading on a lib sub how terrible this is', 'created': '2024-11-14 02:55:19', 'submission_id': '1gqn8b9'}
{'comment': 'Incredible', 'created': '2024-11-14 00:17:23', 'submission_id': '1gqn8b9'}
{'comment': "It should have been Marjorie Taylor Greene. Just kidding. Trump gives almost anyone a chance and, if they don't perform to his liking, fires them. I approve of this procedure insofar that it is wrong to value theory more than empiricism. The best use of theory is to decide which experiments to perform and Matt Gaetz as AD is an experiment.", 'created': '2024-11-14 01:08:23', 'submission_id': '1gqn8b9'}
{'comment': 'Only pick I don’t like so far.', 'created': '2024-11-14 14:52:49', 'submission_id': '1gqn8b9'}
{'comment': 'Not a fan TBH. I like all the other picks! Matt really showed his true colors during the ouster of McCarthy. That all should have been done quietly and behind closed doors and settled. But that’s not what he did and he truly embarrassed himself and the Republicans. He handled it horribly and literally divided our party. I don’t think and hope he doesn’t make it through. I think President Trump made a bad call on this and I’m hopeful Matt drops out or Trump withdraws his nomination.', 'created': '2024-11-14 15:09:51', 'submission_id': '1gqn8b9'}
{'comment': 'Giuliani\xa0 should have been picked.\xa0', 'created': '2024-11-14 02:01:23', 'submission_id': '1gqn8b9'}
{'comment': "The only thing I'm thinking is Trump did this to get him away from Mike Johnson and the House.", 'created': '2024-11-14 13:38:51', 'submission_id': '1gqn8b9'}
{'comment': 'It’s the scorched earth play. Hold on to your hats boys and girls. It’s going to get a little crazy in here.', 'created': '2024-11-14 02:22:27', 'submission_id': '1gqn8b9'}
{'comment': 'Unless he did a lot for the campaign but doesn’t have a place in the administration so he got a nod knowing he wouldn’t be confirmed . . . oh wait . . .', 'created': '2024-11-14 00:05:10', 'submission_id': '1gqn8b9'}
{'comment': 'Not yet.', 'created': '2024-11-14 04:08:15', 'submission_id': '1gqn8b9'}
{'comment': None, 'created': '2024-11-14 03:00:19', 'submission_id': '1gqn8b9'}
{'comment': "There is an exceedingly long list of AGs who have never tried a case. It's a managerial position and I hope to God he gets confirmed.", 'created': '2024-11-14 11:07:05', 'submission_id': '1gqn8b9'}
{'comment': 'Recess appointments...', 'created': '2024-11-14 03:44:28', 'submission_id': '1gqn8b9'}
{'comment': "The left thinks we're all anti women and then this? Whiskey Tango Foxtrot", 'created': '2024-11-14 15:49:23', 'submission_id': '1gqn8b9'}
{'comment': "There was an accusation, by someone already convicted who was looking for a lighter sentence. Never any actual evidence, according to the FBI.\n\nThe problem with Gaetz is that he's a conservative on whom the Deep State has no leverage, and he's been calling out the RINOs for being RINOs - so the bureaucracy hates him.", 'created': '2024-11-18 19:02:45', 'submission_id': '1gqn8b9'}
{'comment': '*"call a crackhead"* 💀', 'created': '2024-11-14 07:56:36', 'submission_id': '1gqn8b9'}
{'comment': 'I used to be a big fan but learned he voted for Cornyn.', 'created': '2024-11-15 04:21:08', 'submission_id': '1gqn8b9'}
{'comment': 'A shitload better than Jeff Sessions or Merrik Garland', 'created': '2024-11-14 00:48:18', 'submission_id': '1gqn8b9'}
{'comment': 'I’m good with Gaetz, he has values and is willing to fight for them. My major concern so far is Rubio, I believe he’s a bought and paid for neocon and is exactly the type of Republican this movement is attempting to make extinct, very disappointed.', 'created': '2024-11-14 07:53:34', 'submission_id': '1gqn8b9'}
{'comment': 'My thoughts exactly, good riddance.', 'created': '2024-11-14 12:33:01', 'submission_id': '1gqn8b9'}
{'comment': '4D chess', 'created': '2024-11-14 10:43:10', 'submission_id': '1gqn8b9'}
{'comment': 'Love her.', 'created': '2024-11-14 03:51:30', 'submission_id': '1gqn8b9'}
{'comment': 'A quick Google search would answer that', 'created': '2024-11-14 15:01:32', 'submission_id': '1gqn8b9'}
{'comment': "It is neither lame nor moderate to look at Gaetz and decide he isn't qualified to be dog catcher, let alone the nations top prosecutor.", 'created': '2024-11-14 12:43:41', 'submission_id': '1gqn8b9'}
{'comment': 'Lame ass moderate Republicans just won you this election, my dude.', 'created': '2024-11-14 12:32:20', 'submission_id': '1gqn8b9'}
{'comment': 'Usually when libs hate someone or something it lets me know it’s good. I’m not understanding this pick but I’m letting it bake. Give it more time to see what’s it all about.', 'created': '2024-11-14 03:52:16', 'submission_id': '1gqn8b9'}
{'comment': 'Hiring my 25-year-old legal secretary as AG would also be an experiment, but it’s not one worth making because she would objectively not be qualified. Same goes for Gaetz. 2 years of legal experience at a tiny firm ~15 years ago does not make him a qualified candidate for one of the highest-ranking attorney positions in the country. Gaetz wouldn’t qualify to make partner at my firm for at least another 6 years. This pick is laughably bad objectively, before even considering all the extracurricular baggage.', 'created': '2024-11-14 02:57:40', 'submission_id': '1gqn8b9'}
{'comment': 'I feel like someone like Sen. Mike Lee would have been just as a scorched earth play and without all the negative baggage.', 'created': '2024-11-14 15:10:28', 'submission_id': '1gqn8b9'}
{'comment': 'Which ones? Can you give me some of the names on that long list?', 'created': '2024-11-16 07:28:23', 'submission_id': '1gqn8b9'}
{'comment': 'I tell ya…I really don’t think so', 'created': '2024-11-14 14:25:40', 'submission_id': '1gqn8b9'}
{'comment': 'Just say you like to fuck underage girls. \n\nGaetz is a massive POS that isn’t even slightly qualified for the AG role.', 'created': '2024-11-14 17:30:20', 'submission_id': '1gqn8b9'}
{'comment': "can you give me some reasons because i haven't seen any", 'created': '2024-11-14 15:43:59', 'submission_id': '1gqn8b9'}
{'comment': 'technically the amish won you guys the election', 'created': '2024-11-14 15:44:34', 'submission_id': '1gqn8b9'}
{'comment': 'Tulsi Gabbard also had people upset', 'created': '2024-11-14 05:16:09', 'submission_id': '1gqn8b9'}
{'comment': 'Sessions was feckless and weak. Garland weaponized the DOJ to go after political opponents. So yeah I think so.', 'created': '2024-11-14 14:39:59', 'submission_id': '1gqn8b9'}
{'comment': '...or you can just downvote me', 'created': '2024-11-14 20:44:26', 'submission_id': '1gqn8b9'}
{'comment': 'Tulsi Gabbard should be more hated by conservatives than she is. If you actually read her policies it’s closer to Bernie sanders than any republican.', 'created': '2024-11-14 05:25:31', 'submission_id': '1gqn8b9'}
{'comment': "Yeah, she's almost in the middle when her debacle kicked up. I was looking, but it may be good to have a middle view that's not so far right, you know? \n\nI don't know, remember much, but I kinda thought the same. This is crazy though. I was 17 when Trump got his first election and was into politics at all. \n\nBut his selection picks seem to be very interesting.\n\nI was thinking vivek would be a bomb ass press secretary. He has the ability to have empathy while he is discussing and explaining logic with real answers. \n\nBut this role he was chosen for doesn't really make sense, neither does Elon, to me at least. \n\nI didn't have any hope for Brandon being director of ATF, but now I'm kinda thinking it's possible, and frankly, it would make more sense to me than the above.", 'created': '2024-11-14 07:23:55', 'submission_id': '1gqn8b9'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 19:31:46', 'submission_id': '1gqjv7n'}
{'comment': "Now if only we could give her the boot instead of Pinocchios' we would all be the better for it.", 'created': '2024-11-13 19:42:58', 'submission_id': '1gqjv7n'}
{'comment': 'She is turning into a bigger clown 🤡 \n\nNancy Pinocci', 'created': '2024-11-13 20:24:54', 'submission_id': '1gqjv7n'}
{'comment': 'She is a walking lie', 'created': '2024-11-13 19:47:33', 'submission_id': '1gqjv7n'}
{'comment': 'how cute. idiots', 'created': '2024-11-13 20:36:42', 'submission_id': '1gqjv7n'}
{'comment': 'What a POS or old SOS. And the lies roll on the lies roll on🎶🎶🎶.', 'created': '2024-11-13 21:24:31', 'submission_id': '1gqjv7n'}
{'comment': "Only four Pinocchios? - Oh, it's WaPo, shocking they gave her one.", 'created': '2024-11-13 21:52:26', 'submission_id': '1gqjv7n'}
{'comment': 'Wish we could get Pelosi out. She’s been speaker of the house since 2007, and took office in ‘87', 'created': '2024-11-13 21:38:11', 'submission_id': '1gqjv7n'}
{'comment': "Well from her perspective and what they want, she wasn't lying.", 'created': '2024-11-13 22:06:10', 'submission_id': '1gqjv7n'}
{'comment': 'Nancy Nancy Nancy\n\nThe days of getting media cover for Blatant lies are sooooooo over\n\nHave you learned anything?', 'created': '2024-11-14 12:00:42', 'submission_id': '1gqjv7n'}
{'comment': 'Yeah.., I noticed they were a little saggy', 'created': '2024-11-14 18:42:17', 'submission_id': '1gqjv7n'}
{'comment': 'Only four?', 'created': '2024-11-13 20:43:00', 'submission_id': '1gqjv7n'}
{'comment': 'how high does the Pinocchio scale go? 4?', 'created': '2024-11-13 21:17:00', 'submission_id': '1gqjv7n'}
{'comment': '😂😂😂', 'created': '2024-11-13 20:20:09', 'submission_id': '1gqjv7n'}
{'comment': "She is a clown. I'm surprised she hasn't been charged with crimes. Like insider trading.... wait, she had Congress pass a bill to protect congressmen and women from being prosecuted. Her husband works on Wallstreet.... just saying.", 'created': '2024-11-14 01:16:37', 'submission_id': '1gqjv7n'}
{'comment': "She doesn't belong in congress anymore. I was just thinking about her tenure in congress. Filled with authoritarianism she ruled with an iron fist and managed to bring every last democrat to heel. The poster child for term limits.", 'created': '2024-11-13 19:59:34', 'submission_id': '1gqjv7n'}
{'comment': 'Nancy Pinocci 😂 or Nancy Pelocchio', 'created': '2024-11-13 21:49:24', 'submission_id': '1gqjv7n'}
{'comment': 'And if she signs that ethics thing Warren is babbling on about the whole capitol would go up in flames.', 'created': '2024-11-13 20:11:48', 'submission_id': '1gqjv7n'}
{'comment': 'Poster child for insider trading as well. Most Corrupt of all the corrupt.', 'created': '2024-11-13 21:45:32', 'submission_id': '1gqjv7n'}
{'comment': 'Subject of investigation for the "real J6" trial!!', 'created': '2024-11-13 21:59:05', 'submission_id': '1gqjv7n'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 18:36:20', 'submission_id': '1gqiinh'}
{'comment': 'FTFA;\n\n>"We\'re not here to gloat. We\'re here to help," said Babylon Bee CEO Seth Dillon. "Look, the Fake News industry is fiercely competitive, and CNN has incredible talent. We may be rivals, but at the end of the day, we\'re human beings -- human beings who love making up the news."\n\n🤣🤣', 'created': '2024-11-13 20:07:01', 'submission_id': '1gqiinh'}
{'comment': 'Ok that is hilarious. 😆', 'created': '2024-11-13 19:12:37', 'submission_id': '1gqiinh'}
{'comment': 'They’d fit right in', 'created': '2024-11-13 19:31:54', 'submission_id': '1gqiinh'}
{'comment': 'Trollolol - Savage.', 'created': '2024-11-13 22:25:16', 'submission_id': '1gqiinh'}
{'comment': "They have no betters in the fake news community, it's true.", 'created': '2024-11-14 05:15:04', 'submission_id': '1gqiinh'}
{'comment': 'There is also the Onion too. I see them making a return. The Onion was joking but actually predicted Amish voting for Trump in PA. So did a better job than CNN.', 'created': '2024-11-13 20:26:06', 'submission_id': '1gqiinh'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 18:28:54', 'submission_id': '1gqic7f'}
{'comment': "I would also have the FBI do a full sweep of the white house to remove Joe's used Depends, Hunters leftover drugs and Tim's discarded tampons. 😆", 'created': '2024-11-13 19:41:23', 'submission_id': '1gqic7f'}
{'comment': "Scuttle butt is Biden is going to pardon Trump and Hunter. Don't know what kind of deal scum bag Biden is trying to get. Would lean over whisper in his ear tell him keep you pardon. When I get in their all going down if he doesn't drop charges. Then see what shakes out.", 'created': '2024-11-13 21:46:13', 'submission_id': '1gqic7f'}
{'comment': 'Lol but like also.... Yeah, definitely need to be doing a full sweep because Lord knows what the lefties left to try to mess with term 2', 'created': '2024-11-14 13:47:37', 'submission_id': '1gqic7f'}
{'comment': 'Don’t forget Kamala’s dancing pole', 'created': '2024-11-13 20:26:11', 'submission_id': '1gqic7f'}
{'comment': "Would not put anything past Biden's corrupt administration.👍", 'created': '2024-11-14 17:09:25', 'submission_id': '1gqic7f'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 18:28:10', 'submission_id': '1gqibku'}
{'comment': 'According to Glenn Beck, as Senate President, Vance can take control of the senate body if he feels the need to prevent rogue acts by the RINOs.\n\nThat gives me some hope.', 'created': '2024-11-13 23:30:48', 'submission_id': '1gqibku'}
{'comment': "I like a lot of the Republicans that backed Thune, but I've seen nothing from Thune to make me think this is a good pick. \n\nHe's essentially a younger McConnell.", 'created': '2024-11-13 19:21:05', 'submission_id': '1gqibku'}
{'comment': "Well at least he didn't vote for red flag laws?\n\nFeels like looking for a silver lining in a septic tank though.", 'created': '2024-11-13 19:26:58', 'submission_id': '1gqibku'}
{'comment': "Surely Thune will be smart enough to understand that playing politics and rejecting Trump's plan will NOT bode well for him.", 'created': '2024-11-13 18:30:09', 'submission_id': '1gqibku'}
{'comment': 'Everybody MAGA was rooting for Rick Scott. Thune and Cornyn but especially Thune was uniquely anti-Trump from what I can tell from postings on X. Pure establishment.', 'created': '2024-11-13 20:16:40', 'submission_id': '1gqibku'}
{'comment': 'Great.', 'created': '2024-11-13 19:15:52', 'submission_id': '1gqibku'}
{'comment': "Better than John Cornyn but only by a hair. This isn't a good development. It is the Senate's prerogative to select who they collectively want. Just my gut feeling but this isn't going to end well. I hope that I am wrong.", 'created': '2024-11-13 21:49:45', 'submission_id': '1gqibku'}
{'comment': "It's better than Cornin, but not much. Once again Republicans be Republicaning.", 'created': '2024-11-13 20:44:43', 'submission_id': '1gqibku'}
{'comment': 'Can someone please explain to me. Why they get to elect the leader before the new senators are sworn in and because they are the majority. I can not figure this out for the life of me.', 'created': '2024-11-13 23:42:55', 'submission_id': '1gqibku'}
{'comment': 'Don’t follow politics and I think Rick Scott would’ve been the best one but what is exactly wrong with Cornyn and/or Thune? A lot of republicans in the senate backed them both up…', 'created': '2024-11-13 21:40:16', 'submission_id': '1gqibku'}
{'comment': 'Yikes', 'created': '2024-11-13 19:15:43', 'submission_id': '1gqibku'}
{'comment': 'Uniparty shill.', 'created': '2024-11-13 19:28:25', 'submission_id': '1gqibku'}
{'comment': "That's a miss", 'created': '2024-11-13 21:14:31', 'submission_id': '1gqibku'}
{'comment': 'New Administration, Same RINO Senate Leader...', 'created': '2024-11-13 23:20:11', 'submission_id': '1gqibku'}
{'comment': 'Noooooooo', 'created': '2024-11-13 22:13:22', 'submission_id': '1gqibku'}
{'comment': 'Boooo', 'created': '2024-11-14 00:07:11', 'submission_id': '1gqibku'}
{'comment': 'Does he hate T?', 'created': '2024-11-14 00:16:52', 'submission_id': '1gqibku'}
{'comment': 'Can always vote out. Never done before. The tool is there.', 'created': '2024-11-14 02:35:59', 'submission_id': '1gqibku'}
{'comment': "Two steps forward, one step back. American's clearly voted against the establishment, but the 'leadership' remains tone deaf.", 'created': '2024-11-14 11:18:31', 'submission_id': '1gqibku'}
{'comment': 'Goated! Glad that they chose a non-isolationist and someone with lots of experience.', 'created': '2024-11-13 19:09:26', 'submission_id': '1gqibku'}
{'comment': 'Legally, the leader of the Senate is the VP. The President Pro Tempe only presides when the VP is not present. As long as Vance is present? The PPT wouldn’t matter other than as a figurehead.', 'created': '2024-11-14 02:28:02', 'submission_id': '1gqibku'}
{'comment': "I wouldn't bet any of my appendages or vital organs on that!", 'created': '2024-11-13 18:47:25', 'submission_id': '1gqibku'}
{'comment': 'Everyone forgets that the more they give Trump(the executive), the less they(the legislative) have. Even if they play for the same team, no faction(executive/legislative/judicial) is willing going to give away their power to the other factions.', 'created': '2024-11-14 01:30:07', 'submission_id': '1gqibku'}
{'comment': "If that were true they wouldn't have selected him. They intend to resist Trump, that's why they picked him.", 'created': '2024-11-13 22:02:24', 'submission_id': '1gqibku'}
{'comment': 'Honestly, after McCnnell spacing out numerous times, it was time for him to go and enjoy retirement', 'created': '2024-11-14 05:11:38', 'submission_id': '1gqibku'}
{'comment': 'Obviously deep state needs to hold onto senate to have bargaining power with Trump. Trump is anti war while deepstate lives among unrest in the whole world, it is their habitat. No unrest means less importance for deepstate and intelligence agencies means less unaudited budget means \nNo FUN!!!', 'created': '2024-11-13 20:41:53', 'submission_id': '1gqibku'}
{'comment': "Thune is anti-Trump establishment that will resist Trump's efforts and attempt to maintain the status-quo that Trump is trying to undue.", 'created': '2024-11-13 22:04:48', 'submission_id': '1gqibku'}
{'comment': 'Thune considers Trump to be his inferior, & has had the tendency to Oppose him.', 'created': '2024-11-14 04:27:15', 'submission_id': '1gqibku'}
{'comment': 'Not gonna happen: The Majority of them are Establishment!', 'created': '2024-11-14 22:32:08', 'submission_id': '1gqibku'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 18:15:41', 'submission_id': '1gqi06k'}
{'comment': "I saw one YouTube comment say that Jack Smith should run for office. No, Smith needs to run, that's it, run.", 'created': '2024-11-13 21:29:12', 'submission_id': '1gqi06k'}
{'comment': 'Resigns before he’s indicted', 'created': '2024-11-13 19:32:26', 'submission_id': '1gqi06k'}
{'comment': 'Quitting before you get fired. As is tradition', 'created': '2024-11-13 19:46:33', 'submission_id': '1gqi06k'}
{'comment': "Resign from what?\n\nHe really wasn't legally in that position in the first place, and Trump's election just saved him from having that proven out in court.", 'created': '2024-11-13 18:18:45', 'submission_id': '1gqi06k'}
{'comment': "Lmao, as if he was ever hired. Though we're still paying him. Ridiculous", 'created': '2024-11-13 20:26:30', 'submission_id': '1gqi06k'}
{'comment': 'Time for Jack to go back doing real estate closings', 'created': '2024-11-13 21:21:39', 'submission_id': '1gqi06k'}
{'comment': 'This reinforces the notion that it was merely a politically motivated stunt and not an actual criminal case.', 'created': '2024-11-14 02:39:45', 'submission_id': '1gqi06k'}
{'comment': "I'd sue him before he leaves.\xa0\xa0", 'created': '2024-11-14 02:02:32', 'submission_id': '1gqi06k'}
{'comment': '[removed]', 'created': '2024-11-14 08:41:10', 'submission_id': '1gqi06k'}
{'comment': 'That might not help... payback is a Biotch. 😁', 'created': '2024-11-13 19:38:26', 'submission_id': '1gqi06k'}
{'comment': 'Gaetz', 'created': '2024-11-15 18:09:10', 'submission_id': '1gqi06k'}
{'comment': 'Sometimes, the garbage takes itself out.', 'created': '2024-11-13 20:00:02', 'submission_id': '1gqi06k'}
{'comment': 'You know the left never misses a chance to virue signal. 😆', 'created': '2024-11-13 18:22:23', 'submission_id': '1gqi06k'}
{'comment': 'Why wasn’t he “legally in that position”?', 'created': '2024-11-13 20:18:45', 'submission_id': '1gqi06k'}
{'comment': 'Did you say biotech?? Big Pharma needs to run too!!', 'created': '2024-11-13 21:57:29', 'submission_id': '1gqi06k'}
{'comment': "You're the last one out here saying biotch.", 'created': '2024-11-13 19:56:46', 'submission_id': '1gqi06k'}
{'comment': "In order for him to legally be in that position, he'd have had to have been nominated and confirmed by the Senate. He wasn't.", 'created': '2024-11-13 20:39:04', 'submission_id': '1gqi06k'}
{'comment': "I thought he was one of the DOJ prosecutors on their staff. If that's not the case he is not under the protection of the DOJ. Trump can get him in a civil trial put him in the poor house. Would love to see it.", 'created': '2024-11-13 21:34:32', 'submission_id': '1gqi06k'}
{'comment': 'This is an example of "law pretzelling" which has become a tool of the left. Judicial activism, legislating from the bench fall into this category. \n\nThe fact is if it wasn\'t for the "Red Wave" Jack Smith would still be on his Jihad against Trump. That he is resigning clearly shows he does not represent justice.\n\nHe and everyone who stood behind him needs prosecuting. Change my mind!', 'created': '2024-11-13 21:55:01', 'submission_id': '1gqi06k'}
{'comment': 'He was not. He was pulled in from outside.', 'created': '2024-11-14 14:54:45', 'submission_id': '1gqi06k'}
{'comment': "I can't change your mind cause I agree with you him quitting doesn't change the illegal route he went and needs to be addressed.", 'created': '2024-11-13 23:04:51', 'submission_id': '1gqi06k'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 18:06:30', 'submission_id': '1gqhs4t'}
{'comment': 'No, do it the right way. Now go to the back of the line.', 'created': '2024-11-14 01:52:36', 'submission_id': '1gqhs4t'}
{'comment': 'The bottom line is "illegal migration" needs fixed! We are a country of immigrants, from it\'s roots. \n\nI don\'t think you and your family are the priority but there\'s also a correct process to imigrate and it\'s existed a long time. Good for you to have gotten to where you are but, it\'s an exception.\n\nWe can\'t continue people to break the law, steal citizen tax dollars and get an express lane to citizenship "illegally".\n\nGet in line, follow the process and glad to have you!', 'created': '2024-11-14 02:16:55', 'submission_id': '1gqhs4t'}
{'comment': None, 'created': '2024-11-13 18:09:30', 'submission_id': '1gqhs4t'}
{'comment': 'Oh like placing an ex-ceo of an oil and gas company Scott Pruitt to lead the EPA?', 'created': '2024-11-13 22:12:35', 'submission_id': '1gqhs4t'}
{'comment': "Agreed. We do need to fix the immigration process. By all means come here.* You pay your taxes like everyone else and I'll hand you a hot dog and a baseball. \n\n*assuming you're not some crazy criminal escaping prosecution from your own country.", 'created': '2024-11-14 05:34:17', 'submission_id': '1gqhs4t'}
{'comment': "Yeah, that's a tough situation. I feel bad for any kids brought here. Their parents are the one who broke the law.\n\nAt the same time if you grant the kid citizenship or even legal status your encouraging more parents to come here illegally with their kids in hope for a better life.", 'created': '2024-11-13 18:26:17', 'submission_id': '1gqhs4t'}
{'comment': 'Same', 'created': '2024-11-14 08:51:52', 'submission_id': '1gqhs4t'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 18:04:39', 'submission_id': '1gqhqhr'}
{'comment': 'I was watching MSNBC and CNN for a week to watch the meltdowns 😅😂🤣', 'created': '2024-11-13 19:40:12', 'submission_id': '1gqhqhr'}
{'comment': 'I did, msnbc on election night was must-see TV. It was a glorious, slow train wreck. It was amazing.', 'created': '2024-11-13 20:11:52', 'submission_id': '1gqhqhr'}
{'comment': 'I gotta throw in ABC too. David Muir said that they aren’t calling PA out of caution and this was around 1am. Hope Pres Trump never gives Muir or his lackeys an interview', 'created': '2024-11-13 22:42:03', 'submission_id': '1gqhqhr'}
{'comment': 'Good . False narratives are what they’re good at making .', 'created': '2024-11-13 19:47:43', 'submission_id': '1gqhqhr'}
{'comment': 'I also DVR the view the next morning lmao', 'created': '2024-11-13 23:06:22', 'submission_id': '1gqhqhr'}
{'comment': 'Oh I love the meltdowns too that was the entertaining part Trump 2024', 'created': '2024-11-14 00:43:32', 'submission_id': '1gqhqhr'}
{'comment': 'Seriously! See ya, wouldn’t wanna be ya😂😂😂', 'created': '2024-11-14 01:49:18', 'submission_id': '1gqhqhr'}
{'comment': 'https://youtu.be/F6rC6M77ekM?si=XoMysvhoZKQYg8HN', 'created': '2024-11-14 01:24:43', 'submission_id': '1gqhqhr'}
{'comment': 'Although my mom voted for Trump for the third time she started watching MSNBC during the election and she got lured in…. She is still watching their trash and everyday in the phone she calls me with concerns. 🤦\u200d♀️🤦\u200d♀️🤦\u200d♀️🤦\u200d♀️🤦\u200d♀️ can’t wait for January 20th.', 'created': '2024-11-14 04:24:35', 'submission_id': '1gqhqhr'}
{'comment': 'MSNBC on election night and the next morning was highly entertaining. It was better than almost everything woke Hollywood has released this year with a couple of exceptions.', 'created': '2024-11-14 15:15:41', 'submission_id': '1gqhqhr'}
{'comment': 'Go woke! Go broke!', 'created': '2024-11-14 19:43:51', 'submission_id': '1gqhqhr'}
{'comment': "That's the bump in viewership that they have been mistaking for actual brain dead leftists. 😆", 'created': '2024-11-13 19:44:34', 'submission_id': '1gqhqhr'}
{'comment': "That's funny I did as well. They don't handle loss well.", 'created': '2024-11-13 20:16:46', 'submission_id': '1gqhqhr'}
{'comment': 'I did too! I had watched CNN before, but never MSNBC. My god the outlandish people, comments and stories that have on that channel were shocking to me. I can understand why those who get their news from MSNBC are having meltdowns. I see why they feel so terrified and despondent. That was a wild ride, and not based on truth, reality, or common sense. I cannot find the words to adequately convey how appalling their “news” organization is.', 'created': '2024-11-14 06:21:33', 'submission_id': '1gqhqhr'}
{'comment': 'Putting SNL to shame... 😆', 'created': '2024-11-13 20:23:02', 'submission_id': '1gqhqhr'}
{'comment': 'Rita for press secretary!', 'created': '2024-11-14 03:28:55', 'submission_id': '1gqhqhr'}
{'comment': 'I’m with your mom. I’ve never seen so much hyperbole and baseless fear mongering from a news organization. They are ground zero for small minded echo chambers (much like most of Reddit 😜).', 'created': '2024-11-14 06:25:16', 'submission_id': '1gqhqhr'}
{'comment': 'I know! Here I am on Reddit posting but I keep myself informed from other sources. Meaning that I look at full press conferences and look at actual sources. My mom doesn’t she just goes to whatever news source she comes across first. Tempted to go to her house and put on newsmax or Fox but honestly that isn’t the answer. I truly don’t care which way she leans as long as she doesn’t swear me off. 😆 I just want her to form her opinions on facts and not sound bites or propaganda. She came from an age of true journalism which unfortunately has died. In the state and age we have to be own journalist.', 'created': '2024-11-14 06:43:19', 'submission_id': '1gqhqhr'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 17:53:55', 'submission_id': '1gqhgwp'}
{'comment': "Biden probably thinks he's still a Senator and Trump is still in office.", 'created': '2024-11-13 20:33:11', 'submission_id': '1gqhgwp'}
{'comment': "I would have the FBI do a full sweep of the white house to remove Joe's used Depends, Hunters leftover drugs and Tim's discarded tampons. 😆", 'created': '2024-11-13 19:06:20', 'submission_id': '1gqhgwp'}
{'comment': 'Trump: So Joe do you have anything perpared or any specific contingency plans your administration drew up while I was gone? 😃\n\nBiden: My uncle..... 😨 my uncle Bo was eaten by Papua New Guinea natives 🥺☹️', 'created': '2024-11-14 06:02:55', 'submission_id': '1gqhgwp'}
{'comment': "I think the biggest effort is going to be cleaning up Kamala Harris' tears. Probably enough to fill a swimming pool.", 'created': '2024-11-13 21:18:33', 'submission_id': '1gqhgwp'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 17:15:17', 'submission_id': '1gqgjla'}
{'comment': 'Not quite up to Joseph Conrad\'s "The Horror! The HORROR!"', 'created': '2024-11-13 17:19:27', 'submission_id': '1gqgjla'}
{'comment': 'The thought of companies not being able to exploit desperate migrants for cheap labor really keeps me up at night 🫣', 'created': '2024-11-13 18:39:37', 'submission_id': '1gqgjla'}
{'comment': 'haha, wish r/comics can make these instead of being a echo chamber', 'created': '2024-11-13 17:25:39', 'submission_id': '1gqgjla'}
{'comment': "Can someone explain this joke to me like I'm 5?\n\nDo people think the worst thing that can happen from mass deportation is that they have to clean their own house, and not celebrating the decrease in drug trafficking?", 'created': '2024-11-13 19:04:30', 'submission_id': '1gqgjla'}
{'comment': '100%', 'created': '2024-11-13 17:19:07', 'submission_id': '1gqgjla'}
{'comment': 'So damn true.', 'created': '2024-11-13 20:40:45', 'submission_id': '1gqgjla'}
{'comment': 'Lmfao!', 'created': '2024-11-13 19:19:39', 'submission_id': '1gqgjla'}
{'comment': "Handmaid's Tale is just kind of dumb to make IRL comparisons to when you consider it takes place in a post-apocalyptic scenario. I also don't know if the people making the comparison have read it or if they've only heard about the role of the hand maids.", 'created': '2024-11-14 01:38:43', 'submission_id': '1gqgjla'}
{'comment': 'Dude looks like mini ladd', 'created': '2024-11-14 02:32:49', 'submission_id': '1gqgjla'}
{'comment': 'For this comic, same author as the Biden with the voter losing pigment?', 'created': '2024-11-14 00:48:32', 'submission_id': '1gqgjla'}
{'comment': 'The leftist elites\' argument against deporting illegal aliens is that people will have to mow their own lawns, clean their own houses, parent their own children (rather than relying on illegal alien nannies), pick our own food (about 5% of illegal aliens work in agriculture) and otherwise do the jobs that "Americans won\'t do".\n\nAmericans *used to do* those jobs, our country was better for it, and a large part of the reasons why Americans won\'t do them now is because the 40 million illegal aliens in the country have driven down wages for unskilled labor to at or below minimum wage, and the work requirement for welfare has been waived in a lot of states.', 'created': '2024-11-13 19:09:28', 'submission_id': '1gqgjla'}
{'comment': 'You must have missed this front page gem from r houstonwade\n\n>Once the Trump mass deportation process starts, they will use prison labor to supply slaves to farms and other understaffed industries. They will accomplish this through mass arrests of "others", such as left leaning people who have spoke out against Trump.', 'created': '2024-11-14 08:49:09', 'submission_id': '1gqgjla'}
{'comment': 'You must have missed the mass amount of people concerned over the fact that the workforce will be impacted', 'created': '2024-11-13 21:42:35', 'submission_id': '1gqgjla'}
{'comment': 'Yes', 'created': '2024-11-15 23:29:56', 'submission_id': '1gqgjla'}
{'comment': 'Thank you for explaining. What a luxury it must be that the biggest concern a person may have is cleaning a house and raising children you chose to have.', 'created': '2024-11-13 19:13:29', 'submission_id': '1gqgjla'}
{'comment': 'The other side to this and the “handmaid’s tale” also refers to abortion rights. \n\nThe hardcore left believes that DJT wants full bans on abortion (which is not the case)— therefore reducing women to what they believe the right sees as a woman’s role: making babies (either by choice or force) and staying at home to cook and clean. 🤦🏽\u200d♀️ It’s very reductionist.', 'created': '2024-11-13 19:24:40', 'submission_id': '1gqgjla'}
{'comment': 'I find it pretty degrading to us latinos/latinas that all they see us as good for is scrubbing toilets, babysitting and picking fruit or picking up after them. As if there are not intelligent people like lawyers ,celebrities, scientists, artists, writers and doctors in Latin America. We are all just a bunch of scum who know nothing but baybsitting and mowing lawns, and golly we better vote Democrat for the fine gift of manual labor that our left wing overlords have so kindly bestowed upon us.', 'created': '2024-11-13 23:45:34', 'submission_id': '1gqgjla'}
{'comment': "You forgot: to take care of their elders. I work in the elderly housing and you would be surprised at how many homes run on illegal labor. When I have to compete with the other business the same question comes up: why do you charge so much? It is because I abide by labor laws. I barely am able to pay for the mortgage after paying for employment legally. So much so the only payout for me is the payment of selling the property. I was misled when I was told that the elderly housing is a lucrative business, it is only lucrative if you run on illegal labor and assisted with someone that works in the discharge center that can give biased direction to the family as to where to place their elderly with needs (which is also illegal, but happens more times than not). \n\nUnrelated, to the post but an additional Tid bit, what the agents in this industry do is legal but it will likely make you sick. They charge 100% 1st months rent or more (like a place for mom) directly to the facility providing the service. Even though the extent of the work provided is texting the facility to schedule an appointment and making sure to show the clients 3 homes(there's a free government website that lost these places and how well they perform). All of the admission paperwork and testing is done by the facility. That looks like $5,000-10,000 paycheck from the facility to the agents. If you ever find yourself needing care for your elderly please do not use an agent or go to a place with illegal labor. If you do both you will likely pay the same as if you went to a place with illegal labor and found it through agent.\nP. S. There is a government aid program from Mastercareplan.com through Medicaid. The agents hate this program because they are not allowed to charge their ridiculous finders fees and most will never even mention it.", 'created': '2024-11-13 19:58:57', 'submission_id': '1gqgjla'}
{'comment': "Wtf. That's a lot to process. What about freedom of speech? I definitely need to take a look at this.", 'created': '2024-11-14 09:54:20', 'submission_id': '1gqgjla'}
{'comment': "I've heard the work force worries. But I just didn't connect it to this one.", 'created': '2024-11-13 22:30:26', 'submission_id': '1gqgjla'}
{'comment': "You should consider it degrading. When the Democrats stopped being allowed to *actually* own people they worked on finding ways of recreating slavery as closely as possible without actual ownership. For black people that was done with Jim Crow. They maintained control in part via abortion as population control. That's why black people are still 13% of the population despite having many more children than whites. When Republicans forced the end of Jim Crow, Democrats needed a new slave population, and found it via illegal aliens. ...and they think all illegal aliens are Latinos, and all Latinos are illegal aliens (or represent or have close family who are illegal aliens).\n\nThey consider you slaves and subhuman, and treat you accordingly.", 'created': '2024-11-14 15:05:49', 'submission_id': '1gqgjla'}
{'comment': "It's ironic because a lot of Americans go to Mexico for medical procedures because it's affordable. We obviously respect them as doctors in their country but have no problem reducing them to the same five jobs once they change locations.", 'created': '2024-11-14 01:48:31', 'submission_id': '1gqgjla'}
{'comment': 'I celebrate this. Thank you. Just happened to go to the doctors and received wonderful medical care from some Latin doctors! Friendly too!', 'created': '2024-11-14 13:27:40', 'submission_id': '1gqgjla'}
{'comment': "As a white American, it might be my own prejudice speaking, but I feel like a mexican doctor would be more friendly, and care more for my health than an American doctor.\n\nFunny, I was just talking to my 11 yo son yesterday about how it's insulting to minorities to say they need help from whites to get ahead in life.", 'created': '2024-11-15 06:20:40', 'submission_id': '1gqgjla'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 17:07:50', 'submission_id': '1gqgd3r'}
{'comment': 'I like the guy but fucking hell… It’d be a bit odd to replace my wife and child as my phone wallpaper to a president…', 'created': '2024-11-13 17:48:25', 'submission_id': '1gqgd3r'}
{'comment': 'Am glad he won and all that...but dang! Am not in-love with the guy. Politics is neither my religion or hobby. Politicians work me...they should have a picture of us...on their phone...to remind them who they work for and that power is fleeting.', 'created': '2024-11-13 20:05:08', 'submission_id': '1gqgd3r'}
{'comment': 'This is a fat ass L', 'created': '2024-11-13 23:19:05', 'submission_id': '1gqgd3r'}
{'comment': 'Wack 👎', 'created': '2024-11-13 20:28:00', 'submission_id': '1gqgd3r'}
{'comment': "Why don't you marry him?", 'created': '2024-11-13 22:35:20', 'submission_id': '1gqgd3r'}
{'comment': 'yeah no', 'created': '2024-11-13 18:38:34', 'submission_id': '1gqgd3r'}
{'comment': 'Culty.', 'created': '2024-11-13 18:33:34', 'submission_id': '1gqgd3r'}
{'comment': "That's....odd", 'created': '2024-11-13 17:44:18', 'submission_id': '1gqgd3r'}
{'comment': 'This is why they think we our extreme or cultist .. a wallpaper seems like a bit odd, no ? 😭😭 I wanted the guy to win and I’m happy he did but never putting the guy as my wallpaper', 'created': '2024-11-13 20:33:58', 'submission_id': '1gqgd3r'}
{'comment': 'Oh that’s pretty submissive. You don’t have to worship him.', 'created': '2024-11-13 20:34:12', 'submission_id': '1gqgd3r'}
{'comment': 'Little excessive', 'created': '2024-11-13 17:54:44', 'submission_id': '1gqgd3r'}
{'comment': 'This is wayyy too much. Nice Cowboy Bebop reference', 'created': '2024-11-14 02:01:57', 'submission_id': '1gqgd3r'}
{'comment': 'Well i don’t have a wife or kids so…😂 (i’m 20 that’s why)', 'created': '2024-11-13 17:54:02', 'submission_id': '1gqgd3r'}
{'comment': 'Weird', 'created': '2024-11-13 20:56:53', 'submission_id': '1gqgd3r'}
{'comment': 'Do you not have a pet of family? This is weird bro', 'created': '2024-11-14 16:56:38', 'submission_id': '1gqgd3r'}
{'comment': 'Sorry but no, this is not normal.', 'created': '2024-11-15 02:08:08', 'submission_id': '1gqgd3r'}
{'comment': 'Hey bud that’s very cringe and creepy.', 'created': '2024-11-15 02:28:39', 'submission_id': '1gqgd3r'}
{'comment': 'Reminds of that one girl that yelled “Trump can I have your babies” during the rally 😭', 'created': '2024-11-15 08:00:13', 'submission_id': '1gqgd3r'}
{'comment': 'This goes harder than the Trump mugshot. Makes an excellent wallpaper lol.\n\nEdit: I meant profile picture 😔', 'created': '2024-11-13 20:04:45', 'submission_id': '1gqgd3r'}
{'comment': 'Looks badass.', 'created': '2024-11-13 20:36:51', 'submission_id': '1gqgd3r'}
{'comment': 'this is a completely fine wallpaper for a phone. its not worshiping him or too crazy. it also might give you some motivation to start ur day when u look at ur phone since the fucking president himself is pointing at you.', 'created': '2024-11-13 21:54:33', 'submission_id': '1gqgd3r'}
{'comment': 'Normally I think political wallpapers are dumb but this image goes hard af', 'created': '2024-11-13 22:39:57', 'submission_id': '1gqgd3r'}
{'comment': 'Pretty cool, man', 'created': '2024-11-13 18:43:28', 'submission_id': '1gqgd3r'}
{'comment': 'Yep and my liberal kids are coming to visit over the next two major holidays so not going there!', 'created': '2024-11-13 21:53:04', 'submission_id': '1gqgd3r'}
{'comment': 'If someone wanted to use it you’d need to drop the timestamp.', 'created': '2024-11-13 19:27:59', 'submission_id': '1gqgd3r'}
{'comment': 'https://www.instagram.com/reel/C_wKUKIulB1/?igsh=OGl2cDRuNzN2aHp5\n\nJust show people this. This is cool!', 'created': '2024-11-13 21:53:37', 'submission_id': '1gqgd3r'}
{'comment': 'I’m glad someone else said it. It’s fucking weird to idolize a politician like this or any celeb for that matter. I voted for the guy too, but I’m not gonna turn that into my whole personality.', 'created': '2024-11-13 20:51:10', 'submission_id': '1gqgd3r'}
{'comment': 'right 😭😂', 'created': '2024-11-13 18:40:33', 'submission_id': '1gqgd3r'}
{'comment': 'Pretty much', 'created': '2024-11-13 20:34:13', 'submission_id': '1gqgd3r'}
{'comment': 'That’s what I’m saying. I’m 100% for him as president but I am not doing this.', 'created': '2024-11-13 21:46:39', 'submission_id': '1gqgd3r'}
{'comment': 'Well just keep it when you need to send it to a troll', 'created': '2024-11-13 19:28:37', 'submission_id': '1gqgd3r'}
{'comment': 'Ding ding ding. I’m sure as hell not going to replace my wife in a bikini and my lovely kiddo on a beach in Mexico for him. Sorry, Don. Pretty sure if you saw my wife you’d agree.', 'created': '2024-11-13 22:46:27', 'submission_id': '1gqgd3r'}
{'comment': "You uh, you do know what a cult is, right? Because this is definitely not one 😅 delusional, much? People keep famous people as their wallpapers all the time. Hell, I'd argue Trump is the most famous man alive right now, and he was a celebrity before he even got in anyhow.", 'created': '2024-11-13 19:03:39', 'submission_id': '1gqgd3r'}
{'comment': "My mom has a shrine 😭😭😭 she doesn't even keep pictures of the kids around 🤣", 'created': '2024-11-14 16:55:21', 'submission_id': '1gqgd3r'}
{'comment': 'Making celebrities your wallpaper is weird too dude\n\nUnless it’s like George Washington or something but that would also be kinda weird in its own way', 'created': '2024-11-13 19:18:33', 'submission_id': '1gqgd3r'}
{'comment': '😂😂😭 this is what I’m talking about .. the trump worshippimg gets out of hand. Love the guy but come onn. \n\nSo are you not joking about the shrine ? 🤣 I’ve never heard that before. LOL.', 'created': '2024-11-14 17:18:52', 'submission_id': '1gqgd3r'}
{'comment': "I'm saying it's not a cult behavior, my guy. -.- \n\nYou guys can dislike all you want, but I'm standing by what I said. It's delusional to assume cult behavior because you idolize someone.\n\nTrump turned a few million into 10 billion, owns a massive business empire, had his own successful TV show, and not to mention the whole wrestling stick. Oh, did I mention he also became president, got impeached twice, and then fought numerous unjust lawfare cases only to come out on top as President of The United States.... again - and it was a landslide. \n\nThere is much to admire about him, and he definitely inspires people. So what if someone has him as a wallpaper.\n\nEDIT: Oh, and to all the Republicans who liked the above comment - he's a liberal who despises Trump, look at his history. He's in here calling people weird, and ya'll are falling for that. Insane.\n\nEDIT: To the dude calling us 'culty,' you're literally another liberal on a Republican sub reddit coming into here just to stir stuff up, but yeah. We sure are cultists. 🙃", 'created': '2024-11-13 23:02:39', 'submission_id': '1gqgd3r'}
{'comment': "I'm not joking about the shrine. Her clients also put one up during elections. We are Hispanic so imagine the equivalent of a shrine of Jesus but for trump.", 'created': '2024-11-14 17:39:02', 'submission_id': '1gqgd3r'}
{'comment': 'That is hilarious and I’m Hispanic too and man my mom was angry I was supporting trump. I feel ya.', 'created': '2024-11-14 19:17:54', 'submission_id': '1gqgd3r'}
{'comment': "I don't support him, but my family does. I'm just snooping 😬 trying to better understand why people support him. Not trying to cause trouble just like to see it directly from the source.", 'created': '2024-11-14 21:38:28', 'submission_id': '1gqgd3r'}
{'comment': 'Hey, I can give you some reasons why I support the guy and his policies. If you’re open to it, friend.', 'created': '2024-11-14 21:41:42', 'submission_id': '1gqgd3r'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 16:46:24', 'submission_id': '1gqfuoq'}
{'comment': 'We taking bets on the most costly and useless government dept.?', 'created': '2024-11-13 16:52:26', 'submission_id': '1gqfuoq'}
{'comment': "I seriously hope he does this and it isn't just talk.", 'created': '2024-11-13 17:27:36', 'submission_id': '1gqfuoq'}
{'comment': 'Top of the list: [REDACTED]: $55 BILLION', 'created': '2024-11-13 18:29:33', 'submission_id': '1gqfuoq'}
{'comment': 'I’m loving this idea already. I can’t wait to see the leaderboard.', 'created': '2024-11-13 17:16:55', 'submission_id': '1gqfuoq'}
{'comment': 'Oh, the Nancy Pelosis and Chuck Schumers of the world are going to lose their collective minds…. And I love it! Accountability has never been their thing!', 'created': '2024-11-13 18:09:14', 'submission_id': '1gqfuoq'}
{'comment': 'lol love this guy', 'created': '2024-11-13 16:54:22', 'submission_id': '1gqfuoq'}
{'comment': "Like a IRS but just for the government..... sweet. Go get Newsom. Lost 24 Billion just on homeless..... only 170k homeless. That's $140k each.... zero results.", 'created': '2024-11-13 19:44:32', 'submission_id': '1gqfuoq'}
{'comment': 'Anyone else a tad worried about the House? I got an email from my state assembly member saying CA keeps throwing out Republican signatures. I feel like as time rolls on the lead gets smaller and smaller in a lot of districts. The fact that they’re still counting on 11/13 is a joke', 'created': '2024-11-13 17:39:40', 'submission_id': '1gqfuoq'}
{'comment': "This is exciting news. Can't wait to see the leaderboard!", 'created': '2024-11-13 18:02:30', 'submission_id': '1gqfuoq'}
{'comment': 'The perfect guys for the job. Disconnected from Washington and experienced in successfully operating huge businesses. They’ll know BS when they see it and they’ll be ruthlessly efficient in getting rid of it.', 'created': '2024-11-13 17:01:27', 'submission_id': '1gqfuoq'}
{'comment': 'This is why so many democrats are horrified of a Trump win. All the career bureaucrats that collect a Government salary but serve little to zero purpose in their roles are about to lose their jobs. \n\nSucks to sucks.', 'created': '2024-11-13 17:38:21', 'submission_id': '1gqfuoq'}
{'comment': 'Elon and Vivek\'s team ought to hire that Rob Walchek reporter out of Detroit to bring the "Hall of Shame" to D.O.G.E. \n\nThat would some hugely entertaining if not shocking news reporting. Talking fat cat bureaucrats running away at the sight of Walchek.', 'created': '2024-11-13 17:40:01', 'submission_id': '1gqfuoq'}
{'comment': 'Wow. Game changer.', 'created': '2024-11-13 18:38:07', 'submission_id': '1gqfuoq'}
{'comment': 'Love it. Full transparency… they will still be mad though', 'created': '2024-11-13 18:45:21', 'submission_id': '1gqfuoq'}
{'comment': 'why would anyone think this is bad?', 'created': '2024-11-13 23:04:38', 'submission_id': '1gqfuoq'}
{'comment': "Imagine this, Day 1 they're going to order the removal of flouride from our drinking water, but they're also going to explain exactly why it should not be added to our bodies, the damages done to our bodies and the fact that not conclusive evidence exists that it actually has made our teeth stronger. WHAT A CONCEPT!", 'created': '2024-11-13 16:50:47', 'submission_id': '1gqfuoq'}
{'comment': 'I remember Barry saying the same thing before he took office and how he’ll have the “most transparent administration in history”.\n\nI believe Elon light years more than Barry, but any time someone proclaims transparency, it gives me pause.', 'created': '2024-11-13 18:39:46', 'submission_id': '1gqfuoq'}
{'comment': 'Taking back our Country.\n\nNow go after the transgender BS.', 'created': '2024-11-13 17:31:00', 'submission_id': '1gqfuoq'}
{'comment': 'It is, can’t wait for the red states to realize they get almost all of the handouts and carve outs that matter', 'created': '2024-11-13 20:08:56', 'submission_id': '1gqfuoq'}
{'comment': 'He literally fired around 75% of twitter and guess what? The platform still works! I’m sure the same can easily be done with our government.', 'created': '2024-11-13 18:09:16', 'submission_id': '1gqfuoq'}
{'comment': 'Running the government by online poll \\*shrug\\*. How long before we have "The Department of McDepartmentface"?', 'created': '2024-11-13 18:14:06', 'submission_id': '1gqfuoq'}
{'comment': 'This is awesome!', 'created': '2024-11-13 17:11:05', 'submission_id': '1gqfuoq'}
{'comment': 'Hell yes', 'created': '2024-11-13 19:39:09', 'submission_id': '1gqfuoq'}
{'comment': 'Fucking love this guy!', 'created': '2024-11-13 19:59:57', 'submission_id': '1gqfuoq'}
{'comment': 'Find a job you enjoy doing you will never have to work a day in your life - Mark Twain', 'created': '2024-11-13 20:11:38', 'submission_id': '1gqfuoq'}
{'comment': 'Will I be shocked how my tax dollars are being spent? Probably not.', 'created': '2024-11-13 20:24:03', 'submission_id': '1gqfuoq'}
{'comment': 'Can’t wait to see what our money is being wasted on', 'created': '2024-11-13 20:24:10', 'submission_id': '1gqfuoq'}
{'comment': 'This is going to be hilarious.', 'created': '2024-11-13 20:31:29', 'submission_id': '1gqfuoq'}
{'comment': 'It is next to impossible to fire a government employee. I suggest that instead of firing someone, they relocate the position to the southern border and offer the employee the opportunity to relocate. If they choose not to relocate, then they abandon their position. No termination required.', 'created': '2024-11-13 22:35:05', 'submission_id': '1gqfuoq'}
{'comment': 'Department of Efficiency? In the US?', 'created': '2024-11-13 22:50:38', 'submission_id': '1gqfuoq'}
{'comment': 'I love this idea. Bring it, Elon and Vivek!', 'created': '2024-11-14 08:16:11', 'submission_id': '1gqfuoq'}
{'comment': "Can't wait to see a nice slick dashboard where all our spending goes.", 'created': '2024-11-14 23:16:22', 'submission_id': '1gqfuoq'}
{'comment': 'Who determines what’s costly or not?', 'created': '2024-11-13 21:45:22', 'submission_id': '1gqfuoq'}
{'comment': 'I hope they do something with the student loan interest. I will pay what I owe, but please make it to where my 900 dollars a month goes to the principal. There is no reason our students loans should be going up instead of down.', 'created': '2024-11-13 20:20:56', 'submission_id': '1gqfuoq'}
{'comment': 'Wow omg that’s amazing', 'created': '2024-11-13 17:35:06', 'submission_id': '1gqfuoq'}
{'comment': 'Dang!! Republicans aren’t messing around this go around. The left pushed us too far and now as I had been saying is going to come and bite them so hard. These next four years are going to be joyful but also entertaining to watch these liberals cry, bitch, moan… but most importantly LOSE.', 'created': '2024-11-13 18:08:49', 'submission_id': '1gqfuoq'}
{'comment': 'This man child is making a joke of the entire US. How is this happening. Jesus...', 'created': '2024-11-13 23:31:13', 'submission_id': '1gqfuoq'}
{'comment': 'we need an honorable mention on the scoreboard for privately held money being wasted due to insane government actions, like how costco was required by the fda to recall 80,000 pounds of butter because the packaging didn\'t say "may contain milk".', 'created': '2024-11-13 21:32:03', 'submission_id': '1gqfuoq'}
{'comment': 'Lmaoooo this is PEAK SO PEAK PEAK PEAK', 'created': '2024-11-13 22:25:15', 'submission_id': '1gqfuoq'}
{'comment': 'Let’s go DOGE!', 'created': '2024-11-14 00:11:20', 'submission_id': '1gqfuoq'}
{'comment': 'IRS IRS!!!!', 'created': '2024-11-14 02:08:44', 'submission_id': '1gqfuoq'}
{'comment': "I'm really loving Trump's cabinet picks, it seems like he really is on point this time around, which makes me super hopeful that things will get done, I haven't felt this optimistic and hopeful about anything in the past 4 years!", 'created': '2024-11-14 03:09:04', 'submission_id': '1gqfuoq'}
{'comment': '“Hey uh Donny boy can we call it Doge?”\xa0', 'created': '2024-11-14 05:01:34', 'submission_id': '1gqfuoq'}
{'comment': 'This is so fucking glorious', 'created': '2024-11-14 05:05:19', 'submission_id': '1gqfuoq'}
{'comment': 'This is winning! Turn the ATF into a convenience store!\nAlso, JUSTICE FOR PEANUT!!!', 'created': '2024-11-14 05:30:56', 'submission_id': '1gqfuoq'}
{'comment': 'so hyped!!!! Thank God!!!!!!', 'created': '2024-11-14 06:35:04', 'submission_id': '1gqfuoq'}
{'comment': 'Awesome! "How is it to be run by billionaires" experiment has begun! US, you\'re doing it for science.\n\nSpoiler: It will turn out that such useless deparaments as education, health and military are the most expensive', 'created': '2024-11-14 09:15:40', 'submission_id': '1gqfuoq'}
{'comment': 'This department is the CIA for money.', 'created': '2024-11-14 12:52:18', 'submission_id': '1gqfuoq'}
{'comment': "For the sake of our resources, please prioritize addressing the issues within the EPA first. It's essential to remove those who may be acting out of greed or corruption.\n\nAdditionally, conduct a thorough review of every individual currently or previously employed by the FDA. Examine their involvement in approving products that have been harmful to public health.\n\nThe Department of Defense (DoD) also needs scrutiny regarding its expenditures. Spending $10,000 on a pack of screws is unacceptable. It is crucial to hold companies accountable for overpricing and, if necessary, sever ties with those who exploit government contracts. These companies should be compelled to ensure fair pricing and accountability.\n\nI am certain and would bet money on EPA being top 3 of not first place when it comes to wasted resources.", 'created': '2024-11-14 22:20:40', 'submission_id': '1gqfuoq'}
{'comment': 'Good. One glaring thing that’s been missing in government is accountability.', 'created': '2024-11-14 23:39:05', 'submission_id': '1gqfuoq'}
{'comment': "Such transparency within government is unheard of. This is great!!!! let's start with every Department being obligated to appear before Congress to this Gov. Efficiency organization to justify their existence and how much they deserve. This will be EASY for groups like DOD harder for DOE", 'created': '2024-11-17 07:14:30', 'submission_id': '1gqfuoq'}
{'comment': 'So the departments are too expensive so...they open a new department?', 'created': '2024-11-13 17:01:31', 'submission_id': '1gqfuoq'}
{'comment': 'Maybe if we do this it will also help inflation by not spending tax payers dollars on dumb shit', 'created': '2024-11-13 19:39:37', 'submission_id': '1gqfuoq'}
{'comment': 'Department of government efficiency… run by 2 people. Could it really just be a 1 man job ?', 'created': '2024-11-13 23:41:26', 'submission_id': '1gqfuoq'}
{'comment': 'I’m not understanding the sinks reference?', 'created': '2024-11-13 19:13:21', 'submission_id': '1gqfuoq'}
{'comment': "Trump coming up with some mega ideas. An overlooked facet of his first term was alienation of the CIA. He and his admin used private contractors for investigation and spy work - effectively cutting out the CIA. \n\nYou can't get rid of the CIA without an act of congress. But you can make it ride the bench. \n\nThis Musk strategy is the same thing: use a trusted outsider to influence decisions within the admin.", 'created': '2024-11-13 19:14:15', 'submission_id': '1gqfuoq'}
{'comment': 'My respect for Elon is growing exponentially day by day 🥰 And Vivek rocks!!', 'created': '2024-11-13 20:33:53', 'submission_id': '1gqfuoq'}
{'comment': 'This is such a bad idea', 'created': '2024-11-13 17:14:33', 'submission_id': '1gqfuoq'}
{'comment': "I read a book that says GDP is important for raising government loans, which is the reason for the bloated government. \n\nHow will government job cuts affect GDP? As sadly that's all anyone seems to care about.", 'created': '2024-11-13 21:14:06', 'submission_id': '1gqfuoq'}
{'comment': None, 'created': '2024-11-14 08:17:02', 'submission_id': '1gqfuoq'}
{'comment': 'Congress', 'created': '2024-11-13 16:55:28', 'submission_id': '1gqfuoq'}
{'comment': 'Probably the ATF', 'created': '2024-11-13 19:21:28', 'submission_id': '1gqfuoq'}
{'comment': 'Based on the comments of a dozen FEMA employees I know, it’s 100% FEMA', 'created': '2024-11-14 01:24:48', 'submission_id': '1gqfuoq'}
{'comment': 'Defense and Health will be rife with money laundering and waste. Same with EPA and Department of education (which Trump is just outright dissolving)', 'created': '2024-11-13 17:03:59', 'submission_id': '1gqfuoq'}
{'comment': "HHS has so much bloat it ain't even funny.\n\nDoD does too, but that's gonna be a hard nut to crack.", 'created': '2024-11-14 19:16:45', 'submission_id': '1gqfuoq'}
{'comment': 'Can I say California?', 'created': '2024-11-14 01:52:16', 'submission_id': '1gqfuoq'}
{'comment': 'CIA', 'created': '2024-11-14 06:14:19', 'submission_id': '1gqfuoq'}
{'comment': 'Anything regarding gender swapping', 'created': '2024-11-13 22:41:06', 'submission_id': '1gqfuoq'}
{'comment': 'Department of education is my bet.', 'created': '2024-11-14 23:45:32', 'submission_id': '1gqfuoq'}
{'comment': 'There is so much waste in government, hope it is real and they at least make a dent in it.', 'created': '2024-11-13 21:46:10', 'submission_id': '1gqfuoq'}
{'comment': 'I hope it can point out state government waste too. That’s is one of the bigger factors.', 'created': '2024-11-14 01:49:57', 'submission_id': '1gqfuoq'}
{'comment': 'Zelenskyy', 'created': '2024-11-14 03:53:23', 'submission_id': '1gqfuoq'}
{'comment': 'Gonna be stuff like $50 million to study the migration pattern of snails or $75 million to study why water is wet and the sky is blue.', 'created': '2024-11-13 20:43:34', 'submission_id': '1gqfuoq'}
{'comment': 'We might suddenly see geriatric career politicians retiring for a change. Pelosi, Schumer, Schiff, and any old Republicans guilty of wasteful spending as well. Idc what is next to their name, if they are a waste of our tax $$, they need to go.', 'created': '2024-11-13 20:55:13', 'submission_id': '1gqfuoq'}
{'comment': "The house is already decided. the DW has already called all but 2 seats. I know they call the elections earlier than anyone else, but they haven't been wrong yet. It's looking like a slight majority in the house.", 'created': '2024-11-13 21:32:24', 'submission_id': '1gqfuoq'}
{'comment': "Musk isn't really known for knowing BS when he sees it.", 'created': '2024-11-13 18:24:42', 'submission_id': '1gqfuoq'}
{'comment': 'Their gonna ramp up the fear porn to drown it out.', 'created': '2024-11-13 20:56:08', 'submission_id': '1gqfuoq'}
{'comment': 'OnlyFans accounts about to skyrocket 🤣', 'created': '2024-11-14 01:35:52', 'submission_id': '1gqfuoq'}
{'comment': "It's crazy, My whole life using fluoride toothpaste and my teeth literally were rotting away... Switch to non fluoride toothpaste and teeth are fine been fine for 10 years. That s***'s bad", 'created': '2024-11-14 03:20:20', 'submission_id': '1gqfuoq'}
{'comment': 'I really hope that’s what actually happens.', 'created': '2024-11-13 16:56:49', 'submission_id': '1gqfuoq'}
{'comment': 'Does this mean my kids teeth will be yellow? \n\n😆', 'created': '2024-11-13 17:13:54', 'submission_id': '1gqfuoq'}
{'comment': 'Can I ask what your deal is with fluoride? Why is it scary to you?', 'created': '2024-11-13 23:35:42', 'submission_id': '1gqfuoq'}
{'comment': 'I can understand a first time president not being able to deliver on that promise because they genuinely don’t know what they can and cannot be transparent on. But Trump knows. So I don’t think he would promise transparency on this if he knew he couldn’t.', 'created': '2024-11-13 19:58:05', 'submission_id': '1gqfuoq'}
{'comment': 'Alright cmon this just is not accurate. Twitter *barely* functions and is considerably worse than the pre-Musk product. Mobile web experience has daily and constant issues. Bot account problem he promised to remedy has exploded. Every viral tweet has 20-50 clearly AI generated replies from blue check accounts contributing nothing to conversation.', 'created': '2024-11-13 19:45:07', 'submission_id': '1gqfuoq'}
{'comment': 'Twitter is worth less than 50% of what he bought it for but okay', 'created': '2024-11-13 20:22:42', 'submission_id': '1gqfuoq'}
{'comment': '> He literally fired around 75% of twitter and guess what? The platform still works! \n\nbetter than reddit in fact.\n\nseems like every month or two reddit will shit the bed either with a full downtime or with comments/notifications not showing up until like 10-15 minutes after the fact.', 'created': '2024-11-13 21:34:18', 'submission_id': '1gqfuoq'}
{'comment': 'Overrun by bots and neoNazis and bleeding money, but yeah, technically still works 👍', 'created': '2024-11-13 23:33:01', 'submission_id': '1gqfuoq'}
{'comment': 'The… amount of… money spent?', 'created': '2024-11-14 04:58:55', 'submission_id': '1gqfuoq'}
{'comment': "Elon doesn't care about you or your student loans. You should have voted for the Dems if you wanted help.", 'created': '2024-11-13 23:32:14', 'submission_id': '1gqfuoq'}
{'comment': "Can you explain how anything of what he's doing is a joke? You sound like a joke in this flood of positive comments. I will never understand why you ppl continue to live in America when you hate it, so much. 🤷\u200d♂️", 'created': '2024-11-14 04:17:36', 'submission_id': '1gqfuoq'}
{'comment': 'It’s basically an auditing department - small cost to get rid of the big wasteful spending', 'created': '2024-11-13 17:04:38', 'submission_id': '1gqfuoq'}
{'comment': 'How so?', 'created': '2024-11-13 17:58:32', 'submission_id': '1gqfuoq'}
{'comment': "If you cut 3 billion in government jobs, it's basically 1:1 3 billion from the GDP. The effects will be disastrous, but the bet is it will somehow be better in the long run. If you're not really rich already, you still have a couple of months!", 'created': '2024-11-14 11:15:00', 'submission_id': '1gqfuoq'}
{'comment': 'They won’t be able to touch congress', 'created': '2024-11-14 14:08:15', 'submission_id': '1gqfuoq'}
{'comment': "I wish he will just abolish them. They aren't able to make laws or anything and at this point with how much they pay on wrongfull actions, they need to be tossed to the curb", 'created': '2024-11-13 20:49:35', 'submission_id': '1gqfuoq'}
{'comment': 'Oh how I wish he would make Brandon Herrera the director of the ATF. It would be glorious!', 'created': '2024-11-13 21:11:03', 'submission_id': '1gqfuoq'}
{'comment': "I typed my comment before reading yours. You couldn't be any more correct if you tried and had a paper saying you were more correct.", 'created': '2024-11-14 19:17:41', 'submission_id': '1gqfuoq'}
{'comment': 'What does the department of Education actually do? Most everything is handled on the state and local level anyway right?', 'created': '2024-11-14 13:34:34', 'submission_id': '1gqfuoq'}
{'comment': 'And would you like to present your facts why the CIA is a waste of resources?', 'created': '2024-11-14 22:13:22', 'submission_id': '1gqfuoq'}
{'comment': 'Why do you think the establishment has been so against Trump? They are worried he is going to pull them off the taxpayers teat.', 'created': '2024-11-14 13:35:43', 'submission_id': '1gqfuoq'}
{'comment': "I can't disagree with that, but how much power would they have to make changes at the state level other than just calling out the waste?", 'created': '2024-11-14 04:57:53', 'submission_id': '1gqfuoq'}
{'comment': "Don't forget the infinite research on how to monetize and tax the air we all breathe. That idea got definitely passed and forgotten 🤣", 'created': '2024-11-14 22:22:19', 'submission_id': '1gqfuoq'}
{'comment': 'Dude caught a flying skyscraper with chopsticks.', 'created': '2024-11-13 18:31:47', 'submission_id': '1gqfuoq'}
{'comment': "Me too. I was told my teeth were so hard they were brittle. When I started drinking only filtered or well water most of the issues went away, but by then many were just gone, They couldn't even root canal them because they just cracked.", 'created': '2024-11-14 03:25:31', 'submission_id': '1gqfuoq'}
{'comment': 'I’ve been struggling convincing my family. Sure my teeth aren’t Snow White, but my gums have stopped receding and I haven’t had a cavity since quitting fluoride.', 'created': '2024-11-14 06:26:40', 'submission_id': '1gqfuoq'}
{'comment': 'RFK, Jr. has already said the order will go out, he submitted the draft and Trump agreed, the final document will be available and on The Resolute Desk 1/20/2025 when Trump arrives after the inaugural speech, which I understand he plans to keep short.', 'created': '2024-11-13 17:02:48', 'submission_id': '1gqfuoq'}
{'comment': 'Too much fluoride will permanently discolor teeth. Knew a guy this happened to during his youth.\n\nLook up Dental Fluorosis.', 'created': '2024-11-13 17:45:23', 'submission_id': '1gqfuoq'}
{'comment': "Not to worry, when they start drinking coffee they'll go yellow. But the flouride is alledgedly why teeth turn yellow in children.", 'created': '2024-11-13 17:15:22', 'submission_id': '1gqfuoq'}
{'comment': "There's this little thing that was introduce in the late 80s and early 90s called, the worldwide web and there are serveral choice search engines where all that can be searched out. Still I'll give you a clue - it's fucking toxic! \n\nhttps://www.washingtonpost.com/opinions/2024/11/12/fluoride-water-rfk-jr-trump-public-health/", 'created': '2024-11-13 23:46:12', 'submission_id': '1gqfuoq'}
{'comment': 'I agree 100%! But what’s the old saying, ‘Once bitten, Twice shy’', 'created': '2024-11-13 20:04:26', 'submission_id': '1gqfuoq'}
{'comment': 'I don\'t mean to be "that guy", but the racism and antisemitism is also up considerably, and trying to report it is a futile effort. I\'m starting to think "limitless free speech" is just code for "we don\'t have the manpower and we\'re lazy".', 'created': '2024-11-15 16:48:27', 'submission_id': '1gqfuoq'}
{'comment': '> Twitter is worth less than 50% of what he bought it for but okay\n\nthat\'s misleading because when you buy a company, you are paying a premium and buying for **more** than it\'s worth at the time.\n\nliterally nobody sells a company for "what it\'s worth".', 'created': '2024-11-13 21:35:27', 'submission_id': '1gqfuoq'}
{'comment': "He said $44 billion was not the cost of Twitter, it was the cost of free speech. The Twitter he bought wasn't worth what he paid either. It was incredibly overvalued and a good share of the users were already bot accounts to inflate numbers and bost certain posts over others.", 'created': '2024-11-13 20:40:15', 'submission_id': '1gqfuoq'}
{'comment': 'Yeah because shorting hedge funds like Citadel have a hard on for naked shorting Tesla and X.', 'created': '2024-11-13 20:45:07', 'submission_id': '1gqfuoq'}
{'comment': 'No one is forcing you to use it', 'created': '2024-11-13 23:37:49', 'submission_id': '1gqfuoq'}
{'comment': 'I’m not a one issue voter and the republicans would never have let Bidens plan go into action because it wasn’t seen as a good plan. However, if you just freeze the interest then that automatically makes your loan way easier to pay off. It’s a win for both sides. \n\nAlso, why in the world would I think a man I never met, gives a shit about me? Like……that’s a weird take.', 'created': '2024-11-14 01:21:43', 'submission_id': '1gqfuoq'}
{'comment': 'CIA is going to shit a brick when it comes out that a toilet doesn’t cost $16k and they aren’t really paying $1200 for a hammer. How are they supposed to fund their off the books programs!😆😆 And a fake podcast backdrop doesn’t cost over $100k to build!', 'created': '2024-11-13 18:56:28', 'submission_id': '1gqfuoq'}
{'comment': "Seems off considering Musk gets billions and billions of dollars in contracts from this same government. Space x doesn't exist without the united states government. And so it seems like there might be some conflict of interest issues. But who knows. Could be awesome too. But if a democratic president gave George Soros his own department, shit would hit the fan.", 'created': '2024-11-13 19:43:36', 'submission_id': '1gqfuoq'}
{'comment': "They aren't allowed to make laws because they aren't part of the legislative branch of government...........", 'created': '2024-11-14 14:10:47', 'submission_id': '1gqfuoq'}
{'comment': 'Special education funding, title one funding, and higher education grants/loans', 'created': '2024-11-14 23:49:02', 'submission_id': '1gqfuoq'}
{'comment': 'Really?', 'created': '2024-11-15 05:41:16', 'submission_id': '1gqfuoq'}
{'comment': 'Call out the waste and cut funding.', 'created': '2024-11-14 06:34:07', 'submission_id': '1gqfuoq'}
{'comment': 'Speaking of passed, they wanted to tax cow farts as well 😂', 'created': '2024-11-14 22:23:56', 'submission_id': '1gqfuoq'}
{'comment': 'He employs some brilliant engineers. Not sure why everyone gives him all the credit like he was the one parked up in the lab …\n\nEDIT: maybe my point after now having retreated from the Elon ball licker attack is that it’s amazing what SpaceX has achieved. If the US Gov operarional constants and inputs aren’t correlary to those of spacex it’s less enthralling and some caution would be sound….\n\n\nmaybe we can … again.. stop locking Elon’s balls and just see being a psicoohant for what it is and call it out. it’s not helpful and needs to be moderated. \n\nI lost my glasses and apologize to anyone who can’t ready message. I felt see', 'created': '2024-11-13 19:14:40', 'submission_id': '1gqfuoq'}
{'comment': 'Dude posted nearly 100 false claims just the weeks before the election.', 'created': '2024-11-13 18:33:42', 'submission_id': '1gqfuoq'}
{'comment': "Me too, used to get tons of cavities, and a dentist actually told me to stop using fluoride and to switch to Xylitol toothpaste and my teeth have actually healed and haven't had a major cavity in 10 years. Prior to that I would at least get one root canal a year if not more.", 'created': '2024-11-14 06:29:07', 'submission_id': '1gqfuoq'}
{'comment': 'Yellow is a sign of "dentin", which is critical for teeth strength.\n\n> Dentin (/ˈdɛntɪn/ DEN-tin) (American English) or dentine (/ˈdɛnˌtiːn/ DEN-teen or /ˌdɛnˈtiːn/ DEN-TEEN) (British English) (Latin: substantia eburnea) is a calcified tissue of the body and, along with enamel, cementum, and pulp, is one of the four major components of teeth. It is usually covered by enamel on the crown and cementum on the root and surrounds the entire pulp. By volume, 45% of dentin consists of the mineral hydroxyapatite, 33% is organic material, and 22% is water.[1] **Yellow in appearance**, it greatly affects the color of a tooth due to the translucency of enamel. Dentin, which is less mineralized and less brittle than enamel, is necessary for the support of enamel.[2] \n\nI highlighted the yellow part so you can see why it\'s important.', 'created': '2024-11-13 17:48:31', 'submission_id': '1gqfuoq'}
{'comment': 'Really? I never knew that', 'created': '2024-11-13 17:18:51', 'submission_id': '1gqfuoq'}
{'comment': 'No worries about being “that guy” because you’re absolutely correct. Community notes SCREAMS “we’re trying to save money on paying for actual content moderation by making our users do it” and the result is the total dogshit we’re left with', 'created': '2024-11-15 17:03:38', 'submission_id': '1gqfuoq'}
{'comment': 'He bought it for its exact market cap - so exactly what the public was paying for it via share prices. And its valuation is using a similar future earnings multiple to generate now that it’s not publicly traded. \nEven if you don’t want to use “value” as an indicator. Revenue is down 40% YoY. Regardless of what he paid, he’s generating less $$. Use critical thought, it’s okay that maybe X isn’t actually thriving', 'created': '2024-11-13 23:39:41', 'submission_id': '1gqfuoq'}
{'comment': "And then he started deleting accounts he didn't like? \nOnly free if he likes it I guess?", 'created': '2024-11-13 23:34:35', 'submission_id': '1gqfuoq'}
{'comment': 'X went private when Elon bought it so no one can short it. There are no shares. Did you really think Citadel was shorting something that doesn’t exist?', 'created': '2024-11-13 20:51:58', 'submission_id': '1gqfuoq'}
{'comment': 'This point ^^ a quick google search or LinkedIn search shows you that spaceX is looking to hire folks with government clearances AND EXPERIENCE. Something is very off.', 'created': '2024-11-13 20:59:12', 'submission_id': '1gqfuoq'}
{'comment': 'I am seriously clueless. Besides the occasional drug dealing what is the CIA accused of that is not common knowledge?', 'created': '2024-11-15 11:49:51', 'submission_id': '1gqfuoq'}
{'comment': 'NASA couldn’t do it, virgin galactic couldn’t do it, China couldn’t do it. Space X could. I like the guy who runs space x', 'created': '2024-11-13 20:17:16', 'submission_id': '1gqfuoq'}
{'comment': "Well, because you can have good employees but bad management will always kill a company regardless of the workers' skills. Elon took Tesla from a rough design phase to operating and producing EVs.", 'created': '2024-11-13 19:23:18', 'submission_id': '1gqfuoq'}
{'comment': "Yea but they wouldn't be employed without him so credit goes to him and his team for sure. But it was his idea and he approved it at last. That means to approve the ideas he has to as knowledgeable if not more knowledgeable than the people he has hired to do the job. \n\nDo you think billionaires are lazy and just sit at their desk watching podcasts and tweet all day while smoking weed?", 'created': '2024-11-14 22:26:21', 'submission_id': '1gqfuoq'}
{'comment': 'Such as?', 'created': '2024-11-13 18:34:41', 'submission_id': '1gqfuoq'}
{'comment': 'There are ways of filtering that shit out of the water, whole house filtration systems and such, but the claim it would mean fewer cavities it literally unproven.', 'created': '2024-11-13 17:20:38', 'submission_id': '1gqfuoq'}
{'comment': 'Revenue down 40% but personnel down 75%? That sounds like an overall win.', 'created': '2024-11-14 04:35:06', 'submission_id': '1gqfuoq'}
{'comment': '>\tHe bought it for its exact market cap - so exactly what the public was paying for it via share prices. \n\nHe bought for like $50/share, a price agreed on when twitter was a little below $40/share.', 'created': '2024-11-14 00:26:08', 'submission_id': '1gqfuoq'}
{'comment': 'Yeah I forgot about that, sorry. I have little time to keep abreast of such things while working.', 'created': '2024-11-13 20:58:42', 'submission_id': '1gqfuoq'}
{'comment': "Find all their leaked documents, basically mass surveillance of Americans, then there is all the shit they caused in the middle East to protect countries from going red. Pretty much everything except determining and eliminating external threats to America. My guess and it's my personal opinion, they puppet the current democratic party to wage wars and earn money through sold tech and weaponry.", 'created': '2024-11-15 12:12:58', 'submission_id': '1gqfuoq'}
{'comment': 'Not sure that’s the proper analysis. They have diff structures, diff regulations, diff imperatives.', 'created': '2024-11-13 21:30:59', 'submission_id': '1gqfuoq'}
{'comment': 'Doesn’t change that his contributions are only a part of the success', 'created': '2024-11-13 20:25:34', 'submission_id': '1gqfuoq'}
{'comment': 'I stated my opinion which a 70 IQ can easily understand. All I want to know is what is your IQ? \n\nNo false saviors. No false gods. Next question please.', 'created': '2024-11-14 22:38:45', 'submission_id': '1gqfuoq'}
{'comment': "Try googling! It's really easy.", 'created': '2024-11-13 18:39:04', 'submission_id': '1gqfuoq'}
{'comment': "Different imperative? I believe all of their imperatives were space navigation and rocket development. One guy nailed it. One electric vehicle company is miles ahead of the rest. One satellite internet company far outshines the competitors.\n\nI think the guys a big dork but there is no doubting he can efficiently run a successful company with big goals and the US government is the world's biggest company with big goals.", 'created': '2024-11-14 01:01:48', 'submission_id': '1gqfuoq'}
{'comment': 'How many companies have you brought from a concept to one of the most successful business in the country? STFU hater.', 'created': '2024-11-13 20:34:03', 'submission_id': '1gqfuoq'}
{'comment': "I understand your point about the contributions of engineers and scientists; they are indeed the backbone of many innovations. \n\nHowever, leadership, vision, and the ability to bring together such talented individuals should not be overlooked either. \n\nIt's a collaborative effort, and while credit should be shared, the role of a leader like Elon Musk in inspiring and driving those efforts is significant.\n\nIt's less about worshipping false saviors and more about acknowledging the complexity of success. Let's appreciate the team's work and the vision that brought them together.\n\n\nRegarding the 70 IQ comment... It's worth noting that individuals with an IQ of 70 may face challenges in understanding complex, abstract concepts without additional support or explanation.\n\nAs for your statement, it lacked factual support or elaboration, which makes it difficult to engage in a meaningful discussion. Let's focus on sharing well-supported arguments and keeping the conversation productive.", 'created': '2024-11-14 23:52:37', 'submission_id': '1gqfuoq'}
{'comment': 'Just one example bro come on', 'created': '2024-11-13 18:52:48', 'submission_id': '1gqfuoq'}
{'comment': 'I spy with my little eye some BS', 'created': '2024-11-13 18:40:17', 'submission_id': '1gqfuoq'}
{'comment': 'You made the claim so isn\'t it on you to prove what you\'re saying? It\'s such a cop out to say "Just Google it bro."', 'created': '2024-11-13 20:41:51', 'submission_id': '1gqfuoq'}
{'comment': "Well, we maga folks aren't too savy with the googgly you see! So, any help from you would be swell!", 'created': '2024-11-13 20:26:32', 'submission_id': '1gqfuoq'}
{'comment': 'Why don’t you guys go check the mission statements of NASA and SpaceX and then compare and contrast the direct stakeholders of each venture. Collapsing the two as if they are the same entity is foolish. \n\nAbsolutely zero observations that anyone will muster will change the obvious fact that attributing his companies’ successes to him alone without even a breath about all the brilliant minds who work for him is dead on arrival…. Next question please', 'created': '2024-11-14 02:13:31', 'submission_id': '1gqfuoq'}
{'comment': "You're obviously hate blinded to not give him the credit for his own companies successes. It's all because he doesn't have the same political views as you. That is brainwashed unhealthy behavior. I hope you outgrow it.", 'created': '2024-11-14 05:58:41', 'submission_id': '1gqfuoq'}
{'comment': 'SpaceX\'s mission statement is "to revolutionize space technology, with the ultimate goal of enabling people to live on other planets".\n\n\nNASA\'s mission is to advance science, technology, aeronautics, and space exploration to benefit humanity.\n\n\nHow is SpaceX any different if not better than NASA?\n\nAlso SpaceX is a privately held company, meaning individual investors cannot freely invest. So your stakeholder argument fails to have any merit here.', 'created': '2024-11-15 00:02:36', 'submission_id': '1gqfuoq'}
{'comment': '[here you go](https://www.psychologytoday.com/intl/basics/projection)', 'created': '2024-11-14 06:18:12', 'submission_id': '1gqfuoq'}
{'comment': 'If they were the same NASA wouldn’t have SpaceX contracts. They would just do it themselves. I regret letting you guys rope me into these lame ancillary conversations. Elon is whatever he is but saying he caught a skyscraper with chopsticks is only part of the story and I’m going to leave it there. I don’t care if you agree with me or not and I don’t care to convince you either. I said what I meant and that’s the whole story for me.', 'created': '2024-11-15 02:03:07', 'submission_id': '1gqfuoq'}
{'comment': "So you admit that you're delusional?", 'created': '2024-11-15 02:10:29', 'submission_id': '1gqfuoq'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 16:38:39', 'submission_id': '1gqfo9o'}
{'comment': "God forbid we uphold the law around here. I'm genuinely concerned about the increasing lawlessness and radicalization of some of these government officials. I'm so happy Trump won, and that we now have a Republican controlled country, we can kind of relax a bit for the next 4 years but what the hell happens after that?! I'm a bit concerned. If they deport 1 million per year that's still not going to get them all before Trump is out of office, which is concerning because who knows if the next administration will continue deportations.", 'created': '2024-11-13 19:51:28', 'submission_id': '1gqfo9o'}
{'comment': 'As a Canadian I hope he hammers the Trudeau government on this issue. He’s called Canadians racist for years over our own alarm bells about the level of immigration and has done jack all about getting a handle on immigration and proper background checks for who is coming into the country. We gave citizenship to someone who was found out to be an isis terrorist after he came here to try and commit terrorist acts. \n\nIf he won’t listen to his own constituents, atleast Trump will bend him over and show him who’s boss.', 'created': '2024-11-13 19:55:53', 'submission_id': '1gqfo9o'}
{'comment': 'The audacity of this man 🤣', 'created': '2024-11-13 16:41:52', 'submission_id': '1gqfo9o'}
{'comment': 'Gotta love the Babylon Bee', 'created': '2024-11-13 16:47:25', 'submission_id': '1gqfo9o'}
{'comment': 'Well that is ok we have to listen to them whine anyways we may as well get something useful and productive from it hope he does a dam good job and I think he will if we can keep the libs from getting in the way.', 'created': '2024-11-13 20:14:15', 'submission_id': '1gqfo9o'}
{'comment': "I'm interested to see how America implements a points system for immigration.", 'created': '2024-11-13 21:14:41', 'submission_id': '1gqfo9o'}
{'comment': 'Get the F… over it.', 'created': '2024-11-13 22:42:50', 'submission_id': '1gqfo9o'}
{'comment': '"Does he know that other people who were in charge of the border did the same job while allowing anyone who wanted to come into the country to do so without being stopped? But here\'s this new guy who wants to secure the border after being put in charge of securing the border. Make it make sense."\n\nLeftists have lost it lmao. AOC in this scenario is an awful person who thrives off people who are in bad environments. For those who aren\'t in NYC let me give you a synopsis.\n\nEssentially, she tries to maintain her neighrborhoods who vote for her by destroying opportunities for other neighrbodhoods which harbor middle class people or individuals who have helped their local area/zipcodes go up in value. She does this by banning or stopping projects which promise a large number of jobs and tax dollars for the city like Amazon. \n\nHer reasoning is always she wants to protect her people from being displaced. But what she doesn\'t say loud is the fact that she wants to perpetually keep her constituents in poor conditions because if they have their own wit and finance to stand on, then she has no job. Her job isn\'t to maintain the level of income and harbor a large amount of transitioning illegal migrants, it is the serve her constituents and provide opportunities working with the city. \n\nDuring her time she has done absolutely nothing of substance, no community outreach, no programs for her low income constituency to achieve higher education, no lessening of crime under her. All she has done is stopped areas from moving up in the income bracket to ensure her constituents remain in dingy, illegal migrant infested and crime ridden neighborhoods because the very next election cycle she will promise the same things which is "I won\'t abandon you". My question is, what happens when she is gone? This people will be displaced harder than ever, more than that completely underprepared because they were abandoned by their leader who refused to provide them any help to climb the financial ladder of our society. All because she wanted to cyclically farm votes. She has made her constituents abandon the American dream and sold them a version of salvation she is offering while forsakening the working class nearby. \n\nShe is a disease which infects my city, and there are many more like her. The sooner we get her out the better we will be and we will enable these low income neighborhoods to climb the income ladder and find their own properties to live in, not income assisted housing or projects which are both proved by neumerous studies to only keep low income people in low income brackets because they fear being kicked out and their kids are surrounded by gang violence which inevitibly influences many. \n\nWe will fix this city in time, and if we don\'t then sh*t I don\'t plan to stick around and find out if things get any worse 💀👍', 'created': '2024-11-14 05:51:58', 'submission_id': '1gqfo9o'}
{'comment': 'They still wonder how they lost in a massive landslide.', 'created': '2024-11-15 21:24:58', 'submission_id': '1gqfo9o'}
{'comment': "Yea no we can't really rest. A lot needs to change. The senate will likely grief Trump because the establishment will want to hold on to the old corrupt ways. The midterms are coming up and from the looks of it, it may not be your normal midterms.", 'created': '2024-11-14 07:11:27', 'submission_id': '1gqfo9o'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 16:16:09', 'submission_id': '1gqf5kw'}
{'comment': "Suprising to see Kristi Noem on the list for DHS, I thought she was happy to stay in South Dakota. But then if Trump is going to move DHS out of DC, to middle America, Sioux Falls could make a good site. I'm personally hoping to move to S.D. -assuming my book does well - and get out of CA to avoid taxes on the income from the book, and I want out of the madding crowds. Like the song, Give me land, lots of land, underneath the starry skies above, don't fence me in...I want rural living again.", 'created': '2024-11-13 16:48:27', 'submission_id': '1gqf5kw'}
{'comment': 'Thanks for the info. I want to keep up with the appointments but the info was scattered; this helps.', 'created': '2024-11-13 17:21:13', 'submission_id': '1gqf5kw'}
{'comment': "So I guess the Rubio pick still isn't official?", 'created': '2024-11-13 17:58:38', 'submission_id': '1gqf5kw'}
{'comment': 'Kristi noem first female president? I could see it, or Tulsi', 'created': '2024-11-13 23:31:05', 'submission_id': '1gqf5kw'}
{'comment': 'Who are we wanting for secretary of defense? And attorney general?\n\nI’d want bulldogs in both positions but not sure who those would be.', 'created': '2024-11-13 20:38:58', 'submission_id': '1gqf5kw'}
{'comment': 'Any comments on Marco Rubio as SOS?\nIt surprised me.', 'created': '2024-11-13 23:18:27', 'submission_id': '1gqf5kw'}
{'comment': 'Get rid of Gaetz please. Dudes a piece of shit.', 'created': '2024-11-16 11:22:20', 'submission_id': '1gqf5kw'}
{'comment': 'Yes. Ever heard this song \'Tiny Boxes"? \n\n[https://www.youtube.com/watch?v=VUoXtddNPAM](https://www.youtube.com/watch?v=VUoXtddNPAM)', 'created': '2024-11-13 16:57:30', 'submission_id': '1gqf5kw'}
{'comment': 'My assumption is the link will update automatically and not be a static page.... I hope', 'created': '2024-11-13 17:37:26', 'submission_id': '1gqf5kw'}
{'comment': "That's my understanding. Not particularly fond of the choice myself.", 'created': '2024-11-13 18:08:03', 'submission_id': '1gqf5kw'}
{'comment': 'I like them both. Likely 1st Female President will be a Republican. Maybe not 2024 but...\n\n1st Black elected to congress was a Republican. \n\nhttps://www.nps.gov/articles/000/hiram-rhodes-revels.htm', 'created': '2024-11-13 23:46:30', 'submission_id': '1gqf5kw'}
{'comment': 'I’m so pumped \u2066@mattgaetz\u2069 will be Trump’s AG! Nobody will be better than him at going after corruption. \u2066I can’t wait to hear what \u2066@EliCraneAZ\u2069 says about this. Incredible day! Dems and RINOs are so mad!', 'created': '2024-11-13 22:56:12', 'submission_id': '1gqf5kw'}
{'comment': 'Wow, ages since I heard that. So, by way or thanking you...\n\nAm I the only one who sees a lot of Bob Hope in Kelsey Grammer?\n\nhttps://youtu.be/KmE7gVkK14I', 'created': '2024-11-13 17:07:27', 'submission_id': '1gqf5kw'}
{'comment': 'Maybe Trump is noticing the backlash and is having a change of heart.', 'created': '2024-11-13 18:08:50', 'submission_id': '1gqf5kw'}
{'comment': 'You know when something is good for the people when the establishment is pissed off', 'created': '2024-11-13 23:12:13', 'submission_id': '1gqf5kw'}
{'comment': "Could be. I'm assuming it wouldn't make everyone happy but then nothing ever will. Lucky to get even 80%.", 'created': '2024-11-13 18:13:51', 'submission_id': '1gqf5kw'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 14:38:57', 'submission_id': '1gqd2yk'}
{'comment': 'CEOs can be dumb too.', 'created': '2024-11-13 15:15:49', 'submission_id': '1gqd2yk'}
{'comment': 'This is also the same person that has stated ""Our reverence for the truth might be a distraction that’s getting in the way of finding common ground and getting things done."\n\nWhich honestly sounds like something you could find in 1984 or have been said in the Soviet Union. How someone like this still has a career in the US in any org I do not know. NPR should be renamed National Propaganda Radio.', 'created': '2024-11-13 15:39:20', 'submission_id': '1gqd2yk'}
{'comment': 'Defund npr', 'created': '2024-11-13 14:47:47', 'submission_id': '1gqd2yk'}
{'comment': 'I’m so sick of hearing about how “white males = enemy”. We founded the country. It was a European settlement. GET OVER IT ALREADY. Go live somewhere else if you don’t like it. If anything is a construct, it’s Race.', 'created': '2024-11-13 16:14:46', 'submission_id': '1gqd2yk'}
{'comment': 'Color me shocked /s', 'created': '2024-11-13 15:26:09', 'submission_id': '1gqd2yk'}
{'comment': 'Their world is going to be rocked, and not in a good way!', 'created': '2024-11-13 15:32:48', 'submission_id': '1gqd2yk'}
{'comment': "Why don't these people just go to Russia or someplace that actually fits their political belief systems and leave us the hell alone?!", 'created': '2024-11-13 15:19:06', 'submission_id': '1gqd2yk'}
{'comment': "Whodidthewhatnow? I'm convinced they spin a wheel with woke words on it every morning and just randomly assemble them in their statements.", 'created': '2024-11-13 15:44:41', 'submission_id': '1gqd2yk'}
{'comment': 'This is the kind of dumb view we get, when you are a CEOs only because you are of the right sex, gender, race, color or their skin, belong to the right political party, whatever.. It takes incredible stupidity to say something like what she is saying. So free and open internet only if that internet pivots to my worldview. Otherwise everyone is fascist, racist, mysogonist, whatever the other \\*ists and \\*sm, etc are there', 'created': '2024-11-13 16:58:50', 'submission_id': '1gqd2yk'}
{'comment': 'Wow, two threads in a row about stupid people...one ripe for Mark Twainisms.\n\nhttps://www.azquotes.com/author/14883-Mark_Twain', 'created': '2024-11-13 16:59:35', 'submission_id': '1gqd2yk'}
{'comment': 'NPR has been peddling in for profit racial baiting. Probably because their donors are profiting from it. They used to always request donations on their radio show.', 'created': '2024-11-13 17:52:52', 'submission_id': '1gqd2yk'}
{'comment': 'What timeline is this, Earth -99 ?', 'created': '2024-11-13 16:39:05', 'submission_id': '1gqd2yk'}
{'comment': 'Female Supremacists who want to see men reduced to second class citizens/slaves. They will openly discriminate against us until we are all sleeping in tents in the woods. \n\nThey already are leading us in home ownership and college graduates. Sadly, this is just the beginning.', 'created': '2024-11-13 17:05:00', 'submission_id': '1gqd2yk'}
{'comment': 'It’s almost like white western males ruled the earth for 2000 years or something', 'created': '2024-11-13 16:16:27', 'submission_id': '1gqd2yk'}
{'comment': 'I tried to edit an article in 2013 and it wouldn’t let me. That’s when I knew the site was trash. This preceded Maher’s time there.', 'created': '2024-11-13 21:39:15', 'submission_id': '1gqd2yk'}
{'comment': 'Another reason to defund NPR, PBS, and CPB.', 'created': '2024-11-13 16:06:06', 'submission_id': '1gqd2yk'}
{'comment': 'I swear ppl like this. I can never take serious.', 'created': '2024-11-13 18:31:04', 'submission_id': '1gqd2yk'}
{'comment': "This stupid woman forgot what civilization that she is apart of. If she doesn't like Western Civilization maybe she would feel more comfortable in China", 'created': '2024-11-13 21:52:40', 'submission_id': '1gqd2yk'}
{'comment': 'George Washington and his troops didn’t cross the Delaware river to kick British ass just for some chick to call him an enemy', 'created': '2024-11-14 00:01:14', 'submission_id': '1gqd2yk'}
{'comment': 'NPR is toast.', 'created': '2024-11-14 01:42:19', 'submission_id': '1gqd2yk'}
{'comment': 'Bla bla bla men bad, white men bad, bla bla bla and in conclusion bla. I’m a feminist Karen, serving up progressive word salads, and I’m about to shove NPR six feet under\nlike Kamala did to her candidacy.', 'created': '2024-11-14 06:23:22', 'submission_id': '1gqd2yk'}
{'comment': 'White males didn\'t found the country alone,they did it with the help of other races and they did it with the help of strong wives supporting them. Women can be empowered even while in "traditional" roles. How soon we forget one of the first martyrs of the revolution was a black male.', 'created': '2024-11-14 15:58:20', 'submission_id': '1gqd2yk'}
{'comment': "They absolutely can. The reason I posted it was to counter the people who (still) claim that Wikipedia is unbiased. It isn't, and was deliberately made to not be by its CEO.", 'created': '2024-11-13 15:21:31', 'submission_id': '1gqd2yk'}
{'comment': "Wanna know the whole irony, though? Wikipedia is an international site, yet it's pushing woke \\*western\\* ideology. It's cultural imperialism, whether they see that or not. Do they really think the vast majority of societies agree with their viewpoints and terminologies?\n\nThey can F right off with their hypocrisy and lecturing.\n\nEdit: it goes without saying, not all western ideology is woke. Hence why Donald Trump won in 2024.", 'created': '2024-11-13 19:23:45', 'submission_id': '1gqd2yk'}
{'comment': 'No one thinks white men are the enemy. Maybe you’re afraid that, that’s the interpretation, but if that’s your interpretation, it’s very irrational. Additionally, “founded” is an interesting oversimplification of what was a forceful acquisition. And no, I’m not a liberal. In fact, I come from a family of Deep South conservatives with strong religious values, but also an exceptional ability to have perspective.', 'created': '2024-11-13 17:51:48', 'submission_id': '1gqd2yk'}
{'comment': "Don't get cocky. Remember, Trump will be president for only 4 years, and then everything is up for grabs again.\n\nDo not think these people will give up between now and then, and allow him to govern without resistance, or that they will not be prepping to cheat in the 2028 election so everything he manages to accomplish despite them can be reversed.", 'created': '2024-11-13 17:38:02', 'submission_id': '1gqd2yk'}
{'comment': 'Hopefully.', 'created': '2024-11-13 15:45:44', 'submission_id': '1gqd2yk'}
{'comment': "They don't because their issue is not that they want to be somewhere that the people believe as they do.\n\nTheir issue is that other people anywhere are allowed to believe differently than they do.", 'created': '2024-11-13 15:22:56', 'submission_id': '1gqd2yk'}
{'comment': '...but as CEO, they have the ability to make that woke garbage, policy.', 'created': '2024-11-13 15:50:39', 'submission_id': '1gqd2yk'}
{'comment': 'There’s a belief that NPR and PBS are also unbiased. Lol.', 'created': '2024-11-13 17:30:43', 'submission_id': '1gqd2yk'}
{'comment': 'I’m not “afraid” of someone else’s interpretation. I’m pushing back on the Liberal smear campaign that has been going on for the last few years that is trying it’s best to divide the country. To your comment though, you can call it “forceful acquisition” if you want to, but now you too are oversimplifying the dynamics in play back then. So before I assume what your point is and go into a lengthy reply, let me ask you and give you a chance to explain…what are you getting at?', 'created': '2024-11-13 18:03:38', 'submission_id': '1gqd2yk'}
{'comment': '"Additionally, “founded” is an interesting oversimplification of what was a forceful acquisition.\xa0"\n\nI mean, you can say that about almost any nation state. They are almost all founded on forceful acquisition, as well as subjugation. Some more than others, obviously, but they are almost all founded on that.', 'created': '2024-11-13 19:26:24', 'submission_id': '1gqd2yk'}
{'comment': 'I agree. but at least he’s trying to make decent changes right from the beginning. I pray he does a lot for election integrity.', 'created': '2024-11-13 18:33:50', 'submission_id': '1gqd2yk'}
{'comment': "If only their exceptional insight came with exceptional coherence, or exceptional articulation.\n\nI'm sure they're euphoric, though.", 'created': '2024-11-13 18:19:46', 'submission_id': '1gqd2yk'}
{'comment': 'What I was trying to say was that your interpretation that people believe white men are the enemy is irrational. People do not think that (at least sensible people) and I believe that is a convenient exaggeration. She’s not a good spokesperson here, so I don’t blame you for being dumbfounded by her remarks. There are people who can better articulate the sentiment, which is not to vilify any demographic, but to acknowledge that there is a dominant demographic, and due to this, many social structures in our society have used white male formatting as the standard. Many people recognize this and would appreciate more nuance and a displacement of that standard to afford other demographics more growing power. \n\nNow, I agree that my response lacks depth. I wasn’t planning to go into depth initially because I wasn’t sure how you’d respond. But I will say that, yes, there were many dynamics of the time. But it is true that American land was rightfully preoccupied. Before the arrival of Europeans, including the English, North America was home to a vast number of Indigenous nations with their own governments, cultures, economies, and ways of life. Colonization disrupted and, in many cases, attempted to destroy these societies through war, disease, and forced assimilation. English colonists, along with other European powers, pursued a policy of settler colonialism, in which they claimed land, established permanent settlements, and sought to displace or eliminate Indigenous populations. European powers, including England, justified their claims to land in the Americas through legal and religious doctrines such as the “Doctrine of Discovery,” which allowed Christian nations to claim lands “discovered” by their explorers. This doctrine dismissed the sovereignty of non-Christian peoples, leading to land seizures and disregard for Indigenous ownership. This is particularly personal for me because I was raised in a state where there were a lot of reservations. I understand you can’t rewrite the past but having perspective can afford us understanding. This may have been an honorable and legal acquisition on the part of settlers but not on the part of those who had been completely disregarded at the time and still are today.', 'created': '2024-11-13 18:21:52', 'submission_id': '1gqd2yk'}
{'comment': 'You are also correct. I’m not making excuses or trying to oversimplify in my previous statements, but that metric can be applied almost everywhere. I keep saying over and over when I get into discussions like this and it’s right or wrong, you can only keep what you can defend and that is true everywhere.', 'created': '2024-11-13 20:25:30', 'submission_id': '1gqd2yk'}
{'comment': 'Oh, yes, I could name a list of many other nations that were founded under the same conditions. Since we were on the particular topic with regard to America, which is a loaded discussion in itself, I was just explaining that founding is a very light term. Many other nations, like Australia, Latin America, South Africa, etc were founded in a similar way, though that doesn’t make it necessarily okay, I will add. That’s pretty tragic, still. It creates catastrophic ripple effects. But it’s history nevertheless.', 'created': '2024-11-13 19:36:13', 'submission_id': '1gqd2yk'}
{'comment': 'Yeah, unfortunately, not everyone understands that how you portray a message is sometimes more important than the message itself. It’s unfortunate and discouraging.', 'created': '2024-11-13 19:38:39', 'submission_id': '1gqd2yk'}
{'comment': 'I appreciate your perspective and your thoughtful reply. You are definitely not far off on your take on the circumstances of the time. I also agree that in hindsight, they/we could have handled things differently. I don’t want to go too deep with my thoughts on that. My main issue is that I will continue to push back on people who push the “White Christian Male “Patriarchy” Colonialism = Evil (whatever)” narrative and try to claim some moral high ground to vilify where we are today based on what happened 500 years ago. Certainly context and perspective matters and it gets us nowhere being the kind of person that is willing to ignore context, etc. to push that narrative. I know you pointed out that it may only be a few that share those extreme views, but as you know, a small rudder can steer a huge ship, and that is what is happening today.', 'created': '2024-11-13 18:35:34', 'submission_id': '1gqd2yk'}
{'comment': 'Yeah, one bad apple ruins the whole batch. I completely agree. It is unfortunate that there are people who go out of their way to spout hateful nonsense which ultimately causes movements with genuine intentions to lose credibility. I deeply despise that. No one today is responsible for what happened so long ago, but I will say that I receive a lot of push back (and I assume this is where the downvotes are coming from) when I talk about how history has lingering effects, especially when the actions that took place were so severe. While I understand that vilifying anyone today for such things is useless, it’s important that we recognize that time is fleeting but it’s also permanent. What happened some 500 years ago contributed and likely still contributes to the society we live in today. For example, you should feel empowered and righteous in celebrating your ancestry, but you can only imagine how indigenous people feel having lost so much of their ancestry to tragedy. Thus, their population is still impacted today.\n\nI think the main issue is that, as long as there are people who still remember the past, it’s going to be hard to move forward without some form resentment toward one thing or another. I think the vilification of White males isn’t warranted and only further divides us. It also fosters resentment amongst every demographic for absolutely any reason that is available. We can recognize that our society has evolved, but it has evolved within a particular context. This nation started with a primary demographic and it’s going to be that way for a long time. Thankfully, time has afforded us perspective and we’ve found new ways to adapt to a society that is more suitable for other classes of people. This is modern America. But now, the new task will be to figure out how we can build a society that can express ideas without burning bridges in the process. Thanks for being kind.', 'created': '2024-11-13 19:07:00', 'submission_id': '1gqd2yk'}
{'comment': 'Well said my friend and I agree with your assessment/opinion. History definitely affects the past, good or bad. Yes, we need to examine the past and commit to not repeating mistakes, etc. I’m not one to say “Move on already” in a way that glosses over our countries atrocities in the past, but we have to move forward together. There are people that continue to divide and use the past as an excuse to bully and vilify our country and I am having none of it. I will push back on “white privilege” and “Indigenous Peoples Day”, Reparations, etc. Either find a way to move forward in a way that is mindful of the past, but in a way that unites us as Americans or I don’t want to hear it. I’m sick of the self-righteous blowhards that are bent on causing division and civil unrest. I’ll even help you pack.', 'created': '2024-11-13 20:32:25', 'submission_id': '1gqd2yk'}
{'comment': 'Yeah, with all due respect, I think that sometimes the message can be misinterpreted as having bad faith. White privilege is definitely a thing and there’s lots of research and data that can cite that. It’s not an excuse to be rude to people, but if we don’t recognize that it exists we can’t move forward. I’ve received lots of push back on that but I’ve even seen it evidenced in my own family who is mixed. My uncle is white and has talked about multiple occasions where he’s received completely different treatment than my aunt (African American). This is all a consequence of slavery and segregation where white men/women were made to be the standard and it unfortunately takes a really long time for society to assimilate to a more acceptable structure that does not inherently create a hierarchical model of value in human beings. So yes we must move forward somehow but once everybody can come to the consensus that such things do exist, first, then we can. But there are people who deny that certain social structures have ever existed, though history has culminated them, evidently. No one needs to feel ashamed of themselves for what their ancestors did, but we do have to be able to say that something was morally wrong and then move forward as a unit. \n\nI’m not sure what you meant about the indigenous people’s day. I’m not sure exactly how that in itself is divisive. It is just a holiday that commemorates the indigenous peoples of America. They should feel appreciated, I believe, ahah.', 'created': '2024-11-14 18:46:00', 'submission_id': '1gqd2yk'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 11:22:01', 'submission_id': '1gq9tvz'}
{'comment': "Wasn't that weird, he had to buy it or pay a large fine.", 'created': '2024-11-13 17:17:50', 'submission_id': '1gq9tvz'}
{'comment': "Musk purchased X primarily out of concern for free speech on social media. He felt that the platform’s policies were limiting open dialogue and that its direction under previous leadership posed risks to free expression.\n\nYou're welcome.", 'created': '2024-11-17 03:32:46', 'submission_id': '1gq9tvz'}
{'comment': 'That’s just false. If it were true, he wouldn’t suppress dissident voices, sue those criticizing the way twitter is run, throttle links to sources he doesn’t like and comply with every foreign dictators legal orders concerning twitter and its users.', 'created': '2024-11-17 07:31:19', 'submission_id': '1gq9tvz'}
{'comment': 'Surely.', 'created': '2024-11-17 10:07:50', 'submission_id': '1gq9tvz'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 07:41:46', 'submission_id': '1gq6wv5'}
{'comment': "I'm glad Elon isn't involved in decision making in subjects which directly effect the people. Not a huge fan of corporate entities having direct power within the government, so if this is a probe into government entities and weeding out corruption I'm fine with this decision, having a non-political individual would certainly help. I know Vivek is also co leading with Elon, we'll see how this turns out.", 'created': '2024-11-13 10:00:05', 'submission_id': '1gq6wv5'}
{'comment': 'DOGE\n\nis that coincidence or intentional lo!', 'created': '2024-11-13 10:57:21', 'submission_id': '1gq6wv5'}
{'comment': 'Kinda feels like a paradox/oxymoron tbh. \n\nI don’t follow politics too much but from what I’ve seen the reason the government is so inefficient is because there are so many different organizations that don’t know how to work together. And the solution… adding yet another government entity to an already over saturated list, but this one is gonna tell the others to be more efficient?\n\n\nI’m all for the government being efficient but downsizing is the solution, not having the government tell itself to be efficient. Also Elon leading it is gonna be a field day for the left.', 'created': '2024-11-13 13:59:44', 'submission_id': '1gq6wv5'}
{'comment': 'wow \n\nsuch efficient \n\nmany saving \n\nsuch resource', 'created': '2024-11-13 22:21:31', 'submission_id': '1gq6wv5'}
{'comment': 'I voted for Kamala and am most worried that Elon’s only there to secure more handouts for his businesses and prevent reasonable regulation that should exist but would negatively impact him. I like the idea of them cutting spending but don’t expect they’ll actually do that meaningfully. Worried these two and RFK are going to do a lot of dumb stuff but am cautiously optimistic.', 'created': '2024-11-13 19:17:37', 'submission_id': '1gq6wv5'}
{'comment': ' I heard something like popcorn late last night, I guess the other side found out about the appointments.', 'created': '2024-11-13 11:07:00', 'submission_id': '1gq6wv5'}
{'comment': "As usual, Trump's decisions are brilliant!", 'created': '2024-11-13 11:03:56', 'submission_id': '1gq6wv5'}
{'comment': 'Honestly, I’m unsure why we didn’t have a Department of Government Efficiency', 'created': '2024-11-13 16:40:48', 'submission_id': '1gq6wv5'}
{'comment': 'Holy cringe', 'created': '2024-11-13 19:59:25', 'submission_id': '1gq6wv5'}
{'comment': "Elon could have the biggest impact on the federal government. It'll likely cause chaos and a media storm as they second guess his actions. It will be interesting to see how it unfolds. Musk 2028? He has the ego!", 'created': '2024-11-13 20:01:14', 'submission_id': '1gq6wv5'}
{'comment': 'Musk/Kennedy 2028?', 'created': '2024-11-13 20:03:01', 'submission_id': '1gq6wv5'}
{'comment': "The thing that kinda sold me on the idea is looking at Elons business model compared to others in the industry. SpaceX has about a 1% cost overrun, while NASA is around 90% and Boeing is around 50%. While like with Trump, I don't like or agree with everything he does, I have to give him the due credit when I say he knows how to run a hyper efficient business. If Elon and Vivek can work together to get even just a 20% increase in efficiency in our government agencies it'll be the first big step in combating the main issue driving our national debt through the roof and grinding our nation to a halt, the government itself.", 'created': '2024-11-13 12:32:03', 'submission_id': '1gq6wv5'}
{'comment': 'The main issue is the spending within the 3 letter acronyms. For years they will burn through their budgets just to make sure they don’t lose any funding the next time. \n\nThey are not held responsible for their spending habits or money just “disappearing “. We should make it to where if all of their budget isn’t accounted for they lose that percentage of funding the next year.', 'created': '2024-11-13 15:11:13', 'submission_id': '1gq6wv5'}
{'comment': 'Go read vivek’s book truth.\n\nWe need a department to do this job, will they do it? I dont know\n\nBut Vivek repeats, we need to take down the 4 million + federal unelected bureaucrat system that has been unconstitutionally making rules and edicts for years while holding their own hearings and imposing their own penalties.\xa0\n\nIm confident they will be mass firing the fat in dc', 'created': '2024-11-13 15:08:32', 'submission_id': '1gq6wv5'}
{'comment': 'He can’t run as president, he’s South African.\xa0', 'created': '2024-11-13 20:41:53', 'submission_id': '1gq6wv5'}
{'comment': 'This is the point that most people are missing. Elon runs very lean businesses. It\'s something everyone should learn to do better. His key is throwing away rules like, "we\'ve always done it that way".', 'created': '2024-11-13 19:50:42', 'submission_id': '1gq6wv5'}
{'comment': "He doesn't. He picks people who do, which is a skill. Him in charge is a catastrophe he will be incompetent.", 'created': '2024-11-16 15:36:43', 'submission_id': '1gq6wv5'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 06:17:45', 'submission_id': '1gq5m83'}
{'comment': 'I saw him on a video last night...very impressive. This man will make shit happen.', 'created': '2024-11-13 06:29:09', 'submission_id': '1gq5m83'}
{'comment': 'My favorite line “what do you think of families separating during deportation? …”not a worry, they can be deported together” \n\n😆', 'created': '2024-11-13 11:02:53', 'submission_id': '1gq5m83'}
{'comment': "I like this man. He's very passionate about illegals packing their shit. Hallelujah!!", 'created': '2024-11-13 07:32:57', 'submission_id': '1gq5m83'}
{'comment': "He genuinely cares. He's so passionate about this issue. He isn't afraid of politicians threatening him. He won't bend the knee. He comes right back at them with the law and facts - this is our guy, he needs to be taken off the leash and let loose.", 'created': '2024-11-13 08:23:17', 'submission_id': '1gq5m83'}
{'comment': 'Great Pick!', 'created': '2024-11-13 11:02:02', 'submission_id': '1gq5m83'}
{'comment': "Don't threaten me with a good time", 'created': '2024-11-13 10:28:56', 'submission_id': '1gq5m83'}
{'comment': 'Thank god!! The Biden administration should be charged for treason.', 'created': '2024-11-13 15:24:33', 'submission_id': '1gq5m83'}
{'comment': 'Link to video?', 'created': '2024-11-13 06:33:11', 'submission_id': '1gq5m83'}
{'comment': '👏', 'created': '2024-11-13 16:11:43', 'submission_id': '1gq5m83'}
{'comment': 'Based.', 'created': '2024-11-13 16:17:07', 'submission_id': '1gq5m83'}
{'comment': 'This is the way', 'created': '2024-11-13 18:15:58', 'submission_id': '1gq5m83'}
{'comment': 'Thanks to Trump ive decided to pursue a ICE Agent career', 'created': '2024-11-14 01:45:40', 'submission_id': '1gq5m83'}
{'comment': 'My man!', 'created': '2024-11-14 02:33:54', 'submission_id': '1gq5m83'}
{'comment': "Look at this photo of him as a young border patrol agent in the early eighties. He's a badass [Homan](https://www.tiktok.com/t/ZTYdLBnTe/)", 'created': '2024-11-15 04:09:17', 'submission_id': '1gq5m83'}
{'comment': 'Acting or incoming director ? Is he on the job a!ready ?', 'created': '2024-11-13 10:54:47', 'submission_id': '1gq5m83'}
{'comment': 'How do the announcements about neoconservatives in the future Trump administration sound to you? Betrayal of the MAGA movement?', 'created': '2024-11-13 13:43:07', 'submission_id': '1gq5m83'}
{'comment': 'Anyone concerned about how much this will cost tax payers and how disruptive this will be? Increasing the deficit by hundreds of billions. Also does anyone know those who are in the country legally to work? There seems to be a plan to remove those who have been processed and allowed to remain legally, strip legal frameworks for migrants who are here legally, and strip citizenship from immigrants who have went thru the naturalization process. Does anyone know family or friends affected? As an example there are Asians, Latinos, Africans, Europeans etc who are like Elon and Melania who come to America for school and work, and become citizens.', 'created': '2024-11-13 12:28:27', 'submission_id': '1gq5m83'}
{'comment': 'Link?', 'created': '2024-11-13 06:33:21', 'submission_id': '1gq5m83'}
{'comment': '* Mic drop *', 'created': '2024-11-13 16:12:57', 'submission_id': '1gq5m83'}
{'comment': 'Absolutely cold blooded, I love it hahahaha 🤣🤣 I cannot wait until January 20th!', 'created': '2024-11-13 19:52:36', 'submission_id': '1gq5m83'}
{'comment': '"They ain\'t seen shit yet" lmao love it 🤣', 'created': '2024-11-13 12:04:38', 'submission_id': '1gq5m83'}
{'comment': 'https://www.tiktok.com/t/ZTYdYgm29/', 'created': '2024-11-15 04:46:40', 'submission_id': '1gq5m83'}
{'comment': "That's a cool picture...thanks for posting!", 'created': '2024-11-15 04:53:14', 'submission_id': '1gq5m83'}
{'comment': 'I think the point is to not surround the presidency with yes-men. That tactic didn’t work before.', 'created': '2024-11-13 14:21:27', 'submission_id': '1gq5m83'}
{'comment': "There are several legal immigrants in my family, who did the proper procedures to become Americans. \n\nNo problems there \n\nIf you look at how much we have spent the past few years for housing and medical and education for illegal immigrants, some who actually are not going through the court system for immunity, that's millions of dollars we are spending to support them.\n\nAmerica is not against immigration. America voted against illegal immigration", 'created': '2024-11-13 13:37:16', 'submission_id': '1gq5m83'}
{'comment': '[https://www.youtube.com/watch?v=wQjixCxVjAI&list=RDNSwQjixCxVjAI&start\\_radio=1](https://www.youtube.com/watch?v=wQjixCxVjAI&list=RDNSwQjixCxVjAI&start_radio=1)', 'created': '2024-11-13 06:53:16', 'submission_id': '1gq5m83'}
{'comment': 'https://www.tiktok.com/t/ZTYJf59cf/', 'created': '2024-11-14 01:41:45', 'submission_id': '1gq5m83'}
{'comment': "I don't think it's good at all to have people in power who would persuade the president to go to war, for the sake of some of their crazy goals, as has happened so far.", 'created': '2024-11-13 14:25:13', 'submission_id': '1gq5m83'}
{'comment': 'This. ☝️. It\'s like people don\'t read or hear the word, "ILLEGAL." Or they chose to ignore it to stir up shit. Those who immigrated the proper and legal way to the US are not being deported.', 'created': '2024-11-15 04:51:01', 'submission_id': '1gq5m83'}
{'comment': 'The response is, "no person is illegal!"\n\nBut, my rebuttal is, "name another country that you can walk into without any papers or plans?"', 'created': '2024-11-15 04:53:30', 'submission_id': '1gq5m83'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 05:28:11', 'submission_id': '1gq4rxe'}
{'comment': 'I’m going to be curious to see where this goes.', 'created': '2024-11-13 05:31:58', 'submission_id': '1gq4rxe'}
{'comment': 'FEMA should be dismantled. Money should just be allocated to the state to disperse to the people. A local/state government is going to know the people and land better than a corrupt federal pencil pusher anyway.\n\nOr be like Florida who just took care of everything themselves.', 'created': '2024-11-13 06:09:33', 'submission_id': '1gq4rxe'}
{'comment': 'FEMA tried to scapegoat her and she rolled on them.', 'created': '2024-11-13 06:00:28', 'submission_id': '1gq4rxe'}
{'comment': "It's not impossible. One vague threat caused an over reaction once. Then it snowballed into a process because those in charge agree.", 'created': '2024-11-13 11:03:57', 'submission_id': '1gq4rxe'}
{'comment': 'Discipline for the people who made this rule, the people who enforced the rule, and the people who followed the rule. Anybody who didn’t understand how egregious it was has no business working for a publicly funded organization.', 'created': '2024-11-13 17:56:39', 'submission_id': '1gq4rxe'}
{'comment': 'There\'s something "there" there.', 'created': '2024-11-15 00:44:52', 'submission_id': '1gq4rxe'}
{'comment': 'Republicans voted no on FEMA funding that was meant to help them. Please learn how the government works', 'created': '2024-11-13 15:23:40', 'submission_id': '1gq4rxe'}
{'comment': 'Nj state gov is worse than fema. Talk about rock and a hard place', 'created': '2024-11-13 12:19:28', 'submission_id': '1gq4rxe'}
{'comment': 'Or she’s a nasty lying bitch.', 'created': '2024-11-13 06:33:42', 'submission_id': '1gq4rxe'}
{'comment': 'Republicans voted no for tying the FEMA funding to funding the entire government until the end of the year. I think YOU might be the one that needs to learn how the government works.', 'created': '2024-11-13 16:44:45', 'submission_id': '1gq4rxe'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 03:47:04', 'submission_id': '1gq2wax'}
{'comment': 'This can’t come fast enough. I can’t wait', 'created': '2024-11-13 05:27:15', 'submission_id': '1gq2wax'}
{'comment': 'The article mentions that 90% of FDR’s deportations actually self-deported to avoid forced deportation.', 'created': '2024-11-13 03:55:38', 'submission_id': '1gq2wax'}
{'comment': 'Jan is not soon enough.', 'created': '2024-11-13 15:28:03', 'submission_id': '1gq2wax'}
{'comment': 'He may surpass Obama, but only because of Biden.', 'created': '2024-11-13 04:00:08', 'submission_id': '1gq2wax'}
{'comment': 'Take all the corrupted snakes and swap rats with ya! MAGA!!!', 'created': '2024-11-14 04:54:16', 'submission_id': '1gq2wax'}
{'comment': 'They should prosecute everybody involved that failed to enforce existing immigration laws. Biden, Harris and Mayorkas for starters would be great. \nThe public knows opening the border is disastrous for the U.S. for decades to come.', 'created': '2024-11-13 09:15:47', 'submission_id': '1gq2wax'}
{'comment': 'All the government needs to do is enact existing laws and they will probably do that again. The rest can be deported, or incarcerated depending on the severity of their crimes. \n\nProsecute all that have gained from state and federal governments as illegals. Strip their bank accounts, and black list them from legal immigration. They have abused and stolen from their neighbors.', 'created': '2024-11-13 03:58:19', 'submission_id': '1gq2wax'}
{'comment': "I'm hoping that happens this time too! Once they see people being deported by the millions hopefully they go to Canada or anywhere that isn't here. Of course Canada made a statement saying that not all are welcome haha, they don't want them either.", 'created': '2024-11-13 19:59:42', 'submission_id': '1gq2wax'}
{'comment': 'Nice touch to throw FDR back on their face. So was that project 1940 ?', 'created': '2024-11-13 04:12:40', 'submission_id': '1gq2wax'}
{'comment': "It's all about the carrot and the stick... The cost to collect, process and incarnation is high. First the carrot... Leave now and apply for legal immigration later. Then the stick... Remain be processed and excluded from immigration for life. 🤔", 'created': '2024-11-13 04:05:06', 'submission_id': '1gq2wax'}
{'comment': 'They really hate it when you bring up their sordid past. 😆', 'created': '2024-11-13 04:15:29', 'submission_id': '1gq2wax'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 03:46:08', 'submission_id': '1gq2vmg'}
{'comment': 'Crazy times for sure', 'created': '2024-11-13 05:31:55', 'submission_id': '1gq2vmg'}
{'comment': 'Holy fuck what is trump thinking with Hegseth. What an absolutely moronic pick', 'created': '2024-11-13 15:16:54', 'submission_id': '1gq2vmg'}
{'comment': 'Trump selects Pete Hegseth as Defence Secretary- \n\nPete Hegseth will be the next defence secretary, Trump just announced in a campaign release.\n\nHegseth is an army veteran, a Fox News host and former head of two advocacy groups for military veterans. He previously ran unsuccessfully for a Senate seat in Minnesota.\n\n"Pete is tough, smart and a true believer in America First," Trump wrote in a statement. "With Pete at the helm, America’s enemies are on notice - Our Military will be Great Again, and America will Never Back Down."\n\nHis appointment is one of the most highly anticipated in Trump\'s cabinet as the wars in Ukraine and Gaza rage on.\n\n"Nobody fights harder for the Troops and Pete will be a courageous and patriotic champion of our \'Peace through Strength\' policy," Trum', 'created': '2024-11-13 03:59:03', 'submission_id': '1gq2vmg'}
{'comment': 'Ratcliffe served as the nation\'s top spy from late May 2020 until Trump left office in January 2021. More recently, he was co-chair of the Center for American Security, a think tank advocating Trump positions, and advised the former Republican president on national security policy during his 2024 campaign.\n"I look forward to John being the first person ever to serve in both of our Nation’s highest Intelligence positions. He will be a fearless fighter for the Constitutional Rights of all Americans, while ensuring the Highest Levels of National Security, and PEACE THROUGH STRENGTH," Trump said in a statement announcing the nomination.', 'created': '2024-11-13 03:54:53', 'submission_id': '1gq2vmg'}
{'comment': 'Hegseth? Seriously? Was Tyrus not available?', 'created': '2024-11-13 10:22:07', 'submission_id': '1gq2vmg'}
{'comment': 'Giving Hegseth the defsec role is like an outback waiter getting promoted to CEO, what a terrible decision', 'created': '2024-11-13 08:45:52', 'submission_id': '1gq2vmg'}
{'comment': 'The Lefties’ heads are probably exploding!', 'created': '2024-11-13 05:44:02', 'submission_id': '1gq2vmg'}
{'comment': "He's a warhawk.", 'created': '2024-11-13 09:26:37', 'submission_id': '1gq2vmg'}
{'comment': "Curious to know your reasoning.He was a Major in the National Guard. He has done time in Afghanistan and Iraq. That's much different than a waiter becoming a CEO.", 'created': '2024-11-13 08:49:11', 'submission_id': '1gq2vmg'}
{'comment': 'Like the ones on this sub?', 'created': '2024-11-16 16:24:00', 'submission_id': '1gq2vmg'}
{'comment': 'The man also has two Bronze stars, and a distinguished service medal. Plus a Harvard grad. He knows the lowly service man, and not likely to "Just deploy" him to any hotspot without the manpower to handle the job. I highly doubt he would allow something like the Afghanistan fiasco to happen on his watch. He isn\'t just some "Fox news host".', 'created': '2024-11-16 16:22:41', 'submission_id': '1gq2vmg'}
{'comment': "Compared to a four star general, that's waiter level.", 'created': '2024-11-13 17:20:17', 'submission_id': '1gq2vmg'}
{'comment': "With that logic having a Commander in Chief who didn't even serve in the military is what, a girl scout? Obviously not. We voted him in and should go with his judgement on this matter. Plus becoming a General and Colonel needs POTUS and Senate confirmation and we all know what a swamp that is so it's not necessarily merit based. Look who Biden has appointed.", 'created': '2024-11-13 23:55:09', 'submission_id': '1gq2vmg'}
{'comment': 'I’d be more inclined to trust the armed forces on this matter, and the armed forces were really clear on the capabilities of the president elect before the elections.', 'created': '2024-11-14 07:44:07', 'submission_id': '1gq2vmg'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 02:48:28', 'submission_id': '1gq1qio'}
{'comment': 'Good.', 'created': '2024-11-13 02:55:20', 'submission_id': '1gq1qio'}
{'comment': 'It took them how long to realize it was cutting into their government funding/embezzlement fund? /S', 'created': '2024-11-13 02:56:41', 'submission_id': '1gq1qio'}
{'comment': 'Crime is about to go through the roof in NYC……\n\nThey need to go, but just arbitrarily kicking them out is going to cause more issues than waiting until they can be rounded up and deported. They will have to be found in the “wild” whereas right now we know where they are.', 'created': '2024-11-13 02:59:31', 'submission_id': '1gq1qio'}
{'comment': 'This should have been done two years ago.\n\nHotels and rooms in NYC are crazily expensive but it’s given for free? Something is wrong there. Not to mention that the hotels used are being turned into a den of illicit activities.', 'created': '2024-11-13 05:54:44', 'submission_id': '1gq1qio'}
{'comment': 'It’s wild how people will post this same exact article to left wing subs and use it as a negative. I always thought both the left and the right generally agree on the problem, but we just don’t agree on the solution. Now, I feel like we don’t even agree on the problem. They want open boarders, more government regulation, more taxes, less free speech, involvement in foreign wars and more government hand outs. I literally want the opposite.', 'created': '2024-11-13 03:38:49', 'submission_id': '1gq1qio'}
{'comment': 'Hmmm I wonder what changed their minds…', 'created': '2024-11-13 04:26:58', 'submission_id': '1gq1qio'}
{'comment': 'Just in time for January’s deportations after the 20th! Bye!', 'created': '2024-11-13 05:55:31', 'submission_id': '1gq1qio'}
{'comment': "Whoever thought this was a good idea. And i fully understand that some of these people are genuine refugee's but 20 million? \n\nAnd many of whom who have been here since before Biden, and they havent bothered to become naturalized. Many of whom can't even speak english. \n\nI do genuinely want to be sympathetic the vast majority of these illegals have already shown us they don't want to contribute to the country, let alone help themselves.", 'created': '2024-11-13 14:52:53', 'submission_id': '1gq1qio'}
{'comment': 'I saw where they were sending them back to Texas.', 'created': '2024-11-13 04:28:33', 'submission_id': '1gq1qio'}
{'comment': 'The organizers of Cosmic Con are probably ecstatic.', 'created': '2024-11-13 13:37:43', 'submission_id': '1gq1qio'}
{'comment': 'You are outta here! Hope they all flee to Canada', 'created': '2024-11-13 15:18:39', 'submission_id': '1gq1qio'}
{'comment': 'Send them back', 'created': '2024-11-14 06:28:21', 'submission_id': '1gq1qio'}
{'comment': 'That was their embezzlement fund, spend the tax money on hotels that your or a friend own.', 'created': '2024-11-13 06:34:39', 'submission_id': '1gq1qio'}
{'comment': 'My exact thoughts! That’s what the third world does. They are going to start robbing Americans and it’s not going to be pretty', 'created': '2024-11-13 03:29:34', 'submission_id': '1gq1qio'}
{'comment': 'Pretty sure the funding cut comes with one way plane ticket returns as per the Trump admin.\n\nMight be a good time to buy some bear mace and a gun though.', 'created': '2024-11-13 17:48:13', 'submission_id': '1gq1qio'}
{'comment': 'They are the minority, the invasion was planned to artificially inflate their base', 'created': '2024-11-13 04:37:59', 'submission_id': '1gq1qio'}
{'comment': 'As a resident (for not much longer) of Colorado. This is what’s happening. It’s like a Venezuelan war zone about 10 miles away from me in Aurora.', 'created': '2024-11-13 03:50:00', 'submission_id': '1gq1qio'}
{'comment': 'I hope you’re correct!', 'created': '2024-11-13 10:05:56', 'submission_id': '1gq1qio'}
{'comment': "And yet you'll never see this on the news", 'created': '2024-11-13 03:59:14', 'submission_id': '1gq1qio'}
{'comment': 'I’m in Colorado too. Luckily I’m not in the city but am pretty aware of what’s going on even tho the news never says anything I see it all over Nextdoor and X', 'created': '2024-11-13 04:17:29', 'submission_id': '1gq1qio'}
{'comment': "I was just down in Colorado Springs for about 2wks, vacationing and looking at property. I was 100% all in wanting to move, but then started going on the Colorado, Denver and Colorado Springs Reddit sites and changed my mind. Keep seeing on Facebook and the news that it's all lies made up by right wing conspiracy nuts, but locals of all different races and backgrounds seem to agree that it's a shitshow. I guess that's what happens when there's little to no consequence for criminals. They thrive and get bolder.", 'created': '2024-11-13 04:23:53', 'submission_id': '1gq1qio'}
{'comment': 'As someone who works with people (legal) immigrants from several different countries in South America they are just as pissed as any sane U.S. citizen about them being here', 'created': '2024-11-13 18:28:38', 'submission_id': '1gq1qio'}
{'comment': 'I can assure everyone it really isn’t bullshit. There is a great instagram account called DoBetterDnvr who is exposing all the Venezuelan/Sanctuary State fuckery.\n\nWife and I were recently on the east coast visiting family and even they didn’t believe half of what we were telling them. MSM really has done a poor job of showing all of it.', 'created': '2024-11-13 04:25:25', 'submission_id': '1gq1qio'}
{'comment': "It is a shit show. I was in Denver for a bit back in 2008-2009ish and it was already pretty bad. The 16th street mall in downtown Denver would regularly see gun violence on weekends, I saw a Taco Bell down there get the windows shot out once. It was a nice place to visit in the 90's and early 00's but it's gone super downhill. All the Democrat ran places have become cesspits of crime, garbage, homelessness, drug addiction and violence.", 'created': '2024-11-13 06:11:28', 'submission_id': '1gq1qio'}
{'comment': 'Colorado springs reddit is leftist shit show and not indicative of the city', 'created': '2024-11-13 05:20:26', 'submission_id': '1gq1qio'}
{'comment': 'Do Better Denver also has an account on X!', 'created': '2024-11-13 05:25:22', 'submission_id': '1gq1qio'}
{'comment': 'What cracks me up is they don’t feel safe there, constantly posting about trails or areas filled with bums. They voted for it and can’t connect the dots!', 'created': '2024-11-13 05:26:38', 'submission_id': '1gq1qio'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 01:09:08', 'submission_id': '1gpznqs'}
{'comment': 'Yeah, I hope he lives all 4 years', 'created': '2024-11-13 01:30:04', 'submission_id': '1gpznqs'}
{'comment': 'K bye', 'created': '2024-11-13 01:15:03', 'submission_id': '1gpznqs'}
{'comment': 'Thought he died years ago if I’m being honest', 'created': '2024-11-13 01:18:04', 'submission_id': '1gpznqs'}
{'comment': 'Why do these people still think their opinions carry any weight?', 'created': '2024-11-13 01:29:23', 'submission_id': '1gpznqs'}
{'comment': 'I love Dick Van Dyke as an actor. He’s an American legend. But he’s probably always been crazy politically. Definitely doesn’t surprise me that he would say something like that. Though it’s a shame. I hope he lives plenty more years and gets to see the bright future for this country that Donald Trump and his administration is going to bring.', 'created': '2024-11-13 01:48:59', 'submission_id': '1gpznqs'}
{'comment': 'RIP', 'created': '2024-11-13 01:12:02', 'submission_id': '1gpznqs'}
{'comment': 'Long life to him then', 'created': '2024-11-13 01:26:23', 'submission_id': '1gpznqs'}
{'comment': 'Well nothing you can do about it and this is sad to hear to be honest. I respect Dick Van Dyke.', 'created': '2024-11-13 01:22:34', 'submission_id': '1gpznqs'}
{'comment': 'He has a point…I mean another 4 years of low inflation, secure borders, low crime, and fewer foreign wars. How awful! lol.', 'created': '2024-11-13 01:34:49', 'submission_id': '1gpznqs'}
{'comment': "He can hop in Bono's car and they can go over that cliff together", 'created': '2024-11-13 01:34:41', 'submission_id': '1gpznqs'}
{'comment': 'And? ........ Who the hell cares what you think?', 'created': '2024-11-13 02:20:45', 'submission_id': '1gpznqs'}
{'comment': 'My condolences DICK', 'created': '2024-11-13 02:30:35', 'submission_id': '1gpznqs'}
{'comment': 'Is that someone I should care about?', 'created': '2024-11-13 01:15:44', 'submission_id': '1gpznqs'}
{'comment': 'Easier thing to say when you’re that old and dancing with the reaper anyway.', 'created': '2024-11-13 01:23:01', 'submission_id': '1gpznqs'}
{'comment': 'Another out of touch celebrity. So sick of hearing what these people think.', 'created': '2024-11-13 02:28:05', 'submission_id': '1gpznqs'}
{'comment': 'Just act, sing, whatever made you “ famous “ so sick of celebrity opinions on any subject', 'created': '2024-11-13 02:29:08', 'submission_id': '1gpznqs'}
{'comment': 'You’ll be okay Mr Van Dyke. We all will. Trump is back in office soon and good things are already getting done.', 'created': '2024-11-13 01:37:32', 'submission_id': '1gpznqs'}
{'comment': 'He may not have a choice.', 'created': '2024-11-13 02:14:21', 'submission_id': '1gpznqs'}
{'comment': 'He should be careful of his words karma can arrange that easily enough.', 'created': '2024-11-13 01:17:33', 'submission_id': '1gpznqs'}
{'comment': 'TIL Dick Van Dyke is still alive', 'created': '2024-11-13 01:47:13', 'submission_id': '1gpznqs'}
{'comment': 'Dick Van Dyke is a national treasure. Sad we disagree on politics, but his show was great to watch on Nick at Night back in the day.', 'created': '2024-11-13 02:40:23', 'submission_id': '1gpznqs'}
{'comment': "Isn't he like a hundred years old by now? Doubtful he's going to make it 4 anyway.", 'created': '2024-11-13 20:48:41', 'submission_id': '1gpznqs'}
{'comment': 'I wish actors/celebrities would just shut the fuck up about who they support and just fucking entertain us', 'created': '2024-11-14 11:48:24', 'submission_id': '1gpznqs'}
{'comment': 'This just shows have pervasive liberalism has been in Hollywood for 80 years. Even the “conservatives” of Hollywood would be liberals anywhere else', 'created': '2024-11-14 19:30:58', 'submission_id': '1gpznqs'}
{'comment': 'https://images.app.goo.gl/wprCL8Pm1TVeNo2K9', 'created': '2024-11-15 01:59:47', 'submission_id': '1gpznqs'}
{'comment': 'Yeah I’d like to see the interview or who he said this too. Not believing it till then', 'created': '2024-11-13 01:34:21', 'submission_id': '1gpznqs'}
{'comment': 'Well. BYE!', 'created': '2024-11-13 01:34:27', 'submission_id': '1gpznqs'}
{'comment': 'Bye', 'created': '2024-11-13 01:34:28', 'submission_id': '1gpznqs'}
{'comment': 'Well.', 'created': '2024-11-13 01:23:08', 'submission_id': '1gpznqs'}
{'comment': 'Ooh shit \n\nRiP :/', 'created': '2024-11-13 01:39:00', 'submission_id': '1gpznqs'}
{'comment': 'Well….. bye.', 'created': '2024-11-13 01:39:14', 'submission_id': '1gpznqs'}
{'comment': 'Bye stupid', 'created': '2024-11-13 01:39:55', 'submission_id': '1gpznqs'}
{'comment': 'Toodoloo muthafuka!!!', 'created': '2024-11-13 01:41:46', 'submission_id': '1gpznqs'}
{'comment': 'Cue the "Guess I\'ll die" meme.', 'created': '2024-11-13 01:44:16', 'submission_id': '1gpznqs'}
{'comment': 'See ya later aligator 🐊', 'created': '2024-11-13 01:44:34', 'submission_id': '1gpznqs'}
{'comment': 'Ok.', 'created': '2024-11-13 01:48:30', 'submission_id': '1gpznqs'}
{'comment': "It's time. He's old anyway.", 'created': '2024-11-13 01:53:54', 'submission_id': '1gpznqs'}
{'comment': 'Well, he’s had a nice life.', 'created': '2024-11-13 01:55:30', 'submission_id': '1gpznqs'}
{'comment': 'How did trump have any effect on a washed up geriatric white actor who..to be honest thought he died years ago.', 'created': '2024-11-13 02:05:30', 'submission_id': '1gpznqs'}
{'comment': 'That can be arranged.', 'created': '2024-11-13 02:06:15', 'submission_id': '1gpznqs'}
{'comment': 'I thought he was dead lol', 'created': '2024-11-13 02:10:35', 'submission_id': '1gpznqs'}
{'comment': 'Cool.', 'created': '2024-11-13 02:15:06', 'submission_id': '1gpznqs'}
{'comment': "Guess he'll die then", 'created': '2024-11-13 02:58:34', 'submission_id': '1gpznqs'}
{'comment': "Okay. I'd rather live because I'm not an idiot.", 'created': '2024-11-13 03:03:24', 'submission_id': '1gpznqs'}
{'comment': "I'm wishing Dyke Dick a long life so he sees the great things we'll do the next 4 years and another 4 when we win again!", 'created': '2024-11-13 03:05:56', 'submission_id': '1gpznqs'}
{'comment': 'RIP bozo', 'created': '2024-11-13 03:11:58', 'submission_id': '1gpznqs'}
{'comment': 'I honestly thought he was dead.', 'created': '2024-11-13 03:12:27', 'submission_id': '1gpznqs'}
{'comment': 'What a poor soul', 'created': '2024-11-13 03:12:34', 'submission_id': '1gpznqs'}
{'comment': 'what a dick', 'created': '2024-11-13 03:13:54', 'submission_id': '1gpznqs'}
{'comment': "He's already got one foot in the grave.", 'created': '2024-11-13 03:17:07', 'submission_id': '1gpznqs'}
{'comment': 'Can’t they take care of that in Sweden?', 'created': '2024-11-13 03:22:28', 'submission_id': '1gpznqs'}
{'comment': 'Is he even gonna see 4 more years?!', 'created': '2024-11-13 03:23:27', 'submission_id': '1gpznqs'}
{'comment': 'If ever a first name said it all about a person !', 'created': '2024-11-13 03:24:03', 'submission_id': '1gpznqs'}
{'comment': 'Oh no… anyway', 'created': '2024-11-13 03:30:16', 'submission_id': '1gpznqs'}
{'comment': 'Whatever you say', 'created': '2024-11-13 03:35:14', 'submission_id': '1gpznqs'}
{'comment': "Well Dick, prove it or it didn't happen.", 'created': '2024-11-13 03:41:11', 'submission_id': '1gpznqs'}
{'comment': 'Get this man a spoon full of sugar!', 'created': '2024-11-13 03:44:48', 'submission_id': '1gpznqs'}
{'comment': 'Go for it..also who? Never heard of him', 'created': '2024-11-13 03:48:40', 'submission_id': '1gpznqs'}
{'comment': "What's next for Dick Van Dyke?\n\nDirt Nap!", 'created': '2024-11-13 03:53:55', 'submission_id': '1gpznqs'}
{'comment': '50/50 he even survives another 4 years not sure what he’s worried about.', 'created': '2024-11-13 03:58:34', 'submission_id': '1gpznqs'}
{'comment': 'Okay.', 'created': '2024-11-13 04:00:14', 'submission_id': '1gpznqs'}
{'comment': 'Dick don’t be a dick about this it’s better the second time around.', 'created': '2024-11-13 04:02:30', 'submission_id': '1gpznqs'}
{'comment': 'He is petrie-fied of another 4 years!', 'created': '2024-11-13 04:07:42', 'submission_id': '1gpznqs'}
{'comment': "I'm so sorry to hear him say that. I hope that he doesn't get his wish, changes his mind and lives a long and happy life surrounded by his loved ones.", 'created': '2024-11-13 04:18:43', 'submission_id': '1gpznqs'}
{'comment': 'Ummm be careful what you wish for?', 'created': '2024-11-13 04:30:34', 'submission_id': '1gpznqs'}
{'comment': 'Insert Curly Bill.... Well bye', 'created': '2024-11-13 04:35:33', 'submission_id': '1gpznqs'}
{'comment': "I mean, I wanted to watch Mary Poppins without his terrible fake accent, but sometimes we don't get what we want.\xa0", 'created': '2024-11-13 04:35:59', 'submission_id': '1gpznqs'}
{'comment': 'Well...werewaiting.gif', 'created': '2024-11-13 04:39:49', 'submission_id': '1gpznqs'}
{'comment': 'He just might have that chance', 'created': '2024-11-13 05:04:20', 'submission_id': '1gpznqs'}
{'comment': 'He still be there when Barron becomes president', 'created': '2024-11-13 05:12:02', 'submission_id': '1gpznqs'}
{'comment': 'Go for it', 'created': '2024-11-13 05:20:01', 'submission_id': '1gpznqs'}
{'comment': 'RIP. Thanks for the memories, Dick! \n\nhttps://youtu.be/8Mh09VuGlKo?si=JQa9SQiMLfTeZ2Vq', 'created': '2024-11-13 05:28:34', 'submission_id': '1gpznqs'}
{'comment': 'I thought he was already dead.', 'created': '2024-11-13 05:41:28', 'submission_id': '1gpznqs'}
{'comment': "I was never personally a fan of the Dick Van Dyke show, and didn't even know this guy was still alive and I'm nearing 40. Wouldn't be able to pick him out of a crowd, that's for sure. He looks like he needs to hurry up and eat his applesauce, it's 9:22pm, he was supposed to be asleep when the street lamps came on.", 'created': '2024-11-13 06:22:21', 'submission_id': '1gpznqs'}
{'comment': 'RIP', 'created': '2024-11-13 06:26:00', 'submission_id': '1gpznqs'}
{'comment': "Who the fuck cares what he'd rather do? He probably would also rather to have banana pudding than have cherry jello, too.", 'created': '2024-11-13 06:37:20', 'submission_id': '1gpznqs'}
{'comment': '\n\n\nDickhead Van Dyke', 'created': '2024-11-13 06:37:39', 'submission_id': '1gpznqs'}
{'comment': 'Oh yeah? Well, my neighbor Steve is thrilled that Trump won.\n\nHis opinion means as much, if not more, than those of all you Hollywood clowns.', 'created': '2024-11-13 06:51:41', 'submission_id': '1gpznqs'}
{'comment': 'RIP say hello to Mary poppins', 'created': '2024-11-13 06:55:12', 'submission_id': '1gpznqs'}
{'comment': 'Go for it bud', 'created': '2024-11-13 07:53:29', 'submission_id': '1gpznqs'}
{'comment': 'I thought he died like 20 years ago.', 'created': '2024-11-13 08:28:51', 'submission_id': '1gpznqs'}
{'comment': 'This guy is still alive?', 'created': '2024-11-13 12:04:15', 'submission_id': '1gpznqs'}
{'comment': 'Life sentence to a Trump presidency.', 'created': '2024-11-13 12:25:50', 'submission_id': '1gpznqs'}
{'comment': 'Tough talk from a lonely old chimney sweep', 'created': '2024-11-13 14:34:13', 'submission_id': '1gpznqs'}
{'comment': 'I thought he died already honestly', 'created': '2024-11-13 14:34:58', 'submission_id': '1gpznqs'}
{'comment': 'Guess he missed the memo. Americans have spoken, no one cares about celebrity opinions.', 'created': '2024-11-13 14:41:23', 'submission_id': '1gpznqs'}
{'comment': 'Who?', 'created': '2024-11-13 14:52:23', 'submission_id': '1gpznqs'}
{'comment': 'Wow, be careful what ya say..could happen.', 'created': '2024-11-13 15:13:27', 'submission_id': '1gpznqs'}
{'comment': 'Go to Canada they will help you out', 'created': '2024-11-13 16:33:44', 'submission_id': '1gpznqs'}
{'comment': 'Well.....Bye.', 'created': '2024-11-13 16:35:02', 'submission_id': '1gpznqs'}
{'comment': 'He hasn’t been affected by the mess of the last 4 years! Plus, he’s an actor, not a fountain of wisdom! Entitled to his opinion but who cares what it is?', 'created': '2024-11-13 18:45:05', 'submission_id': '1gpznqs'}
{'comment': 'Luckily you have one foot in the grave, so your wish may come true. 🤣', 'created': '2024-11-13 01:41:10', 'submission_id': '1gpznqs'}
{'comment': "He's old, and possibly senile at this point.", 'created': '2024-11-13 01:45:33', 'submission_id': '1gpznqs'}
{'comment': 'With the grace of God, hopefully he will be around for most/all 4 years.... just for entertainment purposes. 😁', 'created': '2024-11-13 03:51:42', 'submission_id': '1gpznqs'}
{'comment': '👋 bye 👋', 'created': '2024-11-13 05:20:53', 'submission_id': '1gpznqs'}
{'comment': 'What’s he care? Isn’t he British? 🤣', 'created': '2024-11-13 01:39:39', 'submission_id': '1gpznqs'}
{'comment': 'Well, guess he better hurry up', 'created': '2024-11-13 09:44:34', 'submission_id': '1gpznqs'}
{'comment': "No way he makes it through Trump's second admin.", 'created': '2024-11-13 15:08:29', 'submission_id': '1gpznqs'}
{'comment': 'I say go for it', 'created': '2024-11-13 15:13:49', 'submission_id': '1gpznqs'}
{'comment': 'RIP', 'created': '2024-11-13 15:21:40', 'submission_id': '1gpznqs'}
{'comment': 'Ope!', 'created': '2024-11-13 15:50:16', 'submission_id': '1gpznqs'}
{'comment': 'Celebrities talking about politics.. wow, who cares? Clearly not too many given damn near every one of them endorsed Kamala to see her lose', 'created': '2024-11-13 17:31:13', 'submission_id': '1gpznqs'}
{'comment': 'If trump is in charge and there’s another pandemic he likely will die 😂', 'created': '2024-11-13 04:46:01', 'submission_id': '1gpznqs'}
{'comment': 'They say only the good die young🤷\u200d♂️🤷\u200d♂️🤷\u200d♂️', 'created': '2024-11-13 15:23:18', 'submission_id': '1gpznqs'}
{'comment': 'Good for him', 'created': '2024-11-13 16:49:09', 'submission_id': '1gpznqs'}
{'comment': 'Lol Good one', 'created': '2024-11-13 01:46:06', 'submission_id': '1gpznqs'}
{'comment': 'Better/nicer response than what I was thinking.', 'created': '2024-11-13 03:11:44', 'submission_id': '1gpznqs'}
{'comment': 'Given that DVD probably took money like Oprah did for her endorsement, he is probably doing all he can to stave off payola charges in court.', 'created': '2024-11-13 08:10:48', 'submission_id': '1gpznqs'}
{'comment': 'Possibly 8', 'created': '2024-11-13 05:21:21', 'submission_id': '1gpznqs'}
{'comment': 'Say Goodbye to Dick!', 'created': '2024-11-14 03:17:44', 'submission_id': '1gpznqs'}
{'comment': 'Take a trip to Canada, they have that whole euthanasia thing going there to help ya out', 'created': '2024-11-13 01:46:45', 'submission_id': '1gpznqs'}
{'comment': 'I was thinking 👀 🤔 he’s still alive?! 😳', 'created': '2024-11-13 01:41:39', 'submission_id': '1gpznqs'}
{'comment': 'Same!', 'created': '2024-11-13 15:49:53', 'submission_id': '1gpznqs'}
{'comment': 'They have huge ego from seeing people basically worship them everywhere they go.', 'created': '2024-11-13 01:41:20', 'submission_id': '1gpznqs'}
{'comment': 'They should be allowed to voice their opinion but a part of me believes they slightly ruin their legacy by leaving comments such as this, leaves a bad taste in my mouth', 'created': '2024-11-13 16:49:20', 'submission_id': '1gpznqs'}
{'comment': 'Yeah, who the hell cares about what celebrities, think, amirite? It’s like that asshole from The Apprentice, why does that loser want to run for president?! XD', 'created': '2024-11-13 10:18:30', 'submission_id': '1gpznqs'}
{'comment': 'This is the best response to all the TDS critics.', 'created': '2024-11-13 12:07:55', 'submission_id': '1gpznqs'}
{'comment': 'lol, good one 😂😂', 'created': '2024-11-13 10:19:06', 'submission_id': '1gpznqs'}
{'comment': 'Put aside his politics. He’s an icon.', 'created': '2024-11-13 01:43:54', 'submission_id': '1gpznqs'}
{'comment': "He's worth 50 million dollars. He doesn't care what gas, eggs and milk cost. He isn't worried if his kids can ever afford a house. OUT OF TOUCH.", 'created': '2024-11-13 05:36:09', 'submission_id': '1gpznqs'}
{'comment': 'Right? Why single out that bunch of out of touch entitled creeps who just want to appear "woke" and accepted via herd mentality.', 'created': '2024-11-14 18:48:42', 'submission_id': '1gpznqs'}
{'comment': "If I was pushing 100 I'd be careful with what I said like that", 'created': '2024-11-13 01:20:04', 'submission_id': '1gpznqs'}
{'comment': 'I can’t watch Mary Poppins with his awful British accent.', 'created': '2024-11-13 03:06:06', 'submission_id': '1gpznqs'}
{'comment': 'Leftist great-granddaughter got on his X account again', 'created': '2024-11-13 02:03:50', 'submission_id': '1gpznqs'}
{'comment': 'So true', 'created': '2024-11-13 04:23:26', 'submission_id': '1gpznqs'}
{'comment': 'Honestly, even voicing your opinion as an ~~idiot~~ celebrity isn’t all that much. I find it annoying but it’s pretty normal. But when you act like a big pissbaby over it, you look like, well, a big pissbaby.\n\nYou have millions of dollars, get a grip.', 'created': '2024-11-13 21:48:06', 'submission_id': '1gpznqs'}
{'comment': 'why are you here?', 'created': '2024-11-13 12:16:48', 'submission_id': '1gpznqs'}
{'comment': 'Is Dick Van Dyke running for anything?', 'created': '2024-11-13 13:01:19', 'submission_id': '1gpznqs'}
{'comment': 'He needs to put aside his politics. Being an icon doesn’t mean your opinion matters.', 'created': '2024-11-13 02:42:08', 'submission_id': '1gpznqs'}
{'comment': ' Yep and that wench karma has never even been charged with a crime much less convicted.', 'created': '2024-11-13 01:24:40', 'submission_id': '1gpznqs'}
{'comment': 'Wouldn’t surprise me', 'created': '2024-11-13 02:06:41', 'submission_id': '1gpznqs'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 01:04:02', 'submission_id': '1gpzjsy'}
{'comment': 'Jan 20th can’t come soon enough.', 'created': '2024-11-13 02:28:41', 'submission_id': '1gpzjsy'}
{'comment': 'Funny, but I think if I ever have a night terror it’s gonna be this image now lol', 'created': '2024-11-13 02:56:01', 'submission_id': '1gpzjsy'}
{'comment': "What in gods name have you created. It looks like someone put Obama's smile on Trump,", 'created': '2024-11-13 03:44:48', 'submission_id': '1gpzjsy'}
{'comment': 'A parental advisory explicit content box would be dope for this lol', 'created': '2024-11-13 04:50:36', 'submission_id': '1gpzjsy'}
{'comment': 'Real. I have that as mine as well', 'created': '2024-11-13 01:11:30', 'submission_id': '1gpzjsy'}
{'comment': 'This is clean', 'created': '2024-11-13 04:32:11', 'submission_id': '1gpzjsy'}
{'comment': 'Shit goes hard, he a gremlin he my lil Gemini twin', 'created': '2024-11-13 05:15:24', 'submission_id': '1gpzjsy'}
{'comment': 'this is my fav pic of him. LOL.', 'created': '2024-11-13 12:10:55', 'submission_id': '1gpzjsy'}
{'comment': 'Looks good.', 'created': '2024-11-14 00:41:40', 'submission_id': '1gpzjsy'}
{'comment': 'I thought the inauguration was jan 25', 'created': '2024-11-16 03:13:08', 'submission_id': '1gpzjsy'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-13 00:52:48', 'submission_id': '1gpzar8'}
{'comment': 'I see lawsuits in the next four years. Many, many lawsuits.', 'created': '2024-11-13 01:22:51', 'submission_id': '1gpzar8'}
{'comment': 'Medical ethics used to be paramount in the profession. \n\nAbandoning this Mengele-esque practice is one of the few things the Europeans got right.', 'created': '2024-11-13 02:04:13', 'submission_id': '1gpzar8'}
{'comment': "Who would've thought that purposely stunning natural hormonal growth would lead to negative consequences?\n\nThey will be held accountable thanks to this administration. I have full confidence in Trump and the team that he's built around him!", 'created': '2024-11-13 02:34:47', 'submission_id': '1gpzar8'}
{'comment': 'For the record im just joking: \n"welcome to a womans sex life"\n\nEdit: removed the apologizing 😎lol thanks for the advice. I can feel my balls now.', 'created': '2024-11-13 01:12:46', 'submission_id': '1gpzar8'}
{'comment': "Mengele would've been proud of these idiots", 'created': '2024-11-13 04:09:16', 'submission_id': '1gpzar8'}
{'comment': 'Well that sucks', 'created': '2024-11-13 19:16:52', 'submission_id': '1gpzar8'}
{'comment': 'And to think they’re pushing “it’s totally reversible”', 'created': '2024-11-13 05:24:40', 'submission_id': '1gpzar8'}
{'comment': '🫢', 'created': '2024-11-13 01:21:05', 'submission_id': '1gpzar8'}
{'comment': 'It was funny until you kept apologizing for a joke that is in no way offensive. Literally should’ve just said welcome to a woman’s sex life. I promise, it’s fine.', 'created': '2024-11-13 01:44:24', 'submission_id': '1gpzar8'}
{'comment': "My guy, it was a funny joke. We need to normalize not giving a shit about what people think when making a joke fr lol, fuck whomever it offends. Racist, homophonic, sexist, transphobic, bigoted, hateful, whatever the hell it could be labled as by some whiny snowflake, WHO CARES. Just make the joke lol, you don't have to profusely apologize and explain yourself", 'created': '2024-11-13 03:18:45', 'submission_id': '1gpzar8'}
{'comment': 'So much for the argument that puberty blockers are reversible.', 'created': '2024-11-13 19:54:01', 'submission_id': '1gpzar8'}
{'comment': 'True. But I was not gonna risk it lol', 'created': '2024-11-13 01:45:32', 'submission_id': '1gpzar8'}
{'comment': "Exactly lol, if someone wants to get upset about it that's THEIR problem, not his", 'created': '2024-11-13 03:20:33', 'submission_id': '1gpzar8'}
{'comment': 'Why? What’s remotely offensive about that?', 'created': '2024-11-13 01:48:23', 'submission_id': '1gpzar8'}
{'comment': 'Just used to too many Democrats. So idk whats offensive and what isnt.', 'created': '2024-11-13 01:53:44', 'submission_id': '1gpzar8'}
{'comment': 'Piece of advice, stop caring lol. Seriously. Who gives a damn about what people think of you, just be you. Offend people sometimes, the world still spins and the clock still ticks', 'created': '2024-11-13 03:19:44', 'submission_id': '1gpzar8'}
{'comment': 'Good advice. Still trying to improve on that. When I do something wrong I can be hard on myself. It’s hard but I’ll keep pushing for thicker skin.', 'created': '2024-11-13 04:19:23', 'submission_id': '1gpzar8'}
{'comment': "Hey man, I completely understand. I was a people pleaser for a long while when I was younger, that shit drained the hell out of me. I stopped giving a shit about little things that dont really matter, especially what people think about me, and i feel way better with myself. It's just easier on your mind to not worry about some things, if that makes sense. Constantly being self critical isn't good for you, while it is good in general, too much of it can turn into self hatred and that's a really common thing these days unfortunately. Idk I hope this makes sense I'm pretty fucked up rn lmaoo", 'created': '2024-11-13 04:27:51', 'submission_id': '1gpzar8'}
{'comment': 'lol imma just edit the comment so it removes the apologizing as a step of action. Thanks mate.', 'created': '2024-11-13 04:47:54', 'submission_id': '1gpzar8'}
{'comment': 'Of course! Have a good night ✌🏻', 'created': '2024-11-13 04:50:42', 'submission_id': '1gpzar8'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 23:03:00', 'submission_id': '1gpwumx'}
{'comment': 'I\'m trying not to shout out the words "Fuck yeah!" to the world at that statement. Can we please flatten the NYS "SAFE Act" in court next?', 'created': '2024-11-12 23:55:17', 'submission_id': '1gpwumx'}
{'comment': "Get rid of it entirely. Delete everyone's info who owns an NFA item. I recently bought a suppressor and when I was talking to a guy he said that at some point I should turn it into a trust because apparently, if you pass away and the atf learns of it, they go to your house and confiscate it because it's listed to your name not anyone else's. That's fucked up that I don't even fully own my suppressor", 'created': '2024-11-13 00:46:57', 'submission_id': '1gpwumx'}
{'comment': 'I’d go with option 3, but have Brandon turn them into an agency that helps citizens procure all 3 easier. 🤷\u200d♂️', 'created': '2024-11-13 01:42:39', 'submission_id': '1gpwumx'}
{'comment': 'Based', 'created': '2024-11-12 23:51:32', 'submission_id': '1gpwumx'}
{'comment': 'I’m going to look for you in comment sections now', 'created': '2024-11-13 00:42:50', 'submission_id': '1gpwumx'}
{'comment': "I'm looking forward to the DOGE getting to work.", 'created': '2024-11-14 08:47:01', 'submission_id': '1gpwumx'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 22:36:31', 'submission_id': '1gpw84f'}
{'comment': 'Johnson has turned out to be a very capable and focused leader of The House.', 'created': '2024-11-12 23:20:44', 'submission_id': '1gpw84f'}
{'comment': 'Every day feels like its been opposite day for the last 4 years, so I wouldn\'t be surprised if they heard "Burn all documents" instead.', 'created': '2024-11-12 23:34:24', 'submission_id': '1gpw84f'}
{'comment': 'Yeah, but how does that get enforced?', 'created': '2024-11-13 06:12:35', 'submission_id': '1gpw84f'}
{'comment': 'Time for a Mar a Lago style raid', 'created': '2024-11-12 23:36:53', 'submission_id': '1gpw84f'}
{'comment': "He's about a week late.", 'created': '2024-11-13 14:18:08', 'submission_id': '1gpw84f'}
{'comment': "I'm certain that they will make absolutely certain to follow orders from the house this time. /s", 'created': '2024-11-13 00:42:39', 'submission_id': '1gpw84f'}
{'comment': "Hillary's team seen entering the backdoor of the Whitehouse", 'created': '2024-11-13 02:37:11', 'submission_id': '1gpw84f'}
{'comment': 'Buy bleachbit stock it will be going up in the rush to hide the evidence.', 'created': '2024-11-13 00:16:51', 'submission_id': '1gpw84f'}
{'comment': "On Nancy Pelosi's house?\n\nApparently she says that all of 2020 and 2022 was her work. Maybe the most corrupt former member of Congress is hiding something.", 'created': '2024-11-13 04:04:47', 'submission_id': '1gpw84f'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 22:32:35', 'submission_id': '1gpw4u4'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 22:19:32', 'submission_id': '1gpvtg2'}
{'comment': 'I sincerely hope she has that in writing somewhere', 'created': '2024-11-12 22:40:30', 'submission_id': '1gpvtg2'}
{'comment': "Ive seen Dems accuse Trump of doing this, when he straight up didnt. But here it is on video of them doing the thing they said he would and hasn't done.\n\nLmao its literally nonstop projection. but ya somehow we are the facists, when they are literally being facist and not helping Americans if they dont bow down to their ideas.", 'created': '2024-11-12 23:51:16', 'submission_id': '1gpvtg2'}
{'comment': 'Looks like they found their scapegoat easily enough.', 'created': '2024-11-12 22:59:16', 'submission_id': '1gpvtg2'}
{'comment': 'She better have something to back that up cause they found the perfect scapegoat. She should have mentioned this herself to the media ahead of time.', 'created': '2024-11-12 23:06:50', 'submission_id': '1gpvtg2'}
{'comment': 'I called this the day it was announced. Pretty easy to see. They fired her because they got caught, not because of what she did.', 'created': '2024-11-12 23:23:26', 'submission_id': '1gpvtg2'}
{'comment': 'She will probably testify before congress soon', 'created': '2024-11-13 00:35:37', 'submission_id': '1gpvtg2'}
{'comment': "Here's my take even if it was what they told her to do anyone with a heart should know this is a horrific act towards fellow Americans in the midst of destruction and anyone with a heart would not listen to this and tell them to help EVERYONE even if she was afraid of being fired..in the end she lost her job anyway and now she looks really bad people are pissed.", 'created': '2024-11-13 00:40:24', 'submission_id': '1gpvtg2'}
{'comment': 'Nah, if you listen to her, she’s justifying it by saying she was (their teams were) being threatened by Trump supporters. They’re lying', 'created': '2024-11-12 23:13:48', 'submission_id': '1gpvtg2'}
{'comment': "I work at walmart and I've had some customers I would definitely not serve but if my company told me to avoid customers with Harris stuff on I just wouldn't listen. I wouldn't vote for Harris but I wouldn't refuse to check one out. She had the right to refuse her orders. No company can control you to that extent.", 'created': '2024-11-12 23:41:47', 'submission_id': '1gpvtg2'}
{'comment': 'Prove it, become a whistleblower.', 'created': '2024-11-13 01:05:12', 'submission_id': '1gpvtg2'}
{'comment': 'Oh one hundred percent. I knew as soon as this story dropped she wasn’t alone in this decision making. Full investigation needs to happen asap. This is unacceptable especially when vulnerable children (and pets) with no political agenda were affected. Every citizen deserved help. But to single out entire families for signs supporting a political figure is absurd.', 'created': '2024-11-13 00:39:43', 'submission_id': '1gpvtg2'}
{'comment': 'Nothing is ever their fault. They opened the border and blamed republicans, remember that logic? So this chick claiming to be a scapegoat, was complicit. She’s part of the problem, whereas the person who leaked all of this actively did something. I also bet she voted for Kamala, for more of this crap.', 'created': '2024-11-13 01:50:39', 'submission_id': '1gpvtg2'}
{'comment': "She's still a racist scumbag. \n\nAnd yes treating people differently because of politics is racist. \n\nYou're literally treating people badly because of a group they identify with. They're always attacking republicans for doing that whilst doing it themselves 🙄.", 'created': '2024-11-13 03:00:25', 'submission_id': '1gpvtg2'}
{'comment': 'Holy crap, she CONFIRMED that what happened in WNC & ETN indeed involved avoidance from FEMA. \n\nTHIS IS SO INHUMANE. PEOPLE DIED. What the actual FUCK.', 'created': '2024-11-13 03:07:28', 'submission_id': '1gpvtg2'}
{'comment': 'Like shaking a jar of ants.', 'created': '2024-11-12 23:27:55', 'submission_id': '1gpvtg2'}
{'comment': 'This is setting up to be a huge huge scandal that is going to go all the way up, if not to the president, to the head of FEMA.', 'created': '2024-11-13 03:09:40', 'submission_id': '1gpvtg2'}
{'comment': "OK, let's see the memo.", 'created': '2024-11-12 23:30:38', 'submission_id': '1gpvtg2'}
{'comment': 'Karma is a BITCH', 'created': '2024-11-12 23:41:22', 'submission_id': '1gpvtg2'}
{'comment': 'As I understand it the “policy” is *de-escalation* and the potential for creating escalation is no less likely if a Republican FEMA worker assisted a Democrat victim and extremely lessened if they are both of one mind so this is a pretty dogshit wanton misinterpretation', 'created': '2024-11-13 01:23:54', 'submission_id': '1gpvtg2'}
{'comment': "Name em'!", 'created': '2024-11-13 03:06:13', 'submission_id': '1gpvtg2'}
{'comment': 'Wouldn\'t one think NOT helping all victims would backfire? I mean, if I was in a disaster and my government didn\'t assist with some kind of support, I sure as Hell would NOT VOTE FOR THEM. It would be like an invisible pat on my shoulder, "You are choosing wisely."', 'created': '2024-11-13 05:48:16', 'submission_id': '1gpvtg2'}
{'comment': 'As someone from NC this is absolutely disgusting and heartbreaking. People are still hurting and they have the audacity to do this just because of who they support politically. Absolutely no reason for that other than pure hatred.', 'created': '2024-11-14 13:54:41', 'submission_id': '1gpvtg2'}
{'comment': 'Proves how DISGUSTING our current administration is 🤮🤮🤮 May they all rot in hell especially whoever is in charge of this.', 'created': '2024-11-14 20:24:33', 'submission_id': '1gpvtg2'}
{'comment': "Watched the interview, Martin kept trying to give her ways out leading like he usually does but not actually saying things so he doesn't get sued. She stuck to it and I'd bet she was told to do it like she said.", 'created': '2024-11-13 14:18:56', 'submission_id': '1gpvtg2'}
{'comment': "If she didn't come forward, she should swing with the rest of them.", 'created': '2024-11-13 22:53:43', 'submission_id': '1gpvtg2'}
{'comment': "Fuckin' LIAR.", 'created': '2024-11-13 17:33:33', 'submission_id': '1gpvtg2'}
{'comment': 'What’s crazy is that she should see that the democrats are willing to throw anyone under the bus when they no longer need you. \n\nLet the lesson be learned.', 'created': '2024-11-13 00:30:49', 'submission_id': '1gpvtg2'}
{'comment': 'According to the interview, she noticed files being deleted off her computer just before it, without her doing so - so it looks like someone is trying to cover their tracks.', 'created': '2024-11-12 23:03:17', 'submission_id': '1gpvtg2'}
{'comment': 'Of course she does NOT. 🤣', 'created': '2024-11-13 17:34:09', 'submission_id': '1gpvtg2'}
{'comment': 'See what FEMA head says. https://www.dailywire.com/news/fema-chief-to-face-two-house-grillings-in-one-day', 'created': '2024-11-13 11:05:27', 'submission_id': '1gpvtg2'}
{'comment': "There's more to the interview than that clip. She makes it clear that it was agency policy.", 'created': '2024-11-12 23:16:00', 'submission_id': '1gpvtg2'}
{'comment': "She could have refused - either quietly or overtly.\n\nThe thing about this is that she doesn't *disagree with the policy*. She's just angry about being made the scapegoat.\n\nThe Federal Bureaucracy is mostly made up of fellow travelers. This policy was likely in place for months, and nobody said a word until volunteers from other government departments who were called in to help spoke up about what was going on.", 'created': '2024-11-12 23:51:09', 'submission_id': '1gpvtg2'}
{'comment': "She did. She's gone on interviews talking about it.\n\nNot because she disagrees with the policy mind you. ...but because she didn't like being made the scapegoat when it became public.", 'created': '2024-11-13 14:40:57', 'submission_id': '1gpvtg2'}
{'comment': 'Merrick Garland\'s DOJ is right on it.\n\n"DOJ declines to prosecute".', 'created': '2024-11-13 00:43:53', 'submission_id': '1gpvtg2'}
{'comment': 'One of the things she says at another point in the interview is that they told her she was fired but she never got any official notice, and she noticed later that they were remotely deleting files from her computer. Hopefully she had a printed copy.', 'created': '2024-11-12 23:47:58', 'submission_id': '1gpvtg2'}
{'comment': "WHEN SOMEONE IS LITERALLY STANDING IN 3 FEET OF WATER IN THEIR HOUSE, THEIR DOG IS DROWNING, THEIR CAR FLOATED AWAY NO ONE & I MEAN NO CARES IF IT'S A TRUMP VOTER OR HARRIS VOTER COMING TO SAVE YOUR LIFE. SHE IS SCUM & TOO EVIL TO LIVE. IMHO", 'created': '2024-11-13 17:40:25', 'submission_id': '1gpvtg2'}
{'comment': "The Democrats are a shadow of what they were tbh. They need to lose in 2026 now. We're not/won't be out of the woods for a while.", 'created': '2024-11-13 14:02:46', 'submission_id': '1gpvtg2'}
{'comment': 'unfortunately an agency like the fbi would make it disappear. if there was some kind of evidence of wrongdoing by Trump on it, I bet they would all of a sudden become competent though.', 'created': '2024-11-13 01:03:34', 'submission_id': '1gpvtg2'}
{'comment': 'That or she is lying. Hopefully the investigators will figure it out.', 'created': '2024-11-12 23:14:08', 'submission_id': '1gpvtg2'}
{'comment': 'Even if they delete files that can’t overwrite a hard drive without destroying it', 'created': '2024-11-12 23:58:27', 'submission_id': '1gpvtg2'}
{'comment': 'Ahhhh gotcha', 'created': '2024-11-12 23:17:02', 'submission_id': '1gpvtg2'}
{'comment': "Won't be his doj in 2 months", 'created': '2024-11-13 03:03:35', 'submission_id': '1gpvtg2'}
{'comment': 'I’d be shocked to see nothing come of this. Unacceptable', 'created': '2024-11-13 01:01:52', 'submission_id': '1gpvtg2'}
{'comment': 'I\'m too lazy to find the articles, but right after the storm, there was a story that " militias" were harassing FEMA. Day or so later, articles that one guy was arrested. I could see a snowflake middle manager overreacting to the first articles and then scapegoating an employee. It\'s just corporate games, government edition.', 'created': '2024-11-12 23:52:46', 'submission_id': '1gpvtg2'}
{'comment': 'On the contrary, they are exactly what they always have been. Technology has just advanced enough for the masses to catch glimpses behind the curtain that cannot easily be covered up', 'created': '2024-11-13 17:41:02', 'submission_id': '1gpvtg2'}
{'comment': 'Gaining custody of any government hard drive I would imagine being very difficult.', 'created': '2024-11-13 15:13:35', 'submission_id': '1gpvtg2'}
{'comment': 'So, I don’t care who or where or what side of the political divide you sit on, but after a catastrophic storm you are not belligerent to people that are there to supposedly help you. I’ve survived a hurricane where our whole city/town and rural homes were decimated. People came together to help one another. We all emptied out our freezers and held neighborhood barbecue’s. We fed and cheered on the linemen when they arrived. We fired up chainsaws and once we’d cut out of our own neighborhood, went looking for other neighborhoods to help out. We cheered and cried when the national guard arrived. And we collapsed into the fema offices to file claims, get an SBA loan, or sometimes sign up to volunteer. We had all colors of skin working next to one another. It was a beautiful thing to be a part of. \n\nSo when I hear her say (or anyone say) that there were “militias” or rabid republicans roaming around and targeting ONLY FEMA personnel, I call BULLSHIT', 'created': '2024-11-13 15:31:59', 'submission_id': '1gpvtg2'}
{'comment': 'Without a doubt it would be difficult but not impossible', 'created': '2024-11-13 15:16:41', 'submission_id': '1gpvtg2'}
{'comment': 'Not exactly, I am studying Cyber Security and its possible and believe it or not easier than you think.', 'created': '2024-11-15 03:01:58', 'submission_id': '1gpvtg2'}
{'comment': 'When I first saw, it sounded like bs,and it turned out to be one guy. The overreaction is the bigger issue. How is it ever ok to deny someone disaster relief over politics ?', 'created': '2024-11-13 19:23:26', 'submission_id': '1gpvtg2'}
{'comment': 'I know lol im in school for computer science', 'created': '2024-11-15 03:02:43', 'submission_id': '1gpvtg2'}
{'comment': 'Would you have to gain security clearance first?', 'created': '2024-11-15 03:03:20', 'submission_id': '1gpvtg2'}
{'comment': 'Were you laughing at me? I hope not. I am a disabled Veteran with Social Anxiety Disorder and PTSD and I get very self conscious when people are laughing at me. I never knew anything about IT or cyber security before I started going to college for my cyber security degree. I am trying to better myself, I am thankful that the VA is paying for my college expenses.', 'created': '2024-11-15 03:07:20', 'submission_id': '1gpvtg2'}
{'comment': "Nope that's not necessary, there are plenty of people within the corrupt harris-biden administration and people outside of it that could easily do it.", 'created': '2024-11-15 03:05:00', 'submission_id': '1gpvtg2'}
{'comment': 'Im not laughing at you', 'created': '2024-11-15 03:09:19', 'submission_id': '1gpvtg2'}
{'comment': 'And my work is paying for my degree too', 'created': '2024-11-15 03:09:38', 'submission_id': '1gpvtg2'}
{'comment': 'Well file for it and publish everything that pertains to this. If the manager is lying or not, I think the people have the right to know.', 'created': '2024-11-15 03:06:48', 'submission_id': '1gpvtg2'}
{'comment': 'Thank you, I appreciate you responding.', 'created': '2024-11-15 03:10:11', 'submission_id': '1gpvtg2'}
{'comment': "Are you trying to imply that I don't deserve a benefit that I risked my life for? By the way I have paid for this degree that I am currently working to earn and then some!!!", 'created': '2024-11-16 18:05:31', 'submission_id': '1gpvtg2'}
{'comment': 'No? I was implying that i too am getting my degree paid for', 'created': '2024-11-16 18:17:37', 'submission_id': '1gpvtg2'}
{'comment': "Oh I apologize! I am sorry. That's great! So I have all of my general required classes done and my cyber security classes remain. I am taking a Python class next semester, good thing is I know the professor and he likes me thank God so I should be okay. Best of luck to you!", 'created': '2024-11-16 18:21:42', 'submission_id': '1gpvtg2'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 22:01:25', 'submission_id': '1gpvdm6'}
{'comment': 'This is all so painfully dumb \n\nAnd of course when *none* of this actually occurs, they\'ll take credit for "stopping it" with their "resistance"', 'created': '2024-11-12 23:41:17', 'submission_id': '1gpvdm6'}
{'comment': 'He was already president. Did any of this nonsense happen then? They are driving themselves to the darkest places for absolutely no reason', 'created': '2024-11-12 22:41:26', 'submission_id': '1gpvdm6'}
{'comment': 'Make a TikTok of an empty shelf of pregnancy tests and say the pharmacy told you they’re illegal now. Then sit back and watch comedy ensue.', 'created': '2024-11-12 23:00:43', 'submission_id': '1gpvdm6'}
{'comment': 'I can’t believe people just blindly believe a random TikTok 😂', 'created': '2024-11-12 22:45:00', 'submission_id': '1gpvdm6'}
{'comment': "It's very ironic how the left calls Trump supporters brainwashed and conspiracy theorists yet they spew and agree with baseless comments like this.", 'created': '2024-11-12 23:38:24', 'submission_id': '1gpvdm6'}
{'comment': 'I can’t believe these are the same people screaming at us saying we’re brainwashed. They seriously think Trumps going to turn America into the Taliban. That’s literally the dumbest thing I’ve ever heard', 'created': '2024-11-12 22:45:08', 'submission_id': '1gpvdm6'}
{'comment': 'A period tracking database for every woman in America???? Where do they come up with this? It’s totally insane. \n\nTrump is trying to cut government spending. Is he going to redirect money from streamlined agencies into The Menstrual Department? These people need psychiatric help but I fear there aren’t enough psychiatrist in the world.', 'created': '2024-11-12 23:47:10', 'submission_id': '1gpvdm6'}
{'comment': 'They can’t be this gullible?', 'created': '2024-11-12 23:44:31', 'submission_id': '1gpvdm6'}
{'comment': 'I heard Trump will make it illegal for women to leave the house. If you step outside you’ll be arrested and charged with felony Female Exiting Premise. \n\nLadies, your good times are over. If you need to know what you’re allowed to do, ask one of us males.', 'created': '2024-11-13 00:55:12', 'submission_id': '1gpvdm6'}
{'comment': 'It’s actually very fascinating that they believe all of this', 'created': '2024-11-12 23:10:52', 'submission_id': '1gpvdm6'}
{'comment': 'I thought we women wouldn’t have access to doctors once Trump was inaugurated?!', 'created': '2024-11-12 22:12:52', 'submission_id': '1gpvdm6'}
{'comment': 'This sort of stuff like “you will get arrested for being late on your period” makes no sense. Or not letting people buy pregnancy tests. These super controlling things are what they want to have happen just the other way around. Shut down churches, monitor anyone who isn’t agreeing, etc.', 'created': '2024-11-12 23:26:51', 'submission_id': '1gpvdm6'}
{'comment': 'My cousin told me Trumps is gonna put women in a "camp" within 4 years.', 'created': '2024-11-13 00:50:10', 'submission_id': '1gpvdm6'}
{'comment': 'They said they would not have sex anymore to prevent pregnancies, what happened? LMAO', 'created': '2024-11-13 00:26:39', 'submission_id': '1gpvdm6'}
{'comment': 'They’re like preppers but instead of food they hoard abortion drugs.', 'created': '2024-11-13 01:07:51', 'submission_id': '1gpvdm6'}
{'comment': "It's unfortunate that some of these people lead such unfulfilling lives that they have to role play like this to feel purpose.\n\nEdit: actually that might be my new theory on the liberal mindset entirely. Humans weren't meant to be bored, and so you have to incite change, agitate, poke, do whatever you can do to fulfill your need for attention and entertainment. Even if it means mutilating your body, or role playing a hostile living environment.", 'created': '2024-11-13 00:53:53', 'submission_id': '1gpvdm6'}
{'comment': 'This coming from a group that can’t define what a woman is!!!??? Lmao!!!', 'created': '2024-11-13 02:10:33', 'submission_id': '1gpvdm6'}
{'comment': 'And they call us conspiracy theorists 😂', 'created': '2024-11-13 02:14:28', 'submission_id': '1gpvdm6'}
{'comment': 'I swear are we going to have to listen to 4 years of this hysterical nonsense?', 'created': '2024-11-13 02:28:44', 'submission_id': '1gpvdm6'}
{'comment': "Conservative women just built different, i think. They're familiar with ovulation, times of the month they can get pregnant, magically know how to access contraceptives and can get emergency abortions to save their own lives, god forbid.", 'created': '2024-11-12 22:36:10', 'submission_id': '1gpvdm6'}
{'comment': 'The fuck is handmaids tale and why do they keep referencing it?', 'created': '2024-11-12 23:30:10', 'submission_id': '1gpvdm6'}
{'comment': "Don't forget to shave your heads to make a statement.", 'created': '2024-11-12 23:22:57', 'submission_id': '1gpvdm6'}
{'comment': 'The most educated on reproductive rights party doesn’t know the IUD lasts for 8 years. Just get that if they are so worried. Quit clearing the shelves for the people who actually need those items gd', 'created': '2024-11-13 00:22:52', 'submission_id': '1gpvdm6'}
{'comment': 'What in the good name of fuck is she talking about 😂 😂😂', 'created': '2024-11-12 23:10:26', 'submission_id': '1gpvdm6'}
{'comment': 'RemindMe! 4 years', 'created': '2024-11-12 23:44:44', 'submission_id': '1gpvdm6'}
{'comment': "That top reply is so cringe.. As if the government wants to keep pregnancy tests away from people and monitor everyone's pregnancy! hahahahha Crazy people. Tucker was right, there would be the biggest mental health crisis when Trump won.", 'created': '2024-11-12 23:09:45', 'submission_id': '1gpvdm6'}
{'comment': 'I really want to jump into some of these conversations and just stoke the fire. "Yeah, ive been hired to help create the database. Key words such as tampons, birth control, plan b, (random fertility drug name), hot pads" and "oh, its absolutely going to happen. I Am in the national guard, high ranking. Unofficially, Ive already been delivered addresses of legal aged women of child bearing capability. We will be getting orders next month to start mobilizing in key points so once orange man assumes the presidency (#notmy47), we will begin to round up these women. Be on the look out for blue arm bands, these are the good guys". Stoking it some more: "they have been recording purchases of electric razors for the last several months." And "X has the capability of publishing and maintaining an online catalog. The product: women. Dollar values will be determined by a bro committee, said comittee will determine if a chick is hot and bangable, bangable, or butterface, thus setting value. They even plan to offer discounts to proven incels!" \nJesus what idiots these liberals are... $5 says a liberal reads this and thinks this is real', 'created': '2024-11-13 00:21:52', 'submission_id': '1gpvdm6'}
{'comment': "It's literally all this rhetoric and the lying to peoples faces that made me change sides. I don't want to be part of a party that socially exiles and berates the opposite side just for exercising their American right to vote and, God forbid, have a political opinion.\n\nI know no party is perfect, but don't propagandize me and insult my intelligence.", 'created': '2024-11-12 22:20:13', 'submission_id': '1gpvdm6'}
{'comment': "Yeah Democrats let's have a conversation about how Republican men don't understand how periods and pregnancy work.. according to you men need tampons and can get pregnant we would love to have this conversation.", 'created': '2024-11-13 00:04:55', 'submission_id': '1gpvdm6'}
{'comment': "I'm genuinely extremely pissed that they would say that America is going to try and be like Afghanistan where women go to prison for marrying someone that their father didn't choose we're 5-year-old girls are sold off to men to be married we're fathers and brothers and uncles get away with beating the crap out of their daughters and nieces for wanting to marry the man they love I watched a video about a woman that got out of prison and told her dad she wanted a divorce from her arranged marriage and he told her he would only allow it if she killed her son these women are insane", 'created': '2024-11-13 00:08:20', 'submission_id': '1gpvdm6'}
{'comment': 'This is the most ridiculous drivel my eyes have ever encountered. And I’ve been on Reddit for 6 years.', 'created': '2024-11-13 00:12:43', 'submission_id': '1gpvdm6'}
{'comment': 'I’m legit laughing. This is insane lol TRUMP WAS ALREADY PRESIDENT', 'created': '2024-11-13 00:30:03', 'submission_id': '1gpvdm6'}
{'comment': 'Liberals have no idea what living under sharia law would actually look like.', 'created': '2024-11-13 01:19:25', 'submission_id': '1gpvdm6'}
{'comment': 'It’s actual brainwashing and it’s wild and sad to see', 'created': '2024-11-13 02:02:32', 'submission_id': '1gpvdm6'}
{'comment': 'Holy fuck these people might be the dumbest women I have ever seen. This reads like a weird LARP forum.', 'created': '2024-11-13 02:04:41', 'submission_id': '1gpvdm6'}
{'comment': 'Oh my god 🤦\u200d♀️', 'created': '2024-11-12 23:34:36', 'submission_id': '1gpvdm6'}
{'comment': 'Weak and feeble minds easily swayed by the propaganda they’ve been fed.', 'created': '2024-11-13 00:59:08', 'submission_id': '1gpvdm6'}
{'comment': 'Yeah I heard women will automatically turn into men on January 20th, 2025. Those who refuse will have their bodies revoked. /s', 'created': '2024-11-13 02:03:36', 'submission_id': '1gpvdm6'}
{'comment': 'I blame the main stream media', 'created': '2024-11-13 02:23:57', 'submission_id': '1gpvdm6'}
{'comment': 'Tik Tok is a damn Cesspool', 'created': '2024-11-13 02:27:09', 'submission_id': '1gpvdm6'}
{'comment': "I had to leave a TTC reddit community because the hags were swearing up and down that Trump was going to ban IVF and there was NO reasoning with them. The new patent groups are in hysterics about literally everything, and apologizing to their babies that they birthed them into this world, it's insane.", 'created': '2024-11-13 02:41:44', 'submission_id': '1gpvdm6'}
{'comment': 'Omg they are so stupid lol 😂', 'created': '2024-11-13 03:13:43', 'submission_id': '1gpvdm6'}
{'comment': 'Zero rights = abortion right', 'created': '2024-11-12 22:43:03', 'submission_id': '1gpvdm6'}
{'comment': 'As a woman the only thing I agree with is the comment that said tampons are slow poison', 'created': '2024-11-12 23:20:32', 'submission_id': '1gpvdm6'}
{'comment': 'Guys remember last time Trump was president and women were forced to wear burkas, had all their assets stolen, and got turned into breeding fuck holes for men? No? What am I thinking of?', 'created': '2024-11-12 23:55:13', 'submission_id': '1gpvdm6'}
{'comment': 'What did they do, I am reading a bit', 'created': '2024-11-12 22:18:36', 'submission_id': '1gpvdm6'}
{'comment': 'Afraid of their own fears…', 'created': '2024-11-12 22:36:19', 'submission_id': '1gpvdm6'}
{'comment': 'People always make the best decisions when experiencing fear', 'created': '2024-11-12 22:51:12', 'submission_id': '1gpvdm6'}
{'comment': 'None of this happened in his first 4 years, but there were no new wars, terrorists were wiped out, dictators were deescalated. How do these people believe nation-born citizens are being deported and pregnancy tests are taken away?', 'created': '2024-11-13 02:15:30', 'submission_id': '1gpvdm6'}
{'comment': 'And they say that we’re the conspiracy theorists… SMH', 'created': '2024-11-13 03:30:53', 'submission_id': '1gpvdm6'}
{'comment': "The Left derives it's power from fear mongering and manipulation. They spew this nonsense to whip up an emotional response from their base. When people are emotional they stop thinking logically and are easy to manipulate.", 'created': '2024-11-13 03:46:31', 'submission_id': '1gpvdm6'}
{'comment': 'My favorite so far are the clips of women of color crying and saying something along the lines of "I\'m going to wake up as a slave tomorrow" or "I\'m about to lose all of my rights", as if we\'ve just entered some sort of dystopian alternative reality that only they can see.', 'created': '2024-11-13 03:57:55', 'submission_id': '1gpvdm6'}
{'comment': 'You literally have to see a Dr to confirm pregnancy...as a father of 3 we had to "confirm" pregnancy each time.', 'created': '2024-11-13 03:58:05', 'submission_id': '1gpvdm6'}
{'comment': 'Did they forget that we already lived under Trump for 4 years and NONE of this insanity happened?', 'created': '2024-11-13 04:24:49', 'submission_id': '1gpvdm6'}
{'comment': 'What’s frightening to me is they think a civil war will break out since were such racist hateful people, but they are the ones viciously promoting hate toward us. If anything they are the ones who would start a civil war.. but jokes on them since we have all the guns.', 'created': '2024-11-13 05:21:48', 'submission_id': '1gpvdm6'}
{'comment': 'I heard trump will enslave black people again and all women’s right are going to be taken away, we will see how wrong these people are in another year. LOL. When they are sitting in the house eating a cake comfortably when in another country there are people enslaved and women who have no rights whatsoever. \n\nAmerica wants to say they have it bad but doesn’t. They want to create a problem that isn’t there. He was president for four years not sure why he didn’t enslave colored people then or take away “ women’s “ rights. Those people are crazy.\n\nAlso comparing the United States of America the most spoiled country in the world, a country where all people have more rights then anywhere else to Afghanistan is wild. Homeless people in America live better than most people in Afghanistan. They should go visit it real quick and see how bad it truly is, LOL.', 'created': '2024-11-13 07:09:21', 'submission_id': '1gpvdm6'}
{'comment': 'I swear these people will believe ANYTHING they read on the internet. 😭 I’m dying from second hand embarrassment. 😭', 'created': '2024-11-13 11:21:12', 'submission_id': '1gpvdm6'}
{'comment': 'Purchase all the pregnancy tests (said some neurotic neoliberal girl who literally no guy in his right mind wishes to ever have sex with). Typical narcissistic attention seeking behavior', 'created': '2024-11-13 11:40:25', 'submission_id': '1gpvdm6'}
{'comment': 'Jokes on them I guess because my periods are about as irregular as these peoples logic.', 'created': '2024-11-13 12:32:56', 'submission_id': '1gpvdm6'}
{'comment': 'I felt bad for these people for awhile but it literally takes a couple of minutes to find out none of these irrational fears are based in reality, I know if I were this convinced and terrified I’d have watched several videos of Trump and Vance speaking on these things. It’s just pure ignorance at this point.', 'created': '2024-11-13 12:52:59', 'submission_id': '1gpvdm6'}
{'comment': "I'm pretty sure this is an example of some type of narcissism. What's scary this might be a form of projection. I e. This is something they might feel to do if rolls were reversed. An example, the FEMA official who skipped houses purposely with Trump signs.", 'created': '2024-11-13 13:07:28', 'submission_id': '1gpvdm6'}
{'comment': 'Reddit is a government psyop. There’s just no other logical explanation, not even stupidity.', 'created': '2024-11-13 14:58:39', 'submission_id': '1gpvdm6'}
{'comment': 'It’s free to close your legs', 'created': '2024-11-12 23:13:48', 'submission_id': '1gpvdm6'}
{'comment': 'I love it when Liberals lose their minds. Let the salt flow. If they had half a brain, they would realize we have bigger fish to fry.', 'created': '2024-11-12 23:26:37', 'submission_id': '1gpvdm6'}
{'comment': 'I love how they think anything in this election was about them.', 'created': '2024-11-13 01:41:24', 'submission_id': '1gpvdm6'}
{'comment': "The left just projecting even harder now...\n\n​\n\nAll they're saying, we'd have if we lost.", 'created': '2024-11-13 01:55:09', 'submission_id': '1gpvdm6'}
{'comment': "Well guess the party's over shit....", 'created': '2024-11-13 02:06:17', 'submission_id': '1gpvdm6'}
{'comment': "They say we don't understand how periods work. \n\nThey're the ones who think that men can have periods. Putting tampons in boys bathrooms. \n\nThey don't understand. Always projecting.", 'created': '2024-11-13 02:57:43', 'submission_id': '1gpvdm6'}
{'comment': 'its all in the crazy eyes. a Must to avoid', 'created': '2024-11-13 03:03:52', 'submission_id': '1gpvdm6'}
{'comment': 'It’s sad and pathetic', 'created': '2024-11-13 03:11:48', 'submission_id': '1gpvdm6'}
{'comment': "This is exactly why they take things that are literally in hifi audio on hidef video...and say the exact opposite thing was actually said ...and repeat it daily for years and years to the point where the president of the United States says his entire presidency is based on this statement.. 😂.. cuz of people like this. It's maddening.", 'created': '2024-11-13 03:30:26', 'submission_id': '1gpvdm6'}
{'comment': 'Apparently purchases of Plan B are up over 1,000% in the last week. \n\nWhich, like.....kind of Eskimos buying up ice cubes. \n\n4b online, plan b in the sheets', 'created': '2024-11-13 05:05:24', 'submission_id': '1gpvdm6'}
{'comment': 'The wicked flee even though nobody chased them. Proverbs 28: 1', 'created': '2024-11-13 05:10:55', 'submission_id': '1gpvdm6'}
{'comment': 'I hope stores do like they did with the TP hoarding of 2020, not allowed returns/refunds on all the hoarding they\'re talking about. However, how much you wanna bet they don\'t actually do any of that? They won\'t "stock up" on anything. Nor will the lunatics move their accounts or credit cards. Also someone needs to remind that one chick that whatever crap she\'s attempting to pedal online isn\'t *really* having a "business" if it\'s a MLM. Every single time I see them claim to have a business which is quite often, I just know most are MLM business "owners".', 'created': '2024-11-13 06:11:49', 'submission_id': '1gpvdm6'}
{'comment': 'The sheer level of unhinged incompetence is STAGGERING', 'created': '2024-11-13 06:37:38', 'submission_id': '1gpvdm6'}
{'comment': 'Comparing the United States of America the most spoiled country in the world, a country where all people have more rights then anywhere else to Afghanistan is wild. Homeless people in America live better than most people in Afghanistan. They should go visit it real quick and see how bad it truly is, LOL.', 'created': '2024-11-13 07:01:35', 'submission_id': '1gpvdm6'}
{'comment': 'Because of all this fear mongering, both before and now after the election, suicide hotlines are going crazy. I’m waiting for a family to bring a civil suit due to it sometime in the future.', 'created': '2024-11-13 13:53:20', 'submission_id': '1gpvdm6'}
{'comment': 'It has to be so mentally and emotionally exhausting when you become the personification of ‘doom scrolling’ in real life. The Left and reality parted ways long ago.', 'created': '2024-11-13 15:47:51', 'submission_id': '1gpvdm6'}
{'comment': 'lol haha', 'created': '2024-11-13 01:27:00', 'submission_id': '1gpvdm6'}
{'comment': "We don't care about kids till after birth for tax purposes", 'created': '2024-11-13 03:03:40', 'submission_id': '1gpvdm6'}
{'comment': 'Yeah this post is hypocritical.', 'created': '2024-11-13 03:27:30', 'submission_id': '1gpvdm6'}
{'comment': 'These people should be put in a home', 'created': '2024-11-13 04:39:23', 'submission_id': '1gpvdm6'}
{'comment': 'LMAO —> people will literally believe anything. Crazy.', 'created': '2024-11-13 05:13:07', 'submission_id': '1gpvdm6'}
{'comment': 'Totally cooked tbh', 'created': '2024-11-13 05:37:23', 'submission_id': '1gpvdm6'}
{'comment': 'If we can just get them to start thinking about guns the same way they think about pregnancy tests', 'created': '2024-11-13 07:05:04', 'submission_id': '1gpvdm6'}
{'comment': 'And they call us the conspiracy theorists when they’ve got this straight up delusion with zero backing or logical reasoning as to how they came to these conclusions', 'created': '2024-11-13 07:40:35', 'submission_id': '1gpvdm6'}
{'comment': 'And they call us conspiracy theorists', 'created': '2024-11-13 07:57:52', 'submission_id': '1gpvdm6'}
{'comment': 'Fucking pathetic at this point.', 'created': '2024-11-13 09:38:35', 'submission_id': '1gpvdm6'}
{'comment': 'Democrats are stupid', 'created': '2024-11-13 11:11:41', 'submission_id': '1gpvdm6'}
{'comment': 'Well, at least they chose to not breed…', 'created': '2024-11-13 11:45:20', 'submission_id': '1gpvdm6'}
{'comment': "They're such little weirdos sometimes it's hard to take them seriously.", 'created': '2024-11-13 15:12:11', 'submission_id': '1gpvdm6'}
{'comment': 'lol they are so dumb and an embarrassment to the human race lol \nI say we put all democrats in one room and let natural selection take over just my opinion lol', 'created': '2024-11-13 15:33:20', 'submission_id': '1gpvdm6'}
{'comment': 'Personally I like subing to these subreddits and then going with the program but trying to create clever ways to make it sound worse on an alternate account. They explode with how logical the most insane ideas are', 'created': '2024-11-13 15:50:56', 'submission_id': '1gpvdm6'}
{'comment': "This is just asinine! Thing I'm concerned about is my girlfriend as she consumes a steady diet of this crap.", 'created': '2024-11-13 18:08:29', 'submission_id': '1gpvdm6'}
{'comment': 'It is, but even more sickening is that half the country are sheeple just buying into all of it, and four years from now when none of the horrors they feared have come to pass, they’ll not admit that it was fine and instead start all over again. With how a JD Vance presidency would imprison women in breeding camps', 'created': '2024-11-13 18:28:00', 'submission_id': '1gpvdm6'}
{'comment': 'I like to encourage their paranoia 😈', 'created': '2024-11-13 22:29:19', 'submission_id': '1gpvdm6'}
{'comment': 'This is ridiculous. I’m middle eastern myself & honestly I get so mad when I see them comparing America to countries in the middle east. Middle eastern women WISH to live here!!', 'created': '2024-11-13 23:41:17', 'submission_id': '1gpvdm6'}
{'comment': "It's best to just troll them And tell them project 2025 has always been the plan.", 'created': '2024-11-14 02:17:44', 'submission_id': '1gpvdm6'}
{'comment': 'Was anyone here the first time ?', 'created': '2024-11-14 04:22:12', 'submission_id': '1gpvdm6'}
{'comment': 'These people make my head hurt! And they call us sheep?! Wow! STUPID!', 'created': '2024-11-14 12:02:49', 'submission_id': '1gpvdm6'}
{'comment': 'So the same people pushing for a gun registry so they know who has all the guns is pushing this???', 'created': '2024-11-14 12:40:18', 'submission_id': '1gpvdm6'}
{'comment': 'Damnit. I thought they would never catch us tracking periods. How can we invade their privacy now if they know exactly what we’re doing.', 'created': '2024-11-14 14:52:27', 'submission_id': '1gpvdm6'}
{'comment': 'A lot of this is from handmaid tale they really need to chill', 'created': '2024-11-15 03:54:19', 'submission_id': '1gpvdm6'}
{'comment': 'Let them 😂😂 shits entering tbh', 'created': '2024-11-12 23:01:40', 'submission_id': '1gpvdm6'}
{'comment': 'Can someone tell me what the fuck women think will happen?', 'created': '2024-11-12 23:16:12', 'submission_id': '1gpvdm6'}
{'comment': 'They definitely will', 'created': '2024-11-16 00:36:01', 'submission_id': '1gpvdm6'}
{'comment': 'I’m confused about the hysterectomy? Why would this person need to change bank accounts?', 'created': '2024-11-12 23:28:53', 'submission_id': '1gpvdm6'}
{'comment': 'They are of two minds on this. First, much of their BS never happened because they resisted. Second, since this is his last term, the gloves are coming off and he can do what he always wanted to do with no consequences, especially since the Supreme Court literally just voted that he could genocide the whole of America without consequences. \n\nThat\'s their "logic", not mine. I think day one, Trump needs to address this mental health crisis. End the woke cult and get these people some help before they drink poison.', 'created': '2024-11-12 23:48:48', 'submission_id': '1gpvdm6'}
{'comment': "This is the fearmongering the democrats are known for. They are some of the most ignorant people I've ever met.", 'created': '2024-11-13 17:04:11', 'submission_id': '1gpvdm6'}
{'comment': 'Hey! You’re too logical and speaking truths. Be careful or you’ll be labeled something ridiculous like spewing misinformation or something. /s\n🤣', 'created': '2024-11-13 02:05:05', 'submission_id': '1gpvdm6'}
{'comment': 'He didn’t have the trifecta to push broad changes through quickly and quietly.', 'created': '2024-11-13 03:09:06', 'submission_id': '1gpvdm6'}
{'comment': 'It’s their version of “Deep State” politics.', 'created': '2024-11-14 18:20:35', 'submission_id': '1gpvdm6'}
{'comment': 'Calm down, Satan. But no, really great idea', 'created': '2024-11-12 23:35:32', 'submission_id': '1gpvdm6'}
{'comment': 'You’re an evil genius', 'created': '2024-11-13 00:42:45', 'submission_id': '1gpvdm6'}
{'comment': 'Omg you’re evil incarnate! That would be hilarious. I’m laughing so hard as I type this. That’s a great idea!', 'created': '2024-11-13 02:07:44', 'submission_id': '1gpvdm6'}
{'comment': "Don't give 4chan any ideas lol.", 'created': '2024-11-13 02:22:50', 'submission_id': '1gpvdm6'}
{'comment': 'What we need to do is create these TikTok’s and force their hands into buying things we need them to purchase. Could be anything, the amount of fear they have could be used to boost the economy as soon as trump gets into office. We can use their fear mongering to help us come back greater than ever. Atleast this way they will be finally contributing to helping America instead of hurting us.', 'created': '2024-11-13 04:50:02', 'submission_id': '1gpvdm6'}
{'comment': '😂😂😂', 'created': '2024-11-12 23:03:03', 'submission_id': '1gpvdm6'}
{'comment': 'I NEED someone to do this.', 'created': '2024-11-13 10:47:01', 'submission_id': '1gpvdm6'}
{'comment': 'Ya, it\'s scary. I made my kids delete theirs because I got exhausted explaining how everyone on their "4upage" was an idiot & they got tired of me giving them basic civics lessons. \n\nWe have an incredibly good school district but I\'m shocked at the stupid. Like. These tiktok idiots are the ones in h.s. who said civics was for nerds & ditched class.', 'created': '2024-11-13 05:09:52', 'submission_id': '1gpvdm6'}
{'comment': "I'm done. You win 🏆", 'created': '2024-11-13 02:22:09', 'submission_id': '1gpvdm6'}
{'comment': "And they'll believe it 🤣", 'created': '2024-11-13 02:16:31', 'submission_id': '1gpvdm6'}
{'comment': 'I thought it was just to scare people to vote Kamala but he won and they’re still at it…I think they genuinely believe he’s Hitler 2.0 😂', 'created': '2024-11-13 04:31:37', 'submission_id': '1gpvdm6'}
{'comment': "There is a very real mental health epidemic happening in the world. It's just sad that they believe this stuff...funny, but sad. It kind of makes me wonder how they manage to wake up and get out of bed each day and go to work and function like normal people if they actually believe the conspiracies they spread online.", 'created': '2024-11-13 05:51:32', 'submission_id': '1gpvdm6'}
{'comment': 'I heard women will be extinct under Trump....so no worries\n\nS/', 'created': '2024-11-12 22:16:25', 'submission_id': '1gpvdm6'}
{'comment': "No it's much worse! The government wants to implant uteruses that monitor the woman, and the baby so that they can send a shock to the woman if she has an abortion thought in her head. \n\nWhen you have the child the government will name it and assign it a number and tattoo it on their wrist.", 'created': '2024-11-12 23:12:21', 'submission_id': '1gpvdm6'}
{'comment': 'Haha...a KOA camp, to teach girl scouts how to bake cookies and set up a tent perhaps.', 'created': '2024-11-13 05:58:24', 'submission_id': '1gpvdm6'}
{'comment': 'Including the ones he’s appointing?', 'created': '2024-11-13 07:50:01', 'submission_id': '1gpvdm6'}
{'comment': 'They also said to divorce your conservative husbands or boyfriends that are Trump supporters and get with other women for intimacy… also to secretly poison your husband or boyfriend with some kind of deadly plant poison.. can’t remember the name of poison they were referring to. It blows my mind.', 'created': '2024-11-13 19:49:50', 'submission_id': '1gpvdm6'}
{'comment': 'It was a book about how rich women hired/enslaved hand Mades to have their babies', 'created': '2024-11-12 23:46:22', 'submission_id': '1gpvdm6'}
{'comment': "It's a crazy ass show i think onshowtime....it's what people are saying Trump is going to.make America. Women are slaves and have no rights", 'created': '2024-11-13 01:50:33', 'submission_id': '1gpvdm6'}
{'comment': 'It’s a really good show, I’d say in my top 10 of all time. It’s on Hulu. \n\nI recommend watching jt for that reason (seriously it’s won multiple Emmy awards). It will also help give you context to how insane these people are. \n\nThe book is great too but the show is better.', 'created': '2024-11-13 00:21:29', 'submission_id': '1gpvdm6'}
{'comment': 'from reading other threads they also think contraceptives will be banned as well.', 'created': '2024-11-13 01:38:23', 'submission_id': '1gpvdm6'}
{'comment': 'If you did, they would take your word for it. LOL. Those people don’t fact check anything.', 'created': '2024-11-13 07:06:22', 'submission_id': '1gpvdm6'}
{'comment': 'I had compassion for them as well knowing that brainwashing is a really thing. My patience is wearing thin though …', 'created': '2024-11-13 20:00:35', 'submission_id': '1gpvdm6'}
{'comment': 'It truly must be. Makes sense.', 'created': '2024-11-13 20:01:19', 'submission_id': '1gpvdm6'}
{'comment': 'These one issue voters.... I used to be one of those.', 'created': '2024-11-13 01:39:02', 'submission_id': '1gpvdm6'}
{'comment': 'The tampons apparently are for trans men that have not had gender reassignment surgery yet.', 'created': '2024-11-13 19:55:14', 'submission_id': '1gpvdm6'}
{'comment': 'Oh I know why… three words, all start with I…. Ignorant incompetent idiots.', 'created': '2024-11-13 02:05:49', 'submission_id': '1gpvdm6'}
{'comment': 'I imagine some made up plot where women who cannot conceive are no longer useful or some crock.', 'created': '2024-11-13 03:12:48', 'submission_id': '1gpvdm6'}
{'comment': 'Lmao 🤣', 'created': '2024-11-14 04:22:41', 'submission_id': '1gpvdm6'}
{'comment': 'I’m genuinely worried about some of these people. It’s quite sad', 'created': '2024-11-12 23:53:47', 'submission_id': '1gpvdm6'}
{'comment': 'Or continue to kills their families. Did you read about that guy in Minnesota? So sad.', 'created': '2024-11-13 02:06:53', 'submission_id': '1gpvdm6'}
{'comment': 'Allocate a pile of money for mental health…hopefully the democrats and their cultists will line up to get it….though they will probably say there’s some hidden agenda.', 'created': '2024-11-13 02:29:07', 'submission_id': '1gpvdm6'}
{'comment': 'I agree lol. Let them be in fear to then realise how dumb that was. Problem is they never change', 'created': '2024-11-13 08:01:15', 'submission_id': '1gpvdm6'}
{'comment': 'That’s the scary part lol', 'created': '2024-11-13 02:44:51', 'submission_id': '1gpvdm6'}
{'comment': 'No friend, they think he is worst then a genocidal conqueror. Not sure why or if they even know history but they truly believe that trump is worst then Hitler. Which I find insanely disrespectful to holocaust survivors and to the people affected by it. The democrats aren’t the brightest bulbs, I tell you that.', 'created': '2024-11-13 07:04:09', 'submission_id': '1gpvdm6'}
{'comment': 'The irony is that women were becoming extinct under the Dems by not being able to define what a woman is, and creating other terms for natural female biological processes like breast feeding/chest feeding, cervix/front hole etc. it\'s mind blowing how many women signed on to have themselves erased in the name of "inclusivity".', 'created': '2024-11-12 22:46:17', 'submission_id': '1gpvdm6'}
{'comment': 'Pregnancy tests won’t be available. We will have to get a man to accompany us to a government-run facility, where we will get a tattoo, a computer chip implant and an iris scan before peeing on a stick. In front of a man.', 'created': '2024-11-13 00:27:43', 'submission_id': '1gpvdm6'}
{'comment': 'Oh', 'created': '2024-11-12 22:18:47', 'submission_id': '1gpvdm6'}
{'comment': 'And then they deport them all as they revoke citizenship.', 'created': '2024-11-13 00:47:21', 'submission_id': '1gpvdm6'}
{'comment': 'Thank God all of these women are taking vows of celibacy!', 'created': '2024-11-12 23:16:48', 'submission_id': '1gpvdm6'}
{'comment': 'There are people that exist that won’t think you’re joking. It’s hard to watch', 'created': '2024-11-12 23:58:31', 'submission_id': '1gpvdm6'}
{'comment': 'And there will be a little flashing heart in his chest that lights up and he will be your best friend and he will really like Reese’s Pieces', 'created': '2024-11-13 04:29:56', 'submission_id': '1gpvdm6'}
{'comment': "I'm still waiting for them to leave the US since 2016.", 'created': '2024-11-13 20:36:21', 'submission_id': '1gpvdm6'}
{'comment': "So it's some weird surrogate fuck festival fetish they're confused is reality? That's a special kinda funny as fuck, ngl.", 'created': '2024-11-13 00:04:40', 'submission_id': '1gpvdm6'}
{'comment': 'I could only get through one episode lol it scared me too much 😂', 'created': '2024-11-13 00:31:42', 'submission_id': '1gpvdm6'}
{'comment': 'And it’s science fiction, not a documentary', 'created': '2024-11-13 04:31:18', 'submission_id': '1gpvdm6'}
{'comment': "Not really up my ai, but I'll take your word for it. I don't watch a lot of series anyway.", 'created': '2024-11-13 07:36:55', 'submission_id': '1gpvdm6'}
{'comment': 'It was a great show....scary', 'created': '2024-11-13 01:51:02', 'submission_id': '1gpvdm6'}
{'comment': 'Yeah I’m out of patience as well, anyone who doesn’t thoroughly investigate the people they hate so much and just go with the mainstream narrative are a lost cause.', 'created': '2024-11-18 06:39:53', 'submission_id': '1gpvdm6'}
{'comment': 'Wouldn’t we be used in other ways?', 'created': '2024-11-13 07:47:25', 'submission_id': '1gpvdm6'}
{'comment': 'Oh, how very strange. Like a guy fantasy about saving people with his gun or something even weirder.', 'created': '2024-11-13 03:57:01', 'submission_id': '1gpvdm6'}
{'comment': '????', 'created': '2024-11-13 02:19:05', 'submission_id': '1gpvdm6'}
{'comment': 'They also claim January 6 was a true insurrection and was the WORST tragedy to ever have happened . I’m floored. Extremely disrespectful to Holocaust survivors and 911.', 'created': '2024-11-13 19:37:38', 'submission_id': '1gpvdm6'}
{'comment': 'The term "front hole" sounds like something a kid would say lol', 'created': '2024-11-13 00:21:19', 'submission_id': '1gpvdm6'}
{'comment': 'Front hole? Hole in the front of the brain maybe. Of all the holes females are working with the cervix isn’t even the one in the front. Maybe my anatomy is different.', 'created': '2024-11-13 00:52:25', 'submission_id': '1gpvdm6'}
{'comment': '💯💯💯', 'created': '2024-11-13 02:21:10', 'submission_id': '1gpvdm6'}
{'comment': "Don't forget they will be tracking your menstrual cycle.", 'created': '2024-11-13 00:29:02', 'submission_id': '1gpvdm6'}
{'comment': 'You will also be forced to subscribe to Microsoft Office 365, and your children will be sold into slavery.', 'created': '2024-11-13 04:01:48', 'submission_id': '1gpvdm6'}
{'comment': 'Thank God all women are dumb and needy men to think for them. S/', 'created': '2024-11-13 14:45:10', 'submission_id': '1gpvdm6'}
{'comment': '>Thank God all of these ~~women~~ whales are taking vows of celibacy!', 'created': '2024-11-12 23:34:48', 'submission_id': '1gpvdm6'}
{'comment': 'It was a book ( later made into a TV series which is on Hulu now ) about a group of over zealous religious citizens taking over America, usurpring the government and turning it into their own factions of land. The government officials in this world are men, and women can\'t get pregnant anymore in this dystopian fantasy. So the women known to have given birth before, are taken as a type of slave called a "handmaid" and trained in an internment camp to basically be submissive, only speak when spoken to, to let the powerful men in charge have sex with them while their wives watch, to impregnate them so the wives can take the baby and adopt it for themselves. It\'s basically a glorified rape fantasy written by a uber feminist canadian author. Of course, in her deranged sci-fi fantasy, canada is the place of freedom where the handmaids can escape to safety. The irony is, in real life, canada is nowhere near as free as America is.', 'created': '2024-11-13 06:05:14', 'submission_id': '1gpvdm6'}
{'comment': '[let me google that for you….](https://www.thestar.com/news/world/united-states/minnesota-man-kills-his-two-sons-his-wife-and-his-ex-partner-before-killing-himself/article_d39a7fc2-9bfe-5711-85a4-9da6972202c3.html)', 'created': '2024-11-13 02:23:30', 'submission_id': '1gpvdm6'}
{'comment': 'There was a man in Minnesota who had DTS so bad that he killed his family.', 'created': '2024-11-13 03:10:19', 'submission_id': '1gpvdm6'}
{'comment': 'Generation is spoiled and doesn’t know what bad is. The funniest comparison was them calling America, Afghanistan 2.0., LOL. Those people say the craziest things it’s honestly hilarious. I told them if you think America is bad or even close to being Afghanistan go over there for a week and see how you are treated. HAHA.', 'created': '2024-11-13 20:06:48', 'submission_id': '1gpvdm6'}
{'comment': 'Trump will be personally tracking every menstrual cycle in the whole country. He keeps it on a spreadsheet. He has a nice list and a naughty list like Santa.', 'created': '2024-11-13 01:22:22', 'submission_id': '1gpvdm6'}
{'comment': 'I can’t even keep track of my own menstrual cycle, these people honestly think the government is going to? Maybe they need to cut back on the medical marijuana, too much paranoia.', 'created': '2024-11-13 02:10:15', 'submission_id': '1gpvdm6'}
{'comment': 'That way after women aren’t married by 23 they will been sent to marry men looking for partners. It will be forced marriage if the men accepts her. /s', 'created': '2024-11-13 02:53:14', 'submission_id': '1gpvdm6'}
{'comment': 'Clippy will be on every computer and you will be unable to disable it.', 'created': '2024-11-13 07:10:17', 'submission_id': '1gpvdm6'}
{'comment': 'Sold to Elon Musk.....to run X.', 'created': '2024-11-13 12:49:25', 'submission_id': '1gpvdm6'}
{'comment': 'What. And I cannot stress this enough… the absolute fuck.', 'created': '2024-11-13 06:40:07', 'submission_id': '1gpvdm6'}
{'comment': 'And they... Choose to dress like these people? Fuck...', 'created': '2024-11-13 07:38:36', 'submission_id': '1gpvdm6'}
{'comment': 'It’s just TDS to dangerous levels. It’s so sad. To read about this and to think what his kids were going through.', 'created': '2024-11-13 02:24:36', 'submission_id': '1gpvdm6'}
{'comment': '👆 that’s the one.', 'created': '2024-11-13 18:02:33', 'submission_id': '1gpvdm6'}
{'comment': 'Exactly!!', 'created': '2024-11-13 20:07:42', 'submission_id': '1gpvdm6'}
{'comment': 'Exactly! In an effort to sync all women up. This way men can plan their lives around those 3-7 days, average of 5, to not be inconvenienced.\n\nI am pretty sure it is a part of Project 25.', 'created': '2024-11-13 12:46:55', 'submission_id': '1gpvdm6'}
{'comment': 'Good news then. You won’t need to track it, because a team of government men will tell you when your period is coming and give you three hots and a cot if you’re late.', 'created': '2024-11-13 07:13:33', 'submission_id': '1gpvdm6'}
{'comment': 'I also heard you will be forced to have 2.5 kids.', 'created': '2024-11-13 12:48:49', 'submission_id': '1gpvdm6'}
{'comment': 'To run, yes. On giant hamster wheels, to generate computing power for X and SpaceX. They will also be renamed “X”', 'created': '2024-11-13 16:46:11', 'submission_id': '1gpvdm6'}
{'comment': 'Oh the horror.', 'created': '2024-11-13 13:40:37', 'submission_id': '1gpvdm6'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 21:09:45', 'submission_id': '1gpu4is'}
{'comment': 'Even in Cali, even though it’s still majorly democrat, the number of conservative voters has increased by a lot. If these trends continue Cali could be 50% red within the next 12 years, instead of… 35%~', 'created': '2024-11-12 21:17:50', 'submission_id': '1gpu4is'}
{'comment': "I'm glad we have Elon Musk and his magical StarLink satellites on our side this election.\xa0", 'created': '2024-11-12 21:24:16', 'submission_id': '1gpu4is'}
{'comment': 'Congrats to the states with no voter ID. They are the blue ones on this map.', 'created': '2024-11-13 16:07:37', 'submission_id': '1gpu4is'}
{'comment': '🙌🏻', 'created': '2024-11-13 15:13:27', 'submission_id': '1gpu4is'}
{'comment': 'Which site are you using? Want to share with my mom', 'created': '2024-11-12 21:38:16', 'submission_id': '1gpu4is'}
{'comment': 'Strictly speaking, in sports terms, this is a treble. A 3-peat is winning the same election 3 times in a row. Like Reagan-Reagan-Bush or FDR winning 4 terms', 'created': '2024-11-12 21:53:56', 'submission_id': '1gpu4is'}
{'comment': 'For everyone asking the site is\n\n270towin.com', 'created': '2024-11-12 22:10:07', 'submission_id': '1gpu4is'}
{'comment': 'Holy shit New Mexico🌊🌊🌊', 'created': '2024-11-13 01:20:17', 'submission_id': '1gpu4is'}
{'comment': 'It’s time to put up or shut up, we literally have no excuses to not make change now.', 'created': '2024-11-12 21:53:23', 'submission_id': '1gpu4is'}
{'comment': 'I feel so patriotic...the woke movement had me very concerned about our country. It is obvious by these results that the internet favors the woke left..America spoke we are tired of looking stupid and weak. Joe Biden had us all looking like a bunch of 🤡🤡🤡🤡🤡.', 'created': '2024-11-13 00:02:50', 'submission_id': '1gpu4is'}
{'comment': 'Hopefully no flips in special elections or that we don’t get duds in replacement roles for Noem, Rubio, JD, Stefanik, etc.', 'created': '2024-11-12 22:15:56', 'submission_id': '1gpu4is'}
{'comment': '“Right on Right on Right on”. Rush Limbaugh', 'created': '2024-11-13 02:09:25', 'submission_id': '1gpu4is'}
{'comment': 'Where is everyone getting this?', 'created': '2024-11-12 21:18:48', 'submission_id': '1gpu4is'}
{'comment': "We are about to enter the most prosperous four years of our nation's history!!!!", 'created': '2024-11-12 21:49:05', 'submission_id': '1gpu4is'}
{'comment': 'Boy….., those blue thingys must have a great way of life. I’m almost jealous', 'created': '2024-11-12 23:21:20', 'submission_id': '1gpu4is'}
{'comment': 'GG ez', 'created': '2024-11-13 17:05:17', 'submission_id': '1gpu4is'}
{'comment': 'I prefer the term "Triple Crown"', 'created': '2024-11-13 20:01:30', 'submission_id': '1gpu4is'}
{'comment': 'Google says 218 now.', 'created': '2024-11-14 06:24:14', 'submission_id': '1gpu4is'}
{'comment': "What's up with Hawaii? Don't they realize who burnt Maui to the ground? Who stole their kids?", 'created': '2024-11-14 11:10:20', 'submission_id': '1gpu4is'}
{'comment': "Unfortunately many Trump voters didn't vote in other elections and the majorities are slim. They will do everything they can to stop Trump. Especially his immigration policies.\xa0", 'created': '2024-11-12 22:40:16', 'submission_id': '1gpu4is'}
{'comment': "Yeah I'm in NY and I was shocked to see how red it went only the 5 majority cities went blue the rest of the state went red but the big cities took it.", 'created': '2024-11-12 23:25:08', 'submission_id': '1gpu4is'}
{'comment': 'NYC is a pity. They have to clean up their mess', 'created': '2024-11-13 00:20:56', 'submission_id': '1gpu4is'}
{'comment': 'Annoying. Fox website still showing 214. Step up ur game Fox News!', 'created': '2024-11-13 01:17:32', 'submission_id': '1gpu4is'}
{'comment': 'Honest question, are other Republicans nervous of how much power we have now? I am moderate Republican, and tend to like a little checks and balances from somewhere.', 'created': '2024-11-13 03:35:47', 'submission_id': '1gpu4is'}
{'comment': "NYC aswell, I'm hoping we see Republicans clean up our trashcan of a city and flip by next election. Very happy with this result.", 'created': '2024-11-12 21:26:42', 'submission_id': '1gpu4is'}
{'comment': 'I was sad when the Gavin Newsom recall failed at over 50,000 more votes for him to stay. 50k is nothing but I still thought that he would get the boot.', 'created': '2024-11-12 23:05:55', 'submission_id': '1gpu4is'}
{'comment': 'Yea this is what Democrats were saying about Ohio, Texas and North Carolina in 2020. \n\nIt ebbs and flows so don’t get too excited.\n\nHarris was just a particularly bad candidate and the Dems did a poor job running the country these past few years.', 'created': '2024-11-13 17:08:14', 'submission_id': '1gpu4is'}
{'comment': 'I tried to tell yall CA was gonna be pink. Theres a lottttt of Trump supporters here. The working class.', 'created': '2024-11-12 23:00:41', 'submission_id': '1gpu4is'}
{'comment': 'I think this is 270towin.com', 'created': '2024-11-12 23:42:20', 'submission_id': '1gpu4is'}
{'comment': "If we keep up our momentum and all working people see that we shouldn't allow a bunch of spoiled college students who are living a very comfortable life lead our elections, we'll soon do a 3-peat.\n\nTime to prioritize the people who make America great rather than the ones who want to give away everything we've build to those who want it for free!", 'created': '2024-11-13 03:03:12', 'submission_id': '1gpu4is'}
{'comment': 'That’s what I keep wondering. Every time I see a post saying we got the house, I check and it still says 214', 'created': '2024-11-12 21:35:21', 'submission_id': '1gpu4is'}
{'comment': 'OK third post that says the house is one, but I can’t find it anywhere official. And it’s not on Fox either', 'created': '2024-11-12 22:50:40', 'submission_id': '1gpu4is'}
{'comment': 'Election desk hq it faster then google', 'created': '2024-11-12 21:54:45', 'submission_id': '1gpu4is'}
{'comment': "I'm not sure the 3-peat is referring to getting the House also.\n\nI think it's a sarcastic barb that Trump actually won 2020 also.", 'created': '2024-11-13 01:18:48', 'submission_id': '1gpu4is'}
{'comment': "I'm not too worried, states have more than enough power to do checks and balances imo and we don't have a complete landslide in the house so things should be get better overall. We will still need to work with dems and I'm hoping for good collaborative work from representatives which are sound minded.\n\nNot expecting anything from lunatics like AOC and the hard left crowd. People like her thrive off neighborhoods staying in lower tax brackets because their policies don't apply to individuals who aren't on government assistance. Vicious cycle they use to prey upon systematically stuck people and bring in more undocumented immigrants to do the same.\n\nMy theory is now that we finally have majority, the moderate dems will finally be able to detach from the hard leftists and not be alienated from the echochamber. Power to them, we all need to work together.", 'created': '2024-11-13 04:28:49', 'submission_id': '1gpu4is'}
{'comment': 'Yeah, both our states have a LOT of work to do', 'created': '2024-11-12 21:30:38', 'submission_id': '1gpu4is'}
{'comment': 'We need another Giuliani', 'created': '2024-11-12 22:12:28', 'submission_id': '1gpu4is'}
{'comment': 'Probably withholding the results to keep the snowflakes from totally melting, they need some hope to cling to\xa0', 'created': '2024-11-12 21:51:42', 'submission_id': '1gpu4is'}
{'comment': '215 cnn is reporting', 'created': '2024-11-12 22:19:14', 'submission_id': '1gpu4is'}
{'comment': "The election desk has it. I'm hoping it's true.", 'created': '2024-11-12 22:53:08', 'submission_id': '1gpu4is'}
{'comment': 'Decision desk\n\n\n\nbut yeah they called it first', 'created': '2024-11-14 06:11:10', 'submission_id': '1gpu4is'}
{'comment': "He was better easily than Bill and Adams. Gave me actual snow days when I was a kid lmao, now I know only reason Bill never did is because the Education Board paid his ass off so they can keep spending budgets up by saying kids need to eat.\n\nEvery state institution in NYC is corruption at it's finest.", 'created': '2024-11-13 02:59:36', 'submission_id': '1gpu4is'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 20:36:54', 'submission_id': '1gptblc'}
{'comment': 'I call this the MAGA Hat Trick. We had three goals and we scored all three.', 'created': '2024-11-12 20:56:13', 'submission_id': '1gptblc'}
{'comment': 'Pennsylvania senate race has been called for Dave McCormick (R)', 'created': '2024-11-12 20:52:20', 'submission_id': '1gptblc'}
{'comment': 'Quadfecta if you count the popular vote', 'created': '2024-11-12 20:48:37', 'submission_id': '1gptblc'}
{'comment': 'Now there is no room for excuses', 'created': '2024-11-12 21:10:25', 'submission_id': '1gptblc'}
{'comment': "Being GOP to the core...this makes me happy. I just hope they use the opportunity wisely and don't squander it.", 'created': '2024-11-12 21:05:41', 'submission_id': '1gptblc'}
{'comment': ' Where is the source for the House? AP and Fox News are still showing it 214-205 as of 2:35 CST', 'created': '2024-11-12 21:33:23', 'submission_id': '1gptblc'}
{'comment': 'I’m so happy. Let’s clean this mess up.', 'created': '2024-11-12 20:59:11', 'submission_id': '1gptblc'}
{'comment': 'On point politics called this on Oct 10th same EXACT numbers too! Crazy', 'created': '2024-11-12 20:58:34', 'submission_id': '1gptblc'}
{'comment': 'And the Supreme Court!', 'created': '2024-11-12 21:18:24', 'submission_id': '1gptblc'}
{'comment': 'People finally realized that democrat policies are garbage. DEI incompetent hires, crime rates skyrocketing. Open border illegals coming to their cities and them being forced to pay more in taxes to accommodate the illegals. Cost of living increasing while people struggle to get by. 2 wars that the government sends tax payer money to. Only people who are outraged are white liberal women and soyboy beta males', 'created': '2024-11-12 23:01:56', 'submission_id': '1gptblc'}
{'comment': 'Where are you seeing these numbers?', 'created': '2024-11-12 21:39:27', 'submission_id': '1gptblc'}
{'comment': 'God Bless America!', 'created': '2024-11-12 21:59:16', 'submission_id': '1gptblc'}
{'comment': 'Absolutely amazing', 'created': '2024-11-12 22:05:57', 'submission_id': '1gptblc'}
{'comment': "I was worried about Az early in the night,I'm proud we pulled through. Sadly not the case for my home state though.", 'created': '2024-11-12 22:09:03', 'submission_id': '1gptblc'}
{'comment': 'Now it’s time to load up the Supreme Court to make the left happy. 😂', 'created': '2024-11-12 23:16:23', 'submission_id': '1gptblc'}
{'comment': 'It’s not been called yet by any msm outlets', 'created': '2024-11-12 20:39:37', 'submission_id': '1gptblc'}
{'comment': 'Ugh it’s always sad as a Minnesotan that the Twin Cities always dictates what way our state goes….', 'created': '2024-11-12 21:56:33', 'submission_id': '1gptblc'}
{'comment': "Still need the house. Guess I'm greedy.", 'created': '2024-11-12 21:04:10', 'submission_id': '1gptblc'}
{'comment': 'Better do something with it this time. 💪', 'created': '2024-11-12 21:22:45', 'submission_id': '1gptblc'}
{'comment': 'And as a Minnesotan, I get to continue the experience that is known as Tim Walz.', 'created': '2024-11-12 23:16:26', 'submission_id': '1gptblc'}
{'comment': 'Wth is with CO and NM? Messing up that glorious red west (not west coast, they’re lost )', 'created': '2024-11-12 21:33:28', 'submission_id': '1gptblc'}
{'comment': 'Trump got the infinity swing states and the democrats snapped.', 'created': '2024-11-13 00:40:48', 'submission_id': '1gptblc'}
{'comment': 'this is the way!', 'created': '2024-11-13 03:02:56', 'submission_id': '1gptblc'}
{'comment': 'Well Trump better fucking drain the swamp and secure the border with all three', 'created': '2024-11-13 03:18:00', 'submission_id': '1gptblc'}
{'comment': 'Trump is the most important political figure since Reagan. He has completely transformed the game.', 'created': '2024-11-13 08:07:54', 'submission_id': '1gptblc'}
{'comment': 'The amount of meltdown that I see in liberal subs. I am living a dream life on reddit!', 'created': '2024-11-13 14:21:59', 'submission_id': '1gptblc'}
{'comment': 'Great, but keep holding them accountable. We need Rick Scott in the leader position, and people like Rubio out of the admin!', 'created': '2024-11-12 21:39:11', 'submission_id': '1gptblc'}
{'comment': 'To bad we’ll still have Mitch McConnell holding everything up', 'created': '2024-11-12 21:21:30', 'submission_id': '1gptblc'}
{'comment': 'Who called the House for the GOP?', 'created': '2024-11-12 22:30:42', 'submission_id': '1gptblc'}
{'comment': "Please, somebody nuke northern NM, I swear we don't want them!!!", 'created': '2024-11-13 00:32:12', 'submission_id': '1gptblc'}
{'comment': 'Blessed', 'created': '2024-11-13 00:52:11', 'submission_id': '1gptblc'}
{'comment': 'We got two years to pass Republican bills', 'created': '2024-11-13 01:02:17', 'submission_id': '1gptblc'}
{'comment': 'Really out here winning the treble', 'created': '2024-11-13 01:16:12', 'submission_id': '1gptblc'}
{'comment': 'Where are you finding the results? Everything I am looking at has only called D205/R214 in the house. I have been checking it every couple of hours. lol', 'created': '2024-11-13 01:43:21', 'submission_id': '1gptblc'}
{'comment': 'What’s wrong with So-Cal in the 2nd map?? Did it flood?', 'created': '2024-11-13 05:09:43', 'submission_id': '1gptblc'}
{'comment': 'Yes, to the red wave', 'created': '2024-11-13 06:19:48', 'submission_id': '1gptblc'}
{'comment': "Wow, every swing state. I didn't see that coming, even as someone who expected Trump to win.", 'created': '2024-11-13 07:12:33', 'submission_id': '1gptblc'}
{'comment': "We got it and hopefully, this time, something will get accomplished instead of Republicans bumbling and fumbling around for two years. You know the winning party in the house always loses it come mid-terms. Time is short. Let's not mess this up. Another opportunity like this may take another 20+ years to come our way again.", 'created': '2024-11-13 07:39:06', 'submission_id': '1gptblc'}
{'comment': '“WHAMMY!” - Champ Kind', 'created': '2024-11-13 07:43:28', 'submission_id': '1gptblc'}
{'comment': 'I’m in a blue state but my county was red. It was the college towns that were all blue.', 'created': '2024-11-13 08:51:04', 'submission_id': '1gptblc'}
{'comment': "What's going on in Pennsylvania? Hasn't the Senate race been called yet??", 'created': '2024-11-13 12:09:03', 'submission_id': '1gptblc'}
{'comment': 'Its wild Arizona district along the border goes blue as well as New Mexico.', 'created': '2024-11-13 12:25:31', 'submission_id': '1gptblc'}
{'comment': 'Best presidential election ever.', 'created': '2024-11-13 14:33:38', 'submission_id': '1gptblc'}
{'comment': "All the blue states didn't require voter ID.... LOL", 'created': '2024-11-13 15:16:12', 'submission_id': '1gptblc'}
{'comment': 'America is awake now 🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸', 'created': '2024-11-13 20:42:01', 'submission_id': '1gptblc'}
{'comment': 'The people get the government they deserve. Thomas Jefferson.', 'created': '2024-11-13 23:54:25', 'submission_id': '1gptblc'}
{'comment': 'The people want what the people want.', 'created': '2024-11-14 03:40:14', 'submission_id': '1gptblc'}
{'comment': 'And the liberals still won’t admit this administration was a nightmare and their candidate was a fucking joke', 'created': '2024-11-14 04:50:49', 'submission_id': '1gptblc'}
{'comment': 'So funny that the majority of Reddit seethes over this.\n\nIt was an absolute own.', 'created': '2024-11-15 08:31:40', 'submission_id': '1gptblc'}
{'comment': "Now let's hope the damn Republicans will work together and pass some bills that will make America great again. The one thing I hate about our party is there is too much fighting and squabbling amongst republican leaders.", 'created': '2024-11-16 10:26:55', 'submission_id': '1gptblc'}
{'comment': 'Trump Effect. Big Tent 🎉Party.', 'created': '2024-11-16 17:17:36', 'submission_id': '1gptblc'}
{'comment': 'Not a big enough majority if you ask me', 'created': '2024-11-12 21:31:34', 'submission_id': '1gptblc'}
{'comment': 'Oooof this is gonna be a messy few years.', 'created': '2024-11-12 21:45:19', 'submission_id': '1gptblc'}
{'comment': "Don't forget the Supreme court now.", 'created': '2024-11-12 22:36:16', 'submission_id': '1gptblc'}
{'comment': 'Reminds me of 1972… damn.. damn!', 'created': '2024-11-12 21:45:34', 'submission_id': '1gptblc'}
{'comment': 'The quad with SC', 'created': '2024-11-13 00:18:35', 'submission_id': '1gptblc'}
{'comment': 'I don’t see that anywhere official either. I’m really keeping my fingers crossed for that one Casey’s not going down without a huge fight.', 'created': '2024-11-12 21:31:01', 'submission_id': '1gptblc'}
{'comment': 'Quintfecta if you count SCOTUS.', 'created': '2024-11-12 21:08:20', 'submission_id': '1gptblc'}
{'comment': "Amen. Trump kicked Kameltoes A$S. Worse than he did Hillary's LMAO", 'created': '2024-11-13 06:02:26', 'submission_id': '1gptblc'}
{'comment': 'It was genius going to NY and CA to rally more support there. He knew what he was doing.', 'created': '2024-11-13 21:47:17', 'submission_id': '1gptblc'}
{'comment': 'Exactly. If the Trump admin gets very little done, there will be no where else to put the blame. But I have high hopes, for the first time in a long time. I hope they are not misplaced.', 'created': '2024-11-12 21:24:14', 'submission_id': '1gptblc'}
{'comment': "You hit the nail on the head. In my opinion there's way more pressure now than ever before. Now there are zero excuses - if played fairly by the left that is.", 'created': '2024-11-12 22:22:28', 'submission_id': '1gptblc'}
{'comment': "It's happened before. Let's hope with Trump in charge things get done.", 'created': '2024-11-13 00:14:05', 'submission_id': '1gptblc'}
{'comment': 'I’m not worried about it. He’s not even in the white house yet and already has got the ball rolling on a lot of stuff. I think he’s very excited to get us back on track!', 'created': '2024-11-13 00:39:32', 'submission_id': '1gptblc'}
{'comment': "Like they did the last time around. They let tech get away with censorship.\n\nThey'd better put a stop to that shit.", 'created': '2024-11-13 05:06:15', 'submission_id': '1gptblc'}
{'comment': 'Amen. Hope not', 'created': '2024-11-13 06:03:39', 'submission_id': '1gptblc'}
{'comment': 'I don’t see any source for that either. This is the second post that said it was decided and I can’t find anything official', 'created': '2024-11-12 22:47:32', 'submission_id': '1gptblc'}
{'comment': 'DecisionDesk HQ', 'created': '2024-11-12 22:23:57', 'submission_id': '1gptblc'}
{'comment': 'I’ve been waiting for AP News to report their calls because they seem to be hesitant to call the house. Decision Desk was created in 2012, AP has been calling races for hundreds of years…', 'created': '2024-11-12 23:32:15', 'submission_id': '1gptblc'}
{'comment': '🧹🧼🫧🧺🧽', 'created': '2024-11-12 22:42:39', 'submission_id': '1gptblc'}
{'comment': 'House should be DecisionDesk HQ', 'created': '2024-11-12 22:24:29', 'submission_id': '1gptblc'}
{'comment': 'Mainstream news is the last place to find the news.', 'created': '2024-11-12 21:02:48', 'submission_id': '1gptblc'}
{'comment': 'I can relate. Denver and Boulder dictate how Colorado goes.', 'created': '2024-11-12 22:12:01', 'submission_id': '1gptblc'}
{'comment': 'Same for Michigan. Detroit and Grand Rapids\xa0 97 percent of Michigan is red as tomato.\xa0\xa0', 'created': '2024-11-13 00:35:23', 'submission_id': '1gptblc'}
{'comment': 'Would be nice to have enough extra in the house to fill some cabinet roles and then have some padding on top of that', 'created': '2024-11-12 22:09:48', 'submission_id': '1gptblc'}
{'comment': 'We have the house', 'created': '2024-11-12 21:12:46', 'submission_id': '1gptblc'}
{'comment': 'Californian and we get to continue the experience that is known as Gavin Newsom.', 'created': '2024-11-13 02:13:45', 'submission_id': '1gptblc'}
{'comment': "He's not running to be the Senate Majority leader. He's taken a back seat to either Cornyn from Texas, Thune from South Dakota or Scott from Florida", 'created': '2024-11-12 22:25:40', 'submission_id': '1gptblc'}
{'comment': 'Popular vote just make the cherry on top even sweeter', 'created': '2024-11-13 08:32:02', 'submission_id': '1gptblc'}
{'comment': 'Yessir! This is a MANDATE!', 'created': '2024-11-13 03:14:07', 'submission_id': '1gptblc'}
{'comment': 'Associated Press called it', 'created': '2024-11-12 21:37:29', 'submission_id': '1gptblc'}
{'comment': 'Fox and the AP called it for McCormick', 'created': '2024-11-13 05:58:15', 'submission_id': '1gptblc'}
{'comment': 'CNN, NBC and CBS have all called it now.', 'created': '2024-11-13 20:31:12', 'submission_id': '1gptblc'}
{'comment': 'Cincofecta if you count the sitting president', 'created': '2024-11-12 21:12:03', 'submission_id': '1gptblc'}
{'comment': 'I haven’t seen a man beat a woman this badly since the Olympics!”', 'created': '2024-11-14 05:17:12', 'submission_id': '1gptblc'}
{'comment': "Yeah... there's been a lot they couldn't do in the past because they couldn't get it past the supreme court. Let's see if they actually try it now.", 'created': '2024-11-12 23:50:07', 'submission_id': '1gptblc'}
{'comment': "Tons of pressure. I just hope they don't do the equivalent of what the left did from 2020-2024 which pushed the entire nation back red. Pass some smart, actionable, legislation and lets get this country back on track.", 'created': '2024-11-12 23:02:21', 'submission_id': '1gptblc'}
{'comment': 'Friend... you said it all', 'created': '2024-11-14 23:14:15', 'submission_id': '1gptblc'}
{'comment': 'Where are you seeing these numbers?', 'created': '2024-11-12 21:38:35', 'submission_id': '1gptblc'}
{'comment': 'Then majority of the rest of your state is red outside those two areas right?Just sucks that they have the most say. During election night Trump was leading Minnesota until 9-10 when the cities chimed in with their votes for Harris. I was holding out some hope we’d get Trump Minnesota.', 'created': '2024-11-12 22:36:30', 'submission_id': '1gptblc'}
{'comment': 'Have you heard of population density', 'created': '2024-11-13 04:48:14', 'submission_id': '1gptblc'}
{'comment': 'As of right now, we have 214 of the 218 needed.', 'created': '2024-11-12 21:15:15', 'submission_id': '1gptblc'}
{'comment': 'They should get married.', 'created': '2024-11-13 14:32:46', 'submission_id': '1gptblc'}
{'comment': 'Yes yes! Now they can stop whining, crying, bitching, screaming and kicking about the electoral college.\xa0\n\nIt’s funny cause my aunt came out as I was watching the election and I told her Trump was ahead with the popular vote. She says “no one gives a fuck about the popular vote, that doesn’t win you shit” lol\xa0', 'created': '2024-11-17 07:31:37', 'submission_id': '1gptblc'}
{'comment': 'Indeed!!!!', 'created': '2024-11-14 23:11:29', 'submission_id': '1gptblc'}
{'comment': 'I see that now. However, that was last Thursday. Counting continues. Here is the AP’s reasoning:\n\nhttps://apnews.com/article/why-ap-called-pennsylvania-senate-f9af5d80be39fcc7a2abb8258a8f3ccf', 'created': '2024-11-12 22:16:13', 'submission_id': '1gptblc'}
{'comment': 'Technically after quintfecta it would be sextfecta which is funny because we completely fucked the democrats', 'created': '2024-11-13 00:07:39', 'submission_id': '1gptblc'}
{'comment': '^ absolutely needs more upvotes.', 'created': '2024-11-12 21:13:52', 'submission_id': '1gptblc'}
{'comment': 'If you wish to live on top of each other you should not get to dilute the votes of the rural folks.\xa0', 'created': '2024-11-13 05:24:47', 'submission_id': '1gptblc'}
{'comment': 'Where are you looking to for your information', 'created': '2024-11-12 21:22:15', 'submission_id': '1gptblc'}
{'comment': 'AP is almost never wrong. Not never, but as close as possible.', 'created': '2024-11-13 02:51:46', 'submission_id': '1gptblc'}
{'comment': 'That’s funny.', 'created': '2024-11-13 01:43:51', 'submission_id': '1gptblc'}
{'comment': 'TAKE MY UPVOTE', 'created': '2024-11-13 01:58:27', 'submission_id': '1gptblc'}
{'comment': 'The Dems are definitely cheating for the house.', 'created': '2024-11-13 06:04:45', 'submission_id': '1gptblc'}
{'comment': 'Land doesn’t vote people do, more people live in Wayne County than all of the UP so yes they should have more of a say', 'created': '2024-11-13 16:31:26', 'submission_id': '1gptblc'}
{'comment': 'Name it. Tv, online.', 'created': '2024-11-12 22:06:50', 'submission_id': '1gptblc'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 20:04:38', 'submission_id': '1gpsizz'}
{'comment': 'Hell nah', 'created': '2024-11-12 20:15:47', 'submission_id': '1gpsizz'}
{'comment': 'No. Not cool, we fought to get away from that kind of ruling. Plus its not a good idea to joke about that stuff because democrats will think you are being serious. Nobody supports that nor believes in that. Trump will serve only 2 terms max because of the 22nd Amendment in the Constitution which Donald Trumps defends and protects. This was introduced after the Great President Roosevelt who served 4 terms and after death this was added to the constitution. He was the exception due to it not being in place, and also the country needed him desperately during the Great depression.', 'created': '2024-11-13 01:06:59', 'submission_id': '1gpsizz'}
{'comment': 'I think the Demoncrat party is sending their lunatics to the republican communities to spew nonsense.', 'created': '2024-11-13 19:39:36', 'submission_id': '1gpsizz'}
{'comment': 'Kool...', 'created': '2024-11-12 20:10:14', 'submission_id': '1gpsizz'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 19:31:24', 'submission_id': '1gprpqn'}
{'comment': 'About time!', 'created': '2024-11-12 21:48:22', 'submission_id': '1gprpqn'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 19:00:02', 'submission_id': '1gpqx8x'}
{'comment': 'Just wait.... they\'ll find the votes. Just hold on a little bit. Remember those 6 panel vans that showed up as the election workers "switched shifts"? The votes are in there.', 'created': '2024-11-12 19:10:45', 'submission_id': '1gpqx8x'}
{'comment': 'Lake lost, McCormick won, the election was a week ago so besides like Alaska people need to move on. The results are here.', 'created': '2024-11-12 21:59:10', 'submission_id': '1gpqx8x'}
{'comment': 'Shhhhhh, you never saw those vans.', 'created': '2024-11-12 19:19:21', 'submission_id': '1gpqx8x'}
{'comment': "Wouldn't put it past them to try something shady, but this time it's proving not to be so easy. 😆", 'created': '2024-11-12 19:13:41', 'submission_id': '1gpqx8x'}
{'comment': '<feels the warm breath of Hillary on the back of the neck>\n\n\nEDIT: Smells like cheap whiskey and hate FYI', 'created': '2024-11-12 19:20:21', 'submission_id': '1gpqx8x'}
{'comment': "Indeed! Cockroaches don't do well when the light is turned on!", 'created': '2024-11-12 20:05:20', 'submission_id': '1gpqx8x'}
{'comment': 'The Blair Witch ?', 'created': '2024-11-12 19:42:33', 'submission_id': '1gpqx8x'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 18:05:50', 'submission_id': '1gpplue'}
{'comment': 'I would love to see someone put that forward now lol. Not that we should I believe we have the right number, but it would be fun to watch them have a hypocritical meltdown', 'created': '2024-11-12 18:13:32', 'submission_id': '1gpplue'}
{'comment': 'This is why like it or not the Filibuster is a beautiful thing.', 'created': '2024-11-12 20:38:38', 'submission_id': '1gpplue'}
{'comment': 'This legislative term (25-27) will be a great chance for Republicans to take the high ground and adamantly defend the filibuster despite having the majority. I hope they take it.', 'created': '2024-11-12 21:58:14', 'submission_id': '1gpplue'}
{'comment': 'Michael Malice had a great point: \n- Put forth an amendment/measure to cap SCOTUS at 9 members. \n- If does not pass, Republicans can safely pack the court with their appointments.', 'created': '2024-11-12 19:24:50', 'submission_id': '1gpplue'}
{'comment': 'The sound of crickets... 😆', 'created': '2024-11-12 19:33:06', 'submission_id': '1gpplue'}
{'comment': 'Best they had was Kamala.... Right... So they are gonna get some more whoring celebrities to make you think otherwise. Pretty soon, it will be Gaga for the Supreme Court and selling you Ozempic at the same time.', 'created': '2024-11-12 19:00:11', 'submission_id': '1gpplue'}
{'comment': 'In my opinion, the Republicans should end the filibuster. At a minimum, the filibuster should be restored to its original stand and talk format. It has become too easy to filibuster now. \n\nThe GOP has some good ideas. The filibuster should not stop their agenda.', 'created': '2024-11-12 20:00:45', 'submission_id': '1gpplue'}
{'comment': 'Yep, now they can help Joe and Cuntmala pack their bags and get out of the WH😁', 'created': '2024-11-12 19:08:48', 'submission_id': '1gpplue'}
{'comment': 'Now we can pack it LOL.\xa0 \xa0Imagine 20 republican justices age 40 or younger. Oh the humanity. For at least 100 years we got control of the judiciary.\xa0', 'created': '2024-11-13 00:43:33', 'submission_id': '1gpplue'}
{'comment': 'Chuck Schumer was one of the big proponents.\n\nWrite a bill and ask him to cosponsor it. Get it on camera.', 'created': '2024-11-12 18:17:01', 'submission_id': '1gpplue'}
{'comment': "Lol. Imagine if Democrats had managed to add 6 more justices to the court, then Republicans in the Senate would have just added more.\n\n9 + 6 + 6 = 21 Justices \n\nThankfully that didn't happen.", 'created': '2024-11-13 03:13:16', 'submission_id': '1gpplue'}
{'comment': "Lol. Imagine if Democrats had managed to add 6 more justices to the court, then Republicans in the Senate would have just added more.\n\n9 + 6 + 6 = 21 Justices \n\nThankfully that didn't happen.", 'created': '2024-11-13 03:12:50', 'submission_id': '1gpplue'}
{'comment': 'It would need to be a Constitutional Amendment, in order to be of any use. One Congress cannot bind the next with a law - the next Congress could simply repeal it.', 'created': '2024-11-12 19:32:56', 'submission_id': '1gpplue'}
{'comment': "I don't disagree - but at the moment, McConnell has called an early leadership election in an attempt to sabotage Trump in the Senate. If Cornyn or Thune becomes Senate Majority leader it is going to be very difficult for Trump to get anything useful through the Senate.", 'created': '2024-11-12 20:03:24', 'submission_id': '1gpplue'}
{'comment': "It doesn't work that way though. Once the lid is off the can of worms, the next Democrat administration that had a Senate majority would add 50 Democrat justices.", 'created': '2024-11-13 00:53:57', 'submission_id': '1gpplue'}
{'comment': 'LOL love that', 'created': '2024-11-12 18:18:17', 'submission_id': '1gpplue'}
{'comment': 'Or as Rush Limbaugh used to call him „Chuck You Schumer“', 'created': '2024-11-12 18:18:59', 'submission_id': '1gpplue'}
{'comment': 'Exactly', 'created': '2024-11-13 03:20:40', 'submission_id': '1gpplue'}
{'comment': 'I sure wish Rush was around to see this.', 'created': '2024-11-13 06:22:40', 'submission_id': '1gpplue'}
{'comment': 'I miss Rush and his nicotine stained fingers.', 'created': '2024-11-12 22:29:13', 'submission_id': '1gpplue'}
{'comment': '*Formerly', 'created': '2024-11-12 22:54:16', 'submission_id': '1gpplue'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 17:33:11', 'submission_id': '1gpot7g'}
{'comment': 'Since learning of the celebrity endorsement payments it does make me wonder this: If Donald Trump is supposed to be "America\'s Hitler" then why do they need money to support the opposition? If I felt that either side was truly "Hitler" I would be warning everyone and moving to somewhere safe. I would not take money for appearances, threatening to leave if I didn\'t get my way, and ultimately stay. (Looking at you Michael Cohen.)', 'created': '2024-11-12 21:09:04', 'submission_id': '1gpot7g'}
{'comment': 'Those celebrities are simps to the Demotardic party', 'created': '2024-11-13 00:06:28', 'submission_id': '1gpot7g'}
{'comment': 'I think we all found out with definitive proof that most Americans don’t give a rats ass what celebrities think about politics. Those people don’t live in the real world', 'created': '2024-11-13 03:58:11', 'submission_id': '1gpot7g'}
{'comment': 'Most of them thought they were on the winning team though, and believed the people saying that Democrats were going to win.', 'created': '2024-11-13 04:08:32', 'submission_id': '1gpot7g'}
{'comment': 'Someone on Fox made a very simple point: \n\n“my grandma has to cut back on how much food she’s eating in a day because of how expensive groceries has gotten. Do you think Kamala is speaking to her with all these celebrities and performances?”', 'created': '2024-11-13 11:19:34', 'submission_id': '1gpot7g'}
{'comment': "I would bet 100.00 that each one of these celebrities goes to regular psychologists that charge them like 5k per session and they down a bottle of wine at their mansions immediately after. They will then terrorize the poor housemaids and personal assistants with incessant ranting and TDS before having a mental breakdown on the floor over a new gray hair or slight wrinkle, after which they will then proceed a plastic surgery appointment, all the while complaining about how life is so 'unfair' and they don't understand why they're not happy.", 'created': '2024-11-13 06:27:41', 'submission_id': '1gpot7g'}
{'comment': "Shhhh... I won't tell them if you don't tell them. 😆", 'created': '2024-11-13 04:10:51', 'submission_id': '1gpot7g'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 17:10:27', 'submission_id': '1gpo9d3'}
{'comment': 'This is very good news...about very BAD news!', 'created': '2024-11-12 17:34:16', 'submission_id': '1gpo9d3'}
{'comment': 'Good. It is long past time they started getting back some of what they dish out.', 'created': '2024-11-12 17:31:19', 'submission_id': '1gpo9d3'}
{'comment': 'Love it', 'created': '2024-11-12 17:27:46', 'submission_id': '1gpo9d3'}
{'comment': None, 'created': '2024-11-12 17:31:47', 'submission_id': '1gpo9d3'}
{'comment': "I admit to being one of those watching MSNBC prior to the election because I feel it is important to know what the other side is saying. Now that the election is over, I'm back to watching Fox and some of the independent right leaning YouTube channels.\n\nMourning Joe (yes, it should be spelled that way) was particularly fun to watch the morning after the election.", 'created': '2024-11-12 17:57:10', 'submission_id': '1gpo9d3'}
{'comment': 'Now strip out the numbers from airports and Planet Fitness.', 'created': '2024-11-12 17:35:12', 'submission_id': '1gpo9d3'}
{'comment': 'I feel like I jumped timelines and woke up in a country that regained its sanity. KAMALA WAS ABSOLUTELY RIGHT! We did turn a page and I do FEEL the joy!', 'created': '2024-11-12 17:42:25', 'submission_id': '1gpo9d3'}
{'comment': 'The old adage holds true "Go Woke, Go Broke!"', 'created': '2024-11-12 17:57:58', 'submission_id': '1gpo9d3'}
{'comment': " I stopped watching CNN in 2016. I could no longer take the consistent negative portrayal of Trump. \n The liberal media has been obsessed with DJT for the past decade. I honestly believe they put him in the White House both times because of all the media coverage. \n I voted for Trump all 3 times. I think it had everything to do with the liberal media's outlandish lies and coordinated attacks.", 'created': '2024-11-12 18:55:08', 'submission_id': '1gpo9d3'}
{'comment': "The only people that'll watch them now are left wing ideologues and YouTubers ripping them for laughs.", 'created': '2024-11-12 19:37:09', 'submission_id': '1gpo9d3'}
{'comment': 'The clicking of remotes heard around the world. \n\n😆', 'created': '2024-11-12 18:39:56', 'submission_id': '1gpo9d3'}
{'comment': 'Good maybe people will stop watching MSM', 'created': '2024-11-12 19:57:39', 'submission_id': '1gpo9d3'}
{'comment': 'It’s about time!', 'created': '2024-11-12 17:40:27', 'submission_id': '1gpo9d3'}
{'comment': 'Because people are baffled how the narrative didn’t apply into reality.', 'created': '2024-11-12 18:36:35', 'submission_id': '1gpo9d3'}
{'comment': 'I have personally been watching them more as I enjoy their freakouts.', 'created': '2024-11-13 01:04:23', 'submission_id': '1gpo9d3'}
{'comment': "You can't mislead people and have them still trust you- imho", 'created': '2024-11-12 19:30:18', 'submission_id': '1gpo9d3'}
{'comment': "It makes sense; Kamala had one billion dollars, hadd 99% support from the MSM and Trump beat her in messaging \n\nThat proves they have no reach compared to the internet. \n\nThat is why Musk's acquisition of twitter and turning it into a more free speech platform a was huge service to our nation.", 'created': '2024-11-12 19:57:50', 'submission_id': '1gpo9d3'}
{'comment': 'Fuck MSDNC.', 'created': '2024-11-12 18:02:12', 'submission_id': '1gpo9d3'}
{'comment': 'Musk should buy MSNBC and put Alex Jones on there', 'created': '2024-11-13 00:29:39', 'submission_id': '1gpo9d3'}
{'comment': 'Legacy media.', 'created': '2024-11-12 21:43:41', 'submission_id': '1gpo9d3'}
{'comment': 'Those CLOWNS in the legacy media are BLOW JOB HACKS!!!', 'created': '2024-11-12 23:06:28', 'submission_id': '1gpo9d3'}
{'comment': 'Who would think that people dont want to watch news channels who gasslight them into thinking that Kamala has a chance to win.', 'created': '2024-11-13 13:37:56', 'submission_id': '1gpo9d3'}
{'comment': 'It’s all the “I’m not watching the news for 4 years” losers', 'created': '2024-11-12 19:50:04', 'submission_id': '1gpo9d3'}
{'comment': 'HELLYEAH BROTHER!', 'created': '2024-11-12 20:20:58', 'submission_id': '1gpo9d3'}
{'comment': 'They actually worked against democrats always telling Kamala was ahead', 'created': '2024-11-12 22:54:36', 'submission_id': '1gpo9d3'}
{'comment': 'And Wallace just announced he’s leaving CNN to pursue podcasting.', 'created': '2024-11-13 07:15:32', 'submission_id': '1gpo9d3'}
{'comment': 'This is FANTASTIC news 👏🏼', 'created': '2024-11-13 15:47:08', 'submission_id': '1gpo9d3'}
{'comment': 'I see what you did there... 😁', 'created': '2024-11-12 17:39:56', 'submission_id': '1gpo9d3'}
{'comment': 'Nice. 👏', 'created': '2024-11-12 19:37:58', 'submission_id': '1gpo9d3'}
{'comment': 'Wokeness begets brokeness... 😆', 'created': '2024-11-12 17:42:40', 'submission_id': '1gpo9d3'}
{'comment': 'Kamala raised 1 billion dollars, that money had to go somewhere besides paying for celebrity endorsements. My guess is part of that money went to prop up their propaganda channels.', 'created': '2024-11-12 18:15:59', 'submission_id': '1gpo9d3'}
{'comment': "I believe the slight of hand tricks have been exposed and there's no way to unsee it now. 😁", 'created': '2024-11-12 18:04:43', 'submission_id': '1gpo9d3'}
{'comment': 'I had to join Planet Fitness because it’s literally the only reasonably priced gym near my temporary job site. And it’s freaking awful. I got to go back to my home Golds Gym last night and it was so glorious! Can’t wait to stop my PF plan in t-minus 45 days…', 'created': '2024-11-14 22:04:56', 'submission_id': '1gpo9d3'}
{'comment': "Ain't being unburdened by what might have been grand... 😆", 'created': '2024-11-12 17:46:34', 'submission_id': '1gpo9d3'}
{'comment': 'And they are the shining examples... 😆', 'created': '2024-11-12 17:59:27', 'submission_id': '1gpo9d3'}
{'comment': 'And maybe their mothers... 😆', 'created': '2024-11-12 19:38:57', 'submission_id': '1gpo9d3'}
{'comment': "Ain't being unburdened by what might have been grand... 😆", 'created': '2024-11-12 17:46:56', 'submission_id': '1gpo9d3'}
{'comment': 'Me too. The view the day after election was hilarious!', 'created': '2024-11-13 17:30:14', 'submission_id': '1gpo9d3'}
{'comment': "They're already doing that to themselves. 😆", 'created': '2024-11-12 18:05:50', 'submission_id': '1gpo9d3'}
{'comment': "Oh... wouldn't that be glorious. 😆", 'created': '2024-11-13 00:35:38', 'submission_id': '1gpo9d3'}
{'comment': 'Fuck Alex Jones. Russell Brand be better choice.', 'created': '2024-11-13 17:28:57', 'submission_id': '1gpo9d3'}
{'comment': 'He was fired... 😆', 'created': '2024-11-13 08:25:42', 'submission_id': '1gpo9d3'}
{'comment': '😉', 'created': '2024-11-12 18:31:48', 'submission_id': '1gpo9d3'}
{'comment': '👍', 'created': '2024-11-13 11:41:37', 'submission_id': '1gpo9d3'}
{'comment': 'Lets hope that holds true in the future too.', 'created': '2024-11-12 19:39:02', 'submission_id': '1gpo9d3'}
{'comment': 'If only I could upvote this more than once!!', 'created': '2024-11-12 18:09:58', 'submission_id': '1gpo9d3'}
{'comment': 'Propaganda has a way of fooling many. There will always be people fooled by them.', 'created': '2024-11-12 18:17:21', 'submission_id': '1gpo9d3'}
{'comment': "Nah, probably maga like Tampon Tim's family 😁", 'created': '2024-11-12 19:40:37', 'submission_id': '1gpo9d3'}
{'comment': "Hardcore GOP here, but FUCK Alex Jones to Death. I know someone that says if they get cancer relapse they're going after him. I say 🤞", 'created': '2024-11-13 17:26:52', 'submission_id': '1gpo9d3'}
{'comment': 'He actually quit.\n\nhttps://www.thedailybeast.com/broadcaster-chris-wallace-quits-cnn-to-build-future-in-streaming-or-podcasting/', 'created': '2024-11-13 16:02:06', 'submission_id': '1gpo9d3'}
{'comment': 'Tks, have a great one. 👍', 'created': '2024-11-12 18:12:35', 'submission_id': '1gpo9d3'}
{'comment': 'Oops... almost forgot about that... 😆', 'created': '2024-11-12 19:58:53', 'submission_id': '1gpo9d3'}
{'comment': 'They did not renew his contract... No contract, no job. 😁', 'created': '2024-11-13 18:46:43', 'submission_id': '1gpo9d3'}
{'comment': 'You weren’t in the room and nor was I, we can’t assume anything. That’s called speculation. 😁\n\nEither way, CNN admitted it’s been having financial difficulties to pay for all these journalists. His contract was seven figures. They’ve lost a lot of accreditation over the years. Also the man is in his late 70s. I enjoy his work so I’ll be looking forward to hearing him on his podcast.', 'created': '2024-11-13 19:04:00', 'submission_id': '1gpo9d3'}
{'comment': 'The game goes like this... Your contact is up for renewal and we need to free some office space. wink, wink, nudge, nudge. 😁', 'created': '2024-11-13 19:11:56', 'submission_id': '1gpo9d3'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 16:20:21', 'submission_id': '1gpn3ei'}
{'comment': 'Great to see Melania, our great First Lady, standing for what’s right.', 'created': '2024-11-12 16:37:09', 'submission_id': '1gpn3ei'}
{'comment': "I thought republican women were stupid and couldn't think for themselves?", 'created': '2024-11-12 16:31:53', 'submission_id': '1gpn3ei'}
{'comment': 'Good to see all the Democrats thrown out on their ass!! The American public has given Trump a resounding mandate to clean out the swamp!', 'created': '2024-11-12 21:41:12', 'submission_id': '1gpn3ei'}
{'comment': 'She is one classy lady!', 'created': '2024-11-12 23:29:54', 'submission_id': '1gpn3ei'}
{'comment': "I see people complain about the dating world lol whats new? But in reality it makes it easier to find a republican lady. Someone who will unsurprisingly be more lady like and a strong woman to have the honor of getting to know.\n\nThis right here is a prime example and worthy of a role model because it is an example of self respect. in the simplest for of standing up for yourself and not letting people push you around and expect your kindness to be taken advantage of. Respectfully declining for good reason and moving on like a true leader.\n\nIve met a lot of amazing people, but rep ladies have always been someone Id be honored to introduce to my mother. (lol forgot to include....my mom wouldn't like them because shes a democrat, but I still love my mom no matter how often she tries to tell me things joe biden does is ai (like falling down the stairs or wearing a trump hat) lol gotta love her.", 'created': '2024-11-12 23:14:45', 'submission_id': '1gpn3ei'}
{'comment': 'Are we supposed to be surprised that a supermodel has nothing to say to a frumpy ex teacher?', 'created': '2024-11-12 17:32:11', 'submission_id': '1gpn3ei'}
{'comment': 'Thanks Peggy Hill', 'created': '2024-11-12 20:24:53', 'submission_id': '1gpn3ei'}
{'comment': ' Melania grew up in a communist country (Yugoslavia, she is from Slovenia which was part of Yugoslavia when she was a child)she knows the evils of the far Lefts agenda first hand.', 'created': '2024-11-12 18:01:16', 'submission_id': '1gpn3ei'}
{'comment': 'She musta got chat gpt to decide for her, after all trump surrounds himself with weak women\n\nEdit: apparently this comment was take seriously. I apologise for the offence, i was being sarcastic.', 'created': '2024-11-12 16:54:37', 'submission_id': '1gpn3ei'}
{'comment': 'With principles.', 'created': '2024-11-13 15:47:42', 'submission_id': '1gpn3ei'}
{'comment': "I don't necessarily think it's classy to do a nude photoshoot. Some things should stay between her and her husband.", 'created': '2024-11-13 00:02:20', 'submission_id': '1gpn3ei'}
{'comment': 'That’s Dr. Frumpy to you 😂', 'created': '2024-11-12 22:37:51', 'submission_id': '1gpn3ei'}
{'comment': 'I grew up near Slovenia, in a communist country as well. This alone is the reason I’m a Republican', 'created': '2024-11-12 21:12:53', 'submission_id': '1gpn3ei'}
{'comment': 'This subreddit is for republicans and conservatives only. Go cry about Trump’s win in the other subreddits.', 'created': '2024-11-12 19:24:16', 'submission_id': '1gpn3ei'}
{'comment': 'And here it is. Please get over the past. I’m sure you overlooked Jill cheating on her first husband with Joe', 'created': '2024-11-13 03:59:56', 'submission_id': '1gpn3ei'}
{'comment': 'Certainly not a Dr. of fashion.', 'created': '2024-11-12 22:59:27', 'submission_id': '1gpn3ei'}
{'comment': "I was being sarcastic. Sorry, i thought it was obvious\n\nEdit, thanks for saying something. Bcause reddit doesn't notify on downvotes, i never woulda know I'd annoyed people", 'created': '2024-11-12 19:25:36', 'submission_id': '1gpn3ei'}
{'comment': "I was discussing how I don't think it's classy to pose nude. I don't think it's classy to cheat on your husband or wife. I'm sure you overlooked Trump cheating on his first wife Ivana", 'created': '2024-11-13 16:37:11', 'submission_id': '1gpn3ei'}
{'comment': 'She looked pretty good wearing that red pantsuit Election Day but I’m unsure if that was just another one of the lefts “Handmaids Tale” references or not', 'created': '2024-11-12 23:25:02', 'submission_id': '1gpn3ei'}
{'comment': None, 'created': '2024-11-12 19:30:01', 'submission_id': '1gpn3ei'}
{'comment': 'Well here’s the difference. I don’t obsess over the past like ppl with TDS do. So what if she posed nude? So do all of the supermodels. Yep that’s right, Cindy, Miranda, Christy Brinkley, and so many others have posed nude but you’re singling Melania out 😂', 'created': '2024-11-13 20:02:05', 'submission_id': '1gpn3ei'}
{'comment': 'Maybe. Honestly, if half of the rumors about her relationship with whatshername were true, she probably voted for Trump.', 'created': '2024-11-12 23:29:39', 'submission_id': '1gpn3ei'}
{'comment': 'Yeah shoulda, i was busy at the time.', 'created': '2024-11-12 19:31:00', 'submission_id': '1gpn3ei'}
{'comment': "I'm stating my opinion that I personally do not think she is a classy lady. I don't think any of those models are classy ladies. They are paid to remove their clothes, it's one step above being a prostitute.", 'created': '2024-11-13 20:07:02', 'submission_id': '1gpn3ei'}
{'comment': 'They are paid to sell things to consumers, whether it’s actual items, magazines, or lifestyles. Yeah sometimes it’s sex. But they don’t remove clothing for every piece of work they do, and sometimes they do it as art. It’s not prostitution. Being photographed is not having sex, not even close. Majority of ppl in Hollywood are doing the same thing so I guess you hate all of them too. I certainly don’t judge ppl bc I’m not a perfect person but I guess you are!', 'created': '2024-11-13 20:12:23', 'submission_id': '1gpn3ei'}
{'comment': "It's my personal opinion that models who pose nude are not classy. You don't have to agree with me. Just giving my opinion.", 'created': '2024-11-13 20:14:40', 'submission_id': '1gpn3ei'}
{'comment': 'It’s fine but I’m just pointing out that they all do it so you really shouldn’t single one of them out', 'created': '2024-11-13 20:16:12', 'submission_id': '1gpn3ei'}
{'comment': 'This post is about Melania and I gave my opinion about her posing nude. You brought up the other models and I continued to state my opinion that anyone that models nude is not classy. We can have different opinions, I was just stating mine.', 'created': '2024-11-13 20:20:33', 'submission_id': '1gpn3ei'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 13:46:00', 'submission_id': '1gpjwb8'}
{'comment': 'Democrats are evil etcetera etcetera', 'created': '2024-11-12 16:24:59', 'submission_id': '1gpjwb8'}
{'comment': 'They were always like that. Those that go around accusing others of something with no reason or proof are usually guilty of it themselves.', 'created': '2024-11-16 07:29:34', 'submission_id': '1gpjwb8'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 13:17:28', 'submission_id': '1gpjdyh'}
{'comment': 'Another W, all these weak dumb females the dems keeping saying . Some of the most powerful positions are all being appointed females from Trump.', 'created': '2024-11-12 13:31:02', 'submission_id': '1gpjdyh'}
{'comment': 'It looks like the cabinet is shaking up.', 'created': '2024-11-12 15:41:06', 'submission_id': '1gpjdyh'}
{'comment': 'Tulsi gabbard needs a spot somewhere in his team for sure', 'created': '2024-11-12 16:42:49', 'submission_id': '1gpjdyh'}
{'comment': 'Nah, she supports ubi, the green new deal, and legalization of drugs. She also literally denied the chemical gassing of Syrian citizens by Assad, there’s also the fact she literally a Bernie bro. She’s not a conservative at all.', 'created': '2024-11-12 19:06:10', 'submission_id': '1gpjdyh'}
{'comment': 'I wish he would tap her for VA secretary.', 'created': '2024-11-12 23:41:54', 'submission_id': '1gpjdyh'}
{'comment': 'I don’t get why a lot of MAGA want her so badly? I support a lot of MAGA policies sure, but I’m not folding on my ideology just to have Gabbard there?..\nWtf', 'created': '2024-11-12 20:35:10', 'submission_id': '1gpjdyh'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 05:36:05', 'submission_id': '1gpcqtm'}
{'comment': 'If there was only an elected representative that could look into this question then it would be great.', 'created': '2024-11-12 06:31:31', 'submission_id': '1gpcqtm'}
{'comment': 'If I’m reading the document correctly, they removed the duplicate sent ballots from the bottom calculation but my biggest question is, why are there so many fricken duplicate ballots sent out? Like 500k really?', 'created': '2024-11-12 07:14:23', 'submission_id': '1gpcqtm'}
{'comment': 'President Trump needs to do a cleaning in Arizona asap .', 'created': '2024-11-12 09:05:26', 'submission_id': '1gpcqtm'}
{'comment': 'If be "sent" you mean, safely stored in a remote warehouse until the NUMBER of votes needed to defeat Kari Lake is determined and then filled in with exactly that number ... then just ignore that.', 'created': '2024-11-12 12:48:17', 'submission_id': '1gpcqtm'}
{'comment': 'Arizona seems like a total mess, they should just rebuild their election structure in the mold of Florida, who gets their results in hours after polls close.', 'created': '2024-11-12 19:21:15', 'submission_id': '1gpcqtm'}
{'comment': "We don't know which of the duplicate ballots they ment so we have to count both or they will be disenfranchised - Left mental gymnastics", 'created': '2024-11-12 13:07:53', 'submission_id': '1gpcqtm'}
{'comment': 'Two words: Election fraud.\n\nFor the lefties among us, cheating does not mean you automatically win. Sometimes you cheat and lose anyway.\n\nIn this election, had it been close enough, the decision would have hinged on whatever the people tabulating and re-tabulating ballots in Arizona eventually decided the result should be.\n\nRepublicans won because they overwhelmed the cheat.\n\nArizona is not the only state in which Democrats cheated. It is just one of the most obvious (even more than Michigan voters being allowed to vote dozens of times).', 'created': '2024-11-12 15:19:21', 'submission_id': '1gpcqtm'}
{'comment': 'Obviously Kari Lake has been robbed. Again. Effing Democrats ....I detest them. They cheat more than Vladimir Putin.', 'created': '2024-11-12 07:11:50', 'submission_id': '1gpcqtm'}
{'comment': 'HA when liberal cheating is so blatant.', 'created': '2024-11-17 10:53:49', 'submission_id': '1gpcqtm'}
{'comment': "I don't think Kari Lake will see a bump in votes, but her opponent will win in a landslide.", 'created': '2024-11-12 08:15:55', 'submission_id': '1gpcqtm'}
{'comment': 'Plausible, deniable, fraudulanet votes.\n\nOops, we sent out too many, but not its too late to not count them!', 'created': '2024-11-12 08:13:56', 'submission_id': '1gpcqtm'}
{'comment': "I'm in favor or 're-imagining' the voter system and I live in AZ.", 'created': '2024-11-12 20:42:50', 'submission_id': '1gpcqtm'}
{'comment': "YES, I also loved how Georgia does theirs now. People should know exactly how many ballots were cast within an hour of polls closing.\n\nIt was beautiful watching CNN just before Georgia was called. One guy was talking about how it's very possible for them to come back from 115k down and people should just wait to see and it could take days.\n\nThen someone else came on and said the state had only 100k left to count. A few minutes later CNN was forced to call it for Trump.", 'created': '2024-11-12 22:16:23', 'submission_id': '1gpcqtm'}
{'comment': 'Arizona has bad elections and Many Never Trumper leftover McCainites still able to pull levers of power.', 'created': '2024-11-12 15:24:38', 'submission_id': '1gpcqtm'}
{'comment': 'They still selected Reuben Gallego ( commie) over Kari Lake!', 'created': '2024-11-13 03:34:59', 'submission_id': '1gpcqtm'}
{'comment': 'Trump needs her on his staff', 'created': '2024-11-12 13:41:38', 'submission_id': '1gpcqtm'}
{'comment': 'Seems to me it is bad enough that the Federal Government ought to be able to intervene.', 'created': '2024-11-12 15:25:54', 'submission_id': '1gpcqtm'}
{'comment': "The voters of Arizona almost certainly didn't.", 'created': '2024-11-13 14:44:39', 'submission_id': '1gpcqtm'}
{'comment': 'Press secretary maybe?', 'created': '2024-11-12 15:50:04', 'submission_id': '1gpcqtm'}
{'comment': 'Maybe a Trump DOJ will. Not a Biden one...', 'created': '2024-11-12 20:34:05', 'submission_id': '1gpcqtm'}
{'comment': "I know! Thats why I said 'selected' instead of elected.", 'created': '2024-11-13 14:46:11', 'submission_id': '1gpcqtm'}
{'comment': 'I was thinking secretary of defense', 'created': '2024-11-12 15:51:39', 'submission_id': '1gpcqtm'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 05:28:16', 'submission_id': '1gpclvm'}
{'comment': 'Jesus these people are insane', 'created': '2024-11-12 05:33:07', 'submission_id': '1gpclvm'}
{'comment': 'ADHD person here, and to this i say...\n\n\nOH HELL NO.', 'created': '2024-11-12 16:49:40', 'submission_id': '1gpclvm'}
{'comment': "These people are completely out of their minds. It's not the same thing in any way shape or form. You take those meds because of something wrong with you. Not to change your body.", 'created': '2024-11-12 07:30:22', 'submission_id': '1gpclvm'}
{'comment': 'These people are brain dead… making gender transition for children illegal isn’t the same thing as outlawing the drugs entirely, nor will it apply to the very rare circumstances when a young girl needs Lupron to manage severe PCOS or Endo..\n\n*edit bc typo lol', 'created': '2024-11-12 13:47:47', 'submission_id': '1gpclvm'}
{'comment': "I know I will catch down votes for this... they are right ADHD and Trans are similar. They are both based on a very flimsy argument about human emotions. AKA I don't really believe in either. And we do not need to be pumping kids full of drugs for a disease that can not be physically diagnosed.", 'created': '2024-11-12 05:51:02', 'submission_id': '1gpclvm'}
{'comment': 'No police changing medications such as this should be allowed to freely be given to anyone under the age of 25. The brain finishes development at that time. If you still feel like you’re in the wrong body then do something about it. It should be banned but on case by case basis. Otherwise this trendy little trans thing will negatively affect way too many people than need it.', 'created': '2024-11-12 15:55:34', 'submission_id': '1gpclvm'}
{'comment': '"Super safe"', 'created': '2024-11-14 02:31:53', 'submission_id': '1gpclvm'}
{'comment': 'At this point I was like dude wtf, I been taking Ritalin for most of my life', 'created': '2024-11-12 05:36:42', 'submission_id': '1gpclvm'}
{'comment': "I have ADHD as well, that's why I said hell no", 'created': '2024-11-12 16:58:26', 'submission_id': '1gpclvm'}
{'comment': 'The whole thing is insane and they know it. We need to ban it while we have a majority in the legislative branch. If the dems spend the midterm cycle talking about “we need to un-do the ban and start transing kids again” they are sure to loose. Americans are so sick of the lunacy. This is the best and maybe only chance we have to stomp it out', 'created': '2024-11-12 18:28:48', 'submission_id': '1gpclvm'}
{'comment': "I have ADHD and I don't see any similarities.", 'created': '2024-11-12 07:33:10', 'submission_id': '1gpclvm'}
{'comment': 'Trans is mainly part of identity and how you view yourself, and has a bit of a gray line with what’s considered a trans or possible trans person and who’s not.\nADHD is an incurable mental disorder, something with a lot more research and complexity put into it, they should not be compared.', 'created': '2024-11-12 06:06:42', 'submission_id': '1gpclvm'}
{'comment': 'You know \nBack before modern medicine.\nPeople worked hard and could burn off extra energy \nIt was not a problem then\nI have a son that was medicated to point of staring at a wall\nI fought to get his meds reduced\nHe was happier not on the meds.', 'created': '2024-11-12 17:49:18', 'submission_id': '1gpclvm'}
{'comment': 'Are you sterilized or unable to achieve orgasm? No. Because this is bullshit. Puberty blockers are not reversible, not safe, and not the same.', 'created': '2024-11-12 05:40:12', 'submission_id': '1gpclvm'}
{'comment': "I Have AuDHD, whilst I agree with you, it's worth noting that a fair proportion of those purporting to be trans are on the autistic spectrum. If there is a link, however tenuous, i guess that's where you'd find it but I'm def not an expert 🤷", 'created': '2024-11-12 12:58:57', 'submission_id': '1gpclvm'}
{'comment': 'Trans can influence behavior but isn’t behavior based, more identity based.\nADHD does influence behavior as it’s behavior based.', 'created': '2024-11-12 06:08:34', 'submission_id': '1gpclvm'}
{'comment': "I see the comparison in the gray line. How does trans have a gray line but ADHD and autism doesn't? Is there a blood test for ADHD? Is there some sort of non mental pure physics test for ADHD. Again IMO what they have in common is neither really exist. It is only a way to label some one as different.\n\nAlso men dressing like women and wanted to be treated as such thousands of years old. The idea that you had difficulty focusing and this is some kind of disease a few hundred years old.", 'created': '2024-11-12 13:48:20', 'submission_id': '1gpclvm'}
{'comment': "Yes, this and being bored. We are constantly throwing parties outside, in nature. Usually outside cell phone range. Parents say it will be boring and I tell them you wait till you see what a kid can do with a stick and a tree to hit it on.\n\nWe, I'm guilty to, constantly give our children mental stimulation and less physical.", 'created': '2024-11-12 22:06:39', 'submission_id': '1gpclvm'}
{'comment': "Ngl, though I was on Vyvanse for a decade and it screwed me up, even 5 years after I've stopped taking it I have noticed the effects.", 'created': '2024-11-12 09:13:42', 'submission_id': '1gpclvm'}
{'comment': 'Oh shit I had to Google AuDHD. Wtf is wrong with people. I all 5 of the things one might me. I hate people and going places. I am social awkward. I can listen to b the same song over and over again just fine.\n\nDoes that mean I need to be diagnosed as some one with a disease? IMO trans kids are being confirmed by the same psychologist that diagnosed all this autism and ADHD. They want to label you as diffrent. They want you on drugs.', 'created': '2024-11-12 14:05:43', 'submission_id': '1gpclvm'}
{'comment': 'I\'m diagnosed as AuDHD too. These people need support, but I wouldn\'t say autism or ADHD is the cause of their transgenderism thoughts, it might be part of it, but they definitely have some other issues making them believe they are something they are not biologically. I can\'t speak for all autistics, but I myself err on the side of facts and logic, to a pedantic level. My brain would explode from the juxtaposition of trying to believe a man can be a woman and visa versa. I know that some with ADHD can show a wide variety of symptoms. I have inattentive type, or what used to be called "ADD". Basically I get distracted by something related to my autistic interests, to the point where it can put my life in danger. For example, I\'ve gotten hit by a car 3 times in my life because as I was walking across a road or through a parking lot, something distracted me and I did not know how to react/couldnt react soon enough.', 'created': '2024-11-13 06:47:48', 'submission_id': '1gpclvm'}
{'comment': "More identity based, haha. Like me and my behavior does not help make up my identity. \n\nName a physical test you can take for either. A clear cut way of saying you have a disease. The idea we afirm people ideas that they/or someone else, are some how so diffrent from everyone else that they need to be placed on some sort of medication. \n\nAgain I will say it. What they have in common is I don't believe either is a real disease.", 'created': '2024-11-12 13:57:25', 'submission_id': '1gpclvm'}
{'comment': 'Correct, forgot about the spectrum thing. My bad.', 'created': '2024-11-12 20:31:28', 'submission_id': '1gpclvm'}
{'comment': 'Ipad babies', 'created': '2024-11-13 13:44:02', 'submission_id': '1gpclvm'}
{'comment': 'Oh, those drugs are definitely not by any means good for you, but comparing them the chemically castrating “puberty blockers” is completely illogical.', 'created': '2024-11-12 15:58:59', 'submission_id': '1gpclvm'}
{'comment': 'I think all of the boxes they put us in have always been there, there has always been socially awkward people that dont quite fit in. That there is somebody with letters after their name to diagnose us is pretty much irrelevant if we can function in society. I\'m quite low on the spectrum, so aside from being a bit weird sometimes i can function. The trans thing is just another box. Problem is that they try to "cure" it. It\'s a psychological problem that they try to physically resolve. I don\'t get it. That\'s my take... and yeah of they want us medicated, they can manage us easier. Calling us witches and burning us is frowned upon these days 😁', 'created': '2024-11-12 14:51:33', 'submission_id': '1gpclvm'}
{'comment': "Autism and adhd certainly make an interesting mix of thought processes. I get hyperfixated on some things at times, but other times have real trouble keeping a though in my head. Wsnting to do 7 different things, but being rooted to the spot by either indecision, or being locked into patterns of behavior. As i said before, I'm told I'm fairly low on the spectrum, but even so, without my wife i would have some real trouble functioning. Research has shown that autism in particular is one predisposition for body dysphoria, although I'm kind of with you on the subject, the dichotomy blows my mind. I think the affirmation is possibly part of the issue. It's a crude example but my uncle suffered a psychotic break, and went through a phase of thinking his radiators were talking to him, can you imagine if we had affirmed that? The medicalization Of it is where i take issue. Especially amongst children.\nAs an aside, i really hope you don't get hit by any more cars, you seem like an interesting person 🙂", 'created': '2024-11-13 13:48:19', 'submission_id': '1gpclvm'}
{'comment': 'I think allowing a group of people like a goverment, association, religion etc to set standards on what "normal" behavior, and what means to treat it, for people is a dangerous road to walk. The acts of murdering those who are diffrent, like the witchs, first you must define who they are. How well are they giving these "problem" a definition? Are they open-ended like how to find a witch?\n\nI truly belive part of the problem today is every one thinks everyone has some kind of problem and every one knows how to fix it. But when it comes to kids, it\'s not really a problem and the solutions are usually worse that letting the kid grow out of it.\n\nThink maybe the witch trials were really A town of autistic men killing this crazy lovey touching folks? I will say, to me, the people who wants hugs from me is really the ones with the disease.', 'created': '2024-11-12 22:02:00', 'submission_id': '1gpclvm'}
{'comment': 'I can totally relate! Both my mother and my brother who I’ve been estranged from for going on 25 years now, both have drug addiction induced schizophrenia and so does one of my uncles. I’ve heard it all, from “I own Microsoft” to “Mickey mouse is my banker” lol and no we do not affirm those delusions. At some point I attempted to just let them say whatever crazy bizarre thing they believed and would engage in the conversation with them to keep the peace if it was a situation where I felt like if I didn’t respond in some way they would feel threatened and become violent, especially in the case of my brother. I come from an incredibly dysfunctional family, but my dad is alright and he keeps to himself, like me. I’m more significantly autistic and am diagnosed as “level 2”… I reach milestones in life later than most but otherwise I’m ok, I struggle with communication a lot though.\xa0\xa0\n\n\n\xa0\xa0\xa0I really do worry about all the young people who are vulnerable with developing minds and who may be autistic and are being told they’re something they’re not, exploited rather than given the care and support they need to eradicate the delusional thoughts. Kids are easily influenced by the internet, peer groups and celebrities/icons they like. So it’s important that their parents are monitoring who and what they have access to, not in a controlling abusive way, but in a parental loving way. Too many parents just don’t care or don’t see what the big deal is. If I had a child who told me their best friend suddenly wanted to swap genders, I’d probably suspect their home life is full of neglect and have to cut the friendship off to protect my own child from being influenced by dysfunction. It’s a hard choice that too many parents aren’t willing to make, but many are and their kids go on to develop healthy and have firm boundaries. I’d also find it inappropriate for my child to be around peers who are obsessed with sex and gender. It’s kinda creepy. But I would wish those kids well and hope they seek therapy for the trauma they have experienced that is causing them to disassociate from their own bodies. You seem like a very interesting person to! :)', 'created': '2024-11-13 20:29:35', 'submission_id': '1gpclvm'}
{'comment': 'Well put friend, agree with everything you said.', 'created': '2024-11-12 22:30:48', 'submission_id': '1gpclvm'}
{'comment': "Tell you what, I'll try not to get hit by any cars either, deal?", 'created': '2024-11-13 20:34:27', 'submission_id': '1gpclvm'}
{'comment': "Haha, good deal! It's a crazy world out there friend, stay safe and be well. :)", 'created': '2024-11-13 23:41:35', 'submission_id': '1gpclvm'}
{'comment': 'You too. :)', 'created': '2024-11-14 03:00:18', 'submission_id': '1gpclvm'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 04:24:35', 'submission_id': '1gpbfwz'}
{'comment': 'I’m imagining a giant fire pit with $1.2 billion burning in the middle of it.\n\nI’m also amused that my little $40 donation did more than the billion they raised.', 'created': '2024-11-12 07:00:27', 'submission_id': '1gpbfwz'}
{'comment': 'Just read the article and see how absolutely stupid this person is. Basically, upset because politicians lied to raise money. Now who, without being in the raising money for politicians business, is surprised that the politicians lied? Now this person supposedly works in raising money for politics and has experience in the field. Yet they are saying they were misled by others about raising money and chances of winning and it turns out not to be a sure thing winning. Oh God, what an idiot!\n\nSomething tells me they are just trying to cover their own ass for their own lies.', 'created': '2024-11-12 07:55:30', 'submission_id': '1gpbfwz'}
{'comment': "If they wanted to win they should have fired Nancy Pelosi in the first Trump term, as she wasted all the time Democrats had to do things that might benefit voters on Trump impeachment hearings, and Trump Russia investigations.\n\nI couldn't help but laugh when Nancy Pelosi went on a rant recently attacking Biden, claiming all the accomplishments of 2020-2022 as her own, even though she never proposed a single thing on her own, and had a personal vendetta and impeachment obsession against Trump.\n\nI think that no matter who ran, Trump was going to win, and Democrats needed to stop beating themselves up over a race they couldn't win without turning the clock back to 2016 and using the time they had in the House and Senate differently. \n\nBut by her own admission she claimed impeaching and going after Trump was all her idea, if she is claiming 2020-2022 was all her work. Maybe Trump should investigate Nancy Pelosi in 2025, and find out what she is hiding. xD", 'created': '2024-11-12 15:38:45', 'submission_id': '1gpbfwz'}
{'comment': "A lot of left wing people keep saying they are smarter than right wing people because left wing people have more college graduates. \nI imagine them having to switch all the way to we weren't made smart enough to see we were being fooled by politicians and social media is a BIG pill to swallow and they are unable to do it.", 'created': '2024-11-16 12:26:13', 'submission_id': '1gpbfwz'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 03:57:47', 'submission_id': '1gpaxop'}
{'comment': 'I’m pretty sure Reddit is going to ban you for this.', 'created': '2024-11-12 05:35:51', 'submission_id': '1gpaxop'}
{'comment': 'So I heard that her campaign paid $200k for a seven minute interview on the esteemed “Call Her Daddy” podcast and $1M to Oprah? WTF i thought interviews were free? Did I miss something? Is this normal practice?', 'created': '2024-11-12 07:06:35', 'submission_id': '1gpaxop'}
{'comment': "I'm sure she took home some lovely parting gifts for her troubles", 'created': '2024-11-12 05:03:01', 'submission_id': '1gpaxop'}
{'comment': 'Apparently she cooks. Maybe a food truck future in Brentwood, featuring Indian/ Jamaican fusion? With an Imodium chaser?', 'created': '2024-11-12 07:24:29', 'submission_id': '1gpaxop'}
{'comment': 'Bahhhhhh 🤪', 'created': '2024-11-12 04:11:21', 'submission_id': '1gpaxop'}
{'comment': ' Why didn’t the Voters turn up for Harris? Plain and simple, they didn’t like their candidate who was the least popular VP in recorded history, who bypassed the nomination process, is directly tied to the least popular president in modern history who created massive 20% inflation along with record high interest rates, opened the borders, eliminated U.S. energy independence, allowed 2 major wars to continue, refused to protect women in locker rooms and in sports, attacked parents, attacked the 1st and 2nd amendments and attacked religion. \n\nHarris refused to support Israel, failed miserably as the Border Czar, refused open, unscripted tv interviews, can’t speak without a teleprompter, had zero policies, said she wouldn’t do anything different than Biden did, was part of covering up Biden’s extreme mental decline , spent over a BILLION DOLLARS in her failed campaign and was not endorsed by major papers across the U.S.? 75% of the country thinks the country is going in the wrong direction.', 'created': '2024-11-13 10:02:21', 'submission_id': '1gpaxop'}
{'comment': 'Aww shucks 🥲', 'created': '2024-11-12 18:26:30', 'submission_id': '1gpaxop'}
{'comment': 'She was a terrible candidate who only won a few percent in the 2020 Democratic primary. Democratic leadership imposed her on the US electorate. Dems never listen. Their leadership believes they know better than the typical voter.', 'created': '2024-11-12 20:04:21', 'submission_id': '1gpaxop'}
{'comment': 'What i think the photo of her is thinking \n"crap....I shouldnt have called all 20 year olds stupid. They were smart enough to actually listen to that."', 'created': '2024-11-13 01:21:13', 'submission_id': '1gpaxop'}
{'comment': 'For posting a link to site known for satire ? 🤪', 'created': '2024-11-12 05:51:03', 'submission_id': '1gpaxop'}
{'comment': 'Now you know why her campaign is bankrupt. 😆', 'created': '2024-11-12 07:15:06', 'submission_id': '1gpaxop'}
{'comment': 'Buying endorsements, don’t you know instead of using your brain and looking at the facts of what a candidate stands for liberals trust someone who sings about break ups to tell them who to vote for…', 'created': '2024-11-13 11:36:13', 'submission_id': '1gpaxop'}
{'comment': 'My response exactly... 😁', 'created': '2024-11-12 04:27:55', 'submission_id': '1gpaxop'}
{'comment': "And that's putting it mildly. 😁", 'created': '2024-11-13 19:56:14', 'submission_id': '1gpaxop'}
{'comment': 'Democrats brought it upon themselves... 😁', 'created': '2024-11-12 20:09:17', 'submission_id': '1gpaxop'}
{'comment': 'If you post this on the Democrat group they’ll probably agree with the article 🤪🙃🤣', 'created': '2024-11-12 07:07:38', 'submission_id': '1gpaxop'}
{'comment': 'TIL reality is satire lmao', 'created': '2024-11-12 17:34:38', 'submission_id': '1gpaxop'}
{'comment': 'Did she pay herself to dodge questions?', 'created': '2024-11-12 07:21:11', 'submission_id': '1gpaxop'}
{'comment': 'They definitely did. The Democratic leadership is pretty arrogant and elitist, in my opinion', 'created': '2024-11-12 20:10:55', 'submission_id': '1gpaxop'}
{'comment': 'I was literally told - she doesn’t have anything to do with the budget and I don’t understand government. They don’t feel like she has the power to destroy the budget for the government', 'created': '2024-11-12 13:41:44', 'submission_id': '1gpaxop'}
{'comment': 'She paid people to interview her and she *still flubbed it* \n\nThink on that for a minute 😳', 'created': '2024-11-12 14:01:59', 'submission_id': '1gpaxop'}
{'comment': "No she paid so they wouldn't ask question she couldn't dodge, the fact that she was still too dense to dodge them is just and indicator of the bullet we dodged.", 'created': '2024-11-17 02:38:27', 'submission_id': '1gpaxop'}
{'comment': "It's ok, they're paying the price for that arrogance and the bleeding off of support has just started. 😆", 'created': '2024-11-12 20:16:26', 'submission_id': '1gpaxop'}
{'comment': 'Yep, she has nothing to do with the economy, foreign policy, the border… this country just runs on autopilot. People are clowns 🤡', 'created': '2024-11-12 14:53:38', 'submission_id': '1gpaxop'}
{'comment': 'Imagine her team in the cabinet 😱', 'created': '2024-11-12 14:51:29', 'submission_id': '1gpaxop'}
{'comment': 'I used to think Trump was too harsh on her lol', 'created': '2024-11-12 17:35:51', 'submission_id': '1gpaxop'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 03:14:56', 'submission_id': '1gpa3g5'}
{'comment': 'Little Marco!', 'created': '2024-11-12 03:24:26', 'submission_id': '1gpa3g5'}
{'comment': 'I think this is a great move. When was the last time we had a Secretary of State who was fluent in multiple languages?', 'created': '2024-11-12 09:06:31', 'submission_id': '1gpa3g5'}
{'comment': 'This is a great choice. Rubio is a thoughtful person who is bilingual', 'created': '2024-11-12 20:06:59', 'submission_id': '1gpa3g5'}
{'comment': 'Is this good or bad?', 'created': '2024-11-12 03:19:58', 'submission_id': '1gpa3g5'}
{'comment': 'Jeb!', 'created': '2024-11-12 10:10:16', 'submission_id': '1gpa3g5'}
{'comment': 'If we get this and Jeb in senate I will be very optimistic on a second Trump term.', 'created': '2024-11-12 19:06:55', 'submission_id': '1gpa3g5'}
{'comment': 'This is a bad move. Keep the neocons out!', 'created': '2024-11-12 04:18:57', 'submission_id': '1gpa3g5'}
{'comment': 'NO!\xa0 keep Marco in senate!\xa0 Unless we put Jeb into the Senate\xa0 to replace him.\xa0', 'created': '2024-11-12 03:18:23', 'submission_id': '1gpa3g5'}
{'comment': 'Still wish Rubio got the nod as the Republicans to represent the party, but still not bad all thing considered. He will do well in this new position', 'created': '2024-11-12 19:31:53', 'submission_id': '1gpa3g5'}
{'comment': 'Off topic but ….\nIf Biden had any balls he’d pardon Trump', 'created': '2024-11-12 17:06:12', 'submission_id': '1gpa3g5'}
{'comment': 'He should be confirmed easily enough.', 'created': '2024-11-13 11:02:14', 'submission_id': '1gpa3g5'}
{'comment': 'That water bottle impersonation Trump did of Marco was fcking hilarious lmao', 'created': '2024-11-12 09:06:58', 'submission_id': '1gpa3g5'}
{'comment': 'Good. He deserves it after that madison square speech', 'created': '2024-11-12 03:24:45', 'submission_id': '1gpa3g5'}
{'comment': 'This', 'created': '2024-11-13 19:13:51', 'submission_id': '1gpa3g5'}
{'comment': "DeSantis gets to appoint a new Senator in Florida. So it's a wash. We still keep that 53 seat majority.", 'created': '2024-11-12 03:19:39', 'submission_id': '1gpa3g5'}
{'comment': 'Jeb!', 'created': '2024-11-12 03:23:32', 'submission_id': '1gpa3g5'}
{'comment': 'I’m surprised Rubio ever recovered from that 😂', 'created': '2024-11-12 12:34:02', 'submission_id': '1gpa3g5'}
{'comment': "Okay.\xa0 As long as it's a republican.\xa0\xa0", 'created': '2024-11-12 03:21:41', 'submission_id': '1gpa3g5'}
{'comment': 'I miss the Jeb memes', 'created': '2024-11-12 03:43:24', 'submission_id': '1gpa3g5'}
{'comment': "yeah or i forgot. Giuliani\xa0 he's in Florida now.\xa0 \xa0", 'created': '2024-11-12 03:25:35', 'submission_id': '1gpa3g5'}
{'comment': 'If it’s DeSantis picking, they will be.', 'created': '2024-11-12 17:05:21', 'submission_id': '1gpa3g5'}
{'comment': 'Please clap', 'created': '2024-11-12 03:43:45', 'submission_id': '1gpa3g5'}
{'comment': 'Good.\xa0 Guiliani or Jeb .', 'created': '2024-11-12 17:08:14', 'submission_id': '1gpa3g5'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 03:13:56', 'submission_id': '1gpa2ov'}
{'comment': "Well we do finally have Democrats acknowledging election fraud. And we did call it, we knew it would take a Trump victory for them to call for Election Reform. \n\nWhich is great, that's exactly what we want. Airtight, redundant and fully transparent election process's. Confirmed ID voting. \n\nNo illegals voting or fraud whatsoever. That's what we've been wanting since 2020 so i'm relieved Democrats do agree with us on something.", 'created': '2024-11-12 15:50:43', 'submission_id': '1gpa2ov'}
{'comment': 'Check the 11pm Milwaukee dump that almost flipped Wisconsin for Harris and did flip the senate seat… very strange how these mail in ballot dumps go 90-10 for the Democrats', 'created': '2024-11-12 17:08:04', 'submission_id': '1gpa2ov'}
{'comment': 'Hunt down all election fraud!… it is all vile!…', 'created': '2024-11-12 05:25:27', 'submission_id': '1gpa2ov'}
{'comment': 'The silly thing is how tables have turned. If you were old enough, you might remember how the Democrats used to be the ones claiming election fraud and claiming election machines had issues right up till 2020. \n\nStep into 2020, and Democrats have the chance to work with Republicans to fix all the election issues that bothered them in all those past elections, and they refused to do so. Then suddenly the Democratic candidate loses, and they are back to claiming what they did all past elections when Republicans won.', 'created': '2024-11-12 15:24:41', 'submission_id': '1gpa2ov'}
{'comment': 'Of course they did. Trump only won because he won the vote in the critical precincts outside the margin of error.', 'created': '2024-11-13 02:34:32', 'submission_id': '1gpa2ov'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 02:59:22', 'submission_id': '1gp9s0n'}
{'comment': 'The world is getting better.', 'created': '2024-11-12 05:53:30', 'submission_id': '1gp9s0n'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 02:32:57', 'submission_id': '1gp9934'}
{'comment': 'Newsmax called it also.', 'created': '2024-11-12 02:43:58', 'submission_id': '1gp9934'}
{'comment': 'I called it Tuesday night.', 'created': '2024-11-12 03:11:20', 'submission_id': '1gp9934'}
{'comment': 'RCP called it yesterday.', 'created': '2024-11-12 02:44:54', 'submission_id': '1gp9934'}
{'comment': 'Fantastic news! Trifecta and the popular vote!!', 'created': '2024-11-12 04:14:33', 'submission_id': '1gp9934'}
{'comment': 'It’s true!', 'created': '2024-11-12 02:55:30', 'submission_id': '1gp9934'}
{'comment': 'Fox still shows 214. But i checked and the demo would need a miracle. I hope we can unlucky this country in 4 years.', 'created': '2024-11-12 05:54:08', 'submission_id': '1gp9934'}
{'comment': 'It was bound to happen, \n\nAnd one night it did', 'created': '2024-11-12 15:46:57', 'submission_id': '1gp9934'}
{'comment': 'I think we all did, but confirmation is sweet.', 'created': '2024-11-12 03:14:32', 'submission_id': '1gp9934'}
{'comment': "Okay, that's 3 sources. I hope it's true.", 'created': '2024-11-12 02:51:37', 'submission_id': '1gp9934'}
{'comment': 'https://decisiondeskhq.com/results/2024/General/US-House/\n\nhttps://www.newsmax.com/election-maps/#house\n\nhttps://thehill.com/homenews/state-watch/4974235-house-republicans-control-majority/\n\nhttps://www.newsnationnow.com/politics/2024-election/house-balance-of-power-2024-republicans/\n\nhttps://pjmedia.com/paula-bolyard/2024/11/11/breaking-republicans-will-keep-control-of-the-house-n4933998\n\n👍', 'created': '2024-11-12 03:24:44', 'submission_id': '1gp9934'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 01:34:06', 'submission_id': '1gp80i5'}
{'comment': '👋 Waves 👋 at slippery slimmy demorat humping the down vote button. OK, clean up that mess. 😆', 'created': '2024-11-12 01:57:19', 'submission_id': '1gp80i5'}
{'comment': 'Quick better make some phony ballots', 'created': '2024-11-12 05:03:19', 'submission_id': '1gp80i5'}
{'comment': 'Chuck Schemer', 'created': '2024-11-12 05:36:28', 'submission_id': '1gp80i5'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-12 00:01:43', 'submission_id': '1gp5z0j'}
{'comment': "Good riddance I say. If they move to Canada, that couple will deal with Canadian issues which aren't great. If this woman is that afraid, she should leave the US. All I've heard in the last four years was about how important democracy is. Now that people in the US exercised their right to vote, this woman can't handle it. SMH.", 'created': '2024-11-12 00:26:09', 'submission_id': '1gp5z0j'}
{'comment': 'I don’t feel bad for them. They need to get out of their cocoon and see what America is all about. The good, the bad, and the ugly so they can make informed decisions. \n\nThe MSM needs to be flushed down the toilet.', 'created': '2024-11-12 00:07:16', 'submission_id': '1gp5z0j'}
{'comment': 'I wish some of these people would go somewhere in the world with actual oppression. People here wanna be oppressed so bad, without even thinking of the way women are treated around the world', 'created': '2024-11-12 00:42:11', 'submission_id': '1gp5z0j'}
{'comment': 'Also no one is saying "her body my choice".', 'created': '2024-11-12 00:10:21', 'submission_id': '1gp5z0j'}
{'comment': 'I have zero sympathy for these people. If you’re that stupid you shouldn’t be breeding.', 'created': '2024-11-12 00:09:23', 'submission_id': '1gp5z0j'}
{'comment': 'Something that never happened for 100 Alex.', 'created': '2024-11-12 00:35:11', 'submission_id': '1gp5z0j'}
{'comment': 'No 30 year old ever talked to someone who watched Hitler rise to power. This is likely falsified for reactions', 'created': '2024-11-12 00:35:04', 'submission_id': '1gp5z0j'}
{'comment': 'It is sad. The Democratic Party is using mass media to manipulate people just like Hitler manipulated his own people to come to accept the annihilation of the Jewish population in concentration camps. The left always accuses the other party of what they’re doing themselves.\n\nThey separated people into race and gender, which is what Hitler did with the “aryan race” and the “jews”. The Democratic Party also weaponized the justice department against their political opponent to try to imprison him. They tried to assassinate Trump. They tried to erase history by removing monuments all over the US. They also told the entire country that if they don’t vote for them, that they’re nazis. \n\nThe Democratic Party also infiltrated the department of education and began to indoctrinate children. They told children that they had no identity. They also control most university campuses, where they continue to indoctrinate young adults. They’re pro-war, and they blatantly sided with the Palestinians because they apparently hate the Jews.\n\nFunny how they claim to be the party of “unity” and “tolerance” and they dare call themselves the DEMOCRATIC party. Also remember, the democrats created the Ku Klux Klan, very likely stole the 2020 election and installed Kamala Harris, she was never voted in a primary. They are also communists. Think about all of this for a second, they’re the biggest evil America has ever seen.', 'created': '2024-11-12 04:36:26', 'submission_id': '1gp5z0j'}
{'comment': 'This garbage is everywhere right now. X, Reddit, it\'s all about the same. I think it\'s all coming from bot farms or psychos but I can\'t tell the difference at this point. 🤔\n\nI guess if someone is that crazy, the only response is, "Bye Felicia."', 'created': '2024-11-12 00:44:22', 'submission_id': '1gp5z0j'}
{'comment': 'Absolute lunacy', 'created': '2024-11-12 00:03:57', 'submission_id': '1gp5z0j'}
{'comment': '34 isn’t that old. He can still divorce her find a good woman and start an amazing family in America.', 'created': '2024-11-12 00:42:29', 'submission_id': '1gp5z0j'}
{'comment': 'Its honestly baffling just how many millions of americans can be manipulated and brainwashed by an obviously biased media and politicians. Especially when the facts and truth are in plain sight right in front of them. Like the gen z kids. That group is in alot of trouble. But id does give me hope knowing most Americans are smart enough to see past the lies and sick minded policies fo the left. I mean that election was an absolute beat down so the future looks bright. And honestly the democratic party is in trouble for years to come. They just dont have the ability to learn from things. Very proud of my fellow Americans right now.', 'created': '2024-11-12 00:39:11', 'submission_id': '1gp5z0j'}
{'comment': 'Her real fear walking down the street should be from the 12-20 million illegals let in to our country, unvetted.', 'created': '2024-11-12 01:03:54', 'submission_id': '1gp5z0j'}
{'comment': "The supply doesn't meet the demand to be a constant oppressed victim...media plays off of fears and then boom your brainwashed into feeling like everyone is bad or Nazis and you are good and virtuous warrior . It's twisted and it worked over a long period of time.", 'created': '2024-11-12 00:20:57', 'submission_id': '1gp5z0j'}
{'comment': 'Why feel bad? They screamed in your ear while you tried to show them a different opinion and facts that contradict what they keep believing on twitter and the news.\n\nShe’s gonna look back and say “dam I can’t believe I took such drastic actions to the point I ruined my future and marriage, all to just fit in”', 'created': '2024-11-12 05:05:12', 'submission_id': '1gp5z0j'}
{'comment': 'The delusion is strong. My local sub is a cesspool of these people. Like we literally already had trump for 4 years and the economy was booming and no wars and no rights were taken away from women…', 'created': '2024-11-12 00:17:07', 'submission_id': '1gp5z0j'}
{'comment': 'Bye bye future Canadian… the funny part is they won’t want these free loaders either.', 'created': '2024-11-12 00:24:03', 'submission_id': '1gp5z0j'}
{'comment': 'Drama queens being drama queens', 'created': '2024-11-12 01:00:53', 'submission_id': '1gp5z0j'}
{'comment': 'I truly believe these are all troll posts to sew discord in the US. Nothing has fucking changed. At all.', 'created': '2024-11-12 00:57:10', 'submission_id': '1gp5z0j'}
{'comment': 'They’re not well-rounded enough to have even considered that the other side isn’t actually driven by racism and hatred toward women. They only see what they’re fed on Tik-tok and haven’t made any effort to understand the other side. They’re scared, desperate, and confused. Their world view is built on lies. The shattering of their bubble is physically painful for them, as they have to confront the fact that their views are unpopular by a huge margin. The whole country rejected them. For 16 years now, they’ve assumed they were the majority. They thought they were on the right side of history. It’s all collapsing, and they are NOT taking it well.', 'created': '2024-11-12 00:21:09', 'submission_id': '1gp5z0j'}
{'comment': 'Why should I feel bad for them, they want to be idiots fine, I have my life and have no time to deal with crybabys.', 'created': '2024-11-12 00:20:09', 'submission_id': '1gp5z0j'}
{'comment': 'I said that the other day and all of the Republicans went crazy on me. They were all reminding me of what the hell they put us through. And they did! But they’re literally deleting their period trackers because they think that the states are spying on them to see if they’re having abortions or not. They literally think that Trump is Hitler. I hate Kamala and Obama and Biden. They totally brainwashed all these young girls and women. And they lowered their morale. For example, 10 years ago if 21 million illegal aliens came through a border that would be a catastrophe and it would be on every channel. But they have infiltrated the American minds to believe that it’s not that big of a deal. A good example is when JD Vance was talking to that interviewer and she said (in a real cocky ) there have only been a handful of apartment complexes that have been taken over by Venezuelan gangs in Aurora, Colorado.” AND SHE BELIEVED IT WAS NO BIG DEAL!! And JD Vance very Cooley said, “do you hear yourself, Linda? Only a handful of apartment complexes in Aurora, Colorado. I’ve been taken over by Venezuelan gangs?” And that’s how they lower the moral of the weak minded. But we call them Democrats. Don’t ever let anybody weaken your morale. Stay true to what you know to be right.', 'created': '2024-11-12 02:48:19', 'submission_id': '1gp5z0j'}
{'comment': 'Get a divorce get a divorce!', 'created': '2024-11-12 03:49:11', 'submission_id': '1gp5z0j'}
{'comment': "Yeah. It's hard not too. I feel bad for a lot of decent men caught in the middle of these temper tantrums. Not all liberals are extremists, and not all men married to liberals are they themselves liberal. \n \nBut on the other hand, these poor souls end up better off after they leave. If someone is that obsessed with politics that they'd abandon you for them, I can't imagine the relationship is even worth having.\n\nIt's just insane how far they're taking this. Like they ACTUALLY believe it's the end of the world. 4 years from now, when Trump finally gets to retire in peace after risking his neck saving our asses, and we vote in another, hopefully republican, some of these nut bars will come to terms with reality.", 'created': '2024-11-12 05:00:39', 'submission_id': '1gp5z0j'}
{'comment': 'This isn’t real. These people are literally making up fake scenarios. It’s actually hilarious.', 'created': '2024-11-12 05:53:41', 'submission_id': '1gp5z0j'}
{'comment': 'The left are completely brainwashed by the fear mongering of the woke nonsense feed to the by MSNBC. How can any intelligent person believe anything that network says. The left uses fear to invoke an emotional response and then their followers become easily manipulated.', 'created': '2024-11-12 13:46:39', 'submission_id': '1gp5z0j'}
{'comment': 'Also, despite what she thinks, one doesn’t just up and move to another country, they have ..wait for it…strict immigration laws 😅🤣😂', 'created': '2024-11-12 15:38:25', 'submission_id': '1gp5z0j'}
{'comment': 'I do feel bad for them because I was a Democrat until this past spring. They truly do believe what they’re saying. It’s really sad, but despite the fascist they think Trump is, they still have the right to leave, and I wish them a fond farewell.', 'created': '2024-11-13 02:00:09', 'submission_id': '1gp5z0j'}
{'comment': "Glad she's doing ok but millions of Americans including myself were driven into poverty thanks to the scamdemic. So elections don't matter to her.", 'created': '2024-11-13 02:26:41', 'submission_id': '1gp5z0j'}
{'comment': 'BYE, Felisha!!!', 'created': '2024-11-12 00:30:06', 'submission_id': '1gp5z0j'}
{'comment': 'I wonder if there is some kind of Class Action Lawsuit against Dems and media for what they’ve done to the mental health in this country.', 'created': '2024-11-12 01:03:20', 'submission_id': '1gp5z0j'}
{'comment': "This is why I have been here talking about the importance of empathy and compassion. These people are not stupid by default, and they're not irrational by default. They have been lied to for 8 consecutive years. We *all* know how bad it can be when media you trust lies to you. Maybe some will leave. Most won't. What's important is to prove them wrong about their worst fears. Like it or not, your fellow Americans are in fear and in pain. Be a good citizen to them. Most will come around", 'created': '2024-11-12 01:53:37', 'submission_id': '1gp5z0j'}
{'comment': "One less democrat voter when these people don't have children! Republicans are pro family and will continue having children", 'created': '2024-11-12 06:33:54', 'submission_id': '1gp5z0j'}
{'comment': 'The lack of brain cells among liberals always surprises me. Yet at the same time it doesn’t.', 'created': '2024-11-12 00:20:37', 'submission_id': '1gp5z0j'}
{'comment': 'This is crazy\n\nSo much for kindness and tolerance. All she did was prove that she married him fraudulently', 'created': '2024-11-12 04:26:03', 'submission_id': '1gp5z0j'}
{'comment': 'Bruh \n\nI am a therapist. This stuff needs on average a year+ to be treated if the person acknowledges that there s something wrong with them, not with the world.\nIf the client has no motivation for treatment, nothing s gona work , let alone arguing on the internet', 'created': '2024-11-12 00:57:05', 'submission_id': '1gp5z0j'}
{'comment': "Oh my God if this guy is wondering if he should divorce her he doesn't see the bullet he would be dodging if he just let her go back to Canada", 'created': '2024-11-12 00:44:46', 'submission_id': '1gp5z0j'}
{'comment': 'I will never feel bad for them. They chose this.', 'created': '2024-11-12 00:59:32', 'submission_id': '1gp5z0j'}
{'comment': 'Literally the ONLY people I’ve heard “Her body, my choice” from is leftists.\n\nEither that was a leftist who put that on their window to stir further unrest, or this story never happened.', 'created': '2024-11-12 01:21:31', 'submission_id': '1gp5z0j'}
{'comment': 'Bot account. All of her posts before this have been to one community and are youtube shorts cinema rips.', 'created': '2024-11-12 02:04:02', 'submission_id': '1gp5z0j'}
{'comment': "I do too, however there is something I want everyone to understand. I want to assure ourselves that we are not brainwashed conservatives. Let's be honest, brutally honest, and understanding at the same time. I understand that the left has not shown us that luxury but we need to. We need to be an example. We have an opportunity to make history here, be on your A-Game folks!", 'created': '2024-11-12 02:25:18', 'submission_id': '1gp5z0j'}
{'comment': "Ya, when I was a brainwashed lefty around a decade ago, it just didn't seem believable that *this* many people, plus organizations that are supposed to have merit, would be duped.\n\nNope, huge ass bandwagon fallacy.\n\nBesides that, she said she was an engineer, it astounds me how people can have enough brains to be skilled at something niche like that, yet be dumber than a child.\n\nAnd of course, she's coming from a place where it's easy to control women.....fear.\n\nTheir emotional need to feel safe, even if they really aren't, surpasses all logic and almost impossible to break through.\n\nHer biggest fear she should have, is her own fear, not Trump.", 'created': '2024-11-12 02:30:23', 'submission_id': '1gp5z0j'}
{'comment': 'I just think it\'s amazing how brainwashed the left is. At work, I am mentoring a young woman on her professional development. We had a call last week where she vented like a 2 year old. Her attitude is that anyone who voted for Trump should be raped or their loved ones should be raped, then forced to carry the child because "his" Supreme Court overturned Rowe. She spent her entire session calling President Trump and his supporters Nazis, rapists, pedophiles, communists and everything else the news media spouts. I asked her how remanding the abortion issue to the states was bad, and she responded that I was a man so my opinion shouldn\'t count. I asked her whether my opinion would count if I pretended to be a woman. She didn\'t take that well.\n\nI guess I\'ll have more free time, as I won\'t mentor someone who acts so juvenile.', 'created': '2024-11-12 12:29:00', 'submission_id': '1gp5z0j'}
{'comment': "She probably cheated on her husband and just use Trump's victory as an excuse to divorce her husband. I hope her husband will marry a conservative lady.", 'created': '2024-11-12 00:24:25', 'submission_id': '1gp5z0j'}
{'comment': "Smell ya later eurotrash, don't let the door hit you on the way out. Stay childless or leave, win win for me", 'created': '2024-11-12 00:27:21', 'submission_id': '1gp5z0j'}
{'comment': 'Reddit is full of these posts at the moment. They’re so pathetic.', 'created': '2024-11-12 00:37:21', 'submission_id': '1gp5z0j'}
{'comment': 'Where do I sign up to help her pack??? You know, after I help Cher pack up her wigs and shit', 'created': '2024-11-12 03:08:11', 'submission_id': '1gp5z0j'}
{'comment': 'I bet her husband gets pregnant lol', 'created': '2024-11-12 03:13:04', 'submission_id': '1gp5z0j'}
{'comment': 'Well good. One less maniac.', 'created': '2024-11-12 03:26:47', 'submission_id': '1gp5z0j'}
{'comment': 'Less children to be brainwashed by liberal parents, win win', 'created': '2024-11-12 03:42:01', 'submission_id': '1gp5z0j'}
{'comment': '“My rights don’t stop where your fear begins. Freedom is scary, deal with it.” - The Civil Rights Lawyer', 'created': '2024-11-12 03:44:58', 'submission_id': '1gp5z0j'}
{'comment': 'Of all the places she wants to mive to Canada… where not even Canadians can afford houses 🤣. What a joke.', 'created': '2024-11-12 03:52:31', 'submission_id': '1gp5z0j'}
{'comment': 'Yes, moving to another country is the best solution for you. Don’t let the door hit you in the rear end on your way out', 'created': '2024-11-12 04:11:45', 'submission_id': '1gp5z0j'}
{'comment': 'I’m not disputing the authenticity of this, but I do suspect that a significant number of videos or sob stories contribute to this ritualistic left-leaning mindset, where the focus is on who can claim the title of the biggest victim. Right now Trump is back in fashion for them.', 'created': '2024-11-12 04:21:52', 'submission_id': '1gp5z0j'}
{'comment': 'We just need to have more kids to backfill the headcount', 'created': '2024-11-12 04:23:05', 'submission_id': '1gp5z0j'}
{'comment': 'W truck driver got a crazy liberal to deport herself and he didn’t even have to do anything 🤣', 'created': '2024-11-12 04:46:08', 'submission_id': '1gp5z0j'}
{'comment': "You actually believe Canada would be better. You must be smoking Hunter's crack.", 'created': '2024-11-12 04:51:08', 'submission_id': '1gp5z0j'}
{'comment': 'If only they would all move.', 'created': '2024-11-12 05:10:15', 'submission_id': '1gp5z0j'}
{'comment': 'These nut jobs make me want to puke up my dinner. The pathetic-ness is at an all time high since last week.', 'created': '2024-11-12 06:30:19', 'submission_id': '1gp5z0j'}
{'comment': 'Self deportation. Not even in office yet', 'created': '2024-11-12 07:13:37', 'submission_id': '1gp5z0j'}
{'comment': 'She encountered one crazy person and that means she must flee the country or never have babies. Uhhh….', 'created': '2024-11-12 07:44:47', 'submission_id': '1gp5z0j'}
{'comment': 'The delusion is strong in that one', 'created': '2024-11-12 07:46:44', 'submission_id': '1gp5z0j'}
{'comment': 'It’s sad that some people live with so much irrational fear…', 'created': '2024-11-12 14:04:35', 'submission_id': '1gp5z0j'}
{'comment': 'If divorce has to come up in the same conversation dealing with an elections results then that person is just letting you know their hidden red flag and you should just take that as a sign.', 'created': '2024-11-12 14:17:37', 'submission_id': '1gp5z0j'}
{'comment': 'Never! This person needs a pacifier.', 'created': '2024-11-12 14:37:32', 'submission_id': '1gp5z0j'}
{'comment': "Yous think they would stop dealing in absolutes at this point and at least attempt to compromise on just some of these issues?\xa0\n\n\nThese absolutes are why a lot of moderates voted Trump. Because with the Libs right now, it's toe the party line or else.\xa0", 'created': '2024-11-12 14:37:58', 'submission_id': '1gp5z0j'}
{'comment': 'The only person I feel bad for is the husband in the above story. I can’t imagine being married to someone who gave me an ultimatum like that.', 'created': '2024-11-12 14:38:23', 'submission_id': '1gp5z0j'}
{'comment': 'I don\'t. These people are delusional. Their constant comparisons to Hitler diminish the horrors he caused the world. \nI have a gay friend who is so scared he is willing to marry a woman to "hide." Whenever the "fear" talk comes up, it\'s really difficult for me not to call him crazy. I mean, DJT was in office for 4 years already, and nothing happened. It\'s really pathetic.', 'created': '2024-11-12 15:42:40', 'submission_id': '1gp5z0j'}
{'comment': 'You guys won. In a landslide. Whats the purpose of picking the example of some specific person in your huge country which might be in a crisis which is grounded in whatever and this election was the last straw or she has an underlying mental issues to take about "the libs". What do you gain from this? I could go to twitter, pull out some random nazi nutjobs comment and talk about "the right". What would be gained by that? How does this impact the debate, your country and your life?', 'created': '2024-11-12 16:09:02', 'submission_id': '1gp5z0j'}
{'comment': 'So many red flags she might as well become a Republican', 'created': '2024-11-12 16:25:25', 'submission_id': '1gp5z0j'}
{'comment': 'Maybe someone should remind them how privileged they are to be able to afford to go to another country in the first place and be allowed to do so...\nI guess not having rights allows you to achieve this? lololol', 'created': '2024-11-12 16:56:07', 'submission_id': '1gp5z0j'}
{'comment': 'Divorce, this dude does not need to be abused by her anymore.', 'created': '2024-11-12 17:01:28', 'submission_id': '1gp5z0j'}
{'comment': 'Wow just wow', 'created': '2024-11-12 17:09:28', 'submission_id': '1gp5z0j'}
{'comment': 'I just laugh. My 8 year old daughter will come home from school sometimes telling me the “nonsense” she hears at school and she goes to a very conservative school. (Has signs on the campus saying they are a “fight back” school teachers are prepared to use any force necessary to protect their students. The school doesn’t require teachers to carry but will pay for them to get a concealed weapon permit if they want to, and has declined all sorts of public funding to not have to teach an agenda to the students. Despite being such a right wing school there are families that are more liberal who send their kids there because it’s the best education available in the state. And oh boy, the things she tells me she hears from her classmates…\nOne kid told her class today that he doesn’t know if he will be allowed to go to school anymore because his dads are worried he will be taken away from them because they are gay.\xa0', 'created': '2024-11-12 17:35:50', 'submission_id': '1gp5z0j'}
{'comment': 'Good freaking god these people are unhinged idiots. She\'s saying she\'s scared of having children. How could someone get like this on their own? The answer is that she did not get like this on her own. She was influenced, and the democrat media were successful in making this unhinged idiot their pawn.\n\nThis is what happens when a weak mind is influenced by MSNBC and CNN. She probably thinks Trump is Hitler. She probably thinks that this is going to be a dictatorship. She probably thinks that the military is going to travel around and take Kamala voters away and put them in camps. This is the kind of person that you need to send over to the MSNBC studio and say "SEE!!! LOOK AT WHAT YOU ARE DOING TO THE WEAK MINDED!!". But of course that\'s what they wanted to do with all that fear talk before the election. \n\nYou know what\'s funny? The MSNBCs and CNNs aren\'t calling him Hitler anymore since it\'s over. There are still a bunch of cringe people, but they aren\'t spouting the Hitler nonsense everyday. You still see the damage their rhetoric caused by reading this weirdos post.', 'created': '2024-11-12 17:36:53', 'submission_id': '1gp5z0j'}
{'comment': 'Very naive thinking. We have always been on the edge of extinction. No day is a guarantee', 'created': '2024-11-12 17:43:16', 'submission_id': '1gp5z0j'}
{'comment': 'I’m perfectly ok with dumb people who decline to reproduce. It’s not like we have a shortage of them.', 'created': '2024-11-12 18:00:37', 'submission_id': '1gp5z0j'}
{'comment': 'I’m perfectly ok with dumb people who decline to reproduce. It’s not like we have a shortage of them.', 'created': '2024-11-12 18:03:29', 'submission_id': '1gp5z0j'}
{'comment': "Hopefully she doesn't need an MRI during her pregnancy seeing as there's less MRI machines in Canada then there are in any state in america. Socialized health bull shit.", 'created': '2024-11-12 18:14:04', 'submission_id': '1gp5z0j'}
{'comment': 'I bet that’s all creative writing. It’s all manufactured stories. No need to feel bad for them. They’re trying real hard to be the main characters.', 'created': '2024-11-12 18:22:09', 'submission_id': '1gp5z0j'}
{'comment': 'The "Her body, my choice" slogan was NOT used by the Trump campaign. She has been duped by her own party rhetoric LOL', 'created': '2024-11-12 18:30:06', 'submission_id': '1gp5z0j'}
{'comment': 'The amazing thing about this is that they lived in an America where the left tried to illegally and Unconstitutionally force Americans to be injected with an experimental drug (that didn\'t do what it was advertised to and had nasty side effects); where simply voicing a common-sense opinion like "claiming you are the opposite sex does not make you that" could get you fired, your business destroyed, and have family members disown you; where violent criminals were immediately put back on the street but people who successfully *defended* themselves or others from violent criminals were subjected to the full force of (misapplied) law; and our justice system was otherwise weaponized for political purposes.\n\n...and they thought **that** was fine. No problem, nothing to see here.', 'created': '2024-11-12 18:59:25', 'submission_id': '1gp5z0j'}
{'comment': 'She shouldn’t procreate', 'created': '2024-11-12 19:26:23', 'submission_id': '1gp5z0j'}
{'comment': "Liberals on the internet are crises actors. Nothing you see is real. Outside the fake internet and MSM world Liberals are less than one percent of America. Thousands vote Democrat. Not millions.\n\n\nReal people—even homeless people—work and have lives. The asylums in various hospitals would be filled to the ceiling if the MSM and internet reality were true. It's not. It's just crises actors and bot accounts.", 'created': '2024-11-12 19:39:39', 'submission_id': '1gp5z0j'}
{'comment': 'Whoever wrote that needs a hobby. Who has that much free time?', 'created': '2024-11-12 20:03:51', 'submission_id': '1gp5z0j'}
{'comment': "These are nothing more than spoiled rotten, coddled children. They can't cop with reality, in the least.", 'created': '2024-11-12 20:54:42', 'submission_id': '1gp5z0j'}
{'comment': "Idk man I wouldn't feel to good if I couldn't go outside without being threatened to be raped", 'created': '2024-11-12 21:37:12', 'submission_id': '1gp5z0j'}
{'comment': '"Her body my choice" is such an obvious false flag psyop meant to scare women into voting blue next time or even supporting any upcoming insurrection efforts. Unfortunately, it\'s only obvious to us because we know we\'re not like that. The left is perfectly willing to believe the worst of us.', 'created': '2024-11-12 21:45:42', 'submission_id': '1gp5z0j'}
{'comment': 'Yeah I feel bad too, for her husband.', 'created': '2024-11-12 22:05:21', 'submission_id': '1gp5z0j'}
{'comment': 'What a completely normal and sane thing to say', 'created': '2024-11-12 22:35:07', 'submission_id': '1gp5z0j'}
{'comment': 'What Unrest?', 'created': '2024-11-12 23:27:27', 'submission_id': '1gp5z0j'}
{'comment': "I'll take shit that doesn't exist for 800 Alex.\n\nThey will find anything to justify themselves.", 'created': '2024-11-12 23:54:28', 'submission_id': '1gp5z0j'}
{'comment': 'Yeah, it is her body but it’s my choice weather to have aex with her', 'created': '2024-11-13 00:07:37', 'submission_id': '1gp5z0j'}
{'comment': 'What are you talking about bearing child here in USA??? I thought the libs especially those left-wing women are all-in for abortion abortion abortion, not? If you girls are happy to do abortion, stop freaking tell me that you are all-a-sudden a mother material.', 'created': '2024-11-13 02:51:56', 'submission_id': '1gp5z0j'}
{'comment': 'I dont\n\nthose who have kids inherit the planet\n\nIf they choose to remove themselves from the gene pool.... damn, womp womp\n\ngood riddance!!', 'created': '2024-11-13 03:26:53', 'submission_id': '1gp5z0j'}
{'comment': 'This lady needs to speak to a mental health professional ASAP.', 'created': '2024-11-13 06:19:07', 'submission_id': '1gp5z0j'}
{'comment': 'Mass hysteria.', 'created': '2024-11-13 07:26:24', 'submission_id': '1gp5z0j'}
{'comment': 'The hysteria is incredible.', 'created': '2024-11-13 12:55:53', 'submission_id': '1gp5z0j'}
{'comment': 'Shit that never happened for 1000$', 'created': '2024-11-13 15:51:49', 'submission_id': '1gp5z0j'}
{'comment': "Oh man!\xa0 Forgive me!\xa0 I'm trying to sympathize, but ~ God help me ~ I can't seem to stop laughing!😆🤣😆🤣😆", 'created': '2024-11-14 08:06:51', 'submission_id': '1gp5z0j'}
{'comment': 'Yes, I always base major life decisions using random bumper stickers. /s', 'created': '2024-11-15 05:06:22', 'submission_id': '1gp5z0j'}
{'comment': "Don't feel bad for them. They brought it on themselves. I hope the guy is able to get alimony from her if she is doing so well financially.", 'created': '2024-11-17 10:52:46', 'submission_id': '1gp5z0j'}
{'comment': 'She’s insane.', 'created': '2024-11-12 00:46:07', 'submission_id': '1gp5z0j'}
{'comment': 'Do not give them an inch!!! Do not feel bad for them.', 'created': '2024-11-12 00:27:30', 'submission_id': '1gp5z0j'}
{'comment': 'I’m pretty sure this is a fake story.', 'created': '2024-11-12 01:03:36', 'submission_id': '1gp5z0j'}
{'comment': 'This is the affect the main stream news has had on people. They are so brainwashed into believing Trump is Hitler for no reason. Maybe they could mention some of the crimes the democrats on the daily.', 'created': '2024-11-12 01:15:31', 'submission_id': '1gp5z0j'}
{'comment': "if you think that's bad, check out r/rant. It's painful to read.", 'created': '2024-11-12 01:17:10', 'submission_id': '1gp5z0j'}
{'comment': 'No this is such an amazing thing. She pulled the mask away. She revealed who she really is. Now he can stop wasting his time with her. It was the kindest thing she could have done for him. I literally wish all Democrats would expose themselves this way.', 'created': '2024-11-12 01:22:45', 'submission_id': '1gp5z0j'}
{'comment': 'I genuinely wish people like this would not actually breed. Like. please. do us that favor.', 'created': '2024-11-12 01:28:52', 'submission_id': '1gp5z0j'}
{'comment': "She'd be doing that poor man a favor. Hope he finds someone better.", 'created': '2024-11-12 01:32:23', 'submission_id': '1gp5z0j'}
{'comment': 'Reddit should get turned off for good .', 'created': '2024-11-12 01:39:28', 'submission_id': '1gp5z0j'}
{'comment': "She's doing her husband a favor", 'created': '2024-11-12 01:50:07', 'submission_id': '1gp5z0j'}
{'comment': "I don't think it's brainwashing so much as a lack of critical thinking and awareness, and I don't think it's specific to a party, but it's a majority of people. \n\nIt is very difficult to understand reality when everything that you see is a skewed representation and very rarely. Do you have individuals who understand that there are multiple world views.\n\nWith that being said, totally there's a lot of brainwashing.", 'created': '2024-11-12 02:02:56', 'submission_id': '1gp5z0j'}
{'comment': 'I stopped reading at “dual citizen”', 'created': '2024-11-12 02:10:59', 'submission_id': '1gp5z0j'}
{'comment': "i hope they don't breed.", 'created': '2024-11-12 02:18:30', 'submission_id': '1gp5z0j'}
{'comment': 'https://passportonline.services/?gad_source=1&gclid=EAIaIQobChMI7dLM3dHViQMVGgWtBh2XBR5zEAAYASAAEgJk7PD_BwE\n\nThank you for stopping. \n\nHave a blessed journey.', 'created': '2024-11-12 02:27:19', 'submission_id': '1gp5z0j'}
{'comment': 'More upset about words on a truck and less about the real crime going on?', 'created': '2024-11-12 02:31:27', 'submission_id': '1gp5z0j'}
{'comment': 'I refuse to believe this is real and that it’s just rage bait. Otherwise that’s an objectively insane human being', 'created': '2024-11-12 02:43:20', 'submission_id': '1gp5z0j'}
{'comment': 'It would be a fascinating psychological study!! Brainwashing at its finest!', 'created': '2024-11-12 02:48:59', 'submission_id': '1gp5z0j'}
{'comment': 'I hope her husband isn’t spineless and says good riddance', 'created': '2024-11-12 02:58:50', 'submission_id': '1gp5z0j'}
{'comment': 'These people are living in a delusional fantasy land. Always makes me wonder who actually employs these dimwits.', 'created': '2024-11-12 00:21:10', 'submission_id': '1gp5z0j'}
{'comment': 'She read the Jessie Smollet handbook here', 'created': '2024-11-12 00:50:57', 'submission_id': '1gp5z0j'}
{'comment': 'What made you realize you were being brainwashed and come to terms that this is about common sense and not some radical agenda?', 'created': '2024-11-12 01:24:15', 'submission_id': '1gp5z0j'}
{'comment': 'nope , they did it to thwmselves\nthey also advocated for reeducation nd internment camps no\nf these people', 'created': '2024-11-12 01:25:13', 'submission_id': '1gp5z0j'}
{'comment': 'I just read the update! It’s like 2 up from this post. lol what a coincidence! 🤣🤣🤣', 'created': '2024-11-12 01:26:32', 'submission_id': '1gp5z0j'}
{'comment': 'Grab your popcorn and enjoy the show', 'created': '2024-11-12 01:58:34', 'submission_id': '1gp5z0j'}
{'comment': 'I been on the “feeling bad” arc for a minute now they’re just so misinformed', 'created': '2024-11-12 01:58:48', 'submission_id': '1gp5z0j'}
{'comment': 'She has a valid reason to feel this way as a woman', 'created': '2024-11-12 04:27:56', 'submission_id': '1gp5z0j'}
{'comment': 'The real sad part about it is a few people realize we are not a democracy, in fact, we are a constitutional republic.', 'created': '2024-11-12 00:44:38', 'submission_id': '1gp5z0j'}
{'comment': 'Imagine the surprise she’s in for when she realizes Canada ain’t no democracy 🤦\u200d♀️ it’s actually growing increasingly fascist over there', 'created': '2024-11-12 00:28:35', 'submission_id': '1gp5z0j'}
{'comment': 'I used to live in Canada. It was so difficult even in the 1980’s when we moved there temporarily from USA for my father’s work. It’s a socialist government turned even more radical now. Wait times to be seen medically was absurdly long. Many nurses and drs would cross the bridge to work in the USA where it was more profitable. It was insanely expensive as well. Schools were further ahead though than the US at that time. I would never want to live under the current prime minister… hell no.', 'created': '2024-11-13 15:27:15', 'submission_id': '1gp5z0j'}
{'comment': 'I guess I feel a little bad because I used to be in the liberal cocoon. It wasn’t my fault, the brainwashing starts at a young age in my area (leftist ass California) and I bought into the whole Trump = Hitler rhetoric back in 2016. It was hard not to, you were getting hit from it everywhere and by literally every single person you know and have ever met.\n\nThankfully I started doing my own research and woke up, but I still feel bad for those who haven’t yet. Leftism is a disease designed to keep you miserable. I’ve never been happier, more positive, and more aligned with my values than when I made the switch to conservatism.', 'created': '2024-11-12 00:16:34', 'submission_id': '1gp5z0j'}
{'comment': 'After the election, I came here as a dem hoping to see what you guys saw in Trump. You have to want to see it from someone else’s perspective otherwise there’s no use in entertaining any of it.', 'created': '2024-11-12 00:38:56', 'submission_id': '1gp5z0j'}
{'comment': "That's part of it, but these people also need to get out of the hyper feedback loop that is their own social media network. \n\nThis woman probably posted that in some uber liberal subreddit and all she's going to hear from every single one of those fat purple-haired lesbians is that she should leave her husband and flee. \n\nIt's self reinforcing feedback and her social media feed is the cause.", 'created': '2024-11-12 03:17:55', 'submission_id': '1gp5z0j'}
{'comment': 'I’m a South Asian woman and I often volunteer for women’s foundations in India… if liberal American women had to experience life for women in India, Afghanistan, Iran, or Saudi Arabia… man they’d come running back to the US so fast and fall to their knees with gratitude for our nation', 'created': '2024-11-12 00:52:22', 'submission_id': '1gp5z0j'}
{'comment': '💯💯💯', 'created': '2024-11-12 13:32:49', 'submission_id': '1gp5z0j'}
{'comment': 'Was this before or after they yelled “this is maga country”?', 'created': '2024-11-12 00:29:15', 'submission_id': '1gp5z0j'}
{'comment': "I don't know.. she said she saw that sticker on a truck and later, someone else saw this *same* truck!\n\nSo according to this totally real story, there's exactly one person.", 'created': '2024-11-12 00:45:02', 'submission_id': '1gp5z0j'}
{'comment': 'The account probably belongs to a bot anyway.', 'created': '2024-11-12 00:37:45', 'submission_id': '1gp5z0j'}
{'comment': 'I guarantee there’s a couple of jerks out there doing it just to be edgy and try to piss off the left. Now if someone really wanted to be a smartass, they would make a shirt with a pregnant woman and the baby saying that.', 'created': '2024-11-12 07:17:40', 'submission_id': '1gp5z0j'}
{'comment': 'If it were true & she mentioned she had a photo, why not put the photo on her post?', 'created': '2024-11-12 01:01:02', 'submission_id': '1gp5z0j'}
{'comment': 'I\'m not trying to sick up for anyone. But I am sure it has been said. \n\nI once watched a video of a group of frat boys marching down a street chanting "no means yes, yes means anal". Like fucking more that 15 of them. I was in shock. Yeah my sick humor finds a way to laugh not at what they say but in simple shock that these people are that fucking stupid. But it made clear, frat guys say some dumb shit.', 'created': '2024-11-12 02:30:48', 'submission_id': '1gp5z0j'}
{'comment': "Oh, people are... As a fuckn joke, but these morons wouldn't know a joke if it crawled up their snatch.\xa0", 'created': '2024-11-12 00:45:28', 'submission_id': '1gp5z0j'}
{'comment': "Literally one extreme sensationalist tweeted it, and he got doxxed. I dont think anyone's actually going around seriously putting that out there unless it's some kind of underground call to action for abortion activists", 'created': '2024-11-12 02:02:44', 'submission_id': '1gp5z0j'}
{'comment': 'Ironically, this phrase started as a FEMINIST slogan in 2014. But was taken up this year by a knuckle dragger on X. Where it has taken off and gone viral.', 'created': '2024-11-12 01:23:11', 'submission_id': '1gp5z0j'}
{'comment': 'Feel bad for her husband', 'created': '2024-11-12 05:05:32', 'submission_id': '1gp5z0j'}
{'comment': 'You just got the daily double yay!', 'created': '2024-11-12 00:48:23', 'submission_id': '1gp5z0j'}
{'comment': 'It’s a bot, trying to drum up support and show more rage against the President elect you know', 'created': '2024-11-12 00:47:59', 'submission_id': '1gp5z0j'}
{'comment': 'Yes, insanity is doing the same thing over and over expecting different results.', 'created': '2024-11-13 15:41:04', 'submission_id': '1gp5z0j'}
{'comment': '3% of the workforce is illegal immigrants... Over 75% of farm workers in some places.. if trump actually did what he said he would (which I doubt since his first term was a lot of broken promises) then the economy would collapse\xa0', 'created': '2024-11-12 21:40:07', 'submission_id': '1gp5z0j'}
{'comment': "Some are getting divorced and disowning long-time friends and family members. It's disgusting behavior that they'll deeply regret later.", 'created': '2024-11-12 13:52:17', 'submission_id': '1gp5z0j'}
{'comment': "Mine too. Sad really. I'm a teacher and was banned about one year ago for something I said.", 'created': '2024-11-12 00:28:44', 'submission_id': '1gp5z0j'}
{'comment': '💯 agreed. I used to be super liberal too (by virtue of where I grew up/my environment). The transition took me a while but once I did my own research and truly woke up and embraced conservatism, I’ve never felt better and more aligned with my core values.\n\nIt was difficult to turn on some of my long held beliefs but at some point people need to decide whether you should value your own ego over truth and virtue trump. I wish I could get more leftists to take the same journey I did.\n\nWhat the leftists don’t get, is that once they finally reject their current worldview, they’ll feel BETTER. They should be *relieved* that the world isn’t as terrible of a place that they’ve been told it is! It should be a positive thing. But nope, leftism is a disease designed to make and keep you miserable. Tragic', 'created': '2024-11-12 00:26:03', 'submission_id': '1gp5z0j'}
{'comment': 'That’s our mainstream media that made you think that your opinion was shared by millions and millions of people, but in reality!', 'created': '2024-11-12 00:41:24', 'submission_id': '1gp5z0j'}
{'comment': 'Extremely strict.. I lived there for 3 years as a child in the 80’s.', 'created': '2024-11-13 15:49:10', 'submission_id': '1gp5z0j'}
{'comment': 'This.', 'created': '2024-11-12 01:06:41', 'submission_id': '1gp5z0j'}
{'comment': 'I agree. I feel bad for them too. Living in anxiety like that is awful.', 'created': '2024-11-12 06:04:50', 'submission_id': '1gp5z0j'}
{'comment': 'Totally agree.', 'created': '2024-11-13 15:46:24', 'submission_id': '1gp5z0j'}
{'comment': 'I think it’s a contest to see if they can scare each other more, know what I mean?', 'created': '2024-11-12 00:39:20', 'submission_id': '1gp5z0j'}
{'comment': 'I hate to be that “not all women” person lol but also… not all women 😂 I think leftism is designed to make women as weak as possible and to cultivate all the potential flaws of the feminine nature, including the one you just pointed out. \n\nWomen are more prone to hysterical emotions and logical fallacies in a similar way men are more prone irrational anger and aggression but a good culture and environment can teach us to steer away from those weakness and embrace our strengths.\n\nI was raised by tough women in a mostly male dominated environment and I’m really grateful that I was raised to prioritize feeling strong, not feeling safe. Unfortunately many women on the left are receiving terrible messaging that encourages them to lean into a lack of logical thinking. \n\nAlso I too definitely fell for the bandwagon fallacy! It’s actually so incredibly effective in manipulating the public, it’s insane. It’s probably the only reason people are still clinging to leftism, because logic can’t be it', 'created': '2024-11-12 02:44:22', 'submission_id': '1gp5z0j'}
{'comment': 'Win win for America, just two less commie Democrats in America.', 'created': '2024-11-12 00:46:59', 'submission_id': '1gp5z0j'}
{'comment': 'Their crisis is rooted in delusion and gaslighting and lies. That kind of culture takeover affects all of us.', 'created': '2024-11-12 16:57:34', 'submission_id': '1gp5z0j'}
{'comment': "They keep talking about that 4B movement. Good, don't have sex, less of you to go around.", 'created': '2024-11-12 13:48:20', 'submission_id': '1gp5z0j'}
{'comment': 'the U.S. combines elements of both systems, ensuring that government actions are based on the rule of law while also reflecting the will of the people through democratic processes.', 'created': '2024-11-12 04:36:42', 'submission_id': '1gp5z0j'}
{'comment': 'Amen, try telling that to the Left in this country. Those folks want us to be a unitary state will all control consolidated on the Federal level.', 'created': '2024-11-12 00:58:57', 'submission_id': '1gp5z0j'}
{'comment': 'Cough *cough* oligarchy', 'created': '2024-11-12 02:45:14', 'submission_id': '1gp5z0j'}
{'comment': "I try to keep up with what's going on up in the Great White North and it is worse up there (economic-wise) than it is here. Those folks are in for a rude awakening. You can have the Canadian system. I want no parts of it. Trudeau has really made a mess of it up there.", 'created': '2024-11-12 00:57:11', 'submission_id': '1gp5z0j'}
{'comment': 'lol no it’s not', 'created': '2024-11-13 00:39:25', 'submission_id': '1gp5z0j'}
{'comment': "I was a bi teen with a largely liberal and gay friend group growing up in nebraska (our capitol cities are largely liberal whereas the rural areas are what makes us red, thankfully) and I was indoctrinated the same way. Lots of social pressure and awkward silence when you call out some of the hypocrisies on the left even in a joking manner. I literally truly thought Trump wanted to take my rights away as a bi person bc left wingers push it so hard lmfao little did I know he was working w leaders in other countries to legalize homosexuality so gay people could continue LIVING. (but alt-right pipeline amiright?)\n\nThat being said, I still don't feel bad for these people. The evidence is there and they choose not to look at it. Feeling bad for them only enables them to keep being idiotic. The more the nonsense is called out and the more they're properly labelled as idiots, the harder it'll be for them to ignore their own idiocy and keep living in a bubble.", 'created': '2024-11-12 01:55:29', 'submission_id': '1gp5z0j'}
{'comment': 'Lol. #WakeUpFromWoke', 'created': '2024-11-12 21:46:41', 'submission_id': '1gp5z0j'}
{'comment': 'Lifelong Californian here raised by Republicans so that helped mold me and my brothers.', 'created': '2024-11-12 21:43:52', 'submission_id': '1gp5z0j'}
{'comment': 'Trumps advisers said he mentioned Hitler quite a bit in flattery manners\n\nhttps://www.washingtonpost.com/politics/2024/11/05/trump-hitler-republicans-harris/', 'created': '2024-11-12 04:40:08', 'submission_id': '1gp5z0j'}
{'comment': 'I’m really glad that you want to understand both sides of the coin. That kind of education is most beneficial regardless of which side you favor. Please don’t hesitate to come back and ask questions. More power to you and your quest.', 'created': '2024-11-12 05:42:10', 'submission_id': '1gp5z0j'}
{'comment': "Almost same. I'm not dem or rep but want to understand who the people are putting in office better.", 'created': '2024-11-12 14:06:50', 'submission_id': '1gp5z0j'}
{'comment': 'Thank you for joining us. You can help provide balance here as well.\n\nWe all gain from open dialogue. Sadly all we usually get is brigading.', 'created': '2024-11-12 12:45:33', 'submission_id': '1gp5z0j'}
{'comment': 'Look at that. We got ourselves a sensible one. Welcome, brother.', 'created': '2024-11-12 21:52:31', 'submission_id': '1gp5z0j'}
{'comment': 'Oh they absolutely would. The absolute cognitive dissonance that takes place when they prop their smart phone up, in their own apartment to cry about oppression… it makes me sick honestly. Go spend a month in Saudi Arabia, Iraq, India, lots of places in Africa… it’s insanely out of touch.', 'created': '2024-11-12 00:53:54', 'submission_id': '1gp5z0j'}
{'comment': 'Your womb is MAGA country', 'created': '2024-11-12 01:40:27', 'submission_id': '1gp5z0j'}
{'comment': '😂', 'created': '2024-11-12 00:33:12', 'submission_id': '1gp5z0j'}
{'comment': '😂😂😂😂', 'created': '2024-11-12 00:44:08', 'submission_id': '1gp5z0j'}
{'comment': 'Not a single photo of it though... in a day and age that phones are flipped out for every little thing.', 'created': '2024-11-12 01:14:42', 'submission_id': '1gp5z0j'}
{'comment': "And he's stalking her, waiting for the chance to (gasp!) what? Hand her a pamphlet and tell her about Jesus?", 'created': '2024-11-12 01:51:16', 'submission_id': '1gp5z0j'}
{'comment': 'There are bad apples on both sides.. we can’t be naive to that possibility.', 'created': '2024-11-13 15:36:07', 'submission_id': '1gp5z0j'}
{'comment': 'I\'ve noticed a lot of the bot accounts add odd spacing to hot button words, like Hitler in the first one, "hit ler". I saw another that would space out v o t e and it was clearly a bot. It\'s interesting to watch and to see people fawn over this type of victim fantasizing.', 'created': '2024-11-12 00:45:46', 'submission_id': '1gp5z0j'}
{'comment': 'Now if someone really wanted to be a smartass, they would make a shirt with a pregnant woman and the baby saying that.\n\nI double-dawg dare someone to do that. They’d sell like hotcakes here in the south.', 'created': '2024-11-12 15:00:43', 'submission_id': '1gp5z0j'}
{'comment': 'Teenage boys DO say dumb shit, I have 2 & they try to out-edgelord each other. Mostly, it\'s just that, then (& their friends) being dumbasses for shock value. Most of them know they are, but I do wonder about outliers actually believing some of the shit they spew or acting on it. \n\n& I saw that video, too, & all I could think was "ew"', 'created': '2024-11-12 14:24:13', 'submission_id': '1gp5z0j'}
{'comment': "What's the joke?", 'created': '2024-11-12 02:25:36', 'submission_id': '1gp5z0j'}
{'comment': "Yeah, I feel bad for the husband. Unbeknownst to him, he'd been married to a complete and total basket case this whole time. They don't have kids yet though, so he dodge a flaming bullet on that one. Now he can be free to go find a woman who is actually sane and considerate.", 'created': '2024-11-13 06:37:59', 'submission_id': '1gp5z0j'}
{'comment': 'very true', 'created': '2024-11-13 16:09:52', 'submission_id': '1gp5z0j'}
{'comment': 'I’ve had my best friend ghost me and treat me like shit because I didn’t vote for Biden in 2020. Lo and behold he voted trump this year and then reblocked me.\n\nI really have no sorrow for people who thinks it’s okay to disrespect others, slander, scream at, ghost, and just be overall immature but claim to be the opposite. Actions speak louder than words, and I’m just moving on. They are the only ones who can grow up, and reflect on their actions. Let them do they can become better people.', 'created': '2024-11-12 20:15:29', 'submission_id': '1gp5z0j'}
{'comment': 'Happy Cake Day! 🎂', 'created': '2024-11-12 13:43:40', 'submission_id': '1gp5z0j'}
{'comment': 'Oh for sure. Either that or who can become the biggest victim and get the most attention', 'created': '2024-11-12 00:59:39', 'submission_id': '1gp5z0j'}
{'comment': 'Well, ya, I don\'t want to be that "of course there are always exceptions to the rule" guy either ;P', 'created': '2024-11-12 03:21:39', 'submission_id': '1gp5z0j'}
{'comment': 'you know her?', 'created': '2024-11-12 17:10:29', 'submission_id': '1gp5z0j'}
{'comment': 'Also: they are clearly terrified. Yes, the media assault is relentless and often unfair and wrong. But do you sometimes ask yourself if the "jokes" Trump makes are part of the problem? Yes it\'s fuelled, fanned and distorted by media but can you see that there is a reason why people might despised other candidates because of their positions but are terrified of him? Do you think they would all else equal but without the jokes liket being dictator for just one day', 'created': '2024-11-12 17:18:38', 'submission_id': '1gp5z0j'}
{'comment': "Oh do tell? I haven't heard about that.....", 'created': '2024-11-12 19:17:25', 'submission_id': '1gp5z0j'}
{'comment': 'Ironically this is what leftists fail to realize and is why they \\*shockingly\\* still remain insanely unsatisfied even after voting blue. When Democrat politicians say "democracy is in danger" they\'re talking about THEMSELVES as a party. "Democracy is on the line" to them means "We are going to fail to line our pockets through the wars we wanna start if you don\'t elect us!" whereas the average liberal — because they think we live in a democracy — hears "life as I know it, as well as the entire concept of peace, is going to be eliminated if I don\'t vote blue!" They\'re just that easy to trick. And then dems get what they want, ruin the economy more, and dems continue to believe that they\'re the solution when dem politicians continue to blame all the problems they\'re creating on republicans lmfao.', 'created': '2024-11-12 02:00:43', 'submission_id': '1gp5z0j'}
{'comment': 'Hilariously couched!\xa0 Points!😆🤣😆', 'created': '2024-11-14 08:09:46', 'submission_id': '1gp5z0j'}
{'comment': 'From what I hear, public opinion of Trudeau is at an all time low. He may actually lose his upcoming election.', 'created': '2024-11-12 22:02:02', 'submission_id': '1gp5z0j'}
{'comment': 'Trump\'s entire staff has fucked him over on multiple occasions in his first 4 years. Take it with a grain of salt. If half of the "behind closed doors" shit was true, someone would\'ve recorded him in secret by now. It\'s not illegal to do it, just to use it as evidence in criminal court, and only in two-party consent states.', 'created': '2024-11-12 21:50:05', 'submission_id': '1gp5z0j'}
{'comment': "Idk about that. Judging from the rules, this thread is intended to be completely partisan. We're supposed to discuss things from a republican POV. Just as a sort of reprieve from the dissent and overwhelming leftism in every other political sub on this site, I'd guess. A red oasis in the blue desert that is Reddit.", 'created': '2024-11-12 21:56:37', 'submission_id': '1gp5z0j'}
{'comment': "There absolutely is definitely a photo. Her friend totally took it and really sent it to her. Truly!\n\nYou can't see it though. It goes to a different school.\n\nIn Canada.", 'created': '2024-11-12 01:27:46', 'submission_id': '1gp5z0j'}
{'comment': '*Heaven forbid!*', 'created': '2024-11-12 02:05:55', 'submission_id': '1gp5z0j'}
{'comment': 'I have absolutely no love for any of them. What they’ve done to my country in 3 1/2 years is absolute criminal and a lot of them are going to get away with it. I believe Obama needs to be tried and punished to the full extent of the law him and his freaking Connecticut Social Security number! All this fraud to get these idiots in to hurt this country has to be motivated by the globalist. They want to call in and collect from America.', 'created': '2024-11-12 00:54:43', 'submission_id': '1gp5z0j'}
{'comment': 'The ridiculousness of the saying that the left coined. Blunt sarcasm. Being a smartass.\xa0', 'created': '2024-11-12 04:03:13', 'submission_id': '1gp5z0j'}
{'comment': 'Cake day??', 'created': '2024-11-12 16:22:41', 'submission_id': '1gp5z0j'}
{'comment': 'https://www.pbs.org/newshour/politics/no-sex-no-dating-no-marriage-no-children-interest-grows-in-4b-movement-to-swear-off-men', 'created': '2024-11-13 02:02:32', 'submission_id': '1gp5z0j'}
{'comment': 'Username checks out', 'created': '2024-11-12 13:27:40', 'submission_id': '1gp5z0j'}
{'comment': 'For our sake and the sake of your average Canadian, I hope so.', 'created': '2024-11-12 22:33:35', 'submission_id': '1gp5z0j'}
{'comment': "If he wins, he'll be the first Prime Minister in Canadian history to serve 4 terms. History is not on his side.", 'created': '2024-11-12 23:16:46', 'submission_id': '1gp5z0j'}
{'comment': 'Trudeau has run that country into the ground. If the Candian public reelect him, they deserve what they get.', 'created': '2024-11-12 23:28:39', 'submission_id': '1gp5z0j'}
{'comment': 'I doubt the public actually “ re-electes” him. I smell funny business going on during elections!', 'created': '2024-11-13 15:30:59', 'submission_id': '1gp5z0j'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 23:57:24', 'submission_id': '1gp5v6l'}
{'comment': 'Is nothing sacred anymore? Why bring politics into that formerly well respected magazine?\n\nBye bye Laura.', 'created': '2024-11-12 00:14:35', 'submission_id': '1gp5v6l'}
{'comment': "It's obvious Trump has been living rent free in that ones mind for a very long time. 🤣", 'created': '2024-11-12 00:11:48', 'submission_id': '1gp5v6l'}
{'comment': "They deep sixed Forrest Mimms as a contributor back in the day because he has a faith. And they've defended woke lefty politics for a while.", 'created': '2024-11-12 00:00:29', 'submission_id': '1gp5v6l'}
{'comment': 'Another P2025 believer. Cult like zombies', 'created': '2024-11-12 00:06:15', 'submission_id': '1gp5v6l'}
{'comment': 'I still have Scientific american in my bookmarks.I check in once in awhile and its not difficult to see if youre familiar with SA in the past. They only choose things that support the lefts ideals. Much like NPR,I remember liking NPR years ago. It was boring to many people,just science,math and other nerdy things that wasnt particularly interesting to many.But Educational and I liked it. Just the other day i tuned in and they were speaking with a Transgender activist. Seems to more important than learning.', 'created': '2024-11-12 05:07:04', 'submission_id': '1gp5v6l'}
{'comment': 'They bring left politics everywhere…. Sadly… they have no compass except their brainwashing…', 'created': '2024-11-12 05:31:26', 'submission_id': '1gp5v6l'}
{'comment': "I don't understand why people feel the need to destroy their lives or jobs on social media with offensive stuff sure to get them fired or reprimanded. \n\nMaybe on Reddit it doesn't matter as much as this is anonymous, but when you post it on Facebook or talk about it at work, that is playing with fire.", 'created': '2024-11-12 14:31:51', 'submission_id': '1gp5v6l'}
{'comment': "Sad days indeed. Don't let the door hit you on the way out. 😔", 'created': '2024-11-12 00:15:51', 'submission_id': '1gp5v6l'}
{'comment': 'Bye 👋 bye 👋 bye 👋', 'created': '2024-11-12 05:44:05', 'submission_id': '1gp5v6l'}
{'comment': 'I loved my Forrest Mimms electronic notebooks I bought at Radio Shack back in the 1990s.\n\nThanks for reminding me about those.', 'created': '2024-11-12 03:30:10', 'submission_id': '1gp5v6l'}
{'comment': 'Except P2025 isn’t far fetched when you have Trump wanting to require prayer during his “American Way of Life” after he dismantles the department of education.', 'created': '2024-11-14 05:01:05', 'submission_id': '1gp5v6l'}
{'comment': 'Wokeness spoils everything... ✅', 'created': '2024-11-12 05:27:56', 'submission_id': '1gp5v6l'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 23:20:44', 'submission_id': '1gp4zzf'}
{'comment': 'I love Led Zeppelin!', 'created': '2024-11-12 02:14:52', 'submission_id': '1gp4zzf'}
{'comment': 'Sounds like he has a green light to un-fuck everything the disastrous Biden/Harris administration did to ruin America. \nTrump has a mandate made clear by the voters to restore the country back to being strong in all respects. \nEnough of the liberal disasters. So good to see America throw the liberals out on their ass!!!', 'created': '2024-11-12 01:33:52', 'submission_id': '1gp4zzf'}
{'comment': 'Lets go!\n\nFinally we might be able to flip. These ridiculously corrupt dems are killing the city. Choking out any growth for low income communities so these communities stay stuck and keep voting dems in office hoping for change.\n\nNot to mention the ludicrous laws passed that restrict our bill of rights. First amendment sees censorship and 2nd is nonexistent. Only a matter of time before they go after more. Make NY great again! 🇺🇸', 'created': '2024-11-12 00:33:44', 'submission_id': '1gp4zzf'}
{'comment': 'Bout to say, yeah I’ve always been a big Zeppelin fan', 'created': '2024-11-14 00:50:12', 'submission_id': '1gp4zzf'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 23:06:06', 'submission_id': '1gp4n98'}
{'comment': 'Judge caprio is awesome! Wish more would be like him.\xa0\xa0', 'created': '2024-11-12 02:19:53', 'submission_id': '1gp4n98'}
{'comment': 'America needs more judges like that.', 'created': '2024-11-12 02:19:23', 'submission_id': '1gp4n98'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 22:50:54', 'submission_id': '1gp4a6d'}
{'comment': 'Trump isn’t the party he shouldn’t decide who the senate leader is.', 'created': '2024-11-12 19:10:14', 'submission_id': '1gp4a6d'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 22:41:45', 'submission_id': '1gp42f1'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 21:12:21', 'submission_id': '1gp1uec'}
{'comment': "Apparently, men's rights aren't human rights.", 'created': '2024-11-11 21:16:15', 'submission_id': '1gp1uec'}
{'comment': 'Coming from the sub of the queen of beta pussies, I had to chuckle.', 'created': '2024-11-11 21:24:35', 'submission_id': '1gp1uec'}
{'comment': 'This seems pretty demeaning to me. Being a man isn’t about sex or “rizz” or whatever. Maybe I’m lucky to have had an amazing father as a role model, but being a man requires toughness, selflessness, sacrifice, fortitude, decisiveness, endurance, grit, compassion, and love. The dems aren’t gonna win my vote by telling me I’m a beta wimp. I know who I am, I know what I’m made of, and I know what’s important in life. These dems can go F themselves.', 'created': '2024-11-11 21:43:06', 'submission_id': '1gp1uec'}
{'comment': 'Actually according to 4B the Democratic men who "fought" for women\'s rights and to protect their women are the ones not getting laid tonight because men are too scary', 'created': '2024-11-11 21:27:12', 'submission_id': '1gp1uec'}
{'comment': "You can't convince me that this wasn't written by a terminally online 18 year old", 'created': '2024-11-11 22:06:35', 'submission_id': '1gp1uec'}
{'comment': "Funny, because as a gen z conservative male I couldn't give any less of a shit.", 'created': '2024-11-11 21:32:19', 'submission_id': '1gp1uec'}
{'comment': '*"Whiny, weepy, sniveling betas"*\n\nLots of irony in that comment.', 'created': '2024-11-11 21:41:43', 'submission_id': '1gp1uec'}
{'comment': 'People that talk like this make me tired.', 'created': '2024-11-11 21:59:55', 'submission_id': '1gp1uec'}
{'comment': 'This was from Destiny? Lol who wants to tell him?', 'created': '2024-11-11 21:31:20', 'submission_id': '1gp1uec'}
{'comment': 'Yeah because sex is going to solve the need for income stability, student debts, jobs and settling down with a place to live.\n\nI always find online democrat echochambers just fixate on things which are heavily trivial compared to real life problems. My guess is younger males who are chronically online get overrepresented to them, so inturn these communities generalize all males to be such. But the reality is the reason they’re able to encounter these individuals is because they also spend an ungodly amount of time online, whether they a significant other or not lol.', 'created': '2024-11-11 22:15:51', 'submission_id': '1gp1uec'}
{'comment': 'They already take the low-hanging fruit by imagining all right-leaning men as obsessed with sex and power, when in reality a pretty large number of us are faithful Christians.', 'created': '2024-11-11 22:19:20', 'submission_id': '1gp1uec'}
{'comment': 'Let them 🤷\u200d♀️ thinking acting and saying shit like this that got trump elected. Republicans didnt win it for him the democrats did', 'created': '2024-11-11 21:40:41', 'submission_id': '1gp1uec'}
{'comment': 'Riiiight, says the man bun wearing, douche flute puffing, dildo squatting soy boy.', 'created': '2024-11-11 22:52:41', 'submission_id': '1gp1uec'}
{'comment': 'Lost me at "rizzless"', 'created': '2024-11-11 22:30:27', 'submission_id': '1gp1uec'}
{'comment': 'They can call me a beta all they want at least I actually have balls unlike most liberal “men”', 'created': '2024-11-11 22:36:16', 'submission_id': '1gp1uec'}
{'comment': 'I like how a good portion of their whole argument for their side is just worrying about people’s sexuality/ sex life all the time.', 'created': '2024-11-11 22:37:27', 'submission_id': '1gp1uec'}
{'comment': 'It’s very easy really what you need to do when you see these kind of posts is: \n\nReport> self harm or sucide > oh hell yeah I want Reddit to reach out to brokentongue right away to tell him a fellow Redditor is worried about him (anonymous) poor guy he seems unwell and in dire need of help.\n\nI have been doing this for weeks now. It’s wonderful', 'created': '2024-11-11 22:22:16', 'submission_id': '1gp1uec'}
{'comment': 'Well they sure hurt our feelings. \n\n\n\n\n\n\nNot.', 'created': '2024-11-11 22:43:54', 'submission_id': '1gp1uec'}
{'comment': 'I can feel the unity and healing.', 'created': '2024-11-11 23:13:43', 'submission_id': '1gp1uec'}
{'comment': 'I\'ve asked this same question " why have the left, left behind young men?" and you would believe the crap people have been posting. I find it odd that people don\'t care about men, and it\'s all about women. If you look up data and statistics, women these days do pretty good and young men have been left behind. It\'s not debatable it\'s the truth. Ladies please don\'t feel like I\'m taking away from. Yall because you are very, very important, but these issues swi g both ways.', 'created': '2024-11-12 00:47:58', 'submission_id': '1gp1uec'}
{'comment': "I love how they doubled down on why they keep losing. The left isn't gunna see office for a few decades, I'm perfectly fine with that.", 'created': '2024-11-11 22:04:57', 'submission_id': '1gp1uec'}
{'comment': 'This is one of the takes of all time.\n\nThe left is incapable of looking in the mirror', 'created': '2024-11-11 22:48:48', 'submission_id': '1gp1uec'}
{'comment': 'This is so stunningly and amazingly ironic. Also IDK what rizz is, if I have it or need it...', 'created': '2024-11-11 22:51:15', 'submission_id': '1gp1uec'}
{'comment': 'Definitely a cult', 'created': '2024-11-11 22:57:29', 'submission_id': '1gp1uec'}
{'comment': "I really don't know why we can't just chill out. There's 2 years until the mid-terms, and aside from that we really don't need to worry about politics. Nows the time to be good to your neighbors, and make connections that election anxiety and political polarization made unfeasible. Men in general and young men especially dont respond to being lectured at. I'd say the bigger issue, from a pure strategic perspective, is that 70% of white *women* voted for Trump. Should they be insulting white women? It doesn't make a lot of sense", 'created': '2024-11-11 22:59:07', 'submission_id': '1gp1uec'}
{'comment': 'Do...do they realize that their women prefer conservative men over their own because they\'re more "manly" and better looking? Do they realize that conservatives have far more sex than they do? Our men must be doing something right. This is so unhinged and such a far our extreme take that literally no one that lives in reality believes. I can\'t imagine living in such a way that I would believe this hook, line, and sinker because everyone around me says the same things. How boring it must be to be around people that parrot the same things in the same, screaming voice, with the same glazed over eyes.', 'created': '2024-11-11 23:05:14', 'submission_id': '1gp1uec'}
{'comment': 'Yeah, I am sure Gary at Nerdrotic, who survived prison to go on and have a wife and kids while building a thriving YouTube channel will just wither away once these “women” attack his masculinity 🤦🏼\n\nThey don’t realize they have no power or influence over anyone.', 'created': '2024-11-11 23:06:14', 'submission_id': '1gp1uec'}
{'comment': 'Calling people beta pussies while praising Destiny.', 'created': '2024-11-11 23:06:54', 'submission_id': '1gp1uec'}
{'comment': 'They can’t even cosplay as alphas.', 'created': '2024-11-12 00:01:05', 'submission_id': '1gp1uec'}
{'comment': "The whole reason the dems are emasculating men is to create generations of males that won't fight back when they get bold enough to try to take over. Someone got their men mixed up. As for the shaved head bracelet wearing women of the party, the only guys that you even had a shot at having sex with are the guys that voted for Kamala and you just disenfranchised all of them. The Dems single-handedly destroyed the next several generation of their own voting base and we're going to kick out all of their illegal votes. You can't make this shit up.", 'created': '2024-11-12 04:20:06', 'submission_id': '1gp1uec'}
{'comment': 'Holy moly lol good luck “relentlessly showing” how much sex I’m apparently not having. Last I checked I’m doing pretty well and (as a man) aim to be pretty masculine 😂 it’s clear a chick wrote this considering she thinks you can just make men pussies on a whim. Imagine the opposite “we need to relentlessly show how brutal, aggressive, and masculine these lib women are! That is literally all we have to do!” Lol', 'created': '2024-11-11 21:50:23', 'submission_id': '1gp1uec'}
{'comment': 'This is hilarious. That is the weakest argument I have ever seen yet! I’m just continuing to watch them self destruct themselves. 🍿', 'created': '2024-11-11 22:03:18', 'submission_id': '1gp1uec'}
{'comment': 'The poster there is clearly living in a dark world.', 'created': '2024-11-11 22:13:20', 'submission_id': '1gp1uec'}
{'comment': 'Huh? What are they going onabout?', 'created': '2024-11-11 23:06:09', 'submission_id': '1gp1uec'}
{'comment': '"Sexless" \n\nLol. I mean im sure there are plenty of sexless people on both sides of the isle, but conservatives are the ones having more children, not trying to slaughter them in the womb', 'created': '2024-11-11 23:34:35', 'submission_id': '1gp1uec'}
{'comment': 'And I got an auto ban for saying they were mental on here. Wtf man!', 'created': '2024-11-12 00:00:09', 'submission_id': '1gp1uec'}
{'comment': 'Brosef here is trying to be sigma… but unfortunately he’s definitely beta level bro', 'created': '2024-11-12 00:04:21', 'submission_id': '1gp1uec'}
{'comment': 'I’d love to see a bunch of liberals “get mean” with conservative mean. 🤣', 'created': '2024-11-12 00:43:51', 'submission_id': '1gp1uec'}
{'comment': "I'm just a 30 something year old man but even I know a lot of young men care about issues concerning their future.", 'created': '2024-11-12 01:41:05', 'submission_id': '1gp1uec'}
{'comment': 'Never interrupt your enemy while they are making a mistake. They can keep up with narratives like this for all I care, they are just helping the country turn even more red.', 'created': '2024-11-12 03:58:11', 'submission_id': '1gp1uec'}
{'comment': 'That twitch dude, or whatever, he has a very ironic name... "destiny!" "Shouldnt it be, "whoopsie daisy"', 'created': '2024-11-12 03:58:42', 'submission_id': '1gp1uec'}
{'comment': 'Bro what lmao ok sure go ahead I guess, show me how rizzless we are. I struggle to think of something I care less about', 'created': '2024-11-12 05:29:59', 'submission_id': '1gp1uec'}
{'comment': "I'm already disregarding all of this because it comes from r/Destiny", 'created': '2024-11-12 07:06:53', 'submission_id': '1gp1uec'}
{'comment': 'Reading the word "rizless" in a rant has me dying over here ha', 'created': '2024-11-12 13:06:47', 'submission_id': '1gp1uec'}
{'comment': 'I can already feel their call for unity working 🤦🏻\u200d♀️', 'created': '2024-11-12 14:39:34', 'submission_id': '1gp1uec'}
{'comment': 'Can’t take anyone that uses the word rizz seriously.', 'created': '2024-11-12 14:49:58', 'submission_id': '1gp1uec'}
{'comment': 'Democrats want to tell everyone how to think, but they scream “my body, my choice”. 🤣', 'created': '2024-11-12 15:18:28', 'submission_id': '1gp1uec'}
{'comment': "I don't give these things thoughts. I've been off and on reddit for awhile just started actually using it this year. But after using reddit I'm pretty confident I could just knock out anybody on the left. What the fuck is rizzless beta males?", 'created': '2024-11-12 15:22:54', 'submission_id': '1gp1uec'}
{'comment': 'how long does it take for your post to actually go live on this sub? sometimes I wanna just post and share thoughts on a topic but I dont think my submission has ever gotten through. So I just comment on everyone elses post lol', 'created': '2024-11-12 23:59:52', 'submission_id': '1gp1uec'}
{'comment': 'I think that sub is VERY confused😂', 'created': '2024-11-11 22:02:17', 'submission_id': '1gp1uec'}
{'comment': '🤣🤣🤣🤣🤣', 'created': '2024-11-11 22:15:35', 'submission_id': '1gp1uec'}
{'comment': '“No young men actually care about the draft!!” \n\nYeah homie, let’s see how you feel when the draft comes for you 😂 especially since if you’re on r/Destiny, I imagine you can’t run a mile without getting winded or even bench press more than me (a 5’2” female). Good luck with that shit \n\nInsane that us conservative women care more about men’s rights and safety when it comes to things like the draft than these whiny girly boys do 🤦\u200d♀️', 'created': '2024-11-12 00:10:27', 'submission_id': '1gp1uec'}
{'comment': 'Only when those "men" need abortions do their rights to one becomes a human right. /s', 'created': '2024-11-11 23:31:50', 'submission_id': '1gp1uec'}
{'comment': 'Ironically, one of Destiny’s sub rules are to “not make explicit comments on women”. Nothing about men.', 'created': '2024-11-12 04:21:04', 'submission_id': '1gp1uec'}
{'comment': 'Yeah literally you cannot get more unmanly than a liberal leftist.', 'created': '2024-11-12 01:41:47', 'submission_id': '1gp1uec'}
{'comment': "Idk what it is. What is Destiny? I don't understand much of this post except they think conservative men give a shit about what the whiners think of them. Do they really think they can make all the blue collar workers look less manly than them? The farmers, hunters, outdoorsmen? Let the almost 30 year old virgins whining from mom's basement try and say they are more manly than my fiance who works in the oil field industry. Tell any of those men that, lol.", 'created': '2024-11-11 23:30:01', 'submission_id': '1gp1uec'}
{'comment': 'Well said. I’m inclined to believe those who believe in censorship like the dems, those who don’t believe in the right to bear arms like the dems, those who want population control thru spaying/neutering and now the B4 “movement” like the dems, are the pussies.', 'created': '2024-11-11 22:26:47', 'submission_id': '1gp1uec'}
{'comment': 'It’s tough, as much as I don’t wanna be drafted, I would serve my country, as much as I am scared about an unplanned pregnancy, I would push through and receive the baby as a gift, and I know that I must provide for the family I want to create.\n\nDo they understand that men have societal duties to fulfill?\n\nApparently no😭', 'created': '2024-11-12 00:14:14', 'submission_id': '1gp1uec'}
{'comment': "Their bitching about Gen Z, so guarantee its their generation. The oldest would be 29. You might be a bit to generous on how young this terminally online basement dweller is. I say it's an almost 30 year old virgin.", 'created': '2024-11-11 23:34:36', 'submission_id': '1gp1uec'}
{'comment': 'Real', 'created': '2024-11-11 23:40:50', 'submission_id': '1gp1uec'}
{'comment': "As a mom of 3 Gen Z Conservative sons ...good. They don't want you Anywhere near them.", 'created': '2024-11-12 01:13:05', 'submission_id': '1gp1uec'}
{'comment': '100%. IMO a huge percentage of the rage-filled rants could be resolved by an aspirin every 24-48 hours. It helps ([NIH](https://pmc.ncbi.nlm.nih.gov/articles/PMC7487710/#:~:text=The%20association%20of%20aspirin%20with,(HR%2C%200.81%3B%2095%25)) with stress/anxiety/mood disorders and all of these people seem subject to all of those conditions.', 'created': '2024-11-11 22:16:18', 'submission_id': '1gp1uec'}
{'comment': 'Destiny calling anyone beta is hilarious.', 'created': '2024-11-12 01:16:00', 'submission_id': '1gp1uec'}
{'comment': 'All this and all of the gay community that refused to vote for Kamala because she supports Israel. Do they not realize how they would be welcomed in Palestine?', 'created': '2024-11-11 22:19:31', 'submission_id': '1gp1uec'}
{'comment': 'The irony of it all.', 'created': '2024-11-11 22:23:34', 'submission_id': '1gp1uec'}
{'comment': 'Lmfao you’re awesome man 🤣', 'created': '2024-11-11 23:08:36', 'submission_id': '1gp1uec'}
{'comment': 'My girlfriend and I literally cried tears of joy on November 6th because we’re going to be able to afford to live. This is such a beautiful turning point in our country.', 'created': '2024-11-12 04:29:05', 'submission_id': '1gp1uec'}
{'comment': 'Amen. People saying that they want to leave this country probably don’t even know that over 60 countries have mandatory service. I’ll bet they don’t know what that means either. God bless America, but some of us “Americans” are dumber than a box of rocks.', 'created': '2024-11-12 04:25:09', 'submission_id': '1gp1uec'}
{'comment': 'I think you have to use a user flair', 'created': '2024-11-13 16:44:08', 'submission_id': '1gp1uec'}
{'comment': 'They double down on the beliefs that cause them to lose in the first place. Yes, apparently men are all morons who only think with our dicks, and all Trump supporters are so stupid that we accidentally voted for Trump.\n\n\nI appreciate the conservative women. Thank you.', 'created': '2024-11-12 00:14:52', 'submission_id': '1gp1uec'}
{'comment': 'Destiny is a dude who let other men fuck his wife. The irony in this post is too uncanny for it not to be satire.', 'created': '2024-11-12 00:37:31', 'submission_id': '1gp1uec'}
{'comment': 'I think destiny is a lefty YouTuber.', 'created': '2024-11-11 23:43:03', 'submission_id': '1gp1uec'}
{'comment': 'The Left as a whole doesn’t believe in obligations. They view obligations as oppression. That’s the key deference between us and them.', 'created': '2024-11-12 00:26:00', 'submission_id': '1gp1uec'}
{'comment': 'There’s no flairs. It had none when I check available flair list lol', 'created': '2024-11-13 16:45:07', 'submission_id': '1gp1uec'}
{'comment': 'Wait just found out what you meant. Okay thanks', 'created': '2024-11-13 16:54:00', 'submission_id': '1gp1uec'}
{'comment': 'Took me a while to get here! I used to be super liberal (by virtue of where I grew up/my environment). The transition took me a while but once I did my own research and truly woke up, I’ve never felt better and more aligned with my core values.\n\nIt was difficult to turn on some of my long held beliefs but at some point people need to decide whether you should value your own ego over truth and virtue. I wish I could get more leftists to take the same journey I did.', 'created': '2024-11-12 00:20:26', 'submission_id': '1gp1uec'}
{'comment': 'The irony is why I couldn’t let myself just scroll past this post 🤣', 'created': '2024-11-12 03:56:17', 'submission_id': '1gp1uec'}
{'comment': "Both my parents are boomer immigrants, and they both vote Democrat. I began questioning my parents when I repeated something my dad said to a friend, and him and his family laughed at me. They didn't mean to make me upset, my dad is just super far left and I started questioning how much of what he said is accurate. I didn't take interest in the Republicans until Alex Jones started making videos about Trump, and the rest is history.\xa0\n\n\nIt takes a big person to update their views after seeing evidence that contradicts their older views. Respect.", 'created': '2024-11-12 00:26:21', 'submission_id': '1gp1uec'}
{'comment': 'Coming from another former Liberal, Happy Cake Day!', 'created': '2024-11-13 04:59:22', 'submission_id': '1gp1uec'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 20:42:33', 'submission_id': '1gp13sz'}
{'comment': 'I still can’t believe how much they spent on celebrity appearances, MILLIONS.\xa0', 'created': '2024-11-11 21:24:38', 'submission_id': '1gp13sz'}
{'comment': "Of course, it's a scam!\n\nThe Harris campaign is not broke. Her money just magically moved from her campaign account to the Cayman Islands... for safekeeping.", 'created': '2024-11-11 20:54:16', 'submission_id': '1gp13sz'}
{'comment': "She's already conceded, ergo she has no right to a recount.", 'created': '2024-11-11 22:15:39', 'submission_id': '1gp13sz'}
{'comment': '👋 Waves 👋 at woke fool soon to be lighter in the wallet humping that down vote button. 😁', 'created': '2024-11-11 20:46:41', 'submission_id': '1gp13sz'}
{'comment': "Didn't get power... got to get paid", 'created': '2024-11-11 21:00:54', 'submission_id': '1gp13sz'}
{'comment': '"Recount Account" has "Clinton Library and Massage Parlor" ring to it. Betcha the cash comes out SQUEAKY clean!', 'created': '2024-11-11 21:08:57', 'submission_id': '1gp13sz'}
{'comment': 'What happened to not believing the election was the anti democratic?', 'created': '2024-11-11 23:20:45', 'submission_id': '1gp13sz'}
{'comment': 'Now who are the election deniers?f-ing hypocrites arrest everyone of them on sedition charges.', 'created': '2024-11-12 03:22:40', 'submission_id': '1gp13sz'}
{'comment': 'Scam for sure.', 'created': '2024-11-14 21:04:12', 'submission_id': '1gp13sz'}
{'comment': "She conceded, there can't be a recount. But obviously its a scam lol.", 'created': '2024-11-12 00:36:54', 'submission_id': '1gp13sz'}
{'comment': 'I already decided…', 'created': '2024-11-11 21:20:44', 'submission_id': '1gp13sz'}
{'comment': '[https://youtu.be/PCYaktgjBWM?si=sjq5fTuRsJVweVvh](https://youtu.be/PCYaktgjBWM?si=sjq5fTuRsJVweVvh)', 'created': '2024-11-11 21:10:17', 'submission_id': '1gp13sz'}
{'comment': 'Fine print: "For key house and senate races"', 'created': '2024-11-12 23:00:58', 'submission_id': '1gp13sz'}
{'comment': 'Good work ain’t cheap.., cheap work ain’t good', 'created': '2024-11-11 20:52:42', 'submission_id': '1gp13sz'}
{'comment': "When I heard yesterday how Dems have a 1 billion and 18 million dollars of debt I started to suspect Harris never intended to win and all this has been a grift. Now I'm sure of it.", 'created': '2024-11-12 01:36:33', 'submission_id': '1gp13sz'}
{'comment': 'Money to fund the Dem Jan 6 insurrection and riots', 'created': '2024-11-11 22:42:19', 'submission_id': '1gp13sz'}
{'comment': 'Did Trump have a stop the steal fundraiser?', 'created': '2024-11-12 05:42:22', 'submission_id': '1gp13sz'}
{'comment': 'How much did Trump raise after the election. Questioning the results was very profitable for his campaign.', 'created': '2024-11-11 22:23:50', 'submission_id': '1gp13sz'}
{'comment': 'And weren’t her “staff fees” over 50 times more than Trump’s staff fees. I saw a post here the other day to that effect.', 'created': '2024-11-11 21:37:38', 'submission_id': '1gp13sz'}
{'comment': "It's just a money laundering operation... they just give it back and forth. 😆", 'created': '2024-11-11 21:33:39', 'submission_id': '1gp13sz'}
{'comment': 'And I was so looking forward to her campaign of wokeness going broke. 😁', 'created': '2024-11-11 20:58:49', 'submission_id': '1gp13sz'}
{'comment': "She's good with her ABCs (Always Be Cheating) that she's screwing her own party!", 'created': '2024-11-12 00:19:04', 'submission_id': '1gp13sz'}
{'comment': 'Scammers gonna scam. 😄', 'created': '2024-11-11 21:03:31', 'submission_id': '1gp13sz'}
{'comment': "Let's hope Trump has some way of holding them accountable. 😁", 'created': '2024-11-11 21:12:10', 'submission_id': '1gp13sz'}
{'comment': "Concession is not legally binding but the race doesn't meet the closeness threshold and it's also too late for Michigan and Arizona.", 'created': '2024-11-12 23:01:44', 'submission_id': '1gp13sz'}
{'comment': 'How do you explain her taking tons of money (not cheap) but also be horrible at everything she does (cheap work)', 'created': '2024-11-11 21:02:17', 'submission_id': '1gp13sz'}
{'comment': "She lost don't forget", 'created': '2024-11-11 21:47:20', 'submission_id': '1gp13sz'}
{'comment': 'Satire my friend…,', 'created': '2024-11-11 21:16:22', 'submission_id': '1gp13sz'}
{'comment': 'She had to hire a lot of bots for reddit.', 'created': '2024-11-11 21:57:05', 'submission_id': '1gp13sz'}
{'comment': "It will be touch. Soros owns most of the folks that could prosecute this. Trump has 2 years to root out the scumbags in government. That's going to be very tough. \n\nLiberals are like athletes foot, it never really goes away; you can sometimes get some relief but the burning and itching will eventually come back.", 'created': '2024-11-11 21:20:06', 'submission_id': '1gp13sz'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 20:38:47', 'submission_id': '1gp10hf'}
{'comment': 'My mother always said Carter was a nice man, but a terrible president.', 'created': '2024-11-11 21:20:32', 'submission_id': '1gp10hf'}
{'comment': 'Carter was a bad President but a good man. Biden is a swamp creature.', 'created': '2024-11-11 22:26:45', 'submission_id': '1gp10hf'}
{'comment': 'Both terrible presidents. However, Carter was kind. Biden is evil.', 'created': '2024-11-12 15:02:42', 'submission_id': '1gp10hf'}
{'comment': 'Carter was an amiable dunce. Biden is a mean old man.', 'created': '2024-11-11 21:05:49', 'submission_id': '1gp10hf'}
{'comment': 'Based on what I’ve read of the guy (cause I def wasn’t alive back then) he seems like a solid D-tier president. Some of the blunders of his presidency weren’t entirely his fault, though the great inflation of 1979 was WILD based on the numbers I’ve seen. He attempted to make a lot of progress in human rights, though his efforts didn’t get very far. His wife did some cool projects as first lady and was very active alongside his cabinet. I would argue that as a person, presidency aside, he’s an A-tier guy and I wish more folks had the character he does. Maybe this is a hot take in here but JD Vance kinda reminds me of a conservative Carter.', 'created': '2024-11-11 21:51:32', 'submission_id': '1gp10hf'}
{'comment': "Maybe it's time we abolished the department of education 🤔", 'created': '2024-11-12 07:35:55', 'submission_id': '1gp10hf'}
{'comment': 'I was around when Carter was president. \nHe truly sucked. However, Biden is worse than Carter at all levels. 💯\n\nCarter did not use his office to enrich himself or his family as Biden has done.', 'created': '2024-11-12 18:36:58', 'submission_id': '1gp10hf'}
{'comment': 'I wasn’t alive for Carter, but I have heard many nightmare stories about him from a lot of different people that did experience his presidency. Almost sounds like Biden is the jimmy carter of the 21st century.\xa0', 'created': '2024-11-13 23:41:59', 'submission_id': '1gp10hf'}
{'comment': "That's how I remember him everything he touched went to poo.", 'created': '2024-11-11 21:31:35', 'submission_id': '1gp10hf'}
{'comment': 'Both of those things are absolutely true.', 'created': '2024-11-12 01:14:26', 'submission_id': '1gp10hf'}
{'comment': 'Carter actually was thinking what he could do for his country. Joe was thinking what he could do to his country to better himself.', 'created': '2024-11-11 21:18:34', 'submission_id': '1gp10hf'}
{'comment': 'The federal part should be abolished and replaced with state level.', 'created': '2024-11-12 16:01:19', 'submission_id': '1gp10hf'}
{'comment': 'I remember him as a terrific humanitarian.\nHe was also the absolute worst president in history until Geriatric Joe. Carter did nothing to help the economy, only hurt it.\nHe was a foreign policy failure. However, he did not import criminals from all corners of the globe. 🫡', 'created': '2024-11-12 16:09:51', 'submission_id': '1gp10hf'}
{'comment': "I don't think anyone hated Carter. He meant well. Biden, though...", 'created': '2024-11-11 23:09:05', 'submission_id': '1gp10hf'}
{'comment': 'Carter was not a deciple of Satan he was a religious good man he just had the reverse Midas touch everything went to poo.\nhttps://en.m.wikipedia.org/wiki/Operation_Eagle_Claw\n\n\nBiden family is Mafia the whole group we have been loosing money in Ukraine for a long time \nBillions. https://www.realclearpolitics.com/video/2019/09/27/flashback_2018_joe_biden_brags_at_cfr_meeting_about_withholding_aid_to_ukraine_to_force_firing_of_prosecutor.html', 'created': '2024-11-12 00:44:23', 'submission_id': '1gp10hf'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 18:58:41', 'submission_id': '1goyi4v'}
{'comment': 'Idiocracy was meant to be a comedy movie, not a documentary.', 'created': '2024-11-11 19:02:09', 'submission_id': '1goyi4v'}
{'comment': 'This is insane. Butter... is made... from milk! Why do we have to say this', 'created': '2024-11-11 23:47:01', 'submission_id': '1goyi4v'}
{'comment': 'I have never seen such stupidity. All I have ever considered when it comes to real butter is if it is salted or not. Since seeing this yesterday I did look at my butter and cream for my coffee. Both say "contains milk." Well no kidding they contain milk. I don\'t buy the "soy boy" fake stuff, so it had better contain the natural product, milk.', 'created': '2024-11-12 16:40:23', 'submission_id': '1goyi4v'}
{'comment': "Time to let darwin thin the herd. I mean if you need a warning label that your peanut butter contains peanuts, you shouldn't and aren't contributing to the health of the gene pool.", 'created': '2024-11-15 21:26:22', 'submission_id': '1goyi4v'}
{'comment': 'Butter going from $7 to $10', 'created': '2024-11-11 21:24:33', 'submission_id': '1goyi4v'}
{'comment': "I'm ready to have more money in my pocket!", 'created': '2024-11-11 22:45:14', 'submission_id': '1goyi4v'}
{'comment': "Were they forced to remove it from shelves?? I can understand changing labelling but removing it from shelves would've been overkill.", 'created': '2024-11-12 00:05:52', 'submission_id': '1goyi4v'}
{'comment': 'Why couldn’t it be relabeled or have a “contains milk products” sticker slapped on. Don’t blame Biden, Kirkland f’d up.', 'created': '2024-11-12 04:52:00', 'submission_id': '1goyi4v'}
{'comment': 'Does the president control the FDA?', 'created': '2024-11-11 23:09:06', 'submission_id': '1goyi4v'}
{'comment': 'FDA voted for Camacho!', 'created': '2024-11-11 19:22:02', 'submission_id': '1goyi4v'}
{'comment': 'True but who knew people would take it as a challenge and try to be more idotic.', 'created': '2024-11-15 21:23:52', 'submission_id': '1goyi4v'}
{'comment': 'Welcome to Costco, I love you 😂', 'created': '2024-11-11 20:30:59', 'submission_id': '1goyi4v'}
{'comment': 'That is like asking how many woke leftists does it take to milk a bull. 😆', 'created': '2024-11-11 23:51:30', 'submission_id': '1goyi4v'}
{'comment': 'It’s a forced recall from the FDA. Everything will be pulled from the shelves and be tossed. FDA is particularly strict on meat and dairy products. Clawing all this back across national distribution to repackage would cost more than a destroy order.', 'created': '2024-11-12 00:31:17', 'submission_id': '1goyi4v'}
{'comment': "Is only says... recalled. That doesn't actually mean destroyed. So could still show back up with a label slapped on it. 😁", 'created': '2024-11-12 04:57:41', 'submission_id': '1goyi4v'}
{'comment': 'Biden can barely control his own bowel movements. 😆', 'created': '2024-11-11 23:19:57', 'submission_id': '1goyi4v'}
{'comment': 'LOLOL!', 'created': '2024-11-11 23:54:38', 'submission_id': '1goyi4v'}
{'comment': "There has to be a better way than throwing out perfectly good butter. Pay the shelf-stockers to sticker the damn packages before they go on the shelves! If a pound of butter goes for $5, the FDA is willing to throw out $400,000 because the assumption is PEOPLE DON'T KNOW BUTTER COMES FROM MILK! \n\nARE YOU KIDDING ME? 🤬🤬🤬 \n\nI am more than ready to see some major changes in this country.", 'created': '2024-11-12 05:22:38', 'submission_id': '1goyi4v'}
{'comment': 'Let them put stickers "contains milk" on them. Thanks for posting.', 'created': '2024-11-12 00:38:19', 'submission_id': '1goyi4v'}
{'comment': "But you think he's responsible for the FDA's decisions?", 'created': '2024-11-12 05:25:53', 'submission_id': '1goyi4v'}
{'comment': '_The FDA is led by the commissioner of Food and Drugs, appointed by the President with the advice and consent of the Senate._', 'created': '2024-11-12 05:31:43', 'submission_id': '1goyi4v'}
{'comment': 'Ultimately, Joe Biden is responsible for the FDA, just like he is responsible for the EPA and most of the other alphabet soup agencies.', 'created': '2024-11-12 16:32:45', 'submission_id': '1goyi4v'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 18:37:52', 'submission_id': '1goxzgc'}
{'comment': 'My wife and I have made butter before and that is the most absurd recall ever. Personally, I have never bothered to look at the ingredients of real butter, so I pulled out a package. The back says "cream, salt, contains milk." Well no kidding, where do you think the cream came from? The only things I consider when buying butter is if the butter is real or not and if it is salted or not.', 'created': '2024-11-11 20:40:54', 'submission_id': '1goxzgc'}
{'comment': 'I CAN‘T BELIEVE IT’S BUTTER!', 'created': '2024-11-11 19:21:46', 'submission_id': '1goxzgc'}
{'comment': "👋 Waves 👋 at woke person humping the down vote button for no apparent reason, that's disgusting. 😆", 'created': '2024-11-11 18:47:44', 'submission_id': '1goxzgc'}
{'comment': 'The woke left needs everything spelled out for them on account of their wokeness. 😁', 'created': '2024-11-11 20:51:01', 'submission_id': '1goxzgc'}
{'comment': "I can't believe the woke can't figure it out for themselves. 😆", 'created': '2024-11-11 20:00:58', 'submission_id': '1goxzgc'}
{'comment': 'Those who want to be governed in all aspects of life need to be told what to do…in all aspects of life.', 'created': '2024-11-11 20:10:28', 'submission_id': '1goxzgc'}
{'comment': "And the woke ones that can't read the definition of butter... 😆", 'created': '2024-11-11 20:29:35', 'submission_id': '1goxzgc'}
{'comment': 'Add their disdain for rural farmers and ignorance of where food comes from.', 'created': '2024-11-11 20:50:25', 'submission_id': '1goxzgc'}
{'comment': 'Along with the disgusting waste of food and needless contribution to climate change. 😆', 'created': '2024-11-11 20:55:58', 'submission_id': '1goxzgc'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 17:39:40', 'submission_id': '1gowic1'}
{'comment': 'RINOS, Specifically.', 'created': '2024-11-11 18:55:39', 'submission_id': '1gowic1'}
{'comment': 'They will fight to stop and slow down the maga agenda at every turn unfortunately, its impossible for them and their donors to realize this isn’t the corporate warmonger party anymore, but the bush republicans are shoving enough money in their pockets to ignore the American people. Just like the first term.', 'created': '2024-11-11 23:44:36', 'submission_id': '1gowic1'}
{'comment': 'No. \n\nJust stop trying to start internal civil wars. \n\nAs many people voted against the left as they did for "maga." \n\nTrump since the election has been awesome and magnanimous. What he said about Haley and Pompeo is exactly how he should act. And it\'s how his supporters. This insistent pound of flesh on anyone who isn\'t a populist is stupid. We are a big tent party. There will be "liberal" republicans, and "non-maga" republicans, and traditional conservative republicans, and maga republicans. \n\nThey all need to get along, because somehow someway they\'re all elected. So they represent SOMEONE. (More than someone, their constituency). \n\nIn 2024, neocons are a myth. Maybe in 2004 it was a thing, but not in 2024. And if you think support for Ukraine is a neoconservative thing, you\'re an idiot that does not understand geopolitics. The US has a longstanding tradition of opposing tyranny and invasions, it has a longstanding tradition of defending its interests abroad since Tripoli...that\'s not an endorsement of the second Iraq war, but it\'s certainly not an endorsement of isolationism either. \n\nThere needs to be a Thermidorean Reaction in the GOP, that accommodates both the traditional strong foreign policy of Teddy Roosevelt, Eisenhower, and Ronald Reagan, and the populist movement. \n\nRINOs are a myth. And if you call someone who has been a republican for 50 years a RINO or neo-con, you\'re the RINO. \n\nThere will never, ever be a party that perfectly aligns with your ideology or emotions. Nor should they be. \n\nWhen people on social media engage in ideological purity tests, whether progressive or populist, I make the quote reasonable assumption:\n\nThey ain\'t ever been married. \n\nThey ain\'t ever managed anything, that requires consolidating a dozen different opinions into a working solution. \n\nThey\'re in a basement somewhere, pushing their idealism to the fullest because they\'ve never had to negotiate or *trade* (one of the fundamental components of the free market, and thus conservatism, and thus the GOP) to get anything done. \n\nLife is about collaboration and compromise for the greater good. In a week, Trump has been decent in that regard. His dedicated fanbase? Eh, we\'ll see if they learn.', 'created': '2024-11-12 16:06:27', 'submission_id': '1gowic1'}
{'comment': 'The senate was made to be the independent chamber. It’s very good that people are allowed to vote how they want and across party lines. Getting rid of that is just making the senate the house.', 'created': '2024-11-12 19:09:28', 'submission_id': '1gowic1'}
{'comment': 'Is there a list of the Senate Rinos?', 'created': '2024-11-11 19:19:38', 'submission_id': '1gowic1'}
{'comment': 'The problem is maga republicans want all congressional republicans to take ideological purity tests every 5 minutes', 'created': '2024-11-12 19:08:42', 'submission_id': '1gowic1'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 17:20:28', 'submission_id': '1gow1nw'}
{'comment': "I feel like she needs to be prosecuted. I'm sure it's illegal to withhold aid based on political beliefs", 'created': '2024-11-11 17:55:40', 'submission_id': '1gow1nw'}
{'comment': 'Just In: "FEMA Official hired by CNN to be Disaster Consultant"', 'created': '2024-11-11 17:24:20', 'submission_id': '1gow1nw'}
{'comment': 'Should be put in prison', 'created': '2024-11-11 18:02:59', 'submission_id': '1gow1nw'}
{'comment': 'This is typical democrat behavior after getting their asses handed to them. They don’t realize the country is fed up with their policies and disastrous leadership. \nThis is what happens when there is no accountability from the top down. Look at the Secret Service, the border and the FBI.\nGood riddance! Come January 20, you are all FIRED!!! Pack your shit!', 'created': '2024-11-11 18:06:08', 'submission_id': '1gow1nw'}
{'comment': 'Furthermore I would have them clean up the yards with those signs as community service.', 'created': '2024-11-11 17:46:13', 'submission_id': '1gow1nw'}
{'comment': 'In the meantime lying to the public about FEMA doing a great job helping out after the hurricane and accusing Republicans of creating a false narrative that they were not.', 'created': '2024-11-11 18:44:12', 'submission_id': '1gow1nw'}
{'comment': "But I thought this wasn't happening?", 'created': '2024-11-11 18:33:56', 'submission_id': '1gow1nw'}
{'comment': 'They should prosecute… and make her do community service. She also should never be able to apply for any government job.', 'created': '2024-11-11 18:53:37', 'submission_id': '1gow1nw'}
{'comment': 'I’m sure there’s more than one person from FEMA that thinks this way.\n\n-Elon.., start here. Perfect time of year to cut the fat. 75% yeah', 'created': '2024-11-11 20:00:58', 'submission_id': '1gow1nw'}
{'comment': 'Serious case of malfeasance, and it should come with serious consequences like loss of any and all federal benefits plus some prison time.', 'created': '2024-11-11 19:20:09', 'submission_id': '1gow1nw'}
{'comment': 'Good!!!!!', 'created': '2024-11-11 17:51:56', 'submission_id': '1gow1nw'}
{'comment': 'Hopefully they get arrested too.', 'created': '2024-11-11 18:58:45', 'submission_id': '1gow1nw'}
{'comment': 'At some point being fired is not enough. When lives are at stake fines/jail time.', 'created': '2024-11-11 21:14:18', 'submission_id': '1gow1nw'}
{'comment': 'Should be charged', 'created': '2024-11-11 21:04:00', 'submission_id': '1gow1nw'}
{'comment': 'They need to be sent to a Gulag', 'created': '2024-11-11 22:46:26', 'submission_id': '1gow1nw'}
{'comment': 'I wonder if this was also happening in NC???', 'created': '2024-11-11 22:48:45', 'submission_id': '1gow1nw'}
{'comment': 'WTF has become of the Demotaric party??!! Oh wait nothing has changed since they wanted to KEEP slavery and lost that battle too! Just the faces have changed', 'created': '2024-11-11 23:44:44', 'submission_id': '1gow1nw'}
{'comment': 'These democrats should be fired', 'created': '2024-11-12 06:52:56', 'submission_id': '1gow1nw'}
{'comment': "CNN will soon spin this to say FEMA avoided Trump supporters because they thought they'd be racist or violent. Just watch.", 'created': '2024-11-12 08:39:31', 'submission_id': '1gow1nw'}
{'comment': 'W', 'created': '2024-11-11 18:10:53', 'submission_id': '1gow1nw'}
{'comment': 'This is a cultural problem, not a personnel issue. FEMA, and other federal government agencies, are rotten to the core. Cut out the rot, burn it, and bury the ashes so nothing can grow ever again.', 'created': '2024-11-12 05:29:40', 'submission_id': '1gow1nw'}
{'comment': 'Glory Hallelujah, it\'s a new day and THE TIDE has TURNED!\xa0 As a Christian, I am supposed to be all "We gotta put our parties aside, and pull together as a unified Nation"! But I can\'t stop gleefully giggling like a mischievous Schoolgirl right now!\xa0\xa0\n\n\nThere\'s this cotton candy pink, neon sign, flashing on and off in my brain, and it says "Woohoo, It\'s Payback Time"\xa0\n\n\n\xa0HAPPY THANKSGIVING, Y\'ALL!\xa0 Please don\'t eat the turkeys, I\'m a Vegetarian!\xa0 GOD BLESS AMERICA!', 'created': '2024-11-16 09:40:54', 'submission_id': '1gow1nw'}
{'comment': 'The one who wrote the memo, now get everyone who followed it.', 'created': '2024-11-12 01:40:05', 'submission_id': '1gow1nw'}
{'comment': 'Damn straight, it is!', 'created': '2024-11-11 18:51:47', 'submission_id': '1gow1nw'}
{'comment': 'But people will still defend it because “trump bad”. 😂', 'created': '2024-11-11 19:29:10', 'submission_id': '1gow1nw'}
{'comment': 'Frigging figures.. 😆', 'created': '2024-11-11 17:25:21', 'submission_id': '1gow1nw'}
{'comment': 'Lol, they’ve become a variety entertainment network anyway with the propaganda, fear tactics, gaslighting they promote so it’s no surprise they intend to continue to promote additional bias opinions', 'created': '2024-11-12 02:56:03', 'submission_id': '1gow1nw'}
{'comment': 'I want to see government agencies having bake sales to keep the funds up the more woke the more broke they become.', 'created': '2024-11-15 20:47:04', 'submission_id': '1gow1nw'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 17:08:16', 'submission_id': '1govr6b'}
{'comment': 'The days of a politicized FBI are over. It’s time to focus ONLY on fighting crime NOT republicans.', 'created': '2024-11-11 17:22:27', 'submission_id': '1govr6b'}
{'comment': "Oh, that's why all these threats against Trump and those that voted for him are being ignored. That makes sense.", 'created': '2024-11-11 17:13:38', 'submission_id': '1govr6b'}
{'comment': "J. Edgar Hoover's FBI is over. Hopefully this is a brand new start and they actually focus on their original purpose, fighting crimes and terrorists, not spying on political opponents.", 'created': '2024-11-11 19:29:58', 'submission_id': '1govr6b'}
{'comment': 'Good', 'created': '2024-11-11 17:11:39', 'submission_id': '1govr6b'}
{'comment': 'Have a life long friend that’s and FBI agent both he and his wife are agents. He said among the agents everyone is thrilled. Among the upper admin/brass everyone is shitting bricks and memos are being sent left and right', 'created': '2024-11-11 17:32:22', 'submission_id': '1govr6b'}
{'comment': 'Most of the top echelon in the FBI are going to be out of a job soon, and rightfully so.', 'created': '2024-11-11 18:56:32', 'submission_id': '1govr6b'}
{'comment': 'Make the FBI great again. I hope those SES people stick around so Trump can fire them. I appreciate an FBI that does "getting the bad guy" shit. I don\'t appreciate when the FBI and the Justice Department is used against political opponents. The upper management level of the FBI is worthless and deserves what is coming their way.', 'created': '2024-11-11 17:40:07', 'submission_id': '1govr6b'}
{'comment': 'Time for those boys to tune up them resumes. 🤣', 'created': '2024-11-11 17:42:37', 'submission_id': '1govr6b'}
{'comment': "Remember it's the leadership that is fucked. The rank and file agents are predominantly good people", 'created': '2024-11-11 19:19:45', 'submission_id': '1govr6b'}
{'comment': 'The DOJ is going to be like Ari from Entourage returning to the office with a paintball gun', 'created': '2024-11-11 17:50:48', 'submission_id': '1govr6b'}
{'comment': 'FBI Brass soon to be unemployed...', 'created': '2024-11-11 20:21:28', 'submission_id': '1govr6b'}
{'comment': 'Night of the Long Knives time you suckers\n\nFiguratively of course', 'created': '2024-11-11 17:28:36', 'submission_id': '1govr6b'}
{'comment': 'Time to put American history back on the right track', 'created': '2024-11-11 19:48:29', 'submission_id': '1govr6b'}
{'comment': 'Shut them down. FBI has got to go. Fire them all.', 'created': '2024-11-11 21:12:38', 'submission_id': '1govr6b'}
{'comment': 'Maybe they should have used a better hitman', 'created': '2024-11-11 20:11:39', 'submission_id': '1govr6b'}
{'comment': 'That made me smile', 'created': '2024-11-11 18:37:28', 'submission_id': '1govr6b'}
{'comment': 'Good. Wake up life is calling', 'created': '2024-11-11 19:11:05', 'submission_id': '1govr6b'}
{'comment': 'Relocate the 50% that’s left to “By God West Virginia” get them the fuck outta DC', 'created': '2024-11-11 20:11:39', 'submission_id': '1govr6b'}
{'comment': "Hopefully it's the Coat Hanger Express with all them!", 'created': '2024-11-11 20:12:14', 'submission_id': '1govr6b'}
{'comment': "Don't forget scared and trying to figure out who to blame to save their own asses.", 'created': '2024-11-11 20:22:02', 'submission_id': '1govr6b'}
{'comment': 'We probably have too many govt agencies let’s be real. Like 70% of crimes the fbi stops they’re actively encouraging and participating in', 'created': '2024-11-12 00:44:05', 'submission_id': '1govr6b'}
{'comment': 'He needs to revamp the entire top brass at FBI.', 'created': '2024-11-12 00:48:23', 'submission_id': '1govr6b'}
{'comment': 'Get rid of the corruption in all the alphabets, I think is what DJT has in mind. Maybe he’ll start with the FBI first.', 'created': '2024-11-11 21:31:31', 'submission_id': '1govr6b'}
{'comment': 'Time to execute, as in a pogrom of brass there.', 'created': '2024-11-11 23:56:18', 'submission_id': '1govr6b'}
{'comment': 'FBI better get the bankers boxes ready because the pink slips are coming January 20th!\xa0', 'created': '2024-11-12 02:22:11', 'submission_id': '1govr6b'}
{'comment': 'Good. Hopefully, they will be even more stocked after Trump fires a lot of them.', 'created': '2024-11-11 22:51:22', 'submission_id': '1govr6b'}
{'comment': 'If they’re shamed, they haven’t been paying attention', 'created': '2024-11-12 12:19:48', 'submission_id': '1govr6b'}
{'comment': "Unfortunately, I think the only way to get the FBI there is purge it of liberals, Democrats, and deep state operatives, and replace them with loyal conservative Republicans. \n\nIt's the paradox of tolerance - the only way we can get a politically neutral FBI is to fire everyone who puts politics over the good of the country - and that means firing all Democrats. Political neutrality in law enforcement is a Republican value.", 'created': '2024-11-11 23:59:39', 'submission_id': '1govr6b'}
{'comment': 'Really hard to do anything when you’re shell shocked and stunned.', 'created': '2024-11-11 18:42:41', 'submission_id': '1govr6b'}
{'comment': 'I used to work for a retirement home as a volunteer when I was a teenager. They had a retired FBI agent there who used to work directly with J. Edgar Hoover, even had photos of him and Hoover on his bedroom walls. This guy was a huge pervert and use to fondle the nurses on a regular basis and tried to bribe them for sex with money from his retirement account.', 'created': '2024-11-13 07:01:59', 'submission_id': '1govr6b'}
{'comment': 'Not a hard thing to imagine actually lol. Same thing happens in the military when the enlisted get pissed at senior leadership / officers', 'created': '2024-11-11 18:26:20', 'submission_id': '1govr6b'}
{'comment': 'They deserve to be charged.', 'created': '2024-11-11 21:51:00', 'submission_id': '1govr6b'}
{'comment': 'Agreed', 'created': '2024-11-12 17:11:02', 'submission_id': '1govr6b'}
{'comment': 'Isn’t it wonderful to know the “greatest police force in the world” is filled with agents that are shell shocked over a political figure winning an election?', 'created': '2024-11-11 21:16:10', 'submission_id': '1govr6b'}
{'comment': "Can't argue with you there.", 'created': '2024-11-12 00:26:54', 'submission_id': '1govr6b'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 16:18:40', 'submission_id': '1gouker'}
{'comment': "The 'Brown Wave'\n\nThe left keeps making the mistake of lumping together illegals with Hispanic citizens, who resent illegals and want them deported.", 'created': '2024-11-11 16:49:59', 'submission_id': '1gouker'}
{'comment': None, 'created': '2024-11-11 17:08:09', 'submission_id': '1gouker'}
{'comment': 'It is when 1 party does not represent the people anymore when they come back from woke far left agenda or a 3rd party replaces them it’s best they loose as much power as possible', 'created': '2024-11-11 19:16:31', 'submission_id': '1gouker'}
{'comment': 'For a while.\n\nThe left needs to sit in timeout for a decade or until they understand that what they did was wrong.', 'created': '2024-11-11 18:09:10', 'submission_id': '1gouker'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 15:50:33', 'submission_id': '1gotx0n'}
{'comment': 'Heard the term Astroturfing. So many people were on Reddit as effective bots. Their job was to make it look like there were tons more Kamala/DNC followers. Now the election is over and Reddit is noticeably quieter', 'created': '2024-11-11 16:26:34', 'submission_id': '1gotx0n'}
{'comment': 'The corporate media is after ratings and nobody wants to tune in when it’s a runaway for one side. I have a conspiracy theory that the media jukes stats to make polls look closer than they actually are so every election for the last 24 years has been nail biter in the polls leading up to the vote.', 'created': '2024-11-11 17:04:42', 'submission_id': '1gotx0n'}
{'comment': 'Not to mention Kamala herself and Joe Biden.', 'created': '2024-11-11 16:02:12', 'submission_id': '1gotx0n'}
{'comment': "This is what I've been saying. This is why it's so important to be kind to one another at this point. Your fellow Americans have been lied to. They're suffering at the hands of corporate interests. We don't have to agree to know that it's best for the country to show them the America we see in each other", 'created': '2024-11-12 03:14:51', 'submission_id': '1gotx0n'}
{'comment': 'I wouldn’t give media the credit at how bad Kamela was. I mean she hasn’t done anything over the last 4 years. When she went on the View she said she wouldn’t change a thing when asked what she’s going to change. She never talked about anything she was going g to do to help. Just talked about how bad orange man was. I’m in the middle and I wouldn’t have ever voted for her', 'created': '2024-11-11 16:46:14', 'submission_id': '1gotx0n'}
{'comment': "Corporate media and their liberal following can all burn in hell. I have tried to have sympathy for them, but I just can't go there. I hope they all choke on their WOKE, DEI, Trans utopian delusion. 💯", 'created': '2024-11-11 17:47:54', 'submission_id': '1gotx0n'}
{'comment': 'Is Fox News not “corporate media”?', 'created': '2024-11-11 22:10:51', 'submission_id': '1gotx0n'}
{'comment': "That's definitely true, but it's worth noting that Reddit's ownership made that not just possible but seemed to be in on it.", 'created': '2024-11-11 17:14:56', 'submission_id': '1gotx0n'}
{'comment': 'You mean that r/ pics wasn’t suddenly and wildly fascinated with the greatest political candidate duo of Harris/Walz?? It seemed so genuine and totally not artificial…', 'created': '2024-11-11 17:38:30', 'submission_id': '1gotx0n'}
{'comment': 'You notice that too', 'created': '2024-11-11 17:04:09', 'submission_id': '1gotx0n'}
{'comment': "There's a video on youtube of election results on Ronald Reagan's victory in 1984. It was amusing, to say the least.", 'created': '2024-11-11 17:37:03', 'submission_id': '1gotx0n'}
{'comment': "CNN's whole business relies on reporting on Trump, usually negatively. Their income went down during the Biden years as they couldn't say orange man bad enough apparently.", 'created': '2024-11-12 05:51:02', 'submission_id': '1gotx0n'}
{'comment': 'Every picture was someone fishing for upvotes!!! “I voted” crap non stop. Instantly +4,000', 'created': '2024-11-11 17:47:22', 'submission_id': '1gotx0n'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 14:42:56', 'submission_id': '1gosgsn'}
{'comment': 'To me this is not good.\xa0 \xa0Now we have another house seat to defend.\xa0 Hopes there is a good well enough name recognition person in that district that is a republican to replace her.\xa0 Trump please keep her in the house!\xa0', 'created': '2024-11-12 02:15:01', 'submission_id': '1gosgsn'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 13:05:28', 'submission_id': '1goqnt1'}
{'comment': "I'm surprised Elise Stefanik would want to give up her power in the House of Representatives to be the UN Ambassador. Getting her to do it is a solid choice though.", 'created': '2024-11-11 14:23:10', 'submission_id': '1goqnt1'}
{'comment': 'And I doubt he will ever run away from the title “border czar”', 'created': '2024-11-11 17:59:10', 'submission_id': '1goqnt1'}
{'comment': 'UN Ambassador has to be one of the best jobs ever. Get an awesome place in NYC, go to the UN, and get to argue to with other UN nations all day. Has to be sick.\n\nAlso, Homan is no bullshit. If Trump wants that border closed and deportations to start, that guy 100% WILL do. Probably the most hardlined individual possible on illegal immigration', 'created': '2024-11-12 01:10:15', 'submission_id': '1goqnt1'}
{'comment': 'Appoint AOC ambassador to Mongolia', 'created': '2024-11-11 15:31:03', 'submission_id': '1goqnt1'}
{'comment': "What will happen to Stefanik's seat in the House? I assume the NY governor will appoint someone until a runoff.", 'created': '2024-11-11 19:10:59', 'submission_id': '1goqnt1'}
{'comment': 'Bad move keep her in the house.\xa0 Put Bush 43 there LOL.\xa0\xa0', 'created': '2024-11-12 02:24:04', 'submission_id': '1goqnt1'}
{'comment': "Won't that mean Hochul will just replace Stefanik with a democrat?", 'created': '2024-11-11 14:54:48', 'submission_id': '1goqnt1'}
{'comment': "Is her district ruby red? Because we don't know which party will control the House( I think the GOP will) but any House appointments to Trump's admin make growing a majority next to impossible.", 'created': '2024-11-11 15:08:17', 'submission_id': '1goqnt1'}
{'comment': 'Damn mongorians. You stay away from my city wok', 'created': '2024-11-11 15:55:38', 'submission_id': '1goqnt1'}
{'comment': "No. Governor's do not have the authority to replace a House seat. \n\nSenators are another matter and after a set time elections must be held for a senate seat replaced by a governor", 'created': '2024-11-11 15:07:03', 'submission_id': '1goqnt1'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 10:29:55', 'submission_id': '1gooevo'}
{'comment': 'If they think we cheated then it\'s pretty damning for the 15 million "voters" that didn\'t show up this time for them.', 'created': '2024-11-11 12:18:46', 'submission_id': '1gooevo'}
{'comment': 'Their tears are enough now to fill an Olympic swimming pool', 'created': '2024-11-11 11:46:32', 'submission_id': '1gooevo'}
{'comment': "It definitely has nothing to do with the fact that their candidate wasn't even democratically elected.. /s", 'created': '2024-11-11 10:58:27', 'submission_id': '1gooevo'}
{'comment': 'Its cause they have the inability to think were more than just red voting racist bigot monsters 🤷\u200d♀️ theyre the vote blue no matter who party', 'created': '2024-11-11 10:52:48', 'submission_id': '1gooevo'}
{'comment': '“eLeCtIoN DenIaL iS a tHrEaT tO dEmOcRaCy”', 'created': '2024-11-11 13:38:51', 'submission_id': '1gooevo'}
{'comment': 'Yeah, Dems got mad that Republicans questioned the results, and now they are', 'created': '2024-11-11 13:00:38', 'submission_id': '1gooevo'}
{'comment': 'Apparently, we need to be go to astrologers for election information. That will straighten it all out.', 'created': '2024-11-11 12:42:21', 'submission_id': '1gooevo'}
{'comment': 'Voting machines hooked up to starlink 😂😂😂😂\n\nI love starting my day with a good laugh', 'created': '2024-11-11 13:28:51', 'submission_id': '1gooevo'}
{'comment': 'These people need to remember who the Democrat nominee was.', 'created': '2024-11-11 14:23:25', 'submission_id': '1gooevo'}
{'comment': 'So much for the gracious and smooth transition.', 'created': '2024-11-11 12:05:08', 'submission_id': '1gooevo'}
{'comment': 'Hey maybe it was stolen this time, I’m open to that… but that also implies it was stolen last time by the Dems. The only thing showing it was possible was 15 million more votes…. Oh that was last time.', 'created': '2024-11-11 13:12:30', 'submission_id': '1gooevo'}
{'comment': 'Remember in 2020 when Biden was chosen but the rest of the ballot was Red? I remember.', 'created': '2024-11-11 14:57:48', 'submission_id': '1gooevo'}
{'comment': 'I agree there is fraud. Let’s audit the fuck out of Arizona, let’s find the fraud!! In doing so, Kari Lake me be found to be the real winner…so be careful for what yall ask for.', 'created': '2024-11-11 12:11:58', 'submission_id': '1gooevo'}
{'comment': 'One of the craziest takeaways from this election is their inability to self-reflect. \n\nAfter that absolute THRASHING of an election, most still seem to be scratching their heads going “welp, couldn’t be anything we did, definitely wasn’t our rhetoric so it must have been stolen.” \n\nMakes 2028 a walk in the park if they keep up the same nonsense that cost them 2 more SCOTUS, the POTUS, Senate and probably the House.', 'created': '2024-11-11 13:41:38', 'submission_id': '1gooevo'}
{'comment': "These people cannot accept some people would change their minds and side with Trump after how horrible a job the Biden administration did. 4 years ago we said they cheated and they called BS. Now they say it to us. Lake in Arizona is about to lose for Senator even though Trump won and she even has more votes than Kamala. That smells like cheating but they're to trying to flip the narrative.", 'created': '2024-11-11 14:41:21', 'submission_id': '1gooevo'}
{'comment': 'Luckily the only questions on this test were are you crazy? And do have a plan? Kamala flunked the test', 'created': '2024-11-11 12:06:16', 'submission_id': '1gooevo'}
{'comment': 'I thought it was legit, I think Biden and Harris were mostly stand up and promised a smooth transition however, if the astrologers said so, I might have to reconsider my beliefs 🤷🏻\u200d♂️', 'created': '2024-11-11 12:52:30', 'submission_id': '1gooevo'}
{'comment': 'Ohhhh. So they can deny an election, but we can’t. Got it.', 'created': '2024-11-11 13:46:28', 'submission_id': '1gooevo'}
{'comment': 'What really is the "ain\'t no fucking way" is that Joe legitimately got this 6 of 7 in 2020', 'created': '2024-11-11 13:46:08', 'submission_id': '1gooevo'}
{'comment': "Yeah, it's because they don't think for themselves and think what they are told to think", 'created': '2024-11-11 14:24:49', 'submission_id': '1gooevo'}
{'comment': 'Kamal only won two states where voter ID is strictly enforced… that should tell you something.', 'created': '2024-11-11 14:32:32', 'submission_id': '1gooevo'}
{'comment': 'Well then Jan 6 2025 should be interesting. They need a catch phrase like, “stop the steal…or something silly like that.” But shouldn’t they be asking what happened to the 15mil voters that Biden got?', 'created': '2024-11-11 13:44:10', 'submission_id': '1gooevo'}
{'comment': "Some of the brightest people I've seen on social media on the left are actually admitting they lost and actually have reasons why. These few loud outliers should look to the real political scientists and see that they did, in fact, lose.\n\nMuch like I wish our loud right wing outliers would when it comes to 2020, lmao", 'created': '2024-11-11 15:29:05', 'submission_id': '1gooevo'}
{'comment': 'Sooo they gana say the right cheated when in fact biden should have never been in office?', 'created': '2024-11-11 15:38:50', 'submission_id': '1gooevo'}
{'comment': 'Yeah there was cheating. Should have been 538-0 for Trump.', 'created': '2024-11-11 14:55:17', 'submission_id': '1gooevo'}
{'comment': "'I don't want to be a conspiracy theorist but him and his buddy El\\*n #cheated idk how but they did'\n\nWell boys, it seems Trump must have cheated because a random girl on X said so, we must pack it up now, we have been defeated!", 'created': '2024-11-11 15:22:30', 'submission_id': '1gooevo'}
{'comment': '[https://www.youtube.com/watch?v=Fn0154SaU-U](https://www.youtube.com/watch?v=Fn0154SaU-U) I have been waiting 4 years to hear this. Share this to any one that wants to talk about in the 2024 election being stolen.', 'created': '2024-11-11 14:30:39', 'submission_id': '1gooevo'}
{'comment': 'People really have no clue do they... Swing states almost always heavily break for one candidate or the other. Whats rare is when they dont.', 'created': '2024-11-11 14:43:23', 'submission_id': '1gooevo'}
{'comment': 'Random people on twitter denying the election results definitely equates to elected officials doing it', 'created': '2024-11-11 15:53:26', 'submission_id': '1gooevo'}
{'comment': 'I disagree with the outcome too, Trump should have won by more. Lets recount all the Blue states first.', 'created': '2024-11-11 16:05:39', 'submission_id': '1gooevo'}
{'comment': 'Ofcourse some rando on internet will have conspiracy theory. Until this is the official position, this nothing to note about', 'created': '2024-11-11 16:33:56', 'submission_id': '1gooevo'}
{'comment': 'Had we said any of that we are “imagining things” lmfao', 'created': '2024-11-11 17:38:17', 'submission_id': '1gooevo'}
{'comment': 'Remember when Joe Biden won and the response from the left to the right was “he lost, get over it”?', 'created': '2024-11-11 18:25:02', 'submission_id': '1gooevo'}
{'comment': 'What I\'m most disappointed in with these people is that the big lessons from this campaign are so obvious: 100 days is not enough to run a presidential campaign, and don\'t run the veep of the least popular president in decades. Having a primary would have helped tremendously too. But they *immediately* pulled their knives, and start going after Hispanic folks, wishing death on Republicans, one person even suggested we should have "gotten rid" of transgender people and they would have won. It\'s all extremely un-American, and extremely disappointing', 'created': '2024-11-11 19:30:52', 'submission_id': '1gooevo'}
{'comment': 'they just can’t fathom that the current Democratic Party is a mess. The people don’t want their bullshit, they forced a candidate down their throats, they didn’t do a damn thing the last four years, and inflation. They should be mad at legacy media for gaslighting them into thinking Kamala had a chance.', 'created': '2024-11-11 13:47:49', 'submission_id': '1gooevo'}
{'comment': 'There are people who live in echo chambers and therefore don’t understand how the rest of the world outside their bubble felt.', 'created': '2024-11-11 13:47:47', 'submission_id': '1gooevo'}
{'comment': 'Anyone with common sense saw this coming', 'created': '2024-11-11 13:59:41', 'submission_id': '1gooevo'}
{'comment': 'Also even musk hired an insane amount of people to make sure no cheating was happening', 'created': '2024-11-11 14:48:16', 'submission_id': '1gooevo'}
{'comment': 'I mean... no different than our party 4 years ago.', 'created': '2024-11-11 15:24:12', 'submission_id': '1gooevo'}
{'comment': 'And they gave us sooooooo much shit in 2020 😂😂', 'created': '2024-11-11 16:04:17', 'submission_id': '1gooevo'}
{'comment': '😂', 'created': '2024-11-11 16:10:38', 'submission_id': '1gooevo'}
{'comment': 'Are there any debunkings, especially for the claim that starlink affected the voting process?', 'created': '2024-11-11 16:18:11', 'submission_id': '1gooevo'}
{'comment': '“As many astrologers have said” \n\nExcuse me what the fuck', 'created': '2024-11-11 16:43:07', 'submission_id': '1gooevo'}
{'comment': 'I think this is just what the country needs to unite us.\n\n"You\'re an election denyer!"\n\n"No YOU are an election denyer!"\n\nWell we have that in common.', 'created': '2024-11-11 17:15:09', 'submission_id': '1gooevo'}
{'comment': "Dem's are Borg they have a hive mind mentality.", 'created': '2024-11-11 17:25:01', 'submission_id': '1gooevo'}
{'comment': 'I love how they’re whining about “they cheated 20 million votes out of the system” when 2020 was the outlier in the last 5 elections. I hate people who don’t research their BS claims', 'created': '2024-11-11 17:54:00', 'submission_id': '1gooevo'}
{'comment': 'Ya, maybe people were just fed up with being treated like crap! So they voted them out. They just don’t get it.', 'created': '2024-11-11 18:03:16', 'submission_id': '1gooevo'}
{'comment': 'Four years of this. I’m sure they felt the same way.', 'created': '2024-11-11 18:25:30', 'submission_id': '1gooevo'}
{'comment': 'Sounds like treason', 'created': '2024-11-11 18:36:24', 'submission_id': '1gooevo'}
{'comment': 'Definitely begs the question why it was legit last time for them when the “spike in the night” occurred and we were supposed to accept the results. However, a bit of grace should be given considering how many republicans called election interference last election. Albeit, with way more reason than they have for this election.', 'created': '2024-11-11 18:39:07', 'submission_id': '1gooevo'}
{'comment': 'Bro, I am not even American and I am proud of the American people. Common Sense, family values and civic spirit have prevailed. I salute you from Europe.', 'created': '2024-11-11 18:47:47', 'submission_id': '1gooevo'}
{'comment': "''I don't want to be a conspiracy theorist.... but literally fraud and cheating went on >:)''. These are the same people that doxxed, issued death threats, called people Democracy haters , called people nazi terrorists for even questioning the results of the last election. But since this election went not their way, it's okay to question results of elections now. I thought questioning elections were anti-democratic and made people nazis. But hey, now it's the greatest! Just like chanting hitler quotes while denouncing jews while calling Trump ''Hitler''. What the hell? These people will never learn. Calling people hitler and all this garbage was the reason why they lost. In every speech that they gave, Kamala, Joe Biden, etc. they demeaned people and ignored the needs of people. As a result, they lost. If they don't get their act together by the midterms, yikes, the GOP are going to have a field day with it.", 'created': '2024-11-11 18:47:58', 'submission_id': '1gooevo'}
{'comment': 'The far left spent the last year chanting "genocide Joe," "don\'t vote for Harris," and "Harris is the same as Trump." Millions were told not to vote for Harris because of Gaza, so they didn\'t. \n\nPeople were loudly shouting about this all the way up to election day and now they\'re shocked that people didn\'t vote for their side. \n\nThe far left did everything in its power to ensure a Trump victory and now they\'re upset that they succeeded.', 'created': '2024-11-11 18:52:16', 'submission_id': '1gooevo'}
{'comment': 'They made fun of us in 2020 but now they are doing the exact same thing.', 'created': '2024-11-11 19:09:01', 'submission_id': '1gooevo'}
{'comment': 'None of these are elected officials', 'created': '2024-11-11 19:16:09', 'submission_id': '1gooevo'}
{'comment': 'Post recommended to me right below this one is from r/Democrats; “They cheated, change my mind” 🤣', 'created': '2024-11-11 19:21:55', 'submission_id': '1gooevo'}
{'comment': "Online Democrats can't realize Kamala Harris is very disliked, and a lot of people are pissed about the direction the Biden Administration turned this country in. Why the fuck would they vote for his right hand when they're the ones who fucked this country.", 'created': '2024-11-11 19:29:52', 'submission_id': '1gooevo'}
{'comment': 'Funny how they went from 81 million voters to 68 million.', 'created': '2024-11-11 19:37:27', 'submission_id': '1gooevo'}
{'comment': 'Who’s the conspiracy theorists now?', 'created': '2024-11-11 20:19:15', 'submission_id': '1gooevo'}
{'comment': 'Lmao at the part where they said no way someone who couldn’t fill a stadium won all 7. Couldn’t be more obvious she’s referring to the constant fake videos being circulated of the earlier parts of his rally where people were still just starting to come in, hours before the actual start of the event. Their lies/deception on social media really were one of their greatest downfalls 😂', 'created': '2024-11-11 20:23:48', 'submission_id': '1gooevo'}
{'comment': '"Couldn\'t fill a stadium" is my favorite one. \n\nYou\'re right. He chose to shut down midtown Manhattan for his MSG Rally instead.', 'created': '2024-11-11 20:33:42', 'submission_id': '1gooevo'}
{'comment': 'The funny part about this is that Kamala didn’t win ONE SINGLE STATE that has voter ID Laws and she didn’t lose ONE SINGLE STATE that doesn’t have voter id laws… let that sink in.', 'created': '2024-11-11 20:34:24', 'submission_id': '1gooevo'}
{'comment': 'The thing is, its pretty easy to win all the swing states when you have Kamala running for you. Its just rare because usually the person running can name at least one policy they will put in place if they win.', 'created': '2024-11-11 21:34:51', 'submission_id': '1gooevo'}
{'comment': '“El*n” .. 😂 when did Elon become a slur', 'created': '2024-11-11 21:35:49', 'submission_id': '1gooevo'}
{'comment': "But elections are secure and it's impossible for a party to commit widespread fraud right? Maybe they should go peacefully protest at the Capitol.", 'created': '2024-11-11 21:54:38', 'submission_id': '1gooevo'}
{'comment': 'Maybe show up to polls instead of complaining online? Problem solved.', 'created': '2024-11-11 22:12:17', 'submission_id': '1gooevo'}
{'comment': '"As many astrologers have said"\n\nThe intellect we\'re dealing with.', 'created': '2024-11-11 22:31:55', 'submission_id': '1gooevo'}
{'comment': 'How dumb are these people?', 'created': '2024-11-11 22:40:54', 'submission_id': '1gooevo'}
{'comment': 'TRUMP TRAIN BABY!!!! Let’s go', 'created': '2024-11-11 22:56:19', 'submission_id': '1gooevo'}
{'comment': 'Tears! 😂', 'created': '2024-11-11 23:08:10', 'submission_id': '1gooevo'}
{'comment': "What about the magical 25+ million voters they gained in 2020 compared to the rest of the elections? They were consistently around 122-129 million voters but in 2020 had 155 million 🤔🤔. And now for this election they dropped back down to the normal numbers. But that wasn't suspicious?", 'created': '2024-11-11 23:27:40', 'submission_id': '1gooevo'}
{'comment': 'I hope they change or learn from their mistakes', 'created': '2024-11-11 23:56:17', 'submission_id': '1gooevo'}
{'comment': 'Honestly, even discounting the shenanigans in 2020, it’s not all that shocking he would win the swing states. Trump barely lost most or all of the swing states last time around. GA and AZ were super tight margins and the rest weren’t particularly large margins.', 'created': '2024-11-12 03:42:26', 'submission_id': '1gooevo'}
{'comment': 'Slide 8 tells you all you need to know.\nFor lords sake these people are brainwashed. He had huge flooded rallies. Hell the first attempt on his life everyone was terrified but didn’t cowar and run. Because people trust him as our leader that much. If they think that’s “cult” behavior it’s not, it’s called patriotism and having some balls', 'created': '2024-11-12 05:09:32', 'submission_id': '1gooevo'}
{'comment': 'Voting machines hooked up to star link 😂😂😂', 'created': '2024-11-12 09:40:32', 'submission_id': '1gooevo'}
{'comment': '>Ain’t no well in hell ANYONE gets all the swing states \n\n\n\nThere’s a way when the entire nation is fed the fuck up with the way things are going and know just the guy to fix it.', 'created': '2024-11-12 13:28:10', 'submission_id': '1gooevo'}
{'comment': '🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣', 'created': '2024-11-12 13:49:51', 'submission_id': '1gooevo'}
{'comment': 'They didn’t notice the extra 15 million democrats voting for Joe Biden in 2020 that didn’t vote this year?', 'created': '2024-11-12 16:41:17', 'submission_id': '1gooevo'}
{'comment': 'Trumps votes have stayed the same the last 3 elections he has been apart of, maybe a couple million different at most. Democrats votes have stayed the same aswell, until in 2020 they RANDOMLY got an extra 18 million votes, then it came back down again to normal. \n\nYou must be incredibly delusional to think the republicans cheated in any scenario.', 'created': '2024-11-12 18:01:17', 'submission_id': '1gooevo'}
{'comment': 'The last one seems to show that people still can’t believe the majority of the country is fed up with the current administration.', 'created': '2024-11-12 23:25:50', 'submission_id': '1gooevo'}
{'comment': 'IDK why they think winning swing states is cheating. Hell the Amish registered to vote for Trump and they never vote.\n\nPlus the numbers are still pretty consistent compared to previous elections. 2020 was extremely inflated. Some of us still accept the loss, but the numbers are clearly something to question especially during an election where it was handled differently for the first time.\n\nregardless, he won. And the states did everything they could to ensure a safe and secure and fair election.....It also wasn\'t too long ago a woman who counted ballots for 2020 on video stated "I question the authenticity of 2020s election because we had ballots that were in order of address which is extremely unusual because ballots typically would be random due to different days voted"\n\nIf someone can help me find that video or a video covering that woman\'s testimony please reply.', 'created': '2024-11-13 00:23:52', 'submission_id': '1gooevo'}
{'comment': 'They think Trump cheated when there was 15 million less democrat votes from 2020', 'created': '2024-11-16 00:33:11', 'submission_id': '1gooevo'}
{'comment': 'I’m not surprised at all really, after all he is the obvious choice. In fact I think the dems tried to rig it. I’m shocked it wasn’t a Reagen type of deal after what we had been thru these last 4 years. It should have been one of the biggest landslides in history with at least half the blue states going red. I also find it amazing how they thought they were going to get Texas and Florida, LMFAO 🤣 not even in their dreams!\xa0', 'created': '2024-11-18 04:59:26', 'submission_id': '1gooevo'}
{'comment': "If the sitting government can't even save democracy by conducting fair elections, rather you folks should be out of power.", 'created': '2024-11-11 13:50:41', 'submission_id': '1gooevo'}
{'comment': '“He cheated idk how but he did” most sore looser type shit I’ve ever heard, they all argue like they’re no older than 7', 'created': '2024-11-11 14:55:30', 'submission_id': '1gooevo'}
{'comment': 'Looks like Trumps [little secret](https://people.com/donald-trump-little-secret-mike-johnson-8735510) paid off this cycle. \n\nBut the results are in your favor, and your precious little feelings are being coddled so it MUST be a clean election now!', 'created': '2024-11-11 14:16:38', 'submission_id': '1gooevo'}
{'comment': "I have been reminding them it's hard to win without overnight ballot dumps, whenever I see someone crying about the whole 15 million thing. Turns out they don't like that either. There's just no pleasing the hive mind!", 'created': '2024-11-11 15:33:59', 'submission_id': '1gooevo'}
{'comment': 'They’re still going on about that ?', 'created': '2024-11-11 13:10:58', 'submission_id': '1gooevo'}
{'comment': 'Its down to 8 million and they are still counting in some states.', 'created': '2024-11-11 20:08:05', 'submission_id': '1gooevo'}
{'comment': 'People keep repeating this 15 million lie and we need to stop it.\n\nIn 2020 155 million people voted. It’s looking like 153 million will vote this time. \n\nToo many people spreading stuff online when they’re not even done counting. It’s technically still possible that Harris wins the popular vote. Not at all likely, but that’s how many millions of votes are still not counted yet.', 'created': '2024-11-11 16:15:39', 'submission_id': '1gooevo'}
{'comment': 'It can fill half of America', 'created': '2024-11-11 16:10:31', 'submission_id': '1gooevo'}
{'comment': 'Reminds me of Republicans in 2020', 'created': '2024-11-11 22:36:52', 'submission_id': '1gooevo'}
{'comment': 'They spent the last 4 years defending election integrity and hunting down deniers to lock up.', 'created': '2024-11-11 11:55:23', 'submission_id': '1gooevo'}
{'comment': 'Thank you for stating this. People think "they just have TDS", no, they are anti-any Republican. Mitt could be our nominee again and they\'d hate him, too. Just like the last time. As you said, they\'re vote blue no matter who.\n\nBut obviously their TDS is off the charts lol.', 'created': '2024-11-11 13:31:37', 'submission_id': '1gooevo'}
{'comment': 'To be fair, after all the bullshit from 2016 to 2020, and then the cheating of the 2020 election, I\'m "vote red till I\'m dead". Of course then I\'ll probably be voting blue.', 'created': '2024-11-11 15:30:19', 'submission_id': '1gooevo'}
{'comment': "Tbf. It's just randos on the Internet and not Kamala or any offical person", 'created': '2024-11-11 13:04:13', 'submission_id': '1gooevo'}
{'comment': 'They were all wrong as well', 'created': '2024-11-11 13:11:42', 'submission_id': '1gooevo'}
{'comment': "Ha, I saw that same video i think you're talking about. Very funny.", 'created': '2024-11-11 19:41:00', 'submission_id': '1gooevo'}
{'comment': "Haha...Yes! There is just no way that Trump could have won, don't you know his chinese zodiac sign is a dog and this mercury retrograde in saggitarius brings bad luck? /s", 'created': '2024-11-13 06:59:51', 'submission_id': '1gooevo'}
{'comment': 'Its like they dont even know who owns the voting machines lol', 'created': '2024-11-11 13:49:04', 'submission_id': '1gooevo'}
{'comment': "Kinda like this year but the opposite when you look at states like NC voting trump but then electing a democratic Governor and AG. \n\n\nFeels dumb to say but those types of election results give me a bit of hope for the future. It's a nice reminder to me that people are still thinking for themselves and not getting completely entrenched in one party or the other even if the outcome isn't what I wanted personally.", 'created': '2024-11-11 23:54:43', 'submission_id': '1gooevo'}
{'comment': "Could it be that our candidate was handpicked for us - and we didn't get a say in the mater?\n\nNah. Trump cheated.", 'created': '2024-11-11 20:34:35', 'submission_id': '1gooevo'}
{'comment': 'I got downvoted to hell in a certain subreddit because I had pointed out their hypocrisy lmfao.', 'created': '2024-11-11 17:26:17', 'submission_id': '1gooevo'}
{'comment': "So it's bad when Republicans do it, but ok when your side does....\n\nMakes perfect sense.", 'created': '2024-11-11 14:24:43', 'submission_id': '1gooevo'}
{'comment': 'Perpetually.', 'created': '2024-11-11 15:04:35', 'submission_id': '1gooevo'}
{'comment': "The election ended a week ago with states like Florida able to post full ballot counts the night of the election. By this point if any districts haven't finished the count they need to have their managers fired, ballot counters removed, and full investigations launched into why they can't complete the basics of a functional ballot count. It's entirely unacceptable to let six days go past while the rest of the nation is finished and have a handful of counties failing to meet the standard.", 'created': '2024-11-11 16:18:00', 'submission_id': '1gooevo'}
{'comment': 'The 15 million is in reference to the Democrat vote counts of the two elections which is about a 10,000,000 vote swing. It was closer to 15 million the day after the election which is where that amount comes from. It’s not a lie, but calling it one is.', 'created': '2024-11-11 22:14:14', 'submission_id': '1gooevo'}
{'comment': 'Yeah but not nearly as much as rn', 'created': '2024-11-11 23:26:56', 'submission_id': '1gooevo'}
{'comment': 'Complete hypocrites, at least now they are on the same page as us with the fact that a lot of work needs to be done for perfectly fair elections', 'created': '2024-11-11 13:54:43', 'submission_id': '1gooevo'}
{'comment': 'Exactly! And they will never acknowledge any sort of parallel between their parties experiences and ours. The fact of the matter is they are “pick me” children, who whine and complain and use the word “racist” as a Trump card to win any conversation. I am just resigning myself to the fact that they believe what they believe, and I believe what I believe, and I won’t change or get through to them, so there is no point in wasting my breath.', 'created': '2024-11-11 15:18:14', 'submission_id': '1gooevo'}
{'comment': 'I see what you did there.', 'created': '2024-11-13 05:28:35', 'submission_id': '1gooevo'}
{'comment': "Yeah, we should be better than what they did. If one trump supporters did something stupid, the entire media would blow it up and act as if his entire base was deranged idiots. Let's lead by example and not do the same.", 'created': '2024-11-11 13:31:30', 'submission_id': '1gooevo'}
{'comment': 'I mean, I don’t love it either, but five seconds of research explains why.\n\n\nMail in ballots mostly disappeared this year. But the states that are still counting, still have a majority of their votes via mail in ballots. \n\n\nIf you live in a shitty state like California, nobody wants to wait in line for 24 hours to vote so there’s some cities where 80% of the vote is done via the mail. \n\n\nAs conservatives, the only good thing about this process is that every state has its own separate process. One of the biggest reasons widespread election fraud can never happen in this country is because every state’s process is completely detached from the rest of the country. \n\nBest you could do is literally try to fraud one state but you ain’t getting all 50', 'created': '2024-11-11 16:19:54', 'submission_id': '1gooevo'}
{'comment': 'Both those numbers are not accurate anymore tho. \n\nBiden got 81,000,000 and Kamala is going to end up with 75,000,000+ \n\nThat’s a 6ish million difference.\n\nDo you not see the difference in starting out claiming \n\nThere’s 15 million swing! \n\nThere’s 10 million swing! \n\nThere’s uh, 5 million swing! \n\nThe truth matters because it makes the context more important and eliminates huge red flags that cause concern', 'created': '2024-11-11 22:37:07', 'submission_id': '1gooevo'}
{'comment': 'Yea but in 2020 there were legitimate issues like all the swing states changing their voting laws a month before the election, 3am ballot dumps entirely to democrats, recounts didn’t verify identification, and statistically improbable vote counts for Biden (beating Obama’s record popular vote count by a whopping 18%), among dozens of issues. \n\nThere haven’t been any legitimate claims for 2024. The election deniers this time around are just far leftists who are so far into their echo chambers that it feels impossible that anyone was going to vote for Trump.', 'created': '2024-11-11 15:23:05', 'submission_id': '1gooevo'}
{'comment': 'I want what your on', 'created': '2024-11-11 14:01:01', 'submission_id': '1gooevo'}
{'comment': "They've been saying that already for the past 4 years. No matter how rational or respectful you're to them, they still call you a nazi, racist etc etc.", 'created': '2024-11-11 19:39:51', 'submission_id': '1gooevo'}
{'comment': 'As shitty as California is, that being said, the wife and I walked up and voted on Tuesday and waited maybe ten minutes to vote. I’m not sure where you’re getting the waiting in line 24 hours to vote.', 'created': '2024-11-11 16:49:17', 'submission_id': '1gooevo'}
{'comment': '“Is going to end up with” is a guess and you should really hold this argument until the final vote count. Where is she getting another 4,000,000 votes a week after Election Day?', 'created': '2024-11-11 22:49:12', 'submission_id': '1gooevo'}
{'comment': 'Of course, I just find it hilarious that the same people who were hating on Trump and calling him a dictator for claiming he didn’t lose are now doing the exact same thing 4yrs latter😂', 'created': '2024-11-11 15:28:19', 'submission_id': '1gooevo'}
{'comment': 'If not for the however many millions of mail ins the line would have been longer?\nNot saying mail in is a good thing, but it would obviously decrease lines in the same way WFH workers decreased traffic.', 'created': '2024-11-11 16:57:24', 'submission_id': '1gooevo'}
{'comment': 'Maybe they don’t wanna walk across sidewalks covered in crap.\n\n\nI don’t live in California, so I can’t give you all the reasons why but I can tell you that I read the news and know that all of the major cities in California have 65 to 80% of their populations vote by mail. \n\n\nIt also may be is because I think California is one of those states that mails ballots too basically everyone', 'created': '2024-11-11 16:50:25', 'submission_id': '1gooevo'}
{'comment': 'I’m basing it off of an article by Nate Silver.\n\n\n\nYou can see that between California and Washington state there are still many millions of votes left to count. \n\n\nSeveral of those western states do 80% or more mail in vote still.', 'created': '2024-11-11 22:53:01', 'submission_id': '1gooevo'}
{'comment': 'Even before the mail in ballots the wait lines were no longer then 15/20 minutes. I’d rather wait in line an hour to vote then to have every registered voter get a mail in ballot. It’s just money wasted and you should only get one mailed to you if you request it.', 'created': '2024-11-11 17:04:17', 'submission_id': '1gooevo'}
{'comment': 'There would need to be more than 6,000,000 votes left uncounted over a week after the election for her to gain 4,000,000 votes if we assume she receives at least 65% of those votes. Doesn’t seem likely, but it is really irrelevant at this point.', 'created': '2024-11-11 22:58:54', 'submission_id': '1gooevo'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 06:39:07', 'submission_id': '1gol4j3'}
{'comment': 'We are a union of states. Smaller population states had no interest in being a part of this union without a voice in the executive branch. \n\nWe are not a small country. States have different needs and priorities, city vs rural have different needs and priorities. “Well my vote counts less than someone in Wyoming!” Well a Wyoming vote wouldn’t count at all in the alternative.', 'created': '2024-11-11 12:36:31', 'submission_id': '1gol4j3'}
{'comment': 'Either we have the electoral college, or the whole country becomes subservient to California.', 'created': '2024-11-11 08:07:20', 'submission_id': '1gol4j3'}
{'comment': 'you will hear them argue that land doesn’t vote. the problem is that if you look at the county map, it looks as if the entire country is red. the population of those places might be lower but what it means is that when a democrat wins a federal seat, almost everywhere you go except for a few areas with a ton of people, you have everybody feeling like they’re not represented. \n\nthe problem is shown in illinois where for the entire 50,000 sq mile state, the democratic process takes place in one city. i dont live in illinois but i commonly go there and know people from there and work with them; they are NOT democrat voters. they do not like their governor, they dont like the way the state is run.', 'created': '2024-11-11 14:55:53', 'submission_id': '1gol4j3'}
{'comment': 'Every state needs a state based electoral college. Entire states being ruled by one large city is also a problem.', 'created': '2024-11-11 16:47:04', 'submission_id': '1gol4j3'}
{'comment': 'Agreed', 'created': '2024-11-11 06:50:40', 'submission_id': '1gol4j3'}
{'comment': "It's just an extrapolation of the same reasons why we have a house and senate.", 'created': '2024-11-11 08:04:23', 'submission_id': '1gol4j3'}
{'comment': None, 'created': '2024-11-11 16:20:18', 'submission_id': '1gol4j3'}
{'comment': 'Based on this argument, how did Harris get all of the electoral votes in Virginia? Trump won all but 6 or 7 counties (university of Virginia cities + Alexandria and Arlington)', 'created': '2024-11-11 12:29:59', 'submission_id': '1gol4j3'}
{'comment': 'I think Republicans should focus a lot of efforts in educating why electorsl college is improtant for a country like America. Rural areas and small States are still relevant due to this system; had it been not the case, it would have been a scenario where politicians are simply interested in just winning States like California or Texas and then simply forgetting the other regions of the country', 'created': '2024-11-11 20:09:57', 'submission_id': '1gol4j3'}
{'comment': 'I’ve always thought the electoral college is so genius that it had to be inspired by God himself. \nI’d fight as hard for the EC as any amendment to the constitution.', 'created': '2024-11-12 19:10:09', 'submission_id': '1gol4j3'}
{'comment': 'I’ve always supported the idea state’s electoral votes should be proportional. That way smaller states still have a larger say with them keeping their 3 electoral votes but it allows Californian (which has the most republicans of every state) republicans a voice instead of it just being winner-take all. It keeps the states rights principle the founder’s envisioned while still allowing millions of people who are denied a voice every election a voice. It also gets rid of relying on specific swing states every year and forces candidates to visit more states.', 'created': '2024-11-12 19:12:53', 'submission_id': '1gol4j3'}
{'comment': 'And if you read between the lines…\n\n"it serves as a bulwark against the tyranny of the majority" aka against the very foundation of democracy, that the people should be able to decide who governs them based on casting a vote where the majority wins \n\n"The Electoral College forces elections to be national, and for the candidates’ appeal to be widespread" effectively meaning everyone who does not live in a battle ground state does not matter \n\n"it empowers smaller states by giving them more influence over the winner than they ever would in a national popular vote" which directly means that on top of the already mentioned artificial increase in the power of the battle ground states, it additionally intentionally weakens the voice of every single US-citizen that does not live in a small state. \n\n…what’s not being said is quite insightful.\n\n"Why have a system where someone can lose the popular vote and still be president, as Donald Trump did in 2016 and George W. Bush did in 2000?"\n\nWhy indeed…', 'created': '2024-11-11 11:46:02', 'submission_id': '1gol4j3'}
{'comment': 'Popular vote all they way around.', 'created': '2024-11-11 17:06:42', 'submission_id': '1gol4j3'}
{'comment': 'Give every state the same amount of electoral votes seems pretty simple.', 'created': '2024-11-11 19:01:23', 'submission_id': '1gol4j3'}
{'comment': 'The simple reality is that cities are able to exist because rural areas are able to produce enough supplies for them.\n\nFood, water, electricity, construction materials, you name it.\n\nIt either directly comes from rural areas, or it is made from things that come from rural areas somewhere. \n\nLiterally everything that makes modern life possible comes from outside of cities at some point in its production chain.\n\nSo yeah, if you like to have electricity and not starve, then votes from rural people should be more important than votes from the city.', 'created': '2024-11-12 01:37:05', 'submission_id': '1gol4j3'}
{'comment': 'I wish people understood this. I think this election finally gotten my dad off wanting the electoral college eliminated.', 'created': '2024-11-11 19:50:19', 'submission_id': '1gol4j3'}
{'comment': 'The flood of illegals will be counted in the next census. Many went to cities in blue states and that could change the number of electoral votes in favor of the Dems forever.', 'created': '2024-11-11 13:58:37', 'submission_id': '1gol4j3'}
{'comment': 'And New York.', 'created': '2024-11-11 13:52:42', 'submission_id': '1gol4j3'}
{'comment': 'Yep, ask Illinois or Washington state for example...', 'created': '2024-11-11 17:02:54', 'submission_id': '1gol4j3'}
{'comment': 'INMHO In some respects it seems we are there now with the Federal Government pushing/operating outside the bounds of the Constitution.', 'created': '2024-11-11 16:28:16', 'submission_id': '1gol4j3'}
{'comment': 'Because it’s a popular vote inside of states to determine who gets the electoral college.', 'created': '2024-11-11 13:31:30', 'submission_id': '1gol4j3'}
{'comment': "I Agree 100%. If the electors within each state were awarded proportionally per population of the county then politicians would have to pay a lot more attention to areas aside from simply 6-7 swing states. That electoral vote would be spread out quite a bit more but I suspect we'll never see anything like that because of politicians and I'm ABSOLUTELY OPPOSED to Ranked Choice Voting. It is an abomination.", 'created': '2024-11-11 22:51:54', 'submission_id': '1gol4j3'}
{'comment': 'My thoughts also.', 'created': '2024-11-12 20:37:49', 'submission_id': '1gol4j3'}
{'comment': 'Civil rights also work against the very foundation of democracy and subvert the will of the majority by limiting what they can inflict upon political minorities.\n\nWe are not and never have been a democracy. We are a republic.\n\nJust like constitutional rights, the electoral college provides an important safeguard against the excesses of the popular vote.\n\nThe fact that we are a republic should be very comforting to most redditors given the outcome of the last election.\n\nIt means that despite winning the popular vote by a strong margin, Donald Trump still must abide by our constitution and the rights it articulates. That would not be the case in a true democracy.', 'created': '2024-11-11 12:47:05', 'submission_id': '1gol4j3'}
{'comment': "Because the United States is not one homogeneous people; we are fifty tightly affiliated but separate states. Each state has unique and differentiated needs and resources. The EC amplifies the voices of the smaller states, ensuring that they don't devolve into bullied vassals of the larger states. \n\nThis would be more clear, even to the dimmest bulbs, if the federal government was limited to its constitutionally granted powers. Federal overreach actually is antithesis to Federalism.", 'created': '2024-11-11 14:10:36', 'submission_id': '1gol4j3'}
{'comment': 'We aren’t a democracy, we are a republic. [official source](https://ar.usembassy.gov/u-s-government)', 'created': '2024-11-11 16:31:31', 'submission_id': '1gol4j3'}
{'comment': 'No. We are a republic, not a democracy.', 'created': '2024-11-12 02:05:53', 'submission_id': '1gol4j3'}
{'comment': "Constitutionality its based on population not statehood. That's why its critical that Only Legal Citizens are counted in the census for purposes of Federal Elections AND Voter ID Required. Census can include Total Actual Residents ok but residents are not necessarily legal citizens. Your suggestion requires a Constitutional Amendment. Very difficult.", 'created': '2024-11-11 19:47:45', 'submission_id': '1gol4j3'}
{'comment': 'I suspect many do understand, they just don\'t care and deep down they wish the voters in Wyoming and the rest of "flyover country" had far less influence.', 'created': '2024-11-13 02:09:27', 'submission_id': '1gol4j3'}
{'comment': 'Flood of illegals is about to get booted out', 'created': '2024-11-12 00:30:59', 'submission_id': '1gol4j3'}
{'comment': 'Nah, we have 6 years to clear them out.', 'created': '2024-11-12 22:19:36', 'submission_id': '1gol4j3'}
{'comment': 'Washingtonian here and I agree. It sucks being conservative/Republican here. Seattle decides everything for this state. It absolutely sucks. I hear we are bluer than California now.', 'created': '2024-11-11 18:11:13', 'submission_id': '1gol4j3'}
{'comment': 'Should be proportional, in my opinion. If California votes 80/20 then their 54 electoral votes should be split 43/11.\n\nThat’s how you make every vote count, even in states where the result is never contested.', 'created': '2024-11-11 15:55:36', 'submission_id': '1gol4j3'}
{'comment': 'A Republic with democratic elections meaning elections where the voice of the people is supposed to elect representatives who are then tasked with ruling in the name of the people via a majority of representatives… \nAka a democracy. \n"a system of government by the whole population or all the eligible members of a state, typically through elected representatives"\n\nThe idea that the USA is not a democracy is simply not correct. \nWhile a Republic doesn’t have to be democratic the USA prides itself in democratic ideals like free and fair elections and that a MAJORITY is supposed to rule. After all the goal is to get a MAJORITY of representatives. \n\nThe question is therefore not if the USA is democracy but what kind of democracy it wants to be. \n\nYou brought up civil rights. Protecting people. \nIn practice your systems means that one side can oppose its will on the others even if more people disagree than agree with that system. \nThat’s a fact. \n\nI don’t think it’s comforting to know that every single thing I said in my original comment is true, that a majority of Americans is politically treated with disregard by both sides far too often, that small states have disproportionate power which while historically sound has today a bitter aftertaste for many millions of people or that elections are now more about gaining a majority of representatives than about gaining a majority of voters aka convincing people instead of winning maps, winning voices instead of seats. \n\nI don’t know how you judge systems or government but one way I do it is fairness and the election system is unfair to most US-citizens and it effectively increases division because instead of having to find compromise the winner takes all even if in reality it’s a decision of 50.5% over 47.9% or vice versa as in 2020 where dozens of millions of Americans didn’t want Biden. \n\nThis "genius idea" is no longer working right. It has even helped to push the USA to a place where winning an election results in gleeful cheering or shocked disappointment, where when you frequent different spaces the people on both sides who are committed have one thing in common, their true biggest enemy is the other side and while unfortunately much of the rest of the entire free world is heading down similar paths, the USA leads the charge for a number of reasons.\n\nWhere do you think this will all lead in a couple decades? Not in terms of policy of individual presidents and their administration but in terms of the soul of the people. I think that it’s not going to end well if nothing is done about it and I hope that I am wrong because so far, it has only gotten worse.', 'created': '2024-11-11 14:14:15', 'submission_id': '1gol4j3'}
{'comment': 'Exactly!', 'created': '2024-11-11 15:33:45', 'submission_id': '1gol4j3'}
{'comment': '"While often categorized as a democracy, the United States is more accurately defined as a constitutional federal republic. What does this mean? “Constitutional” refers to the fact that government in the United States is based on a Constitution which is the supreme law of the United States. The Constitution not only provides the framework for how the federal and state governments are structured, but also places significant limits on their powers. “Federal” means that there is both a national government and governments of the 50 states. A “republic” is a form of government in which the people hold power, but elect representatives to exercise that power." \n\nNowhere here does it say that the USA is not a democracy. ”more accurately defined as a constitutional federal republic" ≠ not a democracy', 'created': '2024-11-11 16:54:22', 'submission_id': '1gol4j3'}
{'comment': 'I dont think you even know the definition of either one.', 'created': '2024-11-12 08:36:20', 'submission_id': '1gol4j3'}
{'comment': "Our voting system is pretty broken. The fact people can vote with no ID is crazy. I like the other person's suggestions of giving each county electoral votes instead of the state. One city shouldn't control the election.", 'created': '2024-11-11 19:53:11', 'submission_id': '1gol4j3'}
{'comment': "I read it's the ONLY State Trump Did Not improve the numbers voting GOP count.", 'created': '2024-11-11 18:39:07', 'submission_id': '1gol4j3'}
{'comment': "Lived in Wa. & Or 1970 to 2002. 2002 moved to Tucson. 2010 moved back to WA to Wenatchee. 2019 moved back to Tucson. \n\nWife now wants to move back to Wenatchee to be nearer family. I don't Want to but she knows Wenatchee is the on place in WA I would move to. \n\nNext couple years I'll likely be moving back....", 'created': '2024-11-11 18:43:05', 'submission_id': '1gol4j3'}
{'comment': "To be fair I think of a lot of us in Washington that lean not progressive didn't vote this election since our vote does nothing with Seattle there, so the popular vote result there isn't quite reflective of reality", 'created': '2024-11-11 22:35:03', 'submission_id': '1gol4j3'}
{'comment': "That would be cool. You'd go from swing states to swing county's", 'created': '2024-11-11 16:55:49', 'submission_id': '1gol4j3'}
{'comment': 'Agreed. We have more voters in California than any other state who basically have no voice in presidential elections. I don’t mind the EC, but I wish it was proportional.', 'created': '2024-11-12 01:51:47', 'submission_id': '1gol4j3'}
{'comment': "No, not a democracy in other words. The distinctions I made are important and relevant to the definition.\n\n\n\nWe have never been a nation where the majority was supposed to rule, which is what a democracy is. \n \nThe reason it is 'not working right' is amendments that have been made after the fact, which have broken the system.\n\nThe answer is not to break it further, but to restore it back to working order.", 'created': '2024-11-11 14:17:20', 'submission_id': '1gol4j3'}
{'comment': 'No we are quintessentially not a democracy. A democracy is rule by the many despite the few. It’s the mob. As you are finding out, America isn’t run by the loudest mob.', 'created': '2024-11-12 03:16:53', 'submission_id': '1gol4j3'}
{'comment': "Lots of lefty bots lately carrying on about that. Doesn't matter.\n\nDemocracy: Majority rules. Two wolves and a sheep voting on what is for dinner.\n\nRepresentative Democracy: Majority appoints representatives who vote on stuff for them. Majority rules. Three wolves, having been duly appointed as representatives from two wolf packs and one sheep herd voting on what is for dinner.\n\nRepublic: People vote, but there are limits in place to prevent excesses by the majority. Thus, even if the majority vote for a thing they may not be able to do it. Representatives from two wolf packs, a sheep herd, the sheep dog, and the shepherd who carries a gun vote on where everyone is allowed to hunt or forage for dinner. We are here. It is not the same as the options above. If anyone tries to convince you that the differences are not important, they are probably a wolf.", 'created': '2024-11-12 15:55:33', 'submission_id': '1gol4j3'}
{'comment': "You know as well as I do how woke this area has become. I was pretty much born and raised here. Living in SW Washington since 1989. My roots are deeply embedded here but I'm not sure how much longer I can stay. It's just too toxic.", 'created': '2024-11-11 18:54:29', 'submission_id': '1gol4j3'}
{'comment': 'INMHO this would include repealing the 17th amendment.', 'created': '2024-11-11 15:33:06', 'submission_id': '1gol4j3'}
{'comment': 'No a democracy? You don’t vote and elect representatives? \nAnd no majority? \nTrump has become president elect based on what? A lottery? \nOr a majority of representatives voting for him? \n\nI am not trying to create some kind of gotcha moment here, I simply wonder why you read the textbook definition I quoted in full and then ignored it. \n\nDon’t you understand what "a system of government by the whole population or all eligible members" means? \nOr was it the part about "typically through elected representatives" like senators or members of congress etc.?\nWhat do you personally think a democracy is? \n\nAnd what kind of amendments would you like to see repealed? \nWomen’s voting rights? Bringing back slavery? I am exaggerating for a purpose here. You have an ideal of the past in your mind. \nThe reality we all know resulted in a bloody civil war over states rights / slave rights depending who you are asking. \nThat was in the last really bad thing that happened to the USA. \nThe end result of the original working order. War against fellow US-Americans. \n\nI am all for learning from the past. I am not against following tradition. I just have to wonder where your ideal is supposed to be located. The last big struggle the USA had in the previous early century ended well. Not mainly because of parties coming together but Europe falling apart. First the world wars collapsed the old order, then the Soviet Union experienced a serious case of incompetence. China has so far not shown signs of collapse and the game changed. You are more divided and your enemy can directly access you whenever you use the internet. That’s a big shift.\n\nLuck is a very dangerous way of resolving internal deficiencies. Sometimes you risk running out. \n\nI am rooting for you guys, I really am. I just worry that you are infact not learning from history but slowly inching towards repeating some of your greatest hits in one way or another and they are probably not the ones you want to hear.', 'created': '2024-11-11 16:51:56', 'submission_id': '1gol4j3'}
{'comment': 'Being a Republic has nothing to do with the electoral. The US is the only country that does it. All the electoral college is, is federalism. Trump won the popular vote. I dont understand what the problem is. I live in a blue state and a red vote is worthless.', 'created': '2024-11-12 21:27:38', 'submission_id': '1gol4j3'}
{'comment': "Douglas County not so much or wasn't. Spent 7 year's as GOP PC last I lived there. Douglas County was Ted with the highest Hispanic population in the state. Agricultural mostly I believe.", 'created': '2024-11-11 19:23:38', 'submission_id': '1gol4j3'}
{'comment': "That or signing up women for the draft.\n\nInitially, the constitution was designed to protect the rights of 3 parties:\n\n1. Landowners - they got to vote for the senate\n2. Men - they were subject to being conscripted for wars, so they got to vote for the house of representatives.\n3. The states - The electoral college ensured that all of them, even the small ones, mattered when deciding the president.\n\nI think we need to get back to those principles. Just having popular vote for everything isn't working.\n\nVoting used to require some personal risk, either to your own life or at least to your fortune. That made people think things through.", 'created': '2024-11-11 15:43:41', 'submission_id': '1gol4j3'}
{'comment': 'If you scroll up and read carefully, you will find that I have already drawn a distinction between a simple democracy and a republic.\n\nI understand just fine what a democracy means and your snark is neither needed nor constructive here.\n\nBlaming the civil war on a lack of voting reforms is both ignorant and laughable, as is saying that it is the last bad thing to happen here.\n\nPerhaps you should be more worried about EU policies turning Sweden into the rape capitol of Europe than internal American matters?', 'created': '2024-11-11 17:15:02', 'submission_id': '1gol4j3'}
{'comment': "Disagree. Being a republic does indeed have something to do with the electoral college. It isn't hard to understand. Republics put checks on the power of the popular vote. The electoral is a check on the power of the popular vote. This is basic shit.", 'created': '2024-11-12 21:31:19', 'submission_id': '1gol4j3'}
{'comment': 'Thats not true either. There are over 140 Republics and none of them use the electoral college. Youre still wrong. Try again basic shit.', 'created': '2024-11-13 01:10:30', 'submission_id': '1gol4j3'}
{'comment': "Irrelevant. I have clearly explained the philosophical link, and I really don't care how other, lesser republics do it.\n\nKick rocks.", 'created': '2024-11-13 01:15:15', 'submission_id': '1gol4j3'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 06:21:47', 'submission_id': '1goku77'}
{'comment': 'I figured Homan would return once Biden was gone.', 'created': '2024-11-11 06:33:46', 'submission_id': '1goku77'}
{'comment': 'Homan is a literal dream come true for our country. The man is unfiltered about filtering the living shit out of illegal immigrants.', 'created': '2024-11-11 13:56:52', 'submission_id': '1goku77'}
{'comment': 'This is a great news. Tom is a real one and when I read this I knew they weren’t screwing around. If you are here illegally you should be concerned to say the least.', 'created': '2024-11-11 14:07:31', 'submission_id': '1goku77'}
{'comment': 'Good. He doesn’t care about party, color, language, sex, gender, race, culture, ethnicity, religion, favorite color, nothing other than your legal application status when you reach his border.\n\nIf you’re an unknown illegal migrant you’re going back where you came from until you apply properly and prove you’re fit to enter.\n\nI fully support this. 🇺🇸🎉', 'created': '2024-11-11 15:28:29', 'submission_id': '1goku77'}
{'comment': 'Tom. Go door to door\xa0 begin north and squeeze them south no building will be forgotten!\xa0 Giddy up its round up time. .\xa0 BUILD THAT WALL FROM THE PACIFIC TO THE GULF .\xa0\xa0', 'created': '2024-11-12 02:28:16', 'submission_id': '1goku77'}
{'comment': "Who is that guy? I've never heard of him before", 'created': '2024-11-11 06:34:28', 'submission_id': '1goku77'}
{'comment': 'Absolutely! Immigration is good when it’s done through the proper channels.', 'created': '2024-11-11 15:39:10', 'submission_id': '1goku77'}
{'comment': 'Did you never watch his hearings online where he was ruthlessly questioned on his stance on the border?', 'created': '2024-11-11 11:26:44', 'submission_id': '1goku77'}
{'comment': '[Tom Homan](https://en.m.wikipedia.org/wiki/Tom_Homan)', 'created': '2024-11-11 06:45:09', 'submission_id': '1goku77'}
{'comment': 'https://m.youtube.com/watch?v=ZEFoi_leYDw', 'created': '2024-11-11 06:49:34', 'submission_id': '1goku77'}
{'comment': 'Seems this guy does not fuck around', 'created': '2024-11-11 07:06:23', 'submission_id': '1goku77'}
{'comment': "He doesn't ..and Trump made an excellent choice in making him the border czar!!", 'created': '2024-11-12 01:30:21', 'submission_id': '1goku77'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 04:46:15', 'submission_id': '1goj69a'}
{'comment': 'So they just gonna pull 16 million votes outta thin air here?', 'created': '2024-11-11 04:52:28', 'submission_id': '1goj69a'}
{'comment': 'What do you mean now the Dems are claiming the election is rigged? They claimed this is 2016 and 2000.', 'created': '2024-11-11 05:54:03', 'submission_id': '1goj69a'}
{'comment': 'A recount wouldn’t matter, Kamala already conceded', 'created': '2024-11-11 05:04:36', 'submission_id': '1goj69a'}
{'comment': 'Oh, the irony...', 'created': '2024-11-11 05:04:12', 'submission_id': '1goj69a'}
{'comment': 'Does this mean they’re going to flip the votes in their favor ? Why can’t they just take that L ?', 'created': '2024-11-11 05:54:14', 'submission_id': '1goj69a'}
{'comment': "I think this might be fake news because I can't find anything on it but I mean I could be wrong but you would think Google would be blasting my ass with articles about this because Google obviously favors Democrats", 'created': '2024-11-11 06:00:19', 'submission_id': '1goj69a'}
{'comment': 'They bitter as fuck. GET OVER IT.', 'created': '2024-11-11 06:06:28', 'submission_id': '1goj69a'}
{'comment': 'Trump called for a recount too. This is pretty standard. If nothing was suspicious why worry?', 'created': '2024-11-11 06:23:43', 'submission_id': '1goj69a'}
{'comment': 'I will never understand their need to insult voters who are uneducated. \n\nFirst off, there are many skills sets that require intelligence but don’t require a 4 year university degree. My dad is a blue collar worker, went to trade school in the 80s, and is one of the most hardworking, insightful and intelligent people I know. Not to mention that people who are not intellectually gifted are still human beings that deserve respect.\n\nSecond, wouldn’t a large portion of their own demographic be uneducated if they are aiming for the votes of undocumented immigrants and the poor? I’m not saying that these people can’t have university degrees, but their circumstances makes it difficult to obtain. Undocumented immigrants only made up 1.9% of all registered college students in 2023.\n\nBy calling all Trump supporters uneducated, stupid, and from the poorest states, they are isolating a large swath of their own demographic.\n\nWhy wouldn’t they do something to appeal to the uneducated rather than insulting them?', 'created': '2024-11-11 12:23:06', 'submission_id': '1goj69a'}
{'comment': 'Pennsylvania was red because the Amish came out and voted for Trump because the Democratic leadership were infringing upon their way of life.', 'created': '2024-11-11 10:36:52', 'submission_id': '1goj69a'}
{'comment': 'Lmfao they’re salty “BRUH MUH RECOUNT NOOOO THEY CHEATED BRO” mad cause bad', 'created': '2024-11-11 05:26:39', 'submission_id': '1goj69a'}
{'comment': '*•fills in another space on the bingo card•*', 'created': '2024-11-11 05:40:20', 'submission_id': '1goj69a'}
{'comment': 'Recount 10 times and please declare winner 10 times we will love to hear again and again !', 'created': '2024-11-11 06:45:30', 'submission_id': '1goj69a'}
{'comment': 'I cannot find a single article to substantiate this claim? Is the demoncrat false information? (Not that it would be the first time)', 'created': '2024-11-11 11:01:40', 'submission_id': '1goj69a'}
{'comment': "2020 there was a good and valid reason for a recount, this isnt. But they can recount if they want I wont be a hypocrite. The states worked hard to ensure a secure and fair election. \n \nBut if I see somehow millions of votes for Harris show up out of the blue....that would be BS or they counted ballots mailed late, or just slipped ones in that weren't valid due to no signature etc. \n\nIt was a close election this year. The end result looks like we beat them overwhelmingly, but it still was a very close election. We accepted biden and everything we warned about came true and worse....they saw it, didnt wanna admit it was a mistake, slowly started admitting it, then forgot it.\n\nThis term they better stop ignoring the good changes for granted, and hopefully see that its okay to be wrong. Just own it and use it as a learning lesson to do your research on both sides and see what candidates actually stand for, thier plans, and what statements actually have evidence to back up or contridict.", 'created': '2024-11-13 01:01:29', 'submission_id': '1goj69a'}
{'comment': 'Tbh, I don’t care if they do a recount, regardless of party winning the other party doing a recount should not be an issue.\n\nThere is a saying measure twice cut once. Why not count twice while validating votes. Some of the states were close enough that some missed votes in one district or from mail in votes could have an impact for senators or judges.\n\nI don’t think it’s going to change the presidential outcome though. Plus if the results were flipped republicans would be calling for recounts, so any negative comments about democrats doing it is at least slightly hypocritical.', 'created': '2024-11-11 05:51:30', 'submission_id': '1goj69a'}
{'comment': 'Will the Biden admin be berated or applauded for this call for a recount. Surly we would have the same “repercussions” for demanding a recount as previously seen 😂😂', 'created': '2024-11-11 05:42:15', 'submission_id': '1goj69a'}
{'comment': "I thought elections were secure and fraud wasn't possible?", 'created': '2024-11-11 07:12:23', 'submission_id': '1goj69a'}
{'comment': 'so we just gonna ignore the cheating on 2020? And they wanna "recount" of a fair election where trump was numbers ahead of kamala but still nowhere near bidens numbers because they were dead people?', 'created': '2024-11-11 08:45:05', 'submission_id': '1goj69a'}
{'comment': 'Why didn’t they do a recount in 2020????', 'created': '2024-11-11 15:39:07', 'submission_id': '1goj69a'}
{'comment': 'To understand the why you gotta understand why they think the way they do.', 'created': '2024-11-11 06:40:24', 'submission_id': '1goj69a'}
{'comment': 'It not gunna happen', 'created': '2024-11-11 08:26:52', 'submission_id': '1goj69a'}
{'comment': 'Not enough guys, it will cost millions and Kamala is already in the hole...', 'created': '2024-11-14 21:12:29', 'submission_id': '1goj69a'}
{'comment': 'Well we can reverse it back I think trump has a reverse card in his deck', 'created': '2024-11-11 05:54:36', 'submission_id': '1goj69a'}
{'comment': 'They could do the funniest thing ever on January 6th 😂😂😂', 'created': '2024-11-11 06:16:53', 'submission_id': '1goj69a'}
{'comment': 'Democrat support has collapsed. I believe it will be atleast 16 more years until a democrat wins president again.', 'created': '2024-11-11 07:49:54', 'submission_id': '1goj69a'}
{'comment': '\n\nLet\'s try to resolve this like they did in 2020. You can bring all the evidence you want and like many judges did then, the judge will then never look at it, dismiss it and the media and everyone else will all declare "NO EVIDENCE! NO FRAUD!"\n\nAnd it will just go no where from there.', 'created': '2024-11-11 09:45:24', 'submission_id': '1goj69a'}
{'comment': "It's always okay when they (D)o it", 'created': '2024-11-11 13:59:20', 'submission_id': '1goj69a'}
{'comment': 'What’s funny is Biden’s admin never asked for a recount lmao.', 'created': '2024-11-11 17:35:56', 'submission_id': '1goj69a'}
{'comment': 'It doesn’t matter.. she conceited the race', 'created': '2024-11-11 12:48:44', 'submission_id': '1goj69a'}
{'comment': 'i mean they did it in 2020', 'created': '2024-11-11 04:56:39', 'submission_id': '1goj69a'}
{'comment': 'It\'s annoying that I have to defend democrats here, but the difference is between randos on social media claiming it and the sitting president, members of congress, and mainstay news figures claiming it and running with it for years. \n\nOn top of that, the claims themselves are different. Trump claimed voter fraud, i.e., mass fraudulent votes rigging the election from a top-down perspective (while he was president). Hillary claimed in 2016 that Russia basically ran a covert ad campaign to lie to Americans and convince them to vote for Trump. Gore claimed that SCOTUS voted against him unfairly in a recount that he would\'ve won otherwise and... also, butterfly ballots were disfavorable but not necessarily intentional. Hillary conceded the next day, Gore didn\'t press beyond the SCOTUS ruling, Trump still won\'t admit he lost and drove his discontent to the Capitol on Jan 6 2021.\n\nIf you can\'t see the difference here, idk what you\'re looking at. Democrats didn\'t claim it was "rigged" in past years the same way you\'re implying in this comment.\n\nThat being said, any Democrats claiming an issue with this election need to get their shit together. Just as much as Trump needed to when he was claiming election fraud all election night until he was sure that he won. This shit is annoying as fuck and not based in reality at all.\n\nIt would be nice if our country could get its shit together and stop believing make-believe bullshit to cope with other people thinking different things than us holy shit.', 'created': '2024-11-11 06:50:33', 'submission_id': '1goj69a'}
{'comment': "Yea. But she's going to be president anyway. [Plan B is online](https://youtu.be/MWoO5oxWlzY?si=HHtkh7J6T6klvXy8) and I don't mean the abortion drug!", 'created': '2024-11-11 05:43:19', 'submission_id': '1goj69a'}
{'comment': 'Indeed!!', 'created': '2024-11-11 05:09:24', 'submission_id': '1goj69a'}
{'comment': 'I think it’s just a Redditor wet dream. I’ve been seeing them go on about it all weekend and no legit news outlets are covering it this morning.', 'created': '2024-11-11 14:45:45', 'submission_id': '1goj69a'}
{'comment': 'He call for a recount where it fell within the state’s range of a recount in Georgia, these states, the range is outside of the recount ability.', 'created': '2024-11-11 17:14:13', 'submission_id': '1goj69a'}
{'comment': 'Nah I say recount but it coast $$$ and come on they don’t have enough mailboxes they could stuff in some of those battleground states', 'created': '2024-11-11 05:56:05', 'submission_id': '1goj69a'}
{'comment': 'We can only hope', 'created': '2024-11-11 09:18:41', 'submission_id': '1goj69a'}
{'comment': 'From your mouth to Gods ear.', 'created': '2024-11-11 13:04:13', 'submission_id': '1goj69a'}
{'comment': "Let's start with a 2020 recount.", 'created': '2024-11-11 06:48:26', 'submission_id': '1goj69a'}
{'comment': 'For sure', 'created': '2024-11-11 04:58:28', 'submission_id': '1goj69a'}
{'comment': "Thanks for bringing some rationality to this sub. I don't buy in to voter fraud conspiracy theories, but it's clear that there was a last-minute, concerted, and targeted campaign of disinformation against a segment of the electorate that is susceptible, and vulnerable, to propaganda. It's not that all Republicans are stupid or uneducated. It's that the Trump campaign knew how to target particular voters (including some moderates and Democrats) that will believe anything they see or hear without verifying the truth or falsity of the information. I used to lean Republican until the party got hijacked by a populist demagogue. The Trump campaign tactics seem to come right out of Putin's playbook: [https://www.tiktok.com/t/ZTFE7fbDb/](https://www.tiktok.com/t/ZTFE7fbDb/).\n\nIt's not about Democrat or Republican. It's about foreign interference in the electoral process to divide and conquer. Unless Americans wake up to it, it'll only get worse.", 'created': '2024-11-11 19:51:13', 'submission_id': '1goj69a'}
{'comment': 'This is just absolutely pathetic and disgusting. Like holy crap. They do that for real then the democrats are done permanently.', 'created': '2024-11-11 06:06:05', 'submission_id': '1goj69a'}
{'comment': "This is incredibly stupid and harmful to our country. But there's no implications that it would last beyond Trump's inauguration, right?", 'created': '2024-11-11 06:39:50', 'submission_id': '1goj69a'}
{'comment': 'Trust me, I don’t like Kamala at all. But I don’t understand why she hasn’t taken his place as of over a year ago considering Biden is no longer mentally there. Why now? Why 2 months before Trump will be president?', 'created': '2024-11-11 16:58:36', 'submission_id': '1goj69a'}
{'comment': 'This is literally just Q-Anon for leftist.', 'created': '2024-11-11 15:03:16', 'submission_id': '1goj69a'}
{'comment': 'LMAO, that\'s their plan? To make the "first woman president" such a loser that it has to be because the actual president resigned rather than empowering a woman who won the hearts and votes of the majority of people?? And they call republicans misogynist?! what the fuck! No woman want\'s to be the "sloppy seconds" of the white house. Nobody wants to be that person who only became president for a day because the real president was too crippled and demented so had to resign. That isn\'t winning, nor is that how any woman wants to become the first female president.', 'created': '2024-11-13 07:11:30', 'submission_id': '1goj69a'}
{'comment': '2024 - Freeist and Fairest Election Evar!', 'created': '2024-11-11 06:03:47', 'submission_id': '1goj69a'}
{'comment': 'No kidding lol', 'created': '2024-11-11 07:51:32', 'submission_id': '1goj69a'}
{'comment': "Joe hates her guts, he ain't doing that 😂 they're trying to cope and happy-talk reality out of existence!", 'created': '2024-11-11 06:38:06', 'submission_id': '1goj69a'}
{'comment': 'You know that thing on Jan 6th that democrats call "ceremonial??" (They do kind of lie alot)\n\nI have a little secret for you. It\'s not really ceremonial. The whole house could vote on a replacement for Trump (you know, because he\'s Hitler) so the question is how many swampy Republicans are there??\n\nThe new "Senate Leader" drama just now indicates there\'d still quite a few around with "Mitch and the gang." And here I\'ve been defending him left and right on reddit and he goes and [pulls a stunt!](https://x.com/JackPosobiec/status/1855477674266775891)', 'created': '2024-11-11 07:20:12', 'submission_id': '1goj69a'}
{'comment': 'Otherwise known as "blue anon." But the fact that he has a straight face is troubling imo.', 'created': '2024-11-11 16:44:02', 'submission_id': '1goj69a'}
{'comment': 'Did you see the man’s grin when he gave that speech congratulating Trump? Guy fucking loves this outcome.', 'created': '2024-11-11 12:55:15', 'submission_id': '1goj69a'}
{'comment': "It's annoying Tucker is ever accepted for info on anything after first he defends himself in a lawsuit saying that he is just entertainment and no one should or even would take him seriously as factual news, and second, he basically single handedly loses fox a lawsuit (they settled so they didn't technically lose sure but they paid more than any media company ever has for defamation) because of his behind the scenes texts where he knew he was lying on air and was making fun of Americans that believed him. If you think those other candidates that don't suck off Trump 24/7 aren't conservatives, then all conservative means is that you're conservative about doing anything with your career beyond sucking off Trump. I like to think conservatism, and by extension, the Republican Party, stand for a little more than that.\n\nThat being said, Jan 6 is *mostly* ceremonial, but that doesn't mean that nothing important happens or anything. That's why interrupting it, like only Trump and his followers have ever done since the ECA passed, is a really big deal! \n\nThere's no reason at all to believe Democrats will challenge the Electoral votes of the states like Trump did. States have a right to choose their own electors. At best, Democrats will likely hope that these electors will not be faithful. It didn't impact anything in 2016 when we had more faithless electors than almost ever before, and it probably won't make a difference now. After the electors elect Trump, it will get certified like normal on Jan 6 like it has on every election since the ECA except the one where Trump lost.\n\nIf I'm wrong, I'm committed to changing my outlook on beurocracy. But if you're wrong, I'm sure you'll find some other conspiracy to spread with no evidence and never take responsibility for being wrong, just like Trump.", 'created': '2024-11-11 14:44:07', 'submission_id': '1goj69a'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 04:40:47', 'submission_id': '1goj2ql'}
{'comment': 'I really don’t like the idea of cabinet positions being voted on by the people. No offense but most people don’t know a lot of the figures in the state department and will only choose popular celebrities in the party rather than qualified people that are silently working and are underreported. This isn’t high school this isn’t a popularity contest.', 'created': '2024-11-12 19:16:10', 'submission_id': '1goj2ql'}
{'comment': "It's not a real vote per se. Only trying to get a gauge on general publics feeling. Interesting idea I think. People in power need to start thinking Outside The Box INMHO.", 'created': '2024-11-12 20:40:57', 'submission_id': '1goj2ql'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 04:08:40', 'submission_id': '1goihst'}
{'comment': "I've heard the recording. He's very sleazy.", 'created': '2024-11-11 05:08:26', 'submission_id': '1goihst'}
{'comment': 'Sleazy indeed, but the AZ vote returns suggest she wasn’t the best candidate to run. I wish they had chosen someone with less baggage.', 'created': '2024-11-11 12:10:13', 'submission_id': '1goihst'}
{'comment': 'Indeed. I heard it months ago. Sounds like bribery and election interference to me. Hope Trump DOJ will be all over it!', 'created': '2024-11-11 05:20:56', 'submission_id': '1goihst'}
{'comment': 'It will likely involve Mitt Romney and Mitch McConnell, so I doubt it will be addressed.', 'created': '2024-11-11 05:22:59', 'submission_id': '1goihst'}
{'comment': 'Hmm...', 'created': '2024-11-11 05:33:58', 'submission_id': '1goihst'}
{'comment': 'As I understand it, RINO Republicans backed the offer.', 'created': '2024-11-11 05:42:15', 'submission_id': '1goihst'}
{'comment': "Yeah, that's what I heard as well. Just no names I recall.", 'created': '2024-11-11 05:47:43', 'submission_id': '1goihst'}
{'comment': "I don't think Lake ever specifically named anyone, but I heard a radio host mention them as likely suspects.", 'created': '2024-11-11 05:49:46', 'submission_id': '1goihst'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-11 03:17:47', 'submission_id': '1gohjea'}
{'comment': 'He should be a nice change from Senator Turtle.', 'created': '2024-11-11 03:24:54', 'submission_id': '1gohjea'}
{'comment': 'I wish we had Republican senators in my state. We did years ago but not anymore. I was hoping to unseat Tim Kaine this year but it didn’t happen. He is the worst of the two. Virginia isn’t what it used to be because of the DC suburbs.', 'created': '2024-11-11 04:23:46', 'submission_id': '1gohjea'}
{'comment': 'All my senators are Dems ☹️', 'created': '2024-11-11 03:48:22', 'submission_id': '1gohjea'}
{'comment': 'Rick Scott is anti-second amendment... hard pass', 'created': '2024-11-11 13:27:32', 'submission_id': '1gohjea'}
{'comment': 'I’d prefer a leader that supports the Second Amendment.', 'created': '2024-11-11 14:44:30', 'submission_id': '1gohjea'}
{'comment': "That's what I read. But you elected Glenn Youngkin. That's progress.", 'created': '2024-11-11 04:31:57', 'submission_id': '1gohjea'}
{'comment': "Arizona... Mark Kelly (D) & Krysten Sinema (I). I've told Sinema. They're trying to throw the senate race here to Gallego as they steal it from Kari Lake.", 'created': '2024-11-11 04:12:48', 'submission_id': '1gohjea'}
{'comment': 'At this point there appear to be only 3 hats in the ring. Scott is the least onerous given the choices.', 'created': '2024-11-11 15:37:57', 'submission_id': '1gohjea'}
{'comment': 'At this point there appear to be only 3 hats in the ring. Scott is the least onerous given the choices.', 'created': '2024-11-11 15:38:52', 'submission_id': '1gohjea'}
{'comment': 'Yes we did in 2021 and all the Democrats went crazy lol. Virginia has a trend to always go opposite party of the White House for the governor election which isn’t good for next year but at least there will be a Republican in the White House. I was so glad that we defeated our horrible Democrat Attorney General along with Youngkin and Sears winning too. Our Attorney General was horrible and now we have a competent one. Glenn Youngkin, Winsome Sears and Jason Miyares are all great people.', 'created': '2024-11-11 04:36:08', 'submission_id': '1gohjea'}
{'comment': "That's infuriating about Lake", 'created': '2024-11-11 04:23:31', 'submission_id': '1gohjea'}
{'comment': "I've read up on Sears. I liked what I read.", 'created': '2024-11-11 04:46:04', 'submission_id': '1gohjea'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-10 23:41:07', 'submission_id': '1god3oy'}
{'comment': 'You mean r/ law can’t arbitrarily ban me because I posted a Harvard Study that says something the mods don’t agree with?', 'created': '2024-11-11 00:07:56', 'submission_id': '1god3oy'}
{'comment': "My god, the man's a Nazi!\n\n/sarcasm", 'created': '2024-11-11 00:10:29', 'submission_id': '1god3oy'}
{'comment': 'Immediately!', 'created': '2024-11-10 23:53:05', 'submission_id': '1god3oy'}
{'comment': 'He is coming out swinging and I love it!', 'created': '2024-11-10 23:53:50', 'submission_id': '1god3oy'}
{'comment': 'Holy shit I love this man!', 'created': '2024-11-11 00:25:57', 'submission_id': '1god3oy'}
{'comment': 'There needs to be consequences for Moderator abuse of power on social media. Moderators need to be accountable for limiting free speech and dealt with if they are found guilty of censorship.\n\nSome poor guy got banned from r/Pics for posting a picture of Kamala and Hillary In a hallway after they found out they lost.\n\nWe need free speech back. Reddit is a left wing haven with corrupt Moderators.', 'created': '2024-11-11 00:38:32', 'submission_id': '1god3oy'}
{'comment': 'Im so glad i voted for trump. I was worried at first, because of all the fear mongering, but damnit, this is the kind of president we need!', 'created': '2024-11-11 00:25:02', 'submission_id': '1god3oy'}
{'comment': "Holy shit we have a President again!\n\nWTF is Reddit going to do about this? I'd like to check a box requesting un-moderated content.", 'created': '2024-11-11 01:00:33', 'submission_id': '1god3oy'}
{'comment': 'Man’s coming out swinging', 'created': '2024-11-11 00:28:40', 'submission_id': '1god3oy'}
{'comment': 'I love him 🇺🇸 Do you think this means we’ll be unbanned from; damn that’s interesting, our own State sub, pets, pics etc?', 'created': '2024-11-11 00:20:48', 'submission_id': '1god3oy'}
{'comment': 'Im in college right now and ive been pretty avoidant on sounding too right, i told my husband i can fake being left for an education (its computer science and my work is paying for it) this makes me feel better tbh', 'created': '2024-11-11 00:40:18', 'submission_id': '1god3oy'}
{'comment': 'A digital Bill of Rights! Love this!', 'created': '2024-11-11 00:43:17', 'submission_id': '1god3oy'}
{'comment': 'Hope this includes Reddit; not a fan of being banned from subs for even the slightest disagreement against leftists principles. I’m banned from the mlb and nfl subs just because I responded to comments regarding COVID - primarily that I felt we shouldn’t be forced into COVID shots. Reddit is very clearly a democrat leaning platform where there is little to no room for conservative opinions, even on a basic subs like pics.', 'created': '2024-11-11 03:50:02', 'submission_id': '1god3oy'}
{'comment': "Freedom of speech and to criticize the government is a core American right. I hope he respects this right when he is the government, and doesn't use his power to silence his enemies, as he indicated he would.", 'created': '2024-11-11 01:11:42', 'submission_id': '1god3oy'}
{'comment': 'A good cleaning of the swamp is in order.', 'created': '2024-11-11 03:27:51', 'submission_id': '1god3oy'}
{'comment': 'Finally a man with some balls has returned.', 'created': '2024-11-11 02:43:29', 'submission_id': '1god3oy'}
{'comment': 'Man with balls... Thank you.', 'created': '2024-11-11 08:52:37', 'submission_id': '1god3oy'}
{'comment': 'Can you just imagine how fucked up it would have been if Kamala won...', 'created': '2024-11-11 08:54:48', 'submission_id': '1god3oy'}
{'comment': 'I am very happy about this. No more having post taken down or marked as “misinformation” when it’s definitely or near the truth, or mods on pages can’t ban you permanently without a stupid reason of simply not agreeing and them usually being left wing going insane.', 'created': '2024-11-11 17:36:39', 'submission_id': '1god3oy'}
{'comment': "Love it. This looks like a new and improved Trump from 2016. He's got a plan, and will avoid getting caught flat-footed like last time.", 'created': '2024-11-11 00:48:29', 'submission_id': '1god3oy'}
{'comment': 'Funny to think, this will be controversial 🤦🏻\u200d♂️🤷🏻\u200d♂️', 'created': '2024-11-11 00:48:45', 'submission_id': '1god3oy'}
{'comment': 'https://fullfact.org/online/donald-trump-fake-quote-people-magazine/', 'created': '2024-11-11 01:09:44', 'submission_id': '1god3oy'}
{'comment': 'I love it', 'created': '2024-11-11 08:41:25', 'submission_id': '1god3oy'}
{'comment': "Time will tell. \n\nHow should we measure his actions to determine if he's been doing a good job? \n\nWhich metrics?", 'created': '2024-11-11 14:43:21', 'submission_id': '1god3oy'}
{'comment': 'Thank God America came to its senses!\xa0', 'created': '2024-11-12 02:29:26', 'submission_id': '1god3oy'}
{'comment': 'I am happy for him 😊', 'created': '2024-11-11 03:21:13', 'submission_id': '1god3oy'}
{'comment': "Hmm... i don't like a lot of that", 'created': '2024-11-11 04:34:36', 'submission_id': '1god3oy'}
{'comment': 'i believe so!', 'created': '2024-11-11 00:11:27', 'submission_id': '1god3oy'}
{'comment': 'It would probably only apply to a site wide ban. I’m sure you would still be able to be banned by power hungry mods of specific subs', 'created': '2024-11-11 05:42:28', 'submission_id': '1god3oy'}
{'comment': "Doubtful. Reddit mods aren't paid, they're volunteers. Unless I'm mistaken.", 'created': '2024-11-11 04:35:31', 'submission_id': '1god3oy'}
{'comment': '🔥🤗🔥', 'created': '2024-11-11 00:50:24', 'submission_id': '1god3oy'}
{'comment': 'This is an [old video](https://www.donaldjtrump.com/agenda47/president-donald-j-trump-free-speech-policy-initiative) from December 2022 on his agenda 47 website. Not necessarily “coming out swinging” - he’s been saying it for 2 years.\n\nhttps://www.donaldjtrump.com/agenda47/president-donald-j-trump-free-speech-policy-initiative', 'created': '2024-11-11 02:09:00', 'submission_id': '1god3oy'}
{'comment': 'Good stuff, about time!!', 'created': '2024-11-11 03:02:09', 'submission_id': '1god3oy'}
{'comment': 'Saw that post lol. Guy got banned after 5 hours. He got 33k upvotes.', 'created': '2024-11-11 01:33:55', 'submission_id': '1god3oy'}
{'comment': 'I 100% agree', 'created': '2024-11-11 00:43:13', 'submission_id': '1god3oy'}
{'comment': None, 'created': '2024-11-11 02:49:33', 'submission_id': '1god3oy'}
{'comment': "They already tried that after the last election bringing all the big tech companies to Congress for limiting free speech. Nothing came from it, they continue to restrict anything that doesn't align with their own beliefs. It's a fun little thing called Terms of service, it allows them to bypass free speech.", 'created': '2024-11-11 05:05:57', 'submission_id': '1god3oy'}
{'comment': "I've been extremely pleasantly surprised as someone who is crossing the aisle", 'created': '2024-11-11 00:47:02', 'submission_id': '1god3oy'}
{'comment': "Every ounce of fear mongering comes from one source: the Democrats. Every bad thing they claim may happen has no actual ties to any republican plan. Harris's campaign pushed 2025 down everyone's throats and demanded they must be afraid and vote in fear. Our party and Trump are nothing like what the circle jerks claim.", 'created': '2024-11-11 05:47:09', 'submission_id': '1god3oy'}
{'comment': 'I hope it does, we should not of been banned for those in the first place', 'created': '2024-11-11 00:22:51', 'submission_id': '1god3oy'}
{'comment': "with some people you just can't win", 'created': '2024-11-11 00:49:51', 'submission_id': '1god3oy'}
{'comment': 'Well why would you want to get all chummy with idiots?', 'created': '2024-11-11 00:16:25', 'submission_id': '1god3oy'}
{'comment': 'Welcome!', 'created': '2024-11-11 05:44:12', 'submission_id': '1god3oy'}
{'comment': "I just commented here a while back and got permabanned from JusticeServed, I've never been there. I voted for Kamala Harris 💀", 'created': '2024-11-11 00:46:18', 'submission_id': '1god3oy'}
{'comment': "hopefully they get smarter, Then again i just learned a conspiracy saying Biden was a sleeper agent for trump i don't think i would want to get chummy with them lol", 'created': '2024-11-11 00:25:24', 'submission_id': '1god3oy'}
{'comment': 'True, but at the time I thought the sub was actually a non-partisan sub about law, and being a lawyer and adjunct law professor, I thought it would be worth being involved in the discussions. Same with the Supreme Court sub Reddit which also banned me. But you’re right, the post and comments show me that it is highly partisan and mostly very young inexperienced, lawyers or lawyer wannabes.', 'created': '2024-11-11 00:33:17', 'submission_id': '1god3oy'}
{'comment': 'that sucks, it is ridiculous you make a post here and some Modder on scanned your previous post just to ban you', 'created': '2024-11-11 00:49:19', 'submission_id': '1god3oy'}
{'comment': 'Sleeper agent..no wonder he could never stay awake. Ha.', 'created': '2024-11-11 02:58:15', 'submission_id': '1god3oy'}
{'comment': "Reddit isn't for expert groups. It's for fans and posers. I got banned from R/Lutheran. All I did was defend a conservative group of Lutherans. I am also a Lutheran pastor. You are allowed to be on the reddit page as long you don't talk about anything important or relevant. You are allowed to post your coming out story but you aren't allowed to express Christian views of human sexuality.\xa0\n\n\nBasically this place has become a hive mind of liberals. Conservatives get banned for questioning the covid vaccine, the 2020 election, and anything that doesn't follow the narrative.\xa0", 'created': '2024-11-11 13:23:02', 'submission_id': '1god3oy'}
{'comment': "It's genuinely ridiculous lol. It's the first time something like that has happened to me, without me even participating in that sub. Is that a regular occurrence for yall?", 'created': '2024-11-11 00:51:25', 'submission_id': '1god3oy'}
{'comment': "Well, they can't call him a waker agent 👈👈", 'created': '2024-11-11 11:26:58', 'submission_id': '1god3oy'}
{'comment': 'You have no idea 😒', 'created': '2024-11-11 02:05:17', 'submission_id': '1god3oy'}
{'comment': 'I came here after the election and started posting, within 3 days I was banned from 5 subs, only one of which I actually post in. Reddit mods are like HOA boards, nothing better to do than doxx people and ban them.', 'created': '2024-11-11 02:09:37', 'submission_id': '1god3oy'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-10 20:39:14', 'submission_id': '1go8wf0'}
{'comment': 'This should be escalated above Reddit and to a law enforcement agency', 'created': '2024-11-10 20:56:25', 'submission_id': '1go8wf0'}
{'comment': "Oh but we can't even go on any other subreddit besides the republican one and say one nice thing about Trump or we get banned lol so there's no room for debate or educating these ppl", 'created': '2024-11-10 20:50:35', 'submission_id': '1go8wf0'}
{'comment': None, 'created': '2024-11-10 20:52:10', 'submission_id': '1go8wf0'}
{'comment': 'No idea how they came to the conclusion that left wing people own more guns than right wing people. I was under the impression that Republicans own guns at a much much higher rate', 'created': '2024-11-10 20:57:41', 'submission_id': '1go8wf0'}
{'comment': 'You bet if this was on a conservative sub that would be a permanent ban and report to the authorities. I do hate how Reddit is run and it’s not just sub mods. It goes all the way to the top.', 'created': '2024-11-10 21:18:36', 'submission_id': '1go8wf0'}
{'comment': 'Democrats tried to kill him. Twice. And they’re saying that trump is the violent one.', 'created': '2024-11-10 21:03:45', 'submission_id': '1go8wf0'}
{'comment': 'How is that not threatening violence? What shit.', 'created': '2024-11-10 21:25:58', 'submission_id': '1go8wf0'}
{'comment': "He technically is right with the RPGs because the US doesn't operate the RPG. We operate the Stunger, Javalin, AT-4, and a couple other MANPATS systems. Anyway, you should leak their username.", 'created': '2024-11-10 21:06:58', 'submission_id': '1go8wf0'}
{'comment': "This idiot is the reason leftists scream it is maga's fault for everything because they are so happy to lump everyone into one group except when it helps prove their point. This person need a police visit and most likely a therapist and meds.", 'created': '2024-11-10 21:05:33', 'submission_id': '1go8wf0'}
{'comment': 'What the hell subreddit allows openly calling for political associations as not violating theirs rules. It’s crazy. The left can openly call for violence against someone and it’s no problem, but if someone on the right comments in the wrong forum they are banned.', 'created': '2024-11-10 21:26:13', 'submission_id': '1go8wf0'}
{'comment': "I don't know what yall expect, this site is ran by left wing radicals. I've seen violent, anti trump rhetoric spreading everywhere here, literally everywhere. It's a near instant ban if you respond in defense of Trump. It's fucking insane but not shocking in the least.", 'created': '2024-11-10 22:09:39', 'submission_id': '1go8wf0'}
{'comment': 'It’s puzzling to see so many people don’t equate the Democratic Party with communism. The MAGA movement isn’t focused on stripping away rights. The confusion from the left on this issue is quite strange.', 'created': '2024-11-10 21:43:33', 'submission_id': '1go8wf0'}
{'comment': 'Jesus Christ.. you should uh.. give me the username so I can report him and this cesspool of an app.', 'created': '2024-11-10 20:53:03', 'submission_id': '1go8wf0'}
{'comment': 'Please feel free to knock at my door with that posture.', 'created': '2024-11-10 21:06:50', 'submission_id': '1go8wf0'}
{'comment': 'Why blur the name. Let them be responsible for their words.', 'created': '2024-11-11 00:19:48', 'submission_id': '1go8wf0'}
{'comment': "How is it that I got banned for a month for saying we should put down thieves and peds, but this guy doesn't get banned for saying to kill people he doesn't agree with", 'created': '2024-11-10 22:07:33', 'submission_id': '1go8wf0'}
{'comment': "They call us fascist yet this sounds like literal fascism (I may be wrong but I wouldn't be surprised if I'm not) and encouragement to kill political enemies \n\nAlso that little tid bit about Democrats owning more guns then Republicans I find laughable", 'created': '2024-11-10 22:03:19', 'submission_id': '1go8wf0'}
{'comment': 'This election has enlightened me to just how many democrats need some help from mental health professionals', 'created': '2024-11-11 01:01:15', 'submission_id': '1go8wf0'}
{'comment': 'Wow. The left is so deranged', 'created': '2024-11-10 22:34:41', 'submission_id': '1go8wf0'}
{'comment': 'While I agree that this is hate speech and 100% constituents terroristic threatening, the spelling and grammar are atrocious 🙄', 'created': '2024-11-11 00:03:19', 'submission_id': '1go8wf0'}
{'comment': 'Some one learned how to be a ventriloquist cause they are talking out their butt.', 'created': '2024-11-10 21:12:17', 'submission_id': '1go8wf0'}
{'comment': 'Where are the RPG’s on sale this holiday season?', 'created': '2024-11-10 21:54:59', 'submission_id': '1go8wf0'}
{'comment': "If you dm the username, I'll report that shit to the authorities right now", 'created': '2024-11-10 22:57:51', 'submission_id': '1go8wf0'}
{'comment': 'Soy based threats.. lol what entitled freaks they are.', 'created': '2024-11-10 23:06:21', 'submission_id': '1go8wf0'}
{'comment': 'I actually heard a speech Trump is going to do a ton of shit to free up freedom of speech.\n\nZomg, I hope it cleans up reddit too.', 'created': '2024-11-11 00:06:05', 'submission_id': '1go8wf0'}
{'comment': 'I honestly hope you reported this to the FBI tipline yea? This is manifesto level shit.', 'created': '2024-11-11 00:15:08', 'submission_id': '1go8wf0'}
{'comment': 'Given the shit ive seen since Trump was elected, id say there are more than enough unhinged psychotic democrats that would literally be willing to do exactly what this person is talking about doing.', 'created': '2024-11-11 01:31:43', 'submission_id': '1go8wf0'}
{'comment': 'But then if you replace Trump with Kamala in that but keep every other word the same and then have it reported, it’ll get deleted', 'created': '2024-11-10 22:31:34', 'submission_id': '1go8wf0'}
{'comment': "It's hilarious that they think Dems have been nice and took the high road for 4 years. If that was them being nice than I dont want to see what them being mean looks like.", 'created': '2024-11-10 22:46:11', 'submission_id': '1go8wf0'}
{'comment': 'Link it. If enough people report it, a sane admin might see the report.', 'created': '2024-11-10 23:10:49', 'submission_id': '1go8wf0'}
{'comment': "This site has been on a downward slide into extremism for a while now, but this election really made me realize how absolutely insane most of the left is at this point. And they refuse to look inwards. It's always someone else's fault.", 'created': '2024-11-11 02:43:06', 'submission_id': '1go8wf0'}
{'comment': 'Reddit doesn’t give a fuck. The MODs are biased as fuck and hate the right. This election proved more than we need to see. This country is full of patriots that are pissed the fuck off. We want our country back.', 'created': '2024-11-11 02:53:56', 'submission_id': '1go8wf0'}
{'comment': 'Larping to the max', 'created': '2024-11-10 20:57:11', 'submission_id': '1go8wf0'}
{'comment': 'I lost it at “more leftists own RPGs than the military', 'created': '2024-11-10 21:20:00', 'submission_id': '1go8wf0'}
{'comment': 'im too lazy to read any of that but i read some of it and he sounds like a mad man.', 'created': '2024-11-10 22:28:43', 'submission_id': '1go8wf0'}
{'comment': "Republican's normalized violence? What's the weather like on this idiot's planet?", 'created': '2024-11-10 23:16:45', 'submission_id': '1go8wf0'}
{'comment': 'I have so many warnings in my inbox for speaking the truth. Reddit is about Drama.', 'created': '2024-11-10 23:19:25', 'submission_id': '1go8wf0'}
{'comment': 'its led by the tolerant left ofc its going to be full of violence and hate. they are off their psych meds.', 'created': '2024-11-11 01:47:04', 'submission_id': '1go8wf0'}
{'comment': 'Not surprised reddit is okay with it', 'created': '2024-11-11 02:27:07', 'submission_id': '1go8wf0'}
{'comment': 'Elon musk to buy Reddit 🙏🏼', 'created': '2024-11-11 17:46:25', 'submission_id': '1go8wf0'}
{'comment': 'And I can’t even post anything on this subreddit despite supporting Trump for this election…. Reddit mods are a complete joke on all sides. I tried making a post a few hours ago just asking about ‘What’s a policy you disagree/wish Trump didn’t run on’ yet it got deleted instantly. Same thing with independent subreddits, I made a post sharing my opinion on how the reason Dems lost is because they dig their own grave in the last year yet couldn’t get it accepted. Reddit is becoming a complete joke, it might be the most censored platform of them all and it happens on both sides due to mods controlling it', 'created': '2024-11-10 21:20:43', 'submission_id': '1go8wf0'}
{'comment': 'Awesome! I say kick it off. Anyone who knows me, knows I will absolutely not honor surrender when it comes to fucking liberals. What\'s a few more notches on my "belt".', 'created': '2024-11-10 23:21:25', 'submission_id': '1go8wf0'}
{'comment': "I can't get over how many liberals still believe and seem genuinely fearful of Project 2025 when it was proven untrue, yet the media and democrats continue to run with it. People should be held accountable for propoganda.", 'created': '2024-11-10 23:26:04', 'submission_id': '1go8wf0'}
{'comment': 'So so so scary. Reported to FBI. Doing all I can to have this person held accountable.', 'created': '2024-11-11 02:59:45', 'submission_id': '1go8wf0'}
{'comment': 'Liberalism is a cult.', 'created': '2024-11-11 04:12:50', 'submission_id': '1go8wf0'}
{'comment': 'Translation: “We lost because the country saw straight through our facade of “Joy” and since we can’t reason like adults, we’re going to resort to child-like tantrum behavior and go straight to violence because we aren’t good at arguing or coming up with a way forward based on compromise and agreement. We only pretended to care about democracy and the voting process and now we must take matters into our own tiny hands and force you sub-human Republicans to do what we want. We’re the bullies and fascists that we’ve been calling you guys all along and we’re going to prove it when we shut you up for good.”\n\nDoes this sound about right??', 'created': '2024-11-11 05:19:44', 'submission_id': '1go8wf0'}
{'comment': 'This is not healthy bantar', 'created': '2024-11-11 05:54:32', 'submission_id': '1go8wf0'}
{'comment': 'Elon Musk needs to buy reddit', 'created': '2024-11-11 07:37:32', 'submission_id': '1go8wf0'}
{'comment': 'Tombstone quote... "Say when"', 'created': '2024-11-11 08:16:02', 'submission_id': '1go8wf0'}
{'comment': 'Why scribble out the use name?', 'created': '2024-11-11 12:15:12', 'submission_id': '1go8wf0'}
{'comment': 'Democrats are a nasty beast. Reddit is a cesspool for them here for a few subs and that’s it. The censorship here is a joke.', 'created': '2024-11-11 13:58:08', 'submission_id': '1go8wf0'}
{'comment': 'The whole Reddit site is being run by little whining dems. I’ve been on many subs that have rules against political posts but they’re allowing them as long as it’s against republicans. I report then I get banned. Bigots. In a women’s group for MENOPAUSE. Like why the fũck are political posts being allowed there.', 'created': '2024-11-11 15:27:14', 'submission_id': '1go8wf0'}
{'comment': 'The Left is inherently violent. \n\nThe ideology is about the violent revolution.', 'created': '2024-11-11 15:53:35', 'submission_id': '1go8wf0'}
{'comment': 'Welcome to the lefts new playground', 'created': '2024-11-11 15:56:43', 'submission_id': '1go8wf0'}
{'comment': 'Um Dem use their puppets to burn cities to the ground. That is nothing like what Republicans do.', 'created': '2024-11-11 16:35:43', 'submission_id': '1go8wf0'}
{'comment': 'So long as you’re in the Left, Reddit allows it', 'created': '2024-11-11 17:06:53', 'submission_id': '1go8wf0'}
{'comment': 'Why protect the privacy of an unhinged person threatening death to all of us?\nI have never said this, but I seriously hope you forwarded that to law enforcement! Holy moses.', 'created': '2024-11-11 17:39:03', 'submission_id': '1go8wf0'}
{'comment': 'What’s his username? Asking for a friend', 'created': '2024-11-11 17:47:18', 'submission_id': '1go8wf0'}
{'comment': "This is the result of media fearmongering and CNN anti-Right propaganda. I'll never vote blue ever again in my entire life.", 'created': '2024-11-11 20:19:04', 'submission_id': '1go8wf0'}
{'comment': 'You should copy/paste but flip-flop everything from Democrat to Republican....see if THAT gets taken down. If so, provide link to original post....', 'created': '2024-11-13 22:44:49', 'submission_id': '1go8wf0'}
{'comment': "All of reddit needs to be completely gutted. The mods here are insane. Honestly, I'm thinking about leaving Reddit, it's just gone too far.", 'created': '2024-11-14 05:30:55', 'submission_id': '1go8wf0'}
{'comment': 'Omg 😳', 'created': '2024-11-11 02:01:38', 'submission_id': '1go8wf0'}
{'comment': 'Dm me', 'created': '2024-11-10 21:30:24', 'submission_id': '1go8wf0'}
{'comment': "I have been going on AnythingGoesNews and talking good about Trump for about a month now and haven't been banned yet. Actually impressed with those mods.", 'created': '2024-11-10 21:15:22', 'submission_id': '1go8wf0'}
{'comment': 'I got 50 downvotes today for saying “by fuckers you’re referring to OP’s friends and family?” Because op was cutting them off and someone said the fuckers deserve blah blah blah. I had to delete my comment.', 'created': '2024-11-10 21:16:26', 'submission_id': '1go8wf0'}
{'comment': None, 'created': '2024-11-10 23:26:45', 'submission_id': '1go8wf0'}
{'comment': "Idk how to and I don't think they would do anything about it", 'created': '2024-11-10 21:00:11', 'submission_id': '1go8wf0'}
{'comment': 'Maybe they mean more left wing people illegally own more guns. This I could believe.', 'created': '2024-11-10 22:03:07', 'submission_id': '1go8wf0'}
{'comment': '"more leftists own RPGs then the military" this person has never touched a gun and is just saying shit lol', 'created': '2024-11-11 06:25:18', 'submission_id': '1go8wf0'}
{'comment': 'This site needs boycotted or investigated.', 'created': '2024-11-10 21:36:17', 'submission_id': '1go8wf0'}
{'comment': 'This is a bit of a “mark my words” statement, but I genuinely would not be surprised if we start to see major violence perpetuated by the left over the next four years.\n\nThe amount of liberals I’ve encountered that have been openly disappointed about his failed assassination attempts is frightening. And when digging a little deeper, their hatred actually extends to *anyone who votes for him*, in a violent civil war type of way. \n\nTo illustrate how serious this is, these were real-life conversations among educated professionals, not in the anonymous echo chambers of the internet.\n\nMy opinion is that the worst thing a normal conservative will think about a normal liberal is that they’re dumb. But the worst thing a normal liberal will think about a normal conservative is that they’re dumb and ALSO a Nazi, horrible person, racist, etc. \n\nI was a very left-leaning moderate and this was kind of the tip of the iceberg in reassessing where I really stood on numerous issues, and most importantly, evaluating biases and echo chambers I was being exposed to.\n\nSo anyway, here I am, a Republican now.', 'created': '2024-11-11 02:01:09', 'submission_id': '1go8wf0'}
{'comment': "Exactly, we can't report this without a name.", 'created': '2024-11-10 21:29:23', 'submission_id': '1go8wf0'}
{'comment': 'He posted it to his own account without a sub', 'created': '2024-11-10 21:30:57', 'submission_id': '1go8wf0'}
{'comment': 'This entire platform is brainwashed radicals and I am so ready to just log off forever.', 'created': '2024-11-11 02:18:03', 'submission_id': '1go8wf0'}
{'comment': 'Amen', 'created': '2024-11-11 02:18:18', 'submission_id': '1go8wf0'}
{'comment': 'Exactly. Tough guys typing from mom’s basement. All bark, no bite.', 'created': '2024-11-11 02:16:15', 'submission_id': '1go8wf0'}
{'comment': 'Yep', 'created': '2024-11-11 02:18:44', 'submission_id': '1go8wf0'}
{'comment': 'He deleted the post', 'created': '2024-11-11 00:34:19', 'submission_id': '1go8wf0'}
{'comment': 'The military doesn’t use RPGs as we think of them. So maybe they are correct.', 'created': '2024-11-10 21:28:49', 'submission_id': '1go8wf0'}
{'comment': 'Couldy with a chance of soy', 'created': '2024-11-11 01:02:55', 'submission_id': '1go8wf0'}
{'comment': 'I swear this shithole site needs to go the way of the dinosaur.', 'created': '2024-11-11 02:28:21', 'submission_id': '1go8wf0'}
{'comment': "Please tell me you've reported this to authorities. Mod is an accomplice at this point, as well.", 'created': '2024-11-11 17:02:38', 'submission_id': '1go8wf0'}
{'comment': 'That is awesome I am glad to hear that!', 'created': '2024-11-10 21:16:05', 'submission_id': '1go8wf0'}
{'comment': 'Visit visited there. We should put a wall around the entire thing and paint the world "Asylum" on the outside.', 'created': '2024-11-10 22:00:43', 'submission_id': '1go8wf0'}
{'comment': "I mod a subreddit for women..I will not ban you for being conservative or speaking about trump! Sorry fellas it's just for women, but if you are a conservative female please join my subreddit.\n r/herspace", 'created': '2024-11-11 02:11:08', 'submission_id': '1go8wf0'}
{'comment': 'This is repulsive to me. My father died last year and he hated Trump with a passion and probably would have voted Democrats and I would of never cut him off!!! It makes me sick that these bleeding heart vaginas are cutting off their parents who are alive and well!', 'created': '2024-11-10 21:18:07', 'submission_id': '1go8wf0'}
{'comment': 'Lmk what you find.', 'created': '2024-11-11 00:09:37', 'submission_id': '1go8wf0'}
{'comment': 'Here ya go!\n\nhttps://tips.fbi.gov/home', 'created': '2024-11-10 21:44:09', 'submission_id': '1go8wf0'}
{'comment': None, 'created': '2024-11-10 21:01:23', 'submission_id': '1go8wf0'}
{'comment': 'I mean this person is literally saying they are willing to go door to door killing Republicans, I think the police would care.', 'created': '2024-11-11 01:28:18', 'submission_id': '1go8wf0'}
{'comment': 'They got all their facts from command and conquer lol', 'created': '2024-11-11 06:25:53', 'submission_id': '1go8wf0'}
{'comment': "Hopefully both. There's going to be laws I guess about shadowbanning stuff soon coming with the Trump presidency.", 'created': '2024-11-11 00:11:46', 'submission_id': '1go8wf0'}
{'comment': 'Dm me', 'created': '2024-11-10 21:30:17', 'submission_id': '1go8wf0'}
{'comment': 'It’s still funny to read', 'created': '2024-11-10 22:14:07', 'submission_id': '1go8wf0'}
{'comment': 'You rly need to report it to the fbi because in the post, it literally said, "we should be doing the assassinations."\n\nYou really need to report it or give us the thread link so someone else can do it. Hiding that identity and not doing anything with it is enabling.', 'created': '2024-11-11 02:34:55', 'submission_id': '1go8wf0'}
{'comment': 'Or Elon needs to buy it', 'created': '2024-11-11 15:17:05', 'submission_id': '1go8wf0'}
{'comment': "That response isn't from a moderator but an administrator which is a posh wank name for a Reddit Employee. The response could even be a bot as I've had a similar response when I've reported a user for giving out someone’s home address which is a direct and obvious breach of Reddit’s TOS. Report to authorities and they can request information from Reddit if they need to", 'created': '2024-11-11 20:00:12', 'submission_id': '1go8wf0'}
{'comment': "Lol, not going to disagree but it's one of the few places I've been able to say what I think to libs and not get banned.", 'created': '2024-11-10 22:08:12', 'submission_id': '1go8wf0'}
{'comment': 'We love to see it :)', 'created': '2024-11-11 02:17:01', 'submission_id': '1go8wf0'}
{'comment': "What I've been looking for! Thanks!", 'created': '2024-11-11 05:19:42', 'submission_id': '1go8wf0'}
{'comment': None, 'created': '2024-11-10 21:22:17', 'submission_id': '1go8wf0'}
{'comment': 'Thank you\nHappy cake day btw', 'created': '2024-11-11 00:35:14', 'submission_id': '1go8wf0'}
{'comment': 'Or he’ll lie and say it wasn’t him like this [kid](https://www.cbsnews.com/amp/news/georgia-school-shooting-suspect-colt-gray-what-we-know/)', 'created': '2024-11-11 00:24:59', 'submission_id': '1go8wf0'}
{'comment': 'Done', 'created': '2024-11-10 23:09:28', 'submission_id': '1go8wf0'}
{'comment': 'It’s definitely unhinged', 'created': '2024-11-10 22:43:35', 'submission_id': '1go8wf0'}
{'comment': "I've had good luck with r/texas so far. I get downvoted to oblivion, sure, but the mods haven't banned me yet. I should add that I remain respectful until someone starts shit with me. Even then I don't take it overboard.", 'created': '2024-11-12 00:47:18', 'submission_id': '1go8wf0'}
{'comment': 'It\'s disturbing. I have a friend that kept texting me horrible things about Trump especially when he was almost assassinated she just figured I was a Kamala supporter the day after election day we were talking about the election and I was like "well this entire time I have been a Trump supporter" her face turned white lol but I was tolerant to what she said even when it involved being disappointed that someone wasn\'t murdered. I live in a red state and a red county and I don\'t know many ppl that supported Kamala which is a god send but she sure looked embarrassed and pissed when I told her I have always supported Trump 😂😂😂😂', 'created': '2024-11-10 21:27:42', 'submission_id': '1go8wf0'}
{'comment': 'And I am sorry this person has treated u this way.', 'created': '2024-11-10 21:28:36', 'submission_id': '1go8wf0'}
{'comment': 'Thanks and welcome!', 'created': '2024-11-11 00:47:31', 'submission_id': '1go8wf0'}
{'comment': "Have you reported it? I will if you haven't", 'created': '2024-11-11 12:46:36', 'submission_id': '1go8wf0'}
{'comment': 'I just came from r/UFOs where people are absolutely dogging Trump in the comments, the post was about the disclosure project and had a pessimistic view of the movement being negatively affected because of the Election. I left a comment pointing out that Kamala wouldn’t be obligated to pursue the investigation into our department of defense because she’s a fascist. It got immediately removed by mods because it was “toxic”.\n\nMy family are stanch democrats (except for my dad) my stepmom doesn’t know. She was saying anyone who votes for Trump is an idiot and if she found out that my dad voted for him she would divorce him. Basically any time someone who supported Kamala would press the subject, it was always by bullying. Couldn’t find a handful of solid arguments to have a two way conversation. I never really considered myself a republican, I’ve personally always voted third party (wasted my vote whatever, it’s my vote) I’d bring up my grievances about the lady, these people are mad because I (as a woman) should want a female in the Oval Office “it’s our turn” that was the argument made when I wouldn’t vote for Hillary. That’s weak. \n\nMy take on the whole thing is, I make a little more than what I did in 2016, but now I’m struggling. Even if Donald is as bad as they make him out to be, at least it will be Entertaining.', 'created': '2024-11-11 01:27:35', 'submission_id': '1go8wf0'}
{'comment': None, 'created': '2024-11-10 21:40:26', 'submission_id': '1go8wf0'}
{'comment': 'Well the majority of the country is a racist Nazi according to the left. Including black men and Latinos. They went hard on the Latino men over this and said super racist stuff so true colors are showing.', 'created': '2024-11-10 21:42:01', 'submission_id': '1go8wf0'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-10 19:50:24', 'submission_id': '1go7rcz'}
{'comment': '"minor in statistics" that is too funny. If that person really has that degree, then they should know about normal distribution and outliers. The sudden spike in 81+ million votes for Biden was an outlier.', 'created': '2024-11-10 19:56:57', 'submission_id': '1go7rcz'}
{'comment': 'Let\'s try to resolve this like they did in 2020. You can bring all the evidence you want and like many judges did then, the judge will then never look at it, dismiss it and the media and everyone else will all declare "NO EVIDENCE! NO FRAUD!" \n\nAnd it will just go no where from there.', 'created': '2024-11-10 19:55:40', 'submission_id': '1go7rcz'}
{'comment': 'Let them screech. \n\nThe more they blame everything buy themselves and their policies the closer we get to wining again in 2028', 'created': '2024-11-10 20:08:37', 'submission_id': '1go7rcz'}
{'comment': "I respect an MS, but my brother got one in sociology and the guy can't spell for shit, and barely graduated. Great guy, love him to death, but just because you got an MS doesn't mean your good in the field you studied.", 'created': '2024-11-10 21:10:32', 'submission_id': '1go7rcz'}
{'comment': 'WHEN, IF, THEN is some of the most basic level programming you learn it in every 101 for Computer Science. I have an AS in Programming and Annalysis. Seems fishy at best for me.', 'created': '2024-11-10 20:11:43', 'submission_id': '1go7rcz'}
{'comment': 'Election denial is all the rage this year', 'created': '2024-11-10 20:37:42', 'submission_id': '1go7rcz'}
{'comment': 'Also way to fail your master’s not picking up the 2020 anomaly. What a loser!', 'created': '2024-11-10 20:19:13', 'submission_id': '1go7rcz'}
{'comment': 'Fraud did happen. But in 2020', 'created': '2024-11-10 19:54:45', 'submission_id': '1go7rcz'}
{'comment': 'The same people who were disgusted and angered by Trump refusing to accept a loss are now doing the same damn thing. People are absolute hypocrites and it blows my mind how they don’t comprehend how their own party potentially had the worst election year in HISTORY\n\nDems failed you and there’s no denying that, they hid the fact that Biden was senile up until it was too late and then destroyed all your chances of winning by placing a woman who might of been the least popular candidate in the 2020 primaries getting less then 1% of votes. Add the fact that she had the worse VP ratings in recent history and your still blinded by how your party did you dirty\n\nI’m center to right politically and let me tell you that if Dems weren’t so corrupt and down this far left path that we’ve never seen before then RFK would of been running and I believe would of beaten Trump, same with Tulsi. They fumbled the bag on two amazing candidates just because they didn’t wanna join in on their far left woke BS. Hopefully this landslide teaches Dems a lesson and brings them back on track to the traditional Democratic party that once was\n\nTulsi Gabbard will be the first female president and put Dems in their place. Not sure if it will be in 2028 due to the amount of adversity she will be facing but I believe its inevitable by 2032. The left has lost their damn minds refusing to take accountability for how bad their party handled things recently', 'created': '2024-11-10 21:06:12', 'submission_id': '1go7rcz'}
{'comment': 'It\'s the Internet, you don\'t know who the other person you\'re talking to really is, they can claim whatever credentials they want and whatever info they have, in the end its all "Trust me bro". Not to be a conspiracy theorist but I find it plausible this is all Russian bots and trolls trying to foment even more dissent in the US. It just boggles my mind that with a wealth of information that would exceed a thousand libraries of Alexandria, we are stupider and more gullible than ever.', 'created': '2024-11-10 21:23:01', 'submission_id': '1go7rcz'}
{'comment': '2020 could have been where the fraud was as well.', 'created': '2024-11-10 22:17:11', 'submission_id': '1go7rcz'}
{'comment': 'I’m a US citizen. And it’s not hard for me to see yes these secured results are accurate, and prove they cheated in 2020. Unless somehow 18 million democrats decided not to vote?\n\nRegardless the 2020 election was clearly rigged in favor of Biden. Nobody has ever received that many votes in history.', 'created': '2024-11-10 23:44:12', 'submission_id': '1go7rcz'}
{'comment': 'When people have to qualify their opinions with their backgrounds, you can rest assured that their opinion is dogshit.', 'created': '2024-11-10 20:15:14', 'submission_id': '1go7rcz'}
{'comment': 'I can say X did have a strong influence on getting votes for Trump. I don’t think it’s a coincidence that before the elections, all I saw on my fyp was right wing stuff, now I’m starting to see more left leaning posts. I think the left was silenced on X but I don’t really care. After all, they did silence right wing media all around twitter so we wouldn’t see a substantial amount of support. All I can say is cry like we did. We won, eat shit', 'created': '2024-11-10 20:28:50', 'submission_id': '1go7rcz'}
{'comment': 'I hate people', 'created': '2024-11-10 21:25:52', 'submission_id': '1go7rcz'}
{'comment': 'Looks like we will be seeing lots of arrests in our future.', 'created': '2024-11-10 21:32:10', 'submission_id': '1go7rcz'}
{'comment': 'So guys 70 years in hacking and making hacks. Well I actually made hacking.. heh. Well here is the long thread as to why 2024 elections are hacked.', 'created': '2024-11-10 21:32:20', 'submission_id': '1go7rcz'}
{'comment': 'So are they admitting to 2020 fraud or denting 2024 election results lol', 'created': '2024-11-10 21:41:10', 'submission_id': '1go7rcz'}
{'comment': 'Let the Russian "Trump hackzored the election" disinfo campaign begin \n\nPathetic considering how many on the left parrot the "daddy Putin has Trump on a leash" rhetoric while happily devouring his poison', 'created': '2024-11-10 21:45:31', 'submission_id': '1go7rcz'}
{'comment': 'i like how these people always start with “i have a major in this” or “i work for this” to start off their sentences as if thats going to give them any credibility.', 'created': '2024-11-10 22:32:04', 'submission_id': '1go7rcz'}
{'comment': 'I noticed Trump stopped saying there was voter fraud in Pennsylvania', 'created': '2024-11-10 22:55:57', 'submission_id': '1go7rcz'}
{'comment': "I'm not good at math. \n\nThe number of voters in 2012, 2016, and 2024 were all about the same.\n\nIn 2020, there was a huge Spike! Never mind that it was in the middle of a pandemic when so many businesses were closed and schools were shut down, somehow 10 to 20 million people found a way to get ballots and vote. \n\nAnd then they just disappeared, apparently not caring, just apathetic in 2024.\n\nOr they died of covid? Left the country? Where did all these people go?", 'created': '2024-11-10 23:08:16', 'submission_id': '1go7rcz'}
{'comment': 'They’ve yet to come and ASK why it happened. They just try to figure out how call us more names then claim we cheated 🤷\u200d♀️', 'created': '2024-11-10 23:32:33', 'submission_id': '1go7rcz'}
{'comment': 'Honestly, Trump would’ve lost if they had picked an actual candidate to go up against him. Harris’ campaign felt very thrown together last minute with very little planning', 'created': '2024-11-11 02:06:07', 'submission_id': '1go7rcz'}
{'comment': 'Ironic considering they spent 4 years mouthing off about trusting the election process and “the people have spoken” etc. The moment they lose (and in spectacular fashion) they whine and bitch and call foul.', 'created': '2024-11-11 04:41:07', 'submission_id': '1go7rcz'}
{'comment': "Interesting that it's now extremely easy and possible to steal an election.", 'created': '2024-11-11 07:30:55', 'submission_id': '1go7rcz'}
{'comment': 'Once again, proving how valueless degrees are now. PoliSci and Stats even more so.', 'created': '2024-11-11 15:18:33', 'submission_id': '1go7rcz'}
{'comment': 'I have two words to say about all that.\nFUCK DEM!! 🤣', 'created': '2024-11-11 16:15:38', 'submission_id': '1go7rcz'}
{'comment': "Even if you don't believe in mass voter fraud in 2020 (I don't), the idea that a country in the depths of peak covid would be in such a panic as to want new leadership isn't insane. Extremely disappointed these people don't understand that", 'created': '2024-11-10 21:00:14', 'submission_id': '1go7rcz'}
{'comment': 'Degree or not, the stupid is strong with them.', 'created': '2024-11-10 20:36:52', 'submission_id': '1go7rcz'}
{'comment': 'I thought questioning an election was a threat to democracy', 'created': '2024-11-10 21:01:03', 'submission_id': '1go7rcz'}
{'comment': '[removed]', 'created': '2024-11-10 19:53:26', 'submission_id': '1go7rcz'}
{'comment': 'IIRC people got sued for slandering the voting machine company in 2020', 'created': '2024-11-10 22:48:57', 'submission_id': '1go7rcz'}
{'comment': 'LMAO are you getting this shit too? These people sound worse than we did 4 years ago SOLELY because zombies actually voted', 'created': '2024-11-10 22:53:47', 'submission_id': '1go7rcz'}
{'comment': '"It will have a WHEN function and a IF/THEN function"... Okay, this made me laugh, because those are just basic statements that you\'ll find in virtually ALL programs.', 'created': '2024-11-10 22:57:06', 'submission_id': '1go7rcz'}
{'comment': "Lmao they're SO close.....", 'created': '2024-11-11 00:55:21', 'submission_id': '1go7rcz'}
{'comment': 'So...this moron has their degree in indoctrination. \nI hope they enjoy making payments on that brain washing.', 'created': '2024-11-11 01:32:36', 'submission_id': '1go7rcz'}
{'comment': 'Must be the same level as that “well I’m a political analyst” chick.', 'created': '2024-11-11 01:38:26', 'submission_id': '1go7rcz'}
{'comment': 'they think highly of themselves with those degrees. we know that liberals are heading them out like candy.', 'created': '2024-11-11 01:48:04', 'submission_id': '1go7rcz'}
{'comment': 'For every year EXCEPT 2020, dems have around 60m votes. 2020 they had 80m so 2024 goin back to 60m isn’t unusual at all. 2020 is the outlier', 'created': '2024-11-11 01:56:46', 'submission_id': '1go7rcz'}
{'comment': '“probably were …” minor is stats, etc.', 'created': '2024-11-11 02:41:38', 'submission_id': '1go7rcz'}
{'comment': 'Someone told me that questioning election results and denying election outcomes is unpatriotic, misinformation, and potentially criminal.', 'created': '2024-11-11 02:49:53', 'submission_id': '1go7rcz'}
{'comment': '2020 was theft and this is the sentence !', 'created': '2024-11-11 05:34:41', 'submission_id': '1go7rcz'}
{'comment': 'Yeah, as an Indy, it was clear to me that it was a once-in-a lifetime thing. It was clear that people were fed up with the vocal majority more concerned about controlling dissent, identity, gender, and discourse Turin getting stuff done. All of a sudden , it’s shocked pinch face’. Us insy people warned them to put in Beshear', 'created': '2024-11-11 06:49:10', 'submission_id': '1go7rcz'}
{'comment': 'I lived in WV for about 15 years. Although registered republican, my ballot was never exclusive to one party. Always voted for Byrd and Manchin. Always voted for the republican presidential nominee. It’s extremely common in WV for people to vote that way. \n\nIn PA now and almost exclusively vote republican. There are two local committee elections where I have voted democrat. \n\nI’d be willing to bet, the more educated people are about nominees and what they are running for, the more diverse their ballots become. I see the recent results as a sign that voters are involved and knowledgeable about what they are actually voting for.', 'created': '2024-11-11 13:44:16', 'submission_id': '1go7rcz'}
{'comment': 'If you see the drop in voter count it is crazy. 13 million Democratic voters and then 3 million Republican votes. That’s the difference between 2020 and this election.', 'created': '2024-11-11 21:49:14', 'submission_id': '1go7rcz'}
{'comment': 'There a ton of people who think because they have degrees they’re an authority on the subject, the typical elitist liberal way. “I have a bachelors degree in psychology and it’s apparent that Trump cheated by watching his body language😡🤓”', 'created': '2024-11-10 20:00:11', 'submission_id': '1go7rcz'}
{'comment': 'I\'m a data analyst by trade, but this actually isn\'t a statistical problem at all. People change how they vote in a way that isn\'t predictable, because people aren\'t perfectly logical machines with consistent and recognizable parameters. The person in the post is dumb, but it\'s also dumb to talk about "outliers" when such a term doesn\'t make sense. Even the total number of votes cast is chaotic and not patterned, because some years people just don\'t care', 'created': '2024-11-10 21:03:28', 'submission_id': '1go7rcz'}
{'comment': 'They were comforted by a false sense of security, convinced that their trickery would prevail yet again. Even after being cautioned about the possibility of being caught and instructed not to repeat their misdeeds, the cycle continues. Ultimately, this could mark a significant triumph for democracy once the public understands that it wasn’t merely a game and that the so-called winners were misguided in believing they had a solid strategy. It was a trap after all.', 'created': '2024-11-10 21:35:55', 'submission_id': '1go7rcz'}
{'comment': 'Precisely. No standing ≠ no evidence.', 'created': '2024-11-10 20:39:11', 'submission_id': '1go7rcz'}
{'comment': 'I’d prefer they relook at 2020. It’s clear democrats stuffed the ballot box with 20k extra votes', 'created': '2024-11-10 21:55:54', 'submission_id': '1go7rcz'}
{'comment': 'Rasmussen has been killing it in the last few elections, against all odds they had Trump in 2016 then had Biden in 2020 and this year they absolutely nailed it getting the electoral votes perfectly at 312 for Trump\n\nWhat I’m getting to is that I never really bought in the fact that Trump got cheated on in 2020 however when you look at the turnout votes from this year compared to 2020 then you can’t deny that its very sketchy. Maybe covid had people so bored that they took the time to vote and its a valid thing to say\n\nMy point is that its absolutely insane for people to claim Trump now cheated when he won in a complete landslide, he didn’t even have the illegal immigrants who potentially voted on his side yet still had this amazing performance', 'created': '2024-11-10 21:14:07', 'submission_id': '1go7rcz'}
{'comment': 'This is the way.\n\nOh and can we dox judges kids schools to get them to rule our way like they did in Michigan and PA in 2020?', 'created': '2024-11-10 21:49:23', 'submission_id': '1go7rcz'}
{'comment': 'And then we may see some of the extremists incite a Capitol insurrection. I think it’s gonna be the norm for the next few years.', 'created': '2024-11-10 20:40:24', 'submission_id': '1go7rcz'}
{'comment': 'This is actually for the best. Also mid term elections.', 'created': '2024-11-11 05:57:23', 'submission_id': '1go7rcz'}
{'comment': 'Easy\n\nX = trump vote\n\nY = kamala vote\n\nIf X < Y; \n \n X += 6,000,000\n\nElse;\n\n Return Y', 'created': '2024-11-10 20:29:59', 'submission_id': '1go7rcz'}
{'comment': 'I was just about to say this myself lol. IF, THEN, OR, ELSE, etc statements are kiddy level. Easily found in such code...', 'created': '2024-11-10 20:47:14', 'submission_id': '1go7rcz'}
{'comment': 'His claim about tampering seems fishy. But we can understand how that feels.', 'created': '2024-11-10 20:13:10', 'submission_id': '1go7rcz'}
{'comment': 'They are completely blind to the anomaly, they believe that 15 million people just disappeared in 2024 😂 very narrowsighted...', 'created': '2024-11-10 21:04:04', 'submission_id': '1go7rcz'}
{'comment': 'Emergency procedures for Covid, the subsequent Ballot Harvesting operation, plus way too many visibly hinky practices surrounding the suspicious 3AM ballot drops.', 'created': '2024-11-10 20:52:37', 'submission_id': '1go7rcz'}
{'comment': 'The irony is that the electorate has seen a big view into the Dem agenda, the vote should have sent a message that says, we don’t like it, we don’t trust it, you’re scaring us!! \n\nBut instead they appear to be doubling down. That’s a bold strategy!', 'created': '2024-11-11 01:01:58', 'submission_id': '1go7rcz'}
{'comment': 'Trust me I have 70 years experience', 'created': '2024-11-10 21:32:58', 'submission_id': '1go7rcz'}
{'comment': '"My associates in Women\'s Studies tells me Trump is a rapist."', 'created': '2024-11-10 23:35:10', 'submission_id': '1go7rcz'}
{'comment': "Haha Redditors swear everybody who voted for Trump DOESNT have a college degree it's comical.", 'created': '2024-11-11 02:11:23', 'submission_id': '1go7rcz'}
{'comment': "Plus there's nothing to say that there weren't less Republicans voting, or whether or not we had more democrats voting Republican. We just have a bunch of democrats that are upset they didn't get as many votes this term, blaming Democrats for not voting at all.\n\nThey have no proof we have 10 million less Democrats that voted. What if we had 5 million less Republicans that voted but 10 million extra Democrats that voted Republican?", 'created': '2024-11-10 23:15:21', 'submission_id': '1go7rcz'}
{'comment': 'x1000', 'created': '2024-11-11 01:45:56', 'submission_id': '1go7rcz'}
{'comment': "> Trump got cheated on in 2020\n\nI'm sorry lol I'm a child 🤣", 'created': '2024-11-10 21:31:54', 'submission_id': '1go7rcz'}
{'comment': '[The left is known for their mostly peaceful protests.](https://a57.foxnews.com/static.foxnews.com/foxnews.com/content/uploads/2020/08/931/523/CNN-Headline-Fiery-2.jpg?ve=1&tl=1)', 'created': '2024-11-10 20:49:50', 'submission_id': '1go7rcz'}
{'comment': 'The chart of voting totals that is floating around is the only thing my daughter will take as fact. She thought I lost my mind when I said WELL OBVIOUSLY they cheated. I wasn’t saying it as a partisan. I had worked in politics and knew precinct probabilities and trends. But the fact that someone who claims to have a master’s in poli-sci can’t look back and assume the obvious makes me fear for the future.', 'created': '2024-11-10 22:30:47', 'submission_id': '1go7rcz'}
{'comment': 'I’ve tried to convince a few people I’m an amateur gynecologist but it never seems to work for me 🤷🏻\u200d♂️', 'created': '2024-11-11 00:55:42', 'submission_id': '1go7rcz'}
{'comment': 'My Masters in Art History tells me Trump is a facist because orange man bad!', 'created': '2024-11-11 00:23:40', 'submission_id': '1go7rcz'}
{'comment': 'It’s like they forgot that Hillary is a literal pedophile', 'created': '2024-11-11 01:33:12', 'submission_id': '1go7rcz'}
{'comment': 'I have a college degree and graduated in 3.5 years from my university. I voted for Trump. Let all the 6yr interpretive trans dance studies majors compete with that', 'created': '2024-11-11 03:21:57', 'submission_id': '1go7rcz'}
{'comment': "My Masters degree in political science might make them reconsider. I wonder what they make of my minor in peace and justice studies? Whatever they say doesn't matter. Trump won! Yay!", 'created': '2024-11-11 04:17:06', 'submission_id': '1go7rcz'}
{'comment': '2020 was extremely suspicious and I agree, it makes zero sense that Biden got the most votes in history but at the same time some could argue that being off work due to covid could very well make people vote at a much higher rate. If your working 40-60hours a week then its easy to not have the energy to go out and vote. When looking at historically accurate independent pollers then it really wasn’t that crazy that Biden won aside from the amount of votes he got to get that victory. Im in the middle on this issue but none of it matters because democracy is back', 'created': '2024-11-10 21:44:51', 'submission_id': '1go7rcz'}
{'comment': 'Billions in damages , 25 killed', 'created': '2024-11-11 00:56:34', 'submission_id': '1go7rcz'}
{'comment': 'Orange is a color notoriously used by fascist painters. To adorn one’s body with that color is a blatant signal that individual has fascist, nay, totalitarian nazi sympathies.\n\n/s', 'created': '2024-11-11 03:20:22', 'submission_id': '1go7rcz'}
{'comment': 'My MD in brain surgery tells me that Trump was thinking about cheating this election due to a brain tumors back when he was 5 years old', 'created': '2024-11-11 05:42:08', 'submission_id': '1go7rcz'}
{'comment': 'Oh I know trust me. The other day there was a post that said " Did any academics vote for Trump" typical liberals swear they are geniuses but are so detached from reality it\'s insane.', 'created': '2024-11-11 12:04:05', 'submission_id': '1go7rcz'}
{'comment': '> If your working 40-60hours a week then its easy to not have the energy to go out and vote\n\nThats is a bullshit excuse because its never been easier for people to vote around their busy lives, early voting, mail in voting, day of in-person. There really is no valid excuse anymore. It more likely that numbers were definitely padded in 2020. That year is just way too off compared to 2024 and all previous.', 'created': '2024-11-10 22:29:19', 'submission_id': '1go7rcz'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-10 19:33:06', 'submission_id': '1go7cqq'}
{'comment': 'That would be very smart policy.', 'created': '2024-11-10 19:39:01', 'submission_id': '1go7cqq'}
{'comment': 'Should have been done as soon as they started becoming sanctuary cites, states. You want to set policy you can live without federal money.', 'created': '2024-11-10 19:48:53', 'submission_id': '1go7cqq'}
{'comment': 'Pritzker should stand strong. Illinois could use a Republican governor.', 'created': '2024-11-10 20:10:01', 'submission_id': '1go7cqq'}
{'comment': 'CA is going to fight it. Need to have ICE raids at employers and jails regularly as well', 'created': '2024-11-10 22:13:05', 'submission_id': '1go7cqq'}
{'comment': 'Fantastic! A double loss of money!\n\n1) Funding their zany lawfare.\n\n2) Losing federal funding.', 'created': '2024-11-10 20:05:15', 'submission_id': '1go7cqq'}
{'comment': 'States who refuse to obey the federal government’s authority on border security are committing insurrection.', 'created': '2024-11-10 21:37:15', 'submission_id': '1go7cqq'}
{'comment': 'Duh! Quit taking and do it!', 'created': '2024-11-10 20:23:48', 'submission_id': '1go7cqq'}
{'comment': 'For anyone thinking conservative leaders are for states rights, that’s just a political message to get votes.\n\nI hear dismantle the DoE and covert money to block grants so states can do as they please (to avoid liberal indoctrination in Oklahoma FFS - you can’t get redder than this state), but then this where it’s do as the Fed says or else. The only consistency is exerting power. Send it to the states when the topic is Conservative. Keep it in the Fed when exerting control over non-conservative states.', 'created': '2024-11-10 21:29:33', 'submission_id': '1go7cqq'}
{'comment': 'Good. Some states like NYC need this because we spend $3 million to replace ONE public restroom on average, and it takes months to complete. My local subway station has been under constructions for 2 years and all they’re fixing is the stairs and platform, nothing structural to help it from literally breaking and falling onto pedestrians and an inevitable collapse from very visible rust.\n\nThe states need to be held accountable for corrupt spending to specific contractors who have a chokehold on federal contracts. We’re giving away free money to people who actively are told by their bosses to be lazy so the contracts get extended. Great policy to push.\n\nNot to mention, our leftist overly progressive states and their voting/policies have caused this. Time to face the consequences, I’m all for it even as a taxpayer in NYC as long as in the long run we learn a lesson to not let a voter base who come from financially wealthy backgrounds, students who don’t work or a mix of both, dictate our policies. \n\nBring back NY for working people. 🇺🇸', 'created': '2024-11-11 15:12:20', 'submission_id': '1go7cqq'}
{'comment': 'Good, make sanctuary cities illegal, and cut their funding to put the pressure on them. The federal government retains the right to conduct immigration enforcement options and they can impede the government in certain ways but they legally cannot stop them.', 'created': '2024-11-15 10:55:20', 'submission_id': '1go7cqq'}
{'comment': 'About time.', 'created': '2024-11-11 02:24:20', 'submission_id': '1go7cqq'}
{'comment': "This is where I kind of disagree or at least I'm divided.\xa0\n\n\nLike we let all these illegals into the country so I don't agree with just deporting them. I do feel they deserve a grace period to naturalize.\xa0\n\n\nBut the other half of me thinks they had four years to get their shit together.\xa0\n\n\nI don't even care about dividing families though. If American Parents break the law, they go to jail and are separated from their children. So no I don't think illegals should be treated differently.\xa0\n\n\nIf they came to this country for opportunity, they have had the opportunity to earn a decent income, hire a lawyer and naturalize. I know it's not cheap but it's not cheap for the rest of us either paying for taxes and infrastructure.\n\n\nSo idk, I'm just divided.\xa0", 'created': '2024-11-10 20:34:05', 'submission_id': '1go7cqq'}
{'comment': 'Great—remove their ability to count illegals in Congressional representation and we can talk. And no Federal funds for schools, healthcare facilities etc that illegals use.', 'created': '2024-11-10 22:15:25', 'submission_id': '1go7cqq'}
{'comment': "Like we let all these illegals into the country isn't like saying your house security system was second rate so you sort of invited burglars. Nope, not me.", 'created': '2024-11-10 22:05:45', 'submission_id': '1go7cqq'}
{'comment': 'There is no path to naturalization if you entered the country without inspection as an adult. Good riddance', 'created': '2024-11-11 16:06:26', 'submission_id': '1go7cqq'}
{'comment': "There are plenty of paths toward naturalization as an illegal immigrant, marriage, employment, and various other work visas that allow a legal stay in the country and to contribute to society through taxes and would allow time to start the naturalization process. \n\nSo i just refuse to look at the situation so Black and White. No, Democrats shouldn't have allowed 20 million undocumented here in the first place. Yea, a large majority likely have no intention of ever contributing to society. \n\nBut i'm still fairly certain a good percentage came for a better life and i do stand by them being allowed an extended amount of time to begin the naturalization process and become American. \n\nI'll always believe America is a place for everyone but do they need to do their part and become Citizens.", 'created': '2024-11-11 16:30:36', 'submission_id': '1go7cqq'}
{'comment': 'Tell me you know nothing about immigration without telling me. \n\n\n\nGenerally, someone who entered the U.S. without inspection cannot directly adjust their status to permanent resident within the country due to the “inspected and paroled” requirement, meaning they may need to leave the country and apply for a visa at a consulate. \n\n\n\nEmployment not an option. Are you confusing a DACA work permit as a “pathway to naturalize”, because no, DACA is not eligible for that. \n\n\n\nAsylum if you can prove you need it. So doesn’t work for all countries. \n\n\n\nNot plenty of paths. Wake tf up', 'created': '2024-11-11 17:00:51', 'submission_id': '1go7cqq'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-10 17:59:13', 'submission_id': '1go55rx'}
{'comment': 'Not really my sister Voted Trump and not Lake. Lots of people crossed party lines this year.', 'created': '2024-11-10 18:12:57', 'submission_id': '1go55rx'}
{'comment': 'Lake was just the wrong pick fellas', 'created': '2024-11-10 18:34:53', 'submission_id': '1go55rx'}
{'comment': 'The total votes cast for the Senate race are only 4,625 less than the total votes cast for the Presidential race.', 'created': '2024-11-10 19:03:13', 'submission_id': '1go55rx'}
{'comment': 'I think the people in Arizona just don’t like her, has lost a Governors race and now a Senate race within two years of each other. They wanted Trump but not Lake', 'created': '2024-11-10 18:18:52', 'submission_id': '1go55rx'}
{'comment': 'Because people can shockingly vote for different parties at different levels of the ticket.\n\nAny Libertarian, for example, could have chosen the presidental candidate and then Kari as Senator.\n\nDon’t go looking for zebra when horses trot by', 'created': '2024-11-10 18:04:38', 'submission_id': '1go55rx'}
{'comment': "While I personally hope she wins, Kari Lake is a more divisive figure than Donald Trump in Arizona. A lot of Arizonans think she's an incompetent, loud, obnoxious sore loser that will pull out all the stops to get her way and throw a fit if she doesn't. Still, the senate is in Republican control, so I doubt this will have much impact other than a safety net for any rogue senators, since Lake is a die-hard MAGA Republican. I completely understand why she could lose her race while Trump won the state.", 'created': '2024-11-10 22:12:14', 'submission_id': '1go55rx'}
{'comment': 'Kari Lake is toxic. Yall fucked up by having her run', 'created': '2024-11-10 18:29:55', 'submission_id': '1go55rx'}
{'comment': 'Why isn’t that race over by now???', 'created': '2024-11-10 18:44:01', 'submission_id': '1go55rx'}
{'comment': 'No this tracks. People voted for Trump and Gallego because Kari Lake was the wrong candidate. We should’ve ran someone else. Lake has less votes than Trump.', 'created': '2024-11-11 00:54:19', 'submission_id': '1go55rx'}
{'comment': 'You underestimate how toxic and unpopular she is. The senate seat was lost the day she was nominated.', 'created': '2024-11-11 01:37:23', 'submission_id': '1go55rx'}
{'comment': "Dear Kari, please don't run for anything else ever again", 'created': '2024-11-11 03:42:28', 'submission_id': '1go55rx'}
{'comment': 'Democrats just dont want to see a woman in power I guess', 'created': '2024-11-10 18:29:20', 'submission_id': '1go55rx'}
{'comment': "Happened in NC. Trump won but I know lots of Republicans and I'm one of them that voted for the Democrat nominee for Governor.", 'created': '2024-11-10 18:46:19', 'submission_id': '1go55rx'}
{'comment': 'Lost in a massive red wave. Unelectable. Not much more to say.', 'created': '2024-11-11 02:50:16', 'submission_id': '1go55rx'}
{'comment': 'Not everyone just shows up and votes Ds or Rs straight down the list.', 'created': '2024-11-10 18:22:22', 'submission_id': '1go55rx'}
{'comment': "Most people vote a party ticket with that said Lake should have carried the state. This so close to call and the other candidate passing by a thin margin. Arizona election's always smell like dead fish.", 'created': '2024-11-10 18:20:08', 'submission_id': '1go55rx'}
{'comment': 'It’s mathematically possible because Many people split their ticket. And Trump has more votes than gallego .', 'created': '2024-11-10 19:20:32', 'submission_id': '1go55rx'}
{'comment': 'Because a huge number of voters are not single party voters.', 'created': '2024-11-10 18:18:32', 'submission_id': '1go55rx'}
{'comment': 'Or, just maybe, she’s a terrible candidate that’s already lost in the state, indicating people don’t like her.', 'created': '2024-11-10 18:38:14', 'submission_id': '1go55rx'}
{'comment': 'All the people talking about, "she\'s the wrong one," well guess what. You voted Trump, and she\'s a staunch Trump ally. You just weakened his stance in the senate.', 'created': '2024-11-10 19:04:39', 'submission_id': '1go55rx'}
{'comment': 'A lot of Trump voters didn’t vote for senate because lake is a garbage candidate', 'created': '2024-11-10 18:45:57', 'submission_id': '1go55rx'}
{'comment': 'Very very fishy', 'created': '2024-11-10 18:38:40', 'submission_id': '1go55rx'}
{'comment': 'Picking presidents and governors from different parties is restricted?\nSometimes people vote for party or against party (that’s explains impressive Trump gains) sometimes people just vote for exact individuals regardless of their party affiliation', 'created': '2024-11-10 19:21:25', 'submission_id': '1go55rx'}
{'comment': 'lol…we all know what’s going , where’s our gop leadership? \nFight the steal.', 'created': '2024-11-10 18:37:30', 'submission_id': '1go55rx'}
{'comment': "Maybe people don't like Kari Lake?", 'created': '2024-11-10 18:47:47', 'submission_id': '1go55rx'}
{'comment': 'It’s just so corrupt there', 'created': '2024-11-10 19:21:18', 'submission_id': '1go55rx'}
{'comment': 'Meh. Split tickets happen. I think in this case we simply need to move on since Kari Lake always falls short.', 'created': '2024-11-10 18:28:11', 'submission_id': '1go55rx'}
{'comment': 'That’s really not fishy at all. You’re basically wondering why Gallego got more votes than Harris. The quality polls like Atlas showed this happening. \n\nLots of McCain style Republicans in Arizona. They chose Trump even though they weren’t excited about him, but they were less excited about communism. To fight against him having full control of the government, they voted against Lake.\n\nAlso probably lots of Latino Trump/Gallego voters.\n\nIf we cry fraud every time we lose a close race, we’ll never be believed when there actually is good reason to believe there’s fraud.', 'created': '2024-11-10 19:03:47', 'submission_id': '1go55rx'}
{'comment': 'Because not everything is a crazy conspiracy. Not everyone votes R or D down the line. Crazy, isn’t it?', 'created': '2024-11-10 18:28:31', 'submission_id': '1go55rx'}
{'comment': 'AZ dems hate Kamala but they also hate her. I don’t know why they keep trying to push her in AZ.', 'created': '2024-11-10 18:48:10', 'submission_id': '1go55rx'}
{'comment': 'Recount and take it to Supreme Court!', 'created': '2024-11-10 18:50:11', 'submission_id': '1go55rx'}
{'comment': 'Split ticket is common in purple states', 'created': '2024-11-10 19:15:15', 'submission_id': '1go55rx'}
{'comment': 'Kari Lake is a very decisive candidate. The AZ GOP would have done better to nominate someone else.', 'created': '2024-11-10 20:19:12', 'submission_id': '1go55rx'}
{'comment': 'Not really, Lake is quite unpopular.', 'created': '2024-11-10 20:26:00', 'submission_id': '1go55rx'}
{'comment': 'Not that fishy; out here in North Carolina Trump won, but Robinson got walloped', 'created': '2024-11-10 21:30:28', 'submission_id': '1go55rx'}
{'comment': 'I live in Arizona, most people hate Kari Lake lmao. Republican or not.', 'created': '2024-11-10 23:07:04', 'submission_id': '1go55rx'}
{'comment': 'Election denial is so ingrained into this party’s mindset, any loss at all is due to fraud. She’s just a bad candidate. I hope we can get past this election fraud accusations, just not good for America.', 'created': '2024-11-10 23:37:25', 'submission_id': '1go55rx'}
{'comment': 'People split tickets. Maybe Arizona should nominate someone who isn’t a nut next time.', 'created': '2024-11-10 19:28:41', 'submission_id': '1go55rx'}
{'comment': 'She’s not a likeable candidate. It’s simple. The GOP need to stop running her…', 'created': '2024-11-10 19:36:59', 'submission_id': '1go55rx'}
{'comment': 'Fontes did say he wanted to make her life Hell 🤔', 'created': '2024-11-10 20:17:48', 'submission_id': '1go55rx'}
{'comment': 'Nah, not fishy. Kari Lake was a loser from the get go. She lost the gov race last time around and then nuked the state party by recording the state chair who tried to get her out of the senate race. He knew what she and others refused to recognize - there was no way she was winning this seat. Once she eliminated the state chair by claiming he tried to bribe her or some nonsense, she basically split the party and his supporters did not back her.', 'created': '2024-11-10 22:18:16', 'submission_id': '1go55rx'}
{'comment': 'I believe Kamala was so bad some people avoided voting for her. I know a few neighbors in my community that did that.', 'created': '2024-11-10 22:19:19', 'submission_id': '1go55rx'}
{'comment': 'So you’re saying Kamala is even less popular than Kari lake?\nSounds about right.', 'created': '2024-11-10 22:24:14', 'submission_id': '1go55rx'}
{'comment': 'Her emails are annoying. I’m not even sure why I’m getting them', 'created': '2024-11-10 22:26:09', 'submission_id': '1go55rx'}
{'comment': 'Lake is ‘out there’ enough that no -this is not too off. I could see plenty voting Trump And not her. BUT I bet no dems call misogyny on this race?!', 'created': '2024-11-10 22:28:36', 'submission_id': '1go55rx'}
{'comment': 'If she gets screwed, Trump should put her overseeing the border in his admin.', 'created': '2024-11-10 23:27:35', 'submission_id': '1go55rx'}
{'comment': 'Im not a rep or dem. I vote split tickets all the time. I also refuse to vote on candidates I know nothing about regardless of parties. I research as best I can all people involved and vote the policies. I know many people who do the same.', 'created': '2024-11-11 00:32:48', 'submission_id': '1go55rx'}
{'comment': 'I think abortion cost her this race this time with the young female voters', 'created': '2024-11-11 00:39:00', 'submission_id': '1go55rx'}
{'comment': "Exactly. They think we're stupid.", 'created': '2024-11-11 00:47:58', 'submission_id': '1go55rx'}
{'comment': 'In NC nearly every Democrat won their race but Trump won by over 3 pts.', 'created': '2024-11-11 00:52:49', 'submission_id': '1go55rx'}
{'comment': 'If it has to go to Sat/Sun, of course it’s not legit.', 'created': '2024-11-11 01:06:13', 'submission_id': '1go55rx'}
{'comment': "They don't want her to win, but it's not just Arizona", 'created': '2024-11-11 01:13:33', 'submission_id': '1go55rx'}
{'comment': 'This happens all the time. Not everyone votes for one party. The incumbent normally has an advantage especially in congress because they often have more resources to campaign. And independent voters often vote for the incumbent.\xa0', 'created': '2024-11-11 01:27:55', 'submission_id': '1go55rx'}
{'comment': "Pallets Of Ballots. That's what happens when printers crap out ballots with no identifying marks as to who cast the vote. The whole voting system is crap.", 'created': '2024-11-11 01:48:57', 'submission_id': '1go55rx'}
{'comment': "How is it fishy ?\n\nNot everyone votes for every person the ballot , LOTS of Americans vote split ticket cause they don't want one party controlling everything", 'created': '2024-11-11 02:05:21', 'submission_id': '1go55rx'}
{'comment': 'She is really appealing to the dead vote', 'created': '2024-11-11 02:26:31', 'submission_id': '1go55rx'}
{'comment': 'How bad do you have to be to get outperformed by Kari Lake?', 'created': '2024-11-11 03:54:25', 'submission_id': '1go55rx'}
{'comment': 'Super fishy.', 'created': '2024-11-11 04:40:50', 'submission_id': '1go55rx'}
{'comment': "Huh, people don't like Lake for being too MAGA? Yet people throw the term RINO all over the place if a Republican just doesn't agreed with everything Trump wants. So which is it? Where do you guys stand?", 'created': '2024-11-11 04:44:19', 'submission_id': '1go55rx'}
{'comment': 'this isn’t super uncommon, i voted for the don and voted for the blue senate member in my state, few of my buddies did too', 'created': '2024-11-11 05:59:46', 'submission_id': '1go55rx'}
{'comment': 'Or she just cant sell it', 'created': '2024-11-11 07:38:04', 'submission_id': '1go55rx'}
{'comment': 'A lot of people didn’t vote straight party this time around. Nothing abnormal', 'created': '2024-11-11 09:28:11', 'submission_id': '1go55rx'}
{'comment': "Presidential total votes cast 2965288. Senator race total ballots cast 2897840. A difference of 67948. People no voted her race after voting for Trump. The lesson is we need to run better candidates. Trump's charisma is not transferred well to other candidates down ballot. I wish she had won. Trump received 1575300 lake received 1426471", 'created': '2024-11-11 10:43:19', 'submission_id': '1go55rx'}
{'comment': 'Not everyone votes straight down party lines.', 'created': '2024-11-11 15:20:31', 'submission_id': '1go55rx'}
{'comment': 'Election deniers?', 'created': '2024-11-11 15:25:37', 'submission_id': '1go55rx'}
{'comment': "Something always fishy about that state. Any border state voting democrat don't make a lick of sense.", 'created': '2024-11-11 17:20:00', 'submission_id': '1go55rx'}
{'comment': 'I think a lot of Dems & Indys who crossed the line and voted for Trump figured that they would vote for a Dem Senator or Rep in hopes of controlling at least one House as a ‘guardrail’.', 'created': '2024-11-12 22:42:32', 'submission_id': '1go55rx'}
{'comment': 'saying something fishy is going on here in a state with TWO close races makes republicans look so bad....\n\nI voted Trump and did not vote for Cruz in the Texas senate race because Cruz sucks.', 'created': '2024-11-10 18:29:05', 'submission_id': '1go55rx'}
{'comment': 'Preface: I’m a big Trump guy. \n\nKari Lake sucks. Sorry.', 'created': '2024-11-10 19:49:29', 'submission_id': '1go55rx'}
{'comment': 'This actually makes sense, in this election there were a lot of democrats that didn’t vote for Harris. In other states as well you will find democratic senators but Trump won the state.', 'created': '2024-11-10 18:52:21', 'submission_id': '1go55rx'}
{'comment': 'People not voting strictly Dem or Republican up and down the ballot this year…maybe that guy Gallego has done some good things the voters liked in Arizona', 'created': '2024-11-10 19:17:50', 'submission_id': '1go55rx'}
{'comment': 'Oh for crying out loud! Stop it with the rigging stuff. \n\nTrump lost in 2020\nHarris lost in 2024\nLake lost in 2020 and 2024\n\nThat’s it, that’s all. You can’t accept the result only when you win!', 'created': '2024-11-10 18:49:57', 'submission_id': '1go55rx'}
{'comment': '3rd party got a lot of votes in that race', 'created': '2024-11-10 18:29:08', 'submission_id': '1go55rx'}
{'comment': 'A lot of the swing states are like this, A lot of people voted for trump but democrat in other races. It just goes to show how unpopular kamala was the biden administration were.', 'created': '2024-11-10 18:38:46', 'submission_id': '1go55rx'}
{'comment': "I've heard a lot of people say she just wasn't the right pick so that might be it\n\nAlso with how one sided the polls looked I'm surprised on how well she's doing", 'created': '2024-11-10 18:47:15', 'submission_id': '1go55rx'}
{'comment': 'Yea, look at states like new Hampshire and Vermont, they do that every year', 'created': '2024-11-10 19:15:16', 'submission_id': '1go55rx'}
{'comment': "Honestly it sucks but it's not unusual at these margins. There are a lot of people who come to the polls to vote for one race. It's really a destructive habit in my book cause we lose great down ballot candidates in the GOP like this.", 'created': '2024-11-10 19:47:29', 'submission_id': '1go55rx'}
{'comment': 'When I lived in AZ Kari wasn’t well liked, she’s alright but people just don’t like her as much. She ran for governor when I was there. It wasn’t too shocking she lost. People dont always vote straight one party.', 'created': '2024-11-10 20:57:14', 'submission_id': '1go55rx'}
{'comment': 'We could have had Sheriff Lamb as the nominee and he probably would have won.', 'created': '2024-11-10 20:58:08', 'submission_id': '1go55rx'}
{'comment': 'I ask this as a hardcore conservative who is stuck in New England(🤮 lol)…but is it possible that Lake is just not a likable MAGA candidate? Genuinely asking folks from the South West/curious and knowing nothing but the occasional appearance on Fox.', 'created': '2024-11-10 21:00:33', 'submission_id': '1go55rx'}
{'comment': 'Are you surprised? Kamala is one if not the least popular Democrat to ever make it this far into politics. Our voting system is obviously flawed and there’s always gonna be some level of cheating on either side however this one is going a little far in my opinion', 'created': '2024-11-10 21:35:29', 'submission_id': '1go55rx'}
{'comment': 'I voted trump but voted for a dem in my state for Senate. \n\nHonestly the republican candidate i didnt really like this time around. \n\nOnly if we had crenshaw in my state...', 'created': '2024-11-10 21:43:56', 'submission_id': '1go55rx'}
{'comment': 'I have friends who voted for Trump but voted democrat for local.', 'created': '2024-11-10 21:45:49', 'submission_id': '1go55rx'}
{'comment': 'I think the country did a great job of voting for policy and not their favorite team this time. It’s not shocking that Trump won nationally while states are still voting blue represents at a more local level.', 'created': '2024-11-10 22:01:10', 'submission_id': '1go55rx'}
{'comment': 'this is why they call us stupid. Not everyone is a party-line voter.', 'created': '2024-11-10 23:11:29', 'submission_id': '1go55rx'}
{'comment': "You have to remember local elections are different than federal. Kari has made herself unlikable to AZ. She's like a Hillary, not her corruption just her likeability in her area. Get her the fuck out. She needs to sit on the fucking sidelines.", 'created': '2024-11-10 20:21:13', 'submission_id': '1go55rx'}
{'comment': 'Voted for trump, did not vote for lake. I do not agree with her on many topics. Despite her party affiliation.', 'created': '2024-11-10 21:08:10', 'submission_id': '1go55rx'}
{'comment': 'Math and brain hurty.', 'created': '2024-11-10 18:09:38', 'submission_id': '1go55rx'}
{'comment': 'Not everyone is just a “vote blue no matter who” bot.', 'created': '2024-11-10 18:31:06', 'submission_id': '1go55rx'}
{'comment': 'That looks fishy! Plus why does it take so damn long? Cheating is going on folks!', 'created': '2024-11-10 18:25:06', 'submission_id': '1go55rx'}
{'comment': 'Is there law that states automatic recount within the margin of error?', 'created': '2024-11-10 18:21:38', 'submission_id': '1go55rx'}
{'comment': 'If you add the totals up they are very close. If Gallego , had 200k more than Trump I’d be suspicious', 'created': '2024-11-10 18:37:14', 'submission_id': '1go55rx'}
{'comment': 'I voted Trump and Gallego, lots of people did. Kari Lake and her dike ass haircut can gtfo', 'created': '2024-11-10 19:25:23', 'submission_id': '1go55rx'}
{'comment': 'Fools all of them. Eduardo Quintana was the only sane choice, amirite?', 'created': '2024-11-10 18:19:35', 'submission_id': '1go55rx'}
{'comment': 'Yep, I think it’s likely this is what happened/is happening. People who want to flush the Biden administration and prevent more of the same with Kamala while at the same time keeping a more local and immediate government how they want it. Trump can affect foreign and economic policy much more whereas Gallego may present a more socially immediate political presence. \n\nNot saying I would choose that, but for how widely Kamala is disliked I can see this being a compromise for people on the fence. They may have a narrow view which isn’t in alignment with their broader view. I think that’s the nice thing about a federal republic, you can hold complex viewpoints which at a macro level seem paradoxical but at a granular level have a nuanced blurring of lines.', 'created': '2024-11-10 18:29:53', 'submission_id': '1go55rx'}
{'comment': "Lake is a flawed candidate but I don't understand voting for Trump \\*and\\* Gallego. They are polar opposites. \n\nAlthough I know you didn't say she voted for Gallego. Maybe just didn't vote for either.", 'created': '2024-11-10 18:58:58', 'submission_id': '1go55rx'}
{'comment': 'She’s a bad candidate. Not sure why the GOP keeps running her. \n\nLosing election after election that’s winnable.', 'created': '2024-11-10 18:56:38', 'submission_id': '1go55rx'}
{'comment': 'This is me most elections. I never stay on one side of the aisle. I like ✨balance✨\n\nETA: researched balance. I’m not playing “eeny meeny miny mo”', 'created': '2024-11-10 18:18:07', 'submission_id': '1go55rx'}
{'comment': 'I don’t follow it closely but for some reason people in Arizona really don’t like Kari Lake. Time to find a new candidate, shouldn’t be losing that race in Arizona.', 'created': '2024-11-10 19:27:55', 'submission_id': '1go55rx'}
{'comment': 'The liberals are claiming this is a sign of fraud lol', 'created': '2024-11-10 19:51:21', 'submission_id': '1go55rx'}
{'comment': 'Yup. My husband too.', 'created': '2024-11-11 05:21:47', 'submission_id': '1go55rx'}
{'comment': 'Has your sister always had brain damage or was it a recent development?\xa0', 'created': '2024-11-10 20:04:00', 'submission_id': '1go55rx'}
{'comment': 'My spouse did the same but in Michigan. Voted Trump and Slotkin (D).', 'created': '2024-11-10 19:50:59', 'submission_id': '1go55rx'}
{'comment': 'Pinal County Sheriff Mark Lamb would’ve been a much better pick imo, he is staunchly conservative but I don’t think he’s perceived as much of an “extremist” the way Kari Lake has been painted as. I don’t live in Arizona so I don’t know but I visited over the summer and I got the impression that a lot of people think she is too far to the right and almost too loyal to Trump. Again I don’t know too much about Arizona politics but that’s the impression I got so correct me if I’m wrong.', 'created': '2024-11-10 21:39:11', 'submission_id': '1go55rx'}
{'comment': 'Unfortunately yes.', 'created': '2024-11-10 18:49:08', 'submission_id': '1go55rx'}
{'comment': "We'd all believe you if the vote count finished the same night (like Florida who has millions more votes to count) and if the number of ballots didn't mysteriously change upward after election day as the count drags on day after day after day. And not to mention the same irregularities happening in years before. \n\nAs it stands, everybody thinks Maricopa County is a bunch of cheaters!!", 'created': '2024-11-10 19:05:12', 'submission_id': '1go55rx'}
{'comment': '100%. She was God awful, not as bad as Herschel Walker, but close.', 'created': '2024-11-11 05:08:29', 'submission_id': '1go55rx'}
{'comment': 'Why was she? Was tehre anybody else in the primary? Doug Ducey?', 'created': '2024-11-10 19:39:21', 'submission_id': '1go55rx'}
{'comment': 'And so was Martha McSally (2018), Martha McSally (2020) and Blake Masters (2022)... /s', 'created': '2024-11-10 22:09:35', 'submission_id': '1go55rx'}
{'comment': 'The Beto of Arizona', 'created': '2024-11-10 19:11:25', 'submission_id': '1go55rx'}
{'comment': "Nah, life is easier if it's black and white.", 'created': '2024-11-10 18:27:24', 'submission_id': '1go55rx'}
{'comment': 'Could be. Not from there so don’t really know her politics other than having an R by her name. But so does Liz Cheney and she ain’t really popular with Republicans.', 'created': '2024-11-10 18:40:52', 'submission_id': '1go55rx'}
{'comment': 'Not from AZ but this was my thinking. She lost to Katie Hobbs in a favorable year for the GOP. Horrible candidate.', 'created': '2024-11-11 05:19:01', 'submission_id': '1go55rx'}
{'comment': 'She probably will lol, like Blake Masters did. Thank the Lawd he got his ass handed to him in the primary or we might’ve lost another seat.', 'created': '2024-11-11 05:19:57', 'submission_id': '1go55rx'}
{'comment': "Blame it on misogyny and racism, like the democrats blamed for Kamala's loss.", 'created': '2024-11-10 19:06:41', 'submission_id': '1go55rx'}
{'comment': 'Happens all the time, there’s plenty of Republican governors in the NE that perennially votes blue in national elections', 'created': '2024-11-10 19:29:21', 'submission_id': '1go55rx'}
{'comment': 'And then there’s the reverse. Vermont votes for Harris and Bernie, but then they re-elect their Republican governor?', 'created': '2024-11-11 14:25:15', 'submission_id': '1go55rx'}
{'comment': 'True. But who is actually voting Trump and then Beta Boy Gallego?', 'created': '2024-11-10 18:30:21', 'submission_id': '1go55rx'}
{'comment': 'Ding ding ding! Exactly!', 'created': '2024-11-11 05:12:26', 'submission_id': '1go55rx'}
{'comment': '> McCain style Republicans\n\naka neocons', 'created': '2024-11-10 21:41:40', 'submission_id': '1go55rx'}
{'comment': 'Same here in Texas with Ted Cruz. \nBut he still beat Allred.... Something is fishy in Arizona.', 'created': '2024-11-11 14:42:09', 'submission_id': '1go55rx'}
{'comment': "People don't understand, there are RHINOS who lean left, Conservatives (the majority of Republicans) and MAGA (Trump no matter what).", 'created': '2024-11-11 14:21:37', 'submission_id': '1go55rx'}
{'comment': 'If Katie Hobbs was a legitimate Governor we may not have this issue. But she was in charge of her own election results.', 'created': '2024-11-10 18:57:30', 'submission_id': '1go55rx'}
{'comment': '20 million missing votes and bro thinks they just didn’t vote', 'created': '2024-11-10 20:56:43', 'submission_id': '1go55rx'}
{'comment': 'Democrats denied the election results in 2016.\nDemocrats are denying 2024.\n\nThis is a sub for Republicans, lib.', 'created': '2024-11-10 18:55:08', 'submission_id': '1go55rx'}
{'comment': 'Did you know, Katie Hobbs, who she ran against for Governor, was the Secretary of State at the time in charge of the election?', 'created': '2024-11-10 21:24:04', 'submission_id': '1go55rx'}
{'comment': 'We lost?! Well, that can only mean one thing! They cheated! Let’s go wave Confederate flags and take shits in the statehouse and threaten people’s lives!', 'created': '2024-11-10 18:45:54', 'submission_id': '1go55rx'}
{'comment': 'I believe it’s usually .5%. But it wouldn’t matter, recounts only result in net a couple hundred votes in one direction', 'created': '2024-11-10 18:36:04', 'submission_id': '1go55rx'}
{'comment': 'No idea', 'created': '2024-11-10 18:30:43', 'submission_id': '1go55rx'}
{'comment': 'I’m going to say something that might make me unpopular here, but the Republican Party needs to divorce itself from the abortion debate the same way they did from gay marriage. \n\nI personally feel like 98% women who get abortions are irresponsible, promiscuous and downright selfish, but I respect their right to be that way. Killing your offspring because it’s inconvenient to you is disgusting but I’m not god, so it’s not my place to dictate what you can do.\n\nKari Lake went in HARD on limits on abortion, and I could see how CNN could easily spin it to look like Lake was going to outright ban abortion.', 'created': '2024-11-10 19:00:50', 'submission_id': '1go55rx'}
{'comment': 'I think that could have been the case had we flipped VA. They seem to love Kaine around here (even though I don’t).', 'created': '2024-11-10 20:05:17', 'submission_id': '1go55rx'}
{'comment': 'Truth', 'created': '2024-11-10 19:00:06', 'submission_id': '1go55rx'}
{'comment': 'I’m in AZ and I liked Lamb. He just didn’t seem like Washington material to me though. The cowboy hat. Kinda mellow. I just couldn’t see him having a chance in this election, so I voted Lake in the primary. I agree though. Lake was perceived as too extreme. And maybe she is.', 'created': '2024-11-11 05:34:13', 'submission_id': '1go55rx'}
{'comment': 'And what makes Arizona’s ballot counting even more suspicious is when their voting machines were breaking down in, I believe it was, Maricopa County in 2022 leaving people standing in long lines. The Secretary Of State had two years to address these issues but apparently didn’t do a damn thing.', 'created': '2024-11-10 19:24:37', 'submission_id': '1go55rx'}
{'comment': 'Blake Masters was just atrocious. Has the charisma of a rotting fish.', 'created': '2024-11-11 05:09:25', 'submission_id': '1go55rx'}
{'comment': 'Yep, that’s what she was.', 'created': '2024-11-11 05:09:54', 'submission_id': '1go55rx'}
{'comment': 'Exactly, I have no idea who she is but people don’t like her. Got no clue why', 'created': '2024-11-10 20:26:42', 'submission_id': '1go55rx'}
{'comment': 'Yup, I feel like its the only way for dems to realize how stupid and ridiculous it is', 'created': '2024-11-10 19:14:24', 'submission_id': '1go55rx'}
{'comment': '“Cultural resentment” 🤣🤡', 'created': '2024-11-11 08:17:15', 'submission_id': '1go55rx'}
{'comment': 'We had Larry Hogan in Maryland which is horrifically blue.', 'created': '2024-11-10 22:06:00', 'submission_id': '1go55rx'}
{'comment': 'I think you underestimate how much alot of folks hated Kamala', 'created': '2024-11-10 18:31:23', 'submission_id': '1go55rx'}
{'comment': 'I can see it from both sides. I like Lake’s policies, but her presentation needed work. I saw a video of a CNN interview where Lake looked REALLY bad by dodging questions, the worst part was that I saw it on Kari Lake’s YouTube channel; so someone from her own campaign thought it would be smart to upload it.\n\nI still voted for her because Ruben is an idiot, but I can see why Lake would have rubbed people the wrong way. My wife who is very MAGA, even has an American flag tattoo, didn’t like Kari Lake.', 'created': '2024-11-10 18:48:15', 'submission_id': '1go55rx'}
{'comment': 'Missing? Cause every election has the exact same amount of vote! Hey, ok!', 'created': '2024-11-10 22:12:38', 'submission_id': '1go55rx'}
{'comment': 'I understand where you\'re coming from, but \'Pro-Lifers\' view it differently, the mother forced the life into existence, therefore they are beholden to them until they can give up rights to someone else. \n\nThere would be more of a "compromise" if pro choicers at least acknowledged the Embryon/ fetus is a living human. \n\nSame reason game ending a pregnant woman = double homicide under law.\n\nI\'m so tired of the fatalist and antinatalist arguments.', 'created': '2024-11-10 19:08:41', 'submission_id': '1go55rx'}
{'comment': "If I killed my mom because she's inconvenient to me would you hold the same stance? It's not up to you or anyone to dictate that murder is wrong? I understand God dictates that, but that doesn't mean we should just sit by and let people murder babies.\xa0", 'created': '2024-11-10 19:30:12', 'submission_id': '1go55rx'}
{'comment': 'It’s one thing when someone is getting around 4-6 abortions, and/or frequently letting this happen. At that point we need to start offering the woman resources- “what can we do to make sure this isn’t happening for you anymore?”\n\nIt’s far different when it’s life or death. Women with infertility issues often have higher rates of ectopic pregnancy (embryo not viable and mom can be killed). It’s one thing when you’re irresponsibly getting pregnant and choosing not to change your lifestyle to either prevent it or take care of the child. But when it comes to those who DO want children, but their own bodies, unknowingly to them, are basically attacking against it and the woman’s life is in danger- and abortion is necessary- that’s far different and acceptable.', 'created': '2024-11-10 19:52:25', 'submission_id': '1go55rx'}
{'comment': 'Bingo. The right needs to let the abortion debate go. My husband and I are both pro-choice republicans in Arizona. I voted for Lake because I wanted a republican senate. Husband hates her and voted 3rd party. He used to be a democrat, so getting the Trump vote out of him the past two elections was a big deal.', 'created': '2024-11-11 05:26:44', 'submission_id': '1go55rx'}
{'comment': "Nope. Doesn't matter if it isn't popular. The Republican party started pretty unpopular for telling people they shouldn't own people so why change now?", 'created': '2024-11-11 04:19:06', 'submission_id': '1go55rx'}
{'comment': 'Do you believe in God?', 'created': '2024-11-10 19:10:52', 'submission_id': '1go55rx'}
{'comment': 'Yeah I can definitely see what you mean, Lamb’s outward personality doesn’t exactly match the Washington politician (in an ideal world it’s what we need but sometimes those people don’t get as far as we hope). I only knew of him because he does some videos and traffic stops on social media with another officer with the Pinal County Sheriffs department (Deputy Frank Sloup) and I stumbled across his videos well before I saw that he was running for senate. He seems like he’s got a genuinely good personality but I agree that it isn’t exactly Washington material.\n\nAs for Kari Lake, I think her personality and more straightforward attitude is more fitting for Washington, but like I said, some see her as too extreme, however I can’t comment as I’m not from Arizona and don’t exactly know about her policies and what could be seen as extreme other than her seemingly high loyalty to Trump.', 'created': '2024-11-11 09:24:58', 'submission_id': '1go55rx'}
{'comment': 'She is very idealistic and openly hates 90% of the party', 'created': '2024-11-11 06:07:27', 'submission_id': '1go55rx'}
{'comment': 'Or love abortion.', 'created': '2024-11-10 23:35:57', 'submission_id': '1go55rx'}
{'comment': 'Wow, that’s actually a really good argument I’ve never heard before (the murder of a pregnant woman being a double homicide).', 'created': '2024-11-10 21:58:19', 'submission_id': '1go55rx'}
{'comment': "What is true is that in cases of rape and life to the mother there is broad public support for abortion, but in other cases there is not. So state governments like Texas, Florida and so on have attempted to make that the exemption. \n\nBut in practice they have run into issues, which are going to mount and cause public anger unless resolved. \n\nThose issues are:\n1) Sepsis and infections that effectively make the fetus non viable, make women infertile, and result in severe cases in death if left untreated.\n2) Slow speed of government bureaucracy vs medical need for near instant answers. A pregnancy can become a threat to the life of a mother in literally minutes, so an hour wait for a decision could mean infertility or death for the mother. \n3) The medical insurance and health industry putting profit over the life of the mother and the child, and literally not bothering to put in the effort to save either. \n\nI think the problem of the debate, whether you are pro life or pro choice is that laws on abortion are a wishlist, and they don't fix the real ethical and more issues that actually require persuasion of everyone involved and medical advances to increase the chances of survival for the mother and child.\n\nLike in a perfect world, you wouldn't need any laws on abortion. In that world if someone became pregnant, and couldn't take care of the baby, then society would take it on and there frankly wouldn't need to be abortions.\n\nBut right now, despite all the medical advances, we have no means to transfer a fetus to an artificial womb, and unfortunately we are unable to save the mother without an abortion. \n\nThe extreme side of the debate, seems to argue the fatalist moral position that it is god's will if the mother or fetus dies, or that we should have no restriction on abortion whatsoever. While some may believe these things, most Americans take abortion as something terrible, but necessary to protect the life of the mother if medical issues happen.", 'created': '2024-11-10 19:52:50', 'submission_id': '1go55rx'}
{'comment': 'Exactly', 'created': '2024-11-12 23:41:45', 'submission_id': '1go55rx'}
{'comment': "I agree with you that medical is important and I actually do give that exception.\n\nA problem with your assessment is that only 1-4% of abortions are medical. 0.3 - 0.8% of abortions are from rape/child/incest.\n\nIf 98% - 95% of abortions aren't medical/rape, to give it willy nilly seems extremely irresponsible. (I can find my article links, but if you wish to look it up Lozier Institute and Guttmachaer Institute.)\n\nAlso we should address risks that come from abortion: \n- Pelvic Inflammation\n- Blood Clots\n- Infection of the Uterus\n- Cut/ Torn Cervix\n- Perforation of the Uterus lining\n- rH Globulin forming creating antibodies preventing pregnancy again", 'created': '2024-11-10 20:04:13', 'submission_id': '1go55rx'}
{'comment': "Yep, the pro-choice people keep arguing the medical/rape/incest aspect as if that's what's at stake but fact is those instances are extremely minute and nearly all abortions are nothing but birth control done for personal convenience.", 'created': '2024-11-10 23:20:25', 'submission_id': '1go55rx'}
{'comment': 'You seem to be omitting the health risks of pregnancy and birth. Simply looking at the death rates of pregnancy vs. legal abortions women are 14 times more likely to die from the former. https://www.reuters.com/article/business/healthcare-pharmaceuticals/abortion-safer-than-giving-birth-study-idUSTRE80M2BT/#:~:text=Researchers%20found%20that%20women%20were,abortions%20are%20high%2Drisk%20procedures. That same article notes the lower risk of complications for abortion as compared to pregnancy. However, if you want those stats you can go https://www.ncbi.nlm.nih.gov/books/NBK507237/ showing the complications for an abortion are far less, similar, or non existent as compared to pregnancy. In addition, while guttmacher can be considered more non partisan, lazier leans right with 3 of their studies needing to be retracted by the publishing journal due to manipulation of the data for their results. https://www.guttmacher.org/node/300476/printable/print', 'created': '2024-11-10 23:45:23', 'submission_id': '1go55rx'}
{'comment': "By your own argument I can say the complications for pregnancy are so low it doesn't matter to begin with. Only 8% of births per year have medical problems that need medical treatment. It would be safer to keep both humans alive.\n\nhttps://www.cdc.gov/nchs/data/hestat/maternal-mortality/2021/maternal-mortality-rates-2021.htm#:\\~:text=This%20report%20updates%20a%20previous,age%20groups%20were%20statistically%20significant.\n\nSure you can dislike the stats, but PCUC and Pew Research also say the exact same thing.\n\n[https://www.pewresearch.org/short-reads/2024/03/25/what-the-data-says-about-abortion-in-the-us/](https://www.pewresearch.org/short-reads/2024/03/25/what-the-data-says-about-abortion-in-the-us/)\n\n[https://www.pcuc.org/resources/statistics-on-abortion/](https://www.pcuc.org/resources/statistics-on-abortion/)", 'created': '2024-11-11 02:52:02', 'submission_id': '1go55rx'}
{'comment': 'What? I wasn’t making any argument. I was simply stating that you shouldn’t list the complications for abortion without mentioning the potential long-term complications for pregnancy and/ or live births. With 1/3 women experiencing those complications https://www.thelancet.com/journals/langlo/article/PIIS2214-109X(23)00454-0/fulltext as compared to 2% of ALL abortion issues (including miscarriages-medical necessity deemed abortions or other). https://www.ncbi.nlm.nih.gov/books/NBK430793/ . Some complications from birth also exist as complications from pregnancy. But if you want an argument, I can also point out that your original statistic of 95-98% abortions not being medical is wrong (but that is based on the definition that cited concerns for health of either themselves or the child) at 7%. The majority of women cite their reasoning as being that they have financial constraints or other life focuses- caring for other dependents, finishing schooling so they can provide better for any child, factors that lead them to believe they will be a single mother. For me personally, those are not inconsequential reasons that show the callousness of women, but a responsibility to all current and future lives they are connected to. https://www.guttmacher.org/journals/psrh/2005/reasons-us-women-have-abortions-quantitative-and-qualitative-perspectives . It is all a matter of perspective and situational awareness. The statistics are the same (unless it is manipulated) it is how you view the circumstances through your own eyes that changes your own conclusion.', 'created': '2024-11-11 04:58:30', 'submission_id': '1go55rx'}
{'comment': "I'm poor = Kill my kid, is very inconsequential. I simply disagree.", 'created': '2024-11-11 05:28:37', 'submission_id': '1go55rx'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-10 14:29:26', 'submission_id': '1go0opy'}
{'comment': 'Pompeo not being considered for a cabinet role is amazing news. Hopefully a sign of things to come.', 'created': '2024-11-10 18:31:29', 'submission_id': '1go0opy'}
{'comment': 'This time they aren’t hiding their own hate, racism and real intentions.', 'created': '2024-11-10 15:09:27', 'submission_id': '1go0opy'}
{'comment': 'Personally, I’m glad there will be turnover. DJT wants real change, and he sees the same shit but in a different smell.\n\nPerpetual politicians that have literally been there for generations but haven’t effected any real change for their constituents, correctly, should be the first to go.', 'created': '2024-11-10 15:27:42', 'submission_id': '1go0opy'}
{'comment': "It seems that all these posts are made by bots that can't seem to get the title right. Always a rogue word in the title or improper grammar. I'm thinking most posts on reddit are posted by bots.", 'created': '2024-11-11 03:12:25', 'submission_id': '1go0opy'}
{'comment': "What we all already know.\n\nA wiser President Trump knows this too and won't get fooled again.", 'created': '2024-11-10 15:52:36', 'submission_id': '1go0opy'}
{'comment': 'Still? You mean *even more now*.', 'created': '2024-11-10 15:05:22', 'submission_id': '1go0opy'}
{'comment': 'He doesn’t care, he plans on draining the swamp and getting people who want to advance the country. Let’s get the people who are stalling/filibuster the country out and let’s move forward.', 'created': '2024-11-10 15:20:36', 'submission_id': '1go0opy'}
{'comment': 'Couldn’t the President abolish the position of Majority Leader since it’s not a Constitutionally created position?\n\nSince the VP is the President of the Senate, make that his full time role.\n\nI went trades after HS, so if my information is incorrect, please correct me, it’s the only way we learn.', 'created': '2024-11-10 15:45:04', 'submission_id': '1go0opy'}
{'comment': 'Since when is John Coryn a liberal?', 'created': '2024-11-10 17:33:56', 'submission_id': '1go0opy'}
{'comment': "This time around he has a bigger pool of talent to pull from - now that he's been integral in countless (successful) house and senate campaigns", 'created': '2024-11-10 21:49:30', 'submission_id': '1go0opy'}
{'comment': 'I never thought they stopped. Imagine they still hate us too. Probably even more so now', 'created': '2024-11-10 15:48:47', 'submission_id': '1go0opy'}
{'comment': 'Ya *think*?!', 'created': '2024-11-10 18:52:11', 'submission_id': '1go0opy'}
{'comment': "Well, that's sure groundbreaking news. He ought to keep up with things a little better.", 'created': '2024-11-11 02:51:28', 'submission_id': '1go0opy'}
{'comment': 'Tucker needs to talk more about his night terrors and how nuclear fusion came from aliens', 'created': '2024-11-10 15:06:29', 'submission_id': '1go0opy'}
{'comment': 'Anyone else think Tucker is intelligence?', 'created': '2024-11-10 22:40:11', 'submission_id': '1go0opy'}
{'comment': 'Dan Crenshaw was trying to say there was no republican elite/swamp to that guy Cynk when they were on piers Morgan show… anyways Vinny from PBD podcast was also on the panel and that Crenshaw guy says “hey Vinny tell Cynk there is no republican elite” and Vinny says hell yeah there is and Trump needs to stay away from them lol Dan Crenshaws face after that was so fkn funny', 'created': '2024-11-10 23:16:14', 'submission_id': '1go0opy'}
{'comment': 'Of course, DJT has only 4 years. Not enough time to change an institutionalized beast. If he had time like Putin has maybe…', 'created': '2024-11-10 17:35:40', 'submission_id': '1go0opy'}
{'comment': 'most definitely. Recent hate on minority men for not voting no Harris is a clear sign of their underlying racism. \n\nIt’s all good if we vote blue but as soon as we vote red all of a sudden we’re traitorous animals who don’t deserve rights in the eyes of leftists.', 'created': '2024-11-11 02:01:36', 'submission_id': '1go0opy'}
{'comment': "That's because they know they are fucked this time around. They are out of cards to play and they know it.", 'created': '2024-11-10 17:08:00', 'submission_id': '1go0opy'}
{'comment': "That's correct and I believe what voters voted for. Tired of promises (lies) politicians have no intention to keep. It's like they say they want to, but don't because they won't have something to run on next time, so it doesn't get fixed. I believe trump administration will fix alot, but resistance is still strong. They (Dems) need to put opposition aside and do what's right for the people!", 'created': '2024-11-10 18:25:30', 'submission_id': '1go0opy'}
{'comment': 'Nah, I just messed it up', 'created': '2024-11-11 05:33:39', 'submission_id': '1go0opy'}
{'comment': 'The President is the head of the Executive Branch. He has no say over the Legislature. And even though the VP is the chair of the Senate, abolishing rules or eliminating positions is not in the sole control of the VP. Besides, it may not be a good long term idea. Just like packing the court or ending the filibuster, it could come back to haunt when another party is in control.', 'created': '2024-11-10 17:42:10', 'submission_id': '1go0opy'}
{'comment': "Now that's an idea. I doubt anyone would follow it though. It'd just become an unofficial position.", 'created': '2024-11-10 17:09:08', 'submission_id': '1go0opy'}
{'comment': 'And that the recent hurricanes are God punishing us for abortion.', 'created': '2024-11-10 16:48:22', 'submission_id': '1go0opy'}
{'comment': 'He needs this 4 years to maybe get one of his sons out there for a potential candidate or Tulsi', 'created': '2024-11-10 23:18:41', 'submission_id': '1go0opy'}
{'comment': 'Sounds like something a bot would say LOL!', 'created': '2024-11-11 14:02:00', 'submission_id': '1go0opy'}
{'comment': 'Understood. Thank you for the explanation. It’s appreciated.', 'created': '2024-11-10 18:23:07', 'submission_id': '1go0opy'}
{'comment': 'I could see a bunch of small variables actually being behind the increase in hurricane activity. IE La Niña, NAWMC and the weather warfare that the US used prior to 1977 where the Geneva Convention banned it. I don’t think man can control the weather but I do think modern technology (which there is a market for) can amplify preexisting weather patterns.', 'created': '2024-11-10 18:38:22', 'submission_id': '1go0opy'}
{'comment': "And of course I was kidding on the Putin comment, but it will take that long to change things. Funny how Puts and Medvedev have this little dance they have where they swap the presidency and Premiership every election, and voila, before you know it they've been in power for decades.", 'created': '2024-11-10 23:31:13', 'submission_id': '1go0opy'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-10 14:14:23', 'submission_id': '1go0eew'}
{'comment': 'ALL 7 YALL!!\n\nWe absolutely *crushed* this election!', 'created': '2024-11-10 14:25:22', 'submission_id': '1go0eew'}
{'comment': '"We’re going to win so much, you’re going to be so sick and tired of winning."', 'created': '2024-11-10 14:46:48', 'submission_id': '1go0eew'}
{'comment': 'Trump has rejuvenated the GOP.', 'created': '2024-11-10 14:50:43', 'submission_id': '1go0eew'}
{'comment': 'The polls leading into the election were all fake and misleading with hopes that Kamala would get more support. Are we really surprised?', 'created': '2024-11-10 16:21:33', 'submission_id': '1go0eew'}
{'comment': 'First time republican voter who changed parties after being a long term democrat. \n\nLet’s fucking go. Make America Great Again! I need to get a hat now.', 'created': '2024-11-10 18:46:16', 'submission_id': '1go0eew'}
{'comment': None, 'created': '2024-11-10 14:42:09', 'submission_id': '1go0eew'}
{'comment': "That's wonderful", 'created': '2024-11-10 17:01:58', 'submission_id': '1go0eew'}
{'comment': 'We all see through the Democrat and leftist bullshit.', 'created': '2024-11-11 08:33:20', 'submission_id': '1go0eew'}
{'comment': "Now we just need to make sure McConnel and the Senate don't pick a total RINO by secret ballot like they're attempting on Wednesday to undermine a brand new, cleaned out Trump Admin.\n\nRick Scott or bust.", 'created': '2024-11-10 23:27:40', 'submission_id': '1go0eew'}
{'comment': 'Do you think the projection of desperation for votes the last couple days helped?', 'created': '2024-11-10 16:09:32', 'submission_id': '1go0eew'}
{'comment': 'Yes, so much for the notion that Kamala would win a very close race.', 'created': '2024-11-10 14:38:56', 'submission_id': '1go0eew'}
{'comment': 'The number of votes trump got in this election is slightly up from 2020 (A little over 300k votes), while Kamala is down a little over 10.3 million from Biden’s 2020 total.', 'created': '2024-11-10 15:47:51', 'submission_id': '1go0eew'}
{'comment': "That statement has become so iconic. I'm glad Trump said it.", 'created': '2024-11-10 14:56:02', 'submission_id': '1go0eew'}
{'comment': '"Mr president, please! It\'s too much!"', 'created': '2024-11-10 15:51:07', 'submission_id': '1go0eew'}
{'comment': '3 elections now', 'created': '2024-11-10 16:29:18', 'submission_id': '1go0eew'}
{'comment': "Add that to the evil orange man's list of fibs - not tired yet.\n\nNah, use the FBI and DOJ to hammer the Left leadership so bad they all have flashbacks of Gallagher and Watermelons.", 'created': '2024-11-10 21:46:50', 'submission_id': '1go0eew'}
{'comment': 'It certainly was a very red election map, no matter if you looked at the House, Senate, or Governor races.', 'created': '2024-11-10 14:59:13', 'submission_id': '1go0eew'}
{'comment': 'Now the real work will begin, praying that the GOP doesn’t fuck this golden opportunity up like the Dems did after 2020', 'created': '2024-11-10 17:52:21', 'submission_id': '1go0eew'}
{'comment': "I'm not in the least bit surprised. They need to feel they're winning in order to be motivated.", 'created': '2024-11-10 18:51:40', 'submission_id': '1go0eew'}
{'comment': 'I\'m in NYC, and was in midtown for the Trump rally. They shut down like a 5 block radius of MSG. There had to be anywhere from 50-60k people that showed up. They clogged all the streets, were chanting, etc. \n\nI knew Trump was going to win when I saw the news coverage: "Trump rally attracts 19,000" Where did they come up with that number? Oh right - its the capacity of the venue, not the actual amount that showed up. \n\nThey even compared it to a rally kamala had, which allegedly attracted 30k, as if to say she were more popular.', 'created': '2024-11-10 22:30:36', 'submission_id': '1go0eew'}
{'comment': 'Democrats were so convinced they would flip the House, but it looks like that will not happen.', 'created': '2024-11-10 14:57:24', 'submission_id': '1go0eew'}
{'comment': 'Seems fishy that we have a huge red shift but the house is still more or less even.', 'created': '2024-11-10 17:18:26', 'submission_id': '1go0eew'}
{'comment': 'Yes, I heard about their secret meeting to keep the Senate under the control of the swamp.', 'created': '2024-11-10 23:41:02', 'submission_id': '1go0eew'}
{'comment': 'We won almost everything, so maybe?', 'created': '2024-11-10 19:02:35', 'submission_id': '1go0eew'}
{'comment': 'I saw on another sub, everyone voted for Trump because they are all stupid and racist, and the *right has the media in their pocket*\n\nUnreal', 'created': '2024-11-10 15:05:45', 'submission_id': '1go0eew'}
{'comment': "They were *never * going to win this election. \n\nI'm so glad they're turning on their own too.", 'created': '2024-11-10 14:46:31', 'submission_id': '1go0eew'}
{'comment': 'You can drive almost everywhere in red areas, blue are in bubbles.', 'created': '2024-11-10 15:19:41', 'submission_id': '1go0eew'}
{'comment': 'Gotta love the heavy victim mentality even going so far as to say the media pulls for Trump. Had someone on fb say that the gop had all the media including cnn and msnbc etc working for them', 'created': '2024-11-10 15:26:56', 'submission_id': '1go0eew'}
{'comment': 'In a conversation on YouTube a liberal told me this. "We are more educated and my point is your garbage." Now, what is wrong with that statement? Either they used the wrong "your" vs. "you\'re" or their point really is my garbage. I asked for clarification but never received an answer.', 'created': '2024-11-10 15:11:01', 'submission_id': '1go0eew'}
{'comment': 'What do you think is reason Arizona voted for Trump?', 'created': '2024-11-10 16:11:32', 'submission_id': '1go0eew'}
{'comment': "I saw somewhere that Kamala only won in states that do not have voter identification laws. Seriously, what is so hard about using a driver's license or state ID? Neither are hard to get.", 'created': '2024-11-10 14:54:38', 'submission_id': '1go0eew'}
{'comment': "Some of the hardcore blue sub Reddits were trying to figure out if they were an echochamber and people were commenting that Reddit was center left. But I get banned from 10 different sub Reddits for the sole reason that I'm in r walkaway.", 'created': '2024-11-10 16:27:32', 'submission_id': '1go0eew'}
{'comment': "It's such a stupid take they must be parroting something they read.because they can't be serious", 'created': '2024-11-10 15:28:01', 'submission_id': '1go0eew'}
{'comment': 'Because border states get all all the migrants before anyone else does and they get the brunt of issues such as crime and property damage?\n\nSure some could argue that the statistics argue one way or another, but I doubt people are waiting for a statistical analysis of their neighborhood before assuming their neighborhood is unsafe.', 'created': '2024-11-10 21:28:41', 'submission_id': '1go0eew'}
{'comment': 'Me no reason.', 'created': '2024-11-10 19:01:25', 'submission_id': '1go0eew'}
{'comment': "Yep. States where you don't even have to prove who you are. \n\n*Nothing at all fishy about that...*", 'created': '2024-11-10 17:26:46', 'submission_id': '1go0eew'}
{'comment': 'Interesting. \n\nI\'m going to have to look into that. \n\nIn my state there was a question on the ballot about changing the language (one word) of our voter ID laws. \n\nThe SC people voted overwhelmingly in favor but the blue counties shot it down and said "it doesn\'t make a difference to the law and isn\'t important" \n\nSo, if it isn\'t important, why do you care if it\'s changed?', 'created': '2024-11-10 15:00:46', 'submission_id': '1go0eew'}
{'comment': 'Considered a poll tax since in many states DMVs are purposeful miles away. Also in most states that require it, the voter has to pay for their documents and the paperwork. If you make minimum wage of $7.50 that means time off work and 15 hours of work just to get a voter ID.', 'created': '2024-11-10 16:11:02', 'submission_id': '1go0eew'}
{'comment': "It's funny, though. While Reddit is definitely leftist, it's also very much pro-establishment leftist. It's not in any way anti-establishment. They will be in lock step with whoever the party establishment coronates.", 'created': '2024-11-10 18:41:06', 'submission_id': '1go0eew'}
{'comment': "I'm banned from a few places for one reason or another, and have been hit by the autoban stuff before.\n\nmy gut feeling is that we'll see a bunch of splinter subs start popping up where identity politics is less front and center.", 'created': '2024-11-10 21:27:22', 'submission_id': '1go0eew'}
{'comment': '90 percent of them seem to just be parrots. Believing and reiterating any lie they are told. Usually in the same order as they were told it.', 'created': '2024-11-10 15:29:16', 'submission_id': '1go0eew'}
{'comment': '"Sure some could argue that the statistics argue one way or another, but I doubt people are waiting for a statistical analysis..."\n\nExactly! I don\'t need to be told the economy is fantastic when my personal experience tells me otherwise. If I lived in a border state the same could be said about the border. If anything, one surprising state is how New Mexico managed to remain so blue.', 'created': '2024-11-10 22:23:03', 'submission_id': '1go0eew'}
{'comment': 'You have to have an ID to work', 'created': '2024-11-10 17:17:06', 'submission_id': '1go0eew'}
{'comment': 'Youre supposed to have ID to work anyway. \n\nAre you saying that the DMV is placement racist?\n\nETA: who else is supposed to pay for the paperwork, etc?\n\nTaxpayers? DMV? The Government? Thus, the Taxpayers?', 'created': '2024-11-10 17:13:41', 'submission_id': '1go0eew'}
{'comment': '"in many states DMVs are purposeful miles away"? Huh? They purposefully put DMV offices where they\'re hard for people to get to? Wow. That\'s a new one. \n\nTo avoid this very argument of a poll tax they always talk about making voter IDs free. \n\nAnd most people don\'t work 24/7 so having hours 7 days a week would also take care of the problem. Giving people some time they could get there when they\'re off work.\n\nThere are many extremely easy and simple solutions to the problem of people getting IDs free and easy. The only real thing problem is people who don\'t want an ID because it still leaves them an opportunity for fraud crying poll tax or some other discrimination. *But to get booze or marijuana they\'re just fine with an ID* \n\nI\'ll at least give you a point for not calling it racist. But other than that you score "Full on Kamala" on the rest of your argument.\n\n*That means complete failure...*', 'created': '2024-11-10 17:33:20', 'submission_id': '1go0eew'}
{'comment': "15 hours of work?? I got my first ID as a kid and it took maybe an hour if I was pushing it. Never took anywhere near 15 hours. ID doesn't mean a driver's license. The DMV offers normal IDs too.", 'created': '2024-11-10 16:54:59', 'submission_id': '1go0eew'}
{'comment': "As already mentioned, you have to have an ID for work. You also need an ID to open a bank account. Once I needed my driver's license to sell some scrap metal. I don't drink alcohol, but ID is sometimes required for that. As for needing 15 hours away from work to get an ID, you can't be serious. In my state, you make an appointment online with the DMV office and you'll be seen within minutes of that appointment. Each county has at least one office, usually at or near the county courthouse, and the more populated counties have multiple offices. This is likely true of most states. I appreciate your thoughts, but I am going to need more proof to consider your argument.", 'created': '2024-11-10 21:57:35', 'submission_id': '1go0eew'}
{'comment': 'Bot Farm or NPC. Republican control of the media is less likely than a flat Earth.', 'created': '2024-11-10 19:00:18', 'submission_id': '1go0eew'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-10 13:00:06', 'submission_id': '1gnz4iu'}
{'comment': 'Remember when blm leaders stole the donated money for fancy houses and cars? This is the same thing. Talk about a felon', 'created': '2024-11-10 14:13:12', 'submission_id': '1gnz4iu'}
{'comment': 'Pre-election-"My campaign raised over $1B!"\n\nPost-election-"I\'m $20M in debt"\n\n-Kamala', 'created': '2024-11-10 17:55:56', 'submission_id': '1gnz4iu'}
{'comment': "The Harris campaign paid Oprah for the softball interview. Which makes me wonder, if Oprah actually believed that Trump is America's Hitler, then why did she need payment when she is a billionaire?", 'created': '2024-11-10 14:42:21', 'submission_id': '1gnz4iu'}
{'comment': 'You got to elect her first then you find out whether you get paid or not', 'created': '2024-11-10 13:21:23', 'submission_id': '1gnz4iu'}
{'comment': None, 'created': '2024-11-10 14:03:52', 'submission_id': '1gnz4iu'}
{'comment': 'The celebs didn’t charge for their time (huge tax write off, go figure). It is the production people and vendors, the little guys, that won’t get paid. Interestingly, Trump suggested that he could pay them in the spirit of unity. He makes even more fans if he does that.', 'created': '2024-11-10 15:33:26', 'submission_id': '1gnz4iu'}
{'comment': "I hope they save clips of the celebs melting down (such as Oprah saying we may never get to cast a ballot again). They can use them for commercials for the next election after a successful term where none of the nonsense came true (internment camps and loss of elections and, hopefully, no loss of women's rights )", 'created': '2024-11-11 01:03:07', 'submission_id': '1gnz4iu'}
{'comment': "Paying Beyonce what seems like millions for appear at her rally only to speak for about 5 minutes while the audience was expecting a free concert wasn't a good look for Harris.\n\nHorrible misuse of funds while Trump raised almost half that and still had roughly $36 million left.\n\nGoes to show who was better at managing their money.", 'created': '2024-11-11 07:40:40', 'submission_id': '1gnz4iu'}
{'comment': 'Why did any of them need payment? They’re all rich.', 'created': '2024-11-10 14:53:21', 'submission_id': '1gnz4iu'}
{'comment': 'Because she didn’t get to being a billionaire spending her money. You get others to spend theirs and preach about how wonderful you are!', 'created': '2024-11-10 18:42:40', 'submission_id': '1gnz4iu'}
{'comment': 'Pasties. Too funny. The imagery is entertaining.', 'created': '2024-11-10 14:50:19', 'submission_id': '1gnz4iu'}
{'comment': 'And like a typical billionaire Trump could raise the money from others and still get credit for paying the little guy. Not a huge criticism, it’s just what rich people do on both sides.', 'created': '2024-11-10 18:45:17', 'submission_id': '1gnz4iu'}
{'comment': 'Because money is equally loved by the rich, the poor and everyone in between.', 'created': '2024-11-10 20:16:20', 'submission_id': '1gnz4iu'}
{'comment': None, 'created': '2024-11-10 15:49:21', 'submission_id': '1gnz4iu'}
{'comment': '"Aw, come on, man." (Did enjoy the alliteration, though. )', 'created': '2024-11-10 17:26:21', 'submission_id': '1gnz4iu'}
{'comment': None, 'created': '2024-11-10 17:40:44', 'submission_id': '1gnz4iu'}
{'comment': "And I'm enjoying you. Belly up to the bar.", 'created': '2024-11-10 23:05:42', 'submission_id': '1gnz4iu'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-10 12:40:34', 'submission_id': '1gnyu1o'}
{'comment': 'Did she say " Bless your heart " in politician ?', 'created': '2024-11-10 19:22:46', 'submission_id': '1gnyu1o'}
{'comment': 'Nikki Haley kind of sucks', 'created': '2024-11-10 13:04:33', 'submission_id': '1gnyu1o'}
{'comment': "She's a warmonger. We don't need her or Want her.", 'created': '2024-11-10 14:21:15', 'submission_id': '1gnyu1o'}
{'comment': 'Funny how she erased her Indian identity and Kamal fabricated her black identity\n\nEdit to add; I’m not from the US and assumed this was common knowledge now. Her mom is Indian and her dad is TBC but most likely Irish and Indian. Yes, he’s from Jamaica but Jamaica does not mean black guys 😭 Our country motto is literally “Out of many, one people” because we have black, white, Indian, Chinese etc', 'created': '2024-11-10 13:30:31', 'submission_id': '1gnyu1o'}
{'comment': "She was our UN ambassador last time around. She tossed in the towel and didn't server in her position the whole term. Not in a rush to see her in another position.", 'created': '2024-11-10 21:39:53', 'submission_id': '1gnyu1o'}
{'comment': 'Your Fired!\nNot making this mistake again. \nDidn’t she quit being an ambassador to go and make a few million at the fuckery plant?', 'created': '2024-11-11 20:55:28', 'submission_id': '1gnyu1o'}
{'comment': 'Traitor and fraud Haley can either retire from politics or try to join the Dems, because she is no longer going to be tolerated in the new Republican Party. We have cleaned house, the scumbags are gone and they are all flocking to the Dems. She can join Cheney and all the other corrupt scumbags who Trump has evicted.', 'created': '2024-11-10 17:31:04', 'submission_id': '1gnyu1o'}
{'comment': 'Yeah she’s a warmonger which is one of the reasons Biden/Kamala failed', 'created': '2024-11-10 14:29:20', 'submission_id': '1gnyu1o'}
{'comment': 'I agree, at one point (like 2018) I was all in on here to run for president but that’s gone away over the years to where I didn’t support her at all in the primaries.', 'created': '2024-11-10 18:10:03', 'submission_id': '1gnyu1o'}
{'comment': "She didn't do a bad job as UN ambassador. But then she quit.", 'created': '2024-11-10 21:41:16', 'submission_id': '1gnyu1o'}
{'comment': "Actually not. Out of all his back stabbing staff Nikki and Pompeo managed to give a professional veneer and were loyal to Trump to the end (from what I could tell). Policy wise you can see disagreement when she ran for president and she seemed uninspired. People can be wrong without sucking. \n\nAnd it felt like Pompeo didn't know how to fire people with the strange things happening at VOA.That might be the reason Pompeo won't be headed to the Pentagon. But that's just a guess. I truly hope that people are held to account for things that appeared to me to be backhanded during Trump's last term \n\nI consider both Nikki and Pompeo decent statesmen (well statespersons). In a different non-swamp environment they might be viable. \n\nI like Nikki and she is/was classy without being sour grapes like George Kelley. But policy wise just wrong from my limited viewpoint. \n\nI honestly don't know how Trump fires/puts a leash on the DOJ. See [this for more info.](https://youtu.be/-5OtKt2O-dM?si=qdKDNugGyiKxTHAC)", 'created': '2024-11-10 17:56:12', 'submission_id': '1gnyu1o'}
{'comment': "Isn't her dad Jamaican? If so, then she is mixed half black half Indian.", 'created': '2024-11-10 17:18:38', 'submission_id': '1gnyu1o'}
{'comment': 'Isn’t Kamala mixed? She’s half Indian half black. She talks about it a lot', 'created': '2024-11-10 13:33:34', 'submission_id': '1gnyu1o'}
{'comment': 'It is common knowledge.', 'created': '2024-11-10 21:43:43', 'submission_id': '1gnyu1o'}
{'comment': 'Great thing to say to 17% of the gop that voted for her…', 'created': '2024-11-11 06:09:51', 'submission_id': '1gnyu1o'}
{'comment': 'That is not the reason lol, I would’ve gladly taken Biden’s position on Ukraine and Israel over trumps', 'created': '2024-11-11 06:09:06', 'submission_id': '1gnyu1o'}
{'comment': '>I consider both Nikki and Pompeo decent statesmen \n\nThey’re both neocon trash', 'created': '2024-11-14 03:55:18', 'submission_id': '1gnyu1o'}
{'comment': 'Actually she’s totally silent about it- she refuses to talk about it. She is not half black- her father and mother are both Indian. She has photos in her book with black family members but she goes on to say they’re “like”family and not actual family. It’s a lie. And the media helped her lie about it. It’s just sick. But- blackifying herself didn’t work.', 'created': '2024-11-10 15:32:08', 'submission_id': '1gnyu1o'}
{'comment': 'It was revealed she lied about being black and the media refused to cover it 💀', 'created': '2024-11-10 13:52:29', 'submission_id': '1gnyu1o'}
{'comment': 'Ew', 'created': '2024-11-12 16:55:55', 'submission_id': '1gnyu1o'}
{'comment': "Isn't her father Jamaican? That's still black.", 'created': '2024-11-10 17:17:36', 'submission_id': '1gnyu1o'}
{'comment': 'Really??!? I saw murmurings about that early on when she got installed as the candidate on Black social media (specifically from Black men mostly) but then it went away. Unfortunately for her, it didn’t go away at the ballot box!', 'created': '2024-11-10 14:10:01', 'submission_id': '1gnyu1o'}
{'comment': '🫠', 'created': '2024-11-10 14:07:51', 'submission_id': '1gnyu1o'}
{'comment': '‘Ew’ yea how bad of me for continuing the party line that has been gop policy from 1940 to 2016. Just because Trump took over doesn’t mean the gop’s core values can be changed.', 'created': '2024-11-12 19:04:35', 'submission_id': '1gnyu1o'}
{'comment': 'I understand plenty of Jamaicans were black. Her family in Jamaica is not black- they are Irish. Janet Jackson first said this… and they came after her for it. Plenty of Jamaicans have come forward- the media hides all of this.', 'created': '2024-11-10 17:26:38', 'submission_id': '1gnyu1o'}
{'comment': None, 'created': '2024-11-10 19:08:47', 'submission_id': '1gnyu1o'}
{'comment': 'Yup lol Candace Owens, judge Joe brown, and other journalists pretty much all confirmed it and after it was revealed she changed her stance on the Shannon sharpe podcast when asked about being black to “well I had friends that became family” .. again zero media coverage\n\nInsanely unbelievable', 'created': '2024-11-10 14:12:53', 'submission_id': '1gnyu1o'}
{'comment': 'So a picture of her with her parents, an Indian woman and a very dark man, was actually not of her parents?', 'created': '2024-11-10 17:28:39', 'submission_id': '1gnyu1o'}
{'comment': "Her family being slave owners doesn't prove anything about her race, tho. Every single person can find a slave owner in their ancestry if they go back far enough regardless of race, so I don't understand anyone using that against a person. \n\nRace only matters for any candidate if they lie about it or if they're using their real race in an attempt to further their career. Otherwise myself and I can confidently say damn near every republican voters don't give a rats ass what color your skin is. If we peel you, you look the same as everyone else underneath so why would it have any bearing on a person's ability to do a job? It doesn't and people need to stop acting like it does.", 'created': '2024-11-10 20:34:43', 'submission_id': '1gnyu1o'}
{'comment': 'Do you have any links? I’d love to see it!', 'created': '2024-11-10 14:28:17', 'submission_id': '1gnyu1o'}
{'comment': 'They darkened the picture to make her father much darker- and the photos of her aunts and uncles that are clearly black are her mother’s friends. She actually states that in her book. Notice how she suddenly stopped answering anything about her race when Trump called her out on it? Few people have done a deep dive into her heritage. - now that she’s not going to be the president it seems like it doesn’t matter nearly as much that she faked being black.', 'created': '2024-11-10 17:31:29', 'submission_id': '1gnyu1o'}
{'comment': 'Check out Candace’s YouTube or Rumble pages. She’s got an entire series on this. She also digs a little bit into Obama’s family history', 'created': '2024-11-10 14:49:24', 'submission_id': '1gnyu1o'}
{'comment': "Well, whatever that *actual* truth is, I hope it comes out. Maybe it can at least deter the next one from faking their ancestry once they see the secrets come out eventually. Pocahontas anyone? Though that hasn't stopped her re-elections.", 'created': '2024-11-10 17:35:09', 'submission_id': '1gnyu1o'}
{'comment': 'You can’t really trust Candace on this stuff. She goes hard into conspiracy theory with no proof nonsense.', 'created': '2024-11-10 15:34:36', 'submission_id': '1gnyu1o'}
{'comment': 'John Kerry and Hillary both magically discovered Jewish relatives and very opportune times.', 'created': '2024-11-10 19:05:30', 'submission_id': '1gnyu1o'}
{'comment': 'The real scary part is - the media and whomever the deep state cover for liberal politicians while doing their best to tear through the conservatives.', 'created': '2024-11-10 17:36:38', 'submission_id': '1gnyu1o'}
{'comment': 'She has document proof on the episodes. She’s not just spewing her ideas. And members of Kamala’s family were in contact with her', 'created': '2024-11-10 16:24:08', 'submission_id': '1gnyu1o'}
{'comment': 'This is not true ^ there is plenty of proof tbh. These are all legal documents. She did actual journalism on this which was why I think it’s insane the media refused to cover it', 'created': '2024-11-10 17:08:47', 'submission_id': '1gnyu1o'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-10 09:55:46', 'submission_id': '1gnwj2t'}
{'comment': 'Better headline: Dems lie about everything.', 'created': '2024-11-10 10:11:00', 'submission_id': '1gnwj2t'}
{'comment': 'Democrats are desperate to be oppressed. When you’re oppressed, you’re automatically “the good guys” and your perceived oppressors are automatically “the bad guys”. The good guys are supposed to defeat the bad guys by any means necessary, because “the bad guys are evil and deserve it”. I think democrats brains are just a mixed up mess of FOMO over the civil rights movement of the 60’s and watching too many Marvel movies.', 'created': '2024-11-10 13:32:13', 'submission_id': '1gnwj2t'}
{'comment': 'I have seen this clip before and love it. It needs to be shared to everyone who says the Right is going to kill women now.', 'created': '2024-11-10 19:05:39', 'submission_id': '1gnwj2t'}
{'comment': 'So sick of hearing about abortion, let these molech worshipers kill their babies.\nGo after the money machine that is the abortive tissue trade', 'created': '2024-11-10 19:04:47', 'submission_id': '1gnwj2t'}
{'comment': "Yeah like men don't have a say in this.\xa0 It's a 50 50 relationship.\xa0 \xa0", 'created': '2024-11-12 02:31:14', 'submission_id': '1gnwj2t'}
{'comment': 'What data do you think people are using that causes them to think these things are true? Are there any studies out there showing that limiting abortion contributes to these outcomes even if the law doesn’t specifically say this is the goal? Even though the law doesn’t say these things explicitly this could be the unintentional effect.\n\nLooking for research in the topic. Let’s discuss.', 'created': '2024-11-10 12:36:26', 'submission_id': '1gnwj2t'}
{'comment': 'Is the example the lady gave the same as the one Tim Walz brought up in his debate?', 'created': '2024-11-10 13:57:31', 'submission_id': '1gnwj2t'}
{'comment': 'Her name is Heather Gebelin Hacker', 'created': '2024-11-10 23:41:57', 'submission_id': '1gnwj2t'}
{'comment': 'Dems lie on Everything.', 'created': '2024-11-11 00:43:01', 'submission_id': '1gnwj2t'}
{'comment': 'I have wondered if Harris had the executive power (if she had won) to over turn Supreme Court decision on Roe v Wade. Was she running on false promise to restore reproductive rights as rest of her flip flop promises. \nWhy didn’t Biden do it during the last 2 years?', 'created': '2024-11-11 03:21:30', 'submission_id': '1gnwj2t'}
{'comment': 'Fair enough I just figured it would hit a lot harder when talking about one specific thing, to add more oomph to it. Rather than a general statement about everything, they do lie about everything though. I hope the media has lost all credibility with the majority of the population after this election.', 'created': '2024-11-10 10:13:09', 'submission_id': '1gnwj2t'}
{'comment': 'Very productive comment. Keep that division going. Do you really believe all democrats in your life are liars?', 'created': '2024-11-11 02:04:04', 'submission_id': '1gnwj2t'}
{'comment': 'They lie about everything all of the time', 'created': '2024-11-10 22:04:28', 'submission_id': '1gnwj2t'}
{'comment': "I couldn't have summed it up better myself", 'created': '2024-11-10 14:51:43', 'submission_id': '1gnwj2t'}
{'comment': 'Democrats suffer from Stockholm syndrome.', 'created': '2024-11-10 17:01:29', 'submission_id': '1gnwj2t'}
{'comment': 'Sure, well, I’ll provide some links\nFrom The Guardian\n[Texas woman died after being denied miscarriage care due to abortion ban, report finds](https://amp.theguardian.com/us-news/2024/oct/30/texas-woman-death-abortion-ban-miscarriage)\n\nIn this case she was legally allowed to receive care but it was actually the hospital that was wrong in this, there was confusion around the laws and denied illegally care. \nNow these stories scare women into thinking their right are being taken away\nBut under Texas law it was allowed to perform care\n[Know Your State’s Abortion Laws](https://abortiondefensenetwork.org/wp-content/uploads/2024/01/Texas_ADN-Know-Your-State_Feb-2024.pdf)\nSo there is the exception that if a woman’s miscarriage develops into something life threatening it is legal to get an abortion. Confusion around this is causing healthcare providers to turn away people who could’ve gotten care, which is why medical professionals need to get more informed in this issue.', 'created': '2024-11-10 14:05:05', 'submission_id': '1gnwj2t'}
{'comment': 'So far all I’ve seen them use is stories about women dying or almost dying because they “couldn’t get an abortion”. After actually reading about the women you learn it’s actually the fault of the doctor and has nothing to do with abortion. But people believe everything they read on the internet so it doesn’t help to argue.', 'created': '2024-11-10 14:01:31', 'submission_id': '1gnwj2t'}
{'comment': 'These people use CNN solely as their ‘data’', 'created': '2024-11-10 15:05:04', 'submission_id': '1gnwj2t'}
{'comment': 'It might’ve been, tbh I didn’t see the Walz/Vance debate', 'created': '2024-11-10 16:12:31', 'submission_id': '1gnwj2t'}
{'comment': 'Yes. Not the voters per se, they are just naive.', 'created': '2024-11-11 08:17:22', 'submission_id': '1gnwj2t'}
{'comment': 'What’s crazy is that it’s not even an abortion. Your body is miscarrying and sometimes you need extra intervention to help it along……the doctors and that hospital knew what they were doing. They know the law. I live in Kentucky and we have no law for abortion, yet when I had a miscarriage they would have done a DNC if I needed it. My OBGYN at the time was well versed in miscarriages \n\nThe question that should have been asked is why are we accepting such substandard healthcare? It’s happening all over the country and in every facet of medicine.', 'created': '2024-11-10 15:35:15', 'submission_id': '1gnwj2t'}
{'comment': 'Were they scared because they had been told by lefty media to be scared?', 'created': '2024-11-10 15:43:14', 'submission_id': '1gnwj2t'}
{'comment': 'I tell people that all the time that if I as a layperson knows medically necessary abortions are not illegal in any of the 50 states than it becomes medical malpractice a doctor should now the law of their state surrounding abortions and the hospital have lawyers for a reason', 'created': '2024-11-11 01:06:00', 'submission_id': '1gnwj2t'}
{'comment': 'The issue is her baby still had a detectable heartbeat.', 'created': '2024-11-10 18:42:38', 'submission_id': '1gnwj2t'}
{'comment': 'Yeah but with that the exception overrules anything else if they think the woman’s life is at risk or is at risk of great bodily hardship they can still provide her health care whether there’s a heartbeat or not, that being said there’s a very thin line, like a very thin line between the two so close that it’s basically whatever the doctor decides, I do think it needs to be rewritten though so a doctor can know the difference between the heartbeat and the exception. Should should’ve been able to be provided care but since the doctor was confused about the law, she wasn’t able to.', 'created': '2024-11-10 23:30:08', 'submission_id': '1gnwj2t'}
{'comment': 'So it sounds like you agree, that it’s confusing for doctors to know what to do - no matter what is said in the video.', 'created': '2024-11-11 02:24:53', 'submission_id': '1gnwj2t'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-10 02:35:49', 'submission_id': '1gnpifv'}
{'comment': 'Signs he learned his lesson last time and is vetting his picks better', 'created': '2024-11-10 02:47:26', 'submission_id': '1gnpifv'}
{'comment': 'VERY 👏SMART 👏MOVE 👏', 'created': '2024-11-10 02:53:05', 'submission_id': '1gnpifv'}
{'comment': 'Thank fuck. There was heavy rumors of that asshat Pompeo getting back in.', 'created': '2024-11-10 03:29:48', 'submission_id': '1gnpifv'}
{'comment': 'Trump has had 4 years to reflect on peoples performances and his decisions on what to do differently. He has a second chance now and it seems like he’s not going to waste a second of it', 'created': '2024-11-10 03:45:17', 'submission_id': '1gnpifv'}
{'comment': 'GREAT NEWS', 'created': '2024-11-10 02:56:25', 'submission_id': '1gnpifv'}
{'comment': "GOOD! I know Mike Pompeo from when I worked with him when he ran a small aircraft parts supplier and machine shop. The guy can't be trusted.", 'created': '2024-11-10 04:54:03', 'submission_id': '1gnpifv'}
{'comment': 'There are always open positions for janitors in Morocco.', 'created': '2024-11-10 03:05:43', 'submission_id': '1gnpifv'}
{'comment': 'GOOD.', 'created': '2024-11-10 02:37:37', 'submission_id': '1gnpifv'}
{'comment': 'We don’t need a war hawk like Nikki in Washington', 'created': '2024-11-10 03:03:41', 'submission_id': '1gnpifv'}
{'comment': 'Don Bongino to head the Secret Service', 'created': '2024-11-10 02:50:08', 'submission_id': '1gnpifv'}
{'comment': "See I really liked Nikki Haley. She's hawkish but yeah sometimes despots and tyrants just need to get droned.", 'created': '2024-11-10 03:06:09', 'submission_id': '1gnpifv'}
{'comment': 'Good choice by keeping Pompeo out forsure.', 'created': '2024-11-10 03:58:50', 'submission_id': '1gnpifv'}
{'comment': "2 war mongers, i love it. Nikki, you're fired!!!", 'created': '2024-11-10 03:27:59', 'submission_id': '1gnpifv'}
{'comment': 'He has learned a lot from his last term. I think we will see some major pieces being moved.', 'created': '2024-11-10 03:32:46', 'submission_id': '1gnpifv'}
{'comment': 'Trump is getting all his people in there which is exactly what he needs to do to get the job done correctly', 'created': '2024-11-10 03:35:37', 'submission_id': '1gnpifv'}
{'comment': 'Drain the swamp', 'created': '2024-11-10 04:10:30', 'submission_id': '1gnpifv'}
{'comment': 'Hope he re hires Kayleigh McEnany... that lady is fire and put all the fake news media reeling.', 'created': '2024-11-10 14:26:41', 'submission_id': '1gnpifv'}
{'comment': 'This man has done more in his first day then many presidents throughout the whole world have managed to achieve in their entire term', 'created': '2024-11-10 11:46:54', 'submission_id': '1gnpifv'}
{'comment': 'This is great! Keep vocal to keep the neocons out!', 'created': '2024-11-10 03:42:20', 'submission_id': '1gnpifv'}
{'comment': 'Say No to War Hawks.', 'created': '2024-11-10 04:22:55', 'submission_id': '1gnpifv'}
{'comment': 'He’s got better people like Tulsi or Vivek or Candace Owens', 'created': '2024-11-10 03:36:51', 'submission_id': '1gnpifv'}
{'comment': 'I LOVE seeing so many of us on the same page!!!', 'created': '2024-11-10 20:01:38', 'submission_id': '1gnpifv'}
{'comment': 'Vivek', 'created': '2024-11-11 03:02:16', 'submission_id': '1gnpifv'}
{'comment': 'Yay!', 'created': '2024-11-10 05:04:18', 'submission_id': '1gnpifv'}
{'comment': 'Where elon for doge role', 'created': '2024-11-10 07:14:32', 'submission_id': '1gnpifv'}
{'comment': 'Thank God', 'created': '2024-11-10 12:22:21', 'submission_id': '1gnpifv'}
{'comment': 'I love how President Trump is keeping his electorate informed. For the last two days all over social media, I have seen many calls from political pundits against Mike Pompeo serving in a future Trump administration. \n\nI am certain that President Trump has learned many hard lessons in the political arena that are only going to serve to strengthen him as a president. This political comeback is spectacular, and it’s going to be fun to witness firsthand.', 'created': '2024-11-10 12:56:44', 'submission_id': '1gnpifv'}
{'comment': 'Why?', 'created': '2024-11-10 05:43:06', 'submission_id': '1gnpifv'}
{'comment': 'Good', 'created': '2024-11-10 08:16:20', 'submission_id': '1gnpifv'}
{'comment': 'Tiss is a shame. I thought Nikki Haley did a good job representing the US on the United Nations.', 'created': '2024-11-10 11:57:00', 'submission_id': '1gnpifv'}
{'comment': 'Yeah, my dad up to now still rants about his first term and how come he kept people on from the Obama admin, especially in national security positions like FBI, NSA and CIA. " he should have cleaned house and put his own people there !"', 'created': '2024-11-10 03:13:04', 'submission_id': '1gnpifv'}
{'comment': 'Less leakers and saboteurs', 'created': '2024-11-10 17:39:15', 'submission_id': '1gnpifv'}
{'comment': 'Could it be that Trump purposely gave out disinformation to catch who’s leaking information to the press? Shapiro, hello?', 'created': '2024-11-10 13:41:03', 'submission_id': '1gnpifv'}
{'comment': "Could you provide more content about the unhappy experience you had with Pompeo? I know he was not fully executing President Trump's agenda when he was SoS.", 'created': '2024-11-10 08:00:46', 'submission_id': '1gnpifv'}
{'comment': 'Assign them to replace him in the McD drive through window.', 'created': '2024-11-10 03:14:07', 'submission_id': '1gnpifv'}
{'comment': 'Why is Morocco catching strays 😂', 'created': '2024-11-10 03:37:16', 'submission_id': '1gnpifv'}
{'comment': 'Especially with the tension in the middle east', 'created': '2024-11-10 04:03:07', 'submission_id': '1gnpifv'}
{'comment': 'Is that Dans brother', 'created': '2024-11-10 03:03:14', 'submission_id': '1gnpifv'}
{'comment': 'I like her fiscal policies too. She’s just not populist enough for this era of the Republican Party', 'created': '2024-11-10 06:46:38', 'submission_id': '1gnpifv'}
{'comment': 'Hopefully. But we will definitely see the seething from the left about how so and so has no experience in said department.', 'created': '2024-11-10 04:26:12', 'submission_id': '1gnpifv'}
{'comment': "I dunno Candace just gives off whiny YouTube vibes to me. I'd rather have professionals", 'created': '2024-11-10 04:58:18', 'submission_id': '1gnpifv'}
{'comment': 'I like Tulsi and Vivek but not sure about Candance.', 'created': '2024-11-10 08:03:34', 'submission_id': '1gnpifv'}
{'comment': 'Tulsi supports ubi, abortion, and opposes the new deal, not for being too radical, but for being too pro-nuclear energy. She also literally denied the gassing of Syrian citizens and met with their dictator right after and had a ‘friendly visit’. She’s a far left nut job, I can’t stand why some of us think she’s good.', 'created': '2024-11-11 06:12:28', 'submission_id': '1gnpifv'}
{'comment': 'Kristi Noem', 'created': '2024-11-10 06:43:57', 'submission_id': '1gnpifv'}
{'comment': "He didn't have any people lol. What was he supposed to do, make his architect the head of the FBI?", 'created': '2024-11-10 20:10:19', 'submission_id': '1gnpifv'}
{'comment': 'I appreciate your question, but I am not going to go into details about my personal experience regarding Mike Pompeo other than to say he can easily look you in the eye and lie. Just a fair warning, Mike is not a man to be trusted. He will sell anyone out for his own advantage and could have easily done so as Secretary of State.', 'created': '2024-11-10 08:16:29', 'submission_id': '1gnpifv'}
{'comment': 'They would ruin the fries.', 'created': '2024-11-10 03:24:51', 'submission_id': '1gnpifv'}
{'comment': 'Nope', 'created': '2024-11-10 04:09:47', 'submission_id': '1gnpifv'}
{'comment': 'Really hope we move away from populism. People will probably see it doesn’t work well without trump', 'created': '2024-11-11 06:11:01', 'submission_id': '1gnpifv'}
{'comment': 'And the ice cream machine.', 'created': '2024-11-10 22:32:10', 'submission_id': '1gnpifv'}
{'comment': 'Same. It’s a bit concerning how conservatism has almost become synonymous with populism. But I’m glad republicans control all 3 chambers. Any move the federal governments makes towards the right is the right move lol', 'created': '2024-11-11 06:28:08', 'submission_id': '1gnpifv'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-10 01:15:20', 'submission_id': '1gnny38'}
{'comment': 'Draining the swamp', 'created': '2024-11-10 02:50:43', 'submission_id': '1gnny38'}
{'comment': 'I love that the citizens are making their voices heard. Contrary to what politicians think, we actually DO know what’s going on.', 'created': '2024-11-10 03:02:52', 'submission_id': '1gnny38'}
{'comment': 'Karma is truly a bitch', 'created': '2024-11-10 05:11:34', 'submission_id': '1gnny38'}
{'comment': "I'm glad this DA and other soft on real crime DAs are being shown the door.", 'created': '2024-11-10 22:44:27', 'submission_id': '1gnny38'}
{'comment': 'Psalm 97:10\nLet those who love the Lord hate evil, for he guards the lives of his faithful ones and delivers them from the hand of the wicked.', 'created': '2024-11-10 03:03:33', 'submission_id': '1gnny38'}
{'comment': 'Especially to a true bitch.', 'created': '2024-11-10 06:25:35', 'submission_id': '1gnny38'}
{'comment': '"The heart of the wise inclines to the right, but the heart of the fool to the left." Ecclesiastes 10:2', 'created': '2024-11-10 06:32:26', 'submission_id': '1gnny38'}
{'comment': 'Yeah I remember a verse in the Bible talking about that, I had forgot which one though', 'created': '2024-11-10 10:14:46', 'submission_id': '1gnny38'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-09 23:44:27', 'submission_id': '1gnm2t8'}
{'comment': 'Good. Get that fucking crypt keeper out of there.', 'created': '2024-11-10 00:04:08', 'submission_id': '1gnm2t8'}
{'comment': 'I think everyone has started paying attention to what’s happening in this country and decided to take a very big step forward in getting it back with the reelection of President Trump. I am so damn proud of everyone who decided to stand up and do something about it instead of sitting home.', 'created': '2024-11-10 00:01:58', 'submission_id': '1gnm2t8'}
{'comment': 'So, it looks like people didn’t like lawfare and prosecutors letting criminals go free.\n\nWho would have thought.', 'created': '2024-11-10 00:07:25', 'submission_id': '1gnm2t8'}
{'comment': 'His agenda is an existential threat to working Americans and everything we hold dear. "Uncertain future" isn\'t good enough.', 'created': '2024-11-10 03:25:24', 'submission_id': '1gnm2t8'}
{'comment': "Trump just keeps on winning, doesn't he?", 'created': '2024-11-10 06:48:52', 'submission_id': '1gnm2t8'}
{'comment': 'The biggest threat to American democracy is this man.', 'created': '2024-11-10 16:34:19', 'submission_id': '1gnm2t8'}
{'comment': 'This crypt keeper Soros needs to go already. One less evil in the world.', 'created': '2024-11-10 14:08:33', 'submission_id': '1gnm2t8'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-09 23:07:20', 'submission_id': '1gnlaf6'}
{'comment': 'Pleeeease give us term limits. Politics should not be a career that makes you a millionaire.', 'created': '2024-11-10 03:21:02', 'submission_id': '1gnlaf6'}
{'comment': 'If Trump somehow manages to implement congressional term limits, I will demand a personal apology from every single person who voted for Harris', 'created': '2024-11-10 00:37:40', 'submission_id': '1gnlaf6'}
{'comment': 'The left is going to be so mad at the amazing 4 years that we’re about to have! 🚀🚀🚀', 'created': '2024-11-10 05:36:18', 'submission_id': '1gnlaf6'}
{'comment': 'Holy fuck!', 'created': '2024-11-09 23:18:04', 'submission_id': '1gnlaf6'}
{'comment': 'This is all real?', 'created': '2024-11-09 23:39:42', 'submission_id': '1gnlaf6'}
{'comment': 'But, but, but…ORANGE MAN BAD!!!', 'created': '2024-11-10 03:39:21', 'submission_id': '1gnlaf6'}
{'comment': "They will still put him down at every turn and twist everything good he does into bad. Sad what the left has made everyone think. Even Burnie sanders said the dem party has turned it's back on the working class.", 'created': '2024-11-10 00:23:43', 'submission_id': '1gnlaf6'}
{'comment': 'This is like a WWE return intro', 'created': '2024-11-10 05:48:18', 'submission_id': '1gnlaf6'}
{'comment': 'Term limits!!!!!!!!!!!! I wanna see this done within the first month.', 'created': '2024-11-10 13:25:46', 'submission_id': '1gnlaf6'}
{'comment': 'The world was holding a house party and like an 80’s movie Dad called and announced he got an earlier flight and will be home soon: time for everyone to scramble, frantically cleaning the house so Dad doesn’t ground them for life. Trump will be back soon, time for the world to clean up it’s act.', 'created': '2024-11-09 23:58:26', 'submission_id': '1gnlaf6'}
{'comment': 'GOAT moves', 'created': '2024-11-10 02:28:21', 'submission_id': '1gnlaf6'}
{'comment': "I work in education (huge mistake but it is what it is) and it is amazing how a class's demeanor can completely change when you simply put in a teacher who knows how to respond to nonsense.\n\nWhen you have teachers who let students not have to act with discipline, they will not act with discipline.\n\nWhen you let your enemies walk all over you, they will walk all over you.", 'created': '2024-11-10 12:17:09', 'submission_id': '1gnlaf6'}
{'comment': 'Term limits.. yes!!', 'created': '2024-11-10 16:06:24', 'submission_id': '1gnlaf6'}
{'comment': 'Amazing this is almost as good as the second coming', 'created': '2024-11-09 23:21:53', 'submission_id': '1gnlaf6'}
{'comment': 'No lies detected', 'created': '2024-11-10 02:15:40', 'submission_id': '1gnlaf6'}
{'comment': 'But…but…but trans women can’t go into women’s bathrooms anymore 🤪🤪', 'created': '2024-11-10 11:35:22', 'submission_id': '1gnlaf6'}
{'comment': 'It is pretty crazy how different the world leaders sound this time around vs the last. The last time they legitimately laughed in our face and mocked our president. Now not only world leaders but world populace are happy to see him back in office. \n\nDoes anyone know why they are way more respectful this time? Is it because he earned their respect while he was in office? Is it what they fear he could do? It’s all very interesting. \n\nI hope Puttin looks at this as his way out. There’s just no way he just pulls troops out without getting something. His people will absolutely revolt. So what is a trade off he is willing to take that represents a win to Russia?', 'created': '2024-11-10 01:45:09', 'submission_id': '1gnlaf6'}
{'comment': "These other countries now know that someone who will defend their country is about to step back into office and they don't want to riffle feathers. Trump should also demand all of the equipment back from the Taliban that Biden forced our service members to leave behind.", 'created': '2024-11-10 17:16:16', 'submission_id': '1gnlaf6'}
{'comment': 'This is what happens when you nut up and not shut up!!!', 'created': '2024-11-10 04:52:02', 'submission_id': '1gnlaf6'}
{'comment': 'And he shut down a new auto plant in Mexico', 'created': '2024-11-10 00:42:03', 'submission_id': '1gnlaf6'}
{'comment': "Crystal sales are gonna skyrocket. You're not gonna believe it.", 'created': '2024-11-11 01:48:09', 'submission_id': '1gnlaf6'}
{'comment': "Sounds like they're scared of Trump hahaha, notice how none of them did that under Biden. It's like when kids act bad around mom cause they know they can get away with it, but when Dad comes home from work, they behave cause they know they'll get their ass whooped hahaha 🤣\n\nThis is why strong leadership is important, not just for us, but for the world.", 'created': '2024-11-15 06:14:51', 'submission_id': '1gnlaf6'}
{'comment': 'Unless you are a billionaire already?', 'created': '2024-11-10 05:49:37', 'submission_id': '1gnlaf6'}
{'comment': 'Trump actually lost money during his presidency.', 'created': '2024-11-11 00:56:31', 'submission_id': '1gnlaf6'}
{'comment': 'Are you talking about trump or? You think trump took office to get rich? Is this a troll post?', 'created': '2024-11-10 19:13:34', 'submission_id': '1gnlaf6'}
{'comment': 'Do you think Trump will seek a 3rd term?', 'created': '2024-11-11 04:47:26', 'submission_id': '1gnlaf6'}
{'comment': "Hold out yer hand mate. I'm for it.", 'created': '2024-11-10 19:39:57', 'submission_id': '1gnlaf6'}
{'comment': 'Yes', 'created': '2024-11-10 00:03:52', 'submission_id': '1gnlaf6'}
{'comment': 'That Hamas point is absolute bullshit. They said they want an end to the war but they have no intentions of surrendering and returning the hostages (literally the only two criteria needed to end the war in Gaza tomorrow). Other stuff he mentions looks good though', 'created': '2024-11-10 00:42:34', 'submission_id': '1gnlaf6'}
{'comment': 'Don’t believe everything from some dude on X. Sounds good but look into it further. Don’t let one 30 second clip be the end all, time will tell.', 'created': '2024-11-10 15:48:23', 'submission_id': '1gnlaf6'}
{'comment': 'Yep.\n\nI\'m just waiting for them to benefit from low gas prices yet still cry about how it was done "incorrectly", just because it was done by somebody who offends them.', 'created': '2024-11-10 17:44:28', 'submission_id': '1gnlaf6'}
{'comment': "Sadly it's one of the things I enjoy about Trump. You can find lots of independent news about trumps positives and main stream sticks to the negative. It gives it a good balance. The mud slinging sucks, but I rather that then political ass kissing like we have had the past 4 years.", 'created': '2024-11-10 03:34:47', 'submission_id': '1gnlaf6'}
{'comment': 'Oh yes, this is faaaaarrrr from over with the battle against Trump.', 'created': '2024-11-10 18:13:50', 'submission_id': '1gnlaf6'}
{'comment': "Aside from everything that really matters--I've seen this comparison many times since all of these positives started happening-and I'm loving every single one. It's absolutely true. On Wed when I woke up and saw the news, the world just felt better! I honest-to-God didn't realize how dark and just out of hope I'd been feeling (I mean I knew but didn't know, know what I mean?). \n\nI spoke to other friends about this, and it was the same with them. We all knew we'd been feeling down and depressed, but hadn't actually realized just how bad it was until Wednesday. God this feels good. I'd forgotten hope.", 'created': '2024-11-10 17:04:54', 'submission_id': '1gnlaf6'}
{'comment': 'Well said!', 'created': '2024-11-10 18:15:59', 'submission_id': '1gnlaf6'}
{'comment': "This is something that bothered me so much! Feminists actually obliterating what a woman is. Marginalizing women. I honestly do not care what trans people do, I mean this with all my heart. Dress how you want, rename yourself, whatever you want to do it's not my business. But when you start absolutely erasing women-real women born with XX, a vagina and uterus-I have a problem. Forcing women to accept this, while having the outright temerity to scream that the majority took away women's rights? \n\nI can't even think about it anymore, it boggles my mind.", 'created': '2024-11-10 17:11:08', 'submission_id': '1gnlaf6'}
{'comment': 'And you fail to acknowledge everything else? Stop crying this is good for you. The quicker you accept the inevitable you will soon realize your life will improve', 'created': '2024-11-10 03:38:29', 'submission_id': '1gnlaf6'}
{'comment': 'doesn’t he donate his salaries😭😭', 'created': '2024-11-10 21:40:09', 'submission_id': '1gnlaf6'}
{'comment': 'No, congress', 'created': '2024-11-10 21:16:53', 'submission_id': '1gnlaf6'}
{'comment': 'I took it as him saying if you get into politics you should only become a millionaire if you started as a billionaire. Meaning you lose money. I may have misinterpreted it tho', 'created': '2024-11-10 22:01:03', 'submission_id': '1gnlaf6'}
{'comment': ' No, I think he will gracefully step down and VP will be put in place as the Republican candidate', 'created': '2024-11-11 05:26:41', 'submission_id': '1gnlaf6'}
{'comment': 'Trump should become an Emperor ngl', 'created': '2024-11-11 07:01:49', 'submission_id': '1gnlaf6'}
{'comment': 'Nothing short of impressive', 'created': '2024-11-10 00:05:01', 'submission_id': '1gnlaf6'}
{'comment': 'Na man your wrong, Hamas has been chanting "from the river to the sea" for like 50 years now. And trump being elected but not in office has made them say "no land really, just peace."', 'created': '2024-11-10 03:31:59', 'submission_id': '1gnlaf6'}
{'comment': 'Not sure your point, sorry. I meant that as a positive…', 'created': '2024-11-10 20:04:41', 'submission_id': '1gnlaf6'}
{'comment': "I'm sure he would like that", 'created': '2024-11-11 23:10:14', 'submission_id': '1gnlaf6'}
{'comment': 'Got a source for that claim? There is no “peace” with Hamas. Trump better understand that and back Israel’s decisions', 'created': '2024-11-10 03:33:51', 'submission_id': '1gnlaf6'}
{'comment': 'They don’t have them hostages home by Inauguration Day those B2 Bombers will be paying them a visit', 'created': '2024-11-10 11:42:45', 'submission_id': '1gnlaf6'}
{'comment': 'I think he does, they’re saying that cause they know Trump will blow them to smithereens. The only iffy parts though are the hostages and civilians. Question is if we get the hostages back and the people safer if we blow them up immediately, I say yes because America shouldn’t negotiate with terrorists.', 'created': '2024-11-10 10:07:20', 'submission_id': '1gnlaf6'}
{'comment': 'My sorce is that video I just watched. Lol', 'created': '2024-11-10 04:21:21', 'submission_id': '1gnlaf6'}
{'comment': 'Sarcasm does not go over well here. A 50+ year old political group is not going to simply change their whole point of view about the land they, there fathers, and grand fathers fought over. Saying we want peace is just a political move. It will not last. They don\'t mean it. Will it stop for 4 or 5 years, yeah sure probably. But they are not going to spend those 4 years building peace monuments. They will use it to rebuild their "military". IMO they view this as a very very small blip on a war they have been waging, and has been waged on them, for decades if not centuries.\n\nThink was it that bad in 2018, na. But come what 1 or 2 years of Biden and you see one of the largest attacks they have ever held.\n\nPeace talks in the middle east is just buying time to rebuild and reinforce. This goes for both sides.', 'created': '2024-11-10 16:04:44', 'submission_id': '1gnlaf6'}
{'comment': "Really, it's no more complex than a game of Risk.", 'created': '2024-11-10 19:08:39', 'submission_id': '1gnlaf6'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-09 21:51:40', 'submission_id': '1gnjnga'}
{'comment': 'Oooo and DeSantis is involved in the investigation. Nice.', 'created': '2024-11-09 21:54:35', 'submission_id': '1gnjnga'}
{'comment': 'disgusting glad they are completely out of power', 'created': '2024-11-10 00:11:24', 'submission_id': '1gnjnga'}
{'comment': 'The individuals name is Marni’i Washington:\n\nhttps://www.dailywire.com/news/exclusive-fema-official-ordered-relief-workers-to-skip-houses-with-trump-signs', 'created': '2024-11-09 22:05:49', 'submission_id': '1gnjnga'}
{'comment': '*grabs bowl if popcorn*\n\nThis is getting good.', 'created': '2024-11-09 22:05:19', 'submission_id': '1gnjnga'}
{'comment': "You know she was doing this assuming Kamala would win, and she'd never be punished. The really sad part is if Kamala won, she'd most likely have been correct in that assumption.", 'created': '2024-11-09 22:28:43', 'submission_id': '1gnjnga'}
{'comment': 'This makes my blood boil', 'created': '2024-11-10 02:54:29', 'submission_id': '1gnjnga'}
{'comment': 'Why not arrested?', 'created': '2024-11-10 00:48:01', 'submission_id': '1gnjnga'}
{'comment': 'Piece of shit.', 'created': '2024-11-09 23:33:54', 'submission_id': '1gnjnga'}
{'comment': 'He should go to jail.', 'created': '2024-11-09 22:34:12', 'submission_id': '1gnjnga'}
{'comment': None, 'created': '2024-11-09 22:07:07', 'submission_id': '1gnjnga'}
{'comment': 'A literal nuisance to society', 'created': '2024-11-10 00:33:28', 'submission_id': '1gnjnga'}
{'comment': 'What about the workers?\n\n>The houses were skipped over by the workers, who wrote messages such as: “Trump sign no entry per leadership,” in a government system, per the outlet.', 'created': '2024-11-09 22:40:51', 'submission_id': '1gnjnga'}
{'comment': 'fking democRATS. the money are taxpayer money, and should go to Americans in need regardless of political affiliation. these parasites would rather spend up the money on illegals than saving Americans.', 'created': '2024-11-10 08:06:56', 'submission_id': '1gnjnga'}
{'comment': 'Hopefully justice will continue to be swift the next 4 years', 'created': '2024-11-09 23:08:33', 'submission_id': '1gnjnga'}
{'comment': 'Selfish. Racist.', 'created': '2024-11-09 22:55:28', 'submission_id': '1gnjnga'}
{'comment': 'Oh this is getting better and better. \n\nPeople are starting to clean up their acts before Trump cleans *them? Out. \n\nI, for one, hope he starts with Mayorkas.', 'created': '2024-11-10 05:45:35', 'submission_id': '1gnjnga'}
{'comment': ' Hope she gets. Conspiracy for murder', 'created': '2024-11-10 00:51:21', 'submission_id': '1gnjnga'}
{'comment': 'How about we discriminate against Reddit?', 'created': '2024-11-10 02:43:13', 'submission_id': '1gnjnga'}
{'comment': 'Not even surprised.', 'created': '2024-11-10 05:21:32', 'submission_id': '1gnjnga'}
{'comment': "Yeah...she shouldn't just be fired...she should be prosecuted as well!", 'created': '2024-11-10 13:43:06', 'submission_id': '1gnjnga'}
{'comment': 'Fired and should be a full loss of all her credentials and ability for any government clearance (to stop her from getting a cushy consulting job).', 'created': '2024-11-10 19:53:25', 'submission_id': '1gnjnga'}
{'comment': 'Fire the people that obey her orders.', 'created': '2024-11-11 00:00:49', 'submission_id': '1gnjnga'}
{'comment': 'She should catch a charge.', 'created': '2024-11-11 01:19:15', 'submission_id': '1gnjnga'}
{'comment': 'absolutely disgusting. Should be jailed for attempted murder.', 'created': '2024-11-11 03:23:17', 'submission_id': '1gnjnga'}
{'comment': 'Nice, now press charges for wreckless endangerment.', 'created': '2024-11-11 15:39:00', 'submission_id': '1gnjnga'}
{'comment': 'Fake news', 'created': '2024-11-09 22:55:38', 'submission_id': '1gnjnga'}
{'comment': 'Hope he sues her and FEMA', 'created': '2024-11-09 23:28:03', 'submission_id': '1gnjnga'}
{'comment': 'Very humanitarian, very demure.', 'created': '2024-11-09 22:27:56', 'submission_id': '1gnjnga'}
{'comment': 'That’s one person, bunches of Homeland Security personnel were assigned to this disaster relief program and many followed that advice. \n\nAnyone who did discriminate against an American for disaster relief because of a campaign sign, needs to be on unemployment.', 'created': '2024-11-10 14:45:06', 'submission_id': '1gnjnga'}
{'comment': "She. Marn'i D Washington", 'created': '2024-11-09 22:59:56', 'submission_id': '1gnjnga'}
{'comment': '100%.', 'created': '2024-11-09 22:48:54', 'submission_id': '1gnjnga'}
{'comment': 'They’ll be getting an enema soon as well.\xa0', 'created': '2024-11-09 22:22:56', 'submission_id': '1gnjnga'}
{'comment': 'I was audited a few weeks after switching my voter registration to Republican. For a 1 year old tax return. Makes you wonder.', 'created': '2024-11-10 07:30:50', 'submission_id': '1gnjnga'}
{'comment': 'The IRS are thieves. The tax gestapo. More was done over a tea tax. Why is this ok lol.', 'created': '2024-11-10 21:47:26', 'submission_id': '1gnjnga'}
{'comment': 'https://amp.cnn.com/cnn/2024/11/08/politics/fema-employee-trump-florida-hurricane\n\nhttps://nypost.com/2024/11/09/us-news/fema-official-who-allegedly-told-workers-to-avoid-florida-homes-with-trump-signs-fired-report/\n\nhttps://www.nytimes.com/2024/11/09/us/fema-trump-signs.html\n\nOh my god so much fake news!', 'created': '2024-11-09 23:59:35', 'submission_id': '1gnjnga'}
{'comment': 'Another salty unhinged lib trying to cause trouble anywhere you can. Nice try though. Go post your weird Putin and trump fetish porn and let the grownups discuss real issues.', 'created': '2024-11-10 00:24:19', 'submission_id': '1gnjnga'}
{'comment': 'No, this is real and perfectly on target for what we expected.', 'created': '2024-11-10 00:48:17', 'submission_id': '1gnjnga'}
{'comment': 'Agreed. The article the OP posted listed them as an “unnamed employee”, the article I linked has their name. These kinds of people have no problem doxing us for being Trump supporters so I have no problem doxing them for being pos humans, especially when their name is already in the news for the issue in question.', 'created': '2024-11-10 17:50:00', 'submission_id': '1gnjnga'}
{'comment': 'Prosecution for attempted murder.', 'created': '2024-11-10 22:08:07', 'submission_id': '1gnjnga'}
{'comment': "I don't care which president she identifies as. She can be Barn'i D Jefferson. It's still wrong!", 'created': '2024-11-10 02:58:13', 'submission_id': '1gnjnga'}
{'comment': 'Lol!', 'created': '2024-11-10 06:48:05', 'submission_id': '1gnjnga'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-09 21:12:17', 'submission_id': '1gnisw3'}
{'comment': 'It’s insane that votes are still being counted. Is it one old lady in her 80s reading each ballot?', 'created': '2024-11-09 21:15:34', 'submission_id': '1gnisw3'}
{'comment': "The Dems will have nothing and they won't like it.\xa0", 'created': '2024-11-09 22:02:50', 'submission_id': '1gnisw3'}
{'comment': 'Ya this is ridiculous how long this is taking', 'created': '2024-11-10 00:24:46', 'submission_id': '1gnisw3'}
{'comment': 'WH and Congress lost. And if DJT has another chance or two to make SCOTUS appointments ? They better rethink their strategy,', 'created': '2024-11-09 21:21:33', 'submission_id': '1gnisw3'}
{'comment': 'FTFA;\n\n>keeping hold of the House would give Republicans sweeping powers to potentially ram through a broad agenda of tax and spending cuts....\n\n"Ram through" Reuters, really??? Thanks for your continued biased reporting. The filibuster does still exist, thanks to Trump winning. Kamala promised to dissolve it. Put that in your hat.', 'created': '2024-11-09 22:39:12', 'submission_id': '1gnisw3'}
{'comment': 'At this point imo the only delay here is they know who won and don’t want to admit it until they have to haha but that’s just my opinion and not to be taken as fact!', 'created': '2024-11-10 06:12:57', 'submission_id': '1gnisw3'}
{'comment': 'https://www.newsmax.com/election-maps/#house\n\n208 to 216 please 🙏', 'created': '2024-11-10 01:32:51', 'submission_id': '1gnisw3'}
{'comment': '213 to 202. With 5 more seats to clinch.\xa0\n\n\n20 seats left for grabs. Republicans have the lead in 9 of them.\n\n\nThey got this!', 'created': '2024-11-10 04:54:33', 'submission_id': '1gnisw3'}
{'comment': 'I’m a little nervous about the remaining seats. \nA lot of them are in California, Oregon and Washington state. With most of the votes counted, the Republican is losing in Maine.\nThe Republican is also behind in Ohio. With 90 some percent of the votes counted. \n\nhttps://www.nbcnews.com/politics/2024-elections/house-results', 'created': '2024-11-09 21:47:37', 'submission_id': '1gnisw3'}
{'comment': "WE ARE SO BACK!\n\n\\- Electoral Vote \n\\- Popular Vote \n\\- Senate \n\\- And Quite Likely House of Rep\n\nHowever we must pray for unity, and for the Lord Jesus Christ to protect us all no matter what for he is the only pure truth there will ever be. We must pray that he protect President-Elect Donald Trump and JD Vance, and we must pray that the Darkness we have been living in for the past few years will fade and be replaced with the light to shine over us all.\n\nPray for your fellow Republicans, pray for the Democrats for they are all God's children as well. Pray for the children being indoctrinated into LGBT ideology, pray for everyone for even if they oppose us, we must pray for their salvation.\n\nCHRIST IS KING!", 'created': '2024-11-09 22:15:38', 'submission_id': '1gnisw3'}
{'comment': 'First order of business: Pass a bill labeling the Democratic Party a domestic terrorist organization', 'created': '2024-11-10 05:31:56', 'submission_id': '1gnisw3'}
{'comment': 'True. However, there will be a lot of pressure on Dems to create legislation addressing the issues that made races close, even if they win a seat. But taking the house will really change the game!', 'created': '2024-11-09 21:55:38', 'submission_id': '1gnisw3'}
{'comment': 'spoiler alert: we got it!!!', 'created': '2024-11-11 04:21:19', 'submission_id': '1gnisw3'}
{'comment': 'Do you want to tempt the wrath of whatever from high atop the thing?', 'created': '2024-11-09 23:10:06', 'submission_id': '1gnisw3'}
{'comment': 'I find it odd that with Trump turning everything super red, that the house fights are so close and we are not gaining a bunch of seats.', 'created': '2024-11-10 06:24:27', 'submission_id': '1gnisw3'}
{'comment': 'Seriously tho\xa0', 'created': '2024-11-09 21:26:24', 'submission_id': '1gnisw3'}
{'comment': "No. They're counting ballots with their butt cheeks.", 'created': '2024-11-09 21:36:46', 'submission_id': '1gnisw3'}
{'comment': 'And she has cataracts.', 'created': '2024-11-09 22:00:51', 'submission_id': '1gnisw3'}
{'comment': 'Yes, this count has been left up to Ethel Beavers.', 'created': '2024-11-09 21:49:01', 'submission_id': '1gnisw3'}
{'comment': 'It’s the count from Sesame Street', 'created': '2024-11-09 23:19:53', 'submission_id': '1gnisw3'}
{'comment': 'BREAKING NEWS: Democrats clinch all remaining seats in the House of Representatives. \n\nRepresentatives from all 23 remaining districts credit an influx of mail in ballots.', 'created': '2024-11-09 23:50:44', 'submission_id': '1gnisw3'}
{'comment': 'Ha ha no kidding', 'created': '2024-11-10 01:31:53', 'submission_id': '1gnisw3'}
{'comment': 'These are races that are, mostly, super close. I live in Iowa, and the house race for our southeastern district is currently separated by less than 900 votes. If I remember correctly, that one was ultra close in 2020 as well.', 'created': '2024-11-10 11:08:47', 'submission_id': '1gnisw3'}
{'comment': 'Based on their woke agenda it was always coming', 'created': '2024-11-09 22:29:30', 'submission_id': '1gnisw3'}
{'comment': 'Spaulding, get your foot off the boat!\n\nhttps://www.youtube.com/watch?v=VGpQej3o9eo', 'created': '2024-11-10 01:16:01', 'submission_id': '1gnisw3'}
{'comment': 'Arizona is being cowards', 'created': '2024-11-10 05:33:15', 'submission_id': '1gnisw3'}
{'comment': 'They’ve thought about it and decided to blame voters for being and sexist and racist. They will be moving more left and have movie stars lecture you about it', 'created': '2024-11-09 23:12:57', 'submission_id': '1gnisw3'}
{'comment': 'Why?', 'created': '2024-11-09 22:43:48', 'submission_id': '1gnisw3'}
{'comment': 'Printing out more mail in ballots', 'created': '2024-11-10 06:16:23', 'submission_id': '1gnisw3'}
{'comment': 'Republicans are in the lead of most, with over 70% already counted. Betting odds are 80% leaning towards republican', 'created': '2024-11-09 22:28:57', 'submission_id': '1gnisw3'}
{'comment': "When someone screams Praise Jesus at your rally and you tell them GTFO you're not welcome here, it's a very very bad look assuming someone that Praises Jesus is automatically against you.", 'created': '2024-11-09 22:34:32', 'submission_id': '1gnisw3'}
{'comment': 'Seeing ‘clinching’ and seeing a butthole comment this early on top made me almost spit my beer out.', 'created': '2024-11-10 08:52:57', 'submission_id': '1gnisw3'}
{'comment': 'Sounds about right. Gotta catch up with the ballots postmarked 3 days after the election. I’m a mailman, and ballots most definitely are still showing up.', 'created': '2024-11-09 23:54:43', 'submission_id': '1gnisw3'}
{'comment': 'That makes room for a new 2nd party to emerge', 'created': '2024-11-10 01:28:29', 'submission_id': '1gnisw3'}
{'comment': 'True lol', 'created': '2024-11-09 22:58:29', 'submission_id': '1gnisw3'}
{'comment': '🤞🏻🤞🏻', 'created': '2024-11-10 00:10:29', 'submission_id': '1gnisw3'}
{'comment': "Don't forget who we're dealing with and how desperate they are to holding onto power.", 'created': '2024-11-10 04:24:57', 'submission_id': '1gnisw3'}
{'comment': 'You mean like, "you\'re at the wrong rally?"', 'created': '2024-11-09 23:47:39', 'submission_id': '1gnisw3'}
{'comment': 'No seriously, what’s your thinking behind needing to reconsider?', 'created': '2024-11-09 23:00:44', 'submission_id': '1gnisw3'}
{'comment': 'Ya', 'created': '2024-11-10 01:07:08', 'submission_id': '1gnisw3'}
{'comment': 'As a republican why is god always needed in the conversation.', 'created': '2024-11-10 02:39:42', 'submission_id': '1gnisw3'}
{'comment': 'In God we trust\n\nGod Bless America\n\nOne Nation Under God', 'created': '2024-11-10 19:00:27', 'submission_id': '1gnisw3'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-09 20:10:31', 'submission_id': '1gnhfx7'}
{'comment': '“Fully independent like academia” 🤣🤣🤣', 'created': '2024-11-09 20:15:03', 'submission_id': '1gnhfx7'}
{'comment': 'So I did a little digging and found [this](https://www.asc.upenn.edu/news-events/news/public-media-can-improve-our-flawed-democracy).\n\nIt turns out they were right, public funded media is actually very common in democracies, and we are the outliers.\n\nFrom the article:\n\n"Where is the U.S. positioned in terms of democratic health and public media funding, as compared to other countries?\n\nVP: According to The Economist’s Democracy Index, the U.S. is now considered to be a “flawed democracy”. In terms of its public media funding, it is almost literally off the chart for how little it allocates towards its public media compared to other democracies around the planet. It comes out to .002 percent of Gross Domestic Product (GDP). At $465 million dollars, 2020 federal funding of U.S. public media amounted to just $1.40 per capita. Meanwhile, countries such as the UK, Norway, and Sweden spend close to $100 or more per capita toward their public media.\n \n\nAccording to your research, how can public media help strengthen democracies?\n\nVP: While our research specifically shows the correlation between strong public media systems and strong democracies, there is a growing body of research that suggests substantial social benefits from strong public media systems, including well-informed political cultures, high levels of support for democratic processes, and increased levels of civic engagement. \n \n\nWhat are some arguments against government support of public media? How do you counter these criticisms?\n\nVP: There is a common fear, especially here in the U.S., that government funding of public media creates a dangerous situation where our news organizations will become mouthpieces of the state. While state capture is a legitimate concern, many democracies around the world have figured out how to create strong safeguards to maintain public media’s independence. Moreover, our research bolsters the argument that a robust public media system is beneficial –– perhaps even essential -– for maintaining a healthy democratic society."', 'created': '2024-11-09 20:30:51', 'submission_id': '1gnhfx7'}
{'comment': 'We have state run media now.', 'created': '2024-11-09 20:56:29', 'submission_id': '1gnhfx7'}
{'comment': None, 'created': '2024-11-09 22:28:38', 'submission_id': '1gnhfx7'}
{'comment': 'Bro I remember being a six year old watching how Hugo Chavez got rid of some of the private media TV channels.\nMy parents and family were terrified, and were scared of a dictatorship.\n\nGuess what y’all, the dictatorship happened there :)', 'created': '2024-11-09 21:55:02', 'submission_id': '1gnhfx7'}
{'comment': 'They need to get over the idea that the media "produces" anything but garbage. It is literally labeled as entertainment.', 'created': '2024-11-09 21:17:34', 'submission_id': '1gnhfx7'}
{'comment': 'Man.. he’s the jonkler..', 'created': '2024-11-10 00:02:33', 'submission_id': '1gnhfx7'}
{'comment': 'the subs of the individual states are having meltdowns', 'created': '2024-11-11 04:30:18', 'submission_id': '1gnhfx7'}
{'comment': "This is similar to the chat I've just muted on facepalm", 'created': '2024-11-09 20:55:27', 'submission_id': '1gnhfx7'}
{'comment': 'Edjumacate yo’self, I ain’t got time to do it! - Lefties when they cannot win an argument.', 'created': '2024-11-10 01:31:15', 'submission_id': '1gnhfx7'}
{'comment': "Lol we have public funded media called NPR. Ohhh....wait...shouldn't we #DefundNPR???", 'created': '2024-11-09 22:46:52', 'submission_id': '1gnhfx7'}
{'comment': "OP, I have read your post and your comments. No one is right about everything, but you're pursuing this in the best way. Keep going.", 'created': '2024-11-10 16:05:04', 'submission_id': '1gnhfx7'}
{'comment': 'Got a chuckle out of me as well. Did you know the reason we focus on calculus so much in math education is because of the cold war? They needed a bunch of people who could do math for rocketry and missiles. Even the most "objective" fields like math and chemistry are driven by state interests', 'created': '2024-11-09 20:21:49', 'submission_id': '1gnhfx7'}
{'comment': 'He mentioned Orwell, and this is the Orwellian crap that fears me to the bones with the modern Left.\n\nThey are MASTERS at rhetoric to spin anything to sound like a good idea.\n\nIt takes the truly bright few (and if the truly bright were many, then all the up votes and down votes on Reddit would swap!) to restate these Leftist ideas in a neutral and more honest way....like this guy in the OP pic here.\n\nAnd of course, the bad idea has all the up votes, not due to the idea being expressed, but HOW it is expressed.\n\nLiberals are just in this constant car salesman mode...but instead of cars their ideology.\n\nUsually, a good idea doesn\'t need sneaky euphemisms to sound like a good idea.\n\nWhat\'s funny I think it was Orwell too who said, "It takes education to make an otherwise smart individual to believe in the stupidest of ideas".', 'created': '2024-11-09 22:23:10', 'submission_id': '1gnhfx7'}
{'comment': 'A bubble theyve created for themselves. to exist independently an decide if they dont win democracy will end?democracy lives because you lost. the people have spoken', 'created': '2024-11-10 09:29:07', 'submission_id': '1gnhfx7'}
{'comment': "That's a real leftist laugher", 'created': '2024-11-10 21:15:44', 'submission_id': '1gnhfx7'}
{'comment': 'I never disagreed with him on that end. They do exist, and they are known to be incredibly biased. Not to mention the right to free speech is not something that is actually protected anywhere else in the world other than the USA.', 'created': '2024-11-09 20:38:19', 'submission_id': '1gnhfx7'}
{'comment': 'And that would be?', 'created': '2024-11-09 21:02:05', 'submission_id': '1gnhfx7'}
{'comment': 'Confirmation bias, pure and simple', 'created': '2024-11-10 22:00:20', 'submission_id': '1gnhfx7'}
{'comment': "NPR is a non profit organization who's parent organization receives federal grant money. That are not a state run media", 'created': '2024-11-09 23:07:38', 'submission_id': '1gnhfx7'}
{'comment': 'Learned something new today. Thank you 😊', 'created': '2024-11-10 11:26:20', 'submission_id': '1gnhfx7'}
{'comment': "But don't we agree that the corporate media is very biased as well? I wonder if more public funding for media would result in a counter to that bias. Real journalists who only want to inform sounds like a great thing.", 'created': '2024-11-09 20:58:14', 'submission_id': '1gnhfx7'}
{'comment': 'CNN, MSNBC, Washington Post, probably all of them. They all have 1 thing in common, they have a couple of token “conservatives” in an effort to make themselves look inclusive of all beliefs. Ever watched The View? With their token conservative that voted democrat this year? The deep state has ran media so long that the media doesn’t see it’s wrong. When a CIA Agent blows a whistle the state run media suddenly reports that these people are mentally unstable and have been fired from the CIA. The agent will write a book that gets demonetized and pulled from shelves. Freedom of speech is an illusion. \nHopefully Trump can do something about it- if the secret service does their job for him to live long enough to drain the swamp.', 'created': '2024-11-09 21:13:40', 'submission_id': '1gnhfx7'}
{'comment': "Corporate media is allowed to be biased, that's their perogative. There free speech is protected whether or not they are wrong. People have bias, that bias would project. As it would go with government run media, those people would be hired and have bias. They do what they are told or they lose their job. This has been shown not to work to the way people think it will. In a perfect world every one would be truthful all the time and put aside bias.", 'created': '2024-11-09 21:07:16', 'submission_id': '1gnhfx7'}
{'comment': 'Whoever pays a corporations bills is who owns them. Better a bunch of corporations compete against each other with unique backers and positions then the media spit out just the party line 100% of the time. Sure you can say that happens now but independent journalism and media beat the corporations showing the strength of a free market in media.', 'created': '2024-11-10 05:32:46', 'submission_id': '1gnhfx7'}
{'comment': "Those are corporate run media. While those definetly have bias and leans one way or another, state run media would be if the the government federally funded it's own media network.", 'created': '2024-11-09 21:16:37', 'submission_id': '1gnhfx7'}
{'comment': "Bias is inherent, that's very true. I think you're misunderstanding the difference between state-run media and state-funded media though. State-run media is an arm of the government, but state funded media is usually a non-profit and independent organization. Im begining to think that corporate media would serve the interests of corporations, government media would serve the interests of the government, and public media would serve the interests of the public. Talk me down from this ledge lol", 'created': '2024-11-09 21:33:02', 'submission_id': '1gnhfx7'}
{'comment': 'The government may not fund them- but the government definitely runs them. There is a team (CIA) I imagine that tells them what they can and cannot report. The same people that called the celebrities to come out and support Harris. It started with Operation Mocking Bird and hasn’t ended since. Hell- it was probably in effect before that.', 'created': '2024-11-09 21:19:56', 'submission_id': '1gnhfx7'}
{'comment': "State funded is the same as state run. Non profit news organizations already exist, like the associated press. Non profit is a silly term because they still make money, the heads still get a fat check. Not saying they shouldn't being the ceo of a non profit. But they can apply for grants from the government, but it's not a full funding.", 'created': '2024-11-09 21:51:55', 'submission_id': '1gnhfx7'}
{'comment': 'NPR is state funded and is a perfect example of complete bias. I think the government should stay out of the news and information business. To that end it is time to remove federal funding for NPR and let hypocrisy die in darkness', 'created': '2024-11-10 21:21:01', 'submission_id': '1gnhfx7'}
{'comment': "It's very apparent when they all have the same talking points after their morning meeting", 'created': '2024-11-09 21:41:31', 'submission_id': '1gnhfx7'}
{'comment': "I'm not advocating for full funding. And state funded is not the same as state run. Would you consider PBS state run?", 'created': '2024-11-09 21:59:14', 'submission_id': '1gnhfx7'}
{'comment': "No, PBS is not funded by the government. It is a non profit with corporate sponsors and donations which leads to the agenda of those corporate sponsors. If the government is going to fully fund something, they are going to fully run it. I can't think of something that is 100% funded by the government that isn't controlled by them", 'created': '2024-11-09 22:06:40', 'submission_id': '1gnhfx7'}
{'comment': "Again, I'm not advocating for full government funding, im just thinking more would be better. And [PBS is funded by the government,](https://www.pbs.org/newshour/support/frequently-asked-questions-about-support#:~:text=The%20Corporation%20for%20Public%20Broadcasting,PBS%20to%20support%20national%20programming.) corporate sponsors, and individual donors. I think we need to reassess what it is we're debating. I'm thinking more public funding for independent media would be better than nearly all funding coming from corporations. What are you thinking?", 'created': '2024-11-09 22:15:05', 'submission_id': '1gnhfx7'}
{'comment': 'It is not fully funded by the govt, that goes to overall company that then dishes it out to all its companies. I do not support the government running its own media outlet. I do not support the government giving money to independent media companies. They should stay out of most things.', 'created': '2024-11-09 22:28:43', 'submission_id': '1gnhfx7'}
{'comment': "Oh my lord this is a good conversation. Not used to seeing two healthy adults debating a disagreement on Reddit!\n\nOf course, it's under the Republican sub...oh well, hopefully the average folk will want to emulate this.", 'created': '2024-11-09 22:30:15', 'submission_id': '1gnhfx7'}
{'comment': "I never said they were fully funded by the government. I don't support the government running its own media outlet either. So do you think that that the American people benefit from non-corporate media? Are independent news organizations a good thing that we should support?", 'created': '2024-11-09 22:38:50', 'submission_id': '1gnhfx7'}
{'comment': "I take offense to that. I'm average folk as hell thankyouverymuch. Lol", 'created': '2024-11-09 22:42:42', 'submission_id': '1gnhfx7'}
{'comment': 'You ruined it.', 'created': '2024-11-10 05:42:10', 'submission_id': '1gnhfx7'}
{'comment': 'Yes, I think independent news organizations are a good thing.', 'created': '2024-11-09 22:48:46', 'submission_id': '1gnhfx7'}
{'comment': 'Haha, average or not, I just am happy that it looks like the stupid people are going to get out of power.', 'created': '2024-11-10 00:29:57', 'submission_id': '1gnhfx7'}
{'comment': "So I recently heard someone say that in a democratic society the word 'government ' should more or less be synonymous with 'the will of the people'. That got me thinking. If you and I both think independent media is a good thing, why should we not want our government to support independent media. It seems to me that the staunchest critic of government funding going to independent media would be someone who doesn't like independent media, or someone who thinks media cannot be truly independent if it accepts government funding. I think you fall into the latter category.", 'created': '2024-11-09 22:59:15', 'submission_id': '1gnhfx7'}
{'comment': "Yes, the govt should keep it's hands out of independent organizations as a whole, but at that point it would just be for profit organizations lol", 'created': '2024-11-09 23:10:46', 'submission_id': '1gnhfx7'}
{'comment': 'I think there are assurances that can be put in place for organizations to maintain their independence while accepting government grants. Like if we demand our tax dollars be used to fund independent journalism, and that funding not be taken away when they expose government corruption?', 'created': '2024-11-09 23:15:56', 'submission_id': '1gnhfx7'}
{'comment': "That would require things put in place by the government. But no, I don't want my taxes going to any media outlet regardless", 'created': '2024-11-09 23:41:08', 'submission_id': '1gnhfx7'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-09 19:41:54', 'submission_id': '1gngt81'}
{'comment': 'And yet we are the threat to democracy lol', 'created': '2024-11-09 19:46:37', 'submission_id': '1gngt81'}
{'comment': 'Finish Milton’s Job is actually insane', 'created': '2024-11-09 19:51:20', 'submission_id': '1gngt81'}
{'comment': 'Do these people not get that hurricanes are DeSantis’ bread and butter? Every time Florida gets hit by one, DeSantis goes out and takes charge, helps everyone quickly, and Florida turns even more red.', 'created': '2024-11-09 20:01:19', 'submission_id': '1gngt81'}
{'comment': 'There needs to be a study done on mental health connection to being a democrat. There has to be a correlation.', 'created': '2024-11-09 20:04:34', 'submission_id': '1gngt81'}
{'comment': 'Bro actually on his way to vote Trump', 'created': '2024-11-09 19:57:49', 'submission_id': '1gngt81'}
{'comment': 'This is disgusting. The state of Louisiana has voted red for a long time, would they have been wishing for Katrina to do the same back in 05 had that been an election year? And they say we are the hateful ones', 'created': '2024-11-09 20:04:28', 'submission_id': '1gngt81'}
{'comment': "I get it. You're disappointed, sad and kind of dejected and hopeless now. Vent away, blow off steam! But can you find it in your tolerant, joyful self to not HATE and wish ill will upon innocent people? The rain falls equally on the righteous and the evil, ya know!", 'created': '2024-11-09 20:25:12', 'submission_id': '1gngt81'}
{'comment': 'The question really comes down to are these kinds of people mentally capable enough to vote?\xa0', 'created': '2024-11-09 19:51:29', 'submission_id': '1gngt81'}
{'comment': 'The internet has allowed them to be comfortable with saying stupid shit like that . That’s unacceptable especially when people have lost their lives and properties .', 'created': '2024-11-09 20:27:43', 'submission_id': '1gngt81'}
{'comment': 'And when JD is president for 8 years they will be just as shocked as this election. Classless party.', 'created': '2024-11-09 20:06:00', 'submission_id': '1gngt81'}
{'comment': 'These fuckers are sick. No doubt about it.', 'created': '2024-11-09 20:33:07', 'submission_id': '1gngt81'}
{'comment': 'We seriously need to start meticulously keeping a record of this kinda shit. There is sooooo much of this kinda garbage all over the internet and MSM right now, compile it and store it. Then we can data dump it all over any time they attempt push the ridiculous narrative that Reps are violent, call for violence, insight, etc...', 'created': '2024-11-09 20:20:45', 'submission_id': '1gngt81'}
{'comment': "It's on track to hit Mexico\xa0", 'created': '2024-11-09 20:05:28', 'submission_id': '1gngt81'}
{'comment': 'The party of democracy and tolerance! 🥰', 'created': '2024-11-09 21:18:18', 'submission_id': '1gngt81'}
{'comment': 'I’ve never witnessed conservatives wishing death upon liberals like this. It’s insanity. And they think that republicans are apart of a cult…', 'created': '2024-11-09 22:18:37', 'submission_id': '1gngt81'}
{'comment': 'The hate in some democrats heart runs deep.', 'created': '2024-11-09 20:38:57', 'submission_id': '1gngt81'}
{'comment': 'Who knew that democrats were this vile and evil just because they didnt get who they wanted in office', 'created': '2024-11-09 20:39:59', 'submission_id': '1gngt81'}
{'comment': 'Why is anyone surprised that liberals are scumbags? They always have been it’s just more visible now.', 'created': '2024-11-09 20:42:16', 'submission_id': '1gngt81'}
{'comment': '“Party of tolerance”', 'created': '2024-11-09 21:17:08', 'submission_id': '1gngt81'}
{'comment': 'Dems are sick and demented end of story.', 'created': '2024-11-09 22:29:15', 'submission_id': '1gngt81'}
{'comment': "To be fair I've heard similair jokes cracked ablut California wildfires", 'created': '2024-11-09 20:39:46', 'submission_id': '1gngt81'}
{'comment': 'Bro are they seriously still complaining like a bunch of pussies ? They can’t just accept it huh', 'created': '2024-11-09 20:58:38', 'submission_id': '1gngt81'}
{'comment': '🤣', 'created': '2024-11-09 19:59:38', 'submission_id': '1gngt81'}
{'comment': 'OMG. This is awful', 'created': '2024-11-09 20:08:24', 'submission_id': '1gngt81'}
{'comment': 'Oh great another hurricane? I know they get them a lot but three at the end of the year seems crazy', 'created': '2024-11-09 20:35:21', 'submission_id': '1gngt81'}
{'comment': "Isn't the wishing for deaths of your political opponents the spark opposite of democracy? I mean, hateful pundits are equating deaths of jews and other israelis to Democracy. This is sick.", 'created': '2024-11-09 21:15:49', 'submission_id': '1gngt81'}
{'comment': 'Showing their true colors expected', 'created': '2024-11-09 21:20:36', 'submission_id': '1gngt81'}
{'comment': 'So incredibly digusting and embarrassing.', 'created': '2024-11-09 21:48:38', 'submission_id': '1gngt81'}
{'comment': 'You seem to forget the DNC is the party of compassion, civility, peace, unity. and, hope. lol.', 'created': '2024-11-09 22:00:51', 'submission_id': '1gngt81'}
{'comment': 'Sickening', 'created': '2024-11-09 22:11:15', 'submission_id': '1gngt81'}
{'comment': 'That is so sad, I hope that these people will eventually come to their senses.', 'created': '2024-11-09 22:34:26', 'submission_id': '1gngt81'}
{'comment': 'Theyre a demented culture of lunacy', 'created': '2024-11-09 23:27:50', 'submission_id': '1gngt81'}
{'comment': 'now, if all those people would go outside and collectively protest, that would be amazing. Unfortunately, most of them dont know what the outdoors even are.', 'created': '2024-11-10 00:55:46', 'submission_id': '1gngt81'}
{'comment': 'I know we should be showing these parasites compassion. Turn the other cheek. But we need a follow up to Sandy and a follow up to Harvey, we need deviation in NY and CA, so Trump can come in, do what Biden and Harris failed to do, and show at least ONE brain dead liberal that they have been lied to about Trump, the GOP and everything else.', 'created': '2024-11-10 01:26:58', 'submission_id': '1gngt81'}
{'comment': "I live in Florida so I take this personally. As long as it doesn't mess with my knee replacement surgery Monday I'm fine.", 'created': '2024-11-10 01:43:54', 'submission_id': '1gngt81'}
{'comment': 'I really thought the 2016 election showed the world how awful the left is. \nAfter the 2016 election, it got worse and we all saw that they are worse humans than we imagined. \n\nThese next four years will hopefully drive more people away from the left.', 'created': '2024-11-10 02:24:46', 'submission_id': '1gngt81'}
{'comment': "Let's hear it for the side of peace and tolerance, ladies and gentlemen👏👏👏", 'created': '2024-11-10 02:40:07', 'submission_id': '1gngt81'}
{'comment': 'I really don\'t understand it. For being the party of "tolerance and love" they sure are a bunch of demented and sick assholes. I go to school and feel like I\'d be canceled if I gave my opinion. I secretly celebrated the election results while everyone else on social media posted about how the world is going to end now, lol.', 'created': '2024-11-10 03:34:58', 'submission_id': '1gngt81'}
{'comment': 'That guy has a Palestinian flag....\n\nWhile he supports the party which has been providing Israel with a green light to carry out desecration rather than trying to bring peace like Trump has been advocating for. The irony is insane.', 'created': '2024-11-10 04:42:02', 'submission_id': '1gngt81'}
{'comment': 'I will never support the democrats. NEVER', 'created': '2024-11-10 04:42:22', 'submission_id': '1gngt81'}
{'comment': 'What in the actual FUCK is wrong with those "people"?', 'created': '2024-11-10 04:49:21', 'submission_id': '1gngt81'}
{'comment': 'These people are disgusting.', 'created': '2024-11-10 07:16:37', 'submission_id': '1gngt81'}
{'comment': 'May the curse reverse back to them...', 'created': '2024-11-10 08:18:02', 'submission_id': '1gngt81'}
{'comment': 'They make more republicans by doing this.', 'created': '2024-11-10 08:46:47', 'submission_id': '1gngt81'}
{'comment': 'Bother sc and fl voted red because the current office said, “you lost your house and everything you had? Oh no we feel deeply sorry, please apply for $700 and we hope that really makes it up to you!”', 'created': '2024-11-10 09:35:33', 'submission_id': '1gngt81'}
{'comment': 'Absolutely mind boggling that the democrats claim to be a party of love, acceptance, and inclusivity yet wish death, harm, and hardship on those who voted differently than them.', 'created': '2024-11-10 10:10:30', 'submission_id': '1gngt81'}
{'comment': 'I hope they realize Trump isn’t in office till January 20th. Biden and their beloved Kamala are still in charge.', 'created': '2024-11-10 12:21:57', 'submission_id': '1gngt81'}
{'comment': 'They are so cruel and spiteful. Nasty people.', 'created': '2024-11-10 13:39:26', 'submission_id': '1gngt81'}
{'comment': 'They are fucking crazy I hope they all get arrested for defamation with all the shit they posted bout trump', 'created': '2024-11-10 15:10:40', 'submission_id': '1gngt81'}
{'comment': "Aaand they wonder why they lost, i couldn't imagine a sane person wanting to align with these emotionally unstable children.", 'created': '2024-11-10 16:19:38', 'submission_id': '1gngt81'}
{'comment': 'The party of peace, love, and acceptance', 'created': '2024-11-10 16:30:54', 'submission_id': '1gngt81'}
{'comment': 'They don’t call them Demonrats for nothing', 'created': '2024-11-09 21:16:01', 'submission_id': '1gngt81'}
{'comment': "The wildfires in Cali were God's judgment.\xa0", 'created': '2024-11-09 19:55:25', 'submission_id': '1gngt81'}
{'comment': 'These people are evil', 'created': '2024-11-09 21:02:46', 'submission_id': '1gngt81'}
{'comment': 'Yikes these ppl have a deep abyss in there soul lol', 'created': '2024-11-09 21:08:06', 'submission_id': '1gngt81'}
{'comment': "Appearantly the only place you can find civil left wing now is r/stupidol or it just that i don't visit it often enough", 'created': '2024-11-10 07:42:54', 'submission_id': '1gngt81'}
{'comment': 'Wow. Just when I think democrats can’t get any worse…', 'created': '2024-11-11 02:17:42', 'submission_id': '1gngt81'}
{'comment': 'Did y’all hear about the dad who killed himself, his two kids, and his wife after Trump got elected?????…… they truly think it’s the end of the world', 'created': '2024-11-11 02:17:48', 'submission_id': '1gngt81'}
{'comment': 'Oh my lord, the demons have been coping so hard!', 'created': '2024-11-09 23:58:44', 'submission_id': '1gngt81'}
{'comment': 'You fools. You only make us stronger.\n\nHelene hit NC and the feds handled the response. The response was a complete shitshow. Milton hit FL and DeSantis told the feds to pound sand. Way better response.\n\nAll Rafael will do is make DeSantis prove once again that Trump should consider making him head of FEMA.', 'created': '2024-11-10 00:47:52', 'submission_id': '1gngt81'}
{'comment': 'Democrats are an evil dangerous animal. What do we do to dangerous animals?', 'created': '2024-11-10 18:45:58', 'submission_id': '1gngt81'}
{'comment': "I've been extremely disappointed with them. Now is a time for unity and love between neighbors", 'created': '2024-11-09 20:39:59', 'submission_id': '1gngt81'}
{'comment': 'Narcissistic projection', 'created': '2024-11-09 21:10:13', 'submission_id': '1gngt81'}
{'comment': 'Idk if people noticed but everything Democrats criticize about people, is exactly who they are.\n\nIronic or hypocritical doesn’t even do a justice to how messed up it is with them.', 'created': '2024-11-10 05:20:36', 'submission_id': '1gngt81'}
{'comment': 'From a pro-Palestinian too. I wonder how they’d feel about people telling Israel to finish the job.', 'created': '2024-11-09 20:00:14', 'submission_id': '1gngt81'}
{'comment': 'Insane. Evil. Unhinged....just a few things that come to mind.', 'created': '2024-11-09 23:40:37', 'submission_id': '1gngt81'}
{'comment': 'As a Floridan I love DeSantis !', 'created': '2024-11-09 20:33:03', 'submission_id': '1gngt81'}
{'comment': "Don't need a study for that, just go on WaPo and see all the articles saying a trump presidency will be the handmaid's tale x 30s Germany. They're scared because the big media does nothing but produce horror-porn for almost a decade now", 'created': '2024-11-09 20:41:29', 'submission_id': '1gngt81'}
{'comment': 'Right if you dont flip to over to republican by 25', 'created': '2024-11-09 21:34:41', 'submission_id': '1gngt81'}
{'comment': 'They did & found that liberals were much more likely to be depressed.', 'created': '2024-11-10 04:23:31', 'submission_id': '1gngt81'}
{'comment': 'It’s mainly the young that have been fed a steady diet of digital liberal slop since they were little and far too young to be on the internet.', 'created': '2024-11-10 01:29:46', 'submission_id': '1gngt81'}
{'comment': "I let myself be disappointed with the results that night, and when I woke up on November 6th, it was time to congratulate my fellow Americans. You can't love your country only when you win", 'created': '2024-11-09 20:43:07', 'submission_id': '1gngt81'}
{'comment': "No and there should be no more anonymity on the Internet and everyone's social media posts and comments should be public record. It's too easy for these fucks to spread hate, death threats and misinformation and they need to start being held accountable. If these people were exposed to the world then I'd bet most of them would think twice.", 'created': '2024-11-09 20:47:35', 'submission_id': '1gngt81'}
{'comment': 'And then Tulsi for 8 years after that', 'created': '2024-11-10 06:02:51', 'submission_id': '1gngt81'}
{'comment': 'That’s what I’m going to start doing. Anytime I see a mass of people acting like this I’m going to post it here.', 'created': '2024-11-09 20:31:05', 'submission_id': '1gngt81'}
{'comment': 'Here’s the big difference between a hurricane and a wild fire:\nA hurricane is an act of God that no man can stop or hinder. No matter what they showed in that stupid “Twisters” movie, there is no chemical a human can fling into a cyclone to get it to stop. The only thing humans can do to not deal with hurricanes is “not live close to the coast”\nAnd as we saw with Helene, even that is hit or miss. \n\nBut the wild fires? Those are COMPLETELY preventable. For DECADES, the people in charge of clearing dry kindling, of keeping the forests and woods clear of the fuel that a lighting strike or idiot with fireworks needs to set a blaze have been forbidden from doing their job. Controlled burns, something that nature NEEDS to help new life grow, have been all but BANNED in CA\n\nSo it’s literally like a Wiley E Coyote cartoon where he stack a ton of explosives, RR (the lightning bolt or idiot with a cigarette) comes and sets the fuse off, and Wiley looks shocked when all his powder kievs explode on him. \n\nFlorida and the South East don’t get to stop hurricanes. The south west FOR SURE can stop forest fires.', 'created': '2024-11-10 01:38:05', 'submission_id': '1gngt81'}
{'comment': 'I just looked it up. This one is headed straight for Mexico, and isn’t project to go above tropical storm.', 'created': '2024-11-10 01:32:16', 'submission_id': '1gngt81'}
{'comment': 'Regardless of how awful they are to us, saying stuff like this creates an illusion for them that they have some kind of moral high ground.', 'created': '2024-11-09 19:58:14', 'submission_id': '1gngt81'}
{'comment': 'No need to stoop to their level.... Comments like this will be highlighted and generalized that ALL Trump supporters think this. A few bad actors with poor judgement on Jan 6th has been non stop bad press for all Trump supporters.', 'created': '2024-11-09 20:02:15', 'submission_id': '1gngt81'}
{'comment': 'THIS', 'created': '2024-11-09 19:56:32', 'submission_id': '1gngt81'}
{'comment': 'They can’t just accept that democracy did happen. People are sick of them. They just refuse to see that all their “love and acceptance” is vile hatred. Murder unborn children, support countries that murder women and children to only lose a war then rinse repeat. They support corporate owned offices and talk about “eating the rich”. They are so bass-ackwards and will never see it. We just continue praying for peace and unity amongst all of God’s creation.', 'created': '2024-11-09 20:55:21', 'submission_id': '1gngt81'}
{'comment': 'Very true, we got to just start moving forward now that we have the means to do so, I definitely took a day to celebrate though', 'created': '2024-11-09 21:56:59', 'submission_id': '1gngt81'}
{'comment': 'The worst thing is these are most likely the ones who refused to vote because something, something, Palestine.', 'created': '2024-11-10 01:45:05', 'submission_id': '1gngt81'}
{'comment': None, 'created': '2024-11-10 15:01:06', 'submission_id': '1gngt81'}
{'comment': 'I wish Israel would finish the job.', 'created': '2024-11-09 20:58:36', 'submission_id': '1gngt81'}
{'comment': "They're only anti semitic because it's trendy. They don't know anything, that's why it's always the most stupidest/hateful people with that thing in their name/bio.", 'created': '2024-11-09 21:16:56', 'submission_id': '1gngt81'}
{'comment': 'As a Californian, I wish we had a DeSantis!', 'created': '2024-11-09 23:29:03', 'submission_id': '1gngt81'}
{'comment': 'And they don’t see the irony that the media being so critical of Trump, as well as their ability to cry and scream and shave their heads and wish death upon the right is *literal real time proof* of how free they are and how many rights they have in this country. \n\nIf Trump was who they say he is, there would *only* be state owned media, which would 100% praise him. And if he was who they say he is, these dimwits would be begging, freaking begging to go back to what they once thought was oppression and fascism. \n\nI just…..I cannot believe the state of these people’s brains.', 'created': '2024-11-10 02:44:50', 'submission_id': '1gngt81'}
{'comment': 'The old saying goes “if you’re not a democrat in your 20s you don’t have a heart, if you’re not a republican in your 30s you don’t have a brain”', 'created': '2024-11-09 21:37:27', 'submission_id': '1gngt81'}
{'comment': 'https://americanaffairsjournal.org/2023/03/how-to-understand-the-well-being-gap-between-liberals-and-conservatives/', 'created': '2024-11-10 04:27:24', 'submission_id': '1gngt81'}
{'comment': "I wouldn't go that far. Anything like that would inevitably be used to target conservatives too once a new party is in power", 'created': '2024-11-09 21:28:48', 'submission_id': '1gngt81'}
{'comment': "The differences you raise are insignificant. The origin/source/circumstances or even the location of the disaster bears no weight on the fact that it's unbecoming to wish death and/or mass destruction on an entire population because of their political association.", 'created': '2024-11-10 02:04:59', 'submission_id': '1gngt81'}
{'comment': "You can't have the moral high ground when you think at sea level.", 'created': '2024-11-09 21:05:45', 'submission_id': '1gngt81'}
{'comment': 'Don’t forget FEMA employees actively choosing to skip the homes of Trump supporters.', 'created': '2024-11-09 22:17:50', 'submission_id': '1gngt81'}
{'comment': 'Agreed 100%', 'created': '2024-11-09 21:10:43', 'submission_id': '1gngt81'}
{'comment': 'As you should. This was the biggest W for either party in decades', 'created': '2024-11-09 21:58:13', 'submission_id': '1gngt81'}
{'comment': "I'm glad we can both unite in our distaste for those who shirk their civic duty", 'created': '2024-11-10 01:47:50', 'submission_id': '1gngt81'}
{'comment': 'Or they’re foreign and from absolutely corrupt countries like that commenter from Greece. I wonder if they know anything about the crooked politics and horrible economic situation their own country has been in for decades lol. Ah yes “love from Greece” the most failed country in the EU that has the highest amounts of unemployment.\xa0', 'created': '2024-11-16 17:46:03', 'submission_id': '1gngt81'}
{'comment': "It is a hard time for them. There hasn't been real republican leadership in a long time. They're scared because they've been lied to. It just takes time. I especially feel bad for women, I know there's so much propaganda that plays directly into our worst fears, like miscarriage or abuse", 'created': '2024-11-10 15:04:36', 'submission_id': '1gngt81'}
{'comment': 'These losers have been fed a diet of digital liberal slop since they were barely 2. “Welcome to the Internet” is more on point than anyone wants to admit.', 'created': '2024-11-10 01:28:47', 'submission_id': '1gngt81'}
{'comment': 'It’s hilarious cause Hitler was anti-semitic. \n\nAnd apparently Trump is Hitler’s reincarnate? Shit’s so 🔁 with Democrats its insane.', 'created': '2024-11-10 05:22:41', 'submission_id': '1gngt81'}
{'comment': 'Exactly and their pea brains don’t even understand any\nOf it lol', 'created': '2024-11-09 22:17:50', 'submission_id': '1gngt81'}
{'comment': None, 'created': '2024-11-10 06:54:38', 'submission_id': '1gngt81'}
{'comment': "Well, most of these people were very young when trump was first in office, they don't have good memory of it, since it was also covid. They are scared of the future more than anything. And to be fair, media literacy is a problem regardless of political party. The corpo media has just gotten better at presenting itself as objective truth. My biggest hope is that Trump's presidency is absolutely excellent, and proves their worst fears wrong", 'created': '2024-11-10 02:48:12', 'submission_id': '1gngt81'}
{'comment': 'That and most of the fires are in the mountains which is a very conservative part of CA, only the coast is blue.', 'created': '2024-11-10 06:04:12', 'submission_id': '1gngt81'}
{'comment': 'This needs to be upvoted more.', 'created': '2024-11-09 22:43:19', 'submission_id': '1gngt81'}
{'comment': 'Biggest win since 88', 'created': '2024-11-10 18:55:29', 'submission_id': '1gngt81'}
{'comment': "No excuse not to vote. I have one rule, you don't get to complain if you don't vote.", 'created': '2024-11-10 01:48:45', 'submission_id': '1gngt81'}
{'comment': "Greece has officially outdone Italy in corruption, bad economic policies, etc. Worst thing for Europe is they already allowed them into the Euro so it's getting torn down by a country that can't get its shit together.", 'created': '2024-11-16 17:49:15', 'submission_id': '1gngt81'}
{'comment': None, 'created': '2024-11-10 15:09:34', 'submission_id': '1gngt81'}
{'comment': 'I mean, anti semites are calling Jews nazis. ;-; Z e r o s e n s e', 'created': '2024-11-10 06:26:21', 'submission_id': '1gngt81'}
{'comment': "It will turn once we put an end to the no voter ID crap. And when we get the ground teams in non swing states to make sure shenanigans aren't happening with the ballots.\n\nCalifornia was red before, it'll be red again.", 'created': '2024-11-10 09:29:19', 'submission_id': '1gngt81'}
{'comment': 'True. We just need to be patient and let the high emotions settle.', 'created': '2024-11-10 02:50:24', 'submission_id': '1gngt81'}
{'comment': 'Yea the fact that people aren’t discussing it means they are liberal. Only they could be so outright okay with segregation.', 'created': '2024-11-10 00:08:40', 'submission_id': '1gngt81'}
{'comment': "That's what my dad always said. We'd go together and cancel out each other's votes every election day, great family tradition 😆", 'created': '2024-11-10 01:51:59', 'submission_id': '1gngt81'}
{'comment': "That's everyone though. We get siloed and atomized by algorithms. Blame not them, blame the big tech and media corporations who made these tools that drive us apart. When formerly well-trusted like agencies like NYT or WaPo slowly become rags, it's like a frog in a pot of water. All people are prone to bias", 'created': '2024-11-10 15:11:50', 'submission_id': '1gngt81'}
{'comment': 'It’s good yall were able to do that without removing eachother from your lives, that’s how it should be', 'created': '2024-11-10 18:56:20', 'submission_id': '1gngt81'}
{'comment': None, 'created': '2024-11-10 15:24:18', 'submission_id': '1gngt81'}
{'comment': "Sure but there's opencoursework for free from MIT but not everyone knows how to solve differential equations", 'created': '2024-11-10 15:26:10', 'submission_id': '1gngt81'}
{'comment': None, 'created': '2024-11-10 15:31:41', 'submission_id': '1gngt81'}
{'comment': "Math might be complicated, but analyzing your core beliefs critically? That's about the hardest activity one can do. Most people aren't capable of considering that the very cores of who they are as a person is wrong or misguided", 'created': '2024-11-10 15:33:30', 'submission_id': '1gngt81'}
{'comment': None, 'created': '2024-11-10 15:34:33', 'submission_id': '1gngt81'}
{'comment': "Most people don't, my friend. Regardless of political party", 'created': '2024-11-10 15:35:16', 'submission_id': '1gngt81'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-09 14:25:56', 'submission_id': '1gna20f'}
{'comment': 'It’s gone bananas. All I see on my feed are people screaming , crying , threatening violence, spreading lies , threatening break-ups and divorces . Like jeez, what the fuck is going on with these people ? When Biden won, I was mad but I didn’t go bat-shit crazy. But it was a miserable 4 years .', 'created': '2024-11-09 15:08:53', 'submission_id': '1gna20f'}
{'comment': 'Trump derangement syndrome is on the rise among the democrats', 'created': '2024-11-09 14:57:38', 'submission_id': '1gna20f'}
{'comment': 'It’s nice to finally have a president. And he’s hasn’t even moved back in yet', 'created': '2024-11-09 15:31:00', 'submission_id': '1gna20f'}
{'comment': "I love he's not even in office yet they still have 3mo of this bs going on, yet actions are already happening.", 'created': '2024-11-09 15:22:53', 'submission_id': '1gna20f'}
{'comment': 'They are so fucking terrified of him haha. Amazing what happens when you have a strong leader.', 'created': '2024-11-09 14:36:44', 'submission_id': '1gna20f'}
{'comment': 'I’m so happy 🇺🇸', 'created': '2024-11-09 16:06:36', 'submission_id': '1gna20f'}
{'comment': 'Are any of these inaccurate? I want to send to my liberal brother, but I just know he’s going to say something about the “term limits” one because Trump is with Pence in that photo.', 'created': '2024-11-09 15:59:27', 'submission_id': '1gna20f'}
{'comment': "It's pure gold. Still not tired of it", 'created': '2024-11-09 22:28:07', 'submission_id': '1gna20f'}
{'comment': 'Watch Trump ending a war in Ukraine before even becoming officially President. Then Biden trying to claim that he did it 😂', 'created': '2024-11-09 18:03:57', 'submission_id': '1gna20f'}
{'comment': 'Thank you Joe Biden for getting Hamas to surrender and Russia to look for peace 😤😤😤', 'created': '2024-11-09 16:18:18', 'submission_id': '1gna20f'}
{'comment': 'They’re making it Trumps fault he won 😂 I’m kinda enjoying the meltdown', 'created': '2024-11-10 00:52:33', 'submission_id': '1gna20f'}
{'comment': 'The Trump Effect is indeed insane. Suddenly, my cryptos went ballistic immediately when he was declared the WINNER 🏆🇺🇸🫡💪', 'created': '2024-11-09 18:32:55', 'submission_id': '1gna20f'}
{'comment': "Amazon delayed my trump flag, let's go!!!!!!", 'created': '2024-11-09 19:09:40', 'submission_id': '1gna20f'}
{'comment': 'Great post.', 'created': '2024-11-09 15:45:03', 'submission_id': '1gna20f'}
{'comment': "So as someone with feet in both camps, it's mostly just an algorithm pushing the extreme takes from the loosing side, in 2020 there was the same reaction from the right, it's just people don't see it as much based on their bubbles. But in both cases it's just the few very loud people causing a stink about something that didn't go their way.", 'created': '2024-11-10 05:32:43', 'submission_id': '1gna20f'}
{'comment': 'Putin offering to talk it out is the most interesting thing for me', 'created': '2024-11-10 13:17:19', 'submission_id': '1gna20f'}
{'comment': 'AMERICAN PRIDE!', 'created': '2024-11-10 16:28:27', 'submission_id': '1gna20f'}
{'comment': 'This is why.', 'created': '2024-11-09 14:34:07', 'submission_id': '1gna20f'}
{'comment': 'Here\'s the rundown of exactly what I did when Biden won the election:\n\n1: I said, "well, fuck." \n\n2: I went to bed, got up in the morning and went to work. \n\nRepeated step 2 for the next 3.75 years.', 'created': '2024-11-09 19:09:28', 'submission_id': '1gna20f'}
{'comment': 'There were people who were just as bat-shit when Biden won, not to mention people who still won’t admit he won. The bad actors are always louder and more visible, it’s not the whole party.', 'created': '2024-11-10 10:27:35', 'submission_id': '1gna20f'}
{'comment': 'Did you forget the part where a whole bunch of you stormed the capital??', 'created': '2024-11-09 23:40:12', 'submission_id': '1gna20f'}
{'comment': 'There’s a true mental health issue that needs to be addressed by the Democratic Party. They’ve brainwashed these people so badly they think their life doesn’t matter anymore and they have no future.', 'created': '2024-11-09 16:04:41', 'submission_id': '1gna20f'}
{'comment': 'I think Trump winning the popular vote shows that it is NOT on the rise, just a very…very vocal minority.', 'created': '2024-11-09 16:26:35', 'submission_id': '1gna20f'}
{'comment': "Yes , and they'll try for the next four years to screw it all up.\n\nI hope the Republicans win the house.", 'created': '2024-11-09 15:41:49', 'submission_id': '1gna20f'}
{'comment': 'I love it and they are so brainwashed by the mainstream media', 'created': '2024-11-09 18:32:23', 'submission_id': '1gna20f'}
{'comment': 'It’s real for sure. Browsing through several subs and they are still salty.', 'created': '2024-11-09 22:01:03', 'submission_id': '1gna20f'}
{'comment': 'Always has been for the last 8 years', 'created': '2024-11-09 19:22:51', 'submission_id': '1gna20f'}
{'comment': 'Yep.', 'created': '2024-11-09 15:13:35', 'submission_id': '1gna20f'}
{'comment': "Well, Trump and Republicans generally are going to spend the next few months basically calming down America, and obviously Trump isn't going to be a dictator on day one - that was an out of context and hypothetical scenario brought up by a Fox host, and not Trump himself. \n\nIt wasn't long ago that George W. Bush jokingly said essentially that it would be easier if he was a dictator. Democrats used that to smear him, and now they smear Trump for a remark that wasn't him being too serious either.\n\nAnd the sorts of people Trump might go after, aren't the average or every day American. Democrats spent the whole year telling Democrats to fear Republicans and Trump, and I had relatives and friends that cried on election day because of the fear driven into them by media propaganda against Trump has been intense.", 'created': '2024-11-09 14:56:17', 'submission_id': '1gna20f'}
{'comment': 'Wouldn’t you rather have the other half of the country willing to work with you rather than be terrified?', 'created': '2024-11-09 23:03:46', 'submission_id': '1gna20f'}
{'comment': 'There’s a video of Trump himself saying it. He’s been releasing many videos with his plans I just don’t know where. I went to truth social, x, Facebook, Instagram and nothing. Not sure where those are going', 'created': '2024-11-09 18:22:21', 'submission_id': '1gna20f'}
{'comment': 'New York has been working on the migrant situation, that was not a recent development as of the election.', 'created': '2024-11-11 00:24:53', 'submission_id': '1gna20f'}
{'comment': 'I don’t remember elite colleges handing out coloring books & cancelling classes when Trump lost. I don’t remember republican women angrily cutting their hair online & vowing not to have sex.', 'created': '2024-11-10 06:03:41', 'submission_id': '1gna20f'}
{'comment': 'I did the exact same thing, but also repeated step 1 every time I heard from Biden on the news.', 'created': '2024-11-09 20:34:48', 'submission_id': '1gna20f'}
{'comment': "The left is the party of immaturity, hence why they've become so corrupt and picked bad candidates in the first place.", 'created': '2024-11-10 00:25:27', 'submission_id': '1gna20f'}
{'comment': 'I have been trying to be more empathetic towards the left… you have to understand that the news has been brainwashing them with propaganda for years now.\n\nTelling them all sorts of crazy stuff is going to happen.\n\nSame people know that this stuff won’t happen, but to someone who is not sane… it is probably pretty scary', 'created': '2024-11-10 23:35:19', 'submission_id': '1gna20f'}
{'comment': 'That’s my plan!', 'created': '2024-11-10 00:28:33', 'submission_id': '1gna20f'}
{'comment': "Eh.. we have to sit back and act like 10-15 million less votes for the dems isn't sketchy as fuck. Still don't think it was a free and fair election. I get it.. Biden won. But the hunter biden laptop story being suppressed and lied about from intelligence agencies is a major interference. The dems and Twitter colluding to shut the story down and other stories that could benefit the right is another example of the election being interfered with. . This, it is just the shit that is 1000% proven. So much more shit that we could argue made it not free and fair. But when you have more mail in ballets than ever, you could see why biden ended up with more votes than Obama. Yes, biden won.. they played the game better.. but to act like fishy shit wasn't happening is being blind to the facts. Even so.. most Republicans didn't shave their heads and cry on the internet. Even when we felt cheated and had major evidence of election interference.. I know you want to do this empathy thing.. but the right and left are not the same..", 'created': '2024-11-11 02:15:50', 'submission_id': '1gna20f'}
{'comment': 'What about when a whole bunch of you burned and rioted across the country?', 'created': '2024-11-10 00:12:00', 'submission_id': '1gna20f'}
{'comment': 'I\'ll be the 1st to say that anyone who commits violence or breaks into the capital is a complete dumbass psychopath. I don\'t give a fuck who they vote for.\n\nHowever, if you\'re going to indict 170 million Americans due to the stupid actions of 0.00000001% of the population, you are incredibly naive or simple-minded.\n\nPeople with your mentality can\'t help but paint an entire group of people with 1 broad stroke of the brush. \n\n"White people without college degrees who don\'t vote for Harris are racist."\n\n"Black and Brown men who don\'t vote for Harris just simply don\'t want a woman as President."\n\n"A few police are bad, therefore all police should be defunded."\n\n"Anyone who wants a secure border hates Mexicans."\n\n"Anyone who is against trans operations with American tax dollars hates trans." \n\n"If you\'re a Republican, you\'re guilty of storming the Capital."\n\nWrong. On all accounts.\n\nIt\'s your mentality and others like you which has caused lifelong Democrats to vote Republican for the 1st time ever, in record numbers across the country... including my super liberal state of California.\n\nFor the 1st time in many decades, I\'m now a registered Republican. \n\nKeep it up. You\'re only further destroying your own party.\n\nAmerica 🇺🇸 is sick of the bullshit.', 'created': '2024-11-10 02:16:53', 'submission_id': '1gna20f'}
{'comment': 'Sorry , I took no part in that . But I didn’t forget . Just like I didn’t forget about ANTIFA destroying businesses, looting and assaulting innocent people and police officers.', 'created': '2024-11-10 01:33:18', 'submission_id': '1gna20f'}
{'comment': 'Correct, a whole bunch. Understood it happened. Wasn’t Biden’s decline hidden from the public? So a sitting president has declining cognition and isn’t able to move forward. Seems like US is in a real predicament. The VP is picked (bypass the primary!) to run for president. The Republican candidate has 2 attempted assassinations during the campaign. Democrats placed (bypassed a primary) and feel like their candidate should win? Point being…..both sides go to great lengths to stay in the game.', 'created': '2024-11-10 04:27:05', 'submission_id': '1gna20f'}
{'comment': None, 'created': '2024-11-09 17:08:59', 'submission_id': '1gna20f'}
{'comment': 'Just 6 more', 'created': '2024-11-09 16:18:35', 'submission_id': '1gna20f'}
{'comment': 'Remember when Reagan said we will be bombing Moscow in the morning on an open mike?', 'created': '2024-11-09 17:10:00', 'submission_id': '1gna20f'}
{'comment': 'I’m talking about America’s enemies and, no, better they are afraid.\n\nAs for the other half of the country Trump supporters (the majority of Americans) have been called sexist, racist, stupid, Nazis, etc. the other side is going to have to come forward with an olive branch.', 'created': '2024-11-10 00:58:56', 'submission_id': '1gna20f'}
{'comment': "No but they did other things, Jan 6, election fraud claims, and the like. I remember 'Stop the count' being a big thing", 'created': '2024-11-10 06:07:02', 'submission_id': '1gna20f'}
{'comment': "If that's the business the immigrants setup as their starter business.. okay? It's got incredibly low overhead to start a cleaning business, which funds seed money to start whetever the business they ACTUALLY want to start. Yes, Republicans want everyone who wants to, to start a business!!", 'created': '2024-11-09 21:18:02', 'submission_id': '1gna20f'}
{'comment': 'My husband’s lib aunt says “ they’ll think again when there’s no one to pick the vegetables “. You mean all these years the US has been letting ILLEGALS pick our vegetables?', 'created': '2024-11-10 05:58:55', 'submission_id': '1gna20f'}
{'comment': None, 'created': '2024-11-10 14:22:26', 'submission_id': '1gna20f'}
{'comment': 'Legal yes, & also foreign workers here on a temporarily visa. Rather than waving my hand & making all illegals in the country legal like Dems want to do, I would start with the illegals that have been in this country for years working in farm work. That is necessary work that needs to be done & never has enough workers.', 'created': '2024-11-11 02:06:53', 'submission_id': '1gna20f'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-09 14:10:10', 'submission_id': '1gn9rum'}
{'comment': 'These people are bat shit crazy and they think Republicans are bat shit crazy.\n\nThe problem with crazy people is they think they are normal and everyone else is crazy.', 'created': '2024-11-09 14:18:00', 'submission_id': '1gn9rum'}
{'comment': "We have swung so far left that moving us back to somewhat center FEELS like craziness to them. \n\nDo they not understand that 30 years ago the democratic party was not as radical as they are now??\n\nSecuring the border is not dictatorship.\n\nKeeping MEN out of women's sports and locker rooms is not dictatorship.\n\nPutting AMERICA first is not dictatorship.\n\nCOMMON 👏 SENSE 👏 IS 👏 NOT 👏 DICTATORSHIP", 'created': '2024-11-09 16:42:01', 'submission_id': '1gn9rum'}
{'comment': ' Why didn’t the Voters turn up for Harris? Plain and simple, they didn’t like their candidate who was the least popular VP in recorded history, that bypassed the nomination process, is directly tied to the least popular president in modern history who created massive 20% inflation along with record high interest rates, opened the borders, eliminated U.S. energy independence, allowed 2 major wars to continue, refused to protect women in locker rooms and in sports, attacked parents, attacked the 1st and 2nd amendments and attacked religion. \n\nHarris refused to support Israel, failed miserably as the Border Czar, refused open, unscripted tv interviews, can’t speak without a teleprompter, had zero policies, said she wouldn’t do anything different than Biden did, was part of covering up Biden’s extreme mental decline and was not endorsed by major papers across the U.S.? 75% of the country thinks the country is going in the wrong direction.', 'created': '2024-11-09 17:02:45', 'submission_id': '1gn9rum'}
{'comment': "That's the sort of message America needs after being told that the Republicans are effectively out to get them, and the whole Trump is Hitler thing. \n\nOne thing I'm glad about this election is that Nancy Pelosi is out of power, even if she spends all day and night wailing because she couped Biden and got nothing for her trouble.", 'created': '2024-11-09 14:41:35', 'submission_id': '1gn9rum'}
{'comment': 'That dude who ‘lost his gf’ since she’s a secret Trump supporter can send her my way. I’m tired of women on the apps seeming great only to throw out the, ‘you have to agree with my politics to date me’ bs.', 'created': '2024-11-09 15:11:16', 'submission_id': '1gn9rum'}
{'comment': 'They ignore basic things. \nPresident Calvin Coolidge once said that “the chief business of the American people is business. They are profoundly concerned with producing, buying, selling, investing, and prospering in the world.”', 'created': '2024-11-09 17:00:49', 'submission_id': '1gn9rum'}
{'comment': "Well one was correct we do want democracy goes it's supposed to be a republic with little interference from the government. Not a democracy like the dems want and for us to all be enslaved to them.", 'created': '2024-11-09 14:29:29', 'submission_id': '1gn9rum'}
{'comment': "Young people obviously don't think long term, but they're going to find out in 2028 that life moved on, but the internet is forever. Either Trump opened up internment camps and breeding pens and had the ladies of The View hanged for treason, or they're going to look like crazy people to American voters.", 'created': '2024-11-09 18:57:47', 'submission_id': '1gn9rum'}
{'comment': "Tbh It's probably a bot", 'created': '2024-11-09 17:12:08', 'submission_id': '1gn9rum'}
{'comment': '"We did it Reddit"', 'created': '2024-11-10 00:04:15', 'submission_id': '1gn9rum'}
{'comment': 'It’s Awsome! All these losers are now shaving their heads and going even crazier then they were before. Some of these c*nts are shaving their heads and basically swore off guys. Funny thing is non of these bitches could get laid to begin with, they could be butt naked bent over telling every guy in the world to do whatever they want to them and I bet not a single guy would wanna fuck them anyway!\xa0\n\nWe won, they lost and can go to hell where they belong!\xa0', 'created': '2024-11-09 18:04:35', 'submission_id': '1gn9rum'}
{'comment': 'Democrats are brainwashed by their established party.', 'created': '2024-11-09 16:20:59', 'submission_id': '1gn9rum'}
{'comment': 'Just let the states determine what is best for their citizens. Let me live my life freely and pursue my own happiness.', 'created': '2024-11-09 16:51:02', 'submission_id': '1gn9rum'}
{'comment': 'Can I get a reddit link to the actual post?', 'created': '2024-11-09 16:29:05', 'submission_id': '1gn9rum'}
{'comment': 'And then you have assholes that ARE actually sexist and racist adding fuel to the fire. We reject them but NOOOOOOO, most Kamala voters think we are all like this.', 'created': '2024-11-09 15:21:54', 'submission_id': '1gn9rum'}
{'comment': "You've got to admit there is crazy on both sides. How crazy do you have to believe that the Dems have the ability to manipulate a hurricane?", 'created': '2024-11-09 15:06:28', 'submission_id': '1gn9rum'}
{'comment': None, 'created': '2024-11-09 18:49:52', 'submission_id': '1gn9rum'}
{'comment': "Just think of this, we are to believe this country needs to be more inclusive towards trans, non binary, etc... however, what is more inclusive than male and female?\n\nI think a lot of people desperately need community, but instead of church, for example, they grab onto woke ideas to be a part of something. Some go so far as to mutilate themselves for acceptance. The truth is that their capacity for rational thought has been overtaken for the sake of social acceptance.\n\nI think the only cure for the left is within themselves, and no amount of fact and truth can set them free. Instead, they have to want to seek truth. Much like an addiction, it starts with the individual wanting to clean up. This is why there is so much hysteria right now. When an addict can't access a drug, they react the same way as Kamala voters right now.", 'created': '2024-11-09 20:14:39', 'submission_id': '1gn9rum'}
{'comment': "It's worth remembering that they only feel this way because this is the what the big corporate media their fathers and grandfathers trusted are telling them. NYT and WaPo told women it would be the handmaid's tale but worse. Of course they're scared", 'created': '2024-11-09 17:17:04', 'submission_id': '1gn9rum'}
{'comment': 'Except Republicans voted for a narcissistic, hateful, misogynistic, inept, grifting pedophile rapist felon. That seems pretty fuckin bat shit crazy to me.', 'created': '2024-11-10 14:13:18', 'submission_id': '1gn9rum'}
{'comment': 'JFK would be considered Hitler by todays Dems.', 'created': '2024-11-09 17:16:00', 'submission_id': '1gn9rum'}
{'comment': 'Excellent summary!', 'created': '2024-11-10 01:19:34', 'submission_id': '1gn9rum'}
{'comment': 'And she spent a record $1.2 Billion!', 'created': '2024-11-10 17:49:39', 'submission_id': '1gn9rum'}
{'comment': 'I just think that gir had a girlfriend and wanted a boyfriend', 'created': '2024-11-09 16:40:40', 'submission_id': '1gn9rum'}
{'comment': "Meh, it won't be long before their loneliness suddenly makes politics a non-issue. Or change their profile to say no politics, don't care which side your on, let's just have fun, etc. The only men that will fit their current boxed in requirements are men who can't get dates when they use a real profile picture. The women will get desperate when all that remains for them to choose from are men that don't look or act like men, or men that aren't biologically men.", 'created': '2024-11-09 16:50:16', 'submission_id': '1gn9rum'}
{'comment': 'It will work out. \nhttps://nypost.com/2024/11/09/us-news/trump-plans-ambitious-tax-agenda-with-insiders-revealing-how-it-could-put-more-money-in-americans-pockets/?utm_campaign=iphone_nyp&utm_source=pasteboard_app', 'created': '2024-11-09 18:23:32', 'submission_id': '1gn9rum'}
{'comment': 'I’d argue that Trump’s reelection is the greatest display of democracy we’ve ever seen in this country. The people got out and made their voices heard, and the inferior party throws a temper tantrum. It’s a beautiful thing.', 'created': '2024-11-09 15:28:45', 'submission_id': '1gn9rum'}
{'comment': 'They learned nothing after they insisted Trump was going to start WW 3 with North Korea in 2016.', 'created': '2024-11-10 06:39:20', 'submission_id': '1gn9rum'}
{'comment': "Why mention 2028? Don't you know? Trump is going to be Dictator-Elect and there won't be an election in 2028.", 'created': '2024-11-09 19:44:42', 'submission_id': '1gn9rum'}
{'comment': None, 'created': '2024-11-09 19:23:58', 'submission_id': '1gn9rum'}
{'comment': "It's an article *about* a reddit post.", 'created': '2024-11-09 16:51:06', 'submission_id': '1gn9rum'}
{'comment': ">And then you have assholes that ARE actually sexist and racist adding fuel to the fire.\n\nThe only sexist and/or racist things I've seen over the last 3 days have come strictly from the democrats. What on earth are you talking about?", 'created': '2024-11-09 16:46:04', 'submission_id': '1gn9rum'}
{'comment': 'They are Democrats.', 'created': '2024-11-09 15:49:09', 'submission_id': '1gn9rum'}
{'comment': 'They take a grain of truth like “cloud seeding” which is a thing and then go a little nuts with it…', 'created': '2024-11-09 15:30:25', 'submission_id': '1gn9rum'}
{'comment': 'We don’t let our crazies run the party. It’s mainstream on the left.', 'created': '2024-11-09 15:50:15', 'submission_id': '1gn9rum'}
{'comment': "That's not exclusive to Republicans. There are those who are not Republicans who believe that we can control the weather. \n\n I don't know about manipulating hurricanes, but it is proven that through Project HAARP we can control the weather.", 'created': '2024-11-09 15:27:01', 'submission_id': '1gn9rum'}
{'comment': 'Had to laugh at this one 🤣it is in all fairness a different kind of crazy', 'created': '2024-11-09 15:35:32', 'submission_id': '1gn9rum'}
{'comment': ">Dems have the ability to manipulate a hurricane?\n\nThat's not what Republicans were saying. Cloud seeding happens and is known happens. We were questioning what potential implications that can cause when they're fiddling with weather. I can't say none believed a hurricane can be controlled/manipulated because I don't know them all and there is always an extreme fringe minority that believe is crazy shit. There are far more on the left in those crazy groups, but the right has some too. I can say, however, a lot have been simply question possible unintentional effects from cloud seeding, but the liberal circle jerks ran with the false story about Republicans claiming hurricanes can be controlled.", 'created': '2024-11-09 16:44:14', 'submission_id': '1gn9rum'}
{'comment': 'How many said that? Prove it.', 'created': '2024-11-09 15:37:48', 'submission_id': '1gn9rum'}
{'comment': 'Found the liberal', 'created': '2024-11-11 06:25:40', 'submission_id': '1gn9rum'}
{'comment': 'Maybe they voted for actual policies and a good capable team that will affect meaningful change. Rather than just a pretty face. \nSure Trump is a bit of a loose unit but at least you know who you are getting. Someone resilient with a bit of mongrel in him.', 'created': '2024-11-11 10:30:37', 'submission_id': '1gn9rum'}
{'comment': 'The fact that a member of his family will likely be a part of the administration should tell them a lot. Classic liberalism is dead. It’s been killed by the radical left who want to bury any traces of its existence to help push their agenda.', 'created': '2024-11-09 18:52:26', 'submission_id': '1gn9rum'}
{'comment': 'It didnt work out for them. They should look at the nationwide county map to see how red everything is. Hard shift to the right. Bleeding hearts having meltdowns everywhere.', 'created': '2024-11-09 19:34:02', 'submission_id': '1gn9rum'}
{'comment': 'There’s “supposedly” conservatives who are saying “your body, my choice”. I’m unsure of the truthfulness behind this, but democrats are using it to push the agenda that we are all nazis, facists, and inherently evil', 'created': '2024-11-09 17:05:08', 'submission_id': '1gn9rum'}
{'comment': 'Yeah, and when Obama tried to push black people towards voting for Kamala, he failed horribly and angered them instead.\n\nSaying that Kamala is black (she’s Indian) and implying black people must vote for her because they are also black, is obviously racist.', 'created': '2024-11-09 16:51:18', 'submission_id': '1gn9rum'}
{'comment': "Nah, I read someone claiming to be a teacher and that make students are wearing shirts that say that while harassing female students. THAT is where the claim came from and its a dumb truck load of bullshit. First off, no school would allow that. If anything even a teensy bit potentially offensive or problematic, kids can't wear it. If they do, they're required to turn their shirt inside out. Secondly, those male students have parents, and no mother would allow that. Not to mention planning, ordering, and paying for custom t-shirts despite not knowing who would win. Third, and this is the biggest, teenagers don't give a shit about politics when they're too young to vote. Some still don't care when they turn 18. So if it's true even a tiny bit, like only 1 wearing something like that, it was done to be an edgy dick, to be funny and nothing more. That makes #2 a little more possible, being only one student. \n\nYou're going to read A LOT of bullshit claims about us, about our behavior after a landslide, true colors coming out, yadda yadda. Its nothing more than creative writing to confirm their already preconceived scenarios of how we're going to be. Don't believe it any of it. Democrats love to tell Republicans and each other who we are, what we want, what we believe in, and how we behave. If real life doesn't mirror that, you get stories like the shirt bullshit.", 'created': '2024-11-09 17:40:10', 'submission_id': '1gn9rum'}
{'comment': 'IMHO, just edgy trolling\n\nthe response of already mentally unstable liberal women?\n\nvisit the 2 chromosomes sub\n\n"my glock, your cock" seems to be a popular response', 'created': '2024-11-09 18:49:01', 'submission_id': '1gn9rum'}
{'comment': "She is black. Jamaicans are black. She's half Indian, half black. I don't give a shit what she or anyone else claims her race to be or what it is. I care of the lack of matter between her ears.\n\nAs for Obama, identity politics worked for him. Its worked for the democrats for decades. But in light of the internet age, demographics can see what exactly has, or in reality hasn't been done, for any of them. Trump didn't reach out to pander to any race. He spoke to Americans, and people are fucking sick and tired of identity bullshit. Tired of hearing about it and being lectured over it. I hope the democrat party does some serious self reflection and re-evaluation so that identity shit dies with Kamala's political career.", 'created': '2024-11-09 17:20:09', 'submission_id': '1gn9rum'}
{'comment': 'Exactly. I asked for proof besides “heard it from a friend’s brother “.', 'created': '2024-11-10 06:33:24', 'submission_id': '1gn9rum'}
{'comment': 'I’ve seen so many leftist panicking over scenarios that they are quite literally making up in their heads. THAT is the scary part. Another thing is with the new abilities (not necessarily NEW NEW) of AI, as well as other deceptive tools, many posts, videos, etc. can be faked while also looking very real. Unfortunately many would be none the wiser as well', 'created': '2024-11-09 17:42:59', 'submission_id': '1gn9rum'}
{'comment': 'Identity politics threw Kamala’s campaign away, and also the fact that she spent so much time attacking Trump instead of focusing on how she could implement meaningful policies to benefit this country. Independent voters were eager to hear it, yet she barely dropped any, if at all.', 'created': '2024-11-09 17:38:02', 'submission_id': '1gn9rum'}
{'comment': '“He spoke to Americans” \n\nTHIS is the simplest, clearest, most accurate explanation I’ve seen on Trump’s campaign.', 'created': '2024-11-10 03:20:03', 'submission_id': '1gn9rum'}
{'comment': 'They are afraid of their own fears', 'created': '2024-11-09 20:26:18', 'submission_id': '1gn9rum'}
{'comment': 'She tried to use the same basic platform Joe did in 20. Namely “I’m not DJT, so vote for me”. Being politically tone deaf she failed to realize that that was no longer a winning strategy.', 'created': '2024-11-09 18:47:11', 'submission_id': '1gn9rum'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-09 13:34:24', 'submission_id': '1gn94zt'}
{'comment': 'Clean up? Wipe out completely.', 'created': '2024-11-09 13:54:03', 'submission_id': '1gn94zt'}
{'comment': 'DEI is such a terrible program. It creates segregation more than it helps people. The fact that it lasted this long and kept in businesses for people just so they can gain a few hundred dollars from the government. Government should never have a hand on how the private sector is ran.', 'created': '2024-11-09 18:07:11', 'submission_id': '1gn94zt'}
{'comment': 'We won’t be hearing about DEI much longer after January. Just an absolutely ridiculous program that is completely unsafe', 'created': '2024-11-10 02:15:25', 'submission_id': '1gn94zt'}
{'comment': 'archived at [https://archive.is/rPNdE](https://archive.is/rPNdE)', 'created': '2024-11-09 13:34:39', 'submission_id': '1gn94zt'}
{'comment': 'Thank you for posting past the firewall!\n\nThe 5 comments are also interesting. Rachel Maddow admiring censorship...', 'created': '2024-11-09 14:44:20', 'submission_id': '1gn94zt'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-09 07:53:06', 'submission_id': '1gn4c3u'}
{'comment': "There's a dozen reasons to thank Charlie this cycle but I think getting Ronna Romney McDaniel to step down from the RNC tops the list. It was very evident that Lara Trump and the RNC were absolutely _not_ fucking around this year. Amazing what a political apparatus that's actually interested in _winning_ can accomplish.", 'created': '2024-11-09 12:41:33', 'submission_id': '1gn4c3u'}
{'comment': 'Former Democrat here, yes I voted red all the way down the ballot for the first time in my life. And I donated to DJT’s campaign. Twice. I’ve never donated to any political campaign ever. Charlie Kirk and Ben Shapiro convinced me with logic and facts rather than the “feelings” that the legacy media pushes. This is a new dawn and I’m so happy Republicans won so decisively and overwhelmingly. We as a country needed to stop the madness.', 'created': '2024-11-09 19:18:26', 'submission_id': '1gn4c3u'}
{'comment': 'And the left thought they had a lock on ballot harvesting.', 'created': '2024-11-09 08:27:03', 'submission_id': '1gn4c3u'}
{'comment': "That's so awesome. Charlie is the man. He also put in so much work at the cess pools we call universities. If we as conservatives took a page from his book, we'd never need to worry about another election again.", 'created': '2024-11-09 12:58:24', 'submission_id': '1gn4c3u'}
{'comment': 'Charlie, Jack, and Scott were absolutely massive for PA\n\nI was watching the Charlie Kirk stream on election night and the story Jack told about getting the Amish out to vote was so awesome', 'created': '2024-11-09 18:06:59', 'submission_id': '1gn4c3u'}
{'comment': 'I thanked him on X.', 'created': '2024-11-09 12:11:20', 'submission_id': '1gn4c3u'}
{'comment': 'And scott pressler he single handedly signed up 180,000 first time Amish voters in PA', 'created': '2024-11-09 17:11:52', 'submission_id': '1gn4c3u'}
{'comment': "Charlie is incredible! The look on his face when the election was announced proves his heart is in the right place. He fought, cleared up misinformation, and is so well-spoken! I've always loved him....but now I'm subscribed to his podcasts, I follow him on X, etc. Can't get enough of Charlie Kirk and the FACTS!", 'created': '2024-11-09 15:38:34', 'submission_id': '1gn4c3u'}
{'comment': 'He was an integral part of getting the young vote. He deserves a 🥇.', 'created': '2024-11-09 18:43:14', 'submission_id': '1gn4c3u'}
{'comment': 'The person to thank is Joe Rogan, his interview with Trump got 26 million views.', 'created': '2024-11-09 21:19:27', 'submission_id': '1gn4c3u'}
{'comment': 'My 16 year old daughter took a liking to Charlie this election cycle. He’s getting the attention of many', 'created': '2024-11-09 16:17:06', 'submission_id': '1gn4c3u'}
{'comment': 'In 2016 we had Milo\n\n2024 we have Charlie', 'created': '2024-11-09 19:41:26', 'submission_id': '1gn4c3u'}
{'comment': 'Send TPUSA a check! They are doing so much great work all across this country! Thank you Charlie and Turning Point USA!', 'created': '2024-11-10 01:20:01', 'submission_id': '1gn4c3u'}
{'comment': 'CAPTAIN KIRK to y’all', 'created': '2024-11-11 20:58:41', 'submission_id': '1gn4c3u'}
{'comment': 'Good work Charlie.', 'created': '2024-11-09 18:00:30', 'submission_id': '1gn4c3u'}
{'comment': 'Welcome. We love to have you! Have an awesome day.', 'created': '2024-11-09 23:23:49', 'submission_id': '1gn4c3u'}
{'comment': 'Welcome to the party!', 'created': '2024-11-10 00:01:53', 'submission_id': '1gn4c3u'}
{'comment': "Welcome!!! We're happy and proud to have you!!\n\nIf you don't mind me asking: what swayed your vote, specifically?", 'created': '2024-11-10 10:12:22', 'submission_id': '1gn4c3u'}
{'comment': 'What was some of the logic that helped you to make that decision?', 'created': '2024-11-10 05:51:55', 'submission_id': '1gn4c3u'}
{'comment': "I'm ready to start casting bronze statues of this dude", 'created': '2024-11-09 14:18:07', 'submission_id': '1gn4c3u'}
{'comment': 'What kindve work did Charlie do in PA?', 'created': '2024-11-10 05:52:32', 'submission_id': '1gn4c3u'}
{'comment': 'He really is such a good guy!', 'created': '2024-11-09 18:07:28', 'submission_id': '1gn4c3u'}
{'comment': 'Perhaps. There were many gears working on this one. By time the election rolled around I think it was up to 90 million views.', 'created': '2024-11-09 21:25:47', 'submission_id': '1gn4c3u'}
{'comment': 'I was happy for the endorsement but I wish he wouldn’t have waited until the last minute to give it.', 'created': '2024-11-09 21:44:38', 'submission_id': '1gn4c3u'}
{'comment': 'I love that he’s helping win over young voters and show them the side of the Republican Party that the media doesn’t like to talk about', 'created': '2024-11-09 18:07:58', 'submission_id': '1gn4c3u'}
{'comment': 'We’re all going to have an awesome 4 years 💪🤝🇺🇸', 'created': '2024-11-10 05:22:26', 'submission_id': '1gn4c3u'}
{'comment': 'The first days of the party have been amazing and it hasn’t even started yet!!!!', 'created': '2024-11-10 05:21:48', 'submission_id': '1gn4c3u'}
{'comment': 'I tagged you in my soapbox rant 😅', 'created': '2024-11-10 14:04:00', 'submission_id': '1gn4c3u'}
{'comment': '[removed]', 'created': '2024-11-10 06:25:47', 'submission_id': '1gn4c3u'}
{'comment': 'Apparently my response keeps getting deleted. Maybe it’s too long? 😞', 'created': '2024-11-10 22:51:59', 'submission_id': '1gn4c3u'}
{'comment': 'Very short answer: their foreign policy has made the world and our country a more dangerous place. The Middle East and now Europe and burning bc of their irresponsible policies:\n\nhttps://www.foxnews.com/world/netanyahu-condemns-antisemitic-pogrom-amsterdam-warns-world-leaders-attacks-spread-dont-act\n\n\nIt’s spilling over to American big cities. A religious man here was attacked on his way to worship in broad daylight and the only reason he survived is bc by the grace of God, the perp’s weapon jammed when he went in for the final blow. Who was the perp? An illegal who got here a year ago! The mayor instructed the police chief to hide facts to the press that were caught on a ring cam, including that he yelled their popular “aloha snackbar” chant before going on the rampage. He also attacked police and first responders when they showed up on scene.\n\nhttps://abc7chicago.com/post/chicago-shooting-sidi-mohamed-abdallahi-charged-after-wounding-man-firing-cpd-paramedics-west-ridge-police-say/15481204/\n\nMayor leaving out any details about the motivations, that the guy was illegal, etc in his garbage statement that took 3 days for him to release:\n\nhttps://www.jta.org/2024/10/30/united-states/chicago-jews-deride-mayors-statement-on-shooting-of-orthodox-man\n\nTrump is already assembling an absolute Dream Team to fix this mess!', 'created': '2024-11-12 15:15:15', 'submission_id': '1gn4c3u'}
{'comment': 'Here’s a great article about what him and his staff were doing, not just in Pennsylvania. It’s incredible \nhttps://www.newsweek.com/charlie-kirk-turning-point-trump-reelection-1983029', 'created': '2024-11-10 11:38:11', 'submission_id': '1gn4c3u'}
{'comment': "I'm going to read it!!", 'created': '2024-11-10 14:10:14', 'submission_id': '1gn4c3u'}
{'comment': 'u/Next_Engineer_8230 This is what convinced me ^^^', 'created': '2024-11-10 13:56:05', 'submission_id': '1gn4c3u'}
{'comment': 'Reposted below, lmk if it gets deleted. I cleaned up my language I got fired up 😅😅😅', 'created': '2024-11-10 14:35:06', 'submission_id': '1gn4c3u'}
{'comment': 'Its deleted....', 'created': '2024-11-10 14:12:09', 'submission_id': '1gn4c3u'}
{'comment': "Lol!\n\nIts still not showing up. \n\nI've even went to your profile to read it and when I click on it to expand, it's not there lol", 'created': '2024-11-10 15:08:58', 'submission_id': '1gn4c3u'}
{'comment': 'Really? Weird I wonder why? Maybe bc I said the German N-word? I’ll repost!', 'created': '2024-11-10 14:28:48', 'submission_id': '1gn4c3u'}
{'comment': 'Weird! I’ll DM it to you and you can tell me if I’m unknowingly breaking a rule in here somehow. Maybe it’s too long? Which is funny that the answer to “What changed your mind?” is too long 🤣🤣🤣', 'created': '2024-11-10 17:14:28', 'submission_id': '1gn4c3u'}
{'comment': "Lol\n\nPlease do!\n\nI wouldn't think length is the issue.", 'created': '2024-11-10 17:26:11', 'submission_id': '1gn4c3u'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-09 01:56:10', 'submission_id': '1gmy4ku'}
{'comment': "Considering a box of tampons is around $10 where I live I'll gladly pay $8", 'created': '2024-11-09 02:01:27', 'submission_id': '1gmy4ku'}
{'comment': '“women can be denied healthcare at anytime no matter what” yes absolutely believable sounds very professional and very legit', 'created': '2024-11-09 02:05:44', 'submission_id': '1gmy4ku'}
{'comment': 'When you wake up and decide to make shit up cause why not.', 'created': '2024-11-09 02:16:24', 'submission_id': '1gmy4ku'}
{'comment': "I'd hate to be living in their head. Make Asylums Great Again.", 'created': '2024-11-09 02:31:19', 'submission_id': '1gmy4ku'}
{'comment': 'Lmao that is awesome. Hope I get my electroshock therapy soon, it’s very stimulating', 'created': '2024-11-09 02:07:12', 'submission_id': '1gmy4ku'}
{'comment': 'Yes this will all happen! Leave immediately and never come back!', 'created': '2024-11-09 02:17:27', 'submission_id': '1gmy4ku'}
{'comment': 'This is laughable.', 'created': '2024-11-09 02:19:34', 'submission_id': '1gmy4ku'}
{'comment': 'When the source of your info is "gay furries" then 1, you\'re as dumb as you accuse the right of being... 2, youre a cult, the exact thing they accuse us of being.\n\nCan we PLEASE put critical thinking back into schools?', 'created': '2024-11-09 02:36:02', 'submission_id': '1gmy4ku'}
{'comment': 'This is satire….there’s no way any sane person can believe this is true. Right? They don’t believe this do they??? Omg they do. Lol. 😂', 'created': '2024-11-09 02:37:05', 'submission_id': '1gmy4ku'}
{'comment': 'The fact that they said “university” instead of college tells me that this was most likely not even written by someone in the US.', 'created': '2024-11-09 03:01:52', 'submission_id': '1gmy4ku'}
{'comment': 'Didn’t Trump just appoint a woman as his Chief of Staff? Isn’t that a high paying job?', 'created': '2024-11-09 03:26:27', 'submission_id': '1gmy4ku'}
{'comment': 'Are they taking about the middle east in these?', 'created': '2024-11-09 02:21:04', 'submission_id': '1gmy4ku'}
{'comment': None, 'created': '2024-11-09 02:29:42', 'submission_id': '1gmy4ku'}
{'comment': 'And at the end of the 4 years when none of that happens, none of them will think to themselves, "oh, none of that was real"', 'created': '2024-11-09 02:35:52', 'submission_id': '1gmy4ku'}
{'comment': 'You know who believes this shit? People who watch CNN, MSNBC, The View, Colbert, Kimmel, Meyers.', 'created': '2024-11-09 03:20:35', 'submission_id': '1gmy4ku'}
{'comment': 'There are some whack people out there.', 'created': '2024-11-09 02:13:03', 'submission_id': '1gmy4ku'}
{'comment': "This is funny as hell, but I guess if people believe Trump is Hitler, they'll believe anything.\n\nStill, to be safe, I'll go hide my gay autistic pregnant sister.", 'created': '2024-11-09 03:06:51', 'submission_id': '1gmy4ku'}
{'comment': 'Who the fuck believes this shit?', 'created': '2024-11-09 03:00:18', 'submission_id': '1gmy4ku'}
{'comment': 'This is just lefty fear porn, they don’t care if it’s true as long as the panic continues.', 'created': '2024-11-09 02:59:18', 'submission_id': '1gmy4ku'}
{'comment': 'Thank god. I’ve been waiting for decades for doctors to finally revoke all female healthcare. /s', 'created': '2024-11-09 02:31:04', 'submission_id': '1gmy4ku'}
{'comment': 'Sounds like this was written by a 12 year old', 'created': '2024-11-09 03:12:24', 'submission_id': '1gmy4ku'}
{'comment': "I can't stop laughing. I'm almost in tears. That's so funny 😭\n\nWhat's funnier is that there are people out there who honestly believe that garbage.", 'created': '2024-11-09 02:47:17', 'submission_id': '1gmy4ku'}
{'comment': 'What project 2025 created to look like some legit right wing project but it’s really just far lefties making this up to create fear?', 'created': '2024-11-09 04:42:51', 'submission_id': '1gmy4ku'}
{'comment': "[Here's](https://static.project2025.org/2025_MandateForLeadership_FULL.pdf) the source of the Project 2025 topic.\n\nInteresting read if you want to get a conservative perspective of how multiple institutions within the federal government to\nactually operate overall.\n\n\nIf reading 922 pages of it is to much for you, you can watch [MentisWave's 31 minute video](https://www.youtube.com/watch?v=cv72BigxKEY) about it, and that he actually read all of it.", 'created': '2024-11-09 05:52:40', 'submission_id': '1gmy4ku'}
{'comment': 'Yeah…, and Elon Musk is going to be in charge of Space Force and orbit nuclear weapons systems with a highly sophisticated star-link program', 'created': '2024-11-09 02:35:00', 'submission_id': '1gmy4ku'}
{'comment': 'What’s baffling to me is they really think we would be okay with any of this?', 'created': '2024-11-09 03:20:36', 'submission_id': '1gmy4ku'}
{'comment': "I can't believe there's dumb fucks that believe this shit", 'created': '2024-11-09 04:49:53', 'submission_id': '1gmy4ku'}
{'comment': 'Bait used to be believable', 'created': '2024-11-09 03:10:42', 'submission_id': '1gmy4ku'}
{'comment': '"Tampons will be taxed" as if that\'s the most terrifying thing they could come up with', 'created': '2024-11-09 03:29:57', 'submission_id': '1gmy4ku'}
{'comment': 'Where else is this shared so I can see the brainwashed people who believe this.', 'created': '2024-11-09 02:46:02', 'submission_id': '1gmy4ku'}
{'comment': 'Screenshot all of these so in 4 years I can remind these fucktards of what they said was going to happen.', 'created': '2024-11-09 04:05:47', 'submission_id': '1gmy4ku'}
{'comment': "😱😱😱 OMG THIS IS SO SCARY!1!1!1 MUH RIGHTS... 😔 IT'S SO JOEVER...\n\n\nI guess I need to pack my bags and move to Canada... (as if it's any better over there under Trudeau lol)", 'created': '2024-11-09 05:15:55', 'submission_id': '1gmy4ku'}
{'comment': 'Speaking of leaks, someone leaked a united nations anti man zoom meeting and its abhorrant. Check this out.\n\nMassive anti male agenda openly prioritising mothers interests over children and a serious misrepresentation of science at a UN Commission meeting on family courts and child safety. \n\nKey UN officials dismissed critical issues like parental alienation as "pseudo-theories," leaving kids vulnerable in abusive homes. \n\nThis bias hurts kids, fathers & even alienated mothers. \nPushing an agenda that ignores evidence-based solutions for families is messed up.\n\n[Transcript anti men UN meeting leaked](https://drive.google.com/drive/folders/1NxPRibjWtkBrbaQ7LYdWQAx-39ZLrx1v)\n\nHere\'s the transcript but I actually also have the full leaked 90min video zoom call.', 'created': '2024-11-09 06:58:28', 'submission_id': '1gmy4ku'}
{'comment': 'I want to believe that people don’t actually believe this but I know that people actually believe this', 'created': '2024-11-09 03:20:59', 'submission_id': '1gmy4ku'}
{'comment': 'If you truly believe this, please leave America. Don’t need yall reproducing and bringing more stupidity into this country. It’s already bad', 'created': '2024-11-09 04:13:04', 'submission_id': '1gmy4ku'}
{'comment': '“Given imprisonment.”\n\nStopped right there.', 'created': '2024-11-09 04:26:58', 'submission_id': '1gmy4ku'}
{'comment': 'Ohhh so this is why people are freaking out. But also how gullible do you have to be to believe this? And do you realize you are just telecasting your stupidity to everyone by buying into this? 🤦🏻\u200d♀️', 'created': '2024-11-09 04:30:46', 'submission_id': '1gmy4ku'}
{'comment': 'This shit is a cult. Fuck them/theys', 'created': '2024-11-09 03:18:07', 'submission_id': '1gmy4ku'}
{'comment': "Funny part is the antithesis of most of those statements was already happening with full liberal support. \n\nFor instance, prayer in school they claim will be mandatory or suspension. Meanwhile in today's world kids that would like to pray in school get suspended all the time for praying, mentioning the bible or God in defense of their point in debates on a myriad of topics. \n\nMost feminine products and birth control are available at no cost to women, right now, but everyone else is paying for them and you likely won't get the brand and style that you want. \n\nEqual pay is not much of an issue at the moment as we've been working toward that a long time, however women and minorities often get jobs with less qualifications than white male counterparts to meet various quotas and/or qualify for funding. \n\nThe same party that fought for civil rights and got it done and ended slavery and was fought every step of the way by democrats is now going to stomp all over the rights of the LGBTQ community? Conservatives believe in true freedom, FOR EVERYONE, not the regulated freedom with oversight the democrats believe in. We just also believe that children need not be manipulated, coerced, controlled, nor exposed to life altering decisions until they are old enough to understand all the ramifications of those decisions. Live your life how you want but leave the kids out of it isn't too much to ask.\n\nAnd of course women are now free to do as they like, including treating abortion as birth control. The left has no problem with that. The right wants that to be a last resort and they request not to be forced to pay for it or have the federal government facilitate the killing of the unborn child. It's a state issue and the degree of involvement should be left up to the state. Your body, your choice isn't applicable when there's another body killed in the process and another wallet footing the bill.\n\n \nA lot of the rest of that stuff is just paranoid delusion. No one is telling anyone who to marry and for how long. And no one is not going to take care of the elderly, infirm, or disabled any less than they currently do.", 'created': '2024-11-09 04:45:28', 'submission_id': '1gmy4ku'}
{'comment': 'Wait?? Tampons aren’t $8+ now?', 'created': '2024-11-09 03:40:28', 'submission_id': '1gmy4ku'}
{'comment': 'this is satire lmfao', 'created': '2024-11-09 03:45:18', 'submission_id': '1gmy4ku'}
{'comment': 'Weird that they have to leak an entirely free to download easily off the internet document that they don\'t even know the actual name of. "Mandate for Leadership: The Conservative Promise (Project 2025 Presidential Transition Project)" by The Heritage Foundation. Perhaps they should read it and calm down. Extremely boring.\n\nEdited for spelling', 'created': '2024-11-09 04:37:58', 'submission_id': '1gmy4ku'}
{'comment': 'Lmao thank God the gay hackers exposed all of their plans', 'created': '2024-11-09 13:15:27', 'submission_id': '1gmy4ku'}
{'comment': 'The actual fuck is wrong with these people? I can understand a young naïve person falling for this but I grown ass one is just amazing to me. I am a home health physical therapist and conservative but I don’t talk politics with patients. A grown middle aged wealthy white patient told me Thursday that woman have lost their rights so I questioned it and she spouted off some of these talking points. I politely said you can’t possibly believe this she got very upset, stared telling me woman are dying in hospital parking lots. Geeez', 'created': '2024-11-09 15:48:57', 'submission_id': '1gmy4ku'}
{'comment': 'I don’t understand the statistics of voters in this election. According to the numbers, most of Trump supporters are white uneducated males. So, the “masters degree and higher” category, believe this nonsense impossible to pass ridiculous rhetoric, and the uneducated do not? Explain that to me.', 'created': '2024-11-09 02:51:06', 'submission_id': '1gmy4ku'}
{'comment': 'Me thinks their tin foil hats are too tight!', 'created': '2024-11-09 03:25:20', 'submission_id': '1gmy4ku'}
{'comment': 'Who the hell actually believes this? I laughed the whole way through.', 'created': '2024-11-09 03:27:14', 'submission_id': '1gmy4ku'}
{'comment': 'Sure, Jan. I truly believe they actually wish this would happen but just the other way around to those you don’t agree with them. It’s self-hatred and projection at its peak. And a good majority of them likely belong in an actual mental institutions, which I believe should be brought back en-masse.', 'created': '2024-11-09 04:04:21', 'submission_id': '1gmy4ku'}
{'comment': 'It should be a crime to lie like this', 'created': '2024-11-09 04:20:23', 'submission_id': '1gmy4ku'}
{'comment': 'That’s a political suicide agenda', 'created': '2024-11-09 04:21:51', 'submission_id': '1gmy4ku'}
{'comment': 'Me when misinformation', 'created': '2024-11-09 04:34:59', 'submission_id': '1gmy4ku'}
{'comment': 'Nothing scream truthful like a leaked hack from a group calling themselves gay furries, may as well scream trust me and saying honestly every other sentence. /s', 'created': '2024-11-09 05:00:20', 'submission_id': '1gmy4ku'}
{'comment': "I've seen some pretty wild claims today, but these take the cake. Goodnight, reddit!", 'created': '2024-11-09 05:59:06', 'submission_id': '1gmy4ku'}
{'comment': 'I love how they are so quick to “SoUrCe??” Us, but yet have provided zero with these claims', 'created': '2024-11-09 07:33:06', 'submission_id': '1gmy4ku'}
{'comment': 'Critical thinking skills at an all time LOW. \nFact checked by myself. We used to do that shit in school all the time reading comprehension etc, and no one can differentiate real news facts, fake news with fake facts that make no sense, memes and satire like the Onion, throw AI in there, and yeah it’s just sad man lost touch with reality', 'created': '2024-11-09 07:57:36', 'submission_id': '1gmy4ku'}
{'comment': "Just like I have been saying, all of the decent people have fled the democrats and what's leftover is the bad and the stupid.\n\nHere is an example of a stupid...", 'created': '2024-11-09 09:49:52', 'submission_id': '1gmy4ku'}
{'comment': '"Women will be denied from high-paying jobs"\n\nSusie Wiles: "Am I a joke to you?"', 'created': '2024-11-09 13:46:39', 'submission_id': '1gmy4ku'}
{'comment': 'This is incredibly sad to spread this false information. Even more sad if people read this thinking it’s true.', 'created': '2024-11-09 14:05:50', 'submission_id': '1gmy4ku'}
{'comment': 'These people are crazy man 😂😂🤣🤣🤣 some people are reading this sobbing with a mask on in their parents house', 'created': '2024-11-09 16:06:58', 'submission_id': '1gmy4ku'}
{'comment': 'This is comical. Give me a break.', 'created': '2024-11-09 18:11:16', 'submission_id': '1gmy4ku'}
{'comment': 'You know what? Fine. I’ll just say it. \n\nThe left wanted me to be just like this for years so that their agenda could be true and not lies and slander. So yeah. I’ll just go along with it this time. This sounds great. I approve of all of it. I hope it all passes exactly like how it is worded here. Because after all we all know Trump fully approves of project 2025.\n\n/s', 'created': '2024-11-09 20:28:35', 'submission_id': '1gmy4ku'}
{'comment': 'I think the most insane election aftermath is the people talking about “4b movement” shaving their heads and refusing to sleep with men. Like they don’t realize regular men already don’t want anything to do with them. Only the guys who vote blue for women to like them are the ones losing.', 'created': '2024-11-09 21:09:24', 'submission_id': '1gmy4ku'}
{'comment': 'Etc.\n\nOh my!', 'created': '2024-11-09 22:03:11', 'submission_id': '1gmy4ku'}
{'comment': "It makes me happy knowing that a bunch of liberal women are cutting their hair, and swearing off of men (and getting pregnant) for the next 4 years. \n\nThank God. *please* don't reproduce you twat.", 'created': '2024-11-09 22:19:20', 'submission_id': '1gmy4ku'}
{'comment': 'Who put this piece of s*** together?', 'created': '2024-11-11 12:33:20', 'submission_id': '1gmy4ku'}
{'comment': 'Bro they literally just thought of a bunch of really bad negative things and said "THATS TRUMP! THATS TRUMP!" Even the project 2025 that was proposed to trump (yes proposed, it was never Trump\'s idea, it was some other guy who wanted trump to use his ideas) never mentioned half if not most of what I just read.', 'created': '2024-11-12 15:39:35', 'submission_id': '1gmy4ku'}
{'comment': 'This is hilarious 😂😂', 'created': '2024-11-09 03:00:29', 'submission_id': '1gmy4ku'}
{'comment': 'lol where do you even find these?', 'created': '2024-11-09 03:00:51', 'submission_id': '1gmy4ku'}
{'comment': 'I feel bad for the old people on facebook who see this and think that it’s true', 'created': '2024-11-09 03:10:06', 'submission_id': '1gmy4ku'}
{'comment': "How stupid are they going to feel when they realize that none of this is going to happen? \n\nWhat I wouldn't give to be a fly on their walls. Lol", 'created': '2024-11-09 03:12:42', 'submission_id': '1gmy4ku'}
{'comment': 'But we’re the party of sheep and idiots…..smh', 'created': '2024-11-09 03:24:16', 'submission_id': '1gmy4ku'}
{'comment': 'These guys and gals are mental.', 'created': '2024-11-09 03:27:08', 'submission_id': '1gmy4ku'}
{'comment': 'When you’re in a “lying about reality” contest and your opponent is a redditor 😪', 'created': '2024-11-09 03:33:26', 'submission_id': '1gmy4ku'}
{'comment': '😂😂 this is insane', 'created': '2024-11-09 03:35:36', 'submission_id': '1gmy4ku'}
{'comment': 'These claims are pure bullshit', 'created': '2024-11-09 03:53:47', 'submission_id': '1gmy4ku'}
{'comment': 'The sad, sad reality is people believe this absurdity and spread it as the gospel 🙄', 'created': '2024-11-09 04:00:02', 'submission_id': '1gmy4ku'}
{'comment': 'The most disturbing thing is there are assuredly a lot of people seeing this, and believing every word of it.', 'created': '2024-11-09 04:03:28', 'submission_id': '1gmy4ku'}
{'comment': 'Where are they coming up with this shit lmfao', 'created': '2024-11-09 04:05:45', 'submission_id': '1gmy4ku'}
{'comment': 'Pink tax = I should be given free shit\n\nHealthcare reform = I should be given free shit\n\nWomen\'s rights = I should be given free shit\n\nFalls back on their age old argument of, "Anything I like is a human right. Anything I don\'t like should be banned."', 'created': '2024-11-09 04:13:09', 'submission_id': '1gmy4ku'}
{'comment': 'These people literally WANT this shit to be true, they want to be oppressed so bad it’s insane', 'created': '2024-11-09 04:14:21', 'submission_id': '1gmy4ku'}
{'comment': 'Source: I made it the fuck up', 'created': '2024-11-09 04:18:52', 'submission_id': '1gmy4ku'}
{'comment': 'Did she just admit the wage gap is fake in the 5th slide?', 'created': '2024-11-09 04:22:34', 'submission_id': '1gmy4ku'}
{'comment': 'these people truly are dumb', 'created': '2024-11-09 04:23:21', 'submission_id': '1gmy4ku'}
{'comment': 'Will it provide funding for whoever made this to make a better presentation??', 'created': '2024-11-09 04:39:48', 'submission_id': '1gmy4ku'}
{'comment': 'This is the dumbest thing I’ve ever seen.', 'created': '2024-11-09 04:45:56', 'submission_id': '1gmy4ku'}
{'comment': 'These people truly are sick in the head.', 'created': '2024-11-09 05:14:11', 'submission_id': '1gmy4ku'}
{'comment': "As an autistic trump supporter I can't decide if I can't win or can't lose.", 'created': '2024-11-09 05:21:26', 'submission_id': '1gmy4ku'}
{'comment': 'Sounds legit...', 'created': '2024-11-09 05:33:19', 'submission_id': '1gmy4ku'}
{'comment': 'Ain’t nothing like liberal tears', 'created': '2024-11-09 05:39:36', 'submission_id': '1gmy4ku'}
{'comment': 'Sounds great, when do we start?', 'created': '2024-11-09 05:46:36', 'submission_id': '1gmy4ku'}
{'comment': 'I wonder what will they say when we ask about any evidence to back their claim', 'created': '2024-11-09 05:50:41', 'submission_id': '1gmy4ku'}
{'comment': 'What a croc of crap', 'created': '2024-11-09 05:52:42', 'submission_id': '1gmy4ku'}
{'comment': 'They can’t be serious.', 'created': '2024-11-09 06:07:35', 'submission_id': '1gmy4ku'}
{'comment': 'These people are worse than the “Russian bots”', 'created': '2024-11-09 06:26:32', 'submission_id': '1gmy4ku'}
{'comment': None, 'created': '2024-11-09 06:31:48', 'submission_id': '1gmy4ku'}
{'comment': 'Oh it must be so exhausting to be one of these folks...', 'created': '2024-11-09 06:40:26', 'submission_id': '1gmy4ku'}
{'comment': 'Do people actually believe this?', 'created': '2024-11-09 07:09:18', 'submission_id': '1gmy4ku'}
{'comment': 'Paid*', 'created': '2024-11-09 07:13:32', 'submission_id': '1gmy4ku'}
{'comment': 'Lol what in the world...', 'created': '2024-11-09 07:34:31', 'submission_id': '1gmy4ku'}
{'comment': 'Andy, “I’ll take how to torture your favorite woman for $100”…………', 'created': '2024-11-09 07:44:13', 'submission_id': '1gmy4ku'}
{'comment': 'Lmao. You can’t make this shit up', 'created': '2024-11-09 07:44:48', 'submission_id': '1gmy4ku'}
{'comment': 'Liberals have so many facets of delusion. From gender to extreme assumptions of Republican Intentions. I hope they get the help they need or on the other side of the token, maybe outlive their children or live in a financial situation just enough for them to barely get by but not enough to get any type of government financial assistance.', 'created': '2024-11-09 08:06:55', 'submission_id': '1gmy4ku'}
{'comment': 'Durr, ok. Totally plausible. No wonder why they purport this disinformation.', 'created': '2024-11-09 08:12:45', 'submission_id': '1gmy4ku'}
{'comment': '🤣🤣🤣 the cope is hard', 'created': '2024-11-09 08:12:55', 'submission_id': '1gmy4ku'}
{'comment': "I guess we're going sharia law on em boys.", 'created': '2024-11-09 08:32:11', 'submission_id': '1gmy4ku'}
{'comment': 'This is project 2025 or sharia law?', 'created': '2024-11-09 08:42:23', 'submission_id': '1gmy4ku'}
{'comment': 'This is literally what the dems thought trump eas going to do lol', 'created': '2024-11-09 08:43:23', 'submission_id': '1gmy4ku'}
{'comment': "They live in a fantasy world and this is the best they could come up with? Couldn't pretend to have superpowers or anything interesting? Just have to pretend to be oppressed?", 'created': '2024-11-09 09:20:02', 'submission_id': '1gmy4ku'}
{'comment': 'Lmao this hilariously crazy 🤪', 'created': '2024-11-09 10:18:34', 'submission_id': '1gmy4ku'}
{'comment': 'This appears to be written by a middle schooler with less schooling on the political system than a democrat politician', 'created': '2024-11-09 10:26:02', 'submission_id': '1gmy4ku'}
{'comment': 'Forced to get married?? Sign me up! Dating is a struggle these days', 'created': '2024-11-09 11:23:13', 'submission_id': '1gmy4ku'}
{'comment': 'What is the source of this?', 'created': '2024-11-09 12:23:53', 'submission_id': '1gmy4ku'}
{'comment': 'Who in America calls going to college “going to university”?', 'created': '2024-11-09 12:52:43', 'submission_id': '1gmy4ku'}
{'comment': 'People believe this shit… I’m glad common sense won this go around give me hope 😂', 'created': '2024-11-09 13:32:28', 'submission_id': '1gmy4ku'}
{'comment': 'Embarrassing one can even believe this lmao', 'created': '2024-11-09 13:33:32', 'submission_id': '1gmy4ku'}
{'comment': 'this is so ridiculous 😭', 'created': '2024-11-09 13:40:30', 'submission_id': '1gmy4ku'}
{'comment': "These people are sp fucking brainwashed I don't know if it's sad or hilarious.", 'created': '2024-11-09 15:12:28', 'submission_id': '1gmy4ku'}
{'comment': 'I’ll take “Things that are total bullshit for 400 Alex”…..', 'created': '2024-11-09 15:23:53', 'submission_id': '1gmy4ku'}
{'comment': 'If "this is not a joke" then why am I laughing so hard 🤣', 'created': '2024-11-09 15:28:50', 'submission_id': '1gmy4ku'}
{'comment': '😂yea! All that’s gonna happen! After 40 years I’m finally gonna be able to control my wife? I’m in! People are stupid!', 'created': '2024-11-09 15:33:43', 'submission_id': '1gmy4ku'}
{'comment': "They're trying so hard to be victims when they're not. Its actually insane some people believe this bullshit, we need to make mental asylums great again because I have seen some of the most unhinged, psychotic behavior ever from the left these last few days.", 'created': '2024-11-09 16:02:50', 'submission_id': '1gmy4ku'}
{'comment': 'lol, project 2025 is the new boogie man.', 'created': '2024-11-09 16:06:34', 'submission_id': '1gmy4ku'}
{'comment': "Trump isn't even apart of PT2025 IIRC.", 'created': '2024-11-09 16:11:47', 'submission_id': '1gmy4ku'}
{'comment': 'Can’t wait for NONE of this to happen and yet the demon rats will continue to scream and holler as if it is', 'created': '2024-11-09 16:29:58', 'submission_id': '1gmy4ku'}
{'comment': 'I love how ADULTS will look at these photos and think, “ahh yes, this must be true because someone on TikTok shared this” And never look into it further. Perhaps some frontal lobes don’t develop after all?', 'created': '2024-11-09 16:41:25', 'submission_id': '1gmy4ku'}
{'comment': 'The guy who paid to create P2025 is a Democrat super funder. So...feh.', 'created': '2024-11-09 17:15:18', 'submission_id': '1gmy4ku'}
{'comment': 'What kind of mushrooms are you eating/smoking.', 'created': '2024-11-09 17:17:20', 'submission_id': '1gmy4ku'}
{'comment': 'Where the absolute duck do they come up with this crap? Seriously! \nWhat is going to happen to their mental well-being when absolutely none of this comes to pass?', 'created': '2024-11-09 17:19:19', 'submission_id': '1gmy4ku'}
{'comment': 'Also, you left this best part out. Women surviving the holocaust will be converted into Axlotl Tanks for the express purpose of breeding male children.', 'created': '2024-11-09 17:42:32', 'submission_id': '1gmy4ku'}
{'comment': 'How could someone genuinely believe this?', 'created': '2024-11-09 17:43:56', 'submission_id': '1gmy4ku'}
{'comment': 'Someone spent time putting this together? People really need to find another hobby', 'created': '2024-11-09 17:58:20', 'submission_id': '1gmy4ku'}
{'comment': 'People are so stupid. These things will never happen.', 'created': '2024-11-09 17:59:37', 'submission_id': '1gmy4ku'}
{'comment': 'This is laughably hilarious to me. Like how uneducated do you need to be to actually believe this? I’d say below high school level education hahahaha this is so funny', 'created': '2024-11-09 18:08:44', 'submission_id': '1gmy4ku'}
{'comment': 'If you believe this crappy half baked propaganda just leave the country', 'created': '2024-11-09 18:19:55', 'submission_id': '1gmy4ku'}
{'comment': 'People really believe this ?', 'created': '2024-11-09 18:37:47', 'submission_id': '1gmy4ku'}
{'comment': 'Source: “Trust me bro…”', 'created': '2024-11-09 18:50:12', 'submission_id': '1gmy4ku'}
{'comment': 'Yeah. Spreading lies. Unreal.', 'created': '2024-11-09 19:01:05', 'submission_id': '1gmy4ku'}
{'comment': 'This sounds like sedition to me. We should find who made this and prosecute, 20 years.', 'created': '2024-11-09 19:07:12', 'submission_id': '1gmy4ku'}
{'comment': "Geez no wonder they think the world's going to end ,the lefts mind control runs deep", 'created': '2024-11-09 19:15:48', 'submission_id': '1gmy4ku'}
{'comment': 'Yikes is sad to see mentally deranged ppl affirm others insanity. There are actual ppl who believe this. I honestly think there should be consequence for spreading lies like this when it’s come to policy and laws. Every American deserves a chance to know what’s actually being delegated by the Govt. Some kids and naive adults will just believe this face value. Sad.', 'created': '2024-11-09 19:40:48', 'submission_id': '1gmy4ku'}
{'comment': 'I’ve already applied to be a guard in the breast milk extraction camps. Those liberals are in for it now.', 'created': '2024-11-09 20:01:02', 'submission_id': '1gmy4ku'}
{'comment': 'Yeah this all sounds very reasonable…. Is she saying tampons DON’T cost $8 a pack right now??? Cuz I’ve paid easily $12 🤣', 'created': '2024-11-09 20:03:45', 'submission_id': '1gmy4ku'}
{'comment': 'Checkmate women', 'created': '2024-11-09 20:11:29', 'submission_id': '1gmy4ku'}
{'comment': 'They make things up and then react hysterically to the things they made up. It’s quite a phenomenon. \n\nI almost want some of these to be true because of much they have annoyed me with their fever swamp paranoid delusions about this stuff.', 'created': '2024-11-09 20:17:56', 'submission_id': '1gmy4ku'}
{'comment': 'Crazy political fan fic', 'created': '2024-11-09 20:50:18', 'submission_id': '1gmy4ku'}
{'comment': 'Make Propaganda Illegal Again !!', 'created': '2024-11-09 21:12:33', 'submission_id': '1gmy4ku'}
{'comment': "Damn girl, are you a septic tank because you're full of shit", 'created': '2024-11-09 21:35:29', 'submission_id': '1gmy4ku'}
{'comment': "Yes. Of course. It's not like Trump publicly condemned project 2025 several times or anything...", 'created': '2024-11-09 22:10:56', 'submission_id': '1gmy4ku'}
{'comment': 'I… I just…', 'created': '2024-11-09 22:51:48', 'submission_id': '1gmy4ku'}
{'comment': "I've had people tell me that there was no way Trump read the 900 pages of Project 2025... If he didn't have the time, that means everyone else against the idea didn't read it either. How do they know what's in it, because those lefty media sources told them and lied about what was in it. I did read the first few pages and the only thing I saw was wanting to bring the nuclear family back.", 'created': '2024-11-09 22:54:36', 'submission_id': '1gmy4ku'}
{'comment': 'Anyone who spells “paid” as “payed” instantly loses all credibility', 'created': '2024-11-09 23:16:07', 'submission_id': '1gmy4ku'}
{'comment': 'Who is this “gay furries”?', 'created': '2024-11-09 23:23:54', 'submission_id': '1gmy4ku'}
{'comment': ' The amount of fear mongering is insane. The sad part is that there are a decent amount of people out there who actually believe all of that', 'created': '2024-11-10 00:16:21', 'submission_id': '1gmy4ku'}
{'comment': 'This type of exaggeration is what polarizes people. I\'ve seen plenty of Republicans doing it too. "If Dems win, they will force sex changes on children in public schools," etc.', 'created': '2024-11-10 00:32:02', 'submission_id': '1gmy4ku'}
{'comment': 'Jesus Christ its not 1984', 'created': '2024-11-10 01:48:10', 'submission_id': '1gmy4ku'}
{'comment': 'There’s a lot of neocon bullsh*t in Project 2025. I won’t lie about that but this is all just made up. \n\nWhy can’t they help themselves from lying?', 'created': '2024-11-10 04:36:07', 'submission_id': '1gmy4ku'}
{'comment': 'These lies are what will actually get people killed. Can you imagine being a woman and being told that if you have a miscarriage you will be arrested? It all stems from one case and the woman who had the miscarriage was arrested on completely unrelated charges. She was arrested for a crime she committed not for having a miscarriage. Yet the once presidential candidate claimed you can be arrested for a miscarriage. \n\nSupposedly McConnell is trying to end around Trump and elect leadership to keep him neutered in the Senate.', 'created': '2024-11-10 05:20:54', 'submission_id': '1gmy4ku'}
{'comment': 'Project 2025 has nothing to do with republicans, I don’t see anyone endorsing it but the liberals are freaking out about it. I had to explain to my girlfriend that it is just Heritage Foundation shenanigans and from my friends at the HF, they don’t even want anything to do with it.', 'created': '2024-11-10 06:32:53', 'submission_id': '1gmy4ku'}
{'comment': 'as someone who’s literally gay i don’t think can just take away your rights and shock you lol. thats not how the law works', 'created': '2024-11-10 07:01:09', 'submission_id': '1gmy4ku'}
{'comment': 'I swear people forget that trump was already in office for 4 years and none of that happened. Like if he wanted to he would have.', 'created': '2024-11-10 10:12:37', 'submission_id': '1gmy4ku'}
{'comment': 'And Democrats accuse Republicans of misinformation/disinformation. Haha, what bull crap. I present exhibit #1.', 'created': '2024-11-10 10:15:45', 'submission_id': '1gmy4ku'}
{'comment': 'The fact that people forget (or choose not to remember) that all 900 pages of “Project 2025” were fabricated by the same exact guy who made the “Russian Hoax” or “Steel Dossier” or whatever you wanna name it, speaks volumes. I hear Flavor Aid stocks are up lmao. Matter of fact, all stocks are up 📈', 'created': '2024-11-10 11:20:09', 'submission_id': '1gmy4ku'}
{'comment': 'Whomever made these images needs to seek counseling and therapy.', 'created': '2024-11-10 12:56:48', 'submission_id': '1gmy4ku'}
{'comment': 'I don\'t get their whole thing with "rich white Christian men". Why they so upset with us?', 'created': '2024-11-10 13:30:11', 'submission_id': '1gmy4ku'}
{'comment': 'Yeah, and maybe pigs will start flying.', 'created': '2024-11-10 17:14:11', 'submission_id': '1gmy4ku'}
{'comment': 'They WANT to believe this nonsense…they NEED to believe it, otherwise their sense of victim hood is shattered. It’s not to say that women and LGB folks have never been victims, but it’s been a damn long time since the days of “don’t ask, don’t tell” and womens suffrage…they need someone like Trump to use to further their agenda of perceived marginalization and discrimination, when in actuality, it’s the MSM and the dems who are literally victimizing them.', 'created': '2024-11-10 17:40:46', 'submission_id': '1gmy4ku'}
{'comment': 'This is absolutely hilarious!', 'created': '2024-11-10 17:56:09', 'submission_id': '1gmy4ku'}
{'comment': "I'm sorry, do.people actually believe this stuff??? Ud have to be a child or very low in to really believe these things will happen in America?", 'created': '2024-11-10 20:22:55', 'submission_id': '1gmy4ku'}
{'comment': 'Looks to me like a liberal fantasy wet dream.', 'created': '2024-11-10 20:55:52', 'submission_id': '1gmy4ku'}
{'comment': 'Oh NOW they choose to go with facts? Okay yeah sure honey.\n\nAbsolute bullshit.', 'created': '2024-11-10 21:03:14', 'submission_id': '1gmy4ku'}
{'comment': 'are they acting like trump is christian?', 'created': '2024-11-10 21:58:46', 'submission_id': '1gmy4ku'}
{'comment': '🤣😂🤣😂 I truly feel sorry for the people that believe this', 'created': '2024-11-10 22:23:31', 'submission_id': '1gmy4ku'}
{'comment': 'Bullshit.', 'created': '2024-11-11 07:43:22', 'submission_id': '1gmy4ku'}
{'comment': 'I can’t believe the amount of idiots that live in this country.', 'created': '2024-11-11 21:02:50', 'submission_id': '1gmy4ku'}
{'comment': 'People come up with this shit yet the Dumocrats actually believe it 😂😂😂', 'created': '2024-11-12 01:33:32', 'submission_id': '1gmy4ku'}
{'comment': "Funniest thing I've read all day. As a bisexual man I'm not worried at all", 'created': '2024-11-16 00:34:34', 'submission_id': '1gmy4ku'}
{'comment': "It'd be nice if women weren't allowed to vote anymore.", 'created': '2024-11-09 11:58:27', 'submission_id': '1gmy4ku'}
{'comment': 'Just head to the boys restroom in New York or California', 'created': '2024-11-09 06:42:41', 'submission_id': '1gmy4ku'}
{'comment': '*Timpons', 'created': '2024-11-09 08:55:58', 'submission_id': '1gmy4ku'}
{'comment': 'And can you imagine not finding them in every store? Going to The Home Depot? No tampons. Going to a piano store? No tampons. Going to Staples? No tampons. Hobby Lobby? No tampons. \n\nThe horror.', 'created': '2024-11-09 04:56:49', 'submission_id': '1gmy4ku'}
{'comment': 'I was going to come to the comments to say this. They are already $8+', 'created': '2024-11-09 11:11:52', 'submission_id': '1gmy4ku'}
{'comment': 'Recommending discs to you, my friend', 'created': '2024-11-09 03:07:46', 'submission_id': '1gmy4ku'}
{'comment': 'Yeah, those tampons couldn’t stop the Red Wave and I’m not sure a cup or a disk will do any better. Perhaps some red pants would help.', 'created': '2024-11-09 05:02:38', 'submission_id': '1gmy4ku'}
{'comment': 'I know, right? Sounds good to me!', 'created': '2024-11-09 23:16:45', 'submission_id': '1gmy4ku'}
{'comment': "I was gonna say... they're already $8+", 'created': '2024-11-09 03:32:56', 'submission_id': '1gmy4ku'}
{'comment': 'My thoughts too!', 'created': '2024-11-09 04:58:43', 'submission_id': '1gmy4ku'}
{'comment': 'This. I shouldn’t be paying $6 for a loaf of cooked wheat, only to depressingly cook it again because I want to eat bony death crust.', 'created': '2024-11-09 04:11:04', 'submission_id': '1gmy4ku'}
{'comment': 'Exactly. Because there are absolutely no female doctors, nurses, or politicians that would be aware of this grand plan. Yeah. Ok', 'created': '2024-11-09 02:21:39', 'submission_id': '1gmy4ku'}
{'comment': 'Don’t forget how they will be “payed” less.', 'created': '2024-11-09 04:57:39', 'submission_id': '1gmy4ku'}
{'comment': 'And the crazy thing is... some people are believing it!', 'created': '2024-11-09 19:39:14', 'submission_id': '1gmy4ku'}
{'comment': "The Harris campaign lied to many of them, and sadly a number of them fell for it. Thats why they're panicking so hard. They actually believe that shit.", 'created': '2024-11-09 06:13:42', 'submission_id': '1gmy4ku'}
{'comment': 'Views, rage thats all this is about.', 'created': '2024-11-09 03:25:04', 'submission_id': '1gmy4ku'}
{'comment': 'A 12 year old absolutely wrote this', 'created': '2024-11-09 05:38:22', 'submission_id': '1gmy4ku'}
{'comment': "....... let's make more shit up for the Hell of it", 'created': '2024-11-09 04:00:44', 'submission_id': '1gmy4ku'}
{'comment': 'these people think im fr tho lmfao like i dont think people realize republicans are the same as them but with brains', 'created': '2024-11-09 03:43:38', 'submission_id': '1gmy4ku'}
{'comment': '[removed]', 'created': '2024-11-09 03:43:06', 'submission_id': '1gmy4ku'}
{'comment': 'Self fulfilling prophecy', 'created': '2024-11-10 16:57:43', 'submission_id': '1gmy4ku'}
{'comment': 'Normally I’d have to pay extra for that in Mexico….it better be applied to my testicles or I’ll be pissed.', 'created': '2024-11-09 02:38:29', 'submission_id': '1gmy4ku'}
{'comment': 'Yeah this shit is wild. Even crazier people will believe this 😂', 'created': '2024-11-09 02:59:16', 'submission_id': '1gmy4ku'}
{'comment': 'Me too!', 'created': '2024-11-09 03:33:08', 'submission_id': '1gmy4ku'}
{'comment': 'No no elecroshock not electroshock', 'created': '2024-11-09 04:56:37', 'submission_id': '1gmy4ku'}
{'comment': 'But they can’t leave! Most countries have stricter immigration laws than the USA does. It’s only racist when we have strict border security', 'created': '2024-11-09 11:19:18', 'submission_id': '1gmy4ku'}
{'comment': 'Ha. Good point. Didn’t think of this approach.', 'created': '2024-11-09 14:06:39', 'submission_id': '1gmy4ku'}
{'comment': "Yeah. Almost like crappy bait.\n\nI haven't seen any claims like these. They are unfounded and just irrational.\n\nI can see why the country being more conservative and Christian leaning would feel like a threat to those who don't share those beliefs. But these pictures are just not real 'lefties memes'.\n\n\nWho believes this garbage?", 'created': '2024-11-09 16:23:02', 'submission_id': '1gmy4ku'}
{'comment': "A couple days ago, I saw something about a furry convention that rented a plane and how the number one complaint was that if it falls out of the sky, the entire US IT industry will collapse because there are so many IT people who are furries.\n\nAs someone whose wheelhouse is IT, I couldn't stop laughing at it.", 'created': '2024-11-09 02:59:54', 'submission_id': '1gmy4ku'}
{'comment': 'It must be a joke, can you imagine CNN going "BREAKING.. A hacker group known as Gay Furries released the leaked true agenda of Project 2025!"\n\n...as i typed it out I could actually imagine it.', 'created': '2024-11-09 07:37:33', 'submission_id': '1gmy4ku'}
{'comment': 'had to delete comment because id probably get permabanned but yeah its the YIFFERS', 'created': '2024-11-09 03:44:34', 'submission_id': '1gmy4ku'}
{'comment': 'It’s their number 1 go to, it’s so irrational but then again they whole heartedly believe we’ve just elected hitler 2.0', 'created': '2024-11-09 03:36:57', 'submission_id': '1gmy4ku'}
{'comment': 'Probably do. We were vacationing with friends. The wife said “Hitler will be a dictator.” I was stunned. Probably comes from the garbage I just read on those slides.', 'created': '2024-11-09 14:08:17', 'submission_id': '1gmy4ku'}
{'comment': 'B I N G O', 'created': '2024-11-09 04:57:53', 'submission_id': '1gmy4ku'}
{'comment': 'Well according to project 2025 she will have lower wages than men. And since he’s Hitler he will probably imprison her and make her do the work for free /s\n(Liberal logic)', 'created': '2024-11-09 11:20:56', 'submission_id': '1gmy4ku'}
{'comment': '“bUt tRuMP LiES” 🙄 I don’t know how Trump keeps his cool when he keeps being accused of this.', 'created': '2024-11-09 03:45:02', 'submission_id': '1gmy4ku'}
{'comment': 'In 2016 it was “Trump is going to get us in WW 3 with N. Korea!”', 'created': '2024-11-09 04:00:06', 'submission_id': '1gmy4ku'}
{'comment': 'They will still be TRUMP BAD until we figure out how to get them off of these lies.', 'created': '2024-11-09 03:41:02', 'submission_id': '1gmy4ku'}
{'comment': 'No, they\'ll look back at their riots, the lawfare, the made up but "justified" hoaxes, and the resistance of their governors and say "We stopped him. We saved democracy!"', 'created': '2024-11-09 16:47:21', 'submission_id': '1gmy4ku'}
{'comment': 'This is where they are getting their sources. There must be a way to break them free.', 'created': '2024-11-09 03:42:25', 'submission_id': '1gmy4ku'}
{'comment': "The same people whose tears we've been lapping up all week.", 'created': '2024-11-09 04:56:54', 'submission_id': '1gmy4ku'}
{'comment': 'My coworkers 😭', 'created': '2024-11-10 15:36:01', 'submission_id': '1gmy4ku'}
{'comment': 'Yes, when PAID is spelled PAYED you aren’t dealing with the sharpest crayons in the box…', 'created': '2024-11-09 03:58:44', 'submission_id': '1gmy4ku'}
{'comment': 'My hope in him joining MAGA is that we finally get a fleet to support a base on Mars in the next decade or so.', 'created': '2024-11-09 03:02:17', 'submission_id': '1gmy4ku'}
{'comment': 'It’s all over Reddit r/ Pennsylvania r/ Massachusetts r/ boomersbeingfools', 'created': '2024-11-09 03:44:33', 'submission_id': '1gmy4ku'}
{'comment': 'Video now uploaded also. Please share and expose this evil.', 'created': '2024-11-09 07:23:13', 'submission_id': '1gmy4ku'}
{'comment': 'Very well stated. Thank you for this!', 'created': '2024-11-09 09:15:19', 'submission_id': '1gmy4ku'}
{'comment': 'i mean it has to be', 'created': '2024-11-09 03:46:18', 'submission_id': '1gmy4ku'}
{'comment': 'Minnesota you mean.', 'created': '2024-11-09 08:55:08', 'submission_id': '1gmy4ku'}
{'comment': "Lol I'm not stepping foot out of Idaho into a blue state 😂😂😂", 'created': '2024-11-09 08:40:56', 'submission_id': '1gmy4ku'}
{'comment': "What am I going to do when I can't get my tampons at pizza hut anymore?!", 'created': '2024-11-09 04:57:33', 'submission_id': '1gmy4ku'}
{'comment': 'Actually, Staples does sell tampons, and dispensers. When I was recovering from a bad knee replacement and in a wheelchair every "Family Restroom" I used had tampon dispensers. WAY back when I was younger, in the 60s and 70s, when I did janitorial work they had feminine napkin dispensers in every female restroom at the church college where I worked. \n\nProject 2025 was a slur on Conservatism.', 'created': '2024-11-09 17:24:45', 'submission_id': '1gmy4ku'}
{'comment': "Just be careful of the ones at Spencer's...", 'created': '2024-11-09 07:17:16', 'submission_id': '1gmy4ku'}
{'comment': 'Dang, I thought I could grab a pack of tampons next time I go to Michael’s for some craft supplies. I totally expected them to be there, maybe in the aisle with all the silk flowers and Tie-Dye stuff.\xa0', 'created': '2024-11-09 06:56:03', 'submission_id': '1gmy4ku'}
{'comment': 'I second this recommendation! Game changer!', 'created': '2024-11-09 03:19:26', 'submission_id': '1gmy4ku'}
{'comment': 'Discs??\xa0 Pardon me...I went through menopause 13 years ago.\xa0 Now there are Discs??\xa0 Since when?\xa0 What are they?', 'created': '2024-11-11 07:48:47', 'submission_id': '1gmy4ku'}
{'comment': 'If women would make that much less (30 percent!) why would any company hire men?', 'created': '2024-11-09 10:49:40', 'submission_id': '1gmy4ku'}
{'comment': 'sounds like they already took their right to a proper education🫣', 'created': '2024-11-10 04:09:50', 'submission_id': '1gmy4ku'}
{'comment': 'The Harris campaign, the NYT, WaPo, CNN, The View, MSNBC etc. and the scary thing is not just that Americans believe it but that our international news is this crap as well.', 'created': '2024-11-09 12:27:41', 'submission_id': '1gmy4ku'}
{'comment': 'Someone in a music genre subreddit said how people already started committing suicide since Trumps election victory. They proceeded to say blood was on Trumps hands. But wouldn’t the blood be on Harris’s hands for spreading blatant misinformation to scare them? All the comments are “P25” and how children can’t change their gender. I’m so sick of this shit.', 'created': '2024-11-09 14:57:31', 'submission_id': '1gmy4ku'}
{'comment': 'I agree with this statement, lol xD the needs to have an endorsement stamp on it lol, I\'m not against what libs are selling in terms of "awareness" but with in reason that isnt cringe or obnoxiously annoying or making it a mandatory lifestyle choice but i really hate most of all is the delivery n the way its hypocritical to what their message is. Like the way they are projecting inclusion, but they are truly exclusive if you disagree with 1 thing, suddenly your bigot, etc. And it has to be a lifestyle I just', 'created': '2024-11-09 15:37:40', 'submission_id': '1gmy4ku'}
{'comment': '/s', 'created': '2024-11-09 03:46:50', 'submission_id': '1gmy4ku'}
{'comment': '😁', 'created': '2024-11-09 02:40:42', 'submission_id': '1gmy4ku'}
{'comment': 'Pretty sure that will happen either way.', 'created': '2024-11-09 02:49:55', 'submission_id': '1gmy4ku'}
{'comment': 'You could probably accomplish the same thing with a car battery and some time', 'created': '2024-11-09 04:25:19', 'submission_id': '1gmy4ku'}
{'comment': 'Lmao', 'created': '2024-11-09 10:31:12', 'submission_id': '1gmy4ku'}
{'comment': 'That is too funny, my wife is in IT with Tech Mahindra.', 'created': '2024-11-09 03:04:50', 'submission_id': '1gmy4ku'}
{'comment': "So, what's your fursona then?", 'created': '2024-11-09 16:16:28', 'submission_id': '1gmy4ku'}
{'comment': 'What is the correlation between working in IT and being a furry? \nI accidentally stumbled upon a furry convention when I was staying at a hotel once. It was terrifying', 'created': '2024-11-09 11:17:43', 'submission_id': '1gmy4ku'}
{'comment': "I don't know about CNN but some of these youtubers like Meidas Touch Network or Brian Taylor Cohen for sure.", 'created': '2024-11-09 09:54:43', 'submission_id': '1gmy4ku'}
{'comment': 'I laughed out loud. Shit you not.\n\nThank you, good Sir.', 'created': '2024-11-09 14:37:48', 'submission_id': '1gmy4ku'}
{'comment': 'I’ve heard them call him hitler2.0 and I don’t know how many times they called him a fascist.', 'created': '2024-11-09 03:53:16', 'submission_id': '1gmy4ku'}
{'comment': "iT's EaSy tO bE cOoL wHeN yOuR'E hITleR!", 'created': '2024-11-09 04:52:37', 'submission_id': '1gmy4ku'}
{'comment': 'The same way he keeps his cool when they call him racist even though his ex was black lol they are delulu but he loves them all sadly', 'created': '2024-11-09 05:30:25', 'submission_id': '1gmy4ku'}
{'comment': "I'm sure he used to it. In fact he probably enjoys it", 'created': '2024-11-09 16:32:48', 'submission_id': '1gmy4ku'}
{'comment': "Because he won and that says more than any words ever could.\n\nIt's like someone bitching and moaning at you after you win the lottery. That's good for you, now fuck off, I'm busy being rich.", 'created': '2024-11-09 16:17:45', 'submission_id': '1gmy4ku'}
{'comment': "I'm in a swing state. I've been sponging up my neighbors and filling up an aquarium.", 'created': '2024-11-09 11:07:44', 'submission_id': '1gmy4ku'}
{'comment': 'Also “ect.” instead of etc.', 'created': '2024-11-09 23:16:30', 'submission_id': '1gmy4ku'}
{'comment': 'It\'s even better if you watch "For All Mankind" TV Show', 'created': '2024-11-09 04:56:04', 'submission_id': '1gmy4ku'}
{'comment': 'How is it living in Idaho? I live in Michigan and I hate it here! I want to move to a Republican controlled state.', 'created': '2024-11-14 04:33:26', 'submission_id': '1gmy4ku'}
{'comment': 'Lucky I’m in blue state. Surrounded by dems lol', 'created': '2024-11-10 06:02:07', 'submission_id': '1gmy4ku'}
{'comment': 'My go-to before was a quick ride to a Minnesota elementary school’s boys’ bathroom, but I guess that’s a no-go for me now too 😫', 'created': '2024-11-09 16:37:27', 'submission_id': '1gmy4ku'}
{'comment': 'I’ve wanted to try a cup or disc for ages now but I’m so scared to lmao \nI have an IUD so idek if I can use them', 'created': '2024-11-09 03:31:32', 'submission_id': '1gmy4ku'}
{'comment': 'Becuz da patriarchy.', 'created': '2024-11-10 05:27:39', 'submission_id': '1gmy4ku'}
{'comment': "I don't particularly care what other countries citizen's think of us and if they believe that shit. Their leaders know the US just became the adult in the room again. I do care about my fellow Americans, the ones that are truly scared, the ones that are crying unironically with their anxiety thru the roof, the ones who truly believe they are now in imminent danger. I've seen overdramatic and intentionally hyperbolic comments, and I've seen sincerely terrified comments from ingesting the propaganda. I have compassion and empathy for the latter, and it makes me feel so sad for them.", 'created': '2024-11-09 17:04:36', 'submission_id': '1gmy4ku'}
{'comment': "Blood is absolutely on Harris's campaign and no one else. They created the fear using lies, knowing they were lies. Anyone who actually have committed suicide due to that fear, their families should sue the DNC for blatant intentional lies of doom that led to their loved one taking their own life. Every fucking thing they are so terrified of is a lie. If they could stop panicking for a moment and allow common sense to rejoin the party in their heads, they'd see just how ridiculous the claims are and how impossible it would be to implement them.", 'created': '2024-11-09 17:13:49', 'submission_id': '1gmy4ku'}
{'comment': 'r/BrandNewSentence', 'created': '2024-11-09 22:00:11', 'submission_id': '1gmy4ku'}
{'comment': '“These people….they think i am Hitler, can you believe that?…. I think I’m smarter than Hitler, better looking too!”', 'created': '2024-11-09 17:03:21', 'submission_id': '1gmy4ku'}
{'comment': 'I love Idaho!!!! The people are great and where I live housing is very reasonable I pay $750/mo for a large 2 bedroom apartment. My landlord is actually Lori McCann she is part of the house of representatives district 6A for Idaho she was just re elected!!! She is a great person and an even better landlord. Idaho is beautiful and I love my community!!!', 'created': '2024-11-14 04:43:50', 'submission_id': '1gmy4ku'}
{'comment': 'Amazing here. I love Idaho. Some cities are experiencing huge housing cost rises though from Seattlites and Californians moving in.\n9/10 state', 'created': '2024-11-15 18:21:16', 'submission_id': '1gmy4ku'}
{'comment': "I am so sorry LOL my sister is in Washington State and her and her husband are looking for land in Idaho they can't stand it anymore.", 'created': '2024-11-10 06:05:37', 'submission_id': '1gmy4ku'}
{'comment': 'Lol 😂😂😂😂😂😆😆😆😆😆!!!!!!!!!!!!!!!!', 'created': '2024-11-09 18:58:19', 'submission_id': '1gmy4ku'}
{'comment': 'Get ready, you won’t be allowed to have an IUD with P2025 😂*sarcasm*', 'created': '2024-11-09 03:36:33', 'submission_id': '1gmy4ku'}
{'comment': 'I, too, have an iud. Personally I found the cup to increase cramps, but have been using a disc now for a few years and am super happy. At risk of tmi, I recently had it replaced and have had zero issues during this time, either\n\nThere are disposable ones you can try first (soft disc) — I did that when I was first considering and used 1/cycle before I committed the $40 or whatever it was', 'created': '2024-11-09 03:37:07', 'submission_id': '1gmy4ku'}
{'comment': 'The problem is that if the politicians believe that their people all think America and Trump are evil then they will act badly towards us to curry favor with their voters. This is why when summer of 2020 was going on there were race riots in European countries who had nothing to do with our racial history and their politicians went along with it. We’ve already seen parliaments of other countries saying they’ll stand with the democrats against Trump.', 'created': '2024-11-09 18:32:59', 'submission_id': '1gmy4ku'}
{'comment': "That's awesome, I'm paying $960 per month for a 1 bedroom apartment that's only 400 sqft, and it looks terrible. Maybe when my wife comes over from the Philippines in a few years, her and I can move there.", 'created': '2024-11-14 06:10:00', 'submission_id': '1gmy4ku'}
{'comment': 'Same here except not Washington\xa0', 'created': '2024-11-10 20:44:51', 'submission_id': '1gmy4ku'}
{'comment': 'Lmaoooo the fact that libs genuinely believe that is crazy to me \n(However I prolly should get mine removed since there’s a class action lawsuit going on for the one I have 😭)', 'created': '2024-11-09 03:38:01', 'submission_id': '1gmy4ku'}
{'comment': '(/s) lol', 'created': '2024-11-09 04:11:28', 'submission_id': '1gmy4ku'}
{'comment': 'Oooo I didn’t know there were disposable ones!! Thank u for the recommendation I will definitely try them. Question tho if you have a heavier flow, do they work alright on heavier days? I know the cups hold a lot but I don’t know much about the discs', 'created': '2024-11-09 03:41:10', 'submission_id': '1gmy4ku'}
{'comment': "Why would the left care about IUD's apparently abortion is the preferred birth control 😂", 'created': '2024-11-09 04:58:55', 'submission_id': '1gmy4ku'}
{'comment': "I gotta get mine changed out because it's almost time but I don't wanna look like a lib 😭", 'created': '2024-11-09 04:06:43', 'submission_id': '1gmy4ku'}
{'comment': 'I know someone that works in an ob/gyn office in Texas. You won’t believe how many people have called asking if they have to get their IUD removed and if they won’t be able to get their birth control pills after 1/20/25', 'created': '2024-11-09 11:13:17', 'submission_id': '1gmy4ku'}
{'comment': 'The shape is different but I don’t think they actually hold (much) less; there are also different sizes of both. Discs also way easier to empty! I will use with period undies on heavier days/nights jic. Feel free to dm me if you’d like additional/more detailed info. I def recommend giving them a try though!', 'created': '2024-11-09 03:47:53', 'submission_id': '1gmy4ku'}
{'comment': 'you deserve all the upvotes 😭😂', 'created': '2024-11-10 04:08:14', 'submission_id': '1gmy4ku'}
{'comment': 'Wear a trump shirt or MAGA hat when you go in 😂', 'created': '2024-11-09 11:14:05', 'submission_id': '1gmy4ku'}
{'comment': 'Lmaooooo', 'created': '2024-11-09 04:12:05', 'submission_id': '1gmy4ku'}
{'comment': 'Hahahahahahha', 'created': '2024-11-09 04:30:07', 'submission_id': '1gmy4ku'}
{'comment': 'Hahaha good idea', 'created': '2024-11-09 14:05:13', 'submission_id': '1gmy4ku'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 23:28:07', 'submission_id': '1gmuyxj'}
{'comment': 'That loser should be fired and black-listed.', 'created': '2024-11-08 23:40:22', 'submission_id': '1gmuyxj'}
{'comment': 'Its really weird this comes out after the election. No need to cover it up any more.', 'created': '2024-11-08 23:31:25', 'submission_id': '1gmuyxj'}
{'comment': 'This should be on every network, government intentionally inflicting harm on the targeted population.', 'created': '2024-11-09 00:08:57', 'submission_id': '1gmuyxj'}
{'comment': 'Discriminate against Trump voters and drinks lots of water. What a joke.', 'created': '2024-11-08 23:56:47', 'submission_id': '1gmuyxj'}
{'comment': 'What is absolutely baffling to me is the sheer hatred and just, for lack of a better word, pure evil that comes from that side sometimes.\n\nI am a full on Republican conservative, but I would never in my life refuse aid to someone based solely on their political beliefs. How more inhumane can you be?', 'created': '2024-11-09 00:40:02', 'submission_id': '1gmuyxj'}
{'comment': 'That seems like a tolerant openminded liberal in charge.', 'created': '2024-11-09 01:15:16', 'submission_id': '1gmuyxj'}
{'comment': 'That is horrible.', 'created': '2024-11-09 00:01:01', 'submission_id': '1gmuyxj'}
{'comment': 'Disgusting.\n\nAnd republicans are the authoritarians, the dictators, the fascists, the nazis etc -___-', 'created': '2024-11-09 01:03:23', 'submission_id': '1gmuyxj'}
{'comment': 'Lawsuit against FEMA is deserved, specifically targeting the individual who made this call, truly evil stuff.', 'created': '2024-11-09 00:44:02', 'submission_id': '1gmuyxj'}
{'comment': 'No one is less loving and tolerant than a liberal who found out you believe differently than them', 'created': '2024-11-09 01:36:08', 'submission_id': '1gmuyxj'}
{'comment': 'This makes me angry to no end. Well inauguration can’t come fast enough to get the evil out bc this is just one thing that was discovered, I’m sure there’s loads of stuff we have no idea about. Dems are just bad insane ppl', 'created': '2024-11-09 01:36:50', 'submission_id': '1gmuyxj'}
{'comment': 'So they move him to another area and that’s his slap on the wrist? That’s it? Jail. Straight to jail. Do not pass go. Do not collect $200', 'created': '2024-11-09 06:19:35', 'submission_id': '1gmuyxj'}
{'comment': 'If this turns out to be true (I’ve read it in a couple places) that person should be tarred and feathered', 'created': '2024-11-09 02:17:48', 'submission_id': '1gmuyxj'}
{'comment': 'I wamt to say "how the fuck could a government employee follow such an order" butttttttt....', 'created': '2024-11-09 23:26:57', 'submission_id': '1gmuyxj'}
{'comment': "FEMA needs to rebuilt from the ground up this perfect example. The article said they moved to another location not fired. The lawsuit that's coming needs to have that supervisor name on it also they need to feel some pain also.", 'created': '2024-11-10 18:43:37', 'submission_id': '1gmuyxj'}
{'comment': 'Lmao most trump supporters don’t need fema. Because they are responsible people.', 'created': '2024-11-09 04:10:38', 'submission_id': '1gmuyxj'}
{'comment': 'How’d that work out for ‘em…?', 'created': '2024-11-09 00:45:16', 'submission_id': '1gmuyxj'}
{'comment': 'Does anybody know if this is criminal conduct or just a firing?', 'created': '2024-11-09 01:23:05', 'submission_id': '1gmuyxj'}
{'comment': 'Ohhhh someone cross post this in Asheville. 🤣', 'created': '2024-11-09 02:50:20', 'submission_id': '1gmuyxj'}
{'comment': 'I’m sure the Herman Caine award sub users are really happy', 'created': '2024-11-09 04:08:59', 'submission_id': '1gmuyxj'}
{'comment': 'Deport deport deport.', 'created': '2024-11-09 12:27:56', 'submission_id': '1gmuyxj'}
{'comment': 'Fired? He should be criminally charged.', 'created': '2024-11-09 00:21:50', 'submission_id': '1gmuyxj'}
{'comment': 'Should go to prison. People could have died. Maybe some did?', 'created': '2024-11-09 01:02:06', 'submission_id': '1gmuyxj'}
{'comment': 'Did you see the story that the second assassination attempt is Iran-linked? Lord knows that was buried until after the election. At this point our media outlets and government working class are just taking orders from the DNC.', 'created': '2024-11-09 01:36:13', 'submission_id': '1gmuyxj'}
{'comment': "It's honestly surprising to see that all of a sudden, I'm seeing more right leaning statements in subs now that I'arnt getting downvoted to oblivion.\n\nAlmost like after the election, a lot of closet conservatives finally put in their 2 cents worth", 'created': '2024-11-09 05:13:40', 'submission_id': '1gmuyxj'}
{'comment': 'Aren’t smart with your text spacing.', 'created': '2024-11-09 06:37:22', 'submission_id': '1gmuyxj'}
{'comment': 'This was caught in Florida because one of the people who volunteered to help people from other government agencies spoke up. NONE of the FEMA employees said a word.\n\n...which means the suspicions of FEMA deliberately screwing over people in North Carolina may well be correct.', 'created': '2024-11-09 01:39:04', 'submission_id': '1gmuyxj'}
{'comment': 'Mf owes me after landing on my boardwalk with 3 hotels\xa0', 'created': '2024-11-09 07:10:45', 'submission_id': '1gmuyxj'}
{'comment': 'There was a time when I would have asked the same question.\n\nThen I read about the Tuskeegee Experiment, where 600 black men with syphilis were told they were being treated, but were given placebos, so the government doctors could do research on untreated syphilis. ...for 40 years, during which the cure was known. During that time, the men infected their wives, unborn children (who were born blind as a result), some went insane, and others died.\n\n40 years. ...and no one said a word, until one government employee found out what was being done and went to the media.', 'created': '2024-11-10 00:07:03', 'submission_id': '1gmuyxj'}
{'comment': 'Not just FEMA. The whole bureaucracy is like this now. It needs a purge.', 'created': '2024-11-10 20:45:14', 'submission_id': '1gmuyxj'}
{'comment': 'Just fine according to the story. The supervisor responsible saw no consequences other than being transferred to a different part of Florida.', 'created': '2024-11-09 01:34:00', 'submission_id': '1gmuyxj'}
{'comment': "Per the story, the supervisor responsible wasn't even disciplined, they were just moved to a different area of Florida.", 'created': '2024-11-09 01:30:17', 'submission_id': '1gmuyxj'}
{'comment': 'Jan 6 swap', 'created': '2024-11-09 03:48:54', 'submission_id': '1gmuyxj'}
{'comment': 'They just said Iran is still a threat to Trump… nah, I think we all know who the threat is.. it isn’t Iran.', 'created': '2024-11-09 03:27:07', 'submission_id': '1gmuyxj'}
{'comment': "https://www.justice.gov/opa/media/1376516/dl\n\nI know it's confusing with the amount of it, but this would be the third one.", 'created': '2024-11-09 05:30:25', 'submission_id': '1gmuyxj'}
{'comment': 'Part of Kamala’s campaign was using paid staffers to hijack Reddit and other Internet forums to “build consensus”', 'created': '2024-11-09 16:43:31', 'submission_id': '1gmuyxj'}
{'comment': 'Wow. You democrats are really snooty and childish 🙄.', 'created': '2024-11-09 08:28:55', 'submission_id': '1gmuyxj'}
{'comment': 'Agree, the voters have spoken what the Dems are doubling down on unpopular policies.', 'created': '2024-11-11 00:31:22', 'submission_id': '1gmuyxj'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 22:04:28', 'submission_id': '1gmt2dg'}
{'comment': 'Two more months of this lawfare then it ends forever', 'created': '2024-11-11 04:14:38', 'submission_id': '1gmt2dg'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 21:01:45', 'submission_id': '1gmrlom'}
{'comment': 'Zero chance this will happen…', 'created': '2024-11-08 21:44:52', 'submission_id': '1gmrlom'}
{'comment': "How would he get a chance if the Senate doesn't vote on it, or Judiciary doesn't send it to the floor ? They have 32 days ( not including state work periods ) until they adjourn for the [year.It](http://year.It) could be forced, sure but it's pretty unlikely.", 'created': '2024-11-08 21:45:36', 'submission_id': '1gmrlom'}
{'comment': 'Last session of the U.S. Senate is December 20, 2024. There are federal holidays and Thanksgiving week in between. They are very desperate and making panic moves.', 'created': '2024-11-08 22:40:36', 'submission_id': '1gmrlom'}
{'comment': 'EDIT: misread this - hopefully she is like the others and rides it out, don’t need the lame duck puppet getting a chance to put someone in now', 'created': '2024-11-08 21:08:03', 'submission_id': '1gmrlom'}
{'comment': "For fuck sake they sure dispose of their own at the drop of a hat. Remember when Jimmy Carter wanted to stay alive long enough to vote for Kamala? Now the left is probably wondering what he's doing hanging around still.", 'created': '2024-11-09 11:04:34', 'submission_id': '1gmrlom'}
{'comment': 'Trump has the possibility of picking 3 justices this time around. Would rather focus on the successors to Thomas and Alito since it would be advantageous for them to retire in the next 2-3 years.', 'created': '2024-11-09 19:06:21', 'submission_id': '1gmrlom'}
{'comment': "She isn't the oldest on the court. That's Thomas, I think. She isn't going to retire with a Republican in office, so she will try and run the clock, and she is 70 so isn't inconceivable that she could live well into the 2030s. If Republicans in the Senate are sensible Thomas will retire sometime in 2026 so that Trump can replace him to maintain the majority into the 2030s at least.", 'created': '2024-11-10 04:35:57', 'submission_id': '1gmrlom'}
{'comment': 'Now this is going to be interesting. How can anyone be confirmed in 10 weeks with a new administration? This is another Ginsburg who likely will be replaced in the next four years if her health continues to decline. 7-2 Supreme Court majority. Plus the Senate which does confirmations will be solidly Republican, at least with a majority.', 'created': '2024-11-08 23:20:26', 'submission_id': '1gmrlom'}
{'comment': 'Wait what? Did they give her 4 years to live or something ?', 'created': '2024-11-09 00:01:58', 'submission_id': '1gmrlom'}
{'comment': "They way things are going these days, I wouldn't put it past these whackjobs to try and off this woman just so they can get their pick.\n\nLet's pray she tells these shrill fuckwits where to go. At least until Jan 20th anyway, at which point she's welcome to enjoy a well earned retirement.", 'created': '2024-11-08 23:39:11', 'submission_id': '1gmrlom'}
{'comment': 'No Senate is going to confirm a SCOTUS appointment before a new Admin. , full stop.', 'created': '2024-11-08 23:42:20', 'submission_id': '1gmrlom'}
{'comment': 'Oh oh please be that stupid. There is no way they will confirm before he takes office', 'created': '2024-11-09 02:49:51', 'submission_id': '1gmrlom'}
{'comment': "The Senate is majority Red, they can just reject and delay until after January. She isn't going to retire; she will be there until dead or completely infirm.", 'created': '2024-11-09 08:59:31', 'submission_id': '1gmrlom'}
{'comment': 'Well they forced Biden out, so seems about right.', 'created': '2024-11-09 11:18:47', 'submission_id': '1gmrlom'}
{'comment': 'Remember poor old Justice Ginsberg? She was lifted up as a heroine, and they ran stories about how she was working out at the gym every day! Then, when she had rhe AUDCITY to DIE, they turned on her legacy, saying she was a power-hungry fool who should have retired before Obama left office.\n\nFickle leftists.\n\nhttps://www.glamour.com/gallery/this-is-justice-ruth-bader-ginsburgs-actual-workout\n\nhttps://www.nytimes.com/2020/09/22/opinion/rbg-ginsburg-fitness.html\n\nhttps://www.cnn.com/2019/03/14/politics/supreme-court-justice-ruth-bader-ginsburg-fitness-role-model-workout/index.html\n\nhttps://www.politico.com/news/magazine/2022/06/10/ruth-bader-ginsburg-retire-legacy-00038638', 'created': '2024-11-09 19:39:38', 'submission_id': '1gmrlom'}
{'comment': 'Why tf would she retire??', 'created': '2024-11-14 04:57:41', 'submission_id': '1gmrlom'}
{'comment': "Even if she retired, there's no chance a replacement will be made before Trump comes into office. Instead of enjoying the time she has left, she may try to ride out the next 4 years like others have before her.", 'created': '2024-11-08 22:06:27', 'submission_id': '1gmrlom'}
{'comment': 'Let’s see the left ran on ending filibuster and packing the court so let’s give them that and add another 6 republicans justices. Their promises get fulfilled- this is sarcasm', 'created': '2024-11-09 16:12:37', 'submission_id': '1gmrlom'}
{'comment': 'Supreme Court justices are mostly politically agnostic. They’re not just gonna step aside because party leaders want them to.', 'created': '2024-11-09 17:53:04', 'submission_id': '1gmrlom'}
{'comment': 'Waiting worked so well in keeping Merrick Garland off the court. I think Republicans would find to run the clock out on this one.', 'created': '2024-11-08 22:17:40', 'submission_id': '1gmrlom'}
{'comment': 'Current senate republicans have enough seats to filibuster. If she does retire, Trump will be able to make another SCOTUS nomination on day one.', 'created': '2024-11-08 23:07:40', 'submission_id': '1gmrlom'}
{'comment': "Doesn't matter really just get to play their games and delay until trump gets in.", 'created': '2024-11-09 02:21:39', 'submission_id': '1gmrlom'}
{'comment': 'Those are at the greatest at risk of having to retire at some point/dying due to age. So that should be the priority for sure.', 'created': '2024-11-10 04:39:51', 'submission_id': '1gmrlom'}
{'comment': 'In name only really to dam many rings looking for favors for when the dems get their next at bat.', 'created': '2024-11-09 02:23:08', 'submission_id': '1gmrlom'}
{'comment': 'type 1 diabetes is what I found', 'created': '2024-11-09 17:20:16', 'submission_id': '1gmrlom'}
{'comment': 'lol', 'created': '2024-11-09 18:10:56', 'submission_id': '1gmrlom'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 20:31:09', 'submission_id': '1gmqwdc'}
{'comment': None, 'created': '2024-11-08 23:00:27', 'submission_id': '1gmqwdc'}
{'comment': "Here is an example of a sane liberal. I guess that's why the Democratic party won't have him.", 'created': '2024-11-08 21:02:21', 'submission_id': '1gmqwdc'}
{'comment': 'You know, if RFK and Trump and Vance can make this work, we could see a real turn around for the American agricultural and food system. They just can’t give in to giants like Tyson Foods, stay the course, no BS, ignore the lobbyists, do the right thing.', 'created': '2024-11-08 22:16:54', 'submission_id': '1gmqwdc'}
{'comment': "I've been told I'm stupid because I have no college degree and voted for Trump. Like my vote for Trump had anything to do with a college degree. I voted with my pocketbook. I can't afford basic needs that I could get under Trump without much effort. I made the right choice.", 'created': '2024-11-09 17:23:22', 'submission_id': '1gmqwdc'}
{'comment': 'I LOVE THIS SO MUCH', 'created': '2024-11-08 22:45:30', 'submission_id': '1gmqwdc'}
{'comment': 'This sounds great! Like they actually care. Hope it happens as he says.', 'created': '2024-11-08 23:12:27', 'submission_id': '1gmqwdc'}
{'comment': "We've got all 3 branches of government, and we're stacked to the gills with people who are fed up. It's time to take a bulldozer to the marble columns. We legitimately CAN reverse the course that this country is headed in.", 'created': '2024-11-09 04:59:46', 'submission_id': '1gmqwdc'}
{'comment': 'So glad I supported his campaign and Trump’s. Wooohoooo!', 'created': '2024-11-10 22:34:28', 'submission_id': '1gmqwdc'}
{'comment': 'SEE! HOPE IS RESTORED! \n\nTRUMP HAS THE TOUCH! HE HAS THE POWEEEERER!!', 'created': '2024-11-09 00:57:22', 'submission_id': '1gmqwdc'}
{'comment': 'Rfk is jacked.', 'created': '2024-11-09 12:11:04', 'submission_id': '1gmqwdc'}
{'comment': 'Was he named to the cabinet or as an adviser recently ?', 'created': '2024-11-09 00:19:37', 'submission_id': '1gmqwdc'}
{'comment': 'That would be great news for your country.', 'created': '2024-11-09 06:05:32', 'submission_id': '1gmqwdc'}
{'comment': 'No they are more interested in polluting their bodies with abortion pills and drugs and trans hormones at massive levels.', 'created': '2024-11-08 22:46:45', 'submission_id': '1gmqwdc'}
{'comment': "Democrats are going to be lobbing hand grenades because they aren't learning anything.", 'created': '2024-11-08 22:36:11', 'submission_id': '1gmqwdc'}
{'comment': 'I have degrees. I am at times, very stupid. I voted red across the board for myriad reasons. We both made the right choice.', 'created': '2024-11-09 18:32:53', 'submission_id': '1gmqwdc'}
{'comment': "Then by that logic no one should listen to Cher or Taylor Swift who didn't go to college. YOU'RE not dumb; the people telling you that are. *BTW The neurosurgeon who saved my mother's life and is renown throughout the world as being probably in the top 5 on the planet, is a Registered and voting Republican. While I don't know how he voted, his wife used the #maga in a social media post. So yeah, world's smartest doctor is a Trump voter.*", 'created': '2024-11-10 04:55:06', 'submission_id': '1gmqwdc'}
{'comment': 'He’s gonna be the lefts Liz Cheney, but in a good way and not a loon.', 'created': '2024-11-09 01:19:27', 'submission_id': '1gmqwdc'}
{'comment': 'The amount of people on psych meds and antidepressants or anti anxiety medications is absolutely ridiculous.', 'created': '2024-11-08 23:13:25', 'submission_id': '1gmqwdc'}
{'comment': 'With what power?\n\nAll the contested house sets are flipping red. The Senate is firmly red and Trump can appoint judges rapidly.\n\nMusk will get in and purge the administrative state of its most idiotic players so they’ll now be unemployed.', 'created': '2024-11-09 16:52:06', 'submission_id': '1gmqwdc'}
{'comment': "Thanks. I just don't see the point of people thinking like this. Like just because I didn't go to college for indoctrination doesn't make my choice any less relevant. I guess it goes to show how much people on college campuses' are lied to. I feel sorry for them.", 'created': '2024-11-09 18:42:14', 'submission_id': '1gmqwdc'}
{'comment': 'Oh but they don\'t care about that because Taylor and Cher vote Democrat. They only throw shade toward the Republican side, and that\'s another reason I voted for Trump. They are so transparent and contradict themselves all of the time. Best explained with the phrase "the left hand doesn\'t know what the right is doing". That perfectly sums up left leaners and their followers.', 'created': '2024-11-10 04:59:23', 'submission_id': '1gmqwdc'}
{'comment': 'I’m going to offer a different perspective, as a doctor who prescribes anti depressants. Often times, patients don’t *want* to make lifestyle changes to help their depression. Yes, I can preach out the wazoo about the importance of exercise, eating healthy, limiting social media, going out, building connections, etc, but I can’t hold a gun to my patients head and force the to do it. 9/10 times people don’t want to be held accountable, and just want a pill that will fix them. And honestly, I’d rather prescribe an SSRI that has a mild side effect profile to help them vs have them commit suicide and get sued because I didn’t treat their depression.\n\nThe same goes for diabetes, hypertension, high cholesterol, etc. Aside from some genetic causes, these conditions are *almost entirely* reversible with lifestyle changes alone. But do my patients *want* to dedicate themselves to counting calories, limiting processed foods, quitting smoking/drinking/drugs and exercising? No! And again, I’d rather put those people on a medication with a mild side effect profile that I *know* they’ll take then send them home knowing they’ll continue to destroy their bodies and find out later on they had a stroke or heart attack that could have been prevented.\n\nI guess the big thing is, people blame doctors for “pushing pills” but people themselves *want* those pills vs taking personal responsibility, and as doctors our job is to minimize that harm.', 'created': '2024-11-09 20:47:00', 'submission_id': '1gmqwdc'}
{'comment': 'Dependency is both a business and the means to an end. \n\nFirst you convince people they are broken. Then you offer them a cure, but not a permanent one. You have to string them along for life. Then you do this tens of millions of times and make a profit. You use that money to buy politicians. When the fabricated crisis is big enough the government steps in and takes over the healthcare system in order to “care” for the citizens. Along side of this you take away their ability to fight back or challenge you. You take away their ability to revolt. \n\nAny of this sound familiar? This is the step we are stuck at now. One group trying to break the system another trying to reform or save it. All while telling you that guns are bad and preaching against violence while they themselves increase the vitriolic rhetoric to incite violence against anyone or everyone. \n\nGoing forward: The government uses increased tax dollars (raised from anyone who refuses to be broken and still works) to pay an increased cost for the cure for all of the broken people. Government lackies skim off the top to keep contracts going and raise taxes all under the mantra of “the common good”. They do whatever it takes to stay in control lest someone new try and change things. Eventually you have 3 classes of people. The dependent class, the decreasing working class and the government. But now that the government controls who is deemed worthy and who isn’t, your access to any cures, they can decide who gets them and who doesn’t. You don’t have the means of fighting back. If you don’t stay in line you can just be cut off and die. Eventually, regardless of whether you stay in line or not, they start cutting you off under the guise of “saving society” and the planet. Reduce the population. Only the chosen survive and continue to perpetuate the system while those at the top reap all of the benefits, you are simply “allowed” to live as long as the bureaucracy decides it benefits them. The end game is a small group of elites who use the population, that they allow to exist, to serve them _however_ they choose to be served.\n\nHa, just kidding. Literally no one would ever do that. /s', 'created': '2024-11-09 01:13:06', 'submission_id': '1gmqwdc'}
{'comment': 'How many people are on those medications?', 'created': '2024-11-09 05:07:50', 'submission_id': '1gmqwdc'}
{'comment': 'Amen.', 'created': '2024-11-09 18:29:58', 'submission_id': '1gmqwdc'}
{'comment': "I sure got my fair share of manipulations in academia. Parents are at fault if they've not taught their kids how to evaluate information logically within their family's value system. Grateful to have had parents who cared about my thought processes enough to challenge them.", 'created': '2024-11-09 18:53:13', 'submission_id': '1gmqwdc'}
{'comment': "Agree with you. They're also the least intolerant people.", 'created': '2024-11-10 05:07:08', 'submission_id': '1gmqwdc'}
{'comment': 'Well written.', 'created': '2024-11-09 01:57:19', 'submission_id': '1gmqwdc'}
{'comment': 'Just Anti-depressants were 37 million in 2018 in the US.', 'created': '2024-11-09 05:25:03', 'submission_id': '1gmqwdc'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 18:37:05', 'submission_id': '1gmo7fm'}
{'comment': 'Because the media is a tool of the left, and the left was (is?) only focused on what lie to tell next to get the votes.', 'created': '2024-11-08 19:49:00', 'submission_id': '1gmo7fm'}
{'comment': "Hey, I know that lawyer!!\n\nShe's strong on the pro-life side.", 'created': '2024-11-08 21:14:46', 'submission_id': '1gmo7fm'}
{'comment': "Well basically we had months of fear mongering from the media, which has left Democrats and people living in blue states afraid and terrified for the future. Then they finished off by claiming Trump was the second coming of Hitler. That's going to have an impact on the perceptions of Trump.\n\nWhen Trump returns and the sky doesn't fall in February to March, that paranoia might go down a bit.", 'created': '2024-11-09 12:49:39', 'submission_id': '1gmo7fm'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 16:50:36', 'submission_id': '1gmlndx'}
{'comment': "When the stock market immediately spikes within an hour of Trumps election, very telling on how far the Democrats were holding everything back. Especially the energy sector. \n\nAbout the only thing the Democrats weren't holding back was Green Energy which certainly has its place but not being forced down the throats of those that cant afford it.", 'created': '2024-11-08 16:55:07', 'submission_id': '1gmlndx'}
{'comment': 'lol all Reddit can talk about is “ what happens when the tariffs arrive ?”', 'created': '2024-11-08 18:54:58', 'submission_id': '1gmlndx'}
{'comment': "I think Vance answered this. Did he not? The tarrifs aren't meant to actually be paid for everything. Rather, it's supposed to bring production here, thus opening jobs and creating money flow within our borders.", 'created': '2024-11-09 01:50:29', 'submission_id': '1gmlndx'}
{'comment': 'All the dems on other forums “BuT tHE TaRiFs WiLl InReAsE pRiCeS”, such of a simpleton way of thinking.', 'created': '2024-11-08 19:07:17', 'submission_id': '1gmlndx'}
{'comment': "DRILL BABY DRILL !!!! \nRestart the Refineries!!! \nBuild the pipelines !!!\nFrack until you can't frank no more!!!!", 'created': '2024-11-08 22:52:29', 'submission_id': '1gmlndx'}
{'comment': None, 'created': '2024-11-08 20:16:47', 'submission_id': '1gmlndx'}
{'comment': '- a vast percentage of people happen to do really want that new iPhone every year. So it will impact them. Not saying it’s a smart choice at all, but these people will be complaining about the new prices. \n\n- you don’t think the businesses that pay extra for machinery will not in turn charge extra for that to their consumers? (Ea the average citizen)\n\n- furniture: again, in my opinion, you’re making an assumption here. Slightly exaggerated comparison, but: you buy a car/house/… once every x amount of years, doesn’t mean you won’t be complaining about the prices going way up?', 'created': '2024-11-09 10:52:47', 'submission_id': '1gmlndx'}
{'comment': "Tariffs are designed to force citizens to buy your countries products to help the local economy.\n\nHowever this assumes your local economy HAS these products.\n\nAmerica is a super power because we are a leader in world trade, many countries around the world trade and buy/sell to the United States this makes America a rich country, it's also why we have such a powerful navy to protect our trade.\n\nUnfortunately, tariffs move the country towards a isolation which isnt how your increase profits. All countries thrive when they open trading to other countries.\n\nTariffs are not something that will help the United States in anyway, especially for products we don't have the ability to make here or have chosen not to, it will simply become a tax on citizens.\n\nThis is why Democrats constantly stated this wiill only increase the cost of everything. \n\nEven if they do what they are meant to and shift products to be made in the United States, it will still increase the cost, because the primary reasonnwe make things in other countries is to reduce costs.\n\nMix this with deporting immigrants and move towards closing borders will cause an issue filling non skilled jobs. Only increasing costs even more.\n\nAll these will only compound into a depression for our economy and eventually lose as a super power status.\n\nIsolationism never works if you want to make your country rich look at any country that has closed borders, or sanctions, etc. they don't do well.", 'created': '2024-11-15 15:44:36', 'submission_id': '1gmlndx'}
{'comment': None, 'created': '2024-11-08 17:52:01', 'submission_id': '1gmlndx'}
{'comment': 'It means hope and opportunity\xa0 :)\n\n\nAlso for the unseen, may look at https://www.hopebeyondhell.net/articles/further-study/eternity/', 'created': '2024-11-08 17:55:56', 'submission_id': '1gmlndx'}
{'comment': 'See below for starters \nhttps://x.com/SeanSouthardGOP/status/1854716786174050557', 'created': '2024-11-08 21:04:22', 'submission_id': '1gmlndx'}
{'comment': "They were holding back there as well. Nuclear Energy is the most green source of energy we have. Where are the new nuclear power plants to replace the less green alternatives? Oh, that's right, there aren't any. As somebody who works in nuclear energy, I really hope Vance meant what he said about increasing the amount of nuclear energy production in the US.", 'created': '2024-11-08 22:16:50', 'submission_id': '1gmlndx'}
{'comment': "That's not how the price of the stocks work.\n\nCan u elaborate what Democrats were holding?", 'created': '2024-11-15 16:05:35', 'submission_id': '1gmlndx'}
{'comment': None, 'created': '2024-11-08 19:53:26', 'submission_id': '1gmlndx'}
{'comment': 'That and how the cost PlayStation is going to go up. Morons didn’t have anything to say about the cost of groceries and everything else skyrocketing the last 4 years but they’re already bitching about how the cost of video games MIGHT go up. Ridiculous', 'created': '2024-11-09 04:12:55', 'submission_id': '1gmlndx'}
{'comment': 'The only time the media cares about farmers is when they are affected by Trump’s tariffs.', 'created': '2024-11-09 04:28:58', 'submission_id': '1gmlndx'}
{'comment': "More than that, America is the 2nd largest exporter in the world, we get fucked on tarrifs from other countries, it'll be used as a bargaining tool", 'created': '2024-11-09 03:01:53', 'submission_id': '1gmlndx'}
{'comment': 'If that’s the case it won’t be because of anything Trump does. Economic policies take time to actually have an effect.\xa0', 'created': '2024-11-08 18:46:29', 'submission_id': '1gmlndx'}
{'comment': 'Right, because the economy is controlled by a dial switch in the oval office.... Fucking ignorant view.', 'created': '2024-11-08 19:55:45', 'submission_id': '1gmlndx'}
{'comment': 'And https://salvationforall.org/', 'created': '2024-11-09 07:12:07', 'submission_id': '1gmlndx'}
{'comment': 'Well, less than 1% of our food supply comes from china. So people saying groceries will continue to be subject to inflation are just doomful thinkers, or don’t understand how tariffs work, or both.\n\nGas is also not imported from china, we will be supplying some of our own so that will drop.\n\nWill I be able to buy my authentic $20 jerseys from china dhgate? No but that’s ok id rather a strong economy and nation.\n\nThe largest imports from china are:\n\n- electronics\n- machinery \n- toys \n- furniture\n\n\nElectronics - do you really need the latest iPhone every year? \n\nMachinery - this is only used by businesses and would not impact the average citizen\n\nToys - will see a huge shift to being Mexican made by toy providers \n\nFurniture - how often do you buy new furniture? Once every 5-10 years maybe?\n\nWe are trying to eliminate our reliance on china and strengthening their economy while hurting ours, people say “well we don’t have the infrastructure in place” other countries do, and it’s about a long term vision.\n\nPeople need to be more open minded about this and not act like they have a doctorate is macroeconomics when they’ve read a couple of msnbc articles', 'created': '2024-11-08 23:21:29', 'submission_id': '1gmlndx'}
{'comment': 'The switch says " Economic policy"', 'created': '2024-11-08 19:59:30', 'submission_id': '1gmlndx'}
{'comment': None, 'created': '2024-11-08 23:25:00', 'submission_id': '1gmlndx'}
{'comment': "Economy policy doesn't magically implement its effect over night bud. To say the economy is gonna have a complete 180 in 2 months because Trump is in office is complete ignorance.", 'created': '2024-11-08 20:20:06', 'submission_id': '1gmlndx'}
{'comment': 'Well thanks for being open minded and not jumping down my throat for my beliefs. We as Americans need to unite, not belittle eachother. The radicalism of woke culture is reaching a point of detriment of this country, and it’s why their candidate lost in a. Landslide. People are fucking sick of it', 'created': '2024-11-08 23:26:52', 'submission_id': '1gmlndx'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 16:43:38', 'submission_id': '1gmlhm2'}
{'comment': 'So does this mean they’ll stop handing out free money ? Free shelter ?', 'created': '2024-11-08 16:59:36', 'submission_id': '1gmlhm2'}
{'comment': 'He’s done more about illegals in a few days of being elected (not even in office yet) than Biden Harris did in 4 years.', 'created': '2024-11-08 17:21:51', 'submission_id': '1gmlhm2'}
{'comment': 'You know, this is pretty frustrating, because it shows they’re fully capable of fixing it—and quickly, too—but they’ve decided to just sit back and ignore the problem for whatever reasons they have.', 'created': '2024-11-08 19:19:09', 'submission_id': '1gmlhm2'}
{'comment': 'Trump effect.', 'created': '2024-11-08 20:20:23', 'submission_id': '1gmlhm2'}
{'comment': 'DJT has already done more before even being sworn in than Kamalas done in 4yrs.', 'created': '2024-11-08 23:57:43', 'submission_id': '1gmlhm2'}
{'comment': 'There is official business he can conduct as President Elect 😁', 'created': '2024-11-08 22:24:32', 'submission_id': '1gmlhm2'}
{'comment': "Too bad Trump can't handle foreign policy yet. I'd love it if he ended the Ukranian war next.", 'created': '2024-11-08 17:42:09', 'submission_id': '1gmlhm2'}
{'comment': "I'm glad to see Trump forming a cordial relationship with the mayor of NY. The influx of migrants has really pushed him to look out for his constituents and not the economic migrants flocking NY for handouts.", 'created': '2024-11-08 23:07:32', 'submission_id': '1gmlhm2'}
{'comment': 'Why is this corrupt man still Mayor of NYC? He needs to be removed already.', 'created': '2024-11-08 17:23:57', 'submission_id': '1gmlhm2'}
{'comment': 'Someone’s getting pardoned.', 'created': '2024-11-08 20:12:19', 'submission_id': '1gmlhm2'}
{'comment': 'I can imagine this FaceTime call with the mayor of NYC:\n\nTrump: <points at his own eyes with two fingers> “I am the captain now.”', 'created': '2024-11-09 04:56:37', 'submission_id': '1gmlhm2'}
{'comment': 'Thank God give those nice hotel rooms and vouchers to the homeless veterans on the street!!!!', 'created': '2024-11-10 01:13:40', 'submission_id': '1gmlhm2'}
{'comment': 'I really hope they help these people out carefully and do not cause a crime wave.\nNew york is going to be crazier soon.', 'created': '2024-11-08 19:32:38', 'submission_id': '1gmlhm2'}
{'comment': 'Wowee', 'created': '2024-11-08 18:27:25', 'submission_id': '1gmlhm2'}
{'comment': '👏👏👏', 'created': '2024-11-08 20:37:48', 'submission_id': '1gmlhm2'}
{'comment': 'No. Just different contractor. Look closely.', 'created': '2024-11-08 21:17:26', 'submission_id': '1gmlhm2'}
{'comment': '🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸', 'created': '2024-11-09 00:20:21', 'submission_id': '1gmlhm2'}
{'comment': '🥾🥾🥾', 'created': '2024-11-09 07:47:48', 'submission_id': '1gmlhm2'}
{'comment': 'Unsustainable in some communities.', 'created': '2024-11-09 07:48:21', 'submission_id': '1gmlhm2'}
{'comment': 'Trump better be careful about these headlines. Reads as if he’s doing official business while not sworn in yet. Establishment will do anything to nail him', 'created': '2024-11-08 20:10:37', 'submission_id': '1gmlhm2'}
{'comment': "Small steps you don't want to spook them all yet let them get used to the idea first.", 'created': '2024-11-08 19:20:03', 'submission_id': '1gmlhm2'}
{'comment': 'This could mean that those individuals without an income will be wondering your neighborhood looking for what they could from be legal or illegal. Could be very uncomfortable for those of us that work 40+ hours a week and can’t sit at home and watch the castle.', 'created': '2024-11-08 17:28:38', 'submission_id': '1gmlhm2'}
{'comment': "What's even more amazing... is was fixed without so much as a single woke leftist approval required. 😆", 'created': '2024-11-08 19:28:06', 'submission_id': '1gmlhm2'}
{'comment': 'Well Adams complained and was quickly under investigation for “corruption” charges.', 'created': '2024-11-09 16:54:16', 'submission_id': '1gmlhm2'}
{'comment': 'President Calvin Coolidge once said that “the chief business of the American people is business. They are profoundly concerned with producing, buying, selling, investing, and prospering in the world.”\nThat is what will come.', 'created': '2024-11-09 17:01:44', 'submission_id': '1gmlhm2'}
{'comment': 'Youre gonna be so tired of winning! \n\nAnd the winning is already restarted.', 'created': '2024-11-09 04:57:25', 'submission_id': '1gmlhm2'}
{'comment': 'It’s on the list!', 'created': '2024-11-08 18:41:41', 'submission_id': '1gmlhm2'}
{'comment': "Honest question, please don't ban me, but peace at the cost of Ukrainian land? I have dog in the fight as they say because I have relatives living in Ukraine.", 'created': '2024-11-08 18:46:43', 'submission_id': '1gmlhm2'}
{'comment': 'Not saying he doesn’t deserve it, but he only started being investigated when he spoke out against Biden’s immigration policy\xa0', 'created': '2024-11-08 17:27:27', 'submission_id': '1gmlhm2'}
{'comment': 'Uber and Lyft could offer a Ride Back To The Border special rate. 😆', 'created': '2024-11-08 19:39:13', 'submission_id': '1gmlhm2'}
{'comment': 'This is what police are for also, why not just round them up at the hotel?', 'created': '2024-11-08 17:48:46', 'submission_id': '1gmlhm2'}
{'comment': "So we should give them free stuff so they don't commit more crimes?", 'created': '2024-11-08 19:56:59', 'submission_id': '1gmlhm2'}
{'comment': 'I just heard that he and Elon Musk spoke with Ukranian leaders today and Putin is willing to talk, so who knows?', 'created': '2024-11-09 04:59:24', 'submission_id': '1gmlhm2'}
{'comment': 'Here’s my perspective. I’m all for Ukrainian sovereignty and for them to win this war. That said, there’s no foreseeable end in sight. Ukraine wasn’t able to end it before Russia got their war machine working again, which means it’s no longer a matter of “just another 6 months and Russia will be out of tanks”. The US has sent untold billions of dollars of aid to Ukraine which has only managed to hold the line, if that. \xa0In reality, without western aid Ukraine would’ve been under complete Russian control a year ago if not earlier so getting out with any land would already be a win. I’d love for the US to be able to fight a proxy war forever and eventually win, but our country is trillions of dollars in debt and I promise you we’re aren’t getting paid back by Ukraine. It’s an unfortunate situation, but I don’t think there’s a good answer. It looks like ceding some land to Russia may be the only way to win the war. On the bright side, I wouldn’t rule out Trump finding something that he can leverage against Russia that the previous admin was not willing to do. Maybe he can find leverage that would prevent them from coming back for seconds later on.', 'created': '2024-11-08 19:27:07', 'submission_id': '1gmlhm2'}
{'comment': "Yeah, because Democrats will allow corruption and abuse of power until the moment something rational is said that offends them\nand their agenda, \xa0then it's all game over. Democrats don't know the concept of loyalty, they're so rotten to their core that they will sell out their own mother if given the chance.", 'created': '2024-11-08 17:39:24', 'submission_id': '1gmlhm2'}
{'comment': 'O lord', 'created': '2024-11-08 19:57:36', 'submission_id': '1gmlhm2'}
{'comment': "Start up the vouchers again and when they come to collect, nab 'em and deport 'em.", 'created': '2024-11-09 03:50:13', 'submission_id': '1gmlhm2'}
{'comment': "What police. Didn't the Dems lay them all off? Said they didn't need them. Lol", 'created': '2024-11-10 02:47:38', 'submission_id': '1gmlhm2'}
{'comment': 'I believe it’s gonna be some challenges back-and-forth as to who enforces the law as far as people that have migrated here are concerned. We will see.', 'created': '2024-11-08 18:17:22', 'submission_id': '1gmlhm2'}
{'comment': 'We could post signs what direction they should be headed in like you know 2000 miles from Tijuana in that direction,. We should help them at least that much.', 'created': '2024-11-08 21:09:12', 'submission_id': '1gmlhm2'}
{'comment': 'Liberal logic requires you think backwards, because that’s progressive', 'created': '2024-11-08 20:32:55', 'submission_id': '1gmlhm2'}
{'comment': "It's a good take, Ukraine won't got for it and understandably so. If Russia invaded Florida and half of Georgia and Alabama we wouldn't be keen on giving up that land for peace either. What really needs to be done is a full investigation into where all that money went since Ukraine is claiming only 10% of that gear has been delivered. Ukrainian aid was run by democrats and we all know how they like to dip their hands in the honey pot any chance they get. Trump doesn't love Russia unlike what we hear from the leftist propaganda machines, he's also not stupid and realizes the threat Russia poses. Ending this bloody, trench war stalemate is going to be the toughest thing Trump has to tackle immediately after taking power. Zelensky, though I admire his leadership, has suspended elections indefinitely, not a good look for someone who is supposed to be tough on corruption. Also, Russia dragging NK into the conflict which widens the war and we don't need another world war. Zelensky says he has a plan in place in case we drop aid so ok buddy, go for it. Let Europe deal with this mess, too long they have used our military supremacy as a crutch. My biggest concern would be for Ukrainian civilians, they didn't ask for this war, neither did the children who died or were abducted into the bowels of Russia. My family over there are pretty pissed with me at the moment as they know which side I'm on politically but how long are we Americans going to have to deal with the mess over here. Thank you for answering, I know Ukraine can be a hot button topic over here.", 'created': '2024-11-08 19:44:18', 'submission_id': '1gmlhm2'}
{'comment': 'Russia took Crimea years ago. This is their seconds. The question is when do you expect them to stop?', 'created': '2024-11-08 23:02:42', 'submission_id': '1gmlhm2'}
{'comment': 'I think challenges is an understatement. It will need all hands on deck, sadly, I’ll bet sanctuary cities will try to fight it as virtue signaling season kicks into high gear', 'created': '2024-11-08 18:29:16', 'submission_id': '1gmlhm2'}
{'comment': 'The difference between Russia invading Florida and invading Ukraine, is that if they invaded Florida, Moscow would be flattened within the hour.', 'created': '2024-11-08 21:13:37', 'submission_id': '1gmlhm2'}
{'comment': "That money was laundered through Ukraine and kicked back to crooked war supporting American politicians, Zelenskyy, and probably Putin. The whole thing was setup in advance by Joe and Hunter Biden and their puppet masters. That's what was being hidden by all the Russian Collusion BS against Trump while the real crimes were being committed in Ukraine by the democrats and their sympathizers. Straight up theft of tax payer dollars.", 'created': '2024-11-09 03:59:12', 'submission_id': '1gmlhm2'}
{'comment': 'That’s my point. That’s going to be Trump’s goal to solve the issue of how to deter in the future.', 'created': '2024-11-09 02:10:44', 'submission_id': '1gmlhm2'}
{'comment': 'I was being nice, but yeah, we are going to have to grit our teeth', 'created': '2024-11-08 18:33:23', 'submission_id': '1gmlhm2'}
{'comment': 'Well that notwithstanding 😂', 'created': '2024-11-08 21:14:16', 'submission_id': '1gmlhm2'}
{'comment': 'Nothing surprises me anymore, the elite have been stealing from us for years.', 'created': '2024-11-09 06:16:50', 'submission_id': '1gmlhm2'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 16:33:35', 'submission_id': '1gml9eo'}
{'comment': '“The shift represents the biggest move to the right since Ronald Reagan won in 2980.” \n\nCan’t wait until that happens!', 'created': '2024-11-08 18:05:38', 'submission_id': '1gml9eo'}
{'comment': "That's what happens when the opposition's candidate is utter shite.", 'created': '2024-11-08 18:52:48', 'submission_id': '1gml9eo'}
{'comment': "And yet even though almost the whole United States voted for the guy liberals over here calling everyone in the United States dumb misogynistic racist garbage for voting for him. Not like hmmmm maybe we need to step back and see that maybe we are the problem and the reason why so many people moved to the right. Who am I kidding they'll never admit their wrong.", 'created': '2024-11-08 20:00:31', 'submission_id': '1gml9eo'}
{'comment': 'I was a little surprised Oregon was moving right for a bit and then I realized that’s because everyone in Oregon hates Portland, Portland hates Portland', 'created': '2024-11-08 19:28:56', 'submission_id': '1gml9eo'}
{'comment': "Who would have thought cutting off the dicks and boobs of children wasn't popular", 'created': '2024-11-08 20:48:32', 'submission_id': '1gml9eo'}
{'comment': 'Future is looking brighter!', 'created': '2024-11-08 19:02:04', 'submission_id': '1gml9eo'}
{'comment': "Which two didn't move?", 'created': '2024-11-08 17:56:49', 'submission_id': '1gml9eo'}
{'comment': "I know a lot of people are celebrating, but Banquo's ghost is that the party did badly in both the House and the Senate comparered to Trump. \n\nIn an election year with this much negativity against the Democrats, the Reps should have added way more seats to the House, AND should have picked up the close Senate races in MI, WI, NV, and AZ, all of which Trump won as States. \n\nNot wanting to spoil the celebrations, but without this better cushion 2026 is going to look awful, and those Senators in the swing states are going to be great assets for the Democratic party moving forward. \n\nThe Rep party needs to be keep the revolution going if it's going to keep winnning.", 'created': '2024-11-08 21:35:04', 'submission_id': '1gml9eo'}
{'comment': 'Because the last four years have been two far left', 'created': '2024-11-08 18:23:18', 'submission_id': '1gml9eo'}
{'comment': 'Apparently Utah and Washington didn’t move right.', 'created': '2024-11-08 19:15:22', 'submission_id': '1gml9eo'}
{'comment': "I'm concerned that NC is following Virginia. Several elections in a row that NC has gone Red for the president (with shrinking margins) and keeps voting in a Dem governor and just lost the state senate.", 'created': '2024-11-09 04:55:08', 'submission_id': '1gml9eo'}
{'comment': "Reagan's head in a jar lmao", 'created': '2024-11-08 18:17:48', 'submission_id': '1gml9eo'}
{'comment': 'We are closer to the year 2980 than we are to 980.', 'created': '2024-11-08 21:28:23', 'submission_id': '1gml9eo'}
{'comment': 'I think its more due to the left being too extreme with some of their policies.', 'created': '2024-11-08 20:32:51', 'submission_id': '1gml9eo'}
{'comment': 'They need to ask, "are we the baddies?!"', 'created': '2024-11-09 05:25:28', 'submission_id': '1gml9eo'}
{'comment': 'I\'d hardly call 51% "almost the whole" but yeah, it was and will continue to be a losing strategy', 'created': '2024-11-08 21:35:01', 'submission_id': '1gml9eo'}
{'comment': 'I went to Portland and honestly it’s fucking gross downtown. I’m not sure if we got off in the wrong area but it looks like East STL now.', 'created': '2024-11-08 22:24:36', 'submission_id': '1gml9eo'}
{'comment': 'Washington state', 'created': '2024-11-08 19:19:11', 'submission_id': '1gml9eo'}
{'comment': 'Maine didn’t. Not sure about the second', 'created': '2024-11-08 18:20:42', 'submission_id': '1gml9eo'}
{'comment': 'I can almost guarantee it’s California and NY without even checking lol', 'created': '2024-11-08 18:06:54', 'submission_id': '1gml9eo'}
{'comment': 'Yeah we need to do this', 'created': '2024-11-08 22:37:34', 'submission_id': '1gml9eo'}
{'comment': 'Yes, Utah stayed the same, while Washington was the only one that got further left, from 19 points with Biden to 20 points with Harris.', 'created': '2024-11-11 04:49:22', 'submission_id': '1gml9eo'}
{'comment': 'Oh great…Futurama is real and Nixon will be swept into office to then break into people’s houses and wreck up the place, and sell our children’s organs to zoos for meat. Aroooooooo', 'created': '2024-11-08 21:06:47', 'submission_id': '1gml9eo'}
{'comment': 'That too!', 'created': '2024-11-08 21:36:34', 'submission_id': '1gml9eo'}
{'comment': 'It’s at least the majority', 'created': '2024-11-08 22:23:56', 'submission_id': '1gml9eo'}
{'comment': 'It’s closer than 47%', 'created': '2024-11-09 16:16:39', 'submission_id': '1gml9eo'}
{'comment': 'Portland is straight up mini Seattle \n\nAnd slightly better food', 'created': '2024-11-08 22:37:30', 'submission_id': '1gml9eo'}
{'comment': 'Maine did move right, Trump got more votes this time than 2020, and Kamala got less this time than Joe Biden making the margin of victory smaller.', 'created': '2024-11-08 21:14:56', 'submission_id': '1gml9eo'}
{'comment': 'Vermont?', 'created': '2024-11-08 20:34:53', 'submission_id': '1gml9eo'}
{'comment': 'As someone from New York I’ve been checking my state’s numbers and NY has moved a lot\n\nFrom the article\n\nThe states that moved the most to the right include many controlled by Democrats, such as California, New York, Connecticut, Illinois, New Jersey. Florida and Texas also move to the right significantly:', 'created': '2024-11-08 18:22:56', 'submission_id': '1gml9eo'}
{'comment': 'They definitely did statewide', 'created': '2024-11-08 18:21:11', 'submission_id': '1gml9eo'}
{'comment': 'CA and NY were actually among the states the moved FURTHEST to the right.', 'created': '2024-11-08 21:35:56', 'submission_id': '1gml9eo'}
{'comment': 'No they did lol', 'created': '2024-11-08 19:01:55', 'submission_id': '1gml9eo'}
{'comment': 'Maybe California. Trump did better in the NY outer boroughs than Republicans have in years. The Zeldin loss in 2022 gave people a lot to think about. In any case Trump is following someone memorable. \nhttps://x.com/SeanSouthardGOP/status/1854716786174050557', 'created': '2024-11-08 20:37:22', 'submission_id': '1gml9eo'}
{'comment': 'Hey that’s a pleasant surprise! Good to know. Which ones were they?', 'created': '2024-11-08 21:37:23', 'submission_id': '1gml9eo'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 16:23:45', 'submission_id': '1gml16w'}
{'comment': 'Living well with the best revenge.', 'created': '2024-11-09 02:33:01', 'submission_id': '1gml16w'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 15:40:56', 'submission_id': '1gmk1ui'}
{'comment': 'How horrible do you have to be to wish that on someone? Get a grip.', 'created': '2024-11-08 15:53:03', 'submission_id': '1gmk1ui'}
{'comment': 'How obscenely dramatic, hyperbolic and evil. Who wishes this on another human being? And they wonder why this country is fed up and wants change.', 'created': '2024-11-08 16:17:11', 'submission_id': '1gmk1ui'}
{'comment': 'I wouldn’t wish any of that on my enemies. Let alone my fellow Americans who have differing opinions about politics.', 'created': '2024-11-08 15:54:40', 'submission_id': '1gmk1ui'}
{'comment': 'What a delightful sub that is. Bunch of self righteousness hypocrites wallowing in pity over “orange man bad” with no ability to be intellectually honest or engage in any self reflection about what happened or why it happened.', 'created': '2024-11-08 16:25:47', 'submission_id': '1gmk1ui'}
{'comment': 'Ahhhhh, the party of love and tolerance.', 'created': '2024-11-08 19:15:43', 'submission_id': '1gmk1ui'}
{'comment': "I bet they don't get banned", 'created': '2024-11-08 19:28:48', 'submission_id': '1gmk1ui'}
{'comment': 'Such awful sentiments from a very bitter person', 'created': '2024-11-08 16:18:34', 'submission_id': '1gmk1ui'}
{'comment': 'This person needs to be sent to a psychiatric ward. Imagine losing an election and telling the tens of millions of fellow citizens who voted for your opponent that you hope their children commit suicide. God help us.', 'created': '2024-11-08 19:47:09', 'submission_id': '1gmk1ui'}
{'comment': 'WALL OF TEXT\n\nYou can tell a liberal wrote it before even reading it, they cannot be clear and direct.', 'created': '2024-11-08 16:24:45', 'submission_id': '1gmk1ui'}
{'comment': 'Evil bastards.', 'created': '2024-11-08 16:08:26', 'submission_id': '1gmk1ui'}
{'comment': 'TikTok is all I need to see. That app is rotting our nation’s brains. I don’t care if there are conservatives on it too. I don’t care if people on this sub think it’s great. It is ruining our future and dividing us in the ugliest ways, and if you’re on it, you’re part of the problem.', 'created': '2024-11-08 19:43:18', 'submission_id': '1gmk1ui'}
{'comment': 'Is she upset? She seems upset.', 'created': '2024-11-08 19:49:30', 'submission_id': '1gmk1ui'}
{'comment': 'Did Trump say he wanted to make IVF very affordable or receive big tax breaks along with child tax breaks for families?\n\nAlso, from the hearing I heard, no state in the US ever just lets the mother die to save the baby, they will do everything they can to save both, but will prioritize the mother’s life. Having looking into every state on this issue, not one will ever let the mother die to save the baby. \n\nMedicare is also losing money and won’t even be available for the next generation, so it needs to be revamped and restructured, as does social security, which is estimated to be bankrupt by what? 2035? \n\nPlease correct me if I’m wrong.\n\nAlso, legal gun owners are very safe with firearms, concealed carry permit holders are 83-85% more likely to follow the law to the letter than even a police officer.', 'created': '2024-11-08 17:00:54', 'submission_id': '1gmk1ui'}
{'comment': 'This is a mental health issue', 'created': '2024-11-08 17:31:08', 'submission_id': '1gmk1ui'}
{'comment': 'Is it just me or do all of us seem to have friends, families, hobbies, careers or academic pursuits? And too many of the leftist trolls seem to sit in a digital world all day in some basement somewhere.\n\nThese are the same people that are upset we’re still not locked in our basements forever in case we all get sick and were celebrating when our kids were shut out of school.\n\nFinishing up at the gym after a brief peak on here and heading to the playground with my child 😁. God speed everyone.\n\nThere’s a reason Trump won and Congress flipped by the way.', 'created': '2024-11-08 19:51:34', 'submission_id': '1gmk1ui'}
{'comment': 'To everyone that this person wanted to attack:\n\nMay you be shielded from harm and misfortune. May health, prosperity, and justice be your constant companions. May you receive kindness and support in times of need, and may your positive intentions manifest in your life and the lives of others. Let any negativity directed toward you be transformed into positive energy, strengthening your resolve and bringing you peace.\n\nAMEN', 'created': '2024-11-08 20:00:27', 'submission_id': '1gmk1ui'}
{'comment': 'Empathy is woke? Yet they have none.', 'created': '2024-11-08 17:01:04', 'submission_id': '1gmk1ui'}
{'comment': None, 'created': '2024-11-08 18:26:22', 'submission_id': '1gmk1ui'}
{'comment': "Trump supports IVF.. FREE IVF.. This idiot obviously has no idea what he's talking about. I was laughing at a cry video yesterday. There was this maybe 19 year old (?) basically crying and saying her parent's don't get it and they're dumb and whatnot for voting for Trump. Uhhhh.. I assume this idiot KID has never had a job, or has had to pay for anything. What a bunch of spoiled idiots. GenZ and Millennials love to cry on camera and they have no idea how stupid they look.", 'created': '2024-11-08 19:42:07', 'submission_id': '1gmk1ui'}
{'comment': '[https://www.tiktok.com/@carolinybrewerr/video/7418735885375540522](https://www.tiktok.com/@carolinybrewerr/video/7418735885375540522)\n\nSenator clearing up all those rumors in one super quick list. Turns out none of those things are illegal in any state. Figure we can all save this and send it out to idiots in need.', 'created': '2024-11-08 19:46:57', 'submission_id': '1gmk1ui'}
{'comment': 'People like this always strike me as just pathetic and not really worthy of anything other than pity. They obviously are missing something in their life but are too immature to look inward and seek what they truly need.', 'created': '2024-11-08 16:25:35', 'submission_id': '1gmk1ui'}
{'comment': '“I hope that you cannot afford childcare. I hope you find it difficult to live on 1 income”. \nThat would be thanks to Biden/Harris, since we all are suffering under their high inflation & high prices for groceries & rent.', 'created': '2024-11-08 17:17:52', 'submission_id': '1gmk1ui'}
{'comment': 'I don’t know if I’ll be banned from that sub, but, I’ll leave it. It’s been hectic being there and screenshotting stupid fake posts in AITA there.', 'created': '2024-11-08 16:27:56', 'submission_id': '1gmk1ui'}
{'comment': 'These are all written like they just got broken up with. It’s the 5 stages of grief.', 'created': '2024-11-08 17:33:58', 'submission_id': '1gmk1ui'}
{'comment': 'The democrats genuinely think they will be genocided its shocking', 'created': '2024-11-08 17:01:49', 'submission_id': '1gmk1ui'}
{'comment': 'Aren’t abortion laws state by state? I’m not an American and I’m genuinely curious why everything I’m seeing now is women thinking their rights are being stripped.\n\nI haven’t seen anything from DT on abortion that was as rash as what the left is claiming. Someone help me understand this please.', 'created': '2024-11-08 16:43:00', 'submission_id': '1gmk1ui'}
{'comment': 'All I get out of all of that is we get cheaper gas and eggs. Yes!!', 'created': '2024-11-08 16:48:45', 'submission_id': '1gmk1ui'}
{'comment': "Wow. Looking at these lost souls is sad. The media has been brainwashing them for almost a decade, and I got friends I grew up with that the left took away from me, and TDS has destroyed their relationship with me. Only a very select few refuse to let politics define our deep friendship. But others are furious. It's quite sad.", 'created': '2024-11-08 19:53:59', 'submission_id': '1gmk1ui'}
{'comment': 'Woah woah woah', 'created': '2024-11-08 19:57:49', 'submission_id': '1gmk1ui'}
{'comment': 'Trump wants to... end free lunches at school now?', 'created': '2024-11-08 19:58:34', 'submission_id': '1gmk1ui'}
{'comment': 'The left is getting out of hand ffs makes me sick. How can a person write that out and sleep at night? They think trump is so bad yet if Harris was elected our country would be in the shitter and then they’d be asking why? Smh this person needs a straight jacket and padded room.', 'created': '2024-11-08 20:02:12', 'submission_id': '1gmk1ui'}
{'comment': 'They think it will be handmaids tale\nGood show btw\nBut a little far fetched', 'created': '2024-11-08 16:14:07', 'submission_id': '1gmk1ui'}
{'comment': 'I saw a video yesterday with people comparing the left meltdown to a mass demonic manifestation and I’m starting to believe it', 'created': '2024-11-08 17:15:48', 'submission_id': '1gmk1ui'}
{'comment': 'Some of these democrats are in severe mental crisis. It really is incredible to read some of the posts by these Harris voters. I don’t know whether to get angry or feel bad for them.', 'created': '2024-11-08 17:51:16', 'submission_id': '1gmk1ui'}
{'comment': "These people have no spiritual center. Liberals forgot how to make an argument without letting the judgement leak through. I'm not angry with them, I think it is kind of sad. I think Trump will have a net positive affect on the country. When you lose an election, you take a couple of days to vent and then you brush yourself out, figure out what went wrong and go figure out how to win. Liberals are acting like world ended. SMH", 'created': '2024-11-08 18:00:15', 'submission_id': '1gmk1ui'}
{'comment': 'They are actually insane', 'created': '2024-11-08 16:36:32', 'submission_id': '1gmk1ui'}
{'comment': 'I had hoped this idiots post would have been shorter….', 'created': '2024-11-08 17:01:59', 'submission_id': '1gmk1ui'}
{'comment': "Oof. They're disconnected from reality bad. They're spiraling.", 'created': '2024-11-08 17:24:34', 'submission_id': '1gmk1ui'}
{'comment': 'Couldn\'t read after "wreathing in pain"', 'created': '2024-11-08 17:48:58', 'submission_id': '1gmk1ui'}
{'comment': 'lol, what pathetic fucking children. and the little shits wonder why they lost', 'created': '2024-11-08 16:31:01', 'submission_id': '1gmk1ui'}
{'comment': 'After 4 years of having perfectly reasonable healthcare, do you think democrat women will look back and wonder what they were so worried about? Or will the narrative be “we barely made it!”?', 'created': '2024-11-08 16:36:30', 'submission_id': '1gmk1ui'}
{'comment': "It's funny when they just make stuff up. You'd think they'd have learned their lesson after the Russia stuff.", 'created': '2024-11-08 20:01:09', 'submission_id': '1gmk1ui'}
{'comment': "Yahtzee!!! no? I thought we were just screaming random things....these people need to read their own words in a few years it's going to be golden..", 'created': '2024-11-08 20:03:27', 'submission_id': '1gmk1ui'}
{'comment': 'There is being upset your candidate lost and then there is this. The first is acceptable the second is not.', 'created': '2024-11-08 20:20:04', 'submission_id': '1gmk1ui'}
{'comment': "So much hate in their heart. But people can evolve. Let's hope they mature", 'created': '2024-11-08 21:21:29', 'submission_id': '1gmk1ui'}
{'comment': 'How is this not full of downvotes but us saying that Trump has plans to fix what Biden and Harris ruined, we are the scum of the earth.', 'created': '2024-11-08 21:28:50', 'submission_id': '1gmk1ui'}
{'comment': "I dont particularly care for White Hoe as the paragon of rational thought but I'll tell you this, there isnt an ounce of care this person has no matter how much they, excuse me, xey pretend to care for even this hypothetical child, the radical left wishes despair upon us and our kids who we voted accordingly for. Our kids. Their ..cats. we did it for all Americans and its lawful visitors we welcome with open arms. The rising tide lifts all boats. Even more so for those who row the hardest. Because that is what we are about. Hard work, big returns, traditional values, the nuclear family. Prosperity. For us and zem.", 'created': '2024-11-08 21:32:21', 'submission_id': '1gmk1ui'}
{'comment': 'The dream up some imaginative scenarios for destroying what the perceive to be their enemies. smh', 'created': '2024-11-08 21:38:05', 'submission_id': '1gmk1ui'}
{'comment': "Children won't have to rely on the school system for 'free' lunches because groceries will be affordable lmao", 'created': '2024-11-08 21:43:32', 'submission_id': '1gmk1ui'}
{'comment': "I'm glad to see people in here who voted Kamala can see the real hate some of the left has for those who voted Trump... this isn't banter this is borderline death threats.", 'created': '2024-11-08 21:55:04', 'submission_id': '1gmk1ui'}
{'comment': 'If the liberal response to losing the election is any indication of their unhinged views about everything else, I feel very confident in my MAGA vote! Keep the hate coming it’s so reassuring!', 'created': '2024-11-08 22:08:21', 'submission_id': '1gmk1ui'}
{'comment': 'Disgusting', 'created': '2024-11-08 22:11:23', 'submission_id': '1gmk1ui'}
{'comment': "They're such sore losers. The participation trophy isn't available in the real world and they can't deal with it.", 'created': '2024-11-08 22:14:25', 'submission_id': '1gmk1ui'}
{'comment': 'Ohhhhh the Drama', 'created': '2024-11-08 22:17:14', 'submission_id': '1gmk1ui'}
{'comment': 'As usual, classy as ever. Petulant children. I’m over it', 'created': '2024-11-08 23:01:13', 'submission_id': '1gmk1ui'}
{'comment': 'Good lord. Someone needs to talk to an objective third party therapist. Damn!', 'created': '2024-11-08 23:47:28', 'submission_id': '1gmk1ui'}
{'comment': 'Why are leftists so miserable and bitter?', 'created': '2024-11-09 00:06:31', 'submission_id': '1gmk1ui'}
{'comment': '“I saw a TikTok”\n\nWas all I needed to come to the conclusion this guy / girl / thing is full of stale air.', 'created': '2024-11-09 00:31:10', 'submission_id': '1gmk1ui'}
{'comment': 'This is full of holes. Do they realize that IVF is way more regulated in Europe?', 'created': '2024-11-09 00:33:06', 'submission_id': '1gmk1ui'}
{'comment': 'Were we hoping they got murdered by an illegal alien? No. We weren’t. There are an alarming amount of psychos over on the left', 'created': '2024-11-09 01:17:16', 'submission_id': '1gmk1ui'}
{'comment': "1st: lol. 2nd i ain't reading all that.", 'created': '2024-11-09 01:41:30', 'submission_id': '1gmk1ui'}
{'comment': "Well I for one, hope we get everything we voted for! \nPossible super majority and NO Paul Ryan! Hell yeah, bring it on! 2025 can't get here soon enough!", 'created': '2024-11-09 03:17:45', 'submission_id': '1gmk1ui'}
{'comment': 'trump is openly in favor of ivf these people are NUTS', 'created': '2024-11-09 03:45:49', 'submission_id': '1gmk1ui'}
{'comment': "Empathy isn't a woke idea. In fact...I've noticed that most liberals lack it all together.", 'created': '2024-11-09 04:07:27', 'submission_id': '1gmk1ui'}
{'comment': 'It baffles me that they think saying all of this is okay just because a person doesn’t agree with them politically.', 'created': '2024-11-09 05:29:04', 'submission_id': '1gmk1ui'}
{'comment': 'No one hates women and minorities more than democrats after losing an election I guess-', 'created': '2024-11-09 06:56:57', 'submission_id': '1gmk1ui'}
{'comment': 'These people are absolute garbage and literal pieces of shit. How black is that persons soul that they wish that on other people?', 'created': '2024-11-09 14:07:47', 'submission_id': '1gmk1ui'}
{'comment': 'Don’t cry, it will all be ok. As long as you are the racists and angry, we will never be united. You woke far left chased your own people to red side…. lol', 'created': '2024-11-09 14:14:23', 'submission_id': '1gmk1ui'}
{'comment': 'So very sick. All of them.', 'created': '2024-11-09 14:36:58', 'submission_id': '1gmk1ui'}
{'comment': 'Jesus Christ, they truly have no concept of the “empathy” they claim to have. This bitter bitch needs to be in a padded room.', 'created': '2024-11-09 15:09:45', 'submission_id': '1gmk1ui'}
{'comment': 'How many emotional and illogical knots do you have to tie yourself into to make this point.', 'created': '2024-11-09 16:56:32', 'submission_id': '1gmk1ui'}
{'comment': 'Posts like these often come from the more extreme fringes of the political spectrum and don’t reflect the views of the entire Democratic Party. When these posts are repeatedly shared, it creates the illusion that they represent the beliefs of all Democrats. The same pattern happens on the right, where fringe opinions get amplified, leading people on the left to assume that all Republicans hold extremist views. This cycle of polarization only deepens the divides between us.\n\nWe can – and must – do better. Let’s resist the temptation to generalize and villainize, and instead work towards meaningful, respectful conversations that bring us closer to real solutions. It’s time to break free from divisive rhetoric and focus on making positive changes for our country.', 'created': '2024-11-09 18:41:10', 'submission_id': '1gmk1ui'}
{'comment': 'These are hugely funny. Thanks for posting!', 'created': '2024-11-09 20:45:07', 'submission_id': '1gmk1ui'}
{'comment': "Thank you for this. From now on, when someone will ask me why I don't like leftist, I will show them this screenshot", 'created': '2024-11-09 21:54:50', 'submission_id': '1gmk1ui'}
{'comment': 'He’s been talking about making IVF covered by insurance for while sooo… just one of the minor points this delusion lib made.', 'created': '2024-11-10 00:32:57', 'submission_id': '1gmk1ui'}
{'comment': 'This why feminism is a joke.', 'created': '2024-11-10 01:08:12', 'submission_id': '1gmk1ui'}
{'comment': "I think that we should make birth control great again and show these people that we don't need abortions.. I mean yes there's rape and ectopic pregnancies and everything like that but most abortions could have been prevented with a condom or nexplanon implant or an IUD or simple birth control pills! But according to all of them they're just not going to have sex anymore and I'm sure that Republican men are so sad about that because this is the people Republican men really want to be spending their evening with what a joke. Oh by the way the Democratic men these are the women you fought for they are now saying they won't marry you have sex with you or even be around you because you're too scary let that sink in.", 'created': '2024-11-10 01:10:23', 'submission_id': '1gmk1ui'}
{'comment': 'Now that’s tolerance and inclusive', 'created': '2024-11-10 01:18:15', 'submission_id': '1gmk1ui'}
{'comment': "It took a few days for reality to sink in, but now they're in full blown lose their f-ing minds mode.", 'created': '2024-11-10 12:30:27', 'submission_id': '1gmk1ui'}
{'comment': 'There should be studies done to see how the media so successfully manipulates the brains of democrats. \nThey actually saw Trump being president for 4 yrs and now believe he wasn’t? \nOr that their lives weren’t way better? \n\nIn the last term Trump got a lot done and fast. But that pales in comparison to this term. \nNow he’s walking in with a dream team of loyalists around him. A House and Senate that will work with him instead of the former RINOS working against him. \n\nAnd it’s a shame the democrats won’t believe their lying eyes. They’re programmed to be miserable.', 'created': '2024-11-10 14:47:05', 'submission_id': '1gmk1ui'}
{'comment': "that's your standard liberal", 'created': '2024-11-10 22:42:20', 'submission_id': '1gmk1ui'}
{'comment': 'She knows most welfare is run by the states and even each county is different, right?', 'created': '2024-11-08 16:50:00', 'submission_id': '1gmk1ui'}
{'comment': "They literally think we're trying to live out the plot of handmaid's tale. There's such a disconnect of reality.\n\nLike what if this was flipped and Republicans started talking about how we hope cartel members bust down their doors and SA them after they murdered their family. Then go into detail about them being made to keep multiple pregnancies while they are being sex trafficked because guns have been banned in their state..\n\nFuckin unhinged behavior.", 'created': '2024-11-08 17:56:45', 'submission_id': '1gmk1ui'}
{'comment': 'That post is very concerning', 'created': '2024-11-08 17:59:07', 'submission_id': '1gmk1ui'}
{'comment': 'I hate to be this person, but there are ways to look into these accounts and find the people behind them. Something needs to be done because these people are sick.', 'created': '2024-11-08 16:56:55', 'submission_id': '1gmk1ui'}
{'comment': 'That’s the party of tolerance everyone', 'created': '2024-11-08 16:58:35', 'submission_id': '1gmk1ui'}
{'comment': 'They’re so joyful 🥴', 'created': '2024-11-08 17:39:28', 'submission_id': '1gmk1ui'}
{'comment': '[https://postimg.cc/8sPVpjTX](https://postimg.cc/8sPVpjTX)', 'created': '2024-11-08 17:06:36', 'submission_id': '1gmk1ui'}
{'comment': 'These people are sick, sick, sick.', 'created': '2024-11-08 17:45:45', 'submission_id': '1gmk1ui'}
{'comment': 'They ended up locking the comments go figure....', 'created': '2024-11-08 17:48:23', 'submission_id': '1gmk1ui'}
{'comment': 'And they say Republicans are evil. 😂', 'created': '2024-11-08 18:06:28', 'submission_id': '1gmk1ui'}
{'comment': 'This is what was vote out of office. What a relief that these tolerant people cannot effect anymore legislation. Not to mention nothing that this insane person is speaking about is anything the right is trying to do. Trump said he is going to work to make insurance and/or the government pay for IVF. Trump believes in exceptions for abortion, but that’s up to the states. Trump plans on securing Medicare, and lowering costs for all needs. But when people are brainwashed so deeply it’s not possible to speak reason into them. Hopefully the next 4 years of life experience will help them come through their insanity.', 'created': '2024-11-08 18:14:37', 'submission_id': '1gmk1ui'}
{'comment': 'I hope you get some mental health help.', 'created': '2024-11-08 18:43:37', 'submission_id': '1gmk1ui'}
{'comment': "She's one to talk about empathy with that diatribe!", 'created': '2024-11-08 18:49:51', 'submission_id': '1gmk1ui'}
{'comment': 'Are they all that evil? Or completely brainwashed? Wtf?!', 'created': '2024-11-08 18:51:04', 'submission_id': '1gmk1ui'}
{'comment': 'Had it not been for dems and media brain washing this crap into the heads of their followers Harris would have got zero votes 🙄', 'created': '2024-11-08 18:51:49', 'submission_id': '1gmk1ui'}
{'comment': 'Where is IVF not available?', 'created': '2024-11-08 16:51:46', 'submission_id': '1gmk1ui'}
{'comment': 'Ahhh the mask has slipped and now we see this “persona of moral perfection” melt away', 'created': '2024-11-08 17:26:35', 'submission_id': '1gmk1ui'}
{'comment': 'This is what social media has done to the left. They believe all the shit they are fed by the machine and have abandoned all their values and the human right of thinking for themselves', 'created': '2024-11-08 17:37:01', 'submission_id': '1gmk1ui'}
{'comment': 'I read what the leftist have to say and I just feel sorry for them. They’re truly pathetic.', 'created': '2024-11-08 17:37:27', 'submission_id': '1gmk1ui'}
{'comment': 'The voice of arrogance. Arrogance is a weakness.', 'created': '2024-11-08 17:38:44', 'submission_id': '1gmk1ui'}
{'comment': "The left is completely unhinged. It's honestly really enjoyable to watch.", 'created': '2024-11-08 16:45:31', 'submission_id': '1gmk1ui'}
{'comment': 'Wow, feel the love.', 'created': '2024-11-08 16:49:18', 'submission_id': '1gmk1ui'}
{'comment': '"wreathing in pain" 🥲', 'created': '2024-11-08 20:06:53', 'submission_id': '1gmk1ui'}
{'comment': 'The best part of this is none of this happened the first time 😂😂you can literally throw empirical data driven evidence and data at the left, and all you get is “ORANGE MAN BAD”', 'created': '2024-11-08 20:10:14', 'submission_id': '1gmk1ui'}
{'comment': "Right off the bat, he literally said he's working to require IVF be covered so that it is better available like, a week or two ago.", 'created': '2024-11-08 20:15:04', 'submission_id': '1gmk1ui'}
{'comment': 'These people are pathetic', 'created': '2024-11-08 20:15:19', 'submission_id': '1gmk1ui'}
{'comment': 'Nobody will be turning away women having etopic pregnancies. Good Lord.', 'created': '2024-11-08 20:17:55', 'submission_id': '1gmk1ui'}
{'comment': 'I hope none is surprised by the unhinged reactions of these people.', 'created': '2024-11-08 20:28:19', 'submission_id': '1gmk1ui'}
{'comment': 'Wow! That person must be fucked in the head MASSIVE time!', 'created': '2024-11-08 20:39:03', 'submission_id': '1gmk1ui'}
{'comment': 'I’m not sure why they are blaming abortion on trump, it’s the states fault for not allowing it. \n\nMy personal opinion is it should not be illegal, the government should be kept out of it. GOP can win some big time support if they just did this !', 'created': '2024-11-08 20:49:08', 'submission_id': '1gmk1ui'}
{'comment': 'What in the world makes them think this is ok to say? Imagine if we lost “omg that sucks, gotta go to work tomorrow”… this is reprehensible behavior.', 'created': '2024-11-08 20:50:25', 'submission_id': '1gmk1ui'}
{'comment': 'Echo', 'created': '2024-11-08 21:00:54', 'submission_id': '1gmk1ui'}
{'comment': 'These people are horrible pathetic creatures', 'created': '2024-11-08 21:01:02', 'submission_id': '1gmk1ui'}
{'comment': 'This is why it is important to not give these people power.', 'created': '2024-11-08 21:09:52', 'submission_id': '1gmk1ui'}
{'comment': 'The party of empathy, everybody!👏👏👏👏', 'created': '2024-11-08 21:20:15', 'submission_id': '1gmk1ui'}
{'comment': 'That’s a very sick person right there.', 'created': '2024-11-08 21:41:44', 'submission_id': '1gmk1ui'}
{'comment': 'Anyone who likes to be invited to r/democratmeltdown and just post every single post of lefties crying like babies is 🆓 to come', 'created': '2024-11-08 21:57:18', 'submission_id': '1gmk1ui'}
{'comment': 'This person didn’t vote the way I wanted so I hope they suffer - tolerant left', 'created': '2024-11-08 22:39:39', 'submission_id': '1gmk1ui'}
{'comment': 'This is coming from the same people that were saying "the president doesn\'t dictate prices of goods and gas".\n\nGuess its just a coincidence everything is cheaper under a republican president.', 'created': '2024-11-08 22:40:29', 'submission_id': '1gmk1ui'}
{'comment': 'Trump literally said he’s for ivf my wife and I took particular notice so no lol. Medical emergency abortions will not be stopped like stop all the bullshit.\n\nWhat a hateful fucking loser, there is something much deeper bothering this disturbed individual, and it’s not politics. God help you', 'created': '2024-11-08 22:43:56', 'submission_id': '1gmk1ui'}
{'comment': '"wreathing in pain" 🤣🤣🤣🤣🤣', 'created': '2024-11-08 22:45:25', 'submission_id': '1gmk1ui'}
{'comment': 'Wow. I couldn’t imagine being that insufferable and miserable. What a terrible person to literally wish someone’s child commits suicide because the mom voted for Trump.', 'created': '2024-11-08 22:54:04', 'submission_id': '1gmk1ui'}
{'comment': 'Who’s peddling hate now?', 'created': '2024-11-08 23:00:36', 'submission_id': '1gmk1ui'}
{'comment': 'qualification for lefties: accept terrible things and act like it will be okay later, and when good things do happen hope for terrible things that will never happen to happen.\n\nGot it. Sounds like insanity. Last I checked our enemies shat their pants that Trump got elected and just ended wars because they know he will actually do something immediately instead of eat ice-cream and lie to the people like biden.\n\nTheres a reason why so much bad crap happened under biden, because nobody respected him and saw an opportunity to just do whatever they want.\n\nTrump = honesty, peace, transparency, America first, giving power back to we the people, protecting and preventing wars, improving the economy, and actually doing his job.', 'created': '2024-11-08 23:03:26', 'submission_id': '1gmk1ui'}
{'comment': 'How tolerant and accepting', 'created': '2024-11-08 23:04:41', 'submission_id': '1gmk1ui'}
{'comment': 'I\'m not voting based on some woman\'s fear of IVF getting banned or possibly dealing with ectopic pregnancies. I\'m not pro-life but I don\'t give a damn about abortion "rights," either. I\'ve got lots of other concerns, and I\'m voting in MY best interests. Women\'s "reproductive rights" aren\'t one of them and no woman is entitled to my vote in support of whatever bullshit they got their uterus twisted in a knot over.', 'created': '2024-11-08 23:38:07', 'submission_id': '1gmk1ui'}
{'comment': 'I used to think that with other Democrats I could meet them in the middle as long as we learn from each other right? No at this point fuck em all.', 'created': '2024-11-09 00:40:09', 'submission_id': '1gmk1ui'}
{'comment': 'Predatory evil. They are manifesting a lot of hate and karma for themselves. They have an empty soul.', 'created': '2024-11-09 01:25:30', 'submission_id': '1gmk1ui'}
{'comment': 'Deranged x 10', 'created': '2024-11-09 02:24:17', 'submission_id': '1gmk1ui'}
{'comment': 'That is insane. People like this need to be in an asylum.', 'created': '2024-11-09 02:42:15', 'submission_id': '1gmk1ui'}
{'comment': 'Bet that “wreathing “ in pain is terrible.', 'created': '2024-11-09 06:53:05', 'submission_id': '1gmk1ui'}
{'comment': 'The party of love and tolerance.', 'created': '2024-11-09 09:44:03', 'submission_id': '1gmk1ui'}
{'comment': 'Liberals can be some of the nastiest people on the face of this earth.', 'created': '2024-11-09 16:25:15', 'submission_id': '1gmk1ui'}
{'comment': 'That’s the party of ‘love and tolerance’ for you', 'created': '2024-11-09 17:54:06', 'submission_id': '1gmk1ui'}
{'comment': 'I just received news! She deleted her account!', 'created': '2024-11-09 18:49:47', 'submission_id': '1gmk1ui'}
{'comment': 'These people are sick, demented people that are the antithesis of what they believe themselves to be.', 'created': '2024-11-08 18:18:23', 'submission_id': '1gmk1ui'}
{'comment': 'https://imgur.com/gallery/youve-got-lot-of-anger-you-kid-NF94C', 'created': '2024-11-08 17:52:23', 'submission_id': '1gmk1ui'}
{'comment': 'Didn’t trump say he wanted Ivf to Faulk under medical insurance lmao', 'created': '2024-11-08 18:19:39', 'submission_id': '1gmk1ui'}
{'comment': "But we're Nazis!! It's ok.", 'created': '2024-11-08 20:39:35', 'submission_id': '1gmk1ui'}
{'comment': 'If she would have won I would have gotten up and went to work just like I did that he won… I am an adult… I have responsibilities. I would never wish horrible things to happen to anyone for any reason, especially for who they voted for. (And on social media) people need to grow up!', 'created': '2024-11-09 12:25:17', 'submission_id': '1gmk1ui'}
{'comment': 'This person that wrote this has all the joy! \n\nLike I wonder if they actually read what they posted and just for a second thought that this was way over the top and irrational, and maybe just maybe I should take a beat and not post it. Naw! They just wrote it and hit post. Make insane asylums great again.', 'created': '2024-11-09 04:29:42', 'submission_id': '1gmk1ui'}
{'comment': "'I hope your kid kills themself.' What in the actual hell is wrong with them.", 'created': '2024-11-08 17:48:09', 'submission_id': '1gmk1ui'}
{'comment': "Sometimes I have my doubts they are real people and aren't just bot accounts run by someone to troll, and since this is reddit...", 'created': '2024-11-08 18:47:07', 'submission_id': '1gmk1ui'}
{'comment': 'Classic emotional response. Don’t think about what your words actually mean, go for the throat.', 'created': '2024-11-08 20:28:07', 'submission_id': '1gmk1ui'}
{'comment': 'They hope someone’s kid kills himself? How absolutely evil.', 'created': '2024-11-09 03:19:23', 'submission_id': '1gmk1ui'}
{'comment': 'Sadly these are the same people that said the shooter “missed” when Trump was nearly assassinated at the rally a few months ago.', 'created': '2024-11-08 22:38:23', 'submission_id': '1gmk1ui'}
{'comment': "I actually feel sorry for a lot of them. Think about it, the Democrats fed them the P2025 fear. It was pushed hard, including Kamala campaign ads on TV even after Trump said in the debate it wasn't his plan. The only people claiming its Trump's plan are the democrats! Some of the fools truly believe all the bullshit they're crying about. They believe life is about to revert back to the 1940-50's, scaling back certain demographics right to vote, including women eventually, forcing women to pop out kids like in factory farming, forcing others into camps and killing what the dems claim the republicans consider the undesirables. They were also brainwashed to believe Kamala was something she never has been and that because they voted for Biden, that meant they also voted for her to be the presidential candidate. They were told to support her or the apocalypse would come, and they were led to believe their numbers were greater than what they were. \n\nThe dems lied to them so many times and filled them with this fear, dread, and anxiety. Only time will help them as the scary things never materialize. Their lashing out with hate towards us is their only means to soothe themselves right now. They're scared, and they were told to be scared of us. Now they fear well over half our country. Stay kind to them. Continue pointing out the holes in the lies if you have the patience to do so. Make them second guess their own beliefs so they start researching them better. But don't hate them back. Prove we're better than hate.", 'created': '2024-11-08 19:54:10', 'submission_id': '1gmk1ui'}
{'comment': 'The tolerant left for you.', 'created': '2024-11-08 16:44:27', 'submission_id': '1gmk1ui'}
{'comment': 'Yep, surprisingly they won’t..', 'created': '2024-11-08 19:32:25', 'submission_id': '1gmk1ui'}
{'comment': "It's scary how they all act and behave almost identically. I'd put everything I own their hair is green, they have 10 facial piercings and live at home with their parents saying they can't work because of anxiety.", 'created': '2024-11-08 17:54:20', 'submission_id': '1gmk1ui'}
{'comment': 'yeah, my pfp tells it all.', 'created': '2024-11-08 19:45:31', 'submission_id': '1gmk1ui'}
{'comment': 'I could’ve sworn Trump wanted IVF to be free at one of his rallies\n\nAnd why is the left so obsessed with abortions? I’m sure most conservatives don’t care what you do with your body; just don’t use abortion as a get out of jail free', 'created': '2024-11-08 17:13:28', 'submission_id': '1gmk1ui'}
{'comment': 'Trump says he is a believer in abortion exemptions ( incest, death of mother, or rape)', 'created': '2024-11-08 17:31:11', 'submission_id': '1gmk1ui'}
{'comment': "Texas' maternal death rate has increased by more than 50%. You may want to look into why.", 'created': '2024-11-08 18:36:40', 'submission_id': '1gmk1ui'}
{'comment': 'If you google Trump IVF, you’ll even see the first link from NBC, of all places, reporting that he’s in full support of it and wants it to be subsidised.', 'created': '2024-11-09 00:08:06', 'submission_id': '1gmk1ui'}
{'comment': 'I’m praying for the therapists now. 😭🙏', 'created': '2024-11-08 17:31:40', 'submission_id': '1gmk1ui'}
{'comment': 'Better yet, empathy is a woke idea. No one felt empathy before the "woke" folks. How self absorbed and out of touch can they get?', 'created': '2024-11-08 20:11:59', 'submission_id': '1gmk1ui'}
{'comment': 'I respect you a ton for this 💯', 'created': '2024-11-08 19:31:15', 'submission_id': '1gmk1ui'}
{'comment': 'There was one commenter in there who said they had broken with their family over politics and then mentioned that their sister was too busy raising 5 kids and didn’t do Reddit or watch the news. They wonder how you would engage someone like that, like that person was someone completely foreign to their way of thinking. My comment was that their sister was clearly the mature person in the family precisely because her priority was raising her family and now wallowing in self pity and spewing hateful rhetoric on Reddit. Suddenly their comments show as “deleted”. 😂', 'created': '2024-11-08 16:45:52', 'submission_id': '1gmk1ui'}
{'comment': 'They want full abortion access at the federal level. They had it with Roe v Wade and it got overturned by the Supreme Court\n\nTrump never said anything about abortion other than it should be a state issue', 'created': '2024-11-08 17:01:16', 'submission_id': '1gmk1ui'}
{'comment': 'Yep missouri here we had to vote for OUR state not the whole country', 'created': '2024-11-08 19:22:36', 'submission_id': '1gmk1ui'}
{'comment': 'Correct. The Supreme Court kicked it back to the states for them to decide. And pretty much every state has exceptions to preserve the life of the mother.\n\nMy cousin in Mississippi suffered an unfortunate miscarriage at 30 something weeks. I can’t remember exactly what happened but her uterus ruptured and she almost died from bleeding out. She had to have emergency surgery and they attempted to save the life of the baby, but were unable to. But she did get the care that she needed. No one left her outside in a parking lot to bleed out by herself, saying that we can’t help you because of the laws.', 'created': '2024-11-08 17:00:04', 'submission_id': '1gmk1ui'}
{'comment': 'It is state by state and the Supreme Court over ruling roe v. wade was simply stating that the court had no power to decide the issue in the first place. You vote for your state leaders to make the abortion laws. There were several abortion issues on state ballots this election that people voted on. I think all but the one in Florida passed.', 'created': '2024-11-08 16:59:06', 'submission_id': '1gmk1ui'}
{'comment': 'Are these people for real?', 'created': '2024-11-08 19:58:02', 'submission_id': '1gmk1ui'}
{'comment': 'They’re trying, they’re trying.', 'created': '2024-11-08 19:59:21', 'submission_id': '1gmk1ui'}
{'comment': 'Yep, I’m thinking of praying to Jesus now, the demoNcrats need to go to jail, rn.', 'created': '2024-11-08 17:16:28', 'submission_id': '1gmk1ui'}
{'comment': 'The only person I feel bad is for the therapists and the psychiatrists.', 'created': '2024-11-08 17:53:54', 'submission_id': '1gmk1ui'}
{'comment': 'There will be severe cognitive dissonance but they won’t ever admit they were wrong. Ever.', 'created': '2024-11-08 16:46:47', 'submission_id': '1gmk1ui'}
{'comment': 'They will feel like they have been weathering the harshest storm possible and even after a democrat has office for a 8 years after this and does literally nothing to change it.. They will again act like a democratic candidate is going to help them.\n\nThey have no idea that the Democratic politicians have no interest in passing a federal law to blanket allow abortion. They would lose so many voters it would turn into a one party system.', 'created': '2024-11-08 18:10:07', 'submission_id': '1gmk1ui'}
{'comment': '"We barely made it" because there\'s people right now saying they barely survived his first term.', 'created': '2024-11-08 22:45:14', 'submission_id': '1gmk1ui'}
{'comment': 'Yeah! I never felt so happy that my Latino brethren are voting for trump, it’s so weird and yet reassuring and that I dance proudly for trump!', 'created': '2024-11-08 22:10:21', 'submission_id': '1gmk1ui'}
{'comment': 'I don’t know, guess they are like hornets..', 'created': '2024-11-09 00:18:00', 'submission_id': '1gmk1ui'}
{'comment': 'I’m glad i left that subreddit, I don’t regret it.', 'created': '2024-11-09 01:18:23', 'submission_id': '1gmk1ui'}
{'comment': 'And they call trump a masochist.. huh.. and call people fascist..', 'created': '2024-11-09 16:58:08', 'submission_id': '1gmk1ui'}
{'comment': 'Reminds me of Squidward saying \n\n“I have no soul” like.. they don’t have a soul.. they don’t!', 'created': '2024-11-09 14:08:29', 'submission_id': '1gmk1ui'}
{'comment': 'What she needs it’s to stay in a rubber room full of rats.', 'created': '2024-11-09 16:21:39', 'submission_id': '1gmk1ui'}
{'comment': 'Thank you.', 'created': '2024-11-09 20:45:22', 'submission_id': '1gmk1ui'}
{'comment': 'No problem! 😉 I left that sub! And I don’t regret it!', 'created': '2024-11-09 23:05:54', 'submission_id': '1gmk1ui'}
{'comment': 'Well, she’s just as smart as a child.', 'created': '2024-11-08 19:27:03', 'submission_id': '1gmk1ui'}
{'comment': 'I only feel bad for the therapists, lord knows how much shit they are going to tolerate.', 'created': '2024-11-08 19:41:41', 'submission_id': '1gmk1ui'}
{'comment': 'Yeah we aren’t even human to majority of them. They claim to be the loving side but they are all soooo much better than us', 'created': '2024-11-08 21:16:47', 'submission_id': '1gmk1ui'}
{'comment': 'Exactly! I was 16 when the last election happened so I was unable to vote, but I remember seeing that Biden won and just going “Oh, well. That’s that.” and going on about my day. I literally cannot imagine crashing out THIS hard on the internet. Embarrassing.', 'created': '2024-11-09 12:26:51', 'submission_id': '1gmk1ui'}
{'comment': 'I was able to find the original post, it’s been deleted.', 'created': '2024-11-09 04:30:13', 'submission_id': '1gmk1ui'}
{'comment': 'They’re communists. Remember what happened to people during the Russian Revolution? Also the French Revolution? They don’t care if kids suffer or die. They’re psychopaths with a cruel ideology. They just want to have their way, totally self absorbed psychopathic narcissists.\xa0', 'created': '2024-11-08 18:05:41', 'submission_id': '1gmk1ui'}
{'comment': 'God I hope so.', 'created': '2024-11-08 19:16:07', 'submission_id': '1gmk1ui'}
{'comment': 'My sister in law said she was mad that the bullet missed. My wife and I tried to have a normal conversation about politics about a month afterwards and she stormed off in anger (like most other libs)', 'created': '2024-11-09 01:21:47', 'submission_id': '1gmk1ui'}
{'comment': 'Exactly', 'created': '2024-11-08 23:01:47', 'submission_id': '1gmk1ui'}
{'comment': 'I would award you if I could because this is just 🤌', 'created': '2024-11-08 21:18:18', 'submission_id': '1gmk1ui'}
{'comment': 'You are 100% right and I said the same thing myself the rhetoric during Kamala’s whole campaign was to use scare tactics and talk about how bad Trump is cause that’s all they had. Over time hopefully they’ll see this was the better choice but they did a number on these people total and complete brainwashing', 'created': '2024-11-09 07:36:47', 'submission_id': '1gmk1ui'}
{'comment': 'The party of compassion.', 'created': '2024-11-08 17:32:24', 'submission_id': '1gmk1ui'}
{'comment': 'But if you commented anything remotely close to supporting Trump you’d be gone in less than 30 minutes', 'created': '2024-11-08 21:18:55', 'submission_id': '1gmk1ui'}
{'comment': 'Youre betting everything on green 🤣', 'created': '2024-11-10 21:06:04', 'submission_id': '1gmk1ui'}
{'comment': 'The moment I ask anything about giving him some benefit of the doubt, the left just goes nuts on me, it’s incredible how biased the politics sub it. It’s driving me more right wing the more I see their unhinged behavior', 'created': '2024-11-08 18:08:37', 'submission_id': '1gmk1ui'}
{'comment': 'He did say that. He said he wants insurance companies to be mandated to pay for all IVF costs.', 'created': '2024-11-08 18:15:00', 'submission_id': '1gmk1ui'}
{'comment': 'A quarter of them died due to severe infections, then cardiovascular conditions, obstetric hemorrhaging, embolism, and chronic mental health conditions. \n\nUnder the Texas Abortion Law, it allows for life saving care to be given to the mother to save her life over the baby’s. So the law allows it, it’s on doctors for choosing not to.\n\nThe third leading cause of death in the US is due to medical malpractice and incompetence, with over a quarter of a million people dying each year from it. This isn’t on the law, it’s on the doctors for not taking any action, as the law allows for this leeway. So I’m not wrong, it’s the doctors’ inactions, which are wrong.', 'created': '2024-11-08 18:46:09', 'submission_id': '1gmk1ui'}
{'comment': 'Malpractice\nThat’s why.\n\nTexas law clearly allows abortion when it risks a mother’s life. It even allows abortion to the first heartbeat (6 weeks)\n\nPhysicians are not performing them. End of story', 'created': '2024-11-08 18:39:47', 'submission_id': '1gmk1ui'}
{'comment': "Probably because illegals typically wait until a minor health event has becime a health crisis to go to an ED because they don't have insurance. Would love to see the maternity mortality rate stats by race and immigratuon status.", 'created': '2024-11-09 12:09:08', 'submission_id': '1gmk1ui'}
{'comment': '100%. This is so concerning.', 'created': '2024-11-08 17:32:00', 'submission_id': '1gmk1ui'}
{'comment': None, 'created': '2024-11-08 19:41:32', 'submission_id': '1gmk1ui'}
{'comment': 'I guess the Redditor fumbled.. in self-pity.', 'created': '2024-11-08 19:51:07', 'submission_id': '1gmk1ui'}
{'comment': 'No they literally want and I quote "no laws about their bodies". \n\nThey don\'t seem to understand that the baby has a body too at some point and should probably have a line drawn around when exactly we\'re going to say that body exists.', 'created': '2024-11-08 18:02:24', 'submission_id': '1gmk1ui'}
{'comment': 'Thanks for the reply! Are most states pro or anti abortion at this point?', 'created': '2024-11-08 17:01:29', 'submission_id': '1gmk1ui'}
{'comment': 'I’m in England but me and my church had been rooting for and praying for Trump… the night before the election God put it in my spirit not exactly who would win, but that HIS will was going to be done here. Praise God', 'created': '2024-11-08 17:20:09', 'submission_id': '1gmk1ui'}
{'comment': 'I mean, she already is a rat herself. Although that’s insulting to rats (because they are actually smart and can be absolutely adorable pets if taken care of properly)\n\nWhat we really need for her is to be put in that room that has the constant moving floor of sandpaper.', 'created': '2024-11-09 16:34:13', 'submission_id': '1gmk1ui'}
{'comment': 'Simply amazing. Calling us fascists....when acting like......? Hmmmm', 'created': '2024-11-08 21:20:21', 'submission_id': '1gmk1ui'}
{'comment': 'As a woman I cannot understand either, it’s very embarrassing. I can’t fathom what is going on in their brains to throw such a tantrum over this, my kids don’t even act like this! 😂', 'created': '2024-11-09 12:31:14', 'submission_id': '1gmk1ui'}
{'comment': "They're so inclusive that they wish death on their enemies, and all those minorities who disagree with them. Hell, even legal immigrants are target to their threats - they're horrible and should be ashamed.", 'created': '2024-11-08 19:00:56', 'submission_id': '1gmk1ui'}
{'comment': 'Don’t forget racists, I have seen A LOT of racist posts these last few days saying “screw all Latinos” type of shit, they say “my neighbor is living with his illegal immigrant parents, I can’t wait to report them and make him suffer (not exactly the wordage but close)” like damn they’re wanting to deport people to get revenge on their family members, I want it to happen because it’s just business, for me it’s as simple as “they came in illegally they need to leave” I don’t think about how much I want their families to suffer.', 'created': '2024-11-09 00:17:24', 'submission_id': '1gmk1ui'}
{'comment': 'There is no normal conversation with them. My mom quickly dissolves in angry tears and screams at me when I try to calmly discuss my point of view.\n\nJust yesterday she was screaming about my rights as a female being at risk. She said we should have a right to do with our bodies whatever we choose.\n\nSo I asked her why the “my body, my choice” argument didn’t hold during Covid when I decided I didn’t want to get the vaccine?\n\nShe screams at me that “people died because of your selfish decision!”. One, as if a baby isn’t a person and two, as if the vaccine only worked if everyone in the room had it.\n\nThere truly is no rational conversation. It is just anger, snot and tears.', 'created': '2024-11-09 13:39:25', 'submission_id': '1gmk1ui'}
{'comment': "I really hope anyone who read that takes my advice. Some of the shit I've seen them freaking out about for the past 2 days really helped me to see just how bad their party messed them up. Fear and anxiety has completely overtaken their ability to use common sense. It's going to take time for that fog to lift.", 'created': '2024-11-09 00:42:59', 'submission_id': '1gmk1ui'}
{'comment': 'Yeah, I’m just uh, not sure if I want to be back into that subreddit', 'created': '2024-11-08 21:22:53', 'submission_id': '1gmk1ui'}
{'comment': 'I am, I think purple was last year.', 'created': '2024-11-10 21:16:53', 'submission_id': '1gmk1ui'}
{'comment': 'You are playing weasel words here - malpractice and incompetence existed before the law. undeniably, when the law went into effect, significantly more women died', 'created': '2024-11-08 18:55:42', 'submission_id': '1gmk1ui'}
{'comment': 'Ah! You\'ve got them in a trap! Damned if they do, damned if they don\'t. But Texas law puts them in jail for a very long time if it\'s not "enough" of an emergency, and malpractice just means their insurance has to pay out.', 'created': '2024-11-08 18:45:50', 'submission_id': '1gmk1ui'}
{'comment': 'Funny that you downvoted me just for stating an easy to find statistic. Are you afraid of people checking into it? Does reality not fit your narrative?', 'created': '2024-11-08 18:49:22', 'submission_id': '1gmk1ui'}
{'comment': 'It is, and I have a site dedicated for the outbursts of democrats, like r/democratmeltdown .', 'created': '2024-11-08 17:32:50', 'submission_id': '1gmk1ui'}
{'comment': 'It may be the case, unfortunately. My family members are teachers, but they\'re mostly republicans and are very against some of the things the current dept of ed has been doing- privately transitioning kids and keeping parents in the dark, strange books for very young readers, rewriting history, etc. I understand the grievances with not wanting what equates to "propagandist narrative" taught, but I\'m also afraid for the decent teachers who are just trying to educate children, and how it will affect their livelihoods. Teachers already get the raw end of a deal.', 'created': '2024-11-09 03:31:19', 'submission_id': '1gmk1ui'}
{'comment': 'There are about 10 or 11 states with no restrictions, meaning you can get an abortion at any point in the pregnancy. The rest have restrictions that vary from state to state. \n\n[Here’s a map with the current laws in each state.](https://en.m.wikipedia.org/wiki/Abortion_law_in_the_United_States_by_state)', 'created': '2024-11-08 17:05:34', 'submission_id': '1gmk1ui'}
{'comment': "Thank you so much for your prayers. I've been following what's happening in Great Britain and it's scary. People going to prison for tweets that disagree with your current government. Our mainstream media is not covering the state of your nation at all. I don't think most US Citizens realize how close we came to government censorship, among other things I'm sure you all are experiencing but can't discuss on social media. I am thankful and relieved Harris was not elected. I will pray for you and your country and wish only the best for you and your loved ones.", 'created': '2024-11-08 20:27:05', 'submission_id': '1gmk1ui'}
{'comment': 'Exactly! With pictures of trump on the walls, so that she can be monitored always!', 'created': '2024-11-09 16:35:28', 'submission_id': '1gmk1ui'}
{'comment': 'Precisely. It’s quite sad to be honest', 'created': '2024-11-08 21:21:42', 'submission_id': '1gmk1ui'}
{'comment': 'It’s not even really the younger voters. It’s the millennials.', 'created': '2024-11-09 12:32:52', 'submission_id': '1gmk1ui'}
{'comment': 'Well that is what separates us from them. We just want people to be law abiding citizens, not exactly asking for much. They on the other hand, are vindictive, spiteful, entitled,violent, motivated by hatred and lack empathy.\xa0', 'created': '2024-11-09 03:47:28', 'submission_id': '1gmk1ui'}
{'comment': 'I just hope that time isn’t as long as I fear it is. Hopefully these people will open their eyes sooner than later', 'created': '2024-11-09 02:42:42', 'submission_id': '1gmk1ui'}
{'comment': "Been doing that for years, I'm gonna keep doing it but.. I'm getting real tired, boss.", 'created': '2024-11-09 02:43:17', 'submission_id': '1gmk1ui'}
{'comment': 'I don’t blame you 😂 seems like a den of snakes 🐍', 'created': '2024-11-08 21:24:51', 'submission_id': '1gmk1ui'}
{'comment': 'The difference being that these doctors are *choosing* incompetence, and their motive is the law.\n\nIf you don’t understand the law, you may believe that doctors are barred from intervening in these obvious life or death situations. Not all doctors understand the law. Therefore, some doctors may choose not to intervene because they’re scared, even though the law WOULD protect them if they did.\n\nIt’s not “I don’t know how to diagnose or treat you” incompetence, it’s deliberate inaction.', 'created': '2024-11-08 19:21:29', 'submission_id': '1gmk1ui'}
{'comment': 'The law itself allows for an abortion to be performed to save the mother’s life. I’m not playing weasel words here in the slightest. \n\nIf the doctors wish to not perform one for whatever reason, that is 100% on them, for they have full legal right to perform one to save the mother over the baby. This is doctor incompetence and hesitation, when there needn’t be, as it is LEGAL under the Texas law, prove me wrong that it is illegal to perform one to save the mother’s life. Find me the wording where the mother must be sacrificed to save the baby.', 'created': '2024-11-08 18:59:00', 'submission_id': '1gmk1ui'}
{'comment': 'Going there now 🫶🤣', 'created': '2024-11-08 17:35:01', 'submission_id': '1gmk1ui'}
{'comment': 'Thanks for the answers, really clears things up. So basically all of what I’m seeing of women screaming about their rights are misinformed.', 'created': '2024-11-08 17:09:33', 'submission_id': '1gmk1ui'}
{'comment': 'Thank you, I don’t actually know too much about that as I try to keep away from the news, unless I true. But yeah Keir Starlin is bonkers, I used to be very liberal, socialist and before I found God I would never have dreamed that I would lean anywhere towards the right, but holding different values now, and seeing what power crazy puppets led by shadow governments did with liberalism over these four over the pond and now here, I see the light. Keir though is in another level, somehow he is managing to combine the very worse parts of how the last conservative leadership was, push it further and add liberal madness to the mix. Whatever side of the fence you are Britain loves it’s socialist benefits such as protecting our seniors that are in fuel poverty (and many are since we pay the highest and are in a cost of living crisis, many will die as they were doing a decade or so ago when this help was implemented) but Starlin has come and taken away those benefits which is worse than anything the conservatives ever did and then push to legally silence free speech of religious people against LGBT, just to name two.', 'created': '2024-11-09 01:50:47', 'submission_id': '1gmk1ui'}
{'comment': "Love it. 'It's white women's fault for Kamala not winning.' Also, 'it's uneducated white women that didn't vote Kamala.'\n\nDo we seriously have to sit down and explain racism to fucking adults?", 'created': '2024-11-08 21:38:11', 'submission_id': '1gmk1ui'}
{'comment': 'I’ve definitely heard Gen Z (and I’m a Gen Z) is less hardcore liberal than millennials. I think millennials were brainwashed and Gen Z got sick of it', 'created': '2024-11-10 22:09:22', 'submission_id': '1gmk1ui'}
{'comment': 'For their sake and our sanity, yes sooner than later.', 'created': '2024-11-09 02:45:07', 'submission_id': '1gmk1ui'}
{'comment': "When your tired, that's when to stay to quiet. It's unproductive if your energy is depleted.", 'created': '2024-11-09 02:46:33', 'submission_id': '1gmk1ui'}
{'comment': 'Well thank you, hard to find common sense there.', 'created': '2024-11-08 22:00:03', 'submission_id': '1gmk1ui'}
{'comment': 'Why don\'t you ask the physicians that have been dragged in front of a judge (multiple so far- it\'s in the public record) how "protected" by the law they feel. The results are part of the public record too.', 'created': '2024-11-08 19:31:40', 'submission_id': '1gmk1ui'}
{'comment': 'Unequivocally, the law went into effect, women started dying at notably higher rates. \n\nYou keep trying to dodge that, and make excuses for that. You even tried to shift the burden of proof. I don\'t have to show you any wording. I showed you the easily verified statistic. \n\nPassing the blame to the physician doesn\'t change the fact that the law came into effect, and women die. You\'ve put the physician into a no win situation. If a judge or prosecutor with no medical training decides it wasn\'t "enough" of an emergency, they go to jail for a very long time. If they just let them die, maybe they get sued, and their insurance rates go up a bit.', 'created': '2024-11-08 19:24:17', 'submission_id': '1gmk1ui'}
{'comment': 'Thank you, this is my first time making a subreddit', 'created': '2024-11-08 17:35:20', 'submission_id': '1gmk1ui'}
{'comment': 'Yep. If you go back and research it for yourself (like I wish they would lol) Trump and Vance have both said multiple times that neither of them have any interest whatsoever in enacting a total abortion ban. They both feel it should be left up to the individual states. And like I stated in my previous post, every state has exceptions to save the mother’s life.', 'created': '2024-11-08 17:20:30', 'submission_id': '1gmk1ui'}
{'comment': 'Worse than misinformed. The democratic party in the USA brainwashed them into believing horrible lies. The liberals own most major media and news outlets in this country. Even with that unfair advantage, they still lost. However, now we are left with these brainwashed people who think the world is ending. The news media filled them with enormous hate.', 'created': '2024-11-08 18:05:52', 'submission_id': '1gmk1ui'}
{'comment': 'The hate for white people nowadays is saddening. Ofc I acknowledge that people who share my skin color did horrible acts in the past (and sick individuals continue to do so today) but that doesn’t justify the hate of a group of people.', 'created': '2024-11-09 02:48:09', 'submission_id': '1gmk1ui'}
{'comment': 'Of course we do because that’s all we talk about anymore. That’s why there’s no more conversing or conversations. Because Dems can’t shut the F up about racism and they don’t even know its definition, every time they lose something even a basketball game it’s racism.', 'created': '2024-11-09 03:18:19', 'submission_id': '1gmk1ui'}
{'comment': 'These are the spoiled brats that never grew up because their parents were too busy buying them everything they wanted and never disciplined them.\n\nThey will never be adults!', 'created': '2024-11-11 14:17:30', 'submission_id': '1gmk1ui'}
{'comment': 'Gen Z is also sick of millennials picking on us all the time.', 'created': '2024-11-10 22:36:26', 'submission_id': '1gmk1ui'}
{'comment': 'Amen to that', 'created': '2024-11-09 02:48:28', 'submission_id': '1gmk1ui'}
{'comment': "Great advice, thanks. It can be hard if you're the only one speaking kindly in a group to let it slide.", 'created': '2024-11-09 03:27:11', 'submission_id': '1gmk1ui'}
{'comment': 'Unfortunately so', 'created': '2024-11-09 02:42:52', 'submission_id': '1gmk1ui'}
{'comment': 'Well damn, how about you ask *all* the falsely convicted people how good they think the laws are?\n\nIf they performed unnecessary illegal abortions, I don’t feel bad. If they were truly trying to do no harm and save someone’s life… it’s a misappropriation of the law, what can I say. Fix the execution of the law, but you don’t need to change the law.', 'created': '2024-11-08 19:50:59', 'submission_id': '1gmk1ui'}
{'comment': 'First off…you seem somewhat lacking in the law field. First off, a prosecutor needs to bring charges, then in a criminal case, a jury must have without a shadow of a doubt, agreed that he murdered a child under the anti-abortion law, and then the judge passes the sentencing based on the guilt by a jury of his peers.\n\nSecond off, no, the law is pretty cut and dry, where a doctor is allowed to perform one to save the mother’s life, all of which can be well documented. You can pick and choose what field a judge, prosecutor, or jury are experts in all day, I can do the exact same thing, so you’re playing “What ifs” with me. \n\nI’m telling you the FACT, that the law leaves an out for doctors to save the mother’s life and they ACTIVELY choose to disregard it, that’s their fuck up, period. End of story, see you later.', 'created': '2024-11-08 20:07:13', 'submission_id': '1gmk1ui'}
{'comment': "I'm always happy to point out that I come from a family of destitute Italian immigrants who showed up in the late 1800's, and found not one ounce of success until the end of the Great Depression. They came to the Midwest via New York City, Buffalo NY, and Detroit.\n\nSo, no, not one person in my family has engaged in acts of slavery, segregation, or systemic racism.\n\nBut I'm damn sure treated like it's my fault.", 'created': '2024-11-10 22:26:44', 'submission_id': '1gmk1ui'}
{'comment': 'That’s what happens when you make your race and being the victim part of your identity', 'created': '2024-11-09 16:50:06', 'submission_id': '1gmk1ui'}
{'comment': "For me, that's when I would just step away from the group all together. I wouldn't participate in any conversation if there's multiple people being combative and insulting. Why continue to paddle while they're trying to drown you? Leave the water.", 'created': '2024-11-09 03:37:17', 'submission_id': '1gmk1ui'}
{'comment': 'You and I can sit back and quibble over what constitutes as necessary, or unnecessary. We can bicker about proper execution, and false imprisonment of those suspected of aiding an abortion. \n\nBut while we play academic games, the for-real reality is that the law as written is killing wemen.', 'created': '2024-11-08 19:58:15', 'submission_id': '1gmk1ui'}
{'comment': "And yet, you keep ignoring the FACT that the law went into place, and maternal deaths went up by more than 50%. If it was one or two here or there, I would excuse your passing the blame. We could blame a doctor or two. \n\nBut when it's that dramatic, that fast... it's not an individual problem. It's systemic.", 'created': '2024-11-08 20:19:44', 'submission_id': '1gmk1ui'}
{'comment': 'It’s sad honestly. There do seem to be a lot of good people who don’t think of race in every situation. But nowadays that number seems to go down and down. Then again, the internet does make it seem like there’s more than there may be', 'created': '2024-11-10 23:59:48', 'submission_id': '1gmk1ui'}
{'comment': '👍❤️', 'created': '2024-11-09 17:03:27', 'submission_id': '1gmk1ui'}
{'comment': '#Facts !', 'created': '2024-11-10 23:22:09', 'submission_id': '1gmk1ui'}
{'comment': 'Again….the law already gives the out, it is now falling on the doctors to perform it. It seems to me they are using the law to hide behind it, rather than actually perform the life saving surgery necessary to keep the mother alive. I’ve gone through as many searches I could in different variations related to doctors being sued, jailed, or prosecuted in Texas over this law, and have found none prosecuted under the law. So, you make these claims, when not a single doctor has been charged, let alone convicted in a criminal or civil court over the law. \n\nSorry, but this argument leans in my direction here, as there’s no proof that it’s the law that’s preventing them, but rather the doctors and the staff are the problem. \n\nBesides, I don’t see you complaining about doctors leading to the third leading cause of death in the US…', 'created': '2024-11-08 20:31:54', 'submission_id': '1gmk1ui'}
{'comment': "And you can sit there in your easy chair- arguing semantics and pedantics about how it shouldn't be happening- and yet it is. The law went into effect, a lot more wemen die. Clearly the law as written is killing wemen. \n\nAnd yes, I did notice you trying to set up your strawman argument and change the subject - again.", 'created': '2024-11-08 20:53:04', 'submission_id': '1gmk1ui'}
{'comment': 'Bringing insults doesn’t help you here. It only hurts you in an argument actually.\n\nAnd no, not changing it, I’ve been pretty on point here, where you said they would be prosecuted, I did my research over our conversation, haven’t found a single doctor tried over it, disproving your argument, plain and simple. \n\nIt’s again, doctors refusing to perform it, when they have every legal means to perform it, but choose not to. Doesn’t matter what they feel or how the law was written, so long as the stipulation where if the mother’s life is in jeopardy, they can perform an abortion. Plain and simple. You like to point out the data, but I’m pointing out the clearly written law, as well as the lack of charging, let alone convicting of doctors since it went into effect.', 'created': '2024-11-08 20:59:24', 'submission_id': '1gmk1ui'}
{'comment': 'And wemen are still dying', 'created': '2024-11-08 21:00:38', 'submission_id': '1gmk1ui'}
{'comment': 'And whose fault is that? Last I checked it wasn’t politicians, prosecutors, juries, or judges there at the childbirth. It falls to the doctors and their lack of action. Their refusal to perform it because of an illogical fear of something that won’t happen to them.\n\nUntil a doctor is tried and convicted for performing a legal abortion because it was absolutely necessary to save the life of the mother, you’re simply wrong here. Otherwise it is the fault of the doctor making a bad call, otherwise called, malpractice.', 'created': '2024-11-08 21:03:11', 'submission_id': '1gmk1ui'}
{'comment': 'You keep trying to break the clear cause and effect- the law came, death followed. Cause- effect.\n\nIf it was just a "misunderstanding" it would have only been a few. For it to be that dramatic, it must have been a LOT of the Texas medical system who "misunderstood " the law.', 'created': '2024-11-08 21:09:04', 'submission_id': '1gmk1ui'}
{'comment': 'Yeah more than likely they are misunderstanding it given the FACT it isn’t illegal! You can make the cause effect claim all you want, when doctors are within their legal right to perform one when necessary, but again, refuse to do so. That’s on them, not on the law. FFS', 'created': '2024-11-08 21:13:46', 'submission_id': '1gmk1ui'}
{'comment': "And you can keep arguing academically that it shouldn't happen, and yet undeniably it is.", 'created': '2024-11-08 21:35:55', 'submission_id': '1gmk1ui'}
{'comment': 'Obviously there is nothing wrong with my law- clearly the entire texan medical industry instantaneously became less competent. /s', 'created': '2024-11-08 21:48:16', 'submission_id': '1gmk1ui'}
{'comment': 'Then again, it falls on those carrying them out…the doctors.', 'created': '2024-11-08 22:04:18', 'submission_id': '1gmk1ui'}
{'comment': "And somehow, way too many of them get it wrong... but yet were able to save their lives before the law... strange that the entire Texas medical community isn't as smart as you are. If only they understood better....", 'created': '2024-11-08 22:17:35', 'submission_id': '1gmk1ui'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 12:59:45', 'submission_id': '1gmguzl'}
{'comment': None, 'created': '2024-11-08 20:00:30', 'submission_id': '1gmguzl'}
{'comment': "Am I so out of touch? No, it's the voters who are wrong.", 'created': '2024-11-08 15:54:27', 'submission_id': '1gmguzl'}
{'comment': 'I\'m sure kamala is telling herself the same thing. "My campaign was flawless. America is just racist."', 'created': '2024-11-08 15:46:38', 'submission_id': '1gmguzl'}
{'comment': "I think the things that stood out to me was the following: \n\\- Harris was never a strong candidate in the 2020 primary, only performing better than Warren (a low bar) \n\\- Biden picked her even though she was basically disliked even among progressives \n\\- They switch her out, giving her very little time to campaign, and just assume all Biden voters will go for her \n\\- The campaign starts technically positive, then all of a sudden, she switches to complete negative, eventually calling Trump a fascist. \n\\- Voters were more forgiving of Biden because he was so old and clearly struggling with the job at times, folks had sympathy for him but not for Harris. \n\\- Harris basically tried to win over conservatives with token policy gestures and Liz Cheney, which wasn't going to happen \n\\- Harris pisses off progressive base by not appealing to any of their pet issues, whether on single payer or foreign policy. \n\\- Harris gives no plan for the Ukraine war situation and stays basically silent on the issue. \n\\- As for her interviews, she was able to stay composed and strong under pressure, but she was terrible at actually answering questions. So basically 3/10 on that front. Appearance was good, but content was bad.", 'created': '2024-11-08 19:40:01', 'submission_id': '1gmguzl'}
{'comment': 'Many people on the left don’t seem to have either the maturity or honesty, or both, to be able to reflect on what went wrong and how to recover from it. Their initial reaction is to act like a spoiled child who didn’t get their way and then keep in acting that way for 4 years.', 'created': '2024-11-09 03:00:05', 'submission_id': '1gmguzl'}
{'comment': "forgot the mantra that came from one of their own: it's the economy, stupid.", 'created': '2024-11-09 08:09:19', 'submission_id': '1gmguzl'}
{'comment': "I'm a millennial Democrat turned Republican after seeing just how insane the MSM is and how dishonest they.are. all my millennial friends are democrat and they don't know I voted for Trump, they just constantly share the same pseudointellectusl anti Trump post without any substance. I wish they could see just how misinformed they are", 'created': '2024-11-10 07:42:29', 'submission_id': '1gmguzl'}
{'comment': "Fellow Kamala voter! How are you doing my friend! I've done basically the same as you, and have been very pleasantly surprised by our friends on the other side of the aisle", 'created': '2024-11-09 02:46:18', 'submission_id': '1gmguzl'}
{'comment': None, 'created': '2024-11-09 03:07:12', 'submission_id': '1gmguzl'}
{'comment': "Honestly I'm fine with the gloating, they just finessed the biggest W since 1980 lol", 'created': '2024-11-09 03:08:33', 'submission_id': '1gmguzl'}
{'comment': None, 'created': '2024-11-09 03:10:01', 'submission_id': '1gmguzl'}
{'comment': "Me too. The one thing I'm most hopeful for is that this presidency brings Americans together", 'created': '2024-11-09 03:10:40', 'submission_id': '1gmguzl'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 12:53:16', 'submission_id': '1gmgrgm'}
{'comment': "They didn't go to Canada last time. You think they're crossing an ocean?", 'created': '2024-11-08 13:09:19', 'submission_id': '1gmgrgm'}
{'comment': 'Someone on my Facebook said she was planning to move, but an hour later, she was begging if someone could drive her to the store because she doesn’t have a car', 'created': '2024-11-08 13:35:54', 'submission_id': '1gmgrgm'}
{'comment': 'See even leftists can make America great.', 'created': '2024-11-08 15:13:17', 'submission_id': '1gmgrgm'}
{'comment': 'Here we go with this nonsense again. They said it last time and never did.', 'created': '2024-11-08 13:18:22', 'submission_id': '1gmgrgm'}
{'comment': 'Notice none of them are searching about emigrating to Mexico or other South American countries which they champion in their open borders platform', 'created': '2024-11-08 15:07:29', 'submission_id': '1gmgrgm'}
{'comment': "I can't believe how many people are disowning family members and not wanting people at their weddings. Very sad.", 'created': '2024-11-08 15:49:14', 'submission_id': '1gmgrgm'}
{'comment': 'These people think they can just emigrate to anywhere they want because they are Americans. These countries don’t want them. They’ve supported the devaluation of immigration into the US for so long that they going to be _shocked_ to learn that most other countries actually have legal immigration standards that are enforced. None of them want to be the illegal immigrants either. Gonna be a lot of bitter and disappointed folks out there when they realize that truth about that.', 'created': '2024-11-08 15:49:41', 'submission_id': '1gmgrgm'}
{'comment': 'Well being these “many” people are just psychopath liberals I say let them move.', 'created': '2024-11-08 12:57:10', 'submission_id': '1gmgrgm'}
{'comment': 'I\'ll start a GoFundMe to help fund their tickets. Hope all the blue-haired feminists screaming for "women\'s rights" move to the Middle East.', 'created': '2024-11-08 13:17:06', 'submission_id': '1gmgrgm'}
{'comment': "Then just do it. Most people threatened it last time, stop talking about it, just do it. It's like all those female protesters about Palestine. Go ahead and move there.", 'created': '2024-11-08 15:58:46', 'submission_id': '1gmgrgm'}
{'comment': 'Please leave!', 'created': '2024-11-08 15:14:31', 'submission_id': '1gmgrgm'}
{'comment': 'What a huge win for America. Addition by subtraction!', 'created': '2024-11-08 15:24:07', 'submission_id': '1gmgrgm'}
{'comment': 'Good, get them out as well as anyone illegal. It would free up the housing market and quit being so cramped here.', 'created': '2024-11-08 15:24:27', 'submission_id': '1gmgrgm'}
{'comment': 'maybe they should all cross the border and move to Mexico.. should be easy for them', 'created': '2024-11-08 17:15:23', 'submission_id': '1gmgrgm'}
{'comment': 'Don’t come to Japan. We don’t have any of that DEI or woke malarkey. And we are a law and order country.', 'created': '2024-11-08 13:07:45', 'submission_id': '1gmgrgm'}
{'comment': "Canada is going to tilt rightward in its next election. Australia too. Americans in Australia will realize they are going to be seen as right of center, no matter how left they think they are here. Also, given Canada's points program for immigrants, I hope these people understand they are probably not going to get through. As an Australian immigrant to the US (Ameristralian lol, been here since 1989), they may not like Australia's points program either. And both Canada and Australia have decided they want fewer immigrants. So I would say these people should instead do a reset and vote Vance in 2028.", 'created': '2024-11-08 13:14:18', 'submission_id': '1gmgrgm'}
{'comment': 'GTFO I say, and stay gone.', 'created': '2024-11-08 15:03:26', 'submission_id': '1gmgrgm'}
{'comment': 'Hell let’s all chip in and get them out', 'created': '2024-11-08 15:08:31', 'submission_id': '1gmgrgm'}
{'comment': 'How can I help them?', 'created': '2024-11-08 15:18:14', 'submission_id': '1gmgrgm'}
{'comment': 'See ya!', 'created': '2024-11-08 15:31:07', 'submission_id': '1gmgrgm'}
{'comment': 'Don’t let the door hit you in the a— on the way out! And take the whining Hollywood elites with you.', 'created': '2024-11-08 13:07:14', 'submission_id': '1gmgrgm'}
{'comment': 'Then they find out that the desirable countries aren’t just going to let anyone in.', 'created': '2024-11-08 15:10:15', 'submission_id': '1gmgrgm'}
{'comment': "Didn't Rob Reiner say he would set himself on fire?", 'created': '2024-11-08 13:27:45', 'submission_id': '1gmgrgm'}
{'comment': 'Christ move where? Canada is almost unlivable now thanks to tredeau and If you think America hates immigrants just wait until you get to most of Europe. Asain countries will show you the real definition of racism. Somewhere in South America maybe I don’t know.\xa0', 'created': '2024-11-08 13:43:17', 'submission_id': '1gmgrgm'}
{'comment': 'Bye!!! 👋', 'created': '2024-11-08 13:00:44', 'submission_id': '1gmgrgm'}
{'comment': 'BYE BYE', 'created': '2024-11-08 15:09:21', 'submission_id': '1gmgrgm'}
{'comment': 'They doth protest too much, me thinks.', 'created': '2024-11-08 16:08:33', 'submission_id': '1gmgrgm'}
{'comment': "They've got it too good in America and they know it.", 'created': '2024-11-08 16:28:06', 'submission_id': '1gmgrgm'}
{'comment': 'I know they won’t actually leave but it’d be nice if they did. We almost had the entire map red this time around, if they all left, 2028 would be another easy win.', 'created': '2024-11-08 16:55:47', 'submission_id': '1gmgrgm'}
{'comment': "They should move abroad, it'll give them perspective how truly good they have it here.", 'created': '2024-11-08 17:09:53', 'submission_id': '1gmgrgm'}
{'comment': "And they'll come right back here once they realize how good we have it.", 'created': '2024-11-08 17:17:15', 'submission_id': '1gmgrgm'}
{'comment': "Just imagine what that'll do for the housing market", 'created': '2024-11-08 14:03:20', 'submission_id': '1gmgrgm'}
{'comment': 'Wonderful news. America would be so much better off without its spoiled brat citizens who can’t understand that this is the best country in the history of mankind.', 'created': '2024-11-08 14:37:19', 'submission_id': '1gmgrgm'}
{'comment': 'Byeeeee', 'created': '2024-11-08 13:18:47', 'submission_id': '1gmgrgm'}
{'comment': 'Best of luck!', 'created': '2024-11-08 15:46:22', 'submission_id': '1gmgrgm'}
{'comment': 'Great!', 'created': '2024-11-08 15:48:55', 'submission_id': '1gmgrgm'}
{'comment': 'Stay true to your word this time and gtfo.', 'created': '2024-11-08 16:14:29', 'submission_id': '1gmgrgm'}
{'comment': 'They keep threatening. We keep hoping. It never happens.', 'created': '2024-11-08 16:25:47', 'submission_id': '1gmgrgm'}
{'comment': 'Come on, if we stayed during Biden, so can they. We do have to say bye to the illegal migrants.', 'created': '2024-11-08 16:26:18', 'submission_id': '1gmgrgm'}
{'comment': 'Get outta here and don’t forget to renounce your citizenship!', 'created': '2024-11-08 16:35:04', 'submission_id': '1gmgrgm'}
{'comment': 'This sounds like a rinse and repeat of previous elections. For goodness sakes, move already!', 'created': '2024-11-08 16:39:06', 'submission_id': '1gmgrgm'}
{'comment': "Good. I'm also in favor of them sterlizing themselves to get out of the gene pool. If they wanna do that, I'll be happy to offer a donation.", 'created': '2024-11-08 16:40:23', 'submission_id': '1gmgrgm'}
{'comment': 'if they want to go then go! it’s only the Democrats that say this you don’t see Republicans say this shit when a Democrat wins lol\n\nI hear “Palestine” and Ukraine are nice this time of year they can go there', 'created': '2024-11-08 16:40:24', 'submission_id': '1gmgrgm'}
{'comment': 'And no one left.', 'created': '2024-11-08 16:40:40', 'submission_id': '1gmgrgm'}
{'comment': 'Heard that before. Hope they follow through this time', 'created': '2024-11-08 16:42:06', 'submission_id': '1gmgrgm'}
{'comment': "Don't tease me", 'created': '2024-11-08 16:55:56', 'submission_id': '1gmgrgm'}
{'comment': "Well Rob Reiner said he'd light himself on fire if Trump won, still waiting", 'created': '2024-11-08 16:56:12', 'submission_id': '1gmgrgm'}
{'comment': 'Good, I also hope it’s people that never traveled abroad or spent a lot of the time on other side of the world. They are in for a surprise and enlightenment.', 'created': '2024-11-08 17:24:52', 'submission_id': '1gmgrgm'}
{'comment': 'I hear Palestine is wonderful this time of year. Safe travels!', 'created': '2024-11-08 17:26:16', 'submission_id': '1gmgrgm'}
{'comment': '“If you don’t love it, leave it.” - Merle Haggard', 'created': '2024-11-08 18:34:58', 'submission_id': '1gmgrgm'}
{'comment': 'Kinda unrelated but scrolling through Reddit these past couple days has just been a treat yall. Just saw a recent post saying Republicans won b/c we’ll vote for anything with a pulse, meanwhile they expect perfection or won’t vote.\n\nAfter getting bodied in the election, they still think Kamala was “perfection” LOL the fucking delusion.', 'created': '2024-11-08 13:43:29', 'submission_id': '1gmgrgm'}
{'comment': 'Cont: … only to realize being despondent in these other countries comes with a prison sentance. 🤣', 'created': '2024-11-08 14:20:21', 'submission_id': '1gmgrgm'}
{'comment': "Slovenia here. We are all happy about Trump, please don't send the liberals here, thank you.", 'created': '2024-11-08 14:56:27', 'submission_id': '1gmgrgm'}
{'comment': "Wait till they find out other countries border policies. You can't just say Hey I want to live in so and so country and move. You need to be of value to that country.", 'created': '2024-11-08 15:16:44', 'submission_id': '1gmgrgm'}
{'comment': 'Please move!!', 'created': '2024-11-08 13:40:39', 'submission_id': '1gmgrgm'}
{'comment': 'They’ll do the research and realize that America’s awesome and then they’ll stay, but they’ll keep fussing.', 'created': '2024-11-08 13:54:05', 'submission_id': '1gmgrgm'}
{'comment': 'Let ‘em go. Let ‘em gooo!', 'created': '2024-11-08 14:03:23', 'submission_id': '1gmgrgm'}
{'comment': "And I hope they're successful in their search", 'created': '2024-11-08 14:07:13', 'submission_id': '1gmgrgm'}
{'comment': 'I’d be fine with trading a liberal for an illegal. Liberal leaves the USA so a worthy illegal can stay.', 'created': '2024-11-08 14:13:55', 'submission_id': '1gmgrgm'}
{'comment': "Just wait until they learn that other countries don't want a mass influx of immigrants.", 'created': '2024-11-08 14:35:37', 'submission_id': '1gmgrgm'}
{'comment': 'If any of them wants to come over to Europe, I’d love to trade citizenships.\n\nAnyone would be blessed to live in the USA, especially starting January 20th', 'created': '2024-11-08 14:51:29', 'submission_id': '1gmgrgm'}
{'comment': 'Grant Cardone offered his private jet in a Tweet yesterday to help facilitate these crying children out of the country. \n\nhttps://vinnews.com/2024/11/07/billionaire-grant-cardone-offers-his-private-jet-to-crying-liberals-over-trump-win/\n\nWell…..Bye.', 'created': '2024-11-08 14:53:27', 'submission_id': '1gmgrgm'}
{'comment': 'They’re going to learn that most (all) of the other countries don’t just let people in for no reason.', 'created': '2024-11-08 15:00:55', 'submission_id': '1gmgrgm'}
{'comment': "Good. Let's petition Trump to make it so every American that leaves because of the results are not allowed to come back once they realize America truly is the best country.", 'created': '2024-11-08 16:01:23', 'submission_id': '1gmgrgm'}
{'comment': 'I have $50 in my purse.\n\nAnyone want to start a fund me page?', 'created': '2024-11-08 14:07:09', 'submission_id': '1gmgrgm'}
{'comment': 'Only the elites who never get their way, abandon the vulnerable they pretend to care about. Thats what the democrats are', 'created': '2024-11-08 16:31:43', 'submission_id': '1gmgrgm'}
{'comment': 'Bye', 'created': '2024-11-08 16:53:45', 'submission_id': '1gmgrgm'}
{'comment': 'You mean they googled it!', 'created': '2024-11-08 16:55:57', 'submission_id': '1gmgrgm'}
{'comment': 'Sounds like a win-win', 'created': '2024-11-08 17:02:22', 'submission_id': '1gmgrgm'}
{'comment': 'Bye…. Pls leave', 'created': '2024-11-08 17:08:22', 'submission_id': '1gmgrgm'}
{'comment': "Why don't people research about living in Mexico? All they have to do is cross the border and stay there. Easy peasy.", 'created': '2024-11-08 17:23:30', 'submission_id': '1gmgrgm'}
{'comment': "I think their actually moving is about as likely as lefty women (the ones who were actually capable of attracting a man, not the ones who were already on their way to becoming childless cat ladies) giving up sex for the next 4 years.\n\nIf they had that kind of grit, determination, and self-control, they wouldn't be lefties, and they wouldn't ever be in a position where they think they need an abortion.", 'created': '2024-11-08 17:25:01', 'submission_id': '1gmgrgm'}
{'comment': 'Then they learn about even worse corruption, among other things they don’t like, in other countries and realize how good they had it in the US.', 'created': '2024-11-08 17:26:08', 'submission_id': '1gmgrgm'}
{'comment': 'Stay out of Canada please.', 'created': '2024-11-08 17:27:18', 'submission_id': '1gmgrgm'}
{'comment': "They are going to find out that the grass isn't always greener on the other side but I can help them pack.", 'created': '2024-11-08 17:34:58', 'submission_id': '1gmgrgm'}
{'comment': "That's what we call a win-win!", 'created': '2024-11-08 17:36:07', 'submission_id': '1gmgrgm'}
{'comment': 'They always say they are going to move but HERE THEY AREEE', 'created': '2024-11-08 17:39:02', 'submission_id': '1gmgrgm'}
{'comment': 'Bye Felicia', 'created': '2024-11-08 17:45:37', 'submission_id': '1gmgrgm'}
{'comment': "If they leave they won't be getting as warm of a welcome as they think they will. But they aren't going anywhere.", 'created': '2024-11-08 18:00:44', 'submission_id': '1gmgrgm'}
{'comment': 'More petulant and attention-seeking than realistic. I was born in South America and lived in Europe for 30 years. They would soon discover the significant tradeoffs involved😂😂', 'created': '2024-11-08 18:23:48', 'submission_id': '1gmgrgm'}
{'comment': 'Stop researching! DO IT!!!', 'created': '2024-11-08 19:01:05', 'submission_id': '1gmgrgm'}
{'comment': 'To be fair, when the tables were turned we screamed election fraud and a particularly passionate group made a fuss at the Capitol. \n\nLosing sucks. Rhetoric leading up to the election was intense. People are scared. And they obviously can’t afford to leave en masse, so let’s be the grown ups here. Making shitty jokes about how the country would be a better place if they left doesn’t do a good job of showing them we aren’t the bigoted boogeymen they were fooled into fearing.', 'created': '2024-11-09 09:55:59', 'submission_id': '1gmgrgm'}
{'comment': 'Stop, I’m already hard enough.', 'created': '2024-11-08 13:34:58', 'submission_id': '1gmgrgm'}
{'comment': 'Then go.', 'created': '2024-11-08 13:55:04', 'submission_id': '1gmgrgm'}
{'comment': '"Well bye" -Johnny Ringo', 'created': '2024-11-08 14:11:14', 'submission_id': '1gmgrgm'}
{'comment': 'Beat it losers! 🇺🇸🇺🇸', 'created': '2024-11-08 14:23:24', 'submission_id': '1gmgrgm'}
{'comment': "They aren't going anywhere. And the ones who are brave enough will quickly come back after realizing the freedoms they've lost\xa0", 'created': '2024-11-08 14:33:33', 'submission_id': '1gmgrgm'}
{'comment': 'Go ahead! Make next election easier!', 'created': '2024-11-08 14:35:30', 'submission_id': '1gmgrgm'}
{'comment': 'Good lol please don’t come back when you see there’s no where better🤣🤣💀', 'created': '2024-11-08 14:47:07', 'submission_id': '1gmgrgm'}
{'comment': 'It’s so funny whenever I hear that after an election. Chances are they can’t even afford to make the move anyhow! 😂', 'created': '2024-11-08 14:48:10', 'submission_id': '1gmgrgm'}
{'comment': 'Good, get the fuck out', 'created': '2024-11-08 14:56:01', 'submission_id': '1gmgrgm'}
{'comment': 'Later gators!!', 'created': '2024-11-08 14:57:37', 'submission_id': '1gmgrgm'}
{'comment': 'Sweet, more openings in the housing market', 'created': '2024-11-08 15:00:52', 'submission_id': '1gmgrgm'}
{'comment': 'Already a positive affect on the economy the travel agency’s and Realtors to name a few are going to kill it', 'created': '2024-11-08 15:02:54', 'submission_id': '1gmgrgm'}
{'comment': 'They’re also stupid. They don’t even realize most countries won’t even take their asses. The process to leave the United States is extremely difficult, but I sure wish they’d find a way to do it.', 'created': '2024-11-08 15:07:37', 'submission_id': '1gmgrgm'}
{'comment': 'It’s hysterical because these people think they can just go and the other country will let them in. Only America has open borders( for now 🥰) good luck getting in somewhere else !', 'created': '2024-11-08 15:42:15', 'submission_id': '1gmgrgm'}
{'comment': "And we'll miss them both.", 'created': '2024-11-08 13:27:00', 'submission_id': '1gmgrgm'}
{'comment': '“Many”', 'created': '2024-11-08 17:39:29', 'submission_id': '1gmgrgm'}
{'comment': 'These stories are hilarious, also good riddance to the shill researchers.', 'created': '2024-11-08 17:57:48', 'submission_id': '1gmgrgm'}
{'comment': 'Let’s see some leftists put their money where their mouths are. Surely “free” healthcare is worth more than the cost of a flight.\xa0', 'created': '2024-11-08 18:11:32', 'submission_id': '1gmgrgm'}
{'comment': "Weren't they moving to Canada in 2026? And again when Elon bought Twitter?", 'created': '2024-11-08 19:17:02', 'submission_id': '1gmgrgm'}
{'comment': 'And yet… they won’t.', 'created': '2024-11-08 19:40:51', 'submission_id': '1gmgrgm'}
{'comment': 'This is glorious! Love seeing this. 🙌🏻', 'created': '2024-11-08 19:46:24', 'submission_id': '1gmgrgm'}
{'comment': 'Just like last time, all bark and no bite. They’ll just reinstate their notmypresident charade.', 'created': '2024-11-08 20:06:25', 'submission_id': '1gmgrgm'}
{'comment': 'This article is written every four years regardless of who wins.', 'created': '2024-11-08 20:16:06', 'submission_id': '1gmgrgm'}
{'comment': 'They’ll be shocked to find out a lot of other countries don’t just let you immigrate freely. The US doesn’t even rank top 10 when it comes to difficulty. \n\nI have no problem with immigration, when done legally. The more the merrier.', 'created': '2024-11-08 20:16:47', 'submission_id': '1gmgrgm'}
{'comment': 'I wonder what will happen in the next 4 years when all of their worst nightmare scenarios do not happen...\n\nWill they accept they were wrong?', 'created': '2024-11-08 20:22:24', 'submission_id': '1gmgrgm'}
{'comment': 'Great get rid of the libs . That will assure that Common Sense conservatives will stay in power', 'created': '2024-11-08 20:36:05', 'submission_id': '1gmgrgm'}
{'comment': 'Great idea!', 'created': '2024-11-08 20:49:12', 'submission_id': '1gmgrgm'}
{'comment': 'Bye guys! 👋', 'created': '2024-11-08 20:51:07', 'submission_id': '1gmgrgm'}
{'comment': 'Hey these folks can go to Mexico or Portugal.', 'created': '2024-11-08 21:29:43', 'submission_id': '1gmgrgm'}
{'comment': 'God, we can only hope.', 'created': '2024-11-08 21:34:36', 'submission_id': '1gmgrgm'}
{'comment': 'Cowards', 'created': '2024-11-08 21:37:33', 'submission_id': '1gmgrgm'}
{'comment': 'Many Americans research… colonizing other countries', 'created': '2024-11-08 21:47:51', 'submission_id': '1gmgrgm'}
{'comment': 'Let them go, nobody really cares, it’s just something else for the left to say “look what Trump did”.', 'created': '2024-11-08 22:03:49', 'submission_id': '1gmgrgm'}
{'comment': 'Thats the beauty of our Country-FREEDOM! Including freedom to LEAVE! See ya!', 'created': '2024-11-08 22:07:02', 'submission_id': '1gmgrgm'}
{'comment': 'I truly hope they are successful', 'created': '2024-11-08 22:14:47', 'submission_id': '1gmgrgm'}
{'comment': 'I hope that’s a true headline and they do it this time instead of bitching and complaining from the shadows.', 'created': '2024-11-08 22:19:40', 'submission_id': '1gmgrgm'}
{'comment': 'Do they need help packing?', 'created': '2024-11-08 22:24:38', 'submission_id': '1gmgrgm'}
{'comment': "It's all talk. Countries outside the US are way more strict and most do not like Americans.", 'created': '2024-11-08 22:38:42', 'submission_id': '1gmgrgm'}
{'comment': 'They should. They think these places are all utopias after all.', 'created': '2024-11-08 22:58:51', 'submission_id': '1gmgrgm'}
{'comment': 'Lol make sure they take their illegals with them too.', 'created': '2024-11-08 23:15:00', 'submission_id': '1gmgrgm'}
{'comment': 'They said that in 2016 and still here. Go already…..', 'created': '2024-11-08 23:34:15', 'submission_id': '1gmgrgm'}
{'comment': 'Don’t come to Australia, too many people on the left here as it is.', 'created': '2024-11-08 23:47:30', 'submission_id': '1gmgrgm'}
{'comment': 'Make sure they break into the country and bypass all its laws. \n\nI highly recommend Poland.', 'created': '2024-11-08 23:54:42', 'submission_id': '1gmgrgm'}
{'comment': 'Bwahahahahahaha! Never gonna happen. Big Mouths Small Actions.', 'created': '2024-11-09 00:33:18', 'submission_id': '1gmgrgm'}
{'comment': 'Byeeeeeeeeee', 'created': '2024-11-09 00:34:08', 'submission_id': '1gmgrgm'}
{'comment': 'Go to Gaza. Put your money where your mouth is.', 'created': '2024-11-09 00:38:59', 'submission_id': '1gmgrgm'}
{'comment': 'Wish they would, know they won’t.', 'created': '2024-11-09 01:06:14', 'submission_id': '1gmgrgm'}
{'comment': "I just have to say, i know abroad is so much better, but we need your tax revenue, so please don't leave. Don't hurt us in our pockets.", 'created': '2024-11-09 01:14:43', 'submission_id': '1gmgrgm'}
{'comment': "Singapore isn't into Woke culture either: https://youtu.be/3LdabP7FLjE?si=CP3YpZbAmPJtb2h0 \n\nCongratulations, America! I was so rooting for you 🥳 I can't wait to see you heal 💓", 'created': '2024-11-09 01:34:46', 'submission_id': '1gmgrgm'}
{'comment': 'Researching but trust me they will be back to work at Starbucks monday', 'created': '2024-11-09 01:55:46', 'submission_id': '1gmgrgm'}
{'comment': 'Good! Less democrats for the 2026 election!\n\nAll for it! I’ll sponsor a few to leave and never come back.', 'created': '2024-11-09 02:38:19', 'submission_id': '1gmgrgm'}
{'comment': 'Can we start a go fund them page', 'created': '2024-11-09 02:48:20', 'submission_id': '1gmgrgm'}
{'comment': 'Spoiler alert, these weak-ass poseur narcissists aren’t going anywhere.', 'created': '2024-11-09 03:15:18', 'submission_id': '1gmgrgm'}
{'comment': 'havent they been saying this since 2016, the waaaambulance pointing towards Canada?', 'created': '2024-11-09 04:10:13', 'submission_id': '1gmgrgm'}
{'comment': 'The problem is everywhere, including Canada has a much harder immigration policy than we do! And if these people think they’re running for four years! They haven’t met JD Vance! 2028', 'created': '2024-11-09 04:39:09', 'submission_id': '1gmgrgm'}
{'comment': 'inb4 \nTRANS REPUBLIC OF CANADA', 'created': '2024-11-09 05:28:39', 'submission_id': '1gmgrgm'}
{'comment': 'Terrific', 'created': '2024-11-09 06:11:39', 'submission_id': '1gmgrgm'}
{'comment': 'they moved to mexico to be with the ones they wanted in america so badly', 'created': '2024-11-09 06:38:13', 'submission_id': '1gmgrgm'}
{'comment': "These countries don't want them.", 'created': '2024-11-09 11:52:03', 'submission_id': '1gmgrgm'}
{'comment': 'They can go… we’ll be okay.', 'created': '2024-11-09 13:32:04', 'submission_id': '1gmgrgm'}
{'comment': 'Good. Fuck them.', 'created': '2024-11-09 16:28:33', 'submission_id': '1gmgrgm'}
{'comment': 'I’ll take that as another BIG win! Problem is, other countries enforce their immigration policies…. So making this a reality isn’t as easy as jumping a wall and collecting cash with no plans to learn the language or work.', 'created': '2024-11-09 18:23:48', 'submission_id': '1gmgrgm'}
{'comment': 'Bye Felicia', 'created': '2024-11-09 19:20:27', 'submission_id': '1gmgrgm'}
{'comment': 'Good riddance!!!', 'created': '2024-11-09 23:46:48', 'submission_id': '1gmgrgm'}
{'comment': 'And they are going to find out that other countries have immigration laws they actually enforce so you can’t just mosey into the country.', 'created': '2024-11-10 02:21:00', 'submission_id': '1gmgrgm'}
{'comment': 'Democrats are well known for talking shit.\nThis is no different. Im not holding my breath. 🤣', 'created': '2024-11-10 19:24:32', 'submission_id': '1gmgrgm'}
{'comment': "at the end of the day, those idiots know where their bread is buttered. they're not going anywhere.", 'created': '2024-11-10 23:38:01', 'submission_id': '1gmgrgm'}
{'comment': "If they really would, we'd all help them pack. Heck, I'd chip in on their travel costs!", 'created': '2024-11-11 01:02:43', 'submission_id': '1gmgrgm'}
{'comment': 'This would be amazing 💯 toodles', 'created': '2024-11-11 02:21:27', 'submission_id': '1gmgrgm'}
{'comment': 'Bye bitches', 'created': '2024-11-11 03:13:27', 'submission_id': '1gmgrgm'}
{'comment': "Hopefully they renounce their citizenship. That'll really stick it to em'!", 'created': '2024-11-11 11:51:57', 'submission_id': '1gmgrgm'}
{'comment': "Some idiot from California said he's leaving the US and is moving to Hawaii to escape Trump 😂😂\n\n[Moving to Hawaii](https://www.instagram.com/reel/DCFSMcmSks0/?igsh=MTV2ZHNwNmIzc2ho)", 'created': '2024-11-08 15:57:02', 'submission_id': '1gmgrgm'}
{'comment': 'I believe it would be enlightening for many Americans who are dissatisfied to travel abroad and experience life in other countries. This firsthand perspective could help them appreciate the unique aspects that make America so exceptional.', 'created': '2024-11-08 14:21:36', 'submission_id': '1gmgrgm'}
{'comment': "On this note and some back story. \n\nI've been a dual citizen since birth, so I have always been American and a New Zealander. I grew up in New Zealand and Australia, and moved to America around 2012. \n\nI didn't like Obama, and I voted for Sanders over Hillary, and then Jill Stein over Hillary. I live in MD so pretty much folks would vote for a glass of water with a D next to it, so got used to my vote being worthless. Except for that time that I voted for Hogan for governor, and somehow he won.\n\nSo this election I was finally glad it was over. No more political attack ads, and no more political rallies, and no more Trump is Hitler shit. Then my father went on Facebook...said he was going to move to NZ and all these vile Democrats began rage messaging against him on social media.\n\nThis even though it was something they had been planning on considering doing years ago, and they were planning on retiring next year no matter who won.\n\nSo I thought, screw this Democrats, I'm re-registering as a Republican. That's really all it took to lose my vote. They sure are working hard to lose votes even from people who voted for them.", 'created': '2024-11-08 16:18:19', 'submission_id': '1gmgrgm'}
{'comment': 'Not going anywhere, they’ll be ok!', 'created': '2024-11-08 19:02:43', 'submission_id': '1gmgrgm'}
{'comment': 'No one ever goes to Mexico.', 'created': '2024-11-08 21:16:16', 'submission_id': '1gmgrgm'}
{'comment': 'HA!', 'created': '2024-11-08 17:21:25', 'submission_id': '1gmgrgm'}
{'comment': "She's moving one piece of furniture at a time, since she doesn't have a car. I'm sure the gas to Ukraine is a b*tch.\n\nUber, here's your chance.", 'created': '2024-11-08 17:49:10', 'submission_id': '1gmgrgm'}
{'comment': 'They ~~said it~~ PROMISED last time and never did.', 'created': '2024-11-08 13:20:20', 'submission_id': '1gmgrgm'}
{'comment': 'They\'re hypocrites. They only want "diversity" for everyone else. Not for them.', 'created': '2024-11-08 22:07:35', 'submission_id': '1gmgrgm'}
{'comment': 'or Haiti... wonder why?', 'created': '2024-11-09 04:11:22', 'submission_id': '1gmgrgm'}
{'comment': 'It’s extremely sad. I learned from Facebook posts this week that I lost a lot of friends I thought I had. People have been posting “never speak to me again” “I’m no longer your friend” etc. all over fb. it’s actually heartbreaking how divided the country is.', 'created': '2024-11-08 18:07:53', 'submission_id': '1gmgrgm'}
{'comment': 'meh\n\nI unfriended a friend with which I had a 12 yr friendship over this\n\nsometimes, listening people parrot woke stuff isnt worth it', 'created': '2024-11-09 04:12:36', 'submission_id': '1gmgrgm'}
{'comment': 'I say we start them a go fund me to hurry them up.\n\nYou don’t want to be here, bye', 'created': '2024-11-08 13:54:32', 'submission_id': '1gmgrgm'}
{'comment': 'Are you willing to allow the states where these “psychopaths” live to secede?', 'created': '2024-11-08 13:40:40', 'submission_id': '1gmgrgm'}
{'comment': 'I was just thinking that maybe they should contact their Palestinian or Ukranian friends to see if they can help them out with the move.', 'created': '2024-11-08 13:33:34', 'submission_id': '1gmgrgm'}
{'comment': 'I mean, they ARE pro Palestine so..', 'created': '2024-11-08 19:18:15', 'submission_id': '1gmgrgm'}
{'comment': 'Random Q but what do you think of Japan? I’m not planning on moving but have become very interested in their culture and actually started learning Japanese a couple months ago.', 'created': '2024-11-08 13:44:44', 'submission_id': '1gmgrgm'}
{'comment': 'I think the fire said that was too much surface area and that theoretically it was impossible to actually set all of rob on fire. They offered to just do the face but again upon further inspections the fire got scared and decided they couldn’t help.', 'created': '2024-11-08 13:42:22', 'submission_id': '1gmgrgm'}
{'comment': 'That’s one hell of a grease fire.', 'created': '2024-11-08 13:46:33', 'submission_id': '1gmgrgm'}
{'comment': 'Wasn’t he going to set his hair on fire? Oh wait…', 'created': '2024-11-08 18:07:43', 'submission_id': '1gmgrgm'}
{'comment': 'Canada needs Pierre Poilievre.', 'created': '2024-11-08 16:04:38', 'submission_id': '1gmgrgm'}
{'comment': "Well I don't think South America is particularly tolerant of trans ppl and abortion so.... good luck to them if they try thar", 'created': '2024-11-08 14:21:34', 'submission_id': '1gmgrgm'}
{'comment': "I've got some gas and a field burning torch I'll gladly let him borrow. I'll even suffer through his final mindless, rambling babble on his way out to record it for posterity", 'created': '2024-11-08 17:46:30', 'submission_id': '1gmgrgm'}
{'comment': 'Anybody with a pulse, huh? Unlike the many dead Democrats who vote in elections. Take away the dead vote, and Trump might have won Illinois.', 'created': '2024-11-08 14:11:14', 'submission_id': '1gmgrgm'}
{'comment': "Yeah, I've had two different people tell me to my face that Kamala lost only because she's a woman.", 'created': '2024-11-08 13:55:03', 'submission_id': '1gmgrgm'}
{'comment': "My lesbian little sister said she was a 'more than qualified woman'..\n\nThe only thing Kamala is 'more than qualified' at doing is getting on her knees and locking up black men for no real reason.", 'created': '2024-11-08 19:21:43', 'submission_id': '1gmgrgm'}
{'comment': 'Hilarious!', 'created': '2024-11-08 16:09:13', 'submission_id': '1gmgrgm'}
{'comment': 'Average CA IQ', 'created': '2024-11-08 17:10:12', 'submission_id': '1gmgrgm'}
{'comment': "I'm sure the Hawaiians are at the airport gate to welcome another howlie with no money, a big mouth, an entitled attitude, and probably low skills. \n\n(Eyeroll)", 'created': '2024-11-08 17:22:34', 'submission_id': '1gmgrgm'}
{'comment': 'And that surprises me, that they support importing people and morphing this country into a 3rd world outpost', 'created': '2024-11-08 14:41:32', 'submission_id': '1gmgrgm'}
{'comment': 'Anyone read about the lovely mass anti-Semitic attack in the Netherlands where they were running over Jews in the streets and ended with Israel evacuating their citizens out of the country?\n\nYes a lot of these Euro countries that so many Americans put on a pedestal are bastions of racism too. Not only that many have lower standards of living.', 'created': '2024-11-08 17:23:12', 'submission_id': '1gmgrgm'}
{'comment': 'and in a few years we’ll see the stories of how they are planning to move back to the US after it wasn’t all that they thought it was going to be.', 'created': '2024-11-08 15:48:23', 'submission_id': '1gmgrgm'}
{'comment': 'Oh definitely. I lived in the UK for 15 years and believe me, there is no such thing out there as “freedom of speech” and during my time living abroad in Europe, I met many Americans on travel or studying abroad who had issues with the British justice system. They learn real fast what “incitement” is. You can literally report someone’s tweet in the UK and have them arrested, not an exaggeration. All of this information can be found in the UK’s Public Order Act of 1986, in the right to privacy GDPR laws, and the Malicious communications act of 1988 & 2003.\xa0\xa0 \xa0\n\n\nWhere these laws specifically hit liberals hard, is it strips them of the ability to call you a “Nazi” or cast slur and slander on you, even online, share any information about you or cause you any kind of distress, and if they attack you for being a Christian, disabled, attack your weight or race or make any kind of sexual slur it’s an automatic hate crime. The UK even has laws that punish people who openly attack or talk badly on public figures.\xa0\nThey learn real fast that these laws conflict with their American upbringing.\xa0', 'created': '2024-11-09 06:35:21', 'submission_id': '1gmgrgm'}
{'comment': "Amen to that. I've lived in Europe and in the Philippines any every time I thank God I'm an American.", 'created': '2024-11-08 18:51:08', 'submission_id': '1gmgrgm'}
{'comment': 'Why they keep trying to change the one country everyone in the world wants to immigrate to is beyond me. Apparently, whatever we’ve got, it’s better than what they’ve got in other countries.', 'created': '2024-11-08 19:11:19', 'submission_id': '1gmgrgm'}
{'comment': "Yeah MD is liberal as hell that's why most of the state is a crime infested shit hole (i live in MD as well) but Dem voters specially in the DMV definitely helped turn people to a vote for Trump i watched it with my own 2 eyes", 'created': '2024-11-08 17:07:49', 'submission_id': '1gmgrgm'}
{'comment': "I grew up in Catonsville, MD and left when I was in my 20s. I'll never set foot in that Democratic cesspool again.", 'created': '2024-11-08 18:53:29', 'submission_id': '1gmgrgm'}
{'comment': 'Sadly, I have offer luggage and a drive to the airport. No one took my offer 😥', 'created': '2024-11-08 13:40:04', 'submission_id': '1gmgrgm'}
{'comment': 'If it’s for all the girls crying on TikTok I agree', 'created': '2024-11-08 16:31:10', 'submission_id': '1gmgrgm'}
{'comment': 'Fuck no. If they hate it here so much they can leave the country entirely. I only wish I had the means to assist them.', 'created': '2024-11-08 13:50:01', 'submission_id': '1gmgrgm'}
{'comment': 'California… YES', 'created': '2024-11-08 13:48:53', 'submission_id': '1gmgrgm'}
{'comment': 'Well if they vote for it sure but just because you’re a liberal doesn’t mean you’re a psychopath liberals. Some of them do have common sense and others have just been brainwashed by the fear mongering and lies of the democratic leadership and MSM.', 'created': '2024-11-08 16:11:44', 'submission_id': '1gmgrgm'}
{'comment': 'While the visceral reaction is yes, we definitely should not. We are a collective of states and after fighting an entire war to disallow this behavior (also brought on by democrats at the time) we should respect what so many gave their lives to defend.', 'created': '2024-11-08 13:57:31', 'submission_id': '1gmgrgm'}
{'comment': 'Sure. If they vote it. Have you seen the map of who votes blue? Much much more red in every state. Blue is the minority. The people have spoken about what they want.', 'created': '2024-11-08 14:31:41', 'submission_id': '1gmgrgm'}
{'comment': "Conservative and basically built for introverts.\n\nDon't visit and be a piece of shit and you'll be fine", 'created': '2024-11-08 15:01:54', 'submission_id': '1gmgrgm'}
{'comment': 'High standard of living, strong dollar, conservative politics, no DEI, no affirmative action, very low % of minorities/Muslims, low crime rate, high law and order, no illegal immigrants.', 'created': '2024-11-09 01:42:10', 'submission_id': '1gmgrgm'}
{'comment': 'Unfortunate. I was looking forward to the live stream.', 'created': '2024-11-08 13:43:26', 'submission_id': '1gmgrgm'}
{'comment': 'Roasted Meat Head. Archie would wash it down with a beer.', 'created': '2024-11-08 13:47:40', 'submission_id': '1gmgrgm'}
{'comment': "No, that's some other moldy ex hippie.", 'created': '2024-11-08 18:11:56', 'submission_id': '1gmgrgm'}
{'comment': 'Omg right? Four points!!!', 'created': '2024-11-08 14:22:25', 'submission_id': '1gmgrgm'}
{'comment': 'Meanwhile Trump gained an extra 5% on women voters. Even women trusted Kamala less this time around than they did Biden lol', 'created': '2024-11-08 14:23:15', 'submission_id': '1gmgrgm'}
{'comment': 'That girl looks like the only thing they’re qualified to do is fold shirts at the gap or pour (not make) coffee at Starbucks.', 'created': '2024-11-08 22:24:15', 'submission_id': '1gmgrgm'}
{'comment': 'And when DJT forces them to pay for their own defense, their living standards will go lower!', 'created': '2024-11-08 18:25:36', 'submission_id': '1gmgrgm'}
{'comment': "They're not going to move to begin with. They always threaten to but never actually do. They are like children having a temper tantrum.", 'created': '2024-11-08 20:00:06', 'submission_id': '1gmgrgm'}
{'comment': 'That’s extremely disturbing to hear. Democrats want to use examples like that as a blueprint to silence anyone who disagrees with them. That’s why this election was important. We were so close to being right there with the UK. SO CLOSE.', 'created': '2024-11-10 00:01:43', 'submission_id': '1gmgrgm'}
{'comment': '1984 Vibes', 'created': '2024-11-09 07:20:03', 'submission_id': '1gmgrgm'}
{'comment': 'There are some good signs on social media too. Tim Pool and Sam Seder call out each other, but now they at least debate each other in good faith.', 'created': '2024-11-08 18:39:47', 'submission_id': '1gmgrgm'}
{'comment': 'I have gone as far to buy a one-way ticket to the country of their choice with the promise that they never come back. No one has accepted my offer.', 'created': '2024-11-08 17:22:13', 'submission_id': '1gmgrgm'}
{'comment': 'The state of Jefferson.', 'created': '2024-11-08 15:28:14', 'submission_id': '1gmgrgm'}
{'comment': 'Fucking excellent', 'created': '2024-11-08 13:57:27', 'submission_id': '1gmgrgm'}
{'comment': "That's not a girl, that's a guy.", 'created': '2024-11-09 04:19:56', 'submission_id': '1gmgrgm'}
{'comment': 'They are so narcisistic that they actually believe anyone cares if they leave.', 'created': '2024-11-09 12:18:20', 'submission_id': '1gmgrgm'}
{'comment': 'Yeah, I once had a deranged person report me to police for sending them a birthday card. Apparently they felt harassed by me unbeknownst to me! I was just trying to do a kind gesture, wasn’t expecting to end up sitting in a police station being interviewed for an hour over it. The only thing that came of it was they told me for whatever reason that person didn’t like me, and to just pretend they don’t exist. I wasn’t actually punished, since I didn’t do anything wrong, but being treated like a criminal over a birthday card was a bit extreme. I left the UK a couple years after that, and after seeing a friend become a victim of sexual assault and the British police do absolutely nothing to help her.\xa0', 'created': '2024-11-10 05:34:27', 'submission_id': '1gmgrgm'}
{'comment': 'I’ll pick up half the tab.', 'created': '2024-11-08 17:23:06', 'submission_id': '1gmgrgm'}
{'comment': 'Archie voice " There you go, Meathead. We finally found someone that you are good for ".', 'created': '2024-11-08 13:59:22', 'submission_id': '1gmgrgm'}
{'comment': 'Don’t misgender him…I mean her….I mean they…..zee? Whatever you can’t tell anymore. 😏', 'created': '2024-11-13 13:02:09', 'submission_id': '1gmgrgm'}
{'comment': "Right?! I already told a couple of co-workers to not let the door hit them on the way out. They think that they're moving to Canada.", 'created': '2024-11-09 19:03:28', 'submission_id': '1gmgrgm'}
{'comment': 'Thank you! 👍', 'created': '2024-11-08 17:25:27', 'submission_id': '1gmgrgm'}
{'comment': 'I think Canada actively has pretty tough immigration and work visa standards.', 'created': '2024-11-10 10:08:12', 'submission_id': '1gmgrgm'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 11:17:03', 'submission_id': '1gmfcev'}
{'comment': "I wouldn't even want to be on their sub.", 'created': '2024-11-08 11:29:13', 'submission_id': '1gmfcev'}
{'comment': 'They’re mad because their leaders and media lied to them and have lied to them for years now. Their leaders don’t believe Trump is a fascist nor do they believe he’ll destroy the country. They know they have so many friendly bureaucrats that will help sabotage them that they’re just waiting for him to leave office. Unfortunately, the “educated” wing of their party eats all of their BS up because they have no hope in life outside of politics, so for them it’s either winning elections or feeling a deep sense of emptiness because they have nothing else.', 'created': '2024-11-08 11:33:49', 'submission_id': '1gmfcev'}
{'comment': 'That’s an easy mute - just did it last night after that same comic showed up in my feed', 'created': '2024-11-08 13:13:49', 'submission_id': '1gmfcev'}
{'comment': "This shit was happening 8 years when after Trumps first victory. So welcome to the club. It does suck when your first amendment rights get trampled. \n\nThis is an example of why we can't let Liberals win. We already have the majority of Liberal youth thinking their feelings trump the constitution. Can you imagine what would happen if we allow them into office.", 'created': '2024-11-08 15:20:09', 'submission_id': '1gmfcev'}
{'comment': 'Liberal women refusing to procreate is the best thing to happen to the United States! Less indoctrinated babies being born into this country! Trump has already improved our society!', 'created': '2024-11-09 00:04:03', 'submission_id': '1gmfcev'}
{'comment': 'Still failing to see the connection to Project 25 and Trump or actual Trump policies. An evangelical _Wish List_ that Turmo himself has distanced himself from...', 'created': '2024-11-09 17:00:13', 'submission_id': '1gmfcev'}
{'comment': 'At least those women have found a way to stop abortion.', 'created': '2024-11-08 17:18:57', 'submission_id': '1gmfcev'}
{'comment': 'The future sounds incredibly bleak if any of these people get into office. I say secede the red states and let them ruin their own country.', 'created': '2024-11-10 20:56:27', 'submission_id': '1gmfcev'}
{'comment': 'Because they want it to be real so it justifies their mass hysteria and mental breakdowns.', 'created': '2024-11-10 20:57:02', 'submission_id': '1gmfcev'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 10:47:55', 'submission_id': '1gmeycf'}
{'comment': 'Feels good to have balls again', 'created': '2024-11-08 21:48:06', 'submission_id': '1gmeycf'}
{'comment': 'I hope it’s to blow them off the freaking face of existence.', 'created': '2024-11-08 22:12:32', 'submission_id': '1gmeycf'}
{'comment': "I was young during Trump's first time, my boyfriend had to remind me that last time we basically annihilated ISIS, and now I'm just a little bit more excited for it", 'created': '2024-11-09 17:52:31', 'submission_id': '1gmeycf'}
{'comment': 'Arabs and Muslims helped him win this election, specifically in Michigan. He better keep Israel in line too - they forget that we’re the ones who fund their wars and provide them with weapons. \n\nTbh, I’m in favor of defunding Israel and focusing on our people here in the US - Americans should come first! Let Israel fight its own battles, tired of bailing them out.', 'created': '2024-11-09 02:50:58', 'submission_id': '1gmeycf'}
{'comment': "Likely. In the past, our usual strategy has been go in the misbehaving country, try to help them out and set up a government, then watch as it immediately - or shortly after - collapses when we leave. Takes tons of resources, and man power. \n\nTrumps M.O. with the military has been, instead of risking civilians and using tons of man power to invade a country, get in there, find the specific individuals who are causing the problems and take them down. It's extremely effective because suddenly the problem goes away, or diminishes, if the leaders are gone. It is likely he will apply the same strategy for his second term.", 'created': '2024-11-09 08:29:25', 'submission_id': '1gmeycf'}
{'comment': 'I really hope he gets the Marine out of Russian Prison. \n\nMaybe not. Probably made the guy want to the next laden.', 'created': '2024-11-10 09:01:03', 'submission_id': '1gmeycf'}
{'comment': "Israel is doing just fine. This would all be over by now if the Biden administration hadn't been holding them back.\n\nIf we had a government that put America and Americans first, we would be helping Israel stomp Hamas, Hezbollah, and Iran.", 'created': '2024-11-09 02:56:00', 'submission_id': '1gmeycf'}
{'comment': 'Why do you think we are "funding" Israel. Isn\'t Israel funding us? I mean they are buying BILLIONS of dollars worth of weapons from us. Ending the war will cost the Us money, not save it. \n\nTrump ending the war is for humanity, not for the United States bank account.', 'created': '2024-11-09 12:03:31', 'submission_id': '1gmeycf'}
{'comment': 'Yep, talk about voting against your interest.', 'created': '2024-11-09 12:42:26', 'submission_id': '1gmeycf'}
{'comment': 'If we had a government that put America and Americans first, we wouldn’t even intervene in Middle East conflicts. Israel isn’t innocent, they’ve committed their fair share of atrocities - we should stay out of these decades long conflicts and focus on ourselves.', 'created': '2024-11-09 03:02:14', 'submission_id': '1gmeycf'}
{'comment': 'We give Israel billions of dollars in funding, they use those billions to buy weapons from us. It’s the same with Ukraine - we give them billions of dollars and in turn they buy weapons from us. \n\nWe need to stop funding other countries wars and invest that money into our own country.', 'created': '2024-11-09 19:45:35', 'submission_id': '1gmeycf'}
{'comment': '> If we had a government that put America and Americans first, we wouldn’t even intervene in Middle East conflicts.\n\nThe terrorist government that Palestinians in Gaza elected murdered 40 Americans on October 7, 2023, and still have more hostage. Regardless of what Israel does or does not do, the proper response to that is not to kill 40 Palestinians and say "we\'re even now."\n\nOur government\'s response wasn\'t even that. We immediately gave the terrorists hundreds of $millions, and withheld weapons from the people trying to get the hostages back.\n\nThe proper response is so extreme that the next time someone talks about raping, torturing, and murdering a bunch of people that *might* include an American, that his friends hit him in the head in the rock, bury him in a shallow grave, and hope nobody heard what he was talking about.', 'created': '2024-11-09 03:49:21', 'submission_id': '1gmeycf'}
{'comment': 'You realize Hamas was created and funded by Israel, right? It turned from a political group to a resistance movement, Americans would react the same if Canada or Mexico tried occupying American land and killing American civilians. \n\nIsrael has also [murdered American citizens](https://www.vox.com/israel/371491/aysenur-eygi-israel-palestine-west-bank-idf-biden-blinken) and [international aid workers](https://www.pbs.org/newshour/amp/show/israel-draws-international-outrage-after-airstrikes-kills-7-aid-workers). Where’s the outrage? \n\nTrump needs to put Netanyahu in his place and ensure a two-state solution. We shouldn’t be fighting Israel’s wars, we should focus on improving this country and giving that aid to Americans.', 'created': '2024-11-09 04:12:19', 'submission_id': '1gmeycf'}
{'comment': '> You realize Hamas was created and funded by Israel, right?\n\nFalse. Hamas is an offshoot of the Muslim Brotherhood, as most of the terrorist organizations in the region are. Israel at one point allowed foreign funding to go to them, because at the time they were non-violent and there was a hope that they would counterbalance the PLO (which became the Palestinian Authority).\n\nIt wasn\'t ever "Palestinian Land".\n\n> Israel has also murdered American citizens and international aid workers. Where’s the outrage? \n\nCivilians die in war zones. Don\'t deliberately put yourself in harm\'s way, and you don\'t get killed.\n\nHamas *started* the war by deliberately targeting 1200 civilians.\n\n> Trump needs to put Netanyahu in his place and ensure a two-state solution.\n\nA two-state solution has been on offer for 75 years. Palestinians have rejected it over and over. October 7 ended that. It is no longer an option. If the Israelis are smart, they will annex Gaza and expel the Palestinians.', 'created': '2024-11-09 14:47:28', 'submission_id': '1gmeycf'}
{'comment': '> [Hamas, for its part, is alleged to have emerged out of the Israeli-financed Islamist movement in Gaza, with Israel’s then-military governor in that territory, Brig. Gen. Yitzhak Segev, disclosing in 1981 that he had been given a budget for funding Palestinian Islamists to counter the rising power of Palestinian secularists. Hamas, a spin-off of the Palestinian branch of the Muslim Brotherhood, was formally established with Israel’s support soon after the first Intifada flared in 1987 as an uprising against the Israeli occupation of Palestinian lands.](https://www.japantimes.co.jp/commentary/2023/11/21/world/israel-failed-policy/) \n\nPlease educate yourself, so many people in the west are misinformed and don’t understand the nuance of this conflict. \n\n> Hamas started this war..\n\nYou think this war started on October 7th??? Palestine has been occupied and oppressed for the better part of 80 years - this didn’t just recently happen. October 7th was the result of decades of oppression and occupation. \n\n> A two-state solution has been on offer for 75 years. \n\nBut the terms of that offer aren’t fair, it’s not an equitable solution. If Mexico occupied 3/4 of the US and only left us with a small plot of land - we’d also fight back and demand a fair share. If you and your family were kicked out of your homes, of course you’d fight back. \n\nYou’re clearly misinformed, don’t read FOX news headlines - find objective sources to support your narrative.', 'created': '2024-11-09 19:43:33', 'submission_id': '1gmeycf'}
{'comment': 'If you read what Segev actually said, he talks about allowing foreign funding to go to Hamas. Israel did not create Hamas, and even your site notes that it was a spinoff of the Muslim Brotherhood.\n\n> You think this war started on October 7th???\n\nThis one did, yes. If you want the longer term, it started when Mohammed started a new religion and kept coming up with tenets for it that were attractive to the bandits that were his original followers. Remember that at the time, most communities in the Middle East were Jewish.\n\n> Palestine has been occupied and oppressed for the better part of 80 years\n\nMuch, much longer than that. Remember that the Jews were living there more than 3000 years ago, according to the Merneptah Stele. There has never been a country called "Palestine", and 80 years ago it was part of the British Mandate. When the UN\'s attempt to create a Palestinian state failed (because the Arabs and Palestinians rejected it in favor of war), the British relinquished control in 1948, and the Jewish inhabitants of the area re-established Israel in *their* ancestral homeland. Of course, all of their neighbors immediately declared war on them - but that followed 30 years of terrorist attacks from Muslims, so it wasn\'t really a surprise.\n\nIsrael\'s neighbors lost that war. ...and the war after that. ...and the one after that. ...and the one after that, etc., etc.\n\nWhen you start a war and lose, and the people you attacked take some of your land as a result, you have no one to blame but yourself.\n\n> But the terms of that offer aren’t fair\n\nAs Bill Clinton recently said in a speech, the thing that upset him the most was he had brokered a peace deal, which the Israelis had agreed to, which gave the Palestinians 96% of the Palestinian territories and 17% of Jerusalem to use as their capital. ...and Arafat rejected it.\n\nPalestinians can suck it now. The elected a terrorist organization as their government (to replace the previous terrorist organization that was their government), and now they get to reap the rewards of that decision.', 'created': '2024-11-09 23:59:57', 'submission_id': '1gmeycf'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 07:31:04', 'submission_id': '1gmcc16'}
{'comment': 'Some people aren’t worth maintaining friendships with. If they’re not willing to accept your pov but demand you accept theirs, they’re not really your friends. Dragging out the whole “he’s a convicted felon” idiocy is just a coping mechanism to help them feel better about suddenly realizing they aren’t mainstream in their thinking. Him winning is bad, him winning the popular vote is devastating for them.', 'created': '2024-11-08 07:40:10', 'submission_id': '1gmcc16'}
{'comment': 'I want to rip my hair out when dems quote project 2025', 'created': '2024-11-08 08:29:34', 'submission_id': '1gmcc16'}
{'comment': "You know there's way more conservatives in America than people think they simply love their friends and family and they don't want to lose them because Democrats don't give two shits they will cut you off no matter how many great things you've done for them in the past. That type of ideology is why you need to get rid of people like that, eventually they will eat themselves to death and that ideology will eventually die out, that is why so many Democrats voted for Trump this time. People are taking bullshit too far, if they want to cut you out so be it they were never that important to begin with.", 'created': '2024-11-08 07:47:32', 'submission_id': '1gmcc16'}
{'comment': 'I’m sure they are going around telling everyone that you stopped being friends with them even though it clearly left that choice up to them.', 'created': '2024-11-08 08:43:27', 'submission_id': '1gmcc16'}
{'comment': 'I’m losing my sister over this. I really couldn’t care less if she’s mad at me or ignores me, but she’s the godmother to my son. He keeps asking to talk to her on the phone, and it breaks my heart when she doesn’t answer. He’s turning two next week and she actually might not come to his birthday party. This is the damage the left has done and I’ll never forgive them. All of their voters think they are victims of a genocide. My two year old has more emotional maturity than the lot of them, and I mean that without hyperbole.', 'created': '2024-11-08 13:41:27', 'submission_id': '1gmcc16'}
{'comment': 'It’s ridiculous when Kamala voters think they can cut off Trump voters and live a normal life. He won the popular vote for crying out loud. The freak out over things that people have no individual control over is exhausting. I’ve seldom heard of conservatives cutting off leftist friends/family but always hear it the other way around.', 'created': '2024-11-08 08:42:28', 'submission_id': '1gmcc16'}
{'comment': 'Damn I’m sorry to hear that man. Why can’t people put politics aside for the sake of friendship…', 'created': '2024-11-08 08:28:54', 'submission_id': '1gmcc16'}
{'comment': 'This is the norm Conservatives being polite and civil with democrats spewing lies and insults hating America', 'created': '2024-11-08 10:02:17', 'submission_id': '1gmcc16'}
{'comment': 'I miss the idea that it was bad manners to discuss political and religious preferences openly and publicly', 'created': '2024-11-08 13:13:54', 'submission_id': '1gmcc16'}
{'comment': 'Good riddance.', 'created': '2024-11-08 08:10:07', 'submission_id': '1gmcc16'}
{'comment': "Sorry but this sounds like an acquaintance. Maybe it was a friendship....but you don't get dropped for a difference of political views.", 'created': '2024-11-08 08:26:12', 'submission_id': '1gmcc16'}
{'comment': 'You can tell that they’re not well informed because they say the tax policy only benefited the upper class. This is objectively not true as anyone taking the standard deduction saw a benefit because even if you include the “personal exemption” it wrapped that up into the higher standard deduction and then some.', 'created': '2024-11-08 09:09:49', 'submission_id': '1gmcc16'}
{'comment': 'And when you ask them what rights they will be “losing” they a) don’t have an answer b) bring up murdering unborn children or c) mutilating children’s genitalia. When did our country get so sick?', 'created': '2024-11-08 10:07:56', 'submission_id': '1gmcc16'}
{'comment': "It's shocking to me how many liberals have put their entire identity and hope into the freaking government. They really just need professional help or a camp that emphasizes individuality and humanity outside of politics. I have never and will never cut someone off for their beliefs. Humanity over politics always for me.", 'created': '2024-11-08 13:47:53', 'submission_id': '1gmcc16'}
{'comment': 'Trash always takes itself out.\n\nNo seriously, I applaud your patience for even having that dialogue with someone you loved as a friend. I live in a VERY pro-Trump state (West by God Virginia) and even I’m too afraid to be “open” about for whom I voted and why. Mainly because I don’t have the energy to engage in discourse with the haters because I’ll never get through to them (and like you, not about my beliefs and how my vote is the “right” vote, but just the basic desire to be allowed to share my choice and not be attacked for it). They said they’re worried about the future of “democracy”; to me, not being able to even state for whom you voted (not even getting into the “why” of your choice) without being attacked, cancelled, etc, is THE biggest threat to democracy happening right now. And wouldn’t it be lovely to touch base with them in a few years and ask them how much better they’re doing now that they have more money in their wallets, food in their pantries, better and more jobs, and elevated overall security? Because they WILL benefit from all of the Trump policies, even if they don’t deserve it, but Trump is happy to give it to them because he promised this for all Americans and he will keep his promises. I’m sorry this happened to you ❤️❤️❤️', 'created': '2024-11-08 10:12:05', 'submission_id': '1gmcc16'}
{'comment': 'You lost nothing.', 'created': '2024-11-08 08:17:11', 'submission_id': '1gmcc16'}
{'comment': "Sorry you lost a friend over this. The sad part is you would have probably stayed friends with them and respected their vote had Harris won the election. Funny how the party of tolerance and acceptance doesn't tolerate or accept anyone that doesn't think like them.", 'created': '2024-11-08 13:59:05', 'submission_id': '1gmcc16'}
{'comment': 'Yeah that’s not someone you should waste your time with, clearly not open minded at all', 'created': '2024-11-08 08:33:02', 'submission_id': '1gmcc16'}
{'comment': 'I’m about to lose my entire family because they don’t leave their house and only watch CNN', 'created': '2024-11-08 10:31:35', 'submission_id': '1gmcc16'}
{'comment': 'I’m sorry you lost a lifelong friendship. Not sure why some Democrats are going crazy. They have become everything they say they dislike. It almost makes me wonder if these people who cannot see a Trump win without doom and gloom have mental health issues. Their reality is so far from the truth.', 'created': '2024-11-08 11:33:12', 'submission_id': '1gmcc16'}
{'comment': 'Lol Fuckem at the end of the day if they can’t respect you who needs them', 'created': '2024-11-08 12:19:20', 'submission_id': '1gmcc16'}
{'comment': 'Woke mind virus…', 'created': '2024-11-08 12:27:52', 'submission_id': '1gmcc16'}
{'comment': 'This is why I got my kid out of public school', 'created': '2024-11-08 12:52:41', 'submission_id': '1gmcc16'}
{'comment': 'He won the popular vote so obviously the majority of Americans who voted agree with you! Is gonna be my response when people try to give me bs about it 🤣💀🇺🇸', 'created': '2024-11-08 13:22:20', 'submission_id': '1gmcc16'}
{'comment': 'It\'s amazing how many "the people of color" they speak of voted for Trump.', 'created': '2024-11-08 13:36:49', 'submission_id': '1gmcc16'}
{'comment': 'At least you dont have to tread over egg shells or hide your actually thoughts on politics due to this person, its funny, because these people are soo much about freedom and liberty but when you speak freely with topics they dont agree with, rather than have a rational conversation they just want to shut everything down calling you every ist under the sun. Not very tolerant of free speech at all, are they.', 'created': '2024-11-08 09:41:53', 'submission_id': '1gmcc16'}
{'comment': 'But but it’s hope and joy vibes', 'created': '2024-11-08 12:57:18', 'submission_id': '1gmcc16'}
{'comment': 'This election was a census regarding stupidity. I firmly believe that anyone who voted Democrat is brainwashed, unable to think logically and not worth my time. I can’t be friends with a Democrat. Family and co-workers you have no choice. It’s crystal clear.', 'created': '2024-11-08 13:03:16', 'submission_id': '1gmcc16'}
{'comment': 'I lost a friend from HS because I sent an email to some folks after W beat Gore. I was a PS major, and that was the first election I paid a lot of attention to the color shading of counties rather than just the state. I found it fascinating how an election could be so close when you couldn’t see any blue on the map without getting close enough to read text on the screen. I never said anything about the winner, just that the voting patterns were interesting. I was accused of rubbing her face in the election results and not being sensitive to how half the country was hurting. I should have sought reconciliation, but it’s been twenty years now.', 'created': '2024-11-08 13:21:30', 'submission_id': '1gmcc16'}
{'comment': 'If I can support my friends through being a drug addict, a single mom, poverty, domestic abuse, losing their jobs, getting cheated on, failed marriages, medical conditions, abortion, dropping out of school, tons of reasons. \n\nThe last thing I will ever do is drop a friend for their political beliefs. These people must be having an inner war against themselves more than against you. \n\nSorry this happened to you.', 'created': '2024-11-08 13:30:14', 'submission_id': '1gmcc16'}
{'comment': 'This is heartbreaking to read. I am so sorry this has happened. This is what the left has created. They plead for hope and joy yet create hate and division.', 'created': '2024-11-08 13:43:30', 'submission_id': '1gmcc16'}
{'comment': '“No one is pushing transgender on children” is an asinine statement and gets me fired the fuck up.\n\nI live in a liberal state in the northeast, I have friends that are teachers that HAVE TOLD ME THEY KNOW TEACHERS THAT WILL LET KIDS ACT THE OPPOSITE SEX AT SCHOOL AND NOT TELL THE PARENTS!!!!! The parents could literally have no idea.\n\nHow the fucking fuck in gods green earth is this justifiable? Oh god this makes me blood boil to bring kids into this fucked up woke culture is crossing a fucking line and to me is child sexual abuse.\n\nAlso, can the liberals please define how Trump js anti-gay? What rights are gay people losing? What rights are trans losing that are not still kids? What rights are black people losing? How about legal immigrants?', 'created': '2024-11-08 15:11:31', 'submission_id': '1gmcc16'}
{'comment': 'One line reply: I voted for me not for them.', 'created': '2024-11-08 21:19:40', 'submission_id': '1gmcc16'}
{'comment': 'This person stopped being your friend a long time ago when they committed to the cult.', 'created': '2024-11-08 13:42:21', 'submission_id': '1gmcc16'}
{'comment': 'They are a lost cause. They can’t see through their Trump hate to see the charges are false. Brought before rigged judges and Trump hating jurors. The left was looking for a felon charge, thinking they could keep Trump from running again. This country will be rocking again in a year and they will still be screaming about some new cnn spun nothing burger. Thanks for voting Trump.', 'created': '2024-11-08 10:06:29', 'submission_id': '1gmcc16'}
{'comment': 'That’s sad, and mystifying too. But, as Noel Coward said, “ The race goes to the swift”— meaning that the people unencumbered by useless baggage (delusions and unreasonability) will have a better life and greater opportunities for themselves and their families. Or, since I am a trivia fan, the iconic author Dorothy Parker once bowdlerized the classic saying this way: “ You can lead a whore to culture, but you can’t make her think.” Your friend has fallen, and won’t get up. We can only make the best of ourselves, and others are equally responsible for their own fate, especially in this country of opportunity.', 'created': '2024-11-08 10:46:44', 'submission_id': '1gmcc16'}
{'comment': "I'd like to know where they come up with some of their delusions", 'created': '2024-11-08 11:00:07', 'submission_id': '1gmcc16'}
{'comment': 'Wow, I wanted to say ditch that weirdo, but beyond the keyboard, this situation sucks. People just are stubborn.', 'created': '2024-11-08 11:27:32', 'submission_id': '1gmcc16'}
{'comment': 'Sorry you lost your friend, but you probably lost them years ago with the way they think.', 'created': '2024-11-08 11:42:08', 'submission_id': '1gmcc16'}
{'comment': "This is the reason I have like 5 really good friends, 2 of which are democrats and we've talked about issues in a polite way before and seen things from eachothers perspectives. And at the end of the day we would all do anything for eachother. Also the same reason I don't have social media cause I know people would all be going nuts and I can't help myself but to try to ask questions about it to them and they'd lose their minds and say I was just racist or exist or whatever.", 'created': '2024-11-08 11:45:47', 'submission_id': '1gmcc16'}
{'comment': "This is the reason I have like 5 really good friends, 2 of which are democrats and we've talked about issues in a polite way before and seen things from eachothers perspectives. And at the end of the day we would all do anything for eachother. Also the same reason I don't have social media cause I know people would all be going nuts and I can't help myself but to try to ask questions about it to them and they'd lose their minds and say I was just racist or exist or whatever.", 'created': '2024-11-08 11:45:47', 'submission_id': '1gmcc16'}
{'comment': "Some people are really ridiculous with their political opinions and if you're not with them then they see you as an enemy. I'm friends with people of all walks of life that I personally disagree with in many respects and vice versa. I know there isn't common ground on those differences but I don't turn from them, we just focus on what we all have in common and it works. \n\nHell, I'm still friends with my old manager. She's a die-hard Democrat and her husband is a die-hard conservative. They just cancel each other out every election. That's how adults behave and it's unfortunate that some people just don't get that.", 'created': '2024-11-08 12:38:11', 'submission_id': '1gmcc16'}
{'comment': 'I don’t really understand the term “human rights” the only rights you have as a human is to eat, sleep, poop, then die.', 'created': '2024-11-08 13:47:44', 'submission_id': '1gmcc16'}
{'comment': 'Yea better off, last 8 years has really brought out the cult politics again.', 'created': '2024-11-08 13:58:28', 'submission_id': '1gmcc16'}
{'comment': "It wasn't a good friendship if it was that easy for someone to walk away. I have friends and we never talk politics and then I had one we could have constructive conversation and it didn't hurt us. Politics should never be able to cause someone you love and care about to be cut off. And if they cut you off you weren't that important to them.", 'created': '2024-11-08 14:00:33', 'submission_id': '1gmcc16'}
{'comment': 'You can really see the difference in the amount of respect between the two.', 'created': '2024-11-08 14:14:54', 'submission_id': '1gmcc16'}
{'comment': 'People call republicans extreme', 'created': '2024-11-08 14:18:28', 'submission_id': '1gmcc16'}
{'comment': 'This doesn’t shock me at all.', 'created': '2024-11-08 14:24:32', 'submission_id': '1gmcc16'}
{'comment': 'The felony thing is hilarious. They needed a way to take him down and this is all they got, paying off a pornstar to shut her trap.', 'created': '2024-11-08 14:26:08', 'submission_id': '1gmcc16'}
{'comment': 'Losing a Dem as a friend is never a bad thing, even if they\'re family. They corrupt the people around them. They have chosen hate and \'anything goes\' as a way of life. "You can choose the right way or the easy way." Dems choose the easy way.', 'created': '2024-11-08 14:28:41', 'submission_id': '1gmcc16'}
{'comment': 'Never choose the person who gives you an ultimatum. It’s manipulation.\nA boundary is a circle you draw around yourself. An ultimatum is a circle you draw around someone else. Anyone has the right to draw a line say this is what I believe. But you can’t go around demanding that everyone share your opinions and agree with you, or else. It’s silly.', 'created': '2024-11-08 14:33:38', 'submission_id': '1gmcc16'}
{'comment': 'You cannot reason with people who are fragile and brainwashed', 'created': '2024-11-08 14:37:52', 'submission_id': '1gmcc16'}
{'comment': 'What is the reality in schools? I can watch things and read things but are people with school age children really encountering this gender identity teaching in schools?', 'created': '2024-11-08 14:42:54', 'submission_id': '1gmcc16'}
{'comment': 'Same thing happened to my wonderful landlord who is 77. He finally told his dear lifelong friend from college that he’s a Trump supporter and Republican. End of friendship. People are quite disturbed and shallow. So self centered.', 'created': '2024-11-08 14:43:36', 'submission_id': '1gmcc16'}
{'comment': 'This is exactly what the machine wants...division so they can sell the solution and conquer', 'created': '2024-11-08 14:48:36', 'submission_id': '1gmcc16'}
{'comment': "When none of the big bad scary things happen that they insanely believe (good job democrat propaganda), if they try to reach out missing you and pretending they weren't bat-shit crazy, I would tell them to pounds sand. OR if you miss them and want them back in your life, at least make them admit they were wrong about everything. Make them admit they were duped and lied to about Hitler 2.0.", 'created': '2024-11-08 17:38:37', 'submission_id': '1gmcc16'}
{'comment': 'People w/o kids really don’t understand or believe the LBGT agenda in our schools.', 'created': '2024-11-08 22:01:28', 'submission_id': '1gmcc16'}
{'comment': "Thats so disappointing.\n\nWas it like this when Trump was elected in 2016?\n\n I feel like all the media that spout hate and fear about how Trump is Nazi, felon, rapist, fascist, etc influenced this insane reaction and fear in the left. So many of my leftist friends are downright devastated and scared and I don't remember it being like this at all in 2016", 'created': '2024-11-08 22:07:39', 'submission_id': '1gmcc16'}
{'comment': 'If someone was willing to just dump a 20+ year "friendship" over a difference in opinion, then they were never friends to begin with.\n\nI have 40+ year friends that voted differently with myself and some i\'m more politically aligned with, but we love each other and our friendships trump(no pun intended), everything else.', 'created': '2024-11-08 22:57:23', 'submission_id': '1gmcc16'}
{'comment': 'The only hatred and intolerance I see is on the left.', 'created': '2024-11-08 23:43:46', 'submission_id': '1gmcc16'}
{'comment': "Let her go...she's too far gone. Like most Dems, they've been fed lies too long. Sad", 'created': '2024-11-09 01:50:36', 'submission_id': '1gmcc16'}
{'comment': 'I just want them to explain what “human rights” are being taken away? Or will be?', 'created': '2024-11-08 15:05:49', 'submission_id': '1gmcc16'}
{'comment': 'These people are delusional. It’s scary how much they’ve lost it', 'created': '2024-11-08 15:07:48', 'submission_id': '1gmcc16'}
{'comment': 'A "conviction" in a kangaroo court is meaningless. Even the NY State Court of Appeals has poo-poo\'d the case.', 'created': '2024-11-08 15:16:59', 'submission_id': '1gmcc16'}
{'comment': 'That really sucks. And unfortunately you really have to question your friendship with them. And ask them if Kamala won all would have been great and you would be BFF’S as long as her candidates keep winning elections?! But let me tell you a funny story that happened over the summer. And this is more proof what they are doing to our children in schools. BUT the children are a LOT smarter than they think. \nI was umpiring a 10U baseball game. The 2nd baseman looked a little girly and they kept calling him Jus which I had thought was short for Justine. He had long beautiful Blonde Hair and very White not albino skin. So I said in-between innings “Gentlemen & Lady balls in” the 1st Baseman looks at me and says “Hey Blue who’s a girl?” Im like Damm ummm the 2nd baseman? He goes nah that’s a boy. I was like my bad. He turns to be 2 seconds later..”Hey Blue, You never know these days” So they know and they are resisting this garbage. But it’s happening in the schools. We MUST teach our children the right way. My son when he was 14 along with his mixed group of friends comes home one day and goes “Dad there are only 2 genders right?!?” So they know they understand and are waking up!', 'created': '2024-11-08 16:02:36', 'submission_id': '1gmcc16'}
{'comment': "That's sad, but we're all here for you. You fought for what you believe in, I also wish no harm on Democrats even though most of them treated us like scum of the Earth, I got a good friend up the road who's a Democrat and Im still hiding my love for Trump in front of him, so many people im still hiding my love for Trump out of fear of loosing there respect, I just hope you do well and if you really want ill be your friend.", 'created': '2024-11-08 16:02:38', 'submission_id': '1gmcc16'}
{'comment': 'My wifes sister freaked out on her because my wife voted for President Trump. Yelled a her for like a half hour. She even mentioned how her and her boyfriend may go to canada.\n\n Insane.', 'created': '2024-11-08 16:06:08', 'submission_id': '1gmcc16'}
{'comment': 'As someone who was canceled back in 2020 with many of my close friends calling me a racist, bigot, and an idiot, I can tell you OP that you are not alone. \n\nGood for you for standing up for your beliefs and offering an olive branch to show the empathy you have for those close to you.', 'created': '2024-11-08 16:09:45', 'submission_id': '1gmcc16'}
{'comment': 'i dont see why youd be friends with somebody like that in the first place anyway\n\nthis is probaly for the best', 'created': '2024-11-08 16:10:52', 'submission_id': '1gmcc16'}
{'comment': "I'm sorry this happened to you. The same happened to me. My brother decided he was emotionally unsafe around me and couldn't trust me anymore (his words) and cut me out of his life after I truthfully answered who I voted for. It hurts, but if compromising my values is needed to be in his life, that's control, not love.", 'created': '2024-11-08 16:18:41', 'submission_id': '1gmcc16'}
{'comment': 'It’s just insane to me how they claim no one is pushing sex or trans on kids while they have those drag events marked on their calendars', 'created': '2024-11-08 16:25:10', 'submission_id': '1gmcc16'}
{'comment': 'I’ve also lost around 30-35 followers from a trump. All I said was “Make America great and HEALTHY again.” You thought I would’ve shot their dog in front of them. \n\nI realized that they are the unhinged people that seem to have a perfect past with no wrongdoing. They bring up January 6th like the BLM riots never happened and wasn’t 100x worse than the “insurrection.” They bring up rapist like it was decades ago. Decades where Biden/Democratic Party said things that would get them persecuted today. People change, and I believe that.\n\nTrump isn’t taking away anyone’s rights. I truly thing he will fight for the common American and try to make this country the best it’s been and put Americans first, as it should be. The fear mongering the left has carried out has really effected people in ways they wouldn’t imagine. They truly think Trump is the worst person in history', 'created': '2024-11-08 16:30:38', 'submission_id': '1gmcc16'}
{'comment': "I don't get it. I never bring up politics around my liberal friends but, they respect my views as I respect theirs its just not worth talking about it since we have such different views, and we get along just fine. These people who are ending relationships with friends, family, and significant others just because they voted for Trump is so wild to me. I saw a girl post that she ended a 6-year relationship with her boyfriend because he voted for Trump, and she knew all this time he was conservative. I guess she thought he would be one of the republicans that would flip and vote for Kamala.", 'created': '2024-11-08 16:31:17', 'submission_id': '1gmcc16'}
{'comment': 'Anyone that says they voted “against hate”, or “for love/peace” is a complete moron. Someone easily swayed by the vocal minority. Someone desperate to be a part of the “cool kids club”. If all their tvs started telling them Trump was great they would fall in love with him. It’s really sad people are so easily manipulated. Don’t they realize a vote for Trump is a deeply thought out vote? We know we are going to lose friends if they find out, but we understand that truth and common sense are more important than being in the “it” group.', 'created': '2024-11-08 16:37:19', 'submission_id': '1gmcc16'}
{'comment': 'Well. You lost a friend, yet gained one! 🤝', 'created': '2024-11-08 16:37:54', 'submission_id': '1gmcc16'}
{'comment': "Ah, you didn't need a friend with brain damage anyway.\xa0", 'created': '2024-11-08 16:48:17', 'submission_id': '1gmcc16'}
{'comment': 'Not that I need to even entertain the arguments but what should our response be when people bring up the felonies. I understand the concern for them and don\'t want to simply say "they have it out for them" because that is not helpful in discussion. I didn\'t really pay too close attention so anyone know more and can provide me with help addressing it?', 'created': '2024-11-08 16:57:11', 'submission_id': '1gmcc16'}
{'comment': 'What "rights" did we vote against?', 'created': '2024-11-08 16:57:22', 'submission_id': '1gmcc16'}
{'comment': 'Same thing happened to me. The “party of inclusion and love” is pretty hateful if you’re pro trump', 'created': '2024-11-08 17:02:41', 'submission_id': '1gmcc16'}
{'comment': 'You’re better off no longer having an intolerant person in your life who would rather judge you based not on your demonstrated character over the last twenty years, but instead minimize you to a checked box. Good riddance. Move on and find acceptance with someone else.', 'created': '2024-11-08 17:07:42', 'submission_id': '1gmcc16'}
{'comment': "Your first mistake was trying to have conversations with a liberal. I lost my niece over the BLM movement years back because I refused to change my profile photo to that BLM fist nonsense that everyone was doing so she called me a racist haha. Offended people aren't right in the head, they will make up whatever reason to be offended for that day. Anyone who's willing to sacrifice family, friends or whatever because of politics is an extremist.", 'created': '2024-11-08 17:10:12', 'submission_id': '1gmcc16'}
{'comment': 'They’re crying even harder than 2004.', 'created': '2024-11-08 17:23:10', 'submission_id': '1gmcc16'}
{'comment': '“Where does Kamala not support the constitution?” How about we start with the 1st Amendment and censuring the internet. How about the 2nd Amendment when she said she was in favor of mandatory gun buy backs. How about the 4th Amendment when she said they would go into your home to seize your firearms if they so chose.', 'created': '2024-11-08 17:27:53', 'submission_id': '1gmcc16'}
{'comment': 'I’m so sorry! No one should be letting politics get in the way of friendships!', 'created': '2024-11-08 17:28:54', 'submission_id': '1gmcc16'}
{'comment': 'Good for you! Looks like some of your so called “friends” have some serious maturing to do.', 'created': '2024-11-08 17:34:55', 'submission_id': '1gmcc16'}
{'comment': 'They were never your friends. Once you no longer served a purpose, they discard you like a used towel.', 'created': '2024-11-08 17:35:05', 'submission_id': '1gmcc16'}
{'comment': 'I don’t get the whole Human Rights are being taken away argument. What Human Rights? I looked at the list of Human Rights & I don’t see any that are in jeopardy.', 'created': '2024-11-08 17:41:07', 'submission_id': '1gmcc16'}
{'comment': "Democrats never even want to acknowledge the individual over the group. Republicans can't care less about the group over the individual.\n\nMy biggest distaste for groups is that for a group to agree on anything, it must appeal to the least common denominator. This ensures the dumbest idea always prevails over the smartest choice. \n\nOn a personal level, I've rarely spoken to a Leftist who is incapable of civil, logical reasoning. \n\nLogic and civility seem to be completely foreign to the person who believes they are representing others voice.", 'created': '2024-11-08 17:46:57', 'submission_id': '1gmcc16'}
{'comment': 'I’ve lost several friends and family member relationships. But I could care less. Fuck’em, they’re all dead to me now. I could never maintain a relationship with anyone that thinks I’m a nazi based on who I voted for. Life goes on, and is more glorious without those full of negativity and hatred', 'created': '2024-11-08 17:52:14', 'submission_id': '1gmcc16'}
{'comment': 'What rights are they losing? Or what rights do they think they are?', 'created': '2024-11-08 18:15:17', 'submission_id': '1gmcc16'}
{'comment': 'my girlfriend is left leaning and i’m right leaning, we both heavily agree that politics should not affect relationships at all, i saw some guy abandon his grandma because she just wanted to celebrate the trump win with him, it’s sad to see loving people get hurt over just an opinion.', 'created': '2024-11-08 18:16:30', 'submission_id': '1gmcc16'}
{'comment': 'I also lost a 20+ year friendship over politics. But just like you, it wasn’t me being unreasonable and unwilling to accept to agree to disagree. I’m sorry this happened to you and me. If it means anything, I think your responses were incredibly well thought out.', 'created': '2024-11-08 18:30:48', 'submission_id': '1gmcc16'}
{'comment': 'This is sad. I see someone (you) who provides facts and presents a calm counter and reiterates remaining friends despite a difference of opinion. The other person just seems overly emotional and is just rambling on feelings.', 'created': '2024-11-08 18:43:28', 'submission_id': '1gmcc16'}
{'comment': 'Just share this to them. Trump has always supported LGBTQ https://youtu.be/vkV9dXF3VR0?si=i06fRlhEx-MrHCRr', 'created': '2024-11-08 19:07:32', 'submission_id': '1gmcc16'}
{'comment': 'Sad some ppl cant agree to disagree and move on with their lives', 'created': '2024-11-08 19:18:11', 'submission_id': '1gmcc16'}
{'comment': 'Was called a misogynist by my girlfriend of 9 years this morning. I fall squarely in the middle in terms of abortion. There’s many very valid reasons to have one. I won’t get into that. Can’t wait for the emotions over this election to move on a bit.', 'created': '2024-11-08 19:42:22', 'submission_id': '1gmcc16'}
{'comment': 'Can someone explain to me all the rights Trump took away from anyone?', 'created': '2024-11-08 19:44:57', 'submission_id': '1gmcc16'}
{'comment': "You need to ask the dude to clarify what he means.. I can do the same thing but the exact opposite.. \n\nKamala left black petty criminals in prison so she could get free labor. She was not the first presidential candidate to support gay marriage. She supports mutilating trans kids and making them sterile before they hit puberty so they can never have a family. Kamala would be a convicted felon, multiple times, if someone decided to indict her for her crimes in CA when she was AG. Her husband is a deadbeat dad who beat women. It's extremely sad that you don't care about who you vote for. \n\nAs far as I know Trump had been the first president to support gay marriage. He had lowest black unemployment rate, he gave RECORDS of numbers to HUD which is predominately for black people (I know this personally because where I work). This guy is just throwing a fit, and if he can't be your friend just block him and move on.", 'created': '2024-11-08 19:50:06', 'submission_id': '1gmcc16'}
{'comment': "I mean, you handled that incredibly well. What else can I say other than I wish it weren't so. This isn't even so much that friends doing as it is the role of this divisive media that's an arm of the radical left thats brainwashed people we care about, people who have otherwise likely displayed the ability to think critically in all other areas of life and the human experience. Best wishes to you both and best of luck to the mutual friend fighting to shield their child from that bullshit in the schools.", 'created': '2024-11-08 19:59:27', 'submission_id': '1gmcc16'}
{'comment': 'Most of my friends are democrats, same with my entire family. It’s rough.', 'created': '2024-11-08 20:09:23', 'submission_id': '1gmcc16'}
{'comment': "As much happy as I feel after the election, my relationships seems to go sourer. And it's heartbreaking.", 'created': '2024-11-08 20:29:17', 'submission_id': '1gmcc16'}
{'comment': 'these people are so brainwashed it’s incredible.', 'created': '2024-11-08 20:42:53', 'submission_id': '1gmcc16'}
{'comment': 'Keep it simple and those folks are not going to reject the greatness that Trump is going to bring to the table', 'created': '2024-11-08 20:56:48', 'submission_id': '1gmcc16'}
{'comment': 'Then it was never a true friendship.', 'created': '2024-11-08 20:58:27', 'submission_id': '1gmcc16'}
{'comment': 'I’ve been hearing the rapist claim a lot lately. Can someone expand on where this is coming from?', 'created': '2024-11-08 21:08:52', 'submission_id': '1gmcc16'}
{'comment': 'That\'s who they are. If you are a studier of how Communism requires you to basically "other" loved ones and friends this just part of it. This is how in a communist revolution after their side has taken power they begin public shaming, camps and executions. You get more commie brownie points by turning in friends and family. The party is the religion.', 'created': '2024-11-08 21:11:34', 'submission_id': '1gmcc16'}
{'comment': 'I knew my marriage was solid before, but how much my wife wanted Kamala to win versus how much I wanted Trump to win, but stayed civil over\nIt made me just that much sure that I married the right one. I’ve seen so many friendships/relationships end due to voting it’s been a crazy time.', 'created': '2024-11-08 21:18:52', 'submission_id': '1gmcc16'}
{'comment': "Any time they pull the felon or rapist card, I know they don't have any understanding of the case.\n\nIt is sad when people are unwell. That last word was going to be unwilling but autocorrect of my swipe and I'm going to use it. They are also unwilling to accept that others will see differently and they have a right to do so.\n\nSorry you lost your friends but honestly it is better for if they are going to have this attitude of we can't be friends if we disagree on anything.", 'created': '2024-11-08 21:22:54', 'submission_id': '1gmcc16'}
{'comment': 'We could easily do the same “you voted for Kamala. You’re a baby killer. You hate the rights of children. You want women to be raped in bathrooms. You’re supporting an adulterer..” but we have a lot more dignity and don’t take cheap shots.', 'created': '2024-11-08 21:47:54', 'submission_id': '1gmcc16'}
{'comment': 'Lost a friendship over me supporting trump too even tho I was originally democratic until last year when I did more research and realized that my views align with the Republican Party. People that far gone are gonna disrespect you and call you names if you don’t think like them. They aren’t worth your time if they can leave your life just like that. At least here we are all family and respect each other’s opinions.', 'created': '2024-11-08 22:03:04', 'submission_id': '1gmcc16'}
{'comment': 'It’s insane to me. They are so closed minded and unwilling to hear any other opinions than their own. I have no problem talking to people who support Kamala and hearing their point of view, without arguing. Their thinking process confuses the shit out of me. And this is coming from someone who isn’t even a republican.', 'created': '2024-11-08 22:23:23', 'submission_id': '1gmcc16'}
{'comment': 'Let him go. He’s been groomed by the DNC. There’s no rehabilitation for that', 'created': '2024-11-08 22:28:58', 'submission_id': '1gmcc16'}
{'comment': "You did very well explaining your side. This is the difference is I've noticed is that one side is willing to listen to the other and accept their feelings and move on from it. The other cuts you off and refuses to listen even to cold hard facts. Also, based on character, Biden and Harris are kind of awful human beings, so they can judge Trump all they want but they are hypocrites. No one talks about the allegations against Biden or Harris' husband or the awful things Harris did as a prosecutor because on that side, well, it just doesn't matter.", 'created': '2024-11-08 22:38:32', 'submission_id': '1gmcc16'}
{'comment': "If someone ditches you over politics they were never your friend to begin with. Accept that they were never the person you thought they were. It sucks. My wife and I had to walk away from a mutual friend 2 weeks ago who we knew was on the left but NEVER expected her to fly off the handle like she did. She was texting my wife the most ridiculous, nasty stuff. Making fun of her for being adopted saying how her real parents probably wish they aborted her. My wife was really upset but we agreed to block numbers/unfriend her everywhere. Sucks bc I was good buddies with her husband now I'm not sure if we will ever talk again either. If he reaches out I'm fine with it but I will never talk to her again.", 'created': '2024-11-08 23:12:27', 'submission_id': '1gmcc16'}
{'comment': 'They do no research and just parrot what they hear on social media and the liberal news. I told a coworker that the illegal migrants are hurting citizens on welfare and is costing the city billions, he called me racist. The brainwashing is too strong.', 'created': '2024-11-08 23:18:38', 'submission_id': '1gmcc16'}
{'comment': 'So what rights did people lose ?', 'created': '2024-11-08 23:34:21', 'submission_id': '1gmcc16'}
{'comment': 'It’s still funny, they’ll call him a “convicted felon” but not a “convicted rapist”. I wonder why 🤔', 'created': '2024-11-08 23:54:34', 'submission_id': '1gmcc16'}
{'comment': 'Sounds like they don’t feel as if the constitution is “the supreme law of the land”. Unfortunately for them, the Republican party does.', 'created': '2024-11-08 23:58:44', 'submission_id': '1gmcc16'}
{'comment': 'Only my close friends know my politics. The rest idk.', 'created': '2024-11-09 00:59:14', 'submission_id': '1gmcc16'}
{'comment': 'These people are losers. To anyone who is butthurt about Trump winning, suck it up and take the L.', 'created': '2024-11-09 01:16:03', 'submission_id': '1gmcc16'}
{'comment': 'But they are tolerant liberals! 😂 It\'s happening to all of us. That\'s why we have had to keep silent about our vote. \n\n I am Puerto Rican. I had a "friend" start posting memes of our DT hates PR. Etc. I have tolerated all her liberal posts for years, but this time I couldn\'t stay silent because she was using my country and my people to push false propaganda. I let her know that wasn\'t cool. I expressed how it was a comedians joke and how George Lopez did the exact same thing at the DNC. He made a joke that all Mexicans are thieves but nobody started claiming those were Kamala\'s personal views on Mexicans.\n\n But when a comedian says a joke at a Trump rally then of course Trump must endorse it!\n \nAnyways, she told me she " refuses to be friends with trump supporters". Hhhmm k! After me tolerating her liberal crap for years, she dumps me in a millisecond. \n\n\nThat\'s that!', 'created': '2024-11-09 01:39:36', 'submission_id': '1gmcc16'}
{'comment': 'Dems are actually brain dead. The lights are on but nobody’s home. Nobody is “ losing their rights “ sounds like you didn’t need this friend anyways', 'created': '2024-11-09 01:41:08', 'submission_id': '1gmcc16'}
{'comment': "You can't argue with them. They are brainwashed and will call you brainwashed.", 'created': '2024-11-09 01:50:21', 'submission_id': '1gmcc16'}
{'comment': 'Democrats are poison to America', 'created': '2024-11-09 03:12:10', 'submission_id': '1gmcc16'}
{'comment': 'this is what they want, and some people really dont understand the ones praying on americas downfall want us to have civil war as a result of dehuminization of eachother (this is an example) your friend thinks these things are true, and uses it as a form of virtue signaling. This is why i dont discuss politics w work or friends because 50% of the population is INSANEEE', 'created': '2024-11-09 03:52:05', 'submission_id': '1gmcc16'}
{'comment': "I'm very sorry that they placed propaganda above your friendship. That's very hard to deal with. But if they believe the lies so much that they wont even listen, I think there wasnt any salvaging jt.", 'created': '2024-11-09 04:18:12', 'submission_id': '1gmcc16'}
{'comment': 'Trump never raped anyone. I’m so sick of them destroying this man’s character.', 'created': '2024-11-09 04:36:18', 'submission_id': '1gmcc16'}
{'comment': 'Well… that’s pathetic.', 'created': '2024-11-09 05:43:55', 'submission_id': '1gmcc16'}
{'comment': "I've noticed a big push since the election where people have been saying you can't be friends with those who have different political views. It's sad", 'created': '2024-11-09 07:19:38', 'submission_id': '1gmcc16'}
{'comment': 'The blatant denial of fact… It’s so scripted, every interaction with a leftie. I’m sorry you lost a friend, OP, but the left is fresh out of good people.', 'created': '2024-11-09 08:04:07', 'submission_id': '1gmcc16'}
{'comment': 'It\'s completely sad that someone wants to end a long friendship due to "politics". Once again, freedom of speech and freedom to choose who you vote for only seems to be applied to the left. If you disagree with them you don\'t get those freedoms! Hypocritical! Trump 2024!!!', 'created': '2024-11-09 12:35:16', 'submission_id': '1gmcc16'}
{'comment': 'Let those losers cry', 'created': '2024-11-09 15:45:26', 'submission_id': '1gmcc16'}
{'comment': 'The quality of friendship is playing out in front of your eyes. Quantity does NOT matter if the quality is not there.', 'created': '2024-11-09 19:49:55', 'submission_id': '1gmcc16'}
{'comment': "I lost many friends because I voted for Trump. I'm also about to lose my wife. It's crazy because a party so rooted in the idea of acceptance for those who are different, does anything but accept opinions of others who don't vote the same away.", 'created': '2024-11-09 20:50:35', 'submission_id': '1gmcc16'}
{'comment': 'Just ask them to list what human rights violations were committed against the people they listed. Plot twist: it’s a short list. And by short, it’s 0.', 'created': '2024-11-09 20:59:15', 'submission_id': '1gmcc16'}
{'comment': 'Knew you for 20 years but wouldn’t even search the ever-present evidence of Trump being a true patriot for people of all creeds. They most likely took every bit of leftist propaganda at face value. What tells me that is the “no one is doing that to children” bit. The evidence of that is also everywhere. Love them from afar OP if they can’t agree to disagree then it’s for the best.', 'created': '2024-11-09 21:24:15', 'submission_id': '1gmcc16'}
{'comment': "I'm so sorry this happened to you honey. It's happened to me on multiple occasions. The Left claim to be the party of tolerance, love and understanding, unless you like Trump.", 'created': '2024-11-09 23:34:46', 'submission_id': '1gmcc16'}
{'comment': "If a person doesn't live in reality, its just a matter of time unfortunately.", 'created': '2024-11-10 02:23:23', 'submission_id': '1gmcc16'}
{'comment': 'Didn’t liberals put a statue up of a convicted felon in 2020?\nAnd also, are you losing your rights? Or are you just losing snowflake privileges? \nJesus Christ, get your stuff straight.', 'created': '2024-11-10 06:41:57', 'submission_id': '1gmcc16'}
{'comment': 'You can’t help someone who has been indoctrinated by the media since birth. They are incapable of thinking for themselves. Until they stop believing everything the media tells them, they’ll continue to follow like 🐑 and run around screaming “orange man bad”.', 'created': '2024-11-12 15:28:28', 'submission_id': '1gmcc16'}
{'comment': 'This happened to me exactly. 18 years down the drain.', 'created': '2024-11-14 20:04:09', 'submission_id': '1gmcc16'}
{'comment': 'Yep, you’re totally spot on. I am never very vocal about my political stance because it always results in situations like this, but when Trump won I just had to post something in support of him. I actually had 20 friends either unfollow or block me because of it. \n\nThe most ironic part is that they preach that Trump and his supporters are hateful and want to divide the country, but they are doing exactly that themselves.\n\nIt’s mind bottling lol.', 'created': '2024-11-08 07:44:49', 'submission_id': '1gmcc16'}
{'comment': 'I love the convicted felon issue when it comes up. I can never keep a straight face.', 'created': '2024-11-08 14:45:07', 'submission_id': '1gmcc16'}
{'comment': 'well said', 'created': '2024-11-08 14:39:18', 'submission_id': '1gmcc16'}
{'comment': "I haven't dropped any friends over politics, but if I am talking to a conservative I am always polite and respectful, even if we disagree. And I'm not political on Facebook at all. \n\nMy boyfriend's father was conservative when he was alive, and my boyfriend voted for Trump the last two elections. In 2020 I was comforting my boyfriend. Now this election it is the time for him to do the same for me. \n\nThere is some crossover between Republicans and Democrats on issues. And areas where there isn't going to be agreement. I think that the sorts of Democrats who went around calling all Republicans fascists and wouldn't debate are likely a lost cause though.", 'created': '2024-11-08 17:22:43', 'submission_id': '1gmcc16'}
{'comment': "It's all over the National Park and similar outdoor/hiking forums, people convinced the National Parks are going to shut down and be turned into oil drilling, mining, etc.", 'created': '2024-11-08 14:27:42', 'submission_id': '1gmcc16'}
{'comment': "I keep repeating that P2025 was Democrat propaganda, had nothing to do with Trump, and they were lied to. And then I keep asking to remind me in 4 years when none of the scary shit happens and if they'll admit they were wrong when it doesn't.\n\nI had one person who believes it that I kept asking them to look deeper into it and show me where Trump is tied to P2025. Find me undeniable and verifiable facts that any of the bullshit is directly tied to him. Show me videos with actual quotes saying what they were told he said. I keep asking to show me WHY they believe what they do, and WHY they believe it can and will happen. No one has answers cause no one wants to admit the truth.", 'created': '2024-11-08 17:47:56', 'submission_id': '1gmcc16'}
{'comment': 'It’s where most of their arguments come from. Trump’s a dictator, fascist, wants to end rights to abortion, breach the constitution etc… at least it’s Project 2025 and not Project 2028. This will all get pushed under the carpet soon enough when they realise that P25 was written by a Think Tanks and, as I’ve continued to say, the man you think is going to become Hitler incarnate and rule as a dictator, hasn’t even read the bloody document 😂', 'created': '2024-11-08 18:15:55', 'submission_id': '1gmcc16'}
{'comment': 'There had to be the "right wing" of the "right" that wanted to "rip out" the Herritage Foundation\'s "hair" for giving people ammunition to use in the first place! Vance probably didn\'t even read the thing!!', 'created': '2024-11-08 20:09:34', 'submission_id': '1gmcc16'}
{'comment': 'Dude, it’s so annoying, no matter how many facts and true shit debunking what they’re saying you show and tell them, they still keep saying it. I’m 100% the media knows and they’re just openly spreading propaganda but it’s more annoying with their viewers who believe every little thing they are told by MSM it’s really infuriating. I wish they could just see the truth and think for themselves.', 'created': '2024-11-08 09:24:20', 'submission_id': '1gmcc16'}
{'comment': None, 'created': '2024-11-08 11:05:05', 'submission_id': '1gmcc16'}
{'comment': '>there’s way more conservatives in America than people think\n\nLet them cut off all their conservative friends and family. They’ll cut all their human connections in half and they will end up pretty lonely. But that happens. \n\nIn middle school we would end friendships over having the same crush or not liking the same boy band or having more Silly Bandz and being jealous. And the loneliness that ensued taught us that friendships are more valuable than petty disagreements. Everyone has to learn somehow.', 'created': '2024-11-08 19:32:55', 'submission_id': '1gmcc16'}
{'comment': 'This.', 'created': '2024-11-08 08:06:19', 'submission_id': '1gmcc16'}
{'comment': 'This is so true.', 'created': '2024-11-08 12:29:20', 'submission_id': '1gmcc16'}
{'comment': "Yeah and I suspect they'll come crawling back as well. 20-year friendships can't just end like that, unless they've got something seriously wrong with them.", 'created': '2024-11-08 08:55:52', 'submission_id': '1gmcc16'}
{'comment': 'That’s really sad, and extremely cruel and selfish of your sister. She’s making your baby feel punished and abandoned by her because of her own immaturity, if someone did that to my child, I’m sorry, I don’t care who they are, they are never going near or talking to my child again and I’ll find some way to help my child heal and forget they even existed. That’s just utterly hateful of her to do and absolutely gross to not even think or care about how the baby might feel.\xa0', 'created': '2024-11-08 17:18:08', 'submission_id': '1gmcc16'}
{'comment': 'I am so sorry about your sister. Hopefully, she realizes that family is so much more special than politics. \nMy thoughts are with you.', 'created': '2024-11-08 17:32:33', 'submission_id': '1gmcc16'}
{'comment': "It's sad that family members won't come together over something like national politics", 'created': '2024-11-09 04:42:55', 'submission_id': '1gmcc16'}
{'comment': "Wow, this breaks my heart. I'm so sorry. Sending all my love to you.", 'created': '2024-11-10 22:25:05', 'submission_id': '1gmcc16'}
{'comment': 'And those voters are going to benefit from the policies that Trump enacts. They’ll have more money in their wallets, better and more jobs, and a better overall feeling of security. Even though they don’t deserve it…but Trump will still happily provide that for them, because that’s the promise he’s made for ALL Americans.', 'created': '2024-11-08 10:31:28', 'submission_id': '1gmcc16'}
{'comment': 'I just amazing. I don’t ever hear of Trump supporters, cutting off former friends and disassociating with them because they support Trump’s opposition. what a sad world we live in!', 'created': '2024-11-08 12:46:05', 'submission_id': '1gmcc16'}
{'comment': 'Fr, I have never seen any type of discussion or argument where someone willing admits they had their mind changed. Its almost not in human nature anymore. I have been trying to become aware of this myself', 'created': '2024-11-08 16:53:54', 'submission_id': '1gmcc16'}
{'comment': 'One of my college besties (at least I thought) (we literally lived together for 3 years) hasn’t spoken to me or anyone else in our friend group since 2020 elections so idk', 'created': '2024-11-08 11:52:04', 'submission_id': '1gmcc16'}
{'comment': 'They said it was a 20 year friendship', 'created': '2024-11-08 12:20:01', 'submission_id': '1gmcc16'}
{'comment': 'When kids stopped getting spanked and parents became too complacent to tell them “No”.\xa0', 'created': '2024-11-08 17:20:37', 'submission_id': '1gmcc16'}
{'comment': "Humanity over politics but I'll still always vote the way I believe is best.", 'created': '2024-11-08 13:48:20', 'submission_id': '1gmcc16'}
{'comment': 'You\'re absolutely right. I do the same thing here in my nice red state of South Carolina, as well as with friends and family online. We are self-censoring with the aim of keeping the peace with others, something they never do. Orange Man Bad creeps into everything, everywhere. Its just exhausting. I lost quite a few friends when I "carelessly" shared a substack post from Bari Weiss. Not exactly an extreme right winger there but it dared to counter the narrative at the time.', 'created': '2024-11-08 14:23:48', 'submission_id': '1gmcc16'}
{'comment': "It's always the left doing this stuff. I have never heard of this happening the other way around.", 'created': '2024-11-08 16:21:31', 'submission_id': '1gmcc16'}
{'comment': "Trump's winning the popular vote realllly annoys the Dems because Hillary used her 2016 popular vote margin to insist that she ACTUALLY won the 20216 election. Her ( and her followers) insistence hasn't changed in 8 years.", 'created': '2024-11-08 19:17:27', 'submission_id': '1gmcc16'}
{'comment': 'Yep so according to them the majority of Americans are racists, evil, misogynistic fascists. SMH 🙄', 'created': '2024-11-10 22:36:01', 'submission_id': '1gmcc16'}
{'comment': 'Yeah and I seem to remember him creating more jobs and opportunities for “poc” than any other president in history as well 🤔', 'created': '2024-11-08 13:48:52', 'submission_id': '1gmcc16'}
{'comment': 'Oooooooo.. this is good.', 'created': '2024-11-08 22:23:58', 'submission_id': '1gmcc16'}
{'comment': 'Yup. Last time I checked, we are supposed to put our own oxygen masks on before helping others. I had to do what was best for me.', 'created': '2024-11-09 08:08:57', 'submission_id': '1gmcc16'}
{'comment': 'And republicans never went after Hillary for paying off Christopher Steele & his fake Russian dossier. That had a hell of a lot more effect on the election than a porn star.', 'created': '2024-11-08 16:47:13', 'submission_id': '1gmcc16'}
{'comment': 'It was worse. More people who lived with his presidency as adults understand that nothing bad is going to happen.', 'created': '2024-11-08 22:56:15', 'submission_id': '1gmcc16'}
{'comment': 'They think murdering babies is a human right so who knows what they mean. LOL.', 'created': '2024-11-08 22:56:39', 'submission_id': '1gmcc16'}
{'comment': "This is absolutely insane. I can't imagine letting politics and politicians destroy my relationships. Neither of them are that important.", 'created': '2024-11-08 17:17:40', 'submission_id': '1gmcc16'}
{'comment': "Most my friends on Facebook are liberals and they are in full meltdown. Posting about how they haven't functioned for the past few days, how they are unfriending everyone who supports Trump. How their lives are effectively over, etc. etc. It's really depressing to watch because I know nothing horrible is going to happen to them, but yet the media has told them over and over again they are in grave danger just because he won. I don't get it.", 'created': '2024-11-09 08:10:49', 'submission_id': '1gmcc16'}
{'comment': 'The right to hear Kamala cackle and not be able to say a coherent sentence without a teleprompter. IDK about you, but my thought was "who do I want talking to Putin? Or other world leaders?" I want Trump talking to them, not her.', 'created': '2024-11-09 08:11:51', 'submission_id': '1gmcc16'}
{'comment': 'I kept silent for a while and while in therapy I learned it\'s okay for me to have my own views and standy.ground on them. Once I did so I lost literally all of my "friends". It was devastating but I look forward to making new friends who share my same core beliefs and values. I hope you can see this as a positive for you too!', 'created': '2024-11-08 13:18:29', 'submission_id': '1gmcc16'}
{'comment': 'Kudos to you for being the bigger person and remaining polite and caring. Eventually they’ll realize that they were childish about the whole thing, not they they’ll come and admit they’re wrong or admit they value your friendship over their political own agenda, but that’s on them not on you.', 'created': '2024-11-08 07:49:09', 'submission_id': '1gmcc16'}
{'comment': 'On Nov 6, 2024, America changed its perception of itself.\n\nThe people with traditional values had been keeping their heads down. They now find that they are the majority.\n\nOur duty now is to stay on top of it and to never be cowed again. Keep your heads held high and proclaim and spread your values.\n\nWe won overall, but do not forgive and forget. The Dems are not done trying to destroy Truth, Justice, and the American Way. America will be in danger again as soon as they find another slick leader. Eternal vigilance is the price of liberty.', 'created': '2024-11-08 14:30:56', 'submission_id': '1gmcc16'}
{'comment': 'That’s very manipulative of her. “Believe my beliefs or we are not friends.” Your friend is probably a narcissist, like many other democrats. They don’t really seem to have values, empathy, etc.', 'created': '2024-11-08 14:54:32', 'submission_id': '1gmcc16'}
{'comment': 'my friends dont like donald trump, they kept saying hes a bad person but i voted for who i believe would make our economy better again. i was very tired of the wokeness and i was honest, your friend is immature and delusional just because you and her have separate opinions. dont worry your not alone, im sorry this happened to you 😢', 'created': '2024-11-08 14:34:47', 'submission_id': '1gmcc16'}
{'comment': 'Lifelong CALIFORNIAN here. I’ve never been vocal about politics because I’m a Republican here. I can tell the females out there one thing: I have never in my life heard more often from men that they would die to find a sane Republican mate. They are sick and tired of the liberal freak females.', 'created': '2024-11-08 14:46:25', 'submission_id': '1gmcc16'}
{'comment': "Isn't that the crazy thing? That side pushes the agenda that they're accepting of all thoughts, patterns, and beliefs however they're also the first ones to make it out that you're an asshole for merely disagreeing with something which doesn't conform to their beliefs. \n\nI swear they could end up paying $1 per gallon of gas and still somehow make it out that it was a bad move solely because it was done under Trump.", 'created': '2024-11-08 19:58:00', 'submission_id': '1gmcc16'}
{'comment': 'If they unfollowed you or blocked you then your better off without them in your life.', 'created': '2024-11-08 17:55:13', 'submission_id': '1gmcc16'}
{'comment': "Good riddance, you're better off without them.", 'created': '2024-11-08 19:55:30', 'submission_id': '1gmcc16'}
{'comment': 'Yeah I just refrained from posting anything, I’d get blocked and deleted by a ton of people. Especially because I used to be an obnoxious leftist and they still think I am lol', 'created': '2024-11-09 01:31:25', 'submission_id': '1gmcc16'}
{'comment': "I'm so sorry this happened to you princess. As an intersex woman who's also republican or conservative. It's disgusting how people believe in lies that support their agenda", 'created': '2024-11-10 19:03:00', 'submission_id': '1gmcc16'}
{'comment': "'convicted felon' gives Trump street cred and has been credited with attracting more male POC votes. Trump made 'lawfare' a mainstream issue - and his tenacious fight against the government garnered points for 'guts'.", 'created': '2024-11-08 18:58:24', 'submission_id': '1gmcc16'}
{'comment': 'I mean, wasn’t Hillary guilty of doing the same thing? Her campaign paid for the fake Russian dossier. Republicans didn’t pursue it.', 'created': '2024-11-08 16:11:59', 'submission_id': '1gmcc16'}
{'comment': 'That’s awesome to hear! Glad people can find the common ground and acknowledge that there are going to be differences, but those differences don’t mean the other people in your life are bad humans or something. Comments like this give me hope for the future.', 'created': '2024-11-08 17:44:31', 'submission_id': '1gmcc16'}
{'comment': 'Really? 😂😂😂', 'created': '2024-11-08 14:45:34', 'submission_id': '1gmcc16'}
{'comment': 'It’s funny isn’t it. I don’t like to make bets too much in politics because of how unpredictable it is (I put money on Trump mind) but I am so sure P2025 won’t happen and question the motives/reasons why there are full grown adults that think it will.', 'created': '2024-11-08 18:19:06', 'submission_id': '1gmcc16'}
{'comment': 'Please give me some of these facts because I can’t find crap. All I know is that Trump isn’t the one behind it. 😪', 'created': '2024-11-08 10:41:33', 'submission_id': '1gmcc16'}
{'comment': 'Literally 🤣', 'created': '2024-11-08 12:41:12', 'submission_id': '1gmcc16'}
{'comment': 'Get ready for 2028 ya better start now!!', 'created': '2024-11-08 20:04:00', 'submission_id': '1gmcc16'}
{'comment': " You have to think growing up I was taught being different is perfectly fine even if you are different politically, I was always taught if you think differently than someone that's okay you're never going to have a scenario in life where everyone is thinking the same who wants that, but when you have one side that specifically wants to call out your integrity as a person in your morals and whatnot it's really hard to just say you know what let's just agree to disagree and get along because they don't want that. So that's why I try to tell people if they don't want to be actually mature and have some sort of compromise that way we can learn from each other then so be it if they don't want to put in the effort they were never close to you to begin with. I hate losing friendships or relationships but at some point you just got to accept it and the right people will eventually come in your life.", 'created': '2024-11-08 23:58:48', 'submission_id': '1gmcc16'}
{'comment': 'Thank you, I appreciate that', 'created': '2024-11-08 20:22:43', 'submission_id': '1gmcc16'}
{'comment': 'It\'s crazy though. Even with the illegals "We\'ll deport them and let them come back legally." He went to Michigan and got the endorsement of Imans there because he\'s going to end wars. \n\nBut apparently the only thing Kamala could form an opinion on was abortion. And there were countless "cultural" democrats that were/are in denial with how their party is stabbing them in the back.', 'created': '2024-11-08 20:25:00', 'submission_id': '1gmcc16'}
{'comment': "I have seen some concerns about his tariffs policy, I'm no expert in foreign policy if someone doesn't mind explaining the potential benefit to high tariffs\n\nI should probably clarify I did vote Trump/Vance", 'created': '2024-11-09 04:41:00', 'submission_id': '1gmcc16'}
{'comment': 'We just mute them on Facebook for 30 days before and after an election when the pearl grasping gets to be too much. In real life, we mostly agree to disagree and stay away from these subjects when talking.', 'created': '2024-11-08 14:17:08', 'submission_id': '1gmcc16'}
{'comment': 'lol, the exclamatory last sentence makes this sound like trump himself wrote it. 😆', 'created': '2024-11-09 20:37:46', 'submission_id': '1gmcc16'}
{'comment': 'Same thing happened to me.', 'created': '2024-11-08 14:41:09', 'submission_id': '1gmcc16'}
{'comment': "Doesn't matter. I hit hard times at one point, asked a friend of 24 years for a little help, got none, and then got the lamest reason why. \n\nStop assuming everyone thinks/views/ hears/values/processes life like you. They could have been your be all/end all while you were just an after thought.", 'created': '2024-11-08 13:08:00', 'submission_id': '1gmcc16'}
{'comment': "I shared a quote from Jordan Peterson and already got a message from a friend of mine. It was nothing political, but he criticizes the left so he's on that list of people they consider the enemy I guess.\n\nI asked her reasons why she felt that way and never got an answer.", 'created': '2024-11-10 22:30:36', 'submission_id': '1gmcc16'}
{'comment': 'True!', 'created': '2024-11-08 23:44:16', 'submission_id': '1gmcc16'}
{'comment': 'Right lol! I guess we’re all just racists bigots 🤣🤣💀', 'created': '2024-11-11 01:28:10', 'submission_id': '1gmcc16'}
{'comment': 'Trump literally said it would be bad for America to lock her up.', 'created': '2024-11-08 16:49:42', 'submission_id': '1gmcc16'}
{'comment': 'I completely agree.', 'created': '2024-11-08 22:14:02', 'submission_id': '1gmcc16'}
{'comment': "Try attending a church some time, you may not be religious, but a lot of those folks will probably share similar values as you, and a lot of church going folk are nice people that won't cast you out because of beliefs.", 'created': '2024-11-08 14:16:04', 'submission_id': '1gmcc16'}
{'comment': 'Same here, I live in looney Vermont and kept pretty silent last time around (2016-2020). This time I have been pretty open about supporting Trump. Amazing how intolerant these so called tolerant leftists really are.', 'created': '2024-11-08 19:57:39', 'submission_id': '1gmcc16'}
{'comment': '"Eternal vigilance is the price of liberty" I LOVE this!', 'created': '2024-11-09 03:54:28', 'submission_id': '1gmcc16'}
{'comment': "Harris said as much in her concession speech. They haven't booked their U-hauls yet. I personally confidently still expect the shit to hit the fan. But then i don't trust a m.fer so...", 'created': '2024-11-08 21:13:40', 'submission_id': '1gmcc16'}
{'comment': 'It’s funny how they forgot all about the sexual assault allegations made against Biden (& look at Clinton!!!) & also that Kamala practically called Biden a racist at their first primary event.', 'created': '2024-11-08 16:08:58', 'submission_id': '1gmcc16'}
{'comment': 'It’s funny how long man kind made it without expressing their feelings on the internet. I post nothing personal online. The real ones know what’s up with me.', 'created': '2024-11-09 22:05:55', 'submission_id': '1gmcc16'}
{'comment': "Nah. That's silly. Just pave them for a Walmart parking lot!", 'created': '2024-11-08 20:16:45', 'submission_id': '1gmcc16'}
{'comment': 'P2025 will quietly disappear from Dems fear mongering. The Reddit crazies will slowly stop freaking out and then act like it never happened. They never believed such shit. It was republican propaganda to make them look crazy! /s\n\nThey love rewriting history and gaslight over what happened. They did it over Covid and will do it over this as well.', 'created': '2024-11-08 18:33:47', 'submission_id': '1gmcc16'}
{'comment': 'That would depend on the subject, or what part of the post you’re referring to.', 'created': '2024-11-08 10:48:51', 'submission_id': '1gmcc16'}
{'comment': 'They are veterans in this country. They have taken the oath of service many times who is feelings about this country are exactly the same as Trump’s!', 'created': '2024-11-09 20:58:13', 'submission_id': '1gmcc16'}
{'comment': "Whoa, easy there, killer. I was simply saying that OP saidnit was a long friendship. An acquaintance is someone you know, but not well, any may be friendly with. I was simply saying this was a person they knew very, very well. I wasn't implying anything one way or another, just simply supplying information. \n\nI'm really sorry your friend ended up being awful, that's just horrible. With a friendship that long, they're more like family, so the loss is even worse. I hope the pain it's left in your heart heals.", 'created': '2024-11-08 22:43:27', 'submission_id': '1gmcc16'}
{'comment': 'I’ll 2nd this. Best decision I ever made and we all think alike and discuss it. Especially living in a state like New York, where they just passed prop 1 which added additional gender identities to the state constitution under civil rights. So goodbye women’s sports I guess…', 'created': '2024-11-08 14:24:28', 'submission_id': '1gmcc16'}
{'comment': '100%. The most devout people I know are gay Catholics. The media pushes nonsense', 'created': '2024-11-08 22:02:22', 'submission_id': '1gmcc16'}
{'comment': 'I also think shit will hit the fan, when you have people who are so radical in their beliefs, expect them to do radical things. Similar to what happens in the middle east, except it will be our own home grown version of that. Things are probably gonna get bad once trump starts enacting his policies.', 'created': '2024-11-15 03:54:19', 'submission_id': '1gmcc16'}
{'comment': 'i know, i dont know why these people act like this😭 like how brainwashed can they be?', 'created': '2024-11-08 16:10:59', 'submission_id': '1gmcc16'}
{'comment': 'Oh, my bad. Project 2025. I’ve found hardly any real info on it.', 'created': '2024-11-08 10:52:50', 'submission_id': '1gmcc16'}
{'comment': 'A conservative gay person just so happened to help us flip Pennsylvania. The irony of that!', 'created': '2024-11-09 21:59:41', 'submission_id': '1gmcc16'}
{'comment': 'Agreed. Need to be on our toes in january for sure. And after.', 'created': '2024-11-15 03:59:18', 'submission_id': '1gmcc16'}
{'comment': 'Got it https://x.com/simonateba/status/1833356284994732523?s=46', 'created': '2024-11-08 11:05:10', 'submission_id': '1gmcc16'}
{'comment': 'Nah your good let me find the thing the head of the heritage foundation came out and said that Project 2025 is not associated with Trump at all. Which is pretty much the only important information on it because everything after that is null and void since it’s not gonna happen. They can talk about 2025 all they want but it’s pointless if it’s not happening.', 'created': '2024-11-08 11:04:17', 'submission_id': '1gmcc16'}
{'comment': 'The people who wrote it took it out back, dug a big hole, and set it on fire. And then shoved the author in it too.', 'created': '2024-11-08 20:11:24', 'submission_id': '1gmcc16'}
{'comment': 'That guy is awesome! Way to go, Scott!', 'created': '2024-11-10 01:51:41', 'submission_id': '1gmcc16'}
{'comment': 'Also Heritage Foundation releases a conservative "wishlist" every Presidential election year. I looked up 2021, 2017 - I believe it has a different name but it\'s been publicly released every 4 years. Yet, here we are NOT living out "The Handmaid\'s Tale". I actually feel bad for the girls and women who believed (and still believe) Project 2025 is a legitimate goal of the Republican party. But they won\'t listen to facts so I guess they will eventually see the truth when it just doesn\'t happen.', 'created': '2024-11-08 17:11:32', 'submission_id': '1gmcc16'}
{'comment': 'I mean, that would be such an epic troll though. Get a bunch of women in handmaid\'s outfits to show up with "Make Handmaids Great Again" signs.', 'created': '2024-11-08 20:15:27', 'submission_id': '1gmcc16'}
{'comment': 'Interesting info, I didn’t know, well that delegitimizes their claims even more, the only thing that makes this different is that it’s Trump and they actually think he’s an unhinged, insane, nazi so they believe he’ll do it.', 'created': '2024-11-10 10:02:50', 'submission_id': '1gmcc16'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 07:28:37', 'submission_id': '1gmcao2'}
{'comment': 'I love Estee Palti\n\nHere is her YouTube channel \nhttps://youtube.com/@mommyrn88?si=rXFRaDUAMmE-AT5Q', 'created': '2024-11-08 07:29:49', 'submission_id': '1gmcao2'}
{'comment': 'Her post election video is hysterical - Harris shilling for money now her campaign is inexplicably $20 million in the hole.\xa0', 'created': '2024-11-08 14:13:18', 'submission_id': '1gmcao2'}
{'comment': 'Trump offered to pay her debt. His troll game is strong!', 'created': '2024-11-10 05:25:49', 'submission_id': '1gmcao2'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 06:46:31', 'submission_id': '1gmbn8u'}
{'comment': 'This is one of the most important pieces of legislation that Trump administration could try to pass. Even if they don’t succeed, it’ll put Democrats in a poor light if they don’t support it.', 'created': '2024-11-08 08:25:23', 'submission_id': '1gmbn8u'}
{'comment': 'The fact that they didn’t require IDs to vote is pretty messed up', 'created': '2024-11-08 06:54:08', 'submission_id': '1gmbn8u'}
{'comment': "I know you're trying to insinuate cheating, which libs always have to some degree: but the correlation has far more to do with thise states being blue and having idiotic leftist laws", 'created': '2024-11-08 13:02:04', 'submission_id': '1gmbn8u'}
{'comment': "I'm sure that's just a coincidence. 😂", 'created': '2024-11-08 07:05:17', 'submission_id': '1gmbn8u'}
{'comment': "I hear this all the time, and I can't wrap my head around this. \nThere are states where you can walk into a polling place and they'll hand you a ballot to fill out, No questions asked, no ID required, no verification of address, no nothing? \nHow about a signature? Do any of you live in any of those state? How does it work? \nI'm from/live in Tennessee and I cannot image how the process could be anything other than being registered to a specific polling location, providing identification, a signature verification and a volunteer's signature confirmation before even handing you a ballot.", 'created': '2024-11-08 11:48:28', 'submission_id': '1gmbn8u'}
{'comment': 'I live in CA. Went to vote, pulled out my ID to show her, she said “we don’t need that.”', 'created': '2024-11-08 19:30:45', 'submission_id': '1gmbn8u'}
{'comment': 'Hahahahahahahaa', 'created': '2024-11-08 09:13:30', 'submission_id': '1gmbn8u'}
{'comment': 'Color me shocked…', 'created': '2024-11-08 12:14:22', 'submission_id': '1gmbn8u'}
{'comment': "That's actually insane", 'created': '2024-11-08 10:07:10', 'submission_id': '1gmbn8u'}
{'comment': 'Wow. Also explains the loss of 15 million Democrat votes from the lax Covid voting of 2020.', 'created': '2024-11-08 14:33:13', 'submission_id': '1gmbn8u'}
{'comment': 'Hoping the future Republican-held House and Senate will enact legislation for an amendment that stipulates only American citizens and naturalized citizens can vote and everyone must provide a picture ID to vote.', 'created': '2024-11-08 20:10:06', 'submission_id': '1gmbn8u'}
{'comment': "I hear this all the time, and I can't wrap my head around this. \nThere are states where you can walk into a polling place and they'll hand you a ballot to fill out, No questions asked, no ID required, no verification of address, no nothing? \nHow about a signature? Do any of you live in any of those state? How does it work? \nI'm from/live in Tennessee and I cannot image how the process could be anything other than being registered to a specific polling location, providing identification, a signature verification and a volunteer's signature confirmation before even handing you a ballot.", 'created': '2024-11-08 11:48:28', 'submission_id': '1gmbn8u'}
{'comment': "I hear this all the time, and I can't wrap my head around this. \nThere are states where you can walk into a polling place and they'll hand you a ballot to fill out, No questions asked, no ID required, no verification of address, no nothing? \nHow about a signature? Do any of you live in any of those state? How does it work? \nI'm from/live in Tennessee and I cannot image how the process could be anything other than being registered to a specific polling location, providing identification, a signature verification and a volunteer's signature confirmation before even handing you a ballot.", 'created': '2024-11-08 11:49:39', 'submission_id': '1gmbn8u'}
{'comment': 'They are claiming that there are 15 million votes missing. May be they got " Raptured".', 'created': '2024-11-08 12:03:32', 'submission_id': '1gmbn8u'}
{'comment': 'Wait, how did she get the other two?', 'created': '2024-11-08 11:51:28', 'submission_id': '1gmbn8u'}
{'comment': 'THAT IS A MIND BLOWING STATISTIC. WTF but it makes perfect sense.', 'created': '2024-11-08 14:50:45', 'submission_id': '1gmbn8u'}
{'comment': 'I was a first time voter and was really surprised all I needed to say was name, birthday, and address. That is public info for a lot of people.', 'created': '2024-11-08 15:12:07', 'submission_id': '1gmbn8u'}
{'comment': 'Was Washington one of them? This was my first time voting since I just turned 18 this March and I did mine through mail in.', 'created': '2024-11-08 15:47:57', 'submission_id': '1gmbn8u'}
{'comment': "Conservative living in MD -- they don't ask for ID at the polling place, but a voter registration is required, which required identification.", 'created': '2024-11-08 16:14:07', 'submission_id': '1gmbn8u'}
{'comment': 'In my state, no ID is required, but they match signatures.', 'created': '2024-11-08 16:17:08', 'submission_id': '1gmbn8u'}
{'comment': 'They need to check on those states asap', 'created': '2024-11-08 16:34:54', 'submission_id': '1gmbn8u'}
{'comment': 'It’s almost like ……oh never mind.', 'created': '2024-11-08 16:36:34', 'submission_id': '1gmbn8u'}
{'comment': "What state requires no ID to vote? I live in KY, and the lowest form of ID is a debit card. I'd rather see a picture ID, but we do require something.", 'created': '2024-11-08 17:14:52', 'submission_id': '1gmbn8u'}
{'comment': 'I really hope Voter ID is on the menu', 'created': '2024-11-08 18:39:55', 'submission_id': '1gmbn8u'}
{'comment': 'I’d say the correlation is more due to the fact these states are very liberal to begin with if they’re not requiring ID, rather than the amount of illegal votes being enough to change the outcome in these very blue states', 'created': '2024-11-08 19:37:26', 'submission_id': '1gmbn8u'}
{'comment': "I'm pretty sure if we had free and fair elections, no democrat would ever be president again. Voter ID, No ballot harvesting, paper ballots, and limited absentee ballots are all democrat's worst nightmares.", 'created': '2024-11-08 20:00:51', 'submission_id': '1gmbn8u'}
{'comment': 'Anyone shocked.', 'created': '2024-11-08 20:54:25', 'submission_id': '1gmbn8u'}
{'comment': '🤔. And it still didn’t help.', 'created': '2024-11-08 22:25:54', 'submission_id': '1gmbn8u'}
{'comment': 'I am surprised that the vice president lied as a fear tactic to get votes. 😏. I’m not. Lol. Also there were so many other lies. It’s kinda sad. I’m just glad that a majority of the us was able to see Through the smoke and mirrors and bullshit. Almost had to break out my fishing waders it was getting so deep.', 'created': '2024-11-08 22:30:50', 'submission_id': '1gmbn8u'}
{'comment': 'Oh yeah wasn’t she trying to legalize weed…..wasn’t she a prosecutor that convicted a lot of people for weed charges??? 🤔. If she sold her soul to the devil to be the president….I hope the devil gets a refund.', 'created': '2024-11-08 22:33:15', 'submission_id': '1gmbn8u'}
{'comment': 'There ya go then.', 'created': '2024-11-08 23:44:45', 'submission_id': '1gmbn8u'}
{'comment': 'Wow what a coincidence.', 'created': '2024-11-09 01:39:35', 'submission_id': '1gmbn8u'}
{'comment': 'Why is it that all the states that are still counting votes are blue?', 'created': '2024-11-10 01:33:30', 'submission_id': '1gmbn8u'}
{'comment': 'President Trump needs to make voter ID and proof of citizenship legal nationwide, for future elections', 'created': '2024-11-11 07:41:20', 'submission_id': '1gmbn8u'}
{'comment': 'I voted in KS. Handed my DL to the lady, she turned it over and hit the little scanner, asked me to verbally confirm my address (I moved since my DL was issued but registered in my new area correctly). No issue.', 'created': '2024-11-08 15:57:57', 'submission_id': '1gmbn8u'}
{'comment': 'But it’s racist \n\nOh wait, it’s racist to assume someone doesn’t have or can’t get ID based on their skin color, especially in cities controlled by democrat leadership. You can add their hugely successful fund raising campaigns that demonstrate their ability to get those that need help to get ID. \n\nClearly NO ulterior motives here, move along, nothing to see here!!!', 'created': '2024-11-08 14:03:32', 'submission_id': '1gmbn8u'}
{'comment': 'House, Senate, Presidency, Supreme Court. I don’t see how they couldn’t pass something that requires voter ID across all states', 'created': '2024-11-08 13:46:31', 'submission_id': '1gmbn8u'}
{'comment': 'I don’t know why Republicans still waste time living in blue states.', 'created': '2024-11-08 07:03:25', 'submission_id': '1gmbn8u'}
{'comment': 'Deep thoughts...', 'created': '2024-11-08 18:30:07', 'submission_id': '1gmbn8u'}
{'comment': 'This is really it. The states she won, she was always gonna win. The states she could lose, she did', 'created': '2024-11-08 14:27:18', 'submission_id': '1gmbn8u'}
{'comment': 'I agree but a lack of voter ID doesn’t help either.', 'created': '2024-11-08 13:47:26', 'submission_id': '1gmbn8u'}
{'comment': 'I believe under the guise of Covid, a lot of these states have also taken to arbitrarily mailing out millions of voting ballots even though not requested to do so?\n\nThat opens up many pathways for fraud and error.', 'created': '2024-11-08 16:18:06', 'submission_id': '1gmbn8u'}
{'comment': 'I line in NJ. When I went to vote, I just needed to verbally give them my name and address and then sign a computer screen. No ID required at all. Wife had same experience at a different polling location. Fraud is therefore unbelievably easy. My dad lives in Israel and wasn’t planning on voting. I easily could have just given his name and former address, faked his signature and then voted for him. Sketchy af system', 'created': '2024-11-08 13:23:23', 'submission_id': '1gmbn8u'}
{'comment': 'in IL I go to my polling place and they hand me the list of names/addresses and say to cross myself off/sign next to it. I always wonder what would happen if someone else crossed my name off already.', 'created': '2024-11-08 14:22:23', 'submission_id': '1gmbn8u'}
{'comment': "I just did a little reading on this. It is not quite that bad. You have to use a photo ID when registering and then on voting day you can use something like a utility bill. All states will issue a photo ID (non driver license) which should be easy for everyone to get. If you need a photo ID to register why wouldn't you just need to bring it to vote. I am for ensuring everyone can vote but you should have to have a photo ID.", 'created': '2024-11-08 12:59:13', 'submission_id': '1gmbn8u'}
{'comment': "In California I gave my name and had to verify my address. I then had to provide a signature to compare with my voter registration. They then advised me that my mailed out ballot (I hadn't filled that one out) would be invalidated since I was voting in person. No ID required.", 'created': '2024-11-09 06:44:23', 'submission_id': '1gmbn8u'}
{'comment': 'They only asked for my name and address in CA. No proof of ID or signature or nothing. I straight up could’ve voted using my dad’s name and they wouldn’t have even known. What a fcking joke', 'created': '2024-11-09 10:51:51', 'submission_id': '1gmbn8u'}
{'comment': 'You have to verify your address and signature a lot of the time.\n\nWould it be easy to pretend to be someone else and use their vote? Idk maybe especially in some states but thats beside the point people mean when they make posts like OPs.\n\nThere’s a set list of voters that are able to vote…yes sometimes small amounts of dead people are left on the list but the reality is if there was any large scale voter fraud going on you would hear about it because people would be showing up to vote and wondering why the poll workers are saying they already voted\n\nThat being said 100% we should require verification of identity with photo id or similar really no excuse not to have it', 'created': '2024-11-09 11:10:41', 'submission_id': '1gmbn8u'}
{'comment': "Apathy.\n\nPeople didn't care to vote. \n\nBut, we had the same number of voters in 2012, 2016, 2024.\n\n2020 was millions more, during the height of covid.\n\nWonder where those millions more votes came from?", 'created': '2024-11-08 12:35:55', 'submission_id': '1gmbn8u'}
{'comment': "I mean, they could sidestep that entire issue like so:\n\n1. IDs required to vote\n2. IDs required to be free to citizens. \n\nThey can just get tax money elsewhere, they're not going to feel that income loss.", 'created': '2024-11-08 14:25:50', 'submission_id': '1gmbn8u'}
{'comment': 'The real issue here is that you can technically view government ID as a voter’s tax, because the government does not provide every citizen with one free of charge - the citizen must pay for one to vote.', 'created': '2024-11-08 15:51:08', 'submission_id': '1gmbn8u'}
{'comment': 'Because it’s racist /s', 'created': '2024-11-08 14:13:41', 'submission_id': '1gmbn8u'}
{'comment': 'Bc its home! I dont know why they dont flip it to Red like my home state of Michigan did 🇺🇲', 'created': '2024-11-08 09:41:31', 'submission_id': '1gmbn8u'}
{'comment': 'Bro we went red this year. Madison is on suicide watch, it’s fucking hilarious.', 'created': '2024-11-09 05:50:05', 'submission_id': '1gmbn8u'}
{'comment': 'Because that’s where my family and friends are', 'created': '2024-11-08 19:29:24', 'submission_id': '1gmbn8u'}
{'comment': 'I love Rhode Island.', 'created': '2024-11-08 13:22:05', 'submission_id': '1gmbn8u'}
{'comment': 'VA isn’t all that bad :) we vote blue for presidents but governors we alternate party affiliation every few years', 'created': '2024-11-10 15:39:47', 'submission_id': '1gmbn8u'}
{'comment': "Because I can't leave until I retire. I can't make 125k as a teacher in any other state. I also still have 1 kid in high-school who will leave California for college but not yet. Not everyone can just go on the spot. There is planning required. Plus 10 counties flipped red here in California. California will always cheat though with permanent mail ballots and no vote ID laws. I plan on collecting my retirement in another state.", 'created': '2024-11-08 14:49:47', 'submission_id': '1gmbn8u'}
{'comment': 'covid was a trojan horse', 'created': '2024-11-08 16:23:44', 'submission_id': '1gmbn8u'}
{'comment': 'I can tell you in IL you do not show a utility bill or anything when you go to vote. \n\nYou are encouraged to register when you get an ID at the DMV, ironically.', 'created': '2024-11-08 23:40:13', 'submission_id': '1gmbn8u'}
{'comment': 'You need an ID for a multitude of things, almost everything in the US \n\nBut if that’s the case they could easily set up a no charge voter only ID at no charge. Why did blue states not go that route', 'created': '2024-11-08 16:17:32', 'submission_id': '1gmbn8u'}
{'comment': "BULL. States can give free ID's. WI has it as I am sure just about every state... more so states like CA.", 'created': '2024-11-08 20:14:48', 'submission_id': '1gmbn8u'}
{'comment': 'They pulled through for us!!!', 'created': '2024-11-08 12:04:36', 'submission_id': '1gmbn8u'}
{'comment': '🤝', 'created': '2024-11-08 14:00:53', 'submission_id': '1gmbn8u'}
{'comment': 'Georgia does this. If you don’t have a drivers license there’s a free ID for Voting Purposes. \n\nThey also accept, expired driver’s license, student IDs from college or universities, employee photo ID from any govt employer, passports, US Military ID, and Tribal IDs', 'created': '2024-11-08 18:35:57', 'submission_id': '1gmbn8u'}
{'comment': 'Because that would cost money and require and an expansion of government bureaucracy. Why bother when it isn’t actually a problem?', 'created': '2024-11-08 18:35:24', 'submission_id': '1gmbn8u'}
{'comment': 'Perfect', 'created': '2024-11-08 18:51:40', 'submission_id': '1gmbn8u'}
{'comment': 'I don’t know if you’re serious or not?\n\nThere is no better investment for our government then ensuring confidence in elections. If people don’t believe it’s fair everything falls apart. It needs to be above reproach. It’s not with this question', 'created': '2024-11-08 18:53:54', 'submission_id': '1gmbn8u'}
{'comment': 'Is there any evidence that there has ever been voter fraud on a scale that would impact election results at any level of American government?\xa0', 'created': '2024-11-08 19:14:51', 'submission_id': '1gmbn8u'}
{'comment': 'Yes, 2020. Dead people can’t vote. 80M democratic voters is evidence enough that it should be throughly investigated.', 'created': '2024-11-08 23:00:38', 'submission_id': '1gmbn8u'}
{'comment': 'There is enough smoke that it should be sorted out, if even in advance.\n\nThere has been instances in history where it has happened, we need the best protection at all times, again, above reproach', 'created': '2024-11-09 02:12:24', 'submission_id': '1gmbn8u'}
{'comment': 'Care to elaborate? Why is 80 million so hard to fathom? Trump currently has 74 at the moment and that will likely go up.', 'created': '2024-11-09 00:28:14', 'submission_id': '1gmbn8u'}
{'comment': "Because that's a 15M spike from this last election and the elections preceding 2020.", 'created': '2024-11-09 01:12:31', 'submission_id': '1gmbn8u'}
{'comment': 'We must find out what happened to those poor vanished Democrats. Democracy falls apart when cheating is suspected.', 'created': '2024-11-09 14:19:09', 'submission_id': '1gmbn8u'}
{'comment': 'California is still only 50 percent counted. There will probably be 5 million votes less this election than in 2020 and that is largely explainable by how shitty of a candidate and campaign the Dems ran. Investigations of voter fraud usually turn up hundreds at the higher limits. That’s not even close to enough to have even a marginal difference.', 'created': '2024-11-09 01:35:31', 'submission_id': '1gmbn8u'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 05:49:46', 'submission_id': '1gmapfs'}
{'comment': 'My top picks for Senate Majority Leader:\n\nJosh Hawley Missouri\n\nRick Scott Florida\n\nMarco Rubio Florida\n\nRand Paul Kentucky\n\nTed Cruz Texas', 'created': '2024-11-08 05:54:34', 'submission_id': '1gmapfs'}
{'comment': 'Just keep collins way the hell away from it.', 'created': '2024-11-08 06:01:36', 'submission_id': '1gmapfs'}
{'comment': 'Hawley or Rubio IMO', 'created': '2024-11-08 06:09:19', 'submission_id': '1gmapfs'}
{'comment': '[removed]', 'created': '2024-11-08 06:30:45', 'submission_id': '1gmapfs'}
{'comment': 'Awe…, just leave the turtle in there and when he strokes out on the senate floor we can just blame the minority leader.', 'created': '2024-11-09 00:06:37', 'submission_id': '1gmapfs'}
{'comment': 'Rick Scott. The other two will split the vote or if they don’t then it will to their way.', 'created': '2024-11-09 00:38:43', 'submission_id': '1gmapfs'}
{'comment': 'Anyone but John Cronyn! No rinos!', 'created': '2024-11-08 11:35:12', 'submission_id': '1gmapfs'}
{'comment': 'Knowing the limpdick, milquetoast scum in the Senate, that POS RINO Murkowski or fuckwit Romney.', 'created': '2024-11-08 15:31:31', 'submission_id': '1gmapfs'}
{'comment': "Hopefully it's Mark Cuban\n\n\n\nJK", 'created': '2024-11-08 06:08:34', 'submission_id': '1gmapfs'}
{'comment': 'Hawley would be a great leader. \xa0I enjoy watching videos of him questioning people lol.', 'created': '2024-11-08 05:57:03', 'submission_id': '1gmapfs'}
{'comment': "Glad to see Hawley at the top of the list, after watching the clips on Youtube of him chewing up that piece of work in charge of DHS, I REALLY like him.. I'd have Ted Cruz and Rand Paul second and third in the list. Don't care for Rubio and don't know much about Scott..", 'created': '2024-11-08 06:18:40', 'submission_id': '1gmapfs'}
{'comment': "She might as well make an official switch to (D).. She's certainly a RINO..", 'created': '2024-11-08 06:19:50', 'submission_id': '1gmapfs'}
{'comment': 'You think Josh could be a president or VP candidate one day', 'created': '2024-11-08 06:22:26', 'submission_id': '1gmapfs'}
{'comment': 'Yup..Why not?', 'created': '2024-11-08 06:24:04', 'submission_id': '1gmapfs'}
{'comment': "I was just asking, I'd support him if he decided to run I always thought he would be one of the better younger Republicans to run one day", 'created': '2024-11-08 15:52:49', 'submission_id': '1gmapfs'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 04:37:13', 'submission_id': '1gm9ezj'}
{'comment': 'Joy Behar continues to mislead the suckers who watch this, pushing biased narratives under the guise of fairness. Liberal elites often act as though they hold a monopoly on wisdom, yet they overlook the true meaning of freedom. The swing states boldly turned red – let’s keep them that way. If Democrats continue down this path, they’ll face a strong contender like J.D. Vance, who could secure the presidency for two terms post DJT. Let’s stand firm and protect our values.', 'created': '2024-11-08 04:43:05', 'submission_id': '1gm9ezj'}
{'comment': 'The View and late night tv is actually entertaining now. Watching them freak out about this landslide victory is comedy gold.', 'created': '2024-11-08 04:44:03', 'submission_id': '1gm9ezj'}
{'comment': 'Did she say the same thing when Democrats had the presidency, house & senate? Were there no checks & balances then?', 'created': '2024-11-08 06:42:46', 'submission_id': '1gm9ezj'}
{'comment': 'I love how they went from election denying to " well we won\'t say his name won" but we\'re the bigger people so try to be peaceful when they were probably told to stop denying.', 'created': '2024-11-08 06:24:37', 'submission_id': '1gm9ezj'}
{'comment': '"Checks and Balances" doesn\'t mean a deadlocked ineffective split-party government. The American people have spoken. If all three branches of government agree, that is practically divine intervention', 'created': '2024-11-10 08:23:36', 'submission_id': '1gm9ezj'}
{'comment': "Thank You Joy !\n\nI thought of you on Election Night when I went to sleep , I was dreaming how you were going to lose it and that thought gave me a Great night's sleep ! THANK YOU , THANK YOU , THANK YOU", 'created': '2024-11-10 17:09:23', 'submission_id': '1gm9ezj'}
{'comment': 'Nothing, imo, will ever be as good as the post 2016 election (season 1 finale) episode of The Circus. It was just an hour of left wing melt down and agony that was hilarious to watch.', 'created': '2024-11-08 07:17:19', 'submission_id': '1gm9ezj'}
{'comment': 'Thank you for the recommendation. I’m watching it now. Perfect title, they are exactly just that, clowns.', 'created': '2024-11-10 08:49:51', 'submission_id': '1gm9ezj'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 04:30:43', 'submission_id': '1gm9aox'}
{'comment': 'Should we tell them she conceded so it doesn’t matter', 'created': '2024-11-08 04:34:32', 'submission_id': '1gm9aox'}
{'comment': 'All those dummies actually believe the votes are being recounted, and that she might actually gain the millions of votes needed?', 'created': '2024-11-08 04:34:15', 'submission_id': '1gm9aox'}
{'comment': 'voting for someone because you like the color of their skin is racist. it goes both ways.', 'created': '2024-11-08 04:49:38', 'submission_id': '1gm9aox'}
{'comment': 'Oh my sweet summer child....\n\nYou will one day grow up', 'created': '2024-11-08 05:27:24', 'submission_id': '1gm9aox'}
{'comment': '“We need a female president because we haven’t had one yet.” Is this why the 19th amendment took so long to pass?', 'created': '2024-11-08 04:43:34', 'submission_id': '1gm9aox'}
{'comment': '"If Kamala Harris doesn\'t win Beyonce is the the only hope," got me dying in laughter way more than it should have! The fact that that was even a real comment and isn\'t satire is insane! \n\nMan, I can\'t stop laughing.', 'created': '2024-11-08 05:49:29', 'submission_id': '1gm9aox'}
{'comment': 'Hasnt Beyoncé and her hubby been to Diddy parties? Usher too.', 'created': '2024-11-08 05:43:23', 'submission_id': '1gm9aox'}
{'comment': 'They say: "Kamala Harris 2024" \n\nThey mean: "open borders for Grapist,criminals and drug addicts \nWe need communism back we hate Christianity and Jesus with it\'s all denominations we\nWe love being dumb by changing our gender 💙💙💙💙💙"\n\nWe say: Trump 2024 \n\nWe mean: He\'s the best \n\nWe love Jesus \n \nThere are two genders only \n\nClose borders for illegal immigrants \n\nIllegal immigration it\'s a crime \n\nTrump 2024 🇺🇸🦅🟥\n\nKeep yapping, Democrats', 'created': '2024-11-08 14:23:38', 'submission_id': '1gm9aox'}
{'comment': 'Stop the count?', 'created': '2024-11-08 04:31:43', 'submission_id': '1gm9aox'}
{'comment': 'It would be extra funny to see Tulsi Gabbard run in 28 and get picked for the primary and then win, all on the republicans', 'created': '2024-11-08 06:41:55', 'submission_id': '1gm9aox'}
{'comment': "We don't need a male, female, white, black, Asian or and of the other bs they keep saying. We need a president that's going to pull us somewhat our of this shit hole the dems have put us in. Sorry if ppl don't like this term but we need an ass hole who isnt going to put up with the bs from anyone, whether it's our own government or other countries. We need someone who's not going to billions in hand outs to illegals and fund other countries wars. We need a president that's going to defend our constitutional rights not try to shut them down. And mostly we need a president that will help it's ppl and this country get back on track where it should be.", 'created': '2024-11-08 14:24:25', 'submission_id': '1gm9aox'}
{'comment': 'They are truly crazy.', 'created': '2024-11-08 07:49:30', 'submission_id': '1gm9aox'}
{'comment': 'Okay, I’ll steal a line from the Elites: if Beyonce is our only hope, I AM LEAVING THIS COUNTRY FOR GOOD\n\nFFS, are these real people? Like they actually exist?', 'created': '2024-11-08 09:26:41', 'submission_id': '1gm9aox'}
{'comment': 'Yea, because the race was so close!! 🤣', 'created': '2024-11-08 12:43:51', 'submission_id': '1gm9aox'}
{'comment': "Maybe those millions of voters Biden had, that Obama and Clinton didn't, will be found again?", 'created': '2024-11-08 15:54:27', 'submission_id': '1gm9aox'}
{'comment': "Yeah even I accepted it well\n\nLet's see what the next four years bring", 'created': '2024-11-08 16:06:58', 'submission_id': '1gm9aox'}
{'comment': None, 'created': '2024-11-08 04:35:28', 'submission_id': '1gm9aox'}
{'comment': 'Yeah because if the votes could be recounted I promise you Harris would suddenly have a few million new ballots that were found in a dumpster outside of McDonald’s.', 'created': '2024-11-08 05:44:19', 'submission_id': '1gm9aox'}
{'comment': 'Why do I get the sense that my tax dollars are paying for these idiots’ groceries? Because I’m not getting “employable American citizen” from this. 🤔', 'created': '2024-11-08 09:28:33', 'submission_id': '1gm9aox'}
{'comment': '🎯🎯🎯🎯🎯 Just like voting for a female because she’s female is a literal description of gender bias in play. Yet Trump just named the FIRST FEMALE CHIEF OF STAFF in history and did so on her merits as the right PERSON for the job, not because she’s a she. I wonder why Biden or Clinton or WokeBama didn’t do so? Surely there was a highly qualified female candidate for that position in their administrations?', 'created': '2024-11-08 09:31:25', 'submission_id': '1gm9aox'}
{'comment': "Voting for someone because you prefer thier gender it's racist \n\nWe've voted for the right person, mentality and president \n\nMAGA", 'created': '2024-11-08 14:28:55', 'submission_id': '1gm9aox'}
{'comment': 'Hahaha my hubs says that all the time. Are you from Ohio? (I’d never heard it before I met him).', 'created': '2024-11-08 09:32:06', 'submission_id': '1gm9aox'}
{'comment': "*we ain't have one yet*", 'created': '2024-11-08 04:56:37', 'submission_id': '1gm9aox'}
{'comment': "I'm just going to start saying that we need stuff solely because we haven't had it before and see where I end up in life...\n\nThese people on TikTok are idiots.", 'created': '2024-11-08 05:52:30', 'submission_id': '1gm9aox'}
{'comment': 'I believe they are lying low atm, hoping for the Diddy stuff to quiet down lol', 'created': '2024-11-08 08:28:54', 'submission_id': '1gm9aox'}
{'comment': 'Ya I just seen a video and they are doing a "petition" for a recount', 'created': '2024-11-08 07:04:57', 'submission_id': '1gm9aox'}
{'comment': 'We had a mock election at my school. It’s an extremely conservative subsection of Michigan and a very religious school (we are attached to our church and all our teachers need to be members in good standing). My kindergarten girls voted for Kamala because she was a girl. Which is a fine reason when you’re five and I didn’t dissuade them at all. I just can’t believe that full grown adults are making the same choice for the same reason.', 'created': '2024-11-09 23:53:18', 'submission_id': '1gm9aox'}
{'comment': 'I actually picked it up from Reddit lol', 'created': '2024-11-08 16:54:15', 'submission_id': '1gm9aox'}
{'comment': 'Well, one has to be qualified first. The voters saw through Hillary and Kamala. Presidency is too important to just be ticking boxes.', 'created': '2024-11-08 08:27:42', 'submission_id': '1gm9aox'}
{'comment': None, 'created': '2024-11-08 07:12:24', 'submission_id': '1gm9aox'}
{'comment': '*Presidency is too important to just be ticking boxes.*\n\nSee: 2008-2016 as an example', 'created': '2024-11-08 09:33:24', 'submission_id': '1gm9aox'}
{'comment': "Honestly, I think it's just highschoolers who have unlimited access to their phones spreading misinformation", 'created': '2024-11-08 19:10:09', 'submission_id': '1gm9aox'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 04:25:04', 'submission_id': '1gm96yv'}
{'comment': 'That is outstanding', 'created': '2024-11-08 05:09:01', 'submission_id': '1gm96yv'}
{'comment': 'Said it back when she first filed the charges. She should have been arrested for deprivation of rights under color of law.', 'created': '2024-11-08 20:12:41', 'submission_id': '1gm96yv'}
{'comment': 'HAHAHA I LOVE IT!\xa0', 'created': '2024-11-10 00:50:43', 'submission_id': '1gm96yv'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 04:16:04', 'submission_id': '1gm90s4'}
{'comment': 'The liberals do lurk here…welcome to the truth.', 'created': '2024-11-08 04:27:27', 'submission_id': '1gm90s4'}
{'comment': 'Chicago is already set to basically turn over all of the illegal aliens to the homeless system. Even the residents in that bluest of blue cities are totally fed up with the financial burden and having these people forced into their local communities.', 'created': '2024-11-08 04:23:06', 'submission_id': '1gm90s4'}
{'comment': '4-D chess. Gotcha, bitch!', 'created': '2024-11-08 04:22:01', 'submission_id': '1gm90s4'}
{'comment': 'Well there will be some, yes. But I think a lot of people are going to be fine calling ICE on them from the BLUE states', 'created': '2024-11-08 04:22:16', 'submission_id': '1gm90s4'}
{'comment': 'Just heard today that our Governor is going to try to block it - hopefully she gets shut down\n\nEdit: just saw we were the first state mentioned - we have so many here now occupying all of our working class town motels and hotels and as always the wealthy areas aren’t impacted', 'created': '2024-11-08 04:27:59', 'submission_id': '1gm90s4'}
{'comment': 'Trump: "I will end sanctuary cities."', 'created': '2024-11-08 04:35:41', 'submission_id': '1gm90s4'}
{'comment': 'Sounds like a 2 part win deport from red states let the blue states be sanctuary state but tell tjem no aid until they stop harboring them and let them stew in their own mess until they cave.', 'created': '2024-11-08 04:48:31', 'submission_id': '1gm90s4'}
{'comment': "There is a reason you saw trump gain ground in blue states and cities like NYC. People are sick of the chaos bought about by Bidens open border policy. These governors might say they're gonna resist to virtue signal but when the times comes they'll be calling for the deportations too. That or they'll be voted out after these cities collapse under the burden of their virtue signalling.", 'created': '2024-11-08 07:24:33', 'submission_id': '1gm90s4'}
{'comment': 'All "Red" states should start sending illegals to "Blue" states right now. Send illegals to blue state governor\'s mansions and state capitals!', 'created': '2024-11-08 07:03:57', 'submission_id': '1gm90s4'}
{'comment': "I do not feel bad whatsoever. Many of these illegals have had well over four years to become naturalized citizens. Yet they wanted to continue dodging taxes, use our infrastructure, welfare, medical systems and send most of their income back across the border hurting our economy even more. \n\nI don't even care if they have children. If American Parents break the Law, they don't get a free pass for being Illegal, they get prosecuted and rightly so, that's how Laws work. Americans parents go to jail and lose their children. \n\nSo remind me why we should be treating illegals differently than we treat our fellow americans?", 'created': '2024-11-08 15:28:25', 'submission_id': '1gm90s4'}
{'comment': 'There needs to be a straight up override. We have the senate now. Cutoff funding unless jails have all immigration info provided. Go through public school rolls and check citizenship of each and every student. Do surprise visits with ICE to local businesses and government offices', 'created': '2024-11-08 05:09:40', 'submission_id': '1gm90s4'}
{'comment': 'Deport anyone who is here illegally that’s committed a crime (beyond being here). Then deport anyone who was on government assistance (also take them off first). Then make the regulations and penalties for employing anyone illegal harsher and harder. If they can’t work they will be forced to leave on their own.', 'created': '2024-11-08 07:38:00', 'submission_id': '1gm90s4'}
{'comment': 'Pennsylvania went pretty red this time, it’s normally a purple state. It has no designated sanctuary cities, but Philadelphia may as well be one. They call themselves a “Welcoming City” where they won’t turn over people to ICE and will only detain them with a judicial warrant. Our governor is a democrat, but I don’t think he’s expressed any interest so far about allowing folks being deported to come here. He’s smart enough to know that federal financial funding would end.', 'created': '2024-11-08 07:30:07', 'submission_id': '1gm90s4'}
{'comment': 'A lot of Blue states are already bankrupt. ** Cough, New York and Illinois, Cough **\n\n\nThey need to give up any sanctuary city status. Or no bail out. None.', 'created': '2024-11-08 19:55:42', 'submission_id': '1gm90s4'}
{'comment': 'Nothing like states openly flouting federal law.\xa0 That will end well.\xa0', 'created': '2024-11-09 17:59:27', 'submission_id': '1gm90s4'}
{'comment': 'Let them it will still put them in a smaller area and make tjem easier to find and the while sanctuary state can be fixed at the same time. A 2 for one deal.', 'created': '2024-11-12 18:39:07', 'submission_id': '1gm90s4'}
{'comment': 'There you go! And then we flip Illinois in 2028', 'created': '2024-11-08 04:26:30', 'submission_id': '1gm90s4'}
{'comment': 'My state too. I live on the line of a sanctuary city and it’s not pretty. Can’t even walk my dogs when it’s dark anymore. Our governor (The infamous Healey) is a sociopath.', 'created': '2024-11-08 04:37:53', 'submission_id': '1gm90s4'}
{'comment': 'We gave the dems a good fight this time! If we had voter ID I bet we would’ve flipped it this year.', 'created': '2024-11-08 04:30:14', 'submission_id': '1gm90s4'}
{'comment': 'God please flip this dumbass state I’m sick of being controlled by chiraq', 'created': '2024-11-17 21:08:56', 'submission_id': '1gm90s4'}
{'comment': 'We are in the same state if you’re referring to dimples - it’s wild seeing all the people hanging out in the parking lots of the extended stay hotels around the area either grilling or playing soccer and at one time just randomly crossing the street with traffic', 'created': '2024-11-08 04:40:13', 'submission_id': '1gm90s4'}
{'comment': 'Yup! She’s a damn lunatic! I live in Methuen and drive through Lawrence daily and the shit I see is something I wouldn’t expect to see in a fully developed country. I see people tweaking out on a regular basis, I see drug deals once a week, people sleeping on the sidewalk…\n\nSomeone needs to move these people to Healey’s front lawn. She clearly doesn’t see how much of a shit show Massachusetts has become.', 'created': '2024-11-08 04:51:25', 'submission_id': '1gm90s4'}
{'comment': 'She doesn’t care, all the “elites” are insulated from this in their tony towns and the regular areas pay the price - I drive through woburn a lot, it always had some challenges but the past few years have been something, so many more homeless, saw a guy the other day on the side of the road just freaking out and talking to himself, and all of the hotels have either migrants or homeless in them\n\nHaven’t been up to Methuen in a while, usually when I go it’s up by the loop', 'created': '2024-11-08 04:55:54', 'submission_id': '1gm90s4'}
{'comment': 'So disappointing. Do you think she ACTUALLY has the power to fight against Trump’s deportation plans?', 'created': '2024-11-08 05:13:16', 'submission_id': '1gm90s4'}
{'comment': 'Sure she can block state agencies from working with ICE like they did before but that doesn’t mean they will be totally blocked', 'created': '2024-11-08 05:27:01', 'submission_id': '1gm90s4'}
{'comment': 'I’m just going to try to have hope for this state. I used to love it and really want to love it again.', 'created': '2024-11-08 05:28:13', 'submission_id': '1gm90s4'}
{'comment': 'I’ve given up, will ride it out and then looking to move depending on what happens long term but if I could I’d be out of here.\n\nIt’s stupid expensive, no golf courses that aren’t a fortune or a dump, all the anti 2a laws that do nothing but impact lawful owners and the super liberal residents who think all of this is great', 'created': '2024-11-08 05:31:53', 'submission_id': '1gm90s4'}
{'comment': 'I moved to East TN in 2021. Loving it here. Im not the most social person, nothing but friendly people. I stay away from the city though. No state income tax, 9% sales tax and property taxes on my house are like $750 a year.', 'created': '2024-11-08 08:23:49', 'submission_id': '1gm90s4'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 03:32:45', 'submission_id': '1gm86k6'}
{'comment': 'And the liberals are ignoring it. I sure hope they continue to ignore the facts of this election.', 'created': '2024-11-08 04:02:26', 'submission_id': '1gm86k6'}
{'comment': "Looks like some Republican Senators were able to ride his coat tails too. We're up to 53.", 'created': '2024-11-08 04:14:21', 'submission_id': '1gm86k6'}
{'comment': 'I had a feeling some of the minority vote they pander to would eventually backfire on them when people realized they were being used.', 'created': '2024-11-10 03:23:16', 'submission_id': '1gm86k6'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 03:19:18', 'submission_id': '1gm7x3y'}
{'comment': "Yall see the other stuff on X? Assigning first female chief of staff in US history, planning America's 250th bday. And how he is draining the swamp (term limits in congress!) Very exciting 🥰", 'created': '2024-11-08 04:28:43', 'submission_id': '1gm7x3y'}
{'comment': 'None of that matters if we can’t have tampons in the men’s bathroom now!', 'created': '2024-11-08 04:16:54', 'submission_id': '1gm7x3y'}
{'comment': "When the cat's away, the mice will play.\n\n\nWell, the cat is back.\n\n\nAnd he's hungry.", 'created': '2024-11-08 03:50:38', 'submission_id': '1gm7x3y'}
{'comment': 'He’s done more before taking office than Biden accomplished in 4 years', 'created': '2024-11-08 17:42:26', 'submission_id': '1gm7x3y'}
{'comment': 'As with Obamas first 2 years when the Dems controlled the House and Senate, if there is an agenda, get it into law before the tide turns at mid-terms. FYI, This is how the ACA was passed.', 'created': '2024-11-08 13:09:03', 'submission_id': '1gm7x3y'}
{'comment': 'Team America🇺🇸…. Fuck yeah…. 😎', 'created': '2024-11-08 05:15:13', 'submission_id': '1gm7x3y'}
{'comment': 'I might be able to buy a house!!', 'created': '2024-11-08 03:46:02', 'submission_id': '1gm7x3y'}
{'comment': 'Trump should get a Nobel Prize', 'created': '2024-11-08 19:11:02', 'submission_id': '1gm7x3y'}
{'comment': 'We’re back , baby !', 'created': '2024-11-08 05:06:57', 'submission_id': '1gm7x3y'}
{'comment': 'I remember the old jokes about "you\'re gonna get tired of winning" .\xa0 I genuinely forgot this feeling of constant win after win for conservative/Republican politics lol.', 'created': '2024-11-08 15:37:11', 'submission_id': '1gm7x3y'}
{'comment': 'The swamp tried to promote that Hitler ish to their own detriment.', 'created': '2024-11-09 16:03:37', 'submission_id': '1gm7x3y'}
{'comment': 'This could be the most peaceful/best president the United States has ever had. Heck, the world', 'created': '2024-11-09 22:16:16', 'submission_id': '1gm7x3y'}
{'comment': 'The dems are going to do everything they can to derail everything and make his term as difficult as possible, including leaving their brainwashed zombies to spiral to the put of violence.', 'created': '2024-11-09 18:59:57', 'submission_id': '1gm7x3y'}
{'comment': 'Well give it time they will be begging for the culturally insensitive food they rejected', 'created': '2024-11-10 08:22:31', 'submission_id': '1gm7x3y'}
{'comment': 'Where did you see term limits?', 'created': '2024-11-08 11:54:43', 'submission_id': '1gm7x3y'}
{'comment': 'The man in motion... 👍', 'created': '2024-11-08 04:31:13', 'submission_id': '1gm7x3y'}
{'comment': "How can that be?? He's a misogynist. You'll be telling me he hosts gay weddings at mar-a-lago next... oh wait 😁", 'created': '2024-11-09 18:56:57', 'submission_id': '1gm7x3y'}
{'comment': '🤣🤣', 'created': '2024-11-08 05:33:32', 'submission_id': '1gm7x3y'}
{'comment': 'You leave my husband’s vagina alone!', 'created': '2024-11-09 00:20:33', 'submission_id': '1gm7x3y'}
{'comment': 'Is that you Tim 🤣', 'created': '2024-11-08 16:27:31', 'submission_id': '1gm7x3y'}
{'comment': "And he's carrying a [~~baseball bat~~](https://www.nytimes.com/2024/11/07/us/politics/trump-popular-vote-election-2024.html) big stick.", 'created': '2024-11-08 04:10:24', 'submission_id': '1gm7x3y'}
{'comment': 'He is also experienced. The swamp must be terrified.', 'created': '2024-11-08 05:31:55', 'submission_id': '1gm7x3y'}
{'comment': 'I’m honestly just happy that this short agonizing era of literal lunacy is over. Can’t wait for trump to fire and throw out all of those degenerates.', 'created': '2024-11-08 15:55:54', 'submission_id': '1gm7x3y'}
{'comment': "Yeah, hopefully Trump goes after Blackrock and Vangard for all the shit they've pulled in housing market during the Biden shitshow.", 'created': '2024-11-08 18:01:42', 'submission_id': '1gm7x3y'}
{'comment': 'I hope I can, too!! :) I’m planning on starting my family with the hub under Trump’s presidency.', 'created': '2024-11-08 18:17:22', 'submission_id': '1gm7x3y'}
{'comment': "I'd like to know also. That would be a big win.", 'created': '2024-11-08 14:36:38', 'submission_id': '1gm7x3y'}
{'comment': 'He is armed with anti establishment people', 'created': '2024-11-08 21:18:16', 'submission_id': '1gm7x3y'}
{'comment': 'American reset just can’t wait for it to happen up here in Canada', 'created': '2024-11-08 17:39:00', 'submission_id': '1gm7x3y'}
{'comment': 'https://youtu.be/NcMVdh915AE?si=I0daxXnKDUt6qZuU\n\nThis was a year ago but let’s hope he follows through.', 'created': '2024-11-08 22:11:28', 'submission_id': '1gm7x3y'}
{'comment': 'I had heard that Canada made it illegal to "use the wrong pronouns", but I didn\'t believe it. It was so absurd I just couldn\'t believe it. Then I saw people actually getting threatened, fined, and jailed for it.\n\nWhat an absolute MESS to say the least! I seriously hope y\'all can get the nuts outta office up there.', 'created': '2024-11-09 20:15:42', 'submission_id': '1gm7x3y'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 01:41:47', 'submission_id': '1gm5z3f'}
{'comment': 'Oh FFS. If you’re an adult, do what you want to your own body. I don’t care. I just don’t want to pay for it with my taxes or see your wang in my locker room. And keep your chemical castration and surgery away from the kids. They have no idea what they are asking for. I’m certain if they knew the ramifications of never having an orgasm after being on that garbage they would choose differently.', 'created': '2024-11-08 01:48:52', 'submission_id': '1gm5z3f'}
{'comment': "There's a literal illness that's going on in this country and needs to get figured out", 'created': '2024-11-08 01:51:48', 'submission_id': '1gm5z3f'}
{'comment': 'Just keep this Trans and gender nonsense away from our kids, please.\n\n\n"This is genocide." - Reddit', 'created': '2024-11-08 02:16:03', 'submission_id': '1gm5z3f'}
{'comment': 'When all your permanent victimhood cards have been revoked, make up new ones.', 'created': '2024-11-08 01:47:24', 'submission_id': '1gm5z3f'}
{'comment': 'These individuals make up only 1.6% of the U.S population yet I can’t go one day without hearing or reading about one.', 'created': '2024-11-08 03:06:20', 'submission_id': '1gm5z3f'}
{'comment': 'The fear mongering is crazy! I’m a woman who did IVF & voted for Trump. I’ve never been scared to lose my access to reproductive care. Trump was president for four years, and none of this has gotten taken away in the past. He actually just spoke in favor of it . He also said that abortion bans should be a longer than six weeks. They are trying to paint him as if he is from the Stone Age . It’s so sad people get so brainwashed. I live in a blue state, and if other people are so concerned, they should move to a blue state🤷\u200d♀️', 'created': '2024-11-08 01:51:33', 'submission_id': '1gm5z3f'}
{'comment': 'This is fucking hilarious. The reddit meltdown is glorious', 'created': '2024-11-08 02:04:25', 'submission_id': '1gm5z3f'}
{'comment': 'Is it me or is the reaction from the left even worse this time around than it was in 2016, which quite frankly makes no sense considering they lived through a Trump presidency and never lost any rights. Really shows their stupidity.', 'created': '2024-11-08 02:21:05', 'submission_id': '1gm5z3f'}
{'comment': 'The fucked up part about all this is it will be the Democratic Party that leaves the transgenders high and dry because they’re realizing they don’t have much to gain from advocating for them.', 'created': '2024-11-08 02:21:34', 'submission_id': '1gm5z3f'}
{'comment': 'This is where the democrats propaganda campaigns have done such a great job striking fear into the weak.', 'created': '2024-11-08 02:11:31', 'submission_id': '1gm5z3f'}
{'comment': 'lol they act like it’s the apocalypse! They say we don’t do the research but they’re the ones that done! Trump doesn’t agree with gay marriage but said he’s fine with it and doesn’t care or wanna get rid of it. He worries for men in womens restrooms!', 'created': '2024-11-08 01:56:41', 'submission_id': '1gm5z3f'}
{'comment': 'No one cares about you. Unless you are doing illegal shit.', 'created': '2024-11-08 02:39:36', 'submission_id': '1gm5z3f'}
{'comment': 'Did we miss something? Was there a forced dress code in 2016, and thereafter? Did Trump take your trans card away? Get real people', 'created': '2024-11-08 03:09:40', 'submission_id': '1gm5z3f'}
{'comment': 'The amount of meltdown threads, the world is ending is off the hook\n\nThe ones I love though are those where they say they are leaving - there was a big one about Elon’s trans kid moving out of the US and to use an oft quoted liberal phase all I can think is “Bye Felicia”', 'created': '2024-11-08 02:02:29', 'submission_id': '1gm5z3f'}
{'comment': 'Are they not aware that Trump doesn’t actually endorse project 2025 🤦🏻\u200d♀️?', 'created': '2024-11-08 02:49:42', 'submission_id': '1gm5z3f'}
{'comment': '😂😂😂 Ty you all who keep sharing these I don’t have anything good pop up on my feeds 😂😂😂', 'created': '2024-11-08 03:29:24', 'submission_id': '1gm5z3f'}
{'comment': 'I have never met anyone in my entire life that cares at all about trans adults. This is a manufactured issue that left uses for fear and control', 'created': '2024-11-08 03:34:01', 'submission_id': '1gm5z3f'}
{'comment': 'Yikes. I’m not even against trans people. If you’re an adult, I don’t care what you do to your body or who you date; it’s none of my business. What I won’t stand for is this being exposed to children! Leave them alone.', 'created': '2024-11-08 02:47:39', 'submission_id': '1gm5z3f'}
{'comment': 'The fear mongering is next level lmao', 'created': '2024-11-08 02:31:19', 'submission_id': '1gm5z3f'}
{'comment': 'I love how in an emergency scenario their minds immediately goto HRT.', 'created': '2024-11-08 03:12:19', 'submission_id': '1gm5z3f'}
{'comment': 'Making an appointment with a psychologist should be their first order of business.', 'created': '2024-11-08 02:31:31', 'submission_id': '1gm5z3f'}
{'comment': 'MENTAL', 'created': '2024-11-08 01:58:28', 'submission_id': '1gm5z3f'}
{'comment': 'TDS is running rampant.', 'created': '2024-11-08 02:02:37', 'submission_id': '1gm5z3f'}
{'comment': "Well, now that they won they're going to round up people and put them in concentration camps to -- Wait that was the Democrats.", 'created': '2024-11-08 02:36:00', 'submission_id': '1gm5z3f'}
{'comment': "These wacko opinions, photos, videos about the upcoming zombie apocalypse because Trump won are stupid and have no basis in reality. These idiots are morons that were brainwashed by the pro Harris news media for the last 4 years. During Trump's first term-no internment camps were created for political opponents, no oppression of LGBTQ persons, no storm troopers harassing Democrats, no end to social security benefits, no privatization to veteran's hospitals/clinics.\xa0\n\n\nLet's wait & see more lunatic policies from Biden & Harris in the next 2 months like more mass illegal immigration, hurting Israel, more political prosecutions of Republicans, more regulations that could take years to reverse.", 'created': '2024-11-08 06:15:39', 'submission_id': '1gm5z3f'}
{'comment': 'They want us dead, and claim we want them dead... sounds like grounds for war if you ask me.', 'created': '2024-11-08 09:53:27', 'submission_id': '1gm5z3f'}
{'comment': 'A FB friend of mine is getting a breast reduction in Feb and keeps posting "I\'m scared I won\'t be able to get my top surgery". Like, homegirl shut up', 'created': '2024-11-08 02:21:18', 'submission_id': '1gm5z3f'}
{'comment': 'Anybody have a link to some particularly good lib meltdown threads?', 'created': '2024-11-08 03:16:21', 'submission_id': '1gm5z3f'}
{'comment': 'This is comical 🤣', 'created': '2024-11-08 05:03:06', 'submission_id': '1gm5z3f'}
{'comment': "So what's in a trans bugout backpack?", 'created': '2024-11-08 05:23:56', 'submission_id': '1gm5z3f'}
{'comment': 'are they messing with me right now?', 'created': '2024-11-08 06:02:58', 'submission_id': '1gm5z3f'}
{'comment': 'So now allies need to vote for who they are voting for? Good god get a grip!', 'created': '2024-11-08 06:27:33', 'submission_id': '1gm5z3f'}
{'comment': 'These people are addicts to hormones.', 'created': '2024-11-08 06:55:44', 'submission_id': '1gm5z3f'}
{'comment': 'A trans bug out bag 😂', 'created': '2024-11-08 07:35:06', 'submission_id': '1gm5z3f'}
{'comment': "Both Trump and jd Vance said on Joe Rogans podcast they aren't coming after trans people. They both said you guys can do as you please without fear.\n\nThey only said they are protecting the kids from making life altering decisions when they aren't even adults yet. They aren't even trusted to have a driver license at those ages.", 'created': '2024-11-08 07:47:33', 'submission_id': '1gm5z3f'}
{'comment': 'They just overreacted, if they wanna leave this country just let them go. It’s their right and we don’t need them', 'created': '2024-11-08 09:28:17', 'submission_id': '1gm5z3f'}
{'comment': 'They want to be in danger so bad 😂😂😂', 'created': '2024-11-08 10:52:56', 'submission_id': '1gm5z3f'}
{'comment': 'This is one of the reasons why America is off track.', 'created': '2024-11-08 12:27:45', 'submission_id': '1gm5z3f'}
{'comment': 'victim complex', 'created': '2024-11-08 02:05:05', 'submission_id': '1gm5z3f'}
{'comment': 'People genuinely enjoy cosplaying oppression', 'created': '2024-11-08 02:47:13', 'submission_id': '1gm5z3f'}
{'comment': "What blows my mind is in a years time when all of their delusions didn't come to fruition they wont even be embarrassed about how stupid they sounded, they will just move on to the next subject the media told them to worry about.", 'created': '2024-11-08 03:31:18', 'submission_id': '1gm5z3f'}
{'comment': 'Fakn conspiracy theorists 😂', 'created': '2024-11-08 02:24:07', 'submission_id': '1gm5z3f'}
{'comment': 'They are SO dramatic', 'created': '2024-11-08 02:45:01', 'submission_id': '1gm5z3f'}
{'comment': "It's in EVERY sub. Very dramatic. Lots of propaganda out there fueling this insanity. Vote and go on with your life. You don't need to live in fear ffs. No body cares.", 'created': '2024-11-08 03:00:43', 'submission_id': '1gm5z3f'}
{'comment': 'Hahaha. 🤦\u200d♂️ These people are insane.', 'created': '2024-11-08 03:14:20', 'submission_id': '1gm5z3f'}
{'comment': 'They forgot the most important frame. \nMost importantly, get help from a mental health professional.', 'created': '2024-11-08 03:18:06', 'submission_id': '1gm5z3f'}
{'comment': '"Stay Alive" \n\nAs if Republicans are actively out hunting for them.\n\nThey are so melodramatic. I hope they go to Saudia Arabia and see what rights they have there.', 'created': '2024-11-08 03:44:11', 'submission_id': '1gm5z3f'}
{'comment': 'Get that passport and GET THE FUCK OUT OF HERE! I\'m so sick of these "people" expecting to be treated differently. These people are dumb', 'created': '2024-11-08 03:44:58', 'submission_id': '1gm5z3f'}
{'comment': 'lol 😂 they are ridiculous all fear mongering', 'created': '2024-11-08 03:52:12', 'submission_id': '1gm5z3f'}
{'comment': 'The only thing I really see even changing for trans people is their ability to play in female sports. If they are born male.. Is anything else really gonna happen?', 'created': '2024-11-08 04:04:37', 'submission_id': '1gm5z3f'}
{'comment': 'They are acting like doomsday preppers.', 'created': '2024-11-08 04:17:33', 'submission_id': '1gm5z3f'}
{'comment': 'When will the displays of TDS simmer down?', 'created': '2024-11-08 04:19:38', 'submission_id': '1gm5z3f'}
{'comment': '[https://youtu.be/KDP5qOWWOTs?si=Aac_zlK9yVbKi2QS](https://youtu.be/KDP5qOWWOTs?si=Aac_zlK9yVbKi2QS)\nSkip to like 1:12 .. the dude targets children and that’s normal occurrence with the left.', 'created': '2024-11-08 04:23:03', 'submission_id': '1gm5z3f'}
{'comment': 'Literally babies and tantrums. Sad sad people', 'created': '2024-11-08 04:33:36', 'submission_id': '1gm5z3f'}
{'comment': 'Apparently it’s the apocalypse. Me? I just grilled a beautiful Ribeye and fixed some beautiful fries as a side.', 'created': '2024-11-08 05:00:00', 'submission_id': '1gm5z3f'}
{'comment': 'Enjoy! You’re all delusional, polluted by fake media and the Dem machine!', 'created': '2024-11-08 05:15:32', 'submission_id': '1gm5z3f'}
{'comment': 'It’s hilarious they turn a blind eye to the millions of dems that voted for Trump too lol', 'created': '2024-11-08 05:18:08', 'submission_id': '1gm5z3f'}
{'comment': 'I honestly think short form content has ruined peoples brains they can’t comprehend anything longer than 30 seconds, then they doom scroll listening to constant misinformation… complete idiots. If they actually read facts they would be surprised we have a bright future ahead of us.', 'created': '2024-11-08 05:25:27', 'submission_id': '1gm5z3f'}
{'comment': '"STAY ALIVE?" Wtf', 'created': '2024-11-08 05:40:11', 'submission_id': '1gm5z3f'}
{'comment': "Can't reason someone out of something they didn't reason themselves into. They're just delusional, best to not pay attention to them since its what they live off of.", 'created': '2024-11-08 06:37:09', 'submission_id': '1gm5z3f'}
{'comment': "How do we want them dead. We maybe want some mental health intervention for their gender dysphoria but that's about it, sorry for giving a shit? I guess?", 'created': '2024-11-08 06:57:36', 'submission_id': '1gm5z3f'}
{'comment': 'lol the go bag', 'created': '2024-11-08 07:12:18', 'submission_id': '1gm5z3f'}
{'comment': 'They’re coming apart at the seams 😛\nYou’d think an asteroid was coming the way they act.', 'created': '2024-11-08 07:12:30', 'submission_id': '1gm5z3f'}
{'comment': 'I want to make a comic like this for if we were facing living in Kamalot!', 'created': '2024-11-08 09:26:34', 'submission_id': '1gm5z3f'}
{'comment': 'It’s strange. No Democrat i ask about project 2025 can give me an answer on when Trump said he’d do any of those things. I remember skipping a Kamala ad a few nights before the election and everything they said he’d do was wrong.', 'created': '2024-11-08 10:22:33', 'submission_id': '1gm5z3f'}
{'comment': "I'm so confused by this one. Not once have I seen anyone from the right go after a trans person or try to unalive them in any way shape or form. Why do they think Republicans are going on trans hunting trips?", 'created': '2024-11-08 11:30:21', 'submission_id': '1gm5z3f'}
{'comment': 'No one cares what these people are doing to their own bodies. Absolutely no one. We don’t need to hear about your struggles all the time and your need for handouts. That’s not our issue. It never will be. \n\nWe want you to stop trying to spread your religion and indoctrinating our children. We won’t allow it. We won’t ever allow it. \n\nSo live your life and stop fear mongering. None of us will ever care how another individual lives their life. It’s not our problem, but stop with this shit. No one believes it except for you.', 'created': '2024-11-08 11:49:47', 'submission_id': '1gm5z3f'}
{'comment': 'What kind of presidential candidate would purposely make their side scared of the other candidate? Honestly manipulative smh 😮\u200d💨', 'created': '2024-11-08 12:37:01', 'submission_id': '1gm5z3f'}
{'comment': 'All this fearmongeirng they’re promoting is why the people they claim to care about are freaking out so badly. They just want to keep them under control.', 'created': '2024-11-08 12:50:34', 'submission_id': '1gm5z3f'}
{'comment': 'I’ve noticed liberals have the word fuck as half their vocabulary', 'created': '2024-11-08 13:23:54', 'submission_id': '1gm5z3f'}
{'comment': 'The mental health crisis will soon be very clear.', 'created': '2024-11-08 13:58:13', 'submission_id': '1gm5z3f'}
{'comment': 'If they wanna be alive so bad, why do they keep committing suicide?', 'created': '2024-11-08 14:18:45', 'submission_id': '1gm5z3f'}
{'comment': "Well Trump pledged this morning to stop federal funding of gender affirming care. Here's the full videos! https://youtu.be/0dd40uMOgoc?si=bsBItF0HKoakS9R_", 'created': '2024-11-08 17:50:30', 'submission_id': '1gm5z3f'}
{'comment': 'Trans wasnt a thing 15 years ago. Neither was this woke mindset. Internet brainwashing.', 'created': '2024-11-08 02:28:51', 'submission_id': '1gm5z3f'}
{'comment': "I live in BY-GOLLY WEST VIRGINIA and I can tell you right now that no one gives to shits about what YOU do with YOUR body. Keep it out of schools and use the appropriate facilities that match what's currently between your legs. That's it. \n\nThe problem here is they want attention and they're not getting it. They wanted to be treated the same as everyone and once they got that it wasn't enough. \n\n**No one is trying to kill you and you are more dangerous to yourselves than any right wing boogie-man you're trying to convince the rest of us is out there.**", 'created': '2024-11-08 05:10:51', 'submission_id': '1gm5z3f'}
{'comment': 'This feels like a Family Guy cutaway gag', 'created': '2024-11-08 02:36:53', 'submission_id': '1gm5z3f'}
{'comment': 'Melodramatic as fuck', 'created': '2024-11-08 02:20:32', 'submission_id': '1gm5z3f'}
{'comment': 'Oh no, it’s Assigned Male Comics lol', 'created': '2024-11-08 02:27:02', 'submission_id': '1gm5z3f'}
{'comment': 'I’m glad they’re leaving the country, less crazies.', 'created': '2024-11-08 02:42:54', 'submission_id': '1gm5z3f'}
{'comment': 'Get the fuck out please', 'created': '2024-11-08 03:38:32', 'submission_id': '1gm5z3f'}
{'comment': 'LMFAOSSJSKS WHAT IS THIS THIS IS SO CHILDISH LMFAO', 'created': '2024-11-08 04:57:32', 'submission_id': '1gm5z3f'}
{'comment': 'HRT makes me wanna gag', 'created': '2024-11-08 12:46:57', 'submission_id': '1gm5z3f'}
{'comment': 'How is he treasonous if they hate America?', 'created': '2024-11-08 13:04:52', 'submission_id': '1gm5z3f'}
{'comment': 'https://x.com/vigilantfox/status/1854615652348137693?s=46&t=dR4tmyfY7zg6ezEnzPKVfQ\n\nSo happy our vulnerable children will be protected.', 'created': '2024-11-08 13:17:33', 'submission_id': '1gm5z3f'}
{'comment': 'Most importantly….stay alive 😂😂😂😂😂', 'created': '2024-11-08 13:18:11', 'submission_id': '1gm5z3f'}
{'comment': 'Do these idiots choose to ignore the fact that Trump doesn’t even endorse project 2025, the DNC just pushed it out and everyone on the left chose to believe it.', 'created': '2024-11-08 13:47:44', 'submission_id': '1gm5z3f'}
{'comment': 'oh look, hate speech. funny, how they think its okay when they do it...', 'created': '2024-11-08 14:48:55', 'submission_id': '1gm5z3f'}
{'comment': 'Looney toons whackos.', 'created': '2024-11-08 14:51:51', 'submission_id': '1gm5z3f'}
{'comment': 'It’s like they believe there will be some sort of witch hunt…', 'created': '2024-11-08 14:57:40', 'submission_id': '1gm5z3f'}
{'comment': 'I pity them because they truly feel like they are being forsaken. They need help.', 'created': '2024-11-08 14:59:22', 'submission_id': '1gm5z3f'}
{'comment': 'We need this trans stuff to go away. HRC needs to shift their focus on a REAL issue, not invent one. Maybe they can stop pushing a fake trans agenda and start bringing awareness to human trafficking?', 'created': '2024-11-08 15:06:07', 'submission_id': '1gm5z3f'}
{'comment': 'Lmaooo they’re losing their minds. We just don’t want MEN ruining our women’s right and we don’t want MEN in our bathrooms. Also we need them to stop being offended by every damn thing. They can play make believe all they want, just keep it away from us!', 'created': '2024-11-08 15:38:47', 'submission_id': '1gm5z3f'}
{'comment': 'They’re acting like we’re entering the apocalypse. No sane right-wing person wants them dead, it’s the extremists. They got through the first 4 years of Trump, they can get through 4 more', 'created': '2024-11-08 16:27:34', 'submission_id': '1gm5z3f'}
{'comment': 'I mean do they not understand that most of the United States voted for him.', 'created': '2024-11-08 16:56:36', 'submission_id': '1gm5z3f'}
{'comment': "The Dems need to take responsibility for the fear mongering they did to get people to vote for them. Trans is okay, we want you to leave the kids alone. Trans people will not be hunted down unless you target kids, then you'll be fined and possibly jail time. Trans is not the issue, it's targeting kids that's the problem.", 'created': '2024-11-08 16:59:08', 'submission_id': '1gm5z3f'}
{'comment': 'This project 2025 nonsense is worse now than it was on the campaign', 'created': '2024-11-08 17:06:50', 'submission_id': '1gm5z3f'}
{'comment': 'Unhinged', 'created': '2024-11-08 02:07:31', 'submission_id': '1gm5z3f'}
{'comment': "i've seen posts saying to go to the pharmacy every 3 days and get your birth control prescription to stock up on it, enough to last you 4 years 😭", 'created': '2024-11-08 02:59:48', 'submission_id': '1gm5z3f'}
{'comment': "If yer born with a willie, yer a boy, silly. They have gotten their recognition and their rights. Time to stop pushing. Pay your own way and from children, stay away. Or, just for fun, quit trying to jam it down everyone's throat. Most people have the good sense to leave their personal weirdness at home. I do. He does. She does.", 'created': '2024-11-08 03:02:23', 'submission_id': '1gm5z3f'}
{'comment': 'Exactly. Problem is they want special rights and considerations for their delusion, and tax dollars to pay for them. If you want to be crazy go for it, just leave everyone else (and their dollars) out of it. \n\nAnd most importantly, leave the kids alone. They can’t decide their own bedtime, and certainly have no idea about implications of medical alterations. Parents attempting to push hormones and surgeries on underage children is child abuse.', 'created': '2024-11-08 03:53:45', 'submission_id': '1gm5z3f'}
{'comment': 'Their party needs to be held accountable for the absurd levels of fear-mongering they committed. \n\nEvery single representative being asked how the Dems went from “Trump is going to Democracy” to suddenly congratulating Trump and talking about a “peaceful transition of power,” they are dodging with full force and robotically just repeating that “they will be peacefully transitioning power because that’s what you do in a democracy”\n\nGot it, you’re going to transition power, but how can you tell the world that Trump will literally be the end of our country and is going to pull out Hitler’s playbook and everyone now needs to be afraid for their freedoms and rights and also simultaneously congratulate and honor the transfer of power?\n\nSurely if they actually believed in the destructive rhetoric they’ve propagated and that we just elected Hitler as president, they’d have to pull some sort of martial law and do everything to fight him off, right? I mean, if we truly just elected Hitler, even I’d say that the appropriate response would be a full-blown uprising. Or was Trump really not any of the evil they’ve spewed?\n\nThere are severe consequences to their fear mongering, the absolute fear, terror and hatred that some people are living with right now is a product of the Democratic Party.', 'created': '2024-11-08 06:36:10', 'submission_id': '1gm5z3f'}
{'comment': 'They better call a Wwaaaambulance', 'created': '2024-11-08 02:07:31', 'submission_id': '1gm5z3f'}
{'comment': 'The end of the first infographic, “and most importantly, stay alive.” WTF do they think is going to happen?? The fear mongering is insane.', 'created': '2024-11-08 02:54:47', 'submission_id': '1gm5z3f'}
{'comment': 'No one cares if you’re trans. Just keep it away from our kids. \n\nWe’re not going after you - we literally do not care!!', 'created': '2024-11-08 03:37:50', 'submission_id': '1gm5z3f'}
{'comment': "I got a HUUUUGE closet they can all hide in it's going to be great! You won't need a passport and you won't be killed. Life was not that bad if you go back into the closet you can do whatever you want in there except for kids. Don't...", 'created': '2024-11-08 05:02:51', 'submission_id': '1gm5z3f'}
{'comment': "I know a few kids who have gone through these changes and I can say all 4 of them in their late teens are very screwed up and the parents love all the attention. It's sickening.\n\nMy heart goes out to those kids who at the end just really needed love and guidance and a chance to grow up.", 'created': '2024-11-08 06:01:29', 'submission_id': '1gm5z3f'}
{'comment': 'Haha so dramatic', 'created': '2024-11-08 04:52:01', 'submission_id': '1gm5z3f'}
{'comment': 'Well if I’m being honest, some of yall are interested in other people’s personal choices and want to “govern them” \n\nIMO be trans but Shut the fuck about it. Unless you’re a close family member - fuck off.', 'created': '2024-11-08 07:34:26', 'submission_id': '1gm5z3f'}
{'comment': 'Proudly not an “ally”', 'created': '2024-11-08 14:44:57', 'submission_id': '1gm5z3f'}
{'comment': "Bro, I can't believe the Democrats allow this shit to happend in the U.S. Having million of delusional, paranoid, brainwashed people. It's just not right. I m from Eastern Europe and over here we won't accept this sort of crap. None. What on Earth had happened to the US? Greatest country on this freaking map???", 'created': '2024-11-08 17:29:58', 'submission_id': '1gm5z3f'}
{'comment': 'Please can we just put them on an island and see what happens?', 'created': '2024-11-12 15:46:17', 'submission_id': '1gm5z3f'}
{'comment': 'Abominable. Revelations 21:8.\n\nWe don’t hate you, we hate the spirit you harbor.', 'created': '2024-11-08 05:13:36', 'submission_id': '1gm5z3f'}
{'comment': "Insane. Because the only people I've heard sending any death wishes to anyone are liberals talking about Trump.", 'created': '2024-11-08 18:02:14', 'submission_id': '1gm5z3f'}
{'comment': 'I just imagine these idiots sitting in bunker’s like a 1950s doomsdayer convinced the nukes have dropped.', 'created': '2024-11-08 18:28:52', 'submission_id': '1gm5z3f'}
{'comment': 'None of them are in danger though.. : /\n\nAt least not from the normal people.', 'created': '2024-11-08 19:10:03', 'submission_id': '1gm5z3f'}
{'comment': "It was mentioned on another sub, that this sort of hatred is demonic. It is what I've been thinking. They are so unhinged. I just find it so incredibly sad. They have been lied to so badly.", 'created': '2024-11-08 19:30:25', 'submission_id': '1gm5z3f'}
{'comment': "I've never known an adult to actively harass a stranger who isn't disturbing others. \n\nIt's just basic human nature not to really give a crap about strangers who aren't infringing on your rights.", 'created': '2024-11-08 22:05:17', 'submission_id': '1gm5z3f'}
{'comment': 'These people are so genuinely unhinged and borderline psychotic. I say borderline because I’m trying to be fair and also because they hate borders, so I can feel like I’m being fair while at the same time, kicking them in the ribs.', 'created': '2024-11-08 22:15:23', 'submission_id': '1gm5z3f'}
{'comment': '😂 that’s so sad they feel that way. That’s why I’m crying. 😏', 'created': '2024-11-08 22:35:35', 'submission_id': '1gm5z3f'}
{'comment': 'They’re always so mad. Is that why they’re behind so many school shootings?', 'created': '2024-11-08 22:53:37', 'submission_id': '1gm5z3f'}
{'comment': 'Mass hysteria at its fullest right now. It’s a shame the web/social media is predominantly left. They just don’t know how to decipher truth from nonsense. It’s really shocking to me since the right does not do that', 'created': '2024-11-08 22:57:02', 'submission_id': '1gm5z3f'}
{'comment': '“Stay alive” bro we’re not hunting you down like it’s the hunger games, just stay away from kids', 'created': '2024-11-09 07:15:32', 'submission_id': '1gm5z3f'}
{'comment': 'They live in a fantasy world where they are the biggest victims.', 'created': '2024-11-09 11:50:42', 'submission_id': '1gm5z3f'}
{'comment': '“Stay alive”\n\nThey really think he’s gonna start coming after them 😂 what psychopaths', 'created': '2024-11-09 15:15:19', 'submission_id': '1gm5z3f'}
{'comment': "I've been seeing a bunch of just regular gay people coming out against the trans movement and voting for trump.. nobody wants children targeted. 85% of the country agrees.", 'created': '2024-11-09 21:00:08', 'submission_id': '1gm5z3f'}
{'comment': 'They forgot "Run serpentine when going to the mailbox" and "Upon meeting a stranger, start the conversation by saying, \'Blue Lives Matter, wouldn\'t you agree?\'"', 'created': '2024-11-09 21:32:10', 'submission_id': '1gm5z3f'}
{'comment': 'People are scared. You might not understand their fear, but that doesn’t mean it doesn’t exist.', 'created': '2024-11-08 11:41:10', 'submission_id': '1gm5z3f'}
{'comment': 'I wonder what kinds of things are in that "go" bag?', 'created': '2024-11-08 19:08:13', 'submission_id': '1gm5z3f'}
{'comment': 'People acting like they are literally ww2 jews about to go to camps. What do we say to them in 2028 when literally nothing happened?', 'created': '2024-11-09 01:06:00', 'submission_id': '1gm5z3f'}
{'comment': "Agreed, but I'd add keeping gendered sports segregated based on chromosomes alone.", 'created': '2024-11-08 02:51:40', 'submission_id': '1gm5z3f'}
{'comment': 'Oh absolutely. This person is a clown.', 'created': '2024-11-08 01:55:59', 'submission_id': '1gm5z3f'}
{'comment': 'Lmao this! It’s so simple, I’m sure many can agree (myself included) with this. Nobody is out on a witch hunt for you bc you decided to get surgery. Date who you want. Just don’t force my kid(s) to learn about it or be exposed to it.', 'created': '2024-11-08 02:03:11', 'submission_id': '1gm5z3f'}
{'comment': 'I saw a reel on insta the other day from a lesbian. She was talking about how the trans community has gone so far, and before they started in the LGB community had pretty good support. And then the “TQ” came in pushing it on kids. And she’s 100% correct. I don’t care what you want to do as an adult. Don’t involve my kids in it, and participate in sports based on your biological sex.', 'created': '2024-11-09 03:55:02', 'submission_id': '1gm5z3f'}
{'comment': 'And the Trump policies WILL put more money in their wallets, which they can spend however they want…surgeries, hormones, anti-Trump T-shirts…', 'created': '2024-11-08 06:24:35', 'submission_id': '1gm5z3f'}
{'comment': "And stop using women's sports as a cheat code.", 'created': '2024-11-09 08:05:38', 'submission_id': '1gm5z3f'}
{'comment': '😂😂😂😂', 'created': '2024-11-08 02:40:58', 'submission_id': '1gm5z3f'}
{'comment': 'Yessss! This is literally it. Beautifully said.', 'created': '2024-11-08 06:03:12', 'submission_id': '1gm5z3f'}
{'comment': 'No. I don\'t agree. That\'s delusion talking. Your body is a temple granted by Christ. Those that have polluted it and denied it must be removed. Comments like this just make people feel safe to keep spreading their "transgenderism" to our children. I\'ve lost one child to this. I will not lose another.', 'created': '2024-11-09 23:27:32', 'submission_id': '1gm5z3f'}
{'comment': 'You said this perfectly!', 'created': '2024-11-08 06:39:57', 'submission_id': '1gm5z3f'}
{'comment': 'Do what you want with your body - except have an abortion.', 'created': '2024-11-08 17:02:02', 'submission_id': '1gm5z3f'}
{'comment': 'The orgasm doesn’t go away after transition, fyi.', 'created': '2024-11-08 05:16:00', 'submission_id': '1gm5z3f'}
{'comment': 'Absolutely', 'created': '2024-11-08 01:54:07', 'submission_id': '1gm5z3f'}
{'comment': 'I’ve said this too. Especially with regards to autism. The amount of ABA centers that have gone up is staggering.', 'created': '2024-11-08 01:54:44', 'submission_id': '1gm5z3f'}
{'comment': 'It’s like the Emperor’s New Clothes. Everyone is scared to say- this is crazy!', 'created': '2024-11-08 04:31:34', 'submission_id': '1gm5z3f'}
{'comment': 'Trump Derangement Syndrome', 'created': '2024-11-08 03:35:34', 'submission_id': '1gm5z3f'}
{'comment': 'Combined with demonic influence\xa0', 'created': '2024-11-08 02:47:45', 'submission_id': '1gm5z3f'}
{'comment': 'Seriously! But they say we’re sick for saying there sick lol it makes no sense', 'created': '2024-11-08 04:03:41', 'submission_id': '1gm5z3f'}
{'comment': 'I said something similar in r/politics a long while back and I got hit with a Reddit ban. Happened twice for “transphobia.” I don’t hate trans people.', 'created': '2024-11-08 03:39:27', 'submission_id': '1gm5z3f'}
{'comment': 'Yup.', 'created': '2024-11-08 02:16:39', 'submission_id': '1gm5z3f'}
{'comment': "Honestly you're probably right. Haha. I wonder what's next", 'created': '2024-11-08 01:56:25', 'submission_id': '1gm5z3f'}
{'comment': "They don't have jobs so they just spend their time bitching online. That's why you hear them.", 'created': '2024-11-08 03:10:09', 'submission_id': '1gm5z3f'}
{'comment': 'They have to make the transes the new culture war because they already did abortion and the gays, and it’s not PC to say the N word any more. If they didn’t have a culture war on the boil we might pay attention to economic and constitutional policies.', 'created': '2024-11-08 21:03:37', 'submission_id': '1gm5z3f'}
{'comment': 'I have done IVF too - still waiting for my take home baby (almost 32w on round 2). \n\nI haven’t been worried about losing reproductive care either. \n\nPeople are also saying if you are a mom of a daughter or are pregnant with a daughter, you don’t care about her rights. It’s all ridiculous. \n\nI am excited for the changes that desperately need to happen and to actually have someone who is for the people running our country again.', 'created': '2024-11-08 05:41:41', 'submission_id': '1gm5z3f'}
{'comment': 'Also a woman who did IVF and feel exactly the same way!\xa0', 'created': '2024-11-08 02:37:13', 'submission_id': '1gm5z3f'}
{'comment': 'I was pregnant twice during his last presidency and had all my rights I don’t get what these wackos are saying', 'created': '2024-11-08 03:09:54', 'submission_id': '1gm5z3f'}
{'comment': "Exactly. I'm also in a blue state. There's plenty of room here lol", 'created': '2024-11-08 01:55:12', 'submission_id': '1gm5z3f'}
{'comment': 'They should all just move to California and secede from the United States. There’s plenty of room for them there and they can vote for the marxist shit they think they want.', 'created': '2024-11-08 04:24:18', 'submission_id': '1gm5z3f'}
{'comment': 'I’m a woman and have no fear my rights will be taken away. When I was a democrat I was fearful the first time he was in office. I was truly scared. I quickly realized I got worked up for nothing. We’ll be fine.', 'created': '2024-11-08 07:04:59', 'submission_id': '1gm5z3f'}
{'comment': "They fell hard for the democrat propaganda on P2025. They cannot accept that they've been lied to, so they must act like the sky is falling now.", 'created': '2024-11-08 05:09:37', 'submission_id': '1gm5z3f'}
{'comment': "Fr theyre acting like this shit's the purge 😭", 'created': '2024-11-08 02:54:28', 'submission_id': '1gm5z3f'}
{'comment': "I've literally been saying that. It's hilarious", 'created': '2024-11-08 02:29:09', 'submission_id': '1gm5z3f'}
{'comment': 'Agreed.', 'created': '2024-11-08 07:05:57', 'submission_id': '1gm5z3f'}
{'comment': 'YUP.', 'created': '2024-11-08 02:30:16', 'submission_id': '1gm5z3f'}
{'comment': "It's insane", 'created': '2024-11-08 02:17:07', 'submission_id': '1gm5z3f'}
{'comment': 'Kamala was acting like the world would end and Trump will destroy the country.. now that he’s won she says it’s ok to be sad but it will be ok, winning takes time. 😂', 'created': '2024-11-08 04:09:44', 'submission_id': '1gm5z3f'}
{'comment': "And men in women's sports!", 'created': '2024-11-08 02:00:56', 'submission_id': '1gm5z3f'}
{'comment': 'Considering, "Queers for Palestine" is a thing, I don\'t think research is at the top of their list.', 'created': '2024-11-08 05:03:22', 'submission_id': '1gm5z3f'}
{'comment': 'Exactly! I always wonder, you don’t think that Trump knows/his kids etc are friends with gay people etc? They are rich people who lived in Manhattan! Like they know plenty of gays, plenty of people who did IVF etc. He was president already and never took away anyone’s rights! Idk why they think all of a sudden this will happen. He’s even spoke about all of these things.', 'created': '2024-11-08 02:01:26', 'submission_id': '1gm5z3f'}
{'comment': "I'm a gay and I support Trump", 'created': '2024-11-08 12:35:36', 'submission_id': '1gm5z3f'}
{'comment': "No. They aren't.", 'created': '2024-11-08 02:58:13', 'submission_id': '1gm5z3f'}
{'comment': 'Now they’re trying to come up with some b.s that Vance supports it 💀', 'created': '2024-11-08 03:31:56', 'submission_id': '1gm5z3f'}
{'comment': "No. \nBecause they just read something someone else said and assume it's true.", 'created': '2024-11-08 03:42:35', 'submission_id': '1gm5z3f'}
{'comment': 'I am concerned about project 2025 as I think we all should be. I saw trump said he is bring tom homan into his administration. Is this real and should we be concerned?', 'created': '2024-11-08 03:39:40', 'submission_id': '1gm5z3f'}
{'comment': "Well to them Trump associates with people that are pro P25 so it's guilt by association. Do they really NEED a reason to hate him? No hate is all they know so that's all well get from them. Honestly, what's in P25 that's really all that bad?", 'created': '2024-11-08 13:58:40', 'submission_id': '1gm5z3f'}
{'comment': '"Since the first edition of “Mandate for Leadership” more than 40 years ago, this “policy bible” aims to provide administrations with a blueprint of policy solutions. The Reagan administration implemented nearly half of the ideas included in the first edition by the end of his first year in office, while the Trump administration embraced nearly 64% of the 2016 edition’s policy solutions after one year."\n\n\nhttps://www.heritage.org/press/project-2025-publishes-comprehensive-policy-guide-mandate-leadership-the-conservative-promise', 'created': '2024-11-08 04:05:41', 'submission_id': '1gm5z3f'}
{'comment': 'We got you fam.', 'created': '2024-11-08 03:31:27', 'submission_id': '1gm5z3f'}
{'comment': 'Yup', 'created': '2024-11-08 02:58:30', 'submission_id': '1gm5z3f'}
{'comment': 'Well said.', 'created': '2024-11-08 03:32:56', 'submission_id': '1gm5z3f'}
{'comment': "Right! Like if it's life or death, fuck my meds lol", 'created': '2024-11-08 03:19:42', 'submission_id': '1gm5z3f'}
{'comment': 'Therapists are gonna be booked up.', 'created': '2024-11-08 02:32:49', 'submission_id': '1gm5z3f'}
{'comment': 'How are these people not considered domestic terrorists?', 'created': '2024-11-08 02:00:26', 'submission_id': '1gm5z3f'}
{'comment': '😂😂', 'created': '2024-11-08 02:43:58', 'submission_id': '1gm5z3f'}
{'comment': 'Domestic terrorism', 'created': '2024-11-08 11:29:08', 'submission_id': '1gm5z3f'}
{'comment': "If they got the money, they can get whatever they want.\n\nI just don't wanna pay for it.", 'created': '2024-11-08 02:30:57', 'submission_id': '1gm5z3f'}
{'comment': "I'm currently watching compilations on YouTube.", 'created': '2024-11-08 03:20:07', 'submission_id': '1gm5z3f'}
{'comment': 'Great question', 'created': '2024-11-08 06:48:49', 'submission_id': '1gm5z3f'}
{'comment': "That's why this is so funny", 'created': '2024-11-08 11:27:35', 'submission_id': '1gm5z3f'}
{'comment': 'Exactly. They should just quietly get up and leave', 'created': '2024-11-08 11:28:40', 'submission_id': '1gm5z3f'}
{'comment': 'Oh yeah', 'created': '2024-11-08 02:58:43', 'submission_id': '1gm5z3f'}
{'comment': "The more you're the victim, the more they love you.", 'created': '2024-11-08 03:44:58', 'submission_id': '1gm5z3f'}
{'comment': 'Facts. \n\nAs a servicemember with PTSD, therapy actually helps.', 'created': '2024-11-08 03:19:12', 'submission_id': '1gm5z3f'}
{'comment': 'HAHA I was thinking it but you said it! Lol', 'created': '2024-11-08 17:16:02', 'submission_id': '1gm5z3f'}
{'comment': "They are going to claim he's banning being trans. I see it now. \n\nBut if you actually listen, he's just stopping FEDERAL FUNDING and he's making it essentially the same as a cosmetic surgery. Pay for that yourself if you want it.", 'created': '2024-11-08 18:42:04', 'submission_id': '1gm5z3f'}
{'comment': "It really is brainwashing.\n\nAnd tbh, it was a thing 15 years ago. The ones back then just weren't batshit. They just wanted to do their own thing and kept to themselves.", 'created': '2024-11-08 02:33:52', 'submission_id': '1gm5z3f'}
{'comment': 'It does.', 'created': '2024-11-08 02:41:12', 'submission_id': '1gm5z3f'}
{'comment': 'What can you guess about the person that posted this lol', 'created': '2024-11-08 02:28:32', 'submission_id': '1gm5z3f'}
{'comment': 'And not gonna reproduce!', 'created': '2024-11-08 02:45:36', 'submission_id': '1gm5z3f'}
{'comment': 'How are they not considered domestic terrorists?', 'created': '2024-11-08 17:13:10', 'submission_id': '1gm5z3f'}
{'comment': 'Yes. Apparently', 'created': '2024-11-08 17:14:44', 'submission_id': '1gm5z3f'}
{'comment': 'They do not', 'created': '2024-11-08 17:17:31', 'submission_id': '1gm5z3f'}
{'comment': "Seriously anybody who *still* have (D) next to their name are that way. Just not only the transgender. What they don't know is Trump will have or make Caitlyn Jenner a policy advisor in this area. Trump will not be exclusionary and will find a way to throw them a bone he literally does that with everybody. He'll keep his campaign promises, boundaries will be drawn, and they'll be common sense. I've been banned from more than one subreddit for saying that Trump is a moderate and that's exactly what he's about. Melania actively supports LGBT community also.\n\nThe exactly what the vast majority of the middle of the road people want and why Trump *also* won the popular vote. He expanded voter share even in blue states.", 'created': '2024-11-08 02:34:48', 'submission_id': '1gm5z3f'}
{'comment': 'Do they not know what an IUD is? It lasts 5 years. >.>', 'created': '2024-11-08 03:02:20', 'submission_id': '1gm5z3f'}
{'comment': 'I leave weirdness at home. No one needs to see that... Lol', 'created': '2024-11-08 03:03:13', 'submission_id': '1gm5z3f'}
{'comment': None, 'created': '2024-11-08 07:52:28', 'submission_id': '1gm5z3f'}
{'comment': "If you click on the picture you can see what this person wrote. Yesterday they kept going on and on about being imprisoned. Today it's killed.", 'created': '2024-11-08 02:57:51', 'submission_id': '1gm5z3f'}
{'comment': 'At least not anymore!', 'created': '2024-11-08 17:15:22', 'submission_id': '1gm5z3f'}
{'comment': 'It could be a reality tv show', 'created': '2024-11-12 22:08:00', 'submission_id': '1gm5z3f'}
{'comment': 'Only from the few extremist weirdos who were gonna cause them harm no matter what', 'created': '2024-11-08 20:47:09', 'submission_id': '1gm5z3f'}
{'comment': 'Yeah', 'created': '2024-11-08 20:46:42', 'submission_id': '1gm5z3f'}
{'comment': 'Shots fired.', 'created': '2024-11-08 23:22:37', 'submission_id': '1gm5z3f'}
{'comment': '"told ya so"', 'created': '2024-11-09 03:07:01', 'submission_id': '1gm5z3f'}
{'comment': 'Important addendum!', 'created': '2024-11-08 04:50:57', 'submission_id': '1gm5z3f'}
{'comment': "They are too dumb to realize THIS is all we want. Keep it away from our kids. Damn, it's not rocket science!", 'created': '2024-11-08 02:10:05', 'submission_id': '1gm5z3f'}
{'comment': 'That’s how most gay people felt! Years ago we hard even noticed when someone was gay, it was a part of their life, but not the core of their identity. I blame Tick Tock.', 'created': '2024-11-09 18:56:07', 'submission_id': '1gm5z3f'}
{'comment': 'Well, technically that is someone else’s body you’re aborting.', 'created': '2024-11-08 17:03:11', 'submission_id': '1gm5z3f'}
{'comment': 'https://pmc.ncbi.nlm.nih.gov/articles/PMC9886596/#:~:text=Puberty%20blockers%2C%20cross%2Dsex%20hormones,capacity%20for%20arousal%20and%20orgasm.\n\n“Recently, surgeon and WPATH president-elect, Marci Bowers, raised concern that puberty blockers given at the earliest stages of puberty to birth sex males, followed by cross-sex hormones and then surgery, might adversely impact orgasm capacity because of the lack of genital tissue development (Ley, 2021). One study has reported that some young adults, who had received puberty blockers, cross-sex hormones and laparoscopic intestinal vaginoplasty, self-reported orgasmic capacity (Bouman et al., 2016). However, this finding does not negate Bower’s concerns, as it did not make any assessment of the correlation between Tanner stage at initiation of puberty blockers with orgasm outcome. Of note, some of the patients in the study were over the age of 18 at start of GAT. Further, its findings do not apply to those undergoing penile skin inversion vaginoplasty. Importantly, Bouman et al. found that 32% of their participants self-reported being sexually inactive and only 52% reported having had neovaginal penetrative sex more than once. A recent literature review on sexual outcomes in adults post-vaginoplasty noted the paucity of high-quality evidence but reported that “up to 29% of patients may be diagnosed with a sexual dysfunction due to associated distress with a sexual function disturbance” (Schardein & Nikolavsky, 2022). Another recent systematic review of vaginoplasty reported an overall 24% post-surgery rate of inability to achieve orgasm (Bustos et al., 2021).”', 'created': '2024-11-08 05:19:22', 'submission_id': '1gm5z3f'}
{'comment': 'It most certainly does for young people all over the globe. Look into the Jazz Jennings case. It’s not a reality show- its an abuse story. What two year old knows whats going on downstairs if they arent being fed that? Jazz even stated “I will never have an orgasm and I dont feel like myself.”', 'created': '2024-11-08 06:04:37', 'submission_id': '1gm5z3f'}
{'comment': 'Bro, unless you can have an orgasm from having your butthole licked you won’t be able of finish once you get bottom surgery. It’s not physically possible to make real genitalia with nerves endings that respond properly.', 'created': '2024-11-09 18:58:24', 'submission_id': '1gm5z3f'}
{'comment': "I don't know it seems like something went wrong with parenting and I wonder what happened because of it. Like is it the media that has brainwashed all these people into thinking this way? Is it the schooling? It's scary how bad this is all getting. And when these people explain themselves I don't get one statement that's ever really coherent whatsoever.", 'created': '2024-11-08 01:57:17', 'submission_id': '1gm5z3f'}
{'comment': "Lol it's happening in Texas too, people really think they're going to push that bullshit ideology onto us and it's not going to happen. I will never make anyone feel unwelcomed but the moment you push you're shit on to me we will have a problem.", 'created': '2024-11-08 04:36:40', 'submission_id': '1gm5z3f'}
{'comment': 'And its new virulent mutation: Trans Trump Derangement Syndrome', 'created': '2024-11-08 05:46:08', 'submission_id': '1gm5z3f'}
{'comment': "No it is a sickness, this type of culture that has developed the past 30 years is sick, and the fact that people want to normalize this BS really says a lot about the people that we are dealing with right now. And honestly if Trump hadn't won this presidency they've probably would have had an extremely rude awakening with the way this country and the world's going right now. The fact that people are so brainwashed by this sick far leftist shit really makes you wonder where it all started. When you see normal Democrats voting for Trump because this weird shit continues to get pushed on them that should say a lot.", 'created': '2024-11-08 04:15:11', 'submission_id': '1gm5z3f'}
{'comment': 'any new made up word followed by phobic', 'created': '2024-11-08 04:07:22', 'submission_id': '1gm5z3f'}
{'comment': 'Congratulations!!!❤️ perfectly said! It’s absurd. And then they say that any woman who would vote republican is uneducated.', 'created': '2024-11-08 05:48:32', 'submission_id': '1gm5z3f'}
{'comment': 'Congrats on the bebe!!', 'created': '2024-11-09 02:39:02', 'submission_id': '1gm5z3f'}
{'comment': 'No joke I think I have seen your name in the IVF sub before lol! Happy to meet here 😂', 'created': '2024-11-08 02:38:30', 'submission_id': '1gm5z3f'}
{'comment': 'It’s literally just fearful rhetoric to get people to vote for them. And then these people are brainwashed and believe it. Then they become hateful towards anyone who disagrees.🙃', 'created': '2024-11-08 03:22:26', 'submission_id': '1gm5z3f'}
{'comment': 'Good for you! What made you switch?', 'created': '2024-11-08 15:23:10', 'submission_id': '1gm5z3f'}
{'comment': 'Yep! Meanwhile Trump had nothing to do with P25 and said that’s not his policy LOL, that’s the kicker', 'created': '2024-11-08 05:17:01', 'submission_id': '1gm5z3f'}
{'comment': 'They are purging posts of republican comments. Locking posts and removing comments. It’s insane that they don’t see the problem with that. It’s censorship and propaganda. Everyone has the same opinion cause the other side can’t voice theirs.', 'created': '2024-11-08 04:12:50', 'submission_id': '1gm5z3f'}
{'comment': 'I guess it’s the younger crowd. Those who are 18-20 and were too young to truly appreciate or understand the thriving economy from 2017-2019. They’re pushing a lot of nonsense on TikTok, continuing the brainwashing of the younger generation.', 'created': '2024-11-08 06:58:25', 'submission_id': '1gm5z3f'}
{'comment': 'Shhh this sounds suspiciously like protecting women & girls & protecting their rights (title 9, right to privacy)', 'created': '2024-11-08 02:11:10', 'submission_id': '1gm5z3f'}
{'comment': 'He has even said he loves IVF. Wouldn’t be surprised if they used it for baron TBH', 'created': '2024-11-08 02:38:46', 'submission_id': '1gm5z3f'}
{'comment': 'Matt Walsh posted on X something stupid that got them all riled up saying that now the election is over, Project 25 is basically the agenda.', 'created': '2024-11-08 13:27:43', 'submission_id': '1gm5z3f'}
{'comment': 'No I wouldn’t be honestly. Trump doesn’t control what his individual administration members do on their own time.', 'created': '2024-11-08 05:30:30', 'submission_id': '1gm5z3f'}
{'comment': 'I’ve seen this before. While I take it as a piece of evidence I take it as a grain of salt. The key words here is Trumps administration, not Donald Trump himself. Charlie Kirk talks about this very topic.', 'created': '2024-11-08 04:22:25', 'submission_id': '1gm5z3f'}
{'comment': 'Fantastic meme with the scene from Scarface saying exactly like that on Instagram today hahahaha', 'created': '2024-11-08 02:34:05', 'submission_id': '1gm5z3f'}
{'comment': 'The drama of recategorizing a breast reduction as top surgery to claim victimhood has me rolling my eyes', 'created': '2024-11-08 02:51:19', 'submission_id': '1gm5z3f'}
{'comment': "He's stopping it for minors is my understanding. Not for adults.", 'created': '2024-11-09 01:23:05', 'submission_id': '1gm5z3f'}
{'comment': 'Could be. I never heard about anything woke, trans teens, or trans reading to children 15 years ago. Didnt exist.', 'created': '2024-11-08 02:35:14', 'submission_id': '1gm5z3f'}
{'comment': 'Probably because of the “current “ powers at be. hopefully 4 years of republican rule can turn some of the damage around.', 'created': '2024-11-08 18:28:28', 'submission_id': '1gm5z3f'}
{'comment': "right 😭 and that's not even how prescriptions work", 'created': '2024-11-08 03:24:37', 'submission_id': '1gm5z3f'}
{'comment': '1. “Criminal immunity the president has” - that doesn’t exist. \n\n2. “Recommended” doesn’t mean anything. What has actually happened? What rights have been taken away by Trump? \n\n3. This is the only true statement, Roe V. Wade was overturned. The states now get to decide. Most states have opted for abortion as an option. And 0 states have completely banned abortions without emergency medical exceptions. The one single case you are referring to is not nearly as direct as the left has tried to make it and her death had very little to do with abortion accessibility. \n\nSo you’ve justified the Democrats horrific propaganda about Trump being the end of democracy because of a false claim about his “criminal immunity,” recommendations for contraception and same sex marriage, from a judge that never became law and weren’t given any real thought or consideration, and abortion rights now belonging to the states (which the left also repeatedly lied about and called a federal ban and further claimed to be an “attack on a woman’s right of her own body”) So that justifies Democrats calling Trump the next Hitler? That justifies the sheer panic and horror that some of you Democrats are living with?\n\nThe lies, hateful language, and divisiveness need to stop. And they are coming from the self-proclaimed “party of unity”', 'created': '2024-11-08 08:06:13', 'submission_id': '1gm5z3f'}
{'comment': 'Yep.', 'created': '2024-11-08 20:57:53', 'submission_id': '1gm5z3f'}
{'comment': 'Nope, it is BIOLOGICAL SCIENCE!!!', 'created': '2024-11-08 02:38:28', 'submission_id': '1gm5z3f'}
{'comment': 'They understand it, but they need to recruit more people into their little group and kids are vulnerable to be indoctrinated', 'created': '2024-11-08 08:07:54', 'submission_id': '1gm5z3f'}
{'comment': "Completely agree. I don't think I really knew what a homosexual were until I was like 20. There's no reason kids need to be told what that is beyond perhaps learning about the events in the bible and how it's wrong. My youngest son knows what a gay person is even though he's only 16. When I grew up in Arkansas you just kept any queer stuff to yourself because if you didn't you were gonna get your ass beat. I kind of knew what the f word for gay meant and we'd say it when a man was being a sissy, but I don't think I realized that there were men who would just openly sin like that in real life until I was older. If children are exposed to that they are much more likely to think its ok.", 'created': '2024-11-09 23:33:34', 'submission_id': '1gm5z3f'}
{'comment': 'I do think it’s media more so than parenting. Influencer culture has made people believe they don’t have to work as hard, that they’re more entitled than they are and that everyone has ADHD', 'created': '2024-11-08 01:58:23', 'submission_id': '1gm5z3f'}
{'comment': 'It’s about creating a chain of dependence, the creation of which is intended to break the existing system beyond repair. It’s a combination of the media and big pharma (with implicit big government concurrence) creating generations of broken people _who will always be dependent on them_. The goal is to break the system and eventually force socialized medicine on this country. Once that happens these people will then be dependents of the government who will happily pay heaps your tax $ to big pharma and give the drugs away for free. Once the system exists everyone, regardless of their needs, is forcibly drawn into it.', 'created': '2024-11-08 02:15:04', 'submission_id': '1gm5z3f'}
{'comment': "It's a mixture of things. Civil rights have allowed ethnic cultures to spread their ideas around the US. The mixing of ethnic groups are likely watering down stronger cultures that prevent autism. ADHD is a fake thing. I have employees that claim they have it and doctors give diagnosises for it. My brother in law is a medical doctor that specializes in being a chiropractor and he tells me that ADHD is not a real thing. It is people who think they don't have to work anymore.", 'created': '2024-11-09 23:38:24', 'submission_id': '1gm5z3f'}
{'comment': 'I’m in Texas too! 😊', 'created': '2024-11-08 04:57:58', 'submission_id': '1gm5z3f'}
{'comment': "I feel like it was never this bad until covid was just a huge wave of insanity and toilet paper fights staying inside locked up time stuck on TV and devices making ppl scared lots of brainwashing and fraud and power grabs and really the insanity never left and Trump was right when saying the country needs healing. Some people are still in the same algorithm to keep them traumatized its their feed what's being fed.", 'created': '2024-11-08 05:40:55', 'submission_id': '1gm5z3f'}
{'comment': 'I was literally “left” until right before trump ran in 2020 but it’s beyond ridiculous now so I can definitely relate to the last part of what you’re saying. It’s just beyond crazy. I just don’t understand why they pander to the minorities so much when they need the majority vote. I feel like that’s one of the reasons why they lost this year and thank god they did because we did not need another 4 years down that way even more', 'created': '2024-11-08 04:30:33', 'submission_id': '1gm5z3f'}
{'comment': 'Exactly!! Preach', 'created': '2024-11-08 04:28:44', 'submission_id': '1gm5z3f'}
{'comment': "I feel like it was never this bad until covid was just a huge wave of insanity and toilet paper fights staying inside locked up time stuck on TV and devices making ppl scared lots of brainwashing and fraud and power grabs and really the insanity never left and Trump was right when saying the country needs healing. Some people are still in the same algorithm to keep them traumatized its their feed what's being fed.", 'created': '2024-11-08 05:40:50', 'submission_id': '1gm5z3f'}
{'comment': 'We are everything-phobic according to them', 'created': '2024-11-08 04:43:19', 'submission_id': '1gm5z3f'}
{'comment': 'Thank you so much :). \nSucks I will have no healthcare now ;) because all my rights have been stripped away /s. \n\nJust so funny when they want to talk about accepting others and being accepted but yet, spread so much hatred and are the most judgmental. \n\nIt’s been comical to watch, to be honest.', 'created': '2024-11-08 05:55:46', 'submission_id': '1gm5z3f'}
{'comment': 'Thank you:)❤️', 'created': '2024-11-09 04:01:01', 'submission_id': '1gm5z3f'}
{'comment': 'Yours looked familiar! And SAME. I’ve had to stay off that sub because it’s also riddled with the insanity. Glad there are some of US!\xa0', 'created': '2024-11-08 04:50:19', 'submission_id': '1gm5z3f'}
{'comment': 'Realizing the Democratic Party isn’t so democratic at all. We need a party for the people. Our country, our citizens. I’m done supporting a party who doesn’t prioritize us. The Republican Party has shown me that they put us first.', 'created': '2024-11-08 15:33:39', 'submission_id': '1gm5z3f'}
{'comment': "Of course they don't see a problem with that, it's what they want! They're hypocrites in the fullest sense of the word.", 'created': '2024-11-08 04:46:51', 'submission_id': '1gm5z3f'}
{'comment': 'I got blocked from a sub 😂', 'created': '2024-11-08 05:18:37', 'submission_id': '1gm5z3f'}
{'comment': "The person who posted the things in my screenshots is mid thirties. I'm mid thirties and all the liberals I grew up with are having these meltdowns.", 'created': '2024-11-08 11:24:48', 'submission_id': '1gm5z3f'}
{'comment': 'Exactly! And we all know his pal Elon has used it many times', 'created': '2024-11-08 02:39:52', 'submission_id': '1gm5z3f'}
{'comment': "The link I shared is from the heritage foundation, the think tank that created project 2025. That is their claim.\n\n\nWhat is the difference between Trump and the Trump administration? You don't just vote for a president. You vote for an administration.\n\n\nY'all elected an administration that will implement the policies in project 2025. We know because they did it last time. Good job.", 'created': '2024-11-08 13:20:32', 'submission_id': '1gm5z3f'}
{'comment': 'Yeah. Just stopping federal funding for adults', 'created': '2024-11-09 03:08:03', 'submission_id': '1gm5z3f'}
{'comment': "I had a few trans friends back then. Though I was an adult 15 years ago. They mostly kept to themselves and did their own thing and lived their life. Most people wouldn't know they were trans unless they were told", 'created': '2024-11-08 02:42:41', 'submission_id': '1gm5z3f'}
{'comment': 'Facts. They have never heard of a half life, apparently.', 'created': '2024-11-08 03:29:36', 'submission_id': '1gm5z3f'}
{'comment': None, 'created': '2024-11-08 09:02:59', 'submission_id': '1gm5z3f'}
{'comment': 'This is it exactly. They need more “oppressed” little proletariats for the neo-Marxist revolution.', 'created': '2024-11-08 21:38:59', 'submission_id': '1gm5z3f'}
{'comment': "I'm in Fort Worth Texas right now, I actually voted for the very first time and I am 33, my dad is 65 and he voted for the first time as well. We were always comfortable with Texas and never thought we needed to vote but we both got registered we voted for the first time and it felt good like it really felt like we were making a difference because in the past years can you really get mad if you didn't really vote? Sure you can but it doesn't feel as justifiable when you don't actually put in the work to vote, the day before the election I went to a Atwood store with my dad and there was this Toyota Tacoma with huge Harris and Walz flags and I looked at this 2 women married couple and I said you know where winning the election over y'all right? and they gave me like this shocked look and I laughed I was like I'm just playing with you have a blessed day 🤣🤣🤣🤣 like the fact that people are so uptight about this where they let this thing that the media pushes on people that create so much hate is really sad because I can play around I will never bring negativity or anger on anyone no matter who they are what they look like doesn't matter to me. I'm friends with all types of people and most conservatives our friends with all types of people and they judge character they don't judge anything else. I hope one day the left can truly see that we are not who they think they are. Yes we have a far right of idiots that take things too far and that needs to be dealt with when possible but other than that the majority of us are people that just want to live our lives and not be told how to live it.", 'created': '2024-11-08 06:42:28', 'submission_id': '1gm5z3f'}
{'comment': "It probably was covid, I mean don't get me wrong there were definitely times where I had a really strong amount of anger that came from the way people were thinking and the BS that they were trying to push onto US like I never disliked or hated someone for being different because being different is what makes this country beautiful and I know people are shocked to hear conservative say that but it's the truth. There were times really maybe two or more years ago after Trump lost where people were so arrogant and weren't actually open to the possibility that people can do bad things to get what they want and I'm not going to get into that whole election fraud thing because it's the past and needs to be left but there was a point where that brought a lot of anger in me and I really did start to just like how people were not showing any modesty whatsoever and they were making it look like we were just such evil people. Now you have this media control that's coming over these people's lives and it's sad seeing how all these people that claim to be so educated can't think for themselves and actually see what's real and what's not.", 'created': '2024-11-08 06:34:49', 'submission_id': '1gm5z3f'}
{'comment': 'I believe you’ve suggested the most likely reason. It’s definitely not parenting (speaking from personal experience) and using two young adults as my source/reference of the results I’ve witnessed. During Covid and afterward, even one view of a certain topic spiraled my daughter into a constant feed of very problematic topics on social media. It taught her to use self-harm threats to ensure I would not take her phone or block social media. The last two years of high school were a nightmare. Fortunately, through counseling, constant and loving talks, camps, programs, changing schools, and mostly reminders of my love and her life goals, she’s now a successful college student (but, that mindset and ideology is still there as it was formed through the social media videos around age 16).', 'created': '2024-11-08 12:09:25', 'submission_id': '1gm5z3f'}
{'comment': "And I got to say I've always leaned right but I've been in the middle for a period of my time as well I guess you could say I'm more open-minded than a normal conservative but whatever. The point is there's also a lot of issues with censorship right now that's coming from this leftist media and it's scary even though this isn't technically the media it's social media and I'll give you an example. There's a a main mod for the Texas subreddit that is ran by very far leftist that will literally block and kick people out if they say anything that has any right leaning ideology and there's hundreds and thousands of people that make it look like this subreddit is actually for people in Texas in general when it's definitely a leftist agenda pushed subreddit and on top of that that woman who happens to be trans which is unimportant has tried to get control of other subreddits that have to do with Texas, that's dangerous if you think about it like that ideology is getting pushed on to other people and they're thinking that it's okay to push that narrative on to other people. How do far leftist more importantly think that this country is going to last if everyone is thinking the same way? It's really scary. Because it puts conservative minded people in a offensive-minded position where they feel like they might have to defend themselves in the future. Trump winning was the best thing for this country.", 'created': '2024-11-08 06:58:08', 'submission_id': '1gm5z3f'}
{'comment': 'Same r/findareddit \nThey asked for a reddit for wanting to leave the country due to political reasons.. I said r/getoverit they removed my comment and then hours later banned me 🤷\u200d♂️', 'created': '2024-11-08 06:05:20', 'submission_id': '1gm5z3f'}
{'comment': 'That’s crazy. I mean mental health problems are prevalent throughout the party so that’s another big reason.', 'created': '2024-11-08 16:54:15', 'submission_id': '1gm5z3f'}
{'comment': 'I do know where that link comes from, but the heritage foundation is a different proponent than the Trump administration. The problem is Trump is guilty of being an endorser simply by association. \n\nThat’s the equivalent of you and me being best friends that do everything together, and I go off and murder someone. Now because we are associated you must be guilty by proxy for my individual choices? No, but that doesn’t mean there isn’t going to be some initial suspicion. So I understand where you’re coming from, and it’s a valid point. \n\nTrump does not approve of project 2025, and he is going with his policies from Agenda47. Trumps beliefs do not align with project 2025, and if it did lots of people would have not voted for him as it completely would strip the middle class that includes me because I read it. They did not implement it last time. \n\nYou can’t just believe everything off of MSNBC and CNN.', 'created': '2024-11-08 18:57:49', 'submission_id': '1gm5z3f'}
{'comment': 'I was in the Army with Dont Ask Dont Tell', 'created': '2024-11-08 03:06:47', 'submission_id': '1gm5z3f'}
{'comment': "and you only have a certain amount of refills\nyou can't just stockpile 4 years worth of anything", 'created': '2024-11-08 03:31:18', 'submission_id': '1gm5z3f'}
{'comment': 'Yea I just don’t think your reasons are what is causing the absolute fall-out, hatred, fear, etc. It’s the rhetoric the Democrats have used against Trump. They’ve rallied people to vote against Trump for 8 years and have severely demonized him and his platform. Who wants a demon to run the country?\n\nWhy are Republicans not worried about Tariffs? Pretty simple, checkout 2018 Chinese Tariffs. They were so effective and turned into a huge trade surplus for us that all the Democratic critics who said it would destroy the economy in 2018 made no effort to remove them between 2020-2024. \n\nTariffs are also much more than just an economic math problem - which is usually what major economists miss. They are a bargaining tool that will help us reshape how other countries operate (enforcing quality measures, fixing their own socio-political issues, ensuring compliance in international affairs) if they want to do business with us.', 'created': '2024-11-08 16:41:49', 'submission_id': '1gm5z3f'}
{'comment': 'I’m in the Dallas area & I have lived in many states, & I have to say just in our subdivision it’s the most racially diverse place I’ve ever lived, & everyone gets along peacefully. My very liberal brother & his wife live in MD. I told them that we went to a local Holi festival (we try to attend community events each weekend) & my SIL was astonished that we have an Indian population here. I think in her mind we’re all white rubes “clinging to guns & religion”.', 'created': '2024-11-08 15:41:40', 'submission_id': '1gm5z3f'}
{'comment': 'But I can see the light now tho', 'created': '2024-11-08 08:27:38', 'submission_id': '1gm5z3f'}
{'comment': 'Wow that’s insane! Yes definitely an issue with censorship and freedom of speech if you don’t agree with their ideology! I just watched elons most recent interview podcast with Joe Rogan you should watch it if you haven’t yet! He talks about purchasing twitter/X and the impact that has had on freedom of speech for the better and how badly twitter was previously censoring people. And that’s crazy to hear that story about the Texas subreddit!', 'created': '2024-11-08 13:17:44', 'submission_id': '1gm5z3f'}
{'comment': 'If gay people existed in the Army with don’t ask don’t tell, you could arguably say that “not talking about the gays, didn’t stop the gays from being gay.” Just apply that to trans people existing. Or go to Thailand and bang a ladyboy. There’s a reason that stereotype has been around for decades.', 'created': '2024-11-08 08:03:28', 'submission_id': '1gm5z3f'}
{'comment': "You know it's crazy that Texas has probably the most up and coming diverse population especially going into the future. I don't know I've seen all the numbers I haven't looked but everywhere I've lived and North Texas has been extremely diverse and I think people are shocked when they don't realize how many people regardless of what race you are have conservative beliefs, that's why I tell people you don't really consider Texas a Southern state it's honestly its own entity.", 'created': '2024-11-08 23:42:57', 'submission_id': '1gm5z3f'}
{'comment': "Oh I was personally brainwashed into thinking a lot of things, for me personally when you follow a certain way of thinking it's easy to trick yourself into believing that it's right. That's why I never get mad at someone for thinking differently than me because as we all know you practically learn what you're taught and unless you truly break away from it it is so hard to make adjustments in your way of thinking that's why I was irritated in life at that point, some people make me with their way of thinking I'll always just smile at them and say okay more or less LOL because the only way people can truly change is if you're patient with them I think that's partially why a lot of people literally left the left haha the moment you have slightly different opinions on something they will literally turn on you and the most ruthless way possible. But hey we both know better now and that's all that matters. As long as you're alive you always have the ability to learn.", 'created': '2024-11-08 08:56:29', 'submission_id': '1gm5z3f'}
{'comment': "I just saw some bits and pieces but I'm definitely going to watch the whole thing LOL what's funny is the Trump and Joe Rogan podcast was probably the first podcast I ever listened to and I literally watched all 3 hours while I cleaned up around the house and mean prepped 🤣🤣🤣🤣🤣 I'm definitely thinking about listening to more podcasts going forward. And honestly if you hadn't bought Twitter who knows what would have happened. I don't understand why people think all he's going to turn Twitter into a right leaning machine that's going to be extremely biased LOL like this ain't CNN you can talk your shit from either side and you're not going to get in trouble as long as you're not taking it too far. I literally sent a clown emoji to somebody on tick tock saying they hope Texas Republican voters die that's all I did LOL that comment didn't get takedown but my clown Emoji got taken down and that's all I put one clown imoji 🤣🤣🤣🤣", 'created': '2024-11-09 00:05:16', 'submission_id': '1gm5z3f'}
{'comment': 'Its called gender dysphoria', 'created': '2024-11-08 14:14:39', 'submission_id': '1gm5z3f'}
{'comment': 'Yes, but I’m not sure how this is related to the premise of “not talking about it means it doesn’t exist”', 'created': '2024-11-08 16:34:01', 'submission_id': '1gm5z3f'}
{'comment': 'Never said it didnt exist.', 'created': '2024-11-08 17:47:51', 'submission_id': '1gm5z3f'}
{'comment': 'You said “trans wasn’t a thing 15 years ago” which I understood it as, it didn’t exist 15 years ago. Did you mean something different here?', 'created': '2024-11-08 17:56:56', 'submission_id': '1gm5z3f'}
{'comment': 'No. It wasnt a thing for kids for sure.', 'created': '2024-11-08 22:58:55', 'submission_id': '1gm5z3f'}
{'comment': 'I think because of your age you missed it, but it definitely was a thing 15 years ago. I was ~15 back then and it existed.', 'created': '2024-11-09 00:11:23', 'submission_id': '1gm5z3f'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-08 00:55:59', 'submission_id': '1gm503o'}
{'comment': 'Holy shit. Did Kamala wear that outfit just so people would make comparisons to her and Lisa Simpson??? Please tell me that’s not the case', 'created': '2024-11-08 01:02:42', 'submission_id': '1gm503o'}
{'comment': 'lisa is yellow', 'created': '2024-11-08 01:04:31', 'submission_id': '1gm503o'}
{'comment': 'Imagine if Lisa was Tulsi Gabbard.,the Democrats would lose their minds.', 'created': '2024-11-08 02:25:11', 'submission_id': '1gm503o'}
{'comment': 'They must be coping hard if someone unironically made this', 'created': '2024-11-08 01:12:39', 'submission_id': '1gm503o'}
{'comment': 'the Simpsons have been wrong before.', 'created': '2024-11-08 02:04:50', 'submission_id': '1gm503o'}
{'comment': "Think they're leading to Joe stepping down and Cackle jackal taking his place.", 'created': '2024-11-08 02:19:06', 'submission_id': '1gm503o'}
{'comment': 'In that episode, they say she inherited the debt from Trump... they could still be true...', 'created': '2024-11-08 02:31:22', 'submission_id': '1gm503o'}
{'comment': 'You posted these in the wrong order 😝', 'created': '2024-11-08 01:43:42', 'submission_id': '1gm503o'}
{'comment': 'Alright, now I’m worried', 'created': '2024-11-08 02:38:29', 'submission_id': '1gm503o'}
{'comment': 'Strongest Democrap argument', 'created': '2024-11-08 04:44:14', 'submission_id': '1gm503o'}
{'comment': 'They didnt specify which term of trump no?', 'created': '2024-11-08 01:15:22', 'submission_id': '1gm503o'}
{'comment': 'HA HA! 👉🏻', 'created': '2024-11-08 01:57:53', 'submission_id': '1gm503o'}
{'comment': 'If it were Apus daughter I could believe this. But Lisa is not Indian.', 'created': '2024-11-08 02:07:28', 'submission_id': '1gm503o'}
{'comment': '🎉🎉🎉🎉🎉', 'created': '2024-11-08 02:53:04', 'submission_id': '1gm503o'}
{'comment': 'It happens https://www.dailywire.com/news/trump-exposed-kamalas-radical-stances-on-gender-americans-voted-against-it', 'created': '2024-11-08 03:03:59', 'submission_id': '1gm503o'}
{'comment': 'Did it give an appointment year of the first female president or are people just jumping at the first 2 possibilities? Maybe 3rd times the charm next time around.', 'created': '2024-11-08 04:29:25', 'submission_id': '1gm503o'}
{'comment': '[removed]', 'created': '2024-11-08 06:35:29', 'submission_id': '1gm503o'}
{'comment': "The only rigging the numbers from this election point to was the rigging of the 2020 election. You can't rig an election with less votes, especially not in favor of Republicans.", 'created': '2024-11-08 06:39:19', 'submission_id': '1gm503o'}
{'comment': 'Did the Simpsons say Lisa would be President in 2024?', 'created': '2024-11-08 06:47:00', 'submission_id': '1gm503o'}
{'comment': 'Schizophrenia', 'created': '2024-11-08 15:49:07', 'submission_id': '1gm503o'}
{'comment': 'I don’t understand how people who voted for trump are being told they are uneducated when you have people who post this shit🤯', 'created': '2024-11-08 18:38:26', 'submission_id': '1gm503o'}
{'comment': 'Don’t worry, Hillary wore the exact same suit in 2016, which lead to the same comparisons.', 'created': '2024-11-08 01:09:27', 'submission_id': '1gm503o'}
{'comment': 'Wasn’t that the same outfit she wore in the Nostradamus prediction of the woman in purple and the weak leader?', 'created': '2024-11-08 03:26:25', 'submission_id': '1gm503o'}
{'comment': 'That would take a measure of wit that she simply does not have.', 'created': '2024-11-08 18:16:19', 'submission_id': '1gm503o'}
{'comment': 'So they’re both POC. 😂', 'created': '2024-11-08 01:46:48', 'submission_id': '1gm503o'}
{'comment': 'Next time.', 'created': '2024-11-08 04:26:14', 'submission_id': '1gm503o'}
{'comment': 'It’s their way to cope.', 'created': '2024-11-08 18:50:57', 'submission_id': '1gm503o'}
{'comment': 'and the same out come.', 'created': '2024-11-09 11:12:20', 'submission_id': '1gm503o'}
{'comment': 'I’ve seen their “ways to cope”. These people are scary. We were told mass election fraud can’t happen. But they are singing a different tune now aren’t they. \n\nI don’t even think most understand that if something happened to trump JD Vance would replace him, not Kamala Harris. The uneducated showed in their responses to the election.', 'created': '2024-11-08 19:06:42', 'submission_id': '1gm503o'}
{'comment': 'Yep. I used to be a democrat not too long ago, so my instagram following is primarily left leaning. The amount of ridiculous talking points that they are parroting right now is just ridiculous and deeply concerning. America is seriously in need of some critical thinking lessons.', 'created': '2024-11-08 21:04:42', 'submission_id': '1gm503o'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 23:42:29', 'submission_id': '1gm3dpc'}
{'comment': '“He would rape you” 😂', 'created': '2024-11-08 00:29:03', 'submission_id': '1gm3dpc'}
{'comment': "I have 7 roommates at college and 4 of them are liberals. The stuff they posted on their stories have me and my other 2 roommates genuinely frightened for our safety. They don't know we disagree with them politically and now we definitely will not be sharing our views.", 'created': '2024-11-08 00:01:13', 'submission_id': '1gm3dpc'}
{'comment': 'This is why we need to continue to pray protection over him for the four full years. I’m so concerned we are going to lose him. Most Democrats will move on. The unhinged ones are scary.', 'created': '2024-11-08 00:49:30', 'submission_id': '1gm3dpc'}
{'comment': 'To the Canadian chick…..why u so obsessed with us 🤔', 'created': '2024-11-08 00:51:42', 'submission_id': '1gm3dpc'}
{'comment': "They're making tik toks talking about assassinating the president elect if Republicans did that the feds would be at their door in 10 minutes!!!!!", 'created': '2024-11-08 00:58:03', 'submission_id': '1gm3dpc'}
{'comment': 'Crazy to see they disregarded Biden’s speech essentially telling them to get over it', 'created': '2024-11-08 00:49:34', 'submission_id': '1gm3dpc'}
{'comment': 'I knew the meltdowns would be epic but I did not expect them to be this delicious', 'created': '2024-11-08 00:10:57', 'submission_id': '1gm3dpc'}
{'comment': 'These people are really mental. It’s scary and sad.', 'created': '2024-11-08 00:22:01', 'submission_id': '1gm3dpc'}
{'comment': 'How is this not considered domestic terrorism?!', 'created': '2024-11-08 02:09:48', 'submission_id': '1gm3dpc'}
{'comment': 'Can the DOJ look into these threats? I am not happy that the man is so vulnerable to violence, he needs to be the best protected man in the world......He needs literally an army around him.', 'created': '2024-11-07 23:58:26', 'submission_id': '1gm3dpc'}
{'comment': None, 'created': '2024-11-08 02:17:57', 'submission_id': '1gm3dpc'}
{'comment': 'These people have some serious demons', 'created': '2024-11-08 00:42:27', 'submission_id': '1gm3dpc'}
{'comment': 'It’s disheartening, honestly.', 'created': '2024-11-07 23:47:12', 'submission_id': '1gm3dpc'}
{'comment': 'This is the reason political division is so bad in this country', 'created': '2024-11-08 00:32:32', 'submission_id': '1gm3dpc'}
{'comment': 'this makes me ILL! SICK!', 'created': '2024-11-08 01:31:09', 'submission_id': '1gm3dpc'}
{'comment': 'The party of love and acceptance', 'created': '2024-11-08 01:36:33', 'submission_id': '1gm3dpc'}
{'comment': 'I can’t get over this whole “IM SO SORRY WOMEN WE ARE SECOND CLASS CITIZENS” narrative. \n\nliterally NOTHING changed from pre-election. nothing will change. it’s getting old.', 'created': '2024-11-08 05:15:56', 'submission_id': '1gm3dpc'}
{'comment': 'almost every single negative thing about Trump democrats have said has been lies, and now they’re making up more as they speak just because of how pissed they are. since when did he earn the title of any of these lmao?', 'created': '2024-11-08 00:51:02', 'submission_id': '1gm3dpc'}
{'comment': 'Again, just show them policies to show they aren’t in danger. They’re emotional right now and like to read “facts” so facts shall be given', 'created': '2024-11-08 00:42:40', 'submission_id': '1gm3dpc'}
{'comment': 'Yeah I’m worried about some of these crazy people trying to take him out before the oath', 'created': '2024-11-08 01:00:54', 'submission_id': '1gm3dpc'}
{'comment': 'They do nothing but project. They think we are as hateful as they are in their hearts.', 'created': '2024-11-08 01:07:21', 'submission_id': '1gm3dpc'}
{'comment': 'Bro these people need to seriously be evaluated… mentally', 'created': '2024-11-08 01:42:09', 'submission_id': '1gm3dpc'}
{'comment': 'Angry uneducated liberals spewing what ever comes out of that uneducated head of theirs', 'created': '2024-11-08 02:00:25', 'submission_id': '1gm3dpc'}
{'comment': 'And they call themselves the peaceful party', 'created': '2024-11-08 01:16:25', 'submission_id': '1gm3dpc'}
{'comment': 'You can’t be pro Palestine and be pro Kamala. Arabs woke up and said we are tired of having our families bombed and killed with our own taxes. Us Hispanic had our parents do it the right way pay taxes, pay their visas, pay lawyers etc for an illegal to come and have the same or more benefits with 0 efforts. Most of the people who made those comments are clearly uneducated and doom scroll on their phones daily, while screaming equality and calling a Hispanic trump voter racist.', 'created': '2024-11-08 04:55:06', 'submission_id': '1gm3dpc'}
{'comment': 'It’s pretty sad that the “party of love” are actually bullies and threatening people’s lives. And they say republicans are the bad ones.', 'created': '2024-11-08 05:42:47', 'submission_id': '1gm3dpc'}
{'comment': 'The last one has classic liberal logic.\n\n“Be kind to each other” and “F Trump/Vance/Musk/RFK” in the same breath.', 'created': '2024-11-08 06:16:56', 'submission_id': '1gm3dpc'}
{'comment': 'The second you see Palestine yk they on some bs', 'created': '2024-11-08 07:19:44', 'submission_id': '1gm3dpc'}
{'comment': "The Canadian is the dumbest thing I've ever read.", 'created': '2024-11-08 07:43:04', 'submission_id': '1gm3dpc'}
{'comment': 'These stories just get better and better! I understand they have concerns, just like everyone, but the craziness is absurd. All I can say is keep vigilant and be ready to protect your family and country at all times. You never know when someone might be willing to do something stupid.', 'created': '2024-11-08 00:44:22', 'submission_id': '1gm3dpc'}
{'comment': 'The media and college’s can do a number on ya', 'created': '2024-11-08 01:15:23', 'submission_id': '1gm3dpc'}
{'comment': 'The narcissism is out of control. Also can they stop with the acronyms?', 'created': '2024-11-08 01:29:41', 'submission_id': '1gm3dpc'}
{'comment': 'Party of love huh', 'created': '2024-11-08 03:01:30', 'submission_id': '1gm3dpc'}
{'comment': 'What is wrong with these ppl?', 'created': '2024-11-08 03:17:24', 'submission_id': '1gm3dpc'}
{'comment': '😂 first it’s “he only cares about rich people” and now it’s “rich white men”.. cherry on top “be kind to each other”', 'created': '2024-11-08 03:48:46', 'submission_id': '1gm3dpc'}
{'comment': "I will not be surprised if the Secret Service shows up at some of these peoples' door. Threatening the President Elect is no joke.", 'created': '2024-11-08 03:53:08', 'submission_id': '1gm3dpc'}
{'comment': '🤣🤣🤣💀', 'created': '2024-11-08 04:33:16', 'submission_id': '1gm3dpc'}
{'comment': 'The tolerant left lol', 'created': '2024-11-08 04:33:25', 'submission_id': '1gm3dpc'}
{'comment': 'The democrats fell from The Stupid Tree and broke every branch on the way down, lol 🤣', 'created': '2024-11-08 04:47:27', 'submission_id': '1gm3dpc'}
{'comment': 'The Democrat politicians, celebrities and media created this. Now they have to deal with these mentally unstable people who can\'t accept that maybe they have been lied to.\n\nI saw another post about how they are mad at Biden for allowing a peaceful transition. They bought into the fact that "Trump is Hitler" and now can\'t unclench from that.', 'created': '2024-11-08 05:29:23', 'submission_id': '1gm3dpc'}
{'comment': '"I voted for Kamala Harris and would 1000 times" following up by "I\'m Pro Palestine" is an absolutely mindless take.\n\nNothing more Pro-Arab than bombing Middle-Eastern hospitals like Obama or Cheney.', 'created': '2024-11-08 06:06:10', 'submission_id': '1gm3dpc'}
{'comment': 'The victim mentality is appalling', 'created': '2024-11-08 06:13:32', 'submission_id': '1gm3dpc'}
{'comment': 'I find it funny how many hate on musk for supporting him yet still use his app 😅', 'created': '2024-11-08 06:41:21', 'submission_id': '1gm3dpc'}
{'comment': 'Well I live in Canada and it’s hell up here with all the taxes and shitty government', 'created': '2024-11-08 07:12:12', 'submission_id': '1gm3dpc'}
{'comment': 'Thats new, never seen that before LGTBQIA+', 'created': '2024-11-08 08:18:24', 'submission_id': '1gm3dpc'}
{'comment': 'These posts are gonna help keep our America red! I love it!', 'created': '2024-11-08 09:40:26', 'submission_id': '1gm3dpc'}
{'comment': "RFK was going to be who I voted for if he was the Democratic nominee simply because he seems pretty down to earth. But the second he dropped out of the race and endorsed Trump, I knew who I was voting for. Whenever a candidate drops out and doesn't support their party, you know the candidate for that party is shady.", 'created': '2024-11-08 10:28:42', 'submission_id': '1gm3dpc'}
{'comment': "To that Canadian woman, I own 3 cars, have my own place to live and a stable job that's about to pay even more because of Trump. \n\nLet me know how Trudeaus prices will treat ya 🫶", 'created': '2024-11-08 10:39:44', 'submission_id': '1gm3dpc'}
{'comment': 'lol they know Harris is pro-Israel right? …right?!', 'created': '2024-11-08 10:54:58', 'submission_id': '1gm3dpc'}
{'comment': 'Unhinged much?', 'created': '2024-11-08 22:02:51', 'submission_id': '1gm3dpc'}
{'comment': 'So much joy', 'created': '2024-11-09 07:52:54', 'submission_id': '1gm3dpc'}
{'comment': 'Crazy, drinking lib tears is so tasteless, yuck, they don’t have that generic taste..', 'created': '2024-11-09 11:29:20', 'submission_id': '1gm3dpc'}
{'comment': 'The hate from both sides is crazy ( of course there is more from the losing side )', 'created': '2024-11-08 00:27:41', 'submission_id': '1gm3dpc'}
{'comment': 'These are so awesome', 'created': '2024-11-08 00:03:46', 'submission_id': '1gm3dpc'}
{'comment': 'Brokie', 'created': '2024-11-08 00:05:05', 'submission_id': '1gm3dpc'}
{'comment': 'I feel like the Uk should be extradited these more extreme messages than anything Elon has said... Wonder if its (d)ifferent now, given the result that they will stand down the attempts?', 'created': '2024-11-08 00:23:45', 'submission_id': '1gm3dpc'}
{'comment': 'Let them eat cake.', 'created': '2024-11-08 00:37:26', 'submission_id': '1gm3dpc'}
{'comment': 'Remember when Biden won?', 'created': '2024-11-08 05:24:36', 'submission_id': '1gm3dpc'}
{'comment': 'I’m going to start calling people I don’t like rapists because innocent until proven guilty doesn’t exist anymore', 'created': '2024-11-08 03:23:38', 'submission_id': '1gm3dpc'}
{'comment': "Most people who say that aren't even worth it anyway but it's the only solace they get dreaming of getting laid somehow one day. #MAGA", 'created': '2024-11-08 02:05:27', 'submission_id': '1gm3dpc'}
{'comment': 'He has to catch me first !', 'created': '2024-11-08 01:43:10', 'submission_id': '1gm3dpc'}
{'comment': "Well I'm a dude and not cute enough anyway.", 'created': '2024-11-08 01:06:04', 'submission_id': '1gm3dpc'}
{'comment': 'Hide your wife… hide your kids', 'created': '2024-11-08 09:50:13', 'submission_id': '1gm3dpc'}
{'comment': 'I’m so sorry. I haven’t made my choice known at all outside of close friends and strangers online. I have told my husband he can’t wear his Trump shirt in public. We have three kids we need to protect from the unhinged crazy people.\n\nMy Democrat friend who just voted for Trump for the first time and I, have decided we can’t tell our far left friend who we voted for. Some of his posts are sickening.', 'created': '2024-11-08 00:51:22', 'submission_id': '1gm3dpc'}
{'comment': 'I wrote about this in another thread. 💔', 'created': '2024-11-08 00:35:58', 'submission_id': '1gm3dpc'}
{'comment': 'I feel bad for you man I hope your doing good now', 'created': '2024-11-08 00:33:54', 'submission_id': '1gm3dpc'}
{'comment': 'Sad. Fuck them.', 'created': '2024-11-08 02:22:45', 'submission_id': '1gm3dpc'}
{'comment': 'Good keep it that way these people are insane.', 'created': '2024-11-08 07:44:16', 'submission_id': '1gm3dpc'}
{'comment': 'Yeah I fear another Kenedy Assassination scenario they are that crazy', 'created': '2024-11-08 07:46:58', 'submission_id': '1gm3dpc'}
{'comment': 'This is a felony. Hope the feds put them in jail.', 'created': '2024-11-08 03:55:18', 'submission_id': '1gm3dpc'}
{'comment': 'Picks when it’s over to finally make sense and be coherent', 'created': '2024-11-08 00:53:56', 'submission_id': '1gm3dpc'}
{'comment': "It's like having your cake and eating it too", 'created': '2024-11-08 00:51:34', 'submission_id': '1gm3dpc'}
{'comment': "That's why the Democrats have crossed the boundary from misguided and stupid to evil. \n\nThey feed and spread mental illnesses for self-righteousness, control and votes.", 'created': '2024-11-08 00:46:35', 'submission_id': '1gm3dpc'}
{'comment': 'Anything you see that is concerning, send a screenshot of it to:\nhttps://tips.fbi.gov/home', 'created': '2024-11-08 00:21:52', 'submission_id': '1gm3dpc'}
{'comment': 'What annoys me is when they unfollow me but don’t remove me as their follower. I’m not your fan! Save me the trouble of having to unfollow you too lmao !!!', 'created': '2024-11-08 03:37:17', 'submission_id': '1gm3dpc'}
{'comment': 'They’re possessed 100%. I know a lot of people don’t believe in Christianity, and I used to not as well, but in the last couple years I got closer to God and saw the truth. How can you see behavior like this time and time again and not think it’s spiritual? The devil has his claws in this world and we’re seeing his followers.', 'created': '2024-11-08 01:33:04', 'submission_id': '1gm3dpc'}
{'comment': 'It is making it worse too. Both sides are cutting people off and I wonder in a few years will both people just be in their own echo chambers because they have disassociate with any that is not like minded', 'created': '2024-11-08 18:58:06', 'submission_id': '1gm3dpc'}
{'comment': 'The people who said they "woke up with no rights" on Wednesday made me laugh. Even if you would lose rights, which we all know isn\'t happening, do they know about the inauguration process?', 'created': '2024-11-08 19:01:18', 'submission_id': '1gm3dpc'}
{'comment': 'Blame social media. Some of the things I’ve seen go viral on it are so dumb', 'created': '2024-11-08 00:54:38', 'submission_id': '1gm3dpc'}
{'comment': 'How many times has he told them he’s not for Project 2025, yet they bring it up regularly.', 'created': '2024-11-08 05:07:58', 'submission_id': '1gm3dpc'}
{'comment': 'They will still say that he’s “lying” and “will never do anything to help” like he hasn’t ended wa war in the first 24 hours of being elected lmao', 'created': '2024-11-08 01:53:17', 'submission_id': '1gm3dpc'}
{'comment': 'Some of them are too far gone to even comprehend facts. The other thing is what source are you going to use for your facts? You are so and your facts may just antagonize them even more! I think it’s best to avoid these people for now till they calm down. Just keep your head on a swivel and don’t put yourself in a situation where you might be compromised.', 'created': '2024-11-08 03:45:24', 'submission_id': '1gm3dpc'}
{'comment': "They're too emotional to ever understand policy.", 'created': '2024-11-08 00:49:39', 'submission_id': '1gm3dpc'}
{'comment': 'The person who posted that one is also Jewish', 'created': '2024-11-08 05:00:26', 'submission_id': '1gm3dpc'}
{'comment': 'The secret service that did such a great job in Butler, PA?', 'created': '2024-11-08 05:10:39', 'submission_id': '1gm3dpc'}
{'comment': 'The person who posted that one is Jewish', 'created': '2024-11-08 10:03:22', 'submission_id': '1gm3dpc'}
{'comment': 'Did you see there was a Canadian that flew to California to vote (they didn’t check his ID) and he voted for Trump', 'created': '2024-11-08 07:18:33', 'submission_id': '1gm3dpc'}
{'comment': 'The two sides and hate are not comparable. Left has had a monopoly on their right to hate for the last decade.', 'created': '2024-11-08 00:48:50', 'submission_id': '1gm3dpc'}
{'comment': 'As a 400 pound body positivity feminist he will not catch me! I hate all you facists, this is not what we voted for (wins popular vote)', 'created': '2024-11-08 03:51:14', 'submission_id': '1gm3dpc'}
{'comment': 'LOL!', 'created': '2024-11-08 03:40:58', 'submission_id': '1gm3dpc'}
{'comment': "My family lives in a conservative town and they still don't display Trump stuff bc other families have been anonymously threatened", 'created': '2024-11-08 02:34:40', 'submission_id': '1gm3dpc'}
{'comment': 'I’m not ~openly~ sharing at work, but I’m not actively hiding it either. I just don’t want to get into an argument at work, but conservatives are the majority at my particular place of business.', 'created': '2024-11-08 14:42:59', 'submission_id': '1gm3dpc'}
{'comment': "That, or the left making jan 6, look like a kids' birthday party. Any attempt to reconcile has, and will continue to fail, because the vast majority of what I've seen is vile hate spewing rhetoric. It feels like they're whipping themselves into a fury. They insist it was a stolen ballot. I am genuinely frightened for the country, in part, because the Democrat Party will do nothing to calm it.", 'created': '2024-11-09 10:26:44', 'submission_id': '1gm3dpc'}
{'comment': 'Lmao seriously. Listened to it live on the radio omw to work this morning and it was probably the most clear and concise I’ve ever heard him talk in the past 4 years', 'created': '2024-11-08 00:54:57', 'submission_id': '1gm3dpc'}
{'comment': 'Is this anonymous? Can they trace it back to our IP addresses?', 'created': '2024-11-08 00:52:41', 'submission_id': '1gm3dpc'}
{'comment': 'ikr. Trump can dine at a restaurant in Detroit and give the workers there a raise and democrat news stations will say “Donald Trump harasses black costumers in Detroit.” this man has invited hundreds of black people over to his house and has even endorsed them. people are really pulling shit out of their asses.', 'created': '2024-11-08 00:56:17', 'submission_id': '1gm3dpc'}
{'comment': 'Social media has tainted the democratic process and there might be no going back', 'created': '2024-11-08 19:02:15', 'submission_id': '1gm3dpc'}
{'comment': 'Fair', 'created': '2024-11-08 01:55:03', 'submission_id': '1gm3dpc'}
{'comment': 'Yeah you’re right I tried to peacefully reason to in their subreddit and everyone just responded by hating with very racist, sexist claims on men, Latinos, and pretty much anyone who didn’t vote blue.', 'created': '2024-11-08 03:49:14', 'submission_id': '1gm3dpc'}
{'comment': 'Not surprised her husband is Jewish. God forbid I’m about to get called antisemitic. I am pro stop the fucking wars.', 'created': '2024-11-08 05:03:37', 'submission_id': '1gm3dpc'}
{'comment': "Yeah. I'm expecting them to pull a Jan 6 as well. I keep picturing that kicking off another Civil War. Lord help us if that is the case.", 'created': '2024-11-09 12:27:45', 'submission_id': '1gm3dpc'}
{'comment': 'It is anonymous. I’m not sure about the IP question, but if it worries you, use a VPN or the TOR browser. Both will mask your IP address.', 'created': '2024-11-08 01:12:14', 'submission_id': '1gm3dpc'}
{'comment': 'Would they need the user @ ?', 'created': '2024-11-08 03:24:51', 'submission_id': '1gm3dpc'}
{'comment': '🤗🤗🤗\n“Hugs”', 'created': '2024-11-08 04:22:34', 'submission_id': '1gm3dpc'}
{'comment': "Glad it's not just but hope we're both wrong.", 'created': '2024-11-09 14:09:15', 'submission_id': '1gm3dpc'}
{'comment': 'Do you recommend something like BRAVE browser or simply using a VPN on my iPhone could work? Sorry maybe a silly question but want to be sure', 'created': '2024-11-08 01:13:22', 'submission_id': '1gm3dpc'}
{'comment': 'Yeah', 'created': '2024-11-08 04:12:06', 'submission_id': '1gm3dpc'}
{'comment': 'Agreed. I really want to be wrong and for things to go smoothly.', 'created': '2024-11-09 15:08:51', 'submission_id': '1gm3dpc'}
{'comment': 'I’ve never tried BRAVE, but I know a vpn on your iPhone would work.', 'created': '2024-11-08 01:14:54', 'submission_id': '1gm3dpc'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 22:46:44', 'submission_id': '1gm23nt'}
{'comment': 'And kamala wanted it pasturized, I take it?', 'created': '2024-11-08 03:56:06', 'submission_id': '1gm23nt'}
{'comment': '[removed]', 'created': '2024-11-08 06:36:53', 'submission_id': '1gm23nt'}
{'comment': "While the milk takes the blame, it's much deeper. They really just want to be left alone to do their thing. State and local government is becoming too invasive. I would think that isn't too controversial.", 'created': '2024-11-09 19:39:11', 'submission_id': '1gm23nt'}
{'comment': 'Along with Biden... 😆', 'created': '2024-11-08 03:59:43', 'submission_id': '1gm23nt'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 22:44:42', 'submission_id': '1gm21yf'}
{'comment': "Meanwhile should Kari Lake just stop trying ? She didn't win Governor, she didn't win Senate. It's starting to look like fighting an uphill battle.", 'created': '2024-11-08 00:18:03', 'submission_id': '1gm21yf'}
{'comment': 'We will take another seat! Now we have more room in the 2026 midterm', 'created': '2024-11-07 23:37:28', 'submission_id': '1gm21yf'}
{'comment': 'Charlie Kirk was saying that this would be a monumental win. Said Casey is like a 4th generation politician. Way to go Mr. McCormick.', 'created': '2024-11-08 00:47:27', 'submission_id': '1gm21yf'}
{'comment': 'I’m a proud Pennsylvania Republican woman who voted a straight Republican ticket! Good riddance to Bob Casey! We’ve had enough of his dad as Governor years ago and him in the Senate. I’m very happy to have Dave McCormick representing us in the Senate! 🐘 ❤️ 🇺🇸', 'created': '2024-11-08 03:09:11', 'submission_id': '1gm21yf'}
{'comment': 'Crazy that Pennsylvania was the only swing state we were able to flip the senate… \n\nCrazy that it is also the only swing state that counted the mail in ballots FIRST. Michigan, Wisconsin, Nevada and Arizona have had no issues “finding” votes to turn the elections after the first 24 hours had passsed.', 'created': '2024-11-08 06:28:47', 'submission_id': '1gm21yf'}
{'comment': 'Soooo happy for Pa!', 'created': '2024-11-08 00:37:22', 'submission_id': '1gm21yf'}
{'comment': 'Man life is good', 'created': '2024-11-08 12:01:40', 'submission_id': '1gm21yf'}
{'comment': 'I’m not sure it’s a right vs. middle issue in AZ. I think a more libertarian-leaning Republican like Justin Amash would do very well in AZ (whereas Michigan is tough for him).\n\nThe west isn’t a great fit for right wing populism as much as it is for keeping government at arm’s-length.', 'created': '2024-11-08 02:23:23', 'submission_id': '1gm21yf'}
{'comment': 'She’d appeal way more in a solid-red state. I think a lot of conservatives nation wide like her, but not as much in Arizona where they trend more towards the middle.', 'created': '2024-11-08 00:56:11', 'submission_id': '1gm21yf'}
{'comment': "She would do well in a deep red state in the South. Arizona isn't that state anymore. Arizona prefers McCain Republicans who are moderate enough or independent enough to not be beholden to every party interest.", 'created': '2024-11-08 00:32:01', 'submission_id': '1gm21yf'}
{'comment': "Her numbers improved the other day, there's still like a 10-15% chance she wins. Very unlikely, but it aint done yet!", 'created': '2024-11-08 04:38:07', 'submission_id': '1gm21yf'}
{'comment': 'Conservatives can win in AZ easily, they just need to not say stupid shit like Kari Lake. Bagging on McCain is not a winning strategy here.', 'created': '2024-11-08 08:37:05', 'submission_id': '1gm21yf'}
{'comment': 'Kari lake is a crazy anyways, I don’t want someone like her in our party lol', 'created': '2024-11-08 05:02:17', 'submission_id': '1gm21yf'}
{'comment': 'Bob Casey was a political creature with a popular governor as father and being a multi term senator. Insane takeover by McCormick.', 'created': '2024-11-08 04:59:27', 'submission_id': '1gm21yf'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 22:21:52', 'submission_id': '1gm1ikg'}
{'comment': 'Yeah right! They haven’t learned anything yet', 'created': '2024-11-07 22:56:42', 'submission_id': '1gm1ikg'}
{'comment': 'i expect them to double down once the dust settles', 'created': '2024-11-07 23:16:12', 'submission_id': '1gm1ikg'}
{'comment': 'And this is why my wife and kids are receiving death threats', 'created': '2024-11-07 23:26:43', 'submission_id': '1gm1ikg'}
{'comment': 'I’ll believe it when I see it.', 'created': '2024-11-07 23:15:52', 'submission_id': '1gm1ikg'}
{'comment': 'Well all I can say is I used to enjoy media like great video games, movies, and shows but I am so sick of this woke doctrine ruining everything. Hopefully the Trump administration can do something to mediate this issue.', 'created': '2024-11-07 23:43:27', 'submission_id': '1gm1ikg'}
{'comment': 'They were never there at all; pretending they were, pandering for votes.', 'created': '2024-11-07 23:34:20', 'submission_id': '1gm1ikg'}
{'comment': "For some reason I don't believe this. Anyway am I the only one that has had rainbows ruined for them for the rest of their life?", 'created': '2024-11-08 00:28:46', 'submission_id': '1gm1ikg'}
{'comment': 'This would be good honestly if it does happen? But guess time will till', 'created': '2024-11-08 01:12:22', 'submission_id': '1gm1ikg'}
{'comment': 'We need to keep passing laws banning certain elements of the trans movement to force the dems to keep defending transgenderism and Americans will continue to see the dems as the “crazy trans party”', 'created': '2024-11-14 16:21:48', 'submission_id': '1gm1ikg'}
{'comment': "I seriously doubt it with the amount of people doubling on on supporting trans people and their existence. Tha majority of people are disgusted with biological men in womens spaces. They are disgusted with the epidemic and their interest in minors, who cannot give consent to irreversal damage to their bodies. They say they are for womens rights but can't correctly define what a women is.", 'created': '2024-11-08 02:32:09', 'submission_id': '1gm1ikg'}
{'comment': 'I’ll believe it when I see it.', 'created': '2024-11-07 23:22:01', 'submission_id': '1gm1ikg'}
{'comment': 'I’m still getting death threats 👍', 'created': '2024-11-08 02:13:54', 'submission_id': '1gm1ikg'}
{'comment': 'No they won’t, if anything they will double down.', 'created': '2024-11-08 04:57:40', 'submission_id': '1gm1ikg'}
{'comment': 'I think we will see a paradigm shift. Even Hollywood will not be able to deny the utter rejection of the progressive agenda.', 'created': '2024-11-08 14:40:34', 'submission_id': '1gm1ikg'}
{'comment': 'They’re going to double down and go completely Marxist.', 'created': '2024-11-08 16:18:51', 'submission_id': '1gm1ikg'}
{'comment': "No, they haven't. They are all talking about resistance and how this is just a setback. They are dead set on going further left. Look at the other subs, there is lots of blaming, and very little reality.", 'created': '2024-11-08 17:42:24', 'submission_id': '1gm1ikg'}
{'comment': "They're just regrouping, Democrats are easily frightened but soon they'll be back, in greater numbers. The lunacy has only just begun.", 'created': '2024-11-08 19:01:29', 'submission_id': '1gm1ikg'}
{'comment': 'I hope not. At this rate we’re gonna have enough to pass non-bipartisan constitutional amendments like clarifying the second amendment 🤣', 'created': '2024-11-08 00:48:25', 'submission_id': '1gm1ikg'}
{'comment': 'They are already back to kids in cages', 'created': '2024-11-08 14:43:59', 'submission_id': '1gm1ikg'}
{'comment': 'I would never want to give them credit at all. But they have to be smart enough to understand that they cannot continue the same course. Again I hope they double down but no way feel like that is a positive way of going about this.', 'created': '2024-11-08 19:32:00', 'submission_id': '1gm1ikg'}
{'comment': 'Yes, my husband and I have been saying this for years. Sick of it. Holywood is brainwashed.', 'created': '2024-11-08 04:09:10', 'submission_id': '1gm1ikg'}
{'comment': 'Yeah, I wanna see the CEO at Disney fired and replaced with someone who stops giving the green light to all these film remakes full of race swapping and LGBTQ propaganda being marketed to kids.\xa0', 'created': '2024-11-08 18:14:17', 'submission_id': '1gm1ikg'}
{'comment': "Agree... I don't care what they do to themselves once they reach adulthood as long as the don't expect me to pay for it. However desecration of the rainbow is something they will never be forgiven for. 😡", 'created': '2024-11-08 00:48:39', 'submission_id': '1gm1ikg'}
{'comment': 'Totally agree. Let’s keep this going. Super Majority!', 'created': '2024-11-08 01:21:27', 'submission_id': '1gm1ikg'}
{'comment': 'i saw a clip of a news ancor (cant remember who or the network) saying they need to strengthen and double down their ideology to overtake trumps ideology\n\nso no i dont think they’re smart enough to understand that', 'created': '2024-11-08 19:37:30', 'submission_id': '1gm1ikg'}
{'comment': 'Then you’re gonna love trump’s new laws', 'created': '2024-11-08 09:03:16', 'submission_id': '1gm1ikg'}
{'comment': 'Hey that’s a win for us lol', 'created': '2024-11-08 19:38:07', 'submission_id': '1gm1ikg'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 22:06:58', 'submission_id': '1gm15ea'}
{'comment': "Lol, that's great.", 'created': '2024-11-07 22:24:53', 'submission_id': '1gm15ea'}
{'comment': 'She waited way too long to speak, not a good look', 'created': '2024-11-07 23:27:51', 'submission_id': '1gm15ea'}
{'comment': 'Damn that dude eviscerated her.', 'created': '2024-11-07 23:19:42', 'submission_id': '1gm15ea'}
{'comment': "That's a great name lmao", 'created': '2024-11-07 22:57:38', 'submission_id': '1gm15ea'}
{'comment': "Yeah I heard you didn't have the balls to make her concession speech that night. Or even to thank her workers. What a douche.", 'created': '2024-11-08 03:36:37', 'submission_id': '1gm15ea'}
{'comment': 'Who could have been surprised?', 'created': '2024-11-09 03:25:08', 'submission_id': '1gm15ea'}
{'comment': None, 'created': '2024-11-08 01:27:31', 'submission_id': '1gm15ea'}
{'comment': 'Fits her perfectly... 😁', 'created': '2024-11-07 22:28:18', 'submission_id': '1gm15ea'}
{'comment': 'She was too busy hiding and getting drunk, deliberating with herself on how she’s going to answer to her voters after spending all this time making false promises and lying to them, and one has to wonder… has she even been sober for one minute during her campaign?\xa0', 'created': '2024-11-08 00:26:32', 'submission_id': '1gm15ea'}
{'comment': 'As someone who voted for her, I was disappointed with the long wait, as well as her dumbass speech in its entirety. You spent 110 days calling Trump a fascist and saying he\'s going to kill women like me with abortion bans, then he wins and all you have to say to me is "when it\'s dark you can see the stars"????? Real eye-opener', 'created': '2024-11-09 02:48:55', 'submission_id': '1gm15ea'}
{'comment': "I think Biden (on the left) did that already...\n\nI'm sure Trump and Biden bonded over how terrible Kamala Harris was.", 'created': '2024-11-10 04:45:47', 'submission_id': '1gm15ea'}
{'comment': 'True.', 'created': '2024-11-08 03:27:36', 'submission_id': '1gm15ea'}
{'comment': 'I think that was more of a hawk tua on the remains of her campaign.', 'created': '2024-11-10 04:48:01', 'submission_id': '1gm15ea'}
{'comment': 'Honestly the funniest moment was Biden wearing a MAGA hat, which may have been a dig at her.', 'created': '2024-11-10 04:52:01', 'submission_id': '1gm15ea'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 21:47:13', 'submission_id': '1gm0oid'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 21:13:20', 'submission_id': '1glzvs6'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 20:36:56', 'submission_id': '1glz05w'}
{'comment': 'So ready to see all the crooked Dems ball of shit they made blow up in their faces', 'created': '2024-11-08 05:44:59', 'submission_id': '1glz05w'}
{'comment': 'Time for Jack to go back handling real estate transfers', 'created': '2024-11-07 22:22:06', 'submission_id': '1glz05w'}
{'comment': 'So, since his appointment was illegal to begin with, will the Trump administration act to claw back all the payments made to him?', 'created': '2024-11-08 02:58:55', 'submission_id': '1glz05w'}
{'comment': "I find it interesting that as soon as Trump wins, Jackie goes away. Do you think the dems will admit that the whole thing was a political witch-hunt?\n\nI don't, either.", 'created': '2024-11-08 05:48:04', 'submission_id': '1glz05w'}
{'comment': 'One can only hope.', 'created': '2024-11-08 03:01:05', 'submission_id': '1glz05w'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 20:06:45', 'submission_id': '1glyad4'}
{'comment': "not if we don't win the house", 'created': '2024-11-07 23:39:50', 'submission_id': '1glyad4'}
{'comment': 'Yeah no fraternity boi RINO\xa0 Paul Ryan that Wisconsin asshole!\xa0', 'created': '2024-11-12 02:35:07', 'submission_id': '1glyad4'}
{'comment': "Speed bumps? It's the freaking Autobahn now!!! I would love all Dems to realize this is what lack of vision mixed with name calling gets you. This result is the prime example of 'fuck around and find out.'\n\nGet your shit together or it's gonna happen again.", 'created': '2024-11-07 23:58:52', 'submission_id': '1glyad4'}
{'comment': "Don't worry... I... have a cunning plan.", 'created': '2024-11-08 03:49:43', 'submission_id': '1glyad4'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 18:50:06', 'submission_id': '1glwfv4'}
{'comment': 'The country really dodged a bullet by not having her get elected.', 'created': '2024-11-07 19:09:21', 'submission_id': '1glwfv4'}
{'comment': 'Tell me about it.', 'created': '2024-11-07 19:23:20', 'submission_id': '1glwfv4'}
{'comment': 'So did our president…', 'created': '2024-11-08 03:52:58', 'submission_id': '1glwfv4'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 18:33:05', 'submission_id': '1glw13t'}
{'comment': 'Lmfao… the map 🤣🙌', 'created': '2024-11-07 19:39:03', 'submission_id': '1glw13t'}
{'comment': 'Liberals will move to AK and HI, seems like Trump is not president there lol.', 'created': '2024-11-07 20:59:54', 'submission_id': '1glw13t'}
{'comment': 'Great memes but how do you mess up you’re and your 😭', 'created': '2024-11-07 21:15:52', 'submission_id': '1glw13t'}
{'comment': 'wrong colors', 'created': '2024-11-07 22:57:58', 'submission_id': '1glw13t'}
{'comment': 'Alaska and Hawaii :(', 'created': '2024-11-07 23:56:47', 'submission_id': '1glw13t'}
{'comment': 'For star wars, wrong. For USA politics, right.', 'created': '2024-11-08 07:21:28', 'submission_id': '1glw13t'}
{'comment': 'Yeah, but with how socialist the dems have become, red should be their color again.', 'created': '2024-11-08 14:32:10', 'submission_id': '1glw13t'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 18:31:49', 'submission_id': '1glvzzu'}
{'comment': 'Reddit mods on suicide watch after realizing that banning people for participating in "bad faith" subreddits doesn\'t take away their right to vote.', 'created': '2024-11-07 21:11:29', 'submission_id': '1glvzzu'}
{'comment': "How many of the states that don't require an ID to vote did she win?", 'created': '2024-11-07 19:06:43', 'submission_id': '1glvzzu'}
{'comment': 'I remember when this sub got attacked Daily from liberal bots lol. Glad that’s over.', 'created': '2024-11-08 01:45:12', 'submission_id': '1glvzzu'}
{'comment': "Who knew that being extremely unpopular would lead to an election loss. Didn't we go through this with HRC?", 'created': '2024-11-07 19:13:16', 'submission_id': '1glvzzu'}
{'comment': 'You know how many democrats have down voted my comments and posts? lol 😂 I had over 1000 karma but they didn’t like when I wanted to have an educated conversation or debate lol 😂 \n\nTRUMP Train 🇺🇸🇺🇸', 'created': '2024-11-09 04:02:18', 'submission_id': '1glvzzu'}
{'comment': "It gets better. After raising over $1 billion for the run, the Harris campaign ended the race $20 million in debt.\n\n...and at this point she's unemployable.\n\nHer political career is over. No lefty organization is going to cough up hundreds of thousands for speaking fees to listen to half an hour of word salad. Her law career was based on putting out for Willie Brown, and that is done, and she's spent the last 3 months demonstrating to the world that she is stupid, so no company would want to be represented by her.\n\nThe best she could possibly do is doing 30 second ads for Planned Parenthood.", 'created': '2024-11-08 03:44:33', 'submission_id': '1glvzzu'}
{'comment': 'Lets clean up the big mgt consulting swamp mbbk now!! Most of those high paying flying squads are from deep blue grad schools and they all suck up to their liberal masters and mess up the corporations!! Go local, go boutique!!', 'created': '2024-11-08 17:24:01', 'submission_id': '1glvzzu'}
{'comment': 'So what this mean? Donald is still president ? I fear they may recount and re do it', 'created': '2024-11-08 19:46:07', 'submission_id': '1glvzzu'}
{'comment': 'Has anyone else noticed more and more subs becoming unburdened by what has been? I wonder if the checks from the Harris campaign to Reddit mods stop cashing.', 'created': '2024-11-07 22:21:41', 'submission_id': '1glvzzu'}
{'comment': "Amazing how that works... It's almost like our forefathers could see corruption thru technology way back then. 😁", 'created': '2024-11-07 21:18:20', 'submission_id': '1glvzzu'}
{'comment': 'Right. Getting banned from pics for posting on a sub supporting the president elect of the country is wild.', 'created': '2024-11-07 23:17:20', 'submission_id': '1glvzzu'}
{'comment': "I'm on permanent low karma", 'created': '2024-11-08 18:49:31', 'submission_id': '1glvzzu'}
{'comment': '😂😂😂😂', 'created': '2024-11-07 23:02:01', 'submission_id': '1glvzzu'}
{'comment': "New York State didn't. All they did has check my signature against the signature on file and I had to tell them my current address. It could have been worse, but I think a picture ID should still be required.", 'created': '2024-11-07 19:12:52', 'submission_id': '1glvzzu'}
{'comment': "All the states she won don't require voter ID. I think in California, the corruption is massive. Illegals are basically citizens there...", 'created': '2024-11-08 19:37:46', 'submission_id': '1glvzzu'}
{'comment': 'As if you didn’t know.\nAll of them.', 'created': '2024-11-07 21:36:55', 'submission_id': '1glvzzu'}
{'comment': 'CA doesn’t require ID', 'created': '2024-11-07 23:03:12', 'submission_id': '1glvzzu'}
{'comment': 'None, BUT, they were flipped more red.', 'created': '2024-11-09 21:09:23', 'submission_id': '1glvzzu'}
{'comment': 'I’m in a state with no ID required. So naturally I tested it. They legit asked me my name address, and signature. That’s it.\n\nIt was very bizarre', 'created': '2024-11-07 22:48:08', 'submission_id': '1glvzzu'}
{'comment': 'They are already saying Biden set Trump up for a great economy, stock market is soaring, unemployment at record lows, inflation is the lowest ever…it’s ridiculous.', 'created': '2024-11-08 02:57:18', 'submission_id': '1glvzzu'}
{'comment': 'Somebody needs to make a video of Hillary and Kamala together and set it to the song “Popular” from Wicked.', 'created': '2024-11-07 21:39:16', 'submission_id': '1glvzzu'}
{'comment': 'History repeating itself... 😆', 'created': '2024-11-07 19:25:33', 'submission_id': '1glvzzu'}
{'comment': 'You can include Tampon Tim... as being so over. 😆', 'created': '2024-11-08 03:54:37', 'submission_id': '1glvzzu'}
{'comment': 'Considering hundreds of thousands of voters are reporting their ballot being in limbo currently, could be possible. Who knows. Track your ballot on vote.org', 'created': '2024-11-09 17:51:53', 'submission_id': '1glvzzu'}
{'comment': "Apparently her campaign fund is in debt 20 million dollars after ahe decided to hire all those big name celebrities. Wouldn't be surprised.", 'created': '2024-11-08 01:44:21', 'submission_id': '1glvzzu'}
{'comment': 'A lot of their comments haven’t aged well with the passage of time', 'created': '2024-11-08 19:10:43', 'submission_id': '1glvzzu'}
{'comment': 'Rookie... I got banned from there for posting in The_Donald years ago. 😂', 'created': '2024-11-08 07:35:39', 'submission_id': '1glvzzu'}
{'comment': 'Jesus that’s scary, I didn’t know it was so lax in NYC', 'created': '2024-11-07 19:25:21', 'submission_id': '1glvzzu'}
{'comment': 'Yep same in Illinois', 'created': '2024-11-07 21:43:15', 'submission_id': '1glvzzu'}
{'comment': 'New York. The place with tons of migrants!', 'created': '2024-11-09 20:17:29', 'submission_id': '1glvzzu'}
{'comment': 'Same in pa I gave them my id anyway though.', 'created': '2024-11-08 01:47:06', 'submission_id': '1glvzzu'}
{'comment': "Yep, good question. I'd be surprised if any state required a photo ID for identification.", 'created': '2024-11-07 21:47:45', 'submission_id': '1glvzzu'}
{'comment': 'They’re lowkey realizing that 2020 was a rigged election too. Fun to watch!', 'created': '2024-11-08 03:31:11', 'submission_id': '1glvzzu'}
{'comment': '😂😂😂👏🏽👏🏽👏🏽', 'created': '2024-11-08 03:49:10', 'submission_id': '1glvzzu'}
{'comment': '🤯🤯🤯🤯🤯', 'created': '2024-11-08 19:28:32', 'submission_id': '1glvzzu'}
{'comment': 'Hahahahahahaha tampon tim', 'created': '2024-11-08 23:40:48', 'submission_id': '1glvzzu'}
{'comment': 'Well they already announced hm being president and have been talking about ending some wars. I don’t think they can backtrack and take it back . That be like when the patriots won a Super Bowl and then saying no? You cheated. We have to restart the game?', 'created': '2024-11-09 17:57:00', 'submission_id': '1glvzzu'}
{'comment': 'Wouldn\'t be surprised if there was a healthy looking Cayman island bank account with their name on it. Donated 1B$+8m and theyre 20 mil in the hole? The phrase "math isn\'t mathing" has never seemed so apt.', 'created': '2024-11-09 18:19:12', 'submission_id': '1glvzzu'}
{'comment': 'Yeah, there is always a potential for fraud. I feel upstate NY outside Buffalo, Rochester and Albany, the potential for fraud is low. \n\nMost of New York State outside of the metro NY area and the three upstate cities mentioned above are mostly republican. This pisses off some of my liberal friends but whatever lol', 'created': '2024-11-07 19:29:21', 'submission_id': '1glvzzu'}
{'comment': 'Central Illinois resident here. They didn\'t ask for any identification either just asked my name and my address and handed me my ballot. I had my id in hand to show her and she said "we don\'t need that here"', 'created': '2024-11-07 21:41:27', 'submission_id': '1glvzzu'}
{'comment': 'Florida requires state issued photo I.D. to vote.\nThey accept my concealed carry permit as valid I d', 'created': '2024-11-08 04:58:27', 'submission_id': '1glvzzu'}
{'comment': 'Right, like “where did the 20 million voters go?” They will never admit the fraud though…', 'created': '2024-11-08 03:37:06', 'submission_id': '1glvzzu'}
{'comment': 'But it was OK when Trump wouldn’t concede? The hypocrisy 🤣. I accept the results though', 'created': '2024-11-09 17:59:19', 'submission_id': '1glvzzu'}
{'comment': 'Right? The Democrats seem to completely ignore math all together in everything they do.', 'created': '2024-11-09 18:23:48', 'submission_id': '1glvzzu'}
{'comment': 'Upstate is so confusing for some folks.', 'created': '2024-11-07 23:57:19', 'submission_id': '1glvzzu'}
{'comment': 'If you look at the numbers they’re exactly the same since 2004 but 2020 has a big spike! Then 2024 it’s on par with the rest of the years lol.', 'created': '2024-11-08 03:39:54', 'submission_id': '1glvzzu'}
{'comment': 'They were purged off the rolls so we couldn’t use them any more damn republicans', 'created': '2024-11-08 17:18:16', 'submission_id': '1glvzzu'}
{'comment': 'Yeah she already conceded thou. She gave her speech. And yeah that was kinda dumb ngl', 'created': '2024-11-09 18:01:38', 'submission_id': '1glvzzu'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 18:22:16', 'submission_id': '1glvro7'}
{'comment': 'Celebrity endorsers. Get wrecked all of yous.', 'created': '2024-11-07 18:53:49', 'submission_id': '1glvro7'}
{'comment': '“Harris lost to Trump in a historic landslide, but she cannot possibly be thought of as the night’s biggest loser. In life, she has far outperformed her talents and achievements.” Damn this one must hurt', 'created': '2024-11-07 19:17:02', 'submission_id': '1glvro7'}
{'comment': 'Canada and Europe, when woke US asylum seeking immigrants pile in and attempt to destroy their countries.', 'created': '2024-11-07 19:03:14', 'submission_id': '1glvro7'}
{'comment': 'The DNC leadership. It wasn’t just the presidency. They lost everything', 'created': '2024-11-07 21:11:39', 'submission_id': '1glvro7'}
{'comment': 'Reddit mods', 'created': '2024-11-07 21:19:23', 'submission_id': '1glvro7'}
{'comment': 'Kamala 😜', 'created': '2024-11-07 18:45:35', 'submission_id': '1glvro7'}
{'comment': 'The corrupt media', 'created': '2024-11-07 18:59:26', 'submission_id': '1glvro7'}
{'comment': 'Communism lost big!', 'created': '2024-11-07 19:16:29', 'submission_id': '1glvro7'}
{'comment': 'The DNC. They knew how far gone Biden and they waited until July 2024 to pull him from the race. All things considered Kamala would probably made it a closer race if she campaigned more and had more time to prepare her policies and arguments (probably why she deflected so damn much). Wouldn’t have hurt them to have an actual primary either just in case they had no faith in Kamala. Their issues as a party run right to the source.', 'created': '2024-11-07 21:08:39', 'submission_id': '1glvro7'}
{'comment': 'Obama', 'created': '2024-11-07 19:20:37', 'submission_id': '1glvro7'}
{'comment': "I say any media outlet that openly spilled rhetoric and lied needs to be completely taken down. Bring unbiased news back. Make it clear what is opinion vs fact. If the media wouldn't have pushed so hard, Trump wouldn't have won, but this kind of stuff needs to stop. It's a sad country when the people can't trust their news outlets.", 'created': '2024-11-07 20:36:48', 'submission_id': '1glvro7'}
{'comment': 'Whiny liberals', 'created': '2024-11-07 23:13:04', 'submission_id': '1glvro7'}
{'comment': 'This was a census in stupidity. Anyone who voted for Kamala is a loser as well as an idiotic moron who can’t be trusted.', 'created': '2024-11-08 00:49:02', 'submission_id': '1glvro7'}
{'comment': 'Reddit', 'created': '2024-11-07 20:38:10', 'submission_id': '1glvro7'}
{'comment': 'The Senator that lost the most expensive race ever.', 'created': '2024-11-07 23:41:29', 'submission_id': '1glvro7'}
{'comment': 'AOC, Dr Fauci need to go next', 'created': '2024-11-07 20:24:59', 'submission_id': '1glvro7'}
{'comment': 'The liberals, the amount of melt down videos I’ve seen on tiktok is insane', 'created': '2024-11-07 20:42:14', 'submission_id': '1glvro7'}
{'comment': 'Idk. This was a fair and free election, lmao.', 'created': '2024-11-07 19:39:46', 'submission_id': '1glvro7'}
{'comment': None, 'created': '2024-11-07 18:42:27', 'submission_id': '1glvro7'}
{'comment': 'George Soros. He paid for it all.', 'created': '2024-11-08 03:51:18', 'submission_id': '1glvro7'}
{'comment': 'Anyone on Epsteins Client List...', 'created': '2024-11-08 04:05:49', 'submission_id': '1glvro7'}
{'comment': "I can't decide between mainstream media or the Hollywood elites... They all suck...", 'created': '2024-11-07 22:38:28', 'submission_id': '1glvro7'}
{'comment': 'Every single whore who actually thought that the “issue” of abortion would sway people like you and me to vote for CumSwalla', 'created': '2024-11-07 22:22:41', 'submission_id': '1glvro7'}
{'comment': 'The states that can’t count votes. Unbelievable', 'created': '2024-11-09 02:58:47', 'submission_id': '1glvro7'}
{'comment': 'Biggest losers is definitely the celebrities. Make your movies and shows and STFU about politics.\n\n\nIt icing on the cake when Trump won in a landslide and running up the score board and getting the popular vote. Presidency, the House, the Senate and the Supreme Court on our side.', 'created': '2024-11-09 04:33:12', 'submission_id': '1glvro7'}
{'comment': "Democrats. Because now we know at least 15+ million joe Biden voters where all a lie, but I'm willing to bet most on here already knew that but would like an answer from the liberals. Did they just all die after 2020 because we had near the same numbers of voters in 2024 as 2020 besides the 15+ million who are gone.", 'created': '2024-11-07 19:59:24', 'submission_id': '1glvro7'}
{'comment': 'Verbal endorsements from 99% of the ultra elite and BILLIONS in campaign finds just to get swept.', 'created': '2024-11-07 21:31:56', 'submission_id': '1glvro7'}
{'comment': "I can't take a Robert De Niro movie seriously again where he plays a tough guy after watching him stand on a stool and cry about Trump", 'created': '2024-11-07 23:45:34', 'submission_id': '1glvro7'}
{'comment': 'Seriously', 'created': '2024-11-07 21:24:20', 'submission_id': '1glvro7'}
{'comment': '100% wonder how many actually were about or got paid to endorse her', 'created': '2024-11-08 00:05:42', 'submission_id': '1glvro7'}
{'comment': '"In fact, I would argue Harris should be proud of herself. Of all the untalented people in the history of America, Harris has managed to get the furthest in life, and she should be applauded for it."\n\nIdk, I think the whole quote must be quite the sting.', 'created': '2024-11-07 20:40:05', 'submission_id': '1glvro7'}
{'comment': 'Wow, that’s a stinger!', 'created': '2024-11-07 19:24:07', 'submission_id': '1glvro7'}
{'comment': 'I thought the same thing til I saw Reddit. Reddit is the biggest loser of 2024.', 'created': '2024-11-07 19:41:55', 'submission_id': '1glvro7'}
{'comment': 'Heard an awesome joke, Kamala lost so bad that FEMA sent her a $750 check.', 'created': '2024-11-07 20:16:52', 'submission_id': '1glvro7'}
{'comment': 'The corrupt "legacy media." I bet everybody on the right are cord cutters who have their own "nitch cubby hole" news sources.', 'created': '2024-11-07 21:26:57', 'submission_id': '1glvro7'}
{'comment': 'You’re closer to the truth. Obama was the most instrumental behind the scene .', 'created': '2024-11-07 20:37:36', 'submission_id': '1glvro7'}
{'comment': "If things didn't go how they did in 2020, we wouldn't have gotten this outcome, the red trifecta (president, house, senate) to get shit done! Going thru the hardships in the past 4 yrs pushed more people to tune out legacy media and turn out and vote to get us in this position. It worked how it was meant to imo.", 'created': '2024-11-08 01:16:31', 'submission_id': '1glvro7'}
{'comment': 'We should be coming off of 8 years of Trump and looking at a 1st term for Ramaswamy.', 'created': '2024-11-07 19:52:18', 'submission_id': '1glvro7'}
{'comment': "Pence betrayed everyone. It's best that he never sees power again.", 'created': '2024-11-07 19:18:57', 'submission_id': '1glvro7'}
{'comment': 'But now we have the popular vote, senate majority & maybe house majority. On the other hand he’s inheriting Biden’s crapload of problems.', 'created': '2024-11-07 20:49:43', 'submission_id': '1glvro7'}
{'comment': 'Also it seems like this was a much more energized election with record turnout on both sides, those 15 million voters were certainly fraud', 'created': '2024-11-07 21:00:06', 'submission_id': '1glvro7'}
{'comment': "Good. Don't give the shills who endorsed that dumpster fire of a candidate any of your money, time or attention.", 'created': '2024-11-08 00:46:41', 'submission_id': '1glvro7'}
{'comment': "I don't know why anyone gives any attention to celebrity endorsements, especially from actors. They literally make their living pretending to be someone they aren't, speaking lines they didn't think. Why should we take anything they say seriously?", 'created': '2024-11-08 01:42:29', 'submission_id': '1glvro7'}
{'comment': "I have a fascination with ordinary and generally untalented people who make it so far in life. It's amazing. Kamala Harris - 100% normal, unremarkable person. Amy Carlson - she had no talents and made it as a cult leader. Ron Johnson, Former CEO of JC Penny...that guy legit turned everything he touched to shit and went from high position to high position and paid millions to leave. Fuck if I'm fired for sucking at my job I would be lucky to get a few weeks severance. Ilhan Omar - I say this not just because I am on the opposite side of the political spectrum, but she genuinely seems like a nominal human....and she's sitting in Congress. Like I'm a reasonable intelligent guy and climbing in corporate America but surely if these dolts can rise so high, surely I can become Forklift Certified.", 'created': '2024-11-07 22:55:28', 'submission_id': '1glvro7'}
{'comment': 'Sort of the Kardashian of politics, so to speak.', 'created': '2024-11-07 23:37:20', 'submission_id': '1glvro7'}
{'comment': 'And there just went a perfectly good sip of Fireball... lol', 'created': '2024-11-07 22:40:09', 'submission_id': '1glvro7'}
{'comment': 'How? His job was to certify an election. Are you saying he should abandon his duty? He has a duty to all Americans to do his JOB. Just like Kamala has to certify it without making a fuss. Jesus.', 'created': '2024-11-07 19:38:52', 'submission_id': '1glvro7'}
{'comment': 'Yup. She had the polls, the fake news, social media, and her people. She got about what Obama got. Trumps numbers are around 2020, maybe going to be a little more. To me, it proved that everything I thought about 2020 was correct.', 'created': '2024-11-07 21:24:08', 'submission_id': '1glvro7'}
{'comment': 'Completely agree', 'created': '2024-11-08 02:00:59', 'submission_id': '1glvro7'}
{'comment': "I'm not questioning that. For me personally it was all the trash talking about Trump and others. Also he's pretty much unsupportive of gay people. Didn't like that. You'll have to wait for the person you responded to to tell you their reasons but those are mine.", 'created': '2024-11-07 20:26:59', 'submission_id': '1glvro7'}
{'comment': 'Pence "did his job" even though he knew the election was rigged. Biden could not be more popular than JFK. Everyone knows who JFK was. Not even half know Biden.', 'created': '2024-11-08 19:27:39', 'submission_id': '1glvro7'}
{'comment': 'The latest update of the election count act had not been passed then. It was not his job to blindly certify the election at the time. It was his job to certify the results *if they were valid.*\n\nThey were not.', 'created': '2024-11-07 19:54:16', 'submission_id': '1glvro7'}
{'comment': 'You mean trashtslking from just Pence or from the administration in general?', 'created': '2024-11-07 21:13:23', 'submission_id': '1glvro7'}
{'comment': 'Your claim that Pence “did his job” while knowing the election was ‘rigged’ assumes there was definitive evidence of widespread fraud in the 2020 election. However, extensive investigations, court rulings, and audits—many conducted by Republican-led entities—found no evidence of widespread fraud that would have changed the election outcome. The Vice President’s constitutional duty was to oversee the certification of state-certified electoral votes, not to decide their legitimacy based on unsupported claims.\n\nRegarding your comparison between Biden and JFK’s popularity, popularity is complex and influenced by numerous factors like demographics, media exposure, and social context. Comparing presidential candidates from vastly different eras based solely on public recognition overlooks significant changes in media, technology, and population size. Winning an election depends on votes, not historical legacy or familiarity. In 2020, Biden won more votes than any presidential candidate in history, verified by the electoral process and confirmed by numerous recounts and legal reviews.\n\nBering merely surprised by the support for Biden is not grounds for a presumption of guilt. Trump’s overwhelming win this month was shocking, but that does not suggest that it wasn’t fair. Hypocrisy exists here.', 'created': '2024-11-08 19:35:18', 'submission_id': '1glvro7'}
{'comment': "Man, what? \n\nMike Pence's role in certifying the 2020 election was entirely consistent with his constitutional duty and existing law. The 12th Amendment and the Electoral Count Act (ECA) of 1887 made it clear that the Vice President's role is to preside over the counting of electoral votes submitted by the states, not to unilaterally decide their validity. Any disputes over state-certified votes are resolved by Congress, not the Vice President, which is exactly what happened during the 2020 certification. \n\nThe 2022 Electoral Count Reform Act, which aimed to clarify and modernize the ECA, did not exist at the time and thus has no bearing on Pence’s actions. He followed the law and fulfilled his constitutional role by overseeing the process without attempting to alter the certified results.\n\nOf everything I have said here, what do you not understand? These are not feelings, these are facts. The arguments I have head against this issue have been purely emotionally charged. It's okay to dislike the outcome of 2020, but to to say it was unconstitutional is **factually** wrong. Stop attacking this man for no reason. He has done nothing for people to say he should be *h\\*nged*. That is sick and I absolutely lost respect for a lot of conservatives that day. Being a party of law and order and of **Christ** has never been less clear until that day. I was raised by older generation, devoted, Baptist Christians. That made me **SICK** to my stomach.", 'created': '2024-11-07 20:07:12', 'submission_id': '1glvro7'}
{'comment': "Pence. He absolutely has to put the constitution over his president but he didn't have to go into great detail about what was said between them. It left too much speculation & fodder for policy foes to twist. And they did.", 'created': '2024-11-09 03:55:16', 'submission_id': '1glvro7'}
{'comment': 'I was born at night. But not last night. No one believes you. No one.', 'created': '2024-11-08 19:52:23', 'submission_id': '1glvro7'}
{'comment': 'Wow, what an unhinged rant. Get help.', 'created': '2024-11-07 20:12:18', 'submission_id': '1glvro7'}
{'comment': 'I don’t much care for what you think people perceive of my argument. You don’t speak for everyone, thus your response was meaningless. If you have nothing of substance to contribute, then we can end it here.', 'created': '2024-11-08 19:58:44', 'submission_id': '1glvro7'}
{'comment': 'Said the lying communist …', 'created': '2024-11-08 20:03:29', 'submission_id': '1glvro7'}
{'comment': 'Again with the nonsensical comments. Everything I said comes from research, which is public information. You can take everything I’ve said and Google it. I research for a living. I don’t walk into an argument without facts, because I care not to sit here and bicker with someone who only seeks to trade insults. If you believe I am lying, bring me data, articles, and statistics. I am happy to have a productive conversation. Just because you have nothing of substance to bring besides emotionally charged insults, doesn’t mean I am wrong. It just means you do not like what I have to say. While you’re at it, provide proof that I am a communist, as well. I was raised by Deep South conservatives who taught me how to differentiate between facts and opinions. You can say whatever you’d like to attempt to offend me. I have no emotional attachment to this.', 'created': '2024-11-08 20:12:18', 'submission_id': '1glvro7'}
{'comment': "You believe the government's propaganda? So very weird!", 'created': '2024-11-08 20:33:57', 'submission_id': '1glvro7'}
{'comment': 'I understand that we may have very different perspectives on this issue, and I respect your right to your beliefs. However, calling verified facts ‘government propaganda’ without addressing the specifics of the evidence presented doesn’t foster a productive debate. Independent investigations, bipartisan audits, and numerous court cases, including those presided over by Trump-appointed judges, consistently found no evidence of widespread election fraud in 2020.\n\nAs for accusations of communism, I’m not here to promote any ideology. I’m simply focused on the facts and the established legal processes that guided the 2020 election. Disagreement is healthy in a democracy, but it’s best when rooted in verifiable information and civil discourse.', 'created': '2024-11-08 20:36:48', 'submission_id': '1glvro7'}
{'comment': "Weird that you still believe in propaganda and outright lies! Don't drink the Kool aid! Touch grass and everything will be fine!", 'created': '2024-11-08 20:41:17', 'submission_id': '1glvro7'}
{'comment': 'If you’re not educated on the issue you don’t have to respond to me. Otherwise, prove me wrong.', 'created': '2024-11-08 20:51:18', 'submission_id': '1glvro7'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 18:14:32', 'submission_id': '1glvl3b'}
{'comment': 'That’s comedy gold, if it’s real!', 'created': '2024-11-07 18:36:28', 'submission_id': '1glvl3b'}
{'comment': 'Just realized - Trump now outranks Mayor McCheese !', 'created': '2024-11-07 20:08:13', 'submission_id': '1glvl3b'}
{'comment': 'Kamala’s job there was as the Hamburglar', 'created': '2024-11-07 20:40:34', 'submission_id': '1glvl3b'}
{'comment': 'It is!', 'created': '2024-11-07 18:51:51', 'submission_id': '1glvl3b'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 17:20:32', 'submission_id': '1glua8k'}
{'comment': "Good idea.\n\nBecause you know, most likely, when a Democratic regime assumes the Presidency again, they're going to disregard border security.", 'created': '2024-11-07 17:31:35', 'submission_id': '1glua8k'}
{'comment': None, 'created': '2024-11-07 20:25:35', 'submission_id': '1glua8k'}
{'comment': 'How the hell is Kari Lake losing?!', 'created': '2024-11-08 10:09:17', 'submission_id': '1glua8k'}
{'comment': 'What Next.... "Human sacrifice, dogs and cats living together... MASS HYSTERIA!" 😆', 'created': '2024-11-07 20:44:14', 'submission_id': '1glua8k'}
{'comment': 'She didn’t run a good campaign.', 'created': '2024-11-08 16:09:04', 'submission_id': '1glua8k'}
{'comment': 'It clearly must be true because I got a lot of people telling me that.', 'created': '2024-11-08 23:59:14', 'submission_id': '1glua8k'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 17:00:00', 'submission_id': '1gltswj'}
{'comment': "I wonder what Harris is going to do after she is out.\n\nCommentator on news? Doubtful due to her word salad speaking.\n\nSpeaker at companies or events due to being VP? Possible, since they may hear her speech and be so confused that they applaud just so they don't appear dumb to each other.\n\nProsecutor? Possible, since again her word salad may just confuse the jury so much they have to think she is right so they would convict.", 'created': '2024-11-07 17:08:34', 'submission_id': '1gltswj'}
{'comment': 'Most definitely will have a chair on “the view” queens of word salad', 'created': '2024-11-07 21:12:48', 'submission_id': '1gltswj'}
{'comment': 'Queue up the Queen song!!', 'created': '2024-11-07 19:15:27', 'submission_id': '1gltswj'}
{'comment': 'Maybe a cook book... The Art Of The Word Salad. 😆', 'created': '2024-11-07 17:25:28', 'submission_id': '1gltswj'}
{'comment': 'In the words of Jesse Lee Peterson… we probably won’t see Kamilla again', 'created': '2024-11-07 20:24:29', 'submission_id': '1gltswj'}
{'comment': 'Maybe she will get back with Montel?', 'created': '2024-11-08 02:47:38', 'submission_id': '1gltswj'}
{'comment': "Probably the public speaking deals. That's what Hillary got after her own defeat.", 'created': '2024-11-10 06:30:33', 'submission_id': '1gltswj'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 16:49:31', 'submission_id': '1gltjh5'}
{'comment': "Hey, They're finally funny!", 'created': '2024-11-07 17:48:12', 'submission_id': '1gltjh5'}
{'comment': 'Trump is their bread & butter. Without a Boogie Man to hate, their ratings were tanking.', 'created': '2024-11-07 21:10:28', 'submission_id': '1gltjh5'}
{'comment': 'They are so far gone , they actually believe their on propaganda!!!', 'created': '2024-11-07 22:15:19', 'submission_id': '1gltjh5'}
{'comment': "All of them white males too. But the leftist media doesn't bring *that* up. No DEI in late night talk I guess.", 'created': '2024-11-08 00:21:00', 'submission_id': '1gltjh5'}
{'comment': 'Fallon’s was actually good. He was unbiased, funny, and kept it lighthearted. I’ve always respected Fallon, and he was also the only host in 2016 to actually have Trump on the show.', 'created': '2024-11-08 02:14:21', 'submission_id': '1gltjh5'}
{'comment': 'Get a grip, lol', 'created': '2024-11-08 00:04:28', 'submission_id': '1gltjh5'}
{'comment': 'Love it!', 'created': '2024-11-08 02:51:36', 'submission_id': '1gltjh5'}
{'comment': 'Not to worry. Their boyfriends will comfort them tonight.', 'created': '2024-11-09 12:40:50', 'submission_id': '1gltjh5'}
{'comment': 'You should check out the meltdowns on Threads. 😂🤣', 'created': '2024-11-09 20:33:20', 'submission_id': '1gltjh5'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 16:11:29', 'submission_id': '1glso0o'}
{'comment': 'Yeah… I’m Latino, and to see all these people show their racism is just wow. They’re doing exactly what they were blaming republicans of. And they do it as if nothing!', 'created': '2024-11-07 17:40:46', 'submission_id': '1glso0o'}
{'comment': 'Third picture: "Democrats are not racists, we are inclusive!" In the meantime Greg:', 'created': '2024-11-07 17:12:15', 'submission_id': '1glso0o'}
{'comment': 'Dems: we are the party of diversity and inclusion! We will fight to for love and tolerance for everyone!\nAlso dems: if u don’t agree with my radical opinions you’re dead to me, I’ll try to ruin your life and I’ll spew hateful word vomit. I refuse to tolerate or accept anyone around who doesn’t think like me or if I don’t approve of your candidate choice. 🤦\u200d♀️', 'created': '2024-11-07 16:49:48', 'submission_id': '1glso0o'}
{'comment': None, 'created': '2024-11-07 16:30:15', 'submission_id': '1glso0o'}
{'comment': 'And now they want Biden to intervene and start a recount of the election! 🤣', 'created': '2024-11-07 17:34:09', 'submission_id': '1glso0o'}
{'comment': 'I hope mom shuts off their inheritance', 'created': '2024-11-07 17:37:34', 'submission_id': '1glso0o'}
{'comment': 'Such insane bigotry from the left. These people need Jesus.', 'created': '2024-11-07 17:13:07', 'submission_id': '1glso0o'}
{'comment': 'Fuck Greg. There. I said it. Hope you get deported and banned.', 'created': '2024-11-07 17:44:05', 'submission_id': '1glso0o'}
{'comment': 'I don’t think that it’s illegal to drive to another state to get an abortion if it’s not legal in yours.', 'created': '2024-11-07 17:40:38', 'submission_id': '1glso0o'}
{'comment': 'You know, when Trump lost in 20, I went "well that sucks" and moved on with my life', 'created': '2024-11-07 20:33:27', 'submission_id': '1glso0o'}
{'comment': "1) Classic example of *exactly* what the libs/leftists are really after - destruction of all power they don't control. First the royals, then the church, now the family.\n\n\n2) Note how they *never* consider where exactly those 15 million came from - they weren't there for Obama in '12. Interesting stats.\n\n\n3) The truth comes out at least; LGBTQ+ Pride ideology is (& has always been) a white bourgeois ideology- completely unknown to much of the world & most workers.", 'created': '2024-11-07 18:10:07', 'submission_id': '1glso0o'}
{'comment': 'Just proves the point - all of their accusations are admissions.', 'created': '2024-11-07 16:33:08', 'submission_id': '1glso0o'}
{'comment': "I hate how unsurprised i am. They lose their shit if they can't force their ideologies on everyone else.. this is why i think a lot of stuff is gonna happen in the whitehouse before jan.", 'created': '2024-11-07 16:56:40', 'submission_id': '1glso0o'}
{'comment': 'This right here is why Democrats lost. The majority of voters don\'t spend all day on the internet making their entire lives about politics. \nBut when the average joe finally takes a peek at what\'s going on they look at democrats and see "if you don\'t agree with me 100% I\'m not speaking to you and you\'re a Nazi" why would any average person look at that and think "oh yea let me be affiliated with that side"', 'created': '2024-11-07 19:22:47', 'submission_id': '1glso0o'}
{'comment': 'The hypocrisy is unbelievable. Serious mental health issues in these pics', 'created': '2024-11-07 16:49:00', 'submission_id': '1glso0o'}
{'comment': "TDS. it's real.", 'created': '2024-11-07 17:01:41', 'submission_id': '1glso0o'}
{'comment': 'This shows who is the real racist and “threat to democracy”', 'created': '2024-11-07 17:06:16', 'submission_id': '1glso0o'}
{'comment': 'u/theoryofgames deleted all his posts and comments', 'created': '2024-11-07 17:50:29', 'submission_id': '1glso0o'}
{'comment': 'The seething hatred is all they have. That’s how they drove their voters into the arms of Trump', 'created': '2024-11-07 18:05:18', 'submission_id': '1glso0o'}
{'comment': 'The amount of hate and bias the left has is staggering, the only thing bigger is their level of stupidity for believing everything they read on Reddit, and believing that MSM was actually reporting the truth. News flash, both these organizations pander the democratic party line.', 'created': '2024-11-07 21:10:23', 'submission_id': '1glso0o'}
{'comment': 'One of my coworkers tried to report me to HR because we simply looked at 270 to win the day before the election. She thought it was going to be a Kamala sweep. I just said I thought it was going to come down to PA with Wisconsin and Michigan going to Kamala, and N.C. and Georgia going to Trump. That was it.', 'created': '2024-11-07 21:58:39', 'submission_id': '1glso0o'}
{'comment': 'As funny as this entire meltdown is, I hope these people find some type of therapy. It’s clear to me that they need help with the person that they are and I hope one day maybe they can change and grow. But I will still continue to enjoy the lefts angry, hateful, and racist meltdown.', 'created': '2024-11-07 18:47:04', 'submission_id': '1glso0o'}
{'comment': 'They get really racist when they don’t get their way', 'created': '2024-11-07 21:46:58', 'submission_id': '1glso0o'}
{'comment': "There's that joy and love I keep hearing about.", 'created': '2024-11-07 19:08:34', 'submission_id': '1glso0o'}
{'comment': "Seriously I'm so sick of the hate.\nHonestly people have forgotten it's ok to have different opinions.\n\nHeck that's what makes America great. We can all talk and share ideas because we have the right to free speech", 'created': '2024-11-07 19:11:55', 'submission_id': '1glso0o'}
{'comment': '\\#3? Um. Only US citizens vote. Idiots.', 'created': '2024-11-07 19:22:33', 'submission_id': '1glso0o'}
{'comment': 'The missing votes makes me crack up. They are screaming at thin air because those votes never existed. Maybe they will start to realize that as the days come. Average was 62-67 for the last 5 elections within 2020 and then magically they got 80 mil in 2020 lmao ok', 'created': '2024-11-07 20:27:53', 'submission_id': '1glso0o'}
{'comment': 'Oh wow! They think those 15 million votes belonged to real people', 'created': '2024-11-07 22:08:59', 'submission_id': '1glso0o'}
{'comment': '15 millions of dems have dead', 'created': '2024-11-07 16:45:14', 'submission_id': '1glso0o'}
{'comment': 'Heh heh...The One Term President sub now belongs to JOE BIDEN!', 'created': '2024-11-07 18:37:03', 'submission_id': '1glso0o'}
{'comment': 'Pure evil from the virtue signallers. So glad I caught on to the fact that all that glitters is not gold in this life and when the mask comes off, we live in a very topsy turvy world that wants you to believe evil is good and visa versa', 'created': '2024-11-07 18:56:17', 'submission_id': '1glso0o'}
{'comment': 'Aren’t they the side for “acceptance and solidarity”?\n\nI want to see the results of the one who bet $10k', 'created': '2024-11-07 19:50:17', 'submission_id': '1glso0o'}
{'comment': 'It’s funny how they banned you without saying anything insulting or out of hand 😅 communist mentality at it’s finest', 'created': '2024-11-07 19:57:34', 'submission_id': '1glso0o'}
{'comment': 'I had this fleeting thought when I saw that Trump had won the election that maybe, just maybe, the leftists would finally introspect on how their behavior had driven so many people away from their side.\n\nBoy was I wrong.', 'created': '2024-11-07 20:38:23', 'submission_id': '1glso0o'}
{'comment': 'I read another post from someone BRAGGING about cutting off their ONLY parent (and barring them from seeing their grandkids) because they voted for Trump. We all know if there would have been a different outcome and we said we cut off people who voted for Harris that we would be met with disdain and told to make peace and get along vs being applauded like this jackass is', 'created': '2024-11-07 20:51:17', 'submission_id': '1glso0o'}
{'comment': 'The hatred is amazing. I lived through 4 of Carter, 8 years of Clinton, 8 of Obama and 4 of Biden. Yeah, I’m old. Was I happy with the outcomes of any of those elections? No, but I never sat in my car screaming, crying, hitting myself or threatening the life and livelihood of anyone who voted for those men. The insanity is off the register.', 'created': '2024-11-07 23:11:13', 'submission_id': '1glso0o'}
{'comment': 'It’s cray as hell the sourness of it all. I have been banned for the lamest of shit last two days stuff that is seriously regular conversations.', 'created': '2024-11-07 17:27:27', 'submission_id': '1glso0o'}
{'comment': "Come on guys, it's the party of understanding and compassion...those all must be photshopped /s", 'created': '2024-11-07 19:29:08', 'submission_id': '1glso0o'}
{'comment': 'They are completely unhinged. They deserve what is coming.', 'created': '2024-11-07 19:29:13', 'submission_id': '1glso0o'}
{'comment': 'How their masks are falling. Doing shit like this and telling latino people we will get put in ICE vans soon. Delusional pricks.', 'created': '2024-11-07 20:27:56', 'submission_id': '1glso0o'}
{'comment': 'The one trying to report her neighbors and the one trying to get her coworker fired need to fuck off', 'created': '2024-11-07 20:58:44', 'submission_id': '1glso0o'}
{'comment': 'That kind of hate, intolerance, vitriol and general uncompromising discourse is why we voted for Trump.\xa0\n\n\nYall said you would leave, so quit your batching and moaning and find a new home already. Your attitudes are UnAmerican.\xa0', 'created': '2024-11-07 21:27:22', 'submission_id': '1glso0o'}
{'comment': 'The 10 to 20 million voters looked at what the DNC "served" up as a presidential candidate and said "pass" is too hard a concept for the liberal microbrains to understand. This is not rocket science! Lol', 'created': '2024-11-07 21:42:19', 'submission_id': '1glso0o'}
{'comment': 'Imagine burning 10k on that cackling clown 💀', 'created': '2024-11-08 02:10:22', 'submission_id': '1glso0o'}
{'comment': 'I’ve seen some insane claims the last couple days. One said that him & his parter were supposed to get married in summer of 2025 & now they won’t be able to cause Trump is going to ban it 🤦🏽\u200d♀️\nThen another was literally crying and saying Trump is going to round up everyone who is LGBTQ & put the in fricking, “concentration camps”! \nLike where thee actual f*ck are they getting this?!? They legit believe it too! Hes never been against much of anything LGBTQ! The only thing he said was men do not belong in womens sports and minors should not get sex changes.', 'created': '2024-11-08 08:52:25', 'submission_id': '1glso0o'}
{'comment': 'So much love and tolerance, just as theyre famed for.', 'created': '2024-11-07 17:55:45', 'submission_id': '1glso0o'}
{'comment': 'Ah yes the party of love and tolerance.', 'created': '2024-11-07 19:38:41', 'submission_id': '1glso0o'}
{'comment': 'I’ve noticed in this sub we don’t even talk that bad about the left? And they are shitting on their own people, how sad', 'created': '2024-11-07 20:18:24', 'submission_id': '1glso0o'}
{'comment': "I'm pretty sure those 15 million Democrats arrived at the places where the counting was taking place on radio flyer wagons at 3 am back in 2020....", 'created': '2024-11-07 20:24:33', 'submission_id': '1glso0o'}
{'comment': 'They are horrible. And when they use MAGA as an insult it really says a lot. Of course, I believe that came from Chuck Shumer and Hakeem Jeffries.', 'created': '2024-11-07 20:51:53', 'submission_id': '1glso0o'}
{'comment': 'Tolerant - only when there’s group think - it was a win against racism and for individuals IMO!', 'created': '2024-11-07 20:51:54', 'submission_id': '1glso0o'}
{'comment': 'Ive gotten banned from 4 subs and didn’t say anything against their guidelines lol', 'created': '2024-11-07 21:17:41', 'submission_id': '1glso0o'}
{'comment': 'Failure shows our true colors.', 'created': '2024-11-07 21:24:57', 'submission_id': '1glso0o'}
{'comment': 'In their defense. They don’t know that the 15 million Democrats that didn’t show up are all dead and we’re only able to crawl out of the grave in 2020', 'created': '2024-11-07 21:33:33', 'submission_id': '1glso0o'}
{'comment': 'Ah, the tolerant left', 'created': '2024-11-07 21:46:56', 'submission_id': '1glso0o'}
{'comment': 'The party of love and acceptance', 'created': '2024-11-07 22:00:08', 'submission_id': '1glso0o'}
{'comment': 'The “tolerant” (and very racist) left for ya.', 'created': '2024-11-07 22:20:49', 'submission_id': '1glso0o'}
{'comment': 'This reminds me of grade school, when my mother taught me to respond to name-calling with, "I know YOU are, but what am I?" over and over, until the bully gets frustrated and wanders off 😂 So, who\'s the racist? Who\'s the intolerant one? Who\'s screaming "DEPORTATION!" ? \n\nOh yeah- it\'s the happy-clappy JOYFUL party, that\'s who!', 'created': '2024-11-07 22:29:54', 'submission_id': '1glso0o'}
{'comment': 'How inclusive', 'created': '2024-11-07 22:54:46', 'submission_id': '1glso0o'}
{'comment': 'I am bathing in the tears i fucking love it. I love for this', 'created': '2024-11-07 23:13:44', 'submission_id': '1glso0o'}
{'comment': "What blows my mind is in a years time when all of their delusions didn't come to fruition they wont even be embarrassed about how stupid they sounded, they will just move on to the next subject the media told them to worry about.", 'created': '2024-11-08 03:32:32', 'submission_id': '1glso0o'}
{'comment': 'Lol this is a good reminder to lose with grace. I’m still ashamed at the way 2020 turned out. Republicans did not do well. Sure, it was a sussy one but let’s hold it together next time a democrat wins. Please', 'created': '2024-11-08 15:24:31', 'submission_id': '1glso0o'}
{'comment': 'Petulant children. That is all they are. They want their way and if they don’t get their way, they cry and throw a tantrum. They only tolerate people who are just like them and no matter how reasonable you are or kind or loving, the second they know that you disagree with them in the slightest, you become an enemy and there is no reasoning with them. Again, they are children and nothing more.', 'created': '2024-11-09 04:37:28', 'submission_id': '1glso0o'}
{'comment': "Isn't it creepy and maybe illegal to take someone's medical records and stuff?", 'created': '2024-11-09 18:47:38', 'submission_id': '1glso0o'}
{'comment': '2028 is going to be an absolute blowout', 'created': '2024-11-07 17:54:54', 'submission_id': '1glso0o'}
{'comment': 'They’re unraveling so bad I almost feel bad for them. I couldn’t imagine living in such a hateful state of mind, that can’t be healthy lol', 'created': '2024-11-07 20:15:54', 'submission_id': '1glso0o'}
{'comment': '[removed]', 'created': '2024-11-07 21:09:07', 'submission_id': '1glso0o'}
{'comment': 'What 😭', 'created': '2024-11-07 21:49:15', 'submission_id': '1glso0o'}
{'comment': 'How dare anyone have a different opinion', 'created': '2024-11-07 22:30:00', 'submission_id': '1glso0o'}
{'comment': "Why are they yelling at 15 million people that don't exist? Their heads are so far up their own asses that they don't realize those were not legal votes.", 'created': '2024-11-07 22:38:53', 'submission_id': '1glso0o'}
{'comment': 'Dems “We are the tolerable party”. Dems again - Proceeds to absolutely demolish and dehumanize people who don’t agree with their way of things.\n\nIt’s so funny in the end just how imbecile you have to be to not look beyond the chamber they are trapped in.', 'created': '2024-11-07 22:39:19', 'submission_id': '1glso0o'}
{'comment': 'I was banned from rtexas just cause I said I feel happy he won', 'created': '2024-11-07 22:44:26', 'submission_id': '1glso0o'}
{'comment': 'The party of hate, so glad they are going to be out of power soon so we can ostracize them all.', 'created': '2024-11-07 23:10:52', 'submission_id': '1glso0o'}
{'comment': 'Wow. I’m speechless.', 'created': '2024-11-07 23:19:43', 'submission_id': '1glso0o'}
{'comment': 'Is super tough on the internet... real life they are cowards', 'created': '2024-11-07 23:59:43', 'submission_id': '1glso0o'}
{'comment': 'Ah yes. The party of love and acceptance but only if you’re the same as us.', 'created': '2024-11-08 00:19:18', 'submission_id': '1glso0o'}
{'comment': 'So loving, peaceful, and tolerant.', 'created': '2024-11-08 00:27:24', 'submission_id': '1glso0o'}
{'comment': 'The party of love and tolerance, amirite?', 'created': '2024-11-08 00:29:17', 'submission_id': '1glso0o'}
{'comment': "These radical feminist and liberal women will bash a man 24/7 for three years and then for the one year the election rolls back around, said women will expect men to be on their side and fully support them and their candidate...i just can't understand it.", 'created': '2024-11-08 00:33:04', 'submission_id': '1glso0o'}
{'comment': 'This is the result of sitting up all day watching CNN or using social media and celebrities as your sources when doing political research.', 'created': '2024-11-08 00:33:10', 'submission_id': '1glso0o'}
{'comment': 'If any liberal calls election fraud, tell them to look up the polling numbers of 2012, 2016, and 2024 elections, then tell them to compare it to 2020 so they can see how insane of a turnout happened for Joe FREAKING Biden, in the only election where mass mail-in ballots were pushed to the public...', 'created': '2024-11-08 00:33:18', 'submission_id': '1glso0o'}
{'comment': 'The third one got me dead LOOL', 'created': '2024-11-08 00:41:40', 'submission_id': '1glso0o'}
{'comment': 'People are idiots… why do they think the world is ending when a president they don’t like gets elected… I didn’t think the world was ending when Biden got elected. I knew the country would not be in a good spot during his term, but damn I didn’t think the country was going to be obliterated Lmao.', 'created': '2024-11-08 00:52:18', 'submission_id': '1glso0o'}
{'comment': 'As a parent that guys messed up. \n\nAs an observer I can’t stop laughing.', 'created': '2024-11-08 01:02:50', 'submission_id': '1glso0o'}
{'comment': 'Politics is funny sometimes', 'created': '2024-11-08 01:20:14', 'submission_id': '1glso0o'}
{'comment': 'The posts I have seen have just been heart breaking, and made me seriously consider even deleting my account. It seems every subreddit has some "doom end of times" post since the election, and always spewing the most vile hateful things. Including the parenting, teacher, and Nanny groups.', 'created': '2024-11-08 01:20:32', 'submission_id': '1glso0o'}
{'comment': 'Ty I been wondering what groups I needed to be in to find this gold 😂😂😂', 'created': '2024-11-08 01:23:17', 'submission_id': '1glso0o'}
{'comment': 'That 15 million was all the dead people who voted during that election.', 'created': '2024-11-08 01:34:09', 'submission_id': '1glso0o'}
{'comment': 'Wow.. They are so tolerant and inclusive..', 'created': '2024-11-08 01:42:56', 'submission_id': '1glso0o'}
{'comment': 'I commented on a post saying, essentially; “This is purely anecdotal, but I’ve seen some people in my circle who are claiming the election is fraud just like MAGA did in 2020”\n\n\nAll the replies are “That’s not happening, nobody’s doing that, MAGA was so much worse in 2020, just because you saw some people on Twitter posting about it doesn’t make it true!”\n\n\nLike…I’m not saying every Democrat is trying to overturn the election. I very clearly said that I personally know a few people who are saying this. Why is that not clear', 'created': '2024-11-08 01:45:26', 'submission_id': '1glso0o'}
{'comment': 'Democrats are supposed to be the party of love and equality, except when they don’t get what they want.', 'created': '2024-11-08 01:45:28', 'submission_id': '1glso0o'}
{'comment': "People coping hard if they believe 15 million people just didn't show up to vote. Those monsters cheated.", 'created': '2024-11-08 02:06:02', 'submission_id': '1glso0o'}
{'comment': "This is how most of them have always acted when they haven't gotten their way...", 'created': '2024-11-08 02:38:04', 'submission_id': '1glso0o'}
{'comment': 'Betting on Kamala is crazy business omg', 'created': '2024-11-08 03:49:28', 'submission_id': '1glso0o'}
{'comment': 'lol I need to get off Reddit this week 😭😂 I saw almost all of these when they were posted 😂', 'created': '2024-11-08 04:14:58', 'submission_id': '1glso0o'}
{'comment': "Isn't shutting off a utility, like internet, illegally a felony?", 'created': '2024-11-08 04:21:10', 'submission_id': '1glso0o'}
{'comment': 'I\'m sure those 15 million "absentee" voters were very hurt by those words. ;)', 'created': '2024-11-08 04:41:31', 'submission_id': '1glso0o'}
{'comment': "WOOOOOOOOOOOOOOW, who's racist? Who's a bigot? \n\nWell there you have it folks...\n\nThat's how they really feel.", 'created': '2024-11-08 05:35:41', 'submission_id': '1glso0o'}
{'comment': 'LifeProTips subreddit has liberals asking about buying guns because “LOTS of guys are acting rapey & saying ‘your body, MY choice”. I asked for sources, & expect to be banned any minute.', 'created': '2024-11-08 06:20:32', 'submission_id': '1glso0o'}
{'comment': 'Reddit is filled with people bragging about how they are cutting off their family who voted for Trump. It’s mind boggling to me. I honestly can’t wrap my brain around it.', 'created': '2024-11-08 07:08:30', 'submission_id': '1glso0o'}
{'comment': 'They’ve been lied to for so long that they are now continuing the lies and doing things worse than what will supposedly happen. Insane. I blame the media.', 'created': '2024-11-08 07:50:06', 'submission_id': '1glso0o'}
{'comment': 'I’m sorry I laughed out loud at “I play some poker”', 'created': '2024-11-08 08:09:48', 'submission_id': '1glso0o'}
{'comment': 'Couldn’t have happened to a better bunch of racist, bigoted assholes.', 'created': '2024-11-08 08:20:51', 'submission_id': '1glso0o'}
{'comment': 'Their racism is showing \U0001facf', 'created': '2024-11-08 08:25:51', 'submission_id': '1glso0o'}
{'comment': 'Doesn’t surprise me', 'created': '2024-11-08 08:40:23', 'submission_id': '1glso0o'}
{'comment': 'Oh no! Lower taxes, no wars, affordable food. What are we gonna do', 'created': '2024-11-08 08:47:40', 'submission_id': '1glso0o'}
{'comment': None, 'created': '2024-11-08 09:42:26', 'submission_id': '1glso0o'}
{'comment': 'I love how that one guy lost $10k, totally deserved', 'created': '2024-11-08 10:21:40', 'submission_id': '1glso0o'}
{'comment': 'Lots of emotional outbursts by people who can only pretend to self regulate. Hmm, seems like republicans were accused of the exact same thing.', 'created': '2024-11-08 10:30:55', 'submission_id': '1glso0o'}
{'comment': 'Smh, idk why people don\'t see that 15 million people, didn\'t just "not show up" 😆😆', 'created': '2024-11-08 11:04:01', 'submission_id': '1glso0o'}
{'comment': 'lol i got banned from ask Reddit of all places 🤣🤣🤣', 'created': '2024-11-08 11:18:36', 'submission_id': '1glso0o'}
{'comment': 'I do find it amazing that 15 million people didn’t show up for Harris. She either sucks so much people stayed home or Biden’s election had some funny business. I’m cool with this timeline though, we get 12 years of Trump antics rather than just 8 this way.\n\nTDS has completely dismantled the Democratic Party platform. They don’t know what they stand for anymore. They just know that they aren’t Trump. My 7 month old knows she isn’t Trump. I know I’m not Trump, but I won’t claim to be good to run for president because of it.', 'created': '2024-11-08 11:41:28', 'submission_id': '1glso0o'}
{'comment': 'Half the Democratic Party turned into what they feared the Republicans were, Racist. They’ll only accept people as long as they’re liberal', 'created': '2024-11-08 13:09:09', 'submission_id': '1glso0o'}
{'comment': 'So they are saying me ( born here Cuban parents) and all my legal Cuban relatives are being deported……… right!😂😂😂😂😂', 'created': '2024-11-08 13:36:14', 'submission_id': '1glso0o'}
{'comment': 'It’s almost like something doesn’t add up from last election to this one. Hmmmm 🤔', 'created': '2024-11-08 13:49:42', 'submission_id': '1glso0o'}
{'comment': 'Insane', 'created': '2024-11-08 14:21:07', 'submission_id': '1glso0o'}
{'comment': 'Yep the whole thread has been locked down and comments erased. The fear is setting in 😎', 'created': '2024-11-08 18:51:17', 'submission_id': '1glso0o'}
{'comment': "It's TDS, plain and simple", 'created': '2024-11-09 14:02:42', 'submission_id': '1glso0o'}
{'comment': 'I just messaged that person and all I said was yes. Yes you are.', 'created': '2024-11-12 16:47:39', 'submission_id': '1glso0o'}
{'comment': 'Whenever a Democrat does something irrational, many Republicans attach that behavior to all registered Dems. And vice versa. When will people realize that some people are just jerks, and they come from both parties.', 'created': '2024-11-10 23:00:11', 'submission_id': '1glso0o'}
{'comment': 'I\'ve always said the actual racists are the ones screaming "You\'re a racist" at everyone. So it\'s not one but surprising to me that they are showing their true colors now.', 'created': '2024-11-07 20:36:41', 'submission_id': '1glso0o'}
{'comment': 'Liberals were always great at projecting things when all they had to do was look in the mirror and they see a white hood over them.', 'created': '2024-11-08 03:12:27', 'submission_id': '1glso0o'}
{'comment': 'If you’re doing something evil, always preemptively accuse your opponents of doing it.\n\nDems live by that principle.', 'created': '2024-11-09 20:34:36', 'submission_id': '1glso0o'}
{'comment': 'See that’s what I’m saying at least I know my republican family is racist, with my young friends I can never tell 💀', 'created': '2024-11-07 23:32:30', 'submission_id': '1glso0o'}
{'comment': "You're racist and communist", 'created': '2024-11-07 20:52:25', 'submission_id': '1glso0o'}
{'comment': 'I’m a recent convert from the other side. I’ve received more hate from my democrat friends in two days than I ever did from republicans in my years of voting D.', 'created': '2024-11-08 01:43:17', 'submission_id': '1glso0o'}
{'comment': 'They need Jesus', 'created': '2024-11-07 16:53:15', 'submission_id': '1glso0o'}
{'comment': 'But not surprising.', 'created': '2024-11-07 17:42:31', 'submission_id': '1glso0o'}
{'comment': None, 'created': '2024-11-07 22:07:04', 'submission_id': '1glso0o'}
{'comment': 'lol he’s not gonna help much with his MAGA hat', 'created': '2024-11-07 17:38:29', 'submission_id': '1glso0o'}
{'comment': '\nBiden looks so happy today.', 'created': '2024-11-07 19:42:44', 'submission_id': '1glso0o'}
{'comment': 'I doubt he’s even aware he’s the president', 'created': '2024-11-07 19:51:36', 'submission_id': '1glso0o'}
{'comment': 'He’s in a nursing home enjoying his apple sauce, leave him be.', 'created': '2024-11-07 23:15:52', 'submission_id': '1glso0o'}
{'comment': 'Shuts the door when the daughter gets back from college in debt with a degree in liberal arts and can’t get a job', 'created': '2024-11-07 19:32:32', 'submission_id': '1glso0o'}
{'comment': 'Like anyone left in the country has any money to pass down anymore after the last few years.', 'created': '2024-11-07 20:40:52', 'submission_id': '1glso0o'}
{'comment': 'PLEASE', 'created': '2024-11-07 17:47:30', 'submission_id': '1glso0o'}
{'comment': 'On the Texas ballot, there was a proposal to change the law to allow woman who left the state to have an abortion be criminally charged. But obviously no one voted for that.', 'created': '2024-11-08 05:57:21', 'submission_id': '1glso0o'}
{'comment': 'It’s not illegal and women DO have the right to travel outside of their state to get an abortion. \n\nPeople shouldn’t be allowed to vote if they don’t even understand their own state’s laws.', 'created': '2024-11-08 01:31:34', 'submission_id': '1glso0o'}
{'comment': 'Right went to work the next day lol', 'created': '2024-11-07 21:06:47', 'submission_id': '1glso0o'}
{'comment': 'I was working when I learned Biden won. Just sighed and rolled my eyes and continued on', 'created': '2024-11-09 18:47:05', 'submission_id': '1glso0o'}
{'comment': "Anywhere from 10 to 20 million depending on where you're looking at ballots, but every 4 years for three or four elections back and this current election, the numbers ran about the same for number of voters.\n\n2020 was quite the anomaly! Apparently 10 to 20 million people, in the midst of a pandemic lockdown, where so many things were closed, millions of people managed to find a way to get out and vote! \n\nAnd then they just... Disappeared...\n\nNever to be seen again...\n\nWonder what happened...", 'created': '2024-11-07 20:21:52', 'submission_id': '1glso0o'}
{'comment': 'They\'re brainwashed demented children. "You voted for Trump mom? Oh ya... well take THIS!" -unplugs modem- \n\n🤣', 'created': '2024-11-07 20:29:27', 'submission_id': '1glso0o'}
{'comment': '100%.', 'created': '2024-11-07 20:00:01', 'submission_id': '1glso0o'}
{'comment': 'He cant make silly reddit posts anymore because he has to get a second job now', 'created': '2024-11-07 19:43:59', 'submission_id': '1glso0o'}
{'comment': 'Well at least they won’t be reproducing. It’s shocking how many redditors say they are never going to have children.', 'created': '2024-11-08 06:26:34', 'submission_id': '1glso0o'}
{'comment': '>\t#3? Um. Only US citizens vote\n\nMichigan would like to have a word with you.', 'created': '2024-11-08 00:57:12', 'submission_id': '1glso0o'}
{'comment': 'They deleted all of their posts and comments on reddit', 'created': '2024-11-07 19:55:20', 'submission_id': '1glso0o'}
{'comment': 'Perhaps Biden will be their new one-term president mascot 😂', 'created': '2024-11-07 20:23:14', 'submission_id': '1glso0o'}
{'comment': 'My niece says she can’t be friends with anyone who voted for the “racist misogynist who is taking her rights away”. Bye bye. Look me up when you’re sane again. Sad thing is she’s a teacher.', 'created': '2024-11-08 06:29:16', 'submission_id': '1glso0o'}
{'comment': 'Fr. They keep screaming about moving to Canada. Fucking do it already.', 'created': '2024-11-08 04:23:42', 'submission_id': '1glso0o'}
{'comment': "I know I'm not supposed to but I just really really had to this time.", 'created': '2024-11-12 16:48:39', 'submission_id': '1glso0o'}
{'comment': 'PREACH! 👏', 'created': '2024-11-08 00:07:38', 'submission_id': '1glso0o'}
{'comment': 'Exactly. It’s racist to see racism where it is not. If you are living a normal life and view non racist things/situations as potentially racist… you are the racist one! I don’t think the left is ready to hear that one though.\n\nEdit to add: the right also has a very multiculturally diverse group of supporters & political affiliates. I don’t think they would dedicate their lives working for the party- or taking the initiative to vote for these candidates, if they were… racist.', 'created': '2024-11-08 01:23:52', 'submission_id': '1glso0o'}
{'comment': 'Oooooh! Good come back!!! 😂', 'created': '2024-11-08 05:03:55', 'submission_id': '1glso0o'}
{'comment': 'Truth. It’s not the hate so much as the hypocrisy that stings so bad right? I’m choosing to forgive. Educate others with your heart. That’s what I’m aiming for. Either way, hating back is not the way forward. I want to be less like that, not more. But eff if it’s not hard! Also, I’m a convert too. WELCOME!', 'created': '2024-11-08 01:47:38', 'submission_id': '1glso0o'}
{'comment': 'I don’t think Jesus even wants them at this point. 😬😅', 'created': '2024-11-07 17:03:53', 'submission_id': '1glso0o'}
{'comment': "I just said this a little while ago, lol. It's so true!", 'created': '2024-11-08 01:07:34', 'submission_id': '1glso0o'}
{'comment': "Whatever you think about his presidency, he can hold his head high and say, it wasn't me!", 'created': '2024-11-07 20:22:27', 'submission_id': '1glso0o'}
{'comment': 'And Jill. Casting her vote, in all red.', 'created': '2024-11-07 22:57:44', 'submission_id': '1glso0o'}
{'comment': 'My husband said the same thing. Like a whole new man. Happy, coherent, making sense, somewhat almost healthy.', 'created': '2024-11-08 00:57:21', 'submission_id': '1glso0o'}
{'comment': "I think he's actually gloating inside. They shoved him out and look what happened.", 'created': '2024-11-08 02:57:21', 'submission_id': '1glso0o'}
{'comment': 'Stop it please. He thinks his name is Brandon', 'created': '2024-11-07 20:51:49', 'submission_id': '1glso0o'}
{'comment': 'And you know, I gave Biden a chance too. I wasn’t all doom and gloom.', 'created': '2024-11-07 21:13:09', 'submission_id': '1glso0o'}
{'comment': 'Makes you go "hmmmmm".', 'created': '2024-11-07 21:38:50', 'submission_id': '1glso0o'}
{'comment': "Someone suggested to me that ballots were mailed out to people, so it took no effort to fill it out and send it back. But I really don't think that's what happened . Its just way too convenient that when ballots were mailed in, they all pretty much went one way. Doesn't make sense.", 'created': '2024-11-07 22:23:44', 'submission_id': '1glso0o'}
{'comment': 'The spite involved would be funny if not so pathetic.', 'created': '2024-11-07 20:46:27', 'submission_id': '1glso0o'}
{'comment': 'Of course they did', 'created': '2024-11-07 19:57:26', 'submission_id': '1glso0o'}
{'comment': 'Kamala subdivided her supporters - black women for Kamala, white men for Kamala, etc. Trump never felt he had to do that.', 'created': '2024-11-08 06:21:36', 'submission_id': '1glso0o'}
{'comment': 'Oh I’m not hating back at all. It is hard, but let’s show them who the real tolerant party is.\n\nAnd thank you! It took me a while but I’m glad to be here!', 'created': '2024-11-08 01:48:53', 'submission_id': '1glso0o'}
{'comment': 'Nah, Jesus loves us all.', 'created': '2024-11-07 20:08:14', 'submission_id': '1glso0o'}
{'comment': 'Not that I would vote for him or Bernie, but the party did both of them wrong with intervening in the primaries to basically force Clinton, then Biden and finally Kamala.', 'created': '2024-11-08 00:21:08', 'submission_id': '1glso0o'}
{'comment': 'Chef’s kiss 😆😆😆 She really shined it on', 'created': '2024-11-08 16:02:45', 'submission_id': '1glso0o'}
{'comment': 'No i agree, i didnt like it but it was what it was', 'created': '2024-11-07 21:22:36', 'submission_id': '1glso0o'}
{'comment': "And, then why didn't they do it this year? \n\nIv guess it would be to much work to request a ballot", 'created': '2024-11-07 23:08:23', 'submission_id': '1glso0o'}
{'comment': 'Here’s to making America great again! Imperfect but great! All are welcome here, and those that don’t agree, we can still be friends. MAGA', 'created': '2024-11-08 02:07:45', 'submission_id': '1glso0o'}
{'comment': "I'm proud of you. Being hateful, petty, insulting, none of that does us any good, so why waste energy on it? Plus I'm a big believer is karma, real not reddit pretend, in the sense that the energy you give off in the world is the energy you will receive in return eventually. Plus, they can't stand it when you're the only one acting like an adult and they can't crack you.", 'created': '2024-11-08 05:50:00', 'submission_id': '1glso0o'}
{'comment': "That's I think. A lot of laziness. But I also think there were a lot of people out there that didn't like either candidate and just abstained. \n\nA lot of dead people didn't have chance to vote this year either. Absolute disgrace. It's their civic duty after all /s", 'created': '2024-11-07 23:11:10', 'submission_id': '1glso0o'}
{'comment': 'I can’t believe I’m saying this, but MAKE AMERICA GREAT AGAIN! Let’s fucking go!', 'created': '2024-11-08 03:02:42', 'submission_id': '1glso0o'}
{'comment': 'We need more of this <3', 'created': '2024-11-08 05:44:50', 'submission_id': '1glso0o'}
{'comment': 'Exactly. The best punishment is kindness. Don’t reward bad behavior by joining in!', 'created': '2024-11-08 14:29:50', 'submission_id': '1glso0o'}
{'comment': "There's the joke of, \n\n my grandfather voted straight party ticket every election his entire life until this most recent election, and then he switched parties!\n\nFunny that he died last year!", 'created': '2024-11-07 23:26:05', 'submission_id': '1glso0o'}
{'comment': 'Lean into it!! And don’t apologize! We can redefine this movement as we go bc there’s actually room for it here and it’s already happening. Let’s lead by example with love and bring good ppl on board bc enough ppl feel exactly like us and are already here. LFG!', 'created': '2024-11-08 03:32:59', 'submission_id': '1glso0o'}
{'comment': 'Welcome!', 'created': '2024-11-08 03:39:01', 'submission_id': '1glso0o'}
{'comment': 'F it!!!! I’m getting a maga hat', 'created': '2024-11-08 13:37:17', 'submission_id': '1glso0o'}
{'comment': 'Not too long ago I was brainwashed by the media too. I know what they feel like rn.', 'created': '2024-11-08 07:59:40', 'submission_id': '1glso0o'}
{'comment': "I've been that way in here since all the hate being thrown towards me since 2016. And damn if I haven't face a lot of it over the years.", 'created': '2024-11-08 15:50:24', 'submission_id': '1glso0o'}
{'comment': 'I love it!!! I’m having a maga party this weekend! All women! All different ethnicities and tax brackets and ages! All wearing our maga hats!', 'created': '2024-11-08 14:28:53', 'submission_id': '1glso0o'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 15:25:35', 'submission_id': '1glrmjx'}
{'comment': 'Someone on X commented on a post similar to this "Saying a prayer for the 15 million missing persons from the last election" lollllll.', 'created': '2024-11-07 17:42:25', 'submission_id': '1glrmjx'}
{'comment': "They're still dead.", 'created': '2024-11-07 15:54:16', 'submission_id': '1glrmjx'}
{'comment': 'And now they are asking where all those votes went this election and saying the “math isn’t mathing”. Their delusion knows no bounds.', 'created': '2024-11-07 16:10:42', 'submission_id': '1glrmjx'}
{'comment': "There's a locked post in another major subreddit asking this exact question", 'created': '2024-11-07 16:01:08', 'submission_id': '1glrmjx'}
{'comment': 'I sent this to my mom who was proud she took statistics and got an A years ago… she still don’t see the problem. They are so BLIND', 'created': '2024-11-07 15:49:30', 'submission_id': '1glrmjx'}
{'comment': 'Evidence of all the vote manufacturing from 2020.', 'created': '2024-11-07 15:49:59', 'submission_id': '1glrmjx'}
{'comment': 'I never bought into the stolen election stuff because I knew there were really were a lot of people that just flat out hated Trump. Then I saw this. So, suddenly that many stopped hating him? Doubt it. Was Kamala that weak of a candidate? Ok. Possible I guess, but doubt it.', 'created': '2024-11-07 16:13:43', 'submission_id': '1glrmjx'}
{'comment': 'Dead people voting and double/triple voting. Also those moved out of state still voted.', 'created': '2024-11-07 16:13:59', 'submission_id': '1glrmjx'}
{'comment': 'Too big to rig this time ❤️', 'created': '2024-11-07 19:18:13', 'submission_id': '1glrmjx'}
{'comment': 'Now this looks like they reran huge batches of votes through the tabulators. They faked Trump votes while faking many more Biden votes.', 'created': '2024-11-07 15:55:43', 'submission_id': '1glrmjx'}
{'comment': "When you're playing a video game and there's that one player whose stats just don't look right.", 'created': '2024-11-07 16:52:09', 'submission_id': '1glrmjx'}
{'comment': 'They really think 15 million people didn’t show up but most places had the busiest polls ever… the wait was hours long in my town, everywhere. \n\nThe far left wants to believe this election was rigged so bad &want to look into it… but you really can’t dig into this one without digging into 2020. I really don’t believe anyone will forget that Trump was leading in 2020 and then we all had to turn off our TVs &went to sleep to wake up to insane Biden numbers. It. Made. No. Sense.', 'created': '2024-11-07 22:03:49', 'submission_id': '1glrmjx'}
{'comment': 'Harris did not beat Biden in one single county in the United States. Not one.', 'created': '2024-11-07 19:36:54', 'submission_id': '1glrmjx'}
{'comment': 'They’re so fucking close to realizing it.\n\nSOOOOo close…', 'created': '2024-11-07 22:59:27', 'submission_id': '1glrmjx'}
{'comment': 'people of Jan 6 not looking so crazy now huh, lefties? lol', 'created': '2024-11-07 18:02:26', 'submission_id': '1glrmjx'}
{'comment': "Fox News is saying over 143 million total votes counted so far. I don't think Fox is wrong.", 'created': '2024-11-07 20:37:13', 'submission_id': '1glrmjx'}
{'comment': "They all died, I guess. I've been asking the same question since Tuesday night.", 'created': '2024-11-07 21:54:37', 'submission_id': '1glrmjx'}
{'comment': 'Wait someone is actually entertaining it? lol that’s funny. It’s so obvious that Joe was a very unpopular president very soon after he took office the Fuck Joe Biden chants started.', 'created': '2024-11-07 16:45:03', 'submission_id': '1glrmjx'}
{'comment': "To be fair, there's also a record number of red votes.", 'created': '2024-11-07 17:32:36', 'submission_id': '1glrmjx'}
{'comment': 'Cheaters never prosper', 'created': '2024-11-07 17:33:45', 'submission_id': '1glrmjx'}
{'comment': 'Maybe it was changing to daylight savings right before the election. That could have unbalanced all of those dead democrats. That could have ruined the timing of trunk loads of 3am votes being delivered.', 'created': '2024-11-08 03:12:10', 'submission_id': '1glrmjx'}
{'comment': 'they crawled right back into their graves', 'created': '2024-11-08 03:26:13', 'submission_id': '1glrmjx'}
{'comment': 'They really expect us to believe that Joe Freaking Biden was more popular than Obama...okay.', 'created': '2024-11-10 02:03:27', 'submission_id': '1glrmjx'}
{'comment': 'The fell into the back rooms. We have to get them out!', 'created': '2024-11-07 20:41:25', 'submission_id': '1glrmjx'}
{'comment': "I heard that the dems have started to admit to election fraud in order to claim that Trump won the 2020 election and then started saying that since he was the actual winner of the 2020 election, this would be his 3rd term as president so he can't win this one. They are pathetic creatures", 'created': '2024-11-07 23:15:32', 'submission_id': '1glrmjx'}
{'comment': 'You guys know there is still around 10/13 Millions votes still to be counted right ? California is only 55% reported; were their numbers added already to the count ?', 'created': '2024-11-07 16:16:54', 'submission_id': '1glrmjx'}
{'comment': 'This is done on purpose to stir up hate or they are clearly ignorant. I’m choosing the latter.\n\nThere is 140m as of 11/7 with another 7-8 mil that haven’t even been counted in CA yet', 'created': '2024-11-07 18:05:31', 'submission_id': '1glrmjx'}
{'comment': ' New total is 146,216,662 and still counting', 'created': '2024-11-10 00:37:27', 'submission_id': '1glrmjx'}
{'comment': 'The two comments on that post are cracking me up 😂', 'created': '2024-11-10 21:54:04', 'submission_id': '1glrmjx'}
{'comment': "makes you also wonder about the increased rate of republican voters too... it's almost like a lot of votes were double counted somehow.", 'created': '2024-11-07 22:58:30', 'submission_id': '1glrmjx'}
{'comment': 'You guys do realise that a different turnout at elections isn’t as bizarre as you would think. Countries have turnover that differs by the millions all of the time.', 'created': '2024-11-08 17:58:36', 'submission_id': '1glrmjx'}
{'comment': 'Hahaha! My though exactly', 'created': '2024-11-07 18:13:51', 'submission_id': '1glrmjx'}
{'comment': 'Literally, even if they were real, people aren’t forced to vote?', 'created': '2024-11-08 10:26:14', 'submission_id': '1glrmjx'}
{'comment': 'It’s clear they created votes that year. No tracking or voter id. They stuffed ballot boxes due to Covid. Couldn’t do that this year.', 'created': '2024-11-07 16:27:21', 'submission_id': '1glrmjx'}
{'comment': 'The number of voters doesn’t add up.', 'created': '2024-11-07 16:28:09', 'submission_id': '1glrmjx'}
{'comment': 'Mail in votes without ID.', 'created': '2024-11-07 16:14:54', 'submission_id': '1glrmjx'}
{'comment': 'I thought this graph was lag\n\nYou mean someones using cheat codes?!?', 'created': '2024-11-07 17:18:45', 'submission_id': '1glrmjx'}
{'comment': 'And when you point that out, they flat out denied it happened.', 'created': '2024-11-08 02:02:05', 'submission_id': '1glrmjx'}
{'comment': '...😂🤣😂🤣', 'created': '2024-11-08 04:03:17', 'submission_id': '1glrmjx'}
{'comment': "Us real people didn't believe that for a second.", 'created': '2024-11-10 03:14:58', 'submission_id': '1glrmjx'}
{'comment': "No helping the dems/libs. They're gonna have to see the light on their own 😅", 'created': '2024-11-08 03:55:54', 'submission_id': '1glrmjx'}
{'comment': '...😂🤣😂🤣', 'created': '2024-11-08 00:51:16', 'submission_id': '1glrmjx'}
{'comment': 'I was going to ask if anyone had updated info on the voter turn out numbers. I saw this graph yesterday morning. Not even sure where it came from tbh.', 'created': '2024-11-07 18:01:21', 'submission_id': '1glrmjx'}
{'comment': "I would expect a slow climb from 2002 up to 148m in 2024. Still an anomaly. We'll see when the totals are in.\n\n2008 Obama is a small anomaly, but at least explainable.", 'created': '2024-11-07 19:16:27', 'submission_id': '1glrmjx'}
{'comment': 'I’m pretty sure the differences in numbers take care of what you say. \n\nThe issue I saw and this election did nothing to address is that in 2020 it wasn’t +- 1mil or even the 7.5 million bump for the historic vote for the first black president elected, but 28 million, or almost 4x the Obama bump. \n\nIt’s a lot harder to explain the massive bump now that it did not repeat.', 'created': '2024-11-09 13:04:39', 'submission_id': '1glrmjx'}
{'comment': 'I wonder how soon the voter information is updated? Need to see if my dad turned Democrat in the after life.', 'created': '2024-11-07 22:05:10', 'submission_id': '1glrmjx'}
{'comment': 'It never has but we were censored from saying anything about it. That people really bought that 81 million were so inspired by basement Joe that they voted in record numbers for him? Ok, I get it, they weren’t voting for him but against Trump. Well, where were they this year, when Trump is such a threat to democracy? /s', 'created': '2024-11-07 18:34:10', 'submission_id': '1glrmjx'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 15:03:53', 'submission_id': '1glr5qu'}
{'comment': "This can't be accurate. I've been assured numerous times by the left that Trump has no plans to help lower and middle class families and only wants to give tax cuts to his billionaire friends. /s", 'created': '2024-11-07 22:10:02', 'submission_id': '1glr5qu'}
{'comment': 'Read this \nThe plan is solid', 'created': '2024-11-07 19:26:21', 'submission_id': '1glr5qu'}
{'comment': 'but did he reduce taxes fo lower class last time?', 'created': '2024-11-08 02:17:08', 'submission_id': '1glr5qu'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 13:34:21', 'submission_id': '1glpdqv'}
{'comment': "They say the vote came in way too fast. Well people seem to forget or maybe they were to young and didn't pay attention yet but before the bs of the last 8 years, we knew who the president was by 10pm election night, not days and weeks. This actually felt like a pretty normal election night.", 'created': '2024-11-07 14:19:22', 'submission_id': '1glpdqv'}
{'comment': 'There’s a chart that shows 2020 had almost double the amount of Democratic Party votes, whereas 2012, 2016, and 2024 were all almost the exact same amount. That’s the only election abnormality that’s real', 'created': '2024-11-07 14:00:08', 'submission_id': '1glpdqv'}
{'comment': '"im no conspiracy theorist" tf u are now', 'created': '2024-11-07 13:39:46', 'submission_id': '1glpdqv'}
{'comment': 'I mean do they even know they are digging themselves a grave....to her point...exactly, where DID 15 MILLION VOTES GO!!', 'created': '2024-11-07 13:48:29', 'submission_id': '1glpdqv'}
{'comment': "Impossible. I've been assured by the left that our system is too secure for there to be fraud to the point that we wouldn't even have to bother looking into it.\n\nBut I suppose we should do our due diligence. \nThere's a discrepancy between the number of democrat ballots this election vs last election? We should dig into both of these to see where that could've come from.", 'created': '2024-11-07 14:09:05', 'submission_id': '1glpdqv'}
{'comment': 'The fact that someone actually thinks the president can just simply declare an election invalid is mind-blowing. But we’re the uneducated wanna be dictators?', 'created': '2024-11-07 14:24:29', 'submission_id': '1glpdqv'}
{'comment': "I am all in favor of them wanting an investigation. Lets do this and find out what the fuck happened in 2020. \n\nWe should be applauding this. Lets fix our fucking elections. Florida had there votes counted in a hour. There should be no excuses. Voter id's lets do this investigation.", 'created': '2024-11-07 14:44:14', 'submission_id': '1glpdqv'}
{'comment': 'Looks like there are some “Election Deniers” out there. Which, according to the talking heads from 4 years ago, is worse than being a Nazi.', 'created': '2024-11-07 14:28:01', 'submission_id': '1glpdqv'}
{'comment': 'Well too late! She already conceded!', 'created': '2024-11-07 13:47:19', 'submission_id': '1glpdqv'}
{'comment': 'The fact they can’t make the connection is really stunning cognitive dissonance.', 'created': '2024-11-07 13:50:10', 'submission_id': '1glpdqv'}
{'comment': 'Oh how the turns tabled 🤣', 'created': '2024-11-07 13:58:51', 'submission_id': '1glpdqv'}
{'comment': 'Or those 81 million votes never existed, it’s either Trump was right about Electoral Fraud in 2020 or Harris was such a shit candidate that not even her own party members showed up.', 'created': '2024-11-07 14:23:58', 'submission_id': '1glpdqv'}
{'comment': 'It’s more likely they cheated in 2020 and pumped the ballots!', 'created': '2024-11-07 13:41:50', 'submission_id': '1glpdqv'}
{'comment': 'The more you look at this the more it’s obvious they rigged 2020 to keep him out', 'created': '2024-11-07 13:57:00', 'submission_id': '1glpdqv'}
{'comment': 'Sure. Recount California. A state you won. That makes sense.', 'created': '2024-11-07 14:19:47', 'submission_id': '1glpdqv'}
{'comment': 'Do they not realise they are just denying the 2020 result?', 'created': '2024-11-07 14:25:11', 'submission_id': '1glpdqv'}
{'comment': 'Hahahahaha but when Trump challenged the results it was different??? Sit down…', 'created': '2024-11-07 14:30:54', 'submission_id': '1glpdqv'}
{'comment': 'It’s crazy lol. You don’t get to just “demand a recount” because they called states before 70% hahahaha, you have to be within .5% to call a recount. \n\nYou don’t get a recount because you are having a tizzy fit your candidate lost in an absolute landslide', 'created': '2024-11-07 13:55:21', 'submission_id': '1glpdqv'}
{'comment': 'Oh cool, we’re gonna do the Russia thing again… also it seems like voting in person, on Election Day, with ID checks would solve a lot of the problems.', 'created': '2024-11-07 15:00:52', 'submission_id': '1glpdqv'}
{'comment': 'Election deniers.', 'created': '2024-11-07 14:07:19', 'submission_id': '1glpdqv'}
{'comment': 'All those mail in ballots in 2020 and who knows what other shady stuff went down.', 'created': '2024-11-07 14:18:45', 'submission_id': '1glpdqv'}
{'comment': 'Funny how we were crazy four years ago, but they did this shit in 2016 and again now…', 'created': '2024-11-07 14:24:49', 'submission_id': '1glpdqv'}
{'comment': "Funny how they pointed out that Utah was 0% counted when they called it for Trump... If they were actually paying attention, the same thing was done with California, Oregon, and Washington, as well as much of the North east (although, when fox called Oregon, Associated Press still hadn't called it).\n\nAlso claiming that (all) states were only at 50% when they were called is false. They don't understand projecting the count. They also didn't pay attention because Georgia, North Carolina, and Pennsylvania weren't called until they were 90%+ counted.\n\nMaybe I'm the outlier. I like data, and was all over it on election night.", 'created': '2024-11-07 14:42:48', 'submission_id': '1glpdqv'}
{'comment': 'The reason is because they cheated in 2020 during Covid with mail in ballots. People voting multiple times, dead people voting and they knew republicans would pay closer attention this election and there is no pandemic so it made cheating to hard. To me it’s only proof that 2020 was stolen', 'created': '2024-11-07 14:42:50', 'submission_id': '1glpdqv'}
{'comment': 'As I\'ve said and will say, let them cry, and let\'s feed into it so they demand voter integrity laws and universal voter ID to "prevent this in the future."\n\nPotentially demand a census update too, they miscounted in 2020, so why not.', 'created': '2024-11-07 14:42:47', 'submission_id': '1glpdqv'}
{'comment': 'The likely cheating of 2020 aside, a didn’t a bunch of states also purge some of their voter registries, enforce stricter voter ID laws, and tighten up the observance of the count?', 'created': '2024-11-07 14:22:03', 'submission_id': '1glpdqv'}
{'comment': 'Democrats in 2020: "What did you say? You\'re a conspiracy theorist"', 'created': '2024-11-07 13:59:09', 'submission_id': '1glpdqv'}
{'comment': 'Lmao they’re still counting. People are morons. They will probably be counting for up to another week or more', 'created': '2024-11-07 14:55:12', 'submission_id': '1glpdqv'}
{'comment': "Throwing a tantrum because they didn't get what they wanted. IT MUST BE FRAUD! No, the people spoke and this is the result. You know, like a democracy.", 'created': '2024-11-07 14:02:04', 'submission_id': '1glpdqv'}
{'comment': 'Maybe because Democrats cheated last election and stacked votes using ineligible people?', 'created': '2024-11-07 14:15:02', 'submission_id': '1glpdqv'}
{'comment': 'These are people who honestly didn’t believe the last election was as rigged.. now they’re starting to see, something is REALLY off about the 2020 Biden votes.', 'created': '2024-11-07 15:04:10', 'submission_id': '1glpdqv'}
{'comment': "I'm sure the Dems who ran the 2020 election are telling all these people to stfu. They are drawing attention to a glaring issue. How did Joe Biden get 15m more votes than Obama.", 'created': '2024-11-07 15:10:19', 'submission_id': '1glpdqv'}
{'comment': 'Just imagine a pride style demonstration like January 6th. The people showing up would be epic to watch', 'created': '2024-11-07 14:22:50', 'submission_id': '1glpdqv'}
{'comment': 'I just want to say let them go down this track., Sure they are refusing to look at the past 20 years and not seeing the outlier itself was 2020, not this year, but let them cook.\n\nMaybe, just maybe, they can convince themselves we need better election integrity.', 'created': '2024-11-07 14:35:21', 'submission_id': '1glpdqv'}
{'comment': "Karma. Ain't dat about a bitch.", 'created': '2024-11-07 14:43:11', 'submission_id': '1glpdqv'}
{'comment': 'This is how election night is supposed to go. You are supposed to know results that night or very close to that night. Thr left ruins everything. It\'s like in education right now there are so many teachers and schools who have a really loose late policy because of a convoluted philosophy about fairness. All it has done is obscure the data and make it more difficult to run classes in an efficient, timely, and reasonable manner and you end up unable to rely on the institution.\n\nThis is what they have done to education, to voting, to law in general, to abortion standards, immigration, to virtually every aspect of life, they have eliminate strict standards and it has made a mess of everything which then leaves plenty of room in their minds for conspiracy theories when convenient to them and an easy denial of actual conspiracies because everything is so loose and hard to track.\n\nAnd then when you want to assert some standards and order after the mess they made of it, they are like "YuO kNoW WhO elSe LiKEd oRdER??? HITLER!!!"', 'created': '2024-11-07 14:45:46', 'submission_id': '1glpdqv'}
{'comment': 'Let he who is without sin cast the first stone.', 'created': '2024-11-07 15:02:07', 'submission_id': '1glpdqv'}
{'comment': 'Ahh they were so close to figuring it out but ended up going down the wrong path. Shame', 'created': '2024-11-07 15:05:42', 'submission_id': '1glpdqv'}
{'comment': 'Oooo the hypocrisy is ripe.', 'created': '2024-11-07 15:14:23', 'submission_id': '1glpdqv'}
{'comment': "But I thought our elections were always free and fair. No evidence. Conspiracy theorists.\n\nThey're insurrectionists.\n\n\nAm I doing it right?", 'created': '2024-11-07 15:15:37', 'submission_id': '1glpdqv'}
{'comment': 'Count recount all you want. The other candidate conceited the race.', 'created': '2024-11-07 14:16:17', 'submission_id': '1glpdqv'}
{'comment': 'It’s (D)ifferent', 'created': '2024-11-07 15:03:52', 'submission_id': '1glpdqv'}
{'comment': "No chance in hell Biden looks into this, he'll just expose himself on how he cheated.", 'created': '2024-11-07 15:04:01', 'submission_id': '1glpdqv'}
{'comment': 'Doesn’t matter, she conceded, and thanks to 2020, they have “No Standing”', 'created': '2024-11-07 15:06:23', 'submission_id': '1glpdqv'}
{'comment': 'That is because in 2020, a big part of the “18 million voters” did not exist.lol but hey, what the hell. Let’s just smile and wave, smile and wave 👋🏼', 'created': '2024-11-07 15:12:22', 'submission_id': '1glpdqv'}
{'comment': "Well, hard to vote in this election when you didn't exist in the last election in the first place. \n\nJs", 'created': '2024-11-07 15:14:50', 'submission_id': '1glpdqv'}
{'comment': 'but when we said this in 2020 they told us to stfu and accept he lost. hypocrites', 'created': '2024-11-07 15:17:44', 'submission_id': '1glpdqv'}
{'comment': 'If they look at the election before Biden (Hillary) or before that (Obama) or before that (Obama) they’ll find the same number of voters as Kamala got. The only one that ever had those 20 million was Biden. They didn’t exist with him so how could they vote for Kamala. We just did a better job making sure they couldn’t cheat. Congrats Trump on your third presidential election win.', 'created': '2024-11-07 15:20:54', 'submission_id': '1glpdqv'}
{'comment': 'The Donkey symbol makes sense now', 'created': '2024-11-07 15:33:04', 'submission_id': '1glpdqv'}
{'comment': 'Trump technically wins all 50 states anyway because he got the popular vote https://en.wikipedia.org/wiki/National_Popular_Vote_Interstate_Compact', 'created': '2024-11-07 14:13:00', 'submission_id': '1glpdqv'}
{'comment': "They are so close! Poor little things can't connect the dots though. If they weren't so brainwashed, I'd help the ignorant little buggers figure out that the 2020 election was the one that was actually stolen.", 'created': '2024-11-07 14:13:45', 'submission_id': '1glpdqv'}
{'comment': 'And this is now the time where the Democrats turn and now claim there was a stolen election… it’s a bold strategy cotton, let’s see how this one plays out', 'created': '2024-11-07 14:36:15', 'submission_id': '1glpdqv'}
{'comment': 'It’s quite entertaining to watch them at home, oblivious to the fact that the votes cast in 2020 exceeded the number of registered voters. Now, they seem to believe that most of the newly registered voters all lean towards the Democratic Party. \nWhat I took away from this election is that a significant number of moderate Democrats have chosen to register as independents. Many of them opted not to vote at all, as they found it difficult to support Trump outright. It was simpler for them to stay silent about their preferences rather than cast a vote for someone they didn’t truly believe in. They certainly weren’t excited about voting for a candidate they didn’t connect with.\n\n“We are about to enter a period of fascism and authoritarianism”\n\nWait doesn’t she realize the communists lost?', 'created': '2024-11-07 14:49:10', 'submission_id': '1glpdqv'}
{'comment': 'Sounds like insurrection', 'created': '2024-11-07 15:09:56', 'submission_id': '1glpdqv'}
{'comment': "Probably all the fake votes and they still don't have 2 states finished at least when I just checked they weren't and they're still holding red.\n\nPlus they always claim this If a republican wins.", 'created': '2024-11-07 14:03:32', 'submission_id': '1glpdqv'}
{'comment': 'lol, Ill tell you where the 15 million went;\n\nAn unknowable number were fake in the 1st place.\n\nA huge chunk of America, esp moderates and casual libs, know Kamala is the worst candidate ever put up, so they stayed home. Period. Its that simple. They voted by abstaining.', 'created': '2024-11-07 14:56:22', 'submission_id': '1glpdqv'}
{'comment': 'So she got the same number of votes as Obama and yet….', 'created': '2024-11-07 14:48:34', 'submission_id': '1glpdqv'}
{'comment': 'Shocking', 'created': '2024-11-07 14:53:50', 'submission_id': '1glpdqv'}
{'comment': "They are so close to figuring it out lol\n\nThey just won't admit it of course", 'created': '2024-11-07 15:08:50', 'submission_id': '1glpdqv'}
{'comment': "When we deny election results, we're called conspiracy theorists. But when they deny election results, they're not? How does that make any sense?\n\nMake it make sense people", 'created': '2024-11-07 15:22:13', 'submission_id': '1glpdqv'}
{'comment': 'The question they should ask is how they got 15-20 million more votes in 2020….', 'created': '2024-11-07 15:53:43', 'submission_id': '1glpdqv'}
{'comment': 'They are in a cult\n\nCognitive dissonance\nCult members may experience psychological discomfort when confronted with facts that contradict their beliefs', 'created': '2024-11-07 14:07:00', 'submission_id': '1glpdqv'}
{'comment': 'They sound just like the republicans did four years ago. Exactly. Seriously, no one knows how to lose anymore.', 'created': '2024-11-07 14:18:28', 'submission_id': '1glpdqv'}
{'comment': 'Lock them up. They’re questioning results', 'created': '2024-11-07 14:27:01', 'submission_id': '1glpdqv'}
{'comment': 'They had polls going for months about how they had the most undecided voters in history. Many democrats were sited not voting in this election as they did not want to vote for Trump nor could vote for Bidenomics again. This isn’t surprising', 'created': '2024-11-07 15:07:11', 'submission_id': '1glpdqv'}
{'comment': 'Would it be amazing if election security became an issue for the radical left? Here’s my proposal in person, with photo ID, and paper ballots. Now that’s by partisan legislation I can support!', 'created': '2024-11-07 15:16:12', 'submission_id': '1glpdqv'}
{'comment': 'They’re so close to figuring it out… so so soooooo close…', 'created': '2024-11-07 15:25:27', 'submission_id': '1glpdqv'}
{'comment': 'These people are lemmings.. just because a state was “called” doesn’t mean they didn’t count their ballots and then properly notify the electorate candidate afterward… here in the west coast, at 8:01pm, literally the minute after our polls closed, CA, OR, and WA we’re “called” for Kamala… don’t see those states being used in their example. \n\nThey need to realize, the AP or any news outlet “calling” a state has NO impact on anything legally. Their campaigns have access to the SAME DATA the news outlets do, so they can agree or disagree with any “call” the media makes. \n\nHence, when Kamala conceded, it’s not based on “Fox Called the state- demand a recount” data… it’s based on her staff agreeing with “the call” after analyzing data and seeing what counties still need to report, what’s outstanding, what the ratios are, etc.\n\nI get it- mAtH iS hArD and 2+2 doesn’t equal 4 if your candidate doesn’t win…', 'created': '2024-11-07 15:28:08', 'submission_id': '1glpdqv'}
{'comment': "Dead Americans could not vote this election, that's why Harris lost. LOL", 'created': '2024-11-07 15:29:30', 'submission_id': '1glpdqv'}
{'comment': "Asking where the 15mil people went is funny to me, because they're all still in the graveyards they voted from the last election", 'created': '2024-11-07 15:31:53', 'submission_id': '1glpdqv'}
{'comment': "'The math isn't mathing' has to be one of my most disliked phrases, it's so uneducated.", 'created': '2024-11-07 15:34:18', 'submission_id': '1glpdqv'}
{'comment': 'Maybe bc they were fake?', 'created': '2024-11-07 15:38:24', 'submission_id': '1glpdqv'}
{'comment': 'They are “a threat to democracy!!!”', 'created': '2024-11-07 15:39:23', 'submission_id': '1glpdqv'}
{'comment': 'It’s almost as if the dems forgot to cheat this time and now we’re seeing the disparage.', 'created': '2024-11-07 15:41:45', 'submission_id': '1glpdqv'}
{'comment': 'Does anybody know how many bomb threats were made in 2020 at polling stations? Also where they were made? I feel like bomb threats are just part of it', 'created': '2024-11-07 15:46:04', 'submission_id': '1glpdqv'}
{'comment': 'I mean, it didn’t make sense to contest the election in 2020 and it doesn’t make sense to do it now. I get that statistics of it can shock people but there has to be a real basis for the skepticism, though. I think people are just upset but that’s never an excuse. We can criticize Dems for doing this now but the criticism has to be equally applied on both ends so that the practice doesn’t continue moving forward. I think questioning anything is fine but to out rightly make false claims is aggravating an already tense situation, lol.', 'created': '2024-11-07 15:52:35', 'submission_id': '1glpdqv'}
{'comment': 'California was given to Kamala with 0% reporting- happens every election.', 'created': '2024-11-07 15:53:12', 'submission_id': '1glpdqv'}
{'comment': 'I live in AZ mine hasn’t been counted yet either as of last night we are just slow and inept 🤷\u200d♂️', 'created': '2024-11-07 16:02:14', 'submission_id': '1glpdqv'}
{'comment': 'I thought the US has the fairest and freest elections in global history?', 'created': '2024-11-07 14:31:47', 'submission_id': '1glpdqv'}
{'comment': "The losing side is always going to go through this type of stuff. It's the grief process (stage 1 denial). We did last term. I hope that one day we have a voting system that is easy, transparent, and fair for everyone. That way it can remove a lot of the doubt of our current system.", 'created': '2024-11-07 14:38:19', 'submission_id': '1glpdqv'}
{'comment': 'Dems should demand in-person paper ballots and i.d. voting again. Do it for Ka-ma-la!', 'created': '2024-11-07 15:50:07', 'submission_id': '1glpdqv'}
{'comment': 'I thought election deniers were treasonous?', 'created': '2024-11-07 15:54:52', 'submission_id': '1glpdqv'}
{'comment': 'They don’t realize that shedding light on the vote number discrepancy only shows they cheated in 2020', 'created': '2024-11-07 15:55:54', 'submission_id': '1glpdqv'}
{'comment': 'Wow almost looks like bags were stuffed with ballots for biden!! Such a huge # for him.', 'created': '2024-11-07 15:58:49', 'submission_id': '1glpdqv'}
{'comment': '15 million left after they realized they voted in a old fart who can’t even count to 20', 'created': '2024-11-07 16:02:03', 'submission_id': '1glpdqv'}
{'comment': "Some will realize it was election fraud.. most will live in denial.. but for the rest of us.. well it's a new day 🇺🇲🇺🇲", 'created': '2024-11-07 16:02:07', 'submission_id': '1glpdqv'}
{'comment': "There was a post yesterday on world news where there were A LOT of comments questioning the numbers, that they don't add up. Funny though, they think this time its off cause so many less votes than 2020. They are so close, yet don't see the irony biting their noses. They are correct that the numbers don't add up, but they refuse to accept the real reason why, that the 2020 election was fucked.", 'created': '2024-11-07 16:02:51', 'submission_id': '1glpdqv'}
{'comment': 'I\'m popping into the Dem site periodically (no posting, just watching) and they are in full on "eat their own" meltdown mode. Life is good.', 'created': '2024-11-07 16:03:14', 'submission_id': '1glpdqv'}
{'comment': 'Nazis', 'created': '2024-11-07 16:08:20', 'submission_id': '1glpdqv'}
{'comment': 'These are X’ers on their toilet, not the candidate herself.', 'created': '2024-11-07 16:09:08', 'submission_id': '1glpdqv'}
{'comment': 'More dead people voted last election', 'created': '2024-11-07 16:13:22', 'submission_id': '1glpdqv'}
{'comment': 'Lots of people don’t seem to understand how the electoral college works.', 'created': '2024-11-07 16:19:11', 'submission_id': '1glpdqv'}
{'comment': "When Republicans raised all these same concerns last election, with all the same proof they have now, I'll give you the same responses the Republicans got every time.\n\n*There is no proof of fraud. There is no evidence. Things like this don't happen. And when they do they are not enough to make a difference so they are not going to be investigated or even heard. There is nothing wrong with the election. It was safe and secure.*\n\nDid I miss any?", 'created': '2024-11-07 16:20:38', 'submission_id': '1glpdqv'}
{'comment': 'How ironic', 'created': '2024-11-07 16:26:17', 'submission_id': '1glpdqv'}
{'comment': 'California was at zero percent when AP called it right at 8pm from Kamala.', 'created': '2024-11-07 16:27:47', 'submission_id': '1glpdqv'}
{'comment': 'How the turn tables', 'created': '2024-11-07 16:28:00', 'submission_id': '1glpdqv'}
{'comment': 'Almost like the 16 million more they got in 2020 that didn’t show up in 2016 or 2024?', 'created': '2024-11-07 16:28:48', 'submission_id': '1glpdqv'}
{'comment': 'Jeeez, they’re soooo close to realizing it but may need a bit more help getting to the AHA moment', 'created': '2024-11-07 16:29:29', 'submission_id': '1glpdqv'}
{'comment': 'Almost as if 2020 had funny business going on with mail in ballots', 'created': '2024-11-07 16:30:44', 'submission_id': '1glpdqv'}
{'comment': "I'm telling y'all now that this is their excuse for riots and violence. I hope I'm paranoid, but for God's sake, please be safe, everyone.", 'created': '2024-11-07 16:34:11', 'submission_id': '1glpdqv'}
{'comment': 'They had their chance. There are multiple states that didn’t even require photo identification and they still LOST. Fair is fair 💁🏼\u200d♀️', 'created': '2024-11-07 16:37:08', 'submission_id': '1glpdqv'}
{'comment': "Ghosts didn't vote this election... lol you reap what you sow Dems!!", 'created': '2024-11-07 16:40:03', 'submission_id': '1glpdqv'}
{'comment': 'I was told in 2020 it was anti-American and insurrectionist to question the outcome of the vote. I guess this has changed now, right?', 'created': '2024-11-07 16:41:09', 'submission_id': '1glpdqv'}
{'comment': 'Amazing that these discrepancies if anything show that 2020 was the suspicious result 😂', 'created': '2024-11-07 16:41:57', 'submission_id': '1glpdqv'}
{'comment': 'Zero self-reflection that the 20 million extra votes for Biden were the actual cheating… 60-69 million Dem votes each for Kerry, Obama1, Obama2, Clinton, and Harris, and “81 million” for ole Joe. 3am ballot drops of hundreds of thousands of 100% Joe votes. They knew we’d be watching this time and figured the smear campaigns and lawfare against Trump would be enough.', 'created': '2024-11-07 16:46:01', 'submission_id': '1glpdqv'}
{'comment': 'Yep, I knew this was comin', 'created': '2024-11-07 16:47:48', 'submission_id': '1glpdqv'}
{'comment': 'Get over it libs ! No one wants Kamala !', 'created': '2024-11-07 16:47:51', 'submission_id': '1glpdqv'}
{'comment': 'They’re so close but still so far. The vote count doesn’t make sense because it was fake in 2020. Dems shot themselves in the foot using point Biden numbers to project Kamala’s performance', 'created': '2024-11-07 16:48:58', 'submission_id': '1glpdqv'}
{'comment': 'It is hilarious that they are just proving that 2020 was fraudulent.', 'created': '2024-11-07 16:49:05', 'submission_id': '1glpdqv'}
{'comment': "Don't go near the white house saying this.....", 'created': '2024-11-07 16:49:20', 'submission_id': '1glpdqv'}
{'comment': 'So there’s two ways to look at those stats if you’re into conspiracies. \n\nEither the 15m votes are missing and stolen in this election OR 15 million votes were faked in the last election.', 'created': '2024-11-07 17:05:13', 'submission_id': '1glpdqv'}
{'comment': 'It’s fake news until trump wins', 'created': '2024-11-07 17:09:41', 'submission_id': '1glpdqv'}
{'comment': 'The state of California only counted 15%', 'created': '2024-11-07 17:09:54', 'submission_id': '1glpdqv'}
{'comment': 'That was my first thought too! Where did 16million voters go in 4years. Were they unalive when they voted in 2020 but couldn’t come back for 2024? 😂😂😂 TRUMP was prepared this time.', 'created': '2024-11-07 17:14:40', 'submission_id': '1glpdqv'}
{'comment': 'Just liberal tears. Sour grapes. When are the DNC paying HRC back?', 'created': '2024-11-07 17:14:50', 'submission_id': '1glpdqv'}
{'comment': 'Well there was obvious cheating in that election that resulted in mysterious added overnight votes.', 'created': '2024-11-07 17:17:37', 'submission_id': '1glpdqv'}
{'comment': 'People are telling others to check their email lmao how hard is it to get out of that shitty apartment and go to the polls in person', 'created': '2024-11-07 17:26:32', 'submission_id': '1glpdqv'}
{'comment': 'Democrats were in charge. They just lost. HARD lost.', 'created': '2024-11-07 17:27:14', 'submission_id': '1glpdqv'}
{'comment': 'Hilarious how a lot of them are suddenly embracing conspiracy theory shit just because it now suddenly oh so conveniently suits them.\n\nWhat dogshit', 'created': '2024-11-07 17:28:16', 'submission_id': '1glpdqv'}
{'comment': 'Those geniuses can’t-explain how Biden get 81 million votes - during a pandemic.\n\nThe math isn’t mathing…', 'created': '2024-11-07 17:33:20', 'submission_id': '1glpdqv'}
{'comment': 'Will there ACTUALLY BE A DAMN RECOUNT?', 'created': '2024-11-07 17:35:24', 'submission_id': '1glpdqv'}
{'comment': 'Hypocrites! Who are the conspiracy theorists now? 😂', 'created': '2024-11-07 17:37:49', 'submission_id': '1glpdqv'}
{'comment': 'They fail to acknowledge those 18 million extra were the fraudulent votes', 'created': '2024-11-07 17:38:22', 'submission_id': '1glpdqv'}
{'comment': 'oh how the turns have tabled', 'created': '2024-11-07 17:39:58', 'submission_id': '1glpdqv'}
{'comment': "I think it's cuz not as many demos voted this election as last election and they are regretting it", 'created': '2024-11-07 17:40:30', 'submission_id': '1glpdqv'}
{'comment': 'Where are the 15 million+ plus who supposedly voted for Biden but not Kamala?', 'created': '2024-11-07 17:41:11', 'submission_id': '1glpdqv'}
{'comment': 'The 15 million dead people didn’t vote this time', 'created': '2024-11-07 17:41:58', 'submission_id': '1glpdqv'}
{'comment': "I don't think people understand how the voting works in our country. A candidate might win the popular vote, but win the electoral college. Our votes might sway the electoral college, but it's all up to them. I watched the election unfold and there were a ton of blue states (always blue) that voted unanimously for Kamala. Like 5 minutes after the election closed in their state, it was blue. The votes haven't been tallied yet (it happened in red states too), but our votes matter, but not as much as they do in a true democracy.", 'created': '2024-11-07 17:49:03', 'submission_id': '1glpdqv'}
{'comment': 'It\'s always crazy to me when people argue, "Look how quick that many votes came in!" like it\'s some sort of rational argument. \n\nDo these people think the second they scan a vote, it\'s sent directly to some universal database? Counties count ballots and typically report county totals all at once. Some do it periodically. It\'s why there\'s always an influx of democratic ballots at the end because, turns out, there\'s more people in most democratic counties than Republican counties, and it takes longer to count. It\'s not conspiracy, it\'s math and logistics.', 'created': '2024-11-07 17:49:46', 'submission_id': '1glpdqv'}
{'comment': 'They can’t wrap their heads around a registered democrat not supporting Kamala.. a lot of people aren’t voting for her and HATE Trump. Not worth it to show out to the polls to support Kamala.', 'created': '2024-11-07 17:50:45', 'submission_id': '1glpdqv'}
{'comment': 'Sweet summer children - they are so close to figuring it out.', 'created': '2024-11-07 17:54:02', 'submission_id': '1glpdqv'}
{'comment': 'Im 24 I got out and voted for the first time', 'created': '2024-11-07 17:56:24', 'submission_id': '1glpdqv'}
{'comment': 'Number of votes have been fairly consistent across the last decade and a half with Biden being the only exception. Tf is he Jesus? No wonder Trump called foul play. Things making more sense as dems out themselves. Super excited for Jan ‘25- Jan ‘29!', 'created': '2024-11-07 18:02:07', 'submission_id': '1glpdqv'}
{'comment': 'Bunch of cry baby trash cans just wait…..they will start burning towns and businesses owned by innocent people that had nothing to do with it lol', 'created': '2024-11-07 18:10:14', 'submission_id': '1glpdqv'}
{'comment': 'Geez the irony is unreal lol', 'created': '2024-11-07 18:19:17', 'submission_id': '1glpdqv'}
{'comment': 'You know it’s really funny if the math math then the Democrats actually padded the vote in 2020 because those numbers actually are not correct. They are correct in the standpoint that there’s too many votes and not enough voters in 2020 and 2024 was the real election.', 'created': '2024-11-07 18:21:08', 'submission_id': '1glpdqv'}
{'comment': 'They dog him for denying the 2020 election but now they’re denying this election 🤣 dems are nothing but a bunch of hypocrites', 'created': '2024-11-07 18:32:09', 'submission_id': '1glpdqv'}
{'comment': 'This proves democrats cheated in 2020', 'created': '2024-11-07 18:32:12', 'submission_id': '1glpdqv'}
{'comment': 'Seems like we all agree that election integrity is important. \n\nSince Democrats had 4 years to review election integrity after the White House was nearly overtaken from the issue and they did nothing about it, it’s a good thing Trump will be in office and will make it a priority to ensure our future elections are safe and secure!', 'created': '2024-11-07 18:36:19', 'submission_id': '1glpdqv'}
{'comment': 'Almost like 2020 was Oprah with mail in ballots. \n\n“And you get multiple ballots, and you get multiple ballots.” -DNC Leadership', 'created': '2024-11-07 18:37:10', 'submission_id': '1glpdqv'}
{'comment': 'Probably because there was election fraud in 2020', 'created': '2024-11-07 18:50:54', 'submission_id': '1glpdqv'}
{'comment': '“”” you guys should just accept the results, cheating isn’t possible”””” bla bla bla bla this shits hilarious', 'created': '2024-11-07 18:51:41', 'submission_id': '1glpdqv'}
{'comment': "They're not done counting the votes and we don't have final numbers yet.\n\nSeriously people, stop with this conspiracy bullshit.", 'created': '2024-11-07 18:56:16', 'submission_id': '1glpdqv'}
{'comment': 'The best part of this election was listening to the dems claim Trump is a fascist when in fact their own party supports more fascist views.', 'created': '2024-11-07 18:58:22', 'submission_id': '1glpdqv'}
{'comment': 'They are so close to figuring it out but their blind hatred of Trump is keeping it from happening. \n\nAnd the one comment telling people to check their email and verify the link I guarantee is a Trojan virus in waiting.', 'created': '2024-11-07 19:00:41', 'submission_id': '1glpdqv'}
{'comment': "Yes. Just like in 2020 conspiracy theories are born of people believing that they cannot possibly lose. This ain't anything special.\n\nEdit: kinda ironic that in this post about Democrat conspiracy theories the comments are filled with Republican conspiracy theories.", 'created': '2024-11-07 19:01:59', 'submission_id': '1glpdqv'}
{'comment': 'Did they even exist to begin with?', 'created': '2024-11-07 19:06:11', 'submission_id': '1glpdqv'}
{'comment': "THE OTHER SIDE FIGHTS DIRTY?! MAM YOU GUYS TRIED TO KILL TRUMP TWICE AND THEN WENT ONLINE AND ACTED MAD THAT HE Wasn't ASSASSINATED!!!!! COME ON NOW!!!", 'created': '2024-11-07 19:07:49', 'submission_id': '1glpdqv'}
{'comment': 'It\'s only an idea, not a new one, but maybe, just maybe the majority of those votes in \'20 were "manufactured", with the plan being to supplant those votes with that of illegals who didn\'t need ID\'s in \'24.\n\nIf it was it didn\'t work out as planned for them...this time.', 'created': '2024-11-07 19:16:01', 'submission_id': '1glpdqv'}
{'comment': 'They just can’t believe it can they.', 'created': '2024-11-07 19:19:46', 'submission_id': '1glpdqv'}
{'comment': 'Just let it go. We don’t need to be kicking people while\nThey’re down. It has no bearing on this administration and is completely irrelevant. Let’s be the bigger people and just ignore the nonsense.', 'created': '2024-11-07 19:21:08', 'submission_id': '1glpdqv'}
{'comment': "The early bird catches the worm people. Not everyone waits to vote on election day—early voting was key. \n\nI voted on 10/28, and most people had the choice to vote early if you were paying attention. Please accept MAGA! Jan 6th can't come fast enough!", 'created': '2024-11-07 19:23:50', 'submission_id': '1glpdqv'}
{'comment': 'The fact that democrats think this is a good argument against the legitimacy of THIS election is hilarious.', 'created': '2024-11-07 19:38:32', 'submission_id': '1glpdqv'}
{'comment': 'Radio silent from the administration because they know opening a investigation into these missing votes would f*ck them over big time 😂', 'created': '2024-11-07 19:44:27', 'submission_id': '1glpdqv'}
{'comment': 'I sincerely hope that the belief Trump cheated becomes mainstream in the Democratic party.\n\nThe only way we may get national voting reform is if Democrats think Republicans are cheating and that the loose rules are no longer to their advantage.\n\nMy proposal would be to keep it a state issue, but have a duplicate _required_ system that linked every vote to an SSN on a public blockchain using zk proofs. This would allow us to verify the count without knowing who voted for who, except in the aggregate. If there were discrepancies, we could pinpoint the exact counties.', 'created': '2024-11-07 19:54:36', 'submission_id': '1glpdqv'}
{'comment': 'That one post where the person said AP called it and states didn’t even reached 70% count. Does that person know that is California on the map and they called it for Kamala?', 'created': '2024-11-07 19:56:11', 'submission_id': '1glpdqv'}
{'comment': 'Yeah we all want to know where all those votes came from in 2020 as well. 2024 is not the outlier. Thanks for proving our concerns. They are fucking idiots.', 'created': '2024-11-07 20:04:11', 'submission_id': '1glpdqv'}
{'comment': 'Can we be real for once and agree that individuals having strange conspiracies is not the same as not conceding the election when you are in fact the candidate that should concede, knowing you lost validly. Or are we just going to keep trying to go tit for that living in unreality until the social fabric crumbles completely.', 'created': '2024-11-07 20:06:12', 'submission_id': '1glpdqv'}
{'comment': 'Interesting how Biden was able to get more votes than any president in US history while running a campaign from his basement while Kamala gets 15 million fewer votes while campaigning daily. All the Dems seeing that as clear voter fraud while the sane among us further question how MF Joe Biden supposedly received the most votes in history by a large margin.', 'created': '2024-11-07 20:11:12', 'submission_id': '1glpdqv'}
{'comment': "What do they think Republicans did? Usually in committing voter fraud, there are MORE ballots not less. I guess the alternative is to admit that the 2020 election results seem fishy, and they certainly aren't gonna say that anytime soon.", 'created': '2024-11-07 20:12:07', 'submission_id': '1glpdqv'}
{'comment': 'It was at this moment, they realized the 2020 election was fishy.', 'created': '2024-11-07 20:12:34', 'submission_id': '1glpdqv'}
{'comment': 'The shock about Latinos for Trump is funny. Don’t you see most Hispanics with a cross on? They’re almost always Christian or Catholic', 'created': '2024-11-07 20:16:20', 'submission_id': '1glpdqv'}
{'comment': "The part I can't understand is why people can't wait until all the votes are counted to determine how many less votes there are this election than last election. From what I can see California still has 45% of their vote count. Which is probably going to come out to another seven or eight million votes at least. Still probably going to come out about 5 million less voters this election that last election but it's not as drastic as it currently looks. At least I don't think it's going to be.", 'created': '2024-11-07 20:24:15', 'submission_id': '1glpdqv'}
{'comment': 'Prime Democrat hypocrisy\n\nWe say something was fishy about the 2020 election and we\'re called election deniers \n\nThey are actively denying this election and they\'re saying they\'re "defending democracy"\n\nSmh', 'created': '2024-11-07 20:28:47', 'submission_id': '1glpdqv'}
{'comment': 'How the tables have turned 😂😂', 'created': '2024-11-07 20:38:54', 'submission_id': '1glpdqv'}
{'comment': '20mil votes were added on in 2020 Biden would win through cheating', 'created': '2024-11-07 20:50:34', 'submission_id': '1glpdqv'}
{'comment': 'Jesse on Fire on YT ran the numbers for Democrat presidents and Republican since Obamas reign. Democrat Voting totals are all the same except during one presidency, Bidens. They keep asking where these 15 million voters were……based off the numbers, they never existed. Just a theory', 'created': '2024-11-07 21:18:33', 'submission_id': '1glpdqv'}
{'comment': 'Are you talking about the 15 million fake votes that were added in 2020? 🤣🤣🤣', 'created': '2024-11-07 21:21:11', 'submission_id': '1glpdqv'}
{'comment': 'Why don’t they understand that the same amount of votes isn’t always guaranteed.', 'created': '2024-11-07 21:26:29', 'submission_id': '1glpdqv'}
{'comment': "Ohhhh they're so close to getting it. Almost", 'created': '2024-11-07 21:26:29', 'submission_id': '1glpdqv'}
{'comment': "Lol, wait until they finally realize that 2024 isn't the anomaly, 2020 is. Past what... 5 elections except for 2020, what around 64 million votes for the democrat nominee, right?\n\nYet suddenly, to screw Trump over in 2020, Biden gets a mysterious extra 15+ million.\n\nAre lefties are that fucking dumb?", 'created': '2024-11-07 21:37:11', 'submission_id': '1glpdqv'}
{'comment': 'Did they call us crazy for saying 2020 was a cheat?\n\nLOL', 'created': '2024-11-07 21:45:04', 'submission_id': '1glpdqv'}
{'comment': "Congratulations you found tweets from a bunch of random accounts of people who have no authority or positions of power. What you won't see is the presidential candidate or other Democratic leaders calling foul or denying the results of the election. It's a refreshing change of pace.", 'created': '2024-11-07 21:48:49', 'submission_id': '1glpdqv'}
{'comment': 'These salty tears taste sooooo good.', 'created': '2024-11-07 21:54:16', 'submission_id': '1glpdqv'}
{'comment': 'But when trump said it, oh no, he is a nazi', 'created': '2024-11-07 21:56:20', 'submission_id': '1glpdqv'}
{'comment': 'I’m not quite understanding the “fear for my child’s life” shit I keep seeing?', 'created': '2024-11-07 21:58:31', 'submission_id': '1glpdqv'}
{'comment': "Yeah no shit. It's because they cheated last time.", 'created': '2024-11-07 22:05:42', 'submission_id': '1glpdqv'}
{'comment': 'The mail in ballot didn’t count!? I’m shocked! Shocked I say! But I’m not worried about my in person vote. I know it was counted cause I turned it in with my own 2 hands!', 'created': '2024-11-07 22:05:55', 'submission_id': '1glpdqv'}
{'comment': 'Damn, it’s almost like people have a choice to vote or not 🤔', 'created': '2024-11-07 22:05:56', 'submission_id': '1glpdqv'}
{'comment': 'When we do it we are crazy but they can? Lmao the hypocrisy', 'created': '2024-11-07 22:10:40', 'submission_id': '1glpdqv'}
{'comment': 'Meh who cares kamala called it fair game . Who caees what the lunatics think', 'created': '2024-11-07 22:34:12', 'submission_id': '1glpdqv'}
{'comment': 'Oh the irony', 'created': '2024-11-07 23:09:54', 'submission_id': '1glpdqv'}
{'comment': "Wouldn't this suggest they committed voter fraud in 2020?", 'created': '2024-11-07 23:10:33', 'submission_id': '1glpdqv'}
{'comment': 'Remember when they said election fraud wasn’t real and we were all conspiracy theorists?', 'created': '2024-11-07 23:54:05', 'submission_id': '1glpdqv'}
{'comment': 'Where did 30 million votes go….lol or is it because water mains didn’t break and the mysterious trucks loaded with ballots never showed up.', 'created': '2024-11-08 00:02:27', 'submission_id': '1glpdqv'}
{'comment': 'As someone who voted for Kamala. Trump won, just like he did in 2016. Seriously don’t know why this is so normalized now.', 'created': '2024-11-08 00:03:52', 'submission_id': '1glpdqv'}
{'comment': 'Election deniers much? 😂', 'created': '2024-11-08 00:16:30', 'submission_id': '1glpdqv'}
{'comment': 'They want a "do over".', 'created': '2024-11-08 00:17:42', 'submission_id': '1glpdqv'}
{'comment': 'They say the same thing when he lost, 😒', 'created': '2024-11-08 00:38:45', 'submission_id': '1glpdqv'}
{'comment': 'Shows you that 2020 was rigged lol.', 'created': '2024-11-08 00:44:46', 'submission_id': '1glpdqv'}
{'comment': 'It’s because the dead finally stayed in their graves. No zombies were voting this year!', 'created': '2024-11-08 00:53:56', 'submission_id': '1glpdqv'}
{'comment': '2020 was stolen . Covid election fraud.', 'created': '2024-11-08 00:59:33', 'submission_id': '1glpdqv'}
{'comment': "oh how the turn tables. I hope they don't form an uprising...", 'created': '2024-11-08 00:59:54', 'submission_id': '1glpdqv'}
{'comment': 'Does it cross your mind that the democrats added as many votes as they can in 2020 that were not real votes. Think about it……the math isn’t adding up.', 'created': '2024-11-08 01:00:23', 'submission_id': '1glpdqv'}
{'comment': " I don't think there's a problem here outside of hypocrisy. I think we should ensure the integrity of our elections. These things should be investigated.", 'created': '2024-11-08 01:01:29', 'submission_id': '1glpdqv'}
{'comment': "Votes came in too fast. I'm sorry we didn't wait until the wee hours of the morning.\xa0", 'created': '2024-11-08 01:03:34', 'submission_id': '1glpdqv'}
{'comment': 'So...they STILL haven\'t figured out that the 2020 election was full of "math that wasn\'t mathin" and countless irregularities that were *caught on CCTV *for christsake!\n\nIt\'s 2016 all over again. They have ZERO coping skills and it shows. There\'s almost some secondhand embarrassment with these sore losers, wow. They are soo damn predictable! All of a sudden, elections aren\'t fair anymore 🙄 What a bunch of election deniers and conspiracy theorists!! 😂😂 Be fr and just..\n\nSIT DOWN. COPE...SEETHE..Reddit has been great entertainment since Tuesday! Keep it up!', 'created': '2024-11-08 01:19:32', 'submission_id': '1glpdqv'}
{'comment': '😂😂😂😭😭😭😂😂😂', 'created': '2024-11-08 01:31:33', 'submission_id': '1glpdqv'}
{'comment': 'Oh how the turn tables', 'created': '2024-11-08 01:33:50', 'submission_id': '1glpdqv'}
{'comment': 'People think that only popular vote is taken for them to win', 'created': '2024-11-08 02:33:56', 'submission_id': '1glpdqv'}
{'comment': 'People don’t understand that they call stats based on math. If a candidate others 30% of the remaining vote in counties that support that candidate, it’s a no brainer.', 'created': '2024-11-08 02:34:44', 'submission_id': '1glpdqv'}
{'comment': '#3: maybe those 20 mil never existed in the first place lmao', 'created': '2024-11-08 02:37:16', 'submission_id': '1glpdqv'}
{'comment': 'Some people choose not to vote lol.', 'created': '2024-11-08 02:53:43', 'submission_id': '1glpdqv'}
{'comment': 'What is more jarring to me is your making these points but don’t see how maybe the last election was a little rigged lol. I mean that’s what I see in the numbers of people that voted, if anything 2020 is the outlier', 'created': '2024-11-08 03:09:18', 'submission_id': '1glpdqv'}
{'comment': "But it was impossible in 2020 that an election could be rigged! \n\nI just think it's so crazy that these people can be so ignorant to see that more than half of America wants change and we see it in Trump.\n\nAlso I wouldn't be surprised if those bomb threats and fire were done by democrats!!", 'created': '2024-11-08 03:15:37', 'submission_id': '1glpdqv'}
{'comment': 'This shit is just hilarious in the most tragic way. \n\nThe focus on 2020 as some rule rather than the exception is what’s really fascinating. Don’t they call this an outlier? Isn’t the outlier usually what you focus on as having the potential for “issues” shall we say? \n\nWhy is it the supposed most intelligent amongst us (lol) are incapable of understanding or even seeing this?', 'created': '2024-11-08 03:17:49', 'submission_id': '1glpdqv'}
{'comment': 'The real question is how do you spend a billion $$$ in 107 days? \n\nAnd lose. 😂', 'created': '2024-11-08 03:56:56', 'submission_id': '1glpdqv'}
{'comment': "Hey atleast people aren't threatening to kill people or gonna go threaten election officials or ect.", 'created': '2024-11-08 04:03:54', 'submission_id': '1glpdqv'}
{'comment': 'People really don’t realize the states being called early? It’s based off data of previous elections ie states that have been blue or red for decades will be called as so almost immediately unless it has been on decline of the former stronger party, California they called before 10% was counted, but there still counting the votes even in some of the earlier called states, each vote will be counted and if by fluke it does switch they will announce it, the election results aren’t final until all votes have been counted during the electoral vote on the first Wendsday in December so if there is a switch for either or in vote count that’s when it matters', 'created': '2024-11-08 04:14:54', 'submission_id': '1glpdqv'}
{'comment': 'But in 2020 they got 81 million votes 🗳️ lmao 🤣 see what happens when we don’t let u count the dead’s votes', 'created': '2024-11-08 04:16:26', 'submission_id': '1glpdqv'}
{'comment': 'Math is mathing only when demoncratic party wins', 'created': '2024-11-08 04:41:30', 'submission_id': '1glpdqv'}
{'comment': 'Looks to me like they are proving DJT right.', 'created': '2024-11-08 04:57:18', 'submission_id': '1glpdqv'}
{'comment': 'Funny how when republicans said election interference, they are crazy fascists. But now that the results are not in their favor, they are doing the same damn thing. Democrats - the party of hypocrisy!', 'created': '2024-11-08 06:35:27', 'submission_id': '1glpdqv'}
{'comment': 'The negative 6 foot tall voters weren’t motivated this time around.', 'created': '2024-11-08 07:26:20', 'submission_id': '1glpdqv'}
{'comment': 'I love how the cheating anomaly from 2020 now somehow means the vote is wrong this time! 😂', 'created': '2024-11-08 07:52:28', 'submission_id': '1glpdqv'}
{'comment': "They do this every time. I can't imagine what it's like to be so pathetic and stupid.🙃 even Kamala said to accept it.", 'created': '2024-11-08 10:05:16', 'submission_id': '1glpdqv'}
{'comment': 'Also not people saying the bomb threats only helped republicans? Like they were probably turned away too wdym?', 'created': '2024-11-08 10:24:43', 'submission_id': '1glpdqv'}
{'comment': 'What Deborah doesn’t understand is that the missing 15M were a combination of cheating and having a terrible candidate.', 'created': '2024-11-08 13:04:36', 'submission_id': '1glpdqv'}
{'comment': 'Watching the left melt down has been so glorious. I’ve even began watching MSNBC for the pure comedy of it all.', 'created': '2024-11-08 13:53:46', 'submission_id': '1glpdqv'}
{'comment': 'They still aren’t done counting. CA is still only 59% reported. With 40% left to count. That’s almost 6 million votes left to count. They just don’t understand that trumps landslide win came in so much earlier than usual.', 'created': '2024-11-08 14:45:40', 'submission_id': '1glpdqv'}
{'comment': 'How the hell did the dems go from 65mil (2012), to 65mil (2016), to 81mil (2020), to 69mil (2024)? THAT math ain’t mathing. WHERE DID 10 MILLION PEOPLE COME FROM AND DISAPPEAR TO? Why is nobody at least acknowledging that this makes no sense???', 'created': '2024-11-08 16:55:47', 'submission_id': '1glpdqv'}
{'comment': 'Omg they should be thrown in jail! They’re inciting an insurrection! 😂', 'created': '2024-11-08 20:46:57', 'submission_id': '1glpdqv'}
{'comment': 'Those extra are the ones who died but were counted previously.', 'created': '2024-11-09 12:36:18', 'submission_id': '1glpdqv'}
{'comment': 'She conceded', 'created': '2024-11-09 12:41:59', 'submission_id': '1glpdqv'}
{'comment': 'They have made the case that they cheated in 2020, and Trump actually won.', 'created': '2024-11-09 13:15:36', 'submission_id': '1glpdqv'}
{'comment': 'Another J6Demsurrection?', 'created': '2024-11-09 17:27:30', 'submission_id': '1glpdqv'}
{'comment': 'Sounds like they should be charged like trump was. Every time they loose they question it. When we loose we expect it. Who are the deniers', 'created': '2024-11-07 14:33:14', 'submission_id': '1glpdqv'}
{'comment': "They're not even done counting in some states", 'created': '2024-11-07 14:36:24', 'submission_id': '1glpdqv'}
{'comment': 'California still has millions of ballots not counted - slowly brings the total closer', 'created': '2024-11-07 14:00:20', 'submission_id': '1glpdqv'}
{'comment': 'I felt the same way. We’ve always been able to know who won before the next day.', 'created': '2024-11-07 16:01:45', 'submission_id': '1glpdqv'}
{'comment': 'That’s right. And no bullshit, very direct reporting and fast results. The way I remember it. No hanging chads type bullshit either. Clarity. Concise. Direct.', 'created': '2024-11-07 18:38:30', 'submission_id': '1glpdqv'}
{'comment': "I'm a Democrat for whatever that's worth, and one of my biggest issues with conservatives this cycle is all the election fraud claims when from what I've seen it's been a very safe/fair election all three times with Trump.\n\nSo it kinda pisses me off when Dems start taking that play from the Republicans just because they don't like the results. If you lose you lose and you just need to make your policy more appealing for next time. Deal with it.", 'created': '2024-11-07 20:54:35', 'submission_id': '1glpdqv'}
{'comment': 'i was shocked when they called georgia so early, i thought we wouldn’t know until at least the next day', 'created': '2024-11-07 19:53:56', 'submission_id': '1glpdqv'}
{'comment': '100% yes! Every major western election is sorted out the day of the election. In fact, the criteria they use to spot potential red flags is how long it takes to count votes and how many methods are used outside of in person written ballots. They also look at what is required to vote. If you look at the last election, it took several weeks to figure out who won, tons of mail in ballots (seen as highly suspicious) and many states still don’t require photo identification or any identification in order to vote. HUGE red flags.', 'created': '2024-11-07 20:07:22', 'submission_id': '1glpdqv'}
{'comment': 'Im in the UK, conservative voter so I’m more aligned with your views than democrats.\nThe fact is Democrat voters didn’t turn up. For whatever reason, be it complacency, pre occupied with work, etc etc - the fact remains the same - they didn’t turn out to vote. It wasn’t fixed, they just weren’t motivated to show up at the polls.\n\nAm I right assuming less people is total voted this election than the previous one?', 'created': '2024-11-07 20:43:18', 'submission_id': '1glpdqv'}
{'comment': 'Yup. And they only want to point out that the amount of votes dropped from last election by 20 million, instead of looking at the past 5 elections, last election was abnormally high.', 'created': '2024-11-07 16:32:03', 'submission_id': '1glpdqv'}
{'comment': "I saw that chart too, but it's not double. The zero line was at 40m or 50m to make it look like double.\n\nStill a suspicious amount of turnout for Biden though.", 'created': '2024-11-07 15:22:12', 'submission_id': '1glpdqv'}
{'comment': 'Also, currently California, Oregon, Arizona, Colorado, Nevada, and Washington aren’t all the way counted with the largest amount of votes residing in California. AP is reporting only 54% counted. So there is still millions of votes to add to this years totals..', 'created': '2024-11-07 15:47:27', 'submission_id': '1glpdqv'}
{'comment': "they're so close!", 'created': '2024-11-07 15:15:51', 'submission_id': '1glpdqv'}
{'comment': 'I think that chart starts at 50million on both sides.', 'created': '2024-11-07 15:38:03', 'submission_id': '1glpdqv'}
{'comment': "2020 had a 20% jump in Democratic voter ballots received above statistical averages going back to 2004. There's your anomaly.", 'created': '2024-11-07 20:35:33', 'submission_id': '1glpdqv'}
{'comment': 'You know where I can access that chart?', 'created': '2024-11-07 22:12:39', 'submission_id': '1glpdqv'}
{'comment': 'Can someone share the chart, I’m not finding it — thanks', 'created': '2024-11-07 22:12:55', 'submission_id': '1glpdqv'}
{'comment': '2020 was rigged for sure lol.', 'created': '2024-11-08 00:46:21', 'submission_id': '1glpdqv'}
{'comment': 'this is the literal definition of a conspiracy theory', 'created': '2024-11-07 15:12:30', 'submission_id': '1glpdqv'}
{'comment': 'Hahahaha', 'created': '2024-11-07 14:12:18', 'submission_id': '1glpdqv'}
{'comment': 'Feels like 2020 again, and when the red side questioned the vote, blue stomped them down and told them to be quiet, that they were lunatics. And yet here we are with blue.', 'created': '2024-11-07 15:24:59', 'submission_id': '1glpdqv'}
{'comment': 'These are the same people that say that Trump staged the assassination attempt', 'created': '2024-11-07 16:20:11', 'submission_id': '1glpdqv'}
{'comment': 'Did those 15 million votes ever really exist.', 'created': '2024-11-07 14:58:39', 'submission_id': '1glpdqv'}
{'comment': 'They will not put 2 and 2 together the way that makes sense. Some might which means more reasoned discourse, but the rest will look at data that makes sense and think it\'s wrong.\n\nThe left has corrupted our elections so that even a good one feels like it doesn\'t add up to then. It\'s like when schools pad a kids grades and then they they take a class where the teacher doesn\'t pad grades and it drops 20 points. The accurate grade is the one in the new class, the old grade is fucked up. But the kid doesn\'t get that. He\'s shocked by his low grade because it doesn\'t seem to fit with the "reality" that they have been led to believe.', 'created': '2024-11-07 14:37:10', 'submission_id': '1glpdqv'}
{'comment': 'I think Dems just didn’t vote or voted republican this year. I get that it’s shocking but it is just the probable reality.', 'created': '2024-11-07 15:49:03', 'submission_id': '1glpdqv'}
{'comment': 'Kalama was so unpopular that 15 million who voted for Joe stayed home instead is what happened', 'created': '2024-11-07 14:50:45', 'submission_id': '1glpdqv'}
{'comment': 'I will tell you exactly where they went. Some people most likely died after registration, some people chose not to vote after registration, some states canceled voters from illegal immigrants as they should, and many chose to vote early for Trump.', 'created': '2024-11-07 14:19:59', 'submission_id': '1glpdqv'}
{'comment': 'The answer is staring them in the face.', 'created': '2024-11-07 20:01:47', 'submission_id': '1glpdqv'}
{'comment': 'Maybe democrats didn’t vote for her this year and were too afraid to admit it 😏', 'created': '2024-11-07 16:38:01', 'submission_id': '1glpdqv'}
{'comment': '😂 Pelosi continues to say last time Trump was elected that the election was hijacked .', 'created': '2024-11-07 17:55:05', 'submission_id': '1glpdqv'}
{'comment': "If you want to find answers, look for what you're not allowed to question.", 'created': '2024-11-07 20:06:05', 'submission_id': '1glpdqv'}
{'comment': 'Yeah, from dead people and illegal immigrants.\xa0', 'created': '2024-11-07 22:42:37', 'submission_id': '1glpdqv'}
{'comment': "In all honesty Gore rescinded his concession to Bush in 2000. I don't think VP Harria will, but it has occurred in the past where one candidate has offered then rescinded a concession of an election.", 'created': '2024-11-07 14:04:02', 'submission_id': '1glpdqv'}
{'comment': 'There are certainly undereducated conservative voters, but with the abundance of posts like this, it’s super clear there are a shitload of undereducated liberal voters. The only difference is they think they are brilliant, what’s more dangerous?', 'created': '2024-11-07 13:56:56', 'submission_id': '1glpdqv'}
{'comment': 'The latter could be true anyway. People begged and begged and harassed and advertised and bothered everyone and their brother to REGISTER REGISTER REGISTER to vote. I imagine some people did it for shits and giggles and didn’t actually care to vote.', 'created': '2024-11-07 18:12:19', 'submission_id': '1glpdqv'}
{'comment': 'AMEN! Exactly what I stated yesterday to so many people who couldn’t understand how the number of voters were down this year compared to 2020.\n\nLiving proof.', 'created': '2024-11-07 14:05:45', 'submission_id': '1glpdqv'}
{'comment': 'Isn’t that the way it looks-kind if what we’ve been saying a long time', 'created': '2024-11-07 13:43:41', 'submission_id': '1glpdqv'}
{'comment': 'My first thought', 'created': '2024-11-07 14:14:39', 'submission_id': '1glpdqv'}
{'comment': "They're so close", 'created': '2024-11-07 14:02:49', 'submission_id': '1glpdqv'}
{'comment': 'Sleepy Joe gets the most votes ever, more than the popular Obama? Nothing fishy there!', 'created': '2024-11-07 15:11:00', 'submission_id': '1glpdqv'}
{'comment': 'Yep. 2024 is way more in line with the upward trend of the last few years, whereas 2020 is a huge outlier.\xa0', 'created': '2024-11-07 14:01:29', 'submission_id': '1glpdqv'}
{'comment': "If they rigged 2020 then why didn't they just rig 2024?", 'created': '2024-11-07 14:26:57', 'submission_id': '1glpdqv'}
{'comment': "Apparently they don't understand projecting results", 'created': '2024-11-07 14:03:42', 'submission_id': '1glpdqv'}
{'comment': "We don’t always like the result. (Insert 2020) but that's sometimes how voting works.", 'created': '2024-11-07 14:07:40', 'submission_id': '1glpdqv'}
{'comment': "Yep. Precisely. The results of this election line up perfectly with elections before 2020. The only discrepancy IS in 2020. Almost as if 2020 was rigged and not 2024... Dems will continue to grouch and stomp their feet, and even if it *does* get investigated, their plan is just going to backfire once the truth comes out. They're better off quitting while they're ahead before they accidently expose themselves, but eh. What do I care? Just goes to show they can't shut up even to save their own ass. Literally.", 'created': '2024-11-07 22:29:55', 'submission_id': '1glpdqv'}
{'comment': "how much do you wanna bet if that treaty is successful they wouldn't do it for republicans", 'created': '2024-11-07 15:04:34', 'submission_id': '1glpdqv'}
{'comment': 'It’s the popular vote in each individual state not across the whole country.', 'created': '2024-11-07 15:35:01', 'submission_id': '1glpdqv'}
{'comment': "4 years later and some of y'all keep repeating the same nonsense. There were [over 168 million registered voters](https://www.census.gov/content/dam/Census/library/publications/2022/demo/p20-585.pdf) in 2020 and this exceeds the number of votes cast.", 'created': '2024-11-07 23:07:48', 'submission_id': '1glpdqv'}
{'comment': 'Its only ok when they do it. Did you miss that memo?', 'created': '2024-11-07 16:16:17', 'submission_id': '1glpdqv'}
{'comment': 'They had 15 million votes more. It was an outlier compared to every election since 2000. The numbers this year are in line with the norm.', 'created': '2024-11-07 15:36:23', 'submission_id': '1glpdqv'}
{'comment': 'It’s insane that AZ and NV is STILL not done', 'created': '2024-11-07 17:54:23', 'submission_id': '1glpdqv'}
{'comment': 'They both only have about 20 percent of their votes to count. California is only at 55 percent counted.', 'created': '2024-11-07 20:25:15', 'submission_id': '1glpdqv'}
{'comment': 'I mostly agree with you with one major caveat. Election abnormalities have to be challenged. Notice I am not specifying anything in particular like fraud. I said "abnormalities."\n\nThis was the big problem with 2020. There were countless abnormalities, and most of it stemmed from late chances to voting procedures and allowances due to COVID. Conservatives did not like that at all because on the one hand they were being told it was time to move past COVID while at the same time being told the rules governing voting needed to change because of COVID. And it needs to be pointed out that years after that election those changes were found by multiple courts to be unconstitutional, so that only adds to the sense many have that 2020 was unjust. \n\nYou do have a problem with colloquial language and pedantic buffoonery on the other. Conservatives foolishly used a common, low brow vernacular to refer to everything they saw wrong about 2020. That term was "fraud." Well, it wasn\'t fraud, not by legal definition at least. But liberals pounced on that and used to declare people guilty of pushing "misinformation" and proceeded to have them censored or taken to court. That was liberal being stupidly and dishonestly pedantic. They knew damn well what everyone was referring to. And at the same time Conservatives knew dam well that "fraud" was an insufficient blanket term, and they were too stubborn and lazy to address the issue properly.\n\nIf liberals see any abnormalities in the voting or counting process, I strongly encourage them to avail themselves of their legal rights to file challenges and request recounts. And unlike Georgia who violated its own law to deny people hearings, I would urge every court to speedily litigate any and all challenges. \n\nChallenging election results is not inherently bad or wrong. If something needs clarification, transparency, or reversal for faith in the system to remain healthy, then that\'s what needs to happen. But anyone making those challenges needs to educate themselves first on the issue and speak to it precisely and properly. And people who don\'t like the challenge should engage in the process in good faith regardless.', 'created': '2024-11-07 22:32:38', 'submission_id': '1glpdqv'}
{'comment': "Yeah but if you tell most Dems that they'll freak out on you", 'created': '2024-11-07 21:29:39', 'submission_id': '1glpdqv'}
{'comment': 'Yup!', 'created': '2024-11-07 17:38:10', 'submission_id': '1glpdqv'}
{'comment': '2020 was a big ballot harvest.', 'created': '2024-11-07 15:38:37', 'submission_id': '1glpdqv'}
{'comment': '2020 was covid so brought out more voters especially mail in', 'created': '2024-11-07 17:16:36', 'submission_id': '1glpdqv'}
{'comment': 'California alone has something like 9MM uncounted. Doesn’t matter if they’re all for Kamala. Doesn’t give her one more electoral vote.', 'created': '2024-11-07 20:01:26', 'submission_id': '1glpdqv'}
{'comment': 'They have way less basis to stand on this time. \n\n- There were not 560 laws changed right before the election to increase voter count and decrease security of the election. \n\n- There weren’t swing states being won by 0.2% after “finding” extra votes days after the election. \n\n- There were no 140k vote dumps entirely for Trump at 4am.\n\n- There was no massive jump in total vote count for a single party candidate. (Biden received 16 million more votes than Hillary Clinton did 4 years prior, and received 12 million mores votes than Obama - the previous record holder for most voted president.) \n\n\nIf anything, this proves the 2020 election was fishy as Kamala’s total vote count will still exceed even Obama, but she will still be 10 million less than the anomaly of Biden.', 'created': '2024-11-07 18:26:13', 'submission_id': '1glpdqv'}
{'comment': "they didn't. they stuffed the ballot box in 2020, there was proof. a lot of dead people voted.", 'created': '2024-11-07 15:09:35', 'submission_id': '1glpdqv'}
{'comment': 'Nope. Dupes. Fake. Dead people too maybe. All these votes showed up magically and mysteriously when they stopped counting and when they had closed for the night. I was watching it live and saw the numbers jump blue by the hundred thousands in many counties/states. But you look for that footage now and you’re left with a big “nope.”', 'created': '2024-11-07 18:40:23', 'submission_id': '1glpdqv'}
{'comment': 'Given that Kamala was a Biden 2.0 after Bidenomics, and promising the same terrible economy. it’s no surprise that 15m didn’t show. Regardless, even if you total the amount of voters from 2020 there’s still like 10m registered voters who never showed. This theory of most voters ever = fake votes is not good because if a Republican candidate did get the next record, the same question can be asked.', 'created': '2024-11-07 16:45:20', 'submission_id': '1glpdqv'}
{'comment': 'The best question to ask.', 'created': '2024-11-07 20:16:06', 'submission_id': '1glpdqv'}
{'comment': 'I saw a post that compared 2012, 2016, 2020, and 2024 \n\n2020 was the outlier- it was the year where there was near zero ballot verification', 'created': '2024-11-08 01:28:33', 'submission_id': '1glpdqv'}
{'comment': 'This is exactly it. They voted, by staying home', 'created': '2024-11-07 14:59:10', 'submission_id': '1glpdqv'}
{'comment': 'I voted early this year and in 2020 i voted election day', 'created': '2024-11-07 14:55:17', 'submission_id': '1glpdqv'}
{'comment': 'Possibly. \nA quick picture of the data shows a fairly consistent trend in turnout with only 2020 being an obvious anomaly. \n\n\n[party vote](https://www.reddit.com/media?url=https%3A%2F%2Fpreview.redd.it%2F20-million-votes-v0-8n9rv119vczd1.jpeg%3Fwidth%3D1076%26format%3Dpjpg%26auto%3Dwebp%26s%3D883a86bca6f8855a9e38e81b2acbb68f00c0217f)', 'created': '2024-11-07 17:16:27', 'submission_id': '1glpdqv'}
{'comment': 'We will have to see what happens in the coming days, if she rescinds it and claims election fraud, the Democrats would have to go through the court process like we did back in 2020.\n\nIf they do, they are hypocrites, cause they accused republicans when we demanded a full forensic audit.', 'created': '2024-11-07 14:15:42', 'submission_id': '1glpdqv'}
{'comment': 'I called it that Harris would concede and my guess is she wanted to 1 up Trump and be the bigger person since he didn’t want to accept the results of 2020', 'created': '2024-11-07 14:23:43', 'submission_id': '1glpdqv'}
{'comment': 'There’s a trend of liberals calling republicans dumb and uneducated, believing because they have some useless 4 year degree that they somehow have superior intellect on every topic. Then you’ve got people who simply don’t understand how the electoral college works, think Trumps brining on Holocaust part 2, and don’t even know any policies or how they work outside of abortion and being black woman.', 'created': '2024-11-07 14:02:25', 'submission_id': '1glpdqv'}
{'comment': "Everyone knows what happened. Doesn't take a genius.", 'created': '2024-11-07 14:49:22', 'submission_id': '1glpdqv'}
{'comment': 'But they won’t be able to make that final connection. Doing so would mean admitting they were lied to and that they themselves perpetuated the lie. Instead of being intellectually honest they’ll just scream that, somehow, the right cheated.', 'created': '2024-11-07 14:28:38', 'submission_id': '1glpdqv'}
{'comment': 'That was because, back then, the demonizing of Trump was successful. Trump has won people around. The success of the Republicans this time around is phenominal.', 'created': '2024-11-07 17:34:28', 'submission_id': '1glpdqv'}
{'comment': 'The push for months has been to make conservative turnout too big to steal, I think the red map shows that worked', 'created': '2024-11-07 15:08:10', 'submission_id': '1glpdqv'}
{'comment': '[This](https://www.congress.gov/bill/118th-congress/house-bill/6513/text?overview=closed) was just signed into law on the 4th.', 'created': '2024-11-07 14:30:29', 'submission_id': '1glpdqv'}
{'comment': 'More oversight and regulation', 'created': '2024-11-07 14:47:38', 'submission_id': '1glpdqv'}
{'comment': "because they so overplayed their hand in '20 it was obvious and we caught on", 'created': '2024-11-07 14:57:15', 'submission_id': '1glpdqv'}
{'comment': "Kamala was a shit candidate. They shoved her out because they knew it was a sunk election. Same reason I believe Waltz was the vp pick. Shapiro was saved for an election with a better chance. She wasn't worth the cheat.", 'created': '2024-11-07 16:37:23', 'submission_id': '1glpdqv'}
{'comment': 'Yet they understand projecting quite well.', 'created': '2024-11-07 14:30:00', 'submission_id': '1glpdqv'}
{'comment': 'It says “to whichever presidential ticket wins the overall popular vote in the 50 states and the District of Columbia”', 'created': '2024-11-07 16:37:41', 'submission_id': '1glpdqv'}
{'comment': 'I truly hope the dems to all the same nonsense the republicans did four years ago. Storm the capitol. Play the “pence card”. Fake electors. Random boomer fodder conspiracy. \n\nWatching reps condemn it after literally doing it for four years nonstop… I would start laughing and probably never stop.', 'created': '2024-11-07 15:40:30', 'submission_id': '1glpdqv'}
{'comment': 'Unacceptable', 'created': '2024-11-07 18:46:36', 'submission_id': '1glpdqv'}
{'comment': 'If my memory is accurate, this has been normal for some states since the early 2000s, but it should be getting better not worse! What are they doing?', 'created': '2024-11-07 19:27:42', 'submission_id': '1glpdqv'}
{'comment': 'They already called AZ for Trump', 'created': '2024-11-07 20:46:16', 'submission_id': '1glpdqv'}
{'comment': 'NV and AZ always take days. This isn’t new news.', 'created': '2024-11-07 21:08:16', 'submission_id': '1glpdqv'}
{'comment': 'You think that is insane…look at California. Not even 60%', 'created': '2024-11-07 21:15:52', 'submission_id': '1glpdqv'}
{'comment': "Don't really have anything that I disagree with here, appreciate the well thought out response", 'created': '2024-11-08 04:05:08', 'submission_id': '1glpdqv'}
{'comment': 'Not the ones in my social circle but online you would be correct', 'created': '2024-11-08 04:06:10', 'submission_id': '1glpdqv'}
{'comment': 'Precisely. 2020 even had video footage of very obscure behavior at the polls. Now they want to play the same blame game. Honestly, Kamala stood no chance. They shit the bed with her in it.', 'created': '2024-11-07 20:45:49', 'submission_id': '1glpdqv'}
{'comment': '100% this. Not so much deep state as wide spread harvesting.', 'created': '2024-11-07 18:54:13', 'submission_id': '1glpdqv'}
{'comment': 'That would only change the ratio of mail in to in person votes, not the total votes.', 'created': '2024-11-07 17:44:01', 'submission_id': '1glpdqv'}
{'comment': '💯', 'created': '2024-11-07 18:54:07', 'submission_id': '1glpdqv'}
{'comment': 'Yep, this time there was more awareness of potential fishiness, more eyes on, and a bigger gap to overcome. Literally, too big to cheat.', 'created': '2024-11-07 21:33:31', 'submission_id': '1glpdqv'}
{'comment': '100%%%%. 2012,2016,2024 had similar vote counts. This election supports 2020 is an outlier.', 'created': '2024-11-08 02:36:19', 'submission_id': '1glpdqv'}
{'comment': "Don't forget about the suitcases under the tables & the vans showing up at 2am.", 'created': '2024-11-07 15:20:15', 'submission_id': '1glpdqv'}
{'comment': 'My grandpa who died in the early 2000s voted Democrat in 2020', 'created': '2024-11-08 02:42:58', 'submission_id': '1glpdqv'}
{'comment': 'Same here. Everyone said pump the vote and vote early, make it too big to rig. I was on top of it. I will never vote election day again unless informed otherwise by the right candidate.', 'created': '2024-11-07 14:56:48', 'submission_id': '1glpdqv'}
{'comment': 'Just insane!', 'created': '2024-11-08 00:06:31', 'submission_id': '1glpdqv'}
{'comment': 'True. And, just because you have a college degree doesn\'t mean that you paid attention in 7th grade civics when you were taught about the structure of U.S. government \n\n"Ugh this is boring who cares when will I need to know about electing electors ugh" ya know? I have 4 teens & the only reason they have a grasp on fundamentals of government is because I *do* have a degree in this shit & I drone on alot at home.', 'created': '2024-11-07 14:26:36', 'submission_id': '1glpdqv'}
{'comment': 'They are 100% the party of elitism.', 'created': '2024-11-07 15:45:55', 'submission_id': '1glpdqv'}
{'comment': 'I’d like to see the correlation between college education and advanced understanding of electoral college, policy and policy impact on the United States as a whole.\n\nMy hypothesis is that, like most advanced things, less is more and a basic understanding actually get people further.\n\nIt’s not like this matter anyway. The amount of arguments that I got into with liberals on this site that were totally clueless to policy though they would gaslight me and say it’s Trump that didn’t have policy was alarming', 'created': '2024-11-07 14:05:44', 'submission_id': '1glpdqv'}
{'comment': "I mean, I didn't understand how the electoral college system worked until my younger brother explained it to me.\nThe fact that im not American and I don't live there doesn't really help, but I'm definitely happy for us rn #trump2024 babyyy", 'created': '2024-11-07 22:09:18', 'submission_id': '1glpdqv'}
{'comment': "I don't think they care for any truth that obstructs their hate fill lust for power. \n\nThe truth is as subjective as gender is to them.\n\n They aren't about right or reason, they are all about emotion and the feelz", 'created': '2024-11-07 14:30:23', 'submission_id': '1glpdqv'}
{'comment': None, 'created': '2024-11-07 14:39:47', 'submission_id': '1glpdqv'}
{'comment': "My home state of Texas didn't allow feds into the building as far as I'm aware", 'created': '2024-11-07 18:19:01', 'submission_id': '1glpdqv'}
{'comment': 'I was going someone would pick up on that one', 'created': '2024-11-07 14:30:50', 'submission_id': '1glpdqv'}
{'comment': 'They condemned it on January 6th 😅', 'created': '2024-11-07 18:29:23', 'submission_id': '1glpdqv'}
{'comment': 'Yes, but they haven’t finished and there is still a Senate seat up in play. It’s ridiculous how slow they are. Florida has 3x the population and was done counting in 6 hours for example.', 'created': '2024-11-07 21:00:32', 'submission_id': '1glpdqv'}
{'comment': 'Ex dem here, hispanic and college educated. Thank you for being a real one.', 'created': '2024-11-08 04:41:10', 'submission_id': '1glpdqv'}
{'comment': 'I respect that', 'created': '2024-11-08 07:15:57', 'submission_id': '1glpdqv'}
{'comment': 'This guy maths the right way. Good point you make.', 'created': '2024-11-07 18:35:15', 'submission_id': '1glpdqv'}
{'comment': 'Covid everyone was trapped and hyper aware of everything. More motivation to vote. And mail in was thrown down everyone’s throats. Now people care less.', 'created': '2024-11-07 17:45:38', 'submission_id': '1glpdqv'}
{'comment': 'And the risk of total chaos if we saw a repeat of 2020.', 'created': '2024-11-07 22:08:56', 'submission_id': '1glpdqv'}
{'comment': 'Yes this! And they said it was all legit that it was how they had them stored, hidden under a table. Bullshit. They brought those out after they kicked out the watchers and had allegedly closed for the night and the stopped counting. Then all of a sudden hundred-thousand votes go up in so many places magically.', 'created': '2024-11-07 18:43:28', 'submission_id': '1glpdqv'}
{'comment': 'Or the mail carrier crates found thrown into the woods stuffed with Trump votes.\n\nA lot of strange shit went down in the 2020 election, but god forbid you questioned any of it.', 'created': '2024-11-07 21:03:37', 'submission_id': '1glpdqv'}
{'comment': 'Same here tbh i liked voting early cause it was done and i didnt have to stand in lines for an hour waiting. Unless of course im undecided if im not sure ill wait but i was sure trump in 2016,2020 and 2024', 'created': '2024-11-07 15:01:31', 'submission_id': '1glpdqv'}
{'comment': 'In 2020 there was a county in Nevada that had low voting turnout because of a snow storm. You just don’t know what could happen on a day you have plans to do something important. I am open to early voting, just as long as it is a short period with a hard deadline.', 'created': '2024-11-07 15:52:20', 'submission_id': '1glpdqv'}
{'comment': 'I’ll tell y what, I have a four year college degree and use about 0 of it in real world application. A college degree is nothing more than a”I took out the debt and passed the classes so here is my piece of paper stating I’m qualified for an office job now”.\n\nIt’s got little to no correlation to intelligence', 'created': '2024-11-07 21:40:49', 'submission_id': '1glpdqv'}
{'comment': 'The fact that millions think Kamala was going to just restore Roe V Wade and believe handing out $25,000 for a home wasn’t going to fuck the housing market even more tells you enough', 'created': '2024-11-07 21:37:41', 'submission_id': '1glpdqv'}
{'comment': 'You do realize that letter is dated before the law was passed right…?\n\nEdit: Wow! They rage quit the conversation 😂', 'created': '2024-11-08 01:42:45', 'submission_id': '1glpdqv'}
{'comment': 'After setting it in motion using now provable lies. Yes he eventually used those words. \n\nIf Biden today were to pressure state officials \n\nIf Biden today were to create fake elector certificates \n\nIf Biden asked Kamala to refuse to certify this election \n\nYou’d be supportive. I’m sure. /s\n\nEdit formatting', 'created': '2024-11-07 18:34:18', 'submission_id': '1glpdqv'}
{'comment': 'Yeah, and they have the audacity to question when 2020 had FAR more irregularities with late night ballot dumps, polls staying open later, etc. It’s ridiculous that they would challenge. The reason the numbers don’t add up is that they screwed with the numbers in 2020. Duh!', 'created': '2024-11-07 23:13:15', 'submission_id': '1glpdqv'}
{'comment': 'They also recounted it too!', 'created': '2024-11-07 23:19:52', 'submission_id': '1glpdqv'}
{'comment': "Dude are you dumb? COVID doesn't change the amount of voters.", 'created': '2024-11-07 21:31:59', 'submission_id': '1glpdqv'}
{'comment': 'Yes and that would change the ratio for in person vs mail.', 'created': '2024-11-07 17:54:54', 'submission_id': '1glpdqv'}
{'comment': 'Wait that happened and the left still thinks it was fair? Tf', 'created': '2024-11-07 21:34:32', 'submission_id': '1glpdqv'}
{'comment': 'Exactly, that ship has sailed lol', 'created': '2024-11-07 21:38:18', 'submission_id': '1glpdqv'}
{'comment': 'Biden and Kamala\'s rhetoric got him shot. It killed a crowd-attendee and injured two more. They then tried again. Apparently, "fascist - threat to democracy - nazi - and literal Hitler*" is not a good idea to call your political opponent. \n\nNotice how he won all his impeachment inquiries? Insane. Watch those hearings if you want to be proved wrong.', 'created': '2024-11-08 02:36:25', 'submission_id': '1glpdqv'}
{'comment': 'Yeah, it was just before the 2020 election. They supposedly found the box thrown into the woods by the side of the road. It was labeled a hoax and fake. But now I wonder.', 'created': '2024-11-07 21:47:49', 'submission_id': '1glpdqv'}
{'comment': 'Don’t change the subject. We were discussing denying election results. \n\nIf the dems try the same things that trump tried after losing in 2020 you have no room to be outraged. You will be. But know that everyone is rolling their eyes at you (and your entire party)\n\nI have little interest in long debates with internet strangers, so you can have the last word.', 'created': '2024-11-08 02:45:47', 'submission_id': '1glpdqv'}
{'comment': 'Then there was that video of the guy saying "Fuck Trump" and ripping up ballots. That was labeled a hoax of course.', 'created': '2024-11-07 21:48:32', 'submission_id': '1glpdqv'}
{'comment': 'Okay, good luck in life.', 'created': '2024-11-08 02:58:20', 'submission_id': '1glpdqv'}
{'comment': 'Thank you. You as well', 'created': '2024-11-08 03:02:16', 'submission_id': '1glpdqv'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 09:51:33', 'submission_id': '1glm5mq'}
{'comment': "Democrats: we're the party is live and tolerance!!! We voted against hate!!!\nAlso Democrats: anyone who doesn't agree with me is a maggot!!!", 'created': '2024-11-07 12:10:51', 'submission_id': '1glm5mq'}
{'comment': None, 'created': '2024-11-07 14:40:32', 'submission_id': '1glm5mq'}
{'comment': 'They can’t accept that the vast majority of people, including Reps, most independents, and some Dems, didn’t give a fuck about “muh abortion rights” and “muh democracy”. Most people were tired of the administration’s handling of the economy/inflation, and in Kamala’s words, she wouldn’t change any of President Biden’s policies. People wanted change. The national environment just benefitted Republicans this time around unlike 2020.', 'created': '2024-11-07 13:14:20', 'submission_id': '1glm5mq'}
{'comment': None, 'created': '2024-11-07 13:50:49', 'submission_id': '1glm5mq'}
{'comment': "they complain that 20 million Dems didn't vote like in 2020 when in reality the same amount voted with an additional 20 million fake ballots just look at the number of Democrat voters from the past 4 elections for some reason 2020 had a 30% spike", 'created': '2024-11-07 10:56:25', 'submission_id': '1glm5mq'}
{'comment': 'You cannot fix stupid.', 'created': '2024-11-07 11:30:43', 'submission_id': '1glm5mq'}
{'comment': "So weird the 20 million votes didn't magically appear exactly where they are needed", 'created': '2024-11-07 13:45:08', 'submission_id': '1glm5mq'}
{'comment': 'What are they going to do about it? Storm the Capitol?\n\nThat would be hypocritical.', 'created': '2024-11-07 12:59:45', 'submission_id': '1glm5mq'}
{'comment': '“Beyoncé do your magic please” \n\nGod bless America 😂', 'created': '2024-11-07 13:08:59', 'submission_id': '1glm5mq'}
{'comment': 'They went trough shock, anger, depression and denial so far\n\nI wonder how will the bitterness stage look like', 'created': '2024-11-07 11:46:03', 'submission_id': '1glm5mq'}
{'comment': 'Damn insurrectionists…', 'created': '2024-11-07 09:55:43', 'submission_id': '1glm5mq'}
{'comment': "They are right it was rigged. Kamala didn't get nearly that many votes.", 'created': '2024-11-07 16:12:41', 'submission_id': '1glm5mq'}
{'comment': 'They went to bed with Kamala in the lead, and then a million mail in ballots for Trump appeared at 3AM… oh wait.', 'created': '2024-11-07 14:23:13', 'submission_id': '1glm5mq'}
{'comment': 'Well if cheating happened, Democrats should lay the evidence out for us, why was it an issue when we demanded audits, but their side got to complain and wail?', 'created': '2024-11-07 14:07:54', 'submission_id': '1glm5mq'}
{'comment': 'According to their own rules they are domestic terrorists.', 'created': '2024-11-07 12:57:43', 'submission_id': '1glm5mq'}
{'comment': 'I said it before, I’ll say it again. They act like a bunch of children who just lost a game and are claiming the winner is a cheater.', 'created': '2024-11-07 13:21:48', 'submission_id': '1glm5mq'}
{'comment': "🤣🤣🤣🤣🤣 it's not like he got more black votes than Obama like Biden did.", 'created': '2024-11-07 13:33:59', 'submission_id': '1glm5mq'}
{'comment': 'This Jan 6th is about to be wild', 'created': '2024-11-07 13:35:29', 'submission_id': '1glm5mq'}
{'comment': 'Election deniers.', 'created': '2024-11-07 14:08:33', 'submission_id': '1glm5mq'}
{'comment': '“For anyone, whether in America or other countries, who finds this result shocking, they should reconsider where they get their information. \n\nThis trend was obvious on 𝕏 for months, but almost all the legacy mainstream media pushed a completely false reality.\n\nThey lied to you.”\n\nElons own words', 'created': '2024-11-07 15:04:19', 'submission_id': '1glm5mq'}
{'comment': 'Then maybe the democrats should have supported voter ID...', 'created': '2024-11-07 16:01:35', 'submission_id': '1glm5mq'}
{'comment': "The Democrats have claimed cheating for every election they didn't win since 2000", 'created': '2024-11-07 13:39:51', 'submission_id': '1glm5mq'}
{'comment': 'Cognitive dissonance\nCult members may experience psychological discomfort when confronted with facts that contradict their beliefs', 'created': '2024-11-07 13:53:15', 'submission_id': '1glm5mq'}
{'comment': '“Bought votes” This isn’t fuckin instagram where you can buy followers 😂🤣', 'created': '2024-11-07 15:10:39', 'submission_id': '1glm5mq'}
{'comment': 'Hahaha they’ve always been the best hypocrites out there', 'created': '2024-11-07 15:18:05', 'submission_id': '1glm5mq'}
{'comment': "They're the kings and queens of hypocrisy lol\n\nAnd so irony impaired, its not even funny anymore. \n\nIt's quite sad.", 'created': '2024-11-07 15:19:28', 'submission_id': '1glm5mq'}
{'comment': '“Life is hard, but it’s harder when you’re stupid.”', 'created': '2024-11-07 16:14:07', 'submission_id': '1glm5mq'}
{'comment': 'According to the MSM from 4 years ago, these people are lower than Nazis, pedophiles, and rapists. They are Election Deniers!!', 'created': '2024-11-07 16:15:01', 'submission_id': '1glm5mq'}
{'comment': 'They’re the people who always blame officials when their team loses. We all know one.', 'created': '2024-11-07 14:26:08', 'submission_id': '1glm5mq'}
{'comment': 'Yeah of course they are. And the popular vote as well.', 'created': '2024-11-07 14:27:55', 'submission_id': '1glm5mq'}
{'comment': 'Beyonce do your magic please 😂', 'created': '2024-11-07 15:05:39', 'submission_id': '1glm5mq'}
{'comment': 'Feels like a reach', 'created': '2024-11-07 17:09:33', 'submission_id': '1glm5mq'}
{'comment': 'they\'re whole tickets vibe felt "off"', 'created': '2024-11-07 17:12:33', 'submission_id': '1glm5mq'}
{'comment': "Voting is _really_ secure. Except if democrats are losing. Then it's rigged.\n\n\nWe need the Republicans to reform the voting system using Trump's suggestions. We can't keep doing this every election cycle!", 'created': '2024-11-07 18:21:31', 'submission_id': '1glm5mq'}
{'comment': "and they say the 2020 election wasn't rigged", 'created': '2024-11-07 18:35:52', 'submission_id': '1glm5mq'}
{'comment': 'Lol', 'created': '2024-11-07 13:38:46', 'submission_id': '1glm5mq'}
{'comment': "It can't possibly be that people are just fed up with their shit and were watching the poll places closer than ever so no shenanigans could happen.", 'created': '2024-11-07 15:03:03', 'submission_id': '1glm5mq'}
{'comment': 'They called on Beyoncé, it’s over for us', 'created': '2024-11-07 15:12:38', 'submission_id': '1glm5mq'}
{'comment': 'The only odd thing is the 18mm extra votes in 20’', 'created': '2024-11-07 15:56:20', 'submission_id': '1glm5mq'}
{'comment': 'The amount of likes on these comments are sus.', 'created': '2024-11-07 16:27:49', 'submission_id': '1glm5mq'}
{'comment': 'no, people are just tired of not being able to afford to live', 'created': '2024-11-07 16:43:20', 'submission_id': '1glm5mq'}
{'comment': "Part of it might be that Dems pull in a lot of kids & if the only election they remember is 2020, they might have a skewed view of things.\n\n\nNot saying 2020 was a complete dog-n-pony show with ballot harvesting & completely unsecured vote-counts with no transparency. Or anything like that.\n\n\nJust that Biden got somewhere in the range of 15 million more votes than Obama '12 or Kamala, 10 million more than Obama '08, & didn't underperform Kamala in a single county as per election night reports.", 'created': '2024-11-07 17:00:34', 'submission_id': '1glm5mq'}
{'comment': 'They can cry about it for the next 4 years just like I did 😁', 'created': '2024-11-07 17:02:09', 'submission_id': '1glm5mq'}
{'comment': 'And TICK goes the “hypocritical left” list 😂', 'created': '2024-11-07 17:37:15', 'submission_id': '1glm5mq'}
{'comment': "They feel something is wrong because they cheated and they still lost. Go back to elections most candidates speed up and slow down in polling as votes are counted. If it is steady then that's the outlier.", 'created': '2024-11-07 18:35:43', 'submission_id': '1glm5mq'}
{'comment': 'Breaking news liberals don’t understand how public opinion and common sense works', 'created': '2024-11-07 21:14:35', 'submission_id': '1glm5mq'}
{'comment': 'Looks like these posts are from a bot farm. Too much of the same stuff', 'created': '2024-11-07 21:24:43', 'submission_id': '1glm5mq'}
{'comment': 'Only democrats can deny the results of th election and say their was voter fraud! Anyone else who does is wrong and is considered a conspiracy theorist because they arent a democrat!!', 'created': '2024-11-07 21:42:18', 'submission_id': '1glm5mq'}
{'comment': 'Yeah but democrats are not out beating up and macing police officers , threatening a civil war, or threatening to kill politicians.', 'created': '2024-11-07 22:23:28', 'submission_id': '1glm5mq'}
{'comment': 'Election deniers!', 'created': '2024-11-07 15:07:51', 'submission_id': '1glm5mq'}
{'comment': 'I hope people see how silly it sounds now. This is the cry of a loser.', 'created': '2024-11-07 16:27:56', 'submission_id': '1glm5mq'}
{'comment': 'Beyoncé doesn’t even care about Texas.. wtf makes you think she gives a damn about the election 😂', 'created': '2024-11-07 16:56:56', 'submission_id': '1glm5mq'}
{'comment': 'Those election deniers!', 'created': '2024-11-07 17:32:16', 'submission_id': '1glm5mq'}
{'comment': '“The good guys”', 'created': '2024-11-07 17:43:30', 'submission_id': '1glm5mq'}
{'comment': 'It seems they haven’t learned anything either. Instead of toning down the hateful comments, they have amped it up. I won’t be voting democrat anytime soon because of it. And idk why anyone else would either. It’s clear they hate you and everything you stand for. It’s just been revealed.', 'created': '2024-11-07 18:39:00', 'submission_id': '1glm5mq'}
{'comment': 'Remember, it’s (D)ifferent when they do it.', 'created': '2024-11-07 18:52:45', 'submission_id': '1glm5mq'}
{'comment': 'They forgot that the extra 10M+ votes Biden got in 2020 were fraudulent. Make believe people don’t exist in the flesh, and can’t vote when you have a normal election.', 'created': '2024-11-07 19:04:18', 'submission_id': '1glm5mq'}
{'comment': 'At least when we questioned it, there was reason to. Trump lost 3 states by less than 50k votes. If you are going to call an election "The most safe and secure election in American History," when we ask for a recount, I believe it\'s warranted. In this case, he won every swing state decisively, Kamala got nearly 20 million fewer votes than Joe, and Trump won the popular vote. It\'s not justifiable to question the results to that extent. And that doesn\'t even touch on the midnight 2020 shenanigans', 'created': '2024-11-07 19:08:29', 'submission_id': '1glm5mq'}
{'comment': 'Same shit, different party.', 'created': '2024-11-07 19:14:24', 'submission_id': '1glm5mq'}
{'comment': 'Kamala got fucked so hard she probably thought she was going to get the office', 'created': '2024-11-07 20:35:59', 'submission_id': '1glm5mq'}
{'comment': 'Ain’t nothing like liberal tears!', 'created': '2024-11-07 21:24:17', 'submission_id': '1glm5mq'}
{'comment': 'Hahahha they could not bring in bags of mail in ballots this time, and they are so confused.', 'created': '2024-11-07 21:33:06', 'submission_id': '1glm5mq'}
{'comment': 'Dude she was selected not even elected for them and they’re seriously surprised???', 'created': '2024-11-07 22:26:33', 'submission_id': '1glm5mq'}
{'comment': 'something doesnt feel right about it? bro something WAY didnt feel right about the 2020 one', 'created': '2024-11-07 23:58:28', 'submission_id': '1glm5mq'}
{'comment': 'Election-deniers!', 'created': '2024-11-08 00:48:57', 'submission_id': '1glm5mq'}
{'comment': 'he won fairly in 2016, why wouldnt he win again equally as fairly? especially when his opponent was a VP that nobody asked for.', 'created': '2024-11-08 00:52:34', 'submission_id': '1glm5mq'}
{'comment': 'They really trying to say maybe he bought votes when Kamala was caught paying people', 'created': '2024-11-08 02:39:01', 'submission_id': '1glm5mq'}
{'comment': 'The Beyonce, do your magic got me', 'created': '2024-11-08 04:08:39', 'submission_id': '1glm5mq'}
{'comment': 'A lot of my liberal friends posted how "fear and hate" won this election. No it didn\'t. Fear and hate lost this election.The fear purported that we are going to have a nazi, dictator, fascist president, the vitriol towards conservatives. The constant, harmful rhetori and the endless intellectual dishonesty.. I\'m looking forward to the next 4 years.', 'created': '2024-11-08 04:14:13', 'submission_id': '1glm5mq'}
{'comment': '*"Something doesn\'t feel right"* \\- whelp, that\'s it then. All the proof anyone needs.', 'created': '2024-11-08 05:40:12', 'submission_id': '1glm5mq'}
{'comment': '[removed]', 'created': '2024-11-08 06:37:29', 'submission_id': '1glm5mq'}
{'comment': 'Biden and Kamala literally told them there will be a peaceful transition to Trump. So how is there a steal?', 'created': '2024-11-08 06:52:39', 'submission_id': '1glm5mq'}
{'comment': 'I love it! Since they couldn’t cheat this time, “something feels off.” Yes, you weren’t allowed to cheat!', 'created': '2024-11-08 07:55:59', 'submission_id': '1glm5mq'}
{'comment': 'Here’s a revelation: Working class people don’t give a shit about identity politics.', 'created': '2024-11-08 12:22:03', 'submission_id': '1glm5mq'}
{'comment': "These people are sick. A nice smooth fair election for the most part and they can do nothing but cry and whine about it. In Pennsylvania they were refusing to allow Republican poll watchers into certain polling stations until Trump jr or Eric sent attorneys to those places. It's amazing how these people got caught trying to cheat in Pennsylvania and these weirdos won't bring it up and just scream saying Trump cheated This shit is unfuckingreal", 'created': '2024-11-08 22:46:47', 'submission_id': '1glm5mq'}
{'comment': 'I wish I could say something to these people face to face lol, not aggressive or anything I just wanna state facts and teach them face to face 🤣 but I mean.. if it gets aggressive 🤷', 'created': '2024-11-12 16:43:01', 'submission_id': '1glm5mq'}
{'comment': 'I’m a democrat lurker and prepared to get banned for the comment but, come on. Y’all have been saying 2020 was rigged for 4 years and now you’re calling us out for saying the same thing? Trump won no arguments at all but the hypocrisy here is wild.', 'created': '2024-11-08 01:35:35', 'submission_id': '1glm5mq'}
{'comment': "I've been called worse by them. Maggots are actually pretty useful to nature and used in medicine.", 'created': '2024-11-07 14:06:26', 'submission_id': '1glm5mq'}
{'comment': 'The irony always eludes them. Crazy people can’t understand irony nor hypocrisy.', 'created': '2024-11-08 09:08:25', 'submission_id': '1glm5mq'}
{'comment': "Trump had to win the way he did along with winning the popular vote because they'd be deep diving right now into how horrible the electoral college was and invented by literally Hitler!\n\nI used to think everybody should vote. Not anymore really.", 'created': '2024-11-08 03:40:29', 'submission_id': '1glm5mq'}
{'comment': "Its hard for them they're so focused on forcing other people to think like them and change everyone's culture to theirs they've become blind.\n\nAny policy they don't like it somehow evil.\n\nThey can't comprehend the vast majority of people just want to be left alone to make their own choices.", 'created': '2024-11-07 13:39:37', 'submission_id': '1glm5mq'}
{'comment': 'Unfortunately those votes didn’t show up at a convenient time this year, it must be rigged!', 'created': '2024-11-07 13:57:00', 'submission_id': '1glm5mq'}
{'comment': 'People were watching a whole lot more this time around', 'created': '2024-11-07 12:59:00', 'submission_id': '1glm5mq'}
{'comment': "The dead couldn't crawl out of their graves to vote this time.", 'created': '2024-11-07 12:23:42', 'submission_id': '1glm5mq'}
{'comment': "They can't figure out the mystery of those votes😂😂😂.. Might be cause they never existed lol.", 'created': '2024-11-07 20:28:17', 'submission_id': '1glm5mq'}
{'comment': 'And we get 12 years of Trump instead of 8, I kinda like that part. He served his second term in exile, now returning for his 3rd!', 'created': '2024-11-07 18:53:25', 'submission_id': '1glm5mq'}
{'comment': 'But you can spay and neuter stupid. Remove those lines from the gene pool.', 'created': '2024-11-07 16:05:25', 'submission_id': '1glm5mq'}
{'comment': 'Are you calling Republican stupid for doing it for four years?', 'created': '2024-11-07 13:09:38', 'submission_id': '1glm5mq'}
{'comment': None, 'created': '2024-11-07 14:01:38', 'submission_id': '1glm5mq'}
{'comment': 'Probably gonna have their ANTIFA soy dudes riot and smash businesses like they did in 2020', 'created': '2024-11-07 14:09:54', 'submission_id': '1glm5mq'}
{'comment': 'Nah they don’t have the balls to do it lol they cut them all off for gender confirmation', 'created': '2024-11-07 14:31:09', 'submission_id': '1glm5mq'}
{'comment': 'No but you see it’s (D)ifferent.', 'created': '2024-11-07 15:30:09', 'submission_id': '1glm5mq'}
{'comment': 'I really hope they do tbh', 'created': '2024-11-08 10:19:55', 'submission_id': '1glm5mq'}
{'comment': "> That would be hypocritical\n\nKinda like saying there's something off about the election?", 'created': '2024-11-07 16:33:19', 'submission_id': '1glm5mq'}
{'comment': 'Like what the fuck do they think that old hag will do? Drag her ass across the Constitution and leave a snail trail all over it?', 'created': '2024-11-07 13:59:36', 'submission_id': '1glm5mq'}
{'comment': 'I saw that. Lmao…idiots', 'created': '2024-11-07 22:02:08', 'submission_id': '1glm5mq'}
{'comment': 'Well they are hitting the stages really quick maybe they will reach acceptance', 'created': '2024-11-07 13:12:02', 'submission_id': '1glm5mq'}
{'comment': 'On the subreddit over there they kept asking if the mail in ballots had been counted hoping that was going to save them when the swing states were favoring Trump....Not this time!!!', 'created': '2024-11-07 16:42:41', 'submission_id': '1glm5mq'}
{'comment': 'Yeah, i remember going to sleep to Trump winning soundly, woke up at 4am to... that. Imagine my shock. They also had the mail-in ballot lead, and the day of? Excuse me?', 'created': '2024-11-07 15:48:33', 'submission_id': '1glm5mq'}
{'comment': 'But, if it was the other way around and we lost and claimed cheating. They would rip us a new one and tell us to STFU.', 'created': '2024-11-07 16:43:20', 'submission_id': '1glm5mq'}
{'comment': 'Yep, with Kamala having to certify the results while being both the former VP and a defeated presidential candidate.', 'created': '2024-11-07 14:06:27', 'submission_id': '1glm5mq'}
{'comment': 'The popular vote is the kicker. They were all told that even if he won, he couldn’t win the popular vote so it really wouldn’t be a valid election. Now they don’t k own what to do when he won both.', 'created': '2024-11-07 17:14:15', 'submission_id': '1glm5mq'}
{'comment': 'rigged :)', 'created': '2024-11-08 04:07:21', 'submission_id': '1glm5mq'}
{'comment': 'My favorite go-to is " I\'ve been called worse by better people"', 'created': '2024-11-07 17:20:13', 'submission_id': '1glm5mq'}
{'comment': 'In their eyes not cheating in their favor is cheating!', 'created': '2024-11-07 17:06:49', 'submission_id': '1glm5mq'}
{'comment': 'Maybe they had delivery truck problems?', 'created': '2024-11-07 16:34:27', 'submission_id': '1glm5mq'}
{'comment': 'They missed the bus to get them there in time.', 'created': '2024-11-07 15:56:08', 'submission_id': '1glm5mq'}
{'comment': 'The states that had quick election counts and no controversy also had cleaned their voter rolls making 2000 mules type cheating exponentially harder.', 'created': '2024-11-08 03:49:48', 'submission_id': '1glm5mq'}
{'comment': 'Um no. The vote dumping in 2020 happened. Even democrats are looking back at the numbers and seeing the light. But I’m not here to get into a pissing match with a commenter. Have a lovely day.', 'created': '2024-11-07 13:13:35', 'submission_id': '1glm5mq'}
{'comment': 'Case in point. This one needs to be spayed or neutered.', 'created': '2024-11-07 16:06:07', 'submission_id': '1glm5mq'}
{'comment': 'This could be a catalyst to get them on the same page. That would be wonderful.', 'created': '2024-11-07 14:07:23', 'submission_id': '1glm5mq'}
{'comment': 'You know this is where this going. Minorities left them in droves and can’t be trusted anymore so their attitude is going to be that there was cheating and election integrity must be ensured.', 'created': '2024-11-07 17:05:09', 'submission_id': '1glm5mq'}
{'comment': 'The left’s target audience happens to be self-empowered cat ladies who are incapable of being responsible enough to settle down and have a family and contribute to society and a stuck in a cycle of toxic man hating unhappiness. \n\nTheir target audience seems to think celebrities like Beyoncé or dividers like Obama can snap their fingers and we the American people will listen, but we do not worship dumbfuck celebrities like they do.\n\nFuck Hollywood and fuck Beyoncé. And fuck mark Cuban too.', 'created': '2024-11-07 14:27:52', 'submission_id': '1glm5mq'}
{'comment': "A liberal reaching acceptance? ☠️ Doubtful, they can't even accept themselves in their own bodies 🤣", 'created': '2024-11-07 15:46:50', 'submission_id': '1glm5mq'}
{'comment': 'Some of the mail in ballots and ballot requests in multiple counties in Pennsylvania were flagged as fraudulent. They were postmarked from Arizona. ???????', 'created': '2024-11-07 17:09:10', 'submission_id': '1glm5mq'}
{'comment': 'Yeah, I got the too fast thing too. Like they think it should take _weeks_ to do this. This was actually the first “normal” election since 12, but many of them don’t know that because they were 8 or 10 years old then. To them things being a train wreck and taking longer to address is the norm. And their tears are like wine.', 'created': '2024-11-07 17:10:09', 'submission_id': '1glm5mq'}
{'comment': 'And not having the ability to invalidate the election like Pence _could_ have done. That was quietly changed in 21.', 'created': '2024-11-07 17:12:19', 'submission_id': '1glm5mq'}
{'comment': 'That a really good one!', 'created': '2024-11-08 00:50:23', 'submission_id': '1glm5mq'}
{'comment': 'Right! They were demanding that Kamala request a recount. Only way that could happen is if they were almost evenly matched or very close and Kamala was nowhere near him.... Only reason I would say 2020 was different and not normal was due to covid. Acting like kids that cry and complain until they get their way which is probably how a lot of them were raised.', 'created': '2024-11-07 17:29:07', 'submission_id': '1glm5mq'}
{'comment': 'Exactly. I was born in 86’ so have lived through a few administrations in my nearly 40 years of life. Out here on the west coast it’s always been the norm that we know who the president is by midnight on Election Day. It isn’t supposed to drag out for days and weeks.\xa0', 'created': '2024-11-08 00:23:32', 'submission_id': '1glm5mq'}
{'comment': 'Pence is completely irrelevant to our movement now. He betrayed the country and even gave an elbow bump to Nancy Pelosi if you remembered that.', 'created': '2024-11-07 17:14:01', 'submission_id': '1glm5mq'}
{'comment': "Although don't use it in an argument with your spouse. I learned that lesson the hard way. ☹️", 'created': '2024-11-08 00:52:01', 'submission_id': '1glm5mq'}
{'comment': 'My comment wasn’t about Pence, it was about the fact that the Dems quietly took that ability away from the VP when certifying the election.', 'created': '2024-11-07 17:15:51', 'submission_id': '1glm5mq'}
{'comment': 'Yeah, that secures a Trump win ironically, which works against their favor.', 'created': '2024-11-07 17:23:26', 'submission_id': '1glm5mq'}
{'comment': 'The best part is it’s her that doesn’t have that power, and he’s the winner. You are correct, quite ironic.', 'created': '2024-11-07 17:25:11', 'submission_id': '1glm5mq'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 03:55:43', 'submission_id': '1glgnlu'}
{'comment': "They're *so* close to figuring it out.", 'created': '2024-11-07 03:56:01', 'submission_id': '1glgnlu'}
{'comment': 'Connect those dots… you can do it!', 'created': '2024-11-07 03:59:17', 'submission_id': '1glgnlu'}
{'comment': 'Don’t you remember, so many people wanted Biden that even dead people rose up out of their graves to vote for him!\nSpeaking of graves, I’ll go to my grave saying 2020 was stolen. But now I say maybe it was meant to be, it brought us Vance, who is so much better than Pence.', 'created': '2024-11-07 13:43:11', 'submission_id': '1glgnlu'}
{'comment': 'I wonder how "lake wobegon" would have voted? Probably way left leaning as heck lol', 'created': '2024-11-07 19:17:44', 'submission_id': '1glgnlu'}
{'comment': 'Maybe 2020 was the anomaly lol', 'created': '2024-11-07 04:24:04', 'submission_id': '1glgnlu'}
{'comment': 'Maybe a little push? lol', 'created': '2024-11-07 04:24:27', 'submission_id': '1glgnlu'}
{'comment': 'Thanks for posting this. It\'s funny how things tend to "bubble up." Just another one of those "conspiracy" theories!', 'created': '2024-11-07 06:08:37', 'submission_id': '1glgnlu'}
{'comment': 'They need to start with shapes first.', 'created': '2024-11-07 04:09:43', 'submission_id': '1glgnlu'}
{'comment': 'And a delicious win this year with the senate, possibly the house & the popular vote!', 'created': '2024-11-07 16:20:28', 'submission_id': '1glgnlu'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 03:42:41', 'submission_id': '1glgeua'}
{'comment': 'They are already beginning to sew the newest batch of “pink pussy” hats for the upcoming inevitable “parades”', 'created': '2024-11-07 12:16:20', 'submission_id': '1glgeua'}
{'comment': "Wasn't there also a car burned or bombed on Inauguration day ?", 'created': '2024-11-07 04:21:49', 'submission_id': '1glgeua'}
{'comment': 'Don’t forget there was rioting. Libs smashing store fronts and lighting shit on fire', 'created': '2024-11-08 03:10:40', 'submission_id': '1glgeua'}
{'comment': 'Oh this will be fun if they live up to their (violent) past', 'created': '2024-11-07 13:32:56', 'submission_id': '1glgeua'}
{'comment': 'Yes', 'created': '2024-11-07 04:39:02', 'submission_id': '1glgeua'}
{'comment': 'Fully expecting that again.', 'created': '2024-11-08 03:16:33', 'submission_id': '1glgeua'}
{'comment': "Oh without a doubt but don't worry they are already finding a disgruntled republican to blame.", 'created': '2024-11-13 04:37:53', 'submission_id': '1glgeua'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 03:15:13', 'submission_id': '1glfvoj'}
{'comment': 'Galatians 6:7, reap what you sow. Jack smith, Fanni Willis, Leticia James, Merrick Garland. May they all reap the fucking whirlwind. Take them out, then dig out the rest of the cancer in the DOJ. Signed, a proud veteran', 'created': '2024-11-07 03:27:05', 'submission_id': '1glfvoj'}
{'comment': 'Jack Smith better go hide under a rock somewhere', 'created': '2024-11-07 14:03:12', 'submission_id': '1glfvoj'}
{'comment': 'Letitia James just gave a news conference threatening Trump. Talk about failing to read the room.', 'created': '2024-11-07 15:27:46', 'submission_id': '1glfvoj'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 03:03:22', 'submission_id': '1glfngl'}
{'comment': 'Pray everyday, come forth to God with your concerns and present them to him, I felt great when I used to pray everyday, I definetelty need to start again.', 'created': '2024-11-07 03:50:18', 'submission_id': '1glc575'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 02:40:14', 'submission_id': '1glf6sb'}
{'comment': "And I bet their post weren't removed and they weren't banned from the sub.", 'created': '2024-11-07 02:56:15', 'submission_id': '1glf6sb'}
{'comment': 'Holy crap that last guy needs to be examined', 'created': '2024-11-07 03:06:04', 'submission_id': '1glf6sb'}
{'comment': 'The party of kindness and tolerance my ass', 'created': '2024-11-07 02:47:36', 'submission_id': '1glf6sb'}
{'comment': 'That last one is sickening 🤢. Praying that never happens.', 'created': '2024-11-07 02:53:33', 'submission_id': '1glf6sb'}
{'comment': 'These people are psychopaths lmao. Wishing death and eternal hell on others because their pathetic Kamala didn’t win is insane.', 'created': '2024-11-07 03:34:05', 'submission_id': '1glf6sb'}
{'comment': 'Those last two and especially the third one are people who I DO NOT want to be cornered and alone by', 'created': '2024-11-07 02:46:06', 'submission_id': '1glf6sb'}
{'comment': 'This is one of many reasons im no longer and will never be a Democrat again. They claim to be the party of peace and tolerance but once they lose or any minority votes against em they get furious', 'created': '2024-11-07 03:23:17', 'submission_id': '1glf6sb'}
{'comment': 'The party of kindness and acceptance they said', 'created': '2024-11-07 03:03:30', 'submission_id': '1glf6sb'}
{'comment': 'The more you scroll the worse it gets.', 'created': '2024-11-07 03:33:24', 'submission_id': '1glf6sb'}
{'comment': 'Gobbling their antidepressants and having meltdowns...', 'created': '2024-11-07 02:58:55', 'submission_id': '1glf6sb'}
{'comment': 'The amount of hate these people have is unimaginable. I saw a few of these myself while scrolling Reddit today and I couldn’t believe the words they were writing.', 'created': '2024-11-07 03:43:19', 'submission_id': '1glf6sb'}
{'comment': 'The last one is insane lmao. Is the fat ass who wrote that even physically fit enough to walk up the stairs from his parents basement?', 'created': '2024-11-07 04:19:30', 'submission_id': '1glf6sb'}
{'comment': 'Unhinged. The shit I’m reading on Reddit today is down right disgusting.', 'created': '2024-11-07 04:18:04', 'submission_id': '1glf6sb'}
{'comment': 'To the last guy: stack up', 'created': '2024-11-07 03:23:07', 'submission_id': '1glf6sb'}
{'comment': 'Even though we won, lets not devolve into making sweeping generalizations based off of a few unhinged cases which typically represent only small vocal minorities. Remember, Reddit is built around echo chambers. Strive to be better', 'created': '2024-11-07 03:11:11', 'submission_id': '1glf6sb'}
{'comment': 'These people need some help and to touch grass lol', 'created': '2024-11-07 04:09:19', 'submission_id': '1glf6sb'}
{'comment': 'And they call us hateful, wanna be dictators?', 'created': '2024-11-07 04:37:01', 'submission_id': '1glf6sb'}
{'comment': 'With the last post he’s trying so hard to sound like an evil villain from a Disney movie 😭🙏', 'created': '2024-11-07 05:55:45', 'submission_id': '1glf6sb'}
{'comment': 'Who would have thought that spite would finally close the border', 'created': '2024-11-07 02:59:03', 'submission_id': '1glf6sb'}
{'comment': 'How about they become legal and then become part of the system and pay taxes and support economy like everybody else, maybe just a thought.', 'created': '2024-11-07 03:50:44', 'submission_id': '1glf6sb'}
{'comment': 'I’m 21, wasn’t old enough to vote in the 2020 election. Shit like this is why I got pushed to the right in the way I vote. I don’t think people understand how much calling someone a “fascist, woman hating, white pig” pushes people a way from them. I’m a white guy in his 20s so I’m automatically a villain in the eyes of the left side of the aisle. I’m done with it.', 'created': '2024-11-07 05:57:17', 'submission_id': '1glf6sb'}
{'comment': 'Thing is they don have Second amendment so what they gonna do when our barrels are pointed their direction in self defense ?', 'created': '2024-11-07 03:31:07', 'submission_id': '1glf6sb'}
{'comment': 'These people are clinically insane and have lost their minds. Sure, you can be upset that your party did not win but I have seen post were people are disowning family, changing names, all become someone voted for Trump. Seriously, these people all need massive counseling.', 'created': '2024-11-07 04:22:34', 'submission_id': '1glf6sb'}
{'comment': '“let’s be villains” and they already are when they’re calling for the death of ppl who don’t agree with them. They don’t realize how crazy they are which is also a symptom of actually being textbook crazy.', 'created': '2024-11-07 06:34:02', 'submission_id': '1glf6sb'}
{'comment': 'Lmao at least they’re finally admitting their intentions out loud. Its not like we didn’t already know this is what they wanted, but its funny they’re aren’t even trying to hide it anymore.', 'created': '2024-11-07 04:43:28', 'submission_id': '1glf6sb'}
{'comment': 'Im the opposite of that duche bag. I found out my neighbor and their child are illegal and I do f say anything. They go to work every day , have a clean yard, and shook my hand when I invited them over for the 4th of July. They know Im a republican, I have a USA flag hanging ( crazy that by hanging your own country’s flag people would know who you vote for).. My point is, we don’t want open borders- LITERALLY INSANE, but I’m not turning in my neighbor.', 'created': '2024-11-07 07:22:25', 'submission_id': '1glf6sb'}
{'comment': 'The stages of grief', 'created': '2024-11-07 07:23:43', 'submission_id': '1glf6sb'}
{'comment': '“I hope you burn in hell for all eternity” such a sane and respectful comment', 'created': '2024-11-07 10:01:37', 'submission_id': '1glf6sb'}
{'comment': 'That last one raises an eyebrow', 'created': '2024-11-07 10:39:43', 'submission_id': '1glf6sb'}
{'comment': 'That last one is actually sickening', 'created': '2024-11-07 12:25:40', 'submission_id': '1glf6sb'}
{'comment': 'This is the exact reason Trump won', 'created': '2024-11-07 12:37:58', 'submission_id': '1glf6sb'}
{'comment': 'For the Democratic party that constantly preaches progressivism, they aren’t very inclusive towards minorities when it doesn’t go their way', 'created': '2024-11-07 15:27:20', 'submission_id': '1glf6sb'}
{'comment': "They act like they're the majority because they win one election with over 14 million fake voters", 'created': '2024-11-07 03:18:59', 'submission_id': '1glf6sb'}
{'comment': 'Clown nation for these people 🤡🤡', 'created': '2024-11-07 04:19:24', 'submission_id': '1glf6sb'}
{'comment': 'The tolerant left ladies and gentlemen. Tolerant only as long as it benefits them', 'created': '2024-11-07 04:30:05', 'submission_id': '1glf6sb'}
{'comment': '🍿🍿🍿 I’m having a blast sign this. Reddit is melting and I’m just here for the laughs', 'created': '2024-11-07 04:50:33', 'submission_id': '1glf6sb'}
{'comment': "That shit needs reported to reddit administration. That's not ok.", 'created': '2024-11-07 05:54:54', 'submission_id': '1glf6sb'}
{'comment': 'Ya the NYtimes is such a joke lmao', 'created': '2024-11-07 05:55:00', 'submission_id': '1glf6sb'}
{'comment': 'I ain’t American but I’m a conservative', 'created': '2024-11-07 09:31:07', 'submission_id': '1glf6sb'}
{'comment': "When the guy's parents got documented by now?", 'created': '2024-11-07 03:21:04', 'submission_id': '1glf6sb'}
{'comment': 'The enemy from within.', 'created': '2024-11-07 04:32:05', 'submission_id': '1glf6sb'}
{'comment': 'Yeah Jan 6 wasn’t shit lol', 'created': '2024-11-07 04:38:01', 'submission_id': '1glf6sb'}
{'comment': 'That last post is serious fucking Hitler shit. You can’t get much more evil than that.', 'created': '2024-11-07 05:39:39', 'submission_id': '1glf6sb'}
{'comment': 'So.... can we do a violence now? Cause it sounds like the last one REALLY wants to have their ass kicked.', 'created': '2024-11-07 06:44:23', 'submission_id': '1glf6sb'}
{'comment': 'In fairness I don’t believe the 15 million lefties ever excited. Also maybe they should set up their utopia in California or Oregon and they can all head there and do as they please. The rest of us will keep working and living our lives like normal people.', 'created': '2024-11-07 12:50:53', 'submission_id': '1glf6sb'}
{'comment': 'They are unhinged! I thought the left was the party of love and compassion? They only love and are compassionate towards the ones that believe what they believe.', 'created': '2024-11-07 13:13:43', 'submission_id': '1glf6sb'}
{'comment': 'If love to see how far they get with #4 in a small town that would be quite hilarious', 'created': '2024-11-07 13:40:32', 'submission_id': '1glf6sb'}
{'comment': 'Take all our private property........LOL.....ok, come and take it.', 'created': '2024-11-07 13:52:54', 'submission_id': '1glf6sb'}
{'comment': 'I can understand that disappointment of the middle* two, but the 4th* is an extremely hateful person who should check themselves before they hate the world. Problems don’t get fixed by going insane', 'created': '2024-11-07 04:47:26', 'submission_id': '1glf6sb'}
{'comment': 'The meltdown is quite amusing 😂', 'created': '2024-11-07 04:51:51', 'submission_id': '1glf6sb'}
{'comment': 'You should see one I just read on X, shared by Reddit\\_Lies. Dang. Very in keeping with last image.', 'created': '2024-11-07 05:15:50', 'submission_id': '1glf6sb'}
{'comment': 'Wow the last one is extra unhinged. Who ever is behind that has some serious issues.', 'created': '2024-11-07 05:19:15', 'submission_id': '1glf6sb'}
{'comment': 'Can someone report the last guy? He’s clearly got a few screws loose. Hope he seeks therapy. Eeek.', 'created': '2024-11-07 05:29:16', 'submission_id': '1glf6sb'}
{'comment': 'This is waaaay more entertaining than I though... Well come and get it dems', 'created': '2024-11-07 05:42:18', 'submission_id': '1glf6sb'}
{'comment': 'Does this 4th poster really want a bunch of US showing up?\xa0\n\nSorry (not sorry) we took our country back. WE. The collective majority.\xa0\n\nI hope they realize WE OUTNUMBER them. The people have fucking spoken.\xa0\n\nAnd now that the bots and paid sheep aren’t trolling the subs - we can SEE THAT.\xa0', 'created': '2024-11-07 06:30:43', 'submission_id': '1glf6sb'}
{'comment': 'Socialism doesn’t like ordinary people choosing for they might not choose socialism.', 'created': '2024-11-07 06:55:23', 'submission_id': '1glf6sb'}
{'comment': 'Geez that last guy might need a hug and probably a therapy session lol', 'created': '2024-11-07 07:07:40', 'submission_id': '1glf6sb'}
{'comment': 'But he votes for open borders - what an ass hole', 'created': '2024-11-07 07:14:53', 'submission_id': '1glf6sb'}
{'comment': 'Protect this country from all enemies. Both foreign and domestic. 🇺🇸🫡 we did what we needed to do and voted against their insanity.', 'created': '2024-11-07 07:56:11', 'submission_id': '1glf6sb'}
{'comment': 'They’re all wondering why their 15-20 million fraudulent votes disappeared.', 'created': '2024-11-07 09:10:57', 'submission_id': '1glf6sb'}
{'comment': 'The intolerance of the left is ridicules, never have so many been so blinded', 'created': '2024-11-07 09:53:21', 'submission_id': '1glf6sb'}
{'comment': "The first person complains about separating families but is okay with it if they're on the red team 🤦\u200d♂️", 'created': '2024-11-07 11:06:36', 'submission_id': '1glf6sb'}
{'comment': "The totality of the meltdown is staggered. I'm worried about the mental health of liberals. I hope they are getting the therapy they so obviously need.", 'created': '2024-11-07 11:13:16', 'submission_id': '1glf6sb'}
{'comment': 'All I know is that RFK doesn’t regret his choice. Elon doesn’t regret his choice. Tulsi doesn’t regret her choice. Within maybe days of each announcement, there was either an affirming event or a really concerning negative event that proved their points. None of them have second thoughts now that they have a different perspective. \n\nSome of these posts you shared, and others I’ve seen, make me think I have to learn self-defense. The majority of American voters cannot publicly support their candidate—who happens to be president-elect!—without repercussions.', 'created': '2024-11-07 11:13:51', 'submission_id': '1glf6sb'}
{'comment': 'Sounds like the party of acceptance is full of fucking shit! MAGA!', 'created': '2024-11-07 11:48:58', 'submission_id': '1glf6sb'}
{'comment': 'I think the first one would even rat out Anne Frank', 'created': '2024-11-07 12:51:45', 'submission_id': '1glf6sb'}
{'comment': 'Those are some unhinged people.', 'created': '2024-11-07 13:35:13', 'submission_id': '1glf6sb'}
{'comment': 'Go check out the whole sub. Its fucking nuts.', 'created': '2024-11-07 14:43:37', 'submission_id': '1glf6sb'}
{'comment': 'That last one sounds interesting is this going to be like tabletop games, where we roll for initiative… or do they just want a quick easy civil war they don’t see coming?', 'created': '2024-11-07 15:29:48', 'submission_id': '1glf6sb'}
{'comment': 'America can never be destroyed from an outside force, if we fall and are destroyed, it will come from within.', 'created': '2024-11-07 16:02:32', 'submission_id': '1glf6sb'}
{'comment': "Lol, make us want to kill ourselves with that? Think many of us are gun owners and happy to fight for our God given rights. Government didn't give me the right to raise my kids, God did. Government is to protect that right and should it fail, I will. .\nThey're just crying and angry.\nif it was ever serious though, it'd never go well for them", 'created': '2024-11-07 17:34:30', 'submission_id': '1glf6sb'}
{'comment': "Maybe he's his own neighbor? Maybe he is here legally and wants to know how to get his illegal parents deported?", 'created': '2024-11-07 18:15:39', 'submission_id': '1glf6sb'}
{'comment': "When I voted Trump four years ago my 'friend' at the time told me that he wishes someone would find me in a ditch.\n\nNeedless to say, we're not friends anymore.", 'created': '2024-11-07 18:25:17', 'submission_id': '1glf6sb'}
{'comment': 'Aww, nothing but a progressive open minded person telling others how to live and asking for our genocide. \n\nThis really is their fault for believing in a person with less substance than air and a man who called half of America garbage. \n\nAlso their fault for believing lefty rhetoric and their media raising their hopes that Kamala would win. I know the media did this so the lefties would riot.', 'created': '2024-11-07 20:14:44', 'submission_id': '1glf6sb'}
{'comment': "I hope to God these soft ass snowflakes try to take my shit. That's how you get shot in the face.", 'created': '2024-11-07 20:32:47', 'submission_id': '1glf6sb'}
{'comment': "And we're the violent ones 🙄", 'created': '2024-11-07 21:06:33', 'submission_id': '1glf6sb'}
{'comment': 'Wow!', 'created': '2024-11-08 00:52:12', 'submission_id': '1glf6sb'}
{'comment': 'Trump is a liberal. the last one is stupid asf lmao.', 'created': '2024-11-08 02:06:01', 'submission_id': '1glf6sb'}
{'comment': 'It is because they hate everyone including themselves', 'created': '2024-11-08 08:34:35', 'submission_id': '1glf6sb'}
{'comment': 'If they try to steal my property I WILL 2A them', 'created': '2024-11-08 10:06:52', 'submission_id': '1glf6sb'}
{'comment': 'While this is so fucked up, I hope they keep saying this type of shit and I hope it gets spread around on every platform. See what kind of effect that has on future voters.', 'created': '2024-11-08 10:12:55', 'submission_id': '1glf6sb'}
{'comment': 'That entire sub is full of fake stories and has been for years', 'created': '2024-11-07 04:51:46', 'submission_id': '1glf6sb'}
{'comment': 'They’re probably moderators', 'created': '2024-11-07 03:09:46', 'submission_id': '1glf6sb'}
{'comment': 'There’s so much censorship with the right on reddit, it’s gross', 'created': '2024-11-07 10:03:02', 'submission_id': '1glf6sb'}
{'comment': 'its so funny how your comment gets "auto removed" you get banned or 1000 downvotes. im having a blast on reddit right now looking at all the hypocrisy', 'created': '2024-11-07 16:29:17', 'submission_id': '1glf6sb'}
{'comment': "No kidding, I looked them up on here and if you see their post history it's actually concerning. I think political topics are the least of their issues, they need to go see a psychiatrist. Jeez.", 'created': '2024-11-07 03:50:31', 'submission_id': '1glf6sb'}
{'comment': 'Looks like his post is already gone. What a fucking psycho.', 'created': '2024-11-07 04:57:01', 'submission_id': '1glf6sb'}
{'comment': "I guess it's okay to be their villains if Harris won ?", 'created': '2024-11-07 03:33:29', 'submission_id': '1glf6sb'}
{'comment': 'They are pretty awful. I got banned from my state sub for pointing out that a Trans mayor raised taxes by 16%.', 'created': '2024-11-07 16:21:13', 'submission_id': '1glf6sb'}
{'comment': 'This must be the joy part coming out', 'created': '2024-11-07 20:15:20', 'submission_id': '1glf6sb'}
{'comment': 'Ah yes, the vocal few represent the many.', 'created': '2024-11-07 06:46:48', 'submission_id': '1glf6sb'}
{'comment': 'Ironic to accuse democrats of being intolerant and unkind, while many MAGAs see civil war as real possibility if Harris wouldve won and stormed the capitol a few years ago and claimed the election results were fake. Meanwhile Harris accepted the results humbly and even congratulated his opponent despite their differences.', 'created': '2024-11-07 13:00:21', 'submission_id': '1glf6sb'}
{'comment': 'These people don’t go outside.\n\nThey’d break their wrists shooting a .22.', 'created': '2024-11-07 03:13:58', 'submission_id': '1glf6sb'}
{'comment': "It will never, and if it does the only thing you'd need to worry about if if you have enough ammo.", 'created': '2024-11-07 03:00:58', 'submission_id': '1glf6sb'}
{'comment': 'lol there’s a pill to cure that sickness. Comes in a few sizes. I like 45auto but 9mm is another outstanding choice. Both will cure the sickness.', 'created': '2024-11-07 03:01:14', 'submission_id': '1glf6sb'}
{'comment': 'It’s actually a great case study for why the Republican Party is so much stronger. They finally said out loud what we have said they really want. That person wanted that before this happened and is now mad enough to actually say it.', 'created': '2024-11-07 09:51:01', 'submission_id': '1glf6sb'}
{'comment': 'It’s obvious rage bait.', 'created': '2024-11-07 05:40:56', 'submission_id': '1glf6sb'}
{'comment': 'But it’s to defend muh democracy!', 'created': '2024-11-07 10:16:31', 'submission_id': '1glf6sb'}
{'comment': 'someone told me they hope i have a car accident lmaoo', 'created': '2024-11-07 16:30:00', 'submission_id': '1glf6sb'}
{'comment': "They're so unhinged. They show their true colors when they don't get what they want", 'created': '2024-11-07 02:47:41', 'submission_id': '1glf6sb'}
{'comment': "What for? Those people couldn't even beat up a frail old lady if they tried.", 'created': '2024-11-07 02:59:52', 'submission_id': '1glf6sb'}
{'comment': 'I bet the one that wrote the third one lives in his parents basement and eats hot pockets. I would LOVE for him to show up on my property.', 'created': '2024-11-07 03:53:35', 'submission_id': '1glf6sb'}
{'comment': 'I’m fine with it. I’m armed.', 'created': '2024-11-07 04:35:50', 'submission_id': '1glf6sb'}
{'comment': "They can't even hear an opposing opinion on Reddit without having a meltdown. I don't know how they even show up for work after actually finding out half the country does not agree with them. Most of them probably live with their parents and don't work anyway.", 'created': '2024-11-07 17:46:14', 'submission_id': '1glf6sb'}
{'comment': "Oh it totally does. I've been just scrolling my main feed and I'm getting these types of posts in subreddits that I never participated in or knew existed. You go to said subreddit and it's a never ending rabbit hole of cope.", 'created': '2024-11-07 04:18:51', 'submission_id': '1glf6sb'}
{'comment': 'Fair point for Reddit. Doesn’t quite cover just about 75% of my Facebook feed who are also melting down. So many that only watch MSNBC or listen to NPR have internalized the crap the left has spewed for years now. This craziness has crept into every corner of Reddit in subs that on the surface you wouldn’t expect like crappy reality tv ones.', 'created': '2024-11-07 05:42:55', 'submission_id': '1glf6sb'}
{'comment': "I was just writing about that on another sub. I'm a 35-year-old Latina woman and completely agree with you. It's fucking disgusting.", 'created': '2024-11-07 15:32:40', 'submission_id': '1glf6sb'}
{'comment': "Counseling isn't going to help them, they need a swift kick in the ass. Maybe an exorcism too.", 'created': '2024-11-07 06:31:59', 'submission_id': '1glf6sb'}
{'comment': "I have seen so much hate and vitriol is insane. And disowning their own family and friends because they have differing views. It's sad.", 'created': '2024-11-07 15:37:29', 'submission_id': '1glf6sb'}
{'comment': "I'm a Latina. They think we are all undocumented and illegal. Because we are ALL going to be deported, don't you know? Even if we're citizens... I fucking can't with the stupidity.\n\nAnd the hateful comments I have seen towards Latinos who voted for Trump are disgusting and insensitive.", 'created': '2024-11-07 15:42:10', 'submission_id': '1glf6sb'}
{'comment': 'Idk if the parents are actually illegal it could just be pure racism on their end', 'created': '2024-11-07 03:55:14', 'submission_id': '1glf6sb'}
{'comment': "Jan 6 is only a taste of what's to come. Next time, it will be from the Democrat left, and will make Jan 6 look like a peaceful protest.", 'created': '2024-11-07 16:05:15', 'submission_id': '1glf6sb'}
{'comment': 'That’s what I say. It was a riot. Not an insurrection!! \nTrue insurrection we bringing HEAT', 'created': '2024-11-07 05:07:14', 'submission_id': '1glf6sb'}
{'comment': 'Reminds me of the Jason Aldean song. Lol.', 'created': '2024-11-07 15:39:21', 'submission_id': '1glf6sb'}
{'comment': "It's just an excuse to be violent and unhinged. He's got deeper problems than go beyond just this.", 'created': '2024-11-07 15:34:25', 'submission_id': '1glf6sb'}
{'comment': 'Which one?', 'created': '2024-11-07 05:03:57', 'submission_id': '1glf6sb'}
{'comment': "It's grossly gross", 'created': '2024-11-07 13:16:44', 'submission_id': '1glf6sb'}
{'comment': 'Oh well, it takes 2 seconds to start up another account 🫡 we are here to stay!', 'created': '2024-11-07 21:54:30', 'submission_id': '1glf6sb'}
{'comment': '"Yes I want to murder all your pets". Dems have trespassed on all my neighbor\'s property stealing all their Trump signs, and spray painting "loser" over some of them. They are now fully unhinged and raging out.', 'created': '2024-11-07 09:21:33', 'submission_id': '1glf6sb'}
{'comment': "Only if he wasn't a Trump supporter.", 'created': '2024-11-07 05:33:22', 'submission_id': '1glf6sb'}
{'comment': 'You did see Biden got 81million votes in 2020, right? Do you understand what that means? Trump has won 3 times now', 'created': '2024-11-07 13:58:22', 'submission_id': '1glf6sb'}
{'comment': 'Except you are either outright lying or brainwashed.', 'created': '2024-11-07 13:36:55', 'submission_id': '1glf6sb'}
{'comment': 'Like that video of the guy axe throwing lol', 'created': '2024-11-07 07:21:18', 'submission_id': '1glf6sb'}
{'comment': "I'm starting to wonder if they would know how to even load a .22 much less fire it.", 'created': '2024-11-07 09:19:32', 'submission_id': '1glf6sb'}
{'comment': 'Thisssss', 'created': '2024-11-07 06:26:19', 'submission_id': '1glf6sb'}
{'comment': '30-06 is good if the sick person is really far away', 'created': '2024-11-07 03:53:37', 'submission_id': '1glf6sb'}
{'comment': 'Gonna go with the 45\'s, cuz a great man once said: "9mm kills the body, but 45 acp kills the soul"', 'created': '2024-11-07 06:33:38', 'submission_id': '1glf6sb'}
{'comment': 'Tell them “aren’t you supposed to be the party of joy?”', 'created': '2024-11-08 10:09:16', 'submission_id': '1glf6sb'}
{'comment': "They post their crying, screaming tantrums on Youtube. That's the maturity level of her followers.", 'created': '2024-11-07 17:42:38', 'submission_id': '1glf6sb'}
{'comment': 'My problem is I’m built like a frail old lady', 'created': '2024-11-07 03:55:47', 'submission_id': '1glf6sb'}
{'comment': "That's very true, a majority of them are liberal gen Z women who are getting manipulated by the left about their rights to abortion", 'created': '2024-11-08 01:54:33', 'submission_id': '1glf6sb'}
{'comment': 'The cope never ends for them. Even when they win they cope. Sad world they live in, poor little fellas.', 'created': '2024-11-07 07:08:46', 'submission_id': '1glf6sb'}
{'comment': 'Yeah the side famed for having a ton of guns conducts an insurrection that killed…. One person and it was on their own side. Literally the softest insurrection of all time in that case.', 'created': '2024-11-07 05:10:20', 'submission_id': '1glf6sb'}
{'comment': 'Unethical life pro tips. Read some of the unethical stories on there. It’s not meant to be taken seriously. I mean I could make a post on there saying “I’m a 23 year old female and trying to have my 7th abortion but I’m in Texas with strict abortion laws. I’m not above going to a barber shop that’s local, I need a pro tip on the cheapest way to get the procedure done”\n\nYou get the picture, rage bait or troll bait, what ever . \n\n“My brother in law is a Trump supporter and I let the air out of his tires repeatedly and finally got caught by my sister, I need advice”. \n\n“', 'created': '2024-11-07 05:33:39', 'submission_id': '1glf6sb'}
{'comment': 'That means what? A higher voter participation in one year? Are you insinuating the election was rigged in 2020, because such high participation is unlikely? It was unusual, but not imossible, nor unexpected after many were unsatisfied with Trump. I guess since then people werent happy with Biden either and decided not to vote, or many different reasons. \nBut I dont think it was rigged. If it was, why wouldnt they do it again now? I could also just say 2024 election is rigged (which I do not think)', 'created': '2024-11-07 15:16:45', 'submission_id': '1glf6sb'}
{'comment': 'Which of my arguments would you consider a lie?', 'created': '2024-11-07 15:09:35', 'submission_id': '1glf6sb'}
{'comment': 'Drops a box of rimfire into the gravel... 🤣', 'created': '2024-11-07 10:40:41', 'submission_id': '1glf6sb'}
{'comment': '.308 SoCom 😂', 'created': '2024-11-07 04:29:23', 'submission_id': '1glf6sb'}
{'comment': "Well stop being built like a frail old lady, hit the weight room, it's fun.", 'created': '2024-11-07 04:00:29', 'submission_id': '1glf6sb'}
{'comment': "I'm convinced they don't spend much time out in public.", 'created': '2024-11-07 09:23:06', 'submission_id': '1glf6sb'}
{'comment': 'Have you read the sub rules?', 'created': '2024-11-07 16:30:10', 'submission_id': '1glf6sb'}
{'comment': 'The part about Republicans seeing a civil war as a possibility.', 'created': '2024-11-07 15:39:52', 'submission_id': '1glf6sb'}
{'comment': 'Rimfire baby!', 'created': '2024-11-07 11:09:00', 'submission_id': '1glf6sb'}
{'comment': '16 inch if they are really far away and on a boat.', 'created': '2024-11-07 05:02:32', 'submission_id': '1glf6sb'}
{'comment': 'To be fair a .223/5.56 with a Sig Sauer scope will get a long range job done too.', 'created': '2024-11-07 09:20:22', 'submission_id': '1glf6sb'}
{'comment': 'Real talk though, I needa get on that', 'created': '2024-11-07 04:46:26', 'submission_id': '1glf6sb'}
{'comment': 'Yeah I’m pretty sure most of these people sit inside their crusty rooms all day and listen to Hasan or Vaush non stop and when you put it like that, it kinda makes sense why their so upset all the time.', 'created': '2024-11-07 18:16:06', 'submission_id': '1glf6sb'}
{'comment': 'As long as there’s nothing in the way? Sure. \n\n30.06 for brush work like hog hunting.', 'created': '2024-11-07 11:39:53', 'submission_id': '1glf6sb'}
{'comment': '30.06 and .270 were my go to hunting Rifles', 'created': '2024-11-07 16:19:48', 'submission_id': '1glf6sb'}
{'comment': 'Is go with the punt gun, personally. Think a mix between cannon and shotgun; wide scatter, mid-range, good for clearing a lot of targets out at the same time.', 'created': '2024-11-07 16:19:36', 'submission_id': '1glf6sb'}
{'comment': 'Funny. My hunting buddy LOVES .270. Very underrated caliber.', 'created': '2024-11-09 11:48:00', 'submission_id': '1glf6sb'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 02:37:10', 'submission_id': '1glf4o1'}
{'comment': "You can't go wrong with a guy with the first name of Darth!! 😉", 'created': '2024-11-07 19:19:06', 'submission_id': '1glf4o1'}
{'comment': 'Thanks Babe.', 'created': '2024-11-07 19:19:41', 'submission_id': '1glf4o1'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 01:20:11', 'submission_id': '1gldjbk'}
{'comment': 'The case is being thrown out at the appellate level and she will be sanctioned for misconduct. \n\nI watched those judges rip them apart at the hearing. It’s going to be brutal', 'created': '2024-11-07 02:28:00', 'submission_id': '1gldjbk'}
{'comment': 'Her entire mission is to get Trump. Thats it.', 'created': '2024-11-07 02:13:13', 'submission_id': '1gldjbk'}
{'comment': 'She sounds fearful to me. 🤣', 'created': '2024-11-07 05:15:33', 'submission_id': '1gldjbk'}
{'comment': 'Challenge accepted', 'created': '2024-11-07 04:59:37', 'submission_id': '1gldjbk'}
{'comment': 'Where there is a “smoke”, there is fire.', 'created': '2024-11-07 11:24:21', 'submission_id': '1gldjbk'}
{'comment': 'Such a disgrace and embarrassment for New York.', 'created': '2024-11-07 16:25:15', 'submission_id': '1gldjbk'}
{'comment': "Let's see how long before she folds like a wet rag.", 'created': '2024-11-13 01:31:45', 'submission_id': '1gldjbk'}
{'comment': 'This very much needs to happen. Repudiation needs to be swift and consequences severe to send a message this shit cannot occur again.\xa0', 'created': '2024-11-07 13:56:58', 'submission_id': '1gldjbk'}
{'comment': 'A couple of my gay friends unfriended me when they found out I was a Republican. I guess if you\'re Jewish and own an art gallery folks automatically assume you\'re a Democrat. I\'m still the same person they "loved" but because of who I vote for I\'m now garbage.', 'created': '2024-11-07 02:46:24', 'submission_id': '1glaja1'}
{'comment': "I don't think I've ever known or heard of a republican being the one to cut ties with a friend due to a different opinion.\n\n\nIf it is true it's kinda telling what kind of reality the democrats are in", 'created': '2024-11-07 08:28:10', 'submission_id': '1glaja1'}
{'comment': 'People who won’t be friends due to political ideas are dumb…. I was freinds with a trans and a gay man who was my best friend', 'created': '2024-11-07 00:49:13', 'submission_id': '1glaja1'}
{'comment': "I'm noticing now that Trump haters are describing Republicans as uneducated. Which is funny, because blue collar workers overwhelmingly vote Republican. The funniest part is, liberals don't realize that this behavior is exactly why Trump won. Trump supporters made sure they voted because we couldn't let our boy lose.", 'created': '2024-11-07 01:19:58', 'submission_id': '1glaja1'}
{'comment': "Rock on. I am a conservative latino so I've gotten my share of love notes. 😎", 'created': '2024-11-07 11:51:11', 'submission_id': '1glaja1'}
{'comment': "This is the first time I've voted and I've been scared to tell anyone I voted for Trump, like people are weird and could try to get my job taken from me or threaten me or my family, so today I went to this sub and I feel like I belong. Idk seems like the democrats lost their way I don't hate them I just wish they would realize not everything is black and white", 'created': '2024-11-07 03:41:35', 'submission_id': '1glaja1'}
{'comment': 'My daughter’s relationship ended with “who did you vote for” reveal. Oops. It sucks to be in the overwhelming majority of voters lol.', 'created': '2024-11-07 11:21:47', 'submission_id': '1glaja1'}
{'comment': 'I\'m a gay man and I\'m thrilled Trump won. In my view, Republicans are the only ones who care about women and children. Liberals champion policies that make women less safe by allowing perverted men into their bathrooms and competitive sports. More important to me is that they are trying to save (primarily gay) children from mutilation under the guise of "gender affirming care". \n\nI very much recall the ideations and struggles of coming to terms with my sexuality as a child. I\'d often think "If only I was a girl, I\'d be normal." or "Why can\'t I just like girls the way I like guys." If I grew up in today\'s society, I have little doubt I\'d consider being "trans" as the magic pill and it would have been a ***huge*** mistake.', 'created': '2024-11-07 13:41:47', 'submission_id': '1glaja1'}
{'comment': 'Dude why don’t you find a better circle of friends instead of surrounding yourself with dipshits?', 'created': '2024-11-07 02:21:20', 'submission_id': '1glaja1'}
{'comment': 'My husband lost one of his best friends today over it! We are also heavily tattooed with piercings.', 'created': '2024-11-07 02:38:09', 'submission_id': '1glaja1'}
{'comment': 'That’s a major problem with the left, they assume things and are too obsessed with identity politics. You could literally have rainbow hair, be covered from the toes up in tattoos, be gay, and still be a Trump voter. Something I guess nobody taught the left; Don’t judge a book by its cover…Anyways if those people don’t wanna be your friends now, they never were your friends and you’re better off without em.', 'created': '2024-11-07 02:51:17', 'submission_id': '1glaja1'}
{'comment': "People who don't want to be friends over political differences are ridiculous. It's basically saying that you can't be friends unless you fall in line. \n\nIt's funny that you mentioned that they misjudged you on how you look. People never suspect I carry a gun when they see my ponytail,shorts, and sandals. Lol.", 'created': '2024-11-07 12:05:55', 'submission_id': '1glaja1'}
{'comment': 'I have only ever lost friends on the left. These people called me vial names and treated me like a terrible person in 2020 when I was undecided. I simply wanted to ask questions about Biden and his policies. \n\nin 2016 when I voted for HRC, my trump friends were all very kind. They simply asked why. they wanted me to think about my vote and what policies i cared about. They explained why they voted for trump and just encouraged me to think. I also woke up and thought WWIII was going to happen under trump, boy was i wrong.\n\nThere is no fixing these people. This is a result of years of machine lying and fear mongering. They hate us.', 'created': '2024-11-07 15:44:08', 'submission_id': '1glaja1'}
{'comment': "If they unfriend you because you disagree politically, they weren't really your friend.", 'created': '2024-11-07 14:34:43', 'submission_id': '1glaja1'}
{'comment': 'Welcome to the right side of history friend, and thank you for your service!', 'created': '2024-11-07 00:43:32', 'submission_id': '1glaja1'}
{'comment': 'I just think it’s stupid when people stereotype who votes for who. I’m bi and would have voted for trump and my black friend would have voted for trump and my gay friend would have voted for trump. I don’t get why the concept of what race/sexuality you are changes who you vote for', 'created': '2024-11-07 07:24:31', 'submission_id': '1glaja1'}
{'comment': "Other than age/gender I find myself in the same boat as you! Wow, I'm amazed how shallow people I used to respect,truly are! True colors coming out. So sad in a lot of ways. Respect, friend!", 'created': '2024-11-07 11:31:02', 'submission_id': '1glaja1'}
{'comment': 'Yep, one of our lefty neighbors has been very cold and antisocial with us since our Trump sign hit the front yard. Another lefty neighbor started sending my wife email propaganda about how bad the Republican Party is. The lefties are children.', 'created': '2024-11-07 16:37:19', 'submission_id': '1glaja1'}
{'comment': 'I just don’t understand how people just. Sever contact with friends and family over who they voted for. It’s insane. \n\nMost people agree on the majority of the big stuff to a certain degree and the rest is just details.', 'created': '2024-11-07 05:19:27', 'submission_id': '1glaja1'}
{'comment': 'Good for you. I wish I were that brave.', 'created': '2024-11-07 14:02:23', 'submission_id': '1glaja1'}
{'comment': 'OP, I\'m so glad you are taking it in stride. You rock! Remember, "just be yourself, the ones who mind don\'t matter, and the ones who matter don\'t mind." - attributed to Dr Seuss', 'created': '2024-11-07 14:20:27', 'submission_id': '1glaja1'}
{'comment': 'Gay Republican, unapologetically casted a vote for Trump. No regrets', 'created': '2024-11-07 16:57:14', 'submission_id': '1glaja1'}
{'comment': 'People who assume a Veteran leans one way or another is pretty dumb in the first place (that goes for both sides, btw).\n\nIf they unfriended you because of this, they are not your friends. If they merely state they are "disappointed", then you can ignore them or tell them the specifics of why you like Trump, although that could open up a whole new bag of worms at having to deal with it.', 'created': '2024-11-07 03:19:45', 'submission_id': '1glaja1'}
{'comment': 'Now is the time for silent majority to be more involved, makes stances known, interact more and bring our beliefs more public. The loud minority has too long in the sun and the majority is overwealmingly sick of it. We are not the type to be loud and shove it in peoples face the way the left have done, but be a happy medium and stand up for good vs the evil that has loomed over this county for too long. We need to right the wrongs, straighten the crooked, and flip the upside down.\n\nYou are generally better off without intolerant brainwashed people ruining your peace, but if you can help wake up even one person then they, and we, will be better off going forward toward peace, prosperity, and America first.', 'created': '2024-11-07 17:07:00', 'submission_id': '1glaja1'}
{'comment': "Thank you for your service! \n\nMy in-laws are not very happy right now but they're not as insane as some of the vitriol I've been seeing online so I guess I'm lucky lol.", 'created': '2024-11-07 22:57:26', 'submission_id': '1glaja1'}
{'comment': "I'm sorry that happened to you. Republicans may not be perfect, but I think the moral high ground is important.", 'created': '2024-11-08 01:04:47', 'submission_id': '1glaja1'}
{'comment': 'Good for you !!! WELL DONE!!! I know so many that was hiding who they were really voting for!! Thank You!! 😊👏👏👏', 'created': '2024-11-07 16:12:11', 'submission_id': '1glaja1'}
{'comment': 'Exact same thing. Either my hair, tattoos, piercings, or being asexual automatically makes me left.', 'created': '2024-11-07 17:14:21', 'submission_id': '1glaja1'}
{'comment': 'Thanks for your service brother 🤜🤛', 'created': '2024-11-07 17:27:47', 'submission_id': '1glaja1'}
{'comment': 'Sorry that people feel the need to treat you that way', 'created': '2024-11-07 18:07:14', 'submission_id': '1glaja1'}
{'comment': 'Don’t worry we still like you', 'created': '2024-11-07 21:17:16', 'submission_id': '1glaja1'}
{'comment': 'Welcome to the Republican party. Happy to have you!', 'created': '2024-11-07 21:28:23', 'submission_id': '1glaja1'}
{'comment': 'I’m appalled at the way we are being treated by the “ open minded” liberals.', 'created': '2024-11-08 00:23:39', 'submission_id': '1glaja1'}
{'comment': 'It’s extremely saddening. Some of my closest online friends blew up on me once I mentioned that the election clap back was rough (referring to the fact I was verbally beat down online), and are now threatening to cut all contact with me. We’re all LGTBQ+.', 'created': '2024-11-08 02:13:17', 'submission_id': '1glaja1'}
{'comment': 'It’s so crazy, same thing happened to me in 2016!', 'created': '2024-11-08 02:42:30', 'submission_id': '1glaja1'}
{'comment': "People assume I'm liberal for dressing goth, having dyed hair, piercings and a tattoo too. Drives me nuts", 'created': '2024-11-08 05:03:17', 'submission_id': '1glaja1'}
{'comment': 'I wonder if it’s like this for me (I have a man bun and long hair).', 'created': '2024-11-08 09:53:41', 'submission_id': '1glaja1'}
{'comment': 'It’s gotten so bad lately with people on the left destroying their family’s and friendships. I saw a whole reddit thread about children whose parents voted for trump and now the whole threads anti family and all so mad about the “boomers” its disgusting i pray these people find peace and get the help they need in these next 4 years!', 'created': '2024-11-08 14:12:51', 'submission_id': '1glaja1'}
{'comment': 'It may not feel that way right now, but, honestly, you are better off without people like that.', 'created': '2024-11-08 03:49:56', 'submission_id': '1glaja1'}
{'comment': "I'm not disappointed in you. You did good.", 'created': '2024-11-08 20:29:14', 'submission_id': '1glaja1'}
{'comment': "Seriously. I'm still the same girl I was yesterday. And the day before. But now they feel uNsAfE around me.\n\nYeah ok", 'created': '2024-11-07 07:27:18', 'submission_id': '1glaja1'}
{'comment': 'Literally every gay man I know voted for Trump; perhaps the liberal ones steer clear of me 😂', 'created': '2024-11-07 06:38:29', 'submission_id': '1glaja1'}
{'comment': 'Leftists revealing themselves to be rabid antisemites, imagine my surprise 🙄', 'created': '2024-11-07 15:18:00', 'submission_id': '1glaja1'}
{'comment': 'I have a gay friend and he voted for Trump. Not from a big city though.', 'created': '2024-11-07 16:24:12', 'submission_id': '1glaja1'}
{'comment': 'Everywhere on my Facebook, I see "If you agree with Trump and voted for him, then you\'re for racism, misogyny, etc and I can\'t be friends with you. We have different morals."\n\nThey can\'t see their own bias and hypocrisy. It\'s ridiculous.', 'created': '2024-11-07 15:59:34', 'submission_id': '1glaja1'}
{'comment': 'My best friend and my mother-in-law are liberals, and we coexist peacefully.', 'created': '2024-11-07 20:56:41', 'submission_id': '1glaja1'}
{'comment': "Just because you have a gay and trans friends doesn't mean you aren't a bigot 🙄 \n/s", 'created': '2024-11-07 04:51:37', 'submission_id': '1glaja1'}
{'comment': 'They just keep fumbling the same points over and over and motivating people to go out and vote for him. How have they not learned that mocking, criticizing, condemning, and gas lighting only hurts them.', 'created': '2024-11-07 05:23:15', 'submission_id': '1glaja1'}
{'comment': 'Democrats used to be the working man’s party. Funny how Trump turned that around.', 'created': '2024-11-07 07:37:54', 'submission_id': '1glaja1'}
{'comment': "Oh God I can't even imagine", 'created': '2024-11-07 12:02:24', 'submission_id': '1glaja1'}
{'comment': 'Thank you! I agree', 'created': '2024-11-07 07:28:35', 'submission_id': '1glaja1'}
{'comment': 'No because I made a comment on TikTok and people literally looked up my family and other social media?? Truly terrifying.', 'created': '2024-11-07 19:42:03', 'submission_id': '1glaja1'}
{'comment': 'Luckily my boyfriend and I voted for the same person.', 'created': '2024-11-07 12:01:13', 'submission_id': '1glaja1'}
{'comment': "I'm the same way. I was a huge tomboy as a kid. I played with action figures, hot wheels, had short hair, and wore boys clothes. If that were today, they'd force me to be trans. I'm happily a woman and always have been one.", 'created': '2024-11-07 15:59:27', 'submission_id': '1glaja1'}
{'comment': "You're not wrong. I'm a female that dresses alt. I attract idiots.", 'created': '2024-11-07 07:26:11', 'submission_id': '1glaja1'}
{'comment': 'Haha. The million dollar question…I bet OP is actually a super chill guy and these losers are just drawn to him like a magnet. Not his fault they’re POS’s.', 'created': '2024-11-07 02:54:36', 'submission_id': '1glaja1'}
{'comment': "I agree with that. They obviously didn't care about me that much", 'created': '2024-11-07 07:27:52', 'submission_id': '1glaja1'}
{'comment': '💯💯💯', 'created': '2024-11-07 16:05:23', 'submission_id': '1glaja1'}
{'comment': "It's so annoying", 'created': '2024-11-07 15:56:56', 'submission_id': '1glaja1'}
{'comment': 'Facts.', 'created': '2024-11-07 16:01:56', 'submission_id': '1glaja1'}
{'comment': "It shouldn't!", 'created': '2024-11-07 11:33:38', 'submission_id': '1glaja1'}
{'comment': 'Yeah seriously. These people used to be cool', 'created': '2024-11-07 12:01:51', 'submission_id': '1glaja1'}
{'comment': "Because they act like if you voted for Trump, you're *against them* as a person of color, gay, minority, whatever.\n\nIt's absolute BS and they've been brainwashed.", 'created': '2024-11-07 16:04:16', 'submission_id': '1glaja1'}
{'comment': 'Oh yeah. These "friends" have shown themselves to be shallow and stupid.\n\nI still have friends who are on the left but they are like "ok we can agree to disagree". Those people are dope. Hopefully they come around someday. If not, it\'s still cool as long as they are civil', 'created': '2024-11-07 16:01:42', 'submission_id': '1glaja1'}
{'comment': "I'm bisexual so hell yeah", 'created': '2024-11-07 21:37:54', 'submission_id': '1glaja1'}
{'comment': "I totally agree. We shouldn't be loud and chaotic. But a happy medium.", 'created': '2024-11-07 21:37:32', 'submission_id': '1glaja1'}
{'comment': "I've been loving the melt down videos and posts.", 'created': '2024-11-07 23:32:14', 'submission_id': '1glaja1'}
{'comment': 'Lol I\'ve hid it for years and I was like, "if they can be happy when their choice wins, why can\'t I be happy when my choice wins".', 'created': '2024-11-07 16:16:19', 'submission_id': '1glaja1'}
{'comment': 'Yuuup. I don\'t color my hair but everyone always assumes. \n\nOnce a guy came up to me and said "I bet you can\'t wait to get out of the military so you can dye your hair any color you want". I was like.. it is the color I want, my natural brown. \n\nHe thought I was a liberal that wanted like pink hair or something', 'created': '2024-11-07 21:36:39', 'submission_id': '1glaja1'}
{'comment': "Thanks! \n\n(Also I'm a girl, but since gender isn't my whole personality, idgaf if you call me brother or sister lol)", 'created': '2024-11-07 21:34:50', 'submission_id': '1glaja1'}
{'comment': '<3', 'created': '2024-11-07 21:33:37', 'submission_id': '1glaja1'}
{'comment': 'Lol I\'ve been here for a while. Just "came out of the closet" publicly I guess?', 'created': '2024-11-07 21:33:23', 'submission_id': '1glaja1'}
{'comment': 'The people who are supposedly standing for inclusion and love. Pfft.', 'created': '2024-11-08 00:38:07', 'submission_id': '1glaja1'}
{'comment': "Oh well lol. I'll make newer, better friends.", 'created': '2024-11-08 02:45:11', 'submission_id': '1glaja1'}
{'comment': 'Oh def. I felt it shortly after I started getting death threats in my dms lol', 'created': '2024-11-08 03:51:58', 'submission_id': '1glaja1'}
{'comment': "I keep getting death threats in my Facebook inbox. \n\nLol I'm just ignoring them and living my life, one step closer to getting the American dream.", 'created': '2024-11-08 20:46:26', 'submission_id': '1glaja1'}
{'comment': "Theyre showing their true character. They'll ridicule you for your values while calling you a bigot/racist. Oh the irony. Dont let the sheeple get you down.", 'created': '2024-11-07 10:40:04', 'submission_id': '1glaja1'}
{'comment': 'I know several gay men and lesbian women who are all Trump Republicans. They all have said the many other issues outweigh them selecting to align with the Democrats over who supports gay issues the most.', 'created': '2024-11-07 12:39:14', 'submission_id': '1glaja1'}
{'comment': "I saw a lot of gay men and women vote for Trump and the democrats literally bullying and trashing them because of who they voted for. I mean I'm no rocket scientist but, doesn't the democratic party talk about being all for ending bullying/violence against the lgbtq community??? MAKE IT MAKE SENSE!", 'created': '2024-11-07 20:54:38', 'submission_id': '1glaja1'}
{'comment': 'These are the people I will unfriend though. If you voted for Harris, I don’t care. We can be friends. \n\nIf you assume I’m a terrible racists woman hating person for voting for Trump, I don’t want you in my life. I can’t handle the ignorance and negativity.', 'created': '2024-11-07 19:40:55', 'submission_id': '1glaja1'}
{'comment': 'I’m horrified at what a good friend posted today. I just unfollowed her. I can’t deal with the garbage any longer. Wait, I’m garbage lol', 'created': '2024-11-08 00:25:48', 'submission_id': '1glaja1'}
{'comment': 'But going out of your way to make something out of nothing does mean you’re an asshat.\nEdit: I didn’t realize this was a joke 🫤', 'created': '2024-11-07 06:36:57', 'submission_id': '1glaja1'}
{'comment': "I'm actually a girl lol\n\nAnd yes. They are drawn to me", 'created': '2024-11-07 07:25:40', 'submission_id': '1glaja1'}
{'comment': 'I guarantee you this is the case.', 'created': '2024-11-07 16:56:47', 'submission_id': '1glaja1'}
{'comment': 'That’s badass! My fault though.', 'created': '2024-11-07 21:35:54', 'submission_id': '1glaja1'}
{'comment': "All good. It's nice here, stay awhile! :)", 'created': '2024-11-07 23:01:35', 'submission_id': '1glaja1'}
{'comment': 'I know. I just refuse to engage in a discussion. I am so disappointed in people.', 'created': '2024-11-08 00:38:50', 'submission_id': '1glaja1'}
{'comment': 'Yes you will! 🙂', 'created': '2024-11-08 12:53:57', 'submission_id': '1glaja1'}
{'comment': 'Hypocritical', 'created': '2024-11-08 00:24:23', 'submission_id': '1glaja1'}
{'comment': "I'm so sorry. It's so sad that people are losing friendships and family over this.", 'created': '2024-11-08 00:30:20', 'submission_id': '1glaja1'}
{'comment': "No way people here don't know what /s indicates. My comment was a JOKE LOL", 'created': '2024-11-07 06:50:02', 'submission_id': '1glaja1'}
{'comment': "I never specified lol.\n\nI also couldn't care less lol.", 'created': '2024-11-07 21:38:42', 'submission_id': '1glaja1'}
{'comment': "I tried at first. But you really can't fix stupid", 'created': '2024-11-08 00:42:06', 'submission_id': '1glaja1'}
{'comment': 'Apologies. I literally don’t know! Downvote removed. I’m an old fart.', 'created': '2024-11-07 06:51:12', 'submission_id': '1glaja1'}
{'comment': 'No worries, LOL. Have a good night, brother.', 'created': '2024-11-07 06:52:52', 'submission_id': '1glaja1'}
{'comment': 'You as well, my friend 🫡', 'created': '2024-11-07 06:53:35', 'submission_id': '1glaja1'}
{'comment': 'lol', 'created': '2024-11-08 00:25:43', 'submission_id': '1glaja1'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 00:33:21', 'submission_id': '1glcimr'}
{'comment': 'And they wander why the term snowflake is so often used to describe them', 'created': '2024-11-07 01:19:36', 'submission_id': '1glcimr'}
{'comment': 'My favorite part of all these is how fucking melodramatic they all are. Like… how the fuck are you gonna say that when you’ve probably already lived through Trump’s first term and not a damn thing happened?', 'created': '2024-11-07 00:42:58', 'submission_id': '1glcimr'}
{'comment': 'The hitler comparisons are so dumb…. I would bear arms against trump if he somehow tried to run for a third term💀', 'created': '2024-11-07 00:46:41', 'submission_id': '1glcimr'}
{'comment': 'This “dude” definitely rubs one out in the corner while watching her getting railed.', 'created': '2024-11-07 01:47:30', 'submission_id': '1glcimr'}
{'comment': 'What a bunch of pansies', 'created': '2024-11-07 01:27:48', 'submission_id': '1glcimr'}
{'comment': 'I had to go to fuckin work on like three hours of sleep after staying up and laughing at the liberal meltdown.\n\nOf course my boss and I were both in the same boat and laughed our asses off…but we were still working.', 'created': '2024-11-07 02:10:51', 'submission_id': '1glcimr'}
{'comment': "They're living in a state of arrested development.", 'created': '2024-11-07 00:45:39', 'submission_id': '1glcimr'}
{'comment': 'These are either simps tryna get laid or Starbucks baristas. No in between.', 'created': '2024-11-07 02:12:21', 'submission_id': '1glcimr'}
{'comment': 'Take time off from work? When Biden won I just went “welp nothing I can do now” and went back to school and my night job. If Kamala won I’d do the same thing. People are too soft', 'created': '2024-11-07 05:09:24', 'submission_id': '1glcimr'}
{'comment': 'After the Twin Towers fell in 2001, I had to take a 5th grade Vocabulary quiz', 'created': '2024-11-07 03:23:17', 'submission_id': '1glcimr'}
{'comment': 'I’m a woman and these men voting for my rights have told me to kill myself on social media so I’m going to keep calling their BS on that', 'created': '2024-11-07 07:44:44', 'submission_id': '1glcimr'}
{'comment': "Drama Queens. They're all childless catladies and the LGBQTwhatever brigade. Mental midgets.", 'created': '2024-11-07 01:02:06', 'submission_id': '1glcimr'}
{'comment': 'My professors today are acting like something traumatic happened and they even said they understood if we didn’t feel well. Like what are you talking about bro, chill out.', 'created': '2024-11-07 07:10:30', 'submission_id': '1glcimr'}
{'comment': 'The shit some of these wanna be guys will do to try and get laid. That’s the only reason I can see for that behavior', 'created': '2024-11-07 01:41:39', 'submission_id': '1glcimr'}
{'comment': 'Mine busting in the front door and yelled choo chooooo', 'created': '2024-11-07 02:22:47', 'submission_id': '1glcimr'}
{'comment': 'We had an exam today and the professor said that we can retake it another day if we’re not “mentally and emotionally” okay to take it. I mentally face palmed. I wonder if the same would have applied if Kamala won instead (and if so, I would just continue my life). Also, we are in the healthcare field…', 'created': '2024-11-07 04:51:21', 'submission_id': '1glcimr'}
{'comment': 'Teachers or retail.', 'created': '2024-11-07 02:47:17', 'submission_id': '1glcimr'}
{'comment': 'I feel like this is a relatively new reaction to losing an election. Sometimes it feels like the world has lost its mind.', 'created': '2024-11-07 05:47:38', 'submission_id': '1glcimr'}
{'comment': 'They don’t live in reality.', 'created': '2024-11-07 06:44:30', 'submission_id': '1glcimr'}
{'comment': '*more than half the country', 'created': '2024-11-07 03:53:20', 'submission_id': '1glcimr'}
{'comment': 'Their drama is hilarious', 'created': '2024-11-07 05:01:12', 'submission_id': '1glcimr'}
{'comment': 'If I ever took a day off for my job because of something like this I’d get fired. (My job is TSA) How is this a thing? Why do snowflakes like this get “special” treatment? So many questions that I will never get answers for. God bless America and these snowflakes who cry over everything.', 'created': '2024-11-07 06:28:48', 'submission_id': '1glcimr'}
{'comment': 'For the 2nd one... I think you both should see other men... lmfao', 'created': '2024-11-07 06:54:37', 'submission_id': '1glcimr'}
{'comment': 'Are the rights they lost in this room with us?', 'created': '2024-11-07 14:38:00', 'submission_id': '1glcimr'}
{'comment': 'For the love of... WHAT RIGHTS ARE THEY LOSING WITH TRUMP IN OFFICE??', 'created': '2024-11-07 16:03:53', 'submission_id': '1glcimr'}
{'comment': 'Oh brother this guy stinks!', 'created': '2024-11-07 22:20:17', 'submission_id': '1glcimr'}
{'comment': "That's a soyboy if Ive ever seen one", 'created': '2024-11-08 00:10:53', 'submission_id': '1glcimr'}
{'comment': 'Does the second guy know that:\n\n1. The majority of voters aren’t boiling their entire vote for the leader of this country on a women’s right to an abortion?\n\n2. Harris underperformed both Biden and Clinton in securing the women vote?', 'created': '2024-11-08 01:44:21', 'submission_id': '1glcimr'}
{'comment': "God they're so delusional. It is truly incredible.", 'created': '2024-11-07 03:59:45', 'submission_id': '1glcimr'}
{'comment': 'How pathetic!!', 'created': '2024-11-07 04:39:37', 'submission_id': '1glcimr'}
{'comment': 'Drama queens 🤣', 'created': '2024-11-07 05:20:49', 'submission_id': '1glcimr'}
{'comment': 'I heard an interesting point. That there’s all these feminists saying to abstain sex and relationships altogether when it was only/mainly republicans that voted for Trump. Why not have sex or a relationship with the guys on the left? Oh yeah cause they don’t see them worthy of it. Implying that they only find republican men attractive. Which is also proven. There was a study done and their findings were that republicans were found to be more attractive that democrats. It’s because women like a masculine man not a man that cries in the internet talking about feminism.', 'created': '2024-11-08 09:59:36', 'submission_id': '1glcimr'}
{'comment': 'I feel just fine. No need for alone time for me 😂', 'created': '2024-11-07 03:34:34', 'submission_id': '1glcimr'}
{'comment': "Had someone mention they couldn't focus because of the election. I was sunshine and rainbows so they've probably got me pegged at this point.", 'created': '2024-11-07 03:54:28', 'submission_id': '1glcimr'}
{'comment': 'Damn is your boyfriend 6’3 by chance?', 'created': '2024-11-07 06:32:44', 'submission_id': '1glcimr'}
{'comment': 'I don’t recall us getting the same treatment when Biden or Obama won and they were unmitigated disasters', 'created': '2024-11-07 11:33:17', 'submission_id': '1glcimr'}
{'comment': '[I like this one](https://x.com/Rothmus/status/1854411852253393019)', 'created': '2024-11-08 03:15:39', 'submission_id': '1glcimr'}
{'comment': 'exactly', 'created': '2024-11-07 01:21:55', 'submission_id': '1glcimr'}
{'comment': 'People say women are going to lose their right to vote is insanity just like people saying if Kamala won their would be a ww3', 'created': '2024-11-07 00:47:30', 'submission_id': '1glcimr'}
{'comment': 'Right? If Trump was going to “rUiN dEmoCrACy!” he would have done it his first term. Likewise, if Kamala was going to do anything positive, she would have done it the last 4 years.', 'created': '2024-11-07 02:19:05', 'submission_id': '1glcimr'}
{'comment': "Because most of them were probably children during Trump's first term", 'created': '2024-11-07 22:24:34', 'submission_id': '1glcimr'}
{'comment': 'I always thought the dictator thing was weird as hell. How’s he too old to be president but young enough to be the driving force to take down the most powerful country in history', 'created': '2024-11-07 05:05:58', 'submission_id': '1glcimr'}
{'comment': 'Dude is gonna get pegged so hard tonight', 'created': '2024-11-07 04:41:46', 'submission_id': '1glcimr'}
{'comment': 'I had to do a math test in about that much sleep form doom scrolling reddit when he won.', 'created': '2024-11-09 11:25:52', 'submission_id': '1glcimr'}
{'comment': 'And in their parents basement lol', 'created': '2024-11-07 02:18:57', 'submission_id': '1glcimr'}
{'comment': 'You forgot female middle school teachers', 'created': '2024-11-11 05:55:32', 'submission_id': '1glcimr'}
{'comment': 'Same 😅', 'created': '2024-11-07 05:01:36', 'submission_id': '1glcimr'}
{'comment': 'This should be top comment for real!!!', 'created': '2024-11-07 22:26:05', 'submission_id': '1glcimr'}
{'comment': "Hey, I'm a childless cat lady who hates this shit too.\n\nNot all of us have brain rot. 😂", 'created': '2024-11-07 15:46:58', 'submission_id': '1glcimr'}
{'comment': 'That\'s the reason the left is full of people like this. Because they\'re constantly being pandered to and made to feel like no matter what they do or think, it\'s okay because of "trauma" or some other BS. They take no accountability for anything, so when things don\'t go their way, they have meltdowns like little kids who are spoiled because mommy didn\'t tell them they\'re special.', 'created': '2024-11-07 15:52:04', 'submission_id': '1glcimr'}
{'comment': 'wdym?', 'created': '2024-11-07 07:30:33', 'submission_id': '1glcimr'}
{'comment': 'Exactly.\n\nPeople want to assume the worst because they want to be justified in their hatred.', 'created': '2024-11-07 00:49:20', 'submission_id': '1glcimr'}
{'comment': 'We believe what we choose to.', 'created': '2024-11-07 01:28:05', 'submission_id': '1glcimr'}
{'comment': 'Exactly.\n\nNot to be like “nothing ever happens” but like… come on.', 'created': '2024-11-07 02:23:03', 'submission_id': '1glcimr'}
{'comment': 'I don’t even know if I can explain the joke. It’s kinda just something you have to know or it would have to explain it for like 30 minutes', 'created': '2024-11-07 07:32:40', 'submission_id': '1glcimr'}
{'comment': 'It’s so sad and dumb people saying we will be a dictatorship are so stupid… i would sacrifice my life making sure trump doesn’t get a third term', 'created': '2024-11-07 00:52:03', 'submission_id': '1glcimr'}
{'comment': 'lol sorry for ruining the vibe', 'created': '2024-11-07 07:35:08', 'submission_id': '1glcimr'}
{'comment': 'It shows how much being terminally online has rotted their reasoning.', 'created': '2024-11-07 00:53:58', 'submission_id': '1glcimr'}
{'comment': 'It’s Alg no reason to apologize', 'created': '2024-11-07 07:36:01', 'submission_id': '1glcimr'}
{'comment': 'Ya sad the brainwashing of both sides is real', 'created': '2024-11-07 04:41:55', 'submission_id': '1glcimr'}
{'comment': 'Absolutely.', 'created': '2024-11-07 04:43:02', 'submission_id': '1glcimr'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-07 00:06:04', 'submission_id': '1glbx2a'}
{'comment': 'lol Someone needs to tell them that just bc u feel triggered or scared, doesn’t make you right. These tantrums are hilarious tho.', 'created': '2024-11-07 00:27:01', 'submission_id': '1glbx2a'}
{'comment': 'Thank you so fucking much for this.', 'created': '2024-11-07 00:29:05', 'submission_id': '1glbx2a'}
{'comment': 'This is why they lost, people are tired of everything being identity politics and if you disagree with their political views then it’s a personal attack on their freedom. \n\nAlso, I will never understand someone’s need to pull out their phone, start filming themselves while they are crying and post it.', 'created': '2024-11-07 01:30:13', 'submission_id': '1glbx2a'}
{'comment': 'Can we please bring back mental institutions? Getting rid of them was a mistake. https://x.com/nykkynn/status/1854249961124417579', 'created': '2024-11-07 00:48:01', 'submission_id': '1glbx2a'}
{'comment': 'Insane levels of narcissism on there. Filming yourself crying. What absolute wankers.', 'created': '2024-11-07 01:53:07', 'submission_id': '1glbx2a'}
{'comment': 'I could watch this all day. Saving this post!!!', 'created': '2024-11-07 01:15:32', 'submission_id': '1glbx2a'}
{'comment': "Inject it into my veins and I'll ride the high for 4 more years.", 'created': '2024-11-07 01:26:12', 'submission_id': '1glbx2a'}
{'comment': "My favorite is the gay community, I am gay but I'm a Gay Republican I disagree with all of the nonsense with it being shoved down everyone's throat and their obsession with trying to indoctrinate kids with their extremist version of what being gay is. Apparently since Republicans are going to be in charge and they are against the extreme policies of LGBTQ that means that hate crimes will run rampant and gay people will be beat on the streets daily. \n\nI'll admit I do not care for the ultra conservative part of the party but otherwise I'm fine with everything.", 'created': '2024-11-07 05:28:21', 'submission_id': '1glbx2a'}
{'comment': '😂😂 I love it! They were continuously bashing us and talking down on us because we love America and believe in traditional values. Trump is whats best for this country. You can thank us later when our vote stops WW3.', 'created': '2024-11-07 00:40:39', 'submission_id': '1glbx2a'}
{'comment': 'They’re so unhinged 🤣', 'created': '2024-11-07 02:22:59', 'submission_id': '1glbx2a'}
{'comment': 'Why are they so creepy when they are pissed and upset...😵\u200d💫😵\u200d💫😵\u200d💫 Like they remind me of ppl that will poison your animals or try to burn u alive if you upset them...', 'created': '2024-11-07 05:32:37', 'submission_id': '1glbx2a'}
{'comment': 'Holy shit that was so hard to watch lol', 'created': '2024-11-07 01:40:49', 'submission_id': '1glbx2a'}
{'comment': 'All the sudden i feel so refreshed', 'created': '2024-11-07 04:19:22', 'submission_id': '1glbx2a'}
{'comment': 'This is tonic for my soul. Thank you!', 'created': '2024-11-07 01:31:00', 'submission_id': '1glbx2a'}
{'comment': 'All have one common trait - weakness', 'created': '2024-11-07 03:31:37', 'submission_id': '1glbx2a'}
{'comment': 'Almost all of these meltdowns are for views and likes. Very entertaining though.', 'created': '2024-11-07 04:56:05', 'submission_id': '1glbx2a'}
{'comment': "i get this is a funny thing and all of that and it's pathetic but it's also pretty alarming to me that this is how some people actually think. it's fucked up how these people were lied to this much to get them to have this type of reaction. these are the types of people you see on the police videos", 'created': '2024-11-07 07:19:59', 'submission_id': '1glbx2a'}
{'comment': 'Commenting so I don’t forget to watch when I get home.', 'created': '2024-11-07 08:21:04', 'submission_id': '1glbx2a'}
{'comment': 'LMFAO!!\nWhat is the one thing they ALL have in common?\nHint: they need to contact tampon tim.', 'created': '2024-11-07 01:39:37', 'submission_id': '1glbx2a'}
{'comment': 'They should seek help, they are so delusional they actually believe what they read on Reddit and MSM headlines.', 'created': '2024-11-07 05:14:48', 'submission_id': '1glbx2a'}
{'comment': 'Sweet!!', 'created': '2024-11-07 06:53:37', 'submission_id': '1glbx2a'}
{'comment': 'The sad part is this is the mainstream media and internet bubbles that turn these people into this all because they want clicks and we all know the best way to get clicks is to spread fear, uncertainty and doubt and these people drank the Kool-Aid.', 'created': '2024-11-07 14:32:54', 'submission_id': '1glbx2a'}
{'comment': 'I mean I cried while praying for trump so I guess I’m not much better well I didn’t cry but a few tears ran down my face', 'created': '2024-11-07 17:38:34', 'submission_id': '1glbx2a'}
{'comment': '😂🤣', 'created': '2024-11-07 01:45:51', 'submission_id': '1glbx2a'}
{'comment': 'And most of them didn’t even actually vote', 'created': '2024-11-07 16:01:44', 'submission_id': '1glbx2a'}
{'comment': 'I’ve watched like 2 hours worth of yt videos on this stuff and I die laughing', 'created': '2024-11-10 07:13:14', 'submission_id': '1glbx2a'}
{'comment': 'Libs of til tok on X\n\nDozens of em', 'created': '2024-11-07 02:31:22', 'submission_id': '1glbx2a'}
{'comment': 'Really? I do it all the time? Dog dies? Filming. Stubbed my toe? Filming. Car repossessed? Filming.\n\nJK Im not a crazy person.', 'created': '2024-11-08 01:57:07', 'submission_id': '1glbx2a'}
{'comment': 'Omg yes so they start getting help and stop the delusions', 'created': '2024-11-07 21:21:08', 'submission_id': '1glbx2a'}
{'comment': 'Mental institutions are definitely a Right Wing proposal in this day in age.', 'created': '2024-11-07 03:52:52', 'submission_id': '1glbx2a'}
{'comment': 'It’s not narcissism. It’s neuroticism. Neurotic behavior. These people need mental health assistance.', 'created': '2024-11-07 09:33:32', 'submission_id': '1glbx2a'}
{'comment': "Eh, it's entertaining to watch once, but then it becomes just another boring rant video that I have no interest in.", 'created': '2024-11-07 01:40:13', 'submission_id': '1glbx2a'}
{'comment': 'Yes, apparently they believe 72 million voters are racist, sexist, misogynistic, nazis that should be burnt at the stakes, and then they think after continuous verbal abuse for the better part of a decade we will not get fed up with it?', 'created': '2024-11-07 01:42:21', 'submission_id': '1glbx2a'}
{'comment': '👆THIS', 'created': '2024-11-07 01:46:45', 'submission_id': '1glbx2a'}
{'comment': "Including minorities like me. I'm a racist and a nazi who should be deported back to my country.\n\n🤦", 'created': '2024-11-07 15:55:16', 'submission_id': '1glbx2a'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 23:58:54', 'submission_id': '1glbqz3'}
{'comment': 'It means California is still free to teach gender nonsense and other crap in their schools but they now have to pay for it.', 'created': '2024-11-07 00:22:43', 'submission_id': '1glbqz3'}
{'comment': 'Hopefully California finally cleans up their out of control cities.', 'created': '2024-11-07 08:53:02', 'submission_id': '1glbqz3'}
{'comment': 'Out of curiosity what don’t you want to be taught', 'created': '2024-11-07 04:48:09', 'submission_id': '1glbqz3'}
{'comment': "I would so like to but Reddit, especially in the wake of President Trump's landslide victory, is censoring, warning and banning much conservative thought right now on the site. Users are expressly not allowed to promulgate an opinion or state facts that do not adhere to the their agreed leftist narrative on gender or transvestite politics.", 'created': '2024-11-07 15:28:54', 'submission_id': '1glbqz3'}
{'comment': 'Can’t hurt to try to say right?', 'created': '2024-11-07 21:45:04', 'submission_id': '1glbqz3'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 23:24:33', 'submission_id': '1glaz2v'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 23:10:22', 'submission_id': '1glan7r'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 23:02:13', 'submission_id': '1glaght'}
{'comment': "You know, as much as I don't like Biden, I do think he can be a nice guy. At least when he wants to be, he's still done some messed up stuff.", 'created': '2024-11-06 23:07:02', 'submission_id': '1glaght'}
{'comment': 'Where tf is this dude? Why didn’t he campaign for Harris? It’s like he wanted her to lose 😂', 'created': '2024-11-06 23:17:51', 'submission_id': '1glaght'}
{'comment': 'He was a smooth operator.......smooth operator.', 'created': '2024-11-07 00:03:15', 'submission_id': '1glaght'}
{'comment': 'Maybe to white people. Not so much black people. (See Thomas Clarence for reference)\n\nEdit: spelling', 'created': '2024-11-07 13:15:53', 'submission_id': '1glaght'}
{'comment': 'He did want her to lose they basically strong armed him out of his office and his attempt for reelection Biden has made it hell for the democrats on his way out the door and I respect it to a degree good on the guy!', 'created': '2024-11-07 07:59:43', 'submission_id': '1glaght'}
{'comment': 'Part of it was they were trying to distance her from him since most people were not happy with the last 4 years so they cancelled his planned events. But part of me thinks he may have sabotaged it on purpose because of how he was treated. I’m not sure if he’s that clever though.', 'created': '2024-11-07 16:28:41', 'submission_id': '1glaght'}
{'comment': 'Thank you for all the assists Joe. Sticking it Pelosi, Obama and the rest of the Democratic elite on the way out the door was a truly boss move.', 'created': '2024-11-06 22:18:57', 'submission_id': '1gl7lpb'}
{'comment': 'ruined it with (Satire Obviously)...', 'created': '2024-11-06 21:53:03', 'submission_id': '1gl7lpb'}
{'comment': None, 'created': '2024-11-07 02:15:40', 'submission_id': '1gl7lpb'}
{'comment': 'But his wife wore a red outfit so there’s a rumor she did.', 'created': '2024-11-07 03:40:28', 'submission_id': '1gl7lpb'}
{'comment': 'He don’t even know he has a hat on😆', 'created': '2024-11-07 02:11:27', 'submission_id': '1gl7lpb'}
{'comment': 'Instant ban… lol', 'created': '2024-11-07 15:31:18', 'submission_id': '1gl7lpb'}
{'comment': 'Surprisingly I wasn’t banned 😂', 'created': '2024-11-07 16:14:35', 'submission_id': '1gl7lpb'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 21:05:59', 'submission_id': '1gl7pfy'}
{'comment': 'The joyful news from around our great country just keeps coming!', 'created': '2024-11-07 01:56:04', 'submission_id': '1gl7pfy'}
{'comment': "Ouch...not a good week for Soros prosecutors. That experiment was coming to an end anyway - they deliberately installed people that were so outrageously radical to see how far they could push. And now they know - it's a lot.\n\nThe next batch will just dial it down a notch but keep doing the same thing, so as to not prompt this kind of outcome.", 'created': '2024-11-07 15:34:20', 'submission_id': '1gl7pfy'}
{'comment': "You can't keep a great nation down!", 'created': '2024-11-07 14:07:44', 'submission_id': '1gl7pfy'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 20:38:32', 'submission_id': '1gl714p'}
{'comment': "Hundreds of thousands of American deaths?? Holy shit, that's crazy!!! Surely he's got a source for that claim!!!!\n\n\n...\n\n\n... No? He doesn't?\n\n\nWhat a surprise.", 'created': '2024-11-06 21:43:34', 'submission_id': '1gl714p'}
{'comment': 'It was too big to rig. They ain’t got shit.', 'created': '2024-11-06 21:05:44', 'submission_id': '1gl714p'}
{'comment': 'Today is a damn good day 🇺🇸', 'created': '2024-11-06 22:25:30', 'submission_id': '1gl714p'}
{'comment': 'Nevada \xa0and many other blue states flipped and turned red, nothing was stolen. People just fed up of the hateful far-left rhetoric and our economy being destroyed by a senile old man who can’t even articulate a coherent sentence.\xa0', 'created': '2024-11-06 21:06:40', 'submission_id': '1gl714p'}
{'comment': "The Hilarity ensues. Maybe now Democrats will take voter integrity serious like the rest of us have for years?? \n\nNah they'll still feel the need to cheat.", 'created': '2024-11-06 21:30:07', 'submission_id': '1gl714p'}
{'comment': 'They tried to steal this one too, don’t let them tell you they didn’t. It was too big of a turnout for them to recover. Too big to rig!', 'created': '2024-11-06 22:22:37', 'submission_id': '1gl714p'}
{'comment': 'Now they’re looking for those “20 million Biden votes” that were there in 2020 but seemingly not there this year lmao', 'created': '2024-11-06 21:21:05', 'submission_id': '1gl714p'}
{'comment': 'Most Democrats are quietly accepting the results. However, there are a very special few that are choosing to double down on their TDS.', 'created': '2024-11-07 00:56:42', 'submission_id': '1gl714p'}
{'comment': 'His debate was so good it followed almost every single democrat one word for word. They really need some original content 😭🙏', 'created': '2024-11-06 21:27:17', 'submission_id': '1gl714p'}
{'comment': 'Nice try dems. You got us in 2020.', 'created': '2024-11-06 23:01:09', 'submission_id': '1gl714p'}
{'comment': '(Womp womp) 🔥🔥🔥🔥', 'created': '2024-11-06 23:41:33', 'submission_id': '1gl714p'}
{'comment': 'This one was way to big to rig, and they know it.', 'created': '2024-11-06 22:48:50', 'submission_id': '1gl714p'}
{'comment': 'Oh the conspiracies are running wild now on the dem side, self-awareness is at an absolute low with team blue.', 'created': '2024-11-07 00:06:25', 'submission_id': '1gl714p'}
{'comment': 'Jesus fuck. We’ve heard this before haven’t we. \n“But an election can’t be stolen” k. K!', 'created': '2024-11-06 23:30:53', 'submission_id': '1gl714p'}
{'comment': 'Hard to win without mass overnight ballot dumps... breaks my heart. Hahaha', 'created': '2024-11-06 23:10:22', 'submission_id': '1gl714p'}
{'comment': 'He is basically worse than Mao Zedong!', 'created': '2024-11-06 23:33:42', 'submission_id': '1gl714p'}
{'comment': 'Not enough people fell for the mainstream propaganda. Democracy has decided.', 'created': '2024-11-07 01:33:45', 'submission_id': '1gl714p'}
{'comment': 'Oh how the turntables….', 'created': '2024-11-06 23:54:41', 'submission_id': '1gl714p'}
{'comment': "Oh dear! They say he's going to be a dictator? Oh noes! If this idiot believes anything he wrote then he's pretty far out of touch, or he has MSNBC on 24/7. Democrats sometimes are idiots. He would be classified as an idiot democrat.", 'created': '2024-11-07 00:25:55', 'submission_id': '1gl714p'}
{'comment': 'Someone should tell them that the “cheating” wasn’t enough to change the outcome. They’ll love that.', 'created': '2024-11-07 01:11:53', 'submission_id': '1gl714p'}
{'comment': 'Then maybe implement voter ID if you think fraud is a problem!', 'created': '2024-11-07 02:07:22', 'submission_id': '1gl714p'}
{'comment': '“Religiously bigoted” ? From the party of anti-semitism? That’s pretty rich', 'created': '2024-11-07 02:39:16', 'submission_id': '1gl714p'}
{'comment': 'Whaaaa? So where did those 20,000,000 votes come from in 2020? Guess tit for tat 😂 but really? Get some food an try again.', 'created': '2024-11-07 04:27:13', 'submission_id': '1gl714p'}
{'comment': 'Currently, there are 13,000 ballots in Nevada that are being cured. So guess what, until the owners of those ballots work out the details with the State of Nevada, the votes will not count. However right now, Harris is 60,266 votes behind Trump. So do the simple math....even if she got all 13K votes, she would still lose NV and the popular vote in the state. Bad enough when you do not get to 270 and still lose the popular vote. America spoke. Night over!', 'created': '2024-11-06 22:12:37', 'submission_id': '1gl714p'}
{'comment': "Wold War 3. I'm ready to Fight for Freedom !", 'created': '2024-11-07 02:22:42', 'submission_id': '1gl714p'}
{'comment': 'And where are these videos? 😭', 'created': '2024-11-06 22:15:08', 'submission_id': '1gl714p'}
{'comment': 'I will say my signatures do not look correct when I sign on those screens and those cheap paper pencils!', 'created': '2024-11-06 23:41:27', 'submission_id': '1gl714p'}
{'comment': 'They’re blaming it on kids not being able to match signatures with dmv. Because they live in a digital age…', 'created': '2024-11-06 23:56:04', 'submission_id': '1gl714p'}
{'comment': 'I definitely saw this coming. Saw someone saying that the results came in too fast and that they need to do a recount 🤣', 'created': '2024-11-07 00:20:09', 'submission_id': '1gl714p'}
{'comment': 'Oh how the turns tables.....', 'created': '2024-11-06 22:41:38', 'submission_id': '1gl714p'}
{'comment': 'It’s clear 2020 was a stolen election. Yiu are telling me Biden got more votes than Obama, but Harris didn’t get the sane numbers? There were millions of fake mail in ballots thanks to Covid and ballots harvesting.', 'created': '2024-11-07 03:07:25', 'submission_id': '1gl714p'}
{'comment': 'If the definition of stealing is stopping cheating, then yes it’s was “stolen”', 'created': '2024-11-07 01:49:22', 'submission_id': '1gl714p'}
{'comment': 'Insurrectionists, Nazi, Hitler-lover, facists...\n\nHelp me, what did I miss!', 'created': '2024-11-07 02:13:07', 'submission_id': '1gl714p'}
{'comment': 'Somebody lit the fuse on his Timpon', 'created': '2024-11-07 02:14:41', 'submission_id': '1gl714p'}
{'comment': 'Lmao like 5 million votes 😂', 'created': '2024-11-07 02:42:04', 'submission_id': '1gl714p'}
{'comment': 'Well, we can always do a complete audit of every vote in every precinct.', 'created': '2024-11-07 03:20:56', 'submission_id': '1gl714p'}
{'comment': '“He literally said… “ ughhh', 'created': '2024-11-07 03:22:38', 'submission_id': '1gl714p'}
{'comment': 'What is with these people and calling people stupid? No wonder they lost they literally insulted half nation.', 'created': '2024-11-07 03:23:04', 'submission_id': '1gl714p'}
{'comment': 'A mandate of the people.', 'created': '2024-11-07 04:50:12', 'submission_id': '1gl714p'}
{'comment': 'I expected "the election was stolen\' after day 4', 'created': '2024-11-07 07:12:46', 'submission_id': '1gl714p'}
{'comment': "This is how it starts, they have 2 months to sabotage and plan before the handover, assuming they're going to hand it over.", 'created': '2024-11-07 10:45:22', 'submission_id': '1gl714p'}
{'comment': 'The 17% ie 27 million fraudulent votes cast last election definitely didn’t swing the popular vote in multiple states', 'created': '2024-11-07 11:09:40', 'submission_id': '1gl714p'}
{'comment': 'Maybe show us these videos of alleged fraud, like our side did in 2020 despite courts saying we had no standing.', 'created': '2024-11-07 14:25:05', 'submission_id': '1gl714p'}
{'comment': 'The womp womp took me out, LOL', 'created': '2024-11-07 18:26:22', 'submission_id': '1gl714p'}
{'comment': 'everything this man just said about Trump is invalid and has been disproven already.', 'created': '2024-11-08 03:33:14', 'submission_id': '1gl714p'}
{'comment': 'This is the shit that pisses me off, countless hypocrisies, it’s really infuriating especially when they just say “you don’t know what you’re talking about this is different, I’m right like always”… ok I added that last part but you get the gist of it.', 'created': '2024-11-08 09:50:55', 'submission_id': '1gl714p'}
{'comment': 'And 6 mail-in ballots showed up at my dad’s house for people who never lived there during the 2020 election….where are those 20 million who didn’t vote during this election??🤔💭', 'created': '2024-11-09 21:57:13', 'submission_id': '1gl714p'}
{'comment': 'Says the people who voted someone that used millions of dead peoples information to vote for themselves *cough cough* Biden.', 'created': '2024-11-12 15:44:42', 'submission_id': '1gl714p'}
{'comment': '😆🤣😆 True sign Dems are total LOOOOZERRRS!\xa0 Name calling!\xa0 So pathetic!', 'created': '2024-11-14 08:21:17', 'submission_id': '1gl714p'}
{'comment': 'More people died when Biden pulled us out of the Middle East.', 'created': '2024-11-07 17:51:04', 'submission_id': '1gl714p'}
{'comment': 'It literally had to be bigger than those two semi-trailers of ballots they had hidden out back ready to go....', 'created': '2024-11-06 21:32:11', 'submission_id': '1gl714p'}
{'comment': 'Couldn’t make it out of the grave this time', 'created': '2024-11-06 23:53:45', 'submission_id': '1gl714p'}
{'comment': 'The best comment', 'created': '2024-11-07 02:19:00', 'submission_id': '1gl714p'}
{'comment': None, 'created': '2024-11-07 01:29:52', 'submission_id': '1gl714p'}
{'comment': 'Obama got 65 million votes in 2012. People came out if the woodwork to vote for him\n\nHillary got 66 million votes in 2016. Makes sense \n\nBiden got 81 million votes in 2020. So an old white guy is more popular with democrats than first black president and first woman? \n\nHarris got 67 million votes. \n\nTrump got 71 million in 2020 and 72 million in 2024. \n\nIt’s obvious democrats stuffed the ballot box in 2020. Where are the 16 million votes Biden got over Harris? Democrats cheated in 2020 but it’s impossible to prove thanks to no voter ID and tracking of votes.', 'created': '2024-11-07 03:21:17', 'submission_id': '1gl714p'}
{'comment': 'More people died from covid under Biden too', 'created': '2024-11-08 02:05:18', 'submission_id': '1gl714p'}
{'comment': 'And Caillou.', 'created': '2024-11-07 17:54:13', 'submission_id': '1gl714p'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 20:21:16', 'submission_id': '1gl6mfa'}
{'comment': 'But... she grew up in the middle class??', 'created': '2024-11-06 20:26:29', 'submission_id': '1gl6mfa'}
{'comment': "So thankful we don't have to listen to this annoying, awkward woman anymore", 'created': '2024-11-06 22:15:55', 'submission_id': '1gl6mfa'}
{'comment': 'She’s the real candidate of the elites and wealthy. That’s why they didn’t win the working class vote.', 'created': '2024-11-06 22:21:15', 'submission_id': '1gl6mfa'}
{'comment': 'More like, "America has unburdened herself from a has almost been."', 'created': '2024-11-07 00:39:39', 'submission_id': '1gl6mfa'}
{'comment': 'Wonder if she can still get her job back at McDonalds?', 'created': '2024-11-06 20:37:25', 'submission_id': '1gl6mfa'}
{'comment': 'Someone forgot to tell her that the majority of the middle class is dead and no longer exists because of her party’s policies.\xa0', 'created': '2024-11-06 21:08:54', 'submission_id': '1gl6mfa'}
{'comment': "I have nextdoor posts of women raging out over all the kamala signs I pulled up up my neighborhood (public roads and stoplights), I just can't stand seeing her name much less hearing her cackle. Seeing a sign on public land with her name almost feels like littering to me so I clean it up.", 'created': '2024-11-07 09:31:59', 'submission_id': '1gl6mfa'}
{'comment': 'We should mail her applications to local mcdonalds', 'created': '2024-11-06 22:37:42', 'submission_id': '1gl6mfa'}
{'comment': "You're doing the lords work! 🤣", 'created': '2024-11-07 09:39:44', 'submission_id': '1gl6mfa'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 19:46:03', 'submission_id': '1gl5rxy'}
{'comment': "Biden is uniquely qualified for a new role in four years. What if he swaps parties and runs for the next election with Trump running everything behind the scenes and he just presses the ice cream button once in a while. I can't think of anyone more qualified for that role.", 'created': '2024-11-06 20:45:24', 'submission_id': '1gl5rxy'}
{'comment': 'Where tf is this guy?? Why didn’t he help Kamala campaign in those swing states? Who tf is running our country rn? This is INSANE!!!', 'created': '2024-11-06 22:16:44', 'submission_id': '1gl5rxy'}
{'comment': 'Joe forgot he dropped out too', 'created': '2024-11-06 19:52:31', 'submission_id': '1gl5rxy'}
{'comment': 'The other winner here is Joe. He gets none of the blame for the debacle that just occurred and gets to retire “undefeated”. \n\nOf course, if he had never bothered to run for re-election in the first place they might have fielded a viable candidate, but no one on the left has the intellectual honesty to admit that, most of all Joe.', 'created': '2024-11-07 06:06:17', 'submission_id': '1gl5rxy'}
{'comment': 'His platform "i will ensure that all Ice cream machines at all McDonalds will be operational"', 'created': '2024-11-06 22:39:06', 'submission_id': '1gl5rxy'}
{'comment': 'No id prefer if he just keels over and dies already.', 'created': '2024-11-06 22:33:04', 'submission_id': '1gl5rxy'}
{'comment': "No don't do that....don't act like them.", 'created': '2024-11-08 02:44:19', 'submission_id': '1gl5rxy'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 19:42:38', 'submission_id': '1gl5ovt'}
{'comment': 'TO GIVE THEM CREDIT ^(lisa is yellow)', 'created': '2024-11-06 19:47:37', 'submission_id': '1gl5ovt'}
{'comment': 'There’s actually still a chance, if Joe Biden does or steps down, or they whatever amendment him', 'created': '2024-11-08 09:48:31', 'submission_id': '1gl5ovt'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 19:32:32', 'submission_id': '1gl5g6e'}
{'comment': '👋 Waves 👋 at woke dude with their panties all in a bunch humping the down vote button. 😆', 'created': '2024-11-06 19:43:45', 'submission_id': '1gl5g6e'}
{'comment': "He isn't sharing his tapioca with her. /S", 'created': '2024-11-07 01:48:53', 'submission_id': '1gl5g6e'}
{'comment': 'That’s not something that a mentally sound person says, let alone publicly. I hope Bette seeks mental health treatment, counseling, whatever. She clearly needs it and she’s rich enough to afford it. I have no idea what she’s whining about, in her ivory tower.\xa0', 'created': '2024-11-06 21:16:24', 'submission_id': '1gl4m78'}
{'comment': "Seems like a gain for Twitter users. And who knows, maybe Drano will help clear her inside's a bit?\n\nBest free marketing Drano has had in decades. So many leftists saying they want to guzzle the stuff.", 'created': '2024-11-06 19:30:05', 'submission_id': '1gl4m78'}
{'comment': 'Why are they not taking any personal accountability?', 'created': '2024-11-06 20:46:16', 'submission_id': '1gl4m78'}
{'comment': 'Should have looked at the Vegas oddsmakers and just stfu. Vegas could read the tea leaves.', 'created': '2024-11-06 21:27:01', 'submission_id': '1gl4m78'}
{'comment': 'Drink up Bette!!! Lol', 'created': '2024-11-06 21:05:05', 'submission_id': '1gl4m78'}
{'comment': 'Trolling liberal celebs is so satisfying.', 'created': '2024-11-07 02:01:23', 'submission_id': '1gl4m78'}
{'comment': "Hollywood hating Trump makes me trust him more...we are starting to get verification and FACTS about what is really happening with HOLLYWOOD it's not conspiracy theories anymore!", 'created': '2024-11-07 05:53:06', 'submission_id': '1gl4m78'}
{'comment': '🍻', 'created': '2024-11-06 23:34:13', 'submission_id': '1gl4m78'}
{'comment': 'Maybe she did and that’s why she’s absent? 🤔😂', 'created': '2024-11-07 00:20:08', 'submission_id': '1gl4m78'}
{'comment': 'Might improve her singing voice.', 'created': '2024-11-07 02:20:37', 'submission_id': '1gl4m78'}
{'comment': 'Boycott the awful movie “Hocus Pocus”. Somehow it’s hugely popular now. Only Dems would make a 15 year old Virgin a strange & bad thing that is mentioned every 5 minutes during the movie.', 'created': '2024-11-07 17:08:20', 'submission_id': '1gl4m78'}
{'comment': 'They say we’re the party of the rich, but then all these celebrities are coming out in disappointment for him winning like what?', 'created': '2024-11-08 09:44:23', 'submission_id': '1gl4m78'}
{'comment': ">So many leftists saying they want to guzzle the stuff.\n\nI'm ok with this, crossing my fingers!", 'created': '2024-11-06 19:36:49', 'submission_id': '1gl4m78'}
{'comment': 'Because they feel no shame, no guilt. They don’t think they did/do any wrong. It’s a privileged, arrogant way to think.', 'created': '2024-11-07 00:22:41', 'submission_id': '1gl4m78'}
{'comment': 'Yeah it’s weird. I would consider myself upper middle class, I’m in a high six figure income bracket but I’m not Bette Midler rich lol. 😂\xa0 At least I’m humble enough to see the struggle of people who aren’t as fortunate as I am, I do my part with donations and I pay my taxes like a good citizen.\n\n\n\xa0People voted for Trump because they are struggling bad with the economy, some in dire make or brake situations. Bette is just another champagne socialist that is out of touch with the rest of society. She probably doesn’t know much outside of her Beverly Hills social circle of middle aged alcoholics who sit and eat bon-bons at their 10k per session therapist, reminiscing about the 1980’s when times were better.', 'created': '2024-11-08 10:03:44', 'submission_id': '1gl4m78'}
{'comment': "What's stopping them?", 'created': '2024-11-06 19:51:40', 'submission_id': '1gl4m78'}
{'comment': 'But no!? We’re the party of the rich remember?!', 'created': '2024-11-08 09:46:28', 'submission_id': '1gl4m78'}
{'comment': 'Lack of courage', 'created': '2024-11-06 21:27:37', 'submission_id': '1gl4m78'}
{'comment': 'That was the one true sentence in her whole campaign.', 'created': '2024-11-06 19:28:08', 'submission_id': '1gl4toh'}
{'comment': 'The people that this campaign chose to speak on her behalf is mind blowing… How did she think this group was actually going to sway voters?!', 'created': '2024-11-06 19:32:50', 'submission_id': '1gl4toh'}
{'comment': 'Yea her endorsements really helped', 'created': '2024-11-06 23:48:37', 'submission_id': '1gl4toh'}
{'comment': 'Escape from Detroit', 'created': '2024-11-07 00:04:48', 'submission_id': '1gl4toh'}
{'comment': 'Visited Detroit last week from Tennessee. Surprised by how clean the city was and how nice the people were. They made some changes and it really shows.', 'created': '2024-11-07 17:19:15', 'submission_id': '1gl4toh'}
{'comment': 'I wonder if this really did have a significant impact on her campaign?', 'created': '2024-11-08 09:47:24', 'submission_id': '1gl4toh'}
{'comment': 'Actually, the best reason to vote for Trump was to *prevent* the country from being like Detroit...', 'created': '2024-11-08 14:45:58', 'submission_id': '1gl4toh'}
{'comment': 'Really helped us get the W', 'created': '2024-11-07 00:20:13', 'submission_id': '1gl4toh'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 18:42:57', 'submission_id': '1gl49c9'}
{'comment': 'Stoopid capitalists', 'created': '2024-11-07 14:09:58', 'submission_id': '1gl49c9'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 18:42:48', 'submission_id': '1gl497k'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 18:37:16', 'submission_id': '1gl44iu'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 18:33:58', 'submission_id': '1gl41qk'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 18:16:43', 'submission_id': '1gl3msb'}
{'comment': 'Kamala is the first presidential candidate to spend a billions dollars on her short campaign, and still lose', 'created': '2024-11-07 05:00:40', 'submission_id': '1gl3msb'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 17:54:56', 'submission_id': '1gl33oc'}
{'comment': "I still can't believe what the criminals did! Out of all the disasters the world and specifically NY are facing, these innocent animals were what they concerned themselves with? There are people out there much more rabid than these pets, who truly are a danger to society! They are all deranged, everyone involved in this atrocity. May they somehow pay for what they did!", 'created': '2024-11-06 18:15:49', 'submission_id': '1gl33oc'}
{'comment': 'Peanut and Fred - may you find Harambe in the afterlife and find everlasting peace🐿🦧', 'created': '2024-11-06 19:13:01', 'submission_id': '1gl33oc'}
{'comment': 'Still breaks my heart what they did to Peanut. \n\n# Justice 4 Peanut', 'created': '2024-11-06 19:42:38', 'submission_id': '1gl33oc'}
{'comment': 'I just hope that their caretakers can take solace in the fact that peanuts death most definately helped us cross that finish line. RIP', 'created': '2024-11-06 19:29:17', 'submission_id': '1gl33oc'}
{'comment': 'Peanut > celebrities', 'created': '2024-11-06 21:11:05', 'submission_id': '1gl33oc'}
{'comment': 'We avenged him', 'created': '2024-11-06 19:40:49', 'submission_id': '1gl33oc'}
{'comment': 'Peanut needs a statue 🇺🇸', 'created': '2024-11-07 00:13:38', 'submission_id': '1gl33oc'}
{'comment': 'That poor baby.', 'created': '2024-11-06 20:17:54', 'submission_id': '1gl33oc'}
{'comment': 'Rest In Power Peanut 🌈', 'created': '2024-11-06 21:06:57', 'submission_id': '1gl33oc'}
{'comment': 'Reparations for Peanut.', 'created': '2024-11-06 22:29:10', 'submission_id': '1gl33oc'}
{'comment': 'Instead of quarantining the squirrels they euthanize them to test them for rabies.\n\nYet there is an investigation which has an illegal immigrant found guilty for raping a 5 year old in Long Island, NY.\n\nJust going to leave this here because apparently my state cannot decide who tf between these two deserves to be euthanized.', 'created': '2024-11-07 10:22:19', 'submission_id': '1gl33oc'}
{'comment': "He'd look so cute in a MAGA hat!", 'created': '2024-11-07 05:31:44', 'submission_id': '1gl33oc'}
{'comment': 'Rest in peace, Peanut. 🥜', 'created': '2024-11-06 23:00:32', 'submission_id': '1gl33oc'}
{'comment': 'Our big government resources hard at work, euthanizing a pet squirrel, probably “for its own good”.', 'created': '2024-11-07 04:39:33', 'submission_id': '1gl33oc'}
{'comment': 'Poor baby', 'created': '2024-11-07 01:32:08', 'submission_id': '1gl33oc'}
{'comment': 'Justice for PNut', 'created': '2024-11-07 09:11:27', 'submission_id': '1gl33oc'}
{'comment': 'Is it too much to ask that Trump personally brings the people behind this bs to justice?', 'created': '2024-11-06 23:28:05', 'submission_id': '1gl33oc'}
{'comment': "I really hope you don't think that this will change anything in NY in the near future. I'm as happy as everyone else... but these were state laws that were enforced... so it's gonna be a while before the rest of peanut's and frank's family are safe...", 'created': '2024-11-06 21:07:51', 'submission_id': '1gl33oc'}
{'comment': 'job well done peanut. \xa0you’re playing with harambe in heaven. \xa0godspeed\xa0', 'created': '2024-11-07 02:18:15', 'submission_id': '1gl33oc'}
{'comment': "Yaay for Peanut....I wasn't even voting until they killed the poor lil fella. After that....I figured it could be my squirrel they come after next...not having it! ;)", 'created': '2024-11-07 04:10:51', 'submission_id': '1gl33oc'}
{'comment': "The fight isn't over until there is justice for Peanut.", 'created': '2024-11-07 15:08:47', 'submission_id': '1gl33oc'}
{'comment': "Now President Trump needs to get justice for peanut!!! Squirrels aren't rabies vectors they shouldn't have murdered that squirrel", 'created': '2024-11-08 06:48:33', 'submission_id': '1gl33oc'}
{'comment': 'Well, when BabyDog goes to Washington maybe he’ll take a bite out of some of those responsible for Peanut’s mistreatment.', 'created': '2024-11-08 09:09:05', 'submission_id': '1gl33oc'}
{'comment': 'Defund DECS.', 'created': '2024-11-07 02:39:45', 'submission_id': '1gl33oc'}
{'comment': 'https://youtu.be/kEvcOp_pIO4?si=5aJWD_JCd1QfunNd\n\nFreedomToons honors Peanut', 'created': '2024-11-07 16:46:00', 'submission_id': '1gl33oc'}
{'comment': 'God bless Peanut and Fred. fucking legends those two were.', 'created': '2024-11-08 02:14:37', 'submission_id': '1gl33oc'}
{'comment': '😢🙏\U0001fa77', 'created': '2024-11-11 10:08:08', 'submission_id': '1gl33oc'}
{'comment': 'Good. Can I get medical care now?', 'created': '2024-11-07 00:28:15', 'submission_id': '1gl33oc'}
{'comment': 'trump is not my president', 'created': '2024-11-07 12:41:38', 'submission_id': '1gl33oc'}
{'comment': 'This is the classic left. Making silly 1% “issues” a priority while significant 99% issues get ignored', 'created': '2024-11-06 19:40:53', 'submission_id': '1gl33oc'}
{'comment': 'behead them or steamroller', 'created': '2024-11-07 03:42:56', 'submission_id': '1gl33oc'}
{'comment': 'Sure I mean they only got 4 POLICE DEPARTMENTS TO SIGN OFF ON IT. Not saying it’s illegal but like damn. 4 fuckin agency’s for squirrel and a raccoon? That’s stupid', 'created': '2024-11-08 09:40:19', 'submission_id': '1gl33oc'}
{'comment': 'The same as you could yesterday, and will be able to tomorrow, yes.', 'created': '2024-11-07 00:52:43', 'submission_id': '1gl33oc'}
{'comment': 'Holy😂 lol fr though😞', 'created': '2024-11-08 09:38:27', 'submission_id': '1gl33oc'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 17:35:49', 'submission_id': '1gl2nfo'}
{'comment': "maybe just MAYBE because Harris is not the candidate democrats wanted, and she did not energize anyone to vote for her, and the last four years have been arguably worse than Trump's four years. just maybe", 'created': '2024-11-06 21:17:07', 'submission_id': '1gl2nfo'}
{'comment': 'Voters and votes are different things. You can have one without the other, apparently.', 'created': '2024-11-06 20:40:24', 'submission_id': '1gl2nfo'}
{'comment': 'Obama 12 61m votes\n\nClinton 16 62m votes\n\nBiden 20 82m votes \n\nHarris 24 66m votes\n\nIf you look at this picture and think “how did Harris miss that many votes” you literally don’t have a high school level understanding of statistics lol', 'created': '2024-11-06 18:27:13', 'submission_id': '1gl2nfo'}
{'comment': 'Because they got rid of all the dead people voting and the cheat votes by the dems.', 'created': '2024-11-06 17:37:25', 'submission_id': '1gl2nfo'}
{'comment': "Think if we lie and tell them we cheated they'll join us in demanding universal voter ID and more stringent voter integrity laws?", 'created': '2024-11-06 20:35:51', 'submission_id': '1gl2nfo'}
{'comment': 'Dems can’t smell the shit they’ve stepped in and claim it’s in the reps pants', 'created': '2024-11-06 22:49:08', 'submission_id': '1gl2nfo'}
{'comment': 'She was a terrible candidate and some of those 2020 voters don’t exist in reality', 'created': '2024-11-07 00:42:10', 'submission_id': '1gl2nfo'}
{'comment': 'Didn’t California send mail in ballots to every citizen even when there was a mass exodus from the state? I know Georgia mailed me a ballot while I lived in Tennessee and would guess other states did the same in 2020.\n\nThe simple explanation is oftentimes the answer and IMHO the extra votes is a result of people who moved voting in their old state as well as their new state.', 'created': '2024-11-07 00:34:45', 'submission_id': '1gl2nfo'}
{'comment': 'That side is not well known for critical thinking. Sadly, their talking point sources have pretty much shut down. They are wandering around in a daze of confusion. \n\nOnce the political apparatus comes back online, they will be able to be told what to think again.', 'created': '2024-11-06 20:49:19', 'submission_id': '1gl2nfo'}
{'comment': "Guys - we just may never know the answer to this. For context, it is important to remember Joe was considered to be super mysterious and cool due to his basement strategy in 2020, so that's why he got 80 bazillion votes. Kamala made the mistake of appearing in public during her campaign, and so people were a little less excited after her thrilling whirlwind 90 day campaign adventure.\n\nThat's what we should take away from this and not at all get sucked into a vortex of lies about voter fraud, undemocratic actions to bypass the nominated candidate or her lack of popularity. Those are almost certainly dead ends, pushed by the minions of orange man.", 'created': '2024-11-06 17:53:52', 'submission_id': '1gl2nfo'}
{'comment': "No doubt. We all knew it was rigged. I'm gonna just give them the ignorance plea and be done with it.", 'created': '2024-11-06 21:47:02', 'submission_id': '1gl2nfo'}
{'comment': 'What source is the article?', 'created': '2024-11-06 22:52:25', 'submission_id': '1gl2nfo'}
{'comment': 'It will be nice to see what the next 4 years are like, providing we don’t have another pandemic to fuck things up', 'created': '2024-11-07 16:19:07', 'submission_id': '1gl2nfo'}
{'comment': "it isn't a conspiracy and it never was. kamala didn't inspire those people to show up. simple as that.", 'created': '2024-11-07 03:06:55', 'submission_id': '1gl2nfo'}
{'comment': 'More than one thing can be true at the same time. It is a fact that Harris was a shit candidate. It is also a fact that in 2020 courts blocked audits of voter registration applications and in 2024 when those applications were checked 17% were fraudulent.', 'created': '2024-11-06 21:25:22', 'submission_id': '1gl2nfo'}
{'comment': 'if this is not proof the 2020 election was rigged idk what is', 'created': '2024-11-06 19:36:30', 'submission_id': '1gl2nfo'}
{'comment': "I'm sure some still made it through, and we will have to watch for more, but yeah. 2024 was a much cleaner election than 2020.", 'created': '2024-11-06 17:42:36', 'submission_id': '1gl2nfo'}
{'comment': "Nah, they wouldn't sell their own party out", 'created': '2024-11-06 22:50:24', 'submission_id': '1gl2nfo'}
{'comment': 'The dems know they have a terrible platform, and they desperately need new suckers to keep them in power. That is why they have taken the stance that they have with illegal immigration.', 'created': '2024-11-07 02:16:39', 'submission_id': '1gl2nfo'}
{'comment': 'This would still be widespread voter fraud, and the kind of thing that would be caught in an audit.', 'created': '2024-11-07 00:47:26', 'submission_id': '1gl2nfo'}
{'comment': "Kamala didn't lose because she was in public lol. Hell half the time she hid from the public. She lost because she was a terrible candidate with abhorrently low popularity ratings. There's a reason she didn't make it past the primaries in 2020. \n\nNot to mention she was essentially a ghost who wouldn't tell the people her policies. And when she did, they were horrendous or she copied trump's policies and flip flopped constantly. No one knew who she was or what she stood for.", 'created': '2024-11-06 18:26:05', 'submission_id': '1gl2nfo'}
{'comment': 'George Soros burner account has entered the discussion.', 'created': '2024-11-06 20:50:43', 'submission_id': '1gl2nfo'}
{'comment': '[https://local21news.com/news/local/lancaster-county-officials-give-update-on-voter-registration-application-investigation-2500-fraud-verified-election-pennsylvania-pa](https://local21news.com/news/local/lancaster-county-officials-give-update-on-voter-registration-application-investigation-2500-fraud-verified-election-pennsylvania-pa)\n\nEdit to add: And here is a source showing that there was a legal battle against checks like this one in PA for the 2020 election: [https://www.jacksonville.com/story/news/2021/10/07/pennsylvania-voters-and-advocates-seek-standing-state-election-audit/5987617001/](https://www.jacksonville.com/story/news/2021/10/07/pennsylvania-voters-and-advocates-seek-standing-state-election-audit/5987617001/)', 'created': '2024-11-06 23:10:30', 'submission_id': '1gl2nfo'}
{'comment': "yeah my bad the second image wouldn't load when I made that comment I see what you mean 😭", 'created': '2024-11-06 21:27:14', 'submission_id': '1gl2nfo'}
{'comment': 'what I just read was that there were 2500 registration are in question and 17% of those were fraudulent, not 17% of the total vote. Is that correct or are you saying 17% of the total vote?', 'created': '2024-11-07 14:02:41', 'submission_id': '1gl2nfo'}
{'comment': 'I agree. Something is off about that.', 'created': '2024-11-07 03:09:04', 'submission_id': '1gl2nfo'}
{'comment': "It's not like there was some weird once in a century event happening in 2020 that might have changed peoples behaviors a bit.", 'created': '2024-11-06 21:12:50', 'submission_id': '1gl2nfo'}
{'comment': 'Could be they cheated just as bad, only the actual results are even worse than anyone thinks.', 'created': '2024-11-06 20:42:08', 'submission_id': '1gl2nfo'}
{'comment': 'By who?\nElection security and integrity is handled at the state level based on my understanding.', 'created': '2024-11-07 01:08:18', 'submission_id': '1gl2nfo'}
{'comment': "I'm sure that losing the 17% of voting applications that were fraudulent in a swing state did not help.", 'created': '2024-11-06 18:29:39', 'submission_id': '1gl2nfo'}
{'comment': 'Not doubting its authenticity, just curious about who published it.', 'created': '2024-11-06 23:17:20', 'submission_id': '1gl2nfo'}
{'comment': "No worries. Your initial reply wasn't wrong either lol.", 'created': '2024-11-06 21:34:10', 'submission_id': '1gl2nfo'}
{'comment': '2500 registrations in that one county were checked. Of the 2500 that were checked, 17% were found to be fraudulent.\n\nWhat is not explicitly clear is if the 2500 registrations are a representative sample.', 'created': '2024-11-07 16:27:56', 'submission_id': '1gl2nfo'}
{'comment': 'Or like that event was engineered to coincide with the election...', 'created': '2024-11-06 21:41:22', 'submission_id': '1gl2nfo'}
{'comment': 'In 2020 a lot of lawsuits trying to do things like audit voter applications were thrown out due to \'lack of standing\'\n\nWhen those checks went forward in 2024 they found results like the screenshot in the OP.\n\nIMO the most likely answer is some combination of both "They underestimated how much they would have to cheat" and "Some of the cheaters got caught this time."', 'created': '2024-11-06 20:56:23', 'submission_id': '1gl2nfo'}
{'comment': 'Did you not read the second screenshot in the OP?\n\nThey caught a load of fraudulent voting applications this year. Why would they not be able to catch it when people had moved? Change of address forms, updated IDs in a new state, etc. You leave a paper trail when you move.', 'created': '2024-11-07 01:17:51', 'submission_id': '1gl2nfo'}
{'comment': 'CBS 21 in Harrisburg, PA. Edit to add: The national outlets that covered it buried it deep in their reporting and spun the headlines to somehow make it a good thing. Example here: [https://www.msn.com/en-us/news/politics/only-17-of-about-2-500-voter-registration-applications-reviewed-are-fraudulent-officials-in-pa-s-lancaster-county-say/ar-AA1tvTp0](https://www.msn.com/en-us/news/politics/only-17-of-about-2-500-voter-registration-applications-reviewed-are-fraudulent-officials-in-pa-s-lancaster-county-say/ar-AA1tvTp0)\n\nAs if "only" 17% of voters on the rolls being fraudulent is somehow supposed to inspire confidence or something.', 'created': '2024-11-06 23:37:05', 'submission_id': '1gl2nfo'}
{'comment': "Yes that's right. The entire world shut down the global economy just to tilt a single US election.\n\nAnd then the sitting administration helped that event along by also shutting everything down and rolling out a vaccine program I guess?\n\nBut only for that election. Not all of the others. And not this one. Because reasons.", 'created': '2024-11-06 22:01:17', 'submission_id': '1gl2nfo'}
{'comment': 'That’s insane. It’s unbelievable how this and countless other stories get swept under the rug', 'created': '2024-11-07 01:20:48', 'submission_id': '1gl2nfo'}
{'comment': "Well the majority of Americans believe the 2020 election was stolen, and have for a while now: [https://www.westernjournal.com/poll-majority-likely-voters-now-believe-cheating-impacted-results-2020-election/](https://www.westernjournal.com/poll-majority-likely-voters-now-believe-cheating-impacted-results-2020-election/)\n\nThe thing about democracy, is what the majority of people believe matters, even if you don't agree with them.", 'created': '2024-11-07 00:25:46', 'submission_id': '1gl2nfo'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 17:30:42', 'submission_id': '1gl2jb8'}
{'comment': 'They can get so much done in these four years', 'created': '2024-11-06 17:52:34', 'submission_id': '1gl2jb8'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 17:26:16', 'submission_id': '1gl2fkb'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 17:24:34', 'submission_id': '1gl2e35'}
{'comment': 'And unemployed', 'created': '2024-11-06 17:33:48', 'submission_id': '1gl2e35'}
{'comment': 'Former President Biden. Former Vice-President Harris. President Trump.', 'created': '2024-11-06 17:38:28', 'submission_id': '1gl2e35'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 17:13:38', 'submission_id': '1gl24sv'}
{'comment': 'Oh God, I bet the De Niro breakdown is absolutely epic.', 'created': '2024-11-06 17:16:36', 'submission_id': '1gl24sv'}
{'comment': 'Nothing is making me happier than knowing these arrogant celebs cannot influence elections.', 'created': '2024-11-06 17:37:55', 'submission_id': '1gl24sv'}
{'comment': "Taylor Swift's stupid looking face is making me happy.", 'created': '2024-11-06 18:10:24', 'submission_id': '1gl24sv'}
{'comment': 'Let them all leave America and never come back', 'created': '2024-11-06 17:24:07', 'submission_id': '1gl24sv'}
{'comment': 'You mean the people that act like other people for a living were not able to sway the American people to follow their endorsements?? Get outta here.', 'created': '2024-11-06 17:49:16', 'submission_id': '1gl24sv'}
{'comment': 'Imagine voting because a pedo celeb told you to.', 'created': '2024-11-06 18:01:35', 'submission_id': '1gl24sv'}
{'comment': "The Diddy's Party Attendees", 'created': '2024-11-06 17:34:57', 'submission_id': '1gl24sv'}
{'comment': 'They can all jump ship to Canada. Or cartel ridden Mexico. We don’t need them.', 'created': '2024-11-06 17:58:06', 'submission_id': '1gl24sv'}
{'comment': 'How many are now exiting the USA now please? I know Cher and Barbra Streisand have said this.', 'created': '2024-11-06 18:03:50', 'submission_id': '1gl24sv'}
{'comment': 'Can’t believe the the Thot Army of Cardi B …. Megan… JLo… Glorilla… and Beyonce couldn’t swing the people 😂', 'created': '2024-11-06 19:39:11', 'submission_id': '1gl24sv'}
{'comment': 'The ones claiming to leave the country if orange man bad is elected should be forced to leave the country or all income taxed at 100%.', 'created': '2024-11-06 17:41:08', 'submission_id': '1gl24sv'}
{'comment': 'Still waiting for all the ones that promised to leave if trump won to finish packing make it a ppv and we can half the national debt.', 'created': '2024-11-06 18:42:52', 'submission_id': '1gl24sv'}
{'comment': "The whole Kamala campaign was an attempt to re-run Obamas 2008 campaign. It looked dated in every way, especially celebrity endorsements.\n\n They just don't get it, the days of being lectured to by the billionaire Hollywood set who have flown in on private jets after leaving a diddy party to tell us all to be better people is over.\n\nEven the Obamas themselves, once the great political stars, looked like angry rich people who couldn't understand why normal people didn't think like them & their friends in Martha's Vinyard", 'created': '2024-11-06 20:32:41', 'submission_id': '1gl24sv'}
{'comment': 'They all need to fu$k off. I guess none of them are influencers 😆', 'created': '2024-11-06 18:59:44', 'submission_id': '1gl24sv'}
{'comment': "I'm hoping we'll see a decline in these. At the same time I wonder how many of them really voted Democrat if at all.", 'created': '2024-11-06 19:26:02', 'submission_id': '1gl24sv'}
{'comment': 'Neil Young was the sweetest for me. That Commie lol', 'created': '2024-11-06 19:44:08', 'submission_id': '1gl24sv'}
{'comment': 'Most satisfying is the B&M Obama failure...', 'created': '2024-11-06 17:41:24', 'submission_id': '1gl24sv'}
{'comment': 'Fuck Hollywood!', 'created': '2024-11-06 21:06:33', 'submission_id': '1gl24sv'}
{'comment': 'Don’t forget Eminem!', 'created': '2024-11-06 23:14:35', 'submission_id': '1gl24sv'}
{'comment': 'I’m fine with celebrities expressing their opinions but them thinking their choice matters more than anyone else is what I hate. We all get one vote and I don’t need some actor or entertainer to tell me what to do. Just makes me want to not ever put my money in anything they touch. I’ve loved most of what John Favreau has done but I’ll have a hard time watching anything he is involved in. Sometimes we just have to take a stand.', 'created': '2024-11-06 18:47:00', 'submission_id': '1gl24sv'}
{'comment': 'I wish I could see the faces of those deranged fucks when it was announced.', 'created': '2024-11-06 19:44:28', 'submission_id': '1gl24sv'}
{'comment': 'The pedo party reps never made a difference in the first place.', 'created': '2024-11-06 17:56:13', 'submission_id': '1gl24sv'}
{'comment': 'So when do they all move out of the country?', 'created': '2024-11-06 18:45:29', 'submission_id': '1gl24sv'}
{'comment': 'Why would I care what an entertainer thinks?', 'created': '2024-11-06 20:32:57', 'submission_id': '1gl24sv'}
{'comment': 'When are they supposed to be leaving?', 'created': '2024-11-06 20:58:01', 'submission_id': '1gl24sv'}
{'comment': 'Selling their souls for the losing side & left in open water\n\nShark bait baby', 'created': '2024-11-06 23:34:46', 'submission_id': '1gl24sv'}
{'comment': 'There’s nothing wrong with celebrities endorsing candidates. They are voters all the same. Plenty of celebs came out for Trump like\n\n- Joe Rogan\n- Dana White \n- Hulk Hogan\n- Elon Musk\n- Nick Bosa\n- Jon Voight', 'created': '2024-11-06 23:52:35', 'submission_id': '1gl24sv'}
{'comment': 'I cannot imagine anyone being politically swayed because a multi million dollar net worth fake ass told you to. What a delusional bunch of morons. \n\nStay in your play pretend lane.', 'created': '2024-11-07 00:02:09', 'submission_id': '1gl24sv'}
{'comment': "Now they're all leaving the country for good, right? Right?", 'created': '2024-11-07 00:46:47', 'submission_id': '1gl24sv'}
{'comment': 'Coincidentally, most of these people have probably attended a Diddy party.', 'created': '2024-11-06 18:25:33', 'submission_id': '1gl24sv'}
{'comment': "Geeks for Harris turned into Losers for Harris. Isn't that right #jensenackles and #mishacollins ?", 'created': '2024-11-06 20:44:48', 'submission_id': '1gl24sv'}
{'comment': 'Nobody cares what these clowns think! Dems do so they try to foist it on everyone but it doesn’t work!', 'created': '2024-11-06 21:14:10', 'submission_id': '1gl24sv'}
{'comment': 'Lmao !!! Especially the Taylor Swift one.', 'created': '2024-11-06 22:37:18', 'submission_id': '1gl24sv'}
{'comment': 'Watching all of these “celebrities” eat doggy doo is absolutely delicious! I am cutting connections with any person that voted for Kamel - these people are idiots.', 'created': '2024-11-06 22:59:58', 'submission_id': '1gl24sv'}
{'comment': "idk, when an over-paid narcissistic court jester living in a reality bubble tells me what to do or how to think, I'm instantly compelled to bow to their infinite, uneducated wisdom.", 'created': '2024-11-06 23:03:52', 'submission_id': '1gl24sv'}
{'comment': 'It’s cause Beyoncé didn’t sing /s?', 'created': '2024-11-07 02:47:36', 'submission_id': '1gl24sv'}
{'comment': 'How anyone could take the advice from people so socially and economically different from them, including the elites low education levels, is amazing. It’s dangerous these people vote.', 'created': '2024-11-06 19:03:02', 'submission_id': '1gl24sv'}
{'comment': 'Not Clooney!!', 'created': '2024-11-06 21:02:00', 'submission_id': '1gl24sv'}
{'comment': 'Is there going to be some ceremony when they follow through with their promises to leave the country?', 'created': '2024-11-07 07:42:31', 'submission_id': '1gl24sv'}
{'comment': 'I heard that noted Political Scientist Robert De Niro is on suicide watch.', 'created': '2024-11-07 11:39:50', 'submission_id': '1gl24sv'}
{'comment': "Aren't political donations good for tax purposes?", 'created': '2024-11-07 12:26:49', 'submission_id': '1gl24sv'}
{'comment': 'Sometimes, I wonder if they secretly voted for Trump and “endorsed” Kamala so they wouldn’t get cancelled', 'created': '2024-11-07 16:31:45', 'submission_id': '1gl24sv'}
{'comment': 'I bet it was. I would pay for a movie ticket to see that on the big screen.', 'created': '2024-11-06 17:42:38', 'submission_id': '1gl24sv'}
{'comment': 'This guy just went off the rails. The press conference in NY was ridiculous as he berated the world like he is the end all be all in morality. Lost all respect for the guy.', 'created': '2024-11-06 18:48:37', 'submission_id': '1gl24sv'}
{'comment': 'Hope so. Complete POS.', 'created': '2024-11-06 19:04:26', 'submission_id': '1gl24sv'}
{'comment': 'Their punishment must be swift and it must be enforced', 'created': '2024-11-06 23:02:33', 'submission_id': '1gl24sv'}
{'comment': 'He’s like Cenk but less sweaty', 'created': '2024-11-07 19:16:42', 'submission_id': '1gl24sv'}
{'comment': 'Just wait a year or so and most will be apologizing to Trump and Republicans.\n\nBut I have no doubt celebrities will keep running around like the sky is falling for the rest of this year, and through much of 2025.\n\nThen finally when they realize that Trump is NOT the second coming of Hitler, they will stop talking about leaving America and whatever else they usually say whenever a Republican wins.', 'created': '2024-11-09 15:26:46', 'submission_id': '1gl24sv'}
{'comment': "Like their uneducated and unsolicited opinions really matter 🙄 \n\nThey should just do what they get paid for and then crawl back into their holes. In either case, they'll get Karma when the Diddy List comes comes out. Is that right J-Lo, Oprah, Beyonce and company?", 'created': '2024-11-06 19:12:07', 'submission_id': '1gl24sv'}
{'comment': "I'm sure they're all packing up to move about now", 'created': '2024-11-06 18:22:34', 'submission_id': '1gl24sv'}
{'comment': "Lady Gag Me. Can't understand her popularity, although she is talented musically. But that doesn't mean she should be instructing people on how they should vote. It's insulting.", 'created': '2024-11-06 22:04:48', 'submission_id': '1gl24sv'}
{'comment': 'Even the ones that jumped ship because of the MSG incident, Probably got peer pressured by their management. Think for yourselves next time.', 'created': '2024-11-06 19:46:56', 'submission_id': '1gl24sv'}
{'comment': 'What kind of “democracy” are we living in when a woman who ”likes“ a social media post from a candidate is essentially cancelled (Mrs. Mahomes) yet every other person including celebrities can post whatever vitriol and pure hatred they want, and can “like” any and everything about their preferred candidate, and that’s acceptable but anything to the contrary is blasphemy? \n\n\nNo wonder the polls are always off in relation to Trump’s true standing; people are afraid to even just “like” a SM post for fear of the wrath of Those Who Are Right And Know Better Than You About What Is Best For You? THAT is not a democracy. I can’t believe that so many “smart” and “accepting-of-all-persons” celebrities (and news anchors, and journalists, and so on) cannot see this fact. Unbelievable. And I tell you what, I bet there are quite a few Hollywood types that voted for Trump but won’t dare admit it publicly as it would be career-ending. \n\nIf only the woke celebrities who promise to move out of the US every time an election doesn’t go their preferred direction would ACTUALLY FOLLOW THROUGH with it. If you make a promise, you need to keep it. Like your next president will do.', 'created': '2024-11-08 07:33:35', 'submission_id': '1gl24sv'}
{'comment': 'God, I *can not* stand Taylor Swift.', 'created': '2024-11-06 21:08:02', 'submission_id': '1gl24sv'}
{'comment': 'Harrison Butker won that locker room.', 'created': '2024-11-07 03:24:41', 'submission_id': '1gl24sv'}
{'comment': 'Taylor Swift looks like a trans now that she aged.', 'created': '2024-11-07 10:47:37', 'submission_id': '1gl24sv'}
{'comment': 'And they thought that crowd was going to inspire people to support them?', 'created': '2024-11-06 17:43:24', 'submission_id': '1gl24sv'}
{'comment': 'Hey, in a world where a guy who uses the N word and B word OVER AND OVER in his music yet he and his wife become guests of honor at the White House (circa 2008-2016), endorsements from Diddler’s party pals are par for the course. But hey, *Trump* is the racist misogynist. MAKE IT MAKE SENSE, DEMOCRATS', 'created': '2024-11-08 07:52:24', 'submission_id': '1gl24sv'}
{'comment': "Yeah, something tells me they don't even bother voting. Their lives stay the same and it doesn't matter who is president.", 'created': '2024-11-06 20:27:53', 'submission_id': '1gl24sv'}
{'comment': "I've probably liked all of these celebs at one point until they told me how to vote as if because they are celebs, they would know better than me. Their *arrogance*\xa0shows. They live in their mansions and fly their own planes, how in the world do they think they are relatable to everyday Americans?", 'created': '2024-11-06 18:59:10', 'submission_id': '1gl24sv'}
{'comment': 'Harrison ford is the one that really disappointed me. I know he’s a leftist but just shut up about it and make your movies that I can no longer enjoy the same way. \xa0I thought he was smarter than this. 🤷🏼', 'created': '2024-11-06 20:30:24', 'submission_id': '1gl24sv'}
{'comment': 'Purse strings talk louder than mouth fights.', 'created': '2024-11-06 19:06:59', 'submission_id': '1gl24sv'}
{'comment': 'Same. I used to be a fan, but he just went off the deep end.', 'created': '2024-11-06 18:51:54', 'submission_id': '1gl24sv'}
{'comment': 'An oldie but a goodie, and super relevant today:\n\n[https://www.simonandschuster.com/books/Shut-Up-and-Sing/Laura-Ingraham/9781621571490](https://www.simonandschuster.com/books/Shut-Up-and-Sing/Laura-Ingraham/9781621571490)', 'created': '2024-11-08 07:36:26', 'submission_id': '1gl24sv'}
{'comment': '🙏🏼🙏🏼🙏🏼', 'created': '2024-11-06 21:19:02', 'submission_id': '1gl24sv'}
{'comment': 'If only! One i particularly detest is Ashley Judd. Nobody better embodies the “I am very smart, and I know what’s best for you moreso than you do yourself” condescending attitude of the Elites. I haven’t heard much from her this election year; must be that her career is on the decline and there are more important liberal elites on the front lines fighting to protect us from ourselves.', 'created': '2024-11-08 07:41:21', 'submission_id': '1gl24sv'}
{'comment': 'Yeah that surprised me too. Kind of Brazen of them to do that. Nobody in their right mind is going to vote for someone endorsed by people affiliated with credible child abusers.\xa0', 'created': '2024-11-06 17:49:23', 'submission_id': '1gl24sv'}
{'comment': 'Yep. They live in a completely different world from us.', 'created': '2024-11-06 20:40:32', 'submission_id': '1gl24sv'}
{'comment': 'They all come off being on a moral high ground and that they know best what I should be doing. Their message would be much better if they just told people to get out and vote and let me decide what’s best for me. I know it will matter little but I’m much more particular where I put my money.', 'created': '2024-11-06 19:19:19', 'submission_id': '1gl24sv'}
{'comment': 'But to the crowd that their biggest issue is being able to kill their unborn babies I can see them admiring these child abusers.', 'created': '2024-11-06 17:59:39', 'submission_id': '1gl24sv'}
{'comment': 'Key phrase here: “in their right mind.” Unfortunately the world is full of a lot of people not in their best mental health state.', 'created': '2024-11-06 21:21:02', 'submission_id': '1gl24sv'}
{'comment': 'The irony is they are the ones who voted against comprehensive mental health care being available, they want people to be able to legally abuse drugs like fentanyl to self medicate, and live in tents at a Walmart parking lot instead.', 'created': '2024-11-06 21:32:12', 'submission_id': '1gl24sv'}
{'comment': 'But help is on the way!! RFK Jr said today he will remove entire departments from the FDA. He will prioritize healthy foods and health in general. Now if we can find a way to make these people realize they’ve been lied to and see the world in a positive light, they will begin to heal, mentally and physically. 🫶🏼', 'created': '2024-11-06 22:08:36', 'submission_id': '1gl24sv'}
{'comment': 'Yep. I don’t even think these folks realize what a big deal it is to have a Kennedy be on the Republican side.\xa0', 'created': '2024-11-06 22:38:35', 'submission_id': '1gl24sv'}
{'comment': 'The unity begins!! 🇺🇸🤗', 'created': '2024-11-06 23:20:15', 'submission_id': '1gl24sv'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 17:01:43', 'submission_id': '1gl1uvl'}
{'comment': "That's our president!", 'created': '2024-11-06 18:00:51', 'submission_id': '1gl1uvl'}
{'comment': 'Red tsunami. We won that by a major margin.', 'created': '2024-11-06 21:58:58', 'submission_id': '1gl1uvl'}
{'comment': 'Long term democrat, but I voted Trump this time around. Let’s go baby. I’m actually looking forward to the future.', 'created': '2024-11-07 00:51:01', 'submission_id': '1gl1uvl'}
{'comment': 'The 47th President of the United States of America: Donald J. Trump', 'created': '2024-11-07 00:44:22', 'submission_id': '1gl1uvl'}
{'comment': 'No tricks just love for a nation. \nUnlike last time.', 'created': '2024-11-07 02:13:09', 'submission_id': '1gl1uvl'}
{'comment': "I used to be a Democrat turned republican. It's the best decision of my life", 'created': '2024-11-07 14:06:54', 'submission_id': '1gl1uvl'}
{'comment': 'It’s crazy with all their rhetoric that it’s actually more tolerant over here.', 'created': '2024-11-08 00:55:05', 'submission_id': '1gl1uvl'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 16:48:51', 'submission_id': '1gl1k6b'}
{'comment': '<--- Marked safe from the Cackling Cackler.', 'created': '2024-11-06 16:52:11', 'submission_id': '1gl1k6b'}
{'comment': 'Not even satire. It’s just true. If he could run again he’d win again', 'created': '2024-11-06 20:12:00', 'submission_id': '1gl1k6b'}
{'comment': 'You might get to see that revealed to the sleepers very soon 👍🏻', 'created': '2024-11-06 18:11:37', 'submission_id': '1gl1k6b'}
{'comment': '#notthebee', 'created': '2024-11-07 00:40:22', 'submission_id': '1gl1k6b'}
{'comment': 'So I hope all these big mouth are going to move out of the country now !\nMr De Niro', 'created': '2024-11-07 01:41:27', 'submission_id': '1gl1k6b'}
{'comment': 'Please please Mr Trump .. please please stop winning 😂', 'created': '2024-11-06 19:59:18', 'submission_id': '1gl1k6b'}
{'comment': 'Marked safe from falling coconuts', 'created': '2024-11-06 19:27:15', 'submission_id': '1gl1k6b'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 16:39:26', 'submission_id': '1gl1cd9'}
{'comment': '[https://babylonbee.com/news/trump-wins-3rd-election-in-a-row](https://babylonbee.com/news/trump-wins-3rd-election-in-a-row)', 'created': '2024-11-06 16:48:06', 'submission_id': '1gl1cd9'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 16:26:35', 'submission_id': '1gl121j'}
{'comment': 'I keep see Democrats saying Trump is gonna cause a recession.\xa0', 'created': '2024-11-07 03:04:13', 'submission_id': '1gl121j'}
{'comment': 'Elon said that.\n\n(Why the downvote? He did.)', 'created': '2024-11-07 06:29:20', 'submission_id': '1gl121j'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 16:22:13', 'submission_id': '1gl0yg2'}
{'comment': 'Now she can go back to her middle class neighborhood.', 'created': '2024-11-06 16:42:34', 'submission_id': '1gl0yg2'}
{'comment': 'Nobody I know liked her. Not one person.', 'created': '2024-11-06 16:36:49', 'submission_id': '1gl0yg2'}
{'comment': 'She finally unburdened us from what she had become.', 'created': '2024-11-06 19:57:13', 'submission_id': '1gl0yg2'}
{'comment': 'Trump should officially offer her some menial, brainless position in the WH. Janitor or some shit', 'created': '2024-11-06 16:59:43', 'submission_id': '1gl0yg2'}
{'comment': "They couldn't steal it this time!", 'created': '2024-11-06 16:42:54', 'submission_id': '1gl0yg2'}
{'comment': "She is such a sore loser too. Radio silent all day yesterday and today. Now won't speak until 6 pm tonight? Just concede. You lost Harris. Take the L and get out of here.", 'created': '2024-11-06 17:22:38', 'submission_id': '1gl0yg2'}
{'comment': "Now, let's ACTUALLY turn the page.", 'created': '2024-11-06 17:08:08', 'submission_id': '1gl0yg2'}
{'comment': 'I picked her up a job application at McDonald’s, so she can go back to her old fake job.', 'created': '2024-11-06 19:56:36', 'submission_id': '1gl0yg2'}
{'comment': 'They are talking shit about Trump from four years ago, but they legit stole it!!', 'created': '2024-11-06 20:36:05', 'submission_id': '1gl0yg2'}
{'comment': 'She would’ve done so much harmala\n\nThis is truly karmala\n\nThe silent majority has spoken, la la la la la.', 'created': '2024-11-06 17:10:09', 'submission_id': '1gl0yg2'}
{'comment': 'Farted', 'created': '2024-11-06 16:25:22', 'submission_id': '1gl0yg2'}
{'comment': '😂 She’ll be looking for the next bed to climb into to inch her way up the corporate ladder', 'created': '2024-11-06 20:59:48', 'submission_id': '1gl0yg2'}
{'comment': 'Trump 2024!', 'created': '2024-11-06 21:34:01', 'submission_id': '1gl0yg2'}
{'comment': 'USA🇺🇸🇺🇸🇺🇸USA🇺🇸🇺🇸🇺🇸USA😎', 'created': '2024-11-06 19:29:46', 'submission_id': '1gl0yg2'}
{'comment': 'Oh she would have been even worse than Joe if that’s even possible.', 'created': '2024-11-07 00:04:58', 'submission_id': '1gl0yg2'}
{'comment': 'Haha. She is a piece of trash. Anyone who voted for her is a brainwashed moron and enemy of our country. Good riddance.', 'created': '2024-11-07 00:34:47', 'submission_id': '1gl0yg2'}
{'comment': "Let's try to win with some poise and grace, much of the left are lost but setting a good example to those who aren't can only help us in the future.", 'created': '2024-11-07 00:50:13', 'submission_id': '1gl0yg2'}
{'comment': "It's go cry to your mamala! CONGRATS MY BROTHERS AND SISTERS! NOW LET'S GET TO WORK!", 'created': '2024-11-07 01:05:33', 'submission_id': '1gl0yg2'}
{'comment': 'Worried about what her supporters will do.', 'created': '2024-11-06 16:59:07', 'submission_id': '1gl0yg2'}
{'comment': 'Took* 😎', 'created': '2024-11-06 19:45:57', 'submission_id': '1gl0yg2'}
{'comment': '🙏😂', 'created': '2024-11-06 16:55:38', 'submission_id': '1gl0yg2'}
{'comment': 'Hell yeah!!!!', 'created': '2024-11-06 17:40:09', 'submission_id': '1gl0yg2'}
{'comment': 'Lmao 😂', 'created': '2024-11-06 19:24:09', 'submission_id': '1gl0yg2'}
{'comment': 'We got Big Unc back in office', 'created': '2024-11-07 02:53:17', 'submission_id': '1gl0yg2'}
{'comment': 'She’s gonna take her Carmala back to her Homala in CA! 😂', 'created': '2024-11-07 03:31:54', 'submission_id': '1gl0yg2'}
{'comment': "She will be fine. She will ghost write her autobiography and sell enough that she will no longer be middle class. I'm guessing the book will be called Kamala, middle class beginnings.", 'created': '2024-11-07 13:28:12', 'submission_id': '1gl0yg2'}
{'comment': "I work with a lot of left wingers, for some reason they've been really nice to me and don't talk shirt anymore?... I wonder why?", 'created': '2024-11-07 17:18:09', 'submission_id': '1gl0yg2'}
{'comment': "Looks like she's going back to putting her head down", 'created': '2024-11-06 17:56:14', 'submission_id': '1gl0yg2'}
{'comment': 'Mamala in Spanish means…suck it', 'created': '2024-11-07 07:51:22', 'submission_id': '1gl0yg2'}
{'comment': 'She is probably still needed. Do you really think women aren’t smart to still be needed even if they lose?', 'created': '2024-11-06 19:51:46', 'submission_id': '1gl0yg2'}
{'comment': "I don't think this is necessary.", 'created': '2024-11-06 20:42:26', 'submission_id': '1gl0yg2'}
{'comment': 'And mow her middle class lawn.', 'created': '2024-11-06 20:55:22', 'submission_id': '1gl0yg2'}
{'comment': 'Not before we redistribute all the joy.', 'created': '2024-11-06 23:03:18', 'submission_id': '1gl0yg2'}
{'comment': '🤣', 'created': '2024-11-06 17:14:54', 'submission_id': '1gl0yg2'}
{'comment': 'I think Biden voted for Trump', 'created': '2024-11-06 17:16:55', 'submission_id': '1gl0yg2'}
{'comment': 'She already has one', 'created': '2024-11-06 17:41:07', 'submission_id': '1gl0yg2'}
{'comment': 'Kitchen assistant. Her specialty? Word salad with liberal tear dressing of course.', 'created': '2024-11-07 14:04:06', 'submission_id': '1gl0yg2'}
{'comment': 'They were being closely watched by everyone', 'created': '2024-11-06 17:15:28', 'submission_id': '1gl0yg2'}
{'comment': 'There were 16million more voters in 2020. What happened to those people this time? 😂', 'created': '2024-11-07 01:24:33', 'submission_id': '1gl0yg2'}
{'comment': 'Apparently a bad temper too like her husband Dougie ..', 'created': '2024-11-06 19:02:04', 'submission_id': '1gl0yg2'}
{'comment': 'Isn’t this a good thing?', 'created': '2024-11-06 19:15:35', 'submission_id': '1gl0yg2'}
{'comment': "You really shouldn't be talking about sire losers.", 'created': '2024-11-06 19:23:25', 'submission_id': '1gl0yg2'}
{'comment': 'You should seriously mail her VP office a McDonald’s job application', 'created': '2024-11-07 10:27:26', 'submission_id': '1gl0yg2'}
{'comment': 'Fn thieves', 'created': '2024-11-06 20:48:12', 'submission_id': '1gl0yg2'}
{'comment': '🤣🤣🤣', 'created': '2024-11-07 14:05:39', 'submission_id': '1gl0yg2'}
{'comment': 'Get that last breath out', 'created': '2024-11-06 16:40:03', 'submission_id': '1gl0yg2'}
{'comment': 'POISE ! Are you fn kidding me. They tried to kill him twice put him in jail for years and we should have poise. Just another she devil in disguise 🥸', 'created': '2024-11-07 01:15:51', 'submission_id': '1gl0yg2'}
{'comment': 'Oh don’t be 90% of them are on Reddit typing away furiously', 'created': '2024-11-06 19:19:05', 'submission_id': '1gl0yg2'}
{'comment': "don't worry. the bigger cities prepared for this. they boarded places up. just in case.", 'created': '2024-11-06 20:00:56', 'submission_id': '1gl0yg2'}
{'comment': "On Willie Brown's lap. (yeah i know he's dead)", 'created': '2024-11-07 14:12:28', 'submission_id': '1gl0yg2'}
{'comment': "No. It means I'm not a real mother. Had too many abortions. Hate kids. BUT when it's time for political office I better threaten/pay my husband's adult kids & their actual mother to say I'm the greatest step-mother figure with the greatest maternal instincts eva! 🤣😂🤣😂🤣😂 All to get the vote.", 'created': '2024-11-07 14:16:54', 'submission_id': '1gl0yg2'}
{'comment': 'Needed for what ? She’s never done anything', 'created': '2024-11-06 19:53:56', 'submission_id': '1gl0yg2'}
{'comment': 'Sure it is. Sympathy for the she devil ?', 'created': '2024-11-06 20:49:52', 'submission_id': '1gl0yg2'}
{'comment': "And her middle class McDonald's.", 'created': '2024-11-07 00:11:45', 'submission_id': '1gl0yg2'}
{'comment': 'Did you see Jill wore all RED when she voted!! LMFAO', 'created': '2024-11-06 17:41:18', 'submission_id': '1gl0yg2'}
{'comment': '🤣🤣🤣', 'created': '2024-11-06 18:40:05', 'submission_id': '1gl0yg2'}
{'comment': 'Exactly. They had two witnesses this time at every location.', 'created': '2024-11-06 21:14:35', 'submission_id': '1gl0yg2'}
{'comment': 'They went back to their graves, or hospital beds at the high maintenance nursing homes', 'created': '2024-11-07 16:09:57', 'submission_id': '1gl0yg2'}
{'comment': 'being radio silent? No. she should have conceded by now and called Trump. Even Hillary did that.', 'created': '2024-11-06 19:59:57', 'submission_id': '1gl0yg2'}
{'comment': 'We are all unburdened by what has been thanks to the passage of time 😌🧘🏾💫', 'created': '2024-11-07 17:16:54', 'submission_id': '1gl0yg2'}
{'comment': 'Except for a lot of damage in California', 'created': '2024-11-06 20:51:26', 'submission_id': '1gl0yg2'}
{'comment': 'Both sides have to work together for a functioning government.', 'created': '2024-11-06 21:00:48', 'submission_id': '1gl0yg2'}
{'comment': 'No, but I think that taking the highroad is even more of a slap in the face because they expect us to be gloating.', 'created': '2024-11-06 20:59:27', 'submission_id': '1gl0yg2'}
{'comment': 'What she’s gonna need her middle-class job back flipping hamburgers', 'created': '2024-11-07 00:36:50', 'submission_id': '1gl0yg2'}
{'comment': 'She knew what she was doing', 'created': '2024-11-06 18:34:37', 'submission_id': '1gl0yg2'}
{'comment': 'lol i know she more than Joe would be mad about the ousting. lol.', 'created': '2024-11-06 19:58:24', 'submission_id': '1gl0yg2'}
{'comment': 'I did not but I’ll have to look it up 🤣 \nIt’s a new day in America 🇺🇸', 'created': '2024-11-06 18:09:22', 'submission_id': '1gl0yg2'}
{'comment': 'Everyone who voted for Trump in 2020 was watching for cheating. No more Covid smokescreen.', 'created': '2024-11-06 21:22:22', 'submission_id': '1gl0yg2'}
{'comment': "I don't know Arizona lake lost, Trump won, the Senate race numbers look flipped. Most people vote a straight party ticket. The Dem senator's look close to Trump numbers and Lakes numbers look close to Harris. \nhttps://abcnews.go.com/Politics/arizona-2024-live-election-results/story?id=112245519", 'created': '2024-11-07 02:48:37', 'submission_id': '1gl0yg2'}
{'comment': 'The inevitable passage of time aside, it could have gone the other way.', 'created': '2024-11-07 17:46:50', 'submission_id': '1gl0yg2'}
{'comment': 'There’s that plus all the criminals she bailed out all over the place, the border and the list goes on…….', 'created': '2024-11-06 20:56:55', 'submission_id': '1gl0yg2'}
{'comment': 'With her middle class spatula and grill,,', 'created': '2024-11-07 00:47:42', 'submission_id': '1gl0yg2'}
{'comment': "Yeah, sometimes there are just subtle differences in the tickets and party lines. Maybe Lake's are a little more exaggerated as voters dislike her more from her incident with the governor election? I think she might have got hosed in that governor election.", 'created': '2024-11-07 15:22:14', 'submission_id': '1gl0yg2'}
{'comment': 'I’m just now coming down from election anxiety. I’ve had chest pain for weeks. The game was rigged and we had to win big to win at all. I’m convinced God got us through.', 'created': '2024-11-07 19:23:46', 'submission_id': '1gl0yg2'}
{'comment': 'First she kept small time criminals in jail for longer periods for cheap labor (primarily African-Americans) working for 0.06 an hour. Then she flipped to releasing murders out early. She’s on both ends of too extreme and radical. \n\nShe would have ruined this country. I hope people don’t continue to put her in powerful positions. She’s destructive', 'created': '2024-11-06 21:04:03', 'submission_id': '1gl0yg2'}
{'comment': 'Both sides have to work together for a functioning government.', 'created': '2024-11-06 21:01:55', 'submission_id': '1gl0yg2'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 16:17:09', 'submission_id': '1gl0u9j'}
{'comment': 'Personally, I am shocked that she lost. I was sure being a middle class kid, and a woman would’ve easily granted her victory.', 'created': '2024-11-06 16:20:34', 'submission_id': '1gl0u9j'}
{'comment': 'Beaten more women than Chris Brown.', 'created': '2024-11-06 23:31:07', 'submission_id': '1gl0u9j'}
{'comment': '💀', 'created': '2024-11-06 17:29:52', 'submission_id': '1gl0u9j'}
{'comment': 'lol this is funny 😄', 'created': '2024-11-06 22:18:45', 'submission_id': '1gl0u9j'}
{'comment': "Kamala beat herself by trying to assinate trumps character, that same thing social media has been doing for years and failing at, everyone knew what social media thought of him she couldn't even come up with something original and sure as hell couldn't run on her achievements or policy.", 'created': '2024-11-07 01:40:17', 'submission_id': '1gl0u9j'}
{'comment': "Don't forget she was raised in a middle class neighborhood and cared about her lawn. Very important", 'created': '2024-11-06 16:30:55', 'submission_id': '1gl0u9j'}
{'comment': 'Omg lol\nGood one', 'created': '2024-11-07 00:41:26', 'submission_id': '1gl0u9j'}
{'comment': 'All of her neighbors were proud of their lawns, this is tragic', 'created': '2024-11-06 16:34:49', 'submission_id': '1gl0u9j'}
{'comment': 'OMG??? That makes it more shocking for her to lose.', 'created': '2024-11-06 16:40:03', 'submission_id': '1gl0u9j'}
{'comment': 'Very', 'created': '2024-11-06 16:40:06', 'submission_id': '1gl0u9j'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 15:21:34', 'submission_id': '1gkzm04'}
{'comment': "Not commenting on this map, since I don't think it means anything other than no id is a left wing policy,\n\nHOWEVER\n\nI have yet to hear a single compelling argument for why ID shouldn't be mandatory", 'created': '2024-11-06 15:29:15', 'submission_id': '1gkzm04'}
{'comment': "I think it's time for the United States to have a mandatory federal ID card, like every other developed nation (and almost every underdeveloped nation) does.\n\nGive it a nominal fee, with a fee waiver for people below the poverty line, so the problem of people being able to afford it doesn't arise. \n\nThe trouble with requiring state ID to vote is that not all state ID requires proof of US citizenship so what ID you need to show to vote would differ between states, rely on the competence of each state government (remember that mess just a few weeks ago in Arizona where like 200,000 old Arizona residents got disenfranchised because they got their state IDs before the state started checking citizenship?) and end up in a complicated mess. \n\nMake a federal ID mandatory. Require every citizen show that ID every time they vote, every time they apply for a government benefit, every time they apply for a job, every time they're stopped by the police, every time they interact with any level of American government or do anything else where proof of citizenship is required or beneficial. Simple, easy, effective.", 'created': '2024-11-06 23:40:47', 'submission_id': '1gkzm04'}
{'comment': 'I have yet to hear one logical comment on why voter id is somehow oppressive. Iraq has voter id. IRAQ!', 'created': '2024-11-06 20:56:57', 'submission_id': '1gkzm04'}
{'comment': "Because if they ID you the illegals, they let in wouldn't be able to vote. Can't have ID if you're not a citizen. this election would have been a blowout had they required ID from everyone and only allowed legal citizen to vote.", 'created': '2024-11-06 16:46:04', 'submission_id': '1gkzm04'}
{'comment': "I have heard only one. It's that voting is a right so requiring I'd, something you have to pay for, is technically a polling tax, which are illegal.", 'created': '2024-11-06 17:18:57', 'submission_id': '1gkzm04'}
{'comment': 'holy shit did a 4th grader write this comment', 'created': '2024-11-06 16:56:43', 'submission_id': '1gkzm04'}
{'comment': "Buying a gun is a right. You still need an ID. My state just passed a special tax on ammo and gun sales (of course unless you are LE) so that's a tax on a right. Unless of course you think that the right to bear arms does not include the right to actually load it.", 'created': '2024-11-06 19:26:21', 'submission_id': '1gkzm04'}
{'comment': "No autocorrect I just didn't reread before posting", 'created': '2024-11-06 17:12:31', 'submission_id': '1gkzm04'}
{'comment': "I think there's a significant difference. You have a right to buy a gun *if you can afford it*. There are limits to the right to own a gun, and one of those limits is financial. I don't think even the most passionate advocates for gun rights would support free ammo distribution to the poor.\n\nVoting, on the other hand, is seen as a right that belongs to even the poorest citizen. \n\nI don't agree that voting is a right, but I can see how people who do believe that would argue against ID.", 'created': '2024-11-06 23:31:50', 'submission_id': '1gkzm04'}
{'comment': "> I don't agree that voting is a right, but I can see how people who do believe that would argue against ID.\n\nI can agree with that.", 'created': '2024-11-06 23:46:05', 'submission_id': '1gkzm04'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 15:19:10', 'submission_id': '1gkzjzq'}
{'comment': 'Oh oh is this the list of celebrities who did they would leave the country!!!!!!', 'created': '2024-11-06 17:05:16', 'submission_id': '1gkzjzq'}
{'comment': 'Or drink Drano', 'created': '2024-11-07 00:07:24', 'submission_id': '1gkzjzq'}
{'comment': 'Overly dramatic for my taste but if that’s how they want to react. I’d just like them to move to these socialist countries they love so much', 'created': '2024-11-07 00:08:54', 'submission_id': '1gkzjzq'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 15:15:21', 'submission_id': '1gkzgy9'}
{'comment': 'Fulton County will never learn smh…. Fulton needs an overhaul from the top to the bottom', 'created': '2024-11-06 15:45:19', 'submission_id': '1gkzgy9'}
{'comment': 'That bitch gonna get disbarred for what she did', 'created': '2024-11-06 17:06:09', 'submission_id': '1gkzgy9'}
{'comment': "She looses any federal funding.\xa0 US Marshall's office comes to arrest her sorry ass.\xa0", 'created': '2024-11-12 03:16:33', 'submission_id': '1gkzgy9'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 14:48:36', 'submission_id': '1gkywjr'}
{'comment': "The absolute first thing Trump needs to do in January is place a phone call to Greg Abbott and ask to borrow the Texas Rangers.\n\nOnce he gets them, he needs to Federally deputize them.\n\n...and then use them to completely shut down the FBI, CIA, and DOJ. Take all the employees and put them into unused Federal office buildings with no computers, phones, or anything but a chair and four walls. That's their new work location until they are vetted. Cut power to all of the (now vacant) FBI, CIA, and DOJ properties, and then use the Texas Rangers to vet those personnel, returning them to work as they are vetted for not being corrupt and/or in the pay of foreign powers.\n\nYou cannot fix the corruption in the bureaucracy in DC with a corrupt DOJ.", 'created': '2024-11-06 15:01:40', 'submission_id': '1gkywjr'}
{'comment': '> Is there something I’m missing? \n\nNo, you pretty much nailed it.', 'created': '2024-11-06 14:48:56', 'submission_id': '1gkyu2y'}
{'comment': "If the Democrats were going to protect abortion rights, why didn't the Biden administration do anything to fix Roe v Wade?", 'created': '2024-11-06 16:45:45', 'submission_id': '1gkyu2y'}
{'comment': 'As a woman i absolutely wanted to protect my rights, thats why i voted for Trump,', 'created': '2024-11-06 15:50:37', 'submission_id': '1gkyu2y'}
{'comment': 'Try not to judge me for this you guys but I’m a 31 F and just finally voted this year for my first time ever. I always thought I was either democrat or liberal but also didn’t really care and thought everyone was crap and thought our country was just whatever. Something changed in me towards the end of these last 4 years when I saw what happened to our country. It got so bad that even I finally had to pay attention. Even I finally was like “Oh wait…this all makes me extremely uncomfortable, what the f*ck is even going on.” Even I finally was like “Okay wait I think I love my country enough that this all has to be stopped”. My husband and I also started TTC this year and I think having to realistically think about my future children’s future flipped a switch. I am SO proud to say that I, a WOMAN, VOTED RED, for me, for all women, and for my future children!!!', 'created': '2024-11-06 17:05:24', 'submission_id': '1gkyu2y'}
{'comment': 'Thank you for saying this. I’m absolutely mind blown by all the posts & comments I’m seeing about women terrified, crying, and so anxious about their rights and the rights of their children. He has literally been the president before and what rights did we lose? All he did was allow states to make decisions on abortions, so if that’s what they’re upset about, they should be mad at their own state. I’m in disbelief at the delusional things I’m seeing.\n\nI had a MC in January and had no problems getting the medical care I needed. I’m currently expecting a son & daughter. I voted red FOR my kids. I want them to be safe in our country, have rights, and not have to eat poisoned food.', 'created': '2024-11-06 17:49:29', 'submission_id': '1gkyu2y'}
{'comment': 'As a mother with a daughter, I am absolutely *RELIEVED* this morning. I haven’t been this happy in a hot minute. And I can’t wait to not spend $200 every week in groceries!!! 🥳🙌🇺🇸', 'created': '2024-11-06 17:05:43', 'submission_id': '1gkyu2y'}
{'comment': 'The real irony is that now women can actually vote, at a state level, on the “rights” they want. We all can. The less federal overreach, the better we all are.', 'created': '2024-11-06 17:22:39', 'submission_id': '1gkyu2y'}
{'comment': 'The only thing Trump will do about it, is leave it up to the states. Precious lib states like California are not going to let abortion go anywhere.', 'created': '2024-11-06 23:12:44', 'submission_id': '1gkyu2y'}
{'comment': "It's crazy to me. Ive heard people from the left spouting off things like JD Vance wants to track women's periods, and a Republican government will put them to death if they need abortions for any reason. Those same people say that trump ran and won on a campaign of fearmongering and propaganda. Absolutely wild", 'created': '2024-11-06 17:22:26', 'submission_id': '1gkyu2y'}
{'comment': 'The liberal party needs to learn they can’t just win elections by planting us as the worst humans alive on planet Earth while also preaching about inclusivity and bringing the country together\n\nHarris would have been so bad at bringing anyone together and even if she pulled off a Hail Mary in 2024 she would have been smoked even worse than this in 2028\n\nNew Jersey at a lean margin is insane!!', 'created': '2024-11-06 17:16:27', 'submission_id': '1gkyu2y'}
{'comment': 'Those men who posted stuff like "I have a 15 yo daughter so I voted Harris" are so blind. To me that was like saying "I don\'t care if my daughter\'s privacy or body is violated." \n\nMy oldest daughter is only 4, but literally every time she goes into a public restroom I am concerned for her safety. Why perverts in women\'s spaces is even a discussion baffles me.', 'created': '2024-11-06 18:46:45', 'submission_id': '1gkyu2y'}
{'comment': 'All of this!!!', 'created': '2024-11-06 15:20:49', 'submission_id': '1gkyu2y'}
{'comment': 'Well, my family - to my surprise - all voted for Trump. I was sure my leftist son wouldn\'t, but he said, and I quote, "I couldn\'t bear even the thought of hearing her cackling one more day!"', 'created': '2024-11-06 17:04:44', 'submission_id': '1gkyu2y'}
{'comment': 'Republicans haven’t taken abortion away! They just deferred to the states. Now the citizens of each state get to choose their own abortion laws.', 'created': '2024-11-06 18:21:51', 'submission_id': '1gkyu2y'}
{'comment': 'It honestly makes me laugh, they’re posting about how they’re going to lose their rights and this is a second coming of Hitler but in reality he’s been president before and he never took a single persons right away😂', 'created': '2024-11-07 03:18:31', 'submission_id': '1gkyu2y'}
{'comment': 'Her right to exist as a female in exclusively female spaces like sports and restrooms is what did it for me. Protect our daughters.', 'created': '2024-11-06 18:49:36', 'submission_id': '1gkyu2y'}
{'comment': "I couldn't agree more. It blows my mind that the left thinks that the biggest issue we have in this country is abortion.", 'created': '2024-11-06 18:58:32', 'submission_id': '1gkyu2y'}
{'comment': 'Facts! Liberal women are crying about abortion when the law is set! Trump nor Kamala can change the law. It is pushed to the states as it should be! Abortion should not be a federal mandate. States decide..and each side have gotten a slice of the pie.. pro-lifers have their pro life states and pro choice have their states. \n\n But these liberal women are the same people who are screaming, "trans women are women!" No they fucking aren\'t! We don\'t need males in women\'s sports or bathrooms or locker room or women prisons! \n\nWhat about those women\'s rights? They are seriously loony tunes!', 'created': '2024-11-06 19:38:47', 'submission_id': '1gkyu2y'}
{'comment': 'living in Texas and there are places women can’t go alone due to the illegal immigrants making it dangerous. \nthank God he is back in office to clean up our state', 'created': '2024-11-06 18:48:52', 'submission_id': '1gkyu2y'}
{'comment': 'I voted for trump because im worried about womens rights\n\nNot the right to murder which isnt a right at all but instead the right to feel safe from creeps and sex offenders\n\nThe right to be free in this country rather than silenced like people are in Canada, Uk, and reddit!', 'created': '2024-11-06 19:21:58', 'submission_id': '1gkyu2y'}
{'comment': 'I’m not a woman myself but I feel like we just secured a heck of a lot more rights than Kamala ever would have lied about securing.', 'created': '2024-11-06 18:38:14', 'submission_id': '1gkyu2y'}
{'comment': 'Trump doesn’t even have any real control over that iirc, it’s down to the states. Not 100% sure, so feel free to correct me', 'created': '2024-11-06 16:06:56', 'submission_id': '1gkyu2y'}
{'comment': 'These people are getting their news from tick tock reels and Facebook posts. The left was banking on that. It was feel good vibes and fear mongering. There was no content to her campaign, just greens in the bathtub and other disingenuous nonsense.', 'created': '2024-11-06 19:17:38', 'submission_id': '1gkyu2y'}
{'comment': "Bravo. But with politics the truth doesn't matter, just what people believe.", 'created': '2024-11-06 17:17:10', 'submission_id': '1gkyu2y'}
{'comment': 'Do people not realize that abortion rights are now handled at the state level. Some states have already voted on it and about 10 states voted just last night on this very issue.', 'created': '2024-11-06 23:24:32', 'submission_id': '1gkyu2y'}
{'comment': 'Everything you said is true 👏', 'created': '2024-11-06 17:40:50', 'submission_id': '1gkyu2y'}
{'comment': 'So many woman keep saying he’s taking away our reproductive right and I just laugh bc he isn’t. I am a mother with a daughter as well and I voted trump for our safety. We live right near a border and have hundreds of illegals coming in. Some spotted standing near a school bus with children getting on! Idk how people can think that is safe!', 'created': '2024-11-06 18:53:41', 'submission_id': '1gkyu2y'}
{'comment': "Trump didn't have a pro or anti women's rights platform. The entire thing was a strawman policy they campaigned against.\xa0\n\n\nIt's probably why they lost. They weren't campaigning against real issues", 'created': '2024-11-06 16:52:52', 'submission_id': '1gkyu2y'}
{'comment': 'helll yeahhh we love our women, thats why we voted ❤️🇺🇸', 'created': '2024-11-06 17:17:25', 'submission_id': '1gkyu2y'}
{'comment': 'It’s disgusting how they paint us as immoral! I 100% agree with you', 'created': '2024-11-06 17:17:46', 'submission_id': '1gkyu2y'}
{'comment': "The Women's Health sub has the fear mongering down pat with posts about having to get their tubes tied because if they have complications with their future pregnancies, they'll end up dying. You know, because normal birth control isn't a thing and clearly the hospitals will tie them down and keep them there as soon as they get pregnant.", 'created': '2024-11-06 18:49:44', 'submission_id': '1gkyu2y'}
{'comment': 'Don’t forget the Democratic Party is in office and hasn’t issued the reinstatement of roe v wade… I wonder why they aren’t getting it done?', 'created': '2024-11-06 17:22:26', 'submission_id': '1gkyu2y'}
{'comment': "1000% agree with this statement. Now I feel women should have the right to choice what to do with their bodies but the left is over looking all the bs they are trying to take and only focusing on that one thing. And maybe if they protected them self with birth control condoms and the other ways they wouldn't need abortion so much.", 'created': '2024-11-06 16:13:01', 'submission_id': '1gkyu2y'}
{'comment': '“Relax, you can still abort all the babies you want” is what I want to say to these brainwashed liberals.', 'created': '2024-11-06 18:01:16', 'submission_id': '1gkyu2y'}
{'comment': '> much bigger than abortion\n\nThat was another thing that bugged me about this election. They kept insisting they were "defenders of democracy" and we pointed out that nobody voted for Harris in anything before last night, but they _also_ oppose putting abortion up for a vote, which is what the repeal of Roe vs. Wade did. I don\'t oppose abortion personally, and I hope to see it legalized everywhere DEMOCRATICALLY.', 'created': '2024-11-06 23:26:11', 'submission_id': '1gkyu2y'}
{'comment': 'But if Trump ruined women’s rights to abortion, why didn’t the now exiting administration do anything to fix it?', 'created': '2024-11-07 04:33:39', 'submission_id': '1gkyu2y'}
{'comment': 'On one hand the Dems championed abortion as women’s rights and on the other hand devalued women by letting men into women’s spaces', 'created': '2024-11-07 05:29:24', 'submission_id': '1gkyu2y'}
{'comment': 'It’s insane. The amount of women I’ve seen screaming and crying in the last 24 hours saying they’re going to lose all their rights kills me. I saw one saying she’s scared she won’t be able to get a credit card without her husbands permission if Trump wins. What does that even mean?? Literally where is this shit coming from? \n\nTrump has literally said he supports abortions too, especially in “exceptions” (rape, mother’s health ect). The fear mongering that has been done to these women is despicable. Making shit up to make people so scared they start having mental breakdowns about losing rights that aren’t even on the table is insane.', 'created': '2024-11-07 19:07:06', 'submission_id': '1gkyu2y'}
{'comment': 'I voted this year only for my daughter.', 'created': '2024-11-06 17:08:38', 'submission_id': '1gkyu2y'}
{'comment': 'Hey, seriously, don’t get their logic on women’s rights. Harris and Biden literally infringed upon our rights with the changes made to Title IX. That and that alone is all I needed to know when I chose to vote for President Trump!', 'created': '2024-11-06 20:01:49', 'submission_id': '1gkyu2y'}
{'comment': "Just shows the fragility of the left and why so many of the suffer from mental health, they really can't cope with reality and want to live in lala land", 'created': '2024-11-06 20:02:28', 'submission_id': '1gkyu2y'}
{'comment': 'I am so glad I’m not alone on this site! I’ve followed some pages for new moms and pregnant women who are LOSING their minds. I’m wondering what they’re so upset about that they don’t want to bring life into this country anymore just because Trump is president. It boggles my mind how much the consume the medias lies and then regurgitate it without question or fact checking.', 'created': '2024-11-06 20:24:08', 'submission_id': '1gkyu2y'}
{'comment': "You are 100% right. On another note, The abortion conversation needs to be approached from a different angle altogether. Why are all these unwanted pregnancies happening? Let's address that, provide the resources to educate and provide contraceptives for young women. If rape is the issue we need to address that way way ahead of the abortion argument.\n\nThere are a lot of root issues that we can do way better on that come long before abortion.", 'created': '2024-11-07 00:25:11', 'submission_id': '1gkyu2y'}
{'comment': 'Whenever I see a leftist say something about they want to protect their daughters abilities to have an abortion I hit them with “So you’re okay with her having a train ran through her frequently without consequences.” And it usually gets them to shut up', 'created': '2024-11-06 17:10:04', 'submission_id': '1gkyu2y'}
{'comment': '100% agreed!👏🏽\n\nUnfortunately abortion is not a right, it’s a privilege. Since abortion is a service, we don’t have an unalienable right to abortion, since it’s predicated on another individual performing that service. \nIt should be a states issue, just as our founding fathers intended. It’s not a *right* that needs to be protected under federal law.\n\nI voted for Trump, but I also voted for abortion access in my state election. A women’s right to abortion now lies in a state election, and this likely won’t be a presidential issue ever again.\n\nTo each their own, but I find it weird that abortion is a voting issue for some people. It feels like an uninformed take. You want to “protect” your child getting cream pied and their ability to abort the fetus? Lol. It’s so strange. \n\nMost people will go their whole life without having an abortion. It’s an issue that won’t affect the majority of Americans. Yet the economy, taxes, and inflation we feel every. Single. Day. And that’s not a voting issue for these people!? Go figure.', 'created': '2024-11-06 17:25:42', 'submission_id': '1gkyu2y'}
{'comment': "What I don't understand is that if woman in a specific state want abortions they can vote in a government that will support it. No one is stopping them.", 'created': '2024-11-06 19:56:03', 'submission_id': '1gkyu2y'}
{'comment': "I'm a mother with a daughter. I don't believe that women have the right to kill their baby just because the baby is inside of their body. All arguments for abortion fall flat when you really think and apply logic. And calling abortion healthcare is such an abomination.\n\nI genuinely believe substantially less people would be okay with abortion if they were more educated on it. Also, if they had children. I was already not okay with abortion before I had my daughter, but when she was born, I became passionately against it. The idea of destroying the life of a baby is heart-wrenching. I cry when I hear too much about it, and I really never cry over things that aren't extremely grieving.\n\nYou're also totally right about other rights. Sure, they're not specific to women in a lot of cases, like censorship, but also safe women-only spaces, absolutely. I would go nuts if a man was in the bathroom with my little girl. Absolutely nuts. I don't care how mentally unwell you are that you believe with every fiber of your being that you're a woman. Get the hell out.", 'created': '2024-11-06 19:18:06', 'submission_id': '1gkyu2y'}
{'comment': 'You hit the high points on how the "progressives" are nothing close to progress.', 'created': '2024-11-06 15:48:56', 'submission_id': '1gkyu2y'}
{'comment': 'No no, you got it. \nThey’re just looking for any reason to hate him, plain and simple.', 'created': '2024-11-06 22:26:41', 'submission_id': '1gkyu2y'}
{'comment': 'I’m so over the women freaking out. I get that they want their abortions, but Trump is NOT going to go for a National abortion ban. They are so freaking brainwashed.', 'created': '2024-11-07 00:58:16', 'submission_id': '1gkyu2y'}
{'comment': 'Seriously, THANK YOU! As a 31F with three daughters I agree with you 💯! I personally believe in the right to choose when it comes to abortion. But that is literally the least of my worries as it concerns my family’s overall rights and well-being. All of these women out here losing their minds about the abortion issue blow my mind because they are not seeing the larger issues and the freedoms we were losing under the Democratic presidency.', 'created': '2024-11-06 21:00:16', 'submission_id': '1gkyu2y'}
{'comment': '💯truth 💣', 'created': '2024-11-06 23:12:54', 'submission_id': '1gkyu2y'}
{'comment': 'Nailed it', 'created': '2024-11-06 23:37:18', 'submission_id': '1gkyu2y'}
{'comment': 'As a woman, I have felt a sense of relief and so much happiness today', 'created': '2024-11-07 02:54:12', 'submission_id': '1gkyu2y'}
{'comment': 'Fucking nailed it', 'created': '2024-11-07 02:57:02', 'submission_id': '1gkyu2y'}
{'comment': 'He didn’t take away their right to an abortion. He just dropped it from a federal level, which it wasn’t supposed to be in the first place. It is at a state level, which is better because we need small government and have the people make the choices. The federal government should not have asay in everything. He is not banning abortion.', 'created': '2024-11-07 03:04:12', 'submission_id': '1gkyu2y'}
{'comment': 'I read comments like "well now women will die from birthing complications because they can\'t get the Healthcare they need!" It\'s insane.', 'created': '2024-11-07 03:36:11', 'submission_id': '1gkyu2y'}
{'comment': 'I have two daughters so yes, I voted for Trump, for many reasons, but one is the reason that right now they are young and in elementary school and a lot of sports are coed, so it’s no big deal however as they get older, how can a girl compete against a boy in sports? She won’t be able to if the democrats have their way she’ll never will. \nFor the record even young boys in soccer can outpace young girls.', 'created': '2024-11-07 03:37:57', 'submission_id': '1gkyu2y'}
{'comment': 'Murdering children isn’t a woman’s right or anyone’s right', 'created': '2024-11-07 04:23:42', 'submission_id': '1gkyu2y'}
{'comment': 'Killing an unborn baby late term isn’t a right. Gun rights is a right.', 'created': '2024-11-07 04:49:44', 'submission_id': '1gkyu2y'}
{'comment': 'The last calls it reproductive rights.\n\nNot one single woman has ever been denied the right to reproduce. Let that sink in a bit.', 'created': '2024-11-07 05:03:30', 'submission_id': '1gkyu2y'}
{'comment': 'The amount of people acting as if the sky is falling is pathetic. And then I remember, they’re just loud. There’s not as many who are carastrophizing as one might BE LED TO BELIEVE. I hope they snap out of it soon - they’re just wasting time.', 'created': '2024-11-07 06:10:02', 'submission_id': '1gkyu2y'}
{'comment': 'It disgusts me that some people thought they were protecting their children with the “right to abortion,” which, like you said, isn’t even an issue she could’ve fixed. \n\nWhy aren’t parents teaching their child not to be a promiscuous or at least teaching them to be safe? Is this really the biggest issue to them?? It’s insane', 'created': '2024-11-07 07:16:12', 'submission_id': '1gkyu2y'}
{'comment': 'I think it’s very dangerous and immoral what she’s done by making this a gender issue. She’s created a divide among women and made a lot of them look very stupid. It’s manipulation', 'created': '2024-11-06 19:54:45', 'submission_id': '1gkyu2y'}
{'comment': 'HOW ABOUT THIS, pregnant women need healthcare. That’s something the deranged left should be concerned about, not killing babies.', 'created': '2024-11-06 20:44:41', 'submission_id': '1gkyu2y'}
{'comment': 'The right to have an abortion in your state wouldn’t change if Kamala wins vs trump. No state in America allows a woman to die due to a pregnancy complication. That’s medical malpractice. Not the law. The issue is some states won’t allow an abortion after a very early number of weeks. While other states allow abortion up until birth. Most states are pretty middle ground. If you don’t like the laws regarding abortion in your state, you get it on the ballot, you vote, you change it. Not that hard to understand.', 'created': '2024-11-06 20:55:18', 'submission_id': '1gkyu2y'}
{'comment': 'Funny how liberals say healthcare is a human right but birth isn’t?', 'created': '2024-11-06 23:41:39', 'submission_id': '1gkyu2y'}
{'comment': 'The whole women’s rights topic is horse shit to me. People should just use some form of birth control condoms if they don’t want kids. Yes it’s that simple', 'created': '2024-11-07 00:59:23', 'submission_id': '1gkyu2y'}
{'comment': 'Yeah and about the “my body my choice” \n\nI’m pretty sure the baby’s body growing inside of a woman isn’t her body', 'created': '2024-11-06 19:04:57', 'submission_id': '1gkyu2y'}
{'comment': '100% true. The republicans want nothing to do with abortion at a federal level from what I’ve seen. Women should go vote in their state and stop making crazy assumptions.', 'created': '2024-11-06 19:27:07', 'submission_id': '1gkyu2y'}
{'comment': 'Yep - it’s a totally dumb rhetoric. Their go to piece to hate on trump. \n\nThe guy has a wife and daughter, highly doubt he ‘hates’ women', 'created': '2024-11-06 19:28:36', 'submission_id': '1gkyu2y'}
{'comment': 'I am a woman and duo citizen (US & Cad) I feel safe enough to move to America now.', 'created': '2024-11-06 19:52:49', 'submission_id': '1gkyu2y'}
{'comment': "Well said. The democrats just ignore Trump's platform that he is pro IVF and that the states will decide abortion...just like they did last night when 7 states added it to their constitution.", 'created': '2024-11-06 20:09:13', 'submission_id': '1gkyu2y'}
{'comment': 'The part I don’t get is this “right” was overturned in 2022. They have had two years in office to “fix it” and haven’t.', 'created': '2024-11-06 20:37:59', 'submission_id': '1gkyu2y'}
{'comment': 'People are having trouble affording food and being safe on the streets and their only concern is whether or not they can kill babies. Shows how detached from reality these Dems really are.', 'created': '2024-11-06 21:00:45', 'submission_id': '1gkyu2y'}
{'comment': "Now that the election is over, the abortion issue can be put to bed until at least 2026 mid-terms when the 'left' can try and use it AGAIN to divide Americans. '", 'created': '2024-11-06 21:46:12', 'submission_id': '1gkyu2y'}
{'comment': 'I keep telling my lefty friends “nobody wants to take your right to murder your ugly annoying baby in a demonstration of piety to your dark god molech” , we just want “common sense abortion legislation” .', 'created': '2024-11-06 17:18:28', 'submission_id': '1gkyu2y'}
{'comment': 'The left is obsessed with being able to get raw dogged with no consequences.', 'created': '2024-11-06 20:04:21', 'submission_id': '1gkyu2y'}
{'comment': 'Her right to safety, especially in female safe spaces', 'created': '2024-11-07 00:01:50', 'submission_id': '1gkyu2y'}
{'comment': 'I also am a woman and voted for my daughter’s rights! I want her to grow up in a world like I did. Men’s sports and women’s sports. Freedom of speech. Freedom to use the bathroom without a male inside it. Freedom to voice her opinions without being “cancelled” for “hate speech” which isn’t hate speech at all. A secure border. Feeling safe walking the streets without rampant crime and the fear of being raped', 'created': '2024-11-07 01:58:37', 'submission_id': '1gkyu2y'}
{'comment': 'My position exactly! It was horrifying what they were willing to throw away for the false narrative that abortions were in jeopardy. Thank God there were enough free thinkers left in this country to stop them.', 'created': '2024-11-06 19:05:56', 'submission_id': '1gkyu2y'}
{'comment': 'Amen, Sister. You figured it out instead of being told, just like the other women who voted for Trump.', 'created': '2024-11-06 19:48:01', 'submission_id': '1gkyu2y'}
{'comment': 'Just gonna say it, fuck the right to "choose" to kill babies. I support the right to live. If anyone can relate to that, it\'s mothers.', 'created': '2024-11-06 20:31:50', 'submission_id': '1gkyu2y'}
{'comment': 'You nailed it! I’m excited to see how he will make IVF affordable for women!', 'created': '2024-11-06 21:19:39', 'submission_id': '1gkyu2y'}
{'comment': "Project 2025 and the Democrats scare mongering. \n\nCouple of weeks ago I pointed out on r/ menopause that Project 2025 was not Trump's platform. Truth. I'm sure I got down voted to heck, but I was so tired of these scare tactics. Then they attacked me bringing up other things unrelated to my post. \n\nIf you believe Project 2025 is what is going to happen (as if all that could happen) then maybe sort of feel like it would be downhill/backwards. But I don't believe it is his platform or that even half of it can be done. Even with having the house and senate, they are unlikely to address all the things in that project especially as it relates to women in 2 years. There are other more important things to address. (2 years being when voting happens again and we could lose the senate or something.) Even if we get all 4, they just aren't going to do everything in that project. \n\nI have not read the project but was able to gather info about it regarding women. \n\nOne BIG concern they have is not being able to get the abortion pills. \n\nPersonally I'm ok with a morning after, but after several weeks it is too hard on a woman's body. They don't want women to know that it isn't like birth control. It's a medical miscarriage and there might be baby parts the further along. How gruesome to see you killed your baby. In a clinic they whisk that away.", 'created': '2024-11-06 21:29:05', 'submission_id': '1gkyu2y'}
{'comment': 'GOD BLESS YOU OP!\n\nDONT LET THESE CLOWNS CONTROL YOUR SPEECH. THEY CRUMBLE SO EASILY, LOOK AT ALL OF THEIR SUICIDE POSTS.', 'created': '2024-11-06 21:31:55', 'submission_id': '1gkyu2y'}
{'comment': 'The only thing missing I think is safety. We have known terrorists who need to be found and third world gangs here. Your daughter and my future kids shouldn’t have to worry about any of that here!', 'created': '2024-11-06 22:01:44', 'submission_id': '1gkyu2y'}
{'comment': "Well said! I wish this could be blasted on all the lib networks ❤️ Our daughters have the right to all of this, but sure let's focus on abortion and hating Trump, that's what's really important for our daughters. /s", 'created': '2024-11-06 22:09:08', 'submission_id': '1gkyu2y'}
{'comment': 'Nailed it', 'created': '2024-11-06 16:14:47', 'submission_id': '1gkyu2y'}
{'comment': 'Nailed it 👏', 'created': '2024-11-06 16:14:50', 'submission_id': '1gkyu2y'}
{'comment': 'I can’t believe how many people want to off their own child. It baffles me.', 'created': '2024-11-06 19:57:36', 'submission_id': '1gkyu2y'}
{'comment': "The core issue of the left is not listening to the people. Pointing fingers looking to blame the next bad guy without ever admitting fault, self-reflecting or taking accountability for push back against divisive narritives.\n\nI say this as someone who identifies as centre-left but also left politically homeless, with only extreme left parties to choose from.\n\nKamala Harris lost because she didnt get the male vote, plain and simple and the same will happen here in Australia.\npeople are over the anger and sick of the widespread hate being pushed by victim mentality.\n\nIf you spend years creating division. constantly vilifying men & blaming the patriarchy for every problem, supporting negative views toward men, you can't expect them to answer your call for support.\n\nIf you vilify & neglect an entire demographic, it’s no surprise they stop showing up.\n\nThe left has failed to connect with male voters, the majority of men feel sidelined and misunderstood. Issues that disproportionately impact men, like the suicide crisis & support for male victims of DV are ignored. \n\nThe sentiment and feelings of the majority of men is that they don't matter.\n\nEquality shouldn’t feel adversarial, It should bring everyone into the conversation with kindness, listening to genuinely understand—not just respond.\n\nThe woke movement has been catastrophic, it needs to be replaced with real inclusion without the hate.\n\nIf the left stay stubborn & don't de-escalate division more voters will be pushed away. More & more countries will follow America's lead. \n\nI'm no longer even sure if that's actually a bad idea.", 'created': '2024-11-07 02:53:15', 'submission_id': '1gkyu2y'}
{'comment': 'The Democrats are using scare tactics because they don’t have substantive policies that rational Americans would support.', 'created': '2024-11-07 02:57:51', 'submission_id': '1gkyu2y'}
{'comment': 'Dems have been living off fear mongering. The more radical they have gotten the more radical their lies have gotten as well. They’re only chance of really defeating Trump was to convince everyone that he is literally Hitler and that he was gonna take everyone’s rights away obviously, there’s no evidence that he was gonna do that so they just use vague statements about abortion and it turning into the handmaid’s tale clearly it didn’t exactly work', 'created': '2024-11-07 03:35:54', 'submission_id': '1gkyu2y'}
{'comment': 'No seriously, these people are absolutely insane!!🤦🏼\u200d♀️ \n\nTo answer your last sentence (from my own research lmao) it’s not just about abortion anymore, it’s about women’s access to healthcare including birth control, abortions, plan b, and healthcare privacy. Which is crazy, it would be extremely difficult to ban nationwide plan b and birth control. \n\nThe sub thegirlssurvivalguide has like 50 people telling women to delete their period tracker apps because they can “prosecute you if you don’t track a period right because they’ll think you had an abortion.” Honestly I thought they were trolling. I got banned for asking if they were serious😂😭', 'created': '2024-11-07 08:38:43', 'submission_id': '1gkyu2y'}
{'comment': 'Amen! I have 14 neices!', 'created': '2024-11-07 10:33:36', 'submission_id': '1gkyu2y'}
{'comment': "I missed the part in project 2025 where there were mandatory insemination chambers\n\nBoggles the mind how the abdication of personal responsibility became such a trigger issue. I remember in grade school we learned about the birds and the bees, contraceptives and saying no \n\nIf they actually cared about women's rights there would be a push to educate on programs such as planned parenthood and options for reducing chances of pregnancy \n\nThe vulgar statement I cannot make on my Facebook page would be 'it's okay to keep your legs closed'", 'created': '2024-11-07 14:26:59', 'submission_id': '1gkyu2y'}
{'comment': 'You aren’t missing anything. There’s an old episode of the Simpsons where principal Skinner has a moment where he was mocked by the kids in his school for something he said or did (can’t remember exactly what his transgression was.) In his moment of reflection he asks himself “could it be that I’m so out of touch, I’m wrong on this issue?” Then within a few seconds of contemplation, he says “no…it’s the children who are wrong.” \n\nThis is a perfect representation of the establishment; or as I prefer to call them, the empire. The empire consists of career politicians (on teams red *and* blue) as well as the corporate media (msnbc, cnn, Fox, abc, nbc, cbs, pbs, et al) and Hollywood, and the daytime and late night talk shows, and the music industry and on and on and on and on, ad infinitum. \n\nThe empire has been telling us (us being Americans who have voted team red and/or team blue…Americans who have enjoyed music, movies, etc. for years) that we are wrong, we need more government, we need more control, most of all-*war is good*. Well the empire showed its cards when Trump came down the escalator. They went from suggesting we might be wrong to full on calling us nazi, fascist, racist, (insert root word of your choice)-phobic. They’ve screamed at us and used inflammatory rhetoric while demanding our compliance and allegiance. \n\nWe finally were backed into a corner and we pushed back. We the people voted overwhelmingly for a real estate billionaire from NY who drug the Republican Party along with him. Once elected, the empire resisted him at every turn. He alone couldn’t accomplish a lot because he faced so much resistance. Four years later, he was defeated in favor of a perfect tool of the empire (Biden.) Biden has been an empire tool for five decades. He is the epitome of politician in that he stands for nothing and simply licks his finger and holds it to the wind to determine his platform. An obvious choice to the bidding of the empire. *Allow me to sit at the big desk and I’ll do whatever you like.* As Biden adopted the platform of the far left that distract us (trans, abortion, etc.) but in reality, adopted the platform of the empire (endless war, empire building, propaganda, etc.) Four years of telling us that it’s good that men can expose themselves in women’s locker rooms after beating those women in their sports, sexualizing our children, displaying their sexual proclivities in public, etc., we were once again backed into a corner. Again, we pushed back. \n\nWe the people overwhelmingly voted for the New York billionaire. But the New York billionaire is smart. He went away four years ago and regrouped. He returned with former democrats who have power, wealth, and influence. Elon, Tulsi, RFK, Rogan, Weinstein, Taibi, Pool, Greenwald, on and on. We (not the republicans) the people overwhelmingly defeated their insane ideology. We won the popular vote, the electoral vote, the house, the senate. We showed the insane leftists that we don’t want to subscribe to their religion. We love women. We love children. We want to protect them and watch them thrive. \n\nIn this defeat, the left went full principal Seymour Skinner. ***If*** they actually had a moment where they contemplated the possibility that they were out of touch, they very quickly doubled down and said “no…it’s the children who are wrong.”', 'created': '2024-11-07 14:42:49', 'submission_id': '1gkyu2y'}
{'comment': 'Well said!', 'created': '2024-11-07 16:29:40', 'submission_id': '1gkyu2y'}
{'comment': 'I said this on another post, and this fit perfectly here! All these "girls" talking about their rights are gone....Where did they go? They just vanished when Trump was elected president? What would Kamala have done? They didn\'t do anything about your rights when they were in office what difference would it have made if she took office? Nothing would\'ve have changed. Talk about the women in other countries who literally don\'t have rights. Who are forced into marriage, who can\'t get a divorce, who can\'t vote, who cant get certain jobs, who can\'t leave their house without their husband\'s permission, can\'t drive a car, etc. etc. The list goes on and on.....', 'created': '2024-11-07 17:01:38', 'submission_id': '1gkyu2y'}
{'comment': "These women will bash a man 24/7 for three years and then for the 1 year the election rolls back around, said women will expect men to be on their side and support them and their candidate...i just can't understand it.", 'created': '2024-11-07 17:11:10', 'submission_id': '1gkyu2y'}
{'comment': "Amen! I'm a father of 4 with a daughter and get asked if I care about my daughter. Yes. Immensely. More than any other woman, and that's why I voted.", 'created': '2024-11-07 21:20:09', 'submission_id': '1gkyu2y'}
{'comment': "You aren't missing anything. The other side is willing to vote for the unraveling of every other traditional societal norm in an effort to legalize the killing of unborn humans. This is a level of brainwashing that is difficult to comprehend.", 'created': '2024-11-07 22:15:21', 'submission_id': '1gkyu2y'}
{'comment': 'https://x.com/fuentesupdates/status/1854012747027189907?s=46&t=S4uLK8HM3wW31gHrYLnhbQ', 'created': '2024-11-08 02:07:20', 'submission_id': '1gkyu2y'}
{'comment': 'Amen and amen', 'created': '2024-11-08 03:09:34', 'submission_id': '1gkyu2y'}
{'comment': "Baby killing isn't a right.\xa0 We need to stop referring to baby killing as abortion.\xa0 An abortion is a medical procedure required in pregnancy situations where the mother's life is at risk during the pregnancy such as in the case of an ectopic pregnancy where keeping the baby would result 100% of the time in both mother and child dying.\xa0\xa0", 'created': '2024-11-08 06:05:03', 'submission_id': '1gkyu2y'}
{'comment': ">I HAD to vote Trump to protect rights she has that are much bigger than abortion.\n\nInteresting take. I'd like to go into it. \n\n>Her right to free speech\n\nHow was free speech at risk by either party? \n\n>her right to assemble, to protest\n\nOnce again... Huh? \n\n>her right to exist as a female in exclusively female spaces like sports and restrooms\n\nY'know... Fair enough. \n\n>to bear arms\n\nAs long as SCOTUS remains how it is the 2nd amendment is well protected. Saying that I understand your point there. \n\n>her right to not have gender confusion or mutilation pushed onto her\n\nNo one was trying to do that. \n\n>her right to be educated and raised by her parents and not the government\n\nFun fact! Homeschooled kids actually tend to do better in college. So yeah. Full support. \n\n>Most importantly her right to be an innocent child. \n\nThat's more an internet problem than a government problem.", 'created': '2024-11-06 19:01:09', 'submission_id': '1gkyu2y'}
{'comment': "Last time I checked, womens' right to choose extends beyond abortion. Crazy, right? It also included our right to vote. \n\nI get so much hate from women because I voted for Trump. My vote my choice!", 'created': '2024-11-06 20:20:42', 'submission_id': '1gkyu2y'}
{'comment': 'The voters did not care about that', 'created': '2024-11-06 20:39:38', 'submission_id': '1gkyu2y'}
{'comment': "You're missing nothing, as a 38 year old woman with a 5 year old daughter I agree with what you are saying and those things for my daughter very much matter to me. As an independent who has voted both sides of the ticket these issues spoke very loudly to me and are something I want our country to work towards addressing and hopefully fixing. If abortion was such a big issue for Dems why was nothing done the last 4 years especially with Kamala as VP...it just didn't make sense to me to vote for her.", 'created': '2024-11-06 22:06:33', 'submission_id': '1gkyu2y'}
{'comment': 'The left loves to attack men, especially young straight men for no reason at all. Tired of their shit.', 'created': '2024-11-06 22:17:36', 'submission_id': '1gkyu2y'}
{'comment': 'As a women myself I feel like if Kamala won and let the transgenders into our bathrooms our rights would be taken and the amount of cases of assault will rise. It’s my first time voting and I can finally say Thank God for trump and God bless him', 'created': '2024-11-07 02:27:22', 'submission_id': '1gkyu2y'}
{'comment': 'Yes!!! I’m a woman and I have 2 daughters and I could never vote for someone who wants to force them against their will to be boys or allowing MEN in our female bathrooms or giving MEN free feminine products when I’ve had to pay their pink tax for ages. Standing up for women is voting for Trump! \n\nAlso, I feel like abortion isn’t even a real issue for dems because what’s the point of forcing kids to be the opposite gender and injecting fake history and news in their brains if they just wanted to abort them all anyway?? It’s so hypocritical. Biden could’ve done something related to abortion, and he didn’t. Kamala was VP and she did nothing either. 🤷\u200d♀️\n\n(If my kids decide they want to not be girls, that’s something they can decide as adults, not children!)', 'created': '2024-11-06 20:20:29', 'submission_id': '1gkyu2y'}
{'comment': 'Bravo', 'created': '2024-11-06 20:29:31', 'submission_id': '1gkyu2y'}
{'comment': 'This is their only argument. All I see is that he banned it.. I tell everyone that Google is in fact a free source they can use to look up credible source information. Sick of people jumping wagons without actual facts! What’s worse is when you show people the factual information most dems call you aggressive and angry 😂 so over it!', 'created': '2024-11-06 21:39:48', 'submission_id': '1gkyu2y'}
{'comment': "I do have a question and hoping to not get blasted. \nAs far as the abortion piece-While I don't agree with it. \nI can be on hesitation/potential on board if it's before 8 weeks and/or for medical issues(threat to the mother), forced entry(don't wanna say it), or incest. \n\nWith states like Texas-the ban includes medical correct? \n\nAnyways, on board with all of what you said otherwise.", 'created': '2024-11-06 16:55:51', 'submission_id': '1gkyu2y'}
{'comment': 'So OP, you prefer your daughter to die than to have the possibility to abort an unviable fetus causing her severe complications? Quite cruel. Hard ti believe millions of mothers in USA actually prefer death to their daughters.', 'created': '2024-11-06 18:26:02', 'submission_id': '1gkyu2y'}
{'comment': 'Girls sports being for girls is great.\n\nWomen cannot compete against men at the competetive level without risking injury. Womens sports already dont get any money because of no viewers, so having men come along and sweep up the sparse handful of scholarships or sponsorships women DO get is fucked and will eventually force women out of the athletic arena altogether. All without passing a single law.', 'created': '2024-11-07 16:44:36', 'submission_id': '1gkyu2y'}
{'comment': "There's her right to not get killed/raped by a criminal migrant.", 'created': '2024-11-06 21:45:11', 'submission_id': '1gkyu2y'}
{'comment': 'No bio men in her sport categories?', 'created': '2024-11-07 07:27:34', 'submission_id': '1gkyu2y'}
{'comment': None, 'created': '2024-11-06 17:20:47', 'submission_id': '1gkyu2y'}
{'comment': "Roe v wade was fixed. It was a state level issue, not federal. Too many people don't understand how the US government is supposed to work and how state governments interact with each other and the federal government.", 'created': '2024-11-06 22:52:21', 'submission_id': '1gkyu2y'}
{'comment': None, 'created': '2024-11-06 17:01:54', 'submission_id': '1gkyu2y'}
{'comment': 'The “women’s rights” rhetoric was fear-mongering nonsense throughout the Harris campaign. First of all, on abortion, Harris wouldn’t have been able to do anything because Roe v. Wade was overturned. So this was an empty promise. But the issue somehow spiraled into this vague doomsday language where you had people like Michelle Obama and Oprah talking about how Trump wants to take away women’s right to vote?? Ffs. I’m so glad enough voters saw through the bullshit.', 'created': '2024-11-06 21:26:49', 'submission_id': '1gkyu2y'}
{'comment': 'Exactly they had many chances to pass something since roe v wade ruling to when it was overturned yet did nothing.', 'created': '2024-11-06 18:26:52', 'submission_id': '1gkyu2y'}
{'comment': 'Because the democrats don’t care about women’s rights. It’s all bullshit', 'created': '2024-11-06 19:10:51', 'submission_id': '1gkyu2y'}
{'comment': 'This is 💯. Thank you!', 'created': '2024-11-06 19:06:37', 'submission_id': '1gkyu2y'}
{'comment': 'The same reason the didn’t legalize marijuana, they really don’t care. It’s about power.\n\nConsider this:\n\nThe conservative movement often revolves around a strong nuclear family. To break through conservative values they need to eliminate that. Abortion and trans rights over women’s rights is an a front to the nuclear family.\n\nMost I know would support common sense abortion laws, the issue with trans rights is, what they are really saying is someone else has the right to dissolve your nuclear family if they so choose to change your child or they have the right to force your daughter to compete unfairly against a biological male, or their safe spaces are invaded, etc', 'created': '2024-11-07 00:07:56', 'submission_id': '1gkyu2y'}
{'comment': "Exactly!! Don't listen to people who can't even think for themselves.", 'created': '2024-11-06 19:48:36', 'submission_id': '1gkyu2y'}
{'comment': 'somebody finally says it', 'created': '2024-11-07 02:47:33', 'submission_id': '1gkyu2y'}
{'comment': '👏🏼Amen!! 🥳🇺🇸', 'created': '2024-11-06 21:08:23', 'submission_id': '1gkyu2y'}
{'comment': 'Amen to this! Same here.', 'created': '2024-11-07 08:22:27', 'submission_id': '1gkyu2y'}
{'comment': 'Thank you for this. I just got into a huge argument with my mom because she couldn’t believe how I could vote red. I also considered myself a Dem for my entire life up until the last few years. I’m glad to see I’m not the only one going through this shift', 'created': '2024-11-06 17:38:37', 'submission_id': '1gkyu2y'}
{'comment': 'A lot of women (myself included) vote red for what you mentioned. Family values. And good luck on TTC. We just found out I’m expecting.', 'created': '2024-11-06 20:46:11', 'submission_id': '1gkyu2y'}
{'comment': "Thank you for paying attention! That's precisely what's going on. People are followers who cannot think for themselves, are people pleasers, and do not pay attention.", 'created': '2024-11-06 19:53:18', 'submission_id': '1gkyu2y'}
{'comment': "I voted for the first time in my life in 2016 when I was 40 years old to vote for Trump. To me, prior they were all the same. The same slimy career politicians who got rich from being in an elected position was on either side. Then came Trump. Did he become rich by also being slimy? Idk and idc, because he didn't get rich as a public servant from being slimy. That's when I started paying very close attention to politics and haven't looked back. I'm praying after Trump we have Vance in 28 & 32. They aren't the same breed of politicians from before. When you see all the other living ex-President's standing in support of Harris regardless of party affiliation, that's all you need to see to get that they truly were all the same. Today's Republican party has become the party of the blue collar men and women, party of law and order, party of true conservative small town values. They have a fantastic opportunity and excellent momentum right now, and I hope they don't waste a moment of it.", 'created': '2024-11-07 00:04:34', 'submission_id': '1gkyu2y'}
{'comment': "I've seen some people saying it will go back to the 1950s. Like Shirley, you can't be serious", 'created': '2024-11-06 19:39:14', 'submission_id': '1gkyu2y'}
{'comment': "I saw woman saying the same damn shit in 2016. An previous restaurant co-worker had commented after the results in 16 that it was a sad day for women's rights. I asked her what rights were we at risk of losing. She blocked me. Lol. Guess what her profession was by then? Teacher. Isn't that fantastic?", 'created': '2024-11-07 00:08:55', 'submission_id': '1gkyu2y'}
{'comment': 'So sorry to hear about your MC! I know how difficult it can be for you and your partner!! Wishing you the best of luck on your present journey! Thank you for caring about the lives of your children as well as those of all Americans! 🫶🏼', 'created': '2024-11-06 21:06:54', 'submission_id': '1gkyu2y'}
{'comment': 'He didn’t allow it. The Supreme Court overruled a bad decision allowing it.', 'created': '2024-11-06 19:58:08', 'submission_id': '1gkyu2y'}
{'comment': 'Co-signing this - as a woman I was thrilled to wake up to the election result and it’s been a while since I truly felt this much hope for the next few years. A true win 🥂', 'created': '2024-11-06 18:39:14', 'submission_id': '1gkyu2y'}
{'comment': "To be honest, I don't think prices will go down... I'm thinking we will have more money to buy the groceries. Regulated prices like gas... And corn.... Might go down... But the idea is to have a better job making or keeping more of your money earned to spend it...", 'created': '2024-11-06 17:26:11', 'submission_id': '1gkyu2y'}
{'comment': 'Me too, I let her stay up and watch the election with us and told her that this is what it meant to be an American, to vote accordingly for what you think is right, and what it means to elect a president. After all of that she was elated we elected trump☺️ her excitement was so cute.', 'created': '2024-11-06 20:04:25', 'submission_id': '1gkyu2y'}
{'comment': 'Hate to tell you this prices won’t go down. Pretty simple supply and demand. They raise prices up to the threshold that people are willing to pay. If their expenses went up they will pass that cost on to the consumer. The best case scenario, we make more money and prices don’t continue to go up….', 'created': '2024-11-07 13:44:59', 'submission_id': '1gkyu2y'}
{'comment': 'One issue here tho. In Florida they needed 60% to pass. Women makeup 50%. It’s not very fair', 'created': '2024-11-06 19:33:47', 'submission_id': '1gkyu2y'}
{'comment': 'Bro why you gotta bring up Hail Mary’s…\n\n- Bears fan', 'created': '2024-11-07 14:04:33', 'submission_id': '1gkyu2y'}
{'comment': 'Not just that, but why are people thinking their daughters getting abortions is a GOOD thing? I’d be pretty upset if that was my daughter’s decision. We would find a way to help support her & the baby. But it shows more breakdown of the nuclear family I guess.', 'created': '2024-11-07 07:03:29', 'submission_id': '1gkyu2y'}
{'comment': 'Since when do the far-left actually care about what citizens want though? They always prefer government overreach. They are literally claiming that democracy is at stake, spreading fear and misinformation while being the ones attempting to remove democracy from the people. It’s insanity.\xa0', 'created': '2024-11-06 20:58:58', 'submission_id': '1gkyu2y'}
{'comment': 'They say take away but what they mean to say is the Supreme Court said that abortion is not a constitutional right and therefore must be decided at the state level. If abortion is a constitutional right then the states cannot deny access to kill babies. This is this compliant.', 'created': '2024-11-06 21:40:24', 'submission_id': '1gkyu2y'}
{'comment': 'Yes and before the ruling, states still had individual abortion laws. The ruling just gave states more leeway in these protections, such as they could ban abortions before viability so nothing really changed.', 'created': '2024-11-08 02:16:23', 'submission_id': '1gkyu2y'}
{'comment': 'I went off on a woman saying this. Like it’s so old & they are still saying he’s gonna do project 2025. It’s getting extremely annoying. \nThere were even gay people literally crying and saying I was supposed to marry my partner in summer of 2025 & now I won’t be able to. Wtf?! He ain’t taking anything away. A couple people I saw even said that Trump is going to round up all LGBTQ & out then in concentration, “camps”. Like they are losing their minds!\nHe’s been president before and nothing bad happened & I was in a way better position & mentally also.', 'created': '2024-11-07 08:33:06', 'submission_id': '1gkyu2y'}
{'comment': 'Please invade Canada', 'created': '2024-11-06 21:35:21', 'submission_id': '1gkyu2y'}
{'comment': 'You are right Supreme court made a statement that no president will be able to change it and it is a state by state thing.', 'created': '2024-11-06 16:14:12', 'submission_id': '1gkyu2y'}
{'comment': 'The problem is people don’t trust their states to make the right decisions. But they did vote for their governors so it’s kinda on them lol', 'created': '2024-11-06 19:36:13', 'submission_id': '1gkyu2y'}
{'comment': 'Or reddit. But not good subs.', 'created': '2024-11-06 21:33:22', 'submission_id': '1gkyu2y'}
{'comment': 'Guaranteed that there will be women dressed as the Handmaids Tale on Inauguration Day.', 'created': '2024-11-07 07:05:41', 'submission_id': '1gkyu2y'}
{'comment': "They think Trump is going to ban birth control. It's completely unhinged the stuff they believe.", 'created': '2024-11-06 21:26:15', 'submission_id': '1gkyu2y'}
{'comment': 'Yes!! I’ve had to leave pregnancy subs because they’re all freaking out insisting they’re going to die giving birth just because Trump was elected president??? It’s crazy.', 'created': '2024-11-09 04:39:06', 'submission_id': '1gkyu2y'}
{'comment': 'There have actually been MORE abortions since it was put into the states hands. What are they screaming about?', 'created': '2024-11-07 07:28:19', 'submission_id': '1gkyu2y'}
{'comment': 'I call it the REAL “Inconvenient Truth”. Having a late 2nd or 3rd trimester abortion- they should have to learn about fetal development & what stage their fetus is in. \n\nI’m not 100% sure how I feel about a 1st & early 2nd trimester abortion, but I do know that when Roe v Wade was first passed the country was much different, without ultrasound to show the baby actually moving, sucking it’s thumb, etc, & birth control was not easy to get (behind the counter for condoms & disapproval from Dr for the pill if you were unmarried).', 'created': '2024-11-07 07:23:08', 'submission_id': '1gkyu2y'}
{'comment': 'Teen boys won against the Olympic women’s soccer team!', 'created': '2024-11-07 07:33:41', 'submission_id': '1gkyu2y'}
{'comment': 'No, they are too busy destroying the health centers that provide pregnant moms with supplies. “Pro-choice” my ass. They only support THEIR choice.', 'created': '2024-11-07 07:25:04', 'submission_id': '1gkyu2y'}
{'comment': 'Texas allows for medical but most states allow for all the exceptions', 'created': '2024-11-06 17:10:57', 'submission_id': '1gkyu2y'}
{'comment': 'This was my biggest thought when they would say “think of your daughter” l live in so cal and I already have to watch her like a hawk in public.', 'created': '2024-11-07 05:14:49', 'submission_id': '1gkyu2y'}
{'comment': "Yeah. I worry about my wife even. If we go on vacation, I'm always watching for suspicious men at airports and tourist areas. Not in a paranoid way, but in a paying attention kind of way. Lord help the demon that would ever harm her, a firearm will be the least of their issues", 'created': '2024-11-07 22:19:23', 'submission_id': '1gkyu2y'}
{'comment': "TBF I'm pretty sure they weren't expecting Roe to ever be overturned so it probably seemed unnecessary.", 'created': '2024-11-06 19:34:50', 'submission_id': '1gkyu2y'}
{'comment': "Almost all the controversial far left policy changes that have changed this country haven't been legislated, they've been judicated. They don't want the policy change on their hands. They want to use the judicial branch first to change the policy, get the electorate used to the idea that's been forced on them, and then they don't have to worry about their vote coming back to bite them.\n\nThis is Progressivism. We broke their system and their piping mad.", 'created': '2024-11-06 23:24:42', 'submission_id': '1gkyu2y'}
{'comment': 'It is more like a religious sacrament to the farthest left, but that wing of the party was not nearly so dominant in 2008 as it is now.', 'created': '2024-11-06 18:36:56', 'submission_id': '1gkyu2y'}
{'comment': 'Because they like moaning and bitching about what needs to be done and gives them taking points on why we are so bad and monsters. They tell you what’s wrong how they “Intend” to fix it but ya notice they never do. And I believe the people have had enough! And this election sends that message!', 'created': '2024-11-07 14:27:06', 'submission_id': '1gkyu2y'}
{'comment': 'And they also don’t understand that Kamala can’t do anything about Roe. If she could why didn’t they do it already in this administration? People don’t think critically', 'created': '2024-11-07 02:51:18', 'submission_id': '1gkyu2y'}
{'comment': "Can you explain to me like I am 5 please? I don't mean that sarcastically, genuinely trying to learn. Why did even RBG want to overturn Roe and why is it good that it's a decision at the level of the states instead of the individual? \n\nI agree with the majority of the right in abortion stance. However I do know that 2 responsible adults can genuinely have an accident occur, and not know until ~5-6 week period which many states is the limit. I do recall even Trump himself saying he thinks that's too soon.", 'created': '2024-11-07 14:21:21', 'submission_id': '1gkyu2y'}
{'comment': 'Even RBG said that *Roe* needed to be overturned and she further said that if it came to the Court, she would vote to overturn. She died before that happened, but even as blue as she is, she understood that *Roe* was a bad ruling, as it legislates and that is not the job of the Court. Giving power back to the states to decide is the correct decision.', 'created': '2024-11-06 17:51:16', 'submission_id': '1gkyu2y'}
{'comment': "Why? Why can't it just be a choice up to the person in the entire country and then on top of that. States are putting it into law that to try and move to another state to get an abortion is a criminal offense. Personally I feel it should be a choice a woman should be able to make it shouldn't involve the state at all.", 'created': '2024-11-06 19:14:18', 'submission_id': '1gkyu2y'}
{'comment': 'Honestly, I’m proud of us for waking up. And I’m sorry you’re going through that with your mom. My family gets INTO it over politics at any family function because majority are democrats and my mom is a republican and she doesn’t back down. I always thought she was crazy, now I get it. We should be proud of our choice 🫂', 'created': '2024-11-06 18:37:11', 'submission_id': '1gkyu2y'}
{'comment': None, 'created': '2024-11-06 17:54:47', 'submission_id': '1gkyu2y'}
{'comment': 'Ahhh! Congratulations!!! May you have a smooth, beautiful pregnancy!! 🥳', 'created': '2024-11-06 21:04:31', 'submission_id': '1gkyu2y'}
{'comment': 'CONGRATULATIONS!! 😍🙏', 'created': '2024-11-06 20:48:13', 'submission_id': '1gkyu2y'}
{'comment': "Honestly, I agree with you. And don't call me Shirley! /s just in case", 'created': '2024-11-06 20:11:14', 'submission_id': '1gkyu2y'}
{'comment': "Hopefully, we'll get some tax relief, and that will help.", 'created': '2024-11-06 18:53:57', 'submission_id': '1gkyu2y'}
{'comment': 'Yeah but not all women are for abortion. I for one am against it and there are many women out there that are against it too.', 'created': '2024-11-06 22:34:26', 'submission_id': '1gkyu2y'}
{'comment': 'The project 2025 thing is just super annoying. Idk if you seen but some republican figures on Twitter were sarcastically tweeting “ok now that we won the election it’s time to admit project 2025 is real” and liberals are going insane about it😂\n\nTrump has denied project 2025, he’s denied that he will call for a nationwide abortion ban, he said he wants IVF to be govt/insurance paid. I’m not sure what the disconnect is here but it’s obviously the media brainwashing the masses into thinking something different than what is coming out of his OWN mouth.', 'created': '2024-11-07 16:57:04', 'submission_id': '1gkyu2y'}
{'comment': '😂 Canada seems horrifying', 'created': '2024-11-06 21:42:48', 'submission_id': '1gkyu2y'}
{'comment': 'If women are really that concerned about getting access to abortion, either move or travel to a state that allows abortion.', 'created': '2024-11-06 17:07:37', 'submission_id': '1gkyu2y'}
{'comment': 'At this point I am convinced that all the democrats want is someone to call victims so they can yell about something.', 'created': '2024-11-09 19:21:21', 'submission_id': '1gkyu2y'}
{'comment': 'Then it wasnt that important to them if ensconcing it wasnt a priority.', 'created': '2024-11-07 00:53:04', 'submission_id': '1gkyu2y'}
{'comment': 'RBG told anyone who would listen that RvW was seriously flawed and needed to be fixed. It was tenuous, at best, being settled under the 14th. It was always in danger.', 'created': '2024-11-06 22:16:54', 'submission_id': '1gkyu2y'}
{'comment': 'Yeah man, 08 dems didn’t even want gays to be married. Times have changed rapidly', 'created': '2024-11-06 23:39:38', 'submission_id': '1gkyu2y'}
{'comment': '🎯🎯🎯', 'created': '2024-11-08 04:04:00', 'submission_id': '1gkyu2y'}
{'comment': "It's states authority and jurisdiction vs federal authority and jurisdiction. The federal government has enumerated rights. That means it can't do anything unless there's legislation stating it can do those things. States have police rights. That means they can do whatever unless there's a law stating they can not do those things. \n\nThe state jurisdiction is anything that happens within their borders. For example, Hawaii has no authority over anything that happens in Florida and vice versa. \n\nFederal jurisdiction is not encompassing. However its mandate restricts its interference in state matters. The federal government is to provide national security and government interstate matters. \n\nThis is why a state has the authority and Supreme Court backing to enforce vaccine mandates but the federal government does not.\n\nEdit: I'm only addressing the issue of who has the authority over the matter, not the morality of it.", 'created': '2024-11-07 17:16:22', 'submission_id': '1gkyu2y'}
{'comment': "It shouldn't involve the government at all.", 'created': '2024-11-07 09:36:20', 'submission_id': '1gkyu2y'}
{'comment': "If its only a woman's choice (which it should be) then there should be no government funding for said choice.\n\nAn unplanned pregnancy that a person wants to terminate is akin to hundreds of other poor choices people make in their daily lives. There is no exit strategy for drunk driving or failing a drug test leading to firing from your job. \n\nWe need to be held accountable for our decisions. Bang all the dudes but there's not a human on earth that doesn't understand where babies come from. \n\nIf you can make the choice you can deal with the consequences. This comes from a non-Christian conservative.", 'created': '2024-11-07 02:34:19', 'submission_id': '1gkyu2y'}
{'comment': 'You have every right to be proud of your mental fortitude, openness, and willingness to stand in the middle of the aisle and see what side offered you the best opportunity to succeed, not only now but in the future. I didn’t become the least bit political until the last couple of years of Trumps first term. I knew politicians only served their own interests and appreciated that a non political candidate was chosen. I thought we were screwed either way. When the MSM came after him so hard my eyes were opened to the Deep State agenda to fight him tooth and nail and prevent people from appreciating his fight for freedom. He is none of the horrible things so many think about him. He wants what is best for the average American citizen and isn’t worried about lining his own pockets or those of his friends. \n\nAs Reddit is a very left-leaning platform it is not the best environment to really research all the positive things surrounding Trump and republican views. If you haven’t looked into Telegram, I would highly recommend it! You can follow many different channels that share news not controlled by leftist ideology. If you, or anyone else needs help navigating it, feel free to reach out to me there @ArcaneSiren27. Bless you for following your heart and prepare yourself for all the winning and freedom ahead! It is a beautiful day to be an American! 🇺🇸', 'created': '2024-11-06 21:03:17', 'submission_id': '1gkyu2y'}
{'comment': "Losing Tulsi was a massive blow. The Democrats should have followed her. She should have been propped up and promoted as the new face of the Democrat Party.\n\nInstead, Democrats drummed Tulsi out of office and then kicked her out of the party. That's on them. Losing Tulsi was a really bad move that hurt the Democrats a great deal. Far more than they are willing to admit.", 'created': '2024-11-06 23:27:03', 'submission_id': '1gkyu2y'}
{'comment': 'Honestly RFK was the reason I even decided to start hearing yall out lol. I loved him and then we he endorsed Trump it was a no-brainer for me!', 'created': '2024-11-06 18:26:54', 'submission_id': '1gkyu2y'}
{'comment': 'Thank you!', 'created': '2024-11-06 21:12:18', 'submission_id': '1gkyu2y'}
{'comment': 'Excuse me. I speak jive...', 'created': '2024-11-06 22:31:20', 'submission_id': '1gkyu2y'}
{'comment': 'Or become more engaged in your local elections (which should be the norm)', 'created': '2024-11-06 18:18:15', 'submission_id': '1gkyu2y'}
{'comment': 'Or learn how to use effective birth control.', 'created': '2024-11-06 19:32:21', 'submission_id': '1gkyu2y'}
{'comment': 'Literally Joe Biden said he and Obama were against it.', 'created': '2024-11-07 00:51:47', 'submission_id': '1gkyu2y'}
{'comment': 'Bang all the dudes? I think a lot more education of males of males is desperately needed. Teach them to keep it in their pants. Teach them to be accountable to every child they make. \n\nThere are states that ban abortion in cases of rape and incest. That’s an absolutely disgusting law.', 'created': '2024-11-07 08:29:43', 'submission_id': '1gkyu2y'}
{'comment': 'Instead Hillary said Tulsi was colluding with Russia (her favorite insult).', 'created': '2024-11-07 06:57:16', 'submission_id': '1gkyu2y'}
{'comment': 'So many people overlook this as everything starts at the local level', 'created': '2024-11-06 19:24:09', 'submission_id': '1gkyu2y'}
{'comment': 'Obama himself said he does not support same sex marriage in that time. Everyone quickly forgets that.', 'created': '2024-11-07 14:12:40', 'submission_id': '1gkyu2y'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 13:32:43', 'submission_id': '1gkxfjb'}
{'comment': 'Love seeing so many people around the world who were cheering for Trump win. Shows what his victory means for the world too. Things were better under him the first time.', 'created': '2024-11-06 14:54:40', 'submission_id': '1gkxfjb'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 11:34:55', 'submission_id': '1gkvju5'}
{'comment': 'I think they were trying to make up for 2020 for being the first then too....', 'created': '2024-11-06 11:44:54', 'submission_id': '1gkvju5'}
{'comment': 'r/politics will overheat and explode. MMW', 'created': '2024-11-06 12:19:42', 'submission_id': '1gkvju5'}
{'comment': 'Remember remember the MAGA November.', 'created': '2024-11-06 14:12:34', 'submission_id': '1gkvju5'}
{'comment': "Y'all suck but congrats.\n\n\nYou beat an unlikeable San Francisco liberal lawyer in the presidential election.\n\n\nWho knew running a candidate like that was a recipe for disaster? (I did.)\n\n\nGOD BLESS AMERICA. 🦅🇺🇸", 'created': '2024-11-06 16:31:38', 'submission_id': '1gkvju5'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 10:37:04', 'submission_id': '1gkurfm'}
{'comment': "I also am serving in the military but in Guam. I just was telling some of my junior Sailors that I can't wait for this election to be over because I'm tired of all the hate and vitriol. At the end of the day we don't have to agree politically but at least respect one another.", 'created': '2024-11-06 11:50:04', 'submission_id': '1gkurfm'}
{'comment': 'I agree with you, wholeheartedly, and think this election and the last 3.5 years were the most divisive this country has ever been. With that being said, if you try to tell the left that Trump isn’t going to put them in camps, women won’t just be baby factories, or dispute any other far fetched ideas, they won’t believe you. They have been so brainwashed into hating that man, that they would rather see him fail all of us, than hope he does well as president. \n\nWe need unity in this country, but I don’t think we well ever truly see it again.\n\nStay safe out there OP, and thank you for your service.', 'created': '2024-11-06 12:31:07', 'submission_id': '1gkurfm'}
{'comment': 'Totally agree. I am hoping that this is the start of the end of politics being the cornerstone of people’s identity and we can start treating each other as equal neighbors again. Different ideas, but all Americans. Thank you for your service.', 'created': '2024-11-06 12:30:47', 'submission_id': '1gkurfm'}
{'comment': 'Dude I’m from PA. It’s insane to me how intolerant the PA sub is…', 'created': '2024-11-06 16:09:49', 'submission_id': '1gkurfm'}
{'comment': "It's a shame Democrats talk about being inclusive, but yet are divisive. Agree, we all need to be civil and respect other views.", 'created': '2024-11-06 15:58:15', 'submission_id': '1gkurfm'}
{'comment': 'It’s hard when you see so much hate towards your political party online. I thought about this last night though. We should love our neighbors even if they’re assholes. \n\nI’m sick of seeing people calling us dumb or saying we must have too much lead in our pipes for voting for trump. How are you gonna speak like that about the people who keep this country running?', 'created': '2024-11-06 14:16:00', 'submission_id': '1gkurfm'}
{'comment': 'I agree, but I also think Republicans are not the primary source of the problem.', 'created': '2024-11-06 16:23:28', 'submission_id': '1gkurfm'}
{'comment': 'I’m gonna gloat on Reddit for a while longer.', 'created': '2024-11-06 14:05:27', 'submission_id': '1gkurfm'}
{'comment': 'I will not show respect to people that called us trash', 'created': '2024-11-06 15:28:05', 'submission_id': '1gkurfm'}
{'comment': 'How much respect did Republicans get the last 4 years? When Republicans win. We have to get along be nice and bipartisan. When democrats win we are nazis and antianerican and need to sit down and shut up.', 'created': '2024-11-06 15:27:50', 'submission_id': '1gkurfm'}
{'comment': "The left's entire presidential run was about hate. They had nothing to say about themselves to have you vote for, only bad things about their opposition for you to vote against.\n\nI agree with what you're saying but you're overlooking the part where it's a one way street. I was in the military myself, and I get what you're saying. But out here in the civ world, it's not the same. They don't depend on you and you on them. They're willing to throw you in the trash for the slightest disagreement.", 'created': '2024-11-06 15:54:30', 'submission_id': '1gkurfm'}
{'comment': 'So the left is just going to stop lawfare & falsehoods? Accept the electoral results and play nice from now on? \n\nMaybe I will respect the neighbors that turn their nose up at my MAGA signs, but in no way am I done fighting the establishment', 'created': '2024-11-06 14:17:44', 'submission_id': '1gkurfm'}
{'comment': "I have respect but they're claiming that the majority of Americans voted against her because she's a woman and not because she was a hollow candidate is ridiculous, majority don't give AF.", 'created': '2024-11-06 15:05:30', 'submission_id': '1gkurfm'}
{'comment': 'Democrats are not going to stop today just because she lost! The attacks will keep coming. MSNBC and Rachael Maddow already last night starting in on the Trump is a dictator talk. Already starting in on how he is best friends with Putin. How every country in the world wakes up today scared to share intelligence with the the US. Just wait until The View airs today and rest of the liberal media circles the wagons. It’s going to be 4 years of fighting. \n\nI’ll be respectful to the people trying to destroy my political views when they learn to respect people in general.', 'created': '2024-11-06 15:56:48', 'submission_id': '1gkurfm'}
{'comment': "They've spent 8 years trying to tear us, and America, apart. \n\nThey've not respected us, at all, and still won't. \n\nYet we will still treat them like humans.\n\nbecause that's what *real* tolerance looks like.", 'created': '2024-11-06 14:17:51', 'submission_id': '1gkurfm'}
{'comment': 'Like they did? \n\nRelease our non-violent J6 political prisoners from the DC gulag, expunge their false convictions and restore their rights.\n\nMaybe then we’ll talk.', 'created': '2024-11-06 16:15:43', 'submission_id': '1gkurfm'}
{'comment': 'Respect is earned. And the Dems have done nothing to earn it.', 'created': '2024-11-06 17:45:12', 'submission_id': '1gkurfm'}
{'comment': 'I’ll be respective and not gloat over this historic win I’m very proud of. Unfortunately people on the left are just crying and making a scene after they lost fairly. I’m just gonna have a very happy low key day knowing that the right candidate won for making America great again. God bless America!', 'created': '2024-11-06 15:41:27', 'submission_id': '1gkurfm'}
{'comment': 'Thank you for your service!', 'created': '2024-11-06 15:48:05', 'submission_id': '1gkurfm'}
{'comment': "It's a shame Democrats talk about being inclusive, but yet are divisive. Agree, we all need to be civil and respect other views.", 'created': '2024-11-06 15:58:25', 'submission_id': '1gkurfm'}
{'comment': 'I will treat other people the way I want to be treated...but the left lost, and I will not be called names becuae of their hate. I will stand up for myself, I am a proud Republican.', 'created': '2024-11-06 20:25:32', 'submission_id': '1gkurfm'}
{'comment': 'Meh. I wanna rub it in just a little bit. If those assholes hadn’t been so damn cocky as a result of their echo chamber, I’d show some grace. But these SHOCKED Dems are the ones calling us stupid. Give me a break.', 'created': '2024-11-06 15:25:37', 'submission_id': '1gkurfm'}
{'comment': "Always have. Can't say that it's been reciprocated. But I'm old enough to remember when you could still talk to people you disagreed with politically.", 'created': '2024-11-06 16:38:21', 'submission_id': '1gkurfm'}
{'comment': 'I would have agreed with you until they did what they did to trump in court, in media, and in person. Fuck them. You can earn my respect back, I’m not giving shit to democrats.', 'created': '2024-11-06 16:20:55', 'submission_id': '1gkurfm'}
{'comment': 'I honestly think this will spell the end of the woke era. They will not regroup. Democrats are not stupid people, they will have learned hard lessons from this election and permanently eject the tyrannical irrational group think crowd from their midsts. This is a good thing for Democrats, it will make them stronger in the end.', 'created': '2024-11-06 16:28:39', 'submission_id': '1gkurfm'}
{'comment': "They won't respect us. Honestly, the destruction they have caused, I'm fine with not being the bigger person. They need to learn a lesson. Trump and the Republicans will teach them in the coming months/years with the white house, Senate, and House. It's time to teach them how wrong they have been.", 'created': '2024-11-06 16:36:03', 'submission_id': '1gkurfm'}
{'comment': 'Bullshit. The left wants all of us dead or in gulags. There is NO common ground with them. You don\'t work with them, you marginalize them. \n\nI know AFN feeds you CNN level of propaganda when you are overseas but use your internet and WATCH the violence, hate, and vitriol spewed by the left. \n\nSadly, you being active military doesn\'t have the chops it did pre-crossdressing generals. This "get along" attitude started when those limpdicks started getting up to the Joint Chiefs positions. The military\'s job is to kill people and break things.\n\nSorry bud, I\'m done trying to negotiate with traitors. When I took that oath it MEANT something. When I take the oath every year for my current position, it MEANS something to me. The current liberal movement is the "domestic" portion of "against all enemies, foreign and domestic". Not like the JFK or even Carter level of liberals.', 'created': '2024-11-06 19:26:27', 'submission_id': '1gkurfm'}
{'comment': "The people that watched a man get shot on stage and decided to call him Hitler, that called all of us garbage, deplorable, facist, and insurrectionist, that gaslit the country for four years and we're complacent in the Biden senility scandal. Those people, they don't get my respect today. They get repudiation", 'created': '2024-11-06 19:27:36', 'submission_id': '1gkurfm'}
{'comment': 'All those who claimed they would leave the country if Trump won, I hereby respect your right to leave.', 'created': '2024-11-06 19:36:31', 'submission_id': '1gkurfm'}
{'comment': 'Thanks for your service, but today is my day to talk a little shit!\n\nTomorrow will resume as normal, probably....', 'created': '2024-11-06 15:25:43', 'submission_id': '1gkurfm'}
{'comment': 'Gets hard to sometimes, they grind my gears 🤯', 'created': '2024-11-06 13:42:05', 'submission_id': '1gkurfm'}
{'comment': "There's only hate from the bots. It's a social media problem. It's not us.", 'created': '2024-11-06 14:40:58', 'submission_id': '1gkurfm'}
{'comment': 'We all bleed red white and blue. Fuck yeah, I love my democrat bros', 'created': '2024-11-06 16:31:00', 'submission_id': '1gkurfm'}
{'comment': 'FUCK NO. I want revenge. They pushed the clot shot on us. They weaponized the Department of Justice. They pushed war after war after war. They mutilated children with their sick trans ideology.', 'created': '2024-11-06 16:40:20', 'submission_id': '1gkurfm'}
{'comment': 'Yup, Republicans need to take the high ground now. In Michelle\'s Obama\'s words " they go low, we go high." The only difference is that Republicans might actually try to bring the country together again.', 'created': '2024-11-06 16:42:14', 'submission_id': '1gkurfm'}
{'comment': 'In New Jersey they’re already talking crazy, I can’t stand this place', 'created': '2024-11-06 16:54:56', 'submission_id': '1gkurfm'}
{'comment': 'I agree.\n\nI also agree that it’s hard when you’re being called every horrible name in the book and read all the insane misinformation they tell each other to keep the hate and fear alive.', 'created': '2024-11-06 17:09:15', 'submission_id': '1gkurfm'}
{'comment': "Although I'm doing a lot of trolling with Trump winning, deep down I'm praying for any liberals who are devastated and wish the best for their mental health cuz I notice that they were a lot more devasted losing this election than we were when we lost in 2020. Even the suicide hotline and the r/SuicideWatch sub are being bombarded by liberals or Kamala supporters and I feel very empathetic towards them I hope no liberal or Kamala supporter actually kills themselves over Trump winning and we should be praying for those who are having those thoughts. At the end of the day, Kamala supporters and the Democrats are Americans and despite how much we differ in our political beliefs, we all have one thing in common: we all want what's best for our country and the human race which is why we should respect the political beliefs of those that don't agree with ours as long as they do the same.", 'created': '2024-11-06 18:48:25', 'submission_id': '1gkurfm'}
{'comment': 'And they’ll be back to spitting on anyone wearing red hats, throwing drinks on them, yelling at them on airplanes … and they have the nerve to say they’re tolerant & compassionate???', 'created': '2024-11-06 19:00:52', 'submission_id': '1gkurfm'}
{'comment': 'Trump said the Democrat party politicians were “Garbage”. The Democrat party politicians called American people who vote, “Garbage”. There are just some things you don’t do, calling a whole voter base trash and dehumanizing them is one of those things you just don’t do if you want to win an election!\xa0', 'created': '2024-11-06 19:09:35', 'submission_id': '1gkurfm'}
{'comment': 'No because I’m truly tired of being labelled a racist, fascist, uneducated, woman hating (I am a woman), and a bootlicker. These people ran on hate. I was nice to them the first time. Not again.', 'created': '2024-11-06 20:22:51', 'submission_id': '1gkurfm'}
{'comment': '1000%!! I’ve tried to be respectful to others but like the rest of you been called every name in the book. I had a woman in Florida of all places a few weeks ago and basically assault me because I had a MAGA Hat on. I was with my children and parents. I didn’t say anything to her nor make eye contact and she just went off. It’s funny how they claim to be accepting yadda yadda when in reality they are anything but. But we will continue to accept them and be respectful of all of us and have discussion if they want. I’ll listen and always will. And maybe they will start too.', 'created': '2024-11-06 20:32:11', 'submission_id': '1gkurfm'}
{'comment': 'That’s going to be hard the left has spent years trying to destroy the very fabric of this country and to call anyone that disagree with them bigots/racist/nazi’s etc etc. Sometimes payback is warranted and this is one of those time imho!', 'created': '2024-11-06 21:10:38', 'submission_id': '1gkurfm'}
{'comment': 'Come on now. I think your blowing this outta proportion', 'created': '2024-11-06 21:58:32', 'submission_id': '1gkurfm'}
{'comment': 'If only that sentiment was reciprocated, but sadly it won’t be. People are already changing their profile pictures on FB to black as a symbol of “mourning for the country”. They are all like children. I can’t believe that grown adults act this way. Sure, I was pissed when Brandon stole the election, but I didn’t cry on YouTube or vandalize or change my FB profile in protest. We get over it. Grow up, people!', 'created': '2024-11-07 02:44:53', 'submission_id': '1gkurfm'}
{'comment': 'I dont hate anyone, feel bad for them? Yes!! Don’t understand them? Yes waited 4 fucking years while their bullshit was pushed down my throat? Also yes!!! \nI just want to watch them melt!!', 'created': '2024-11-06 15:01:47', 'submission_id': '1gkurfm'}
{'comment': "No.\n\n I'm not going to be the bigger person. I and people who believe like i do have been insulted, belittled and slandered for far too long. They fucked around. Time for the find out part.", 'created': '2024-11-06 14:43:38', 'submission_id': '1gkurfm'}
{'comment': "I give respect when it's earned. I'm not going to call names and act a fool but I don't respect people who call me racist, exist, whatever because their godawful candidate lost.", 'created': '2024-11-06 18:34:28', 'submission_id': '1gkurfm'}
{'comment': 'Nah…. For all the hate and lies they have put us through for the last 8 years. \nIt’s time for a little payback.', 'created': '2024-11-06 13:51:30', 'submission_id': '1gkurfm'}
{'comment': 'Seriously, just because someone has different beliefs, political views, or values doesnt mean they are evil.\n\nSo of my best friends live completely opposite lives when compared to me.', 'created': '2024-11-06 15:16:55', 'submission_id': '1gkurfm'}
{'comment': 'I’ve seen countless democrat friends posting “if you voted for trump we can’t be friends” etc. 😅', 'created': '2024-11-06 17:25:37', 'submission_id': '1gkurfm'}
{'comment': 'Thank you for saying this 🙏🏼', 'created': '2024-11-06 15:57:39', 'submission_id': '1gkurfm'}
{'comment': 'I agree. I just pray people don’t go rioting/looting', 'created': '2024-11-06 16:36:28', 'submission_id': '1gkurfm'}
{'comment': 'Thank you for your service. My father, OBM, was in the USN and was stationed in "Occupied Japan" for two three year tours. My brother was in the Marines on Okinawa headed to Vietnam when the decision was made to pull out. If I could get to Japan for a month, I\'d be in heaven. Mt. Fuji, Biwa Ko, so many wonderfully manicured gardens.', 'created': '2024-11-06 16:58:15', 'submission_id': '1gkurfm'}
{'comment': 'Always! I will never stoop low as deranged libs. Respect, listen, and stay independent thinker.', 'created': '2024-11-06 17:05:00', 'submission_id': '1gkurfm'}
{'comment': 'Well said. The time for healing is now.', 'created': '2024-11-06 17:27:25', 'submission_id': '1gkurfm'}
{'comment': 'This, 100%. Be dignified and kind. Be above it.', 'created': '2024-11-06 17:31:15', 'submission_id': '1gkurfm'}
{'comment': 'It shows you who the classless group is and who the intelligent and level-headed group is', 'created': '2024-11-06 17:32:27', 'submission_id': '1gkurfm'}
{'comment': 'Thank you for your service.', 'created': '2024-11-06 17:40:34', 'submission_id': '1gkurfm'}
{'comment': 'Thank you for this, and for your service. Now more than ever I needed this reminder. Despite the fact that so many radical liberals vocalize hate, admonished conservatives who peacefully challenged their world views, called us uneducated racist Nazis, showed no mercy about wishing death on those of us who were skeptic of government vax mandates, made life unaffordable, and admonished anyone who dared to question child mutilation and the circus of gender craziness, (and did so under a banner of calling themselves the party of diversity and acceptance?!), our best response is a complete departure from that same behavior. I will forgive. I know all of us Americans are more the same than we are different. I have definitely fallen short of this reaction in the last 12 hours and I will do better. MAGA', 'created': '2024-11-06 19:35:35', 'submission_id': '1gkurfm'}
{'comment': 'Amen 🙏', 'created': '2024-11-06 21:16:31', 'submission_id': '1gkurfm'}
{'comment': "Nah I'd like to be a asshole to all the people that said we wouldn't win and called us garbage", 'created': '2024-11-06 22:14:06', 'submission_id': '1gkurfm'}
{'comment': '🙏 AMEN!', 'created': '2024-11-06 23:51:52', 'submission_id': '1gkurfm'}
{'comment': "I'll always respect your beliefs if you're team America.\nAt the end of the day we all just want a good life. let's live it with respect.", 'created': '2024-11-07 00:25:09', 'submission_id': '1gkurfm'}
{'comment': 'very much agreed. I wish no ill will on anyone who voted the other way.', 'created': '2024-11-07 00:33:47', 'submission_id': '1gkurfm'}
{'comment': 'Dude all bets are off the table now. We all knew what there plans were for us. [https://www.forbes.com/sites/markjoyella/2023/10/06/hillary-clinton-suggests-formal-deprogramming-for-maga-extremists-who-still-support-trump/](https://www.forbes.com/sites/markjoyella/2023/10/06/hillary-clinton-suggests-formal-deprogramming-for-maga-extremists-who-still-support-trump/)', 'created': '2024-11-07 01:09:00', 'submission_id': '1gkurfm'}
{'comment': 'I totally agree but it is so hard to be friends with people with opposite political opinions it’s so hateful even though they could know you for years and still paint you as the bad guy which you have to understand people vote in terms of priorities and their struggles that will help them for the next 4 years.', 'created': '2024-11-07 02:29:22', 'submission_id': '1gkurfm'}
{'comment': 'From what I’ve seen on Reddit so far. Killing with kindness must be the way to go. It’s very tough though', 'created': '2024-11-07 03:01:41', 'submission_id': '1gkurfm'}
{'comment': 'I already made a declaration of peace to the onlyfans bot accounts that follow my x', 'created': '2024-11-07 03:36:42', 'submission_id': '1gkurfm'}
{'comment': 'Nope. Have no mercy. You must have slept through 2016 because we TRIED, the left went crazy. They learned nothing from the loss and used hoaxes, lawfare. Impeachment amd finally election fraud. THE GUILTY MUST BE PUNISHED.', 'created': '2024-11-07 08:01:00', 'submission_id': '1gkurfm'}
{'comment': 'I agree. I don’t care who you voted for. Trump will be in office for 4 years. I have family member that don’t support him that I wanna know and love for more than that. At the end of the day, we are all fellow countrymen who did what we thought was right. Now it’s time to put differences aside, and do what we can for our country, and for each other. God Bless America, and her citizens.', 'created': '2024-11-07 08:10:51', 'submission_id': '1gkurfm'}
{'comment': 'Goes without saying, but thanks.', 'created': '2024-11-07 14:28:51', 'submission_id': '1gkurfm'}
{'comment': 'Thank you for your service! Hope you get to enjoy some good sushi in Japan!', 'created': '2024-11-08 00:23:42', 'submission_id': '1gkurfm'}
{'comment': "Thank you for your service I really do appreciate everything that you do and please continue to be safe. Yes we are all Americans but I think the true red-blooded Americans that care about everyone and are willing to take a bullet for anyone or tired of being dehumanized by far leftists that continue to treat us horribly, me myself I am able to take whatever BS comes my way because I have control over my mind but other people can't. We shouldn't have to police the left because they want to be extremely disrespectful, at some point they have to learn or someone's going to learn it for him.", 'created': '2024-11-08 10:23:15', 'submission_id': '1gkurfm'}
{'comment': 'It is very hard to be respectful to a group that actively hates us, calling us Nazis, deplorable, and garbage.\xa0 I served 20 years in the military and one thing great was that pretty much 100% of us were Republican and the handful of odd duck democrats pretty much kept to themselves and kept their mouths shut.\xa0\xa0', 'created': '2024-11-08 11:21:39', 'submission_id': '1gkurfm'}
{'comment': 'I get what you’re saying and I believe you are a nice individual, however we have been through a lot of bullshit and nonsense these past four years and were called plenty of names for not liking it. So I will proudly and happily (with a smile on my face) tell these morons to eat shit and go to hell all I want and there’s absolutely not a damn thing any of these snowflakes can do about it accept shave their heads and hide in mommy and daddy’s basement!\xa0', 'created': '2024-11-10 23:14:13', 'submission_id': '1gkurfm'}
{'comment': 'Please show them more respect than they have shown us!', 'created': '2024-11-06 14:36:28', 'submission_id': '1gkurfm'}
{'comment': 'Let’s push for unity and peace.', 'created': '2024-11-06 15:59:11', 'submission_id': '1gkurfm'}
{'comment': 'no need to put anyone down, they bring enough on themselves as is', 'created': '2024-11-06 15:31:23', 'submission_id': '1gkurfm'}
{'comment': 'Yeah, seen the worst of this sub bragging about getting banned from various subs for troll posts.', 'created': '2024-11-06 18:20:49', 'submission_id': '1gkurfm'}
{'comment': 'I respect the voters. The Democrat leadership, on the other hand, their behavior has been egregiously unlawful for the last nearly 4 years. Those whom we know broke laws, must be investigated and prosecuted, not for revenge, but rather to provide a deterrent for the near future. Their political malfeasance will only grow bolder unless we pursue consequences.', 'created': '2024-11-06 19:10:05', 'submission_id': '1gkurfm'}
{'comment': 'Thank you for your service.', 'created': '2024-11-06 17:40:47', 'submission_id': '1gkurfm'}
{'comment': 'Oh man, it’s just getting started. Another 4 years, the dems are only gonna get worse', 'created': '2024-11-06 15:29:27', 'submission_id': '1gkurfm'}
{'comment': "I can't agree more. Right now, there are so many vicious and nasty commets out there. I actually saw a post supporting the idea of cessation. It's crazy.", 'created': '2024-11-06 16:19:48', 'submission_id': '1gkurfm'}
{'comment': 'Thank you for your service 🇺🇸', 'created': '2024-11-06 21:46:48', 'submission_id': '1gkurfm'}
{'comment': 'Thank you bonedaddy0412 for serving and thank you OP for serving. I hope you know a lot of us here at home respect and appreciate you!', 'created': '2024-11-07 09:35:24', 'submission_id': '1gkurfm'}
{'comment': 'Well said. I’ve seen so many people in complete despair, and honestly, I feel for them. They’ve been influenced by echo chambers and mainstream media. I’m not sure how we recover from that, but hopefully, the next four years are prosperous, and those who spread lies and fear-mongering are held accountable.', 'created': '2024-11-06 17:16:27', 'submission_id': '1gkurfm'}
{'comment': "it's crazy some of the things i am seeing people say. that the 19th amendment will be appealed, vaccines will be banned, that if you aren't sad for gay people you are a horrible person...i genuinely actually am astounded by some of the things. and it is wild to me that people are actually feeling that way.", 'created': '2024-11-06 20:02:31', 'submission_id': '1gkurfm'}
{'comment': None, 'created': '2024-11-06 15:19:32', 'submission_id': '1gkurfm'}
{'comment': 'The last 7.5 years imo. Trump started waves before he was even elected and it only got worse. FWIW I am left leaning. I do not like Trump at all. (I’d also like to point out I think Kamala was a horrible choice 4 years ago when Biden picked her and that didn’t get any better when the DNC pushed her on us.) Anyways… I think he’s the weed that helped started the deep divide in our country and only fed the flame. But with that said I don’t think there will be camps, baby factories, etc. I don’t think it will be as hellish as the far left screams just as I don’t think the past 4 years were as bad as the far right claimed it to be. \n\nBut at the end of the day I do agree with OP. Please be respectful. Remember all the FJB stickers. All the Brandon memes. Parading around MAGA flags, proud boys and anti Biden stuff. I know most republicans didn’t do that and only the cultist minority did. Remember that most democrats and/or liberals will wake up today, sigh at the loss and go to work.', 'created': '2024-11-06 15:32:46', 'submission_id': '1gkurfm'}
{'comment': 'And it blows my mind that people think this, despite him already being in office four years and it not happening then!', 'created': '2024-11-07 05:06:40', 'submission_id': '1gkurfm'}
{'comment': "Check the Texas one. You wouldn't believe it's actually for Texas.", 'created': '2024-11-07 00:23:39', 'submission_id': '1gkurfm'}
{'comment': 'Happy Cake Day and Happy Post-Election Day!', 'created': '2024-11-06 16:25:30', 'submission_id': '1gkurfm'}
{'comment': 'I’m in PA too. Stay away from that sub and let them wallow in their ignorance and misery. Most importantly, remember, WE are not the minority! 115,000 of us vs 89,000 of them. WE turned PA red!', 'created': '2024-11-06 21:43:28', 'submission_id': '1gkurfm'}
{'comment': 'Lived in PA before being stationed in Japan, it’s crazy how much that sub has turned to pure rage the last few months.', 'created': '2024-11-07 09:05:20', 'submission_id': '1gkurfm'}
{'comment': 'Welcome to Shitsylvania.', 'created': '2024-11-06 17:53:34', 'submission_id': '1gkurfm'}
{'comment': "Yep , I 'm from PA and got booted a few weeks ago.", 'created': '2024-11-06 23:27:40', 'submission_id': '1gkurfm'}
{'comment': 'Exactly. The real division started with Obama and has only gone downhill from there.', 'created': '2024-11-06 20:01:29', 'submission_id': '1gkurfm'}
{'comment': 'Yep.', 'created': '2024-11-06 16:11:23', 'submission_id': '1gkurfm'}
{'comment': 'Same', 'created': '2024-11-06 14:41:33', 'submission_id': '1gkurfm'}
{'comment': 'Exactly. Why play by the rules when they don’t?', 'created': '2024-11-06 17:51:12', 'submission_id': '1gkurfm'}
{'comment': "I for one and I think a significant amount of voters don't care if a woman were to become president. But for fuck sake at least put up a competent candidate. Someone that speaks in complete and coherent sentences not a fucking word salad. Once Kamala went off the teleprompter script she was a deer in the headlights.", 'created': '2024-11-06 16:31:11', 'submission_id': '1gkurfm'}
{'comment': 'Run tulsi on the 28 ticket and see a woman win a landslide for real for real', 'created': '2024-11-06 21:13:10', 'submission_id': '1gkurfm'}
{'comment': 'As a Kamala voter I agree with you. Voting against her for being a woman is ridiculous. I think centrist, libertarians, swing voters and even some democrats voted against her because of money. At the end of the day most voters care about what’s in their checking account after getting their check and paying bills. Trump nailed it at his rallies when asking if people were better off 4 years ago than now. It is hard to say no to that question unless you’re in the 1%.', 'created': '2024-11-06 15:38:13', 'submission_id': '1gkurfm'}
{'comment': 'Sunny Hostin is even more bitter than Joy Behar. Entertaining.', 'created': '2024-11-06 17:49:07', 'submission_id': '1gkurfm'}
{'comment': "Didn't Liz Chaney accept false testimony from a witness? A former member of the Trump cabinet testified she took notes during the Jan 6th event. It was later determined that the handwritten notes were not that witnesses handwriting.", 'created': '2024-11-06 16:38:06', 'submission_id': '1gkurfm'}
{'comment': 'Don’t forget the group that was sentenced earlier this year for praying outside an abortion clinic. Both groups must be pardoned on day one!', 'created': '2024-11-06 16:35:01', 'submission_id': '1gkurfm'}
{'comment': "I'm gonna gloat. Waited too long to not milk it.", 'created': '2024-11-06 17:58:57', 'submission_id': '1gkurfm'}
{'comment': "I'm old enough to remember a democratic party you actually COULD talk to.", 'created': '2024-11-06 18:02:49', 'submission_id': '1gkurfm'}
{'comment': 'Great point. Respect is indeed, earned. Get to your earning, lefties.', 'created': '2024-11-06 18:01:18', 'submission_id': '1gkurfm'}
{'comment': "And I've finally been un banned from all the woke sites, seems we can have a litte fun🤷\u200d♂️", 'created': '2024-11-06 13:44:40', 'submission_id': '1gkurfm'}
{'comment': 'FAFO all day long.', 'created': '2024-11-06 18:04:09', 'submission_id': '1gkurfm'}
{'comment': 'Yep. My niece posted she cannot be friends with anyone who voted for the racist misogynist who is taking her rights away. Yes, she’s a teacher.', 'created': '2024-11-07 08:10:32', 'submission_id': '1gkurfm'}
{'comment': 'It’s a beautiful place here , I thank both your father and brother for their service.', 'created': '2024-11-08 10:41:54', 'submission_id': '1gkurfm'}
{'comment': 'This is the way', 'created': '2024-11-07 08:58:15', 'submission_id': '1gkurfm'}
{'comment': 'did trump break any laws?', 'created': '2024-11-07 02:03:04', 'submission_id': '1gkurfm'}
{'comment': "Sadly this is true. I've already been called a racist twice today.", 'created': '2024-11-06 17:11:36', 'submission_id': '1gkurfm'}
{'comment': 'Any resources we can point them to? I feel worried for some going off the deep end, even vets who believed MSM. Especially regarding project 2025 even though he said he doesn’t endorse it.', 'created': '2024-11-06 19:07:02', 'submission_id': '1gkurfm'}
{'comment': "The dissonance associated with discovering you've been duped.", 'created': '2024-11-06 17:47:07', 'submission_id': '1gkurfm'}
{'comment': "Its the Project 2025 that still gets me. I cannot wait until 2026 rolls around and I can smugly tell the people that think its a manifesto type pledge that it was what it was. A proposal, no different to a Think Tank paper that the President Elect hasn't even fucking read.\n\nThey are either lying or ignorant.", 'created': '2024-11-07 15:14:27', 'submission_id': '1gkurfm'}
{'comment': "There's the real beauty of all of this: you cannot trust the msm. Now EVERYBODY can see it written in red.", 'created': '2024-11-06 17:42:35', 'submission_id': '1gkurfm'}
{'comment': 'How many times did either of the Democratic front runner get shot at or a firearm allowed within 200 yards of their location?', 'created': '2024-11-06 16:24:33', 'submission_id': '1gkurfm'}
{'comment': ">Remember all the FJB stickers. All the Brandon memes. Parading around MAGA flags, proud boys and anti Biden stuff. I know most republicans didn’t do that and only the cultist minority did. Remember that most democrats and/or liberals will wake up today, sigh at the loss and go to work.\n\nIsn't that precious?", 'created': '2024-11-06 16:28:17', 'submission_id': '1gkurfm'}
{'comment': "I'm wearing my red, white & blue today. Make of it what you will. Truth triumphs.", 'created': '2024-11-06 17:44:40', 'submission_id': '1gkurfm'}
{'comment': 'I disagree. Obama started with his “republicans cling to their guns & bibles” painting us all like redneck rubes. I think this is when the Democrats started becoming a party of elites & not a party of the working man.', 'created': '2024-11-07 07:59:48', 'submission_id': '1gkurfm'}
{'comment': 'Again, agree to disagree. And be nice', 'created': '2024-11-08 00:56:10', 'submission_id': '1gkurfm'}
{'comment': "There's a reason for cake!", 'created': '2024-11-06 17:53:58', 'submission_id': '1gkurfm'}
{'comment': '😁🎉', 'created': '2024-11-06 15:29:49', 'submission_id': '1gkurfm'}
{'comment': "I don't disagree with you, but I also don't want to stoop to their level.", 'created': '2024-11-06 18:16:31', 'submission_id': '1gkurfm'}
{'comment': "We just annihilated them on election day. They might finally understand that they have to stop, or they will keep losing.\n\nI love Trump, but he is generally unliked personally. He *still* beat them this badly and won even the popular vote. Imagine if next time we run a more likable candidate and Dems are still acting this same way. It'll be more like a Reagan-Mondale landslide. They'd be cooked.", 'created': '2024-11-06 18:06:39', 'submission_id': '1gkurfm'}
{'comment': 'I want to agree so bad, but hope to behave differently because we are better than that.', 'created': '2024-11-06 19:41:12', 'submission_id': '1gkurfm'}
{'comment': "They had one named Tulsi Gabbard and they chose to ostracize. the person that wiped the floor with Kamala in debates. But they can't pick a traditional Democrat who isn't an extremist and is a war hero who believes in common sense because it goes against the machines plans. They did this to themselves, it's only a matter of time before they fabricate another pandemic or something to try to derail the next one.", 'created': '2024-11-06 16:34:23', 'submission_id': '1gkurfm'}
{'comment': "I think women excel at many things and would happily cast my core for a woman. But for that reason right there, I couldn't give her my support.", 'created': '2024-11-06 18:39:21', 'submission_id': '1gkurfm'}
{'comment': "As someone in the top percent (idk about 1%), I can confirm that we are not better off still. Easy to see why Trump won when you look at all the factors. \n\n* Mass immigration problem, yk the one Trump said was going to happen \n* Rising prices for everything, buying groceries to properties\n* Kamala only seemed to target women and LGBT people, leaving a lot of young guys feeling disconnected. As a younger guy, I honestly feel she gave me no reason to vote for her, this is in addition to wanting to continue to support wars. I wouldn't go die for this lady or her administration if it came down to it. \n* She became a main candidate without anyone wanting her after Biden dropped out and failed to distinguish herself from him.\n* Kamala suggested taxing capital gains which is a horrible idea, considering investors are the ones who not only stir the economy but also help create jobs.", 'created': '2024-11-06 16:38:27', 'submission_id': '1gkurfm'}
{'comment': 'Hubby and I were in top middle class before the last 4 years. The last 4 years we struggled like we never had in the last 15 years. I really hope everything gets better soon with the economy and such. It’s been ridiculous watching friends no longer being able to feed their kids without sacrificing other necessities. I feel for people who struggled so much the last few years, it’s not been easy. It’s not over yet though. It’ll take some time before things start to level back out.', 'created': '2024-11-06 18:38:43', 'submission_id': '1gkurfm'}
{'comment': 'They can’t cry foul because it wasn’t close but I guarantee within a short time they will be right back to calling us all nazi cult members. As Howard Stern used to say….bunch of yentas.', 'created': '2024-11-06 17:56:31', 'submission_id': '1gkurfm'}
{'comment': 'The border. Ukraine. Political prisoners.\n\nBare minimum on Day 1.', 'created': '2024-11-06 16:42:47', 'submission_id': '1gkurfm'}
{'comment': 'Agreed, 100%.', 'created': '2024-11-06 18:10:44', 'submission_id': '1gkurfm'}
{'comment': 'I have been called racist so many times I lost count.', 'created': '2024-11-06 18:15:29', 'submission_id': '1gkurfm'}
{'comment': 'Been called ignorant and uninformed', 'created': '2024-11-08 00:52:18', 'submission_id': '1gkurfm'}
{'comment': 'He said not only will he not implement project 2025, he said anyone who worked on it, will not be allowed on his during his presidency.', 'created': '2024-11-06 19:54:27', 'submission_id': '1gkurfm'}
{'comment': 'Sadly no. A hypnotist perhaps? They’ve been so brainwashed that they would immediately reject any conservative resource we suggest', 'created': '2024-11-06 19:38:11', 'submission_id': '1gkurfm'}
{'comment': "i do feel bad for innocent people who are being purposely misinformed into being afraid for their safety. that's fucked up. i can't wait until they realize they're fine.", 'created': '2024-11-07 22:18:34', 'submission_id': '1gkurfm'}
{'comment': 'The crap these people are wound up about..were they upset when the illegals murdered our own people and took over apartment buildings??? I am very disappointed in a good friend right now.', 'created': '2024-11-08 00:54:06', 'submission_id': '1gkurfm'}
{'comment': 'They are over there, basically calling all of us racists.\nScarborough said a lot of Hispanics have a problem with black candidates, and Sharpton said some of the most misogynistic people are black men.\nZero self reflection, zero accountability at all!\nI am beyond sick of the moment playing the victim card for the left! Ugh!', 'created': '2024-11-06 19:58:48', 'submission_id': '1gkurfm'}
{'comment': 'That contrasts the statement, just be kind and understanding. Everyone has differing upbringings.', 'created': '2024-11-06 16:33:18', 'submission_id': '1gkurfm'}
{'comment': 'Kammy bailed on showing up for work last night.', 'created': '2024-11-06 17:45:56', 'submission_id': '1gkurfm'}
{'comment': "I'm cool with taking the high road as long as it's all verbal.", 'created': '2024-11-06 19:07:45', 'submission_id': '1gkurfm'}
{'comment': 'You lost me at ‘understand’. \n\nBut I get your sentiment', 'created': '2024-11-06 18:26:40', 'submission_id': '1gkurfm'}
{'comment': 'I’d love to see Vance/Gabbard next election.', 'created': '2024-11-07 08:03:10', 'submission_id': '1gkurfm'}
{'comment': 'Even worse she was talking about taxing unrealized gains. This would have destroyed all investments.', 'created': '2024-11-06 19:59:58', 'submission_id': '1gkurfm'}
{'comment': 'Don\'t forget "drill, baby, drill!"', 'created': '2024-11-06 17:55:56', 'submission_id': '1gkurfm'}
{'comment': 'So I tried to keep track. Twice so far this afternoon. Winning.', 'created': '2024-11-06 21:23:32', 'submission_id': '1gkurfm'}
{'comment': 'Worth a try versus a life lost', 'created': '2024-11-06 19:40:22', 'submission_id': '1gkurfm'}
{'comment': 'I’m Hispanic yet I’ve been called a racist bootlicker even though I thought only white people could be racist. That’s funny how that works, huh?', 'created': '2024-11-07 20:09:38', 'submission_id': '1gkurfm'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 09:43:55', 'submission_id': '1gku1m4'}
{'comment': 'Fuck Kamala 🤣🤣🤣', 'created': '2024-11-06 09:51:53', 'submission_id': '1gku1m4'}
{'comment': 'Cackles not cackling now.', 'created': '2024-11-06 11:43:42', 'submission_id': '1gku1m4'}
{'comment': 'Maybe she can make up a new accent for her final speech.', 'created': '2024-11-06 22:58:56', 'submission_id': '1gku1m4'}
{'comment': 'KAMALA YOUER FIRED, GET THE HELL OUT OF HERE!\xa0', 'created': '2024-11-07 13:59:14', 'submission_id': '1gku1m4'}
{'comment': 'This is great! Now dems can go do what they do best (cry in their parents basement as they sniff their own farts)', 'created': '2024-11-07 15:16:30', 'submission_id': '1gku1m4'}
{'comment': "We just dodged her fucking us. I'll take that as a win.", 'created': '2024-11-06 09:57:41', 'submission_id': '1gku1m4'}
{'comment': 'Everyone else has.\xa0\n\nFinished it for you.\xa0', 'created': '2024-11-07 13:58:26', 'submission_id': '1gku1m4'}
{'comment': 'She hadn\'t planned on giving a concession speech, so there\'s no time to learn a new accent for it. She could plagiarize a bit from Patrick Henry though: "I regret that I have but one lie to give for my country."', 'created': '2024-11-06 23:59:32', 'submission_id': '1gku1m4'}
{'comment': 'This made me snort.', 'created': '2024-11-08 02:50:42', 'submission_id': '1gku1m4'}
{'comment': 'lol it’s true!', 'created': '2024-11-08 23:56:54', 'submission_id': '1gku1m4'}
{'comment': 'I laughed again re-reading it lol', 'created': '2024-11-08 23:59:31', 'submission_id': '1gku1m4'}
{'comment': 'It really is a beautiful thing! MSNBC is crying and saying how they’re gonna fight. Like really what are they going to fight? They are irrelevant now! It’s like the American people lifted the Democrat party and threw it in a trash compactor where it belongs, they are irrelevant now. Hahahahahahahahahahahahahahahahhahaha!\xa0', 'created': '2024-11-09 17:58:10', 'submission_id': '1gku1m4'}
{'comment': 'I love how they are mostly fighting against each other.', 'created': '2024-11-09 18:35:28', 'submission_id': '1gku1m4'}
{'comment': 'It’s a beautiful thing! What’s even better is how they lost everything and are totally powerless as they should be.\xa0\n\nThey can take their green new scam, shove it up their ass and burn in hell where they belong. Ohhh and they can take their wokeness with them for sure, no one needs that garbage! \xa0', 'created': '2024-11-09 20:54:45', 'submission_id': '1gku1m4'}
{'comment': "Once Biden said Republicans are garbage, that was the end for the democrats. \n\nYou can't call half of Americans garbage as a sitting president and expect to get the vote on election day.", 'created': '2024-11-06 11:44:35', 'submission_id': '1gktp39'}
{'comment': 'Team America ……..fuck yeah', 'created': '2024-11-06 13:55:26', 'submission_id': '1gktp39'}
{'comment': 'Too big to rig.', 'created': '2024-11-06 19:56:23', 'submission_id': '1gktp39'}
{'comment': 'Now the fun starts. That judge was supposed to sentence Trump to jail after the election.', 'created': '2024-11-06 20:26:03', 'submission_id': '1gktp39'}
{'comment': 'MAGAnificent!', 'created': '2024-11-06 18:36:02', 'submission_id': '1gktp39'}
{'comment': 'Goes to jail gets out and gets shot then works at McDonald’s then works as a trash man. I have more in common with him than any other president. I’m glad he’s back.', 'created': '2024-11-07 02:38:22', 'submission_id': '1gktp39'}
{'comment': 'Damn…., if only Trump could get a hold of a steam roller to drive', 'created': '2024-11-06 20:40:14', 'submission_id': '1gktp39'}
{'comment': 'Hope restored.', 'created': '2024-11-07 01:22:01', 'submission_id': '1gktp39'}
{'comment': '[Even Biden supported Trump](https://imgur.com/a/nVnirtD)', 'created': '2024-11-07 02:49:08', 'submission_id': '1gktp39'}
{'comment': 'HAP-py🎵 days are here again?🎶\nThe SKIES🎵 above, are clear again!🎶\nLet us SING a song 🎶of CHEER again!🎶\nHAP-py days 🎶are here 🎵A-GAIN!🎵', 'created': '2024-11-08 02:26:14', 'submission_id': '1gktp39'}
{'comment': 'God Bless America 🇺🇸', 'created': '2024-11-07 03:14:18', 'submission_id': '1gktp39'}
{'comment': 'History will judge this differently than this sub does.', 'created': '2024-11-07 02:18:18', 'submission_id': '1gktp39'}
{'comment': 'To all of those asshole Redditors:\nfile:///var/mobile/Library/SMS/Attachments/64/04/A5BABB10-1BA1-4723-AD9E-F84E51C3D078/Resized_Screenshot_20241106_080502_Facebook_1730901959223.jpeg', 'created': '2024-11-06 15:08:38', 'submission_id': '1gktp39'}
{'comment': 'Between the garbage comment and pretend biting babies on Halloween, I think the Biden family purposely sabotaged her campaign out of spite.', 'created': '2024-11-06 16:19:28', 'submission_id': '1gktp39'}
{'comment': "As it turns out, that moron was talking about MOST of America!\xa0 He's in OUR house!\xa0 And We, the People, just served HIM and the HARRISS', Eviction Notices!\xa0 They've got 2 months, to pack their 💩 and get the Hell out!\xa0 Right, Bro?😆", 'created': '2024-11-08 02:31:48', 'submission_id': '1gktp39'}
{'comment': 'file:///var/mobile/Library/SMS/Attachments/85/05/E54FF2FB-A90A-4AB1-9528-38A7DF992D63/IMG_0991.jpeg', 'created': '2024-11-06 15:25:24', 'submission_id': '1gktp39'}
{'comment': 'Charges are being dropped', 'created': '2024-11-07 03:39:50', 'submission_id': '1gktp39'}
{'comment': 'Let’s be magnanimous', 'created': '2024-11-06 15:23:49', 'submission_id': '1gktp39'}
{'comment': '[removed]', 'created': '2024-11-06 16:13:04', 'submission_id': '1gktp39'}
{'comment': 'Well until july.', 'created': '2024-11-08 04:31:19', 'submission_id': '1gktp39'}
{'comment': 'Yeah it didn’t link! But it was awesome lol!', 'created': '2024-11-06 16:13:50', 'submission_id': '1gktp39'}
{'comment': "I'm sorry, what?\xa0 Are you saying we'll actually still be stuck with the trash in Our House, until JULY?!", 'created': '2024-11-08 04:38:00', 'submission_id': '1gktp39'}
{'comment': 'Yes', 'created': '2024-11-08 04:39:11', 'submission_id': '1gktp39'}
{'comment': "You're messing with me.\xa0 The Administration is supposed to change in January!", 'created': '2024-11-08 04:41:47', 'submission_id': '1gktp39'}
{'comment': 'The fact he won the popular vote as well', 'created': '2024-11-06 09:51:08', 'submission_id': '1gktrcd'}
{'comment': 'Is it really that surprising?', 'created': '2024-11-06 14:50:34', 'submission_id': '1gktrcd'}
{'comment': 'People are beyond sick and tired of these god damn democrats is why. Even Bernie sander’s admitted the dems abandoned the working class. They’re all way too delusional and stupid to figure it out!\xa0', 'created': '2024-11-10 23:02:07', 'submission_id': '1gktrcd'}
{'comment': 'I’m more excited about it then surprised', 'created': '2024-11-06 15:25:25', 'submission_id': '1gktrcd'}
{'comment': 'I’m super happy about it but I kind of knew he was going to win, there was just no way the dems could win an election after what has been going on the last 4 years. I was just worried they were going to rig it like they did in 2020.\xa0', 'created': '2024-11-10 23:03:51', 'submission_id': '1gktrcd'}
{'comment': 'Yes it does. 😁', 'created': '2024-11-06 17:50:33', 'submission_id': '1gkt84l'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 08:45:15', 'submission_id': '1gkt85b'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 23:09:12', 'submission_id': '1gkt97j'}
{'comment': "You know the blue cities, that had nothing to do with getting him elected will be the ones that riot and burn. I'll be safe out here in good ole rural America.", 'created': '2024-11-06 11:54:57', 'submission_id': '1gkt97j'}
{'comment': 'Seattle already had cars broken in and looting', 'created': '2024-11-06 09:26:45', 'submission_id': '1gkt97j'}
{'comment': 'Can they really riot when they are too busy crying?', 'created': '2024-11-06 10:00:01', 'submission_id': '1gkt97j'}
{'comment': "I really hope there isn't any riots. I hope Jan 6 is the last time we do something like that.", 'created': '2024-11-06 09:21:57', 'submission_id': '1gkt97j'}
{'comment': 'I think you underestimate the left, The result is just the start. The secret service needs to really step up from what we saw the campaign. They will not stop.', 'created': '2024-11-06 10:18:00', 'submission_id': '1gkt97j'}
{'comment': 'We usually are. No small blessing.', 'created': '2024-11-06 19:43:49', 'submission_id': '1gkt97j'}
{'comment': 'So an average weeknight in Seattle lmao', 'created': '2024-11-06 09:57:46', 'submission_id': '1gkt97j'}
{'comment': 'I’ve said it all along. Now that Trump is elected, he needs to go into a bunker until Inauguration Day. Then, I hope there isn’t an open air inauguration.', 'created': '2024-11-06 19:03:29', 'submission_id': '1gkt97j'}
{'comment': 'Seattle used to be a decent place back in the 90’s. Sad to see how far downhill it’s slipped.', 'created': '2024-11-06 21:20:22', 'submission_id': '1gkt97j'}
{'comment': 'If they assasinate him, that is the end of the Democrat party vote for the foreseeable future. A lot of Democrats who are moderate and not unhinged far-left types are disgusted as of late with their own party. Something like that would probably permanently push the moderates to the right.', 'created': '2024-11-06 21:22:55', 'submission_id': '1gkt97j'}
{'comment': 'So like a Biden Election Campaign.', 'created': '2024-11-06 19:26:24', 'submission_id': '1gkt97j'}
{'comment': 'I remember how amazing that city was when I was a kiddo, it just ain’t the same no more', 'created': '2024-11-06 23:12:47', 'submission_id': '1gkt97j'}
{'comment': 'Probably true. I’m still concerned that her crazy Hitler rhetoric will inspire an independent crazy to attempt something though. That was so irresponsible!', 'created': '2024-11-06 22:01:27', 'submission_id': '1gkt97j'}
{'comment': '🤣 exactly!', 'created': '2024-11-06 19:51:55', 'submission_id': '1gkt97j'}
{'comment': 'Never been happier, I’m going to wake up tomorrow to the media crying and watching that soy boy Harry sisson throw a hissy fit. What makes it funnier is this election wasn’t even close. Then Kamala just doesn’t do a speech, what a leader she would have been.', 'created': '2024-11-06 08:52:15', 'submission_id': '1gkt9cr'}
{'comment': "I'm from ak I voted for trump!", 'created': '2024-11-06 09:14:51', 'submission_id': '1gkt9cr'}
{'comment': "She has to certify this election. Can you guys picture that? lmao, have ya'll seen the MSM? They are loosing their minds. Making up excuses.", 'created': '2024-11-06 09:58:23', 'submission_id': '1gkt9cr'}
{'comment': 'Oh 100% I cannot wait for the compilations', 'created': '2024-11-06 09:03:23', 'submission_id': '1gkt9cr'}
{'comment': "I'm a non American and thought it was pretty sad to not come and address your supporters.\n\nJust came across as ungrateful.", 'created': '2024-11-06 09:10:23', 'submission_id': '1gkt9cr'}
{'comment': 'Woke celebrities in Hollywood fuming right now', 'created': '2024-11-06 09:22:57', 'submission_id': '1gkt9cr'}
{'comment': 'No she doesn\'t, that was "fixed" after the whole Jan 6th fiasco.', 'created': '2024-11-06 18:31:18', 'submission_id': '1gkt9cr'}
{'comment': 'It revealed that entire campaign was plastic and fake. She was just saying stuff to be saying something (or reading from a script). Nothing genuine at all,', 'created': '2024-11-06 12:37:52', 'submission_id': '1gkt9cr'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 08:37:14', 'submission_id': '1gkt42v'}
{'comment': 'The view tomorrow should be good', 'created': '2024-11-06 11:13:33', 'submission_id': '1gksx0s'}
{'comment': 'Same reason I’m watching MSNBC. To see Rachel Maddow call it for President Trump!', 'created': '2024-11-06 08:42:57', 'submission_id': '1gksx0s'}
{'comment': 'Unburdened by what has been', 'created': '2024-11-06 12:56:52', 'submission_id': '1gksx0s'}
{'comment': 'Love it!', 'created': '2024-11-06 08:42:05', 'submission_id': '1gksx0s'}
{'comment': 'L oh L oh LLLLLL', 'created': '2024-11-06 10:05:30', 'submission_id': '1gksx0s'}
{'comment': 'Guys I love winning so much', 'created': '2024-11-06 14:28:49', 'submission_id': '1gksx0s'}
{'comment': 'Ahahahaha\n\nHa\n\nHahahahahahahah\n\nHaha\n\nHAHAAHAHAHAHAHAHAHAHAHAHAHAHAH', 'created': '2024-11-06 09:58:37', 'submission_id': '1gksx0s'}
{'comment': 'I’m so glad that a middle-income raised VP is certifying in on January 6th.', 'created': '2024-11-06 13:31:15', 'submission_id': '1gksx0s'}
{'comment': 'She may do it. Kicking and screaming and dragging any official or lawyer with as she goes. Don’t expect them to give up yet. They have proved they will use legal warfare to win if they have to. The fight is not over yet.', 'created': '2024-11-06 17:10:01', 'submission_id': '1gksx0s'}
{'comment': '# Did Kamala even attend her Howard University Election Night Party?', 'created': '2024-11-06 16:17:16', 'submission_id': '1gksx0s'}
{'comment': 'The cherry on top.', 'created': '2024-11-06 19:41:50', 'submission_id': '1gksx0s'}
{'comment': 'I hope she will laugh at that moment.', 'created': '2024-11-06 21:18:10', 'submission_id': '1gksx0s'}
{'comment': "I'll bet bet Jan 6 2025, is done without the chaos of 2021", 'created': '2024-11-06 20:01:31', 'submission_id': '1gksx0s'}
{'comment': 'That’s a show I vowed never to watch…but may make an exception today. So when are all the celebs going to leave America?', 'created': '2024-11-06 13:18:24', 'submission_id': '1gksx0s'}
{'comment': 'It was.', 'created': '2024-11-06 19:41:27', 'submission_id': '1gksx0s'}
{'comment': 'She’ll do what she’s always done…., put her head down and will go to work', 'created': '2024-11-06 20:00:32', 'submission_id': '1gksx0s'}
{'comment': 'You mean mark cuban?', 'created': '2024-11-06 13:30:31', 'submission_id': '1gksx0s'}
{'comment': 'She already started in last night on he is a dictator and how every other country will not share intelligence any longer because Trump will have cabinet members that won’t be background checked. \n\nShe won’t stop with stupidity ever. She lied during Covid. She is a lier in service of those pushing lies.', 'created': '2024-11-06 17:44:06', 'submission_id': '1gksx0s'}
{'comment': 'Good thing she has aspirations, ambitions and dreams.', 'created': '2024-11-06 17:45:34', 'submission_id': '1gksx0s'}
{'comment': "I wouldn't be so sure...", 'created': '2024-11-07 01:03:42', 'submission_id': '1gksx0s'}
{'comment': 'I hope soon 😂', 'created': '2024-11-06 14:07:25', 'submission_id': '1gksx0s'}
{'comment': 'Might be Keith Olbermann, you can never tell.', 'created': '2024-11-06 16:37:02', 'submission_id': '1gksx0s'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 08:23:41', 'submission_id': '1gksx5e'}
{'comment': '👏🎉👏👏👏👏👏👏👏🎉🎉🎉🎉 🎂 🏆🥇 👏', 'created': '2024-11-06 17:52:10', 'submission_id': '1gkt05e'}
{'comment': 'Drink Yuengling, celebrate with PA', 'created': '2024-11-06 13:56:31', 'submission_id': '1gkt074'}
{'comment': 'Heineken?! PABST BLUE RIBBON!', 'created': '2024-11-06 15:07:52', 'submission_id': '1gkt074'}
{'comment': 'Get a Bud instead brother😂🍾', 'created': '2024-11-06 08:42:41', 'submission_id': '1gkt074'}
{'comment': '🇺🇸 Home of the brave. Home of the free.', 'created': '2024-11-06 13:01:03', 'submission_id': '1gkt074'}
{'comment': None, 'created': '2024-11-06 15:25:48', 'submission_id': '1gkt074'}
{'comment': 'Hell yeah man', 'created': '2024-11-06 21:13:33', 'submission_id': '1gkt074'}
{'comment': 'Man. You’re right 😂', 'created': '2024-11-06 08:44:22', 'submission_id': '1gkt074'}
{'comment': 'Man I wanna try it but I haven’t been able to find it in my city yet', 'created': '2024-11-06 21:13:04', 'submission_id': '1gkt074'}
{'comment': "Don't listen to him 🤣 Heinekens are my go-to.", 'created': '2024-11-06 11:25:31', 'submission_id': '1gkt074'}
{'comment': 'Did the pbd podcast get better. I left bc the audio sucked, they didn’t have the guests the claimed they would. And the crowd there was tiny. Granted I did stop watching early so I hope it got better, I love pbd', 'created': '2024-11-06 10:49:17', 'submission_id': '1gkt074'}
{'comment': 'It’s not bad!', 'created': '2024-11-07 16:14:54', 'submission_id': '1gkt074'}
{'comment': 'Yea It did. I wanted to see dave smith and he eventually showed up once I put it back on at 1:30', 'created': '2024-11-06 21:12:26', 'submission_id': '1gkt074'}
{'comment': 'Reddit is mostly in melt down mode right now.', 'created': '2024-11-06 09:21:58', 'submission_id': '1gkt0sk'}
{'comment': "Not only did he win, he's going to completely dominate the electoral vote and win the popular vote", 'created': '2024-11-06 12:43:38', 'submission_id': '1gkt0sk'}
{'comment': 'The party is over. Time for Oprah, Beyonce, and all the rest to pack their shit and move abroad. 🥂', 'created': '2024-11-06 11:21:39', 'submission_id': '1gkt0sk'}
{'comment': "Even Hillary had enough class to call the man and concede. Guess there's not much cackling coming from the cackler tonight", 'created': '2024-11-06 10:27:02', 'submission_id': '1gkt0sk'}
{'comment': 'KAMALA YOUER FIRED!!!!!! GTF OUT OF HERE!!!!\xa0\n\nSick of these asshole democrats making life harder for us, they can all go straight to hell!\xa0', 'created': '2024-11-06 09:02:48', 'submission_id': '1gkt0sk'}
{'comment': "The left can't whine that trump didn't win the popular vote this time, they are a bunch of cry babies", 'created': '2024-11-06 12:43:46', 'submission_id': '1gkt0sk'}
{'comment': "The smearing campaign that happened on reddit for the last 2 months has backfired massively😂😂 as a Canadian I'm happy for america that Commiela didnt win, and can't wait for 4 more years of crying liberals! Hopefully we can get a new leader soon 🇨🇦🤝🇺🇸", 'created': '2024-11-06 10:02:59', 'submission_id': '1gkt0sk'}
{'comment': 'the amish had enough', 'created': '2024-11-06 12:02:50', 'submission_id': '1gkt0sk'}
{'comment': 'I WOKE UP SO LATE THIS MORNING BUT TRUMP WON! CHRIST IS KING! GOD IS WITH US!', 'created': '2024-11-06 13:29:13', 'submission_id': '1gkt0sk'}
{'comment': 'Proud to be a fucking American 🇺🇸!', 'created': '2024-11-06 12:45:31', 'submission_id': '1gkt0sk'}
{'comment': "Black man who voted for Trump here. Sry more of my demographic didn't come out but they are making progress. MAGA 2024!! LFG", 'created': '2024-11-06 13:50:04', 'submission_id': '1gkt0sk'}
{'comment': 'Talk about a Red Wave. He dominated.', 'created': '2024-11-06 14:12:58', 'submission_id': '1gkt0sk'}
{'comment': 'Look at how much the gap closed in some of those blue states… like holy crap, NY and NJ had a heck of a turnout… he’s on track to win the popular vote too.', 'created': '2024-11-06 08:52:17', 'submission_id': '1gkt0sk'}
{'comment': 'Now comes all the crying about how we have to get rid of the electoral college despite DJT also winning the popular vote.', 'created': '2024-11-06 11:28:28', 'submission_id': '1gkt0sk'}
{'comment': 'R/pics having a breakdown ! Suffer libs !!', 'created': '2024-11-06 12:52:34', 'submission_id': '1gkt0sk'}
{'comment': 'I love how the map you posted called it with … what I’m assuming is Alaska and one Maine vote? The mainstream media wouldn’t call this for another three hours and then they credited Wisconsin. But I love that rural voters pushed it over!!! They should get full credit. I don’t know if that is a narrative that is being purposefully avoided? Maybe because campaigning in a rural area is virtually impossible. But I love rural America so let’s give them credit where credit is due.', 'created': '2024-11-06 12:11:25', 'submission_id': '1gkt0sk'}
{'comment': 'I wonder if Dems still want to expand the court?', 'created': '2024-11-06 12:23:24', 'submission_id': '1gkt0sk'}
{'comment': 'Kamala couldn’t even show up to her own rally to thank her supporters!!', 'created': '2024-11-06 13:55:05', 'submission_id': '1gkt0sk'}
{'comment': 'Fk out of here democrats. I used to vote democrat but I voted for Trump this year. Tired of how hateful democrats are.', 'created': '2024-11-06 15:35:19', 'submission_id': '1gkt0sk'}
{'comment': 'All my friends are so mad because they think their rights are being taken away 😭!?? Where did they even get that from 😭', 'created': '2024-11-06 13:36:24', 'submission_id': '1gkt0sk'}
{'comment': "FUCK YES!!!! Congrats folks!!!!!!! We're back!", 'created': '2024-11-06 11:39:41', 'submission_id': '1gkt0sk'}
{'comment': 'Congratulations everyone and America in our victory. Every American whether they voted for him or not will benefit from his administration.', 'created': '2024-11-06 12:10:13', 'submission_id': '1gkt0sk'}
{'comment': 'THANK GOD', 'created': '2024-11-06 12:54:26', 'submission_id': '1gkt0sk'}
{'comment': 'God Bless America ladies and gentlemen!! 🇺🇲', 'created': '2024-11-06 12:56:36', 'submission_id': '1gkt0sk'}
{'comment': 'Kamala one, Kamala all,\nTo the Trump Inauguration ball\n\nHarris helped by being lazy,\nBiden too, four years of crazy\n\n“President Harris” nope, not ever,\nTrump for the win, ain’t he clever\n\nExcuse my poem, it’s very snarky\nBut no one here wanted more malarkey\n❤️🇺🇸‼️💯', 'created': '2024-11-06 15:06:13', 'submission_id': '1gkt0sk'}
{'comment': 'Radical left can rot for all I care. All the nasty things they have said over the years, unchecked and unhinged. They deserve every bit of this.', 'created': '2024-11-06 19:52:24', 'submission_id': '1gkt0sk'}
{'comment': "It's still coming up as 267 on all of my searches", 'created': '2024-11-06 08:51:41', 'submission_id': '1gkt0sk'}
{'comment': 'Someone on r/politics literally posted a suicide hotline like wtf 💀', 'created': '2024-11-06 15:25:35', 'submission_id': '1gkt0sk'}
{'comment': 'Welcome back bitches!', 'created': '2024-11-06 09:52:01', 'submission_id': '1gkt0sk'}
{'comment': 'Hell yeah!! 🇺🇸🇺🇸🇺🇸', 'created': '2024-11-06 12:47:55', 'submission_id': '1gkt0sk'}
{'comment': 'I feel soo relieved!!', 'created': '2024-11-06 12:53:00', 'submission_id': '1gkt0sk'}
{'comment': 'Oh geez Trump and Vance knocked on my door this morning. They are here for my freedom 🤣', 'created': '2024-11-06 13:34:11', 'submission_id': '1gkt0sk'}
{'comment': 'All the reddit commies crying rn I’m having a blast🤣🤣🇺🇸', 'created': '2024-11-06 15:28:52', 'submission_id': '1gkt0sk'}
{'comment': 'goodbye inflation😭 i can breathe!', 'created': '2024-11-06 15:33:15', 'submission_id': '1gkt0sk'}
{'comment': 'Hail to the king baby!!!!!!!', 'created': '2024-11-06 16:53:58', 'submission_id': '1gkt0sk'}
{'comment': 'The Dawgs and the cats are safe!', 'created': '2024-11-06 16:55:19', 'submission_id': '1gkt0sk'}
{'comment': "Trump 2024 Let's Go !!! 🥳", 'created': '2024-11-06 13:03:04', 'submission_id': '1gkt0sk'}
{'comment': 'We back baby we back !!!!', 'created': '2024-11-06 13:31:35', 'submission_id': '1gkt0sk'}
{'comment': 'Just got on Reddit to see the meltdown. Most communist leftist site and that’s saying something.', 'created': '2024-11-06 13:29:18', 'submission_id': '1gkt0sk'}
{'comment': "Doesn't anyone think it's odd Biden got over 80 million votes and Trump over 70 million in 2020. More people registered to vote in this election than last and neither candidate got close to 2020 total numbers.", 'created': '2024-11-06 14:33:27', 'submission_id': '1gkt0sk'}
{'comment': 'as as republican, do we believe trump will follow through on Project 2025. That is the items everyone is talking about right now.', 'created': '2024-11-06 15:06:24', 'submission_id': '1gkt0sk'}
{'comment': 'Yall there’s a post in the GRIEF thread about how to cope with him winning 😂😂😂😂😂😂😂', 'created': '2024-11-06 15:29:15', 'submission_id': '1gkt0sk'}
{'comment': 'Feels good to win', 'created': '2024-11-06 16:03:40', 'submission_id': '1gkt0sk'}
{'comment': 'I’m gonna be drinking some liberal tears tonight baby!', 'created': '2024-11-06 16:13:29', 'submission_id': '1gkt0sk'}
{'comment': 'I love it!', 'created': '2024-11-06 16:24:38', 'submission_id': '1gkt0sk'}
{'comment': '276-223 is the worst number a liberal wants to hear', 'created': '2024-11-06 16:28:11', 'submission_id': '1gkt0sk'}
{'comment': 'RGR', 'created': '2024-11-06 16:30:50', 'submission_id': '1gkt0sk'}
{'comment': 'Amazing win everyone!', 'created': '2024-11-06 16:31:56', 'submission_id': '1gkt0sk'}
{'comment': 'Pennsylvania is now my favorite state.', 'created': '2024-11-06 16:42:28', 'submission_id': '1gkt0sk'}
{'comment': 'Helllll yeahh', 'created': '2024-11-06 16:54:03', 'submission_id': '1gkt0sk'}
{'comment': 'YERRRRRRRRRRRRRR', 'created': '2024-11-06 16:54:12', 'submission_id': '1gkt0sk'}
{'comment': "Waiting to see all the leftist gun groups stage the civil disobedience they've been projecting onto the right. Anyone remember the race riots a few years back with BLM? Imagine that but a decent few of them have been 'training'. \n\nBeing real, if it were an actual 2A red blooded American on top of that building, we wouldn't have missed.... the first shot.\nNot making light of what happened, but expect a lot of shots with very little efficiency. This is what you should be worried about up until around inauguration.\n\nFurthermore we still have a few months until he's sworn in. They could make Biden senile and reseat him with the VP... making Kamala Potus with or without an election win. A few certain Exec Orders and boom you have Martial Law, extension of Presidential powers and an indefinite postponement of election results. \nWhich gets those FEMA camps filled and the country in the direction it has been. \n\nTLDR: everyone celebrating but we forget about the fact that this person still has a position of power, has already shoehorned her way past her own DNC election and likely has no concern over the actions herein. In fact it only informs them of who their enemies are. Intel scouting. \n#tinfoilhat", 'created': '2024-11-06 19:40:58', 'submission_id': '1gkt0sk'}
{'comment': 'Reddit in flames , 🔥 I love it', 'created': '2024-11-07 00:06:50', 'submission_id': '1gkt0sk'}
{'comment': 'I got banned from r/pics because I commented in this and other conservative subs. Not from something I said in that sub. Because I commented in another sub! They are in TOTAL MELTDOWN!!! 🤣🤣', 'created': '2024-11-07 00:26:45', 'submission_id': '1gkt0sk'}
{'comment': 'Redditors thought their voice was the voice of America bahahaha', 'created': '2024-11-07 07:26:53', 'submission_id': '1gkt0sk'}
{'comment': 'BREAKING: Ocean levels are rising due to lib tears 😂', 'created': '2024-11-07 08:44:00', 'submission_id': '1gkt0sk'}
{'comment': '🎉❤️🦅🇺🇸', 'created': '2024-11-07 12:50:31', 'submission_id': '1gkt0sk'}
{'comment': 'Reddit is full of crybabies 😂🤣 I think the Libturds are the only people to cry/burn/loot/ violent when they don’t get their results. \nTRUMP! 🇺🇸🫡', 'created': '2024-11-07 17:40:01', 'submission_id': '1gkt0sk'}
{'comment': 'Hilarious thing is tons of democrats are saying we must’ve cheated and are demanding a recount💀😭', 'created': '2024-11-07 21:34:53', 'submission_id': '1gkt0sk'}
{'comment': 'It feels so good!', 'created': '2024-11-06 13:11:13', 'submission_id': '1gkt0sk'}
{'comment': 'I just woke up to this!!!!!!!!! 🥹', 'created': '2024-11-06 13:30:46', 'submission_id': '1gkt0sk'}
{'comment': 'Oh, happy day!', 'created': '2024-11-06 14:26:18', 'submission_id': '1gkt0sk'}
{'comment': 'The people have spoken. God has spoken. Hopefully we can finally move in a positive direction, fix our broken country, and lock away the evil ones.', 'created': '2024-11-06 14:30:33', 'submission_id': '1gkt0sk'}
{'comment': 'Praise Jesus!', 'created': '2024-11-06 15:09:34', 'submission_id': '1gkt0sk'}
{'comment': 'SO GOOD', 'created': '2024-11-06 15:10:31', 'submission_id': '1gkt0sk'}
{'comment': '# Post on r/pics See how they react.', 'created': '2024-11-06 15:11:13', 'submission_id': '1gkt0sk'}
{'comment': 'Reddit is going crazy, people won’t accept it lol. And if you even see somone say they voted for trump they have like 100 downvotes because downvoting is gonna change the election 😭😭🗣️', 'created': '2024-11-06 15:15:07', 'submission_id': '1gkt0sk'}
{'comment': 'https://m.youtube.com/watch?si=M0U3BHMfLff8RmSQ&v=gKQOXYB2cd8&feature=youtu.be\nIt’s a win like this.', 'created': '2024-11-06 11:33:01', 'submission_id': '1gkt0sk'}
{'comment': 'I don’t think Arizona is blue…', 'created': '2024-11-06 11:34:06', 'submission_id': '1gkt0sk'}
{'comment': '[removed]', 'created': '2024-11-06 12:08:38', 'submission_id': '1gkt0sk'}
{'comment': 'Start playing New York Groove.\nhttps://youtu.be/DXeeY9D9u94?si=AAspra0U4YkZpDCx', 'created': '2024-11-06 15:46:28', 'submission_id': '1gkt0sk'}
{'comment': 'as a CA resident I knew CA was gonna be pink. I needed to share this since It was apart of my prediction and other CA residents here were in disbelief. This is from the NY times and there was a lotttt of Trump support here. Glad to see it. \n[https://imgur.com/a/ShzWZF1](https://imgur.com/a/ShzWZF1)', 'created': '2024-11-06 15:50:20', 'submission_id': '1gkt0sk'}
{'comment': 'They still are in denial about the last four years', 'created': '2024-11-06 15:58:32', 'submission_id': '1gkt0sk'}
{'comment': 'Hilarious. Go to the Reddit States... like Texas and North Carolina. They are "so disappointed" in America. Cry bitches.', 'created': '2024-11-06 16:02:31', 'submission_id': '1gkt0sk'}
{'comment': '❤️❤️❤️showed up and showed out last night! Excited for the future of our nation', 'created': '2024-11-06 16:57:59', 'submission_id': '1gkt0sk'}
{'comment': "Indeed. I'm very interested in what he will do.", 'created': '2024-11-06 17:04:18', 'submission_id': '1gkt0sk'}
{'comment': 'I am unburdened by what has been', 'created': '2024-11-06 17:10:44', 'submission_id': '1gkt0sk'}
{'comment': 'Hows /politics taking this?', 'created': '2024-11-06 17:38:54', 'submission_id': '1gkt0sk'}
{'comment': 'Awesome!!! Congrats fellers!', 'created': '2024-11-06 17:43:36', 'submission_id': '1gkt0sk'}
{'comment': 'Get ready for the mainstream news media getting ready! To make up tons of fake news stories about Trump. \n\n“When Trump didn’t reply to the black CNN news reporter at the end of the press conference, that’s how we knew he was a racist!”\n\n“Trump secretly wanting WW3, says anonymous source!”\n\n“Trump is just really bad at golf, did you know he’s also bad at running the country!”\n\n“Trump hates you, here’s why!”\n\n“Why we need to back Joe Biden in 2028!, 90’s is the new 60’s!”', 'created': '2024-11-06 17:46:29', 'submission_id': '1gkt0sk'}
{'comment': 'theyre saying we "cheated" now rofl', 'created': '2024-11-06 17:57:52', 'submission_id': '1gkt0sk'}
{'comment': '👏👏👏', 'created': '2024-11-06 18:10:07', 'submission_id': '1gkt0sk'}
{'comment': 'Haha', 'created': '2024-11-06 18:18:00', 'submission_id': '1gkt0sk'}
{'comment': '[Scoreboard.](https://cdn.discordapp.com/attachments/1178583575063429171/1303724524868468777/cm-chat-media-video-1c039a834-3d99-426a-b6a7-c42ad224245b318400.mov?ex=672ccb94&is=672b7a14&hm=d277fc85cbba288961364ddc81aa853af869d2933c97a3e3e6d82c369afb99e0&)', 'created': '2024-11-06 18:33:04', 'submission_id': '1gkt0sk'}
{'comment': "People are LOSING it. Women acting like all rights are being stripped away and they aren't safe. It's really ridiculous. They need to go outside and touch some grass. We haven't lost any rights, and as a women I definitely don't walk around thinking I'm a victim/weak/oppressed. I have just as many rights as any man in this country. It must suck to be that weak and brainwashed. \n\n I don't LOVE Trump, but voted for him without hesitation because I'm conservative and his policies align with my beliefs more than the other choice, and I feel like he really does love this country and wants to see it prosper.", 'created': '2024-11-06 19:01:18', 'submission_id': '1gkt0sk'}
{'comment': 'We are back!', 'created': '2024-11-06 19:17:32', 'submission_id': '1gkt0sk'}
{'comment': 'Bring success back to North America, and let the numbers speak for themselves. Put a lid on rampant crime that has been going unpunished.', 'created': '2024-11-06 19:24:37', 'submission_id': '1gkt0sk'}
{'comment': 'Does this mean they will come out with a new season of Handmaids tale?', 'created': '2024-11-06 20:27:10', 'submission_id': '1gkt0sk'}
{'comment': 'WAHOOOO', 'created': '2024-11-06 20:30:09', 'submission_id': '1gkt0sk'}
{'comment': 'Yes, victory ✌️ victory', 'created': '2024-11-06 20:36:34', 'submission_id': '1gkt0sk'}
{'comment': 'Love watching the other subs in meltdown mode.', 'created': '2024-11-06 21:11:22', 'submission_id': '1gkt0sk'}
{'comment': 'Here in ny does this mean it’ll go back to how it was before all the bans and need for concealed carry to buy assault rifles', 'created': '2024-11-06 21:25:18', 'submission_id': '1gkt0sk'}
{'comment': 'I live in a blue state and the posts today are hilarious, especially if you listen to the comments with a sad violin soundtrack in the background. Of course, pointing this out to them didn’t go well, I got downvoted to hell. Oh well!', 'created': '2024-11-06 21:29:48', 'submission_id': '1gkt0sk'}
{'comment': 'God bless him!!! 🙏🙏🙏', 'created': '2024-11-06 21:33:33', 'submission_id': '1gkt0sk'}
{'comment': "HELL YEAH!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Where them leftist tears at? I'M PARCHED !", 'created': '2024-11-06 21:34:50', 'submission_id': '1gkt0sk'}
{'comment': ':)', 'created': '2024-11-06 21:39:08', 'submission_id': '1gkt0sk'}
{'comment': 'R/pics is going through it rn 😂', 'created': '2024-11-06 21:52:48', 'submission_id': '1gkt0sk'}
{'comment': 'Have a wonderful four years, Patriots!', 'created': '2024-11-06 21:53:23', 'submission_id': '1gkt0sk'}
{'comment': 'Congratulations republicans. Democracy is a great thing..', 'created': '2024-11-06 22:16:12', 'submission_id': '1gkt0sk'}
{'comment': 'We are so unburdened of what would have been', 'created': '2024-11-06 22:18:55', 'submission_id': '1gkt0sk'}
{'comment': 'They gotta hand the ball to the ref', 'created': '2024-11-06 23:09:55', 'submission_id': '1gkt0sk'}
{'comment': 'This is what happens when 20 million pretend voterssit out an election.', 'created': '2024-11-06 23:32:00', 'submission_id': '1gkt0sk'}
{'comment': 'Let’s go red wave 🌊', 'created': '2024-11-07 00:20:35', 'submission_id': '1gkt0sk'}
{'comment': 'What I would like to see on Reddit is honesty about each of their sub forums. It needs to say: r/Pic- liberal views only or r/inthenews- liberal views only. Etc.!', 'created': '2024-11-07 00:42:09', 'submission_id': '1gkt0sk'}
{'comment': 'We’re back baby!', 'created': '2024-11-07 01:01:30', 'submission_id': '1gkt0sk'}
{'comment': 'i just love watching those libs in r/Politics cry in tears! bunch of AHole keep censoring free speech!', 'created': '2024-11-07 02:07:15', 'submission_id': '1gkt0sk'}
{'comment': 'Did you guys watch CNN last night? \n\nWhen Hillary lost i flipped the channel over there and laughed my ass off as they tried desperately to find a way to win. \n\nLast night I started early and had a blast.', 'created': '2024-11-07 02:57:27', 'submission_id': '1gkt0sk'}
{'comment': 'Finally, we got a concept of a real plan. Woohoo!!!', 'created': '2024-11-07 03:17:46', 'submission_id': '1gkt0sk'}
{'comment': 'what is the number 55 in the middle', 'created': '2024-11-07 04:10:33', 'submission_id': '1gkt0sk'}
{'comment': 'Thank God Trump won. I was thinking I was going to have to sneak into Mexico', 'created': '2024-11-07 11:47:08', 'submission_id': '1gkt0sk'}
{'comment': 'Why was this result surprising to so many on this site?', 'created': '2024-11-07 20:06:29', 'submission_id': '1gkt0sk'}
{'comment': "You should see California..... Even my county turned red! It's insane!", 'created': '2024-11-12 03:04:53', 'submission_id': '1gkt0sk'}
{'comment': "I'm still trying to figure out with such a massive turn out the total vote is only 136 million compared to 151 million in 2020 and 126 million in 2016.", 'created': '2024-11-06 12:27:04', 'submission_id': '1gkt0sk'}
{'comment': 'MN being in play is crazy.', 'created': '2024-11-06 12:55:49', 'submission_id': '1gkt0sk'}
{'comment': 'We are baaack!', 'created': '2024-11-06 14:03:58', 'submission_id': '1gkt0sk'}
{'comment': 'Morning in America', 'created': '2024-11-06 15:14:55', 'submission_id': '1gkt0sk'}
{'comment': 'Kamala Harris is what happens to a candidate when you do nothing and just assume every voter will check the box that has your name. Nope. Not in this country. She can just go snap, cackle and pop.', 'created': '2024-11-06 15:18:28', 'submission_id': '1gkt0sk'}
{'comment': 'Can\'t wait until Jan 6th 2025. I\'m sure it\'ll be "mostly peaceful".', 'created': '2024-11-06 15:18:47', 'submission_id': '1gkt0sk'}
{'comment': 'It’s a GREAT day, but nothing will top watching Heels up Harris count in the electoral votes 😂', 'created': '2024-11-06 15:19:27', 'submission_id': '1gkt0sk'}
{'comment': 'The lib tears have never tasted so sweet!', 'created': '2024-11-06 15:23:35', 'submission_id': '1gkt0sk'}
{'comment': "I'm still kinda mind f'd that this many people would vote for a doubled down version of the last four years", 'created': '2024-11-06 15:24:42', 'submission_id': '1gkt0sk'}
{'comment': 'GOD BLESS AMERICA!!', 'created': '2024-11-06 15:25:43', 'submission_id': '1gkt0sk'}
{'comment': 'WERE SO DAMN BACK BABY', 'created': '2024-11-06 15:28:46', 'submission_id': '1gkt0sk'}
{'comment': 'I don’t think it’s 270 rn, it’s 267, innit?', 'created': '2024-11-06 08:38:20', 'submission_id': '1gkt0sk'}
{'comment': 'I really wish this was real, don’t get me wrong trump is up 267 to 224 but the election isn’t called yet. \nAlso, do you think the democrats will riot? It seems their best way to get their point across or try to secede from the union like they tried to do during the civil war.', 'created': '2024-11-06 11:21:32', 'submission_id': '1gkt0sk'}
{'comment': 'They really need to just accept their defeat and he unburdened by what has been', 'created': '2024-11-06 09:55:13', 'submission_id': '1gkt0sk'}
{'comment': 'r/politics is in shambles lol', 'created': '2024-11-06 11:58:09', 'submission_id': '1gkt0sk'}
{'comment': 'I know. Its so enjoyable seeing them say "democracy is over" and other shit after weeks of "Trump bad. No way he wins" only for him to win by a large margin.', 'created': '2024-11-06 12:01:05', 'submission_id': '1gkt0sk'}
{'comment': "Im loving it. They're actually just insufferable babies.", 'created': '2024-11-06 12:46:33', 'submission_id': '1gkt0sk'}
{'comment': 'Woke up early, got some coffee, read some crazy lib comments.... life is so damn good rn', 'created': '2024-11-06 14:34:56', 'submission_id': '1gkt0sk'}
{'comment': "Subs like r/atheism etc are having the biggest meltdown of their lives. They're saying they're gonna move to New Zealand or a Scandinavian country 😂😂😂😂", 'created': '2024-11-06 15:27:10', 'submission_id': '1gkt0sk'}
{'comment': "I can't even go make fun of them, the amount of cope and seeth is so vast it's awe-inspiring. Gloating now would be like screaming at the ocean for being wet.", 'created': '2024-11-06 14:02:45', 'submission_id': '1gkt0sk'}
{'comment': 'They\'re all saying "You guys insisted the election wasn\'t secure and that there was cheating. Suddenly now that he\'s won, you\'ve got zero complaints and are saying it was valid?" \n\nHow do we respond to that? They\'ve at least got a bit of a point.\n\nI\'ve been explaining that the polls didn\'t BOARD UP their windows, lock their doors, kick watchers out, and then report sudden spikes in vote counts, so regardless of how legit it is there weren\'t any massive red flags like before that just scream fraud', 'created': '2024-11-06 16:04:32', 'submission_id': '1gkt0sk'}
{'comment': 'And it’s glorious. Taking my stabs at them and taking my downvotes with pride.', 'created': '2024-11-06 14:02:34', 'submission_id': '1gkt0sk'}
{'comment': 'It’s been so quiet … what now?', 'created': '2024-11-06 10:15:25', 'submission_id': '1gkt0sk'}
{'comment': 'You should see the stuff they’re saying, calling us idiots and hoping we die. It’s funny', 'created': '2024-11-06 16:24:36', 'submission_id': '1gkt0sk'}
{'comment': 'And amen.', 'created': '2024-11-06 15:07:57', 'submission_id': '1gkt0sk'}
{'comment': 'And I am here for it! Let those liberal tears flow!', 'created': '2024-11-06 15:09:51', 'submission_id': '1gkt0sk'}
{'comment': 'Love to see it. All those smug pricks are beside themselves', 'created': '2024-11-06 20:20:31', 'submission_id': '1gkt0sk'}
{'comment': 'Had to leave a few.\n\n​\n\nComments got deleted and accused of lacking empathy (why would I have empathy for someone who would cheer for my arrest?).', 'created': '2024-11-06 21:52:49', 'submission_id': '1gkt0sk'}
{'comment': 'It’s important to note that Reddit is over 50% non-US. This means at least 1 of every 2 people you talk to is seeking to create foreign influence. \n\nSharing viewpoints isn’t bad, but they need to clean their own horse before they point at our dirty kitchen.\n\nWe need to talk and share ideas but think where it’s coming from and what their motives are. \n\nAlso, don’t be a poor winner. We need to come together now, Americans first parties second!', 'created': '2024-11-06 15:18:09', 'submission_id': '1gkt0sk'}
{'comment': 'Even the romance book sub I’m in is going crazy lol. Make it make sense', 'created': '2024-11-06 16:44:48', 'submission_id': '1gkt0sk'}
{'comment': 'I love it 😂😂', 'created': '2024-11-06 16:50:13', 'submission_id': '1gkt0sk'}
{'comment': 'It’s awesome', 'created': '2024-11-06 17:50:10', 'submission_id': '1gkt0sk'}
{'comment': 'It’s very quiet! Can’t wait to rub it in!', 'created': '2024-11-06 17:56:57', 'submission_id': '1gkt0sk'}
{'comment': "Here's a question for the lefties raging about the result: Supposedly we had record turnout this election. How did there manage to be 18 million **fewer** votes cast than in 2020?", 'created': '2024-11-06 18:53:25', 'submission_id': '1gkt0sk'}
{'comment': "That's because they've been lied to for the past 8 years. They can't accept that, so it must be the apocalypse.", 'created': '2024-11-06 19:15:26', 'submission_id': '1gkt0sk'}
{'comment': 'They’re unwell', 'created': '2024-11-06 19:17:42', 'submission_id': '1gkt0sk'}
{'comment': 'It absolutely is. The delusion apparent in the democrats sub is hysterical.', 'created': '2024-11-06 22:21:36', 'submission_id': '1gkt0sk'}
{'comment': 'Just so I can inform my liberal friends when they need to start heading for the hills, since Trump “seeks dictatorship!!”™️ can anyone tell me say, what steps 1-5 will be so I can give them a heads up? I’m hoping maybe they’ll let me borrow their golf clubs while they’re building their forest redoubt. I mean, who’s going to need those during the apocalypse anyway? 🤣', 'created': '2024-11-07 05:10:25', 'submission_id': '1gkt0sk'}
{'comment': 'Is this not reddit?', 'created': '2024-11-06 15:24:26', 'submission_id': '1gkt0sk'}
{'comment': 'lol you mean the Dems on Reddit lol 😂', 'created': '2024-11-06 17:02:18', 'submission_id': '1gkt0sk'}
{'comment': 'It’s so so bad out there. Take care all. LIVING RENT FREE sums it up.', 'created': '2024-11-06 18:19:57', 'submission_id': '1gkt0sk'}
{'comment': 'I have no problem seeing this, it’s prob the happiest day of my life! But the icing on the cake is seeing every liberal here in Colorado losing it. We defeated evil!!!!', 'created': '2024-11-06 18:46:13', 'submission_id': '1gkt0sk'}
{'comment': 'Seriously, I enjoy Reddit but gosh it gets annoying that every post in every subreddit besides this one is so far left. Trash talk about Trump gets upvoted and say something bad about the dems and probably get banned.', 'created': '2024-11-06 18:55:19', 'submission_id': '1gkt0sk'}
{'comment': 'If you watch you’ll see there’s actually a lot of happy people. Their posts just get deleted and banned by the mods. It needs to be checked by Reddit.', 'created': '2024-11-06 19:02:46', 'submission_id': '1gkt0sk'}
{'comment': 'Love trolling everyone who’s crying', 'created': '2024-11-07 00:12:38', 'submission_id': '1gkt0sk'}
{'comment': 'America has spoken, so many people I know (myself included) voted all red for the first time ever! We’re fed up with the radical left policies and ideologies', 'created': '2024-11-06 16:51:13', 'submission_id': '1gkt0sk'}
{'comment': 'Adios to the REAL garbage!!!', 'created': '2024-11-06 12:48:42', 'submission_id': '1gkt0sk'}
{'comment': 'They will be moving into a jail cell once the Diddy lists are released', 'created': '2024-11-06 17:38:58', 'submission_id': '1gkt0sk'}
{'comment': 'Seeyah Oprah, get the hell out of here', 'created': '2024-11-06 15:19:15', 'submission_id': '1gkt0sk'}
{'comment': 'And we wont miss them!', 'created': '2024-11-06 22:56:32', 'submission_id': '1gkt0sk'}
{'comment': 'TBF he never conceded lol', 'created': '2024-11-06 13:37:32', 'submission_id': '1gkt0sk'}
{'comment': None, 'created': '2024-11-06 11:46:22', 'submission_id': '1gkt0sk'}
{'comment': "I told my fiance I would bet anything that Hillary voted for Trump this time. In no way shape or form did she want brainless Harris to beat him when she couldn't. It probably ate at her dead insides to have to pretend to support her.", 'created': '2024-11-06 19:17:28', 'submission_id': '1gkt0sk'}
{'comment': 'Perpetual no-show.', 'created': '2024-11-06 15:26:14', 'submission_id': '1gkt0sk'}
{'comment': 'Kamala it’s ok, just move on and be unburdened by what has been.', 'created': '2024-11-06 09:54:34', 'submission_id': '1gkt0sk'}
{'comment': "We're praying for you Canada! 🥰", 'created': '2024-11-06 11:23:06', 'submission_id': '1gkt0sk'}
{'comment': 'What does Trudeau do that is bad?\xa0', 'created': '2024-11-06 12:18:02', 'submission_id': '1gkt0sk'}
{'comment': 'Haha. Underrated comment. PA was the only state I was watching. PA goes red, Trump wins', 'created': '2024-11-06 20:04:29', 'submission_id': '1gkt0sk'}
{'comment': "Yup. I'm a woman who voted for trump. I'm a minority now lol", 'created': '2024-11-06 15:16:22', 'submission_id': '1gkt0sk'}
{'comment': 'Same here we got shit done', 'created': '2024-11-06 20:23:56', 'submission_id': '1gkt0sk'}
{'comment': 'WE dominated. America has had enough.', 'created': '2024-11-06 15:34:19', 'submission_id': '1gkt0sk'}
{'comment': 'Was there an opposing candidate this time?', 'created': '2024-11-06 16:08:38', 'submission_id': '1gkt0sk'}
{'comment': "California hands them 54 points every election. That's insane. Let them do it and they'll never win another election.", 'created': '2024-11-06 19:11:40', 'submission_id': '1gkt0sk'}
{'comment': 'More than ever.', 'created': '2024-11-06 15:28:41', 'submission_id': '1gkt0sk'}
{'comment': 'Her shtick. She blew off everybody, including her own.', 'created': '2024-11-06 15:30:29', 'submission_id': '1gkt0sk'}
{'comment': '👍', 'created': '2024-11-06 16:56:48', 'submission_id': '1gkt0sk'}
{'comment': 'Mostly social media probably. It’s all fake to get attention.', 'created': '2024-11-06 19:40:21', 'submission_id': '1gkt0sk'}
{'comment': 'Same place they got the rest of their delusions. Drank the kool-aid.', 'created': '2024-11-06 15:33:37', 'submission_id': '1gkt0sk'}
{'comment': 'Well done!', 'created': '2024-11-06 15:35:36', 'submission_id': '1gkt0sk'}
{'comment': None, 'created': '2024-11-06 09:01:01', 'submission_id': '1gkt0sk'}
{'comment': "Oh. So they're not happy over yonder?", 'created': '2024-11-06 16:06:19', 'submission_id': '1gkt0sk'}
{'comment': 'Please wake up.', 'created': '2024-11-06 15:36:15', 'submission_id': '1gkt0sk'}
{'comment': 'Now they know how we felt when Biden won. 🤣', 'created': '2024-11-09 04:35:15', 'submission_id': '1gkt0sk'}
{'comment': 'Trump won Wisconsin. \n\nHe’s got 277', 'created': '2024-11-06 11:51:59', 'submission_id': '1gkt0sk'}
{'comment': 'Maybe you were looking at New Mexico. Arizona was still greyed out on this map.', 'created': '2024-11-06 12:12:51', 'submission_id': '1gkt0sk'}
{'comment': '[removed]', 'created': '2024-11-06 12:08:53', 'submission_id': '1gkt0sk'}
{'comment': 'We did! We prevented them from cheating as much as they wanted to, and that is cheating!', 'created': '2024-11-06 18:23:26', 'submission_id': '1gkt0sk'}
{'comment': 'Why must Reddit insist on making it an .mov imbed 🥲', 'created': '2024-11-06 18:33:52', 'submission_id': '1gkt0sk'}
{'comment': 'Those were undecided votes.', 'created': '2024-11-07 12:21:27', 'submission_id': '1gkt0sk'}
{'comment': 'The left weren’t able to harvest ballot due to it not being a pandemic year', 'created': '2024-11-06 13:09:14', 'submission_id': '1gkt0sk'}
{'comment': 'Now we see if Democrats in Congress follow through on their threats to prevent him from taking office.', 'created': '2024-11-06 16:20:30', 'submission_id': '1gkt0sk'}
{'comment': "I'm wondering how many lamps she threw at Dougie and staffers last night.", 'created': '2024-11-06 16:05:48', 'submission_id': '1gkt0sk'}
{'comment': 'He won Alaska.', 'created': '2024-11-06 08:38:49', 'submission_id': '1gkt0sk'}
{'comment': 'Bud ur late it’s 277 and it’s official', 'created': '2024-11-06 08:38:40', 'submission_id': '1gkt0sk'}
{'comment': '277 last I looked', 'created': '2024-11-06 11:24:59', 'submission_id': '1gkt0sk'}
{'comment': "Trump just won Wisconsin it's real we're good", 'created': '2024-11-06 11:42:42', 'submission_id': '1gkt0sk'}
{'comment': "They'll for sure riot, they're probably already preparing themselves.", 'created': '2024-11-06 11:33:02', 'submission_id': '1gkt0sk'}
{'comment': 'Finally unburdened by what has been for the last couple of months 😂😂', 'created': '2024-11-06 14:39:08', 'submission_id': '1gkt0sk'}
{'comment': 'Haha, 🤣 so good', 'created': '2024-11-06 13:10:01', 'submission_id': '1gkt0sk'}
{'comment': '🤣\n\nMy god that is _AWESOME_!', 'created': '2024-11-06 13:57:26', 'submission_id': '1gkt0sk'}
{'comment': 'Yeah. That’s with everything now', 'created': '2024-11-06 22:45:45', 'submission_id': '1gkt0sk'}
{'comment': "Hilarious, just went through the comments and they don't understand how they lost after the 4 year circus this country just went through....", 'created': '2024-11-06 12:49:48', 'submission_id': '1gkt0sk'}
{'comment': 'Right after Fox called the election last night, r/politics briefly flipped red. All the new posts were flooded with MAGA comments 😂', 'created': '2024-11-06 15:00:02', 'submission_id': '1gkt0sk'}
{'comment': 'I wanna go see', 'created': '2024-11-06 12:43:43', 'submission_id': '1gkt0sk'}
{'comment': "That's so nice to read this morning! There are some murky waters I do not tread into and that sub is one of them.", 'created': '2024-11-06 16:03:42', 'submission_id': '1gkt0sk'}
{'comment': 'Notice how many of those posts are all paywalled. Lmao 🤣', 'created': '2024-11-06 19:30:50', 'submission_id': '1gkt0sk'}
{'comment': 'I was reading through some of the comments and they’re still using fear monger tactics about legal Latinos voting for Trump. “Don’t come to us for help or sympathy when you get deported” blah blah blah. They don’t understand that we minorities are done with the fear monger rhetoric. Our voting turnout shows that very fact. We don’t need you liberal democrats to be our saviors. Geez. They’re so condescending with their superiority complex’s. So out of touch over there in that sub.', 'created': '2024-11-07 07:17:48', 'submission_id': '1gkt0sk'}
{'comment': 'And even though they don’t deserve it, all of those crybabies are going to benefit from Trump policies. Fatter wallets, safer borders, better and more jobs…But they’ll NEVER acknowledge it.', 'created': '2024-11-08 06:19:27', 'submission_id': '1gkt0sk'}
{'comment': 'Saw that!!!', 'created': '2024-11-07 09:28:51', 'submission_id': '1gkt0sk'}
{'comment': 'And the popular vote, which they can never shut up about during elections! That is the icing on the cake!', 'created': '2024-11-06 16:26:41', 'submission_id': '1gkt0sk'}
{'comment': 'Same. Woke up hours before sunrise and somehow the world seemed more vintage and sane.', 'created': '2024-11-06 16:22:12', 'submission_id': '1gkt0sk'}
{'comment': 'Republican athiest chiming in and celebrating my ass off today! And I’m staying here! 🇺🇸', 'created': '2024-11-06 17:11:32', 'submission_id': '1gkt0sk'}
{'comment': "They're wishing god and hell existed so they get justice, has to be the most stupid stuff I've seen in reddit", 'created': '2024-11-06 16:31:14', 'submission_id': '1gkt0sk'}
{'comment': "Bro they're in like a full on depression spiral. That's pathetic.", 'created': '2024-11-06 23:01:21', 'submission_id': '1gkt0sk'}
{'comment': 'Well once the Trump policies kick in and their wallets fatten, they’ll be able to afford the airfare (one way, PLEASE) to make those moves.', 'created': '2024-11-08 06:21:19', 'submission_id': '1gkt0sk'}
{'comment': "So gracious. I'll gloat for ya.", 'created': '2024-11-06 15:25:06', 'submission_id': '1gkt0sk'}
{'comment': 'You have the right answer. There were no random spikes in the middle of night. The vote shift to the right is significant, she never had the support that Joe. The Dems could have avoided this, but they intentionally chose to not do so.', 'created': '2024-11-06 16:06:55', 'submission_id': '1gkt0sk'}
{'comment': "No, a lot of them think there was cheating and have a hashtag trending on x donotconcedeKamala until every vote is counted.....They believe a lot of votes weren't counted and there should be a recount", 'created': '2024-11-06 18:02:19', 'submission_id': '1gkt0sk'}
{'comment': 'EXACTLY! However we did have to fight against that in some places yesterday because that’s what they were doing. There weren’t any mysterious ballot dumps with all Republican votes. They need to find new ways to cope with this.', 'created': '2024-11-06 16:30:56', 'submission_id': '1gkt0sk'}
{'comment': "I don't give a shit about Internet points. I'm having fun. \n\nThey are rude to us so much and we just sit there and take it. Now it's time to be rude back.", 'created': '2024-11-06 15:14:09', 'submission_id': '1gkt0sk'}
{'comment': "They are plotting an excuse, can't use Russians again..", 'created': '2024-11-06 10:21:31', 'submission_id': '1gkt0sk'}
{'comment': 'The silence is beautiful', 'created': '2024-11-06 10:24:19', 'submission_id': '1gkt0sk'}
{'comment': 'Well said, even though it’s fun to gloat a little, but yours is the best way.', 'created': '2024-11-06 16:31:55', 'submission_id': '1gkt0sk'}
{'comment': 'It won’t. A bunch of fragile people who didn’t get their way and can’t deal with it.', 'created': '2024-11-06 17:57:13', 'submission_id': '1gkt0sk'}
{'comment': 'Reddit is very left leaning in general, so that’s most redditors.', 'created': '2024-11-06 17:58:10', 'submission_id': '1gkt0sk'}
{'comment': 'This election was absolutely a referendum on the policies and trend of the democrat party. Hopefully they learn this lesson and come racing back to the center', 'created': '2024-11-06 21:42:53', 'submission_id': '1gkt0sk'}
{'comment': 'Who will we throw rocks at? 🤔 \n🤣', 'created': '2024-11-06 23:15:27', 'submission_id': '1gkt0sk'}
{'comment': 'Why would he? That election (when he was in power) was stolen by the democrats! This election (with the democrats in power) was free and fair! /s', 'created': '2024-11-06 14:02:28', 'submission_id': '1gkt0sk'}
{'comment': 'Did you know Kamala was raised in a middle class household?', 'created': '2024-11-06 14:15:54', 'submission_id': '1gkt0sk'}
{'comment': 'The last official act of Kamala is to pardon her husband for knocking up the nanny and smacking his previous lady around', 'created': '2024-11-06 10:51:30', 'submission_id': '1gkt0sk'}
{'comment': 'Yes!!!! Maybe I’ll decide to vote for dems again once they get their heads out of their ass!!!! WE DID IT!!!!!!!!!', 'created': '2024-11-06 17:45:12', 'submission_id': '1gkt0sk'}
{'comment': 'Seizing/freezing bank accounts of donors to the truckers protest.', 'created': '2024-11-06 12:45:07', 'submission_id': '1gkt0sk'}
{'comment': "Don't know why your being downvoted for asking.\nBut let's say he's Canada's version of Kamala.\nFreezes bank accounts to the trucks of that convoy and I'm sure if he isn't already, wants to rule with an iron fist", 'created': '2024-11-06 15:40:19', 'submission_id': '1gkt0sk'}
{'comment': 'This guy has increased inflation, increased the price of goods and services with a carbon tax plus other taxes. Enacted authoritarian rules during covid, froze bank accounts of conservative protesters, spent more money than every single government before him combined, called millions of people "a small fringe minority". There\'s so many things I actually can\'t even keep track anymore', 'created': '2024-11-06 18:07:32', 'submission_id': '1gkt0sk'}
{'comment': 'So true', 'created': '2024-11-06 15:36:18', 'submission_id': '1gkt0sk'}
{'comment': '👍❤️', 'created': '2024-11-06 15:47:13', 'submission_id': '1gkt0sk'}
{'comment': 'This. They don’t want to admit that Alaska is going to put him over. It’s not even close there and was never in play.', 'created': '2024-11-06 09:12:34', 'submission_id': '1gkt0sk'}
{'comment': 'Yep. I think so. This is incredible- and I’m proud the country is not represented by most of Reddit', 'created': '2024-11-06 13:19:50', 'submission_id': '1gkt0sk'}
{'comment': 'I wonder how hungover she is today.', 'created': '2024-11-06 16:08:09', 'submission_id': '1gkt0sk'}
{'comment': 'Ah, well, I think I forgot to refresh the page.', 'created': '2024-11-06 08:39:22', 'submission_id': '1gkt0sk'}
{'comment': 'I’m trying to figure out which rock they have been under the last 4 years. They’re saying the country will *now* be in shambles because of DJT. Seriously, where have they been?!', 'created': '2024-11-06 14:21:16', 'submission_id': '1gkt0sk'}
{'comment': 'And they call us “sore losers” 🤣', 'created': '2024-11-06 13:00:16', 'submission_id': '1gkt0sk'}
{'comment': 'I saw someone say idk how they lost when everyone on reddit liked Harris', 'created': '2024-11-06 13:31:41', 'submission_id': '1gkt0sk'}
{'comment': "You know why? Because the Dems are liberal elites completely out of touch with reality and middle-class America. OR, they're the children of said liberal elites who had Mommy and Daddy pay for their $30k/year tuition. \n\nThe rest of us live in the real world. I went to college too but I had to work a blue-collar job to make it.", 'created': '2024-11-06 20:07:48', 'submission_id': '1gkt0sk'}
{'comment': 'Kinda explains things, hu??? Willful ignorance has a steep price.', 'created': '2024-11-06 15:23:00', 'submission_id': '1gkt0sk'}
{'comment': 'Or how a candidate who never received one vote as individual gets on the ballot for the biggest job in the land if not the world and then isn’t elected. YOU WILL VOTE FOR THIS WOMAN AND YOU WILL LIKE IT AND DON’T QUESTION IT AT ALL. Lol they can’t handle people thinking for themselves and making important decisions on their own, can they?', 'created': '2024-11-08 06:16:33', 'submission_id': '1gkt0sk'}
{'comment': 'Because they are stupid….. you know…. Knowing the truth, but believing the lie', 'created': '2024-11-06 17:22:07', 'submission_id': '1gkt0sk'}
{'comment': "it's like a drug addict or an alcoholic that leaves a trail of destruction. They were totally blind to it all. Now they see better.", 'created': '2024-11-07 04:24:57', 'submission_id': '1gkt0sk'}
{'comment': "Apparently, and I must have missed this, but we don't read enough Textbooks to know what really causes inflation. Apparently, Biden did a terrific job at curbing inflation. Also, J6 should have been a permanent DQ for president. I've been browsing the delusion for a little bit, and dear god, these people are hateful human beings. Keep bringing up 2025, and you don't even want to look at the union subs.", 'created': '2024-11-07 15:54:09', 'submission_id': '1gkt0sk'}
{'comment': 'Same, brb', 'created': '2024-11-06 12:51:23', 'submission_id': '1gkt0sk'}
{'comment': 'This comment!!! Thank you friend', 'created': '2024-11-07 09:37:29', 'submission_id': '1gkt0sk'}
{'comment': "The joke's on them. God and hell exist, as they will eventually discover.", 'created': '2024-11-06 16:40:43', 'submission_id': '1gkt0sk'}
{'comment': 'Same hehehehe', 'created': '2024-11-06 15:29:53', 'submission_id': '1gkt0sk'}
{'comment': 'Exactly lmfao I’m having so much fucking fun', 'created': '2024-11-06 15:32:57', 'submission_id': '1gkt0sk'}
{'comment': 'You must be new.', 'created': '2024-11-06 10:24:19', 'submission_id': '1gkt0sk'}
{'comment': 'They can try. Watched idiots all over Reddit trot that one out last night.', 'created': '2024-11-06 13:58:42', 'submission_id': '1gkt0sk'}
{'comment': 'Lol oh yes they can', 'created': '2024-11-06 12:54:51', 'submission_id': '1gkt0sk'}
{'comment': 'I thought it was always the Russians?', 'created': '2024-11-06 19:31:52', 'submission_id': '1gkt0sk'}
{'comment': 'Ohhh well I learn something new everyday. My bad lol I mean I figured as much due to all the leftist down voting my comments lol 😂 I was just trying to have a conversation or debate….they didn’t like that 🤷🏼\u200d♀️\nI had over 1000 karma lol lesson learned 🤣', 'created': '2024-11-06 18:02:34', 'submission_id': '1gkt0sk'}
{'comment': 'I rest my case lol. I wish he conceded. Would have had even more red votes.', 'created': '2024-11-06 14:34:45', 'submission_id': '1gkt0sk'}
{'comment': "Wow I definitely haven't been told that 2700 times! I had NO idea", 'created': '2024-11-06 15:15:25', 'submission_id': '1gkt0sk'}
{'comment': "Wait really?\nI can't believe that; if only I knew that sooner....\n\n\n\n\n\n\nI STILL WOULDNT HAVE VOTED FOR HER.", 'created': '2024-11-06 15:41:57', 'submission_id': '1gkt0sk'}
{'comment': 'That sounds like socialism and collectivism.', 'created': '2024-11-06 15:20:25', 'submission_id': '1gkt0sk'}
{'comment': 'Nevada and Wisconsin both have Trump +4/5 favorites with 95% of the vote in. Not declaring Trump the winner here is so petty.', 'created': '2024-11-06 09:52:39', 'submission_id': '1gkt0sk'}
{'comment': 'Oh goodness, that cannot be a pretty picture.', 'created': '2024-11-06 16:09:32', 'submission_id': '1gkt0sk'}
{'comment': 'They’ve been brainwashed to think Trump is a fascist, racist, etc etc, so they have no time to think about actual problems at hand-like our shit economy. \n\nThey don’t even deserve the good that’s coming our way.', 'created': '2024-11-06 14:49:44', 'submission_id': '1gkt0sk'}
{'comment': 'Imagine the gall! Our country was smart enough to put our country first!', 'created': '2024-11-06 16:04:20', 'submission_id': '1gkt0sk'}
{'comment': "Saying Trump is a felon, impeached, etc and... HE BEAT HARRIS hah what's that tell them?", 'created': '2024-11-07 09:30:50', 'submission_id': '1gkt0sk'}
{'comment': "People who want to see the downfall of America voted Harris. You can clearly see that the majority has spoken! Can't deny those facts! 🎵🎶\\*Chevelle's The RED plays in the background\\*🎶🎵", 'created': '2024-11-12 03:08:02', 'submission_id': '1gkt0sk'}
{'comment': 'Lol confirmed in shambles.', 'created': '2024-11-06 12:53:15', 'submission_id': '1gkt0sk'}
{'comment': 'ITS SO FUNNY HOW MANY LEFTY SUBS THERE ARE. I ENJOY SIPPING THEIR TEARS', 'created': '2024-11-06 16:19:02', 'submission_id': '1gkt0sk'}
{'comment': '😭😭😭😭. Hilarious response.', 'created': '2024-11-06 16:28:06', 'submission_id': '1gkt0sk'}
{'comment': '🤣', 'created': '2024-11-06 15:31:17', 'submission_id': '1gkt0sk'}
{'comment': 'And you expect anything else from the left why?', 'created': '2024-11-06 13:56:02', 'submission_id': '1gkt0sk'}
{'comment': 'We’ll see whenever she finally rolls out of bed to deliver her concession speech.', 'created': '2024-11-06 16:18:13', 'submission_id': '1gkt0sk'}
{'comment': 'Brainwashed is definitely the perfect description.', 'created': '2024-11-06 14:52:40', 'submission_id': '1gkt0sk'}
{'comment': 'Yes and this is scary because there have already been attempts on his life, you know more will come. Their tactics to scare him off the campaign trail did not work.', 'created': '2024-11-06 15:29:54', 'submission_id': '1gkt0sk'}
{'comment': '...but they will be damn happy to take it.', 'created': '2024-11-06 16:04:39', 'submission_id': '1gkt0sk'}
{'comment': "$176 billion $'s paying of people's debt. **YOU'RE FIRED**", 'created': '2024-11-07 04:26:55', 'submission_id': '1gkt0sk'}
{'comment': 'I don’t', 'created': '2024-11-06 16:53:48', 'submission_id': '1gkt0sk'}
{'comment': "That's going to be a ramble that no one wants to miss.", 'created': '2024-11-06 16:18:55', 'submission_id': '1gkt0sk'}
{'comment': 'It has definitely crossed my mind that they will try to assassinate him again.', 'created': '2024-11-06 17:09:17', 'submission_id': '1gkt0sk'}
{'comment': 'Gotta love the tolerant non violent left 🙄', 'created': '2024-11-06 23:08:02', 'submission_id': '1gkt0sk'}
{'comment': 'One of my very close friends is a southeast Asian legal immigrant, got her citizenship after 19 years, and is a diehard conservative after living in a socialist country. She loves debating with liberals because as she says, “I’m brown, an immigrant, and a woman, they can’t argue with me!” \n\nI’m a white female Trump voter. A childless dog lady with loads of Democrat friends. I often feel like the only Republican in the crowd. You’re definitely not alone!', 'created': '2024-11-07 04:05:43', 'submission_id': '1gkrt1q'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 07:12:39', 'submission_id': '1gkrue7'}
{'comment': 'Try harder. This is just boring.', 'created': '2024-11-06 14:59:29', 'submission_id': '1gkrue7'}
{'comment': 'If a republican went to a left leaning sub and did this, they would immediately be banned.', 'created': '2024-11-07 19:25:51', 'submission_id': '1gkrue7'}
{'comment': 'Why would you call him a rapist ?', 'created': '2024-11-06 16:44:51', 'submission_id': '1gkrue7'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 07:34:48', 'submission_id': '1gks6t5'}
{'comment': 'Thank you!!', 'created': '2024-11-07 02:26:11', 'submission_id': '1gks7hw'}
{'comment': 'Because the bots have nothing to promote anymore.', 'created': '2024-11-06 14:26:01', 'submission_id': '1gks7x5'}
{'comment': 'Sulking but they will be back once all the lawfare starts back up and social media finds something to say out of contexts to make him look bad, probably try to impeach him again before he even takes office.', 'created': '2024-11-07 01:46:55', 'submission_id': '1gks7x5'}
{'comment': 'Go to the /news tab and its like a different world compared to the last few months.', 'created': '2024-11-06 09:16:29', 'submission_id': '1gks7x5'}
{'comment': 'All of Reddit is quiet it’s weird', 'created': '2024-11-06 14:44:47', 'submission_id': '1gks7x5'}
{'comment': 'Wouldn’t say I’m a democrat, I’ll vote for whoever I think the best candidate is. But I’d definitely say I sway more liberal. That being said, we’re just in shock of the stupidity and trying to figure out what we can do to be better in the future', 'created': '2024-11-06 20:57:27', 'submission_id': '1gks7x5'}
{'comment': 'They dropped all cases against Trump. They only got like 2 months to do anything else lol. Plus the Republicans have such an overwhelming victory over everything that the resistance will be lackluster at best. Republicans basically have a free hand to change everything besides the constitution. 2/3 majority and all that.\n\nEverything is greenlight from inauguration day.', 'created': '2024-11-07 16:45:00', 'submission_id': '1gks7x5'}
{'comment': 'Maybe stop trying to elect puppets who run on Marxist platforms.', 'created': '2024-11-06 22:46:23', 'submission_id': '1gks7x5'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 07:37:37', 'submission_id': '1gks8c2'}
{'comment': '👍🏼👍🏼👍🏼👍🏼👍🏼', 'created': '2024-11-06 16:46:59', 'submission_id': '1gkscta'}
{'comment': 'And he’s still going!!! Hahahahhaa', 'created': '2024-11-06 11:28:39', 'submission_id': '1gksgdq'}
{'comment': 'Maybe we can start a gofund me for them 🤣🤣. Good riddance!', 'created': '2024-11-06 13:55:34', 'submission_id': '1gkshuy'}
{'comment': '💯', 'created': '2024-11-06 17:22:30', 'submission_id': '1gkshuy'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 07:55:53', 'submission_id': '1gksi5x'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 07:55:54', 'submission_id': '1gksi5x'}
{'comment': 'Best line since that day, "They shot Trump and took out Biden", time to amend that, "They shot Trump and took out Biden, Harris, Walz, Obama, Moochelle, Jack Smith and the DNC."', 'created': '2024-11-07 00:51:26', 'submission_id': '1gksjv4'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 08:00:41', 'submission_id': '1gksktq'}
{'comment': 'A president having a dog is a psychological ploy since it was determined that dog owners are viewed as being more trustworthy.\n\nIn recent history, Trump is the only president not to have a pet. Bill Clinton had a cat, but once he became embroiled in political scandals, gave it away and got a dog. (Who coincidentally “got out of the house” and died soon after he left office).\nObama, got a dog soon after taking office, right after it was revealed that several of his cabinet picks were tax evaders.', 'created': '2024-11-06 09:40:15', 'submission_id': '1gkslxm'}
{'comment': 'Pug', 'created': '2024-11-12 19:01:20', 'submission_id': '1gkslxm'}
{'comment': 'That would be adorable!\xa0 They could give him a commanding name, like General!😆', 'created': '2024-11-13 05:12:46', 'submission_id': '1gkslxm'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 08:07:45', 'submission_id': '1gksop5'}
{'comment': 'Damn straight brotha', 'created': '2024-11-06 09:15:00', 'submission_id': '1gksop5'}
{'comment': 'Stick a fork in her!\n\nGood news is she’s unburdened with ever having to worry about being president.', 'created': '2024-11-06 11:34:31', 'submission_id': '1gksrbh'}
{'comment': 'Proud to be part of the red wave', 'created': '2024-11-06 11:55:18', 'submission_id': '1gksrj8'}
{'comment': 'We did it!!!\nGreat day for normal Americans.', 'created': '2024-11-06 16:15:20', 'submission_id': '1gksrj8'}
{'comment': 'AMEN, PRAISE GOD!!\nOur precious nation may now see a true return to common sense and patriotism. \nOur prayers must now shift to President Trumps safety and the decline of hatred.\n(On ALL sides, parties, genders, and races.)\nWe need PEACE!! God Bless the USA', 'created': '2024-11-06 18:03:25', 'submission_id': '1gksrj8'}
{'comment': '🇺🇸', 'created': '2024-11-06 14:09:16', 'submission_id': '1gksrj8'}
{'comment': 'I like this.', 'created': '2024-11-06 14:53:13', 'submission_id': '1gksrj8'}
{'comment': 'What a freaking demolition. Even George W released a statement of support for Trump just now. A mandate for the people BY the people. Incredible.', 'created': '2024-11-06 16:42:12', 'submission_id': '1gksrj8'}
{'comment': "My wife and I did our part in our battleground state as my mom called us uneducated. The funny part is we both have graduate degrees and my mom failed out of college lol. Not saying degrees make you smarter than someone without them but just so dumb to call anyone who doesn't agree with you uneducated.", 'created': '2024-11-06 22:00:26', 'submission_id': '1gksrj8'}
{'comment': 'You are going to ruin her nice pants suit.', 'created': '2024-11-06 18:24:46', 'submission_id': '1gksrj8'}
{'comment': 'Somehow, we need to make sure these people are never allowed to rise again.\n\nThank you, heavenly father, for bringing us thru these dark days. 🙏', 'created': '2024-11-06 18:42:25', 'submission_id': '1gksrj8'}
{'comment': 'HALLELUJAH!!! PRAISES BE TO OUR ALMIGHTY GOD!!!', 'created': '2024-11-07 10:56:48', 'submission_id': '1gksrj8'}
{'comment': 'We still need to stay humble. United we stand, divided we fall.', 'created': '2024-11-06 19:10:21', 'submission_id': '1gksrj8'}
{'comment': None, 'created': '2024-11-06 22:48:35', 'submission_id': '1gksrj8'}
{'comment': 'Yeah! I’m glad my state turned red, let’s go Georgia!!!', 'created': '2024-11-06 22:54:54', 'submission_id': '1gksrj8'}
{'comment': 'Pic is hard', 'created': '2024-11-07 02:45:53', 'submission_id': '1gksrj8'}
{'comment': 'Good we beat the evil back for a while. Trouble is they just crawled under a rock or hidden in the shadows.', 'created': '2024-11-07 17:15:33', 'submission_id': '1gksrj8'}
{'comment': 'Great day for hard working, can hold a job and not quit (actually work) Americans 🇺🇸🇺🇸\nBye bye to the left ✌️', 'created': '2024-11-07 17:22:20', 'submission_id': '1gksrj8'}
{'comment': 'Together We Are Strong 🇺🇸', 'created': '2024-11-07 18:56:08', 'submission_id': '1gksrj8'}
{'comment': 'red tsunami*', 'created': '2024-11-08 00:06:07', 'submission_id': '1gksrj8'}
{'comment': "It's good stuff, but I'm not ready to celebrate yet till we keep The House.", 'created': '2024-11-08 01:54:26', 'submission_id': '1gksrj8'}
{'comment': 'Yay', 'created': '2024-11-08 03:18:21', 'submission_id': '1gksrj8'}
{'comment': 'As a LEGAL immigrant, I am happy with this!', 'created': '2024-11-11 14:16:20', 'submission_id': '1gksrj8'}
{'comment': 'And Kamalalablah without even so much as a life-jacket.', 'created': '2024-11-06 17:06:44', 'submission_id': '1gksrj8'}
{'comment': 'Emphasis on WE! As in, we didn’t just win the electoral college, allowing the democrats to whine about how it should be done away with. We also won the POPULAR VOTE! And we won practically every gender and ethnic group! Republicans have not won the popular vote in 20 years, this is absolutely historic😄 the people have spoken!!!\n\nAlso can I just mention how entertaining it is to watch the meltdown on r/politics? Get your popcorn salted with liberal tears, it’s a hell of a show🤣', 'created': '2024-11-07 01:18:28', 'submission_id': '1gksrj8'}
{'comment': 'Don’t get too excited. While many of us would love to see Trump use the Justice Department and local prosecutors to persecute his enemies exactly the way Dems did to him, it won’t happen. He has other priorities, and always wants people to love him.', 'created': '2024-11-06 22:35:30', 'submission_id': '1gksrj8'}
{'comment': "Don't forget - he didn't just beat Kamala so hard she didn't win a single swing state. He beat Biden so hard he dropped out 😂", 'created': '2024-11-07 01:43:33', 'submission_id': '1gksrj8'}
{'comment': 'Thank you\nElon Musk\nDana White\nRFK Jr\nTulsi Gabbard\nCharlie Kirk\nHispanic Voters of Texas and Florida', 'created': '2024-11-07 02:04:05', 'submission_id': '1gksrj8'}
{'comment': 'We should celebrate,,,, 🥂🍾🥂', 'created': '2024-11-07 01:09:30', 'submission_id': '1gksrj8'}
{'comment': "I agree.\n\nPlus that was kind of the pitch through their party in the closing weeks. That any smart women wouldn't be associated, or vote for Trump.", 'created': '2024-11-07 02:27:34', 'submission_id': '1gksrj8'}
{'comment': "Perhaps the better terms would be misguided and misinformed. You're a thousand percent right. Being educated does not mean you have any common sense.", 'created': '2024-11-07 10:59:55', 'submission_id': '1gksrj8'}
{'comment': 'That suit is the only nice thing about her. And even it is moderately disagreeable.', 'created': '2024-11-08 08:33:00', 'submission_id': '1gksrj8'}
{'comment': 'LDS? Right there with you! Whether or not you’re LDS', 'created': '2024-11-07 20:59:10', 'submission_id': '1gksrj8'}
{'comment': 'Biden\'s "win" serves as my reminder to vote every election, though I live in red Florida, so my vote isn\'t as important as others.', 'created': '2024-11-06 21:31:51', 'submission_id': '1gksrj8'}
{'comment': 'Kinda hard to stay humble when the other side was accusing you of casting your vote for Hitler. Wouldn’t you agree?', 'created': '2024-11-07 02:02:57', 'submission_id': '1gksrj8'}
{'comment': "Hope we don't see more infighting. Looking at you MTG & Co.", 'created': '2024-11-06 23:57:41', 'submission_id': '1gksrj8'}
{'comment': "I bet Dems are glad that they didn't do away with filibuster and pack the supreme court! But I doubt their divisiveness will stop ... and expect obstruction every step!", 'created': '2024-11-12 00:47:18', 'submission_id': '1gksrj8'}
{'comment': 'Your vote always matters', 'created': '2024-11-07 03:33:59', 'submission_id': '1gksrj8'}
{'comment': 'Im very proud to have two young republican children who just voted in their first election. They get it. Thank heaven!!', 'created': '2024-11-06 22:08:13', 'submission_id': '1gksrj8'}
{'comment': '*\\*trigger warning and apologies in advance if you’re a ND fan\\**\n\nBack in my 20s, my dad told me: “I raised you to do two things: hate Notre Dame, and vote Republican. I have succeeded.” Lol! Props to you for raising two young Reps, and I hope they also share your football fanhood, whatever that may be! 👍', 'created': '2024-11-08 08:32:00', 'submission_id': '1gksrj8'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 08:13:10', 'submission_id': '1gksrlm'}
{'comment': 'Who’s gonna tell Mark Hamill?', 'created': '2024-11-06 09:41:10', 'submission_id': '1gkssdx'}
{'comment': 'Senate too and prob house. Finally, normalcy.', 'created': '2024-11-06 10:10:44', 'submission_id': '1gkssdx'}
{'comment': 'Trump 2024 YAY 🇺🇲🇺🇲🌟🌟', 'created': '2024-11-06 08:24:17', 'submission_id': '1gkssdx'}
{'comment': 'Fuck yeah! Fuck the establishment!', 'created': '2024-11-06 12:12:43', 'submission_id': '1gkssdx'}
{'comment': 'God bless America!', 'created': '2024-11-06 12:31:16', 'submission_id': '1gkssdx'}
{'comment': 'The greatest GOP ground game in my 71 years on Earth.', 'created': '2024-11-06 17:05:51', 'submission_id': '1gkssdx'}
{'comment': 'All the swing states swung red!! Accept for Virginia which has been more purple.', 'created': '2024-11-06 20:03:13', 'submission_id': '1gkssdx'}
{'comment': 'The clean up will be rough the Dems have had one of the largest uncontrolled destructive frat party with our country we have ever seen. What a damn mess.', 'created': '2024-11-07 01:04:10', 'submission_id': '1gkssdx'}
{'comment': 'They were all in on their 6 high hand 🃏', 'created': '2024-11-06 20:43:15', 'submission_id': '1gkssdx'}
{'comment': 'Say it again!!!🇺🇸', 'created': '2024-11-08 01:31:35', 'submission_id': '1gkssdx'}
{'comment': "Obi- Wan's ghost keeps him up to date on politics", 'created': '2024-11-06 10:12:20', 'submission_id': '1gkssdx'}
{'comment': 'Yes, house too. Democrats were decimated this election.', 'created': '2024-11-06 16:47:09', 'submission_id': '1gkssdx'}
{'comment': 'Did we finally win the house?', 'created': '2024-11-06 20:38:30', 'submission_id': '1gkssdx'}
{'comment': 'Actually I looked into it a bit more, republicans kept the house. They already had the house, but kept it.', 'created': '2024-11-06 20:39:49', 'submission_id': '1gkssdx'}
{'comment': "LET'S GOOOOOO", 'created': '2024-11-06 20:54:38', 'submission_id': '1gkssdx'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 08:35:09', 'submission_id': '1gksukk'}
{'comment': 'I’ve not seen Reddit and all the left subs so quiet in a month 😂😂😂', 'created': '2024-11-06 09:11:59', 'submission_id': '1gksukk'}
{'comment': 'Maybe Democrats will learn to not appoint a candidate in the future without a primary vote… \n\nCrazy that they were the ones saying we were a danger to Democracy while they actively dismissed Democratic processes.', 'created': '2024-11-06 09:58:50', 'submission_id': '1gksukk'}
{'comment': 'I have heard that they are Mourning in r/pics and have announced that for three days no pictures will be posted.', 'created': '2024-11-06 13:01:56', 'submission_id': '1gksukk'}
{'comment': 'I’m not conservative by any means, but my disdain for the DNC, liberals & the complacency of dems have only grown into hate\n\nI may not share the same views as the majority of this sub; but one thing I know we all can agree with, and by the looks of it the majority of Americans, is how weak & feckless Democrats are & their inability to do anything meaningful because of a silly naive belief that our institutions are to be relied on without question & are without fault; which is at the core of liberalism\n\nPeople are angry; we’re tired, we’re overworked, underpaid & shits fucking expensive. The empty promises made by any politician only further fuels the divide.\n\nThe smugness & elitism attitude liberals tend to portray themselves as, backfires in their face every time\n\nTrump is seen as essentially a wrecking ball to the institutional sectors of our government & honestly I don’t blame the majority voting for him for that very reason\n\nAnd quite honestly, fuck it.\n\nEdit: This is my NSFW profile. Just a fair warning if you snoop lmao', 'created': '2024-11-06 12:04:31', 'submission_id': '1gksukk'}
{'comment': 'I’d upvote you but look like Reddit’s not allowing that right now. 🙄', 'created': '2024-11-06 08:41:35', 'submission_id': '1gksukk'}
{'comment': 'Watching different stations this morning and a lot of the reporters seem shocked that Trump won the majority of the minority vote. \n\nTruly, this is not a shock. Trump ran on a platform of AMERICA for AMERICANS, all Americans, regardless of skin color or ethnic origin. \n\nKamala and the Democrats were so keen on “separating” Americans into different groups to appeal to these groups specifically, and with that completely missed the larger picture.', 'created': '2024-11-06 15:07:36', 'submission_id': '1gksukk'}
{'comment': 'Let’s go! 🇺🇸❤️', 'created': '2024-11-06 08:26:25', 'submission_id': '1gksukk'}
{'comment': 'Went to a lot of /reddits (pics, New Jersey, Texas, democrats, etc) everyone is quiet lol\nI’m ready for the meltdown', 'created': '2024-11-06 09:48:54', 'submission_id': '1gksukk'}
{'comment': 'Big huge win', 'created': '2024-11-06 09:37:16', 'submission_id': '1gksukk'}
{'comment': 'Well done, red wave!', 'created': '2024-11-06 10:11:42', 'submission_id': '1gksukk'}
{'comment': 'We did it!\xa0', 'created': '2024-11-06 09:35:42', 'submission_id': '1gksukk'}
{'comment': 'Salud🍷 MAGA', 'created': '2024-11-06 10:15:48', 'submission_id': '1gksukk'}
{'comment': 'Reddit did its best to suppress conservative posts. Downvoting, hidden comments, shadow bans, outright ban. Didn’t work. Truth cannot be suppressed', 'created': '2024-11-06 13:10:01', 'submission_id': '1gksukk'}
{'comment': "The man was impeached, arrested, shot at, and said F you I'm still here. \n\nTrump 2024.", 'created': '2024-11-06 14:28:48', 'submission_id': '1gksukk'}
{'comment': 'Something to be said about our silent majority here. Sure we get muted and bashed on reddit... but the sane hardworking Americans made their opinion known yesterday!!', 'created': '2024-11-06 15:45:24', 'submission_id': '1gksukk'}
{'comment': 'If Kamala had won, the trending topics would be all over it. Instead..*silence*… & I’m here for all of it. Suck it libs', 'created': '2024-11-06 11:02:32', 'submission_id': '1gksukk'}
{'comment': 'Salud', 'created': '2024-11-06 08:32:08', 'submission_id': '1gksukk'}
{'comment': "So much for turning Florida blue.\n\nDon't you make my red state\n\nDon't you make my red state\n\nDon't you make my red state blueeeee!", 'created': '2024-11-06 11:40:50', 'submission_id': '1gksukk'}
{'comment': 'God Bless DJT, JD and the USA', 'created': '2024-11-06 11:02:53', 'submission_id': '1gksukk'}
{'comment': 'Hi Canada! We love you back! \n\nAmericans really aren’t the garbage the left wants you to believe we are. \n\nAnd we don’t want or need a second mom going around ruining life to protect us from scary things like thinking and ourselves.', 'created': '2024-11-06 14:36:24', 'submission_id': '1gksukk'}
{'comment': 'Brace yourself for all the lawsuits that the Dems will undoubtedly pursue. They will scramble for new charges and try to implement all his punishments handed down already before he takes office. They will not go peacefully.', 'created': '2024-11-06 11:32:21', 'submission_id': '1gksukk'}
{'comment': 'Maga', 'created': '2024-11-06 09:07:30', 'submission_id': '1gksukk'}
{'comment': 'I’ll be having fun talkin my shit too 😂 seen so many panic attack post today', 'created': '2024-11-06 09:57:55', 'submission_id': '1gksukk'}
{'comment': 'Woke up to a Red Kingdom… God Bless America', 'created': '2024-11-06 11:24:22', 'submission_id': '1gksukk'}
{'comment': 'If I wasn’t pregnant, I’d raise a pint!', 'created': '2024-11-06 11:51:24', 'submission_id': '1gksukk'}
{'comment': 'Bro their feeds are, Harris wins Colorado, Bernie sanders wins for his state.. I left a message to the democrat sub saying I’ve been banned and downvoted to hell over this election and by just saying I’ll vote for trump. I said respectfully fuck all of you lmao', 'created': '2024-11-06 12:15:18', 'submission_id': '1gksukk'}
{'comment': 'Republicans went out and ABSOLUTELY SMASHED the voting booths. I’m so proud of everyone and thankful for this victory. Cheers everyone!!', 'created': '2024-11-06 15:48:49', 'submission_id': '1gksukk'}
{'comment': 'We need gif in this subreddit', 'created': '2024-11-06 18:37:15', 'submission_id': '1gksukk'}
{'comment': 'Absolute meltdown on r/politics. They think Trump voters are idiots and billionaires will now control the fate of the u.s.The delusion and stupidity of the left is on full display in their comments.', 'created': '2024-11-06 13:57:50', 'submission_id': '1gksukk'}
{'comment': 'Woo hooooooo!!!! We did it!', 'created': '2024-11-06 15:28:06', 'submission_id': '1gksukk'}
{'comment': 'We also won the popular vote too boys', 'created': '2024-11-06 14:48:59', 'submission_id': '1gksukk'}
{'comment': "I'm seeing some really sad stuff on here and while I'm happy Trump won it's breaking my heart to see just how hateful dems really are. But 🍻 to trump winning", 'created': '2024-11-06 14:53:44', 'submission_id': '1gksukk'}
{'comment': 'Seeing the liberal tears fall was my reason for opening Reddit this morning.', 'created': '2024-11-06 13:20:59', 'submission_id': '1gksukk'}
{'comment': 'Yep my bans will be over soon...maybe', 'created': '2024-11-06 09:45:43', 'submission_id': '1gksukk'}
{'comment': 'Bots are going crazy now', 'created': '2024-11-06 10:17:55', 'submission_id': '1gksukk'}
{'comment': 'I feel the biggest relief waking up this morning. I’ve been so worried about our future, especially my child’s. \n\nNo more criminals passing through our borders \nNo more high prices in everything \nNo more threat of men coming into my bathroom \nNo more push for defunding the police\nNo more attacking our children with gender bullshit. I’ll feel more confident with putting my child in school now. \n\nWith the stress of 2020, then the riots, the uncertainty if I’ll have a job because of the vaccine mandates, then the borders, and the uncertainty with the multiple wars…the uncertainty of being able to afford necessities…I can now finally breathe now…SIGH\n\n🇺🇸', 'created': '2024-11-06 14:42:51', 'submission_id': '1gksukk'}
{'comment': 'Blue hair’s in shambles', 'created': '2024-11-06 14:50:32', 'submission_id': '1gksukk'}
{'comment': 'As the liberal tears begin to fall, I would just like to say thank you to everyone that still believes in this great country. This election showed that Americans are not backing away from their morals and beliefs', 'created': '2024-11-06 13:43:59', 'submission_id': '1gksukk'}
{'comment': 'I’m English and stayed up till about 5am (was well over by then about 90% counted in the last few states) before I fell asleep. Watching the democrats slowly realising as they started losing the battlegrounds was one of the funniest things I’ve ever seen. \n\nFor what it’s worth at my age (30) last night felt like one of the most important nights of my life and I haven’t been to the USA in about 16 years. Ironically was California, FUCK that now 🤣\n\nCertainly very happy for you lot, and when I do come over to do some diving it’ll be Florida this time 🫡', 'created': '2024-11-06 15:29:56', 'submission_id': '1gksukk'}
{'comment': 'Reddit is amazing right now. Happy victory Wednesday my fellow republicans', 'created': '2024-11-06 13:58:43', 'submission_id': '1gksukk'}
{'comment': '#EVERYONE GET IN HERE!!! 🍻', 'created': '2024-11-06 14:46:30', 'submission_id': '1gksukk'}
{'comment': 'NOOOOOO BUT ABORTION IS THE NUMBER 1 MOST CRITICAL ISSUE IN THIS COUNTRY. WW3 IS AFOOT OVER THE RIGHT TO MURDER UNBORN CHILDREN!!!! 😭😭😭😭\n\nLol. Unbelievable people vote one way because state’s have the right to choose their abortion laws now. Boohoo.', 'created': '2024-11-06 15:14:25', 'submission_id': '1gksukk'}
{'comment': 'Democrats have been a fear mongering machine! Using apocalyptic language against their opponent to put fear in their base. For many that fear is really in their heads - shame on democrats for doing that to people. However, many have not been buying the rhetoric and have switched parties and their eyes have opened up.', 'created': '2024-11-06 18:12:05', 'submission_id': '1gksukk'}
{'comment': 'That amount of doom and gloom is hilarious lol. Maybe after 4 years some of them will have the humility to admit they were wrong and everything is going to be ok.', 'created': '2024-11-06 13:07:43', 'submission_id': '1gksukk'}
{'comment': '🥳', 'created': '2024-11-06 09:02:22', 'submission_id': '1gksukk'}
{'comment': 'Yuge', 'created': '2024-11-06 11:14:25', 'submission_id': '1gksukk'}
{'comment': 'Now that the adults have spoken, I feel a huge sense of relief! The nonsense had to end at some point. \n\nHe won the electoral college AND the popular vote! I’m so proud of America for doing what’s best for our country!', 'created': '2024-11-06 14:44:52', 'submission_id': '1gksukk'}
{'comment': 'Wahoo! Electoral and popular vote!', 'created': '2024-11-06 14:50:27', 'submission_id': '1gksukk'}
{'comment': 'MAGA! No more 51k bot upvoted Kamala pics!!', 'created': '2024-11-06 13:19:07', 'submission_id': '1gksukk'}
{'comment': '🇺🇸🍻', 'created': '2024-11-06 13:13:20', 'submission_id': '1gksukk'}
{'comment': "From Paraguay, I'm drinking to this, salud and congrats!", 'created': '2024-11-06 13:46:10', 'submission_id': '1gksukk'}
{'comment': 'It is so very satisfying!!!!', 'created': '2024-11-06 14:11:43', 'submission_id': '1gksukk'}
{'comment': 'God Bless America. The good still outnumber the evil!', 'created': '2024-11-06 14:30:16', 'submission_id': '1gksukk'}
{'comment': "I was so excited to come into my Dem centric office today in Center City Philadelphia. I have had to listen to them praise Kamala every day for the past few months. It's so quiet today you could hear a pin drop.", 'created': '2024-11-06 14:36:05', 'submission_id': '1gksukk'}
{'comment': 'So happy for all you patriots… might not be American but this is also a win for the world…', 'created': '2024-11-06 14:37:35', 'submission_id': '1gksukk'}
{'comment': 'Hard-core lib who has definitely argued with a bunch of people in here. A big wakeup call for us dems fs, but you guys won fair and square, respect.', 'created': '2024-11-06 15:13:37', 'submission_id': '1gksukk'}
{'comment': 'Stocks are surging higher this morning!', 'created': '2024-11-06 12:38:18', 'submission_id': '1gksukk'}
{'comment': 'I can’t freaking believe it. I feel like I can breathe again for the first time in four years.', 'created': '2024-11-06 13:32:51', 'submission_id': '1gksukk'}
{'comment': 'Yay!!!!\nLove trump and team!', 'created': '2024-11-07 05:33:15', 'submission_id': '1gksukk'}
{'comment': '🇺🇸🤝🍻', 'created': '2024-11-07 05:52:57', 'submission_id': '1gksukk'}
{'comment': 'Holy shit a republican sub with more than 1k votes!!!!', 'created': '2024-11-07 06:27:00', 'submission_id': '1gksukk'}
{'comment': 'Salud, friend!', 'created': '2024-11-07 10:12:23', 'submission_id': '1gksukk'}
{'comment': 'Did you mean Salud or were you thinking more about Salute?', 'created': '2024-11-07 11:16:38', 'submission_id': '1gksukk'}
{'comment': 'I love the fact I\'ve been banned from half of the "non-political" subs but here we are, we\'re so back!', 'created': '2024-11-07 11:24:07', 'submission_id': '1gksukk'}
{'comment': 'Well done America! Bravo!', 'created': '2024-11-07 11:26:20', 'submission_id': '1gksukk'}
{'comment': 'Cheers to all 🍻', 'created': '2024-11-07 14:26:44', 'submission_id': '1gksukk'}
{'comment': 'Lmao you should see the democrat sub it was great to scroll thru there and have a good laugh', 'created': '2024-11-07 19:51:53', 'submission_id': '1gksukk'}
{'comment': 'How so many Redditors thought, as of last week, that she was ahead in the race and likely to win is amazing. That they are surprised is astounding.', 'created': '2024-11-07 20:05:54', 'submission_id': '1gksukk'}
{'comment': '🇺🇸🇺🇸🇺🇸🇺🇸', 'created': '2024-11-08 00:26:21', 'submission_id': '1gksukk'}
{'comment': 'I\'ve pretty much left Reddit after being banned a couple times for "hate." After weeks of being banned I finally fired up my X account. It\'s kind of like Reddit for adults. \n\nI thought I\'d come back in and laugh at the people that got me banned real quick and stop by in here to wish congratulations! \n\nFYI, My bans all had to do with boys and the girls bathroom. Most of the LGB community would agree, it\'s just the T-XYZ+, a couple of soy bois, and white libtarded women that have sworn off sex for the next 4 years, that had a problem. \n\nIf you guys aren\'t in X already, you should move over. A lot less hostile than this cesspool.', 'created': '2024-11-08 05:44:16', 'submission_id': '1gksukk'}
{'comment': 'Yeah Reddit really is melting down. It’s insane. My feed just keeps showing me extreme trump and republican hate. Glad I found this sub.', 'created': '2024-11-09 02:46:26', 'submission_id': '1gksukk'}
{'comment': 'Had a 🍺', 'created': '2024-11-06 10:26:14', 'submission_id': '1gksukk'}
{'comment': 'Now is the time to extend the Olive Branch?………. Naw fuck that! We know that doesn’t work. Like Conan said the good things in life are, “To crush your enemies, to drive them before you and to hear the lamentation of their women. Trump needs to get to work, soonest.', 'created': '2024-11-06 13:16:51', 'submission_id': '1gksukk'}
{'comment': '🇺🇸🇨🇦', 'created': '2024-11-06 11:46:46', 'submission_id': '1gksukk'}
{'comment': 'SALUD 🍻', 'created': '2024-11-06 12:18:08', 'submission_id': '1gksukk'}
{'comment': 'Thank goodness he won', 'created': '2024-11-06 12:52:56', 'submission_id': '1gksukk'}
{'comment': 'So relieved that this country still has a fighting chance now. Good work everyone!', 'created': '2024-11-06 13:02:45', 'submission_id': '1gksukk'}
{'comment': 'Gotta love it', 'created': '2024-11-06 13:16:26', 'submission_id': '1gksukk'}
{'comment': 'Most amazing news. Amen', 'created': '2024-11-06 13:17:23', 'submission_id': '1gksukk'}
{'comment': 'Amen', 'created': '2024-11-06 13:19:53', 'submission_id': '1gksukk'}
{'comment': 'Karma is a bitch', 'created': '2024-11-06 13:27:10', 'submission_id': '1gksukk'}
{'comment': 'She had ample time to do something as VP and just could never answer the question, "What will you do differently than sleepy Joe?". Congratulations fellow conservatives. Job well done.', 'created': '2024-11-06 13:32:20', 'submission_id': '1gksukk'}
{'comment': 'Hell yeah! 🇺🇸🥳', 'created': '2024-11-06 13:33:39', 'submission_id': '1gksukk'}
{'comment': 'TRUMP 2024!!!! Salud!!!', 'created': '2024-11-06 13:39:21', 'submission_id': '1gksukk'}
{'comment': 'Party time', 'created': '2024-11-06 13:56:03', 'submission_id': '1gksukk'}
{'comment': 'It’s beautiful 🥹', 'created': '2024-11-06 14:00:39', 'submission_id': '1gksukk'}
{'comment': 'Unreal. Trump is a once in a generation talent. I’m amazed. \n\nWe have a four year reprieve from The Left’s vision of totalitarian rule. Will we get more than that? Depends upon actions taken by Trump. We can talk about that after the transfer of power on Jan 20th.\n\nFree people rejoice, it looked like a the Left would have a thousand year rule across the globe just a few years ago.', 'created': '2024-11-06 14:46:47', 'submission_id': '1gksukk'}
{'comment': 'Why are we posting here.... im prettyvsure we get r/politics now right??', 'created': '2024-11-06 15:22:02', 'submission_id': '1gksukk'}
{'comment': 'Fellow Canadian I am ecstatic right now!', 'created': '2024-11-06 16:00:40', 'submission_id': '1gksukk'}
{'comment': 'Proof that the American people care more about our border, economy, inflation, than they do your feelings. DJT!', 'created': '2024-11-06 16:15:41', 'submission_id': '1gksukk'}
{'comment': "Proud man from England here, I'm glad you've won tonight as it bodes well for my country too. Well done all! It just shows that the majority of Americans aren't as stupid as we think, just the blue minority half are the loudest.", 'created': '2024-11-06 17:58:22', 'submission_id': '1gksukk'}
{'comment': "Come over to X! It's a party there.", 'created': '2024-11-06 19:05:20', 'submission_id': '1gksukk'}
{'comment': "I saw a comment earlier on the politics sub about how they could not believe that so many people voted red on things that were expected to stay blue.\n\nIt's amazing to me how clueless they still are, when in reality that should really say something in regards to what people really think about the current state of this country. \n\nWe did it, boys!", 'created': '2024-11-06 19:29:18', 'submission_id': '1gksukk'}
{'comment': 'This is not only a win for the Republican Party, \nBut a win for democracy and the perseverance of the republic.', 'created': '2024-11-06 19:32:05', 'submission_id': '1gksukk'}
{'comment': 'This was such a crazy election cycle. God bless the future of this country and everyone within it.', 'created': '2024-11-07 02:57:05', 'submission_id': '1gksukk'}
{'comment': 'R/Teachers is truly unhinged right now. Most of those people should not be around children', 'created': '2024-11-07 02:57:41', 'submission_id': '1gksukk'}
{'comment': "I'd be very happy if Trump went after Reddit too 💀💀\n\nI haven't seen a more shithole of a website than this one", 'created': '2024-11-07 03:21:46', 'submission_id': '1gksukk'}
{'comment': 'I have been feeling sorry for the libs today (I live in a blue city) but then I remember that they wanted to kill him in 4K', 'created': '2024-11-07 03:34:17', 'submission_id': '1gksukk'}
{'comment': 'Woooooooooooooooooooooo!!!', 'created': '2024-11-06 13:04:12', 'submission_id': '1gksukk'}
{'comment': 'Exactly!!!', 'created': '2024-11-06 13:08:39', 'submission_id': '1gksukk'}
{'comment': 'I didn’t think it would be this……easy.', 'created': '2024-11-06 13:27:52', 'submission_id': '1gksukk'}
{'comment': 'Awesome! 😝 \nAll the subs that are locked just blows my mind.', 'created': '2024-11-06 13:31:27', 'submission_id': '1gksukk'}
{'comment': 'Hell yeah!!!! Common sense prevailed!!', 'created': '2024-11-06 13:32:09', 'submission_id': '1gksukk'}
{'comment': 'But wait. This is the end of country, and maybe e\nThe world!! Just ask Deniro. Fucktards', 'created': '2024-11-06 14:21:44', 'submission_id': '1gksukk'}
{'comment': None, 'created': '2024-11-06 11:56:49', 'submission_id': '1gksukk'}
{'comment': 'Cheers', 'created': '2024-11-06 13:44:38', 'submission_id': '1gksukk'}
{'comment': 'Chin chin!', 'created': '2024-11-06 14:03:59', 'submission_id': '1gksukk'}
{'comment': 'Tell it to your mamala Kamala', 'created': '2024-11-06 14:08:43', 'submission_id': '1gksukk'}
{'comment': 'Unhinged Democrats will stir up something and create chaos in the days leading up to inauguration on Jan 20th. There will be some drama …. I am pretty sure. And dont forget the MSM owned by liberals. Lets see if they change their rhetoric towards Trump or still continue to call him Dictator or Hitler or Fascist or Racist or GARBAGE. Only Time would tell. I am so glad TRUMP is our 47th President.', 'created': '2024-11-06 14:23:54', 'submission_id': '1gksukk'}
{'comment': 'Well done folks! The United States couldn’t endure another 4 years of open borders and weak leadership. It would’ve been the end of this great country… Now we sail on the tide of Freedom, with affordable cost of living, secure borders, and most importantly, respect from other world leaders. 🇺🇸', 'created': '2024-11-06 14:24:51', 'submission_id': '1gksukk'}
{'comment': 'So darn happy last night! I never stay up late but boy did I last night/this morning. To heck with the redditors! Hopefully Trump gets retribution for everything they out him through.', 'created': '2024-11-06 14:55:35', 'submission_id': '1gksukk'}
{'comment': "Bro every left sub is panicking and crying about Trump being President now when nothing bad will happen to them \n\nIt's laughable pathetic", 'created': '2024-11-06 14:56:29', 'submission_id': '1gksukk'}
{'comment': 'W', 'created': '2024-11-06 14:56:50', 'submission_id': '1gksukk'}
{'comment': 'We did it bois and girls', 'created': '2024-11-06 15:01:21', 'submission_id': '1gksukk'}
{'comment': 'Astroturfing didn’t work', 'created': '2024-11-06 10:55:30', 'submission_id': '1gksukk'}
{'comment': 'WOOoOoOoOoOoOoOOOOOOO', 'created': '2024-11-06 11:21:36', 'submission_id': '1gksukk'}
{'comment': 'Nice !!', 'created': '2024-11-06 11:41:51', 'submission_id': '1gksukk'}
{'comment': '🍻', 'created': '2024-11-06 11:56:35', 'submission_id': '1gksukk'}
{'comment': 'it great thing', 'created': '2024-11-06 12:19:01', 'submission_id': '1gksukk'}
{'comment': 'Michigans sub is all about Gretchen being pres in 2028 already 🙃', 'created': '2024-11-06 14:41:36', 'submission_id': '1gksukk'}
{'comment': 'HOLLAAAAAAAAAAA WELCOME BACK DADDDDY', 'created': '2024-11-06 15:05:43', 'submission_id': '1gksukk'}
{'comment': 'I’m part of a NA sub and I just saw a post “idk how I’m going to stay sober now that Trump has won.” 🙄🙄🙄 thankfully no one was feeding into their bs. “Waaah Trump made me relapse.” I’d love to see someone say that in an actual meeting and watch other peoples reactions. I’ve seen people who took their sobriety seriously relapse due to loved ones dying or losing their jobs or homes. For example, there was a mother who was clean for 20 plus years and unfortunately her daughter who rarely used drugs overdosed on a fake Xanax (laced with fentanyl). Her daughter was only 17 when she died. That poor lady wanted to end her life by taking a hot shot and it took her everything in her power to not do that. I’m sorry if you relapse because of a political election then you probably didn’t want to get clean in the first place, that or you just want attention. I’m trying so hard to just stay quiet because I don’t want to get banned.', 'created': '2024-11-06 15:06:51', 'submission_id': '1gksukk'}
{'comment': 'FUCK YEAH!! AMERICA HAS SPOKEN!!! SOON THE WORLD!!!!', 'created': '2024-11-06 15:12:07', 'submission_id': '1gksukk'}
{'comment': 'YES!!!!!!!!', 'created': '2024-11-06 15:18:04', 'submission_id': '1gksukk'}
{'comment': 'Let’s celebrate by watching the libs have meltdowns', 'created': '2024-11-06 15:19:39', 'submission_id': '1gksukk'}
{'comment': 'Were.....TURNING THE PAGE!', 'created': '2024-11-06 15:21:39', 'submission_id': '1gksukk'}
{'comment': 'Michael Moore, enjoy your toast this morning.', 'created': '2024-11-06 15:26:17', 'submission_id': '1gksukk'}
{'comment': 'Group therapy time lol', 'created': '2024-11-06 15:26:22', 'submission_id': '1gksukk'}
{'comment': 'Amen, Good riddance!', 'created': '2024-11-06 15:27:15', 'submission_id': '1gksukk'}
{'comment': 'I’m totally watching The View today for the first and only time in my life! Should be a good meltdown.', 'created': '2024-11-06 15:32:09', 'submission_id': '1gksukk'}
{'comment': 'Oh yeah baby, four years of peace and economic success', 'created': '2024-11-06 15:32:10', 'submission_id': '1gksukk'}
{'comment': "Haven't seen any mass moving trucks heading to LA or NY for all those celebrities....", 'created': '2024-11-06 15:32:49', 'submission_id': '1gksukk'}
{'comment': 'I love the tears, on just about every subreddit.', 'created': '2024-11-06 15:37:01', 'submission_id': '1gksukk'}
{'comment': 'LETS GOOOOOOOO', 'created': '2024-11-06 15:37:22', 'submission_id': '1gksukk'}
{'comment': 'Funny how the day after an election all the “normal” non-political subs allow political satire and commentary, memes, and general politics when they normally don’t.', 'created': '2024-11-06 15:41:35', 'submission_id': '1gksukk'}
{'comment': 'Cheers! MAGA 🦅🇺🇸', 'created': '2024-11-06 15:53:07', 'submission_id': '1gksukk'}
{'comment': 'Cheerio!!!', 'created': '2024-11-06 15:55:19', 'submission_id': '1gksukk'}
{'comment': "Love it. A day for them to realise that they don't know everything.", 'created': '2024-11-06 15:56:15', 'submission_id': '1gksukk'}
{'comment': 'Honestly i’m surprised the NYC reddit is almost some what republican, somewhat reflecting what happend there this election. RED WAVE BABY.', 'created': '2024-11-06 16:00:16', 'submission_id': '1gksukk'}
{'comment': 'What an absolute glorious moment in time!! I’m not fully convinced that Trump can do all he has set out to do in the face of the political climate in the world but I know he will try to make tangible changes to the deep states hold on the country.', 'created': '2024-11-06 16:00:24', 'submission_id': '1gksukk'}
{'comment': '😂😂😂😂 I just opened Reddit expecting it to be a mad house and this is the first post I saw. Woohoo!!', 'created': '2024-11-06 16:12:20', 'submission_id': '1gksukk'}
{'comment': 'DADDYS HOME!!!', 'created': '2024-11-06 16:15:50', 'submission_id': '1gksukk'}
{'comment': 'LFG, Christmas morning is upon us', 'created': '2024-11-06 16:16:04', 'submission_id': '1gksukk'}
{'comment': 'It’s almost like running a whole campaign on emotional responses to abortion (that’s up to the states anyway) and calling someone Hitler doesn’t work. Loved the turnout with minorities for Trump.', 'created': '2024-11-06 16:19:30', 'submission_id': '1gksukk'}
{'comment': 'What’s funny is how much hate they spew and they still can’t understand why the majority of the country decided to vote against them… I cannot explain how satisfying this feels… I am just so excited to have team sanity back in the WH. Now comes the real work', 'created': '2024-11-06 16:23:10', 'submission_id': '1gksukk'}
{'comment': "It's a good day for our side, fam. Controlling inflation and the border need to be the first focus ... they need to take advantage of possibly getting complete power (if we get the House).\n\nSCOTUS - anyone that wants to retire should announce it this coming February.", 'created': '2024-11-06 16:25:59', 'submission_id': '1gksukk'}
{'comment': 'We did do it and I knew we would ! She had no background or backbone. She kept the Biden lie going. \nNow we need to start prepping someone.', 'created': '2024-11-06 16:26:00', 'submission_id': '1gksukk'}
{'comment': 'Yay!!!!', 'created': '2024-11-06 16:29:02', 'submission_id': '1gksukk'}
{'comment': 'Let’s fucking go!!!!!', 'created': '2024-11-06 16:29:38', 'submission_id': '1gksukk'}
{'comment': 'RGR', 'created': '2024-11-06 16:30:11', 'submission_id': '1gksukk'}
{'comment': 'Dems over on X saying we cheated and for Kamala not to concede that their needs to be a recount.....', 'created': '2024-11-06 16:36:15', 'submission_id': '1gksukk'}
{'comment': 'YEA! 🇺🇸🦅🦅🦅 normally I stick to X but I found my people here', 'created': '2024-11-06 16:36:38', 'submission_id': '1gksukk'}
{'comment': 'Salud indeed!', 'created': '2024-11-06 16:39:23', 'submission_id': '1gksukk'}
{'comment': 'Yeah! Hopefully he can institute change in the 4 years he has. I pray he is safe and no one shoots or kills him.', 'created': '2024-11-06 16:46:28', 'submission_id': '1gksukk'}
{'comment': '[https://babylonbee.com/news/trump-wins-3rd-election-in-a-row](https://babylonbee.com/news/trump-wins-3rd-election-in-a-row)', 'created': '2024-11-06 16:47:17', 'submission_id': '1gksukk'}
{'comment': 'Blasting YMCA all day 🥳🇺🇸', 'created': '2024-11-06 16:49:12', 'submission_id': '1gksukk'}
{'comment': 'Cheers!', 'created': '2024-11-06 16:49:28', 'submission_id': '1gksukk'}
{'comment': 'The Dems are planning "revenge of the Sith Dems." Donald should sign the insurrection documents in January ASAP.', 'created': '2024-11-06 16:50:06', 'submission_id': '1gksukk'}
{'comment': "Yes, but let's be classy about it. Take the high road.", 'created': '2024-11-06 16:50:11', 'submission_id': '1gksukk'}
{'comment': "🥂 LET'S PARTY!! WOOHOO!!🥳", 'created': '2024-11-06 16:50:39', 'submission_id': '1gksukk'}
{'comment': 'Congratulations all! With a clean sweep we really should be able to make some real progress!', 'created': '2024-11-06 16:50:43', 'submission_id': '1gksukk'}
{'comment': 'Thank GOD for finally opening their eyes.........', 'created': '2024-11-06 16:56:33', 'submission_id': '1gksukk'}
{'comment': "We're so back baby", 'created': '2024-11-06 16:59:40', 'submission_id': '1gksukk'}
{'comment': 'Yeah… I told my mom yesterday… REDDIT IS GONNA BE SOOOOOO MAD! Hahahahahahahahaha TRUMP BABYYYYY!', 'created': '2024-11-06 17:02:14', 'submission_id': '1gksukk'}
{'comment': 'This is unbelievable. Imagine the courts!', 'created': '2024-11-06 17:06:38', 'submission_id': '1gksukk'}
{'comment': 'Woohoo for us the internet aware normies', 'created': '2024-11-06 17:10:43', 'submission_id': '1gksukk'}
{'comment': 'USA USA USA!', 'created': '2024-11-06 17:16:30', 'submission_id': '1gksukk'}
{'comment': 'A bunch of us are watching the View for the first time to see the meltdown.', 'created': '2024-11-06 17:32:55', 'submission_id': '1gksukk'}
{'comment': 'Well I’ve been banned from a group for “edgelording, and spreading Trumps lies.” Lol. This is absolutely hilarious and ridiculous at the same time.\n\nFor anyone interested in the comment that got me permabanned:\n“You know Trump wants to force ALL healthcare providers to offer IVF coverage? He actually mentioned this policy plan before Kamala, ANNNNND rvw is a Supreme Court issue. The president can try to push the issue but they don’t make the decision... Trump’s stance on abortion is that it should be elective up to 24 weeks, with the exception of life threatening circumstances. I know people aren’t going to receive this comment well so I’m just going to stop there.\n(ALSO, I have struggled with infertility for over 4 years with multiple losses and no LC. So this IS a concern for me.)”', 'created': '2024-11-06 17:53:10', 'submission_id': '1gksukk'}
{'comment': "We the people have freaking spoken loud and clear. America played NO games last night and it's beautiful. 🇺🇲🇺🇲", 'created': '2024-11-06 17:58:46', 'submission_id': '1gksukk'}
{'comment': 'Strolled into work today (where a ton of employees are liberal) doing the Conor McGregor strut. :D', 'created': '2024-11-06 17:59:27', 'submission_id': '1gksukk'}
{'comment': 'Listen, you have no excuses to get shit done with control over everything…don’t fuck it up. Our future depends on unity and moving forward.', 'created': '2024-11-06 18:02:54', 'submission_id': '1gksukk'}
{'comment': 'Yessss!!', 'created': '2024-11-06 18:07:46', 'submission_id': '1gksukk'}
{'comment': 'There’s a post in r/Georgia that says they want to become pregnant in the next year, but are scared to now. They asked what will happen if “something happens” during the pregnancy now that Trump will take over.\n\nThese democrats just want the easy way out of everything. If your child has developmental issues or delays or an extra chromosome, that doesn’t mean something is “wrong.” Grow the fu!k up and learn that babies born with special needs are human beings. They still deserve life. \n\nLife won’t be easy, but no one’s life - regardless of your ailments, ability or what have you upon birth - is ever promised to be easy. \n\nThey could easily be talking about the health of the mother too, which I realize that, but as a sister of someone with special needs that post really pissed me off this morning.', 'created': '2024-11-06 18:13:53', 'submission_id': '1gksukk'}
{'comment': 'Cheers all🍸', 'created': '2024-11-06 18:23:51', 'submission_id': '1gksukk'}
{'comment': 'Congrats, America!', 'created': '2024-11-06 18:36:32', 'submission_id': '1gksukk'}
{'comment': 'WOOOOO HOOO! And ya know what really gets me is the continued HATE they have for us. And we’re not allowed to be happy and joyful (Where have I heard that before?) and we should have empathy yadda yadda yadda. I was thrown out of a Telegram Group because I was happy and joyful and didn’t “read” the room! If they had prevailed they would have been screaming all over and then some. I am beyond happy Trump won and it looks like we will control BOTH houses. And one other point. Some idiot on Tik Tok was screaming and crying about the Electoral College and we should do away with it. Ummmmm even if we had he still won the..Wait for it..Popular Vote which they were bitching about the last time.', 'created': '2024-11-06 18:53:30', 'submission_id': '1gksukk'}
{'comment': 'And she couldn’t even call him and CONCEDE?! The Race! So much for Unity', 'created': '2024-11-06 18:54:35', 'submission_id': '1gksukk'}
{'comment': 'I got heavily downvoted in the Ohio sub for saying the constitutional republic was saved today 😂', 'created': '2024-11-06 19:04:30', 'submission_id': '1gksukk'}
{'comment': 'I wish I had the time to go back to every one of their “this IDIOT is not going to win and anyone who supports him is IGNORANT” posts and laugh', 'created': '2024-11-06 19:26:10', 'submission_id': '1gksukk'}
{'comment': 'Socialism doesn’t like ordinary people choosing for they might not choose socialism. Let them eat all of it. We deserve every bit of this win.', 'created': '2024-11-06 19:56:21', 'submission_id': '1gksukk'}
{'comment': 'I’m so happy !!!! ❤️', 'created': '2024-11-06 20:19:20', 'submission_id': '1gksukk'}
{'comment': 'TRUMP!!!', 'created': '2024-11-06 20:20:18', 'submission_id': '1gksukk'}
{'comment': 'I had deleted reddit when the left took over. Nice to see it so quiet again', 'created': '2024-11-06 20:42:37', 'submission_id': '1gksukk'}
{'comment': '🍾🍾🍾🍾🍾🍾', 'created': '2024-11-06 21:05:49', 'submission_id': '1gksukk'}
{'comment': 'r/infuriatingasfuck is raging rn 😭', 'created': '2024-11-06 21:06:08', 'submission_id': '1gksukk'}
{'comment': '🍻', 'created': '2024-11-06 21:32:51', 'submission_id': '1gksukk'}
{'comment': 'I want to say, Thank you for voting for Trump. My one vote in a small electoral vote state, didn’t mean much. Just thanks for my children, and thanks for this country.', 'created': '2024-11-06 21:46:44', 'submission_id': '1gksukk'}
{'comment': "I am baffled by some subreddits. Go to boomers being fools, it's insane how they can just post straight up hate posts.", 'created': '2024-11-06 21:46:46', 'submission_id': '1gksukk'}
{'comment': 'The country was saved from numerous cackling!!', 'created': '2024-11-06 22:07:46', 'submission_id': '1gksukk'}
{'comment': 'This is the most likes on this sub I have ever seen.\n\nNow that this is "sorta in the bag" we need to show other people how to be good human beings. That doesn\'t mean "bend over backwards" or kiss ass, but to lead with character, lead with conviction, equality not equity, passion not emotion, justice not fairness, and stoicism....', 'created': '2024-11-06 22:07:49', 'submission_id': '1gksukk'}
{'comment': 'If you want to see something funny right now look at how bad r/punk is freaking tf out', 'created': '2024-11-06 22:21:26', 'submission_id': '1gksukk'}
{'comment': 'Donald Trump better continue being a people’s person for as long as he can during his presidency. we all love a president that interacts with his people.', 'created': '2024-11-06 22:28:32', 'submission_id': '1gksukk'}
{'comment': 'She was a terrible candidate. To the point where in CA we just rolled back a law she championed, Prop 47. Dems need to step it up.', 'created': '2024-11-06 22:36:39', 'submission_id': '1gksukk'}
{'comment': 'In one day I’ve gone from feeling alone in my thoughts and maybe out of touch with the rest of the world to feeling others feel like I do and are willing to do something about it!', 'created': '2024-11-06 22:39:05', 'submission_id': '1gksukk'}
{'comment': 'I just wanted to give congratulations to Kamala and her 81 million followers 😂', 'created': '2024-11-06 22:48:37', 'submission_id': '1gksukk'}
{'comment': 'Worst thing I saw on there subreddit is that “I guess gas, groceries, and the economy are more important than people’s lives, and getting thrown into concentration camps”', 'created': '2024-11-06 22:48:46', 'submission_id': '1gksukk'}
{'comment': "This is my kinda sub reddit! My state's reddit is as liberal as can be and having an absolute meltdown over it. Skål!🍻🍻", 'created': '2024-11-06 22:53:08', 'submission_id': '1gksukk'}
{'comment': 'I woke up and the sun was shining so much brighter ☀️♥️🤍💙', 'created': '2024-11-06 23:05:20', 'submission_id': '1gksukk'}
{'comment': 'Cheers! Whiny babies in all the other subs', 'created': '2024-11-06 23:08:29', 'submission_id': '1gksukk'}
{'comment': 'We’re all “morally bankrupt” because we see through the lies and corruption lmao victory feels good', 'created': '2024-11-06 23:13:44', 'submission_id': '1gksukk'}
{'comment': 'Congratulations all. We did it!', 'created': '2024-11-06 23:16:52', 'submission_id': '1gksukk'}
{'comment': 'I’m loving the meltdowns 😂😂😂', 'created': '2024-11-06 23:26:48', 'submission_id': '1gksukk'}
{'comment': '🇺🇸🇺🇸🇺🇸❤️', 'created': '2024-11-06 23:32:49', 'submission_id': '1gksukk'}
{'comment': 'We are the unifying party of real joy, not manufactured BS joy. We will help America heal!!!!!!!!!!', 'created': '2024-11-06 23:36:06', 'submission_id': '1gksukk'}
{'comment': 'Cheers everyone!!!', 'created': '2024-11-06 23:37:50', 'submission_id': '1gksukk'}
{'comment': 'I would love to gloat IRL but pretty sure these people will burn my house down', 'created': '2024-11-06 23:53:22', 'submission_id': '1gksukk'}
{'comment': 'Cheers 🍻', 'created': '2024-11-07 00:06:02', 'submission_id': '1gksukk'}
{'comment': 'Hell yeah!', 'created': '2024-11-07 00:20:02', 'submission_id': '1gksukk'}
{'comment': 'Centrist here. Congrats folks, y’all have destroyed the hive mind mentality of Reddit!', 'created': '2024-11-07 00:27:58', 'submission_id': '1gksukk'}
{'comment': 'I’m from Canada so all I can say is I was rooting for you guys for Trump to win. Because I saw it in two ways.\n\nFirst scenario Trump wins. It’s great for America. It’s actually great for the entire world. Canada included. We’re still trying to kick our dictator out lol \n\nSecond scenario, wins. Which is shitty for your country, but it gives the rest of the world another four years of laughs lol \n\nBut you can bet I stayed up and watch the election. My son School even gave the kids the day off today so they could watch. Congrats USA!', 'created': '2024-11-07 00:33:48', 'submission_id': '1gksukk'}
{'comment': 'Cheers! ❤️🤍💙', 'created': '2024-11-07 00:57:24', 'submission_id': '1gksukk'}
{'comment': '👏 🇺🇸 MAGA!!!! #winning #iloveliberaltears', 'created': '2024-11-07 01:05:39', 'submission_id': '1gksukk'}
{'comment': 'Definitely seeing raw, unadulterated hatred in the majority of Reddit right now.', 'created': '2024-11-07 01:11:22', 'submission_id': '1gksukk'}
{'comment': "Oh yeah they aren't happy at all. Still saying the economy is the best under Biden/kalmara. I'm in NJ and 5 blue counties went red on 2024 vs in 2020. That means those blue voters woke up and went red.", 'created': '2024-11-07 01:21:23', 'submission_id': '1gksukk'}
{'comment': 'It’s so funny when even like cat subreddits are malding 😂😂😂🇺🇸🇺🇸🇺🇸', 'created': '2024-11-07 01:22:09', 'submission_id': '1gksukk'}
{'comment': 'I’ve seen some people talking on Reddit like the world is ending, that they will be shot or thrown in a camp for speaking up? It’s kinda wild like Kamala is the one who has a problem with the first amendment.', 'created': '2024-11-07 01:50:40', 'submission_id': '1gksukk'}
{'comment': 'w00t!', 'created': '2024-11-07 02:00:18', 'submission_id': '1gksukk'}
{'comment': 'Compose a list of songs on Spotify and blast it in the car driving through Democratic areas to let them know the silent majority has spoken.', 'created': '2024-11-07 02:26:46', 'submission_id': '1gksukk'}
{'comment': 'Cheeres mate 🍹', 'created': '2024-11-07 02:56:11', 'submission_id': '1gksukk'}
{'comment': 'Now do something meaningful. Fix healthcare. Fix Social Security. Fix extreme income inequality. Stop committing political suicide on the hill of banning abortion.', 'created': '2024-11-06 15:14:22', 'submission_id': '1gksukk'}
{'comment': 'I am very curious to see what kind of president he shall be the second time around.', 'created': '2024-11-06 13:20:26', 'submission_id': '1gksukk'}
{'comment': 'Your turn soon', 'created': '2024-11-06 10:18:07', 'submission_id': '1gksukk'}
{'comment': 'They really just need to move on and be unburdened by what has been lolololol', 'created': '2024-11-06 09:57:43', 'submission_id': '1gksukk'}
{'comment': "IT'S GENUINELY BEAUTIFUL!!! And I'm not even in the same continent ❤️", 'created': '2024-11-06 16:35:09', 'submission_id': '1gksukk'}
{'comment': 'Just happy it was a solid win along with the popular vote, none of this illegitimate Russia stuff. Solid win and new paradigm shift for the country with JD waiting in the wings.', 'created': '2024-11-06 20:44:56', 'submission_id': '1gksukk'}
{'comment': 'You’ll see what Reddit is up to rn if you sort by popular, it is in shambles', 'created': '2024-11-06 13:59:11', 'submission_id': '1gksukk'}
{'comment': 'Her campaign was totally focused on fear mongering. Her supporters are probably hiding in bomb shelters!', 'created': '2024-11-06 16:36:30', 'submission_id': '1gksukk'}
{'comment': "They don't get it. They don't understand. They still believe all the bad scary stuff is still gonna happen. I can't wait to troll some of them when 2025 doesn't materialize as any policy.", 'created': '2024-11-06 15:30:05', 'submission_id': '1gksukk'}
{'comment': 'They’re actually going insane. I can’t believe how up the ass dense those people can get, but this IS Reddit tho so. 🤷\u200d♂️', 'created': '2024-11-06 20:59:22', 'submission_id': '1gksukk'}
{'comment': 'It really is dead as fuck except us lol', 'created': '2024-11-06 22:58:00', 'submission_id': '1gksukk'}
{'comment': 'Facebook. I don’t see them saying anything lol', 'created': '2024-11-06 12:56:04', 'submission_id': '1gksukk'}
{'comment': 'Fr before the election I was getting blasted with subs I’m not in throwing politics at me but now for some reason I don’t.', 'created': '2024-11-06 19:52:54', 'submission_id': '1gksukk'}
{'comment': "Considering most of them were bots and some kamala drones, I'm not surprised. Most of that nonsense will disappear now.", 'created': '2024-11-07 05:35:54', 'submission_id': '1gksukk'}
{'comment': 'The money dried up. They will find a new sugar daddy soon enough to tell them what to say. I don’t even know where they go from the kill babies coalition. It lost. They torched and alienated everyone who had any other issue. They are ours now. So what’s is left for them to talk about?', 'created': '2024-11-06 14:08:08', 'submission_id': '1gksukk'}
{'comment': 'They’re all waking up to this! https://youtu.be/09RnYVGThng?si=InnGcAtMC8hgtd1K\n\nPoor kids.', 'created': '2024-11-06 18:24:50', 'submission_id': '1gksukk'}
{'comment': 'It’s been glorious 🤣', 'created': '2024-11-08 06:52:16', 'submission_id': '1gksukk'}
{'comment': 'I mean, what would you like them to say? Lol. They’re not going to contest this or say that this was a fake election. That’s foolishness, just as it was back in 2020. Not trying to stir up anything but I think people should just accept things for what they are.', 'created': '2024-11-06 12:26:22', 'submission_id': '1gksukk'}
{'comment': 'Lmao, literally 😂😂', 'created': '2024-11-06 12:40:14', 'submission_id': '1gksukk'}
{'comment': '/r/pics is a shambles 😂', 'created': '2024-11-06 16:28:14', 'submission_id': '1gksukk'}
{'comment': 'Well part of it is all the election bots got turned off.', 'created': '2024-11-06 20:47:29', 'submission_id': '1gksukk'}
{'comment': 'quiet? they’re balling their eyes out.', 'created': '2024-11-06 22:26:14', 'submission_id': '1gksukk'}
{'comment': 'It’s glorious.', 'created': '2024-11-07 03:35:18', 'submission_id': '1gksukk'}
{'comment': 'I believe it’s primarily her fault they lost, if not her the conspiring of her entire party. They all presented Biden as fine until it couldn’t be hidden at the debate. Then last minute she swoops in to secure the nomination. I believe the whole time she knew everything she strategized for her own selfish gain against her party interests. They really gave her a 50% chance to win when she had like what a 9% favorability rating in the democratic caucuses in 2020? The democrats failed their own party trying to keep up a lie for one man.', 'created': '2024-11-06 10:31:49', 'submission_id': '1gksukk'}
{'comment': 'Someone put it great last night, and on NBC of all places. \n\n“They’ve made this campaign more about hating Donald Trump than being an actual party”', 'created': '2024-11-06 15:49:31', 'submission_id': '1gksukk'}
{'comment': 'Her post election autopsy is going to be interesting. What exactly was the tipping point for the swing voters. Tying herself to an unpopular president probably didn’t help her chances', 'created': '2024-11-06 13:21:59', 'submission_id': '1gksukk'}
{'comment': 'Correct. Biden’s cognitive decline was increasingly getting worse and the DNC knew that. They panicked and threw Harris in the front seat without a primary. When asked what she planned on doing differently from Biden, she literally said nothing comes to mind. That was the first of many nails in her coffin and voters began to see she was just going to be an extension of the last four years.', 'created': '2024-11-06 16:15:32', 'submission_id': '1gksukk'}
{'comment': 'I have had the same thought for weeks. Total hypocrisy', 'created': '2024-11-07 00:40:07', 'submission_id': '1gksukk'}
{'comment': 'That is absolutely hysterical 🤣', 'created': '2024-11-06 13:12:22', 'submission_id': '1gksukk'}
{'comment': "From the little I've seen a lot of the propaganda bots have left and a few people are actually celebrating", 'created': '2024-11-06 15:00:42', 'submission_id': '1gksukk'}
{'comment': 'And I’m so ready for Bobby to take action and get the chemicals that are banned in other countries, OUT of our food!', 'created': '2024-11-06 12:42:15', 'submission_id': '1gksukk'}
{'comment': "I voted for Harris, but I agree. I've had enough of this bs where democrats pander to the woke shit and dont show any sort of backbone. I don't regret not voting for Trump, but I should have voted third party.", 'created': '2024-11-06 12:45:11', 'submission_id': '1gksukk'}
{'comment': 'Well said', 'created': '2024-11-06 14:39:02', 'submission_id': '1gksukk'}
{'comment': 'No joke, every political thread in my state’s sub is locked.', 'created': '2024-11-06 10:29:54', 'submission_id': '1gksukk'}
{'comment': 'Yes, watching the response from the media last night and today has been hilarious. They’re in shock and denial, pointing fingers everywhere, just an absolute mess and I’ve enjoyed every second of it.', 'created': '2024-11-06 18:40:15', 'submission_id': '1gksukk'}
{'comment': 'You should see the GenZ sub, they are having insane meltdowns while not being able to read above a 5th grade level graduating high school these days.', 'created': '2024-11-06 13:05:58', 'submission_id': '1gksukk'}
{'comment': 'I\'m pretty confident they\'ll meltdown in private then switch to Trump hate.\n\n"Trump saves nun from burning building"\n\n=\n\n"Trump forcibly abuses nun while removing her from her home"', 'created': '2024-11-06 13:28:15', 'submission_id': '1gksukk'}
{'comment': 'Turn on msnbc. That woman is nearly in tears. Dressed in black.', 'created': '2024-11-06 13:25:49', 'submission_id': '1gksukk'}
{'comment': "Nor the will of the people. We didn't just speak, we ROARED!", 'created': '2024-11-06 13:40:15', 'submission_id': '1gksukk'}
{'comment': 'Not only shot at but actually shot! And speaking of, I was mind blown that it was hardly mentioned at all last night.', 'created': '2024-11-06 18:42:45', 'submission_id': '1gksukk'}
{'comment': "My city sub, which is stated apolitical, was not just a little while ago. I won't post it, but verbally told them to suck it, lol", 'created': '2024-11-06 12:31:53', 'submission_id': '1gksukk'}
{'comment': 'AND RFK. If the DuNCes hadn’t blocked RFK— he would’ve had my vote. But their crooked attempt to keep him out of office is what pushed me to vote Trump. MAGA/MAHA all the way!!', 'created': '2024-11-06 11:53:11', 'submission_id': '1gksukk'}
{'comment': 'What’s funny is people say “he’s a convicted felon” all of the time… but he was never convicted— he was indicted but the charges were dropped. 🤦🏽\u200d♀️ Just goes to show people don’t understand how our government works.', 'created': '2024-11-06 11:54:46', 'submission_id': '1gksukk'}
{'comment': 'i was worried that it would be close and it would get messy but it is over. complete sweep total democratic annihilation. there wont be anything. there is nothing for them to do but look to 2028.', 'created': '2024-11-06 13:26:02', 'submission_id': '1gksukk'}
{'comment': 'I think that’s dramatic. I don’t think anyone will do anything. It’ll be a quick four years and we’ll be back again with new candidates.', 'created': '2024-11-06 12:28:52', 'submission_id': '1gksukk'}
{'comment': 'They’re so off center too lmao. The amount of “women, how are you doing this morning” and “you won’t have more money btw” posts that I’ve seen is insane. Trump should implement some more education for the general public while he’s at it because clearly there’s a major issue 😭', 'created': '2024-11-06 15:42:20', 'submission_id': '1gksukk'}
{'comment': 'Congratulations 🎉', 'created': '2024-11-06 13:33:20', 'submission_id': '1gksukk'}
{'comment': 'Same', 'created': '2024-11-06 16:10:41', 'submission_id': '1gksukk'}
{'comment': 'Crazy right?!', 'created': '2024-11-07 06:27:52', 'submission_id': '1gksukk'}
{'comment': None, 'created': '2024-11-06 15:40:26', 'submission_id': '1gksukk'}
{'comment': 'I am glad we have been unburdened of Kamala.', 'created': '2024-11-06 11:55:36', 'submission_id': '1gksukk'}
{'comment': 'They need to learn how to stop banning people for nothing, because all it does is trick democrats into thinking that there is no opposing views. Already have seen numerous posts about how they only saw Kamala love and that nobody they ever chat with here are opposed to their view.. Well yah, because they get banned so quickly.', 'created': '2024-11-06 17:52:49', 'submission_id': '1gksukk'}
{'comment': 'Did we just turn the page on what has been our burden?', 'created': '2024-11-06 16:25:00', 'submission_id': '1gksukk'}
{'comment': 'Some are saying that the next couple of years are going to be dark times, indeed. And, even tho they do not believe in the 2nd amendment, they might now be buying a gun and learning how to use it', 'created': '2024-11-06 10:38:13', 'submission_id': '1gksukk'}
{'comment': '😂😂', 'created': '2024-11-06 10:00:03', 'submission_id': '1gksukk'}
{'comment': 'The silent people have spoken, Reddit isn’t everything - that must hurt', 'created': '2024-11-06 18:31:43', 'submission_id': '1gksukk'}
{'comment': 'Gold.', 'created': '2024-11-06 17:02:30', 'submission_id': '1gksukk'}
{'comment': "... I'm standing right next to you' take a Drink.\n. 🍻 🥛🍵☕🍵☕🫖☕🍵☕🍵🧉🫖🫖🍺🍺🍺🍺🍺🍺🍶🍹🍸🥃🍷🍷🍾🥂🍻🍺🍺🍺🍸🍸🍸🍹🥃🥃🥃🥃🥃🍷🍷🍾🍾🥂🥂🍻🥂🥂🥂🍾🥛🍾🍷🍵☕🫖🧉🍺🥤🍶🍶🍶🍹🍹🍹🍸🍸🍸🍸🍺🍺🍺🍺🧉🧉🧉🥤🥤🥤🥤🍺🧉🫖🍸🍹🍶🥃🍷🥃🥃🥃🥃🥃🥃🥃🍷🍾🍾🍾🍾🍾🍾🍾🥂🍻🥂🥂🥂🥂🍻🍻🍻🍻🥂🥂🥂🥂...\nAll drinks are on the house !!!!", 'created': '2024-11-07 01:01:46', 'submission_id': '1gksukk'}
{'comment': '💀', 'created': '2024-11-06 13:57:02', 'submission_id': '1gksukk'}
{'comment': "Nice, I like what you did there, now we should turn the page. I don't know if they can, the lefts whole identity has been shattered, just hope Trump cleans house quickly.", 'created': '2024-11-06 20:48:53', 'submission_id': '1gksukk'}
{'comment': '[removed]', 'created': '2024-11-07 00:41:21', 'submission_id': '1gksukk'}
{'comment': 'Ohhh I’ve been lol', 'created': '2024-11-06 15:58:50', 'submission_id': '1gksukk'}
{'comment': 'Well we know they aren’t at work', 'created': '2024-11-06 18:53:39', 'submission_id': '1gksukk'}
{'comment': 'Yup same shit. ALS quiet in the land of smelly cheese', 'created': '2024-11-06 15:58:23', 'submission_id': '1gksukk'}
{'comment': 'Shit. I’ve not got an election call or text. It’s great!', 'created': '2024-11-06 23:01:25', 'submission_id': '1gksukk'}
{'comment': 'I think you underestimate the sheer lunacy of the left if you think they’re just gonna lie down and take it. News stories today will be unhinged as they possibly can be. Should be quite entertaining to see lol', 'created': '2024-11-06 14:04:43', 'submission_id': '1gksukk'}
{'comment': 'They did that in 2020 and it was successful so why not? \n\nUnfortunately they did not factor in that Americans now knew the consequences of voting only against Trump and found that Trump was actually the better reality.', 'created': '2024-11-06 16:52:19', 'submission_id': '1gksukk'}
{'comment': 'I vote based off policy but Kamala didn’t do it for me this year, she was very arrogant and I hated how she only appealing to people with no policy. I still can’t find what she was running on besides giving money out and Charli XCX. At the end of the day, this is a politician who rather than make any important speeches would rather make TikTok’s to Charli. We need professionalism, policy, and not relying on the teenagers. The brat summer that was popular among young voters but more popular among people who are not of age to vote. Her campaign didn’t reach out to the elderly, or gen X. Just Gen Z which a good chunk of that generation is under age.', 'created': '2024-11-06 15:28:17', 'submission_id': '1gksukk'}
{'comment': 'They need to do some deep soul searching. I am a middle of the road guy that felt really turned off with the left for many reasons. A few are the weaponization of the DOJ, the hateful rhetoric that led to 2 assassination attempts, celebrating abortion. Many more to list.', 'created': '2024-11-06 14:37:04', 'submission_id': '1gksukk'}
{'comment': 'Her choosing the worst possible candidate for VP didn\'t help. I swear to God Biden must have said "I chose the dumbest VP" and she said "hold my beer".', 'created': '2024-11-06 15:33:59', 'submission_id': '1gksukk'}
{'comment': 'Hypocrisy (or projection) is the name of democrats name.', 'created': '2024-11-07 01:03:09', 'submission_id': '1gksukk'}
{'comment': "Yes, please! I don't have much to say about fluoride since I grew up on well water as did my son, but I really want to see red dye to be banned like Europe.", 'created': '2024-11-06 15:41:29', 'submission_id': '1gksukk'}
{'comment': 'I also voted for Harris begrudgingly; her campaign was a mess once the DNC started fucking with it. Pandering to the center, attempting to “meet in the middle”, repeating the same monotone lines about Gaza \n\nWhen I noticed her tone shifting in an attempt to be perceived as more moderate, that’s when I knew Democrats have STILL yet to learn from their past failures \n\nIt’s the same fucking cycle over and over and over \n\nCompletely inept and incompetent', 'created': '2024-11-06 13:10:13', 'submission_id': '1gksukk'}
{'comment': 'Yep. PA is locked down.\nWOOHOO!!!', 'created': '2024-11-06 13:24:39', 'submission_id': '1gksukk'}
{'comment': "I know and I can't decide whether that's hilarious or pathetic", 'created': '2024-11-06 14:59:11', 'submission_id': '1gksukk'}
{'comment': '"...while *evicting* her from her home."', 'created': '2024-11-06 15:44:14', 'submission_id': '1gksukk'}
{'comment': 'What?\n\nTrump was convicted in New York this spring on 34 felony counts of falsifying business records in connection with a hush-money payment made to a porn star before the 2016 presidential election.\n\nhttps://www.cbc.ca/amp/1.7375060', 'created': '2024-11-06 22:48:03', 'submission_id': '1gksukk'}
{'comment': 'Thank youuuu!! This baby is very wanted, and we are so excited!!', 'created': '2024-11-06 13:39:46', 'submission_id': '1gksukk'}
{'comment': 'More people need to hear Vance talk. That mans got a great mind!', 'created': '2024-11-06 15:42:23', 'submission_id': '1gksukk'}
{'comment': "She couldn't even make a speech to her supporters who waited outside for her all night.\n\nThis is a person who lacks integrity and doesn't know who she is.\n\nEvil has been defeated.", 'created': '2024-11-06 13:25:22', 'submission_id': '1gksukk'}
{'comment': 'Unburdened of Joe Biden, Jill, Kamala, Barack, Michelle, Hillary and Bill!! So happy to see all of them GO!!', 'created': '2024-11-06 21:47:51', 'submission_id': '1gksukk'}
{'comment': 'And Walz! Can you imagine?!', 'created': '2024-11-08 00:26:35', 'submission_id': '1gksukk'}
{'comment': "This! 👆 let's hope they don't learn from their mistakes and keep Gaslighting America Again!", 'created': '2024-11-06 18:40:56', 'submission_id': '1gksukk'}
{'comment': 'Omg the number of subs I’ve been banned for in the last day, simply bc I support Trump…just like the MAJORITY of America', 'created': '2024-11-06 19:19:27', 'submission_id': '1gksukk'}
{'comment': 'As someone in r/RedditLacqueristas I agree… Do I care? not really, as I’d make my own community and invite like minded people. Let’s not even get into the r/fountainpens issue. I didn’t know pens especially fountain pens had Democratic views. Unfortunately- or fortunately on my end I am an instigator. You’ll understand when you look at my recent comments.', 'created': '2024-11-06 18:50:52', 'submission_id': '1gksukk'}
{'comment': "yeah I know. this is why I hate the censorship thats been going on last few years. people that are even a little stupid dont understand. It's not their fault. I feel bad because anyone of us could have been even a tad stupider during birth. Unfortunately politicians take advantage of idiots.", 'created': '2024-11-07 02:25:51', 'submission_id': '1gksukk'}
{'comment': 'Yes!!! Well said!', 'created': '2024-11-07 10:13:38', 'submission_id': '1gksukk'}
{'comment': "I'll give lessons", 'created': '2024-11-06 13:11:08', 'submission_id': '1gksukk'}
{'comment': "Ukraine should have surrendered early on and avoided the loss of tens of thousands of people and the waste of hundreds of $billions.\n\nThey shouldn't have been pushing to join NATO, which triggered the whole thing.\n\nIf you live in a NATO country, you have nothing to be concerned about. Russia isn't going to be taking on NATO.", 'created': '2024-11-07 00:43:33', 'submission_id': '1gksukk'}
{'comment': "Exactly. Juan Williams on Fox last night was attributing it to racism of the bros. Was nice to see Harold Ford push back on him, but dude was sticking with the line that the racist/sexist bros wouldn't vote for a woman of color.", 'created': '2024-11-06 15:19:23', 'submission_id': '1gksukk'}
{'comment': 'There’s nothing they can do besides talk about it, and that will have equally minimal impact. It’ll die down. Just have to wait it out. I’m not underestimating anything, I just don’t think there’s a reason for me to be so concerned or stressed. If anything, I think that’s a bit dramatic. He won, there’s nothing to be done.', 'created': '2024-11-06 14:09:45', 'submission_id': '1gksukk'}
{'comment': 'Fun fact, planned parenthood was invented by Margaret Sanger, who, had a husband in the KKK, and invented this to eradicate "less desirable" babies. And when Nazis were in court, they used her planned parenthood book as an excuse and some of them got off. They also used to give out Margaret Sanger awards, and Hillary Clinton received one. And they fight for this.\xa0', 'created': '2024-11-06 18:02:28', 'submission_id': '1gksukk'}
{'comment': 'That too, msm described Vance as the worst VP pick and Walz as the perfect VP pick. \n\nCrazy how wrong that was. They too, were so fixated on the demographics of their picks and not the actual capabilities, experience and competence of their picks.', 'created': '2024-11-06 16:50:16', 'submission_id': '1gksukk'}
{'comment': "Minnesota might have flip if D wasn't on the VP ticket \n\nBut yeah, Josh Shapiro was right there", 'created': '2024-11-07 04:41:41', 'submission_id': '1gksukk'}
{'comment': 'I’m getting creamed over in r/videos this morning. They posted today’s song was American Idiot by Green Day. Then they’re trying to take the moral high ground. I’m like dudes you’re calling the majority of voters idiots. You don’t have the high ground.', 'created': '2024-11-06 15:07:26', 'submission_id': '1gksukk'}
{'comment': '💕💕 so happy for you!!', 'created': '2024-11-06 13:47:47', 'submission_id': '1gksukk'}
{'comment': None, 'created': '2024-11-06 16:08:51', 'submission_id': '1gksukk'}
{'comment': 'She pulled a Hillary lmao', 'created': '2024-11-06 14:02:42', 'submission_id': '1gksukk'}
{'comment': 'She canceled her speech and her campaign workers sent everyone home. It was no longer a celebration.', 'created': '2024-11-06 16:37:36', 'submission_id': '1gksukk'}
{'comment': 'I felt bad for all those people standing around waiting...then they were told she would not be there. It shows how she really feels about her voters.', 'created': '2024-11-06 17:24:39', 'submission_id': '1gksukk'}
{'comment': 'Sore l00ser haha, disrespectful as hell to the fools who were there 😂', 'created': '2024-11-06 16:37:20', 'submission_id': '1gksukk'}
{'comment': 'Political career is completely cooked 🍗🍲', 'created': '2024-11-06 23:03:32', 'submission_id': '1gksukk'}
{'comment': '[removed]', 'created': '2024-11-06 18:10:34', 'submission_id': '1gksukk'}
{'comment': 'I agree! Chuck Schumer was fired too! It is a wonderful day in America!\xa0', 'created': '2024-11-06 23:26:43', 'submission_id': '1gksukk'}
{'comment': 'Amen!', 'created': '2024-11-06 21:51:10', 'submission_id': '1gksukk'}
{'comment': 'Let’s be grateful that she didn’t pull a Trump in 2020 and reject the vote followed by Jan. 6th attack. That was scary—-VERY scary! 🙄', 'created': '2024-11-07 11:21:08', 'submission_id': '1gksukk'}
{'comment': 'That’s all they’ve got, man. No criticism of value has been levied against Trump over this because they have nothing. They just can’t fathom the reality that Kamala was probably the worst candidate in the history of the country and that Trump was up in literally every demographic of people in this country, so naturally they revert back to their “everyone is racist and sexist” bullshit. \n\nWhen you actually consider it, them asserting that Trump won because of racists and sexists actually _is itself_ a racist thing to say. It’s just like Biden saying the “if you vote for Trump, you ain’t black” thing. \n\nThey can’t believe that minority demographics voted for Trump in record numbers. Surely all black people and Hispanics are a pure monolith and will always vote for a “black”/minority democrat, right? They all think the same exact way because of the color of their skin, right? It’s just another classic case of the left’s own racism that they lack the ability to recognize, right up there with “black people/minorities are incapable of acquiring a photo ID” and the whole “white savior” concept, for example. It’s not the first time they’ve acted this way, and it certainly won’t be the last.', 'created': '2024-11-07 13:58:38', 'submission_id': '1gksukk'}
{'comment': 'I mean racism and whatnot exist regardless. It’s probably just been exacerbated due to the Dem candidate. Nevertheless, I think the dems just didn’t show up for Harris and the campaign was a failure. The only ones they should be angry at is their own party. Just like Republicans had to do, they must learn from their mistakes. This is politics.', 'created': '2024-11-07 05:45:00', 'submission_id': '1gksukk'}
{'comment': '(Btw, I’m not trying to stir anything up or pick a fight with you here or anything like that either, I’m just having a conversation with you)\n\nI mean, I’m not concerned or stressed about it either (if anything, I find it highly entertaining lol), but based on how they have handled literally every other situation like this where a Republican wins in anything, assuming that they’re going to die down or stop talking about this election this time is like the exact opposite of what they’re going to do. Like, they literally spent four years denying the 2016 election results and made up all sorts of nonsense to try to discredit the outcome.\n\nThat sort of behavior is absolutely going to be a staple of the left for the next four years; it’s going to be all that they talk about for a good while. Just turn the channel over to cnn or msnbc for a minute and see how insanely they are currently reacting to this. \n\nFor example, Morning Joe went on a rant yesterday morning that was literally nothing but 100% lies. He included the “very fine people” hoax, “Trump wants to have Liz Cheney executed” bs, the “literal dictator” nonsense—basically every single lie you’ve ever heard from the left, including the ones that have been completely and entirely debunked. I’m literally not exaggerating here; every single thing he said was a blatant lie in every way. Their audience actually believes that shit when he says it, so thinking that those people are going to just give up when they’ve been fed that propaganda and built up these massive non-existent stakes for nearly a decade doesn’t seem likely to me. \n\nWe know their playbook, and nowhere in that playbook does it say to just accept Trump and shut up about it. A massive swath of them literally think he is going to create a fascist dictatorship in this country, and they 100% believe that. Again, I’m not exaggerating anything here.\n\nThe left has not changed since 2016, so I have no reason to believe that they’re just gonna drop this election talk all of a sudden. On the contrary, I have every reason to believe that they _will_ keep harping on it and making up lies to cope. It’s not going to just vanish anytime soon. \n\nSo yeah, I’m not stressing about it either, but thinking that they’re gonna quit or die down with the crazy ass rhetoric is assuming they have any semblance of intellectual integrity, which they absolutely don’t. It does make for some incredibly entertaining freak out moments, though lol.', 'created': '2024-11-07 13:41:19', 'submission_id': '1gksukk'}
{'comment': "If they cared even 2% about competence, Harris would still be fucking up California. That state can't seem to drop the very people everyone else despises, like Pelosi and Schiff? She's the queen of insider trading and a lush and he looks like a damn weasel. Slimy little bugger. I simply don't understand. Do the voters not care about the condition of SF that they see every single day? Why?", 'created': '2024-11-06 18:01:26', 'submission_id': '1gksukk'}
{'comment': 'im sorry, you’re getting what?', 'created': '2024-11-06 22:27:47', 'submission_id': '1gksukk'}
{'comment': 'I agree!', 'created': '2024-11-06 16:10:16', 'submission_id': '1gksukk'}
{'comment': 'The disappointment was "hillaryous"', 'created': '2024-11-06 14:19:52', 'submission_id': '1gksukk'}
{'comment': "Have you watched her concession speech alongside of Hillary's? 100% plagiarized from Hillary. It's fucking hilarious that she went out that way! 🤣🤣🤣", 'created': '2024-11-08 05:47:40', 'submission_id': '1gksukk'}
{'comment': 'Yes!!', 'created': '2024-11-07 01:06:00', 'submission_id': '1gksukk'}
{'comment': 'Their hopes were dashed away along with their spirits by that move.', 'created': '2024-11-06 18:14:59', 'submission_id': '1gksukk'}
{'comment': 'No class, all trash.', 'created': '2024-11-07 03:30:01', 'submission_id': '1gksukk'}
{'comment': "Idk if she's even a sore loser more than an incompetent one. She probably doesn't know how to handle it, like how she can't handle interviews or the border.", 'created': '2024-11-06 18:14:12', 'submission_id': '1gksukk'}
{'comment': 'I hear you. Will they ever stop talking about Trump? No. Of course, not. Republicans talked about Biden his whole term, why would we expect the Dems to react differently? I’m not trying to poke the bear, but I’ve always held the position that it’s really hard to criticize one party for doing something that both of them do, which is talk. Republicans talk about Trump, Dems talk about Trump, everyone talks about Trump. Both sides pass lies around like Thanksgiving dinner. It’s the nature of politics. That is particularly why I do not see them talking as something to harp on. \n\nI actually have seen lots of journalists talk about the failure of the Dem party, though. You and I may have been looking at different sections of media but I haven’t seen anyone deny the results of any sort. Some blame-shifting for sure, but you know there will always be people who lie in media. You should always control for that when watching anything, anyway. That’s kind of something we can’t do much about.\n\nTrump is a provocative figure, let’s be honest. At least the sensible individuals here can admit to that. Like him all you want, but he isn’t popular just because of his politics. He aggravates the atmosphere that politicians have maintained for decades. He’s a charismatic leader who has a loyal following which encourages him to remain steadfast. To expect anyone to stop talking about him is, at the very least, unrealistic. Now, will we have another Jan 6th? No, because that’s nonsense. Like I said, the most Dems can do is talk about it all day, which they’re at liberty to do. Just like Republicans are at liberty to call Joe Biden old and Kamala Harris a “witch.” Also understand that they’re in shock at how massively the Dem party failed, even more so than they did in 2016. This is feeling more like the 5 stages of grief. I get that you’re annoyed by it, but Republicans went through it in 2020. This is nothing new. The only difference is Dems will take up space on social media for the next four years until they get a chance at office again, but it’s highly unlikely any physical opposition will take place. This is a red wave election. Trump has more power than he did in 2016. So the most Dems CAN do is talk, lol.', 'created': '2024-11-07 14:06:04', 'submission_id': '1gksukk'}
{'comment': 'Creamed. Like beaten badly.', 'created': '2024-11-06 22:33:10', 'submission_id': '1gksukk'}
{'comment': 'That was a stretch but I’ll give you my upvote😂', 'created': '2024-11-06 14:53:40', 'submission_id': '1gksukk'}
{'comment': 'I haven’t seen them side by side but I totally believe you. That woman has never had an original thought of her own lmao', 'created': '2024-11-08 13:50:55', 'submission_id': '1gksukk'}
{'comment': 'oh. yikes. by who specifically? random people or dems?', 'created': '2024-11-06 22:34:01', 'submission_id': '1gksukk'}
{'comment': 'Yep, she was just a plant, and it turned out to be a vegetable.', 'created': '2024-11-08 20:32:49', 'submission_id': '1gksukk'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 08:13:27', 'submission_id': '1gksrsi'}
{'comment': 'KAMALA YOUER FIRED!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n\nGTF OUTTA HERE!!!!!!!!!!!!!!!!!!!!!!!!!!!!', 'created': '2024-11-06 08:21:07', 'submission_id': '1gksrsi'}
{'comment': 'About time', 'created': '2024-11-06 08:16:29', 'submission_id': '1gksrsi'}
{'comment': 'Greatest comeback of all time\xa0', 'created': '2024-11-06 09:27:28', 'submission_id': '1gksrsi'}
{'comment': '"Don\'t cal! it a come back !"', 'created': '2024-11-06 09:31:49', 'submission_id': '1gksrsi'}
{'comment': 'Why the fuck is twitter youtube and every comment section show the majority, but reddit is all left. Fuck reddit', 'created': '2024-11-06 09:15:43', 'submission_id': '1gks6zr'}
{'comment': 'A lot of Reddit is very quiet rn.. they don’t know what to say 😂', 'created': '2024-11-06 09:27:08', 'submission_id': '1gks6zr'}
{'comment': "Hell yeah! I can't wait for all the liberal meltdowns that their freedoms will be gone, and they're moving out!🤣🤣🤣 Classic!", 'created': '2024-11-06 10:27:47', 'submission_id': '1gks6zr'}
{'comment': 'Eat shit, liberal Reddit!', 'created': '2024-11-06 09:48:07', 'submission_id': '1gks6zr'}
{'comment': 'Nell boys, Theo von, and Joe Rogan getting shouted out by Dana white during the presidential speech was not on my bingo card at the beginning of the year lmfaooo', 'created': '2024-11-06 08:48:08', 'submission_id': '1gks6zr'}
{'comment': "Fox news called it but all the major MSM networks seemed to have frozen and stopped covering it at 266. I read that Kamala isn't addressing supporters as planned but not because she lost, but because it's late she needs to rest and it's too close to call yet. They are scrambling trying to find a way to salvage this before conceding. Just goes to show how the Dems and MSM are in-cahoots.", 'created': '2024-11-06 09:10:24', 'submission_id': '1gks6zr'}
{'comment': 'And it doesn’t look like the lefties can even cry “muh popular vote” anymore', 'created': '2024-11-06 09:19:23', 'submission_id': '1gks6zr'}
{'comment': 'Welp, time to get off Reddit. This app is going to become so toxic and these subs will be flooded with people who just want to undermine and stir a pot. We did it, boys, America for the moment is saved🇺🇸', 'created': '2024-11-06 11:59:23', 'submission_id': '1gks6zr'}
{'comment': 'Not only that, but the Republicans are on track for a clean sweep of the House and Senate. The dems screwed up big time.', 'created': '2024-11-06 10:26:48', 'submission_id': '1gks6zr'}
{'comment': 'I’m so hard rn', 'created': '2024-11-06 09:18:52', 'submission_id': '1gks6zr'}
{'comment': 'So hype for more Shane Gillis material in the next 4 years', 'created': '2024-11-06 08:50:29', 'submission_id': '1gks6zr'}
{'comment': 'Open an anonymous browsing account to get a fresh algorithm and grab some popcorn and read what everyone’s complaining about lmao 🤣', 'created': '2024-11-06 09:28:26', 'submission_id': '1gks6zr'}
{'comment': 'He swept every battleground state. EVERY F’N ONE!!! The Blue Wall is now a Red Wall!\n\nOh, and the Dems haven’t yet conceded. Sounds like they are election deniers like they claimed Trump was. Hypocrite much, you feckless liberals??? Should you all be arrested now? Ruin your lives? Hope you get the rewards you deserve.', 'created': '2024-11-06 09:18:12', 'submission_id': '1gks6zr'}
{'comment': 'B-b-b-but muh rEd MiRaGe', 'created': '2024-11-06 09:24:48', 'submission_id': '1gks6zr'}
{'comment': 'Love to see smug liberal Reddit eat shit, the world rejected you.', 'created': '2024-11-06 09:54:17', 'submission_id': '1gks6zr'}
{'comment': 'Just woke up to this fanatstic news here in Slovenia. Congrats Trump and Melania. My friends and I are super happy.', 'created': '2024-11-06 10:06:14', 'submission_id': '1gks6zr'}
{'comment': 'This is literally some good guy slaying the bad guy storyline, democratic party and them super rich folk are gonna get investigated!', 'created': '2024-11-06 10:07:18', 'submission_id': '1gks6zr'}
{'comment': "We did it y'all 🇺🇲🇺🇲🇺🇲", 'created': '2024-11-06 09:31:18', 'submission_id': '1gks6zr'}
{'comment': "TRUMP SWEEP. LET'S FUCKING GOOOOOOOOOOOOOOOOOO", 'created': '2024-11-06 09:18:46', 'submission_id': '1gks6zr'}
{'comment': "Hat trick! Senate, house, presidency! Let's get shit done! \n\nPS they are absolutely losing their shit over at r politics and it.is.fuckin.beautiful!!!", 'created': '2024-11-06 09:22:45', 'submission_id': '1gks6zr'}
{'comment': 'I tried to make a comment in R/pics earlier - I was banned immediately after commenting (less than 1 second)\n\nI think they have an auto ban \n\nSuck it libs, I hate you', 'created': '2024-11-06 10:51:30', 'submission_id': '1gks6zr'}
{'comment': 'I’m on a high. It’s past 1 am where I am (west coast) and the adrenaline is still rushing', 'created': '2024-11-06 10:18:50', 'submission_id': '1gks6zr'}
{'comment': 'Brothers and sisters, 🤝.', 'created': '2024-11-06 10:47:10', 'submission_id': '1gks6zr'}
{'comment': 'r/politics really quiet after this one', 'created': '2024-11-06 08:11:49', 'submission_id': '1gks6zr'}
{'comment': "That doesn't fit the narrative at all. She was the most popular candidate in history, how can this be ?", 'created': '2024-11-06 10:42:05', 'submission_id': '1gks6zr'}
{'comment': 'I won’t lie to y’all, I voted for Harris. Unlike most of Reddit though I’m going to come in the spirit of bipartisanship. Your man has won the election, enjoy the feeling of victory. I truly wish Trump all the best as he will be the president of all of us. I hope his presidency goes well. If his ideas will benefit the people of this great nation then I hope he succeeds for the good of America. I’m grateful we live in a country where the will of the people is expressed by the ballot box. Enjoy the rest of your day.', 'created': '2024-11-06 15:35:36', 'submission_id': '1gks6zr'}
{'comment': 'Reddit hive mind leftist circle jerk is finding out that not everyone agrees with what’s been crammed down their throats by media and democrats for the last 4 years. Who woulda thought', 'created': '2024-11-06 15:47:51', 'submission_id': '1gks6zr'}
{'comment': 'Check on your Reddit friends. They’re not OK.', 'created': '2024-11-06 07:35:43', 'submission_id': '1gks6zr'}
{'comment': 'Hope hospitals have ready the respirators for our fellow redditors in the other side and in the pics section.', 'created': '2024-11-06 07:37:51', 'submission_id': '1gks6zr'}
{'comment': 'Did he really?', 'created': '2024-11-06 07:48:14', 'submission_id': '1gks6zr'}
{'comment': 'yes SIRRRRRRRRRRRR', 'created': '2024-11-06 09:03:35', 'submission_id': '1gks6zr'}
{'comment': 'Malaysian here and celebrating this well deserved win for Trump!! good riddance to the democrats and woke leftists!', 'created': '2024-11-06 09:18:24', 'submission_id': '1gks6zr'}
{'comment': 'Yes! Yes! yes!', 'created': '2024-11-06 07:57:40', 'submission_id': '1gks6zr'}
{'comment': 'God is Great!', 'created': '2024-11-06 08:01:12', 'submission_id': '1gks6zr'}
{'comment': 'I’ll be enjoying the media meltdowns tomorrow on the View, Joy Reed, celebrities like Robert DeNiro. Can’t wait to see the screaming lib woman memes.\n\nAfter that let’s hope for peace before/during his presidency.', 'created': '2024-11-06 08:47:58', 'submission_id': '1gks6zr'}
{'comment': 'Conservative teacher here, and I honestly can’t wait for the whining tomorrow at work. They better not do this in front of the students.', 'created': '2024-11-06 09:23:29', 'submission_id': '1gks6zr'}
{'comment': 'This is a great victory. I\'m tired of the division, the lying, and the way our nation has been destroyed by the Left\'s political movements - Bee Elle Em and De fund the police - and see the horrible consequences of both every single day in my city. There\'s no way I would\'ve voted for someone so inept and incompetent, and who only got where she is bc of gender and race (and sleeping her way to the top).\n\nI also couldn\'t vote for someone whose name literally means "horrible" in Finnish. Oh, and the cackling didn\'t help.\n\nI voted for Trump bc:\n\n1 He cares about the USA border, will deport the bad people who\'ve snuck across, and will start securing it - again.\n\n2 He will protect women\'s spaces, the safety of Jewish students on college campuses, and the rights of Asian American college students who have been kept out of universities due to racism by bigoted policies.\n\n3 He will stand up to Islamic terrorism and help protect Israel.\n\nI did not vote for Kamala bc:\n\n1 She cared only about the borders of other countries, would continue to ignore criminals sneaking into the USA to committ crimes, and would make it easier than ever for anyone to illegally enter the USA.\n\n2 She would kowtow to men who insist on invading women\'s spaces, continue to ignore the safety of Jewish students at US college campuses, and ignore the decades of racial discrimination against Asians at US Universities.\n\n3 She would pretend Islamic terrorists are trustworthy and undermine the safety of Israel by pushing them to make a peace agreement with shose who want to push Israel and Jews into the sea.\n\nToday is a wonderful day and it will only get better.', 'created': '2024-11-06 09:43:20', 'submission_id': '1gks6zr'}
{'comment': "Let's goo", 'created': '2024-11-06 09:46:27', 'submission_id': '1gks6zr'}
{'comment': 'New Zealand here: congratulations!', 'created': '2024-11-06 09:48:48', 'submission_id': '1gks6zr'}
{'comment': 'LET THE MELTDOWN COMMENCE (please)', 'created': '2024-11-06 07:42:31', 'submission_id': '1gks6zr'}
{'comment': 'r/politics must be in meltdown mode lmao', 'created': '2024-11-06 07:43:18', 'submission_id': '1gks6zr'}
{'comment': 'I knew the election was over when I saw FL going for Trump by 10+ points', 'created': '2024-11-06 09:22:58', 'submission_id': '1gks6zr'}
{'comment': 'Happy days are here again!!!!', 'created': '2024-11-06 10:47:09', 'submission_id': '1gks6zr'}
{'comment': 'Praise God!', 'created': '2024-11-06 08:59:21', 'submission_id': '1gks6zr'}
{'comment': 'My family and I voted early for straight Republican ticket in California!\n\n\nSo happy. This is a greater victory than 2016 and made up for what happened in 2020. Trump may have somewhat messed up, but I forgive him because the Biden-Harris administration got away with much worse.', 'created': '2024-11-06 09:32:29', 'submission_id': '1gks6zr'}
{'comment': 'What is gonna be the best sub to lurk and watch the meltdown?', 'created': '2024-11-06 07:43:39', 'submission_id': '1gks6zr'}
{'comment': 'Thank God!! We need this', 'created': '2024-11-06 09:14:26', 'submission_id': '1gks6zr'}
{'comment': 'Yo. All the lib subs are so F’ing quiet 🤣', 'created': '2024-11-06 08:44:03', 'submission_id': '1gks6zr'}
{'comment': 'Reddit, Liberal media and every democrat’s 9/11', 'created': '2024-11-06 07:41:11', 'submission_id': '1gks6zr'}
{'comment': 'Happy dance!', 'created': '2024-11-06 09:23:07', 'submission_id': '1gks6zr'}
{'comment': 'LFG !!!!!! x3', 'created': '2024-11-06 10:14:42', 'submission_id': '1gks6zr'}
{'comment': 'Kamala must be writing one hell of a speech!', 'created': '2024-11-06 15:55:18', 'submission_id': '1gks6zr'}
{'comment': 'Man it’s a good morning indeed for once in a life time', 'created': '2024-11-06 17:11:04', 'submission_id': '1gks6zr'}
{'comment': 'They just called Michigan for Trump 292 and climbing.', 'created': '2024-11-06 19:03:05', 'submission_id': '1gks6zr'}
{'comment': 'Man the dinosaur medias reaction to this is comedy', 'created': '2024-11-06 10:02:49', 'submission_id': '1gks6zr'}
{'comment': "Grover Cleveland, you're not alone anymore.", 'created': '2024-11-06 08:36:12', 'submission_id': '1gks6zr'}
{'comment': 'Bye-bye, Brandon! Bye-bye Brenda!', 'created': '2024-11-06 10:01:12', 'submission_id': '1gks6zr'}
{'comment': 'I’m sure Reddit will take this news well', 'created': '2024-11-06 09:28:31', 'submission_id': '1gks6zr'}
{'comment': 'Let’s go!!!!!🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸', 'created': '2024-11-06 11:45:25', 'submission_id': '1gks6zr'}
{'comment': 'WOOHOO!!!', 'created': '2024-11-06 12:13:37', 'submission_id': '1gks6zr'}
{'comment': 'Let’s goooooo!!! I’m celebrating all day', 'created': '2024-11-06 15:55:25', 'submission_id': '1gks6zr'}
{'comment': 'Like someone else said, common sense won', 'created': '2024-11-06 17:39:03', 'submission_id': '1gks6zr'}
{'comment': "Personally I voted for Harris but eh, I'm not gonna throw a tantrum over this outcome. You guys got the win this time. Enjoy it.", 'created': '2024-11-06 20:08:18', 'submission_id': '1gks6zr'}
{'comment': 'Yes 😊 i think something not mentioned enough is that the election shows that MSM is the real loser! The majority of USA citizens are the winners. Mainstream media no longer has a grip on people like it once did. The biases are seen through by most Americans, and we successfully sent that message! There will be a shift in media. 25 million views on JRE proves there is more value to most Americans in independent interviews than daily fear mongering in MSM.', 'created': '2024-11-06 20:28:01', 'submission_id': '1gks6zr'}
{'comment': 'Every single American citizen will reap the benefits of this victory!!', 'created': '2024-11-06 08:38:46', 'submission_id': '1gks6zr'}
{'comment': 'And just like that r/republican went from being a fringe group on Reddit, to main freaking stream baby!', 'created': '2024-11-06 11:19:52', 'submission_id': '1gks6zr'}
{'comment': 'Common sense won! 🇺🇸', 'created': '2024-11-06 07:45:23', 'submission_id': '1gks6zr'}
{'comment': 'Love it! Great job getting out there everyone! Had to have it.', 'created': '2024-11-06 09:02:49', 'submission_id': '1gks6zr'}
{'comment': 'LFG! I hope the left takes this time to realize how much the media has lied to them and holds them accountable.', 'created': '2024-11-06 10:49:00', 'submission_id': '1gks6zr'}
{'comment': 'HAHAHAHAHAHAHAHA\n\nThe weight is off our shoulders! I am so PROUD of this country and all of you in here. We were robbed of this in 2020 but it has been corrected.', 'created': '2024-11-06 08:46:44', 'submission_id': '1gks6zr'}
{'comment': 'So fucking happy rn.', 'created': '2024-11-06 08:08:15', 'submission_id': '1gks6zr'}
{'comment': 'Electoral College and the Popular Vote, they have nothing left to complain about, going to be fun to see the excuses and cope now!', 'created': '2024-11-06 11:23:39', 'submission_id': '1gks6zr'}
{'comment': 'I get mass downvoted in r/politics clearly some people woke up on the wrong side of bed today. Liberal idiots. \n\nMAGA❤️❤️❤️❤️❤️', 'created': '2024-11-06 08:50:02', 'submission_id': '1gks6zr'}
{'comment': "They've officially called it!?!?!\n\nLET'S FUCKING GOOOOOOOO!!!!!!\n\nU.S.A baby 🇺🇸\n\nI'm definitely gonna be able to sleep peacefully tonight knowing this", 'created': '2024-11-06 07:56:14', 'submission_id': '1gks6zr'}
{'comment': 'I’m not celebrating until he’s inaugurated. We celebrated too early in 2020.', 'created': '2024-11-06 07:57:09', 'submission_id': '1gks6zr'}
{'comment': 'Let’s gooooooo', 'created': '2024-11-06 07:39:06', 'submission_id': '1gks6zr'}
{'comment': 'It’s been a wild ride!!\nCONGRATULATIONS MR PRESIDENT!!', 'created': '2024-11-06 07:49:44', 'submission_id': '1gks6zr'}
{'comment': 'Liberal tears', 'created': '2024-11-06 09:59:43', 'submission_id': '1gks6zr'}
{'comment': "Let's fucking goooooo", 'created': '2024-11-06 10:39:53', 'submission_id': '1gks6zr'}
{'comment': 'I might just have to watch World news tonight with David Murr to listen to what SOB has to say about this wonderful outcome.', 'created': '2024-11-06 11:58:05', 'submission_id': '1gks6zr'}
{'comment': 'We took the White House, Senate, House, and even gained a majority of Republican governors.', 'created': '2024-11-06 22:49:29', 'submission_id': '1gks6zr'}
{'comment': 'Let’s Goooooo!!!!! Make America Great Again!!! 🇺🇸', 'created': '2024-11-06 08:01:25', 'submission_id': '1gks6zr'}
{'comment': 'The knot in my stomach is gone. And I can go to bed now. Just hope these Dems don’t let all hell break loose in the months leading up to January.', 'created': '2024-11-06 08:37:16', 'submission_id': '1gks6zr'}
{'comment': 'Let’s go baby!!!', 'created': '2024-11-06 08:43:36', 'submission_id': '1gks6zr'}
{'comment': 'Congrats all..we can finally exit the war in Ukraine!', 'created': '2024-11-06 11:46:27', 'submission_id': '1gks6zr'}
{'comment': 'Protected from Communism. Thank god, so fricking happy right now', 'created': '2024-11-06 07:51:55', 'submission_id': '1gks6zr'}
{'comment': 'USA! USA!', 'created': '2024-11-06 08:09:54', 'submission_id': '1gks6zr'}
{'comment': "Just wait for the mainstream media to spin this. They'll never accept it.", 'created': '2024-11-06 08:33:32', 'submission_id': '1gks6zr'}
{'comment': '💃💃💃💃', 'created': '2024-11-06 08:41:33', 'submission_id': '1gks6zr'}
{'comment': 'Are we sure? This isn\'t gunna end like last year where I wake up and everything sucks right? I see him leading well into the remaining states, minus MN and ME, but it\'s not a DONE until he officially has those votes correct? Couldn\'t they "recount" and cheese the whole thing?', 'created': '2024-11-06 07:52:58', 'submission_id': '1gks6zr'}
{'comment': 'We survived! Thank you god!', 'created': '2024-11-06 07:53:03', 'submission_id': '1gks6zr'}
{'comment': 'So happy I could cry! Thank you America! 🇺🇸💪🇺🇸', 'created': '2024-11-06 07:55:53', 'submission_id': '1gks6zr'}
{'comment': 'ELECTORAL VOTE? ✅\nPOPULAR VOTE? ✅', 'created': '2024-11-06 08:34:39', 'submission_id': '1gks6zr'}
{'comment': 'The people have spoken:\n\nNo more DEI nonsense. No more woke oppression. No more devolving.\n\nTime to fix America. Time to take out the trash.', 'created': '2024-11-06 08:46:11', 'submission_id': '1gks6zr'}
{'comment': 'The lib threads are drinking heavily in a gray cloud, kinda sad but they are disrespectful as hell haha', 'created': '2024-11-06 08:01:19', 'submission_id': '1gks6zr'}
{'comment': '🥳🎉', 'created': '2024-11-06 09:35:51', 'submission_id': '1gks6zr'}
{'comment': 'I’m not ready to see this just yet!', 'created': '2024-11-06 07:36:10', 'submission_id': '1gks6zr'}
{'comment': None, 'created': '2024-11-06 08:23:45', 'submission_id': '1gks6zr'}
{'comment': 'Man he looks exhausted. He’s been awake for like 3 days straight. Get that man a whiskey, a cigar and a couch. MAGA! Ty everyone for voting Trump!', 'created': '2024-11-06 08:27:49', 'submission_id': '1gks6zr'}
{'comment': 'Hell yeah!!!', 'created': '2024-11-06 10:50:28', 'submission_id': '1gks6zr'}
{'comment': 'Quick someone make a meme of him with Hillary & Kamala', 'created': '2024-11-06 11:10:44', 'submission_id': '1gks6zr'}
{'comment': 'Amazing news, God bless America!', 'created': '2024-11-06 07:41:21', 'submission_id': '1gks6zr'}
{'comment': 'It’s over! The rout is on! Woo!', 'created': '2024-11-06 07:41:43', 'submission_id': '1gks6zr'}
{'comment': 'Congratulations from Australia!! Lol I’m not American, but it’s so good to see the sanctimonious, uppity libtards crying. \n\nAnd women’s rights don’t mean just abortion rights(which i personally fully support as a pro-choice woman), it means their safety in bathrooms, their dignity in changing rooms, their sweat and blood in sports they have trained from childhood. It means not mutilating children to fit gender agendas instead of treating make believe as just that.\n\nAnd hopefully they will learn a lesson that calling people who have a different opinion evil and trying to punish them for exercising their freedom of speech and expression and calling the other party fascists, when it’s them who are the fascists.', 'created': '2024-11-06 08:51:04', 'submission_id': '1gks6zr'}
{'comment': 'TRUMP IS YOUR 47th PRESIDENT. the machine tried to shut us out and shut us up and we spoke louder and we WERE HEARD. we have been attacked, discriminized, hated, and insulted and we fought and won. tonight we showed the delusional far left and legacy media propaganda machine that WE WILL BE HEARD. WE ARE NOT THE MINORTY WE ARE THE MAJORITY AND WE LOVE OUR COUNTRY AND ITS PEOPLE. tonight will be the night the people took back their country. Trump winning presidency is just one, but extremely crucial, battle that we as americans will continue to fight to make america great again. i am so proud of this country tonight. my faith in this nation and its people are restored.', 'created': '2024-11-06 08:53:17', 'submission_id': '1gks6zr'}
{'comment': 'Wooooohoooo!!!! We did it!!!!!! Historical!!!!', 'created': '2024-11-06 10:24:26', 'submission_id': '1gks6zr'}
{'comment': 'Latinos for Trump 🇺🇸🇳🇮!\n\nI work in a warehouse with 90% latinos and most of us voted Trump. We showed up big this time around.', 'created': '2024-11-06 12:36:05', 'submission_id': '1gks6zr'}
{'comment': 'ITS CHRISTMAS MORNING IN THIS BITCH LETS GOOOOOO. \n\nIn all seriousness though, I hope this is a wake up call for the left and they drop the extreme wokeness within their party and do some soul searching and find that more stable identity that was ushered in with the Clinton presidency. This country can’t handle losing our platform on the world stage while other countries laugh at us for allowing that minority to dictate keys parts of our country such as education and tax spending.', 'created': '2024-11-06 14:25:08', 'submission_id': '1gks6zr'}
{'comment': 'I don’t know why I never looked for this page before. I’ve ventured on r/politics and it’s a total\nshitshow', 'created': '2024-11-06 20:23:45', 'submission_id': '1gks6zr'}
{'comment': 'How they used the sellout media to make a perception that this was even close is astonishing. \n\nHe has won this for the third time now. 2020 must be investigated and the people responsible should be charged with treason including joe biden and Kamala Harris', 'created': '2024-11-06 08:59:02', 'submission_id': '1gks6zr'}
{'comment': 'The bot farms have been unplugged!!!', 'created': '2024-11-06 07:54:07', 'submission_id': '1gks6zr'}
{'comment': 'THANK GOD!!!!!!! 🙏🙏🙏🙏🙏🙏 I WAS SO SCARED THE WOKE WAS GOING TO WIN!!!!', 'created': '2024-11-06 08:37:24', 'submission_id': '1gks6zr'}
{'comment': 'Love from the UK. Hopefully Trump and Nigel will both be in power together soon. ❤️ MAGA', 'created': '2024-11-06 08:43:04', 'submission_id': '1gks6zr'}
{'comment': 'Good always defeats evil', 'created': '2024-11-06 09:10:19', 'submission_id': '1gks6zr'}
{'comment': 'How many Dems just called 911?', 'created': '2024-11-06 07:40:00', 'submission_id': '1gks6zr'}
{'comment': 'WE ARE SO FUCKING BACK', 'created': '2024-11-06 07:40:44', 'submission_id': '1gks6zr'}
{'comment': 'THABK GOD! LETS GOOOO', 'created': '2024-11-06 07:52:35', 'submission_id': '1gks6zr'}
{'comment': 'Technically they haven’t closed the polls but yeah he definitely won', 'created': '2024-11-06 08:19:50', 'submission_id': '1gks6zr'}
{'comment': 'God Bless America.', 'created': '2024-11-06 08:27:54', 'submission_id': '1gks6zr'}
{'comment': 'USA USA USA USA USA! MAKE AMERICA GREAT AGAIN!', 'created': '2024-11-06 08:28:31', 'submission_id': '1gks6zr'}
{'comment': '💥💥💥', 'created': '2024-11-06 08:42:45', 'submission_id': '1gks6zr'}
{'comment': 'Can’t wait for Reddits meltdown 😂', 'created': '2024-11-06 10:23:33', 'submission_id': '1gks6zr'}
{'comment': 'LETSSSSS GOOOO!!!! Trump officially sweeps popular and electoral!!', 'created': '2024-11-06 11:39:58', 'submission_id': '1gks6zr'}
{'comment': '47!\n\n❤️', 'created': '2024-11-06 08:29:19', 'submission_id': '1gks6zr'}
{'comment': 'I can cry. Lets fucking go.', 'created': '2024-11-06 08:33:50', 'submission_id': '1gks6zr'}
{'comment': 'I am crying!!! Thank you God! Please cover President Trump and his family in the blood of Jesus. We can finally close our borders, lower the cost of living, and know that our President is fighting for us and not against us. 🇺🇸🇺🇸🇺🇸 GOD BLESS THE USA!!!', 'created': '2024-11-06 08:44:33', 'submission_id': '1gks6zr'}
{'comment': 'Such relief. Feels like I haven’t had a clean breath since 2020…', 'created': '2024-11-06 07:40:47', 'submission_id': '1gks6zr'}
{'comment': "As a person from the Baltic states, I'm eagerly waiting for the new president to end the war in Ukraine and to protect us when Russia invades and hopefully doesn't kill us!", 'created': '2024-11-06 10:44:55', 'submission_id': '1gks6zr'}
{'comment': 'LITERALLY CRYING!', 'created': '2024-11-06 07:54:33', 'submission_id': '1gks6zr'}
{'comment': 'Common sense prevails!', 'created': '2024-11-06 08:04:12', 'submission_id': '1gks6zr'}
{'comment': 'From a British, Egyptian. Congratulations. <3 The moment we’ve been waiting for.', 'created': '2024-11-06 08:06:11', 'submission_id': '1gks6zr'}
{'comment': '[removed]', 'created': '2024-11-06 08:26:45', 'submission_id': '1gks6zr'}
{'comment': "Thank god there won't be too much drama this time.", 'created': '2024-11-06 07:42:18', 'submission_id': '1gks6zr'}
{'comment': 'Any thoughts or questions to your liberal brethren?', 'created': '2024-11-06 09:07:47', 'submission_id': '1gks6zr'}
{'comment': "'MERICA🇺🇸🇺🇲🦅🦅", 'created': '2024-11-06 09:07:56', 'submission_id': '1gks6zr'}
{'comment': 'Bro they are freaking out on r/politics lmao. They genuinely believed Kamala was sooooo well liked outside of their echo chamber that she would sweep this election. They just got a huge wake up call', 'created': '2024-11-06 11:49:09', 'submission_id': '1gks6zr'}
{'comment': 'Kick out them Venezuelan gangs!!! Let’s go ICE', 'created': '2024-11-06 12:07:50', 'submission_id': '1gks6zr'}
{'comment': 'Congrats republicans', 'created': '2024-11-06 12:38:14', 'submission_id': '1gks6zr'}
{'comment': 'Reddit can cry about it lmaoooo!!!!', 'created': '2024-11-06 15:13:33', 'submission_id': '1gks6zr'}
{'comment': "What a time to be alive! I am so relieved everything worked out and at the end of the day whether your left or right I hope that everyone will benefit and prosper on what's to come!!!!", 'created': '2024-11-06 15:24:18', 'submission_id': '1gks6zr'}
{'comment': "Also, I didn't see we had a thread to talk about the election in real time but, the democrats page did and oh how satisfying and fun it was to read all the comments of them reacting to Trump winning!", 'created': '2024-11-06 15:27:13', 'submission_id': '1gks6zr'}
{'comment': 'Hip hip hooray!', 'created': '2024-11-06 21:52:53', 'submission_id': '1gks6zr'}
{'comment': 'Hell yeah! 🇺🇲', 'created': '2024-11-06 07:54:05', 'submission_id': '1gks6zr'}
{'comment': 'Your country is saved from leftist lunatics.', 'created': '2024-11-06 07:37:54', 'submission_id': '1gks6zr'}
{'comment': 'God prevails!', 'created': '2024-11-06 08:14:03', 'submission_id': '1gks6zr'}
{'comment': '266-194!!', 'created': '2024-11-06 08:37:38', 'submission_id': '1gks6zr'}
{'comment': 'Is this true?', 'created': '2024-11-06 08:44:38', 'submission_id': '1gks6zr'}
{'comment': '🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸', 'created': '2024-11-06 08:46:56', 'submission_id': '1gks6zr'}
{'comment': "[Fake Callmala didn't stand a chance](https://imgur.com/gallery/3n6i0gP)", 'created': '2024-11-06 09:58:48', 'submission_id': '1gks6zr'}
{'comment': 'Yess 😈🇺🇸', 'created': '2024-11-06 10:55:51', 'submission_id': '1gks6zr'}
{'comment': 'What an exciting night. It was a thrill the whole time', 'created': '2024-11-06 08:46:31', 'submission_id': '1gks6zr'}
{'comment': 'yes!!!! laugh at the dems!', 'created': '2024-11-06 07:39:16', 'submission_id': '1gks6zr'}
{'comment': 'Maga!!', 'created': '2024-11-06 07:40:53', 'submission_id': '1gks6zr'}
{'comment': 'Msnbc is in SHAMBLES', 'created': '2024-11-06 08:09:35', 'submission_id': '1gks6zr'}
{'comment': 'He did it! This man is an icon! Probably the most investigated person in history, indicted, insulted, slandered every day, and oh yeah attempts made on his life AND HE NEVER GAVE UP!!! He is here for us. Americans! Congratulations Mr. President. I look forward to your next term.', 'created': '2024-11-06 08:23:02', 'submission_id': '1gks6zr'}
{'comment': "I'm not sure about the outcome yet, but it's definitely an interesting turn of events", 'created': '2024-11-06 09:00:08', 'submission_id': '1gks6zr'}
{'comment': 'Who won ????', 'created': '2024-11-06 09:17:04', 'submission_id': '1gks6zr'}
{'comment': 'Who called it? Found multiple sites not calling it.', 'created': '2024-11-06 10:24:31', 'submission_id': '1gks6zr'}
{'comment': 'TIME TO CLEAR THE SWAMP ONCE AND FOR ALL !', 'created': '2024-11-06 11:46:00', 'submission_id': '1gks6zr'}
{'comment': 'Lets fucking go!! What a statement by the American people', 'created': '2024-11-06 11:46:39', 'submission_id': '1gks6zr'}
{'comment': 'KAMALA YOUR FIRED', 'created': '2024-11-06 11:47:24', 'submission_id': '1gks6zr'}
{'comment': "As a non American, I'm glad you guys wont need to suffer another 4 years of blue.", 'created': '2024-11-06 11:55:18', 'submission_id': '1gks6zr'}
{'comment': "Congrats to you all, it was a fair and solid victory. Let's see what the future holds for America.", 'created': '2024-11-06 12:00:47', 'submission_id': '1gks6zr'}
{'comment': 'Dem tears glistening', 'created': '2024-11-06 12:02:46', 'submission_id': '1gks6zr'}
{'comment': 'This is gonna be interesting', 'created': '2024-11-06 12:05:33', 'submission_id': '1gks6zr'}
{'comment': 'Blessed be the fruit. May the lord open.', 'created': '2024-11-06 12:19:08', 'submission_id': '1gks6zr'}
{'comment': 'I was reluctant to vote for him after everything, but I voted for my country’s best interests. I am actually shocked we pulled off this win, but we surely needed it. The front page of Reddit will be glorious the next few days.', 'created': '2024-11-06 12:24:53', 'submission_id': '1gks6zr'}
{'comment': 'BUT REDDIT TOLD ME HE WOULD LOSE?!?! \n\nThis echo chamber is going to be waking up in shambles and I’m here for it. The last month plus on here has been a nightmare.', 'created': '2024-11-06 12:29:09', 'submission_id': '1gks6zr'}
{'comment': 'MAGA!!!!!!', 'created': '2024-11-06 12:35:59', 'submission_id': '1gks6zr'}
{'comment': 'Fantastic 👏', 'created': '2024-11-06 13:27:39', 'submission_id': '1gks6zr'}
{'comment': 'It is a good day! Now we can begin to turn this country around.', 'created': '2024-11-06 14:19:20', 'submission_id': '1gks6zr'}
{'comment': 'YESSIR LETS GO 🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸MAKE AMERICA GREAT AGAIN', 'created': '2024-11-06 15:05:46', 'submission_id': '1gks6zr'}
{'comment': "Hi! I'm here from the other side just to say gg. I figure nows the time to eat my humble pie. I hope you all have a wonderful day", 'created': '2024-11-07 00:48:29', 'submission_id': '1gks6zr'}
{'comment': 'Why are most outlets still saying he only has 266?', 'created': '2024-11-06 11:27:35', 'submission_id': '1gks6zr'}
{'comment': 'So is American garbage now? Per Biden ?', 'created': '2024-11-06 18:27:56', 'submission_id': '1gks6zr'}
{'comment': 'So happy. Funny seeing the media choke on their words', 'created': '2024-11-06 08:14:53', 'submission_id': '1gks6zr'}
{'comment': 'Wait are we trusting the election now?', 'created': '2024-11-06 10:56:58', 'submission_id': '1gks6zr'}
{'comment': '*For Peanut.*', 'created': '2024-11-06 08:00:18', 'submission_id': '1gks6zr'}
{'comment': 'Who called it? Found multiple sites not calling it.', 'created': '2024-11-06 10:24:51', 'submission_id': '1gks6zr'}
{'comment': 'Now for Project 2025!!', 'created': '2024-11-06 21:11:41', 'submission_id': '1gks6zr'}
{'comment': 'Did my part!', 'created': '2024-11-06 08:10:01', 'submission_id': '1gks6zr'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 07:35:07', 'submission_id': '1gks6zr'}
{'comment': 'So friggin happy, my wife will be able to breath a sigh of relief and I can be comfortable that my kids will be safe. At least for 4 more years. Lets go!', 'created': '2024-11-06 07:42:32', 'submission_id': '1gks6zr'}
{'comment': "I'll take that as a win. Not sure what all of Reddit would say about this though", 'created': '2024-11-06 07:43:30', 'submission_id': '1gks6zr'}
{'comment': '[removed]', 'created': '2024-11-06 08:20:15', 'submission_id': '1gks6zr'}
{'comment': "Here's to a great 4 years! Congrats America!", 'created': '2024-11-06 08:58:48', 'submission_id': '1gks6zr'}
{'comment': '[removed]', 'created': '2024-11-06 10:26:32', 'submission_id': '1gks6zr'}
{'comment': 'LET’S GO!!! THE DEMOCRATS AND THE DEEP STATE COULDN’T STOP HIM!!!\n\n\nMAGA!!!!!\n\nMAGA!!!!!\n\nMAGA!!!!!', 'created': '2024-11-06 10:46:26', 'submission_id': '1gks6zr'}
{'comment': 'Trump will make mcdoubles 1$ again. You should be pumped!', 'created': '2024-11-06 10:52:37', 'submission_id': '1gks6zr'}
{'comment': 'Time to order a million beers. Hell yeah brothers', 'created': '2024-11-06 10:53:46', 'submission_id': '1gks6zr'}
{'comment': 'Hate to nerd out here but I just love this little fact. This marks the 2nd time in our history where a president has had 2 non-consecutive terms. First being Grover Cleveland from 1885-1889 & 1893-1897. \n\nWith that said though, let’s hope we didn’t make the wrong choice, don’t know what these next 4 years have in store but just I’m hoping it’s nothing super bad.', 'created': '2024-11-06 10:54:47', 'submission_id': '1gks6zr'}
{'comment': 'Not even American, but so happy to see this.', 'created': '2024-11-06 11:01:50', 'submission_id': '1gks6zr'}
{'comment': "Congrats my neighbours too the South.\n\nNow I'm hoping we can go Conservative up in Canada next year and get Trudeau out of here.\n\nEnjoy the dominant victory.", 'created': '2024-11-06 11:02:52', 'submission_id': '1gks6zr'}
{'comment': '🤭 nice', 'created': '2024-11-06 11:05:48', 'submission_id': '1gks6zr'}
{'comment': 'Congratulations and Good luck USA', 'created': '2024-11-06 11:10:51', 'submission_id': '1gks6zr'}
{'comment': 'NBC just said Kamala needs to win 110,000 votes out of a remaining 115,000 to win Wisconsin. And they still don’t project it for Trump lmao', 'created': '2024-11-06 11:15:16', 'submission_id': '1gks6zr'}
{'comment': "It's still 267? Someone should fire that mod", 'created': '2024-11-06 11:15:54', 'submission_id': '1gks6zr'}
{'comment': 'Congrats\xa0', 'created': '2024-11-06 11:19:36', 'submission_id': '1gks6zr'}
{'comment': 'Wait can I express my republican leanings without being insta banned here??', 'created': '2024-11-06 11:21:23', 'submission_id': '1gks6zr'}
{'comment': 'Good.', 'created': '2024-11-06 11:27:02', 'submission_id': '1gks6zr'}
{'comment': "They did so many agenda on Harris now the tables have turned\n\nThis is why I don't believe everything Americans say on internet, They bash everything they don't know about, Recently they are bashing Video games for Goodness sake, Complete idiots.", 'created': '2024-11-06 11:32:40', 'submission_id': '1gks6zr'}
{'comment': 'So glad that Republicans did it and relived to have Trump back in office. Thank you to all the Trump voters and us PA women love Trump .', 'created': '2024-11-06 11:35:00', 'submission_id': '1gks6zr'}
{'comment': "Won a fair vote by a landslide.\n\n\nThe world can't say shit.\xa0\n\n\nReal America has spoken.", 'created': '2024-11-06 11:37:53', 'submission_id': '1gks6zr'}
{'comment': 'A reporter from India said yesterday that since the mainstream media was so politically biased, they would report fake election results, and there would probably be a landslide in the election results.', 'created': '2024-11-06 20:06:46', 'submission_id': '1gks6zr'}
{'comment': 'Looks like he just lost the popular vote. Damn!', 'created': '2024-11-07 01:55:29', 'submission_id': '1gks6zr'}
{'comment': 'Keep it up', 'created': '2024-11-07 02:20:01', 'submission_id': '1gks6zr'}
{'comment': 'Hallelujah!', 'created': '2024-11-06 07:56:50', 'submission_id': '1gks6zr'}
{'comment': '❤️🇺🇸', 'created': '2024-11-06 07:59:00', 'submission_id': '1gks6zr'}
{'comment': "I hope so, it's been incredibly stressful.\n\nIf I wake up in the morning and he lost, I'm not going to work...", 'created': '2024-11-06 08:10:38', 'submission_id': '1gks6zr'}
{'comment': 'Proof that Reddit doesn’t reflect real world. MAGA!', 'created': '2024-11-06 07:43:29', 'submission_id': '1gks6zr'}
{'comment': 'Words can’t describe how relieved I am', 'created': '2024-11-06 07:44:11', 'submission_id': '1gks6zr'}
{'comment': 'I didn\'t know where else to check to see the left reaction after all these months of media "Kamala" hype and the ol\' "the world\'s gonna end" speel. It has been gold. They honestly think the world is going to end, and things will be bad. Newsflash, they already are. Let\'s see what tomorrow brings y\'all!', 'created': '2024-11-06 07:46:42', 'submission_id': '1gks6zr'}
{'comment': 'Yay! so glad the worst administration ever is almost out of office', 'created': '2024-11-06 07:48:12', 'submission_id': '1gks6zr'}
{'comment': "We don't know that yet. The Left has not conceded yet.", 'created': '2024-11-06 08:54:19', 'submission_id': '1gks6zr'}
{'comment': 'As a McCain never-Trumper, I’m very sad to see Trump’s likely win. He was never one of us.', 'created': '2024-11-06 09:05:31', 'submission_id': '1gks6zr'}
{'comment': 'No better feeling. The Democrats were so arrogant', 'created': '2024-11-06 07:45:50', 'submission_id': '1gks6zr'}
{'comment': None, 'created': '2024-11-06 23:04:45', 'submission_id': '1gks6zr'}
{'comment': 'I disagree\n\nEdit: obviously Trump win, it was clear that night. I think my meaning before was calling it a bit early. But yes, no contesting this.', 'created': '2024-11-06 09:24:35', 'submission_id': '1gks6zr'}
{'comment': 'Agreed. I stopped coming here because of their insane leftism. But I made an exception for this glorious time', 'created': '2024-11-06 09:18:22', 'submission_id': '1gks6zr'}
{'comment': 'Just came here for stuff like this, trolling and debating is quite fun when the arguments on the other side are typically the same my mom used growing up, “because I said so and my way or the high way”', 'created': '2024-11-06 09:19:10', 'submission_id': '1gks6zr'}
{'comment': 'yup', 'created': '2024-11-06 09:18:21', 'submission_id': '1gks6zr'}
{'comment': 'Most are probably bots anyways', 'created': '2024-11-06 09:50:33', 'submission_id': '1gks6zr'}
{'comment': 'I noticed that too. Silence speaks very loudly.🤣🤣🤣🤣🤣', 'created': '2024-11-06 09:40:16', 'submission_id': '1gks6zr'}
{'comment': 'My guess they went to bed expecting that the 3 a.m. "fix" would happen \n\nJust except Trump\'s lead was more than the two semi-trailers of ballots that they had hidden out back somewhere that they were ready to "plug in."\n\nI really think a massive ballot scheme was stopped in its tracks by true the vote people on Saturday when Fulton County wanted to sneak ballots in past observers!\n\nWe still really need to lock this sh-t down!!', 'created': '2024-11-06 10:49:21', 'submission_id': '1gks6zr'}
{'comment': "That!!! A lot of pages that's very left leaning has their posts locked so, you can't comment...They can dish it but, can't take it I suppose.....", 'created': '2024-11-06 16:06:47', 'submission_id': '1gks6zr'}
{'comment': 'They just censor anyone they hate anyways. Well he won the popular vote what does that say about reality', 'created': '2024-11-06 09:39:07', 'submission_id': '1gks6zr'}
{'comment': 'For real', 'created': '2024-11-06 09:32:48', 'submission_id': '1gks6zr'}
{'comment': 'I am sifting through comment for pure comedy gold: Orange Cheeto Hitler is making people consider moving out of America which I find hilarious', 'created': '2024-11-06 10:37:28', 'submission_id': '1gks6zr'}
{'comment': "I'm not from America, but seeing comments comparing Trump to Hitler, is just the funniest thing ever xD", 'created': '2024-11-06 10:35:48', 'submission_id': '1gks6zr'}
{'comment': "GO!! Move to Canada. Oh wait, they won't take you.\n\nHahahahahahaha!!\n\nI don't want to be vindictive but this has been a LLLLOOONNNGGG time coming.", 'created': '2024-11-06 11:20:37', 'submission_id': '1gks6zr'}
{'comment': 'We’re your countrymen. American used to mean something.', 'created': '2024-11-06 10:37:11', 'submission_id': '1gks6zr'}
{'comment': "They couldn't stop normal people from voting for a normal president. Makes sense, nobody sane would be on reddit", 'created': '2024-11-06 09:58:26', 'submission_id': '1gks6zr'}
{'comment': 'Cracked up at his shoutout haha but totally worth it. His numbers on each of those platforms are unreal.', 'created': '2024-11-06 08:50:36', 'submission_id': '1gks6zr'}
{'comment': 'I know right! Lmao.', 'created': '2024-11-06 08:52:47', 'submission_id': '1gks6zr'}
{'comment': "So in other words they're trying to cheat to make trump loss ? \n\nHow Can they Do That ?", 'created': '2024-11-06 09:16:47', 'submission_id': '1gks6zr'}
{'comment': "AP has Pennsylvania a lock and is at 267. Alaska just needs to lock in to bring that to 270. Dems can't salvage anything at this point... atleast I hope not.", 'created': '2024-11-06 09:22:57', 'submission_id': '1gks6zr'}
{'comment': "She isn't addressing her supporters because she's getting drunk and screaming into the void", 'created': '2024-11-06 10:10:07', 'submission_id': '1gks6zr'}
{'comment': 'Sweet lib tears', 'created': '2024-11-06 09:21:17', 'submission_id': '1gks6zr'}
{'comment': 'And girls! 😂 (I’m just being cheeky)', 'created': '2024-11-06 12:20:38', 'submission_id': '1gks6zr'}
{'comment': 'I was just thinking the same thing as I scolled through popular. I was like damn is reddit a majority democrats, no wonder none of my jokes land and I get down voted into the abyss.', 'created': '2024-11-06 12:12:52', 'submission_id': '1gks6zr'}
{'comment': 'Reddit has always been toxic, you just finally perceived the nature of the reality.', 'created': '2024-11-06 12:34:13', 'submission_id': '1gks6zr'}
{'comment': "Lmfaoo you're right", 'created': '2024-11-06 15:01:47', 'submission_id': '1gks6zr'}
{'comment': 'It’s crazy, sites are claiming this is “too close to call” but from what I’m seeing— he has KO’d this election!', 'created': '2024-11-06 10:46:17', 'submission_id': '1gks6zr'}
{'comment': 'Haha I know. I have so many subs muted and users blocked that my feed is successfully non-political and actually enjoyable. I forget how bad it is until I open the anon side.', 'created': '2024-11-06 09:34:38', 'submission_id': '1gks6zr'}
{'comment': 'Florida is more red than NY is blue', 'created': '2024-11-06 09:19:02', 'submission_id': '1gks6zr'}
{'comment': 'I just woke up, went to sleep nervous. This is amazing! \n\nAlso every freaking political post in my state’s sub is locked right now. Crybabies don’t want to play anymore!!!', 'created': '2024-11-06 10:17:33', 'submission_id': '1gks6zr'}
{'comment': "It's been a really good night", 'created': '2024-11-06 09:38:38', 'submission_id': '1gks6zr'}
{'comment': "Liberals, especially Reddit Liberals are the most immature, spoilt and clueless beings on the planet. \n\n \nYou'd only have to sit back and watch them try to build something themselves before watching it all fall apart in no time. See the Seattle CHOP zone as an example of that.", 'created': '2024-11-06 10:59:44', 'submission_id': '1gks6zr'}
{'comment': 'Cry liberals has been my saying tonight 🤣', 'created': '2024-11-06 10:56:12', 'submission_id': '1gks6zr'}
{'comment': 'Oh the mods are actively banning and muting...lol, rest assured', 'created': '2024-11-06 08:20:53', 'submission_id': '1gks6zr'}
{'comment': 'Gathering their bricks and masks, I’d assume.', 'created': '2024-11-06 08:14:59', 'submission_id': '1gks6zr'}
{'comment': 'All the bots have been disconnected. Guarantee it.', 'created': '2024-11-06 08:14:43', 'submission_id': '1gks6zr'}
{'comment': 'The money ran out to feed the bots.', 'created': '2024-11-06 08:18:16', 'submission_id': '1gks6zr'}
{'comment': 'Yup everything Dem shut up around 930 last night. It was nice to go browse without seeing her face and crappy opinions posted everywhere.', 'created': '2024-11-06 08:31:42', 'submission_id': '1gks6zr'}
{'comment': 'it is finally, truly, joever. this is so amazing.', 'created': '2024-11-06 08:38:52', 'submission_id': '1gks6zr'}
{'comment': 'That’s respectful and a breath of fresh air. Most people are behaving like children and sore losers which is unfortunate.', 'created': '2024-11-06 17:08:39', 'submission_id': '1gks6zr'}
{'comment': 'This app cracks me up. I’ve been banned from like 3 different subreddits already today. Obviously we’re the majority, we just don’t cry about it online.', 'created': '2024-11-06 18:41:48', 'submission_id': '1gks6zr'}
{'comment': 'Four years?!?! Maybe 40 years.', 'created': '2024-11-06 17:36:50', 'submission_id': '1gks6zr'}
{'comment': 'Hive mind is right. What a shame.', 'created': '2024-11-06 21:57:21', 'submission_id': '1gks6zr'}
{'comment': 'YES!!!!!!! 🎉🇺🇸', 'created': '2024-11-06 07:57:34', 'submission_id': '1gks6zr'}
{'comment': 'Yes he did', 'created': '2024-11-06 07:52:50', 'submission_id': '1gks6zr'}
{'comment': "Yeah, he just won PA. It's over.", 'created': '2024-11-06 07:50:54', 'submission_id': '1gks6zr'}
{'comment': 'AP didn’t call it yet, but it’s likely\n\nHe needs PA. Last time it was like this I went to bed and woke up to every big state switched blue', 'created': '2024-11-06 07:51:54', 'submission_id': '1gks6zr'}
{'comment': 'Not officially, but numbers have him winning with a very high degree of confidence', 'created': '2024-11-06 07:49:59', 'submission_id': '1gks6zr'}
{'comment': 'Yes', 'created': '2024-11-06 07:50:15', 'submission_id': '1gks6zr'}
{'comment': 'Fox is the only one that has called it, but it’s extremely likely', 'created': '2024-11-06 07:51:50', 'submission_id': '1gks6zr'}
{'comment': 'It will be absolutely GLORIOUS. I can’t sleep that’s how excited I am.', 'created': '2024-11-06 08:52:26', 'submission_id': '1gks6zr'}
{'comment': "I can't wait to watch Gutfeld! to see his mocking of all of them", 'created': '2024-11-06 10:19:14', 'submission_id': '1gks6zr'}
{'comment': 'Here we go… we beat them libs… now let’s all have peace and cooperate with Trump and his administration… yeah that is not likely to happen, if I was Kamala I wouldn’t even show up for the inauguration', 'created': '2024-11-06 08:54:43', 'submission_id': '1gks6zr'}
{'comment': "They will. They can't resist calling Trump and his supporters Nazis and going into gory detail about their sex lives to the students. They'll whine to the students too, and try to get them to riot.", 'created': '2024-11-06 09:25:48', 'submission_id': '1gks6zr'}
{'comment': 'Conservative recently retired teacher here . I hear you. My coworkers didn’t do much political talk. I did a lot though. Could not keep my mouth shut about the poor state of our nation and California.', 'created': '2024-11-06 09:48:51', 'submission_id': '1gks6zr'}
{'comment': 'It’s beautiful.', 'created': '2024-11-06 07:47:21', 'submission_id': '1gks6zr'}
{'comment': 'Such a toxic bunch of people there. All the top posts only highlight the states Harris one. Not one mention of the states trump wpn.\nThought that sub was supposed to be just called politics and not “democratic politics”.', 'created': '2024-11-06 07:50:49', 'submission_id': '1gks6zr'}
{'comment': None, 'created': '2024-11-06 10:06:58', 'submission_id': '1gks6zr'}
{'comment': 'R/politics is hilarious', 'created': '2024-11-06 07:50:39', 'submission_id': '1gks6zr'}
{'comment': 'r/pics has been nothing but Harris propaganda lately, so that ought to be good', 'created': '2024-11-06 07:50:21', 'submission_id': '1gks6zr'}
{'comment': 'I need to know as well.', 'created': '2024-11-06 07:45:08', 'submission_id': '1gks6zr'}
{'comment': 'Any swing state sub\n\nr/georgia already have people breaking down in tears', 'created': '2024-11-06 07:57:52', 'submission_id': '1gks6zr'}
{'comment': 'I was already looking 👀 lol', 'created': '2024-11-06 07:57:55', 'submission_id': '1gks6zr'}
{'comment': 'Just go the Popular tab, every major sub is a crying mess.', 'created': '2024-11-06 07:48:18', 'submission_id': '1gks6zr'}
{'comment': 'r/politics generally', 'created': '2024-11-06 07:44:11', 'submission_id': '1gks6zr'}
{'comment': 'That’s because they were mostly Kamala staffers', 'created': '2024-11-06 08:48:57', 'submission_id': '1gks6zr'}
{'comment': "They're all on r/politics crying", 'created': '2024-11-06 09:12:27', 'submission_id': '1gks6zr'}
{'comment': "No, she is hiding. Just like she done with Reporter's. We have Joe Biden to thank. I feel he tanked her campaign due to the lack of respect they showed their president.", 'created': '2024-11-06 16:23:13', 'submission_id': '1gks6zr'}
{'comment': '2 times in history has losing president not come out to address their HQ. 2 women have ran for president and lost. They are the ONLY 2 not able to speak to their supporters in defeat. They are making future great women candidates look bad. None of us are against a women president or president of any race . Harris was never qualified though.', 'created': '2024-11-06 18:30:20', 'submission_id': '1gks6zr'}
{'comment': ' 🦗 chirp chirp', 'created': '2024-11-06 17:36:05', 'submission_id': '1gks6zr'}
{'comment': 'Thank you fellow American 🇺🇸', 'created': '2024-11-07 00:23:46', 'submission_id': '1gks6zr'}
{'comment': "From the other side of the aisle, this is how I feel. I've clearly been lied to. I hope we can all be neighbors after this", 'created': '2024-11-07 00:58:03', 'submission_id': '1gks6zr'}
{'comment': 'To be fair, it’s still fringe on Reddit. We just know that Reddit is completely detached from reality.', 'created': '2024-11-06 12:30:06', 'submission_id': '1gks6zr'}
{'comment': 'Nah dawg this is still a liberal echo chamber.', 'created': '2024-11-06 11:44:39', 'submission_id': '1gks6zr'}
{'comment': 'They will just say he cheated', 'created': '2024-11-06 10:50:38', 'submission_id': '1gks6zr'}
{'comment': "No, it'll be a repeat of last time, but I don't care. This time we have the Congress too!!! Media be damned, and I mean that literally!!!!!", 'created': '2024-11-06 11:18:50', 'submission_id': '1gks6zr'}
{'comment': 'This time it looks to be a blowout and Republicans got the Senate. Maybe two non-consecutive terms was the way to go.', 'created': '2024-11-06 08:48:25', 'submission_id': '1gks6zr'}
{'comment': 'Absolutely how I feel!', 'created': '2024-11-06 08:51:50', 'submission_id': '1gks6zr'}
{'comment': 'They’re saying Kamala will still win in the Kamala Subreddit that unfortunately popped up on my fyp🤣🤣', 'created': '2024-11-06 09:07:54', 'submission_id': '1gks6zr'}
{'comment': 'That place is incredibly liberal. I’m not surprised you got mass downvoted.', 'created': '2024-11-06 09:53:46', 'submission_id': '1gks6zr'}
{'comment': 'Fare point\n\nBest action now is probably to pray to God for his safety', 'created': '2024-11-06 08:07:44', 'submission_id': '1gks6zr'}
{'comment': 'Same here. NYT has Trump on 95% but i don’t trust the dems not to pull any fuckery', 'created': '2024-11-06 08:07:23', 'submission_id': '1gks6zr'}
{'comment': 'Murr should lose his job. The media is so out of touch with reality. Never run a campaign base on hate and division while not explaining how you will fix the fundamental problems that you created.\n\n\nI predicted because they ran off of that, the Independents would come vote for Republicans. And boy this outcome turn into a landslide victory for us. This is sweet revenge and I am loving it.', 'created': '2024-11-06 15:48:25', 'submission_id': '1gks6zr'}
{'comment': 'AMEN!!!', 'created': '2024-11-06 12:21:16', 'submission_id': '1gks6zr'}
{'comment': 'There’s a treasure trove of quotes from their own people saying election fraud is impossible, so might as well use it 😂', 'created': '2024-11-06 08:54:14', 'submission_id': '1gks6zr'}
{'comment': 'These mofos will try to cheat overnight…. Dems are cheaters…', 'created': '2024-11-06 07:54:07', 'submission_id': '1gks6zr'}
{'comment': 'Red wave across all battleground states! It’s too big to rig this time!', 'created': '2024-11-06 08:20:18', 'submission_id': '1gks6zr'}
{'comment': '266 to 194... sleep easy.', 'created': '2024-11-06 08:40:08', 'submission_id': '1gks6zr'}
{'comment': 'And kick the trans bullshit the fuck out of our schools.', 'created': '2024-11-06 08:52:54', 'submission_id': '1gks6zr'}
{'comment': 'You do realize that the REASON Trump won was because he was able to expand the diversity of his voting bloc? If two sets of people had voted like they voted in 2020, he would have lost again, and those two demos..? Black and Latino men so slow your roll of this woke and DEI stuff… he is on the clock now', 'created': '2024-11-06 08:57:48', 'submission_id': '1gks6zr'}
{'comment': 'No more glorifying being a unhealthy fat piece of shit', 'created': '2024-11-06 09:01:27', 'submission_id': '1gks6zr'}
{'comment': 'He doesn’t drink or smoke. He just needs a nap and a game of golf.', 'created': '2024-11-06 09:09:27', 'submission_id': '1gks6zr'}
{'comment': 'Everyone on the main subreddits is mostly democrats so of course they’re gonna be complaining etc… I’m just happy for change', 'created': '2024-11-06 20:40:04', 'submission_id': '1gks6zr'}
{'comment': 'It’s nuts. People are wildly misinformed because they choose to glue themselves to the news media and get spoon fed fake and biased information instead of taking the time do their own research. You’ll notice the most common theme is “oh, orange man will take away the ACA” I literally can’t find where he says that. Kamala randomly blurts it out in one of her hissy fits, but then Trump calls her out for that shit lol.', 'created': '2024-11-06 21:17:04', 'submission_id': '1gks6zr'}
{'comment': 'Yeah, best for me to leave it.', 'created': '2024-11-06 21:53:33', 'submission_id': '1gks6zr'}
{'comment': 'Half of the country is not evil ffs', 'created': '2024-11-06 09:57:18', 'submission_id': '1gks6zr'}
{'comment': 'All of them.', 'created': '2024-11-06 07:40:40', 'submission_id': '1gks6zr'}
{'comment': 'Lol can’t wait for the “I am moving out of the US” posts', 'created': '2024-11-06 10:24:23', 'submission_id': '1gks6zr'}
{'comment': "You're probably safe. With the exception of Moldova, Russia would have to go through a NATO country to get to a non-NATO country in the Baltics.", 'created': '2024-11-06 10:48:58', 'submission_id': '1gks6zr'}
{'comment': '[removed]', 'created': '2024-11-06 09:00:29', 'submission_id': '1gks6zr'}
{'comment': 'They can still get abortions in CA and will reap the same benefits of a better run country as the rest of us, even if it comes with some mean tweets.', 'created': '2024-11-06 09:11:39', 'submission_id': '1gks6zr'}
{'comment': 'What page is this? Would love to read the comments there :D', 'created': '2024-11-06 15:34:29', 'submission_id': '1gks6zr'}
{'comment': 'Fox and CNN have called it, AP still has him on 267 but he is leading every other state', 'created': '2024-11-06 09:00:02', 'submission_id': '1gks6zr'}
{'comment': 'I see 277 now', 'created': '2024-11-06 11:37:43', 'submission_id': '1gks6zr'}
{'comment': 'Hopefully not election interference', 'created': '2024-11-06 11:33:59', 'submission_id': '1gks6zr'}
{'comment': 'Because the states yet to be called are almost certainly going to him (i.e. Arizona)', 'created': '2024-11-06 11:33:30', 'submission_id': '1gks6zr'}
{'comment': 'Because the Liberal platforms don’t want to give him the win.', 'created': '2024-11-06 11:34:19', 'submission_id': '1gks6zr'}
{'comment': 'Just saw it go 277, he\'s done it. \n\nAlthough he\'d "done it" hours ago just now it\'s cast iron.', 'created': '2024-11-06 11:38:46', 'submission_id': '1gks6zr'}
{'comment': "Not especially, but this was the plan all along. Overwhelm the Dems' ability to cheat without it being so obvious that even honest lefties won't stand for it.", 'created': '2024-11-06 11:07:13', 'submission_id': '1gks6zr'}
{'comment': 'Fox says Trump took Wisconsin, AP is still standing at 267', 'created': '2024-11-06 10:29:59', 'submission_id': '1gks6zr'}
{'comment': '> I do believe climate change and clean energy are huge issues. Biden’s Inflation Reduction Act allotted $738 billion to climate change and clean energy. I’m scared Trump will reverse this, because he has previously reversed climate laws and removed us from climate pacts. \n\nIf it makes you feel any better, most of that money was likely stolen and paid out to Democrat political campaigns anyway.', 'created': '2024-11-06 10:27:28', 'submission_id': '1gks6zr'}
{'comment': 'There were too many poll watchers and lawsuits about unfair poll practices for the election to get stolen (at least in most states). The silent majority showed up and it could not be denied.', 'created': '2024-11-06 21:55:20', 'submission_id': '1gks6zr'}
{'comment': "Check that! It's back up again. Decision Desk HQ has the overall Trump lead back above 4 million. I imagine this will yo yo back and forth over the next few days as states report data dumps. I hope to God that Trump takes the popular vote. There will be no denying his mandate then.", 'created': '2024-11-07 05:36:26', 'submission_id': '1gks6zr'}
{'comment': 'Blud look at the results on google, Kamala got STEAMROLLED', 'created': '2024-11-06 09:15:16', 'submission_id': '1gks6zr'}
{'comment': 'To be petty… this is over.', 'created': '2024-11-06 09:24:14', 'submission_id': '1gks6zr'}
{'comment': 'Thankfully this is a new different...better party.', 'created': '2024-11-06 09:12:15', 'submission_id': '1gks6zr'}
{'comment': 'Trump 2024', 'created': '2024-11-06 09:08:10', 'submission_id': '1gks6zr'}
{'comment': "In all honesty, you should be relieved. This term will be the same as last time, nothing will change, and then he won't be able to run again afterward.\xa0", 'created': '2024-11-06 09:09:05', 'submission_id': '1gks6zr'}
{'comment': "If this post was on any other sub you'd be banned af.\n\n\nThat's the difference.", 'created': '2024-11-07 01:08:14', 'submission_id': '1gks6zr'}
{'comment': 'someone sad?', 'created': '2024-11-06 09:42:40', 'submission_id': '1gks6zr'}
{'comment': '[removed]', 'created': '2024-11-06 10:59:03', 'submission_id': '1gks6zr'}
{'comment': 'It used to. ...and then the people on your side spent almost a decade calling the people over here "deplorables" and "Nazis" and "terrorists" and "garbage", and justifying getting us fired, or ruining our businesses, or even jailed for daring to have views different than yours and supporting a different candidate, and people like you said nothing.\n\nPut your own house in order before you whine about us taking pleasure in your loss.', 'created': '2024-11-06 10:41:07', 'submission_id': '1gks6zr'}
{'comment': 'gtfo', 'created': '2024-11-06 12:53:00', 'submission_id': '1gks6zr'}
{'comment': 'Lol what are you doing here then?', 'created': '2024-11-06 10:18:20', 'submission_id': '1gks6zr'}
{'comment': 'Or just to be petty about not giving Trump his victory night. They literally are holding it at 267…. While Trump is projected to win Alaska by 14 points and has 60% of the vote in…. AP instantly called much closer races.\n\nNot to mention Wisconsin is practically impossible for Harris to win rn. Trump up 4% with 92% reported voting. Again, a pretty obvious call… or Nevada where Trump is up 5% with 81% reported. \n\nCompletely petty. If it were the other way around Harris would be celebrating a 300+ win rn.', 'created': '2024-11-06 09:19:12', 'submission_id': '1gks6zr'}
{'comment': "Oh fuck, go to the democrats page. It's all about half the country hating them for their race and conspiracies. I really don't understand how someone could think that 70 million Americans hate them for being a black woman just because they voted for Trump. It has nothing to do with that, many of those votes were from black women. Do they hate you too because you're a black woman?", 'created': '2024-11-06 12:45:47', 'submission_id': '1gks6zr'}
{'comment': 'Oh my god they are insufferable! Reddit is a breeding ground of woke assholes that are offended by everything and will downvote anything “just because”. \n\nCRY ME A RIVER LIBTARDS! Then build a bridge and walk over it.', 'created': '2024-11-06 13:44:54', 'submission_id': '1gks6zr'}
{'comment': "Lmfaoooo they're so mad rn\n\nThey can cry all they want tho, showing their absolute zero respect for the results, that's fine for me ;)", 'created': '2024-11-06 15:11:43', 'submission_id': '1gks6zr'}
{'comment': 'people who do that are the very very small (loud) minority.\n\nive seen left wing and right wing do this', 'created': '2024-11-06 23:07:28', 'submission_id': '1gks6zr'}
{'comment': 'Yeah I am done with internet, books anyone?', 'created': '2024-11-07 02:23:31', 'submission_id': '1gks6zr'}
{'comment': "LET'S GOOOOOOOO", 'created': '2024-11-06 07:53:10', 'submission_id': '1gks6zr'}
{'comment': "My parents were talking about how they may try to get Biden to step down and say he's unfit to be president any longer just so, they can have Kamala step in and say she was the first woman president until Trump is inaugurated.", 'created': '2024-11-06 16:15:54', 'submission_id': '1gks6zr'}
{'comment': "As everyone can see now a majority of Americans don't buy the nazi/Hitler correlation to Trump/Republicans.", 'created': '2024-11-06 10:01:04', 'submission_id': '1gks6zr'}
{'comment': 'I’ve been laughing for over an hour watching the results when I should be sleeping. They couldn’t silence us. I’m lucky enough not to teach at a public school anymore, but I’m still nervous about how they’ll act tomorrow. Hopefully they’ll be sane enough to keep it together when kids are in the building. Will update if anyone goes crazy though.', 'created': '2024-11-06 09:28:06', 'submission_id': '1gks6zr'}
{'comment': 'The fun part is going to be when the prosecutors and judges who participated in those farces are disbarred.', 'created': '2024-11-06 10:09:27', 'submission_id': '1gks6zr'}
{'comment': 'Everybody (except brainwashed democrats) saw that for what it was - ginned up charges to get Trump in prison.', 'created': '2024-11-06 10:44:42', 'submission_id': '1gks6zr'}
{'comment': 'Hell any state sub really lol.', 'created': '2024-11-06 08:11:00', 'submission_id': '1gks6zr'}
{'comment': 'Hurry and deposit those checks boys and girls, something tells me Kamala might not be good for it', 'created': '2024-11-06 08:55:42', 'submission_id': '1gks6zr'}
{'comment': "Yeah that's very unfortunate. I hope next election there will be genuine good democratic candidates", 'created': '2024-11-06 23:05:57', 'submission_id': '1gks6zr'}
{'comment': 'Ya they have brigaded every sub in the platform with the help of Reddit ownership. Those days of censorship are done very soon.', 'created': '2024-11-06 17:20:41', 'submission_id': '1gks6zr'}
{'comment': 'No but now he needs to step up and deliver. No covid, no excuses.', 'created': '2024-11-06 10:57:48', 'submission_id': '1gks6zr'}
{'comment': 'Reddit, is incredibly liberal 😭😭😭😭😢😢😢', 'created': '2024-11-06 16:41:33', 'submission_id': '1gks6zr'}
{'comment': 'Yep pray for our president elect’s safety. and pray that they don’t go burning down buildings and becoming violent like they do when they don’t get what they like', 'created': '2024-11-06 08:18:48', 'submission_id': '1gks6zr'}
{'comment': "i know, it makes it hard to sleep. Hopefully it's too big to rig", 'created': '2024-11-06 07:55:55', 'submission_id': '1gks6zr'}
{'comment': "No. There is a difference between Woke and DEI division by race on the left, and 'big tent we are all Americans' on the right.", 'created': '2024-11-06 10:23:59', 'submission_id': '1gks6zr'}
{'comment': "They don't all have to be personally mustache-twirling evil. ...they just need to follow instructions without question.\n\nOnly about 8-10% of 1930s-1940s Germans were members of the Nazi party - but with a few exceptions, they followed along with the directives of one of the most evil regimes in history.", 'created': '2024-11-06 10:21:30', 'submission_id': '1gks6zr'}
{'comment': 'They won\'t move out because the truth is when the day is done Trump is a moderate.\n\nThe extremists left who want to grip power at all costs with the help of shitty media malpractice that have enabled and joined in with their lies brainwashed people to think otherwise. \n\nTrump built a coalition around some important issues and got elected. Frankly the border mess is unforgivable as is bottomless hole Ukraine. \n\nAlso note it looks like Trump will win the popular vote too now so they won\'t have "BuT tHe eLeCtOrAl CoLlEdGe" either.', 'created': '2024-11-06 10:37:19', 'submission_id': '1gks6zr'}
{'comment': "Check a map you're confusing balkans and baltics bless", 'created': '2024-11-06 12:37:07', 'submission_id': '1gks6zr'}
{'comment': "Americans are welcome regardless of skin color. People who are <insert ethnicity/skin color/made up gender here> first didn't vote for Trump.", 'created': '2024-11-06 10:26:10', 'submission_id': '1gks6zr'}
{'comment': "it was on r/democrats, and it was pinned at the top during the night but, after it was called that Trump won, it's no longer there......unless they unpinned it, and you have to go searching for it.", 'created': '2024-11-06 16:02:28', 'submission_id': '1gks6zr'}
{'comment': 'AP is taking their sweet time.', 'created': '2024-11-06 09:12:04', 'submission_id': '1gks6zr'}
{'comment': 'Yeah last I checked\n* up in Alaska +15% with 59% of the votes in. \n* up in Nevada +4.9% with 81% of the votes in. \n* up in Wisconsin +3.8% with 92% of the votes in. \n\nJust needs one of those states to secure the White House.', 'created': '2024-11-06 09:15:34', 'submission_id': '1gks6zr'}
{'comment': 'I really hope it’s not like last time', 'created': '2024-11-06 09:02:17', 'submission_id': '1gks6zr'}
{'comment': 'AP has officially called it. TRUMP WON!', 'created': '2024-11-06 11:37:46', 'submission_id': '1gks6zr'}
{'comment': 'Worse party, less responsibility, more machismo', 'created': '2024-11-06 09:25:03', 'submission_id': '1gks6zr'}
{'comment': 'This appears to be correct', 'created': '2024-11-06 09:09:03', 'submission_id': '1gks6zr'}
{'comment': 'I care less about any particular strategy, or policy. Y’all just be lying, justifying on margins for narrative and it’s dishonorable. And harmful.', 'created': '2024-11-06 09:13:38', 'submission_id': '1gks6zr'}
{'comment': "> He was only compared to Hitler because...\n\n...Democrats have been calling their opponents 'Hitler' since 1948, because they operate on emotion. It is propaganda, and you fell for it. Sorry, we don't have door prizes for the gullible.", 'created': '2024-11-06 11:05:21', 'submission_id': '1gks6zr'}
{'comment': 'Trying to rescue a few of the refugees that are left.', 'created': '2024-11-06 10:41:20', 'submission_id': '1gks6zr'}
{'comment': 'What the guy below me said', 'created': '2024-11-06 13:15:29', 'submission_id': '1gks6zr'}
{'comment': 'So they are cheating ?', 'created': '2024-11-06 09:20:16', 'submission_id': '1gks6zr'}
{'comment': '> people who do that are the very very small (loud) minority.\n\nMany of them are in state or Federal political office, and almost all Democrats.', 'created': '2024-11-06 23:57:44', 'submission_id': '1gks6zr'}
{'comment': '[removed]', 'created': '2024-11-06 10:59:41', 'submission_id': '1gks6zr'}
{'comment': 'Trump was up 10% across like every swing state and these MFers found boxes and boxes of ballots with only Biden votes in them to edge him jussssst over Trump by the morning… what the F was that…', 'created': '2024-11-06 08:00:58', 'submission_id': '1gks6zr'}
{'comment': 'Let’s not forget the 320,000 missing and sex trafficked children. This last presidency was an absolute mess! We’ve entered into how many wars? 🤦🏽\u200d♀️', 'created': '2024-11-06 12:25:20', 'submission_id': '1gks6zr'}
{'comment': "Yay, now i can finally... dang, it's already 4am mst. Looks like no sleep tonight. Atleast Trump won!", 'created': '2024-11-06 11:59:02', 'submission_id': '1gks6zr'}
{'comment': "Okay, lol. Don't be relieved, keep believing in Project2025 or whatever. Don't let me yuck your yum.\xa0", 'created': '2024-11-06 09:16:36', 'submission_id': '1gks6zr'}
{'comment': 'No. Just being petty', 'created': '2024-11-06 09:24:56', 'submission_id': '1gks6zr'}
{'comment': 'Only a lefty would call the people **not** falling for the propaganda, stupid.', 'created': '2024-11-06 11:03:27', 'submission_id': '1gks6zr'}
{'comment': 'It’s not even 2025, it’s just a decade of unaccountability. My top level loyalty is to reality. She will\nWin.', 'created': '2024-11-06 09:19:05', 'submission_id': '1gks6zr'}
{'comment': '...........🤔', 'created': '2024-11-06 09:30:32', 'submission_id': '1gks6zr'}
{'comment': 'I just confirmed he won.....🤓', 'created': '2024-11-07 00:09:49', 'submission_id': '1gks6zr'}
{'comment': "Oh, so you're a bot. Nice. Have a good night lol", 'created': '2024-11-06 09:21:54', 'submission_id': '1gks6zr'}
{'comment': 'I’m gonna take the good night wish and stop there', 'created': '2024-11-06 09:26:56', 'submission_id': '1gks6zr'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 07:29:01', 'submission_id': '1gks3jn'}
{'comment': "I've been scrolling through Reddit and it's quiet as fuck in regards to the usual liberal hating on trump and spreading misinformation posts. I fuckin love it and I feel like I can breathe a sigh of relief!", 'created': '2024-11-06 07:40:19', 'submission_id': '1gks3jn'}
{'comment': "I'm posting a screen shot on r pics of fox calling it", 'created': '2024-11-06 08:03:11', 'submission_id': '1gks3jn'}
{'comment': 'Garrison! NOOOO!!!\n\nMember berries will make their return! XD', 'created': '2024-11-06 08:27:20', 'submission_id': '1gks3jn'}
{'comment': 'I got one for ya: awesome.', 'created': '2024-11-06 08:04:58', 'submission_id': '1gks3jn'}
{'comment': 'OMG this meme is hilarious', 'created': '2024-11-06 12:06:11', 'submission_id': '1gks3jn'}
{'comment': 'Self-idemtifying as Cartman is a... choice.', 'created': '2024-11-06 13:29:10', 'submission_id': '1gks3jn'}
{'comment': 'The bot farms got unplugged, bye bye', 'created': '2024-11-06 07:43:18', 'submission_id': '1gks3jn'}
{'comment': 'The President Garrison episodes incoming are gonna be fire', 'created': '2024-11-06 08:31:24', 'submission_id': '1gks3jn'}
{'comment': 'Fox called it, Trump elected as 47th president!!!!!', 'created': '2024-11-06 08:02:39', 'submission_id': '1gks3jn'}
{'comment': "I always thought South Park to be liberal but they make fun of both sides just as hard as the other lol. I can't wait for a new special XD", 'created': '2024-11-06 08:34:19', 'submission_id': '1gks3jn'}
{'comment': "They call out bullshit and don't pander", 'created': '2024-11-06 08:35:35', 'submission_id': '1gks3jn'}
{'comment': 'Me!! There are lots of us. I can’t stop grinning this morning. The narrative of Republicans being anti-woman was rich coming from the party that supports cosplay women usurping women-only spaces and races. And the abortion question is moot. It’s up to the states where it should have been all along so no one is losing rights.', 'created': '2024-11-06 17:26:34', 'submission_id': '1gks37t'}
{'comment': 'Me!', 'created': '2024-11-06 17:55:07', 'submission_id': '1gks37t'}
{'comment': "I'm an independent that voted straight republican this election. Cause I'm not focused on one right I'm focused on all rights.", 'created': '2024-11-06 20:06:55', 'submission_id': '1gks37t'}
{'comment': 'Female republican here! This was my first presidential election and I’m proud to vote red! I’m sick of the left reducing my rights as a woman to abortion. They also can’t even tell you what a woman is so how do they know republicans hate women?', 'created': '2024-11-07 21:13:50', 'submission_id': '1gks37t'}
{'comment': None, 'created': '2024-11-06 20:33:44', 'submission_id': '1gks37t'}
{'comment': "Democrat women say Republicans hate women because it's projection; they hate men and their accusations are meant to deflect.", 'created': '2024-11-07 01:51:25', 'submission_id': '1gks37t'}
{'comment': "I don't want to join the groups because only one opinion counts and if you disagree you get banned and called a Nazi woman hater I do love the meltdowns though.", 'created': '2024-11-11 21:40:21', 'submission_id': '1gks37t'}
{'comment': 'There is plenty of us ! But lots of conservatives women are not online :) also; don’t forget a LOT of women don’t speak about politics openly. I’m generally quiet about it not because I’m afraid but because it’s not my role to educate people it leads nowhere if you are not ready to listen. But let me tell you I have 3 children and my work continues with my son and my two daughters :) together With my wonderful husband we are raising tomorrow’s conservative generation and that is my strongest contribution to society and our future!!', 'created': '2024-11-07 10:17:59', 'submission_id': '1gks37t'}
{'comment': 'I like that. Good for you!', 'created': '2024-11-06 20:22:25', 'submission_id': '1gks37t'}
{'comment': 'Great to have you! 😁', 'created': '2024-11-06 20:47:49', 'submission_id': '1gks37t'}
{'comment': "I stay silent 99% of the time because of all of the hate. I am embarrassed to admit that!?! \n\nIt's funny because because WE are the majority! I do think many people in the middle voted Republican not only for policy reasons but because they were sick of Kamala democrats spreading judgment, hate, and ridicule. The more they try to bully and force people, the more it turned people off...", 'created': '2024-11-11 21:49:11', 'submission_id': '1gks37t'}
{'comment': "I know I'm so proud of us for being the majority. We are able to see through feminist bullshit. They hate men unless they have become women and then we need to let them into our bathrooms and our sports no questions asked.", 'created': '2024-11-11 21:51:00', 'submission_id': '1gks37t'}
{'comment': '🤣🤣🤣 YES, I agree! Lol. I think modern feminism is such bullshit. They say we should all be equal, but their brand of feminism actually sounds more like, "women are better." I want to be treated and judged on my own merits as a human! They think they are so "different," but to me, it\'s just one big socialist blob.', 'created': '2024-11-11 22:03:05', 'submission_id': '1gks37t'}
{'comment': '😂😂😂 Your dogs are adorable by the way!! I have only had one dog ever and he was a pitbull he was the best dog ever he was a Christmas gift..he was actually just given to the person who gave him to me because he was a runt and considered worth no money...his personality was so charming and he was the biggest lover I miss him so much we had to put him down last year but we had 13 great years together. I live in a place that only allows small dogs right now but when I own a home I plan on getting pitbulls again! RIP Buzz!', 'created': '2024-11-11 22:09:03', 'submission_id': '1gks37t'}
{'comment': "Thank you so much! I'm so sorry you lost your beloved Buzz. They are so special and so hard to lose. Every time I lose one, I swear I can't get any more because I can't handle the heartbreak... They bring me so much joy, though! ❤️", 'created': '2024-11-11 22:13:16', 'submission_id': '1gks37t'}
{'comment': "I have dreams about him he's so happy and I can feel his fur and feel the warmth when I pet his belly. It has been really hard and you're right losing them makes u wonder if u should get another but I know it will be worth it when I do!", 'created': '2024-11-11 22:15:48', 'submission_id': '1gks37t'}
{'comment': 'I can’t im jacked up. heading to the gym.\nWe did it everybody!!!!!!', 'created': '2024-11-06 07:36:24', 'submission_id': '1gks0dj'}
{'comment': 'Fox just called it he won!!', 'created': '2024-11-06 07:26:53', 'submission_id': '1gks0dj'}
{'comment': 'Give it another 20-30 mins!!', 'created': '2024-11-06 07:28:57', 'submission_id': '1gks0dj'}
{'comment': "Once Alaska comes in, yeah, it's over. That's the last 3 he needs.", 'created': '2024-11-06 07:37:27', 'submission_id': '1gks0dj'}
{'comment': 'No,you have to celebrate first.leesssss goooo', 'created': '2024-11-06 07:39:50', 'submission_id': '1gks0dj'}
{'comment': 'Sweet dreams!', 'created': '2024-11-06 08:05:42', 'submission_id': '1gks0dj'}
{'comment': 'trump has won, you may sleep now.', 'created': '2024-11-06 08:29:12', 'submission_id': '1gks0dj'}
{'comment': 'Someone has to watch out for 3am Georgia, that guy knocked the heck outa us last time', 'created': '2024-11-06 09:33:05', 'submission_id': '1gks0dj'}
{'comment': 'You deserved it buddy! Go and hit the gym 💪', 'created': '2024-11-06 07:46:57', 'submission_id': '1gks0dj'}
{'comment': 'They just waiting for Alaska, I saw Kayley deleted her X tweet lol', 'created': '2024-11-06 07:28:03', 'submission_id': '1gks0dj'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 07:18:18', 'submission_id': '1gkrxo8'}
{'comment': 'She really should address her fans. That is disrespectful to them but I expect no less from someone like her. Those who support her were just pawns. She trashed them quick.', 'created': '2024-11-06 08:42:37', 'submission_id': '1gkrxo8'}
{'comment': 'It is shameful that she won’t address her voters but then again she’s hidden most of her campaign.\n\nIt’s funny the ones always screaming about the environment have no 2nd thought about dumping their trash & walking away. Just like the border where the illegals are sitting, they leave behind all their garbage on the ground.', 'created': '2024-11-06 09:03:52', 'submission_id': '1gkrxo8'}
{'comment': "They'll be ~~looting~~ shopping soon...", 'created': '2024-11-06 17:20:36', 'submission_id': '1gkrxo8'}
{'comment': 'LMAO', 'created': '2024-11-06 22:04:51', 'submission_id': '1gkrxo8'}
{'comment': "She's a coward. Probably taking a mental health day.", 'created': '2024-11-06 17:21:22', 'submission_id': '1gkrxo8'}
{'comment': 'Imagine the shit we would be in had we a president who needed mental health days. Oh gosh we dodge a huge bullet.', 'created': '2024-11-06 19:45:10', 'submission_id': '1gkrxo8'}
{'comment': 'Thankyou', 'created': '2024-11-06 17:54:23', 'submission_id': '1gkryg8'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 06:55:33', 'submission_id': '1gkrl1g'}
{'comment': 'I mean we have a 1 vote majority right now.', 'created': '2024-11-06 06:58:13', 'submission_id': '1gkrl1g'}
{'comment': "Not really with all the ring senatora there is including collins in Maine not much thay cow won't do to kiss dem ass.", 'created': '2024-11-06 07:03:20', 'submission_id': '1gkrl1g'}
{'comment': 'Red wave', 'created': '2024-11-06 07:07:16', 'submission_id': '1gkrl1g'}
{'comment': 'I’m nervous about the house.', 'created': '2024-11-06 07:17:31', 'submission_id': '1gkrl1g'}
{'comment': "Don't be. It's guaranteed.", 'created': '2024-11-06 08:03:14', 'submission_id': '1gkrl1g'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 06:42:30', 'submission_id': '1gkrdsi'}
{'comment': "Associated Press and CBS are calling different states.\n\nEdit: CBS is calling Georgia with it's 16 votes, which I agree since it's been red since 9\n\nEdit 2: if we go by CBS's more liberal estimate, then Trump needs to keep his 4% lead in Penn. And win any of the following: AZ, MI, or WI. The alternative is losing PA and winning all three.", 'created': '2024-11-06 06:48:17', 'submission_id': '1gkrdsi'}
{'comment': 'Pennsylvania is big time stalling', 'created': '2024-11-06 07:05:49', 'submission_id': '1gkrdsi'}
{'comment': 'Nothing is certified. I think they are all statistical estimates / guesses. One new station can call a state, while the other holds off until this is a higher probability of them being right.', 'created': '2024-11-06 06:49:29', 'submission_id': '1gkrdsi'}
{'comment': 'Trump is President 🇺🇸', 'created': '2024-11-06 07:34:16', 'submission_id': '1gkrdsi'}
{'comment': 'Newsmax is the way to go!', 'created': '2024-11-06 07:33:02', 'submission_id': '1gkrdsi'}
{'comment': 'Trump won! Fox News, newsmax has called it. So has msnbc', 'created': '2024-11-06 07:43:42', 'submission_id': '1gkrdsi'}
{'comment': 'Arizona has been 50-50% reporting for the last 3 hours. I don’t think he’ll will here though', 'created': '2024-11-06 07:11:47', 'submission_id': '1gkrdsi'}
{'comment': 'Doesn’t matter if he does, he’s gonna win nevada, wisconsin, and pennsylvania before arizona can even get all of their votes', 'created': '2024-11-06 07:21:46', 'submission_id': '1gkrdsi'}
{'comment': 'Maricopa and coconino counties here in Az are blue bad. And that’s gonna be the majority of the votes I’m sure. All the more rural are all red. Stupid Californians moving here and buying retirement land are ruining my state', 'created': '2024-11-06 07:33:09', 'submission_id': '1gkrdsi'}
{'comment': "Just heard PA called Trump.\nHope it's true, heard from Charlie Kirk but Google's not updating it so idk. Not really knowledgeable on this stuff", 'created': '2024-11-06 07:23:55', 'submission_id': '1gkrdsi'}
{'comment': 'I heard them say Alaska may ho. I hope so.', 'created': '2024-11-06 07:32:08', 'submission_id': '1gkrdsi'}
{'comment': '4% lead with 91% of votes counted, he should have it in the bag. Unless my dead grandma votes democrats again', 'created': '2024-11-06 07:25:22', 'submission_id': '1gkrdsi'}
{'comment': 'Haha who’s the ho now 🙏🙏😈😈😇😇🥳🥳🥳🫡🫡🤔🤔🇺🇸🇺🇸🇺🇸🇺🇸❤️❤️❤️❤️', 'created': '2024-11-06 08:15:02', 'submission_id': '1gkrdsi'}
{'comment': 'I meant go lol. Killed it. I can’t wait for this morning and all the screaming 😂😂😂', 'created': '2024-11-06 08:55:16', 'submission_id': '1gkrdsi'}
{'comment': 'OMG IM SO SORRY! But yeah me too lmao', 'created': '2024-11-06 09:07:52', 'submission_id': '1gkrdsi'}
{'comment': 'No worries', 'created': '2024-11-06 09:11:14', 'submission_id': '1gkrdsi'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 04:47:09', 'submission_id': '1gkpigb'}
{'comment': 'If Trump wins, the rage and frustration that builds up inside of her will be so strong her head might explode.', 'created': '2024-11-06 04:55:38', 'submission_id': '1gkpigb'}
{'comment': 'These diddy party participants are shitting themselves 😂', 'created': '2024-11-06 05:08:22', 'submission_id': '1gkpigb'}
{'comment': '😂', 'created': '2024-11-06 05:14:25', 'submission_id': '1gkpigb'}
{'comment': 'that is the worst haircut I have ever seen in my 30 years of existance on Earth', 'created': '2024-11-06 06:53:05', 'submission_id': '1gkpigb'}
{'comment': 'Too soon to call. Let’s not jinx it!! 😩', 'created': '2024-11-06 05:06:00', 'submission_id': '1gkpigb'}
{'comment': 'I think she was just traded to the Chiefs', 'created': '2024-11-06 06:09:36', 'submission_id': '1gkpigb'}
{'comment': 'She’s somehow even uglier on the inside than the outside! Can you imagine crawling into bed with that bunyip?', 'created': '2024-11-06 07:38:24', 'submission_id': '1gkpigb'}
{'comment': 'I may have to watch the View just to watch the tears, especially Joy’s.', 'created': '2024-11-06 06:17:33', 'submission_id': '1gkpigb'}
{'comment': 'Hahaha she will probably call out sick tomorrow.', 'created': '2024-11-06 07:36:24', 'submission_id': '1gkpigb'}
{'comment': 'That woman is crazy anyway you look at it.', 'created': '2024-11-06 10:42:44', 'submission_id': '1gkpigb'}
{'comment': 'Trump keeps receipts... LFG', 'created': '2024-11-06 11:34:51', 'submission_id': '1gkpigb'}
{'comment': 'Poor Whoopi', 'created': '2024-11-06 16:42:12', 'submission_id': '1gkpigb'}
{'comment': 'I hope so. I can not stand that witch.', 'created': '2024-11-06 05:12:58', 'submission_id': '1gkpigb'}
{'comment': 'I hope no one is near by that much crazy might be catching.', 'created': '2024-11-06 05:08:49', 'submission_id': '1gkpigb'}
{'comment': 'We are so god damn close to seeing that happen', 'created': '2024-11-06 07:32:05', 'submission_id': '1gkpigb'}
{'comment': 'Yeah, I have a sinking feeling the next 4 years are going to be dark. Why did they let her catch up in electoral votes.', 'created': '2024-11-06 06:41:29', 'submission_id': '1gkpigb'}
{'comment': 'I’ll just catch the clips on YouTube. Couldn’t stand to actually watch those yentas', 'created': '2024-11-06 06:36:28', 'submission_id': '1gkpigb'}
{'comment': 'West coast started reporting in and Cali has 54 votes...', 'created': '2024-11-06 07:11:07', 'submission_id': '1gkpigb'}
{'comment': None, 'created': '2024-11-06 18:23:52', 'submission_id': '1gkpigb'}
{'comment': 'Me too man, I was so nervous going to sleep at around 12am last night. Woke up to great news, glad I was a part of this red wave.', 'created': '2024-11-06 18:28:08', 'submission_id': '1gkpigb'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 04:38:30', 'submission_id': '1gkpd5n'}
{'comment': 'Is the majority of Reddit losing their minds yet?', 'created': '2024-11-06 04:43:01', 'submission_id': '1gkpd5n'}
{'comment': "I left that sub. Too toxic and it doesn't matter if you agree with them, they still find a reason to berate you... Screw the libs!", 'created': '2024-11-06 04:42:13', 'submission_id': '1gkpd5n'}
{'comment': 'Pennsylvania has been looking positive, Georgia shocked me a bit…. Was not expecting Trump to take a huge lead like he has right now.', 'created': '2024-11-06 04:44:56', 'submission_id': '1gkpd5n'}
{'comment': 'Yeah Ohio!!!', 'created': '2024-11-06 04:39:23', 'submission_id': '1gkpd5n'}
{'comment': 'We’re doing it people! Can’t wait to post it to r/pics 😭', 'created': '2024-11-06 07:24:43', 'submission_id': '1gkpd5n'}
{'comment': 'Issue 1 needs to lose. Full stop.', 'created': '2024-11-06 07:45:45', 'submission_id': '1gkpd5n'}
{'comment': "Don't get your hopes up. The Dems will find just enough votes to install their puppet.", 'created': '2024-11-06 07:19:54', 'submission_id': '1gkpd5n'}
{'comment': 'It’s a fucking Boat Race!', 'created': '2024-11-06 07:20:05', 'submission_id': '1gkpd5n'}
{'comment': 'I put my TV on CNN for 10 minutes…. They can’t talk! Cotton Mouth!', 'created': '2024-11-06 07:21:06', 'submission_id': '1gkpd5n'}
{'comment': 'O H', 'created': '2024-11-06 20:44:36', 'submission_id': '1gkpd5n'}
{'comment': 'Yes it’s hilarious', 'created': '2024-11-06 04:52:37', 'submission_id': '1gkpd5n'}
{'comment': 'Long ago. So very long ago.', 'created': '2024-11-06 04:54:48', 'submission_id': '1gkpd5n'}
{'comment': 'They already did now it’s just a outbreak 😂', 'created': '2024-11-06 05:05:30', 'submission_id': '1gkpd5n'}
{'comment': 'I’m just going through and telling them “you’re welcome for your freedom”.', 'created': '2024-11-06 07:44:11', 'submission_id': '1gkpd5n'}
{'comment': 'Yep, all my liberal friends have an issue with critical thinking.', 'created': '2024-11-06 04:44:33', 'submission_id': '1gkpd5n'}
{'comment': '👍❤️', 'created': '2024-11-06 04:54:20', 'submission_id': '1gkpd5n'}
{'comment': 'I stay around to get them fired up and pissed 😂', 'created': '2024-11-06 06:16:22', 'submission_id': '1gkpd5n'}
{'comment': '👍', 'created': '2024-11-06 04:55:02', 'submission_id': '1gkpd5n'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 03:18:07', 'submission_id': '1gkny73'}
{'comment': 'They must all be on respirators.', 'created': '2024-11-06 04:55:42', 'submission_id': '1gkny73'}
{'comment': 'Trump broke that particular meter. 🦅🇺🇸', 'created': '2024-11-06 05:07:59', 'submission_id': '1gkny73'}
{'comment': 'This is similar to 2016. About 6pm PST it swung that way and never changed. 2020 it never moved that way.', 'created': '2024-11-06 03:52:33', 'submission_id': '1gkny73'}
{'comment': "They can't even say his name over there", 'created': '2024-11-06 05:58:51', 'submission_id': '1gkny73'}
{'comment': 'Welcome to the party.', 'created': '2024-11-06 07:40:04', 'submission_id': '1gkny73'}
{'comment': "Don't fucking believe it. The Dems will find just enough votes to install their puppet.", 'created': '2024-11-06 07:26:31', 'submission_id': '1gkny73'}
{'comment': 'maga 🙏🏽🇺🇸', 'created': '2024-11-06 05:08:42', 'submission_id': '1gkny73'}
{'comment': "Here's hoping.", 'created': '2024-11-06 03:54:28', 'submission_id': '1gkny73'}
{'comment': 'Keep praying! 🙏🏻', 'created': '2024-11-06 04:05:29', 'submission_id': '1gkny73'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 03:10:36', 'submission_id': '1gknt9y'}
{'comment': 'Trying to comment on texas page and they won’t let me 😂', 'created': '2024-11-06 03:30:07', 'submission_id': '1gknt9y'}
{'comment': 'I’m not saying nothing until I see 270 by Trumps name.', 'created': '2024-11-06 03:49:43', 'submission_id': '1gknt9y'}
{'comment': 'Donald Trump might pull this off. It’s too early to say; we might not know till the middle of next year, or whenever some\xa0[antediluvian state finishes counting by hand](https://www.telegraph.co.uk/us/politics/2024/11/05/us-presidential-election-2024-when-dates-candidates-voting/). Plus Electoral College madness means that Trump could surge in the popular vote yet still lose via Pennsylvania, Wisconsin and Michigan (the reverse Hillary). But consider the following:\n\nFirst, he took\xa0[Florida easily, including Miami-Dade](https://www.telegraph.co.uk/us/politics/2024/11/05/us-election-latest-news-polling-trump-kamala/). Joe Biden won that county in 2020; Hillary Clinton swept it by nearly 30 points in 2016. What’s made the difference? Trump’s doing well among Latino voters, presumably men.\n\nSecond, there are hints he’s gained ground among the affluent in Virginia, which is supposed to be a lock for Kamala; Wasps with degrees are her people.\n\nThird, he seems to be scooping Georgia, which might have been competitive and certainly suggests the sun-belt is safe (Texas is also not in play). Fourth, an NBC exit poll gives him a six point advantage among independents in the critical state of Pennsylvania.\n\nExit polls generally indicate that\xa0[“the future of democracy” is a leading issue,](https://www.telegraph.co.uk/us/comment/2024/11/06/americans-voting-out-of-resentment-and-fear/)\xa0which breathless TV commentators assumed was a good sign for Harris. But lots of Republicans think the Democrats stole the election in 2020, so they might be recording concern for that issue as well.\n\nThe other major matter is the economy, and Trump polls stronger than Kamala on that one for obvious reasons (ie inflation). No wonder election betting seems to slightly favour Republicans, along with the\xa0*New York Times*\xa0and Decision Desk HQ.\n\nBut, yes, there’s a long night ahead, and none of us knows anything for sure. It’s a delight to watch British TV presenters disclose the latest thing they read on CNN as if it were a personal insight (”I’m predicting now that Harris will take Vermont and the Pope will carry the Vatican”).\n\nBut what we can decisively say at this juncture is that of the four options – Trump easy win, narrow win; Harris narrow win, easy win – the Harris easy win is off the table. Despite January 6, a rape trial, “eating the pets” and a comedian calling Puerto Rico a “floating island of garbage”. I wonder if Joe Biden might have done better?\n\n**Read more from The Telegraph:** [https://www.telegraph.co.uk/us/comment/2024/11/06/its-beginning-to-look-like-donald-trump-is-going-to-win/](https://www.telegraph.co.uk/us/comment/2024/11/06/its-beginning-to-look-like-donald-trump-is-going-to-win/)', 'created': '2024-11-06 03:11:01', 'submission_id': '1gknt9y'}
{'comment': 'Really hoping this man wins. The US needs him now more than ever.', 'created': '2024-11-06 04:27:56', 'submission_id': '1gknt9y'}
{'comment': "I'm predicting Trumps 2024!\n\nIt's gotten really quiet on the front page of Reddit not a mention of Kamala 🤣", 'created': '2024-11-06 03:55:25', 'submission_id': '1gknt9y'}
{'comment': "Absolute victory. Absolute victory. Absolute victory. \n\nPresident Donald J. Trump is clearly on track to win not just the electoral college but the popular vote - the first Republican to do so since 2004 - which shows not just how popular President Trump is but how effective voting reform across the country has been at stopping illegal voting.\n\nThe Senate is guaranteed to be Republican, the House is a certainty, and of course we have the Supreme Court.\n\nThe numbers haven't all been counted, but we're on a path to *absolute federal power*.", 'created': '2024-11-06 06:42:42', 'submission_id': '1gknt9y'}
{'comment': "Betting odds are 85-15 trump. I have no idea how they calculate this. I'm just saying", 'created': '2024-11-06 04:07:18', 'submission_id': '1gknt9y'}
{'comment': 'Adios, Embarrass Harris.', 'created': '2024-11-06 04:56:34', 'submission_id': '1gknt9y'}
{'comment': 'PRAY', 'created': '2024-11-06 04:23:54', 'submission_id': '1gknt9y'}
{'comment': 'And he won the popular vote. This victory is even sweeter than 2016', 'created': '2024-11-06 07:28:00', 'submission_id': '1gknt9y'}
{'comment': 'Vote! Oh wait ..', 'created': '2024-11-06 03:45:44', 'submission_id': '1gknt9y'}
{'comment': 'The Dems will find just enough votes to install their puppet.', 'created': '2024-11-06 06:54:22', 'submission_id': '1gknt9y'}
{'comment': 'Praise the lord', 'created': '2024-11-06 07:50:23', 'submission_id': '1gknt9y'}
{'comment': 'Beginning? Bro it’s literally almost guaranteed IMO', 'created': '2024-11-06 07:50:35', 'submission_id': '1gknt9y'}
{'comment': 'Too early to call! But I hope', 'created': '2024-11-06 05:29:00', 'submission_id': '1gknt9y'}
{'comment': "Idk it's really close trumps ahead by 25 right now", 'created': '2024-11-06 05:45:28', 'submission_id': '1gknt9y'}
{'comment': 'Already got banned from my home state of Delaware', 'created': '2024-11-06 04:46:42', 'submission_id': '1gknt9y'}
{'comment': 'lol…they are busy booking their flights to Canada', 'created': '2024-11-06 04:30:20', 'submission_id': '1gknt9y'}
{'comment': "I'm not saying nothing until the electoral votes are actually certified by the Senate.", 'created': '2024-11-06 05:12:51', 'submission_id': '1gknt9y'}
{'comment': 'He’s at 267 and ahead 16% in Alaska. 93% of the vote is counted in Nevada and he’s up almost 5% there. Interestingly, Las Vegas is almost 50/50 this time.', 'created': '2024-11-06 09:51:01', 'submission_id': '1gknt9y'}
{'comment': 'Hes got 270 rn', 'created': '2024-11-06 07:55:32', 'submission_id': '1gknt9y'}
{'comment': 'Great analysis. Thx!', 'created': '2024-11-06 03:24:31', 'submission_id': '1gknt9y'}
{'comment': 'I’m really proud that Americans saw past the media bias & lies.', 'created': '2024-11-06 07:12:36', 'submission_id': '1gknt9y'}
{'comment': "Nah they don't have massive amounts of COVID mail in ballots to save them this time", 'created': '2024-11-06 07:23:20', 'submission_id': '1gknt9y'}
{'comment': 'Wisconsin checking in. Been banned for 3 years', 'created': '2024-11-06 04:50:03', 'submission_id': '1gknt9y'}
{'comment': 'Will this stop once the Harris staffers are fired?', 'created': '2024-11-06 09:49:58', 'submission_id': '1gknt9y'}
{'comment': 'Can’t wait to see the celebrity meltdowns', 'created': '2024-11-06 07:11:08', 'submission_id': '1gknt9y'}
{'comment': 'this man votes', 'created': '2024-11-06 07:55:45', 'submission_id': '1gknt9y'}
{'comment': 'Now we can be happy and going back to a good life for all Americans.', 'created': '2024-11-06 12:56:18', 'submission_id': '1gknt9y'}
{'comment': 'I hope you are correct. We shall see.....', 'created': '2024-11-06 08:22:24', 'submission_id': '1gknt9y'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 02:53:02', 'submission_id': '1gknhdz'}
{'comment': 'Some are giving Harris maryland with 0% in. They are making educated guesses. Different broadcast have different "criteria"', 'created': '2024-11-06 02:58:47', 'submission_id': '1gknhdz'}
{'comment': 'Because none of them are technically real 🤣😅', 'created': '2024-11-06 03:38:29', 'submission_id': '1gknhdz'}
{'comment': 'I’m working in the ED overnight, I hope that my coworkers don’t have a meltdown if Trump wins. Based in North Jersey 😭😭😭😭', 'created': '2024-11-06 03:58:27', 'submission_id': '1gknhdz'}
{'comment': "I think they're all estimates by either votes coming in, past history, and/or polling. Nothing is official until all votes are counted. I think if you click on each state you can see what the % the vote count is at. A news broadcast like NBC will be more cautious before calling based on the overall percentage of votes or rural vs urban centres. For example, in 2020, Arizona was erroneously called by some networks which was too close and too early to call.", 'created': '2024-11-06 03:13:59', 'submission_id': '1gknhdz'}
{'comment': "Well now Trump's projected to win penn , Georgia, and possibly michigan", 'created': '2024-11-06 04:51:56', 'submission_id': '1gknhdz'}
{'comment': 'Because one actually ran and the other sat.', 'created': '2024-11-06 04:57:32', 'submission_id': '1gknhdz'}
{'comment': "Idk I'm watching the sec and hating how close it's looking.", 'created': '2024-11-06 05:38:07', 'submission_id': '1gknhdz'}
{'comment': 'LOOKS LIKE IT’S A WIN!!', 'created': '2024-11-06 08:10:15', 'submission_id': '1gknhdz'}
{'comment': 'These numbers are insane and aren’t making any sense to me lol one is showing him having 154 now, Harris 30 then the other one shows Trump 120 to Harris 99', 'created': '2024-11-06 03:05:02', 'submission_id': '1gknhdz'}
{'comment': 'kinda like how they gave her California with 0% in. But everyone can assume that much', 'created': '2024-11-06 07:17:31', 'submission_id': '1gknhdz'}
{'comment': 'Praying for you', 'created': '2024-11-06 04:14:11', 'submission_id': '1gknhdz'}
{'comment': "I'm in L.A, I HOPE the staffs here have a meltdown *if* Trump wins.", 'created': '2024-11-06 07:35:56', 'submission_id': '1gknhdz'}
{'comment': "For anyone following this isn't recent", 'created': '2024-11-06 04:52:28', 'submission_id': '1gknhdz'}
{'comment': 'Have a drink, take a melatonin, and wake up to a brighter tomorrow. There will be plenty of meltdown meme videos to catch up on. Tonight is a ball of anxious annoying bull shit news ancors taking nonstop for the next 4 hours.', 'created': '2024-11-06 03:09:30', 'submission_id': '1gknhdz'}
{'comment': 'Updates bro?? Turns out half of my co workers were closet Republicans lol. But not a bug surprise… gonna go to the Dem /reddit for the laughs.', 'created': '2024-11-06 09:20:56', 'submission_id': '1gknhdz'}
{'comment': 'Hoping for a sweep of House, Senate and WH.', 'created': '2024-11-06 03:18:07', 'submission_id': '1gknhdz'}
{'comment': 'Haven’t drank in 2 years, but tonight might be the night 🤣 🤞🏼', 'created': '2024-11-06 03:10:52', 'submission_id': '1gknhdz'}
{'comment': "I'll update you when I wake up tomorrow, I'm at my home for the night.", 'created': '2024-11-06 09:21:40', 'submission_id': '1gknhdz'}
{'comment': 'Feel that debating doing the same.', 'created': '2024-11-06 03:14:05', 'submission_id': '1gknhdz'}
{'comment': 'Cool lmk', 'created': '2024-11-06 09:25:51', 'submission_id': '1gknhdz'}
{'comment': 'They\'re actually so emotional about it, some of them are sobbing. This got to the point that there had to be a post for all the staffs saying something like, "We know you\'re emotional, we\'re here for you."\n\nIf you want I can DM you.', 'created': '2024-11-06 21:30:05', 'submission_id': '1gknhdz'}
{'comment': 'Bro I did my homework… frankly I used to hate Trump’s guts (mainly because of media.) I used to think that whites and cops are my enemies - I’m “white/Hispanic”. \n\nBut at some point I decided to look at the other side and found out that the ones that always use hate and pointing fingers to get in power are mostly democrats. If Harris won, I would have move on with my day and wouldn’t be insulting them.\n\nI’m happy on this side, I’ve been welcomed by the Republican party, and I love it.', 'created': '2024-11-06 21:37:43', 'submission_id': '1gknhdz'}
{'comment': 'You have another white millennial educated woman here ✋🏻 Master’s graduate, mother of two beautiful girls, full-time government employee, married to a man in law enforcement. I love America 🇺🇸 and I love Trump! ❤️🤍💙', 'created': '2024-11-06 03:27:24', 'submission_id': '1gklef9'}
{'comment': 'God bless you', 'created': '2024-11-06 02:05:52', 'submission_id': '1gklef9'}
{'comment': "I hope we don't do RCV in Ohio I think that's the next thing people want to get on the ballot", 'created': '2024-11-06 02:40:04', 'submission_id': '1gklef9'}
{'comment': 'Same (only a B.A.S.) and SAME!', 'created': '2024-11-06 06:49:24', 'submission_id': '1gklef9'}
{'comment': 'Thankyou my fellow Republican', 'created': '2024-11-06 17:51:23', 'submission_id': '1gklef9'}
{'comment': 'Thank you, God bless you and your family.', 'created': '2024-11-06 22:08:55', 'submission_id': '1gklef9'}
{'comment': "Why 3 times? xD I hope that didn't throw out your ballot.", 'created': '2024-11-06 09:54:40', 'submission_id': '1gklef9'}
{'comment': "It's dumb because it would have basically no effect both Dems and Republicans would put both theirs first and the other last putting 3rd party in the middle, so maybe 3rd party would have a chance but that would be useless for across the country votes.", 'created': '2024-11-06 02:52:41', 'submission_id': '1gklef9'}
{'comment': 'Rank choice voting. It went through just fine ;)', 'created': '2024-11-06 13:00:00', 'submission_id': '1gklef9'}
{'comment': 'I would laugh if that was the result of ranked voting', 'created': '2024-11-06 04:21:24', 'submission_id': '1gklef9'}
{'comment': '“Economics”\n\nBiggest topic I pray voters remember at the poll!', 'created': '2024-11-06 02:37:00', 'submission_id': '1gkm92n'}
{'comment': 'Awe yay dad!!', 'created': '2024-11-06 02:13:47', 'submission_id': '1gkm92n'}
{'comment': 'Wish I could get my mom to!', 'created': '2024-11-06 02:24:29', 'submission_id': '1gkm92n'}
{'comment': 'Love your dad, he looked at what was best for the country! Thank him!', 'created': '2024-11-06 02:45:43', 'submission_id': '1gkm92n'}
{'comment': 'Good job Dad!', 'created': '2024-11-06 02:32:36', 'submission_id': '1gkm92n'}
{'comment': 'My parents still buy into that liberal bs even though everything I have tried to prove to them you’re lucky', 'created': '2024-11-06 02:36:09', 'submission_id': '1gkm92n'}
{'comment': 'God bless your dad!', 'created': '2024-11-06 02:51:25', 'submission_id': '1gkm92n'}
{'comment': 'My family voted all red for the first time!', 'created': '2024-11-06 03:18:17', 'submission_id': '1gkm92n'}
{'comment': 'Same with me\n\nI’m a registered dem and voted for Trump this election.\n\nKamala and the Democratic party has nothing to offer', 'created': '2024-11-06 05:11:25', 'submission_id': '1gkm92n'}
{'comment': 'Go Dad!', 'created': '2024-11-06 03:01:12', 'submission_id': '1gkm92n'}
{'comment': "Mom, dad, wife all voting for Trump! My brother wants Kamala for some reason bit he's not voting so woohooo", 'created': '2024-11-06 03:28:05', 'submission_id': '1gkm92n'}
{'comment': 'Your dad woke up!! 👏', 'created': '2024-11-06 03:42:56', 'submission_id': '1gkm92n'}
{'comment': 'Immigration issues is the MAIN reason why I’m no longer considering myself a Lefty', 'created': '2024-11-06 04:53:24', 'submission_id': '1gkm92n'}
{'comment': 'Many people have come to see the truth. The media can’t fool everybody.', 'created': '2024-11-06 05:11:35', 'submission_id': '1gkm92n'}
{'comment': 'LETS GO CO DAD (from a co native.)', 'created': '2024-11-06 03:49:03', 'submission_id': '1gkm92n'}
{'comment': 'Go Dad! I wish this was mine dad!', 'created': '2024-11-06 04:18:49', 'submission_id': '1gkm92n'}
{'comment': 'Families will reconcile holiday season ‘24!!!', 'created': '2024-11-06 05:11:43', 'submission_id': '1gkm92n'}
{'comment': 'He sees the light and isn’t a traditional lefty', 'created': '2024-11-06 05:16:05', 'submission_id': '1gkm92n'}
{'comment': "The great lakes states is what I'm worried about", 'created': '2024-11-06 06:18:00', 'submission_id': '1gkm92n'}
{'comment': 'WE DID IT! TRUMP WON AND ITS HISTORIC!', 'created': '2024-11-06 07:28:05', 'submission_id': '1gkm92n'}
{'comment': 'I think this happened a lot more than people think. Common sense flipped a lot of staunch democrats.', 'created': '2024-11-06 07:37:57', 'submission_id': '1gkm92n'}
{'comment': 'Hope your dads happy he won', 'created': '2024-11-06 16:05:42', 'submission_id': '1gkm92n'}
{'comment': 'Hmm 🤔 Hello from Vietnamese (to Korean)- I thoughts Viets going split. Can’t say', 'created': '2024-11-06 03:03:51', 'submission_id': '1gkm92n'}
{'comment': '😂', 'created': '2024-11-06 03:36:56', 'submission_id': '1gkm92n'}
{'comment': 'It’s getting closer tho.', 'created': '2024-11-06 04:37:07', 'submission_id': '1gkm92n'}
{'comment': 'Bad democratic Economics and border policies are backfiring.', 'created': '2024-11-06 04:37:53', 'submission_id': '1gkm92n'}
{'comment': 'Good man', 'created': '2024-11-06 05:37:05', 'submission_id': '1gkm92n'}
{'comment': 'And the springs looks to be red. Good on them!', 'created': '2024-11-06 05:43:28', 'submission_id': '1gkm92n'}
{'comment': 'Almost every first/second generation immigrant I have spoken to is super upset with the current open door policy. \n\nAs someone who naturalized recently, I share this view. Legal immigration is good for our country, this open door jump border BS isn’t. \n\nRemind me how many millions have walked through the Southern border? Is this the message we send to the world?', 'created': '2024-11-06 05:54:24', 'submission_id': '1gkm92n'}
{'comment': 'That’s awesome!! Happy for you :D', 'created': '2024-11-06 06:20:14', 'submission_id': '1gkm92n'}
{'comment': 'Your Dad is so proud of you!', 'created': '2024-11-06 06:51:16', 'submission_id': '1gkm92n'}
{'comment': "Awe that's awesome", 'created': '2024-11-06 07:18:16', 'submission_id': '1gkm92n'}
{'comment': 'WE DID IT! TRUMP WON AND ITS HISTORIC!', 'created': '2024-11-06 07:28:25', 'submission_id': '1gkm92n'}
{'comment': 'Thanks dad!', 'created': '2024-11-06 08:07:33', 'submission_id': '1gkm92n'}
{'comment': 'We fucking won and I’m not going to edit this bc I know the mods here know we defeated evil and will hopefully give me a pass before the democrats try to not certify this. I still don’t trust them.', 'created': '2024-11-06 10:03:38', 'submission_id': '1gkm92n'}
{'comment': "Are the reasonings for other people that don't vote republican the same as ops dad", 'created': '2024-11-06 10:04:16', 'submission_id': '1gkm92n'}
{'comment': 'W dad!', 'created': '2024-11-06 11:36:58', 'submission_id': '1gkm92n'}
{'comment': 'Dems really underestimated immigration and the economy.', 'created': '2024-11-06 13:14:24', 'submission_id': '1gkm92n'}
{'comment': 'Like literally every American with a brain last night voting', 'created': '2024-11-06 13:21:14', 'submission_id': '1gkm92n'}
{'comment': 'The immigration issue is out of control. There are way too many Mexicans in my state (Tennessee)', 'created': '2024-11-06 14:02:31', 'submission_id': '1gkm92n'}
{'comment': 'Now that’s a Dad that knows how to use his brain', 'created': '2024-11-06 14:45:46', 'submission_id': '1gkm92n'}
{'comment': 'Tell your dad I said I love him', 'created': '2024-11-06 15:53:21', 'submission_id': '1gkm92n'}
{'comment': "What metric/factor is used to determine if an economy was better under a former administration than the current? \n\nPlease don't say stock market or gas prices.", 'created': '2024-11-06 16:20:13', 'submission_id': '1gkm92n'}
{'comment': 'Based.', 'created': '2024-11-07 01:07:50', 'submission_id': '1gkm92n'}
{'comment': '"Because... Economic" I agree with that message', 'created': '2024-11-07 01:27:22', 'submission_id': '1gkm92n'}
{'comment': 'My grandparents are democrats which I always found annoying but now that I see all these people freaking out over the election I’m so grateful they aren’t like that', 'created': '2024-11-09 16:38:27', 'submission_id': '1gkm92n'}
{'comment': 'Yes! If nothing else, please remember that. That was what I tried to get my friend to remember. She’s a democrat, hates Trump and always has. This time she also hates Kamala, so I’m hoping that bringing up the economy pushed her for Trump this time.', 'created': '2024-11-06 03:44:34', 'submission_id': '1gkm92n'}
{'comment': '"It\'s the economy, stupid" - Jim Carville', 'created': '2024-11-06 06:18:56', 'submission_id': '1gkm92n'}
{'comment': 'Good Dad indeed. \n\nIt\'s sad though that the far left 8 year disinformation campaign has essentially intimidated people into not openly stating they\'re for Trump.\n\nThe left Progressive disinformation campaign was successful enough to prevent a conversation between a Father/Daughter from being open about it with each other until election day. \n\nThat\'s not a knock at all on the OP. That has become "normal" for millions, including myself. A lot of people were manipulated into feeling ashamed for supporting Trump 8 years ago.\n\nI\'m happy that the conversation was eventually had with OP and Dad.\n\nWe can\'t let the mainstream media dictate our conversations with FAMILY!!! Or for that matter.... friends and family, or anyone else.\n\nIt\'s a Liberal tactic to scare people into not using their 1st amendment rights!\n\nAs a 40 year old, I bought my MAGA hat 9 months ago. I was initially afraid to wear it in my incredibly liberal state. I was afraid to wear a fucking hat! Eventually, I said fuck this. I\'m not going to be silenced. Oddly enough, the response by people was far more positive than negative.', 'created': '2024-11-06 06:22:10', 'submission_id': '1gkm92n'}
{'comment': 'me too, as someone living there!!!! so anxious', 'created': '2024-11-06 06:39:55', 'submission_id': '1gkm92n'}
{'comment': "Good for you. I am a Republican woman, but it's funny that over half the country has voted for him (so far), yet I didn't seem to run across a single Trump supporter online anywhere the last few months (particularlyin female groups). I, too, stayed mostly silent (especially on Reddit). Dems seem SHOCKED now; they no doubt assumed that their seemingly unopposed voice was the only one.", 'created': '2024-11-06 07:38:04', 'submission_id': '1gkm92n'}
{'comment': 'Same. I learned to shut my mouth and just vote about a decade ago.', 'created': '2024-11-06 13:38:40', 'submission_id': '1gkm92n'}
{'comment': 'Awesome! Love it.', 'created': '2024-11-06 02:31:37', 'submission_id': '1gklgr0'}
{'comment': 'Look at you! Great job!', 'created': '2024-11-06 06:43:50', 'submission_id': '1gklgr0'}
{'comment': 'Good for you, OP. I look forward to the calm, agreeable transfer of power. Even more, I look forward to everyone respecting the vote and not trying to change the results with endless, subversive legal maneuvers.', 'created': '2024-11-06 07:46:07', 'submission_id': '1gklgr0'}
{'comment': 'It was a lot of people like you that carried water. Also I have newfound respect for our patriot Latino brothers who really, really were astonishing. \n\nJust amazing.', 'created': '2024-11-06 11:42:24', 'submission_id': '1gklgr0'}
{'comment': 'Every vote is extremely important. Every election we have to scrounge for every vote we can get. Record republican turnouts every cycle from here on out. No exceptions no excuses! Vote like it’s neck and neck, and yours is the deciding vote ALWAYS. \n\nIt’s up to the Trump administration and our senators and reps to do right by the people. We need them to get good things in motion. If we loose the independent vote, we’re ruined. The independents entrusted our people to turn things around. We better not loose their trust or we’re just gonna give power right back to the dems in 2 years. Hold your representatives and senators to the highest standards. Write to them, call them, hound them non-stop to follow through. We need action day 1', 'created': '2024-11-08 20:58:35', 'submission_id': '1gklgr0'}
{'comment': 'You’re all morons. And I don’t vote. I’m not voting for Trump and I CERTAINLY wouldn’t vote for Kamala. But yall dumb.', 'created': '2024-11-06 02:45:29', 'submission_id': '1gklgr0'}
{'comment': 'Thank you! 🙏🏻 🇺🇸', 'created': '2024-11-06 07:05:56', 'submission_id': '1gklgr0'}
{'comment': 'You already know they will now say “he’s a felon” blah blah blah. They will do everything to make his presidency a living hell for him and Americans. Either way he won, we made it to big to rig and I’m so dang happy rn!', 'created': '2024-11-06 07:57:07', 'submission_id': '1gklgr0'}
{'comment': 'Ok?', 'created': '2024-11-06 02:48:17', 'submission_id': '1gklgr0'}
{'comment': 'Chose the better of the 2 poisons, how’s that dumb?', 'created': '2024-11-06 03:20:31', 'submission_id': '1gklgr0'}
{'comment': "If you don't vote, you're giving up your right as an American and letting others control your life. Sounds pretty dumb to me.", 'created': '2024-11-06 03:30:44', 'submission_id': '1gklgr0'}
{'comment': "It's okay not to vote, but don't name call others for doing so. That's what freedom is. We all made choices and they shouldn't be scrutinized by others.", 'created': '2024-11-06 04:00:32', 'submission_id': '1gklgr0'}
{'comment': 'So then it makes sense to vote for the lesser of two evils, no?', 'created': '2024-11-06 07:42:43', 'submission_id': '1gklgr0'}
{'comment': '🤝', 'created': '2024-11-06 07:57:43', 'submission_id': '1gklgr0'}
{'comment': 'Can’t you see?', 'created': '2024-11-06 02:49:49', 'submission_id': '1gklgr0'}
{'comment': 'Oh, they can see, but you cant hear', 'created': '2024-11-06 04:46:11', 'submission_id': '1gklgr0'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 01:00:22', 'submission_id': '1gkl9xu'}
{'comment': "Thank you for you're vote. Every one counts. Feeling good here because my state (Kentucky) has already been called for Trump! I hope your state is next", 'created': '2024-11-06 01:44:44', 'submission_id': '1gkl9xu'}
{'comment': 'Keep up the good work', 'created': '2024-11-06 01:02:14', 'submission_id': '1gkl9xu'}
{'comment': 'Amen brother', 'created': '2024-11-06 01:22:51', 'submission_id': '1gkl9xu'}
{'comment': 'Voted for Trump!!!!! 🇺🇸', 'created': '2024-11-06 02:54:57', 'submission_id': '1gkl9xu'}
{'comment': 'God bless you and everyone here (yes, even the commie spies lurking in here lol, Jesus loves you!)', 'created': '2024-11-06 06:45:52', 'submission_id': '1gkl9xu'}
{'comment': 'NY. First time voter. God bless you', 'created': '2024-11-06 02:06:02', 'submission_id': '1gkl9xu'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 00:14:26', 'submission_id': '1gkk9yw'}
{'comment': 'They all have that same condescending passive aggressive way of avoiding accountability for their actions. Just like the media they follow.', 'created': '2024-11-06 01:55:07', 'submission_id': '1gkk9yw'}
{'comment': "It's so sad the amount of hate these people have. Can't have a rational discussion at all.", 'created': '2024-11-06 00:35:25', 'submission_id': '1gkk9yw'}
{'comment': 'Thank you', 'created': '2024-11-06 00:59:47', 'submission_id': '1gkk9yw'}
{'comment': 'Ya because Cardi B seemed so smart when she endorsed Kamala she couldn\'t even speak from the heart when the teleprompter didn\'t work or think on her feet and say something half smart. Meghan thee Stallion was so intelligent at the DNC when she had to edit everything out of her songs because they are so ratchet all she could say was body ody ody ody...and let\'s not forget sexy red who said "I voted for Kamala don\'t let them tell us what to do with our coochies" they all seem so intelligent', 'created': '2024-11-06 00:52:25', 'submission_id': '1gkk9yw'}
{'comment': 'I cant stand these type of women. I cannot. My love you are stunning, gorgeous, and overall the ultimate standard in a woman. This is ridiculous at this point.', 'created': '2024-11-06 01:42:57', 'submission_id': '1gkk9yw'}
{'comment': 'Triggered as fuck. Trump save us.', 'created': '2024-11-06 00:46:44', 'submission_id': '1gkk9yw'}
{'comment': "That's what the left does. We live in a world so good and safe that they had to invent problems so they could have something to cry about, and when that fails, they find ways to inject themselves into situations so they can cry anyway.\n\nI'm yet to meet a Conservative who hasn't lost a Liberal friend in which the Conservative was the one who ended the friendship. These people are hateful, intolerant, and sad.\n\nKeep your chin up, you'll know quickly if not already that nothing of value was lost!", 'created': '2024-11-06 01:00:23', 'submission_id': '1gkk9yw'}
{'comment': 'Dang, she was passive aggressive from the beginning.', 'created': '2024-11-06 01:44:47', 'submission_id': '1gkk9yw'}
{'comment': 'She will never forget this moment! 😂 She shriveled! Good stuff, OP! Killed it with Class!! 🇺🇸', 'created': '2024-11-06 02:26:04', 'submission_id': '1gkk9yw'}
{'comment': "It's the JOYFUL party!!! Full of tolerance and affirmation and JOY!! JOY, I say, JOY!!! 😂😂😂", 'created': '2024-11-06 02:35:06', 'submission_id': '1gkk9yw'}
{'comment': 'Liberals are an angry bunch', 'created': '2024-11-06 06:23:42', 'submission_id': '1gkk9yw'}
{'comment': 'Love it! The left are always triggered by something! 🇺🇸🇺🇸🇺🇸', 'created': '2024-11-06 00:53:58', 'submission_id': '1gkk9yw'}
{'comment': 'At least she called herself out for being butt ugly', 'created': '2024-11-06 00:46:48', 'submission_id': '1gkk9yw'}
{'comment': 'I love that shirt and need one!😍', 'created': '2024-11-06 01:16:02', 'submission_id': '1gkk9yw'}
{'comment': 'Always so condescending', 'created': '2024-11-06 02:35:50', 'submission_id': '1gkk9yw'}
{'comment': 'Ha, you can hear the envy in her words.', 'created': '2024-11-06 00:38:23', 'submission_id': '1gkk9yw'}
{'comment': 'You handled that super maturely', 'created': '2024-11-06 01:19:07', 'submission_id': '1gkk9yw'}
{'comment': 'Pretty and smart women vote republican. Only dumb ones vote Democrat', 'created': '2024-11-06 05:19:47', 'submission_id': '1gkk9yw'}
{'comment': 'The passive aggressiveness is wild', 'created': '2024-11-06 08:27:39', 'submission_id': '1gkk9yw'}
{'comment': 'lol brah she got triggered. Bet you she got hit with the ugly shovel a few times jk jk', 'created': '2024-11-06 01:27:43', 'submission_id': '1gkk9yw'}
{'comment': 'All the worlds a stage.\nBe in the world not of the world', 'created': '2024-11-06 02:46:07', 'submission_id': '1gkk9yw'}
{'comment': 'I wish I could say I’m surprised! 🙄', 'created': '2024-11-06 03:47:21', 'submission_id': '1gkk9yw'}
{'comment': 'Now is the time to GLOAT', 'created': '2024-11-06 10:43:15', 'submission_id': '1gkk9yw'}
{'comment': 'The tolerant left lol', 'created': '2024-11-06 14:25:12', 'submission_id': '1gkk9yw'}
{'comment': '“Anyways be respectful to one another haha”\nYeah after passive-aggressively calling you stupid? Yeah okay Suzy', 'created': '2024-11-06 04:48:19', 'submission_id': '1gkk9yw'}
{'comment': 'Seems to be true in my estimation!', 'created': '2024-11-06 04:49:09', 'submission_id': '1gkk9yw'}
{'comment': 'How’s that convo evolved given the current climate?', 'created': '2024-11-06 12:03:22', 'submission_id': '1gkk9yw'}
{'comment': "Let's be respectful after I just called half of all women stupid.", 'created': '2024-11-10 14:51:33', 'submission_id': '1gkk9yw'}
{'comment': 'Hello . I am curious why you voted this way . Most women are voting for Dems due to abortion rights', 'created': '2024-11-06 05:12:01', 'submission_id': '1gkk9yw'}
{'comment': 'Awe how cute a political quarrel on another social media platform. Lol.', 'created': '2024-11-06 01:47:13', 'submission_id': '1gkk9yw'}
{'comment': 'This is exactly why everyone is so divided.', 'created': '2024-11-06 02:00:48', 'submission_id': '1gkk9yw'}
{'comment': "He's going to victory baby!", 'created': '2024-11-06 09:45:34', 'submission_id': '1gkk9yw'}
{'comment': "It absolutely blows my mind the number of dems that have cut off family over politics! My sister is pretty hard left, and we get along great. We don't talk politics, but we never really have. Family. It's crazy.", 'created': '2024-11-06 02:27:24', 'submission_id': '1gkk9yw'}
{'comment': 'Etsy!!', 'created': '2024-11-06 01:57:13', 'submission_id': '1gkk9yw'}
{'comment': 'I’m voting for a better economy, cost of living, and secure borders.', 'created': '2024-11-06 05:20:54', 'submission_id': '1gkk9yw'}
{'comment': 'Thanks . I hope you undertand that my original question was asked out of curiosity , not a partisan take . I did vote straight R this time', 'created': '2024-11-06 05:28:36', 'submission_id': '1gkk9yw'}
{'comment': 'To go a little further, as a woman, the abortion rights don’t matter if you take care of yourself & have some decency. So I don’t really care for that. Like she said, better economy, cost of living & secure borders. I’d also like to throw in better food quality if he successfully gets these harmful pesticides out of our food!', 'created': '2024-11-06 12:28:01', 'submission_id': '1gkk9yw'}
{'comment': "Same here. I've never needed to worry about abortions because I'm not a giant idiot and understand that my actions have consequences and that life begins at conception. If I can do it, anyone can. \n\nAnd I'm sick of Americans always coming last. Our economy sucks and the border is insane. Im sick of the war mongering, of the gender bull shit brain washing out children. Im sick and tired of being sick and tired, and something had to change. I couldn't handle another 4 years of the same bull shit.", 'created': '2024-11-06 13:49:56', 'submission_id': '1gkk9yw'}
{'comment': "/r/Republican is a partisan subreddit. This is a place for Republicans to discuss issues with other Republicans.\nTo those visiting this thread, we ask that unless you identify as Republican that you refrain from commenting and [leave the vote button alone](https://www.reddit.com/r/MetaRepublican/comments/5t017a/this_sub_is_for_republicans_if_you_do_not/). Non republicans who come to our sub looking for a 'different perspective' [subvert that very perspective with their own views when they vote or comment.](http://i.imgur.com/XqL0wfR.jpg)\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/Republican) if you have any questions or concerns.*", 'created': '2024-11-06 00:10:53', 'submission_id': '1gkk78c'}
{'comment': "I think we'll have to be very careful before we start crying out any kind of rigging here", 'created': '2024-11-06 00:18:46', 'submission_id': '1gkk78c'}
Sentiment Analysis for conservatives¶
In [ ]:
# Empty list to store the results
results = []
# Loop through each comment
for entry in text: # Assuming text contains dictionaries with "comment", "created", and "submission_id"
comment = entry.get("comment") # Extract the comment
created = entry.get("created") # Extract the created timestamp
submission_id = entry.get("submission_id") # Extract the submission ID
if comment and isinstance(comment, str) and comment.strip():
preprocessed_comment = preprocess(comment)
# Tokenize and prepare input
encoded_input = tokenizer(preprocessed_comment, return_tensors='pt', truncation=True, max_length=512)
output = model(**encoded_input)
# Get the logits and apply softmax
scores = output[0][0].detach().numpy()
scores = softmax(scores)
# Find the top sentiment
ranking = np.argsort(scores)[::-1]
top_sentiment = labels[ranking[0]]
top_score = np.round(float(scores[ranking[0]]), 4)
# Save the result
results.append({
"Comment": comment,
"Created": created, # Add the original timestamp from the JSON
"Submission ID": submission_id, # Add the submission ID
"Sentiment": top_sentiment,
"Score": top_score,
"Negative Probability": np.round(float(scores[0]), 4),
"Neutral Probability": np.round(float(scores[1]), 4),
"Positive Probability": np.round(float(scores[2]), 4),
})
# Add Subreddit column
for item in results:
item["Subreddit"] = "r/Republican"
# Convert to DataFrame
df = pd.DataFrame(results)
# Check the DataFrame
print(df)
# Save to CSV
df.to_csv("republican_sentiment_checck.csv", index=False)
print("Results saved to 'republican_sentiment.csv'")
Comment Created \
0 /r/Republican is a partisan subreddit. This i... 2024-11-18 23:13:31
1 We are witnessing the culture changing in a ve... 2024-11-18 23:23:38
2 Too bad he is kind of a terrible person at times. 2024-11-18 23:44:19
3 There was another post of his followings, and ... 2024-11-18 23:33:44
4 Don't be petty like the left dude. This was a ... 2024-11-18 23:37:03
... ... ...
11269 Thanks . I hope you undertand that my original... 2024-11-06 05:28:36
11270 To go a little further, as a woman, the aborti... 2024-11-06 12:28:01
11271 Same here. I've never needed to worry about ab... 2024-11-06 13:49:56
11272 /r/Republican is a partisan subreddit. This i... 2024-11-06 00:10:53
11273 I think we'll have to be very careful before w... 2024-11-06 00:18:46
Submission ID Sentiment Score Negative Probability \
0 1guh6id neutral 0.6332 0.2822
1 1guh6id positive 0.9762 0.0029
2 1guh6id negative 0.9765 0.9765
3 1guh6id negative 0.9117 0.9117
4 1guh6id positive 0.8068 0.0422
... ... ... ... ...
11269 1gkk9yw positive 0.6783 0.0149
11270 1gkk9yw negative 0.6222 0.6222
11271 1gkk9yw negative 0.9781 0.9781
11272 1gkk78c neutral 0.6332 0.2822
11273 1gkk78c negative 0.5337 0.5337
Neutral Probability Positive Probability Subreddit
0 0.6332 0.0846 r/Republican
1 0.0210 0.9762 r/Republican
2 0.0209 0.0025 r/Republican
3 0.0811 0.0073 r/Republican
4 0.1510 0.8068 r/Republican
... ... ... ...
11269 0.3068 0.6783 r/Republican
11270 0.3267 0.0511 r/Republican
11271 0.0195 0.0024 r/Republican
11272 0.6332 0.0846 r/Republican
11273 0.4485 0.0178 r/Republican
[11274 rows x 9 columns]
Results saved to 'republican_sentiment.csv'
Extract comments from the json-file, which contains comments from r/liberal¶
In [ ]:
# use the function
text_lib = extract_comments(data_lib)
# lets see what it looks like
for comment in text_lib:
print(comment)
{'comment': 'If it\'s the Lord\'s Prayer, there\'s this part:\n\n"Forgive us of our trespasses...."\n\nHe could follow that up with this video of Trump FLAT OUT saying he doesn\'t ask for forgiveness:\n\n[https://youtu.be/bp73zbYwaqw?si=r5PSVv8E3U3DW-mX](https://youtu.be/bp73zbYwaqw?si=r5PSVv8E3U3DW-mX)\n\nYa know, just for good measure. Maybe it was just Jesus being super silly.\n\nI\'m sure he knows best though, ya know, like Satan.', 'created': '2024-11-18 23:58:09', 'submission_id': '1gui2mk'}
{'comment': 'N op e', 'created': '2024-11-18 23:55:36', 'submission_id': '1gui2mk'}
{'comment': 'Focusing on the guy with overt ties to Project 2025 should be a no brainer', 'created': '2024-11-18 22:29:57', 'submission_id': '1gug0x3'}
{'comment': 'Tom Homan was a P25 contributor as well.', 'created': '2024-11-18 23:48:11', 'submission_id': '1gug0x3'}
{'comment': 'I don’t think the smoke screen for the ship of fools is working. We can still see the 💩 on deck: Carr.', 'created': '2024-11-18 22:59:07', 'submission_id': '1gug0x3'}
{'comment': "Sometimes the easiest place to hide something is in plain sight.\n\nAll the signs were there back in 2017. So congrats America. This is how the information war begins. You think it's bad now? It'll get much much worse.", 'created': '2024-11-18 22:49:17', 'submission_id': '1gug0x3'}
{'comment': 'Should be, but won’t be. Unfortunately.', 'created': '2024-11-18 23:08:30', 'submission_id': '1gug0x3'}
{'comment': 'https://preview.redd.it/b7yuksguhq1e1.jpeg?width=500&format=pjpg&auto=webp&s=75795d7c3e85123c97fd54a183e1f1a99824889e', 'created': '2024-11-18 23:12:00', 'submission_id': '1gufxyb'}
{'comment': 'Sarcasm does not work the way we want it to. Half of these would be proudly displayed by maga weirdos.', 'created': '2024-11-18 23:47:49', 'submission_id': '1gufxyb'}
{'comment': 'The Democratic Party has absolutely no idea how to engage and relate to the working class anymore, especially the moderates. They spent the last 3 months basically telling them "No stupid, the economy is great! Shut up!" Meanwhile the Republicans validated the people\'s concerns about higher prices. They said "You\'re right! I\'ll change it!" And regardless of whether they will or not, the Democrats offered absolutely zero solutions to high costs of eggs, which, like it or not, is the main issue on a shit ton of people\'s minds. \n\nI think that is why we\'re here.', 'created': '2024-11-18 23:42:29', 'submission_id': '1gufxaa'}
{'comment': 'Making nice with anti-Trump Republicans also didn’t yield a damn thing.', 'created': '2024-11-18 23:48:04', 'submission_id': '1gufxaa'}
{'comment': "I read this too this morning. It gives you an idea where things are at right now. Don't think it can only happen in Europe. If Europe erupts, America will eventually have to help.", 'created': '2024-11-18 22:16:23', 'submission_id': '1gueejr'}
{'comment': None, 'created': '2024-11-18 22:06:39', 'submission_id': '1gueejr'}
{'comment': 'Would Trump send US soldiers to help Europe or Russia?', 'created': '2024-11-18 22:19:12', 'submission_id': '1gueejr'}
{'comment': 'The only good news is that going to war under a Republican president would probably do terrible damage to the GOP and basically hand Democrats the election for free in 2028.', 'created': '2024-11-18 23:02:03', 'submission_id': '1gueejr'}
{'comment': 'Russia without a doubt', 'created': '2024-11-18 22:26:06', 'submission_id': '1gueejr'}
{'comment': 'Yeah like it did in 2004? I might be a little jaded but I doubt that a war would give Democrats a win in 2028\xa0', 'created': '2024-11-18 23:36:50', 'submission_id': '1gueejr'}
{'comment': 'Time for Dems to initiate a **McBoycott**.\n\nFries are limp and soggy, and shrinkflation has made this particular fast-food franchise a McFailure like no other.', 'created': '2024-11-18 21:09:50', 'submission_id': '1gue4ve'}
{'comment': 'Corporate greed.', 'created': '2024-11-18 22:10:27', 'submission_id': '1gue4ve'}
{'comment': "I haven't liked mcdonald's for years. It's just better options for a better price, like in my area, is cookout for a fast meal", 'created': '2024-11-18 21:55:31', 'submission_id': '1gue4ve'}
{'comment': 'That fucker could buy a couple potatoes for $3 and make his own fries!', 'created': '2024-11-18 23:24:02', 'submission_id': '1gue4ve'}
{'comment': 'Brother I am on a fasting day and literally starving right now, why did you have to post a picture of McDonalds fries in the Democrat subreddit 😭', 'created': '2024-11-18 22:45:05', 'submission_id': '1gue4ve'}
{'comment': 'They got rid of Super Size\n\nthanks Obambae', 'created': '2024-11-18 21:21:46', 'submission_id': '1gue4ve'}
{'comment': 'Garage food and company that supports Trump', 'created': '2024-11-18 22:07:56', 'submission_id': '1gue4ve'}
{'comment': 'Kennedy is gonna make McDonald’s illegal anyhow…or Trump will make all restaurants have his name in it. \n\n“Cafe Donald” “Bistro Donald” “Papa Donalds” Donald garden” “Donald Lobster” “Donald’s chick Fil A” “taco Donald” “five Donald’s” “Donald express”', 'created': '2024-11-18 22:20:23', 'submission_id': '1gue4ve'}
{'comment': 'I mean Dems will be blaming Trump for the price of everything in 4 years too. Just how it goes', 'created': '2024-11-18 22:04:18', 'submission_id': '1gue4ve'}
{'comment': 'New health food for USA', 'created': '2024-11-18 21:18:21', 'submission_id': '1gue4ve'}
{'comment': 'No brand is more associated with Donald than McDonald’s. It’s actually a good national boycott target that will affect the economy nationally and make him look terrible. \n\nOrganizers, are you watching?', 'created': '2024-11-18 22:21:59', 'submission_id': '1gue4ve'}
{'comment': 'I just think it’s funny people think Trump will magically convince companies to bring down food prices', 'created': '2024-11-18 21:12:05', 'submission_id': '1gue4ve'}
{'comment': 'Honestly Wendy’s has better fries', 'created': '2024-11-18 22:56:03', 'submission_id': '1gue4ve'}
{'comment': 'Am I the only one who thinks soggy fries taste better? Finding a soggy fry in my carton is like the jackpot to me.', 'created': '2024-11-18 22:45:52', 'submission_id': '1gue4ve'}
{'comment': 'I don’t remember fast food being cheap when Trump was in office', 'created': '2024-11-18 22:11:05', 'submission_id': '1gue4ve'}
{'comment': 'I just think it’s funny that Trump supporters insist on acting like kids', 'created': '2024-11-18 22:00:09', 'submission_id': '1gue4ve'}
{'comment': 'I stopped eating fast food often whenever I started working at a fast food restaurant and noticed that 99% of our customers over the age of 45 literally had like 3 teeth and they were all brown and rotten. No thank you!', 'created': '2024-11-18 22:47:27', 'submission_id': '1gue4ve'}
{'comment': 'It’s like he wanted to use the opportunity to whine', 'created': '2024-11-18 23:25:05', 'submission_id': '1gue4ve'}
{'comment': 'Lol', 'created': '2024-11-18 22:46:43', 'submission_id': '1gue4ve'}
{'comment': 'Bush was president', 'created': '2024-11-18 21:26:42', 'submission_id': '1gue4ve'}
{'comment': 'That Super Size Me guy died too! \n\nThanks Obambae!', 'created': '2024-11-18 21:46:43', 'submission_id': '1gue4ve'}
{'comment': 'They won’t have to wait it’ll be two at best', 'created': '2024-11-18 22:22:45', 'submission_id': '1gue4ve'}
{'comment': 'Everybody who’s got a brain cell will be blaming trump in 4 yrs. He has control of the house, senate and presidency. Unless his tariffs actually work. 😕\nAnd yes I know it’s corporate greed and not the president who determines the prices companies set. I still want to hear how they are going to blame dems when the ball is totally in their court.', 'created': '2024-11-18 22:22:18', 'submission_id': '1gue4ve'}
{'comment': 'I think it’s funny that folks treat Trump like he’s a god', 'created': '2024-11-18 21:20:21', 'submission_id': '1gue4ve'}
{'comment': 'And hey, we might lose a couple pounds. 🤷🏼\u200d♂️', 'created': '2024-11-18 22:26:28', 'submission_id': '1gue4ve'}
{'comment': 'Fewer immigrants, less demand (never mind the laborers who grow, harvest, and prepare the food). Less health restrictions, lower overhead (never mind the quality of the food and the resulting healthcare costs).', 'created': '2024-11-18 21:32:56', 'submission_id': '1gue4ve'}
{'comment': "And I'm betting that his base has NO F-ING CLUE\nthat around the day he starts these deportations food prices will probably spike ABOVE that of Covid. . . . . overnight🤔", 'created': '2024-11-18 22:51:29', 'submission_id': '1gue4ve'}
{'comment': 'I know people who voted for him based on that exact same reason. Shakes head.', 'created': '2024-11-18 22:53:47', 'submission_id': '1gue4ve'}
{'comment': "Corporate greed. It's not about the administration. It's about allowing greed.", 'created': '2024-11-18 22:12:09', 'submission_id': '1gue4ve'}
{'comment': 'I resisted saying they’re already preemptively blaming him because of the tariffs.\n\nNot a new story playing out here.', 'created': '2024-11-18 22:42:19', 'submission_id': '1gue4ve'}
{'comment': 'Everyone always finds a way to blame the other person. Politicians make sure the message that gets out is that it’s the other side’s fault. And for the most part, it works.', 'created': '2024-11-18 22:41:33', 'submission_id': '1gue4ve'}
{'comment': 'Not to sound elitist, but the whiny customer looked a bit dusty.', 'created': '2024-11-18 22:14:26', 'submission_id': '1gue4ve'}
{'comment': "You're not paying extra for greed then. Good for you. It's not being whiny, it's about false inflation.", 'created': '2024-11-18 22:17:03', 'submission_id': '1gue4ve'}
{'comment': 'I tried to explain this type of stuff to my republican coworker, but he couldn’t get it', 'created': '2024-11-18 22:18:09', 'submission_id': '1gue4ve'}
{'comment': 'They never do. They will hopefully get it before the midterms.', 'created': '2024-11-18 22:19:29', 'submission_id': '1gue4ve'}
{'comment': "They have the house, the Senate, the Presidency, and the supreme court.\n\nReally doesn't matter if 50% of the country supports the republican plan. It isn't like they're not going to push shit thru because Billy Bob in bum fuck Oklahoma is mad his Food Stamps will be cut, because he's still going to vote republican every election, the rest of his life.", 'created': '2024-11-18 20:06:37', 'submission_id': '1guccjn'}
{'comment': 'Win by a little or win by a lot, I am not sure it matters to him. They have ALL of government.', 'created': '2024-11-18 20:10:19', 'submission_id': '1guccjn'}
{'comment': "I take solace in the fact that Trump didn't really gain any new voters, just more Dems decided to stay home.", 'created': '2024-11-18 20:09:28', 'submission_id': '1guccjn'}
{'comment': "His mandate is even less than that. Because tens of millions of people were conned into voting for him. They voted based on lies. They don't support much of what he *actually* wants to do.", 'created': '2024-11-18 20:01:04', 'submission_id': '1guccjn'}
{'comment': "Trump's support is shallow, except for the cult. But with GOP control of all branches of government, the decare emergency thing, a compliant press, and rightwing dominated social media, we're going to be in a world of pain and heartbreak.\n\nThat's the playing field, whether we like it or not. \n\nThis was the most helpful thing I read about what to do next: https://blog.glyph.im/2024/11/its-time-for-democrats-to-get-more-annoying.html", 'created': '2024-11-18 20:25:00', 'submission_id': '1guccjn'}
{'comment': 'Bush II did this, too. Even after losing the popular vote in 2000, the Bush White House claimed they had a mandate.\n\n(Edited to correct date.)', 'created': '2024-11-18 19:56:27', 'submission_id': '1guccjn'}
{'comment': 'That’s cute. He still has a trifecta and we’re still fucked.', 'created': '2024-11-18 20:34:16', 'submission_id': '1guccjn'}
{'comment': "any slip up with economy in '25 and '26 will be a huge swing for (D) in House.", 'created': '2024-11-18 20:45:44', 'submission_id': '1guccjn'}
{'comment': 'Wait until he is in office. \nHis approval rating among voters is going to plummet to record low levels. \n\nI promise you that!\n\nHe’s already pissing off a lot of people in his own party with his cabinet picks and appointments.\n\nI get to say “I told you so” for the next 4 years.\n\nHe’s already at 44% approval rating and he hasn’t even taken office. I don’t think he’ll ever be above 50% again. \nhttps://projects.fivethirtyeight.com/polls/favorability/donald-trump/', 'created': '2024-11-18 23:53:19', 'submission_id': '1guccjn'}
{'comment': 'Never forget that Republicans always govern as if they have a mandate and democrats always govern as if they are timid little mice temporarily occupying space\n\nWe need to start fighting back', 'created': '2024-11-18 21:27:22', 'submission_id': '1guccjn'}
{'comment': 'The timeline shifted after Harambe.', 'created': '2024-11-18 20:30:06', 'submission_id': '1guccjn'}
{'comment': 'Could the slim House majority help us avoid some of the worst plans?\xa0', 'created': '2024-11-18 21:13:22', 'submission_id': '1guccjn'}
{'comment': 'Is he gonna appoint Joker for a job in his cabinet?', 'created': '2024-11-18 20:04:57', 'submission_id': '1guccjn'}
{'comment': 'We have a winner take all system. Whether you win by 0.1% or 10%, you have control. If you also control the legislature and judiciary, there are no checks and balances. “Mandate” means very little in this situation. Sorry to sound so negative but this is what we’re facing.', 'created': '2024-11-18 20:44:45', 'submission_id': '1guccjn'}
{'comment': "and yet it still gives him the power to basically do whatever the hell he wants. This isn't the own we all think it is.", 'created': '2024-11-18 20:04:43', 'submission_id': '1guccjn'}
{'comment': 'Glass half full! Woo!', 'created': '2024-11-18 20:12:54', 'submission_id': '1guccjn'}
{'comment': 'Maybe the media should have waited before declaring it a blowout loss.', 'created': '2024-11-18 23:05:10', 'submission_id': '1guccjn'}
{'comment': 'Trump last I saw had around 76M votes and there’s 260M registered voters. So he received around 29% of the vote. Not much of a mandate. Kamala got 28%.', 'created': '2024-11-18 21:36:53', 'submission_id': '1guccjn'}
{'comment': 'Remember, remember the 5th of november...', 'created': '2024-11-18 20:24:56', 'submission_id': '1guccjn'}
{'comment': 'With complete control of congress, doesn’t really matter. Fun statistic but.', 'created': '2024-11-18 20:37:12', 'submission_id': '1guccjn'}
{'comment': "Well no one tell Trump or the GOP that. They're about to indirectly kill an obscenely large number of people.", 'created': '2024-11-18 20:55:51', 'submission_id': '1guccjn'}
{'comment': '>Modern scholars have written about the presidential mandate as a myth or a fictional device used solely as rhetoric to further a political agenda. After all, there is no basis for the idea in written law - the words “presidential mandate” do not appear anywhere in the U.S. Constitution. However, the concept of a presidential mandate is powerful not because it is any kind of legal statute, but because it is an idea of how power and leadership work in a representative democracy. This idea can be appealing to many people, especially for presidents who consider it a free pass for doing what they want in office.\n\n>No one should be blinded by the idea of an all-powerful mandate that gives the president the right to unlimited power. Checks and balances exist for a reason, and we all have the right to be part of the political process, not only as passive observers but as active participants.\n\nhttps://academy4sc.org/video/presidential-mandate-the-right-to-govern/', 'created': '2024-11-18 21:05:55', 'submission_id': '1guccjn'}
{'comment': 'sadly, mandates are not real things.', 'created': '2024-11-18 21:22:27', 'submission_id': '1guccjn'}
{'comment': 'Who cares? Mandates were a thing of politics past, like building a coalition or bringing the country together. These days it’s fully about exercising every lever of power you can while you have access to it, because (especially for Republicans) the house and the senate will just fall in line behind you for anything you want to do.', 'created': '2024-11-18 21:23:33', 'submission_id': '1guccjn'}
{'comment': 'All of these numbers do not salve my disappointment. Trump and his allies will not moderate their extreme agenda one jot because his margin of victory is smaller than originally projected.', 'created': '2024-11-18 22:13:29', 'submission_id': '1guccjn'}
{'comment': 'Here’s hoping this majority is a paper tiger and these are the death rattles of the GOP. Something something candles burning brightest at their end something something.', 'created': '2024-11-18 23:23:31', 'submission_id': '1guccjn'}
{'comment': "Trump won. They took the Senate and kept the house.\n\nIf Kamala had won, kept the Senate and took the House, we'd be celebrating her having a mandate to do whatever she wants.", 'created': '2024-11-18 20:33:00', 'submission_id': '1guccjn'}
{'comment': 'The deep state transgender Antifas have done it again and are stuffing migrant ballots in pizza boxes to inflate Kamabla’s popular vote!\n\n', 'created': '2024-11-18 19:59:33', 'submission_id': '1guccjn'}
{'comment': 'Well, yeah, getting only slightly more than half of the cast ballots (that we know of as of today), is hardly a mandate. But when has that ever stopped or even slowed the rush of republicans to push their agenda down our throats?', 'created': '2024-11-18 20:38:21', 'submission_id': '1guccjn'}
{'comment': 'Doesn’t matter.', 'created': '2024-11-18 20:58:50', 'submission_id': '1guccjn'}
{'comment': 'https://preview.redd.it/1j55bktdxp1e1.jpeg?width=640&format=pjpg&auto=webp&s=6876f1e113dec62c0aa44d45fe2125fd7c0c059b', 'created': '2024-11-18 21:17:21', 'submission_id': '1guccjn'}
{'comment': 'People are really here debating whether the guy that got elected has a mandate to fulfill his proposed agenda.\n\nPeople: he won the election and his party controls Congress and the court. How dafuq you interpret that and say “people don’t want him to fulfill his agenda?”\n\nI’m a Democrat but this logic shouldn’t be partisan. Makes you look silly. Like the word “mandate” has a hard limit.', 'created': '2024-11-18 21:21:34', 'submission_id': '1guccjn'}
{'comment': "They dont care about facts. How haven't we learned this by now?", 'created': '2024-11-18 22:26:02', 'submission_id': '1guccjn'}
{'comment': 'Just saying “he doesn’t have a mandate” is not going to be very effective, but I’ll bet it ends up being pretty prevalent.', 'created': '2024-11-18 23:01:16', 'submission_id': '1guccjn'}
{'comment': 'Demand a RECOUNT!', 'created': '2024-11-18 23:30:08', 'submission_id': '1guccjn'}
{'comment': 'WE are all going to be so fucked. Sorry for the pessimism but I dread the next four years, and honestly years following.', 'created': '2024-11-18 23:36:19', 'submission_id': '1guccjn'}
{'comment': "Hell never admit he didn't win the popular vote.", 'created': '2024-11-18 23:38:19', 'submission_id': '1guccjn'}
{'comment': 'When Republicans start losing because of the electoral college they will want to get rid of it.', 'created': '2024-11-18 23:39:13', 'submission_id': '1guccjn'}
{'comment': 'You simply cannot understand the mind of this voter. Transgender athletes MUST BE STOPPED!! All three of them. \n\nThese people spend A LOT of time thinking of penises. Some would wonder why?', 'created': '2024-11-18 20:27:16', 'submission_id': '1guccjn'}
{'comment': None, 'created': '2024-11-18 20:21:41', 'submission_id': '1guccjn'}
{'comment': 'He didn’t know he had the DIABEETUS til Obamacare. /s', 'created': '2024-11-18 20:39:32', 'submission_id': '1guccjn'}
{'comment': 'plus they have 28 out of 50 Governor Slots.', 'created': '2024-11-18 20:46:14', 'submission_id': '1guccjn'}
{'comment': "Right, the election is over, barring something preventing trump taking office we are going to get whatever shitshow he comes up with. Saying it's awful didn't stop him winning, it's not enough to just complain about it and *wish* the Dems fare better in the future. \n\nYou can kinda only count on the dysfunction of the Republican party to show this down... When he requires Congress to act. \n\nThe Democrats were basically elated to get a 50/50 Senate. It clearly wasn't good enough. They need to pivot, work on messaging, blah blah because 'Republicans bad' isn't cutting it.", 'created': '2024-11-18 21:27:21', 'submission_id': '1guccjn'}
{'comment': 'Oh no I’m sure AG Gaetz will insist on having a mandate', 'created': '2024-11-18 20:26:41', 'submission_id': '1guccjn'}
{'comment': 'Reading this makes me stomach turn.', 'created': '2024-11-18 20:39:57', 'submission_id': '1guccjn'}
{'comment': 'Or..something else.', 'created': '2024-11-18 20:13:45', 'submission_id': '1guccjn'}
{'comment': None, 'created': '2024-11-18 20:23:33', 'submission_id': '1guccjn'}
{'comment': '> except for the cult\n\nSo like 40% of the country?', 'created': '2024-11-18 22:21:11', 'submission_id': '1guccjn'}
{'comment': 'well that little light in the darkness didnt last long🤣', 'created': '2024-11-18 20:30:30', 'submission_id': '1guccjn'}
{'comment': 'It’s still a damn shame that Gore lost in 2000. Thanks, SCOTUS.', 'created': '2024-11-18 20:11:48', 'submission_id': '1guccjn'}
{'comment': 'Bush lost the popular vote in 2000, not 2020. He won the popular vote and claimed a mandate after the election in 2004, not 2020.', 'created': '2024-11-18 21:59:44', 'submission_id': '1guccjn'}
{'comment': "Hopefully. The Republicans aren't monolithic in their interests.", 'created': '2024-11-18 21:36:45', 'submission_id': '1guccjn'}
{'comment': 'Trump *is* the Joker.', 'created': '2024-11-18 21:05:41', 'submission_id': '1guccjn'}
{'comment': 'Unfortunately. Although, I still have hope that there will be barriers. But I certainly know that it’s weaker than it was in Trump’s 1st term, especially with the horrible cabinet selections that Trump has made.', 'created': '2024-11-18 20:08:21', 'submission_id': '1guccjn'}
{'comment': "Remember, remember the 5th of November, the day that democracy was lost. I can think of no reason to support the fascist treason but rather will work to see that Trump's plans get tossed.", 'created': '2024-11-18 20:50:27', 'submission_id': '1guccjn'}
{'comment': "Funny how they can't stand transgender in sports but are fine with a 27 year old beating up a 60 year old man.", 'created': '2024-11-18 23:32:57', 'submission_id': '1guccjn'}
{'comment': 'I thought it was 4 but Jenner already stopped playing sports, so she is being a bitch.', 'created': '2024-11-18 20:34:32', 'submission_id': '1guccjn'}
{'comment': 'The message is about how this is what Democrats are focused on as opposed to “real issues.” Not only are the Republicans anti trans, but they spent so much time concocting a narrative that the Democrats are pro-trans, and making that their priority.\n\nThe Democrats are losing the media war, since their opponents push narratives that are more concerned with results, rather than truth, and are willing to lie and cheat to win. Fuck decency, fuck truth, the Democrats need to stoop to their level and get some results.', 'created': '2024-11-18 21:23:01', 'submission_id': '1guccjn'}
{'comment': 'Really we should just be done with it and make Joe Exotic a real tiger king', 'created': '2024-11-18 20:40:09', 'submission_id': '1guccjn'}
{'comment': 'I see what you did there.', 'created': '2024-11-18 23:13:24', 'submission_id': '1guccjn'}
{'comment': 'You\'re not the only one. Russia bragged about him relying on "forces" to win. His rallies were mostly empty and he wasn\'t even trying, saying he "has all the votes he needs" no matter what. It doesn\'t take a tinfoil hat and the 5th page of Google to figure it out. I remember there were warnings months prior to the election that he would implore right leaning folks to become poll workers specifically to mess with the votes. There was definitely tampering, we just don\'t know to what extent', 'created': '2024-11-18 20:24:43', 'submission_id': '1guccjn'}
{'comment': 'The something else was lower turnout from insane covid highs and independents swinging his way', 'created': '2024-11-18 22:20:34', 'submission_id': '1guccjn'}
{'comment': "seriously, months leading up to the election every dingle Trump voter I met had misinformation. One told me Kamala and the Clintons were at Diddy parties, she'd seen it on youtube (*slight possibility Bill was there)", 'created': '2024-11-18 20:27:53', 'submission_id': '1guccjn'}
{'comment': "You can put your coworker at ease by showing them [this chart](https://www.bea.gov/news/2024/gross-domestic-product-third-quarter-2024-advance-estimate) which shows the US economic growth from the past four years. Outside of greedflation which would require government regulation (I know right? puuuuke) to correct, the economy has been doing fan-fucking-tastic during Biden's presidency.", 'created': '2024-11-18 20:28:12', 'submission_id': '1guccjn'}
{'comment': 'My friend’s coworker told her before the election that if my friend voted for Harris, she “better get ready to have to speak Russian.” Tragic mass brainwashing.', 'created': '2024-11-18 21:58:30', 'submission_id': '1guccjn'}
{'comment': "He didn't lose. He just wasn't permitted to serve.", 'created': '2024-11-18 20:42:10', 'submission_id': '1guccjn'}
{'comment': '>During his first term in office, President George W. Bush claimed that he had a clear political mandate from the voters of the United States to achieve his political goals. However many refuted the claim that President Bush had a political mandate considering he had lost the national popular vote and only gained the White House with a razor thing victory of the State of Florida, which took thirty-six days and the United States Supreme Court to decide.\n\nSource: http://www.inquiriesjournal.com/articles/271/thirty-six-days-of-turmoil-george-w-bush-and-the-2000-election\n\nThanks for the date correction.', 'created': '2024-11-18 22:08:24', 'submission_id': '1guccjn'}
{'comment': 'Not really,Trump is Two Face', 'created': '2024-11-18 21:30:10', 'submission_id': '1guccjn'}
{'comment': 'I am also hoping there will be restrictions and push-back. Example: Senator Thune for SML.', 'created': '2024-11-18 20:17:18', 'submission_id': '1guccjn'}
{'comment': 'so many wont get in, its a strategy', 'created': '2024-11-18 20:29:30', 'submission_id': '1guccjn'}
{'comment': 'With clear, uh...shall we say, deficits?', 'created': '2024-11-18 23:44:34', 'submission_id': '1guccjn'}
{'comment': 'Should be the entire Wikipedia page for “entitled “.', 'created': '2024-11-18 20:35:20', 'submission_id': '1guccjn'}
{'comment': '> Democrats need to stoop to their level and get some results\n\nThe problem is we are much worse at it. We arent beating republicans at the bullshit game, and even if we somehow win at that, is that really a democracy worth saving?', 'created': '2024-11-18 22:19:38', 'submission_id': '1guccjn'}
{'comment': 'it was suspicious. he was golfing a lot. and the "assassinations?"', 'created': '2024-11-18 20:28:46', 'submission_id': '1guccjn'}
{'comment': 'Should probably save that page for offline; no doubt it will be altered or deleted by February. \n \nThe coming administration doesn’t care about data & facts: \nremember the sharpied hurricane map? \n \nPresident saying Covid was “nothing, will be gone by Easter [2020]” and pondering aloud to the world if maybe getting bleach or UV light into the body would fix it? But then over 400,000 Americans would die from it before he left office. \n \nAnd on that note, he lost in 2020, by every metric, even after deleting voter rolls, trying to blackmail the Ukrainian president, trying to push Georgia to fake the numbers, after dozens of lawsuits many with trump appointed judges still saying he lost, after recounts in an Arizona, and by the testimony of HIS DAUGHTER, and everyone near him in 2020-2021, Donald KNEW he lost. \n \nBut facts don’t matter, so they tried to cancel our democracy with a PLANNED rally on the certification day, and the traitorous MAGA insurrectionists forced their way into the capitol, injuring and at least once instance killing the capitol police protecting OUR DEMOCRATICALLY ELECTED leaders. \n \nSo yeah I don’t think that graph will stay up much longer, government website or not; their graphs will only go upward.', 'created': '2024-11-18 21:05:23', 'submission_id': '1guccjn'}
{'comment': "Unfortunately, facts don't seem to matter with these people.\xa0", 'created': '2024-11-18 21:03:09', 'submission_id': '1guccjn'}
{'comment': None, 'created': '2024-11-18 21:57:38', 'submission_id': '1guccjn'}
{'comment': "Next time, ask them what their proposed solution is to fixing the pricing. There's zero answer that doesn't originate from socialism or governmental oversight/regulation.\n\nThey want all the benefits of socialism without actually having socialism. You could, I suppose, just simply tell them to stop complaining about a problem that they're wholly complicit in.", 'created': '2024-11-18 22:14:39', 'submission_id': '1guccjn'}
{'comment': "I don't know what's worse, the fact that this is happening, or the fact that our society is so broken that People legitimately see the downfall of public health as a way to make money.", 'created': '2024-11-18 23:23:06', 'submission_id': '1gubid7'}
{'comment': 'The man who tried to coup the government was still just handed it on a platter. This is not enough.', 'created': '2024-11-18 19:44:33', 'submission_id': '1gu9mp8'}
{'comment': 'Ouch. That margin change chart from 2020 is eye opening.', 'created': '2024-11-18 18:49:26', 'submission_id': '1gu9mp8'}
{'comment': "Sleepy Joe in '20 did better 51.3% of vote\n\nhttps://preview.redd.it/bihpshomcp1e1.png?width=480&format=png&auto=webp&s=cd63e717bd940faa04a754d7376b9219472401a3", 'created': '2024-11-18 19:21:00', 'submission_id': '1gu9mp8'}
{'comment': 'We really need to get rural America to buy into progressive policies. People are selfish, but exposure to other human beings, creates empathy in most of us. We need to connect the most disconnected populations in America. We need to drown out the hate machines with compassion and humanity.', 'created': '2024-11-18 19:30:43', 'submission_id': '1gu9mp8'}
{'comment': 'Obviously. But we need to ask ourselves why the mainstream media was quick to say that he has a mandate from the majority of voters.\n\nI know that MSM likes power, but there’s something a bit off about how they view this aberrant individual.', 'created': '2024-11-18 21:59:44', 'submission_id': '1gu9mp8'}
{'comment': "The electoral college really distorts things. 312 to 226 makes it look like he really has way more support when it's not even 50% and it's a little more than 1% more than Harris", 'created': '2024-11-18 21:53:00', 'submission_id': '1gu9mp8'}
{'comment': 'Oops, he crapped his pants!', 'created': '2024-11-18 19:34:37', 'submission_id': '1gu9mp8'}
{'comment': 'That’s cute and all, but we’re still screwed.', 'created': '2024-11-18 21:23:28', 'submission_id': '1gu9mp8'}
{'comment': 'Wow 🤯', 'created': '2024-11-18 18:48:30', 'submission_id': '1gu9mp8'}
{'comment': 'Who cares. Not much of a consolation prize.', 'created': '2024-11-18 19:38:48', 'submission_id': '1gu9mp8'}
{'comment': 'Not much of a silver lining.', 'created': '2024-11-18 23:03:37', 'submission_id': '1gu9mp8'}
{'comment': 'He still won.\n\nThey still kept the House.\n\nThey still took the Senate.\n\nSCOTUS is still 6-3 in Trump bootlickers.\n\nNothing else matters.', 'created': '2024-11-18 21:11:39', 'submission_id': '1gu9mp8'}
{'comment': "Good. Maybe it isn't the victory we need, but I will take anything", 'created': '2024-11-18 20:21:56', 'submission_id': '1gu9mp8'}
{'comment': 'This will help me sleep better at night.', 'created': '2024-11-18 19:15:19', 'submission_id': '1gu9mp8'}
{'comment': 'Dear Vice President Harris, We write to alert you to serious election security breaches that have threatened the security and integrity...\n\nhttps://freespeechforpeople.org/wp-content/uploads/2024/11/letter-to-vp-harris-111324.pdf', 'created': '2024-11-18 18:58:08', 'submission_id': '1gu9mp8'}
{'comment': 'Who cares?! We still lost. You think vote totals are going to change the way he governs?', 'created': '2024-11-18 21:08:10', 'submission_id': '1gu9mp8'}
{'comment': 'americans have become too stupid to vote, they ignorantly voted against their own interest.\nits time to prepare for the worst...', 'created': '2024-11-18 21:35:34', 'submission_id': '1gu9mp8'}
{'comment': 'No mandate? Poor baby. Snort.', 'created': '2024-11-18 19:55:03', 'submission_id': '1gu9mp8'}
{'comment': 'AP News has the count at 50.1%', 'created': '2024-11-18 21:20:24', 'submission_id': '1gu9mp8'}
{'comment': "Funny. That's in line with many pre-election polls.", 'created': '2024-11-18 22:27:54', 'submission_id': '1gu9mp8'}
{'comment': 'Worst consolation prize ever', 'created': '2024-11-18 22:41:44', 'submission_id': '1gu9mp8'}
{'comment': 'Im gonna admit, it is kinda suspicious Biden got 81 million votes in 2020 when in other elections, we usually get around 65-70 million.', 'created': '2024-11-18 19:57:13', 'submission_id': '1gu9mp8'}
{'comment': 'Thanks for sharing.', 'created': '2024-11-18 20:22:41', 'submission_id': '1gu9mp8'}
{'comment': 'Oh well, we tried', 'created': '2024-11-18 19:12:16', 'submission_id': '1gu9mp8'}
{'comment': 'Ha ha ha. \n\nKnew that was going to happen.', 'created': '2024-11-18 19:25:10', 'submission_id': '1gu9mp8'}
{'comment': 'He won the popular vote this is just a cope. We lost we shouldn’t be like conservatives who can’t accept it', 'created': '2024-11-18 20:44:08', 'submission_id': '1gu9mp8'}
{'comment': 'Again, as an independent I feel like I gotta remind folks who are card carrying members of parties basic truths far, far, far too often.\n\nNo independent ever saw the election and thought Trump had the majority. Please remember how many Americans there are. Less than 50% of America voted (regardless of ability to vote).\n\nJust remember that.', 'created': '2024-11-18 23:20:32', 'submission_id': '1gu9mp8'}
{'comment': 'Surely this will be the end of him.', 'created': '2024-11-18 19:59:27', 'submission_id': '1gu9mp8'}
{'comment': 'I love how us democrats are clinging on to this idea of below the 50% mandate as if Donald Trump didn’t win the popular vote by over 2 million votes.', 'created': '2024-11-18 23:33:35', 'submission_id': '1gu9mp8'}
{'comment': "Honestly I do not care and it doesn't matter. Seriously?", 'created': '2024-11-18 23:47:00', 'submission_id': '1gu9mp8'}
{'comment': 'means nothing, he won, get over it and move on.', 'created': '2024-11-18 18:58:12', 'submission_id': '1gu9mp8'}
{'comment': "Cannot agree with you more! I'm still trying to fathom how the fuck we're living in this timeline right now..", 'created': '2024-11-18 23:00:04', 'submission_id': '1gu9mp8'}
{'comment': 'It’s wild. Not surprising considering the whole world essentially went right. Unsettling regardless.', 'created': '2024-11-18 20:26:47', 'submission_id': '1gu9mp8'}
{'comment': 'If you don’t count 2008 Biden has gotten the most percentage of the popular vote since Bush in ‘88', 'created': '2024-11-18 21:55:42', 'submission_id': '1gu9mp8'}
{'comment': 'Still not the majority of Americans.', 'created': '2024-11-18 23:26:06', 'submission_id': '1gu9mp8'}
{'comment': "we won't till we get the billionaire PACs out of it. biggest example is how we did in down ballot races. all the PAC money was against Harris, very little was for down ballot races and look what happened.", 'created': '2024-11-18 20:22:06', 'submission_id': '1gu9mp8'}
{'comment': "It's the hate machine that got him elected. I'm going to wait and see how long that inclination serves it's purpose as they will usually turn on each other...", 'created': '2024-11-18 19:36:29', 'submission_id': '1gu9mp8'}
{'comment': "They are but they still won't vote for Dems. Missouri and a couple of other states voted to raise their minimum wage but refuse to have Democrats as state leaders in the Senate. They want progressive policies without the Dems names on it. It's bullshit.", 'created': '2024-11-18 20:47:50', 'submission_id': '1gu9mp8'}
{'comment': 'A lot of rural america are blue collar workers who get upset when liberals who have college degrees lecture them even though it’s usually for their own good. Most of these people just get angry and say f*ck you then vote against their own interests. How would we reach out to the working class without being off putting and how can we dumb down our solutions so even the most uneducated will understand. These people didn’t even understand what tariffs actually meant they thought it was a tax on other countries to sell goods in America.', 'created': '2024-11-18 22:01:15', 'submission_id': '1gu9mp8'}
{'comment': "If you got any ideas of how we do that I'm all ears.", 'created': '2024-11-18 19:33:50', 'submission_id': '1gu9mp8'}
{'comment': 'Its not about policies. Its about making them not feel like we are elitists. Look go talk to any blue collar worker. I assure you there are a billion things their boss or management do that make no sense to them and seems stupid. Trumpism taps into that. Its the idea of common sense over the guy at the top. The thing we have to get them to realize is that conservatives are also tyhe guy at the top, just pretending to be "common sense", and that professors and white collar workers arent looking down at them. Look many blue collar workers are smart as shit at what they do, and a lot of other things. I cant replace an engine and they cant do the work I do. It doesnt mean Im better than they are, but thats how they feel. We have to make them feel like we are on the same side again.', 'created': '2024-11-18 22:09:27', 'submission_id': '1gu9mp8'}
{'comment': "Or... just maybe... get progressives to listen to the concerns of rural America. That would be even more compassionate. I agree they're isolated and don't typically get exposed to folks who don't look like/think like/love like they do. But folks in rural areas have their own problems and they've been convinced that the right is the only side that cares about them.", 'created': '2024-11-18 19:46:51', 'submission_id': '1gu9mp8'}
{'comment': 'Pretty sure they are all in with progressive ideas… at least the folks I know…\n\nits the democratic leadership that keep trying to force people to vote for a “safe” centralist person in.\n\nI would love someone like AOC or Bernie to take the helm', 'created': '2024-11-18 20:46:52', 'submission_id': '1gu9mp8'}
{'comment': 'Honestly you can target their selfishness with progressive policies too. You just have to get things done. Bernie was polling incredibly well among rural voters in 2016 and decently well in 2020 because he promised Medicare for All and they believed him. \n\nThe minute Democrats bring forward a platform that works for the working class, provided Trump doesn\'t eliminate voting somehow, they will gain power again. But they seem to be allergic to using those words, working class - they target the middle class and above. They\'re out of touch with cost of housing by running ads talking about how housing is intergenerational wealth, the largest "investment" you make. How about - housing is a human right? Housing is shelter? You never hear them say that. \n\nThe strategy of being diet-Republicans just rings as hollow. People aren\'t responsive to it. Hillary lost running on this old-school style of politics and so did Harris. You need to make people\'s lives materially better *now,* not promise to later.', 'created': '2024-11-18 19:55:54', 'submission_id': '1gu9mp8'}
{'comment': 'Unfortunately, 76mm Americans voted for this fascist and that makes me very uneasy', 'created': '2024-11-18 19:22:55', 'submission_id': '1gu9mp8'}
{'comment': 'Really? A flaming bag of shit increasing his voter count 3 consecutive elections will help you sleep better? Amazing.', 'created': '2024-11-18 22:43:26', 'submission_id': '1gu9mp8'}
{'comment': "We write to alert you to hunches that we're surmising because vibes are off...", 'created': '2024-11-18 19:50:06', 'submission_id': '1gu9mp8'}
{'comment': "It's easily explained. Many people voted by mail in 2020 and its just easier to bring your ballot to a mailbox rather then going to a polling place. Also, since Biden's win, some states have passed voting suppression reforms. For example, they only put a few polling places in urban cities and have more in rural cities. It's hard for people to take time off to stand in line for hours so they simply don't vote. Some states also cracked down on mail in voting.", 'created': '2024-11-18 20:25:02', 'submission_id': '1gu9mp8'}
{'comment': "This is actually important for tailoring messaging going forward. It's a clear demonstration that the party got fucked by microeconomics vs. macroeconomics and doesn't actually need to dramatically alter messaging when the economic downturn Trump's tariffs will inevitably result in significant gains during the midterms.", 'created': '2024-11-18 19:06:49', 'submission_id': '1gu9mp8'}
{'comment': "Y'all keep saying that...yet Trump is still griping over the polls.", 'created': '2024-11-18 19:26:15', 'submission_id': '1gu9mp8'}
{'comment': 'True but it makes me feel better if less than 50% of the country voted for Trump sure that’s the same with others aswell.', 'created': '2024-11-18 19:17:18', 'submission_id': '1gu9mp8'}
{'comment': 'How can we have an opportunity to move on, when Trump has no intention of having another election the Democrats can win???', 'created': '2024-11-18 20:02:44', 'submission_id': '1gu9mp8'}
{'comment': 'After the events of 1-6-21, ya’ll lost the right to tell ANYONE to “get over it”. Full stop.', 'created': '2024-11-18 19:33:36', 'submission_id': '1gu9mp8'}
{'comment': 'None of his promises from 2016 happened besides the rich tax cut.\n\nDude failed at the wall, and now wants to deport everyone cuz he failed lol', 'created': '2024-11-18 23:01:35', 'submission_id': '1gu9mp8'}
{'comment': 'I could explain it to you. But a lot of democrats dont like my answers.\n\nWithout saying all the things the democrats did wrong (and trust me, as bad as the GOP is, the dems are also pretty bad) they barely had a shot in this election. In fact Kamala Harris did better than ANY OTHER SINGLE liberal/centrist politician who was basically an incumbent during Covid.\n\nWhen New Zealand\\* (as an Australian, trust me when I tell you NZ is generally liberal A.F.) goes far right in ONE election, after their most far left government ever... well, that\'ll tell you something.\n\nBasically it says "people who can vote either party don\'t like inflation".\n\n(Then I can start pointing out gender issues, online male recruitment by far right groups for decades, intangible far left policies that have ostracized businesses and home owners and renters in California, New York, and Chicago, etc etc)\n\n \n\\*- NZ went so far right their economy basically cratered as a overresponse to the previous government\'s decisions and now is suffering the largest brain/youth drain to Australia that it ever has in the past (Australia is a semi-unique democracy because of it\'s safeguards on the media to basically ensure a more centrist viewpoint).', 'created': '2024-11-18 23:23:48', 'submission_id': '1gu9mp8'}
{'comment': "It's not that wild. I think a lot of people didn't realize how BIG the 2020 results were or how unusual - mail voting, and sending EVERYONE ballots because of a pandemic made it a lot easier to vote. \n\nI will say the democrats really screwed up on a lot of points in this election (I will list them if you really want) but the Republicans also spent a LOT of time from 2020 making it harder to vote in various states. That undoubtedly had an impact. \n\nBut yes, the whole world went right - now it is on us to make sure that shift was temporary. As an independent I worry liberals are reading the wrong messages from the election and refusing to confront reality. THAT worries me immensely, because of the liberals react improperly in the next 2 years, it could really make his chances of sticking around much much higher.", 'created': '2024-11-18 23:28:53', 'submission_id': '1gu9mp8'}
{'comment': 'Elon Musk pledged to invest in every single race in the country, no matter how small, going forward. We need to take that into account as we move forward. America PAC will be in _everything._', 'created': '2024-11-18 21:22:34', 'submission_id': '1gu9mp8'}
{'comment': 'So basically we need to get musk, bezos, zuck and the tech bros out of the PACs', 'created': '2024-11-18 21:25:20', 'submission_id': '1gu9mp8'}
{'comment': "Missouri voters also reversed its MAGAt induced abortion ban, too. They've also approved recreational pot, expanding Medicaid & just voted for sports betting. Yet they elect people to state & federal political positions that 100% don't support any of it. There's already a push on the minimum wage amendment & abortion that the MAGAt legislature is trying to override what the people voted for. They did so with Medicaid expansion.\n\nThe disconnect is off the charts.", 'created': '2024-11-18 23:41:02', 'submission_id': '1gu9mp8'}
{'comment': "Unfortunately, I feel the only way to win them over is that whatever those policies are they need to be brought by a white male ticket. Racism and misogyny cost the Democrats the presidency. As much as I want to be wrong, I think that's the real reason trump won. People just couldn't find it in themselves to vote for a black woman. I really want to be wrong.", 'created': '2024-11-18 20:06:43', 'submission_id': '1gu9mp8'}
{'comment': 'Unfortunately the best solution starts with educational funding and diverting resources from the 1% to housing and job support in those areas ... which those areas are categorically opposed to.', 'created': '2024-11-18 20:27:16', 'submission_id': '1gu9mp8'}
{'comment': 'I wish I knew. But man, they believe some batshit crazy stuff coming from the right. It will be an uphill battle.', 'created': '2024-11-18 20:19:50', 'submission_id': '1gu9mp8'}
{'comment': "This is why I think Tim Walz was such a great VP pick. Honestly I was more excited for him as VP than I was for Harris as the president. I'm a left dude in a mostly red area (my specific county is slightly blue surrounded by heavy red) and I heard him talk about rural stuff that I've never heard blue politicians bring up. Democrats have been leaning heavily into the cities but not giving enough credence to the rural way of life.", 'created': '2024-11-18 19:52:38', 'submission_id': '1gu9mp8'}
{'comment': "the huge obstacle is that the Right in flyover land think that Immigrants & Minorities are their biggest problems. They've been fed these hysterical lies from the Alt Right multimedia machine which now dominates all spheres, from talk radio to podcasts to social media feeds to youtube, not to mention local politicos who rant & rave about Woke and Trans and DEI. Getting them to see other economic or environmental issues as more important & pressing is a really hard sell.", 'created': '2024-11-18 22:44:15', 'submission_id': '1gu9mp8'}
{'comment': 'can you give me some examples of problems rural people have that only republicans have addressed?', 'created': '2024-11-18 19:54:09', 'submission_id': '1gu9mp8'}
{'comment': 'Bernie was the only person these crazies looked up to besides trump.', 'created': '2024-11-18 22:09:56', 'submission_id': '1gu9mp8'}
{'comment': 'We will know more in 6 months, but besides the 6.5M people who sat out this time that voted in 2020, the shift of Black and Latino men and younger men in general was probably the difference.', 'created': '2024-11-18 19:27:49', 'submission_id': '1gu9mp8'}
{'comment': "You didn't read it did you...", 'created': '2024-11-18 21:34:08', 'submission_id': '1gu9mp8'}
{'comment': 'We got fucked by the global anti incumbency wave, that is blaming incumbent parties for covid inflation regardless of actual fault. Harris even almost managed to overcome it', 'created': '2024-11-18 19:14:08', 'submission_id': '1gu9mp8'}
{'comment': "He doesn't have the power to cancel elections.", 'created': '2024-11-18 21:27:17', 'submission_id': '1gu9mp8'}
{'comment': 'Yeah....\n\nHis wittow ego is allllll busted up now...."payback" time I guess? \n\nI\'m not a narcissistic sociopath so...no clue how these people think and/or sleep at night.', 'created': '2024-11-18 23:03:49', 'submission_id': '1gu9mp8'}
{'comment': "I don't mind at all! Very much appreciate your take on things.\n\nI guess my statement was more continued disbelief than the facts as to why...haha..\n\nI'm sadly, too aware of all that you said.", 'created': '2024-11-18 23:32:51', 'submission_id': '1gu9mp8'}
{'comment': 'My whole life, up until the last three years I was able to vote absentee. And you’re right, I didn’t appreciate how unusual it was in 2020. Democrats are absolutely looking everywhere but at themselves for blame. So much that was done wrong and I hope it can be fixed.', 'created': '2024-11-18 23:45:05', 'submission_id': '1gu9mp8'}
{'comment': 'I agree. I grew up in a farming community with a population of 700. Typically, people from my hometown feel like liberals look down the nose at them with an attitude like "we know what\'s better for you than you do".', 'created': '2024-11-18 19:58:09', 'submission_id': '1gu9mp8'}
{'comment': "I think you're spot on! I don't think trying to get middle America to accept progressive policies solves this issue and it sure doesn't win votes. But also, understand what the American farmers deal with on a regular basis. They have hard jobs. They're independent business owners for the most part. They see coastal democrats as worrying about their cities more than the rural population. The misinformation is driving it all and we need to find a way to show them we care about them too, instead of getting them to accept what we think is best.", 'created': '2024-11-18 22:51:40', 'submission_id': '1gu9mp8'}
{'comment': "No, I can't. Because they haven't. And that's the problem. Like I said, the right has convinced them that they're the only side who cares about them. We're losing in rural areas because we expect them to change to meet our agenda. So the repubs are doing fuck-all and they still get the vote because libs act like they know what's good for them. How hard is it to listen to their concerns?", 'created': '2024-11-18 20:03:23', 'submission_id': '1gu9mp8'}
{'comment': "... but consider that Bernie's run was 8 long years ago. We have a whole different scope of crazy in the Far Right sphere in 2024.", 'created': '2024-11-18 22:48:22', 'submission_id': '1gu9mp8'}
{'comment': "I do not like blaming minorities for what is overwhelmingly caused by white people. \n\nThe tiny share of black men is not as important as suburban white women who voted Biden and couldn't show up for Kamala.\n\nAnd that's not nearly as important as the overwhelming support be gets from white dudes.", 'created': '2024-11-18 19:48:06', 'submission_id': '1gu9mp8'}
{'comment': 'TikTok and instagram have ruined the minds of young people. They can’t see a lie for what it is anymore. \n\nAlso, I’m not surprised by the Latino and Black men shift. Just a little real talk, the DEI shit in the US has gotten to a crazy level. There are some seriously unqualified people being put into high level positions at every company because of that garbage. My opinion on this is that if we want to support diversity, we need to start at the high school level and encourage women and minorities to go into science. The equality will come with more diversity at the school level. Making it easier for someone doesn’t actually help anyone.', 'created': '2024-11-18 19:39:43', 'submission_id': '1gu9mp8'}
{'comment': "Presidents didn't used to have immunity, either. \n\nThat being said, canceling elections is not the only way for Republicans to fix it so a Democrat can't win the presidency.", 'created': '2024-11-18 21:50:16', 'submission_id': '1gu9mp8'}
{'comment': "It doesn't help that every Hallmark film is set up with that propagandist storyline of the city boy or city girl making their mark in small town rural area hoping to make big changes for the community, when all they want is to be left alone.", 'created': '2024-11-18 20:50:40', 'submission_id': '1gu9mp8'}
{'comment': 'You’re right but how do we reach out to voters who vote against their own interests constantly. Using logic only causes them to double down on misinformation.', 'created': '2024-11-18 23:22:42', 'submission_id': '1gu9mp8'}
{'comment': 'Not even just young ppl. Change TT and IG to Facebook and you’ve got the negative impact on older ppl. It’s the algorithms that are fucking ppl. Everyone just gets shown content that further reinforces the narratives they believe.', 'created': '2024-11-18 20:00:39', 'submission_id': '1gu9mp8'}
{'comment': 'I suppose. In my experience in the corporate world, DEI or not, a lot of people in those positions are unqualified, and just are not good leaders or are not allowed to be a good leader. Instead what happens is that people get these roles and sort of coast/keep their heads down to avoid making any actual decisions. In my experience, men tend to be better at the “bullshitting game” than women.', 'created': '2024-11-18 20:32:51', 'submission_id': '1gu9mp8'}
{'comment': 'It’s actually even worse. The first few dozen posts you react to determine everything else that gets shown which randomly puts you down a path that you may not have gone on your own.', 'created': '2024-11-18 20:34:47', 'submission_id': '1gu9mp8'}
{'comment': "I've gotten a few donations from strangers, so it's definitely getting shared by someone.\n\nI contacted the author of the book, Robert Reich, MadDogPac, and a couple other groups/people that have mentioned or promoted the book, plus a few independent news outlets. I also sent via email to maybe 30 contacts in Dem organizations in my state.\n\nThe great news is that Cory Doctorow said he would share it in his newsletter (which I love)!\n\nI don't have social media except Reddit (and I already posted a general fundraising plea here). I LAO don't have the resources (PR database, large email list, etc.) to reach people en masse. so I'm not sure what to do from here. Any ideas on people or groups who may be interested in sharing this with their audiences?\n\n(The fundraiser is to buy copies of On Tyranny in bulk and distribute it to Little Free Libraries across the U.S. Our local indy bookstore loved the idea and offered a big discount for bulk purchases.)\n\nThanks for any suggestions!", 'created': '2024-11-18 18:02:29', 'submission_id': '1gu9dme'}
{'comment': 'This is a good plan. \n\nBecause we need to make people more resistant to fascist propaganda. \n\nThe huge propaganda machine is going to continue to chug along, radicalizing more people. While trying to get more people to give up, so they could be more easily oppressed. \n\nThis book would help a lot!', 'created': '2024-11-18 18:11:40', 'submission_id': '1gu9dme'}
{'comment': 'Thank you!', 'created': '2024-11-18 19:14:31', 'submission_id': '1gu9dme'}
{'comment': 'Trump may need to reduce the face paint so he doesn’t deport himself', 'created': '2024-11-18 16:46:09', 'submission_id': '1gu72s4'}
{'comment': '"Blood sample" is just your head on the pavement while they cuff you.', 'created': '2024-11-18 22:09:12', 'submission_id': '1gu72s4'}
{'comment': 'According to this graph, his blood sample should be enough. 50% white Aryan blood, 50% hamberders.', 'created': '2024-11-18 19:27:43', 'submission_id': '1gu72s4'}
{'comment': 'Don’t forget the covfefe !', 'created': '2024-11-18 19:39:58', 'submission_id': '1gu72s4'}
{'comment': 'Rumored report of possible McConnell spine sighting:\n\nExcerpts:\n\nDemocratic Delaware Senator Chris Coons believes his GOP colleagues would not agree to a recess to allow Trump\'s Cabinet picks to go through without a vote.\n\n\n"They understand our constitutional role," Coons told Fox News Sunday. "We\'re a check and balance. We\'re there to be a guardrail."\n\nMcConnell is alleged to have warned Trump\'s team, "there will be no recess appointments," during a meeting in Washington, D.C. The claim was reportedly made by New Yorker staff writer Jane Mayer in a since-deleted post on X, formerly Twitter.\n\nIf the Senate refuses to recess but the House does, the Constitution would allow Trump to adjourn the entire Congress, reported Axios.', 'created': '2024-11-18 16:03:49', 'submission_id': '1gu6oyn'}
{'comment': 'MAGA are going to be angry about anything. When aren’t they angry at something? It’s all they have. It’s what fuels them.', 'created': '2024-11-18 16:38:10', 'submission_id': '1gu6oyn'}
{'comment': 'I think it is way too late in the last stage of the career of this partisan hack to actually take any kind of meaningful stand against the MAGAt\'s. He is such a truly ugly Republican he may just be telegraphing/projecting exactly how they are going to proceed. You know, "I come to bury Caeser..."', 'created': '2024-11-18 16:13:53', 'submission_id': '1gu6oyn'}
{'comment': "I voted for harris.\n\nWhy is it I feel defeated?\n\nHow did Trump convince this country he is the messiah?\n\nHow did they ignore everything he said?\n and still voted for him\n\nAm I on the wrong side?\n\nI never changed on how I believed. Now I'm considered woke.\n\nIt feels unreal that America wants a dictatorship.", 'created': '2024-11-18 16:43:09', 'submission_id': '1gu6oyn'}
{'comment': "Old turtle McConnell growing a set of balls wasn't on my 2024 Bingo card. Still, fuck him. He's a useless old sack of shit.", 'created': '2024-11-18 18:16:06', 'submission_id': '1gu6oyn'}
{'comment': "I never thought I'd see the day when I didn't think McConnell was the worst person in the Senate.", 'created': '2024-11-18 17:18:19', 'submission_id': '1gu6oyn'}
{'comment': 'How does this help? If any he out in Jan anyway?', 'created': '2024-11-18 16:33:51', 'submission_id': '1gu6oyn'}
{'comment': "Can't believe I'm rooting for McConnell to hold his ground and use the Senate's powers as NORMAL. FDJT and FMAGA.", 'created': '2024-11-18 17:38:57', 'submission_id': '1gu6oyn'}
{'comment': 'Mitch McConnell is on a mission to become the most universally hated man in America.', 'created': '2024-11-18 17:44:18', 'submission_id': '1gu6oyn'}
{'comment': "Mcconnell is bs ing. He's just lying right now to make Democrats feel they can let their guard down. Once the appointments come at a closer date and Mcconnel see they pass his conservative checklist, he will be on board. The racist, authoritarian, sexist, anti lgbtq Mcconnell is not gonna pass up on giving more power to republicans", 'created': '2024-11-18 23:44:56', 'submission_id': '1gu6oyn'}
{'comment': 'The freaking irony if Mitch is the one to keep these unqualified black holes off the cabinet.', 'created': '2024-11-18 18:08:41', 'submission_id': '1gu6oyn'}
{'comment': None, 'created': '2024-11-18 18:11:46', 'submission_id': '1gu6oyn'}
{'comment': 'Of course Maga wants their fascist appointments instead of following the normal political route. They are going to be angry the rest of their lives it seems', 'created': '2024-11-18 21:43:01', 'submission_id': '1gu6oyn'}
{'comment': 'Nothing is stopping trump from just assassinating all of congress and becoming a dictator. America voted for this', 'created': '2024-11-18 19:16:11', 'submission_id': '1gu6oyn'}
{'comment': 'Nope. Mitch will bend over or get out. That simple.', 'created': '2024-11-18 18:52:29', 'submission_id': '1gu6oyn'}
{'comment': 'Congress is a separate branch of gov.', 'created': '2024-11-18 19:48:42', 'submission_id': '1gu6oyn'}
{'comment': "It's almost like THE TURTLE grew a pair? I won't hold my breath. He's one of the worst in history. Hos damage has gone on decades", 'created': '2024-11-18 20:02:03', 'submission_id': '1gu6oyn'}
{'comment': "Which is more than possible because of the Senate-House rift that started during the Biden administration. McConnell used to be able to have some unity with the House GOP but ever since they retook it in 2022 it's become next to impossible for him to get them to fall in line. All Johnson has to do is to agree to a recess and McConnell is outflanked again.", 'created': '2024-11-18 16:34:14', 'submission_id': '1gu6oyn'}
{'comment': 'No spine found. He is a power broker and he isn’t going to give away his institutional power for nothing. This isn’t some principled stance, it is a last ditch effort to maintain some balance of power between the branches.', 'created': '2024-11-18 17:32:22', 'submission_id': '1gu6oyn'}
{'comment': 'I will believe it when I see it. Turtle-boy caved on impeachment for Jan. 6th. As far as I’m concerned, Mitch is all in for Trump.', 'created': '2024-11-18 22:53:17', 'submission_id': '1gu6oyn'}
{'comment': "Nah, that couldn't be. It's kind of like a bigfoot sighting. You hear about them, but never seem to see one yourself.", 'created': '2024-11-18 18:48:59', 'submission_id': '1gu6oyn'}
{'comment': 'Anger and fear. I can\'t believe my family believes so much stupid shit. \n\n"No Mom, no one is performing gender surgeries at school". \n\n"No Dad, there are no litterboxes at your granddaughter\'s school. There never were."\n\nThere is so much fear around transgender people, who are less than 2% of our population. It\'s absolutely inane.', 'created': '2024-11-18 17:17:21', 'submission_id': '1gu6oyn'}
{'comment': 'He could have had a spine in 2021 and impeached Trump but no, he "wasn\'t a threat anymore".', 'created': '2024-11-18 17:00:59', 'submission_id': '1gu6oyn'}
{'comment': 'A perfect storm of uneducated unintelligent rednecks with no understanding of what is actually going to happen as consequences vs their fictional whitewashed 50s sitcom ideologies and misinformation from algorithmic brainwashing media outlets that have a very clear understanding of how it works. Money. Fucking money to the wrong people is the answer, EVERY GODDAMNED TIME. (I’m not yelling at you, just emphasizing the point)', 'created': '2024-11-18 17:08:40', 'submission_id': '1gu6oyn'}
{'comment': 'Personally, I felt defeated because I had hope for this country that we were brave enough to not let history repeat itself.\n\nFear, anger, and hate won over the people\'s minds and the next 4 years will be the result of it.\n\nYou\'re not on the wrong side. We may be in the minority side, this time, but we\'re certainly not alone.\n\nStay true to how you believe.\n\n"Only when it is dark enough can you see the stars."', 'created': '2024-11-18 17:26:15', 'submission_id': '1gu6oyn'}
{'comment': ">How did they ignore everything he said? and still voted for him\n\nFor decades, Republicans have psychologically conditioned Americans to mistrust government, mistrust experts, and think Democrats are crazy radical liberals who will destroy this country.\n\nThen Trump comes along, amplifies that 10 times. Adds in the fascist playbook with a literal propaganda war against American voters. \n\nNow think about how many swing voters are low information voters who don't pay attention much to politics until the election. \n\nDuring the election, they get hit with a tsunami of misinformation from the right. They don't really trust the left either. In fact, part of the messaging they think they're hearing from the left is actually fascist propaganda coming from bots. \n\nSo circle of confusion, and only a couple of Republican lies win out. They vote for Trump.\n\nAnd the same thing happened to many of the people who didn't vote. Only they just finally became disgusted with it all and gave up.\n\nPeople always think of fascist rhetoric as about radicalizing people. What we saw here was the second part of it: weaponized rhetoric to misinform and paralyze voters.", 'created': '2024-11-18 17:55:58', 'submission_id': '1gu6oyn'}
{'comment': 'You’re not on the wrong side. While democrats have many faults and areas for improvement, they are the side that like, believes climate change and racism are bad. They are the side that wants women to have the right to bodily autonomy. They are the side that passed the ACA and wants to keep it. They are the side that wants to keep Medicare and Medicaid and social security. They are the side that wants to protect the right to marry for LGBTQ+ folk. The problem is that many people are too dumb, racist, selfish and/or uneducated to agree with those basic principles', 'created': '2024-11-18 18:02:34', 'submission_id': '1gu6oyn'}
{'comment': "It went something like this...\n\nHarris: Elect me, and I will fight for you!\n\nMoron: I wish she would stop talking about her vaginas.\n\nHarris: I will hold bad actors responsible when they commit crimes! \n\nMoron 2: Geez... how long is she going to talk about black power?\nMoron: Somebody tell this s*ut were here to hear about policy not wokeness!\n\nHarris: we will create opportunities for hard-working Americans to thrive and succeed via these policies...\n\nMoron crowd: BOOOO...we didn't come here for a lecture on DEI! Tell us about some policy that will help us wh*re! \n\nFIN...", 'created': '2024-11-18 18:35:09', 'submission_id': '1gu6oyn'}
{'comment': 'money. big money. billionaires bought this election by funding propaganda from everywhere. they bought the TV/radio stations, all the ad time, and filled it with complete lies and BS, and stupid people bought it hook, line, and sinker.', 'created': '2024-11-18 18:07:41', 'submission_id': '1gu6oyn'}
{'comment': 'The Republicans got smart and \n\n- bought twitter\n- convinced facebook and instagram to be “not political”, but they (or Russia) mobilized massive comment campaigns \n- started political social media companies to mobilize their message \n- TikTok and others have moved the needle on attention spans\n- republicans have skillfully used loyalty and misinformation to message and stoke fear\n\nSo put it all together. You’ve got people who believe Joe Biden is stupid and incompetent. They don’t see his many accomplishments (see https://WhiteHouse.gov/briefing-room before it’s taken down). \n\nThey picked up a cause that democrats dropped; nutrition for example. \n\nDemocrats meanwhile are taking the high ground while the republicans eat everyone’s lunch and serve up the digested lunch on a plate.', 'created': '2024-11-18 22:38:05', 'submission_id': '1gu6oyn'}
{'comment': 'He still is.', 'created': '2024-11-18 22:40:56', 'submission_id': '1gu6oyn'}
{'comment': "He's still going to serve as a senator, he's only stepping down from his leadership role.", 'created': '2024-11-18 16:35:34', 'submission_id': '1gu6oyn'}
{'comment': "He has 2 years of his term left. He's stepping down from being Republican leader, not senator.", 'created': '2024-11-18 18:30:32', 'submission_id': '1gu6oyn'}
{'comment': "He tried but there's worse now...they just haven't accumulated the power yet. Elon is one of the biggest threats now.", 'created': '2024-11-18 20:19:25', 'submission_id': '1gu6oyn'}
{'comment': 'Mitch is about to shuffle off his mortal coil at any moment. I doubt he cares.', 'created': '2024-11-18 18:52:49', 'submission_id': '1gu6oyn'}
{'comment': 'Yeah he knows that. That’s why this all just talk', 'created': '2024-11-18 17:24:15', 'submission_id': '1gu6oyn'}
{'comment': 'Valadao + Newhouse should vote for Jeffries purely to stop this kind of shit.', 'created': '2024-11-18 17:45:48', 'submission_id': '1gu6oyn'}
{'comment': 'Yeah but Johnson still needs a majority vote and with razor thin margins I doubt they’ll get it.', 'created': '2024-11-18 18:24:29', 'submission_id': '1gu6oyn'}
{'comment': 'Womp womp McConnell, womp womp\n\n', 'created': '2024-11-18 17:24:36', 'submission_id': '1gu6oyn'}
{'comment': 'It could also be a deeply cynical play by McConnell... "In the name of separation of powers and to preserve the Senate\'s advice and consent blah blah blah... he then refuses to recess, Johnson forces the house to shutter, donOLD shuts the whole thing down, and then gets recess appointments for the most objectionable candidates WITHOUT McConnell having to hold hearings, without any Repubes having to take any votes or principled stands, and without having Democrats like Schiff asking any pesky questions. \n\nIt\'s a convenient way to get sex traffickers, pedophiles, rapists, and project 2025 believers on as acting cabinet secretaries without the fuss and muss of hearings. Win-Win. They all playing us.', 'created': '2024-11-18 22:57:15', 'submission_id': '1gu6oyn'}
{'comment': 'Correct', 'created': '2024-11-18 21:04:24', 'submission_id': '1gu6oyn'}
{'comment': 'Sacks of jelly never had spines to begin with.', 'created': '2024-11-18 18:44:00', 'submission_id': '1gu6oyn'}
{'comment': "I would just take what they're us there in evidence of brainwashing and propaganda spread with Trump's team understanding how to get the lies to infect an overall message to quell the fear and struggles people have had since his first term. That combined with the fact that Trump NEVER STOPPED RUNNING since he started in 2015 with the lies n bullshit.\n\nRemember this is the guy that made his waves early saying that Obama isn't an American. From there he's never changed his playbook and Democrats shit the bed so hard people just didn't think it would be as bad as it will be.", 'created': '2024-11-18 17:41:13', 'submission_id': '1gu6oyn'}
{'comment': 'Don’t forget the idiot Hispanics as well.', 'created': '2024-11-18 17:56:14', 'submission_id': '1gu6oyn'}
{'comment': 'The only comfort the last time with these lunatic republicans was they were all so ancient that we knew they wouldn’t be around in 30 years. This new younger crop is even crazier and definitely will be here in 30 years.', 'created': '2024-11-18 21:30:52', 'submission_id': '1gu6oyn'}
{'comment': "I'm confused here what any of this means but I'm trying lol ... So if anyone can explain what this means I would be grateful. \n\nSo is McConnell taking shots at Trump by saying we aren't voting in his picks while one of the bodies is away? Just clarifying plz if anyone can quickly.", 'created': '2024-11-18 17:36:40', 'submission_id': '1gu6oyn'}
{'comment': 'And Muslims with amnesia. Or, who just hate queers and women enough to risk it.', 'created': '2024-11-18 23:00:02', 'submission_id': '1gu6oyn'}
{'comment': 'A recess appointment means that the President is able to make appointments to his cabinet while congress is not in session - thereby bypassing the need for congressional approval.\n\nThis was originally put in place for things like, say a cabinet member dies and needs to be replaced immediately but congress is on recess.\n\nIf congress wont approve one of Trumps cabinet nominations - he could theoretically wait until congress takes a recess and then just appoint them anyways.\n\nMcConnell is basically saying “if you try to deliberately make recess appointments to bypass congressional approval, then we’re just not going to take a recess so you can’t make your appointments”.\n\nHowever, if the house agrees to recess, Trump can dismiss the senate as well and then make his appointments. So this only works if both the house AND senate agree not to adjourn. \n\nMcConnell has little sway over the house recently, so his threats of not going to recess shouldn’t be taken too seriously.\n\nHopefully that all makes sense.\n\nEDIT: just to clarify - McConnell isn’t necessarily saying they WONT approve some of Trumps picks, but basically saying “hey man, we gotta do this the right way and get congressional approval. Don’t be a dick and go over our heads. If you do that, we’re not fuckin leaving”', 'created': '2024-11-18 18:51:14', 'submission_id': '1gu6oyn'}
{'comment': 'Gotcha, that makes sense I had to think about it and was pretty much on that same page there, I just wanted to make sure from anyone that could confirm what I was just guessing at lol. Ty good sir/madam', 'created': '2024-11-18 19:35:58', 'submission_id': '1gu6oyn'}
{'comment': 'How does the House of any say in this if the Senate is the body exclusively charged with confirming appointments?', 'created': '2024-11-18 19:52:51', 'submission_id': '1gu6oyn'}
{'comment': 'Because if the house goes on recess the president can then decide to dismiss the senate. The house would have to stay in session as a show of solidarity with the senate to avoid the recess appointments.\n\nSince McConnells influence over the house is waning, there’s a high likelihood the house won’t stand with the senate', 'created': '2024-11-18 21:41:41', 'submission_id': '1gu6oyn'}
{'comment': 'Free firewall workaround:\n\nhttps://archive.is/IVFd8', 'created': '2024-11-18 15:15:39', 'submission_id': '1gu5hjp'}
{'comment': 'If anyone voted for him, this is what you voted for and if it isn’t you should be more responsible when making that decision vs watching TikTok clips to decide your vote.\n\n\nThis was literally laid out there for everyone to see and read.\n\nShits about to get ugly, and I wish we were all wrong.\xa0', 'created': '2024-11-18 16:08:19', 'submission_id': '1gu5hjp'}
{'comment': 'Nobody is talking about how hard it will be to deport people back to their countries. It is easier to round them up, but sending them to their respective countries is a bureaucratic nightmare. You would have to investigate each person to find out where they are from and hope that their country cooperates in taking them back. Call me crazy but those people will be stuck in masses in these camps for years, and I can only imagine the conditions. The last time someone tried, similar actions did not end very well.\nAlso, going home to home in a large-scale operation could end up in a massive disorder. Most Americans do not fuck with private property and believe in the second amendment. Just a thought.', 'created': '2024-11-18 16:28:55', 'submission_id': '1gu5hjp'}
{'comment': 'It’s literally not an emergency though! School shootings and climate change are actual emergencies. Does Flint even have clean water? Rise of the Nazi movement is an emergency.', 'created': '2024-11-18 16:36:32', 'submission_id': '1gu5hjp'}
{'comment': 'Just do it and ruin our economy already. We will have to rebuild later.', 'created': '2024-11-18 15:31:34', 'submission_id': '1gu5hjp'}
{'comment': 'How is he going to do a mass deportation. They are just going to grab anyone that does not look white?', 'created': '2024-11-18 15:49:55', 'submission_id': '1gu5hjp'}
{'comment': 'Texted from the paywall article \n\n\nPresident-elect Trump confirmed Monday that he is planning to declare a national emergency and use the U.S. military to carry out mass deportations.\n\n\n**Why it matters:**\n\nTrump made his promise to deport millions of undocumented immigrants one of the cornerstones of his 2024 campaign, and his team has already begun strategizing how to carry its plan out.\n\nA Truth Social post early Monday is the first time the president-elect has confirmed how his administration will execute the controversial plan.\n\n\n**Driving the news:**\n\nTom Fitton, the president of the conservative group Judicial Watch, posted on Truth Social earlier this month that Trump was "prepared to declare a national emergency and will use military assets to reverse the Biden invasion through a mass deportation program."\nTrump reposted Fitton\'s comment Monday with the caption, "TRUE!!"\n\n\n**The big picture:**\n\nThere are an estimated 11 million undocumented immigrants living in the U.S. Trump\'s mass deportations are expected to impact roughly 20 million families across the country.\nImmigration advocates and lawyers are preparing to counter the plan in court.\nThe president-elect\'s team is aiming to craft executive orders that can withstand legal challenges to avoid a similar defeat that befell Trump\'s Muslim ban in his first term, Politico reported.\nTheir plans also include ending the parole program for undocumented immigrants from Cuba, Haiti, Nicaragua and Venezuela, per Politico.', 'created': '2024-11-18 15:38:15', 'submission_id': '1gu5hjp'}
{'comment': 'Please let him be as incompetent as he always is. Jesus. I hate this and I hate him.', 'created': '2024-11-18 17:01:19', 'submission_id': '1gu5hjp'}
{'comment': 'Recently read that the Haitians in Springfield OH are now already getting the hell out. They would rather choose to leave than be deported. So that company that they were hired to work at is going to get screwed. The company couldn’t fill positions with US citizens so now what?', 'created': '2024-11-18 17:12:11', 'submission_id': '1gu5hjp'}
{'comment': 'I feel a bit hopeless. Obviously this is bad, but what can we do to stop it? Mass protesting will not stop it. I can’t not pay my taxes to support something like this. I mean, what is the solution?', 'created': '2024-11-18 15:44:44', 'submission_id': '1gu5hjp'}
{'comment': "Good luck getting the military to engage in illegal or unconstitutional activities.\n\nAs I told my wife, he's going to try this, the military will say no, then he's going to need to create his own paramilitary organization to enforce his policies, and *boom*, we have the American version of the SS/Gestapo/KGB, because ignorant, disgusting rednecks will try to join in droves, just like the German versions did for the SA and SS.", 'created': '2024-11-18 17:39:20', 'submission_id': '1gu5hjp'}
{'comment': 'The whole point of this is for them to ensure a white majority remains in this country. \n\nThat is the only goal. \n\nPeople need to wake up and realize that MAGA is just modern day KKK. \n\nEnd of story.', 'created': '2024-11-18 20:23:16', 'submission_id': '1gu5hjp'}
{'comment': 'Imagine being so upset about immigrants that have been here for years and pay taxes and help our economy that you declare a fucking emergency to get rid of them quicker', 'created': '2024-11-18 17:33:01', 'submission_id': '1gu5hjp'}
{'comment': 'Wait till everyone finds out that hiring legal residents to do illegal immigrant jobs will raise the prices of everything because no one of legal status wants to work bare minimum wage to do said jobs.', 'created': '2024-11-18 15:53:37', 'submission_id': '1gu5hjp'}
{'comment': 'Will he put people in cattle cars and send them to "processing" camps? Maybe the South African co-president "efficiency expert" has some ideas about keeping them separate from the rest of the population.', 'created': '2024-11-18 16:34:45', 'submission_id': '1gu5hjp'}
{'comment': "Restaurants prices will sky rocket, if they can even function. Homes will go unbuilt and fruits and veggies won't be picked. I'm sure that's just some of the things.\n\n Yea, if you voted for this and it negativity screws you bad, oh well...\n\n\nGet that popcorn ready.", 'created': '2024-11-18 17:28:56', 'submission_id': '1gu5hjp'}
{'comment': 'The chaos and epic economic disruption that we all know would come from this is the American line in the sand. We stop this, we stop all the other insane promises he has made, and he is back to being the lame duck caretaker hiding in the Oval Office hoping nothing bad happens.', 'created': '2024-11-18 15:37:45', 'submission_id': '1gu5hjp'}
{'comment': 'If he tries to do this and only partially succeeds, it’s still a gigantic win in MAGA’s eyes. His cult will see it as proof of his dedication and evidence of the left’s dedication to open borders if it fails. He has no way to lose', 'created': '2024-11-18 16:44:42', 'submission_id': '1gu5hjp'}
{'comment': "This won't go as smoothly as he thinks it will.\n\nWhat manpower and scope of information does he think he will have to do this?", 'created': '2024-11-18 16:16:26', 'submission_id': '1gu5hjp'}
{'comment': "I'm so foken tired of this orange bloviating narcissistic shitting on our Constitution while giving the American people the middle finger! 🤬🤬", 'created': '2024-11-18 17:07:58', 'submission_id': '1gu5hjp'}
{'comment': 'As someone that grew up in a low income urban neighborhood in the 1980s, this is giving war on drugs vibes. Don’t know what that means? No warrant “stop and frisk”, law enforcement decked out in full military gear, nightly raids, and an arrest first ask questions second mentality.', 'created': '2024-11-18 17:04:55', 'submission_id': '1gu5hjp'}
{'comment': 'I seriously can’t believe that so many Hispanic/Latinos actually support him. Apparently this is what they want… I don’t get it.', 'created': '2024-11-18 18:01:12', 'submission_id': '1gu5hjp'}
{'comment': 'He said that about the wall too. He’s all talk, he’ll declare a national emergency, round up a token group of illegals(and possibly some citizens) in Texas and/or Florida and float it as a “huge success” to his followers who will eat it up.', 'created': '2024-11-18 16:08:59', 'submission_id': '1gu5hjp'}
{'comment': "From what I read it's for those already served papers to leave. Finding them is going to be hard", 'created': '2024-11-18 15:51:56', 'submission_id': '1gu5hjp'}
{'comment': 'Please write to these 3 senators:\n\nSusan Collins:\n\nhttps://www.collins.senate.gov/contact/email-senator-collins\n\nLisa Murkowski:\n\nhttps://www.murkowski.senate.gov/contact/email\n\n and\n\nJoe Manchin: \n\nhttps://www.manchin.senate.gov/contact-joe/email-joe\n\n!!! These 3 are critical for this to get through!!!\n\nAlso write to your local senators:\n\nhttps://www.senate.gov/senators/senators-contact.htm\n\n\nHere is a template you can use:\n\nConfirm 47 Federal Judges Now\n\nDear Senator: \nPlease prioritize the immediate confirmation of 47 Federal Judges. Protect our democracy against Trump’s threats—this is your legacy. Put aside party lines and act now for our families and nation. Thank you.', 'created': '2024-11-18 18:50:37', 'submission_id': '1gu5hjp'}
{'comment': "Wait, he's not going to deport my nanny, is he? I thought he meant the other ones.", 'created': '2024-11-18 22:05:52', 'submission_id': '1gu5hjp'}
{'comment': 'Well it’s not the Reichstag Fire, but we’re getting closer.', 'created': '2024-11-18 16:19:15', 'submission_id': '1gu5hjp'}
{'comment': 'How absolutely horrifying', 'created': '2024-11-18 16:48:43', 'submission_id': '1gu5hjp'}
{'comment': 'My drinking time has been starting earlier lately', 'created': '2024-11-18 17:14:43', 'submission_id': '1gu5hjp'}
{'comment': 'This is the end of small farms in America, and shortly thereafter small towns. This will eventually lead to the end of rural red America. This nation will swing very hard to the left shortly thereafter due to the economic disaster.', 'created': '2024-11-18 17:23:16', 'submission_id': '1gu5hjp'}
{'comment': 'BuT WhOs GoINg tO PaY FoR It?', 'created': '2024-11-18 17:15:07', 'submission_id': '1gu5hjp'}
{'comment': 'I can afford a *significant* increase in the price of goods. This will not really impact me long term. I cannot wait to laugh in the face of poor/working class people who voted for him, get ready for 8 dollar blueberries', 'created': '2024-11-18 17:20:03', 'submission_id': '1gu5hjp'}
{'comment': 'Food will be rotting in the fields\xa0', 'created': '2024-11-18 20:36:28', 'submission_id': '1gu5hjp'}
{'comment': 'As a normal citizen, what can be done to stop this bullshit?', 'created': '2024-11-18 15:53:55', 'submission_id': '1gu5hjp'}
{'comment': 'Trump didn’t win it was rigged', 'created': '2024-11-18 19:04:14', 'submission_id': '1gu5hjp'}
{'comment': 'Thank God. That will really lower the price of eggs and gas', 'created': '2024-11-18 19:19:53', 'submission_id': '1gu5hjp'}
{'comment': 'Let’s start the modern day Underground Railroad. I’m building a living space in my attic rn.', 'created': '2024-11-18 19:00:19', 'submission_id': '1gu5hjp'}
{'comment': 'Party of limited government and family values.', 'created': '2024-11-18 19:27:58', 'submission_id': '1gu5hjp'}
{'comment': 'I recommend all of you that have relatives or friends that are at risk of this google operation wetback in 1954. They ended up deporting naturalised citizens.', 'created': '2024-11-18 20:10:14', 'submission_id': '1gu5hjp'}
{'comment': 'This type of scenario is exactly the type of thing Republicans have been claiming Democrats would do for years.', 'created': '2024-11-18 20:15:01', 'submission_id': '1gu5hjp'}
{'comment': "I didn't have underground railroad on my bingo card that's for sure", 'created': '2024-11-18 20:47:05', 'submission_id': '1gu5hjp'}
{'comment': 'The crazy thing is even if he’s successful at some level of deportation , most will be back over time. They aren’t going to leave their families and never return. They claim they will jail those that return but are we going to jail millions of illegals? Like everything Trump does this will be horribly implemented and will cost the country billions.', 'created': '2024-11-18 21:03:12', 'submission_id': '1gu5hjp'}
{'comment': 'Prices will rise for groceries, child care, elder care, home construction and renovation, and home services.', 'created': '2024-11-18 21:05:29', 'submission_id': '1gu5hjp'}
{'comment': "internment camps & gulags here we come! There's no depth to his depravity.", 'created': '2024-11-18 21:25:11', 'submission_id': '1gu5hjp'}
{'comment': 'Of course he will. People better believe this drooling clown when he says what he’s going to do.', 'created': '2024-11-18 21:51:12', 'submission_id': '1gu5hjp'}
{'comment': "South Florida is about to rise 20ft out of the ocean from how much weight it will be losing. I guess we'll also have to just get rid of Miami since like 75% of their public work employees are immigrants of some kind.", 'created': '2024-11-18 23:00:20', 'submission_id': '1gu5hjp'}
{'comment': 'The especially idiotic thing is that we have data on the most effective tactic for reducing illegal immigration and undocumented population. All that’s necessary is to make it impossible to be employed without documentation. People leave en mass, voluntarily. It has happened before. We even know how much economic hardship it causes in agriculture particularly. \n\nThe problem for Republicans is this focuses enforcement on employers, who are their donors, rather than helpless “undesirables”. \n\nThe whole project is so much fascist theater.', 'created': '2024-11-18 21:17:01', 'submission_id': '1gu5hjp'}
{'comment': 'Literally fascist. Hoping for a military coup at this point', 'created': '2024-11-18 16:06:08', 'submission_id': '1gu5hjp'}
{'comment': 'My Rant of the day:\n\nSo let me guess: all those civil service workers Elon and Vivek are going to lay off will get a new job opportunity. They will be offered jobs manning the detention centers? \n\nI suspect Trump’s deportation plan is going to come down to putting people on buses and dumping them in Mexican border cites. Looks good on Fox News. \n\nBut guess what? Now you will have refugee camps on the other side of the border. Some people will get dropped off on Monday and recross on Friday. The cartels will have a recruiting drive to hire others. You will get the Latin American version of the PLO. \n\nOh and if Trump starting making drone attacks on the Cartels, you will definitely have the drug lords passing out money to anyone willing to fight the Gringos.', 'created': '2024-11-18 17:14:22', 'submission_id': '1gu5hjp'}
{'comment': 'When he does it, you’re going to see inflation like you’ve never seen before. What do you think I had a lettuce will cost if you have to pay Americans to pick lettuce', 'created': '2024-11-18 19:02:44', 'submission_id': '1gu5hjp'}
{'comment': 'This is gonna be the subject of many legal challenges. Here we go', 'created': '2024-11-18 21:37:27', 'submission_id': '1gu5hjp'}
{'comment': '', 'created': '2024-11-18 15:57:39', 'submission_id': '1gu5hjp'}
{'comment': 'minding my black business. \n\n', 'created': '2024-11-18 16:50:29', 'submission_id': '1gu5hjp'}
{'comment': "It's what they wanted, wake up, stop being stupid", 'created': '2024-11-18 18:16:26', 'submission_id': '1gu5hjp'}
{'comment': 'I don’t want to see it happen, but for the people who voted for him, I’ll enjoy the Schadenfreude', 'created': '2024-11-18 18:37:49', 'submission_id': '1gu5hjp'}
{'comment': 'Conservatives are thrilled. It\'s what they wanted. It\'s what they voted for and they expect Trump to keep his promise on this. That\'s why it\'s at the top of his to do list. And they want him to go after "sanctuary" cities and states really hard; with funding cuts for non-compiance and troops to re-enforce local police. Don\'t underestimate the degree of popular support for rounding up "illegal" immigrants.', 'created': '2024-11-18 19:07:44', 'submission_id': '1gu5hjp'}
{'comment': "Way I see anything he does or says he's going to do is a diversion from his self serving goals. He's a proven cheater and by default that makes him a liar and by default that makes him a thief. Someone needs to keep an eye on the purse strings.", 'created': '2024-11-18 19:11:50', 'submission_id': '1gu5hjp'}
{'comment': "welp, the people who stayed at home should've voted.", 'created': '2024-11-18 19:58:54', 'submission_id': '1gu5hjp'}
{'comment': 'Military will be used against civilian population, thank you republicans for this, collateral damage will be done', 'created': '2024-11-18 20:19:07', 'submission_id': '1gu5hjp'}
{'comment': 'Another part of the Constitution no longer holds meaning. Farewell Posse Comitatus', 'created': '2024-11-18 20:21:35', 'submission_id': '1gu5hjp'}
{'comment': 'Well yeah he said that before he was even elected so anyone who didn’t know this should probably pay attention before voting', 'created': '2024-11-18 21:36:24', 'submission_id': '1gu5hjp'}
{'comment': 'If anyone here has friends that may not be here legally, offer them a safe haven and take up arms against this shit.', 'created': '2024-11-18 22:09:15', 'submission_id': '1gu5hjp'}
{'comment': 'Disgusting', 'created': '2024-11-18 23:28:54', 'submission_id': '1gu5hjp'}
{'comment': 'If you voted for this then shame on you. The amount of death and destruction of immigrant families will be globally devistating. Trump continues to be the worst president in United States History', 'created': '2024-11-18 21:44:19', 'submission_id': '1gu5hjp'}
{'comment': '"Give me your tired, your poor, Your huddled masses yearning to breathe free, The wretched refuse of your teeming shore, Send these, the homeless, tempest-tossed to me, I lift my lamp beside the golden door!”\n\nAnd then we\'ll ship \'em right the fuck out', 'created': '2024-11-18 21:58:00', 'submission_id': '1gu5hjp'}
{'comment': "He's a clear and present danger. There's literally not one area of the United States' democracy that he is going to leave standing. From libraries to the military, from the 1st Amendment to the 27th I don't think there's one aspect of American life that will remain when he's finally done. That includes the 2nd Amendment. Sooner rather than later. Quote me.", 'created': '2024-11-18 18:38:27', 'submission_id': '1gu5hjp'}
{'comment': "Ugh there's a subscriber wall.", 'created': '2024-11-18 15:14:11', 'submission_id': '1gu5hjp'}
{'comment': 'Meanwhile, the democratic party is doing nothing.', 'created': '2024-11-18 17:43:42', 'submission_id': '1gu5hjp'}
{'comment': 'Let me see, kids in cages wasn’t enough, now he’ll go door to door and throw people into paddy wagons then dump them into what ever country he thinks their from, what could possibly go wrong..can we recall him now, prior to the inauguration. Please 🙏🏽', 'created': '2024-11-18 18:09:13', 'submission_id': '1gu5hjp'}
{'comment': 'When people show you who they are - believe them! Elections matter!', 'created': '2024-11-18 18:35:01', 'submission_id': '1gu5hjp'}
{'comment': 'Didnt the army in Iraq hate being responsible for keeping the peace?', 'created': '2024-11-18 19:27:33', 'submission_id': '1gu5hjp'}
{'comment': 'I wonder how the uniforms are going to look. They better be careful, Disney is very litigious about Star Wars.', 'created': '2024-11-18 20:00:41', 'submission_id': '1gu5hjp'}
{'comment': 'Fkn tyrant', 'created': '2024-11-18 21:35:51', 'submission_id': '1gu5hjp'}
{'comment': 'Okay.', 'created': '2024-11-18 23:13:55', 'submission_id': '1gu5hjp'}
{'comment': 'So much for the whole "He\'s not really gonna do it" takes or "He was just joking" bs. Those takes were always in bad faith (much like the "Trump\'s justice appointments wouldn\'t touch Roe/abortion"). They all knew the end goal they had and spouted out bs until the time was right.\n\nHonestly the whole mass deportation thing might just be an excuse to declare a national emergency to send to the military all over and pretty much turn the country into military rule. Not sure we even have 2 years to turn things around if Trump\'s plans go into effect.', 'created': '2024-11-18 23:35:51', 'submission_id': '1gu5hjp'}
{'comment': 'I read they will be looking more for illegal immigrants that have committed crimes. But that’s just wishful thinking I know.', 'created': '2024-11-18 21:13:35', 'submission_id': '1gu5hjp'}
{'comment': 'It’s like you all forgot that this big talk but then not having the brains to actually do anything is the modus operandi. The response should be ya ok bud.', 'created': '2024-11-18 21:22:15', 'submission_id': '1gu5hjp'}
{'comment': 'Use this, not deportation, but the Rapture taking them from us. Use this to describe any forced removal, the Rapture. Guarantee the others will be screaming no. Lol', 'created': '2024-11-18 18:18:48', 'submission_id': '1gu5hjp'}
{'comment': "Who's ready for Ana Franco's Dairy...", 'created': '2024-11-18 20:54:11', 'submission_id': '1gu5hjp'}
{'comment': "Honestly I just think this is a threat to scare people. He will probably deport a few thousand people right away to make an example and then the plan will fall by the wayside, just like most of his plans in the past. I don't see business leaders supporting this idea and surprised we haven't heard them weigh in yet. Mass deportations will hurt American citizens the most because we'll have to pay a lot more for food and services (that immigrants currently provide or produce). But it will also hurt many companies when they lose most of their workforce. Since we know chump is beholden to corporate interests and donors, he will back off when the business leaders start to speak up. I think the same thing will happen with the proposed tariffs on imported goods.", 'created': '2024-11-18 18:49:47', 'submission_id': '1gu5hjp'}
{'comment': 'This is all hot air.', 'created': '2024-11-18 17:27:25', 'submission_id': '1gu5hjp'}
{'comment': "When we warned about Trump in 2015 no one took us seriously.\n\n\nWhen we warned about roe vs wade we were called hysterical.\n\n\n\xa0Anyone who thinks shit isn't going to escalate to worse is a damned fool living a privileged life where they can afford to cover their eyes and ears and only go by the $$$ they see coming through their life and the way it feels to see a white woman married to a black man with mixed kids be successful\xa0", 'created': '2024-11-18 16:34:20', 'submission_id': '1gu5hjp'}
{'comment': 'Swing by the conservative sub it’s a fucking holiday, very interesting times ahead as the nazis don’t have to hide any more', 'created': '2024-11-18 18:13:58', 'submission_id': '1gu5hjp'}
{'comment': "I didn't vote for him. Why do I have to suffer?", 'created': '2024-11-18 20:51:35', 'submission_id': '1gu5hjp'}
{'comment': "TikTok and the like are the future of news. TikTok didn't tell people how to vote. The reason Dems lost is straight up racism and misogyny. \n\nHispanic/Latino men swung for Trump because he embodies what they perceive as machismo.\n\nAlso, the last election the Democrats won the presidential white vote was in 1964. Guess what happened in 1965? The civil rights act.", 'created': '2024-11-18 19:39:23', 'submission_id': '1gu5hjp'}
{'comment': "Militias that the government deems 'gangs' are going to pop up.", 'created': '2024-11-18 20:02:50', 'submission_id': '1gu5hjp'}
{'comment': '1930s Germany here we come', 'created': '2024-11-18 23:12:27', 'submission_id': '1gu5hjp'}
{'comment': 'The theory right now is that they expect to use some of them as slave labor', 'created': '2024-11-18 16:39:24', 'submission_id': '1gu5hjp'}
{'comment': 'Yep youre not crazy. The US will be paying to feed and house them while they wait, and trumps way is not going to work. It will just cost more $', 'created': '2024-11-18 19:58:40', 'submission_id': '1gu5hjp'}
{'comment': '> The last time someone tried, similar actions did not end very well.\n\nTrump does keep a book from that guy on his bedside table. (The book is Mien Kampf)', 'created': '2024-11-18 17:07:57', 'submission_id': '1gu5hjp'}
{'comment': "Hence the price of private prison stocks are up. It's all a grift. They don't want them gone, they want them working for free as prison labor.", 'created': '2024-11-18 21:06:58', 'submission_id': '1gu5hjp'}
{'comment': 'Mexico and the Central American countries are not going take in thousands/millions of people that have likely never been out of their states.', 'created': '2024-11-18 20:10:50', 'submission_id': '1gu5hjp'}
{'comment': 'It will end up costing a lot of money and attention to run, will increase the prices of all goods (inflation?) and hurt our economy and cause a lot of hardship. Police officers and military will be distracted by this and make us vulnerable to outside attack like 9/11 especially with all these horrible cabinet nominees. This is just one of the ways Trump will ruining our country for decades to come.', 'created': '2024-11-18 20:57:19', 'submission_id': '1gu5hjp'}
{'comment': 'In a previous historical parallel, ovens were not the original plan but were seen as a solution to the overpopulation. This is the path we are on.', 'created': '2024-11-18 20:07:31', 'submission_id': '1gu5hjp'}
{'comment': "This right here. They don't pick them up and then immediately drive to the border and toss them over. Lol.", 'created': '2024-11-18 21:37:16', 'submission_id': '1gu5hjp'}
{'comment': "This! I've been saying this also and wondering why it hasn't been talked about. He is talking about denaturalizing citizens born here by immigrants. That means they are not mexico's citizen in the first place, why would they take non citizens?", 'created': '2024-11-18 19:27:12', 'submission_id': '1gu5hjp'}
{'comment': 'Just like his plans to build a wall between the US and Mexico!? Easier in theory, but still illogical', 'created': '2024-11-18 19:25:07', 'submission_id': '1gu5hjp'}
{'comment': '“School shootings only *directly* impact a couple hundred kids a year. What we really need to focus on is the handful of trans women in girls sports.”', 'created': '2024-11-18 18:12:59', 'submission_id': '1gu5hjp'}
{'comment': 'Rise of the GOP is the real emergency. We know who they are and what they want to accomplish.', 'created': '2024-11-18 17:44:29', 'submission_id': '1gu5hjp'}
{'comment': "Sadly, this is the attitude I'm beginning to have. I know things are most likely only going to get worse but I'm preparing myself to be ready to rebuild.", 'created': '2024-11-18 17:07:44', 'submission_id': '1gu5hjp'}
{'comment': 'Yeah, I wonder if he’s gonna declare a national emergency when there’s nobody to pick our food. Perhaps people will be “assigned.”', 'created': '2024-11-18 19:07:54', 'submission_id': '1gu5hjp'}
{'comment': "My biggest hope for this term is that there aren't any big external disasters like Covid to muddy up his results.\n\nI want everyone to see what happens when there's nothing standing in his way.", 'created': '2024-11-18 23:19:50', 'submission_id': '1gu5hjp'}
{'comment': None, 'created': '2024-11-18 19:47:34', 'submission_id': '1gu5hjp'}
{'comment': "Ding! Ding!\n\nTex Governor Gregg Abbott signed on his first day SB4 Show me your papers law, which granted police the authority to stop anyone on suspicion of being undocumented\n\nGuess who was being pulled over? That’s right. That’s when I left Dallas for Chicago in 2016. Best decision of my life\n\nThere's nothing more that POS Greg Abbott wishes more than to round up illegals in his wheelchair, shooting pistols in the air, yelling yeehaw\n\nFockin racists morons", 'created': '2024-11-18 16:57:21', 'submission_id': '1gu5hjp'}
{'comment': "I think that's literally the plan.", 'created': '2024-11-18 15:58:37', 'submission_id': '1gu5hjp'}
{'comment': 'We’ve done it before. Look up the “Mexican Repatriation” of the 1930s. Estimated that somewhere between 300,000-2 million Mexicans were forcibly deported, approximately 40-60% of which were citizens, overwhelmingly children.\n\nETA: https://www.history.com/news/great-depression-repatriation-drives-mexico-deportation', 'created': '2024-11-18 16:14:38', 'submission_id': '1gu5hjp'}
{'comment': 'I mean Vance stood there and said they didn’t agree with Bidens immigration laws and in his eyes those people are here illegally.\n\nThese chucklefucks are coming for illegals, then go down the list of what they consider illegal even if not.', 'created': '2024-11-18 16:10:47', 'submission_id': '1gu5hjp'}
{'comment': 'I’m as white as they come with a splash of Native American, but back when Trump was President his first go-around, someone told me to go back to my country. That’s how bad it got. Not to mention it was done in front of his kid.', 'created': '2024-11-18 17:14:03', 'submission_id': '1gu5hjp'}
{'comment': 'Yep. That’s what happened in the 1930s. Many of those rounded up and deported were citizens. Eerie how history often rhymes. \n\nhttps://www.google.com/url?q=https://www.history.com/news/great-depression-repatriation-drives-mexico-deportation&sa=U&sqi=2&ved=2ahUKEwjcgonpk-aJAxV5L9AFHRIEEPoQFnoECCEQAQ&usg=AOvVaw2mGl-y5C8WZhUlSSW63MI2', 'created': '2024-11-18 16:06:28', 'submission_id': '1gu5hjp'}
{'comment': 'It will be a photo-op "mass" deportation. The cost of deporting everyone here illegally would be astronomical and would require WWII level participation and organizational skills. Trump is too cheap, inept, and lazy for that, and I don\'t believe all of the military and law enforcement would be on board. It\'s \'I\'m going to build a big, beautiful wall and make Mexico pay for it\' all over again. They\'ll film some illegal tattoed gang members being put on buses as MAGAs cheer in the background and declare victory.', 'created': '2024-11-18 16:12:45', 'submission_id': '1gu5hjp'}
{'comment': 'Right. I just have to keep my passport with me at all times.', 'created': '2024-11-18 16:08:46', 'submission_id': '1gu5hjp'}
{'comment': 'Hey now, a little ethnic cleansing never hurt anyone. Wait', 'created': '2024-11-18 16:43:56', 'submission_id': '1gu5hjp'}
{'comment': 'Yes… it will start with the easy ones first who have no papers, or are brand new to the country with papers \n\nNext, it will be those who are actual citizens, but they look like the ones who they have decided aren’t\n\nYou know how during the pandemic, morons were attacking Asian Americans who they randomly blamed for COVID? It will be that energy', 'created': '2024-11-18 18:00:29', 'submission_id': '1gu5hjp'}
{'comment': 'its not like they did this before. oh wait https://en.wikipedia.org/wiki/Operation_Wetback', 'created': '2024-11-18 16:14:15', 'submission_id': '1gu5hjp'}
{'comment': 'Or just talks bad about him or the local republicans, or has a name that sounds funny, what ever reason they can find. Dictatorships are so much fun for everyone./s', 'created': '2024-11-18 17:19:08', 'submission_id': '1gu5hjp'}
{'comment': 'Yep, they will not qualify people who are here "legally" vs not', 'created': '2024-11-18 17:32:36', 'submission_id': '1gu5hjp'}
{'comment': "They're going to send JD Vance back to Ohio.\xa0", 'created': '2024-11-18 17:36:20', 'submission_id': '1gu5hjp'}
{'comment': "Unless you're here illegally and utterly undocumented, the feds know where you live and where you work. They know your cellnumber, so it is trivial to go to the big telecom and buy your location data.\n\nOh, you're a citizen? The feds still have all your info. They know your demographics. They'll know if your parents were naturalized or not. They are still going to round you up if you aren't enough of a White American. \n\nOh, but you're a citizen and are white? Prove it. Hard to do from a concentration camp where they are going to have to send everyone as a holding zone before they send them to another country.\n\nOh wait, there are millions more people? And this is costing money? Please hand the Fühler Trump the lighter!", 'created': '2024-11-18 17:50:26', 'submission_id': '1gu5hjp'}
{'comment': "mass raids, more for media consumption than anything. Dictators work on FEAR and he's going to make sure that libs & immigrants tremble when they see the police or national guard.", 'created': '2024-11-18 21:27:48', 'submission_id': '1gu5hjp'}
{'comment': 'If the mad-crazy Cubans are kicked out they might be a bright light.', 'created': '2024-11-18 15:45:45', 'submission_id': '1gu5hjp'}
{'comment': 'Back to Haiti though? It’s hell.', 'created': '2024-11-18 17:27:33', 'submission_id': '1gu5hjp'}
{'comment': "> I mean, what is the solution?\n\nLook up what it took to stop the Nazis in Germany, and the Confederates in the South. I'm sure you'll get some ideas for what it will take.", 'created': '2024-11-18 17:01:12', 'submission_id': '1gu5hjp'}
{'comment': None, 'created': '2024-11-18 15:50:00', 'submission_id': '1gu5hjp'}
{'comment': "Well if it's anything like last time, the optics of families being separated and in cages etc was so god awful that it caused a ton of backlash from the public, he was pretty much forced to stop, id imagine that backlash will come fairly quick once this bullshit actually starts, on paper sure round up all the ppl committing crimes and if your here legally your fine, it isn't gonna work that way", 'created': '2024-11-18 17:08:59', 'submission_id': '1gu5hjp'}
{'comment': "Honestly? Make sure your papers are in order. Birth certificate, passport, driver's license or state issued photo ID, social security card, etc. If you have any government accounts that you can access online, like social security, make sure you can sign into them and that your contact info is up to date.\n\nThis fucking sucks, and it's horrible. But at this point, all you can do is look out for yourself, your family, friends, and any friendly redditors out there.", 'created': '2024-11-18 18:53:49', 'submission_id': '1gu5hjp'}
{'comment': "i'm not so sure... he's going to purge top military brass to get Yes men/women who'll accede to his demands. The rank & file staff will follow orders since imprisonment (legal or illegal) isn't a War Crime.", 'created': '2024-11-18 21:32:51', 'submission_id': '1gu5hjp'}
{'comment': 'Exactly. They have been running a white supremacist campaign from the beginning. Trump was re-elected by winning the white non-hispanic vote as well as the white hispanic vote.', 'created': '2024-11-18 20:26:19', 'submission_id': '1gu5hjp'}
{'comment': 'Fascist leaders like to manufacture national emergencies. So they could then keep making them more dire, so they can assume more power.', 'created': '2024-11-18 18:13:02', 'submission_id': '1gu5hjp'}
{'comment': 'They’re literally figuring that out in the conservative sub right now. Literally just saw this comment and reply 🙄\n\n-They’ll have to raise wages to pay someone to do these jobs now\n\n- won’t they raise the prices of groceries then? I voted to get prices lower.', 'created': '2024-11-18 19:36:20', 'submission_id': '1gu5hjp'}
{'comment': "Lol. Actually. For many of these jobs there's no price a citizen is going to work those jobs.\n\nPlus, unemployment is 4%. So, if you wanted to be a roofer or a tomato picker, they'd hire you as a citizen tomorrow. Be on site at 5am. Work until dusk. What would they have to pay your average white college kid or high school kid to do that?\n\nHell, even the farmers kids are leaving the farms. The trades are under staffed. Can't even get enough citizens with cdls to be truck drivers.", 'created': '2024-11-18 16:09:56', 'submission_id': '1gu5hjp'}
{'comment': "My theory is that they're going to imprison immigrants then force them to work in farms and slaughterhouses. This will keep prices low, and widen margins for the ag businesses bc they'll be getting free (slave) prison labor.\n\nThis makes money for the private prison companies, improves margins for the big ag businesses, and keeps prices from skyrocketing which would be a political win for Trump.", 'created': '2024-11-18 16:52:57', 'submission_id': '1gu5hjp'}
{'comment': '>bare minimum wage\n\nNo citizen will do the work for $7.25, but jokes on you if you think the people currently in those jobs are making anything close to that.', 'created': '2024-11-18 17:26:33', 'submission_id': '1gu5hjp'}
{'comment': "Especially in rural farm areas, which overwhelmingly voted for Trump. Wait until food is rotting in the fields and the farmers are going bankrupt because they can't find people to harvest their crops, and Elon has gutted any federal crop insurance that maybe could have helped cover this. We know however, that it will still be Biden's fault somehow.", 'created': '2024-11-18 17:48:08', 'submission_id': '1gu5hjp'}
{'comment': 'You’ve had an early glimpse.\n\nFrom the Uk here. After we went through with Brexit people opted to leave and there were fewer seasonal migrants willing to work here because of the racism.\n\nPrice of things went up. Our inflation has been terrible. Far worse than the US', 'created': '2024-11-18 23:59:38', 'submission_id': '1gu5hjp'}
{'comment': "> Restaurants prices will sky rocket, if they can even function. Homes will go unbuilt and fruits and veggies won't be picked. I'm sure that's just some of the things.\n\nI'm pretty sure that homes will still be built, they'll just increase accordingly in price to account for the difference between the labor of illegals vs. documented workers. That'll make our housing unaffordability crisis even worse.", 'created': '2024-11-18 19:22:16', 'submission_id': '1gu5hjp'}
{'comment': 'But that’s OK (/s) because in breaking everything, they’ll 1) create a new system in which the citizens have less power and choice while being sold the illusion that they’ll have more (see current red states’ standard of living) and 2) blame the Dems for all the catastrophes that ensue due to “totally corrupt” system that was already in place.\n\nI’m pretty worried that we’re about to witness a profound and expansive display and exploration of the Executive Branch’s powers in the next four months, be it under one President or the other. Given the recent SCOTUS decision regarding the broad scope of the sitting President’s immunity coverage, it’ll going to be one for the history books, and I don’t say that lightly.\n\nAnd i understand that both Biden and Trump are playing a very high-stakes game and probably can’t share their endgame strategies, if any, with anyone for fear of implicating them in the long run.\n\nI just hope that the Dems have a solid plan in place because once Trump or any one of his cronies are installed, it’s going to be extremely difficult to weed them back out without extreme measures.\n\nFuck Trump, by the way.', 'created': '2024-11-18 17:44:44', 'submission_id': '1gu5hjp'}
{'comment': "I'm more optimistic than the average Redditor about the power we have, but I don't think we're going to be able to attack this one on the front end. Based on polling, Trump's biggest strengths came from the economy and immigration.\n\nAs you point out, correctly, these two things are heavily intertwined. So when his nonsense tanks the economy, there will be a backlash, because those are the only 2 things he has going for him, and he will colossally fuck them up.\n\nBut we need to get ready to ride it out for a time.", 'created': '2024-11-18 15:44:08', 'submission_id': '1gu5hjp'}
{'comment': 'This is one of his election “pillars” - the mass deportations. The American People voted for this. \n\nYou don’t really have a legal or even popular leg to stand on here. \n\nYou very well could be morally correct, here. It’s quite possible in 8 years we’ll be looking back in disbelief at how we allowed this to happen and how it wrecked the economy and yadda yadda.\n\nBut Trump is going to do this, one way or another, he can’t back down from that promise.', 'created': '2024-11-18 16:21:04', 'submission_id': '1gu5hjp'}
{'comment': 'Stop this? We had our chance and we voted to endorse this. \n\nDo you have any idea on how we can “stop this”?', 'created': '2024-11-18 16:17:33', 'submission_id': '1gu5hjp'}
{'comment': 'MAGAs...\n\n\nDo you know how excited these white men would be to "help out"?\xa0\n\n\nAnd they will too', 'created': '2024-11-18 16:39:09', 'submission_id': '1gu5hjp'}
{'comment': 'I hope so. This is what I am hoping will happen but these people are fucking nuts!', 'created': '2024-11-18 16:29:25', 'submission_id': '1gu5hjp'}
{'comment': "That's exactly what I think.", 'created': '2024-11-18 16:21:59', 'submission_id': '1gu5hjp'}
{'comment': 'Yeah he\'s going to have areas and zones readied to be covered my media and people will be paraded being rounded up and then they will say "all done"\n\n\nAnd it will scare the ones not targeted into doing more slave labor likely', 'created': '2024-11-18 16:38:33', 'submission_id': '1gu5hjp'}
{'comment': 'Yup, and then suddenly the "border crisis" will be over and right wing media won\'t mention it again until a Democrat has power', 'created': '2024-11-18 17:13:35', 'submission_id': '1gu5hjp'}
{'comment': "He's bone lazy", 'created': '2024-11-18 18:12:16', 'submission_id': '1gu5hjp'}
{'comment': 'No. He’s going to want to round them up in “sanctuary states”.', 'created': '2024-11-18 20:19:03', 'submission_id': '1gu5hjp'}
{'comment': "This isn't a business-as-usual thing, and it's nothing like his first term.\nDisassembling vital federal programs. Billionaires advising the government from their DOGE desks. Military purge. Rounding up millions.\n\n\nIt's comforting to deny becasue it isn't happening yet, but don't fool yourself: these are promises of horror and they get nearer every day. This is going to be very, very bad.", 'created': '2024-11-18 21:35:20', 'submission_id': '1gu5hjp'}
{'comment': 'My only concern is, have these people that are on documented aren’t gonna have papers, because they’re not legal and they’re gonna lie. Then you’re going to detain them and what are you gonna do with them? Are you gonna start building detention centers? Are you gonna throw in jail, are you gonna feed all these millions of ??? Migrants that you have no idea where they came from and ship them to wherever. Who’s gonna pay for all this?? It’s kind of crazy that all the Latinos that voted for Trump are going to be second-guessing that when he breaks up all their families. Had it done at my parents house 12 years ago family man with two twin daughters was in this country for 15 years and they shipped him back to Venezuela. 😔', 'created': '2024-11-18 16:07:50', 'submission_id': '1gu5hjp'}
{'comment': "No that was Jan 6th. We are to the point now where the judges look away Hitler has been released from prison with more followers than he had prior to prison and he's going to start a ww and fuck all of us because of the uneducated hateful bigots. Welcome to Hitler 2.0 this time he's asked flat out for his generals, and has zero guardrails. If you can afford to leave the country you probably should. Source for the statements: history that half the USA doesn't care about. Great book that you might b want to read before the 1984 purge: [The Death of Democracy: Hitler's Rise to Power and the Downfall of the Weimar Republic](https://a.co/d/8WoQigs)", 'created': '2024-11-18 18:05:44', 'submission_id': '1gu5hjp'}
{'comment': 'Farmers still supported him after his trade war with China ruined their export market.', 'created': '2024-11-18 20:20:42', 'submission_id': '1gu5hjp'}
{'comment': 'I’m not sure if poor working class eats blueberries, just saying. They can’t afford.', 'created': '2024-11-18 21:18:42', 'submission_id': '1gu5hjp'}
{'comment': 'buy a gun', 'created': '2024-11-18 16:11:55', 'submission_id': '1gu5hjp'}
{'comment': 'if you can afford the legal & financial penalties/consequences, protect any undocumented families with children you can. Give them shelter, lodging, under-the-table work. This is what good Christians did in Germany during the interwar period when the Nazis were rising to power & enacting restrictions on Jews.', 'created': '2024-11-18 21:36:36', 'submission_id': '1gu5hjp'}
{'comment': 'How was it rigged? Data?', 'created': '2024-11-18 21:15:28', 'submission_id': '1gu5hjp'}
{'comment': 'I understand, but when America moves like this when have Black folks escaped harm? We will most definitely be impacted by this, don’t think for a second we won’t.', 'created': '2024-11-18 17:11:24', 'submission_id': '1gu5hjp'}
{'comment': 'See above.', 'created': '2024-11-18 15:15:56', 'submission_id': '1gu5hjp'}
{'comment': 'Not true, they are slowly rolling over and spreading their cheeks. And handing Trump et al the big jar of Vaseline with the sand in it\n\nsmfh', 'created': '2024-11-18 18:13:59', 'submission_id': '1gu5hjp'}
{'comment': 'What would you like them to do? Legally?', 'created': '2024-11-18 22:10:28', 'submission_id': '1gu5hjp'}
{'comment': 'The advantageous moment for protests is probably right before or right after Trump does something.', 'created': '2024-11-18 18:03:47', 'submission_id': '1gu5hjp'}
{'comment': 'That sounds Italian', 'created': '2024-11-18 22:06:48', 'submission_id': '1gu5hjp'}
{'comment': 'Is she the sister of James Franco?', 'created': '2024-11-18 22:08:20', 'submission_id': '1gu5hjp'}
{'comment': "Free advice for you: when people tell you they're going to do something, believe them. Be prepared.", 'created': '2024-11-18 21:29:53', 'submission_id': '1gu5hjp'}
{'comment': 'Is it? \n\nOr is it just stage one of an ever growing fiction of national emergency, so he can assume emergency powers?', 'created': '2024-11-18 18:14:00', 'submission_id': '1gu5hjp'}
{'comment': 'Perhaps, but what if Trump proceeds deports just 25% and not the promised 100% of the folks he promised during the first sweep of deportations? That’s disastrous for a number of levels.', 'created': '2024-11-18 17:47:17', 'submission_id': '1gu5hjp'}
{'comment': 'My MIL is one of these. She doesn’t care because none of it applies to her despite directly affecting her kids or others in the family. She also told me to “stop watching the fake news media. He won’t do any of that.” 😐', 'created': '2024-11-18 17:44:27', 'submission_id': '1gu5hjp'}
{'comment': 'Or if they think it will just include people who are "illegal"', 'created': '2024-11-18 17:31:59', 'submission_id': '1gu5hjp'}
{'comment': 'EVERYTHING will become far more expensive. And people better learn to do their own yard work, grow their own food and process their own meats. Good luck.and stock up.', 'created': '2024-11-18 17:52:30', 'submission_id': '1gu5hjp'}
{'comment': 'You and me both', 'created': '2024-11-18 23:53:21', 'submission_id': '1gu5hjp'}
{'comment': 'Agreed. We tried to do stuff that basically the Republicans did and we suffered.', 'created': '2024-11-18 22:57:33', 'submission_id': '1gu5hjp'}
{'comment': "It's more likely we will make a deal with a 3rd party country to hold them until they can arrange their deportation, similar to the Rwanda/Albania deals happening with the UK/Italy.", 'created': '2024-11-18 20:05:54', 'submission_id': '1gu5hjp'}
{'comment': None, 'created': '2024-11-18 23:32:21', 'submission_id': '1gu5hjp'}
{'comment': 'I believe you but also there’s no way you can convince me that guy reads.', 'created': '2024-11-18 19:36:50', 'submission_id': '1gu5hjp'}
{'comment': 'It wasn’t Mien Kampf, it was his second book My New Order, which is a collection of his speeches.', 'created': '2024-11-18 22:29:01', 'submission_id': '1gu5hjp'}
{'comment': "I think he was referencing [Operation Wetback](https://en.wikipedia.org/wiki/Operation_Wetback). Either way, it's all very bad.", 'created': '2024-11-18 20:54:12', 'submission_id': '1gu5hjp'}
{'comment': 'Mein Kampf', 'created': '2024-11-18 22:35:34', 'submission_id': '1gu5hjp'}
{'comment': 'And not the rich kids in private schools. It’s only those poor kids in public schools. Not an emergency by any means /s', 'created': '2024-11-18 20:05:23', 'submission_id': '1gu5hjp'}
{'comment': 'Yup I\'ve seen America getting close to a breaking point for a long time. several years ago our wealth inequality surpassed that of french before the revolution and eating all the rich. Unfortunately the control of the media keeps the uninformed thinking it\'s "illegals" or "Dems" they keep poor fighting each other instead of the rich. It\'s a great strategy that has been used throughout history. \n\nIt just kinda has to get worse before it gets better. I thought it would be through people getting poorer then coming together, not through fascism. So many people will suffer but I\'m hoping this will spur the change the United States needs. I know hoping trumpists using braincells is an uphill battle but when prices soar and everyone suffers, maybe people will realize this man lied to them all along. This has happened before.', 'created': '2024-11-18 17:14:06', 'submission_id': '1gu5hjp'}
{'comment': 'There will be a HUGE shortage of farm workers. Some states are already "leasing" prisoners to work the fields.', 'created': '2024-11-18 19:25:09', 'submission_id': '1gu5hjp'}
{'comment': "The good news is that most of our food comes from California. You know Newsom isn't going to cooperate with any of Trump's shit.", 'created': '2024-11-18 23:23:37', 'submission_id': '1gu5hjp'}
{'comment': 'It always swings back after Republicans undo everything from the previous president.', 'created': '2024-11-18 21:04:27', 'submission_id': '1gu5hjp'}
{'comment': 'And when you say "illegals" you mean "anyone not white enough for him"', 'created': '2024-11-18 17:05:25', 'submission_id': '1gu5hjp'}
{'comment': 'He said during a speech months ago, and it was overlooked at the time.\n\n\n"The local police know, they have all the information they need they know they are, and on day one we\'ll round\'em up"', 'created': '2024-11-18 16:23:58', 'submission_id': '1gu5hjp'}
{'comment': 'Ok. See you all when decent people take back the White House. Lol', 'created': '2024-11-18 16:02:49', 'submission_id': '1gu5hjp'}
{'comment': 'Yeah, kinda I’m guessing.', 'created': '2024-11-18 16:20:13', 'submission_id': '1gu5hjp'}
{'comment': 'More of a concept of a plan.', 'created': '2024-11-18 18:41:29', 'submission_id': '1gu5hjp'}
{'comment': 'That is the EXACT plan. I know so because Trump literally told me so over the phone last night before bed.', 'created': '2024-11-18 18:42:35', 'submission_id': '1gu5hjp'}
{'comment': 'Or the Japanese internment camps.', 'created': '2024-11-18 17:02:18', 'submission_id': '1gu5hjp'}
{'comment': 'My great-grandfather. Born in 1917 in Orange County, CA, was one of them. He never came back to the US\n\nHis great-grandson did 💪', 'created': '2024-11-18 17:03:30', 'submission_id': '1gu5hjp'}
{'comment': 'This makes me fear for my step mom and my brother. My brother is currently serving in the Army and is deployed. My step mom is from SA and is a naturalized citizen. You wouldn’t know it from looking at her. Thai is giving me Nazi Germany vibes when they had the cutouts to, literally, profile Jews.', 'created': '2024-11-18 17:48:42', 'submission_id': '1gu5hjp'}
{'comment': 'trump will just make the Mexican version of concentration campa and act like he did something good.', 'created': '2024-11-18 20:52:43', 'submission_id': '1gu5hjp'}
{'comment': 'My great grandmother on my dad’s side is 1/2 Blackfoot, born on a Reservation. My grandmother on my mother’s side is 1/2 Cherokee. \n\nThe rest is Dutch and British. \n\nMy family has been here countless generations before the Trumps ever set foot in New York. \n\nThis is *my* fuckin country, and I ain’t leaving unless it’s in death. \n\nTrump is more of an immigrant than I am.', 'created': '2024-11-18 22:15:28', 'submission_id': '1gu5hjp'}
{'comment': 'Read up on the Nazi death camps.\n\nThe timeline there was:\n\n"Deport the undesirables!"\n\n"Deporting them is too much trouble, let\'s throw them in work camps instead!"\n\n"Why are we feeding our undesirables? We could use that food!"\n\n"Why are we letting these prisoners waste valuable effort looking after their dying cellmates? Let\'s just gas them when they\'re too weak to work anymore so they don\'t get in the way!"\n\nThe USA already has the work camps. Trump is pushing down the path towards gas chambers.', 'created': '2024-11-18 17:04:48', 'submission_id': '1gu5hjp'}
{'comment': "They're going to put them in prisons here, likely not actually deport them. This is a HUGE boon for private prisons. 💰💰\n\nhttps://abcnews.go.com/US/trumps-deportation-plan-private-prison-industry-sees-lucrative/story?id=115775702\n\nhttps://www.cnn.com/2024/11/07/politics/trump-immigrant-detention-plans/index.html", 'created': '2024-11-18 16:50:07', 'submission_id': '1gu5hjp'}
{'comment': "I don't think so. I think with Stephen Miller in charge, it'll happen and efficiently cause he's not inept or dumb and very much evil. He'll probably be jerking off to all the misery. He desperately wants to be the next Heinrich Himmler.", 'created': '2024-11-18 16:57:17', 'submission_id': '1gu5hjp'}
{'comment': 'You are overlooking the conservative governors who are frothing at the mouth at the prospect \n\nTexas Governor Gregg Abbott signed on his first day SB4 Show me your papers law, which granted police the authority to stop anyone on suspicion of being undocumented\n\nGuess who was being pulled over? That’s right. That’s when I left Dallas for Chicago in 2016. Best decision of my life\n\nThere’s nothing that POS TX Gov Greg Abbott wishes more than to round up illegals in his wheelchair, shooting pistols in the air, yelling yeehaw\n\nFockin racists morons', 'created': '2024-11-18 17:06:14', 'submission_id': '1gu5hjp'}
{'comment': "Yeah that won't matter buddy your passport will just end up in a shredder and you'll end up in a labor camp.", 'created': '2024-11-18 19:09:21', 'submission_id': '1gu5hjp'}
{'comment': 'I’m assuming that they would rather make the choice themselves as to what kind of hell they go to.', 'created': '2024-11-18 17:38:32', 'submission_id': '1gu5hjp'}
{'comment': 'This is what I’m wondering, how long are we supposed to wait and how much damage do we let him do before we rise up?', 'created': '2024-11-18 17:58:29', 'submission_id': '1gu5hjp'}
{'comment': 'My theory…all out civil war by about year three of trumps term maybe even sooner the dem governors have already said they will oppose any and all radical moves by trump and his flock and I knew automatically after hearing that we are getting closer to the brink.', 'created': '2024-11-18 20:57:52', 'submission_id': '1gu5hjp'}
{'comment': 'Should we notify the FBI?', 'created': '2024-11-18 21:06:53', 'submission_id': '1gu5hjp'}
{'comment': "My fear is trump will start targeting citizens who oppose him and they'll use social media to find us.", 'created': '2024-11-18 16:58:13', 'submission_id': '1gu5hjp'}
{'comment': 'Great idea, though not everyone uses Facebook...', 'created': '2024-11-18 16:07:18', 'submission_id': '1gu5hjp'}
{'comment': "> private FB groups\n\nYou're kidding yourself if you think facebook won't turn over your data to Trump.", 'created': '2024-11-18 17:01:45', 'submission_id': '1gu5hjp'}
{'comment': 'What’s the women’s group?', 'created': '2024-11-18 16:35:40', 'submission_id': '1gu5hjp'}
{'comment': 'I would love to join! Please chat me info 🙏 (I am female)', 'created': '2024-11-18 19:38:35', 'submission_id': '1gu5hjp'}
{'comment': "Ah, but it isn't just war crimes we weren't prevented from doing by the UCMJ. It was any unlawful order*. That includes being used *inside* the borders of the US except in time of declared war.", 'created': '2024-11-18 22:17:41', 'submission_id': '1gu5hjp'}
{'comment': 'They could stage a coup if he tries. Will they? I dunno. Depend on whether they meant it when they pledged loyalty to the constitution over a man.', 'created': '2024-11-18 23:09:27', 'submission_id': '1gu5hjp'}
{'comment': 'If only there was someone who wanted to fight price gouging…', 'created': '2024-11-18 20:36:45', 'submission_id': '1gu5hjp'}
{'comment': 'I never said that they were, they’re all hired for like $2 bucks an hour', 'created': '2024-11-18 17:36:41', 'submission_id': '1gu5hjp'}
{'comment': 'I was in the Aldi\'s the other day and a little old black lady was on speaker phone talking about how she cant wait for Trump to deport the illegals.\xa0\n\n\n\xa0My bf and I were like "does she know she\'s like..next in line?"', 'created': '2024-11-18 16:25:51', 'submission_id': '1gu5hjp'}
{'comment': 'So capitalism gonna save us in the end? 🫠', 'created': '2024-11-18 15:50:10', 'submission_id': '1gu5hjp'}
{'comment': "I heard an overwhelming amount of people voting for him to deport illegals.\n\n\n\xa0Even if he doesn't do it en masse, he has to atleast look like he tried and then somehow blame the failed shitty job on democratic states", 'created': '2024-11-18 16:27:30', 'submission_id': '1gu5hjp'}
{'comment': 'This is what they\'ve been waiting for since Trump started his campaign. They\'ve been prepared ever since. "Stand back and stand by."', 'created': '2024-11-18 17:10:24', 'submission_id': '1gu5hjp'}
{'comment': "Problem with that.\n\nThey ain't subtle or disciplined.\n\nMuch like Hitler or Stalin, during their purges, they had really controlled groups that did their bidding and a large loyal/fearful population group.\n\nAmerica is not like Germany or Russia. We are a vast group of people with various generations plus various radicals of political/moral ideals who don't fear easily.\n\nAlso we have lots, and lots, and looooooots of guns. That's even harder to control in America.", 'created': '2024-11-18 19:40:57', 'submission_id': '1gu5hjp'}
{'comment': 'Trump isn’t capable of legislating, we saw this in 2016 and that was with a much more coherent cabient behind him. His Presidency will be a disaster just from a logistical point of view. He won’t have all Republicans in congress under his control, especially if the national economy downturns and his popularity with it. \n\nHe will play to his base as a big success with half assed and butchered bills and EOs while sitting on his ass waiting for his term to end knowing he won’t go to jail after he leaves.\n\nHe’s not Hitler 2.0, he’s a sad fragile old man who ran for President first to project his name and image and then the second time to protect his ego and keep himself out of prison. His Presidency is about to be sunk by filibuster and legal challenges. He also will not challenge states like California or Illinois on dragging the military in there to deport illegals. Even he knows that will be a disaster', 'created': '2024-11-18 16:34:25', 'submission_id': '1gu5hjp'}
{'comment': 'Again he’s all talk and no bite. People said this stuff in 2016 as well(and this time the dems weren’t caught with their pants down), he already had billionaires as advisers. Once again one of his key components is Trump listens to no one but himself. He’s going to half ass everything, portray it as a win to his base and move on.\n\nYeah his presidency is going to be very bad for America, but this isn’t some doomsday scenario. He’s not going to follow through with everything, I doubt half his current appointees even make it to 2026 before he fires them. \n\nAnd again, Democrats would not spend the last 4 years clamouring and calling him a fascist and Hitler incarnate without a plan to counter him. So if you think this is the end of it all you’re mistaken.', 'created': '2024-11-18 21:43:31', 'submission_id': '1gu5hjp'}
{'comment': 'I love seeing the statistics on drunk drivers like people don\'t lie their ass off\xa0\n\n\nI stg one old woman tried to be like "only 8% of the population drives drunk!!"\n\n\nThere\'s a lot to unpack there but it doesn\'t matter because my answer to shut her down was "and 90% of the population lies about it when they do something illegal"\n\n\nThat was just some shit I made up but it got my point across because she wasn\'t quick enough to realize what I did...just that I was right, people are *liars*.\xa0', 'created': '2024-11-18 16:37:09', 'submission_id': '1gu5hjp'}
{'comment': 'Are you gonna suggest they shoot ICE when trying to deport someone?', 'created': '2024-11-18 16:37:36', 'submission_id': '1gu5hjp'}
{'comment': 'My prior statement is in regards to the overwhelming amount of Hispanic votes for Trump. They voted for that man. That’s what they get.\n\nI know the black community will also be hit. And I’m I embracing for that moment. I am not relying on anyone else because it is clear people only care for themselves now.', 'created': '2024-11-18 17:12:24', 'submission_id': '1gu5hjp'}
{'comment': "Kamala doesn't have to certify the vote knowing that she'll be letting a bunch of people in who said they are going, have hired people who know how to, and have public plans to light the building on fire.", 'created': '2024-11-18 22:14:02', 'submission_id': '1gu5hjp'}
{'comment': "He used the national guard against peaceful protesters in DC before. Tear gased them to make way for a photo shoot. \n\nI really don't think he is going to go any easier, none the less when people begin to protest HIM personally.", 'created': '2024-11-18 18:05:02', 'submission_id': '1gu5hjp'}
{'comment': 'Protests are cute and all but politicians listen to voters. Not protesters.', 'created': '2024-11-18 22:11:46', 'submission_id': '1gu5hjp'}
{'comment': "But he lies nonstop about everything else. Plus he's way too incompetent to pull this off.", 'created': '2024-11-18 21:35:09', 'submission_id': '1gu5hjp'}
{'comment': 'I’m not sure why they think that, he promised he’d do it.', 'created': '2024-11-18 18:16:53', 'submission_id': '1gu5hjp'}
{'comment': "Hahahaha. She's going to be in for a rude awakening when food rots on the vine and what we have become outrageously expensive.", 'created': '2024-11-18 18:29:03', 'submission_id': '1gu5hjp'}
{'comment': 'I got into a giant argument with my SIL last week for the first time in the over thirty years I’ve known her, about abortion. She can’t fathom why I’m scared. When I said women are dying due to bans and we both have daughters, she said “I’m not seeing that.” And my jaw dropped. I know she isn’t watching cnn or msnbc but these stories are not hard to find if you want to find them. Which obviously means she is the same as your MIL. It isn’t a problem because it isn’t a problem for her.\n\nThis on top of the fact that I’ve had multiple miscarriages, ectopics, and my kids are all via ivf. And that my stepkid is nonbinary. AND that it was my birthday. 😆\n\nEdit: due to dumb autocorrect', 'created': '2024-11-18 22:21:19', 'submission_id': '1gu5hjp'}
{'comment': 'Can’t be fake if it’s evidence. \n\nRemember, elephants like to rub mud and dung on theirselves to keep theirselves cool. \n\nYou could even go as saying these people have a psychological scat fetish.', 'created': '2024-11-18 20:34:14', 'submission_id': '1gu5hjp'}
{'comment': 'And she’ll wonder why you avoid her. Some people are just more selfish and less empathetic than others. When you’re a kid in grade school you might tolerate the selfish in your circle of friends. But as and adult these people will be out of my life as much as humanly possible.', 'created': '2024-11-18 22:51:51', 'submission_id': '1gu5hjp'}
{'comment': 'This is the biggest thing i think about. People think the hate and deportations will stop with “illegals”. Once the “illegals” are gone whose the next “enemy” he will target to keep his supporters in a frenzy. Legal immigrants better have all their documentation ready to present to the cops when they show up knocking. People of color in general are going to be harassed and falsely accused constantly. He’s already said he wants to imprison all of his political enemies so… once everyone who can be deported has been its imprisonment next. LGBTQ, specifically trans people, have been a target of his rhetoric since day one. It’s a sad time in our country and seeing so many people vote against their own interests to purposely harm “others” has been one of the most shameful things to watch.', 'created': '2024-11-18 18:35:27', 'submission_id': '1gu5hjp'}
{'comment': 'It will only affect the illegals that are criminals, they said as they closed their eyes and looked the other way.', 'created': '2024-11-18 19:29:44', 'submission_id': '1gu5hjp'}
{'comment': 'Start shopping now before all the tariffs are in place! So when this happens and it gets worse and worse do you think the people that voted for him will finally stand up and do something???', 'created': '2024-11-18 19:56:09', 'submission_id': '1gu5hjp'}
{'comment': 'Until forced labor comes into play from prisoners, legal minorities and poor people\n\nDon’t worry though, they will still use this as an excuse to keep raising prices', 'created': '2024-11-18 17:57:26', 'submission_id': '1gu5hjp'}
{'comment': 'But which country would take them?', 'created': '2024-11-18 20:20:54', 'submission_id': '1gu5hjp'}
{'comment': 'If it has pictures though he is all about it.', 'created': '2024-11-18 19:59:03', 'submission_id': '1gu5hjp'}
{'comment': 'Have they tried putting his teleprompter in german?', 'created': '2024-11-18 22:34:46', 'submission_id': '1gu5hjp'}
{'comment': 'I stand corrected! :D', 'created': '2024-11-18 22:30:38', 'submission_id': '1gu5hjp'}
{'comment': "I'm pretty sure that was inspired by things from the war.", 'created': '2024-11-18 22:33:28', 'submission_id': '1gu5hjp'}
{'comment': 'So my german spelling sucks.', 'created': '2024-11-18 22:54:12', 'submission_id': '1gu5hjp'}
{'comment': '🏆 You Won!', 'created': '2024-11-18 17:08:00', 'submission_id': '1gu5hjp'}
{'comment': "Still, even if that were remotely true (it's not), the local police are not a part of the executive branch of the federal government.\n\nFederalism works both ways. ICE obviously doesn't have the budget for it alone. He's going to have to use budget reconciliation and congress to get everything he wants and/or force local PDs (who aren't as Gung-Ho) to play ball. \n\nI don't forsee congress being anything more than a rubber stamp, but at the very least it will make the plan obvious based on the bill.", 'created': '2024-11-18 17:42:52', 'submission_id': '1gu5hjp'}
{'comment': 'It’s literally going to cause war in the streets like the “third-world countries” he hates', 'created': '2024-11-18 18:16:21', 'submission_id': '1gu5hjp'}
{'comment': 'Aka never unless the military overthrow trump', 'created': '2024-11-18 16:06:52', 'submission_id': '1gu5hjp'}
{'comment': 'That too. It seems more people know about the Japanese internment camps than the Mexican deportations. And given that the deportations were implemented because Hoover’s admin scapegoated Mexicans for the Great Depression and they encouraged the deportations to “free up jobs” (which didn’t work—those jobs just disappeared and it hurt the economy more), this one felt a bit more like comparing apples to apples. \n\nAlthough I do expect that they will also arrest and use people for prison slave labor as well.', 'created': '2024-11-18 17:11:53', 'submission_id': '1gu5hjp'}
{'comment': "Holy shit that's crazy. Your great grandfather deserved to have lived in Orange County.", 'created': '2024-11-18 17:14:37', 'submission_id': '1gu5hjp'}
{'comment': "we're lucky to have him, even if we dont deserve him", 'created': '2024-11-18 17:16:56', 'submission_id': '1gu5hjp'}
{'comment': 'True.', 'created': '2024-11-18 17:39:34', 'submission_id': '1gu5hjp'}
{'comment': "> the dem governors have already said they will oppose any and all radical moves by trump and his flock\n\nI'll believe it when I see it.", 'created': '2024-11-18 22:32:38', 'submission_id': '1gu5hjp'}
{'comment': None, 'created': '2024-11-18 17:52:43', 'submission_id': '1gu5hjp'}
{'comment': "I've stopped posting everywhere except reddit because you know they will scrape social media to find people they don't like.", 'created': '2024-11-18 21:25:05', 'submission_id': '1gu5hjp'}
{'comment': None, 'created': '2024-11-18 16:12:24', 'submission_id': '1gu5hjp'}
{'comment': "That's not the issue. The issue is keeping out all the right wing idiots and trolls, whose only goal is to argue, derail, and disrupt.", 'created': '2024-11-18 17:10:38', 'submission_id': '1gu5hjp'}
{'comment': 'Yeah, I’ve been at the grocery store too when MAGAts started cheering on Trump and how he’s going to lower price. I point over the produce section and say “do you know how much of that is imported? What do you think is going to happen when his tariffs hit?!” \n\nThey always huff and puff and walk away angrily. They have zero idea what they actually voted for. All they know is “Trump makes Libtards angry!” And that’s all the more they think.', 'created': '2024-11-18 17:06:42', 'submission_id': '1gu5hjp'}
{'comment': 'That\'s the thing though. For the "line go up" people that actually control the country, this would be catastrophic. Maybe they have so much money that they don\'t care, but I doubt it tbh.', 'created': '2024-11-18 15:57:42', 'submission_id': '1gu5hjp'}
{'comment': "Capitalism will save capitalism. We're just along for the ride.", 'created': '2024-11-18 16:44:46', 'submission_id': '1gu5hjp'}
{'comment': "he's not actually writing this stuff this time. It's weekend at bernies this time, project 2025 is pulling all the strings and he's just signing papers.", 'created': '2024-11-18 16:51:50', 'submission_id': '1gu5hjp'}
{'comment': 'From your fingertips to the Great Bird of the Galaxy’s eyes!\n\nEdit with that said I expect another Kent’s State Massacre.', 'created': '2024-11-18 16:47:59', 'submission_id': '1gu5hjp'}
{'comment': "Thats a comforting thought, but he's got an executive order to purge the military--that's never been done before.\nHe has the legislative and judicial branches capitulating to him fully.\nHe's got concrete plans to round up millions--that is how the holocaust happened.\n\nThis stuff is unprecedented here, but it's all textbook stuff when it comes to every historical authoritarian takeover ever. Literally, ever. Since Caesar called his political opponents the enemy of the people. \n\nSo what you're saying is certainly a relaxing sentiment, I think what you're saying completely lacks in preparedness. Everything they've said, all the plans they're currently carrying out, and everything from history points to this being really bad.\n\nJust be safe. Remind me he's an idiot, then forget me as you continue redditing and living your life, but dude, I hope to god you be safe.", 'created': '2024-11-18 22:53:24', 'submission_id': '1gu5hjp'}
{'comment': "> Are you gonna suggest they shoot ICE when trying to deport someone?\n\n> As a normal citizen, what can be done to stop this bullshit?\n\n> buy a gun\n\n> Are you gonna suggest they shoot ICE when trying to deport someone?\n\nI don't know if that's what it will take to fight against this. It's a possibility. And what if it comes to that?\n\nMany people have already explained how this is very reminiscent of the fascism of the 1930s in Germany. Very clearly, that eventually led to WW2, among other reasons.\n\nWill it also happen to us? No idea. But if it does, we should be as prepared as possible.", 'created': '2024-11-18 17:40:59', 'submission_id': '1gu5hjp'}
{'comment': 'Yes, I know. But our people rarely don’t answer the call. We will again, but you are right for this to be the time when we let people know we’re done being stepped on. Our best move right now is to observe, but if we must act then we must act.', 'created': '2024-11-18 17:26:53', 'submission_id': '1gu5hjp'}
{'comment': 'So basically do what even Mike Pence knew was pointless and wrong and would lead to mass unrest and violence? That thing?', 'created': '2024-11-18 23:06:19', 'submission_id': '1gu5hjp'}
{'comment': "I'm aware. Let's not go quietly.", 'created': '2024-11-18 18:18:48', 'submission_id': '1gu5hjp'}
{'comment': "I was actually thinking the protests would be targeted at neighbors. They're almost certainly not going to listen, but again, let's not go quietly. No room for excuses.", 'created': '2024-11-18 22:32:47', 'submission_id': '1gu5hjp'}
{'comment': "Speaker of the House smiling with him eating McDonalds on that plane. Supreme Court takes his marching orders. Christian Nationalists all around him. Tom Homan determined to spend as much as needed to get all of the undocumented.\n\nI hope Trumps incompetence gets in his own way, but I do not take any refuge in such thoughts, given everything we're seeing.\n\nJust keep yourself safe.", 'created': '2024-11-18 21:41:33', 'submission_id': '1gu5hjp'}
{'comment': 'Because they are stupid and ignorant and literally believe the “superstar” snake oil salesman', 'created': '2024-11-18 19:54:52', 'submission_id': '1gu5hjp'}
{'comment': 'Fox News. They played him up like he was going to be the lord and savior himself .', 'created': '2024-11-18 22:37:18', 'submission_id': '1gu5hjp'}
{'comment': 'He tends to do just about everything he can do to keep his promises. People have been jaded by politicians who talk a big game and then don’t do any of the stuff they spoke about. \n\nThat’s not Trump like you said, say what you want about him, but he pretty much tries his best to keep his promises as we’ve seen during his 1st term. I think that’s why people give him a pass on stuff. They look at what he’s saying and say: oh he’s never gonna do that, really? that’s just Bravado and Bluster, and so on.', 'created': '2024-11-18 18:58:33', 'submission_id': '1gu5hjp'}
{'comment': "OK, so what's the answer? Being pro-illegal immigration? That clearly doesn't work either. It's 2024, we have to figure out how to harvest our food without taking advantage of the people who are the most vulnerable in the first place.", 'created': '2024-11-18 19:21:17', 'submission_id': '1gu5hjp'}
{'comment': 'The stupid part is that 100 years ago it was the Italian and Irish immigrants that were harassed and picked on. Anyone who is white is an immigrant too, just a few more generations back. The cognitive dissonance is astonishing.', 'created': '2024-11-18 19:31:05', 'submission_id': '1gu5hjp'}
{'comment': 'Right I mean are they going to go through the steps of checking or just haul them off', 'created': '2024-11-18 20:40:43', 'submission_id': '1gu5hjp'}
{'comment': 'I need to look about reservations in really nice closets.', 'created': '2024-11-18 20:05:58', 'submission_id': '1gu5hjp'}
{'comment': 'Thats a lie by Maga. As most of them are way more law abiding then Americans—-they will be criminals and anyone who “looks” like a criminal, guaranteed', 'created': '2024-11-18 23:51:29', 'submission_id': '1gu5hjp'}
{'comment': 'Well have all that plus unrestrained inflation. \n\nHope the trump voters are happy.', 'created': '2024-11-18 23:32:24', 'submission_id': '1gu5hjp'}
{'comment': 'There aren’t any pictures that I recall. \n\nI started reading it back in junior high, as I figured it would be a good insight into the sort of mind that could fathom such atrocities, so I could be on the lookout for similar behavior in the future. \n\nAs luck would have it, the Principle didn’t understand my reasoning behind reading it, and assumed the worst in spite of my objections. \n\nCensorship of such things is how the ideology is allowed to fester in the shadows, imho. \n\nWithout adequate knowledge of what to look for, we lose our ability to stomp it out before it becomes a bigger problem.', 'created': '2024-11-18 22:08:23', 'submission_id': '1gu5hjp'}
{'comment': '“My first mien kampf” picture book', 'created': '2024-11-18 20:20:04', 'submission_id': '1gu5hjp'}
{'comment': 'You might look into “constitutional sheriffs”. You’re right that he may not be able to force a department to do what he wants, but I fear the number of departments that will do his bidding willingly.', 'created': '2024-11-18 20:04:18', 'submission_id': '1gu5hjp'}
{'comment': 'It’s also going to reinforce the idea of sanctuary cities in blue spaces where local PD won’t play along. It’ll further divide us - which is likely his ultimate objective anyhow.', 'created': '2024-11-18 20:36:12', 'submission_id': '1gu5hjp'}
{'comment': "That's doubtful. He's planning already to purge them of any non-loyal personnel. Besides, an already large number of the military are completely behind him on this.", 'created': '2024-11-18 17:42:52', 'submission_id': '1gu5hjp'}
{'comment': '🍿 😎', 'created': '2024-11-18 17:08:58', 'submission_id': '1gu5hjp'}
{'comment': 'I’d love a source on this. I’ll need this later for some Trumpsters.', 'created': '2024-11-18 17:19:35', 'submission_id': '1gu5hjp'}
{'comment': "> Although I do expect that they will also arrest and use people for prison slave labor as well.\n\nAnd if we go by history there, they'll turn into death camps soon enough.", 'created': '2024-11-18 17:54:40', 'submission_id': '1gu5hjp'}
{'comment': "Unless it's hidden very well, I don't think that'll stop them. I'd even venture to say that it's best to have all communication via in person but that limits where members come from.", 'created': '2024-11-18 18:41:10', 'submission_id': '1gu5hjp'}
{'comment': "Reddit will cave and give info over too. They'll absolutely be monitoring subs and getting IPs.", 'created': '2024-11-18 21:35:03', 'submission_id': '1gu5hjp'}
{'comment': 'There’s also things like Discord and WhatsApp. Both of those can be great for groups as well.', 'created': '2024-11-18 16:15:32', 'submission_id': '1gu5hjp'}
{'comment': 'The billionaires want fire sales of distressed assets so they can buy the country cheap', 'created': '2024-11-18 16:00:26', 'submission_id': '1gu5hjp'}
{'comment': 'Rich is relative. If you have ten billion dollars, and you lose 8 billion, you\'re still sitting on more money than the average American will ever see in ten lifetimes.\n\nBut to you, you just lost 80% of your net worth. That\'s alarming, especially if you built up a life centered around being "the guy with 10 billion dollars," and then the bottom dropped out, so all your debts are gonna come due in an overwhelming cascade. \n\nIt might be different if you were a super saver; bought a big, but still reasonable house, and a sensible, but expensive car, and then socked away the other 9.5 billion, but who does that? And even then, can you really weather watching 80% of your cash disappear?', 'created': '2024-11-18 16:03:50', 'submission_id': '1gu5hjp'}
{'comment': 'Yeah the heritage foundation has been around since the 80s and always writes something. Trump isn’t a puppet, he’s certainly being used by ambitious actors, but not a puppet. Again, I didn’t want him to be President and voted against it, but the idea he’s going to some evil Hitler 2.0 and turn America into a fascist regime is laughable at best. \n\nTrump doesn’t operate that way, never has and never will. If he actually listened to his advisors and people supporting them he wouldn’t have endlessly fired everyone during his first term or call for his own VP to be hanged.', 'created': '2024-11-18 16:54:27', 'submission_id': '1gu5hjp'}
{'comment': 'You get labeled as a terrorist and then trump and/JD Vance comes down in full force and can actually do even more damage.\n\n\nSocial media campaigns, white folk and token minorities paid to create outrage everywhere, calling people to arms because the left shot "Americans just doing their jobs".\n\n\nLook at how many people are shot in their own homes by cops who did nothing wrong? Is that changing no it\'s getting worse\xa0\n\n\n\nWhen will men learn shooting people isn\'t the way?', 'created': '2024-11-18 17:55:30', 'submission_id': '1gu5hjp'}
{'comment': 'She won’t be affected anyway. And watch even with Trump as the sitting President she’ll still be blaming and accusing Biden and referring to Kamala Harris as non human.', 'created': '2024-11-18 22:55:42', 'submission_id': '1gu5hjp'}
{'comment': 'They literally voted for him because of the things he said he was going to do. And now that he’s doing the things he said, they’re upset… I truly don’t understand. Why would you vote for someone that says things but they don’t mean what they say? It seems counterproductive and hypocritical.', 'created': '2024-11-18 23:25:33', 'submission_id': '1gu5hjp'}
{'comment': 'And deporting all of them at once isn’t the way to do that', 'created': '2024-11-18 21:54:53', 'submission_id': '1gu5hjp'}
{'comment': 'It\'s not really about immigrants. It\'s about getting rid of non-white people, who are "poisoning the blood of our nation" (a direct quote from Hitler btw). It just so happens that lots of immigrants happen to be non-white.', 'created': '2024-11-18 21:22:19', 'submission_id': '1gu5hjp'}
{'comment': 'Not to mention we stole the land from the natives and then pretend we get to make the decisions about who is allowed here.', 'created': '2024-11-18 19:54:16', 'submission_id': '1gu5hjp'}
{'comment': "I'm pretty sure they were vetted and came legally through Ellis Island. Do you not see the difference?", 'created': '2024-11-18 19:45:27', 'submission_id': '1gu5hjp'}
{'comment': 'Work on your diary writing skills.', 'created': '2024-11-18 21:22:52', 'submission_id': '1gu5hjp'}
{'comment': 'I know, just stating he likely does not read more then what is in a tweet, or post lol 😆 i was the same in high school after reading the diary if ann frank, i needed to know everything', 'created': '2024-11-18 23:48:02', 'submission_id': '1gu5hjp'}
{'comment': 'Except that exact type of planned purge is one of the ways you provoke a military coup', 'created': '2024-11-18 17:43:30', 'submission_id': '1gu5hjp'}
{'comment': 'The History.com article I linked in my first comment is a pretty comprehensive source.', 'created': '2024-11-18 17:36:26', 'submission_id': '1gu5hjp'}
{'comment': 'But they’ll claim it’s the “lame-stream media”', 'created': '2024-11-18 18:18:16', 'submission_id': '1gu5hjp'}
{'comment': 'I’m no conspiracy theorist, but I do know the federal government is *very* good at keeping things top secret when they want to. I genuinely fear that we could end up having death camps in the US and the general public would have no idea. Even today in the Information Age.', 'created': '2024-11-18 17:59:17', 'submission_id': '1gu5hjp'}
{'comment': 'Well is there anything a bit more user friendly for Gen X and older?', 'created': '2024-11-18 16:34:35', 'submission_id': '1gu5hjp'}
{'comment': 'Exactly. This is the play. Don’t know why more people don’t see it. We’re about to be stripped and sold off for spare parts', 'created': '2024-11-18 16:45:48', 'submission_id': '1gu5hjp'}
{'comment': 'Plus, due to past experience, they know they can get bailed out every time', 'created': '2024-11-18 18:00:35', 'submission_id': '1gu5hjp'}
{'comment': 'lol. All I could hear was him saying “not a puppet. Not a puppet” when I read your reply.', 'created': '2024-11-18 17:08:42', 'submission_id': '1gu5hjp'}
{'comment': 'Right? that\'s why i\'m a democrat and why I think mass deportation is awful?\n\nBut if we or our party\'s leadership can\'t articulate a policy that is better than "we actually do need illegals so we can take advantage of them" then that isn\'t sustainable, and we\'re never going to win on this issue.', 'created': '2024-11-18 21:57:00', 'submission_id': '1gu5hjp'}
{'comment': 'Kinda how being the conquering nation works throughout history.', 'created': '2024-11-18 20:46:57', 'submission_id': '1gu5hjp'}
{'comment': 'Hi! So first, even if none of them were stowaways, most immigrants who are here *illegally* didn\'t actually jump a fence or something- they were vetted and signed up for work papers, and when those papers expired they didn\'t leave. So they were vetted, and they did *come* legally, they just stayed longer than they were meant to. \n\nSecond- and I am the decendant of Irish immigrants- the main thing is not whether they came in legally. Immigrants have always been treated this way (as "other" and less than) in this country. The Irish and Italians found ways to anglicize in ways that POC couldn\'t, but even then they were still only given a seat because they played the game.', 'created': '2024-11-18 20:17:00', 'submission_id': '1gu5hjp'}
{'comment': "It should be 'look into' not 'about'. Dammit, now the whole sentence is ugly. Thanks anyways.", 'created': '2024-11-18 22:07:01', 'submission_id': '1gu5hjp'}
{'comment': 'It the longest shot but those higher flag officers have been trained deep in civilian led Miltary..they are mostly apolitical to conservative...being provoked is the keyword...It not in the Miltary culture the in the United states...a national emergency could bring a suspension of the constitution which includes the posse comitatus act', 'created': '2024-11-18 19:20:13', 'submission_id': '1gu5hjp'}
{'comment': 'I could believe that the border camps and prisons already are.', 'created': '2024-11-18 22:37:16', 'submission_id': '1gu5hjp'}
{'comment': 'Not saying that it needed to be said, but literally people still forget.', 'created': '2024-11-18 23:50:31', 'submission_id': '1gu5hjp'}
{'comment': 'My comment had nothing to do with your sentence quality. Was just a historical reference', 'created': '2024-11-18 22:08:08', 'submission_id': '1gu5hjp'}
{'comment': 'A suspension of the constitution literally violates the oaths those officers took', 'created': '2024-11-18 20:27:45', 'submission_id': '1gu5hjp'}
{'comment': 'I know, just my brain taking over me.', 'created': '2024-11-18 22:15:02', 'submission_id': '1gu5hjp'}
{'comment': 'Which is why they want to purge those officers first, so that those left behind will violate their oath.', 'created': '2024-11-18 23:45:34', 'submission_id': '1gu5hjp'}
{'comment': 'Which leaves you with an arms race essentially. Will the ones with integrity respond in time.', 'created': '2024-11-18 23:46:16', 'submission_id': '1gu5hjp'}
{'comment': 'We can only hope so. They have always been the wild card in this situation.', 'created': '2024-11-18 23:55:03', 'submission_id': '1gu5hjp'}
{'comment': 'Well, if Jake Tapper was a US House representative as recently as last week, resigned a few days ahead of a House Ethics Report relating to having sex with a 17 year old girl, AND was the President-Elect’s choice for Attorney General, then yeah, I absolutely would Mike.\n\nObligatory “fuck Mike Johnson”. Total smug asshole.', 'created': '2024-11-18 09:33:45', 'submission_id': '1gtzwwx'}
{'comment': 'Even though investigating Tapper has nothing to do with the Gaetz case, I doubt he has to worry about partying and doing drugs with under-age girls. They are complete hypocrites and cover up merchants.', 'created': '2024-11-18 13:25:20', 'submission_id': '1gtzwwx'}
{'comment': 'Sounds like the Republicans are making threats now to the media for their upcoming leader.', 'created': '2024-11-18 11:26:30', 'submission_id': '1gtzwwx'}
{'comment': 'Is that a threat?', 'created': '2024-11-18 13:08:09', 'submission_id': '1gtzwwx'}
{'comment': 'They’ve been showing for the past 8 years.', 'created': '2024-11-18 13:12:04', 'submission_id': '1gtzwwx'}
{'comment': 'Mike Johnson is clearly a Fascist, got to be blind not to see that. \n\nMike Johnson should know though, Fascists end up in Hell after all said and done.', 'created': '2024-11-18 14:19:10', 'submission_id': '1gtzwwx'}
{'comment': 'Potential cabinet secretaries aren’t private citizens any longer. And men who are credibly accused of having sex with minors are supposed to be investigated—even men with powerful political connections.', 'created': '2024-11-18 14:25:36', 'submission_id': '1gtzwwx'}
{'comment': "All of the I told you sos isn't going to give us our country back. \n\nit's amazing that journalists allowed authoritarians to take power without question and now they're all shocked Pikachu when they realize that they can't report freely anymore.", 'created': '2024-11-18 13:26:57', 'submission_id': '1gtzwwx'}
{'comment': '"Bruh, we all have sex with minors every now and then. Cmon let\'s just keep those skeletons in the closet and we can all just be civil here. Btw i stand for family values and Christianity and whatnot."', 'created': '2024-11-18 14:27:11', 'submission_id': '1gtzwwx'}
{'comment': 'Enjoy your precious clicks, media. This is the price our nation pays.', 'created': '2024-11-18 14:00:24', 'submission_id': '1gtzwwx'}
{'comment': 'Fascism stage 2: the post-election party! \n\nContinue radicalizing voters. Oppress the rest of the civilian population. Increase the power of the executive branch so dear leader never has to leave office.', 'created': '2024-11-18 15:04:57', 'submission_id': '1gtzwwx'}
{'comment': '"I am your retribution" trump you dont think that was a casual comment do you?', 'created': '2024-11-18 12:52:05', 'submission_id': '1gtzwwx'}
{'comment': 'Sounds like Jihnsin has forgotten that he works for us, not Trump', 'created': '2024-11-18 13:35:07', 'submission_id': '1gtzwwx'}
{'comment': 'Jake really should have pulled up with the same energy... \n\n "What\'s that? Mr speaker did you just threaten a member of the press? How would you like it if every journalist the world over decides to investigate MAGA Mike? Or maybe your new leader\'s overtly and blatantly unqualified cabinet selections??? Or Elon\'s interference? Or maybe the credible reports of hacking???"', 'created': '2024-11-18 17:27:16', 'submission_id': '1gtzwwx'}
{'comment': 'The guy on the right in the pic above….correct me if I’m wrong, but isn’t that the face most dictionaries use next to the definition for “putz”?', 'created': '2024-11-18 12:41:35', 'submission_id': '1gtzwwx'}
{'comment': "Mike Johnson is the sleaziest fuckwad of a Speaker we've ever had.", 'created': '2024-11-18 19:26:03', 'submission_id': '1gtzwwx'}
{'comment': 'Mike Johnson routinely makes the most alarming comments with the most banal delivery.', 'created': '2024-11-18 20:21:26', 'submission_id': '1gtzwwx'}
{'comment': "Where is that creep's adopted son/lover?", 'created': '2024-11-18 16:26:55', 'submission_id': '1gtzwwx'}
{'comment': "They didn't investigate a private citizen, they investigated a congressman. The fact that he became a private citizen after they completed their investigation shouldn't be of concern.", 'created': '2024-11-18 19:16:47', 'submission_id': '1gtzwwx'}
{'comment': 'Just save it somewhere for Anonymous to leak', 'created': '2024-11-18 13:44:56', 'submission_id': '1gtzwwx'}
{'comment': 'The house investigated citizens in the past... not saying it was a good idea, but there is a precedent', 'created': '2024-11-18 17:28:20', 'submission_id': '1gtzwwx'}
{'comment': 'When you believe you have a personal line to God, everything else is just noise.', 'created': '2024-11-18 18:10:46', 'submission_id': '1gtzwwx'}
{'comment': 'by "investigate" - they really mean "we will make something up" if we can\'t find anything.', 'created': '2024-11-18 22:46:44', 'submission_id': '1gtzwwx'}
{'comment': 'You will find out others will model this behavior , it’s pretty horrifying and it’s seems perfectly ok to a huge population', 'created': '2024-11-18 14:46:04', 'submission_id': '1gtzwwx'}
{'comment': 'Be my guest.', 'created': '2024-11-18 19:17:54', 'submission_id': '1gtzwwx'}
{'comment': "Get ready for the unprecedented assaults on free press and free speech over the next four years. The institutions and departments that were created to protect and enforce Constitutional rights will be weaponized against the American people. They will mass arrest political opponents to get rid of competition in elections, Russia style. Our own tax funded military will be turned on us to quash protests, now a political weapon against Americans instead of a protector. The Department of Justice will be led by a Russian asset who will give Russian intelligence agencies free reign against American interests and citizens, sabotaging democracy and sewing chaos unchallenged. They will launch 'investigation' into private citizens who openly criticize Trump's policies to intimate them and ruin their lives. We could be another Russia by 2028.", 'created': '2024-11-18 23:07:36', 'submission_id': '1gtzwwx'}
{'comment': 'Yep yep', 'created': '2024-11-18 23:30:03', 'submission_id': '1gtzwwx'}
{'comment': 'These guys play uno for keeps.', 'created': '2024-11-18 15:03:36', 'submission_id': '1gtzwwx'}
{'comment': 'Whiny little bitch didn’t even get a seat at the Big Boy McDonald’s Table', 'created': '2024-11-18 15:56:12', 'submission_id': '1gtzwwx'}
{'comment': 'That’ll be “Commander Mike” to you, soon.', 'created': '2024-11-18 10:06:44', 'submission_id': '1gtzwwx'}
{'comment': 'Dude also flat out denied that Trump said he was going to use the military against Nancy Pelosi and Adam schiff and other democrats even though Trump said he would on video.', 'created': '2024-11-18 13:39:19', 'submission_id': '1gtzwwx'}
{'comment': 'Not to mention they just wasted a bunch of time and money investigating it... yeah, I think we all deserve to see it.', 'created': '2024-11-18 15:53:48', 'submission_id': '1gtzwwx'}
{'comment': "Mike Johnson is okay with kiddy diddling. I mean he monitors when his son watched porn and vice versa. They aren't a party of family values, they are a party of pedophilia and rape.", 'created': '2024-11-18 23:49:22', 'submission_id': '1gtzwwx'}
{'comment': 'It sure sounds like it. Fuck Mike Johnson and fuck all republicans that support that shit.', 'created': '2024-11-18 13:25:28', 'submission_id': '1gtzwwx'}
{'comment': 'Oh my yes. And it’s almost certainly illegal. He’s threatening to misuse federal power to harass a private citizen for (openly) partisan political reasons. \n\nBut hey, the fuck’s any of that matter now', 'created': '2024-11-18 16:01:43', 'submission_id': '1gtzwwx'}
{'comment': "That's how I'm taking it.", 'created': '2024-11-18 13:56:06', 'submission_id': '1gtzwwx'}
{'comment': "It wasn't the journalists thad made that call, it was the (wealthy) owners of the media companies.", 'created': '2024-11-18 16:08:55', 'submission_id': '1gtzwwx'}
{'comment': "That's my frustration - by the time I'm proven right about a Trump dictatorship, it will likely be difficult to go back.", 'created': '2024-11-18 21:43:19', 'submission_id': '1gtzwwx'}
{'comment': '> All of the I told you sos isn\'t going to give us our country back.\n> \n> \n> \n> it\'s amazing that journalists allowed authoritarians to take power without question\n\nLectures us on the "I told you sos" not giving us our country back, then immediately switches to trying to play the "I told you so" card about the media unquestionably allowing authoritarians to take power.\n\nJesus, it\'s like you guys have only four talking points you can regurgitate on a loop. It\'s almost been two weeks, find some new shit.', 'created': '2024-11-18 16:35:58', 'submission_id': '1gtzwwx'}
{'comment': 'Damn if I only he kept that between him and his Big Mac', 'created': '2024-11-18 13:05:04', 'submission_id': '1gtzwwx'}
{'comment': 'I don’t think so. A “Putz” isn’t dangerous.', 'created': '2024-11-18 13:30:26', 'submission_id': '1gtzwwx'}
{'comment': 'His last name is Johnson, so he already is a putz.', 'created': '2024-11-18 14:19:24', 'submission_id': '1gtzwwx'}
{'comment': 'You can belittle him all you want, but come Jan 20, 2025, That *putz* is going to be third in the line of succession.', 'created': '2024-11-18 17:28:46', 'submission_id': '1gtzwwx'}
{'comment': 'Mike Johnson is a fucking idiot', 'created': '2024-11-18 22:16:03', 'submission_id': '1gtzwwx'}
{'comment': 'Matt has one too', 'created': '2024-11-18 22:16:45', 'submission_id': '1gtzwwx'}
{'comment': 'Under His Eye', 'created': '2024-11-18 10:40:14', 'submission_id': '1gtzwwx'}
{'comment': 'Grand Wizard Johnson', 'created': '2024-11-18 19:10:33', 'submission_id': '1gtzwwx'}
{'comment': 'Our money, and they’re on our payroll. They should show us what they’ve done.', 'created': '2024-11-18 20:39:49', 'submission_id': '1gtzwwx'}
{'comment': 'The pedophile AG would like a word.', 'created': '2024-11-18 20:41:09', 'submission_id': '1gtzwwx'}
{'comment': 'Good point.', 'created': '2024-11-18 13:34:37', 'submission_id': '1gtzwwx'}
{'comment': 'Well again, good point.', 'created': '2024-11-18 15:07:43', 'submission_id': '1gtzwwx'}
{'comment': 'If I live to be a hundred years old I’ll never understand why the Republican Party has given the green light to authoritarianism at a level never before seen in this country. This will not end well for us.', 'created': '2024-11-18 17:43:52', 'submission_id': '1gtzwwx'}
{'comment': "Don't know why I'm getting downrated. Just stating facts.I don't like the facts, but I'm not gonna deny reality, that's their schtick.", 'created': '2024-11-18 18:13:07', 'submission_id': '1gtzwwx'}
{'comment': 'Gaetz?', 'created': '2024-11-18 22:18:15', 'submission_id': '1gtzwwx'}
{'comment': 'Blessed be the fruit loops', 'created': '2024-11-18 18:20:14', 'submission_id': '1gtzwwx'}
{'comment': 'Sorry if I sounded pedantic, that was not my intention. I sincerely believe that we are screwed. My fear is that he’ll usher in these people via recess appointments, and their combined forces will wring out the constitution, beginning with extending his term of office.', 'created': '2024-11-18 15:51:55', 'submission_id': '1gtzwwx'}
{'comment': 'Yep', 'created': '2024-11-18 22:20:20', 'submission_id': '1gtzwwx'}
{'comment': 'May the lord open the fridge', 'created': '2024-11-18 22:52:47', 'submission_id': '1gtzwwx'}
{'comment': 'It was sincerely a good point, and you’re right again we are assuredly and royally screwed. The damage this administration can and will bring down on this nation will be catastrophic. I am one who believes the results were rigged and rigged so solidly that we may never again have real elections. I’m old, and there are those of us who are now saying “It ain’t so bad being old”.', 'created': '2024-11-18 16:45:20', 'submission_id': '1gtzwwx'}
{'comment': 'He is soooo fucking swarmy.', 'created': '2024-11-18 22:21:16', 'submission_id': '1gtzwwx'}
{'comment': "Me, to, and I'm also glad that my son doesn't want kids.", 'created': '2024-11-18 21:46:13', 'submission_id': '1gtzwwx'}
{'comment': "I'm with you.", 'created': '2024-11-18 17:19:52', 'submission_id': '1gtzwwx'}
{'comment': '2026 will be the test. While there have been exceptions, historically the party in power loses seats. If the GQP retains power, I see a "national emergency" in 2028 to cancel the election, with Trump retaining power.', 'created': '2024-11-18 21:51:18', 'submission_id': '1gtzwwx'}
{'comment': 'The first time I ever saw him I thought something wasn’t right with him. He just has that pervert look about him.', 'created': '2024-11-18 22:23:51', 'submission_id': '1gtzwwx'}
{'comment': "I wouldn't hold your breath expecting churches to kick out abusers. That's the last group I'd expect to rely on for that.", 'created': '2024-11-18 11:14:13', 'submission_id': '1gtzfqo'}
{'comment': "This is why they love the religious folks. Spineless hypocrites it's whyvthe right targets these people for office. Easiest to corrupt and quickest to sell out", 'created': '2024-11-18 13:59:50', 'submission_id': '1gtzfqo'}
{'comment': '"Daddy\'s home, and he will spank you vigorously" seems to be a common theme in the GOP', 'created': '2024-11-18 14:08:09', 'submission_id': '1gtzfqo'}
{'comment': "The Catholic Church kicking out people who protect pedophiles? I mean that's pretty much their only reason for existing because based on the Catholics I know it's sure not to teach others good morals.", 'created': '2024-11-18 14:11:07', 'submission_id': '1gtzfqo'}
{'comment': 'This one blows my damn mind. I don’t see how republicans benefit from this when they could appoint any other wing nut loyalist.', 'created': '2024-11-18 15:36:40', 'submission_id': '1gtzfqo'}
{'comment': 'Where do you think they got the whole protect predators thing from? The Catholics were exposed as predators I guarantee every other denomination was doing the same similar or worse and just locked down and protected these pedos harder cleaning it all up and silencing everyone so they didn’t get as exposed as the Catholic Church', 'created': '2024-11-18 15:42:08', 'submission_id': '1gtzfqo'}
{'comment': 'Look at the religious ass clowns', 'created': '2024-11-18 23:18:34', 'submission_id': '1gtzfqo'}
{'comment': 'Oh how nice of politco to finally write an article that points out the hypocrisy of the gop., its just like three months too late. FU', 'created': '2024-11-18 07:17:31', 'submission_id': '1gtya3h'}
{'comment': 'Nothing is cheaper and the Dow is down 1,000 points. I hate it here.', 'created': '2024-11-18 15:00:38', 'submission_id': '1gtya3h'}
{'comment': 'I’m not just disappointed in the results of the election, I’m also disappointed in the state of the Democratic Party.', 'created': '2024-11-18 15:39:59', 'submission_id': '1gtya3h'}
{'comment': 'Hopefully democrats realize that people are actually suffering from years of being left behind in an economy that values investment over productivity. We need to start listening to people who don’t benefit from record highs in the stock market and start encouraging policy that directly helps them.\n\nEdit: not saying democrats don’t listen at all, but we need to push harder for these ideas and communicate them effectively to people', 'created': '2024-11-18 15:21:54', 'submission_id': '1gtya3h'}
{'comment': 'Bold of you to think republicans have the attention span to read any politico article', 'created': '2024-11-18 15:48:04', 'submission_id': '1gtya3h'}
{'comment': 'Democrats know this.\nThey listen and care about people.\nWe pushed hard for these ideas and communicated them effectively.\nConservatives believe what they want to believe. \nAnd they are racist, homophobic, and misogynist.', 'created': '2024-11-18 17:36:58', 'submission_id': '1gtya3h'}
{'comment': 'I look at policies like tax credits for small businesses as an example of poorly reaching out to working class Americans who have no plans to own a business. We were in a really tough spot. How would harris own the success of the growth in the economy and also say that people were struggling a lot since the pandemic to meet prices from inflation? By consistently saying the economy has rebounded, which it did by metrics, wasn’t enough for people who were not positively impacted by rising stocks or GDP. even the success of inflation coming back down didn’t mean prices were suddenly low, so I thought it would have been important to explain why prices were still high beyond just saying we would have price gouging laws for the future. At the end of the day, I really hate how much the double standard between Trump and Harris was, but I do think we could have done more than just saying we would reduce taxes and cut red tape for housing. We needed to speak directly to people like Trump did, even though he was blatantly lying and pandering to groups he has no intention to actually help out.', 'created': '2024-11-18 17:46:05', 'submission_id': '1gtya3h'}
{'comment': "This wasn't about the economy.\nIt was about hate of Brown people and LGBTQ people.", 'created': '2024-11-18 17:52:37', 'submission_id': '1gtya3h'}
{'comment': 'But your theory falls apart looking at cities that shifted right to Trump, especially the minority shift in those urban areas. Across the board they shifted across multiple demographics. We can’t just blame racism and misogyny, we need to look in the mirror and ask how to better communicate very popular policies that are not endorsed enough by the Democratic Party. Progressive policies such as paid medical leave and minimum wage increases overwhelmingly are in favor in red and blue states, why not campaign more on that? There definitely are people of vote with bad faith, but let’s not pretend that is a majority of America', 'created': '2024-11-18 18:08:59', 'submission_id': '1gtya3h'}
{'comment': "Kamala literally did this with the down payment assistance, Medicaid expansion, and child tax credits. I keep asking my brother, who supports Trump...what are Trump's replacements for the ACA, his retirement policies, and home assistance...and he can't answer it.", 'created': '2024-11-18 18:41:19', 'submission_id': '1gtya3h'}
{'comment': "It's not a theory.\nHave a nice day.", 'created': '2024-11-18 18:13:18', 'submission_id': '1gtya3h'}
{'comment': 'I think if the economy was exactly like it is now and rump was president they would be saying that it’s great.', 'created': '2024-11-18 20:09:14', 'submission_id': '1gtya3h'}
{'comment': 'The policies you mention are great, but do not affect nearly enough people in this country. People already have homes and are still struggling. Medicaid expansion for home coverage doesn’t cover nearly enough people. Child tax credits doesn’t cover for those without kids. We need policy that is far reaching in my opinion on top of these', 'created': '2024-11-18 21:31:37', 'submission_id': '1gtya3h'}
{'comment': 'If Trump was in power and had this economy, many people would still be saying that they are struggling and living paycheck to paycheck. Thats my point. We can’t keep playing this game of “everything is great” when we are in power.', 'created': '2024-11-18 21:28:27', 'submission_id': '1gtya3h'}
{'comment': "My point is, people expected Harris to have an answer for everything and didn't require anything from Trump. After he clears out all of the immigrants, then what?", 'created': '2024-11-18 21:33:17', 'submission_id': '1gtya3h'}
{'comment': 'Oh I agree completely. We are screwed because of the double standards in media between republicans and democrats. But we need to be better at crating and communicating direct policies for all Americans. They are overwhelmingly popular even in red states like minimum wage. There are still many states that do not have updated wages to reflect our current economy. Let’s make policy like that front and center. Until then, trumps policies will create horrible conditions that they won’t take blame for…', 'created': '2024-11-18 21:37:31', 'submission_id': '1gtya3h'}
{'comment': 'Your morning anchors literally just went and damn near swore fealty.', 'created': '2024-11-18 20:53:06', 'submission_id': '1gtxxvb'}
{'comment': 'I would have before I realized it was hosted by MSNBC, so I figured it’s just telling us to go down to Florida and talk to Trump for 45 minutes to see he’s not such a bad guy.', 'created': '2024-11-18 21:10:46', 'submission_id': '1gtxxvb'}
{'comment': None, 'created': '2024-11-18 14:07:04', 'submission_id': '1gtxxvb'}
{'comment': 'We’re going to… give him a good talking to!!!!', 'created': '2024-11-18 15:55:02', 'submission_id': '1gtxxvb'}
{'comment': "Too late!!! It's AMAZING to know how weak our CONSTITUTION IS!!!\n\nit's nothing but an old piece of paper. \n\nTrump shitted on it, the whole fucking country took big giant dump on it.", 'created': '2024-11-18 17:04:38', 'submission_id': '1gtxxvb'}
{'comment': 'Too late.', 'created': '2024-11-18 13:57:01', 'submission_id': '1gtxxvb'}
{'comment': 'I think you should read the article.\xa0 \xa0local and grassroots is the best way, because they don\'t have that kind of control all the way through the system yet.\xa0 \xa0they *will* it there\'s no support for anyone to stand up to it.\xa0\xa0\n\n\nit\'s going to be four years of local, "use it or lose it" democracy.\xa0 \xa0vote for judges and sheriffs and your local *state* officials.\xa0 if you don\'t, people will get into those offices who will just hand everything over to trump including your next elections.', 'created': '2024-11-18 22:01:58', 'submission_id': '1gtxxvb'}
{'comment': 'Damn right.', 'created': '2024-11-18 18:04:46', 'submission_id': '1gtxxvb'}
{'comment': 'Damn right.', 'created': '2024-11-18 18:04:59', 'submission_id': '1gtxxvb'}
{'comment': 'That would work but the problem is simple blue States Ban assault rifles and automatic shotguns. Sadly legal in red states', 'created': '2024-11-18 21:07:34', 'submission_id': '1gtxxvb'}
{'comment': 'WTF kind of dimestore LARPing bullshit name is "Gunther Eagleman"?', 'created': '2024-11-18 05:41:42', 'submission_id': '1gtw86d'}
{'comment': 'Yeah because "Real Americans" can\'t wait to bow down to an evil dictator. These times man...fkn insanity.', 'created': '2024-11-18 05:28:11', 'submission_id': '1gtw86d'}
{'comment': "Wonder how much money he's taken from Russia. They are paying at least 600 influencers to spread propaganda. I hope they release the full list before Biden leaves.", 'created': '2024-11-18 05:17:21', 'submission_id': '1gtw86d'}
{'comment': 'Calling Biden a neocon is the most ridiculous thing I\'ve ever seen any of these idiots say. And that bar is astronomically high.\n\n"Real Americans for Russia"\n\nMan fuck you.', 'created': '2024-11-18 05:49:19', 'submission_id': '1gtw86d'}
{'comment': "Hope Ukraine bombs the Russian invaders back to the stone age! That's my Real American take.", 'created': '2024-11-18 05:43:46', 'submission_id': '1gtw86d'}
{'comment': '“Dear Putin, I hope this post finds you well” is a hell of a way to start an important piece of correspondence!\n\nI mean, not even a polite “Dear Mr Putin”. Just “Dear Putin”. Were none of these people ever taught manners?!', 'created': '2024-11-18 05:25:48', 'submission_id': '1gtw86d'}
{'comment': 'Go move to Russia then, Gun', 'created': '2024-11-18 05:27:56', 'submission_id': '1gtw86d'}
{'comment': 'Real american here and i support ukraine', 'created': '2024-11-18 06:06:44', 'submission_id': '1gtw86d'}
{'comment': 'Gunther Eagleman? Ok Fakename McBitchface', 'created': '2024-11-18 05:50:18', 'submission_id': '1gtw86d'}
{'comment': "That piece of shit signed up on Blue Sky only to make it to every good block list there is and he's losing his mind about that now.", 'created': '2024-11-18 05:46:00', 'submission_id': '1gtw86d'}
{'comment': 'The fact that MAGA supports Putin is one of the grossest and most ridiculous aspects of MAGA.\n\nThese people are as low information as it gets. \n\nYet they have a position on the Ukraine war and NATO while claiming they reached their conclusion based on the history of NATO, Europeans geopolitics, and Ukraine-Russian relations.\n\n\nThey refuse to admit that it has anything to do with Russian propaganda.', 'created': '2024-11-18 06:39:53', 'submission_id': '1gtw86d'}
{'comment': 'Reagan would FLIP HIS SHIT to find out Republicans are supporting Russia, the aggressor, over Ukraine, let alone saying “real Americans” support Putin.', 'created': '2024-11-18 06:23:17', 'submission_id': '1gtw86d'}
{'comment': 'Dear Putin\n\nGet fucked\n\nSigned\nReal Americans', 'created': '2024-11-18 07:37:09', 'submission_id': '1gtw86d'}
{'comment': None, 'created': '2024-11-18 05:45:07', 'submission_id': '1gtw86d'}
{'comment': 'Nothing to see here. Just another MAGA idiot begging to be under authoritarian rule!', 'created': '2024-11-18 06:15:30', 'submission_id': '1gtw86d'}
{'comment': 'We actually do support it. We very much support it. We hope Zelensky and his army end you. FFS 🤦\u200d♀️. As if I weren’t already scared enough for the incoming administration.', 'created': '2024-11-18 07:00:17', 'submission_id': '1gtw86d'}
{'comment': 'As an 80s teenager, my head explodes at this.', 'created': '2024-11-18 06:22:42', 'submission_id': '1gtw86d'}
{'comment': 'Gunther is a traitor to American democracy: a fool, but a traitorous fool.', 'created': '2024-11-18 06:06:43', 'submission_id': '1gtw86d'}
{'comment': None, 'created': '2024-11-18 05:38:16', 'submission_id': '1gtw86d'}
{'comment': 'You mean Russian bots?', 'created': '2024-11-18 05:32:58', 'submission_id': '1gtw86d'}
{'comment': 'And if/when Europe\'s continued support leads to Ukraine defeating Russia (and preventing a domino affect of a world war) sometime in Trump\'s term, maga will lie and credit Trump for the victory, despite Biden and the Democrats sustained support and aid for the past 2+ years. Everyone damn well knows if Ukraine wins, Trump will lie and take the credit. From claiming himself as the "Father of IVF" to two years from now claiming himself to be the "Father of Ukraine." Just watch lol', 'created': '2024-11-18 08:02:49', 'submission_id': '1gtw86d'}
{'comment': 'Real American don’t consider Russia to be an Ally . Signed a real American . 🇺🇸', 'created': '2024-11-18 15:00:57', 'submission_id': '1gtw86d'}
{'comment': 'Dear Gunther, \n\nOh hunny, I support the Biden’s administration to launch long range missiles into Russia. \n\nSigned,\nIndividuals who understand how important it is for Ukraine to not be taken over by Russia.', 'created': '2024-11-18 15:55:27', 'submission_id': '1gtw86d'}
{'comment': 'Somebody should remind Gunther of the state motto of Virginia.', 'created': '2024-11-18 05:46:00', 'submission_id': '1gtw86d'}
{'comment': "Traitors every one of them!!! Putin escalated this, Biden only responded. With a party like that we would be talking German today. Of course, they'd probably like that.", 'created': '2024-11-18 06:05:11', 'submission_id': '1gtw86d'}
{'comment': 'Furthest thing from a “real American” is the garbage that kisses Putin’s ass.', 'created': '2024-11-18 15:30:22', 'submission_id': '1gtw86d'}
{'comment': '“Dear Putin” . disgusting', 'created': '2024-11-18 15:33:03', 'submission_id': '1gtw86d'}
{'comment': 'It’s so wild that the GoP now bend over backwards to appease Putin. When just a few years ago saying anything positive about Russia would have been political suicide for them.', 'created': '2024-11-18 06:13:21', 'submission_id': '1gtw86d'}
{'comment': "Gun Eagle Man, that's the most made up Russian bot ass name I've ever seen lol", 'created': '2024-11-18 07:29:02', 'submission_id': '1gtw86d'}
{'comment': 'Real Americans tell Putin and his invaders to fuck right off and get the hell out of Ukraine, all of it. Thank you Biden for finally doing what should have been done day 1 of this war.', 'created': '2024-11-18 15:57:58', 'submission_id': '1gtw86d'}
{'comment': 'Signed,\n\nForeign intelligence', 'created': '2024-11-18 06:23:33', 'submission_id': '1gtw86d'}
{'comment': 'Putin sitting back and getting off on this guy’s stupidity and how he successfully pulled wool over the eyes of enough Americans to make this shit “acceptable”.', 'created': '2024-11-18 06:51:09', 'submission_id': '1gtw86d'}
{'comment': 'Gunther is a well-known Russian backed account. Pay no attention to him.', 'created': '2024-11-18 10:55:08', 'submission_id': '1gtw86d'}
{'comment': 'I wonder what Regan would think of that.', 'created': '2024-11-18 11:27:04', 'submission_id': '1gtw86d'}
{'comment': "Gunther Eagleman is a Russian asset. He's shown that time and time again.", 'created': '2024-11-18 15:19:11', 'submission_id': '1gtw86d'}
{'comment': 'Traitors are going to be traitors.', 'created': '2024-11-18 15:30:18', 'submission_id': '1gtw86d'}
{'comment': 'https://preview.redd.it/ztrtnncl8o1e1.jpeg?width=1170&format=pjpg&auto=webp&s=4a43dc0b27ebe7be08774b1fb748a7c349b87921', 'created': '2024-11-18 15:36:37', 'submission_id': '1gtw86d'}
{'comment': 'Equally Real Americans support Ukraine in their fight against criminal invasion.', 'created': '2024-11-18 16:18:53', 'submission_id': '1gtw86d'}
{'comment': 'I am American and I want nothing more than for Putin to die. I want him to die a horrible painful death and I want to see it happen.', 'created': '2024-11-18 17:12:21', 'submission_id': '1gtw86d'}
{'comment': 'MAGA cowards looking for any reason to surrender to America’s enemies.', 'created': '2024-11-18 17:40:25', 'submission_id': '1gtw86d'}
{'comment': 'What a shitheel', 'created': '2024-11-18 05:55:09', 'submission_id': '1gtw86d'}
{'comment': 'Dear Slim, I wrote you, but you still ain’t callin', 'created': '2024-11-18 09:11:00', 'submission_id': '1gtw86d'}
{'comment': "Maybe he should take his fascist ass to Russia. He can suck Putin's ancient limp dick when he gets there.", 'created': '2024-11-18 10:38:00', 'submission_id': '1gtw86d'}
{'comment': 'Uhh speak for yourself, dude. I simp for Zelenskyy', 'created': '2024-11-18 12:44:47', 'submission_id': '1gtw86d'}
{'comment': 'MAGA Patriots = Russian sympathizers', 'created': '2024-11-18 13:56:40', 'submission_id': '1gtw86d'}
{'comment': 'GTFO and move there', 'created': '2024-11-18 14:57:00', 'submission_id': '1gtw86d'}
{'comment': "Let me guess, his bio says he's a Christian. Smh", 'created': '2024-11-18 15:43:57', 'submission_id': '1gtw86d'}
{'comment': '', 'created': '2024-11-18 16:21:11', 'submission_id': '1gtw86d'}
{'comment': '“I don’t support Ukraine because I read online not to”', 'created': '2024-11-18 17:08:47', 'submission_id': '1gtw86d'}
{'comment': 'I feel like an invasion of Ukraine by Russia was something out grand fathers would have fought a war over.', 'created': '2024-11-18 17:13:12', 'submission_id': '1gtw86d'}
{'comment': 'This for some reason makes me wish a civil war would happen so we could cut this cancer from us.', 'created': '2024-11-18 05:55:14', 'submission_id': '1gtw86d'}
{'comment': 'Neocon???', 'created': '2024-11-18 05:59:21', 'submission_id': '1gtw86d'}
{'comment': 'Dumbest people on Earth now think they are justified', 'created': '2024-11-18 07:19:48', 'submission_id': '1gtw86d'}
{'comment': 'Gunther Eagleman sounds like a persona of Roger Smith from the TV show American Dad.\n\nhttps://preview.redd.it/zzyupmd3tn1e1.jpeg?width=1126&format=pjpg&auto=webp&s=99c7779f65be0b1b1a940f21640f43b74ad48a98', 'created': '2024-11-18 14:09:42', 'submission_id': '1gtw86d'}
{'comment': 'Thinly veiled cowardice.', 'created': '2024-11-18 15:01:36', 'submission_id': '1gtw86d'}
{'comment': 'That’s a bunch of bull shit from a commie! Americans support Ukraine!', 'created': '2024-11-18 18:41:16', 'submission_id': '1gtw86d'}
{'comment': 'These same people are terrified of “socialism” at home. Meanwhile they are fine with rolling over and letting Russia invade the West, eroding our power, values, and safety. \n\nThis is about Ukraine but is also about keeping a hostile foreign power at bay. How does everyone miss this?', 'created': '2024-11-18 13:38:32', 'submission_id': '1gtw86d'}
{'comment': 'You actually can make this shit up and someone obviously has made some shit up here.', 'created': '2024-11-18 06:01:17', 'submission_id': '1gtw86d'}
{'comment': "Typical Gunther wouldn't say that with Feds walking into his store while managers recording.", 'created': '2024-11-18 06:06:46', 'submission_id': '1gtw86d'}
{'comment': 'All I hear is “gluck, gluck, gluck …”', 'created': '2024-11-18 06:50:30', 'submission_id': '1gtw86d'}
{'comment': '“Dear Putin….” What a bunch of clowns.', 'created': '2024-11-18 08:53:30', 'submission_id': '1gtw86d'}
{'comment': 'Fkn traitor', 'created': '2024-11-18 10:52:08', 'submission_id': '1gtw86d'}
{'comment': 'What type of goofy ass name is “Eagleman”', 'created': '2024-11-18 12:13:50', 'submission_id': '1gtw86d'}
{'comment': "So they support Russia's military aggression and colonial expansion...Got it.", 'created': '2024-11-18 12:23:51', 'submission_id': '1gtw86d'}
{'comment': 'And Putin just murdered a ballet star excuse me, I mean the man fell out of a window, because he criticized Putin. And this guy is over here criticizing Biden yet no one’s pushing him out of a window. But in his fucked up head, he still thinks Putin is good and Biden bad. These ignorant fascists are exhausting.', 'created': '2024-11-18 13:14:33', 'submission_id': '1gtw86d'}
{'comment': 'Do these idiots understand anything. If Putin wins in Ukraine. They think he will just stop? Poland will not mess around.', 'created': '2024-11-18 13:43:33', 'submission_id': '1gtw86d'}
{'comment': 'Gunther sounds like a fucking traitor.', 'created': '2024-11-18 13:52:31', 'submission_id': '1gtw86d'}
{'comment': 'The bottom line is that these random people who are mad, aren’t receiving the intelligence reports, and should sit back the fuck down.', 'created': '2024-11-18 13:55:01', 'submission_id': '1gtw86d'}
{'comment': 'Traitors to the republic, the whole lot!', 'created': '2024-11-18 16:14:32', 'submission_id': '1gtw86d'}
{'comment': 'He rly just wrote Putin an open love letter', 'created': '2024-11-18 17:39:09', 'submission_id': '1gtw86d'}
{'comment': 'Dear Republicans… remember when Russia was the enemy and hardline guys like Putin were being called out by your hero, Ronald Reagan? \n\nPepperidge Farm remembers.', 'created': '2024-11-18 17:48:58', 'submission_id': '1gtw86d'}
{'comment': 'Gunther is a boot licking traitor.', 'created': '2024-11-18 18:33:38', 'submission_id': '1gtw86d'}
{'comment': '"Real Americans"? Do they mean Costa Ricans? WTH is that BS?', 'created': '2024-11-18 19:06:45', 'submission_id': '1gtw86d'}
{'comment': 'Why are they always talking about “real Americans”. They’re not real Americans. They’re not “patriots”. They’re just trump supporters', 'created': '2024-11-18 19:45:08', 'submission_id': '1gtw86d'}
{'comment': 'Lack of spine ✅—on brand for modern GOP', 'created': '2024-11-18 23:39:55', 'submission_id': '1gtw86d'}
{'comment': 'Such obvious ne’er-do-wells trying to be edge lords. Suck it!', 'created': '2024-11-18 05:28:27', 'submission_id': '1gtw86d'}
{'comment': 'What in the actual…', 'created': '2024-11-18 06:56:31', 'submission_id': '1gtw86d'}
{'comment': 'Neoliberal, sure. Neoconservative? You wish', 'created': '2024-11-18 07:16:22', 'submission_id': '1gtw86d'}
{'comment': 'These people need to be neutralized.', 'created': '2024-11-18 07:28:40', 'submission_id': '1gtw86d'}
{'comment': 'Anyone remember the [Eagleman insurance commercials](https://www.youtube.com/watch?v=ogh8E4eYhV0) in Chicago? This guy makes that goofy ass mascot have a quiet, reserved dignity in comparison.', 'created': '2024-11-18 13:44:35', 'submission_id': '1gtw86d'}
{'comment': 'For some reason that post reminded of Peter Griffin\'s stern letter to Putin: "Dear Mr. Putin. I hope this letter finds you well...." 🤣', 'created': '2024-11-18 14:54:59', 'submission_id': '1gtw86d'}
{'comment': 'That’s hilarious coming from a guy with a made up name because he doesn’t want people to know his real name is David Freeman.', 'created': '2024-11-18 18:07:09', 'submission_id': '1gtw86d'}
{'comment': '', 'created': '2024-11-18 18:19:36', 'submission_id': '1gtw86d'}
{'comment': 'There is not an American bone in this idiots body. Who in America would write anything to Putin? Are love notes to Xi and Kim Jong Un next?', 'created': '2024-11-18 18:28:06', 'submission_id': '1gtw86d'}
{'comment': 'Neocons? Biden is a neocon now? The stupid is strong with this one.', 'created': '2024-11-18 18:45:04', 'submission_id': '1gtw86d'}
{'comment': 'Apparently, this one guy speaks for everyone. Oh good God Almighty! Gunther speak for yourself.', 'created': '2024-11-18 19:24:05', 'submission_id': '1gtw86d'}
{'comment': 'Hello,\n\nAs able bodied American man speaking, please do not send the arms to the Ukraine.\n\nSincerely, \nNot Russian troll farm', 'created': '2024-11-18 19:33:32', 'submission_id': '1gtw86d'}
{'comment': 'Gunther is a special case...blocked by many on BlueSky.', 'created': '2024-11-18 20:16:45', 'submission_id': '1gtw86d'}
{'comment': 'I might get removed from here for language, but it needs be said.\n\nFuck Putin', 'created': '2024-11-18 21:08:56', 'submission_id': '1gtw86d'}
{'comment': 'I can’t believe that person thinks he’s an American.', 'created': '2024-11-18 22:31:15', 'submission_id': '1gtw86d'}
{'comment': 'Why do I feel like the original "Red Dawn" will come true soon?', 'created': '2024-11-18 23:01:19', 'submission_id': '1gtw86d'}
{'comment': 'Somebody tracked down his real identity at one point. He’s a piece of shit cop that perpetually gets fired from departments if I recall. I could be misremembering but I’m pretty sure. Really says a lot.', 'created': '2024-11-18 06:01:07', 'submission_id': '1gtw86d'}
{'comment': '“Gunther Dumberman” must have already been taken.', 'created': '2024-11-18 10:17:06', 'submission_id': '1gtw86d'}
{'comment': "He's a former cop who got fired for being corrupt. That's why he uses a fake name.", 'created': '2024-11-18 14:08:40', 'submission_id': '1gtw86d'}
{'comment': '"I\'m gonna rise up, I\'m gonna kick a little ass, gonna kick some ass in the USA, gonna climb a mountain, gonna sew a flag, gonna fly on an eagle, I\'m gonna kick some butt, I\'m gonna drive a big truck, I\'m gonna rule this world, gonna kick some ass, gonna rise up, kick a little ass - ROCK, FLAG AND EAGLE!"', 'created': '2024-11-18 14:02:28', 'submission_id': '1gtw86d'}
{'comment': 'I always though he was a parody account with a name like that.', 'created': '2024-11-18 14:46:28', 'submission_id': '1gtw86d'}
{'comment': "A made up maga name for cred. he's actually crud.", 'created': '2024-11-18 18:24:02', 'submission_id': '1gtw86d'}
{'comment': 'It is crazy. You should see the responses from his followers, it’s embarrassing as hell.', 'created': '2024-11-18 13:01:39', 'submission_id': '1gtw86d'}
{'comment': '600? Add a zero or two. Not to mention the millions of bots they have running around social media posting propaganda.', 'created': '2024-11-18 05:28:20', 'submission_id': '1gtw86d'}
{'comment': 'I don’t know how old this guy is, but Gen X and up remember those nuclear drills in the 70s and 80s. Thanks Russia for making grade school weird😣', 'created': '2024-11-18 06:50:11', 'submission_id': '1gtw86d'}
{'comment': 'Real Americans writing Putin like he’s Santa. Unbelievably repulsive. Well, actually Putin will be granting or refusing everything going forward because he owns the dementia puppet.', 'created': '2024-11-18 15:06:52', 'submission_id': '1gtw86d'}
{'comment': 'Yup MAGA supports a dictator who invaded his neighbor.....that says enough', 'created': '2024-11-18 13:52:23', 'submission_id': '1gtw86d'}
{'comment': 'i see you\'ve never met half the fucking accelerationist assholes who keep trying to steal the term "progressive" from us actual progressives.', 'created': '2024-11-18 07:23:34', 'submission_id': '1gtw86d'}
{'comment': 'Man, I fucking wish Biden is a neocon bro.', 'created': '2024-11-18 06:06:52', 'submission_id': '1gtw86d'}
{'comment': 'Suggested rephrasing for optimal politeness:\n\n“Dear Mr. Putin: I hope this post finds you as a printout taped to a Storm Shadow missile.”', 'created': '2024-11-18 07:12:07', 'submission_id': '1gtw86d'}
{'comment': 'That’s not how you address a Supreme Leader!', 'created': '2024-11-18 08:55:44', 'submission_id': '1gtw86d'}
{'comment': 'No kidding right.', 'created': '2024-11-18 13:00:40', 'submission_id': '1gtw86d'}
{'comment': 'Happy Cake Day!', 'created': '2024-11-18 11:23:30', 'submission_id': '1gtw86d'}
{'comment': 'Slava Ukraini! 🇺🇦', 'created': '2024-11-18 11:14:48', 'submission_id': '1gtw86d'}
{'comment': 'Real Americans always support the plucky underdog fighting against the bully.', 'created': '2024-11-18 16:10:55', 'submission_id': '1gtw86d'}
{'comment': '', 'created': '2024-11-18 06:51:24', 'submission_id': '1gtw86d'}
{'comment': 'whats funny is if the dems openly support putin, then the MAGAts would be all against him and supporting Ukraine lol. Its just a matter of go against anything the dems like right or wrong, you cant make this shit up they are beyond evil.', 'created': '2024-11-18 07:22:16', 'submission_id': '1gtw86d'}
{'comment': 'I have a relative who is definitely old enough to remember the Cold War, and yet has gone to the fuck Ukraine/yay Russia! side. \n\nThat thing they keep railing against, you know….communism? Russia has that. But I guess Russian communism is OKAY, but Dem “communism” (which doesn’t exist, they think socialism = communism), is the evilest of evil.', 'created': '2024-11-18 16:14:29', 'submission_id': '1gtw86d'}
{'comment': 'Exactly, this is like the twilight zone.', 'created': '2024-11-18 14:00:45', 'submission_id': '1gtw86d'}
{'comment': 'Na, real person. He’s been doxxed.', 'created': '2024-11-18 11:23:40', 'submission_id': '1gtw86d'}
{'comment': 'Right?!? Who would have thought the downfall of the U.S. would come from Republicans swooning over a Russian dictator trying to put the USSR back together', 'created': '2024-11-18 14:00:05', 'submission_id': '1gtw86d'}
{'comment': 'Rush’n Attack', 'created': '2024-11-18 06:31:28', 'submission_id': '1gtw86d'}
{'comment': 'It seems to be a mix, this guy is apparently an ex Texas cop.', 'created': '2024-11-18 13:02:28', 'submission_id': '1gtw86d'}
{'comment': 'Not only do I support that, I would like to have my signature put on the missiles for a price.', 'created': '2024-11-18 22:52:56', 'submission_id': '1gtw86d'}
{'comment': 'Putin makes them wet the bed.', 'created': '2024-11-18 22:50:19', 'submission_id': '1gtw86d'}
{'comment': 'I responded to him with absolute disgust over that. And the cowering of course.', 'created': '2024-11-18 22:50:52', 'submission_id': '1gtw86d'}
{'comment': 'I can’t even begin to understand it', 'created': '2024-11-18 13:17:13', 'submission_id': '1gtw86d'}
{'comment': 'Exactly, real Americans cannot sit by while a country that is fighting for democracy gets destroyed by an evil scumbag with wild ambitions.', 'created': '2024-11-18 22:54:29', 'submission_id': '1gtw86d'}
{'comment': 'Exactly, how could this guy be anything else.', 'created': '2024-11-18 22:49:31', 'submission_id': '1gtw86d'}
{'comment': 'That’s the world they want to be part of where this type of “justice” occurs and people cower.', 'created': '2024-11-18 22:51:42', 'submission_id': '1gtw86d'}
{'comment': 'Exactly. Evil thrives when good men (and women) do nothing. Kill the cancer when it starts.', 'created': '2024-11-18 22:55:55', 'submission_id': '1gtw86d'}
{'comment': 'Exactly. Then you add on North Korea fighting with them on European soil no less… it’s absolutely insane.', 'created': '2024-11-18 22:57:10', 'submission_id': '1gtw86d'}
{'comment': 'The sooner the better, or we live under the boot forever.', 'created': '2024-11-18 13:46:37', 'submission_id': '1gtw86d'}
{'comment': 'They don’t. They are honestly just cowards at their very core. \n\nThey want appeasement to try and prevent some conflict that has been hyped up by Russian PSYOPS.', 'created': '2024-11-18 14:07:05', 'submission_id': '1gtw86d'}
{'comment': 'Absolutely a traitor cosplaying as a patriot or whatever that means today.', 'created': '2024-11-18 14:07:56', 'submission_id': '1gtw86d'}
{'comment': 'Exactly. The mental gymnastics this guy does to actually believe he is a “real American” is insane.', 'created': '2024-11-18 23:01:22', 'submission_id': '1gtw86d'}
{'comment': 'Exactly, which is one rung up from (maybe) from domestic terrorist.', 'created': '2024-11-18 23:03:15', 'submission_id': '1gtw86d'}
{'comment': 'You all make me feel soooo much better. Reading through his comments I started to feel hopeless.', 'created': '2024-11-18 23:02:01', 'submission_id': '1gtw86d'}
{'comment': 'Fuck Putin indeed.', 'created': '2024-11-18 23:03:55', 'submission_id': '1gtw86d'}
{'comment': 'And on top of that, that people follow him and parrot his propaganda.', 'created': '2024-11-18 23:04:34', 'submission_id': '1gtw86d'}
{'comment': "https://x.com/CoffeyTimeNews/status/1810651652032024761\n\nHe's apparently a former texas cop. \n\nwhich checks out.", 'created': '2024-11-18 06:18:07', 'submission_id': '1gtw86d'}
{'comment': '> “Gunther Eagleman’s real name is David Freeman.”\n\nDavid Freeman^tm \n\n(A failed cop from Harker Heights, TX. Also failed Rapid Transit officer.)\n\ne: Here’s ‘Gunther’ getting his ‘man card’ [revoked](https://www.threads.net/@austinmermaidvotesblue/post/C9yTpyixLcM?xmt=AQGzYLPBxPQ8tO4_wTmYuHb14qBtc44mYnCEuCURymVg7g) by a former Seal Team member. \n\n(Seriously, who says that? The same sort of clown who wears his sunglasses indoors on his baseball cap visor, apparently.)', 'created': '2024-11-18 10:25:09', 'submission_id': '1gtw86d'}
{'comment': "Yeah the police won't keep you if you're also a prostitute. He's sucking Russian cock for money in this very post", 'created': '2024-11-18 16:16:53', 'submission_id': '1gtw86d'}
{'comment': 'I also seem to recall there was some question of some inbreeding in his family tree.', 'created': '2024-11-18 15:15:07', 'submission_id': '1gtw86d'}
{'comment': 'Im surprised hes real', 'created': '2024-11-18 07:06:33', 'submission_id': '1gtw86d'}
{'comment': 'He should shut up and go fight for Russia.', 'created': '2024-11-18 22:27:27', 'submission_id': '1gtw86d'}
{'comment': '"Steroid Alphamale"', 'created': '2024-11-18 14:20:19', 'submission_id': '1gtw86d'}
{'comment': 'It wasn’t Nazi enough', 'created': '2024-11-18 16:41:30', 'submission_id': '1gtw86d'}
{'comment': 'I can guarantee you that is written on the back of his giant truck that he’s having a hard time paying for because he keeps getting fired from his jobs because of “Biden and the libtard’s economy”', 'created': '2024-11-18 21:08:06', 'submission_id': '1gtw86d'}
{'comment': 'Oh, absolutely. When I saw 600 in the report, I thought that was way too low.', 'created': '2024-11-18 05:32:40', 'submission_id': '1gtw86d'}
{'comment': 'Visit the comments section of any YouTube video put out by CNN or MSNBC today. Hundreds and hundreds of bot-like comments from suspicious looking accounts.', 'created': '2024-11-18 06:09:20', 'submission_id': '1gtw86d'}
{'comment': 'I was born in 1964 and never did nuclear drills. Fire drills, yes. My Mom remembers doing nuclear drills in the 50s.', 'created': '2024-11-18 11:46:28', 'submission_id': '1gtw86d'}
{'comment': 'Hell yeah we did, hide under the desk with a book on your head...that will stop the nuclear fall out from landing on you for sure!', 'created': '2024-11-18 16:22:55', 'submission_id': '1gtw86d'}
{'comment': '“You don’t need to call me Doctor Doback”\n\n“Ok, Doback”', 'created': '2024-11-18 10:58:32', 'submission_id': '1gtw86d'}
{'comment': 'Thank you!', 'created': '2024-11-18 12:09:11', 'submission_id': '1gtw86d'}
{'comment': 'They’re contrarians no matter if it’s harming them. Anything to “own the libs”', 'created': '2024-11-18 14:30:44', 'submission_id': '1gtw86d'}
{'comment': 'This honestly feels when they tried appeasement to stave off Hitler', 'created': '2024-11-18 22:59:37', 'submission_id': '1gtw86d'}
{'comment': 'Someone with a 5th grade reading comprehension level and a dad that’s also their brother.', 'created': '2024-11-18 14:12:55', 'submission_id': '1gtw86d'}
{'comment': 'Yeah we’re completely fucked. I plan on leaving the country and watching this shit from afar.', 'created': '2024-11-18 23:05:12', 'submission_id': '1gtw86d'}
{'comment': '\n\nWe could’ve had at least four years of trying to clean up sus cop shops, but *noooo*🤦\u200d♀️', 'created': '2024-11-18 06:47:27', 'submission_id': '1gtw86d'}
{'comment': 'If you know Harker Heights then you know this is even more pathetic that he couldn’t hack it there', 'created': '2024-11-18 15:23:22', 'submission_id': '1gtw86d'}
{'comment': 'Definitely thought he’d be a Russian bot', 'created': '2024-11-18 10:20:24', 'submission_id': '1gtw86d'}
{'comment': 'He really should get his shiny rainbow fishing glasses on a tube around his neck and drive off in his four wheeler', 'created': '2024-11-18 21:05:49', 'submission_id': '1gtw86d'}
{'comment': 'Must be 600 that they found to be directly funded by the Russian government. Obviously they’re way bigger crooks than that, I’m guessing lots more that are funded in shadier ways.', 'created': '2024-11-18 05:36:52', 'submission_id': '1gtw86d'}
{'comment': 'This blows for people like me that aren’t good at spotting bots😣', 'created': '2024-11-18 06:43:20', 'submission_id': '1gtw86d'}
{'comment': 'I was born in 69 and graduated in 87. Clear memories of doing the hide under your desk / nuclear war drills In elementary and middle school.', 'created': '2024-11-18 12:56:14', 'submission_id': '1gtw86d'}
{'comment': 'Yes, with the Chamberlain and Halifax side pushing for a peace.', 'created': '2024-11-18 23:19:29', 'submission_id': '1gtw86d'}
{'comment': "It'd be like getting fired from the Tallahassee PD for excessive force *after* you were lured there [by Rhonda Santis' hiring bonuses for cops with violent records who relocate to Florida.](https://www.theguardian.com/us-news/2023/may/22/ron-desantis-police-relocation-violent-records)", 'created': '2024-11-18 20:08:19', 'submission_id': '1gtw86d'}
{'comment': 'It’s in the thousands, but the 600 are just the ones living in America, according to the DOJ indictment.', 'created': '2024-11-18 13:11:31', 'submission_id': '1gtw86d'}
{'comment': 'I check the acct for # of followers', 'created': '2024-11-18 07:06:02', 'submission_id': '1gtw86d'}
{'comment': "That's interesting. I grew up in a suburb of Washington DC; I would think if anyplace would do it it would be there.", 'created': '2024-11-18 13:05:28', 'submission_id': '1gtw86d'}
{'comment': "Only difference I see is once Hitler clearly showed he would not stop they went to war, what happens if Russia feels foggy and invades a nato nation? If Trump has his way we won't do that the Soviet Union will be rebuilt in a year", 'created': '2024-11-18 23:28:09', 'submission_id': '1gtw86d'}
{'comment': 'why?', 'created': '2024-11-18 13:41:20', 'submission_id': '1gtw86d'}
{'comment': 'There are also people that don’t have many followers. It’s not always easy to tell them apart. Of course accounts that were started yesterday and move in unison with loads of others like them and also have few/no followers are often bots.', 'created': '2024-11-18 14:04:23', 'submission_id': '1gtw86d'}
{'comment': 'We were in the fallout range of Oak Ridge Tennessee. We were always told it was a primary targets with that said you would think DC would be THE primary target.', 'created': '2024-11-18 13:07:59', 'submission_id': '1gtw86d'}
{'comment': 'If he did that and Europe went to war without us, I would be so ashamed I’d likely never look at the flag the same way again.\n\nThe hope is Congress, who officially declares war, would do the right thing.', 'created': '2024-11-18 23:32:30', 'submission_id': '1gtw86d'}
{'comment': 'because if they have 0 friends thats a red flag', 'created': '2024-11-18 17:34:26', 'submission_id': '1gtw86d'}
{'comment': 'Yeah if we actually declared war, we should all be ashamed of how he will treat our important allies, we went from bush dragging our allies to war to needing to drag our own president into a nessisary conflict. I always said if we wanted to end the war put 50,000 of our best troops and we in Moscow the next day. The 3rd world nation with nukes scares us shirtless. We would never tolerate a 3rd world nation having nukes', 'created': '2024-11-18 23:40:51', 'submission_id': '1gtw86d'}
{'comment': 'Someone should whisper to President Felon he’s letting Shadow Emperor Musk get all the credit', 'created': '2024-11-18 04:01:21', 'submission_id': '1gtut1n'}
{'comment': 'I fully expect an ugly breakup, but I also think it will take longer than we expect.', 'created': '2024-11-18 04:18:27', 'submission_id': '1gtut1n'}
{'comment': 'Oh, so sad, a power struggle in MAGA world.\n\n', 'created': '2024-11-18 03:51:47', 'submission_id': '1gtut1n'}
{'comment': "Honest question, why should we believe these reports? I feel like corporate media has been feeding us bull with the aim of breeding complacency. The default should be that Muskrat and mcTrump are going to ruin the country. Until I see hard evidence otherwise that's how I'm going to proceed.", 'created': '2024-11-18 04:00:45', 'submission_id': '1gtut1n'}
{'comment': "*“Elon Musk and President Trump are great friends and brilliant leaders working together to Make America Great Again. Elon Musk is a once in a generation business leader and our federal bureaucracy will certainly benefit from his ideas and efficiency.”*\n\nyeah, but a country is NOT a business and shouldn't be run like one. A business's main objective is to turn a profit and enrich share holders.", 'created': '2024-11-18 04:10:31', 'submission_id': '1gtut1n'}
{'comment': 'Cool. Deport him. 🤷🏻', 'created': '2024-11-18 04:25:17', 'submission_id': '1gtut1n'}
{'comment': 'I think he’s overstayed his welcome in this American Democracy! He obviously doesn’t respect the system. Can election meddling get an immigrant expatriated? Where can I sign the petition?', 'created': '2024-11-18 04:25:39', 'submission_id': '1gtut1n'}
{'comment': 'Don’t tease me', 'created': '2024-11-18 04:17:51', 'submission_id': '1gtut1n'}
{'comment': 'I figure those egos are going to clash at some point.', 'created': '2024-11-18 04:27:51', 'submission_id': '1gtut1n'}
{'comment': ' I don’t give these 2 egos a year before they fall out', 'created': '2024-11-18 04:35:23', 'submission_id': '1gtut1n'}
{'comment': 'If trumpers are having a bad time, makes me happy.', 'created': '2024-11-18 06:13:30', 'submission_id': '1gtut1n'}
{'comment': "Elon: But Donald, your bed is huge, and there's all this wasted space where Melania slept one time, and we have so much to discuss!", 'created': '2024-11-18 05:14:21', 'submission_id': '1gtut1n'}
{'comment': 'What a surprise. Invite a douchebag to be part of your team, and you’ll have an annoying douchebag on your team annoying everyone. Logic.', 'created': '2024-11-18 14:59:58', 'submission_id': '1gtut1n'}
{'comment': 'Watching Trump slowly slip into insanity as Elon prances the White House is karma in action.\n\nLET THE GAMES BEGIN!\n😁😁', 'created': '2024-11-18 04:32:35', 'submission_id': '1gtut1n'}
{'comment': "I can somewhat understand chump's appeal to ignorant rude obnoxious working class voters, but I don't think I will ever comprehend why they idolize the muskrat so much. Yes, he is one of the richest men in the world, clearly has a high IQ and owns some interesting companies. But those are the only nice things I can say about him (and those things aren't even particularly nice). He's an oddball, has zero emotional intelligence and seems like he'd be a horrible boss firing people if they say anything that rubs him the wrong way and demanding extremely long hours for not even great pay. Is he only idolized because of his wealth? Does he make other oddballs feel better about themselves? What am I missing here? I just don't get it ....", 'created': '2024-11-18 10:32:47', 'submission_id': '1gtut1n'}
{'comment': 'Further evidence most CEO’s don’t do shit. Dude is CEO of like three companies and spends all his time hanging around Trump.', 'created': '2024-11-18 15:34:08', 'submission_id': '1gtut1n'}
{'comment': 'Autistics can’t read the room. TIL their pushed down stairs', 'created': '2024-11-18 05:06:02', 'submission_id': '1gtut1n'}
{'comment': 'Dweeb-o & Trump have the same type A personality so it makes sense Trump wants him to go away.', 'created': '2024-11-18 07:35:02', 'submission_id': '1gtut1n'}
{'comment': "Elon wanted to be president instead. Infact, seems like all of Trump's inner circle wants to be in his shoes. I hope that causes their downfall.", 'created': '2024-11-18 12:56:35', 'submission_id': '1gtut1n'}
{'comment': 'This was bound to happen, although I didn’t expect it to happen this quickly.\n\nMusk isn’t used to sharing power with others. He’s not big on collaboration. Instead, he prefers to simply be asked “how high?” when he tells someone to “jump!” That’s the private sector, not the public sector.\n\nWait until Musk finds that members of Congress and the heads of various Executive branch departments jealously guard their power. They are, at best, going to slow-walk whatever he wants that they don’t want. His attitude itself will rub a lot of them the wrong way. They will not like some CEO telling them what they’re going to do for him.\n\nCouple this with the Project 2025 plan to fire most of the Executive branch staff—thousands and thousands of people—and to replace them with totally new, barely-experienced, hardly-trained employees who’ve been selected not because they’re the best for their positions but because they have professed loyalty to Trump. What would happen to a corporation if a new CEO fired everyone and replaced them at the same time? Those of us who work in corporate America know the answer; a totally inefficient workforce for at least a year, pissed off employees, pissed off customers, people quitting, stock price plummeting, etc.\n\nMusk will become frustrated with all this. I expect him to focus first on the things that benefit him, and then I think he’s going to be looking for an exit. Trump will blame him for any and all efficiency issues when he leaves. Hell, Trump will blame him for whatever he wants; truth matters not.\n\nThat’s what Musk doesn’t understand. Trump wasn’t looking for a partner; he was looking for a fall guy. He always is. He uses people until they aren’t useful anymore, and then he blames them for whatever he can. Musk thinks he’s a master of the universe; he believes it will be different with him. So did everyone else who had their lives ruined by Trump.\n\n“But Trump needs Twitter,” someone may say. No, he doesn’t. Even if he does, he’s too arrogant to believe it. In fact, Musk needs Trump and his supporters more than they need Twitter. Without them, Twitter is fucked now.', 'created': '2024-11-18 17:11:02', 'submission_id': '1gtut1n'}
{'comment': 'Inevitable!', 'created': '2024-11-18 04:25:02', 'submission_id': '1gtut1n'}
{'comment': "I'm okay with that", 'created': '2024-11-18 04:38:53', 'submission_id': '1gtut1n'}
{'comment': 'this website is unusable. So many ads and floating videos I don’t want.', 'created': '2024-11-18 04:40:35', 'submission_id': '1gtut1n'}
{'comment': 'Is this a serious news article or a gossip girl column?', 'created': '2024-11-18 04:45:24', 'submission_id': '1gtut1n'}
{'comment': 'I knew they would be fighting but I didn’t know it would be so soon. Trump is president and isn’t up for reelection…he can do whatever he wants, basically. And he will 10000% betray anyone who helped him get where he is if it benefits him. Elon needs to be careful', 'created': '2024-11-18 05:24:10', 'submission_id': '1gtut1n'}
{'comment': 'Until the reporting says that Leon *is* overstaying his welcome, it’s just rumors and innuendo.', 'created': '2024-11-18 05:36:46', 'submission_id': '1gtut1n'}
{'comment': 'Leon spent a lot of money so theres that but their committment to Russia will keep them tight for at least a little while', 'created': '2024-11-18 07:30:03', 'submission_id': '1gtut1n'}
{'comment': 'Ahhhhh shhhhhhhh let him dig his own hole. \n\nGrabbing some popcorn:)', 'created': '2024-11-18 09:15:35', 'submission_id': '1gtut1n'}
{'comment': 'They’re going to try and shock and awe us on day one with executive orders. The key for two years is stall and delay as much as possible.', 'created': '2024-11-18 09:23:11', 'submission_id': '1gtut1n'}
{'comment': 'Hes gonna supplant Rootles as the legendary Guest Who Wouldn’t Leave', 'created': '2024-11-18 11:56:11', 'submission_id': '1gtut1n'}
{'comment': 'I really really really want some artist to make a comic showing the progression of Trumps irritation with Elon since putting up with him for the money with the last one showing Elon just being strangled on January 21st.', 'created': '2024-11-18 12:38:21', 'submission_id': '1gtut1n'}
{'comment': 'When you are paying everyone’s salary there is no welcome to “un”.', 'created': '2024-11-18 13:21:57', 'submission_id': '1gtut1n'}
{'comment': 'I think Trump will pick Musk over his transition team.', 'created': '2024-11-18 16:53:06', 'submission_id': '1gtut1n'}
{'comment': 'The eventual breakup and maga turning on elon will be fucking hilarious', 'created': '2024-11-18 17:31:47', 'submission_id': '1gtut1n'}
{'comment': 'can they just get into a fist fight and disable both of them?', 'created': '2024-11-18 18:09:37', 'submission_id': '1gtut1n'}
{'comment': 'The guy that comes to stay at your house for a "few days" and 3 weeks later is still living off of your couch.', 'created': '2024-11-18 18:46:43', 'submission_id': '1gtut1n'}
{'comment': 'How embarrassing for Elon. After spending hundreds of millions of dollars on the promise of friendship he gets treated by Trump the way he treats all other African Americans.', 'created': '2024-11-18 19:26:03', 'submission_id': '1gtut1n'}
{'comment': 'Wow, a megalomaniac isn’t getting along with other megalomaniacs. Who could have predicted this?', 'created': '2024-11-18 19:51:29', 'submission_id': '1gtut1n'}
{'comment': 'His fifteen minutes of fame is fourteen minutes too long. Oh, and Elon: be careful of the toes you step on today, they may be connected to the ass you have to kiss tomorrow…', 'created': '2024-11-18 20:03:21', 'submission_id': '1gtut1n'}
{'comment': 'Two egocentric, narcissistic asshole ‘alpha male’ wannabes in the same room. What could possibly go wrong?', 'created': '2024-11-18 20:44:12', 'submission_id': '1gtut1n'}
{'comment': "His wealth and success dwarfs Trump's to the extreme, and maybe the only guy on earth with an ego as big as his. It's not a question of if there's going to be a very public falling-out, it's when. And I am fucking here for it.", 'created': '2024-11-18 21:45:04', 'submission_id': '1gtut1n'}
{'comment': 'I don’t believe anything on the news any more…', 'created': '2024-11-18 05:27:52', 'submission_id': '1gtut1n'}
{'comment': "So elons not recognizing social cues when it's time to leave and break off the conversation?", 'created': '2024-11-18 12:17:35', 'submission_id': '1gtut1n'}
{'comment': "Yeah, Rohm and Beria and Piers Gaveston dying all amde suvh a differrence in the lives of common Germans, Russians, and medieval English.\n\nQuit reporting like you're appraising the Crown.", 'created': '2024-11-18 04:15:32', 'submission_id': '1gtut1n'}
{'comment': 'Plus the ketamine.', 'created': '2024-11-18 13:12:17', 'submission_id': '1gtut1n'}
{'comment': 'Sadly these stories get our hopes up and nothing happens…. Billionaires always get away with whatever.', 'created': '2024-11-18 19:29:25', 'submission_id': '1gtut1n'}
{'comment': "If it happens at all. For all we know, Musk is doing a good job at flattering Trump and keeping him happy. Because getting flattered by the world's richest man probably feeds his ego in a way that he's not getting from anybody else.", 'created': '2024-11-18 04:29:30', 'submission_id': '1gtut1n'}
{'comment': 'That is what I’ve been telling myself each time another WTF is announced as a nominee for a cabinet position. My current coping mechanism is, “There is a bright side! That person will get fucked over by Trump!”\n\n', 'created': '2024-11-18 05:34:52', 'submission_id': '1gtut1n'}
{'comment': 'Boooo hooooo', 'created': '2024-11-18 06:34:03', 'submission_id': '1gtut1n'}
{'comment': 'It won’t be long…\n\nhttps://preview.redd.it/6gq9zhwrvk1e1.jpeg?width=1023&format=pjpg&auto=webp&s=19341b65e7a6070f2698ba3792de21d78c2a2d00', 'created': '2024-11-18 04:19:24', 'submission_id': '1gtut1n'}
{'comment': "It's really not. It's par for the course. They will still keep their eyes on the prize in the end. It's been less than two weeks since the election.", 'created': '2024-11-18 04:09:33', 'submission_id': '1gtut1n'}
{'comment': "It's mostly speculation, but it makes sense that you can't really have two malignant narcissists working together for long before frictions inevitably arise \n\nWe can only hope that bad communication and personality clashes prevents them from messing up too many things....", 'created': '2024-11-18 04:25:07', 'submission_id': '1gtut1n'}
{'comment': 'Bingo- this isn’t news , it’s infotainment. They want us to think this is some tv show like The Bachelor and Trump is going to give Elon the boot.\n\nIn reality Trump and Musk are on the same team and always will be. They are rich guys with a grift.', 'created': '2024-11-18 04:40:28', 'submission_id': '1gtut1n'}
{'comment': "This. Trump is all about money. As big of an ego he has, I doubt Trump is gonna let his easy money bag Musk go that easily. With Musk, he's never been this close to a political power and government influence and I don't see him letting that chance slip away, especially with all the money he dumped into it. He's gonna milk this situation for all it's worth.\n\nAlso can't forget they're bonded via racism, addiction to social media and assaulting women. Whatever differences they have, the common goals they share will be enough to last for a year or two. I could see them breaking up after a year or two, but before the term has even started? Not a chance", 'created': '2024-11-18 08:08:23', 'submission_id': '1gtut1n'}
{'comment': 'Exactly. Speculative/opinion posts from supposedly legitimate news agencies are just as useless and click baity as outright misinformation.', 'created': '2024-11-18 04:07:35', 'submission_id': '1gtut1n'}
{'comment': "It sounds in tune with all that I've read about Trump and the dynamics of his inner circle, as well as Elon's personality. There's nothing surprising here.", 'created': '2024-11-18 06:23:22', 'submission_id': '1gtut1n'}
{'comment': 'I’m sure they say perfectly vile things about one another when apart, but for now they’re using each other. Like most users & abusers, when they can no longer milk each other for anything is when they’ll publicly sour.', 'created': '2024-11-18 04:57:04', 'submission_id': '1gtut1n'}
{'comment': 'Elon is definitely the bottom in that relationship.', 'created': '2024-11-18 15:17:42', 'submission_id': '1gtut1n'}
{'comment': 'They only have douchebags in their circle. Their problem is too many of them think they are in control of everything, and Elon is one of the few which actually bought a ticket.', 'created': '2024-11-18 15:03:41', 'submission_id': '1gtut1n'}
{'comment': 'May the odds be in your favor', 'created': '2024-11-18 14:29:54', 'submission_id': '1gtut1n'}
{'comment': 'Sure , but if we can cause Trump to lose his shit with Elon, it will be epic', 'created': '2024-11-18 23:52:05', 'submission_id': '1gtut1n'}
{'comment': "Musk wants this *bad*. I'm absolutely convinced he wants to be able to re name something X. I'm curious to see if Trump lets him just to get him out.", 'created': '2024-11-18 13:42:23', 'submission_id': '1gtut1n'}
{'comment': 'Poor Leon', 'created': '2024-11-18 05:30:08', 'submission_id': '1gtut1n'}
{'comment': 'Yep, and this is par for the course. This happened constantly during Trump’s first term. He burns bridges and flips on people in an instant. We don’t need an insider source to know it’s going to happen with Elon. \n\nTwo malignant narcissists that always need the last word. People are giving them too much credit. I don’t think it’ll take very long at all for their egos to implode. They WILL turn on each other, and it’ll be hilariously ugly.', 'created': '2024-11-18 04:38:13', 'submission_id': '1gtut1n'}
{'comment': 'Or there are devout ass kissers that had to climb their way up to 1st-5th place Trump ass kisser, but Leon came along and went straight to the number one spot. I’m sure there are some in Trump’s orbit that are jealous of his new lap dog taking their places so easily. \n\nJewish Space Laser chick and Purge Face chick were publicly beefing on Twitter because Purge Face chick was getting Trump’s attention in Sept.', 'created': '2024-11-18 05:39:24', 'submission_id': '1gtut1n'}
{'comment': "I've been wondering. \n\nWhat is the one thing the world's richest egomaniac immigrant might want that he can't have? \n\nTo be president of the United States. \n\nIf Musk can help Trump become dictator, the naturalized citizen requirement won't exist anymore for Trump's successor.\n\nSo he wouldn't be the first person to suck up to a dictator with hopes of eventually taking the reins himself.", 'created': '2024-11-18 14:06:33', 'submission_id': '1gtut1n'}
{'comment': 'Reek*', 'created': '2024-11-18 07:36:41', 'submission_id': '1gtut1n'}
{'comment': 'Republicans used concerns over trans athletes in some sports to slime trans people in general. It was a classic wedge issue for them.', 'created': '2024-11-18 03:09:06', 'submission_id': '1gttq83'}
{'comment': "We have no idea what Democrats have learned, we have elevated certain voices and decided they represent the party. I think it's important to stand up and make sure it's clear the opinions going around are from individuals and not from the party. There is absolutely no consensus amongst the party, and that's fine because there's a lot of things going on, there's no single explanation, there are things out of our control like global inflation, and there are things like ceding too many media spaces to the right where we can make serious improvements. Things like trans rights we can support generally and let science decide specifically, because the governments job is not to tell people what they can or can't do with their bodies. Our problem is not supporting marginalized groups, it's letting others define the issue and our stance on it.", 'created': '2024-11-18 03:05:52', 'submission_id': '1gttq83'}
{'comment': "The chokehold that ring wing framing has on the op-ed providing Democrats is insane. Let's not fall for their framing as we have clearly seen where it has gotten us.", 'created': '2024-11-18 04:40:23', 'submission_id': '1gttq83'}
{'comment': 'Republicans spent over $100 per trans person in the United States on anti-transgender messaging. Democrats don\'t need to "learn" anything on this issue - we need to push back hard on the GOP sexually harassing children.', 'created': '2024-11-18 03:15:34', 'submission_id': '1gttq83'}
{'comment': 'She’s right. This wasn’t even an issue until republicans brought it up, and somehow democrats are to blame for spending too much time talking about “ fringe” issues? If democrats need to learn anything it’s how not to take the bait. The next time the republicans try to distract with a wacky non-problem the response should be “I understand you see this as a problem, but do you know what’s really a problem? The high cost of healthcare.”', 'created': '2024-11-18 04:30:06', 'submission_id': '1gttq83'}
{'comment': "Here it is on YouTube: [Psaki: Democrats are learning the wrong message on Trans Youth](https://www.youtube.com/watch?v=UcKBpoooM5E). The Trans Youth segment starts @ 6:23.\n\nFrom the video’s description: \n*The Democratic party is doing a lot of soul searching right now. But many Democrats are coming to the wrong conclusion on trans rights.*\n\nResources: \n[Moral Panics And How To Spot Them](https://www.youtube.com/watch?v=oAeKAJFrb0w&t=33s) (video)\n\n[The Forgotten History of the World's First Trans Clinic](https://www.scientificamerican.com/article/the-forgotten-history-of-the-worlds-first-trans-clinic/) \n\n[10 ways to be prepared and grounded now that Trump has won](https://wagingnonviolence.org/2024/11/10-things-to-do-if-trump-wins/)\xa0\n\n[Getting Started w/ Mutual Aid](https://www.reddit.com/r/WitchesVsPatriarchy/comments/1gnhksw/getting_started_w_mutual_aid/)\n\n[How to Stand Up to a Dictator](https://youtu.be/RtSTBoPloqI) (video)\n\nEdits: added more links", 'created': '2024-11-18 02:51:36', 'submission_id': '1gttq83'}
{'comment': "Of course it was on purpose, and the Democrats and Kamala Harris didn't formulate a response and it killed them. \n\nThere are so many who just don't want to believe this, along with her race and gender, was what sank Harris' campaign. Had she come up with any kind of sensible response to those ads, she may have had a chance, but she didn't. It's was possible because Psaki just showed how it could be done. And, reportedly, Bill Clinton tried to get the Harris campaign to push back on the ads, but they ignored him. That says more to me than anything said by a bunch of douchebag pundits like Bill Maher or James Carville.", 'created': '2024-11-18 03:13:04', 'submission_id': '1gttq83'}
{'comment': 'They tried that trans ad bullshit with Andy Beshear during his last election and he put out a video responding to it and basically calling it bs..and it worked, hell this was at a time where the trans issues was huge deal and in ruby red ky, but he went on to easily win re election, it can be done without offending anyone, now Kamala woulda lost anyway but I do think she needed to respond to it and hopefully dems realize that next election cycle to not let these assholes control the narrative', 'created': '2024-11-18 06:33:31', 'submission_id': '1gttq83'}
{'comment': "First of all thank you for setting the record straight \\*after\\* the election. Would have been nice to bring this up years ago before Joe Rogan and the entire right wing pod-o-sphere spent a collective eon of time talking about this again and again. \n\nSecondly, this dismissive take is why democrats continue to lose elections. It's a cultural issue and if a lot of people think it's an issue, it's an issue. The fact that there's misinformation is beside the point. Maybe democrats shouldn't take positions that they are not competent in communicating or defending because from what I can tell it looks those very people are advocating for are going to have a harder time than most in the coming years.", 'created': '2024-11-18 03:10:41', 'submission_id': '1gttq83'}
{'comment': 'The fact that Democrats allowed Trump in the White House despite the fact he’s an actual criminal and a fascist, shows that they are playing by rules that no longer exist. Republicans are playing by a set of rules that they are absolutely dominating us with. Biden should have refused to see that fascist POS and should be calling out the media for normalizing Trump all this time. Democrats are too nice, too unwilling to stand up as a force in the government and tell the anti democracy GOP to kiss their asses. Democrats are so nice it’s starting to look like complicity. Looking at you Merrick Garland, who had the opportunity to lay down the law on Trump and his cronies and didn’t do it, dragging the DOJ’s feet not prosecuting anyone. If this democracy falls, I lay responsibility partially squarely at the feet of Merrick Garland. The other half of the responsibility I’ll lay at the feed of the Democratic party itself. Democrats are weak, spineless, and go high when they should be punching these fascist traitors squirrel in the stomach. I’m very disillusioned with the Democrats and they’re lucky they are the only choice because if we had ANY other pro democracy party that had any chance of winning an election I would start voting for their candidates. I worked my ass off FOR MONTHS knocking doors, making calls, and I spent more time at the local county Democratic office, than I did at my own house —and when Trump supporters started, destroying all of our campaign signs that we paid good money for, the state party wouldn’t put it on the news because they claimed that putting it on the media would only encourage copycats. Ignore the problem and it will go away. Right? This party better start waking up and getting a whole lot scrappier or we are going to wake up and find ourselves in the history books as having been a weak party just like the social Democrats in Germany were weak and failed to stop Hitler. 🤬 Rant over.', 'created': '2024-11-18 04:18:45', 'submission_id': '1gttq83'}
{'comment': 'We will not abandon our trans brothers and sisters!', 'created': '2024-11-18 03:22:19', 'submission_id': '1gttq83'}
{'comment': 'She is engaging in the classic liberal elitist behavior of glossing over how middle America feels about an issue and assuming if you just throw facts at people it will change their mind. While that should work, its success rate has been abysmally low and part of what needs reflected on. \n\nNo one should ever be discriminated against or fear for their safety because of who they are. But that also doesn’t mean making an issue that affects less then 1 percent of the population be something that opponents can beat you over the head with. \n\nRebuild your base by focusing on the economic issues and wealth disparity that if messaged properly should receive broad support.', 'created': '2024-11-18 04:05:40', 'submission_id': '1gttq83'}
{'comment': 'We need to do what they do. Run on centrist talking points while quietly running for "extreme radicals". That\'s how they beat us.', 'created': '2024-11-18 09:32:16', 'submission_id': '1gttq83'}
{'comment': 'Data. People vote for an issue or express a concern and our best answer is “the data doesn’t agree.” \n\nNot “I don’t agree” or “but think about what that position might mean further down the line?” No, it’s “you’re wrong.”\n\nBut then we use cherry-picked stats and stories like a single person who’s pregnancy went wrong and died (a tragedy) as an example of why a national law important and hand wave anyone that says “that’s just 1 example.” Or… when they point to millions of border crossings as a possible concern and we say “numbers have gone down. Look at the data.”\n\n“We know better than you. Vote for us.” Not a winning message. And in defending the message we lose the forest for the trees.\n\nInstead, don’t just defend the idea of gender affirming care for prisoners. Go full court press and say it’s because you believe everyone… EVERYONE… should get the healthcare they deserve. “I’m Kamala Harris and I’m for him, her, they, them, and I’m for you. Let’s get you the care your deserve.”', 'created': '2024-11-18 18:30:49', 'submission_id': '1gttq83'}
{'comment': 'Yes, we can start with banning puberty blockers in America just like other countries have who thought they were progressive by introducing it first. \n\nTop surgeries and all forms of gender-affirming care should only be allowed for 18+. The only care children with gender dysphoria should receive is obviously therapy. I think on the this issue we’ve clearly gone too far left once we start experimenting on children.', 'created': '2024-11-18 12:39:07', 'submission_id': '1gttq83'}
{'comment': 'Such a bad faith argument. “It’s rare so it doesn’t matter.”\n\nSchool shootings are rare. Women dying from abortion bans since the removal of Roe is rare. \n\nDoesn’t mean we shouldn’t deal with them.', 'created': '2024-11-18 14:55:53', 'submission_id': '1gttq83'}
{'comment': 'Trans women in women’s sports? Let the sport decide, not politicians. We have the NCAA, the IOC, FIFA, FIBA, etc. that set the rules for competition. Let them. Politicians should stay out of it.\xa0\xa0\n\n\xa0There. End of discussion.\xa0', 'created': '2024-11-18 05:21:56', 'submission_id': '1gttq83'}
{'comment': 'Abandoning vulnerable and oppressed people just for the sake of winning elections would be absolutely pathetic. That is not what we stand for and not worth it.', 'created': '2024-11-18 06:51:25', 'submission_id': '1gttq83'}
{'comment': '[removed]', 'created': '2024-11-18 05:18:46', 'submission_id': '1gttq83'}
{'comment': 'Damn I wish Democrats were perfect. I wish waving a magic wand would solve our problems. How about voters STOP voting against their self interest Psaki.', 'created': '2024-11-18 04:23:35', 'submission_id': '1gttq83'}
{'comment': "Psaki I know what you're doing but this isn't the Newsnation time for that.", 'created': '2024-11-18 05:24:23', 'submission_id': '1gttq83'}
{'comment': 'Well, this video shows that Democrats haven’t really learned anything from this election if Jen is at all representative of what many Democrats are thinking.\n\nThe party seems incapable at this point of coming to grips with reality. The American people have spoken yet we refuse to listen.', 'created': '2024-11-18 04:24:58', 'submission_id': '1gttq83'}
{'comment': 'transphobia, thats all it is', 'created': '2024-11-18 04:54:00', 'submission_id': '1gttq83'}
{'comment': 'I think she misses the point that there may be one trans athelete today opening the door to hundreds more tomorrow (a good thing, yes!) . The sports world needs to sort this out and make it fair for everyone involved. The issue seems to mostly affect womens sports because when men become women they are so much stronger putting women at a disadvantage. I dont understand why they cant come up with a fair solution for all involved.', 'created': '2024-11-18 07:43:57', 'submission_id': '1gttq83'}
{'comment': "They dictated the entire discussion about trans issues this cycle by talking about imprisoned illegal immigrants who are getting surgery. \n \nA subset of a subset of a subset of trans people that accounts for like 0.0001% of the population. \n \nIdk what exactly there even is to glean from this, it's just very frustrating.", 'created': '2024-11-18 05:02:58', 'submission_id': '1gttq83'}
{'comment': 'They weren’t sliming trans people as much as they were using the issue to show Democrats as being out of touch and more concerned with a tiny minority than about the broad majority.\xa0', 'created': '2024-11-18 05:24:28', 'submission_id': '1gttq83'}
{'comment': 'They also bought ad time during Sunday Night Football so that you see a guy get absolutely clobbered, and then immediately an ad that tries to connect that say linebacker knocking out your teenage cousin in the field hockey homecoming.', 'created': '2024-11-18 18:34:57', 'submission_id': '1gttq83'}
{'comment': 'This is true for both the lefty voices and the moderate voices.\n\nEveryone is pushing an ideology of process (who is “included” or in leaderships) and no one is talking values and goals.', 'created': '2024-11-18 18:33:18', 'submission_id': '1gttq83'}
{'comment': 'We have no idea what Democrats have learned because they’re not currently joining the conversation. Haven’t heard hide nor hair from this party since the election ended.', 'created': '2024-11-18 04:25:02', 'submission_id': '1gttq83'}
{'comment': '🚨🚨🚨\n\nYou’ve been found guilty of “committing obvious observations”.\n\nGo to Reddit jail for 3 weeks or make a non-specific half-hearted land acknowledgement to indigenous peoples without recognizing the ongoing systemic forces that perpetuate the injustice against them right tf now 🙏🙏🙏\n\n#pelosi2030', 'created': '2024-11-18 03:54:43', 'submission_id': '1gttq83'}
{'comment': 'I feel like I’m living in an upside down world, where every headline is what democrats can learn and how they failed. Meanwhile the pressure is never on conservatives to join reality, embrace science, ditch conspiracies and racism. Not saying us Dems don’t have a hell of a lot of work cut out for us, but man.', 'created': '2024-11-18 03:35:19', 'submission_id': '1gttq83'}
{'comment': 'Democrats should’ve been buying up radio stations instead of buying ads every election cycle. Now the GOP owns mostly all the media. Democrats have no radio stations no radio shows, no real voice on any media whatsoever because they were too busy doing fuck all thinking that they could win elections like it’s the old days. It’s not the old days anymore.', 'created': '2024-11-18 04:26:50', 'submission_id': '1gttq83'}
{'comment': "Yall aren't going to want to hear this. What you're talking about is absolutely the right thing to do. It's also absolutely a losing issue.", 'created': '2024-11-18 04:03:58', 'submission_id': '1gttq83'}
{'comment': 'Damn, if I had an extra 100 dollars 😭', 'created': '2024-11-18 03:57:55', 'submission_id': '1gttq83'}
{'comment': 'She’s right that it isn’t a big issue but Moulton is right that we can talk about it in a relatable way, acknowledging that we may never personally encounter the issue. I think this is a “yes and” situation.', 'created': '2024-11-18 17:23:04', 'submission_id': '1gttq83'}
{'comment': 'Or pivot and make it about personal liberty, and about how the government should stay out of the decisions of parents, since so much of this stuff is about trans kids.', 'created': '2024-11-18 16:54:17', 'submission_id': '1gttq83'}
{'comment': 'There is no response when the entire media plays into the right wing fear mongering.', 'created': '2024-11-18 03:29:15', 'submission_id': '1gttq83'}
{'comment': 'I agree they should not have remained so silent and should have taken control of the narrative. It’s one of those things that may not be an issue in reality, but was used in marketing and tv so people perceived it to be more widespread than it was. As a result, the trans community has not been properly protected & defended and no one should feel as scared as they do now in the United States of America, but that was the old USA.', 'created': '2024-11-18 03:39:59', 'submission_id': '1gttq83'}
{'comment': "Why do campaigns continue to ignore Bill Clinton's instincts? Hillary's did it too.", 'created': '2024-11-18 04:02:15', 'submission_id': '1gttq83'}
{'comment': 'But is there any evidence that these anti-trans attacks were actually effective? It seems the economy and immigration swayed many more voters.', 'created': '2024-11-18 14:41:07', 'submission_id': '1gttq83'}
{'comment': "Agreed. This is how Dems need to act. Beshear is a gentle man, but he's fierce when the need arises. He knows the value of direct & timely communication.", 'created': '2024-11-18 07:39:50', 'submission_id': '1gttq83'}
{'comment': 'Beshear should’ve been VP.', 'created': '2024-11-18 20:52:28', 'submission_id': '1gttq83'}
{'comment': 'But democrats also win alot of elections.', 'created': '2024-11-18 03:28:14', 'submission_id': '1gttq83'}
{'comment': 'How dare you suggest we start looking at reality. Apparently, the message we should learn after this loss is that we need to continue to ignore the issues people actually care about. (sarcasm)\n\nI think the part is being held hostage by itself. God help us.', 'created': '2024-11-18 04:21:34', 'submission_id': '1gttq83'}
{'comment': 'Democrats didn’t allow shit. A majority voted for Trump with full knowledge of who he is and what he is. The fight is a class fight against ridiculously wealthy, organized, malevolent power. The answer is to do whatever it takes to get the rubes to vote blue. Everything else is noise.', 'created': '2024-11-18 05:04:30', 'submission_id': '1gttq83'}
{'comment': "Thank you for all you did to help Harris & Walz! And I'm sorry it's been so frustrating. I agree, the Dems are being bullied by fascist thugs. Seems Gingrich got that ball rolling in the mid-90's and the Ghouls Only Party has been running on malice ever since.", 'created': '2024-11-18 05:29:18', 'submission_id': '1gttq83'}
{'comment': '🫂', 'created': '2024-11-18 19:36:15', 'submission_id': '1gttq83'}
{'comment': 'The problem is that a lot of people can\'t agree on what "therapy" looks like.', 'created': '2024-11-18 16:43:52', 'submission_id': '1gttq83'}
{'comment': '>experimenting on children\n\nWut?', 'created': '2024-11-18 14:09:08', 'submission_id': '1gttq83'}
{'comment': ">start with banning puberty blockers in America just like other countries\n\n[Only Russia](https://www.politico.com/news/2023/10/06/us-europe-transgender-care-00119106) has banned it. You're spreading misinformation.", 'created': '2024-11-18 18:34:30', 'submission_id': '1gttq83'}
{'comment': ">Such a bad faith argument.\n\nLook in the mirror. Shootings and removal of Roe result in death, physical injuries, and/or severe psychological traumas. Trans women playing in women's sports doesn't result in death, physical injuries, and/or severe psychological traumas.\n\nThis is yet another [GOP moral panic](https://www.youtube.com/watch?v=oAeKAJFrb0w&t=33s), disguised as protecting children.", 'created': '2024-11-18 18:41:05', 'submission_id': '1gttq83'}
{'comment': '[removed]', 'created': '2024-11-18 05:18:54', 'submission_id': '1gttq83'}
{'comment': "Careful, they're gonna start calling you a TERF.", 'created': '2024-11-18 21:57:40', 'submission_id': '1gttq83'}
{'comment': "They control the narrative because they control Fox News, Twitter/X, and get favorable treatment from Facebook and its offshoots.And that doesn't even get into podcasts and Fox News wannabes. \n\nIf we want to be able to compete then we need to be able to communicate more directly with voters – and not just for 10 weeks prior to elections. how to do this should be one of our Top Three concerns.", 'created': '2024-11-18 05:10:25', 'submission_id': '1gttq83'}
{'comment': 'The narrative is that Democrats care more about the minority of a minority of a minority than about the public as a whole.\xa0\n\nThere’s a meme a long these lines: “Meteor hits earth. Black trans women most affected.”\xa0', 'created': '2024-11-18 05:25:07', 'submission_id': '1gttq83'}
{'comment': "but also arent there many trans people NOT in prison who cant afford surdery? I dont even like this policy! Id like to hear a trans person's opinion on this", 'created': '2024-11-18 07:47:34', 'submission_id': '1gttq83'}
{'comment': 'I don’t believe it’s surgery but healthcare. That means hormones, which are inexpensive drugs.', 'created': '2024-11-18 12:48:56', 'submission_id': '1gttq83'}
{'comment': "An extremely tiny minority is being asked to make huge sacrifices to assuage the inchoate and largely baseless fears of a population that's thousands of times larger.", 'created': '2024-11-18 08:14:06', 'submission_id': '1gttq83'}
{'comment': 'Which is a bullshit claim. "You can care about more than one person at once"', 'created': '2024-11-18 16:36:07', 'submission_id': '1gttq83'}
{'comment': 'One hundred percent agree. I want them speaking goals, and what they believe the government is for and what it can do. Paint a picture of what you want to do and leave room for internal disagreement. It leaves folks wondering what the Democrats even stand for. Republicans did such an incredible job marketing themselves around values that people have assumptions about them they do not have to articulate at all. Immigration and the economy are the most obvious examples.', 'created': '2024-11-18 19:04:57', 'submission_id': '1gttq83'}
{'comment': "It's best to do an internal AAR, find out what happened and then speak on it. Right now anyone's guess is as good as mine.", 'created': '2024-11-18 05:23:34', 'submission_id': '1gttq83'}
{'comment': 'Yeah how about how fucking out of their mind a good bit of voters were electing that guy and the arguments they make to justify it like "he\'s gonna lower the price of eggs and stop the after birth abortions"', 'created': '2024-11-18 04:31:37', 'submission_id': '1gttq83'}
{'comment': 'How do you force people that won’t do that? You can’t. You need to court the people that are reasonable.', 'created': '2024-11-18 15:22:17', 'submission_id': '1gttq83'}
{'comment': 'Some of that is recency bias I think. I definitely remember when Romney lost to Obama, there were plenty of editorials and discussion of how Republicans could reorient themselves, and they even had some sort of retreat where they got together to discuss it. Of course, they ignored all of the suggestions, and then Trump re-oriented the party for them.', 'created': '2024-11-18 16:50:52', 'submission_id': '1gttq83'}
{'comment': 'See the thing about the old days is that they old days.', 'created': '2024-11-18 06:08:33', 'submission_id': '1gttq83'}
{'comment': "Well they've been fishing for Twitter 'gotchas' and clout and look where that got them", 'created': '2024-11-18 10:03:10', 'submission_id': '1gttq83'}
{'comment': 'Capitulation to the GOP sexually harassing people for political advantage won\'t work. This isn\'t a losing issue for Democrats *because it wasn\'t an issue for Democrats.* The GOP actively manufactured this "controversy."\n\nThis is like saying pushing back on blatant racism is a losing issue.', 'created': '2024-11-18 04:09:53', 'submission_id': '1gttq83'}
{'comment': '> It seems the economy and immigration swayed many more voters.\n\nI don\'t understand why some people can\'t accept that people have become sophisticated enough that they lie to pollsters when it comes to race and other social issues. The economy is always a factor, but when you hear so much about how "inexplicable" a result is, you have to go beyond the surface. \n\nThe "economy" is the palatable thing to say and the pundits readily point to that as a conclusion because they\'re no better at coping with the truth than their audiences.', 'created': '2024-11-18 14:59:48', 'submission_id': '1gttq83'}
{'comment': 'Yes. It impacted how swing/low-participation voters perceived the Harris campaign, and crowded out the positive messaging they were trying to make on the economy, immigration, etc.', 'created': '2024-11-18 19:28:33', 'submission_id': '1gttq83'}
{'comment': 'Would of made absolutely zero difference in this election, in 2028 tho I can see him running for president or end up being vp', 'created': '2024-11-18 20:58:24', 'submission_id': '1gttq83'}
{'comment': 'Stopping the natural puberty process in a child is an experiment. Going through puberty is not optional part of childhood. And how that affects the mental health of children as they become adults is something we do not know.', 'created': '2024-11-18 20:26:51', 'submission_id': '1gttq83'}
{'comment': 'Other countries have limited it, Russia has banned it. America should ban it. Thank you for your services misinformation police🫡 \n\nReddit is a more informed place because of you.', 'created': '2024-11-18 20:04:37', 'submission_id': '1gttq83'}
{'comment': '[removed]', 'created': '2024-11-18 05:19:03', 'submission_id': '1gttq83'}
{'comment': 'ikik', 'created': '2024-11-18 22:51:00', 'submission_id': '1gttq83'}
{'comment': "The only way is to shut off the misinformation tap and that would require legislation so comprehensive that it'll get the First Amendment warriors up in arms.", 'created': '2024-11-18 05:24:45', 'submission_id': '1gttq83'}
{'comment': 'The second point is we need to aggressively regulate these toxic platforms. There I said it. Free speech cannot justify this yellow journalism and foreign interference\xa0', 'created': '2024-11-18 15:45:50', 'submission_id': '1gttq83'}
{'comment': 'Absolutely! We need rich people on our side (hello, Hollywood!) to start up and then provide ongoing financial support to multiple kinds of media that is left leaning. Stephanie Miller and Hal Sparks, for example, should be easier for listeners/watchers to find.', 'created': '2024-11-18 09:55:05', 'submission_id': '1gttq83'}
{'comment': 'I mean, that\'s exactly what "climate justice" means. It\'s about a catastrophic event happening to earth (climate change), but told through the lens of minorities instead of environmentalism', 'created': '2024-11-18 16:14:00', 'submission_id': '1gttq83'}
{'comment': 'as a trans woman, my biggest fear is ending up in a male prison. and the reason why is never brought up in most discussions, as other issues tend to overshadow it. like the whole 5 people who want surgery while in prison\n\nhttps://www.pushblack.us/news/how-v-coding-demonstrates-violence-rape-and-prison-culture\n\n>In a grotesque manipulation of power dynamics, sexual and carceral violence combine to produce V-coding: Prison staff “pacify” incarcerated men by putting a trans woman in a cell with them to “offer” sexual favors. But this kind of sex, usually unprotected, isn’t sex at all. It’s facilitated rape.\n>Studies and testimonies\xa0over the past decades define V-coding as “a central part of a trans woman’s sentence.” One survivor, Kim Love, described being\xa0forced to take a “husband.”\xa0Prison authorities frame this as violence prevention.\xa0\n\nthis is what we may find ourselves walking into if we end up in prison, and if its a red state you happen to live in, the justice system tends to work harder against you as a trans person. refusing to be raped? sounds like you incited violence. lets tack on a few more years.\n\nwhen i think of this, and i think of the teeny tiny amount of us actually wanting to get these surgeries while in prison... i say just give them the damn surgeries. thats a nothing burger of an issue.', 'created': '2024-11-18 16:12:00', 'submission_id': '1gttq83'}
{'comment': "There were literally only two instances of it happening and it cost the average taxpayer about a fifth of a cent by my calculations \n \nStrictly speaking, yeah, I personally don't support taxpayer funds being used for elective surgery of prisoners but it's such a vanishingly tiny problem that it's ridiculous it was magnified to such a degree. Republicans could've given everyone a 2700% rebate on the cost instead of fearmongering", 'created': '2024-11-18 15:09:48', 'submission_id': '1gttq83'}
{'comment': 'Their ads talked about surgery specifically', 'created': '2024-11-18 12:54:08', 'submission_id': '1gttq83'}
{'comment': 'That’s how people feel.\xa0', 'created': '2024-11-18 17:26:42', 'submission_id': '1gttq83'}
{'comment': "That said, we got beat up on that messaging, because we didn't have a coherent and unified response to it, because it's impossible to please the middle and the far left at the same time.\n\nI'm all ears for good solutions to that problem.", 'created': '2024-11-18 07:53:24', 'submission_id': '1gttq83'}
{'comment': 'Right? Why is gonna say to a pollster “Yes I’m not voting for her because she’s a woman.”', 'created': '2024-11-18 15:25:30', 'submission_id': '1gttq83'}
{'comment': 'Okay, but in lieu of exit polls and other polls, then what are you going to use to evaluate how voters are deciding things? Just your hunch and general sense?', 'created': '2024-11-18 15:45:17', 'submission_id': '1gttq83'}
{'comment': 'I hope he runs in 2028 or Kelly', 'created': '2024-11-18 21:00:12', 'submission_id': '1gttq83'}
{'comment': 'We have decades of experience with it from treating precocious puberty. \n\nWe also know how harmful going through puberty can be to some trans kids. It\'s not been shown as harmful to delay puberty for kids who might not want to become a man or a woman as expected to prevent dysphoria, depression, and suicide.\n\nThis happens so rarely that running entire political campaigns against it is just because they want to say, \'kill all trans people", but that\'s not seen as acceptable yet. So they found something that a couple kids needed that they can make sound scary and then lie and claim that schools are forcing kids to become trans and giving them hormones. \n\nIt\'s all just hatred, it\'s not informed by anything other than hatred of trans people and misogyny in general.', 'created': '2024-11-18 20:38:10', 'submission_id': '1gttq83'}
{'comment': '[removed]', 'created': '2024-11-18 05:19:11', 'submission_id': '1gttq83'}
{'comment': "Trump has already vowed to make sure the government doesn't do that and to make disinformation and misinformation much more easily accessible by not allowing anyone in government to label anything as misinformation... which sounds crazy because I have no idea how far that reaches. Can advertisers straight-up lie? Can I finally sell my magic battery acid cocktail that not only cures all of your diseases but also gives you a 14-inch dick?", 'created': '2024-11-18 17:41:58', 'submission_id': '1gttq83'}
{'comment': "In reality, we'll have to confront the problem someday. But we probably should gain the Congress or even the courts before we bother starting any such debate\xa0\n\nIn the meantime, let's just acknowledge misinformation is our main problem. At least then we can understand the problem if not ready solutions\xa0", 'created': '2024-11-18 15:47:30', 'submission_id': '1gttq83'}
{'comment': "We need to reach out to voters person to person. There's nothing more First Amendment than that.", 'created': '2024-11-18 23:44:17', 'submission_id': '1gttq83'}
{'comment': 'I have literally never heard of these people…', 'created': '2024-11-18 15:20:33', 'submission_id': '1gttq83'}
{'comment': 'thanks so much for explaining this, truly horrific', 'created': '2024-11-18 17:38:04', 'submission_id': '1gttq83'}
{'comment': 'I saw the ad and they cut Kamala Harris off. I think she says the same care.', 'created': '2024-11-18 12:59:01', 'submission_id': '1gttq83'}
{'comment': '> Just your hunch and general sense?\n\nIt\'s not a hunch. It\'s a product of having been involved with, and studying, politics and voting behavior for a lot of years. The hubbub about "Biden\'s age" was the first indicator to me that there was a lot of worry from voters about Harris as president. After Biden dropped out, "the economy" became the euphemism for "I ain\'t voting for the black lady". You\'ll also have people who claim to be undecided talk about doing their research. It\'s typical of people who simply don\'t want to say out loud they won\'t vote for the candidate because they have an idea they\'re going to be judged in a negative way. \n\nThere\'s something called "The Bradley Effect" that has been known to political scientists and campaign operatives for years (https://ballotpedia.org/Bradley_effect), so the idea of voters no being forthright with pollsters isn\'t new. \n\nHad her loss been more narrow and there had no been no protestations about Biden\'s age, I could buy the economy thing, even though, anecdotally and by objective measure, this economy is a good one. At some point people may be honest about the reasons for their choice, but that may be a long time coming.', 'created': '2024-11-18 20:25:49', 'submission_id': '1gttq83'}
{'comment': 'thank you for asking for our opinions 😊\n\nthe republican party has diverted so much interest away from actual issues over the years, its insane.', 'created': '2024-11-18 17:50:31', 'submission_id': '1gttq83'}
{'comment': 'I watched the ad and Kamala Harris says the word surgeries. Her statement is awkwardly cut, making me think she mentioned other treatments as well but they want to focus on the surgery. I know the law says all prisoners are entitled to medical treatment so she is clarifying what it includes. This was true under Trump.', 'created': '2024-11-18 16:45:44', 'submission_id': '1gttq83'}
{'comment': "Why does how close the election was have an impact on your view over whether the economy was actually one of the real reasons for peoples' vote?", 'created': '2024-11-18 20:47:46', 'submission_id': '1gttq83'}
{'comment': '((💓))', 'created': '2024-11-18 18:35:16', 'submission_id': '1gttq83'}
{'comment': "I appreciate the questions, but you're going to have to buy my book. \n\nThanks and good luck.", 'created': '2024-11-18 22:11:40', 'submission_id': '1gttq83'}
{'comment': "Fascists support fascism. The criminality doesn't matter.", 'created': '2024-11-18 02:30:25', 'submission_id': '1gtt2gd'}
{'comment': 'They give him a pass on all that and more because of his open racism and misogyny. He promises a return to a time when women and people of color knew their places and white men controlled everything. That is what MAGA means.', 'created': '2024-11-18 02:50:30', 'submission_id': '1gtt2gd'}
{'comment': '\n\nlargest gang in america supporting a criminal.', 'created': '2024-11-18 14:57:12', 'submission_id': '1gtt2gd'}
{'comment': 'Got that right.\n\nhttps://preview.redd.it/bszcg3ckck1e1.jpeg?width=3606&format=pjpg&auto=webp&s=5d1144aac1d48c0fc51795fb42a5592ea63850c7', 'created': '2024-11-18 02:31:43', 'submission_id': '1gtt2gd'}
{'comment': 'Exactly. 🎯\n\nhttps://preview.redd.it/wri7imfggk1e1.jpeg?width=3723&format=pjpg&auto=webp&s=fc12a9e59e748c551423510f95be528c2f7c1cd9', 'created': '2024-11-18 02:53:31', 'submission_id': '1gtt2gd'}
{'comment': 'Pillow guy will be next', 'created': '2024-11-18 02:19:48', 'submission_id': '1gtsbqj'}
{'comment': 'It’s 1/2 1984 and 1/2 idiocracy', 'created': '2024-11-18 02:29:00', 'submission_id': '1gtsbqj'}
{'comment': 'Matt Gatez is the creepiest of the creepy. Even my extreme MAGA friends think this guy should be dumped out of the party.', 'created': '2024-11-18 02:15:25', 'submission_id': '1gtsbqj'}
{'comment': 'Notice no Departement of Education. \nBecause it will be gone.', 'created': '2024-11-18 02:48:44', 'submission_id': '1gtsbqj'}
{'comment': 'What a diverse crowd', 'created': '2024-11-18 02:43:19', 'submission_id': '1gtsbqj'}
{'comment': 'OFC many are an unqualified piece of shit who will destabilize the department. And ofc many are Russian assets.', 'created': '2024-11-18 01:55:52', 'submission_id': '1gtsbqj'}
{'comment': 'Kristi Noem, murders dogs- can people be that far behind?', 'created': '2024-11-18 02:11:54', 'submission_id': '1gtsbqj'}
{'comment': 'unironically Marco Rubio was surprisingly a good choice, when compared to the others', 'created': '2024-11-18 02:00:51', 'submission_id': '1gtsbqj'}
{'comment': "It's a hillbilly hootenanny", 'created': '2024-11-18 02:20:43', 'submission_id': '1gtsbqj'}
{'comment': 'OMG!! The Dictator Dump and his minion Puppets \n\nThis line up of people are Self absorbed unhinged mentally Twisted individuals to be the decision makers for the people of the United States .🤦🏻\u200d♀️', 'created': '2024-11-18 02:33:45', 'submission_id': '1gtsbqj'}
{'comment': 'I am aghast at the interior pick. Of course it’s a real estate guy. They are going to gut America’s preserved lands so that the Trumps and real estate folks can rape the land.', 'created': '2024-11-18 03:25:12', 'submission_id': '1gtsbqj'}
{'comment': 'This is what America voted for. The dumbing of America is insane.', 'created': '2024-11-18 03:12:38', 'submission_id': '1gtsbqj'}
{'comment': 'Did someone suggest Casey Anthony for child and family services? \n\nPatty & Selma from ‘The Simpsons’ for press secretary', 'created': '2024-11-18 03:52:47', 'submission_id': '1gtsbqj'}
{'comment': "Nah. As proven by a recent Trump rally, he won't pay for the bus to take them back out.", 'created': '2024-11-18 04:15:37', 'submission_id': '1gtsbqj'}
{'comment': 'I’m waiting for them to add Diddy to their roster.', 'created': '2024-11-18 04:25:41', 'submission_id': '1gtsbqj'}
{'comment': 'Scum of the earth... all of them.', 'created': '2024-11-18 04:33:42', 'submission_id': '1gtsbqj'}
{'comment': 'Looks about white.', 'created': '2024-11-18 02:49:53', 'submission_id': '1gtsbqj'}
{'comment': 'So far every one a foreign asset. The US is so screwed and they did it to themselves voluntarily. Lol.', 'created': '2024-11-18 01:50:40', 'submission_id': '1gtsbqj'}
{'comment': "Ye gods above! It's...a freak show. They even look like it!", 'created': '2024-11-18 02:35:59', 'submission_id': '1gtsbqj'}
{'comment': 'I’m surprised he didn’t pick Collins to run the SEC since Doug knows all about insider trading.', 'created': '2024-11-18 02:42:44', 'submission_id': '1gtsbqj'}
{'comment': 'Surprised Kari lake and Taylor Greene are not on this list ….i wonder what cabinet positions they will fill ….', 'created': '2024-11-18 02:45:32', 'submission_id': '1gtsbqj'}
{'comment': 'Since we’re talking about not just Republicans but MAGA fascists, I wonder which pair of those will have the first affair?', 'created': '2024-11-18 02:57:13', 'submission_id': '1gtsbqj'}
{'comment': 'Poor Lindsey left out of the clown car', 'created': '2024-11-18 03:56:34', 'submission_id': '1gtsbqj'}
{'comment': 'You really cannot get any whiter than that.', 'created': '2024-11-18 16:31:50', 'submission_id': '1gtsbqj'}
{'comment': 'Now we see why Trump has eliminated the FBI background checks. None of them would pass. Including Trump.', 'created': '2024-11-18 17:09:06', 'submission_id': '1gtsbqj'}
{'comment': 'Well sadly Americans get what they Deserve', 'created': '2024-11-18 03:42:54', 'submission_id': '1gtsbqj'}
{'comment': 'But tell me again how Kamala was unqualified...', 'created': '2024-11-18 04:18:55', 'submission_id': '1gtsbqj'}
{'comment': "This is nightmare fuel but it's real 😱", 'created': '2024-11-18 02:53:06', 'submission_id': '1gtsbqj'}
{'comment': 'Energy nominee is a fracking company ceo who denies climate change. Wtaf', 'created': '2024-11-18 04:59:39', 'submission_id': '1gtsbqj'}
{'comment': 'He’s not sending his best…..', 'created': '2024-11-18 06:06:11', 'submission_id': '1gtsbqj'}
{'comment': '🤮🤮🤮🤮🤮', 'created': '2024-11-18 06:16:11', 'submission_id': '1gtsbqj'}
{'comment': 'Goddamn.. JV rejects, everyone of them.', 'created': '2024-11-18 06:31:13', 'submission_id': '1gtsbqj'}
{'comment': "I truly feel for the varuous country's UN delegations having to sit there and getting lectured by that mug on Stefanik........", 'created': '2024-11-18 10:33:47', 'submission_id': '1gtsbqj'}
{'comment': 'https://preview.redd.it/iba8froegn1e1.jpeg?width=304&format=pjpg&auto=webp&s=a90e100d5333770e194bd42452ba7a55471f4b57', 'created': '2024-11-18 12:58:38', 'submission_id': '1gtsbqj'}
{'comment': 'Alex Jones - WH Comms Director', 'created': '2024-11-18 16:18:40', 'submission_id': '1gtsbqj'}
{'comment': "Forget this shit-show for a minute. Is anyone else in awe of the stunning success of Russia's IO campaign? The Russians' infiltration of the Right exceeds their 1940s era infiltration of the Left by a country mile.", 'created': '2024-11-18 18:14:36', 'submission_id': '1gtsbqj'}
{'comment': 'This would be funny, if it wasn’t so bizarre.', 'created': '2024-11-18 22:01:49', 'submission_id': '1gtsbqj'}
{'comment': 'Goodbye to us in the U.N. She’s a nut job.', 'created': '2024-11-18 22:30:59', 'submission_id': '1gtsbqj'}
{'comment': 'Oh good, John Ratfuck', 'created': '2024-11-18 05:23:39', 'submission_id': '1gtsbqj'}
{'comment': 'Doug Collins\n\n', 'created': '2024-11-18 06:11:07', 'submission_id': '1gtsbqj'}
{'comment': 'What a mess.', 'created': '2024-11-18 13:31:20', 'submission_id': '1gtsbqj'}
{'comment': "I'm surprised I don't find Liz Cheney in a prominent position", 'created': '2024-11-18 14:23:29', 'submission_id': '1gtsbqj'}
{'comment': 'You know what pisses me off, Trump can just say nvm on a lot of these ppl and he can gain respect bc the bar is so fucking low. But he won’t bc his ego won’t let him', 'created': '2024-11-18 15:51:29', 'submission_id': '1gtsbqj'}
{'comment': '', 'created': '2024-11-18 16:01:34', 'submission_id': '1gtsbqj'}
{'comment': 'Rubio will be known as Secretary of State Little Marco.', 'created': '2024-11-18 16:19:31', 'submission_id': '1gtsbqj'}
{'comment': 'Waiting on MTG to be named head of National Conspiracy Theories.', 'created': '2024-11-18 16:45:05', 'submission_id': '1gtsbqj'}
{'comment': 'MTG to lead the SBA and Alex Jones to lead the CIA and you’re all set', 'created': '2024-11-18 17:12:18', 'submission_id': '1gtsbqj'}
{'comment': "I'd prefer inside a hearse but to each their own.", 'created': '2024-11-18 22:57:36', 'submission_id': '1gtsbqj'}
{'comment': 'Laura Loomer will end up with some role in this dumpster fire somewhere, even if one has to be made up out of nowhere, "knob polisher" probably.', 'created': '2024-11-18 04:17:14', 'submission_id': '1gtsbqj'}
{'comment': 'There’s hopefully gonna be a lot of pushback on some of these. Infighting is likely anytime you have one party running everything and there’s gonna be some level of absurdity where not all republicans are gonna be okay with all this. The Trump cult isn’t foolproof and there’s already been republicans in congress signaling some of these nominees don’t have a chance.\xa0\n\nMy other theory is that Trump is pulling some “art of the deal” bullshit here…throwing out extreme nominees to negotiate down to loyalists that are at least passable by the senate.\xa0', 'created': '2024-11-18 18:02:46', 'submission_id': '1gtsbqj'}
{'comment': 'More like people from Idiocracy trying to write 1984.\n\n', 'created': '2024-11-18 02:43:47', 'submission_id': '1gtsbqj'}
{'comment': 'All talk. No one stands up to them within the party.', 'created': '2024-11-18 02:52:55', 'submission_id': '1gtsbqj'}
{'comment': 'Wait till he announces Roseanne Barr...', 'created': '2024-11-18 04:58:00', 'submission_id': '1gtsbqj'}
{'comment': 'Gabbard is already playing footsies with Putin as it is', 'created': '2024-11-18 04:18:15', 'submission_id': '1gtsbqj'}
{'comment': 'Eh, Rubio, Zedlin, Burgum, and Wright seem like sane choices. \n\nThe rest are batshit crazy.', 'created': '2024-11-18 06:01:44', 'submission_id': '1gtsbqj'}
{'comment': 'It doesn’t matter to them, why else would they be cool with rapists and pedophiles? You can’t hold the GOP to the same standards as the democrats because the GOP has no standards.', 'created': '2024-11-18 02:45:32', 'submission_id': '1gtsbqj'}
{'comment': 'Does she eat them tho?', 'created': '2024-11-18 03:50:04', 'submission_id': '1gtsbqj'}
{'comment': 'And goats.', 'created': '2024-11-18 03:22:01', 'submission_id': '1gtsbqj'}
{'comment': 'Rubio is considered a joke among international diplomats', 'created': '2024-11-18 02:37:45', 'submission_id': '1gtsbqj'}
{'comment': 'A sane choice.', 'created': '2024-11-18 02:11:43', 'submission_id': '1gtsbqj'}
{'comment': 'But literally only in comparison. He’s terrible choice for State, but not nearly as bad at Gabbard for DNI. \n\nLiterally the only person on here that even comes close to “good” is Doug Burgum for Interior.', 'created': '2024-11-18 16:20:27', 'submission_id': '1gtsbqj'}
{'comment': 'Hoedown!!!', 'created': '2024-11-18 05:45:04', 'submission_id': '1gtsbqj'}
{'comment': "That is why I am actually kind of happy it was such a blowout for Democrats. No guardrails, no power, mean that Republicans own 100% of what happens next.\n\nFar too many people refused to listen that the pan was hot, and they shouldn't grab it. As much pain as the unrestricted Trump administration will produce, it will hopefully burn enough fingers to get at least some people to start questioning things. There are going to be far too many faceless people and leopards in need of Ozempic by midterms, if Trump goes full bore on tariffs and deportation.\n\nI truly hate that it had to come to this, but the people who voted for this are the ones least prepared for all the fallout ahead.", 'created': '2024-11-18 11:30:42', 'submission_id': '1gtsbqj'}
{'comment': 'The hell you say - we didn’t all vote for this', 'created': '2024-11-18 03:54:04', 'submission_id': '1gtsbqj'}
{'comment': "Nah she will be trump's personal secretary under the desk", 'created': '2024-11-18 10:05:44', 'submission_id': '1gtsbqj'}
{'comment': 'Or Kid Rock', 'created': '2024-11-18 15:37:46', 'submission_id': '1gtsbqj'}
{'comment': "Those one are definitely going to be confirmed. Gaetz doesn't have enough friends to get through. My guess is that some of the others get through just so it doesn't look like Republicans are obstructing Trump. I would bet Stefanik gets through, to give Republicans the room to vote down some of the others. That is, of course, assuming they don't cave and give Trump his slate as a recess appointment.", 'created': '2024-11-18 11:23:02', 'submission_id': '1gtsbqj'}
{'comment': 'Yep', 'created': '2024-11-18 03:13:19', 'submission_id': '1gtsbqj'}
{'comment': "That's totally unfair... They have plenty of double standards.", 'created': '2024-11-18 05:43:08', 'submission_id': '1gtsbqj'}
{'comment': 'Why?', 'created': '2024-11-18 02:38:38', 'submission_id': '1gtsbqj'}
{'comment': "Another pandemic, another guy of folks dying to preventable problems. Grab a bunch of sunlight boys it's gonna be rough.", 'created': '2024-11-18 01:38:47', 'submission_id': '1gtrjlt'}
{'comment': 'One of my worst fears (of many under the incoming regime) was another pandemic. Neither of the looming viruses are guaranteed to become pandemic, but the fact that they could is a major concern.\xa0\n\n\nNo mass production of vaccines, some areas literally outlawing mask wearing, and so much more.\xa0', 'created': '2024-11-18 02:13:24', 'submission_id': '1gtrjlt'}
{'comment': 'Well thank goodness we have RFK said nobody ever!', 'created': '2024-11-18 02:16:31', 'submission_id': '1gtrjlt'}
{'comment': 'Just in time for an anti-vax fed and a rerun of Trump’s “By summer it’ll just vanish…”', 'created': '2024-11-18 03:24:37', 'submission_id': '1gtrjlt'}
{'comment': 'Hmm, can the next pandemic please wait till we can rebuild the basic crisis response that the republicans are about to destroy?', 'created': '2024-11-18 01:58:30', 'submission_id': '1gtrjlt'}
{'comment': 'Wonder if we need to inject ourselves with bleach or is just going to magically disappear.', 'created': '2024-11-18 02:22:52', 'submission_id': '1gtrjlt'}
{'comment': 'Oh good, just as the antivaxxer with the dead brain worms is about to take over the government health department', 'created': '2024-11-18 04:35:27', 'submission_id': '1gtrjlt'}
{'comment': '“A simple counterfactual analysis suggests that Trump would likely have won re-election (in 2020) if COVID-19 cases had been 5 percent lower. We also find some evidence that COVID-19 incidence had a positive effect on voters’ mobilization, helping Biden win the presidency.”\n\nUnfortunately for those affected with the possibility of bird flu, aggressive mpox, the certain results of anti-vax diss info may clear the rest out\n\nhttps://pmc.ncbi.nlm.nih.gov/articles/PMC7809554/', 'created': '2024-11-18 01:55:28', 'submission_id': '1gtrjlt'}
{'comment': 'It’s not an airborne disease. \n\nAnd it causes lesions on the skin. It’s not easy for a disease like this to spread. People can easily avoid the infected. One person with the sniffles could give a whole plane COVID…', 'created': '2024-11-18 04:45:50', 'submission_id': '1gtrjlt'}
{'comment': '', 'created': '2024-11-18 05:08:47', 'submission_id': '1gtrjlt'}
{'comment': 'Good thing about pox and its variants is the vaccines are really strong, **smallpox** death toll drops from 25-50% on unvaccined to 0,01% for vaccinated people and you can have chickenpox only once on your life which means the antibodies last forever. \nIf Monkey pox ends up being a serious issue with an antivaccines lunatic in goverment the problem with Trumpism and MAGA could fix itself.', 'created': '2024-11-18 11:01:37', 'submission_id': '1gtrjlt'}
{'comment': 'Republicans gonna let this play itself out.', 'created': '2024-11-18 03:05:42', 'submission_id': '1gtrjlt'}
{'comment': 'It unfortunate that the incoming head of HHS is anti-vax.', 'created': '2024-11-18 08:18:17', 'submission_id': '1gtrjlt'}
{'comment': 'Just call it "Monkeypox". Jesus, the fact people were offended by that is just American hypersensitivity to its toxic degree.', 'created': '2024-11-18 01:48:34', 'submission_id': '1gtrjlt'}
{'comment': '2025 is looking to be a bad year, is the angry orange gonna use bleach on everyone or just ignore it exists?', 'created': '2024-11-18 02:03:21', 'submission_id': '1gtrjlt'}
{'comment': 'Thank Christ we have the stupidest white me. I. The country about to head up the department of people eat good, with Java the hut in charge', 'created': '2024-11-18 04:00:35', 'submission_id': '1gtrjlt'}
{'comment': "Can't just inject everyone with bleach .", 'created': '2024-11-18 02:29:12', 'submission_id': '1gtrjlt'}
{'comment': "so we're not allowed to call it monkey pox anymore?", 'created': '2024-11-18 06:03:55', 'submission_id': '1gtrjlt'}
{'comment': 'Will he make up little racist names like he did for Covid?', 'created': '2024-11-18 06:20:42', 'submission_id': '1gtrjlt'}
{'comment': 'Just in time for the clowns that have no medical license to decide everything on the nations health lol', 'created': '2024-11-18 09:11:11', 'submission_id': '1gtrjlt'}
{'comment': 'I\'m gonna say something people are not going to like to hear. \xa0Everyone who voted for Trump are going to see this picture and think "oh it won\'t affect me"\n\n\n..and even a good amount of people who didn\'t vote at all will see this picture and think "ah but it won\'t effect me"', 'created': '2024-11-18 14:04:39', 'submission_id': '1gtrjlt'}
{'comment': 'I’m more partial to Hanson’s other lesser known songs. Mmpox is overplayed.', 'created': '2024-11-18 05:34:57', 'submission_id': '1gtrjlt'}
{'comment': "Don't worry, Bob will discover he has a flock of chickens in the back that hate poxes. It was discovered through his divorce settlements so I know he knows.", 'created': '2024-11-18 01:05:25', 'submission_id': '1gtrjlt'}
{'comment': 'Get ready for all Trump supporters to claim it was planned by the deep state to screw Trump.', 'created': '2024-11-18 02:07:05', 'submission_id': '1gtrjlt'}
{'comment': 'My saving grace is I have no kids and no reason to be around kids.\xa0\n\n\nBut who can afford another pandemic? Who can afford shipping groceries again all the time?', 'created': '2024-11-18 14:05:42', 'submission_id': '1gtrjlt'}
{'comment': 'Best to just speedrun it.', 'created': '2024-11-18 02:30:50', 'submission_id': '1gtrjlt'}
{'comment': 'We should know damn well by now how these things can mutate. There is no reason to be cavalier about any aggressive communicable disease.', 'created': '2024-11-18 15:24:10', 'submission_id': '1gtrjlt'}
{'comment': "Not 'yet'", 'created': '2024-11-18 17:53:09', 'submission_id': '1gtrjlt'}
{'comment': 'I see your point but planes are actually really safe because the air is recycled every couple minutes. Planes had very low transmission rates from what I remember', 'created': '2024-11-18 10:00:01', 'submission_id': '1gtrjlt'}
{'comment': 'The new name sounds like a Hanson song.', 'created': '2024-11-18 02:56:44', 'submission_id': '1gtrjlt'}
{'comment': 'Surely everywhere will be saying "Mpox, also known as monkeypox," so you\'re kind of complaining about nothing. But also if calling it Mpox helps increase the likelihood of anyone getting vaccinated, then it\'s the right move.', 'created': '2024-11-18 15:22:44', 'submission_id': '1gtrjlt'}
{'comment': 'If any virus with some real teeth to it swept through, a lot of trump\'s fan club would be wiped out anyway, considering their stellar history of ignoring all health precautions, being pretty careless about their own health as well as the health of their children, and whining about..."MUh FREeDOm!"', 'created': '2024-11-18 04:27:13', 'submission_id': '1gtrjlt'}
{'comment': 'And for this reason he deserves a third term….', 'created': '2024-11-18 03:29:28', 'submission_id': '1gtrjlt'}
{'comment': 'I lol’ed', 'created': '2024-11-18 04:05:29', 'submission_id': '1gtrjlt'}
{'comment': "I don't think the name is the problem. Americans are largely a nation of flinchy impulsive children who generally dislike things they don't understand because it makes them feel a bit dumb.\n\nWhat's dumber than avoiding a vaccine because you don't like the name? And what's more American?\n\n*Source: American.*", 'created': '2024-11-18 18:50:07', 'submission_id': '1gtrjlt'}
{'comment': 'https://preview.redd.it/gu78gdihal1e1.jpeg?width=640&format=pjpg&auto=webp&s=b7c477b04f4367d76db0592c2a92d84bf298011a\n\nI saw this graph yesterday showing the COVID spikes by county, and it really put into perspective how hard republicans were hit after the first wave—despite living jn more rural counties—because of the conspiracy theories and disinformation they bought into.', 'created': '2024-11-18 05:42:58', 'submission_id': '1gtrjlt'}
{'comment': '😄 Same', 'created': '2024-11-18 10:36:40', 'submission_id': '1gtrjlt'}
{'comment': 'That’s a mandate. Insane how anyone can try to spin 2024 as one.', 'created': '2024-11-18 00:44:07', 'submission_id': '1gtqc5i'}
{'comment': 'And MN came within like 3000 votes. Similar margin to Goldwater in AZ 1964.', 'created': '2024-11-18 00:13:47', 'submission_id': '1gtqc5i'}
{'comment': 'Which goes to show you how a pretty face can get you to cut your own throat.', 'created': '2024-11-18 01:50:34', 'submission_id': '1gtqc5i'}
{'comment': 'Ah, my first political heartbreak. I remember it well, I was so naive then.', 'created': '2024-11-18 05:13:33', 'submission_id': '1gtqc5i'}
{'comment': "Yah, and that was the decade that essentially lead to the current crisis in a very traceable way, beginning with Roe, followed by the rise of Wall Street (that's my lay observation of social and economic milestones). It's been a long time coming. Monoculture, and therefore national unity, is dead. You can thank dedicated conservative think tanks and foreign espionage, which was turbocharged with the invention of the social internet in the late 90's/early 2000's", 'created': '2024-11-18 04:03:06', 'submission_id': '1gtqc5i'}
{'comment': 'The first woman to run for President was Victoria Woodhull, but the first to run for a *major* party was Margaret Chase-Smith!', 'created': '2024-11-18 03:49:49', 'submission_id': '1gtqc5i'}
{'comment': 'Was that the time they figured out Mondale had done electro shock therapy?', 'created': '2024-11-18 03:11:16', 'submission_id': '1gtqc5i'}
{'comment': 'Cult lore', 'created': '2024-11-18 16:28:09', 'submission_id': '1gtqc5i'}
{'comment': 'I love how in hindsight, you can see the universe has been rapid firing down memes on us for centuries.', 'created': '2024-11-18 00:59:32', 'submission_id': '1gtqc5i'}
{'comment': 'Now, this is what you call a landslide!', 'created': '2024-11-18 19:03:47', 'submission_id': '1gtqc5i'}
{'comment': 'A mandate...and the Congressional Democrats still kept his hands tied!', 'created': '2024-11-18 01:20:34', 'submission_id': '1gtqc5i'}
{'comment': 'Yeah crazy how 49 states went red ….this was a bloodbath for sure', 'created': '2024-11-18 00:15:05', 'submission_id': '1gtqc5i'}
{'comment': 'I can’t imagine seeing that on an election night, it’s literally unfathomable', 'created': '2024-11-18 06:03:44', 'submission_id': '1gtqc5i'}
{'comment': 'Wasn’t that McGovern’s running mate?', 'created': '2024-11-18 03:47:49', 'submission_id': '1gtqc5i'}
{'comment': 'That was Eagleton who was McGoverns running mate in 72 he dropped out.', 'created': '2024-11-18 03:48:57', 'submission_id': '1gtqc5i'}
{'comment': 'because the house was still Democrat', 'created': '2024-11-18 02:03:40', 'submission_id': '1gtqc5i'}
{'comment': 'The 84 popular vote (while still a landslide) was actually closer than Johnson’s victory in 64.', 'created': '2024-11-18 00:30:35', 'submission_id': '1gtqc5i'}
{'comment': '> Yeah crazy how 49 states went red\n\nWhen you say in a debate "I\'m going to raise your taxes" this result is kind of predictable.', 'created': '2024-11-18 02:36:42', 'submission_id': '1gtqc5i'}
{'comment': 'Fun fact, the party colors in media graphics were not settled as red = conservative/GOP and blue = liberal/Dems back then. Regan\'s win was said to be as blue as a swimming pool. Edit to add this was from the 1980 election results watch. \n\n"But something funny was happening on the 24-ft. by 14-ft. plastic and Plexiglas map at NBC, behind which a team of electricians waited to flick switches that would illuminate 7,324 light bulbs—red ones for Carter, blue for Reagan, white for Anderson. States were turning peacock blue faster than John Chancellor and his team could announce them. Looking over his shoulder at the epidemic of blue, David Brinkley observed: “It’s beginning to look like a suburban swimming pool.” Other NBC staffers took to calling it “Lake Reagan.”"\n\n[https://time.com/archive/6883589/press-like-a-suburban-swimming-pool/](https://time.com/archive/6883589/press-like-a-suburban-swimming-pool/)', 'created': '2024-11-18 05:21:40', 'submission_id': '1gtqc5i'}
{'comment': 'Oh yeah, you’re right.', 'created': '2024-11-18 03:48:58', 'submission_id': '1gtqc5i'}
{'comment': 'That’s the other red map I was thinking of, only MA and DC went to McGovern.', 'created': '2024-11-18 15:19:22', 'submission_id': '1gtqc5i'}
{'comment': "And it stayed blue because Reagan got greedy and campaigned in Minnesota when he should've gone to stump for vulnerable congressional Repubs.", 'created': '2024-11-18 03:48:02', 'submission_id': '1gtqc5i'}
{'comment': 'Trump essentially said the same thing with tariffs and apparently people didn’t care', 'created': '2024-11-18 03:10:27', 'submission_id': '1gtqc5i'}
{'comment': '> Trump essentially said the same thing with tariffs\n\nAs someone else wrote, most of his voters have no idea what a tariff is and they simply bought in to what Trump says they are: punishment for foreign governments.', 'created': '2024-11-18 14:07:15', 'submission_id': '1gtqc5i'}
{'comment': 'Trump was running against a black woman and Mondale a white man.', 'created': '2024-11-18 03:50:20', 'submission_id': '1gtqc5i'}
{'comment': 'General population aren’t familiar with the concept of tariffs outside of a basic idea', 'created': '2024-11-18 12:45:49', 'submission_id': '1gtqc5i'}
{'comment': "This is why we really needed to beat a dead horse regarding the topic of tariffs. I know a lot of people weren't willing to listen to any evidence that Trump's policies would be harmful, but people were underexposed to messaging framing Trump's tariffs as a max tax hike on everything.", 'created': '2024-11-18 19:12:15', 'submission_id': '1gtqc5i'}
{'comment': "> This is why we really needed to beat a dead horse regarding the topic of tariffs. \n\nThis is something Trump does quite a bit: he presents something that people have a vague knowledge about and fills in the blanks for them. The average person had probably never heard of a tariff, or might have sort of remembered hearing about them in school once upon a time. Most of Trump's bad ideas are from history, and lots of people have no idea how they were catastrophes back then, and will be as much now.", 'created': '2024-11-18 20:36:27', 'submission_id': '1gtqc5i'}
{'comment': 'Not much to say other than "Gerrymandering sure is effective!"', 'created': '2024-11-17 22:32:23', 'submission_id': '1gtnomz'}
{'comment': 'I’m disappointed in Alaska. Mary Peltola is an outstanding human being.', 'created': '2024-11-17 23:18:09', 'submission_id': '1gtnomz'}
{'comment': 'is that a smaller margin than they have in the current Congress? it will be somewhat helpful for throwing some sand in the gears, I’d assume. It’s kind of crazy when you think about it that in this enormous country we’ve been roughly 50/50 for so long.', 'created': '2024-11-17 22:34:15', 'submission_id': '1gtnomz'}
{'comment': 'I still firmly believe Mary Peltola can pull off the win in Alaska. And Iowa’s 1st is so ridiculously close for a state that red.', 'created': '2024-11-17 23:08:24', 'submission_id': '1gtnomz'}
{'comment': 'Harris and Walz helped avoid a catastrophic result, but this still stings hard.', 'created': '2024-11-18 00:29:57', 'submission_id': '1gtnomz'}
{'comment': 'We really tried to flip the PA-10 seat held by Scott Perry. He only won by ~5,000 votes with about 400,000 votes cast in the district altogether.', 'created': '2024-11-17 22:46:32', 'submission_id': '1gtnomz'}
{'comment': 'The narrower the better', 'created': '2024-11-17 22:52:27', 'submission_id': '1gtnomz'}
{'comment': '2026', 'created': '2024-11-17 22:48:06', 'submission_id': '1gtnomz'}
{'comment': "I can't believe how dumb our fellow countrymen vote.", 'created': '2024-11-18 00:35:13', 'submission_id': '1gtnomz'}
{'comment': 'It will be fun to see the Repubs try to blame the Dems for all the upcoming problems.', 'created': '2024-11-18 00:42:41', 'submission_id': '1gtnomz'}
{'comment': 'The fact of the matter that millions sat on their asses while the MAGA party stayed true is embarrassing. Apathy will only make your life worse. Show up every time, including more so in the mid terms.', 'created': '2024-11-17 23:55:01', 'submission_id': '1gtnomz'}
{'comment': 'Hakeem Jeffries may become the accidental speaker', 'created': '2024-11-18 00:09:03', 'submission_id': '1gtnomz'}
{'comment': 'Trump had 4 years.\n\nHarria had 4 monrhs.\n\nTrump has an ENORMOUS, billionaire fueled propaganda machine that has been working nonstop since at least 2015. No similar instrumentality exists in the Democratic machine. \n\nHe used fascist methodology to hit again and again on low information voters topics that would motivate them.\n\nOf course, many of these things were outright lies but that is just Trump and his mini mes stock in trade.', 'created': '2024-11-18 01:59:35', 'submission_id': '1gtnomz'}
{'comment': 'Maine was called for the democrat incumbent Jared Golden a few days ago here in Maine. We have ranked choice voting here and it was so close they had to do the ranked vote and he still came out the winner.', 'created': '2024-11-18 01:36:17', 'submission_id': '1gtnomz'}
{'comment': 'The party has to face reality. We need to see what we lost so much and make changes.', 'created': '2024-11-17 23:25:50', 'submission_id': '1gtnomz'}
{'comment': 'I’m disappointed as the democrats felt going into the election that at least they would control the house. I’m glad it’s close which should make things more difficult for the GOP', 'created': '2024-11-17 23:51:37', 'submission_id': '1gtnomz'}
{'comment': 'There is no god.', 'created': '2024-11-17 23:00:07', 'submission_id': '1gtnomz'}
{'comment': 'California 45, dems are ahead by 36 votes. Never let anyone say a vote doesn’t matter!', 'created': '2024-11-18 01:19:10', 'submission_id': '1gtnomz'}
{'comment': 'My only thought is that Dems need to gerrymander the hell out of their states.', 'created': '2024-11-18 00:16:51', 'submission_id': '1gtnomz'}
{'comment': "My district flipped from a republican to a democrat, but we need to give it 110% in 2026 to at least take back the house. Usually the opposition party takes back the house in the midterms when one party has a trifecta, so there's a silver lining at least", 'created': '2024-11-18 00:47:09', 'submission_id': '1gtnomz'}
{'comment': 'My dream of uncapping the House slips further and further away', 'created': '2024-11-17 23:57:36', 'submission_id': '1gtnomz'}
{'comment': 'MTG claimed we cheated on one house seat in California. Yeah if we were “cheating” we wouldn’t steal just one house seat🙄', 'created': '2024-11-18 01:08:12', 'submission_id': '1gtnomz'}
{'comment': "2024 will see the victory party enter with the smallest margin in modern times, 220 to 215 ; being this was MAGAs moment with record high inflation and interests at their backs, this doesn't seem like heavy losses. The senate is 53 to 47 also a small margin of victory especially if the filibuster can hold. \n\nThis will not stop Trump and MAGA from governing like 80% of the voters support them and they control 60% of congress, I dislike the electoral college despite Trump winning it with the narrowest of margins in 24 years. Also the Senate make up is ridiculous one sided, Wyoming, Dakotas Nebraska, Montana, Idaho having 2 senators piece with so little population, The district of Colombia's GDP is greater then most of those states and their population, Porto Rico as well, Guam, Samoa and Pacific territory should be states, this would add 6 Democratic senators into the field to even up the odds.", 'created': '2024-11-18 01:39:28', 'submission_id': '1gtnomz'}
{'comment': "Could've been much worse. This is a razor-thin majority. The GOP had like 241 in 2016, and in 2024 they'd barely break 220. Not the optimal outcome but still a decent one.", 'created': '2024-11-18 01:55:01', 'submission_id': '1gtnomz'}
{'comment': 'New Mexico held strong!! 💪', 'created': '2024-11-18 03:33:30', 'submission_id': '1gtnomz'}
{'comment': 'Looks like it’s going to be complete gridlock in both chambers for at least half of Trump’s second term.', 'created': '2024-11-18 00:50:41', 'submission_id': '1gtnomz'}
{'comment': 'Very proud to live in New Mexico right now.', 'created': '2024-11-18 01:42:20', 'submission_id': '1gtnomz'}
{'comment': 'We need Jon mother fucking Stewart', 'created': '2024-11-18 02:19:58', 'submission_id': '1gtnomz'}
{'comment': 'Jared Golden won the District two with Rank choice voting. Actually increased his lead. But, Austin Theriault lawyers want a recount. Won’t be official till mid December. Lot of Local recounts has to be done for the state house first. Time limits.', 'created': '2024-11-18 00:28:10', 'submission_id': '1gtnomz'}
{'comment': 'I’m sad Mary Peltola is gonna lose her seat. Like ppl really voted for a nepotism candidate over a native of the Alaskan heritage.', 'created': '2024-11-18 01:34:02', 'submission_id': '1gtnomz'}
{'comment': '', 'created': '2024-11-18 01:34:37', 'submission_id': '1gtnomz'}
{'comment': 'What are we going to do about gerrymandering', 'created': '2024-11-18 01:41:52', 'submission_id': '1gtnomz'}
{'comment': 'Mandate? Bwaaaaa!! Fuck you cult members!! Non-cult members need to start fighting fire with fire.', 'created': '2024-11-18 01:53:06', 'submission_id': '1gtnomz'}
{'comment': 'I voted for Whitesides. Glad to help get a seat. I’m in CA-27.', 'created': '2024-11-18 02:08:56', 'submission_id': '1gtnomz'}
{'comment': 'The GOP will have a razor thin majority so good luck with that.', 'created': '2024-11-18 02:09:40', 'submission_id': '1gtnomz'}
{'comment': 'How on earth is the counting taking so long still.', 'created': '2024-11-18 02:30:21', 'submission_id': '1gtnomz'}
{'comment': 'Time for a recount. Focus on the swing states.', 'created': '2024-11-17 23:43:06', 'submission_id': '1gtnomz'}
{'comment': 'Well, the GOP proved last session that they can’t govern a four seat majority. I don’t think it’ll be that much different this time. The loonies will still rule the conference, and whomever is Speaker will still need Democratic votes to get anything done.', 'created': '2024-11-18 00:14:26', 'submission_id': '1gtnomz'}
{'comment': 'do these counties align with university locations? I gotta look into this', 'created': '2024-11-18 00:23:51', 'submission_id': '1gtnomz'}
{'comment': 'I know about the gerrymandering in 2010 but some of it was undone in 2020 but we are still at 50/50. Of course it wouldn’t be the case if we just expanded the House appropriately to the population.', 'created': '2024-11-18 00:59:11', 'submission_id': '1gtnomz'}
{'comment': 'Tim waltz and Elise Stefanik also will have to resign their seats so they will potentially lose the majority.\n\nEdit to add: I had the wrong Walz, Tim Walz is governor of Minnesota, but Mike Waltz is the nominee for national security advisor and the successor to Ronald ‘McDonald who eats pudding with his fingers’ Desatan as Florida’s 6th congressional representative he was a colonel in the army special forces', 'created': '2024-11-18 01:13:38', 'submission_id': '1gtnomz'}
{'comment': 'Could have had more if they focused on maximizing and energizing black voters in urban centers. The strategy of leaning more right to appeal to suburban white voters failed. White turnout increased, black turnout decreased and you have the current result. I didn’t mention Latinos because they don’t all vote the same but largely seem to lean conservative.', 'created': '2024-11-18 01:23:25', 'submission_id': '1gtnomz'}
{'comment': 'I really don’t think this election was so much Trump/republicans winning as it was democrats losing. If dems want to come back from this they need to really examine all the ways voters rejected them.', 'created': '2024-11-18 02:13:33', 'submission_id': '1gtnomz'}
{'comment': 'We would have 3 additional seats right now if NC didn’t redistrict itself for some reason. \n\nAt least we gained 2 through LA and AL redistricting. NY also allowed for some nice pick me ups.', 'created': '2024-11-18 03:00:39', 'submission_id': '1gtnomz'}
{'comment': 'People watch Fox News and agree with whatever they say.', 'created': '2024-11-18 03:47:04', 'submission_id': '1gtnomz'}
{'comment': 'Muck bang central. Big loss for dems across the board. Next time we should call everyone racist even more and somehow that will help us win.', 'created': '2024-11-18 04:40:21', 'submission_id': '1gtnomz'}
{'comment': "Here in the Oregon 5th Congressional district it was flipped from red to blue after being flipped to red two years ago. In the last redistricting it was redrawn to include part of Deschutes County which is Bend. That county has been turning purple in the last few years. In fact the democrats achieved a supermajority in the State Senate this year by flipping a seat from the Bend area. There's also a house seat from the Wilsonville area still too close to call that could give dems a supermajority in the house as well. The GOP also tanked all the statewide offices as well. Partly because all their candidates were state Senators who were ruled ineligible to run for their seats because they took part in a walkout to keep bills they didn't like from passing. The seat in Bend that was flipped was also held by a Senator who had also been declared ineligible to run. He just happened to be the minority leader.", 'created': '2024-11-18 05:04:18', 'submission_id': '1gtnomz'}
{'comment': 'I love it, now the MAGAts own ALL OF IT', 'created': '2024-11-17 22:53:59', 'submission_id': '1gtnomz'}
{'comment': 'Stefanik is also leaving', 'created': '2024-11-18 01:29:30', 'submission_id': '1gtnomz'}
{'comment': 'Thought: razor thin margins remain razor thin as half of America continues to hate the other half', 'created': '2024-11-18 01:46:28', 'submission_id': '1gtnomz'}
{'comment': 'At least it’s a small majority.', 'created': '2024-11-18 02:05:32', 'submission_id': '1gtnomz'}
{'comment': 'The Republicans won by tiny margins everywhere. Trump beat Harris by 1-3 points all over the place. This lead to the Senate flipping to Republicans, why would anyone think the House would not also go this way?', 'created': '2024-11-18 04:46:10', 'submission_id': '1gtnomz'}
{'comment': 'proclaimed for months they were going to steal it. why isn’t this looked into', 'created': '2024-11-18 08:37:52', 'submission_id': '1gtnomz'}
{'comment': 'Well we are fucked until midterms…', 'created': '2024-11-18 16:26:24', 'submission_id': '1gtnomz'}
{'comment': 'Jeffries not looking like he’ll be the next Obama-level star that I thought he would be', 'created': '2024-11-17 23:05:46', 'submission_id': '1gtnomz'}
{'comment': 'Peltola lost. Now it’s 219', 'created': '2024-11-18 01:07:51', 'submission_id': '1gtnomz'}
{'comment': 'I don’t think democrats focused enough energy on the house this last cycle. It should have been a lighter lift than Senate. There were winnable seats in blue states that didn’t receive any national investment until too late.\n\nThis after the DCCC chair in NY got wiped out the cycle before. The DCCC needs to get it together.', 'created': '2024-11-18 05:08:09', 'submission_id': '1gtnomz'}
{'comment': 'I’m incredibly disappointed with Pennsylvania (a whole bunch of disappointment elsewhere of course), but specifically with the House situation. Losing Wild and Cartwright while gaining 3 of the Biden seats in NY is frustrating (those three seats would have offset the North Carolina seats lost to gerrymandering). Could have kept the house even closer or even flipped it had these two seats not been lost. 😩', 'created': '2024-11-17 23:30:59', 'submission_id': '1gtnomz'}
{'comment': "That's ungovernable.", 'created': '2024-11-18 02:19:31', 'submission_id': '1gtnomz'}
{'comment': 'Genuinely surprised Tranel lost. It seemed like she had a ton of momentum behind her.', 'created': '2024-11-18 09:09:24', 'submission_id': '1gtnomz'}
{'comment': 'People often deliberately vote against who they think will be president in order to check power. So if they thought Harris was going to win they might have been more willing to vote R for house and senate in order to constrain her. But instead we have people corrupted by the Kremlin’s influence running the table.', 'created': '2024-11-18 13:55:53', 'submission_id': '1gtnomz'}
{'comment': "Gaetz's resignation only counts for the current Congress. He won his election for the upcoming Congress and since they haven't been seated, he hasn't resigned from that.", 'created': '2024-11-17 23:26:19', 'submission_id': '1gtnomz'}
{'comment': 'Democrats are still gonna blame voters for the DNC not knowing how to connect with normal people.', 'created': '2024-11-18 00:28:42', 'submission_id': '1gtnomz'}
{'comment': 'Audit the GD machines already.', 'created': '2024-11-18 00:46:50', 'submission_id': '1gtnomz'}
{'comment': 'Gerrymandering will only go away if democrats use it to their advantage. I used to be on the side of Democratic states should show how to responsibly and fairly create congressional districts but fuck that. Democrats need to use every tool at their disposal to gain and keep power. It’s the only way to get republicans to come to the table to stop it', 'created': '2024-11-17 23:33:46', 'submission_id': '1gtnomz'}
{'comment': 'Damn gerrymandering hopefully it will be gotten rid of for good soon.', 'created': '2024-11-17 23:05:35', 'submission_id': '1gtnomz'}
{'comment': 'Seems Democrats need to be more aggressive with gerrymandering. The population majority should generally have the advantage in the House, that’s how it works. Right now GOP has all of the electoral advantages there are.', 'created': '2024-11-18 00:24:12', 'submission_id': '1gtnomz'}
{'comment': 'This is for sure the take away.', 'created': '2024-11-17 23:25:52', 'submission_id': '1gtnomz'}
{'comment': 'Yes let’s blame gerrymandering for this absolute loss for the dems this election. It astounding how fucking delusional people are. Dems got owned hard this election but yeah the maps are the reason we lost.', 'created': '2024-11-18 04:12:26', 'submission_id': '1gtnomz'}
{'comment': 'Actually, this time around… gerrymandering helped us… we lost the popular vote.', 'created': '2024-11-18 14:19:48', 'submission_id': '1gtnomz'}
{'comment': "Alaska doesn't finish counting until the 20th, and then they go through ranked choice because the leader is under 50 percent + 1 vote.", 'created': '2024-11-17 23:22:42', 'submission_id': '1gtnomz'}
{'comment': 'I think they have ranked choice voting so that if no one gets above 50% of the vote, then they go with the second choices from the ballots of those folks who voted for other candidates than the top two starting 11/20.', 'created': '2024-11-17 23:23:34', 'submission_id': '1gtnomz'}
{'comment': 'Mary peltola will be a senator in 2026', 'created': '2024-11-17 23:43:28', 'submission_id': '1gtnomz'}
{'comment': 'Current is 220-213 with 2 absent seats. I believe both absent seats were previously GOP', 'created': '2024-11-17 22:37:46', 'submission_id': '1gtnomz'}
{'comment': 'it’s by design, just look at the district maps. 50:50 is not a coincidence', 'created': '2024-11-18 00:18:01', 'submission_id': '1gtnomz'}
{'comment': 'Peltola already got defeated by the GOP rep. Race has already been called.', 'created': '2024-11-17 23:10:45', 'submission_id': '1gtnomz'}
{'comment': 'She did it in 2022, she can do it again.', 'created': '2024-11-18 00:44:16', 'submission_id': '1gtnomz'}
{'comment': '> And Iowa’s 1st is so ridiculously close for a state that red.\n\nI believe the Democrat has already (for some reason) conceded that race.', 'created': '2024-11-17 23:23:21', 'submission_id': '1gtnomz'}
{'comment': 'I saw where Begich was declared the winner. Did they do away with rank choice voting in Alaska?', 'created': '2024-11-18 00:10:00', 'submission_id': '1gtnomz'}
{'comment': 'They both ran a fabulous campaign with the given time till the election, they had great ideas and policies. They didn\'t failed us it was the American people failed them. Harris message was " let\'s help you buy your first house" Trump\'s " they\'re eating the dogs they\'re eating the cats" the ladders message won', 'created': '2024-11-18 02:05:51', 'submission_id': '1gtnomz'}
{'comment': 'that one is so disappointing. bet he could be tossed when the cheeto isn’t on the ballot', 'created': '2024-11-18 01:02:46', 'submission_id': '1gtnomz'}
{'comment': 'That means less politics will be passed more gridlock, like a waterdown tariffs plan.', 'created': '2024-11-17 22:57:54', 'submission_id': '1gtnomz'}
{'comment': "That's when we turn the heck out. [anyone, Anyone? ](https://youtu.be/uhiCFdWeQfA?si=hfWBW3Toz3ojcqt-) when the Republicans pass their tariffs in 1922 and 1928, it fueled the great depression, as a result the depression and the Dems having a good majority in both house from 1932-1946 for a good 14 years", 'created': '2024-11-17 23:03:40', 'submission_id': '1gtnomz'}
{'comment': "It's like a rat psychology experiment, but the rat just keeps shocking himself because he doesn't understand how negative consequences work, for some unearthly reason.", 'created': '2024-11-18 02:03:56', 'submission_id': '1gtnomz'}
{'comment': '" it\'s Biden fault not Dear Leader Daddy Trump eggs cost 13 dollars, But hey look at this Xmas MAGA hat!! (Yes it a real thing( It was $40 and I bought 10 of them for a chance to have dinner at the white house! I\'m gonna take my Trump Truck"', 'created': '2024-11-18 02:01:34', 'submission_id': '1gtnomz'}
{'comment': 'With the possible in fighting coming with the GOP?', 'created': '2024-11-18 00:15:03', 'submission_id': '1gtnomz'}
{'comment': 'May this become a reality ASAFP.', 'created': '2024-11-18 01:01:02', 'submission_id': '1gtnomz'}
{'comment': "Lmao true, 215 Dems all climb aboard then only 3 GOP is needed to nail Johnson out of that Gravel, imagine how embarrassing that'll be.", 'created': '2024-11-18 07:44:36', 'submission_id': '1gtnomz'}
{'comment': 'I definitely agree with you. We can look at the small picture the midterms while also looking at the big picture the next presidential election', 'created': '2024-11-18 00:21:52', 'submission_id': '1gtnomz'}
{'comment': 'This election showed propaganda clearly matters more than policy.\xa0 \xa0\n\nUnless we make changes to media, from corporate TV to social media (including the ability of Russians to interfere with our elections!), nothing we do matters.\xa0\n\n\nIf we ever win again, we need to push hard in favor of media regulations\xa0', 'created': '2024-11-18 05:58:45', 'submission_id': '1gtnomz'}
{'comment': 'For the most part we are saved from some reckless policy. Meaning some concessions need to be made', 'created': '2024-11-18 00:10:24', 'submission_id': '1gtnomz'}
{'comment': 'https://preview.redd.it/x259kuf3cj1e1.jpeg?width=300&format=pjpg&auto=webp&s=6cd3c5ccdaae2669135b2c608498fb773c455e48', 'created': '2024-11-17 23:07:17', 'submission_id': '1gtnomz'}
{'comment': 'The Dems will keep their lead! I 100% agree', 'created': '2024-11-18 01:42:54', 'submission_id': '1gtnomz'}
{'comment': "Fact. Time to fight to protect what's left. No pun.", 'created': '2024-11-18 01:28:41', 'submission_id': '1gtnomz'}
{'comment': 'Congratulations to your district! Hell yea we will be ready come midterms. From looking at the midterms that is the case.', 'created': '2024-11-18 01:57:23', 'submission_id': '1gtnomz'}
{'comment': 'She definitely on something, if we\'re "cheating" we would steal 2 seats 😏', 'created': '2024-11-18 01:47:02', 'submission_id': '1gtnomz'}
{'comment': "In 2016 the GOP in the house was able to start the process of axing afford care act and send it to the Senate and thanks to John McCain safe ACA. This time it won't pass the house thank lord.", 'created': '2024-11-18 03:46:51', 'submission_id': '1gtnomz'}
{'comment': 'Hells yea 💪', 'created': '2024-11-18 03:36:29', 'submission_id': '1gtnomz'}
{'comment': "If I'm mistaken does that normally happen in a president 2nd term. W Bush in 06 with both chambers. Obama held on to the Senate till 2014. Trump's gonna be a lame duck\n\nhttps://preview.redd.it/8nh83ks76k1e1.png?width=208&format=pjpg&auto=webp&s=ac70fbb6e8c3cb1421e66bc0535ffc8df82ffdca", 'created': '2024-11-18 01:56:07', 'submission_id': '1gtnomz'}
{'comment': 'If neither candidate gets more than 50 percent, ranked choice kicks in, I think?', 'created': '2024-11-18 02:02:27', 'submission_id': '1gtnomz'}
{'comment': 'Maybe give it the old yeller treatment', 'created': '2024-11-18 03:51:30', 'submission_id': '1gtnomz'}
{'comment': 'My guess is absentee ballots', 'created': '2024-11-18 03:41:56', 'submission_id': '1gtnomz'}
{'comment': 'Thank goodness for the Harris fight fun', 'created': '2024-11-18 00:11:24', 'submission_id': '1gtnomz'}
{'comment': 'When I early vote I voted on a university campus', 'created': '2024-11-18 00:28:32', 'submission_id': '1gtnomz'}
{'comment': 'Good to hear some if the gerrymandering is undone. Makes sense to expand the house. How can 1 representative best represent a lot of people. Maybe have 2-3 representative in one district', 'created': '2024-11-18 01:52:00', 'submission_id': '1gtnomz'}
{'comment': 'Is there another Tim Waltz the governor of Minnesota? Elsie Stenfanik of New York is a Republican so that is some good news', 'created': '2024-11-18 01:45:21', 'submission_id': '1gtnomz'}
{'comment': 'https://preview.redd.it/kaek96bkrk1e1.jpeg?width=1200&format=pjpg&auto=webp&s=14b01ff1edfb8b6c899c009db1821ddedad25b39\n\nThis just in saying the sky is Blue makes you woke', 'created': '2024-11-18 03:55:46', 'submission_id': '1gtnomz'}
{'comment': "Thankfully it's not a big majority like back in 2016, 241 GOP vs 194 Dems", 'created': '2024-11-17 22:55:57', 'submission_id': '1gtnomz'}
{'comment': 'Hopefully one day we will come together again. Trump is truly a great divider', 'created': '2024-11-18 03:50:38', 'submission_id': '1gtnomz'}
{'comment': 'According to the current 2024 POTUS popular vote tallies, Trump has just now dipped below the 50% mark, so not even a majority of the folks who voted even voted for him.', 'created': '2024-11-18 03:59:34', 'submission_id': '1gtnomz'}
{'comment': 'Better then 2016', 'created': '2024-11-18 03:44:33', 'submission_id': '1gtnomz'}
{'comment': 'The GOP isn\'t bright, their main focus was the white house. They got over confidence like " we will have a strong majority in both chambers" but yes this election needs to be looked into', 'created': '2024-11-18 12:54:21', 'submission_id': '1gtnomz'}
{'comment': "Give Jeffries some time, Obama started as a Illinois senator, US Senator then US President, picture this we turn the hell out for 2026, give the Dems a helluva seats in the House, Jeffries is made Speaker of the House, 2028 he's in the democratic primaries.", 'created': '2024-11-17 23:11:18', 'submission_id': '1gtnomz'}
{'comment': 'Between the Casey senate seat that’s currently a 17k loss, and losses in PA-7, PA-8, and PA-10… very disappointing indeed', 'created': '2024-11-17 23:52:41', 'submission_id': '1gtnomz'}
{'comment': "And he's going to. If he's in congress, they're gonna release the ethics report.", 'created': '2024-11-18 00:49:33', 'submission_id': '1gtnomz'}
{'comment': 'Except when Democrats do it suddenly judges remember laws exists. See New York for details.', 'created': '2024-11-18 01:31:23', 'submission_id': '1gtnomz'}
{'comment': '100% this. You don’t by unilaterally disarming.', 'created': '2024-11-17 23:37:47', 'submission_id': '1gtnomz'}
{'comment': 'Democrats’ problem is they’re playing policy - Republicans are playing politics. That’s why they control all branches of government, but look what happened 7 years ago when they controlled all branches of government - the only major policy they were able to pass was that tax cut.\n\nNow, things might be different this time, they might get more through, but it doesn’t change the fact that democrats have for decades now convinced themselves that if they have good policies that will help people, that will get them votes.\n\nClearly, they’re wrong. If they want to get these policies through, they’re going to have to play politics', 'created': '2024-11-18 03:56:59', 'submission_id': '1gtnomz'}
{'comment': 'Unlikely. Only chance is to do it on a state by state basis, but knowing that red states won’t allow this means blue states aren’t going to give it up either.', 'created': '2024-11-17 23:35:37', 'submission_id': '1gtnomz'}
{'comment': 'Well Ohio you saw in the election voted down the chance to create a nonpartisan redistricting commission. And when the supreme Court said partisan gerrymandering is legal. Independent redistricting commissions are probably the only way out of the gerrymandering.', 'created': '2024-11-18 00:13:12', 'submission_id': '1gtnomz'}
{'comment': 'No chance. \n\nAmericans just elected Trump. You think they have any idea what is in their best interests? No chance.', 'created': '2024-11-17 23:54:50', 'submission_id': '1gtnomz'}
{'comment': 'For real? So she could still win?', 'created': '2024-11-17 23:57:33', 'submission_id': '1gtnomz'}
{'comment': "With Lisa's endorsement, imagine how that'll be. I'm surprised she isn't an Independent yet tbh.", 'created': '2024-11-18 07:41:36', 'submission_id': '1gtnomz'}
{'comment': 'If all races go as they’re trending, it will be 220-215 Republican majority. Now here’s the interesting part. \n\nHe nominated Matt Gaetz for AG. Gaetz resigned from seat. So whether or not he goes through as AG, that’s a Fl seat open. \n\nHe also nominated Stefanik for US ambassador. So Stefanik is leaving her NY seat. \n\nThat would make it 218-215 with two vacancies. Dems could win NY seat but FL may be a little harder to grab. \n\nIt could end up being 219-216, when it’s all said and done. That’s a one seat majority.', 'created': '2024-11-17 23:59:53', 'submission_id': '1gtnomz'}
{'comment': "Not yet. The final ranked-choice tabulation will happen on Wednesday. If she wins 67% of the second choice vote, she wins.\n\nThe third-party candidate is an Alaska native. I'd guess that most of those votes would lean toward Peltola, who is Yupik and strongly represents Alaskan native interests (such as fishing).", 'created': '2024-11-17 23:18:41', 'submission_id': '1gtnomz'}
{'comment': "> Race has already been called.\n\nThe race isn't called until the state makes it official; not the AP or any other news organization.", 'created': '2024-11-17 23:24:14', 'submission_id': '1gtnomz'}
{'comment': 'The republicans lead has shrunk from 4% to 2.6% so it’s possible.', 'created': '2024-11-17 23:45:36', 'submission_id': '1gtnomz'}
{'comment': 'Could be way way worse, it could have be Sarah Palin', 'created': '2024-11-17 23:12:34', 'submission_id': '1gtnomz'}
{'comment': "The initial race she lost, but going into RCV then things can very well change(it's not impossible as she needs about 65% of the vote or so)", 'created': '2024-11-18 07:21:36', 'submission_id': '1gtnomz'}
{'comment': 'He declared himself the winner which is pretty bs', 'created': '2024-11-18 01:58:52', 'submission_id': '1gtnomz'}
{'comment': '> Did they do away with rank choice voting in Alaska?\n\nThe ballot measure to repeal ranked choice hasn’t been called yet. It’s currently 50.14 - 49.86% in favor of repealing with 95% of the count in. If it passes it wouldn’t go into effect until the next election anyway.', 'created': '2024-11-18 09:13:44', 'submission_id': '1gtnomz'}
{'comment': 'You really believe they ran a "fabulous" campaign? Even after getting completely trounced? Obviously their campaign sucked because their ideas and strategies lost them even the popular vote and both houses of Congress. Democrats need to wake up and be honest to our failings and clear eyed if we ever want to to win an election again.', 'created': '2024-11-18 02:08:34', 'submission_id': '1gtnomz'}
{'comment': 'Tariffs need to be dealt with before Trump takes office, if the law is left as-is Trump won’t need Congressional authorization.', 'created': '2024-11-17 23:36:39', 'submission_id': '1gtnomz'}
{'comment': 'More turnout actually hurt Harris in a majority of places this time because the young men swung hard for Trump.', 'created': '2024-11-18 06:13:25', 'submission_id': '1gtnomz'}
{'comment': '🙏🙏🙏', 'created': '2024-11-18 02:28:15', 'submission_id': '1gtnomz'}
{'comment': 'Hmmm i blocked all the campaign emails. Sounds to me like they have campaign bills they need to pay and using this fight fund as a front. I could be wrong but…. I’m not donating anymore to them. I’ll instead donate to the DCCC.', 'created': '2024-11-18 00:26:03', 'submission_id': '1gtnomz'}
{'comment': 'it was done in PA for Congressional districts. The total number has been capped since 1911..if it were in proportion blue states would get much more representation. https://projects.fivethirtyeight.com/435-representatives/', 'created': '2024-11-18 02:30:55', 'submission_id': '1gtnomz'}
{'comment': 'Wrong Walz. Mike Waltz is the National Security Advisor, he’s the rep for floridas 6th district.', 'created': '2024-11-18 02:07:08', 'submission_id': '1gtnomz'}
{'comment': "What i don't want to see is any blame at all put on the Dems. I want every decision to be fully MAGA decisions. They will own all of it, all of it. I was hoping the Dems lost the House. We will hammer this to death. My brother and I are starting a podcast and we're going to do our part to keep people informed on how MAGA is making thier lives worse.", 'created': '2024-11-17 23:10:18', 'submission_id': '1gtnomz'}
{'comment': 'That was depressing. Having over 210 definitely feels a little less depressing.', 'created': '2024-11-17 23:41:25', 'submission_id': '1gtnomz'}
{'comment': 'Yeah. But there are fewer moderate, non-MAGA Republicans in the House compared to the last time Trump was president.\n\nCould be when he speaks, a majority will jump.', 'created': '2024-11-17 23:51:33', 'submission_id': '1gtnomz'}
{'comment': 'There’s one thing people are not understanding and maybe you might get this not much is gonna get done because of the slim majority. Trump’s gonna realize some Republicans that are against some of the stuff he does.', 'created': '2024-11-18 03:51:55', 'submission_id': '1gtnomz'}
{'comment': 'Idk. He could come off as too “establishment.” If this election cycle has taught us anything its (1) misinformation apparently wins elections and (2) candidates who are perceived as part of the DC establishment and not an outsider will not win votes', 'created': '2024-11-18 00:28:27', 'submission_id': '1gtnomz'}
{'comment': 'We should be making them beg for mercy in states like Illinois.', 'created': '2024-11-18 00:58:52', 'submission_id': '1gtnomz'}
{'comment': 'I\'m in Ohio and our lovely populace just voted IN FAVOR OF gerrymandering. Prior we voted against it by a large margin and the GOP overlords ignored that then re-wrote it in a way that would confuse anyone who didn\'t do their homework prior to voting. The GOP base are fine with cheating so long as their "team" wins even if that means forfeiting their own rights and taking a dump on democracy in the process. It\'s truly astounding how stupid so many people in this country truly are, and I have to work with a few dozen of these Einstein\'s and listen to their idiocy nearly every day. Really makes one lose faith in humanity.', 'created': '2024-11-18 00:51:39', 'submission_id': '1gtnomz'}
{'comment': 'Yes. If enough people who voted for the third and fourth place ranked her as their second choice, she will win those votes.', 'created': '2024-11-18 00:24:51', 'submission_id': '1gtnomz'}
{'comment': 'I promise you, that section of Florida will NEVER vote for a democrat. I mean they just reelected Matt Gaetz who was currently under investigation for rape 😂\n\nFrom Wikipedia:\n\n> With a Cook Partisan Voting Index rating of R+19, it is the most Republican district in Florida', 'created': '2024-11-18 00:03:53', 'submission_id': '1gtnomz'}
{'comment': 'I’m from Stefanik’s district. Dems will make a big play for it but it’s deep red. Stefanik won 2 to 1 in this last election.', 'created': '2024-11-18 00:22:00', 'submission_id': '1gtnomz'}
{'comment': 'As of yet, it’s unclear to what extent the vacancies created (or soon to be created) by Gaetz, Stefanik, and Waltz will overlap. Which complicates the math a bit.\n\nIt’s also unclear whether Ds or Rs will ultimately win CA13. The other races, called and uncalled, seem relatively clear. But CA13 is a pure toss-up atm.', 'created': '2024-11-18 00:07:04', 'submission_id': '1gtnomz'}
{'comment': 'I don’t think Trumps gonna care, honestly. He’s shown he’s going to bypass formalities and tradition.', 'created': '2024-11-18 00:18:50', 'submission_id': '1gtnomz'}
{'comment': "Florida's 1st congressional district is Redneck Riviera. Dems should contest every race but the odds of winning this seat are extraordinarily slim.", 'created': '2024-11-18 00:48:21', 'submission_id': '1gtnomz'}
{'comment': 'Dems are not winning that NY seat. It was a Republican packed district on purpose, and just went for Stanifik 62-38', 'created': '2024-11-18 01:55:35', 'submission_id': '1gtnomz'}
{'comment': 'Maybe if the ethics report gets released, it can help the dems win the Florida seat', 'created': '2024-11-18 00:31:19', 'submission_id': '1gtnomz'}
{'comment': 'Wait. So we could have another George Santos situation, where Democrat flips it? Hell YES!!! This is great news. I think New Yorkers could absolutely come through and flip that seat (especially now that voters have the knowledge of a Trump being in the White House). Or at least get a more moderate (non maga) republican in\n\n>It could end up being 219-216, when it’s all said and done. That’s a one seat majority.\n\nHmm. This interesting because if republicans fuck shit up like public transit, letting airplane companies be inefficient that could affect who is present to vote on issues. I just remember attendance being important because republicans were so extremely against Democrats attempts to legislate via zoom and meeting through digital tools and made it difficult.', 'created': '2024-11-18 08:31:23', 'submission_id': '1gtnomz'}
{'comment': "She's behind by 8,338 votes and 98% of the ballots are in. Unless the next 10,000 votes are for her, Peltola is not going to win.", 'created': '2024-11-17 23:26:04', 'submission_id': '1gtnomz'}
{'comment': "Hey, I hope I'm wrong. It would be great if she keeps her seat.", 'created': '2024-11-17 23:48:09', 'submission_id': '1gtnomz'}
{'comment': 'I know you’re getting downvoted but you’re right. They completely ignored the local economic hardship people are having. Just because the GDP is high, Wall Street is doing great, and companies are making huge profits doesn’t mean regular people are seeing any of that.', 'created': '2024-11-18 06:12:23', 'submission_id': '1gtnomz'}
{'comment': 'His goons still control the house and would block any legislation.', 'created': '2024-11-18 00:30:08', 'submission_id': '1gtnomz'}
{'comment': "I'm a 23 year old white male Harris voter, I'm proud in my vote, I like her policy, but mostly I voted to protect my wife and daughter reproductive rights. Young men screwed the pooch. Harris was planning to make buying a home possible.", 'created': '2024-11-18 12:56:48', 'submission_id': '1gtnomz'}
{'comment': 'Thanks for the clarification.', 'created': '2024-11-18 03:44:09', 'submission_id': '1gtnomz'}
{'comment': 'It will all come down to Republicans having to decide whether they want to go down with the MAGA ship or try to rein Trump in to save their own hides. I’m seriously worried what happens next year to things like prices for EVERYTHING and also if there’s going to be a market crash. And maybe WWIII, world situation is ugly at the moment. People who voted Trump for low prices and no wars are going to be severely disappointed if China decides to invade Taiwan, knowing Trump has the Pentagon stocked with idiots in key roles.', 'created': '2024-11-17 23:43:37', 'submission_id': '1gtnomz'}
{'comment': 'you hoped the dems would lose?', 'created': '2024-11-17 23:32:02', 'submission_id': '1gtnomz'}
{'comment': 'Because these representatives are young and so of the future, Trump is already at his 2nd term no political future, he might live to finish it or he will eat his last big mac before a heart attack', 'created': '2024-11-18 03:57:17', 'submission_id': '1gtnomz'}
{'comment': 'Why isn\'t Trump seen as the estaminet this is his 3rd time running for president. Hopefully in time we don\'t have to worry about misinformation. Fact 2 played well in history since 1976, Nixon resigned because of Watergate, Ford comes in and pardon Nixon, Jimmy Carter a governor from Georgia wins in 1976, 1980 comes around Jimmy Carter doesn\'t have a strong term, Regan comes in a governor from California wins, Bush Wins 1988 but loses in 1992 because of " Read my lips no new taxes" Clinton wins a governor from Arkansas, 2000 was a weird election, let\'s jump to 2016, Hillary was seen as the estaminet and Trump won,', 'created': '2024-11-18 02:12:26', 'submission_id': '1gtnomz'}
{'comment': "They're begging for mercy in Illinois already, the thing is Democrats need to gerrymander New York, California, New Jersey, Washington, Colorado, Minnesota, Maine, and if they gain trifecta in PA, Michigan and Wisconsin, and Virginia so they won't elect more than 1 or 2 Republicans.\n\n\nRepublicans gerrymandered NC, Dems need to Gerrymander NJ more. \n\nRepublicans gerrymander Florida, New York it's up to you. \n\nRepublicans Gerrymander Texas, California, it's your time to shine. \n\nTennessee elects one Democrat to congress, Washington it's your job to make it one Republican. \n\nMinnesota, you see what Wisconsin has, do the same for democrats.\n\nPair the states, cause Republicans can't gerrymander racially, but Democrats can. White majority districts are not a thing. Dilute them. \n\nMaryland, make Harris lose. Andy Harris that is. .", 'created': '2024-11-18 01:51:51', 'submission_id': '1gtnomz'}
{'comment': 'Florida passed a Fair Districts amendment, it’s still on the books but Republicans decided to just ignore it, and now that they totally control the state supreme court they can get away with it.', 'created': '2024-11-18 05:40:52', 'submission_id': '1gtnomz'}
{'comment': "Well.. in favor of not repealing the existing condtitutionL protections against gerrymandering. Everyone, the actual description on the ballot was that a yes vote would:\n\nRepeal constitutional protections \r\nagainst gerrymandering \r\napproved by nearly three-\r\n-quarters of Ohio electors \r\nparticipating in the statewide \r\nelections of 2015 and 2018, and \r\neliminate the longstanding \r\nability of Ohio citizens to \r\nhold their representatives \r\naccountable for establishing \r\nfair state legislative and \r\ncongressional districts.\n\nSo I can't blame Ohio voters too harshly.", 'created': '2024-11-18 01:10:01', 'submission_id': '1gtnomz'}
{'comment': 'Gaetz doesn’t even bother campaigning, putting out signs, etc and wins that district easily.', 'created': '2024-11-18 00:17:38', 'submission_id': '1gtnomz'}
{'comment': 'A democrat should run as an undercover Republican and then vote with dems, like an opposite Joe Manchin lol', 'created': '2024-11-18 00:44:43', 'submission_id': '1gtnomz'}
{'comment': 'Won’t matter. MAGA voters don’t care about sexual depravity or human trafficking, unless they can pin it on a Democrat.', 'created': '2024-11-18 00:35:16', 'submission_id': '1gtnomz'}
{'comment': 'Alaska does ranked choice voting. None of them have 50% or more of the votes so they will start factoring in the ranked choices. This could take a whole week and she could still pull it off if enough people put her as their second choice', 'created': '2024-11-18 00:23:47', 'submission_id': '1gtnomz'}
{'comment': 'Have you heard of "Ranked Choice Voting"? It doesn\'t give her a great chance, but she still has a decent chance.', 'created': '2024-11-17 23:29:04', 'submission_id': '1gtnomz'}
{'comment': "Yes, for sure. They're going to be disappointed in many ways. Healthcare, education, SS, Medicare, medicaid, inflation will go through the roof with the tariffs, Ukraines's fate etc", 'created': '2024-11-18 00:00:40', 'submission_id': '1gtnomz'}
{'comment': 'I explained it, read it in context', 'created': '2024-11-17 23:32:46', 'submission_id': '1gtnomz'}
{'comment': 'This last election has made be realize that trying to be the better person just don’t pay off in politics', 'created': '2024-11-18 03:01:34', 'submission_id': '1gtnomz'}
{'comment': 'I can, do and will blame them harshly.', 'created': '2024-11-18 01:39:53', 'submission_id': '1gtnomz'}
{'comment': 'Yeah, it’s something like 54% Republicans and 20% Democrats', 'created': '2024-11-18 00:27:18', 'submission_id': '1gtnomz'}
{'comment': 'I share the Joe Manchin hate but he voted with democrats a lot. And also confirmed all of Biden’s nominees along with the Democrats', 'created': '2024-11-18 00:55:56', 'submission_id': '1gtnomz'}
{'comment': "Didn't Doug Jones win a senate seats over a scandal like that?", 'created': '2024-11-18 00:42:39', 'submission_id': '1gtnomz'}
{'comment': 'Mark Robinson lost in NC so there is some hope however slim that sex trafficking is a bridge too far.', 'created': '2024-11-18 02:54:11', 'submission_id': '1gtnomz'}
{'comment': 'oooh sorry i read it wrong. but they’ll still blame everything on us even though they’re the ones making shitty decisions.', 'created': '2024-11-17 23:33:58', 'submission_id': '1gtnomz'}
{'comment': "2016 proved that. 2024 doubled down. 2020 probably was the exception. Joe is nice guy, but he was tough guy. He didn't get scared to talk back to Trump. And he knocked him out in 2020. Being nice and joyful isn't paying off. Dems need attack dog to rip Republicans and need to find one soon.", 'created': '2024-11-18 04:13:47', 'submission_id': '1gtnomz'}
{'comment': 'Many of the scummiest Republicans come from these "can\'t lose" districts (Jordan, Gaetz, MTG...) They know they can be their true selves and never lose and I honestly think most other elected Republicans would act just like them if they could get away with it. The GOP base have proven no behavior, no matter how disgusting, is a deal breaker for them. They are perfectly fine with candidates being frauds, racists and habitual liars, rapists and even pedophiles, so there\'s literally nothing they can do to lose support.', 'created': '2024-11-18 01:02:38', 'submission_id': '1gtnomz'}
{'comment': 'Yes, by the skin of his teeth.', 'created': '2024-11-18 00:49:05', 'submission_id': '1gtnomz'}
{'comment': 'Yes, though that was before felonious acts became fully normalized within the MAGA base.', 'created': '2024-11-18 00:54:22', 'submission_id': '1gtnomz'}
{'comment': "It's ok, I know it's controversial lol", 'created': '2024-11-17 23:38:12', 'submission_id': '1gtnomz'}
{'comment': 'So we can see if they can pull it off', 'created': '2024-11-18 00:57:08', 'submission_id': '1gtnomz'}
{'comment': "It was also a deep red state that could've ignored it in 2018. I feel we can have a chance", 'created': '2024-11-18 00:56:54', 'submission_id': '1gtnomz'}
{'comment': 'Gaetz isn’t running for the seat, though. The Democrats will ostensibly be running against someone who _hasn’t_ been under a years-long investigation for trafficking minors.', 'created': '2024-11-18 01:09:13', 'submission_id': '1gtnomz'}
{'comment': 'of course they do. and here I was hoping to not hear of them ever again.', 'created': '2024-11-17 22:56:46', 'submission_id': '1gtn3av'}
{'comment': 'Is floating her out to sea not an option?', 'created': '2024-11-18 01:09:10', 'submission_id': '1gtn3av'}
{'comment': "Why not? She's stupid, talentless, and has no business being there. Just like the rest of Trump's people. I wonder if we're going to have a country to save in two and/or four years.", 'created': '2024-11-18 02:11:33', 'submission_id': '1gtn3av'}
{'comment': 'I don’t live in in Florida, but thought of her being in the Senate evokes this reaction in me: 🤮🤮🤮', 'created': '2024-11-18 00:18:15', 'submission_id': '1gtn3av'}
{'comment': 'I’d be very surprised if DeSantis did that.\xa0', 'created': '2024-11-18 00:33:20', 'submission_id': '1gtn3av'}
{'comment': 'Nepotism and patronage is the fertile ground of rampant corruption. When "Trump" is over, all these will be scurrying away like the vermin they are.', 'created': '2024-11-18 01:19:09', 'submission_id': '1gtn3av'}
{'comment': '', 'created': '2024-11-18 01:47:29', 'submission_id': '1gtn3av'}
{'comment': 'Float? Like an unflushable turd?', 'created': '2024-11-18 01:45:43', 'submission_id': '1gtn3av'}
{'comment': 'At this point let them do whatever tf Trump wants. Republicans have all branches of government. They will have no one else to blame when sh*t goes bad. Who can they point to when their crap tariffs and mass deportations take place? Who will they point to when they start taking rights and cutting programs Americans need to survive? Sure they can try and blame Biden and democrats for a little bit but that excuse will only work for so long. Let them self destruct.', 'created': '2024-11-18 01:55:57', 'submission_id': '1gtn3av'}
{'comment': 'Well, that is a joke.', 'created': '2024-11-18 01:22:17', 'submission_id': '1gtn3av'}
{'comment': 'The dog charity thief', 'created': '2024-11-18 02:24:36', 'submission_id': '1gtn3av'}
{'comment': 'This is good. Let them fill every Republican seat with illiterate, inexperienced, nepo babies. Better than the calculating power hungry sociopaths currently running the party.', 'created': '2024-11-18 01:03:03', 'submission_id': '1gtn3av'}
{'comment': "She will win too. That's Florida.", 'created': '2024-11-18 03:58:43', 'submission_id': '1gtn3av'}
{'comment': 'As long as it puts an end to her "singing" career, fine.', 'created': '2024-11-18 15:27:30', 'submission_id': '1gtn3av'}
{'comment': 'Nah, there’s already too much plastic out in the ocean already.', 'created': '2024-11-18 03:47:28', 'submission_id': '1gtn3av'}
{'comment': 'Republicans: “REEEEEEE!!! You didn’t primary Kamala!!!” \n\nAlso republicans: “We’re gonna replace an elected official with unelected Lara Trump, and we’re OK with that.”', 'created': '2024-11-18 03:50:42', 'submission_id': '1gtn3av'}
{'comment': 'Think of the poor sharks!', 'created': '2024-11-18 03:10:47', 'submission_id': '1gtn3av'}
{'comment': "We don't need another floating pile of garbage in our oceans.", 'created': '2024-11-18 14:22:16', 'submission_id': '1gtn3av'}
{'comment': 'Despite all your points she still has ONE main advantage 😉😏', 'created': '2024-11-18 02:34:26', 'submission_id': '1gtn3av'}
{'comment': 'I live in Floriduh and I’d rather eat 💩and ☠️.', 'created': '2024-11-18 03:39:40', 'submission_id': '1gtn3av'}
{'comment': 'We had Ted Cruz read Green Eggs and Ham. This time it will be Laura Trump singing my heart will go on', 'created': '2024-11-18 03:53:06', 'submission_id': '1gtn3av'}
{'comment': 'I’d be more surprised if he didn’t.\xa0', 'created': '2024-11-18 00:50:28', 'submission_id': '1gtn3av'}
{'comment': "Oh really? And how quickly do you think he'll be getting federal aid next hurricane season if he doesn't?", 'created': '2024-11-18 10:22:00', 'submission_id': '1gtn3av'}
{'comment': "I'd laugh my ass off if DeSantis appointed Ben Sasse to fill the seat.", 'created': '2024-11-18 19:01:37', 'submission_id': '1gtn3av'}
{'comment': "Or we'll end up with something like the Nuremberg trials, after these freaks have completely destroyed this country", 'created': '2024-11-18 04:33:30', 'submission_id': '1gtn3av'}
{'comment': '🤮🤮🤮🤮', 'created': '2024-11-18 05:58:02', 'submission_id': '1gtn3av'}
{'comment': 'Nebraska Republicans still parade Nebraska Democrats as the evil doers, despite having had control of all branches of state government for 20 years.', 'created': '2024-11-18 19:03:55', 'submission_id': '1gtn3av'}
{'comment': 'They will still blame Biden', 'created': '2024-11-18 03:20:48', 'submission_id': '1gtn3av'}
{'comment': 'Wildly underrated comment', 'created': '2024-11-18 05:17:09', 'submission_id': '1gtn3av'}
{'comment': '', 'created': '2024-11-18 08:54:08', 'submission_id': '1gtn3av'}
{'comment': 'So on point!!!', 'created': '2024-11-18 05:58:47', 'submission_id': '1gtn3av'}
{'comment': "I mean, I'd rather get electrocuted.", 'created': '2024-11-18 03:23:44', 'submission_id': '1gtn3av'}
{'comment': 'She’s a Trump?', 'created': '2024-11-18 03:34:53', 'submission_id': '1gtn3av'}
{'comment': 'Oh, no, please no…. For the love of good, no!', 'created': '2024-11-18 05:59:44', 'submission_id': '1gtn3av'}
{'comment': 'I think you’re right. He will rack up a few points. Easy peasy.', 'created': '2024-11-18 03:40:29', 'submission_id': '1gtn3av'}
{'comment': 'DeSantis won’t go out of his way to help Trump, that’s for sure.', 'created': '2024-11-18 21:13:42', 'submission_id': '1gtn3av'}
{'comment': "That's exactly why we need to talk non stop about how everything from this point was all Republicans", 'created': '2024-11-18 20:33:29', 'submission_id': '1gtn3av'}
{'comment': 'No, they will blame the RINOs. I guarantee it.', 'created': '2024-11-18 04:34:32', 'submission_id': '1gtn3av'}
{'comment': 'Their hypocrisy is a feature, not a bug.', 'created': '2024-11-18 07:23:31', 'submission_id': '1gtn3av'}
{'comment': 'Great! I was hoping he would do this! At least Ukraine will know that Half of America are still with them.', 'created': '2024-11-18 03:02:56', 'submission_id': '1gtldzl'}
{'comment': 'So many pro-Trump boards are so pro-Russia. What’s happened to this country? I get that there are thousands of bots, but there are still Americans that think Ukraine should just let Russia take what it wants. The same ones that were happen to see ussr collapse now root for Putin.', 'created': '2024-11-17 21:08:14', 'submission_id': '1gtldzl'}
{'comment': '…which Ukraine will be able to make use of right up to Jan 20th', 'created': '2024-11-18 02:55:07', 'submission_id': '1gtldzl'}
{'comment': 'Too little -- way too late.', 'created': '2024-11-18 07:06:00', 'submission_id': '1gtldzl'}
{'comment': "\nExcerpt:\n\nWASHINGTON, Nov 17 (Reuters) - President Joe Biden's administration will allow Ukraine to use U.S.-provided weapons to strike deep into Russian territory, three sources familiar with the matter said, in a significant change to Washington's policy in the Ukraine-Russia conflict.\nUkraine plans to conduct its first long-range attacks in the coming days, the sources said, without revealing details due to operational security concerns.", 'created': '2024-11-17 20:26:00', 'submission_id': '1gtldzl'}
{'comment': "Putin is a menace to society. That monster has been on a mission to destabilize the west for years and its been working. I mean he's essentially infiltrated our own government. He's managed to get his puppet back in an office he should have no right to ever hold again after January 6th.", 'created': '2024-11-18 01:08:41', 'submission_id': '1gtldzl'}
{'comment': 'Since North Korea put boots on the ground I am all for American air \nstrikes on Russian targets inside of Ukraine.', 'created': '2024-11-18 05:12:56', 'submission_id': '1gtldzl'}
{'comment': "It's gross. Russia is an enemy, not an ally, they have been an enemy for decades.", 'created': '2024-11-17 21:55:42', 'submission_id': '1gtldzl'}
{'comment': 'Most of your Republican voting Americans are easily manipulated morons. The rest of them are just traitors.', 'created': '2024-11-18 12:03:26', 'submission_id': '1gtldzl'}
{'comment': 'North Korea changed the game..\n\nDue to an invasion of multiple foreign nations attacking Ukraine I would encourage American Airstrikes on North Korean and Russian targets inside of Ukraine. \n\nScrew the politics at this point.', 'created': '2024-11-18 15:29:43', 'submission_id': '1gtldzl'}
{'comment': "Yep, at this point, it will be Vladimir Putin running this country and not trump. Trump is Putin's bitch now.", 'created': '2024-11-18 04:36:19', 'submission_id': '1gtldzl'}
{'comment': "I'm for American airstrikes on Russian targets inside of Russia.\n\nPutin's nukes don't work anymore.", 'created': '2024-11-18 12:40:05', 'submission_id': '1gtldzl'}
{'comment': "He's been Putin's bitch since his first term.", 'created': '2024-11-18 04:37:32', 'submission_id': '1gtldzl'}
{'comment': 'Eh, I\'m not sure that I want to verify that. I like my whole "breathing" bit.', 'created': '2024-11-18 16:54:37', 'submission_id': '1gtldzl'}
{'comment': 'I\'m at the "fuck it" point. The world\'s going to end if we let him keep playing silly buggers with everyone else\'s politics, so it\'s either call his bluff or we all die anyway from global warming.\n\nBesides, if he had working nukes don\'t you think he\'d have used them on Ukraine by now? He\'s glassing cities anyway.', 'created': '2024-11-18 16:58:40', 'submission_id': '1gtldzl'}
{'comment': 'Using his nukes guarantees a NATO response.\xa0 So no, I don\'t think he\'d use them.\n\n\nWhile there are things that, if permitted, lead down an unacceptable path and those things are where the true "red lines" from the U.S. are going to lie.\xa0 As much as I want to see Ukraine do well, I\'m not sure Russia taking a non-NATO state over is "end-of-the-world" level unacceptable.\xa0 We could start snatching territory ourselves if we really want to play cold war 2.', 'created': '2024-11-18 17:11:10', 'submission_id': '1gtldzl'}
{'comment': '> Using his nukes guarantees a NATO response.\n\nOn a non-NATO country?', 'created': '2024-11-18 17:55:17', 'submission_id': '1gtldzl'}
{'comment': "As I understand it, NATO countries have said that radiation entering their borders will trigger a response.\xa0 Though who knows if that's idle talk.\xa0 Also radiation in Ukraine is likely to affect neighboring Russia.\xa0 None of it sounds great for them.", 'created': '2024-11-18 20:02:34', 'submission_id': '1gtldzl'}
{'comment': 'This article may be behind a paywall. You can add 2-4 paragraphs as a quote in a comment. *Do not post the text for the entire article.*\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-17 20:20:06', 'submission_id': '1gtl9e0'}
{'comment': 'If the Russian people finally discover they are in an actual war - like the Ukrainians discovered when their apartments, schools, hospitals, power facilities including nuclear, cities and towns were bombed - this might actually change the trajectory of Putin\'s warmongering and shorten the time he has left. The Russian people have a long, long history of taking crap from their "leaders" - until they don\'t. They are really big on regime change when they\'ve had enough.', 'created': '2024-11-17 20:48:11', 'submission_id': '1gtl9e0'}
{'comment': 'About time. Overall approve of Bidens handling of the war. I don’t like how we’ve dog walked them with every possible milestone.', 'created': '2024-11-17 20:25:13', 'submission_id': '1gtl9e0'}
{'comment': 'Good, fuck Russia. Do as much damage as possible before putins puppet takes over', 'created': '2024-11-17 21:11:15', 'submission_id': '1gtl9e0'}
{'comment': 'Looks like Biden is going out with a bang. About damn time!', 'created': '2024-11-17 20:58:26', 'submission_id': '1gtl9e0'}
{'comment': '"Allows?" If I were Biden, I\'d be pumping up Ukraine with as much materiel as I possibly could until the end of my term and get commitments from our European allies to do the same after the Traitor takes over.', 'created': '2024-11-17 21:11:14', 'submission_id': '1gtl9e0'}
{'comment': 'Trying to get rid of Putin before Trump lets Putin get rid of Ukraine. I like it.', 'created': '2024-11-17 21:29:05', 'submission_id': '1gtl9e0'}
{'comment': 'About time. I hope they can make putin shake in his bootins before the end of January... then we might even see aid being sent to Ruzzia instead of Ukraine. \n\nGodspeed Ukraine...', 'created': '2024-11-17 22:14:36', 'submission_id': '1gtl9e0'}
{'comment': 'These are the last couple months I can call anyone “President” comfortably without having to use massive air quotes', 'created': '2024-11-17 22:44:02', 'submission_id': '1gtl9e0'}
{'comment': 'I would just put together a care package of old shit out of the stockpiles and keep sending it over until the inauguration at this point.', 'created': '2024-11-17 23:05:12', 'submission_id': '1gtl9e0'}
{'comment': 'As he should. F*** Russia. They are our enemy.', 'created': '2024-11-17 23:47:34', 'submission_id': '1gtl9e0'}
{'comment': 'Dark Brandon! Rise!', 'created': '2024-11-17 23:05:01', 'submission_id': '1gtl9e0'}
{'comment': 'Unpopular opinion: Biden should send troops to Ukraine before Trump sends them to Russia.', 'created': '2024-11-17 20:36:33', 'submission_id': '1gtl9e0'}
{'comment': 'Excellent! Anything to piss off Rump and Vlad.\xa0', 'created': '2024-11-17 22:43:48', 'submission_id': '1gtl9e0'}
{'comment': 'Can he kill all the Russian troll bots on Reddit while he’s there?', 'created': '2024-11-17 23:51:19', 'submission_id': '1gtl9e0'}
{'comment': 'YES!!!', 'created': '2024-11-17 20:54:20', 'submission_id': '1gtl9e0'}
{'comment': "It's about fucking time.", 'created': '2024-11-17 20:58:05', 'submission_id': '1gtl9e0'}
{'comment': 'Trump’s going to have to reverse this quickly as soon as he takes office if he wants to help Putin. Politically, I feel like that’s going to be difficult.', 'created': '2024-11-17 21:24:54', 'submission_id': '1gtl9e0'}
{'comment': 'Good 👍 Now we\'ll find out just exactly how good mister "I\'m the best deal maje who can end the war in a day" really is.', 'created': '2024-11-17 22:36:38', 'submission_id': '1gtl9e0'}
{'comment': 'Please let this be just the beginning of Dark Brandon', 'created': '2024-11-17 21:39:09', 'submission_id': '1gtl9e0'}
{'comment': 'Biden is in no f mode now. Trump wants Russia to win. Biden is denying it now. Good for him', 'created': '2024-11-17 21:46:47', 'submission_id': '1gtl9e0'}
{'comment': 'Should have allowed this months ago. Years ago.', 'created': '2024-11-17 21:11:28', 'submission_id': '1gtl9e0'}
{'comment': 'Better late than never. If Ukraine had won the war, democrats might have won the election as well.', 'created': '2024-11-17 21:18:24', 'submission_id': '1gtl9e0'}
{'comment': 'Now is the time!', 'created': '2024-11-17 20:47:43', 'submission_id': '1gtl9e0'}
{'comment': 'Glad to see Biden help Ukraine before Trump takes office. Pretty sure Trump will allow Russia to invade and not help Ukraine .', 'created': '2024-11-17 21:25:50', 'submission_id': '1gtl9e0'}
{'comment': "I, for one, am cool with fighting this proxy war over ukraine. \n\nIf Biden can make significant progress against Putin in the next few months, I'll feel better about Trump being in putins pocket.", 'created': '2024-11-17 21:52:49', 'submission_id': '1gtl9e0'}
{'comment': "It's probably too late. We should have done this ages ago.", 'created': '2024-11-17 23:16:33', 'submission_id': '1gtl9e0'}
{'comment': 'We all saw this coming.', 'created': '2024-11-17 21:07:49', 'submission_id': '1gtl9e0'}
{'comment': 'I just don’t understand why Joe drags out every milestone in this war', 'created': '2024-11-18 05:28:08', 'submission_id': '1gtl9e0'}
{'comment': '#GIVE UKRAINE NUKES!', 'created': '2024-11-18 09:47:00', 'submission_id': '1gtl9e0'}
{'comment': 'In this thread, 100 people saying \xa0variants of two things.\xa0\n\n> Better late than never, or\xa0\n\n> Too little too late.\xa0\n\nAcknowledging this divergence, I think that consensus is telling.\xa0Ukraine should have had the right to strike back at the invaders ages ago.\xa0', 'created': '2024-11-18 15:56:34', 'submission_id': '1gtl9e0'}
{'comment': "He should have allowed this to happen over a year ago. He's forced Ukraine to fight with one arm tied behind it's back for so long.", 'created': '2024-11-17 22:12:35', 'submission_id': '1gtl9e0'}
{'comment': 'Send everything you can and remove all handcuffs before the Putin stooge abandons Ukraine.', 'created': '2024-11-18 00:57:47', 'submission_id': '1gtl9e0'}
{'comment': "He should have done this months ago, when it would have made a difference and they weren't two months away from getting hosed by Trump. His handling of Ukraine has been very poor, we've kept them with one hand behind their backs the entire time, only to acquiesce after months of pleading. Now it's too late. America will have its problems with Trump but the Ukrainians are about to get absolutely hosed. We'll never know if giving them complete free reign to defend themselves would have made a difference. They're going to lose their freedom and their sovereignty, and for many of them possibly their lives as the Russians are allowed to walk all over them.\n\nWe failed them in every possible way.", 'created': '2024-11-18 09:24:36', 'submission_id': '1gtl9e0'}
{'comment': 'Puts Trump in a corner to rein it in later. Good move from Biden to complicate Trump’s Russia relationship.', 'created': '2024-11-18 15:43:34', 'submission_id': '1gtl9e0'}
{'comment': 'The tiktok comments in the ABC News clip about this is pure Russian troll farm and Maga brain rot.', 'created': '2024-11-18 18:17:06', 'submission_id': '1gtl9e0'}
{'comment': "Good. Let's help for 2 months before Vladimir's pet bitch gets into office and murders Ukraine.", 'created': '2024-11-17 21:21:21', 'submission_id': '1gtl9e0'}
{'comment': 'Too little, too late. Like when Biden until after the disastrous first debate to withdraw from the race, dooming Democrats to lose the election. Now he allows Ukraine to use US weapons inside Russia for 2 months until Trump forces Ukraine to lose the war.', 'created': '2024-11-17 23:08:02', 'submission_id': '1gtl9e0'}
{'comment': 'Yessss!\nSlava Ukraine!', 'created': '2024-11-18 07:27:31', 'submission_id': '1gtl9e0'}
{'comment': "Way too late. They could've used this a year ago.", 'created': '2024-11-17 22:02:06', 'submission_id': '1gtl9e0'}
{'comment': 'Should have done it day of or day after the election.', 'created': '2024-11-17 21:23:20', 'submission_id': '1gtl9e0'}
{'comment': 'I suspect this will turn out to be too little too late.', 'created': '2024-11-17 22:06:37', 'submission_id': '1gtl9e0'}
{'comment': 'Here. Fix that Trump.', 'created': '2024-11-17 23:16:38', 'submission_id': '1gtl9e0'}
{'comment': 'Good thing Biden waited 3.5 years to slow walk this decision, just like when he slow walked the Abrams, Bradleys, Patriot missiles, and F-16s...', 'created': '2024-11-17 21:38:20', 'submission_id': '1gtl9e0'}
{'comment': 'Here comes more nude pictures of Melania\n\nPutin probably calling Donny up like “DO SOMETHING”', 'created': '2024-11-18 05:35:53', 'submission_id': '1gtl9e0'}
{'comment': 'Too little. Too late.', 'created': '2024-11-18 10:21:28', 'submission_id': '1gtl9e0'}
{'comment': 'It’s the last hoorah…to end it. Ukraine will strike Moscow is my prediction.', 'created': '2024-11-18 04:17:22', 'submission_id': '1gtl9e0'}
{'comment': 'Too little, too late.', 'created': '2024-11-17 21:34:24', 'submission_id': '1gtl9e0'}
{'comment': 'The ole “cause as much damage and chaos as possible and blame it on the next guy”. Classic.', 'created': '2024-11-18 01:14:47', 'submission_id': '1gtl9e0'}
{'comment': "I'll be honest I didn't have world war 3 on my 2024 bingo card.", 'created': '2024-11-18 03:37:23', 'submission_id': '1gtl9e0'}
{'comment': 'Prolly help Trump at the negotiation table.', 'created': '2024-11-17 21:02:07', 'submission_id': '1gtl9e0'}
{'comment': 'Sadly, we’re getting ready to watch Russia reclaim Ukraine', 'created': '2024-11-17 20:58:22', 'submission_id': '1gtl9e0'}
{'comment': 'God damn it, so now more innocent lives lost with our tax dollars. This place sucks', 'created': '2024-11-18 03:42:56', 'submission_id': '1gtl9e0'}
{'comment': 'This is true. I recently watched the Navalny documentary that CNN made and he had a massive fan base. A lot of Russians were on board with electing him over Putin. Definitely recommend watching that if you haven’t.', 'created': '2024-11-17 22:45:16', 'submission_id': '1gtl9e0'}
{'comment': 'Might’ve been necessary Ukraine has shown a willingness to strike targets within Russia when they have the capability.\n\nGuessing if we gave them everything they want on time we’d be looking at a much larger conflict.', 'created': '2024-11-17 20:32:36', 'submission_id': '1gtl9e0'}
{'comment': "Declare war and refuse to leave office during wartime. Call it the Fuck Mitch McConnell EO, an official action of Lord Emperor Dark Brandon, pre-SCOTUS certified!\n\nGive 'em hell, Joe!", 'created': '2024-11-17 21:21:07', 'submission_id': '1gtl9e0'}
{'comment': 'Make it a properly fulfilled L-E-G-A-C-Y, Joe', 'created': '2024-11-17 21:18:52', 'submission_id': '1gtl9e0'}
{'comment': 'I would have liked it more if it had happened a year ago.', 'created': '2024-11-17 21:46:59', 'submission_id': '1gtl9e0'}
{'comment': 'This is exactly why he did it. Because once Trump gets in he is going to let his buddy Putin do whatever the heck he wants', 'created': '2024-11-18 15:59:17', 'submission_id': '1gtl9e0'}
{'comment': 'just do a fly over and wipe out the russian front line and go home. leave it to rump to explain.', 'created': '2024-11-17 20:52:52', 'submission_id': '1gtl9e0'}
{'comment': 'MAGAs can’t wait to be on the front line fighting for tre45on’s long-standing Russian debts. They love to fight for him.', 'created': '2024-11-17 20:49:50', 'submission_id': '1gtl9e0'}
{'comment': "That *should* be a popular opinion. It certainly would have been before Americans became war weary from two decades of GWB and Rethuglicans' wars, 2001-2021.", 'created': '2024-11-17 21:16:14', 'submission_id': '1gtl9e0'}
{'comment': 'Yeah no. Deploying American troops for a foreign war that has no clear direct effect on us is a great way to make sure Democrats never win an election again. People would be absolutely pissed. It would bury us.', 'created': '2024-11-17 21:17:29', 'submission_id': '1gtl9e0'}
{'comment': 'Biden (or Rump) alone can’t declare war, government 101.', 'created': '2024-11-17 20:49:28', 'submission_id': '1gtl9e0'}
{'comment': 'One russian warehouse with thousands of phones + one Ukrainian missile = peace and quiet on reddit.', 'created': '2024-11-18 09:44:51', 'submission_id': '1gtl9e0'}
{'comment': 'Sadly I don’t think it will be. The will be fewer anti-Russia Republicans in Congress by the time Trump is in office and MAGAs love Russia…', 'created': '2024-11-17 22:44:14', 'submission_id': '1gtl9e0'}
{'comment': 'Glad you got your time machine working!', 'created': '2024-11-17 21:19:22', 'submission_id': '1gtl9e0'}
{'comment': "This is the way I see it, too. I'd rather be dead than Russian. Fuck him up Big Joe!!!", 'created': '2024-11-17 23:37:31', 'submission_id': '1gtl9e0'}
{'comment': 'Exactly.', 'created': '2024-11-17 23:47:41', 'submission_id': '1gtl9e0'}
{'comment': 'Russia always has a final warning or red line, while they themselves have China, North Korea and random parts of Africa supplying troops and weapons for them.', 'created': '2024-11-18 08:00:49', 'submission_id': '1gtl9e0'}
{'comment': "America First isn't supposed to be a partisan slogan, right? I realize it's a difficult concept for conservatives to understand since they've done nothing but divide and obstruct the goodwill of the country since the early 1990s.", 'created': '2024-11-17 21:20:01', 'submission_id': '1gtl9e0'}
{'comment': 'What’s the difference between striking now and 12 months ago? What would’ve been the escalation? North Korean troops? Iranian drones? We have all that, Russia is escalating at will while Ukraine gets held on a leash.', 'created': '2024-11-17 20:41:42', 'submission_id': '1gtl9e0'}
{'comment': '>we’d be looking at a much larger conflict.\n\nwe should have a much larger conflict. Ideally gunshots in Moscow.', 'created': '2024-11-18 06:03:02', 'submission_id': '1gtl9e0'}
{'comment': "That's Trump's problem now. No need to pussy around.", 'created': '2024-11-17 22:25:03', 'submission_id': '1gtl9e0'}
{'comment': 'Larger for who?', 'created': '2024-11-18 15:34:58', 'submission_id': '1gtl9e0'}
{'comment': "Acknowledging this point, how could this be a larger conflict? \n\nThe Russo-Ukraine War has become the largest conventional war in decades. The Russians have already thrown everything they've got at Ukraine. And the Ukrainians are fighting with backs to the wall. 2,000+ tanks have been destroyed. Hundreds of thousands are KIA or MIA. Entire cities like Mariopol are gone...\n\nYou're probably talking about the nuclear risk. But if that risk is true, we should have prioritized deterrence. Not appeasement. Ukraine should have their own atomics, or NATO should promise a no fly zone if Russia criminally uses a nuke. Clear lines worked in the Cold War. They can work now. \n\nWeakness only invited aggression", 'created': '2024-11-18 16:00:29', 'submission_id': '1gtl9e0'}
{'comment': "Honestly, why not? Let's fucking gooooooo Joe!!!", 'created': '2024-11-17 23:32:42', 'submission_id': '1gtl9e0'}
{'comment': "Yeah right. I don't know a single MAGA that isn't all mouth. Sure they're a bunch of blowhards who stockpile weapons, but they're really all cowards.", 'created': '2024-11-17 22:48:45', 'submission_id': '1gtl9e0'}
{'comment': '“No clear direct effect on us.” Have you missed EVERYTHING that has happened since 2016?! Are you really not aware that Russia has essentially co-opted our country? There AREN’T going to BE any more free/fair elections. We’re doing fascism now, thanks to Putin and the basket of deplorables.', 'created': '2024-11-17 22:57:51', 'submission_id': '1gtl9e0'}
{'comment': "Don't even need boots on the ground just lend them our navy and air force. Long range attacks and their boots on the ground with our air support. It does have a direct affect on our foreign policy though. We promised to aid them if they got rid of their nukes. The kept their end, if we don't keep ours Every promise we make is trash. Then we lose hard gained standing with the rest of the world, we lose both hard and soft power that other world leaders will swoop in and grab right up. Too much of that, and we won't be a super power anymore. \n\nThink of it as market share with auto manufacturers. Market share is the hardest to get back after losing it. You drop the ball with shit quality, meanwhile your competition makes a good quality vehicle. Your customer was brand loyal and got burnt on a lemon. So he trys the other guy and gets a good dependable vehicle. You think he's coming back? Nah, it'll take a good while to gain that customer back.", 'created': '2024-11-17 22:21:47', 'submission_id': '1gtl9e0'}
{'comment': 'On the contrary, the SCOTUS has ruled that the POTUS has all-consuming power to do whatever the F they want. Ruled so this year, in fact.\n\n*Dark Brandon, engage.*', 'created': '2024-11-17 21:17:57', 'submission_id': '1gtl9e0'}
{'comment': 'He’s the commander in chief. And Russia declared war on U.S. a long time ago, you just didn’t know it.', 'created': '2024-11-17 22:59:44', 'submission_id': '1gtl9e0'}
{'comment': 'They can’t, but they can sure start one.', 'created': '2024-11-17 21:07:11', 'submission_id': '1gtl9e0'}
{'comment': 'The Russian bot was big mad when they woke up this morning. Small pp vibes= missile or no Big Mac.', 'created': '2024-11-18 12:25:53', 'submission_id': '1gtl9e0'}
{'comment': '', 'created': '2024-11-18 09:46:04', 'submission_id': '1gtl9e0'}
{'comment': 'Because now Russia has been whittled down to the point where they NEED NK troops and can’t really do much.', 'created': '2024-11-17 21:06:38', 'submission_id': '1gtl9e0'}
{'comment': 'Because Biden will be out of office in a few months and there is no telling if the new administration will even want to help them.', 'created': '2024-11-17 22:04:53', 'submission_id': '1gtl9e0'}
{'comment': 'Trump won the election, so it’s either now or never.', 'created': '2024-11-17 22:25:11', 'submission_id': '1gtl9e0'}
{'comment': "you can't bleed your opponent dry if you cut their head off right away.", 'created': '2024-11-17 22:48:18', 'submission_id': '1gtl9e0'}
{'comment': 'Maybe nuking Ukraine?', 'created': '2024-11-18 01:01:02', 'submission_id': '1gtl9e0'}
{'comment': 'Let me be more clear here. When I say no “clear direct effect on us,” I mean no effect that is obvious to your average voter. They can’t even be bothered to understand how tariffs work, and you think they’re going to deep dive into the details of how Russia and Ukraine being at war affects our foreign policy? No. It would turn away voters bad because as far as they see it, we’re killing Americans for a war that has nothing to do with us.\n\nAnd yes, there are reasons why this war is consequential for America, but what you said is not one of them. That is extremely hyperbolic nonsense and is partially why we lost this election — because it’s so absurd that nobody takes it seriously.', 'created': '2024-11-17 23:01:36', 'submission_id': '1gtl9e0'}
{'comment': "Which if Biden had any intention of using said power he would have done so a long time ago. Which is a big part of the reason why SCOTUS gave that power to the president, they knew Biden wouldn't do anything with it, but it laid the groundwork for Trump to.", 'created': '2024-11-18 07:41:36', 'submission_id': '1gtl9e0'}
{'comment': "Which if Biden had any intention of using said power he would have done so a long time ago. Which is a big part of the reason why SCOTUS gave that power to the president, they knew Biden wouldn't do anything with it, but it laid the groundwork for Trump to.", 'created': '2024-11-18 07:41:42', 'submission_id': '1gtl9e0'}
{'comment': 'and these NK troops are addicted to porn', 'created': '2024-11-17 22:43:57', 'submission_id': '1gtl9e0'}
{'comment': 'They aren’t whittled down to no manpower. They’re using NK troops because it’s more convenient than more internal mobilization. If Putin decided it necessary he could mobilize 250k additional troops by Spring.', 'created': '2024-11-17 21:09:28', 'submission_id': '1gtl9e0'}
{'comment': "Trump is being blackmailed by Putin so he'll do as he's told. And the GOP is stocked with sycophants willing to do Trump's every bidding now, so Ukraine is gonna get screwed.", 'created': '2024-11-17 22:47:12', 'submission_id': '1gtl9e0'}
{'comment': 'We know what the orange menace is gonna do..', 'created': '2024-11-17 22:46:36', 'submission_id': '1gtl9e0'}
{'comment': 'Exactly this', 'created': '2024-11-17 23:44:50', 'submission_id': '1gtl9e0'}
{'comment': 'I always wondered what it would be like if you brought an 18th century person to current times and showed them the internet on your phone.\n\nIt looks like they skipped right over the infinite knowledge and went right for the mattress actresses.', 'created': '2024-11-18 04:50:42', 'submission_id': '1gtl9e0'}
{'comment': "You're smelling the propaganda and it became intoxicating. They've lied to you. Putin's already drafting from regular citizens. He ran out of poors, prisoners and refugees to toss into the fire. Russia has the GDP of Florida, you understand that, correct? They cannot survive a war long on multiple fronts.", 'created': '2024-11-17 21:13:34', 'submission_id': '1gtl9e0'}
{'comment': "True, but the goal was to escalate as little as possible. Putin just kept going, even though it doesn't seem like he can win. I think cooler heads were hoping he'd see that and be reasonable, but that's out the window.\n\nThey also have nukes and they're running out options and weapons.. so that's a concern too.", 'created': '2024-11-17 21:18:04', 'submission_id': '1gtl9e0'}
{'comment': '>It looks like they skipped right over the infinite knowledge\n\nTo be fair a lot of the internet\'s hyped up "infinite knowledge" is just bs, misinformation and clickbait crap. At least with porn, these NK soldiers are getting to nut it out lol', 'created': '2024-11-18 08:15:41', 'submission_id': '1gtl9e0'}
{'comment': '[removed]', 'created': '2024-11-17 21:17:32', 'submission_id': '1gtl9e0'}
{'comment': 'We’re on year three of Russia being months from collapse. Meanwhile smaller Ukraine is actually running into manpower issues. Coming time everyone realizes the path we’ve taken doesn’t lead to another Russian front collapse and likely ends with Russia absorbing Donbas and Ukraine enjoying continued independence west of the Donbas.', 'created': '2024-11-17 21:24:25', 'submission_id': '1gtl9e0'}
{'comment': '[removed]', 'created': '2024-11-17 21:30:38', 'submission_id': '1gtl9e0'}
{'comment': None, 'created': '2024-11-17 21:39:17', 'submission_id': '1gtl9e0'}
{'comment': "We don't expect Russia to collapse, and I made no such claim. The longer the war with Ukraine lingers on, along with the long time western sanctions on the Russian economy, it depletes Russia's resources mightily. I can't believe we're pretending otherwise. The best things Russia has going for it are its mountains of compiled Kompromat from being a global criminal empire, the 10-12 year running online psyops campaigns and cozy relationships with other powerful right wing global actors on the stage.", 'created': '2024-11-17 21:28:44', 'submission_id': '1gtl9e0'}
{'comment': '1. As I said OP changed their comment to make mine incorrect\n2. Expending the range of possible mobilization isn’t actual mobilization\n3. Russia has not run out of manpower. They’re running out of convenient manpower. They have millions of people still that they can call if Putin decides it necessary.', 'created': '2024-11-17 21:42:17', 'submission_id': '1gtl9e0'}
{'comment': 'Tre45on’s magats will become Vlad’s troops to bolster his drunken failed army.', 'created': '2024-11-17 23:26:52', 'submission_id': '1gtl9e0'}
{'comment': 'Look, it was all just part of the game. Quit being sore losers because your side didn’t win. /s\n\nJokes aside, it’s weird because the folks are cool outside of politics but it’s this switch that flips where they throw all reason outside the window to bend over backwards for this guy. They somehow think you’re one of the ok people while disparaging people just like you and it makes at least me wonder what side they’ll be on when things go down. They want it all because they don’t feel like they should lose anything while the rest of normal people realize you lose friends and family for telling the truth.\n\nEdit: No, they are not on the side of truth for the person that is getting ready to flip out reading the last sentence. They can’t comprehend they don’t get everything they want, especially when what they support is an irrational extremist.', 'created': '2024-11-17 22:22:04', 'submission_id': '1gtkq50'}
{'comment': 'Some family gonna be surprised come Christmas as well', 'created': '2024-11-17 22:25:09', 'submission_id': '1gtkq50'}
{'comment': 'MAGA trumpers asking, "Why can\'t we come together?"\n\nBecause fascism is an evil thing which runs on intolerance and fear. And your side engaged in an insidious propaganda war to steal democracy from the rest of us. \n\nAs the saying goes, “If there’s a Nazi at the table and 10 other people sitting there talking to him, then you got a table with 11 Nazis.”\n\nSo tell them: "I\'m not a fascist, so I\'m not going to be sitting at a table with you."', 'created': '2024-11-17 20:22:22', 'submission_id': '1gtkq50'}
{'comment': 'It’s basic morals at this point.', 'created': '2024-11-17 22:20:18', 'submission_id': '1gtkq50'}
{'comment': "I invited you to my house, you brought your dog who shat on the rug. You refuse to leave your dog at home, so you're no longer allowed to come to my house. \n\nIt's pretty simple.", 'created': '2024-11-17 22:37:00', 'submission_id': '1gtkq50'}
{'comment': "If there's a table with 11 people and a Nazi joins them, and nobody does anything to unseat them, you're at a table with 12 Nazis.", 'created': '2024-11-17 22:59:01', 'submission_id': '1gtkq50'}
{'comment': 'There’s no “we can agree to disagree and still be friends” when the person you voted for will be responsible for my autistic son losing his IEP, speech therapy, OT for his writing and possibly his access to healthcare if autism is considered a preexisting condition that can get him booted from our insurance (I too have a preexisting condition). You voted to screw my son over and for that we can NEVER be friends again, if we’re blood relatives you’re ☠️ to me. I moved to Florida to relocate for my job, I may have to have my son move back to New York so he doesn’t fall through the cracks, he’s getting all As an Bs thanks to the little extra help he gets, I would hate to see him regress because of the way a bunch of degenerates voted. It’s not fair that those of us who didn’t fuck around have to find out.', 'created': '2024-11-17 22:41:17', 'submission_id': '1gtkq50'}
{'comment': 'Listen i worked with MAGA for 8 years, these people only care about winning, They way they talked about Obama and his wife, decent people dont talk like that. Also she is very correct, when they lost they had a fit and people died, the propaganda about cheating and stolen elections when the only party that stole an election was in 2000s Where Gore was robbed.', 'created': '2024-11-17 21:46:08', 'submission_id': '1gtkq50'}
{'comment': 'Maga has no values or morals, that’s why.', 'created': '2024-11-17 22:44:51', 'submission_id': '1gtkq50'}
{'comment': 'Not interested in dealing with trumpers. Might as well talk to a rock.', 'created': '2024-11-17 22:46:09', 'submission_id': '1gtkq50'}
{'comment': '“We can’t come together.” \n\nSays the ones who: \n\n- Make every conversation and aspect of life about Trump.\n\n- who bully, belittle, and harass people for being different. Or not supporting Trump.\n\n- who spread hateful, violent rhetoric wherever they go. And threaten anyone who doesn’t support Trump.\n\n- beat their meat for Trump and act like it’s a normal thing. \n\n- Worship everything the Bible stands against while using the Bible to justify their hatred\n\nI wonder why nobody can come together.\n\n(Feel free to add to this. Those are the ones off the top of my head.)', 'created': '2024-11-17 23:22:43', 'submission_id': '1gtkq50'}
{'comment': 'Our entire family is no longer going to our parents house for the holidays 💙', 'created': '2024-11-17 21:57:26', 'submission_id': '1gtkq50'}
{'comment': 'He’s a cruel idiot and a racist, sexist, crook. And I think the people that support him mirror many of his qualities. Why should I keep these people in my life?', 'created': '2024-11-17 20:20:08', 'submission_id': '1gtkq50'}
{'comment': "Why can't I come together with trumpers? Because they are 100% ignorant fascist who choose to destroy democracy and sentence hundreds of millions to decades of suffering, starvation, rape and murder.", 'created': '2024-11-17 20:47:44', 'submission_id': '1gtkq50'}
{'comment': "Why tf would I want people in my life who's sole goal is to harm others?", 'created': '2024-11-17 22:08:12', 'submission_id': '1gtkq50'}
{'comment': "I forgave any Trump supporters I knew for voting for him in 2016. I can see how people may have been hoodwinked back then despite there being more than ample evidence he was bad news. However, there was absolutely NO EXCUSE in 2020 to vote for him, especially after how ineptly he and his admin handled COVID and the U.S. having the highest # of deaths in the world due to them botching that plus spreading anti-vax / anti-science conspiracy theories. That by itself should have ended him and his little inner circle permanently. \n\nI was basically all out of fucks to give in 2020 and eliminated all of the MAGAts I knew from my life right them and there, including a large portion of my family and some formerly close friends. And I can wholeheartedly now say that I don't miss one of them. You think I want someone in my life who is fine with rape and pedophilia!? You think I would ever trust someone who makes up stupid excuses to defend a pathological liar, con artist, racist and sex predator? Sorry, they can ALL get fucked. I have absolutely zero respect for them, they will never again be welcome into my life and I want them to stay gone forever.", 'created': '2024-11-18 01:13:51', 'submission_id': '1gtkq50'}
{'comment': 'How does someone vote for a coup plotter? I wouldn’t if my side did it. I don’t care about egg prices', 'created': '2024-11-17 22:21:48', 'submission_id': '1gtkq50'}
{'comment': '🎯🎯🎯🎯 This election has never been about “right vs left”. This election was about Morals, Decency, Integrity, Values vs, hate, racism, lawlessness, agains a plethora of toxic vile evil people who I would not define as humans.', 'created': '2024-11-17 21:42:41', 'submission_id': '1gtkq50'}
{'comment': 'Let’s all take the example of how the Trump supporters moved on and came together after 2020…. Oh wait, not like that?', 'created': '2024-11-18 00:44:02', 'submission_id': '1gtkq50'}
{'comment': 'What a phenomenal summary and a post i will be saving to show my family when i explain to them why im leaving holiday dinners early when the first loudmouth now-openly-racist uncle opens his fat disgusting bigoted mouth about how awesome the next 4 years he thinks will be because he doesnt understand tarif policy either', 'created': '2024-11-17 20:57:38', 'submission_id': '1gtkq50'}
{'comment': 'After 2016 I could have forgiven anyone who voted for Trump, well maybe not without questions and concerns of their judgment. My brother and sister did and I still loved them. But now, after all we know about what he’s done: the criminality, the rape, surrounding himself with white nationalists and oligarchs, and the clear mental decline? Nope. I don’t owe you my respect or my care what happens to you. Thankfully neither of my siblings voted for him in 2024.', 'created': '2024-11-17 23:47:35', 'submission_id': '1gtkq50'}
{'comment': 'Quite frankly, I’ve been giving the MAGA coworkers the side eye. Call me crazy, but as a male, I care a lot about the reproductive rights of my female friends and family.', 'created': '2024-11-17 21:29:12', 'submission_id': '1gtkq50'}
{'comment': 'Going to be saving a lot of money on stamps, cards, and Christmas gifts this season.', 'created': '2024-11-17 23:53:50', 'submission_id': '1gtkq50'}
{'comment': 'There can be no peace with fascists. They want to build fucking concentration camps for fucks sake.', 'created': '2024-11-18 01:19:20', 'submission_id': '1gtkq50'}
{'comment': "I dont see the sides ever coming together again. They're too different morally. There is segment out there that legitimately didn't know the issues and went by the advice on family or friends who did know better. So there are some relatively innocent casualties. I know a couple of friends who are like that. They don't watch any news at all and trust their family members to give them advice. However, like the law, ignorance isn't an excuse.", 'created': '2024-11-17 22:48:45', 'submission_id': '1gtkq50'}
{'comment': 'MAGA coworkers are bad enough.', 'created': '2024-11-17 23:51:00', 'submission_id': '1gtkq50'}
{'comment': 'My closest MAGA family member is an unemployed bum who only talks to me to either spread conspiracy theories or ask for money. Not a big loss.', 'created': '2024-11-18 02:42:47', 'submission_id': '1gtkq50'}
{'comment': 'Screw my MAGA family and all the rest. We will never mend fences.', 'created': '2024-11-17 23:23:14', 'submission_id': '1gtkq50'}
{'comment': 'My parents will never see their grandchildren ever again.', 'created': '2024-11-17 21:53:02', 'submission_id': '1gtkq50'}
{'comment': 'Well, that’s just too bad for them, isn’t it?', 'created': '2024-11-18 03:26:27', 'submission_id': '1gtkq50'}
{'comment': "There's going to be a generation of people, who will never meet their grandparents", 'created': '2024-11-18 05:18:04', 'submission_id': '1gtkq50'}
{'comment': 'I have a loose group of acquaintances, mainly through one guy that I’m closer to. One of them started spouting MAGA nonsense in our WhatsApp group chat after I posted that video of maganazis some of you may have seen (Vincent James, Nick Fuentes etc). We were meant to go on a stag do. I’m out. I’m not associating with scumbags', 'created': '2024-11-18 19:47:06', 'submission_id': '1gtkq50'}
{'comment': 'My entire family other than my spouse, sister, sister in law and her husband are all MAGA. We have gone no contact with the MAGA family—my mother threw a fit and it let me know exactly how they all felt—they didn’t care who their votes affected, they just cared about themselves. I thought I would be more upset having to do this but I just feel relief and peace right now.', 'created': '2024-11-18 00:38:21', 'submission_id': '1gtkq50'}
{'comment': 'This is spot on.', 'created': '2024-11-17 21:30:59', 'submission_id': '1gtkq50'}
{'comment': 'I don’t care if my maga father is dying, he won’t get shit out of me.', 'created': '2024-11-18 01:15:29', 'submission_id': '1gtkq50'}
{'comment': "Gonna be a highly acrimonious holiday season for a lot of folks. I am so tired of propaganda fomenting polarization/division. It's working for sure. Definitely weakens this country.", 'created': '2024-11-18 01:17:39', 'submission_id': '1gtkq50'}
{'comment': 'Spot on. Love Joy Reid.', 'created': '2024-11-17 21:46:39', 'submission_id': '1gtkq50'}
{'comment': "I loved my ignorant relatives before and I love them now.\n\nDon't like them sometimes though.", 'created': '2024-11-18 04:20:06', 'submission_id': '1gtkq50'}
{'comment': 'Sounds about like a normal Thanksgiving around the dinner table', 'created': '2024-11-18 05:31:36', 'submission_id': '1gtkq50'}
{'comment': 'I need help. My dad is maga and mom voted independent. It’s heartbreaking to me they chose these people over their own daughter and grandkids future. I tried reasoning with them with no avail. My mom is oblivious and just said she votes independent because she doesn’t like politics and that it will be a “quick 4 years”Does anyone have any advice on what to say to them? I was very close with my father growing up and it’s so devastating to me :(', 'created': '2024-11-18 05:27:34', 'submission_id': '1gtkq50'}
{'comment': 'I lost friends and family over it. Oh well, we all have choices and choices have consequences. 🤷\u200d♀️', 'created': '2024-11-18 06:10:05', 'submission_id': '1gtkq50'}
{'comment': 'There is the dangerously moronic element of Trump supporters too. Can you trust MAGA Granny not to inject Grandchildren with bleach if they have the sniffles?', 'created': '2024-11-18 08:12:55', 'submission_id': '1gtkq50'}
{'comment': 'I believe that your vote shows who you are. I don’t want any Trump supporters around me. They voted in a dictatorship and America will never be great again . Family or not, just stay out of my life.', 'created': '2024-11-18 05:04:41', 'submission_id': '1gtkq50'}
{'comment': "One thing I'm not going to do is cut people out of my life over how they voted in this election. I love my friends too much to cut them off over something like this. However, I am going to ask them why they voted the way they did so we can address those concerns in 2028", 'created': '2024-11-18 05:09:00', 'submission_id': '1gtkq50'}
{'comment': 'Given that their core value is cowardice they’ll back the 4th Reich till the end.', 'created': '2024-11-17 22:42:49', 'submission_id': '1gtkq50'}
{'comment': "I also think their simple denial of basic facts makes it difficult. How can I possibly have a valuable conversation with you if you're just going to refuse to believe anything that doesn't come out of Trump's mouth?", 'created': '2024-11-17 21:11:54', 'submission_id': '1gtkq50'}
{'comment': 'Amen! 🙏Trumpers showing who they really are inside.', 'created': '2024-11-18 00:28:11', 'submission_id': '1gtkq50'}
{'comment': 'Not at all fair to dogs!', 'created': '2024-11-18 01:33:25', 'submission_id': '1gtkq50'}
{'comment': 'And refused to clean up the mess.', 'created': '2024-11-18 20:40:43', 'submission_id': '1gtkq50'}
{'comment': 'But those eggs though. Totally worth the coup.', 'created': '2024-11-17 22:29:15', 'submission_id': '1gtkq50'}
{'comment': 'Same. But I DO care about women having control of their own eggs.', 'created': '2024-11-17 23:14:48', 'submission_id': '1gtkq50'}
{'comment': 'We need the text of this.', 'created': '2024-11-18 16:12:48', 'submission_id': '1gtkq50'}
{'comment': 'Trump making fun of that handicapped journalist during his 2016 run should have been all anyone needed to know what kind of character he has.', 'created': '2024-11-18 04:46:59', 'submission_id': '1gtkq50'}
{'comment': 'In 2016, most people not from New York didn\'t know much about Trump, could convince themselves that he was "different," would "shake things up." Nobody has that excuse anymore.', 'created': '2024-11-18 20:48:34', 'submission_id': '1gtkq50'}
{'comment': 'Well, not EVERYONE who voted for Trump is a fascist, and there may be a way back for them. A big test will come in 2026, assuming we still have a democracy. If those who allowed themselves to be sucked in come back and help create a Blue Wave, they can be allowed a seat at the table. The MAGAts can suck rotten eggs.', 'created': '2024-11-18 20:57:49', 'submission_id': '1gtkq50'}
{'comment': 'The insane part of this to me is they will tell people you are the one in the wrong for this. They will refuse to acknowledge the truth of this man and what supporting him means.', 'created': '2024-11-18 01:24:24', 'submission_id': '1gtkq50'}
{'comment': 'This is how I feel. I’m so heartbroken', 'created': '2024-11-18 17:30:14', 'submission_id': '1gtkq50'}
{'comment': "They're too stupid to realize that they, too, will be affected.", 'created': '2024-11-18 21:00:26', 'submission_id': '1gtkq50'}
{'comment': "Explain to them you can't make it for Christmas because you're not going to spend your holiday in a house with people who voted against common decency. Period.\n\nYou don't owe them an explanation, but give them that one if you have to.", 'created': '2024-11-18 14:43:12', 'submission_id': '1gtkq50'}
{'comment': "Your mother is ignoring the serious possibility that it might be more than four years. I've never been happier that my son and his girlfriend don't want kids.", 'created': '2024-11-18 21:04:01', 'submission_id': '1gtkq50'}
{'comment': "Right up till the moment when they and their kids are transported to a work camp. It's freaking NUTS! IDGI. 🤷\u200d♀️ 🤷\u200d♂️", 'created': '2024-11-18 01:06:18', 'submission_id': '1gtkq50'}
{'comment': "Yeah. The MAGA Trump worshipers are too far gone. Cult members can't be reasoned with. And we can't deprogram them ourselves.\n\nThe people we need to be talking to are those who voted for Trump, not because they love him, but because they succumbed to the tsunami of misinformation. And those who sat out the election because they're disgusted with politics. We need to try to pierce the veil of confusion they are in.\n\nAnd we need to start working on it now. Because the propaganda machine is going to keep chugging along and radicalizing more people. We need to do our best to keep others from worshiping Trump.", 'created': '2024-11-17 21:16:05', 'submission_id': '1gtkq50'}
{'comment': "Unfortunately, when he does shit like that, it just endears him to them more, even people who have disabled family members or children. He's appealing to extremely juvenile people, who never grew up mentally", 'created': '2024-11-18 05:22:30', 'submission_id': '1gtkq50'}
{'comment': "Most people don't want to admit the ugly truth here: If MAGAts were given the option of choosing between Trump and their own child / grandchild / spouse / parent, etc., they would choose Trump. Literally NO ONE supersedes their cult leader in importance.", 'created': '2024-11-18 01:35:26', 'submission_id': '1gtkq50'}
{'comment': 'I sincerely believe if Trump came for their people, they would literally surrender them. They think they are the Allies. They are not. They are the collaborators.', 'created': '2024-11-18 02:15:28', 'submission_id': '1gtkq50'}
{'comment': "Mike's still not allowed at the big kids table lol", 'created': '2024-11-17 20:51:47', 'submission_id': '1gtk3ds'}
{'comment': 'Shout out to those that voted for this and those Dems that sat on the couch..\n\n', 'created': '2024-11-17 20:13:57', 'submission_id': '1gtk3ds'}
{'comment': 'The look on RFKs face is priceless', 'created': '2024-11-17 19:58:42', 'submission_id': '1gtk3ds'}
{'comment': 'Kennedy called this food literally poison less than a week ago', 'created': '2024-11-17 21:11:44', 'submission_id': '1gtk3ds'}
{'comment': 'Sad and weird men that will dictate policy to our daughters. Fucking nightmare. \n\nI do love how uncomfortable Jr looks having to eat garbage for trumps approval. He hasn’t even started the job and he’s already eating shit for trump.', 'created': '2024-11-17 19:50:41', 'submission_id': '1gtk3ds'}
{'comment': 'Hope they choke on it.', 'created': '2024-11-17 20:24:35', 'submission_id': '1gtk3ds'}
{'comment': 'Please get off X if you haven’t done so already. X relies on users / supporters. Period. No users = No X. It’s possible.', 'created': '2024-11-17 20:39:25', 'submission_id': '1gtk3ds'}
{'comment': 'My sister is a huge RFK fan and loves his "Make America Healthy Again" taglines...\n\nBut the dude is here eating McDonalds. Like my sister who also eats fast food frequently yet always criticizes the FDA and all the chemicals in our food. \n\nMake it make sense.', 'created': '2024-11-17 21:06:03', 'submission_id': '1gtk3ds'}
{'comment': 'Vance enjoying a couch somewhere?', 'created': '2024-11-17 20:33:10', 'submission_id': '1gtk3ds'}
{'comment': "Our new director of health and human services with 3,000 calories worth of Mickey D's in front of him", 'created': '2024-11-17 23:22:39', 'submission_id': '1gtk3ds'}
{'comment': "We're already fat.", 'created': '2024-11-17 21:19:21', 'submission_id': '1gtk3ds'}
{'comment': "I haven't seen that many twats in one picture since I watched that lesbian porno.", 'created': '2024-11-17 22:16:02', 'submission_id': '1gtk3ds'}
{'comment': 'Does anybody else see this photo and their first thought is “how cold and old is that food once it arrives on the plane?! It’s got to be extra disgusting.”\n\nAnd then of course all the other problematic stuff.', 'created': '2024-11-17 22:07:04', 'submission_id': '1gtk3ds'}
{'comment': "why can't Cholesterol work faster?", 'created': '2024-11-17 21:13:36', 'submission_id': '1gtk3ds'}
{'comment': 'A single plane malfunction could save us so much trouble.', 'created': '2024-11-17 21:18:34', 'submission_id': '1gtk3ds'}
{'comment': 'Why is almost everyone in his cabinet a trust fund baby.', 'created': '2024-11-17 21:02:19', 'submission_id': '1gtk3ds'}
{'comment': 'RFK: "you must eat healthy" \nAlso RFK: "this quarter pounder looks delicious"', 'created': '2024-11-17 23:21:46', 'submission_id': '1gtk3ds'}
{'comment': 'The leather(?)Placemats and the folded cutlery checks out against the cheap cardboard containers nestled on glass plates', 'created': '2024-11-17 20:56:49', 'submission_id': '1gtk3ds'}
{'comment': "Why the actual f*¢k do they have gold plated silverware to eat their McDonald's with? \nI guess RFK jr. only cares about what the peasants eat. He can shove any over processed, sugar added fast food he wants to, eh?", 'created': '2024-11-17 22:17:53', 'submission_id': '1gtk3ds'}
{'comment': "RFK, the guy super concerned about artificial ingredients and preservatives in food, seen eating McDonald's\n\nlol. And the best part is you can tell he's not particularly excited about it...", 'created': '2024-11-17 23:27:11', 'submission_id': '1gtk3ds'}
{'comment': 'RFK Jr is going to have the runs if he normally eats healthy 🤣', 'created': '2024-11-17 23:35:48', 'submission_id': '1gtk3ds'}
{'comment': 'Ah Mike you’re not that guy pal', 'created': '2024-11-17 23:50:58', 'submission_id': '1gtk3ds'}
{'comment': 'Fuck everyone on this picture', 'created': '2024-11-18 01:06:58', 'submission_id': '1gtk3ds'}
{'comment': 'Lord. We have to deal with this bs for four years.', 'created': '2024-11-17 21:31:22', 'submission_id': '1gtk3ds'}
{'comment': 'I fixed it 🙃\n\nhttps://preview.redd.it/9umk16qsdn1e1.jpeg?width=3412&format=pjpg&auto=webp&s=c111de53f9d128c1a64229dfd181d806109eb93c', 'created': '2024-11-18 12:43:58', 'submission_id': '1gtk3ds'}
{'comment': 'MAFIA\n\nMake America Fat Idiots Again', 'created': '2024-11-18 19:37:42', 'submission_id': '1gtk3ds'}
{'comment': 'Sadly, the Tangerine Traitor and Shady Vance are not allowed on the same plane in case it goes down.', 'created': '2024-11-17 20:57:54', 'submission_id': '1gtk3ds'}
{'comment': 'Biggest group of losers I’ve ever seen in one picture, other than his dumbass rallies.', 'created': '2024-11-17 23:16:19', 'submission_id': '1gtk3ds'}
{'comment': 'Again? 75% of American adults are overweight or obese right now.', 'created': '2024-11-18 04:10:57', 'submission_id': '1gtk3ds'}
{'comment': "Where is Vance? It's like he's been canceled and replaced with Musk.", 'created': '2024-11-18 05:00:37', 'submission_id': '1gtk3ds'}
{'comment': 'Man all that plane had to do was crash and it would end our problems.', 'created': '2024-11-18 08:43:31', 'submission_id': '1gtk3ds'}
{'comment': 'I have never eaten McDonald’s and felt good about it after.', 'created': '2024-11-17 20:51:12', 'submission_id': '1gtk3ds'}
{'comment': 'All disgusting fucking specimens. That jet plane should crash. Period!', 'created': '2024-11-17 21:08:27', 'submission_id': '1gtk3ds'}
{'comment': 'Where are those Ecoli onions when we need them?', 'created': '2024-11-17 23:09:51', 'submission_id': '1gtk3ds'}
{'comment': 'The pain in RFK’s eyes is very telling', 'created': '2024-11-17 19:30:31', 'submission_id': '1gtk3ds'}
{'comment': 'Billionaires (minus RFK) desperately trying to look relatable to the common folk. I wonder what they really ate after this pic was taken.', 'created': '2024-11-17 20:09:08', 'submission_id': '1gtk3ds'}
{'comment': "Ngl some Mickey D's every now and again is great", 'created': '2024-11-18 00:33:21', 'submission_id': '1gtk3ds'}
{'comment': 'RFK Jr. begins his war on obesity …', 'created': '2024-11-17 20:12:57', 'submission_id': '1gtk3ds'}
{'comment': 'Nice to see RFK sticking to his principles...', 'created': '2024-11-17 20:29:05', 'submission_id': '1gtk3ds'}
{'comment': "I thought Robert didn't like processed foods, wasn't that the main point in his campaign video?", 'created': '2024-11-17 20:46:44', 'submission_id': '1gtk3ds'}
{'comment': 'They seem annoying', 'created': '2024-11-17 20:47:40', 'submission_id': '1gtk3ds'}
{'comment': 'Looks like the brain trust.', 'created': '2024-11-17 21:00:46', 'submission_id': '1gtk3ds'}
{'comment': 'Where’s JD?', 'created': '2024-11-17 21:59:29', 'submission_id': '1gtk3ds'}
{'comment': 'I thought RFK’s thing was making America healthy again? 🤷🏻\u200d♂️', 'created': '2024-11-17 22:04:29', 'submission_id': '1gtk3ds'}
{'comment': 'Hypocrites.', 'created': '2024-11-17 23:00:08', 'submission_id': '1gtk3ds'}
{'comment': 'JD Vance was conned and I love to see it', 'created': '2024-11-17 23:01:55', 'submission_id': '1gtk3ds'}
{'comment': "As the top brass on the new administration you get to ride with the President Elect of the United States in a chartered airliner and there's McDonalds for dinner?", 'created': '2024-11-17 23:02:49', 'submission_id': '1gtk3ds'}
{'comment': 'Does he have an Air Force plane already?', 'created': '2024-11-17 23:08:34', 'submission_id': '1gtk3ds'}
{'comment': "McDonald's. \n \nProud supporter of Donald J Trump.", 'created': '2024-11-17 23:18:09', 'submission_id': '1gtk3ds'}
{'comment': 'Please don’t have a stroke! 🤣', 'created': '2024-11-17 23:20:18', 'submission_id': '1gtk3ds'}
{'comment': 'Donnie Defecator & the Rejects.', 'created': '2024-11-17 23:54:00', 'submission_id': '1gtk3ds'}
{'comment': 'Where’s RFK Jnr?', 'created': '2024-11-17 23:55:23', 'submission_id': '1gtk3ds'}
{'comment': 'Again? It never stopped being fat in the first place!', 'created': '2024-11-18 00:03:47', 'submission_id': '1gtk3ds'}
{'comment': 'I\'m 6\'5" and 240 pounds and I couldn\'t eat a Quarter pounder 10 Nuggets large fries and a drink', 'created': '2024-11-18 00:05:27', 'submission_id': '1gtk3ds'}
{'comment': 'It feels weird to be hoping for heart disease….', 'created': '2024-11-18 00:08:10', 'submission_id': '1gtk3ds'}
{'comment': 'Relatable.', 'created': '2024-11-18 00:12:50', 'submission_id': '1gtk3ds'}
{'comment': "PandaOutOfContext: Why is Steven Colbert's evil twin standing right next to three dilfs of the Apocalypse?", 'created': '2024-11-18 01:13:41', 'submission_id': '1gtk3ds'}
{'comment': 'How can anyone eat when Donald always smells like a soiled 12 hr diaper?', 'created': '2024-11-18 01:23:08', 'submission_id': '1gtk3ds'}
{'comment': 'This is such a weird photo.', 'created': '2024-11-18 01:54:16', 'submission_id': '1gtk3ds'}
{'comment': 'Crash landing please.', 'created': '2024-11-18 03:51:00', 'submission_id': '1gtk3ds'}
{'comment': 'That’s reheated too, they’re on a plane', 'created': '2024-11-18 04:48:56', 'submission_id': '1gtk3ds'}
{'comment': 'They are so low budget. You’d think to convey some power and money they would be shown dining at some ritzy, fine dining, exclusive restaurant or club, but no. Shitty fast food on a plane. Neat. This is what they think is funny and speaks to the common man. Garbage in garbage out.', 'created': '2024-11-18 05:02:06', 'submission_id': '1gtk3ds'}
{'comment': 'I bet they didnt even eat that', 'created': '2024-11-18 08:13:56', 'submission_id': '1gtk3ds'}
{'comment': "McDonald's doesn't officially endorse any political candidate... Ok, but Don jr certainly is showing off the golden arches.", 'created': '2024-11-18 15:19:05', 'submission_id': '1gtk3ds'}
{'comment': 'Where’s the drinks? Nobody is going to eat that.. it’s a publicity stunt.', 'created': '2024-11-17 21:35:42', 'submission_id': '1gtk3ds'}
{'comment': '🤮🤢🤮', 'created': '2024-11-17 20:37:58', 'submission_id': '1gtk3ds'}
{'comment': 'What a gross collection of humans', 'created': '2024-11-17 21:22:48', 'submission_id': '1gtk3ds'}
{'comment': 'Hopefully they keep flying together on Boeing jets.', 'created': '2024-11-17 21:50:27', 'submission_id': '1gtk3ds'}
{'comment': "That's like a lot of food. And free publicity for McDonald's. But like. 2 sandwiches and fries each?", 'created': '2024-11-17 22:17:12', 'submission_id': '1gtk3ds'}
{'comment': 'They are all a complete joke', 'created': '2024-11-17 22:50:13', 'submission_id': '1gtk3ds'}
{'comment': 'The collective I.Q. of this photo is 63 at best.\xa0', 'created': '2024-11-18 04:20:30', 'submission_id': '1gtk3ds'}
{'comment': "So cool, we're into politizing food choices.", 'created': '2024-11-17 20:58:34', 'submission_id': '1gtk3ds'}
{'comment': 'Don’t worry DJ jr you’ll get there', 'created': '2024-11-17 20:11:04', 'submission_id': '1gtk3ds'}
{'comment': 'This isn’t a photo, this is a receipt.', 'created': '2024-11-17 21:25:11', 'submission_id': '1gtk3ds'}
{'comment': "Sometimes I wish pilots weren't trained as well as they were. We could solve our issues real fast like.", 'created': '2024-11-17 21:34:18', 'submission_id': '1gtk3ds'}
{'comment': "I didn't know we were planning a motherfucker convention.", 'created': '2024-11-18 02:49:58', 'submission_id': '1gtk3ds'}
{'comment': 'They can all get fucked. Hope the pilots eat fish and they need to call Striker, but he bails.', 'created': '2024-11-18 03:17:45', 'submission_id': '1gtk3ds'}
{'comment': 'The only one who holds a political office rn.\n\n*Stand behind Jr., Mikey.*', 'created': '2024-11-17 21:16:49', 'submission_id': '1gtk3ds'}
{'comment': '3rd most powerful dude in the country and he has to go sit with trumps grandkids.', 'created': '2024-11-18 04:31:51', 'submission_id': '1gtk3ds'}
{'comment': 'They sat on JD’s couch.', 'created': '2024-11-17 21:02:09', 'submission_id': '1gtk3ds'}
{'comment': 'Busteeeed', 'created': '2024-11-17 21:55:32', 'submission_id': '1gtk3ds'}
{'comment': 'I’m sure he was forced to be in the picture by trump.', 'created': '2024-11-17 22:13:26', 'submission_id': '1gtk3ds'}
{'comment': '“Don’t worry, this is for inspection purposes only…”', 'created': '2024-11-17 20:14:23', 'submission_id': '1gtk3ds'}
{'comment': 'He’s supposed to be a health nut. Drop the health and you’ve got a winner.', 'created': '2024-11-18 16:02:33', 'submission_id': '1gtk3ds'}
{'comment': 'Given his facial expresion, he still believes this food is poison.. lol', 'created': '2024-11-18 21:12:15', 'submission_id': '1gtk3ds'}
{'comment': 'I was hoping for a landing gear failure', 'created': '2024-11-18 00:34:03', 'submission_id': '1gtk3ds'}
{'comment': "I was hoping they gave the pilot a meal and the pilot chokes. Can't heimlich out of a plane crash.", 'created': '2024-11-17 23:55:38', 'submission_id': '1gtk3ds'}
{'comment': 'They don’t have drinks, they aren’t eating. Health nut Bobby Kennedy Jr won’t eat McDonald’s. That’s probably a staffers coke, since it’s placed in a weird spot.. \nThis is a publicity stunt. Like everything else.', 'created': '2024-11-17 21:38:21', 'submission_id': '1gtk3ds'}
{'comment': 'Agreed! I eliminated my account last spring and joined Bluesky.', 'created': '2024-11-17 21:35:56', 'submission_id': '1gtk3ds'}
{'comment': 'I was never on twitter or x so this is easy for me', 'created': '2024-11-18 00:23:10', 'submission_id': '1gtk3ds'}
{'comment': 'I also cut off my Twitter account and on Bluesky. What a relief!', 'created': '2024-11-17 22:02:44', 'submission_id': '1gtk3ds'}
{'comment': 'I haven’t seen or heard much from Vance. It doesn’t seem he’s part of the “in” clique!', 'created': '2024-11-17 20:59:23', 'submission_id': '1gtk3ds'}
{'comment': 'Has anyone seen Vance at all?', 'created': '2024-11-17 22:19:28', 'submission_id': '1gtk3ds'}
{'comment': 'This will never NOT be funny… makes me laugh every time!!', 'created': '2024-11-17 20:55:44', 'submission_id': '1gtk3ds'}
{'comment': 'Hopefully Boeing keeps slipping the inaugural flight of the next Air Force one to 2029.', 'created': '2024-11-17 20:40:21', 'submission_id': '1gtk3ds'}
{'comment': 'And a bottle of Coca Cola lol cherry on top', 'created': '2024-11-17 23:26:35', 'submission_id': '1gtk3ds'}
{'comment': 'So many are saying he’s a hypocrite like he voluntarily decided to eat cold McDonalds, but it’s so much better than that. The man is being forced to eat food he hates, that he thinks is poison, by a man he hates, just to maintain some semblance of the family that rejected him’s dynastic political power. It’s almost Shakespearean and the schadenfrued is far tastier and more sustaining than that meal.', 'created': '2024-11-18 05:22:10', 'submission_id': '1gtk3ds'}
{'comment': "Like all Kennedy grandchildren, RFK Jr. receives income from the family's multibillion-dollar trust.", 'created': '2024-11-18 00:21:53', 'submission_id': '1gtk3ds'}
{'comment': 'Who do you think was sent out to pick up the food?', 'created': '2024-11-18 00:19:28', 'submission_id': '1gtk3ds'}
{'comment': 'VP can’t fly with President. Or in this case, future VP and future President 🤮', 'created': '2024-11-18 00:50:31', 'submission_id': '1gtk3ds'}
{'comment': "Who do you think was sent on the McDonald's run?", 'created': '2024-11-18 00:18:36', 'submission_id': '1gtk3ds'}
{'comment': 'He was on the couch.', 'created': '2024-11-17 23:33:25', 'submission_id': '1gtk3ds'}
{'comment': "It might be Trump's own plane.", 'created': '2024-11-18 00:18:05', 'submission_id': '1gtk3ds'}
{'comment': 'Thankfully, it shouldn’t be difficult to boycott McDonald’s- their food has been shit for a long time. (', 'created': '2024-11-18 01:18:53', 'submission_id': '1gtk3ds'}
{'comment': 'Far right.', 'created': '2024-11-18 00:17:13', 'submission_id': '1gtk3ds'}
{'comment': 'Trump definitely will. Mcdonalds is his favorite food 👍', 'created': '2024-11-17 22:08:07', 'submission_id': '1gtk3ds'}
{'comment': 'On table?', 'created': '2024-11-17 22:29:50', 'submission_id': '1gtk3ds'}
{'comment': 'RFK has a bottle of coke it looks like and Trump looks like he’s got a bottle of Metamucil lol', 'created': '2024-11-17 23:33:08', 'submission_id': '1gtk3ds'}
{'comment': 'Most of them have a burger and a 10 piece nugget plus fries. Trump looks like he’s got a burger and a fish sandwich. Had to look up google images to make sure lol.', 'created': '2024-11-17 23:32:03', 'submission_id': '1gtk3ds'}
{'comment': 'When I was at my fattest (over 300 lbs), my standard McDonalds order was a large quarter pounder meal and a chicken sandwich.', 'created': '2024-11-17 22:31:53', 'submission_id': '1gtk3ds'}
{'comment': 'https://preview.redd.it/w8lust01ui1e1.jpeg?width=828&format=pjpg&auto=webp&s=1ef198e0b148953ccbe28e98796e7e758e3132e8', 'created': '2024-11-17 21:26:05', 'submission_id': '1gtk3ds'}
{'comment': 'https://preview.redd.it/0hp3kgeuwk1e1.jpeg?width=238&format=pjpg&auto=webp&s=1937f218cfe0afc53579466db8b5c0eb35ab49f4', 'created': '2024-11-18 04:25:28', 'submission_id': '1gtk3ds'}
{'comment': 'I bet Trump made him eat it. It\'s called a "humiliation trial" or loyalty test. It\'s something dictators do to the people directly under them. They subject them to some form of humiliation to keep them in line.', 'created': '2024-11-18 07:30:33', 'submission_id': '1gtk3ds'}
{'comment': 'He ate it because he was told to by trump. There’s no way this is just a photo op. Chow down Mr. Fitness', 'created': '2024-11-18 16:04:54', 'submission_id': '1gtk3ds'}
{'comment': 'They need a flight in the Bermuda Triangle.', 'created': '2024-11-18 04:28:30', 'submission_id': '1gtk3ds'}
{'comment': 'Yeah that’s true. Didn’t think of that.', 'created': '2024-11-18 00:46:50', 'submission_id': '1gtk3ds'}
{'comment': 'Someone’s gotta pay for that order 🤣', 'created': '2024-11-18 00:43:53', 'submission_id': '1gtk3ds'}
{'comment': 'Supersize Me (the documentary) is what got me to quit McDonalds for good.', 'created': '2024-11-18 01:24:10', 'submission_id': '1gtk3ds'}
{'comment': 'Is this for sale? Asking for a friend.', 'created': '2024-11-18 04:30:21', 'submission_id': '1gtk3ds'}
{'comment': 'Why the fuck couldn’t Ohio elect this guy for senate?', 'created': '2024-11-17 20:19:51', 'submission_id': '1gtj20s'}
{'comment': 'Refreshing to hear someone speak the damn truth', 'created': '2024-11-17 19:36:18', 'submission_id': '1gtj20s'}
{'comment': 'Dems need to stop calling them "our friends on the other side of the aisle", "my colleagues on the other side", blah blah blah. Start calling them fucking assholes.', 'created': '2024-11-17 23:46:48', 'submission_id': '1gtj20s'}
{'comment': 'This guy is awesome.', 'created': '2024-11-17 19:02:19', 'submission_id': '1gtj20s'}
{'comment': 'I lost respect for him when he became a lobbyist for oil and gas companies after his failed bid for senate. He always seemed like a moderate on climate and willing to at least address some of the issues with fracking, but he has really doubled down on being pro-fracking since he lost and was hired as a lobbyist. Really disappointing.', 'created': '2024-11-17 21:13:13', 'submission_id': '1gtj20s'}
{'comment': '👏👏🏻👏🏼👏🏽👏🏾👏🏿.', 'created': '2024-11-17 21:17:15', 'submission_id': '1gtj20s'}
{'comment': 'We need this guy to run for the Democrats.', 'created': '2024-11-18 02:37:55', 'submission_id': '1gtj20s'}
{'comment': 'the future of the Democratic Party', 'created': '2024-11-17 21:49:43', 'submission_id': '1gtj20s'}
{'comment': 'Many reasons, namely tons of money was spent to elect J.D. Vance by his sugar daddy Peter Thiel but mostly because there are a lot of absolute morons in this state. After all, we just bounced Sherrod Brown, a champion for workers, unions and the middle class for years, for an inexperienced car dealer who had to be sued for ripping off his employees.', 'created': '2024-11-17 20:59:20', 'submission_id': '1gtj20s'}
{'comment': 'I live in Ohio. My daughter calls it North Mississippi.', 'created': '2024-11-17 21:57:38', 'submission_id': '1gtj20s'}
{'comment': 'To be fair, since the oil magnates are gonna be dictating climate policy now, maybe it’s for the best to have a moderating voice as a lobbyist (maybe)', 'created': '2024-11-18 03:00:41', 'submission_id': '1gtj20s'}
{'comment': 'I didn’t know that!!! Wow', 'created': '2024-11-17 21:58:53', 'submission_id': '1gtj20s'}
{'comment': 'Tim Ryan was also the number one recipient of chemical industry money in the House of Representatives in 2022.....', 'created': '2024-11-18 17:51:22', 'submission_id': '1gtj20s'}
{'comment': 'He works for a natural gas lobbiest now...That makes me sad', 'created': '2024-11-18 17:52:02', 'submission_id': '1gtj20s'}
{'comment': "Let's start by prosecuting trump first. And putting him in prison. Then let's investigate vance. Then start prosecuting his cabinet picks.", 'created': '2024-11-17 18:03:35', 'submission_id': '1gtfyyt'}
{'comment': 'This is just ginnin\' up the radical MAGA\'t base. Following legal orders from the civilian Commander-In-Chief on down is the way it\'s supposed to work. "Honoring" Idiot Trump\'s deal with the Taliban gave us a fairly safe exit from an occupation that should never have been started. Our soldiers - all of them - did their jobs in harm\'s way, as usual.', 'created': '2024-11-17 18:49:26', 'submission_id': '1gtfyyt'}
{'comment': 'So many people in the military support Trump. Do you think his threats against the VA, threatening to execute generals he doesn’t like, and cutting veteran benefits will ever make a dent in their support? I’m genuinely curious 🧐.', 'created': '2024-11-17 21:07:31', 'submission_id': '1gtfyyt'}
{'comment': 'A lot of good soldiers are going to exit as soon as they can.', 'created': '2024-11-17 21:15:42', 'submission_id': '1gtfyyt'}
{'comment': 'Hopefully, Biden can preempt some of this revenge agenda.', 'created': '2024-11-17 22:10:52', 'submission_id': '1gtfyyt'}
{'comment': 'Something about leopards eating faces.', 'created': '2024-11-18 07:07:22', 'submission_id': '1gtfyyt'}
{'comment': 'I hope so but won’t hold my breath. He just did a whole ass photo shoot with that orange motherfucker a few days ago 🙄.\n\nI mean…by all means do the transition stuff if you need to but the smiling photo shoot just felt like pouring salt in our collective open wound.', 'created': '2024-11-18 01:34:46', 'submission_id': '1gtfyyt'}
{'comment': 'Almost anything Biden does, Trump can undo.', 'created': '2024-11-18 12:39:06', 'submission_id': '1gtfyyt'}
{'comment': 'I think he was showing how adult presidents act. I think the authorization for Ukraine to use long range missiles in Russia is a tell that he will do his best to preempt while he can.', 'created': '2024-11-18 02:06:31', 'submission_id': '1gtfyyt'}
{'comment': 'Right. But he can’t undo a pardon for those involved in the Afghanistan exit.', 'created': '2024-11-18 13:01:12', 'submission_id': '1gtfyyt'}
{'comment': 'I would have put American boots on the ground the second North Korea showed up.', 'created': '2024-11-18 05:10:17', 'submission_id': '1gtfyyt'}
{'comment': 'We don’t have a choice when Russia is importing North Koreans. We have to show North Korea that when they step in we step up. Obviously Biden has intel on Russians next moves once the anti-christ takes power. I am worried about a lot but mass airstrikes in Ukraine scares me the most. They are going to completely wipe out anyone near Ukraine strongholds as soon as Trump takes power. Hopefully republicans speak up against this.', 'created': '2024-11-18 05:09:05', 'submission_id': '1gtfyyt'}
{'comment': 'Fair point!', 'created': '2024-11-18 03:48:07', 'submission_id': '1gtfyyt'}
{'comment': 'Maybe not, but he can throw them in jail anyway (or worse)', 'created': '2024-11-18 14:29:35', 'submission_id': '1gtfyyt'}
{'comment': 'I’m not sure American troops need to be in there. But take the handcuffs off Ukraine. Let them try to win it in a few months.', 'created': '2024-11-18 05:14:30', 'submission_id': '1gtfyyt'}
{'comment': 'Hope you’re right. This was Putin’s plan B when he couldn’t overrun Ukraine in 30-60 days. Wait for Trump again.', 'created': '2024-11-18 05:13:09', 'submission_id': '1gtfyyt'}
{'comment': None, 'created': '2024-11-17 16:04:18', 'submission_id': '1gtdnm2'}
{'comment': "Trump is going to overplay his hand, just like George W. Bush in 2004. \n\nTrump's coattails are much weaker than GWBs were. He has a single digit majority in the House and a smaller majority in the Senate. There's already in-fighting in Trump's coalition and it's still November.", 'created': '2024-11-17 15:45:26', 'submission_id': '1gtdnm2'}
{'comment': 'There are thousands and thousands of Republican office holders who are warily eyeballing the MAGA craziness Idiot Trump is instigating. These days, the next campaign starts the day after you won - and their Dear Leader is a lame duck already.\n\nThe majority of eligible voters in this country did not vote for him. "Mandate" is just more bullshit.', 'created': '2024-11-17 15:17:45', 'submission_id': '1gtdnm2'}
{'comment': 'I blame republicans for allowing this man to run again', 'created': '2024-11-17 15:26:26', 'submission_id': '1gtdnm2'}
{'comment': 'If this is true, then least we can say that he never got support from the majority of Americans.', 'created': '2024-11-17 16:55:25', 'submission_id': '1gtdnm2'}
{'comment': "GOP should just impeach him. You're not going to squeeze anything else from that orange.", 'created': '2024-11-17 16:18:33', 'submission_id': '1gtdnm2'}
{'comment': 'Demand a recount. Investigate swing states.', 'created': '2024-11-17 20:07:27', 'submission_id': '1gtdnm2'}
{'comment': "The truth doesn't matter\n\n\nThe propaganda wins", 'created': '2024-11-17 16:42:01', 'submission_id': '1gtdnm2'}
{'comment': '"stop the count" MAGA', 'created': '2024-11-17 18:20:19', 'submission_id': '1gtdnm2'}
{'comment': 'It doesn’t matter. It could be one vote and MAGA dipshits won’t feel compelled to “govern” for all.', 'created': '2024-11-17 20:36:55', 'submission_id': '1gtdnm2'}
{'comment': 'Let\'s be honest here. If either party wins by a single electoral vote decided by a single vote, they\'re gonna say it\'s a mandate. \n\nBut the shift, especially in big cities IS real. It would be stupid for democrats to go back to the "well it was 120,000 votes across 6 states" way of thinking ala 2016. New York went from 60/37 Biden to 56/44 Harris. THIS IS A PROBLEM that needs to be addressed.', 'created': '2024-11-17 18:06:08', 'submission_id': '1gtdnm2'}
{'comment': 'The concept of a “mandate” doesn’t matter to Trump and the oligarchs. They have power now and will do what they want. \n\nI really hope enough people with power will keep democracy together long enough to take it back in the midterms.', 'created': '2024-11-17 17:59:39', 'submission_id': '1gtdnm2'}
{'comment': '“Mandate” doesn’t matter. They control three branches of the federal government and most state governments. And clearly a plurality supporting them is enough to have made that happen.', 'created': '2024-11-17 18:05:48', 'submission_id': '1gtdnm2'}
{'comment': 'If a third term becomes possible maybe Obama will come back.', 'created': '2024-11-17 18:16:03', 'submission_id': '1gtdnm2'}
{'comment': "This could be just a break we need to absolutely call for a recall vote or a recount, or to stop Trump from being president altogether. I have a friend who has a petition right now on change.org I'm going to send everybody the link if anybody is interested", 'created': '2024-11-17 22:08:26', 'submission_id': '1gtdnm2'}
{'comment': 'I dont think he cares. He feels mandated by the win and taking both houses of congress. No brakes full speed ahead with his fucked up agenda', 'created': '2024-11-17 18:07:13', 'submission_id': '1gtdnm2'}
{'comment': '49%', 'created': '2024-11-17 16:57:00', 'submission_id': '1gtdnm2'}
{'comment': "Won't matter. They are experts st not letting facts interfere with a good narative.", 'created': '2024-11-17 18:08:32', 'submission_id': '1gtdnm2'}
{'comment': 'Stfu! 49.99% of the voters voting for this shit is nothing to brag about. We suck!!', 'created': '2024-11-17 16:05:40', 'submission_id': '1gtdnm2'}
{'comment': ' About as much of a mandate as Nixon’s win in 1968.', 'created': '2024-11-17 16:14:16', 'submission_id': '1gtdnm2'}
{'comment': "Does that even matter, though? As long as they have the levers of power, they'll do they can. If the goal is to remove power from the legislative branch and place it under the executive (Project 2025), the unpopularity of legislation is immaterial because nobody gets voted out. In short, they'll do what they have the power to do.", 'created': '2024-11-17 18:56:06', 'submission_id': '1gtdnm2'}
{'comment': 'Cool - just in time to be worthless.', 'created': '2024-11-17 17:33:22', 'submission_id': '1gtdnm2'}
{'comment': 'Democrats clearly don’t vote! Just look at the numbers', 'created': '2024-11-17 19:55:02', 'submission_id': '1gtdnm2'}
{'comment': 'So I’d guess this is a major news story. Funny thing is, I have only read about once and that was yesterday.', 'created': '2024-11-17 18:57:14', 'submission_id': '1gtdnm2'}
{'comment': 'They won the House/Senate/White House. Republican overlords are not to be questioned.', 'created': '2024-11-18 14:09:03', 'submission_id': '1gtdnm2'}
{'comment': 'Trump and the GOP have been setting up for the election cheat for 4 years, getting people in place who gladly did whatever it took to steal the election and nobody questioned it. He got the same amount of votes as he did in 2020 ... after pissing off women, swifties, immigrants, Puerto Ricans, Latinos, and well everyone except the rich white people and stupid people? Got it', 'created': '2024-11-18 21:46:36', 'submission_id': '1gtdnm2'}
{'comment': 'Third parties seem to be taking some of those millions. So he might get less than 50% but he still got a plurality of the votes, rather than a majority.', 'created': '2024-11-17 16:31:07', 'submission_id': '1gtdnm2'}
{'comment': 'Most people didn’t vote Trump, but Trump got more votes than any other candidates by a wide margin. \n\nThe American people spoke and they said “We love Donald Trump”…', 'created': '2024-11-17 19:35:16', 'submission_id': '1gtdnm2'}
{'comment': 'This happened last time. They fall in line for the worst outcomes. Remember how they all hated him for Jan 6th and now they think it didn’t happen. And they are still Republican and falling in line. Culpable', 'created': '2024-11-17 16:10:36', 'submission_id': '1gtdnm2'}
{'comment': 'Add to all of that Bush is a moron but Trump is a moron AND has alzheimers, Bush sorrounded himself with warhawks with a target on their mind, Trump sorrounded himself more morons and narcisistic psychopaths, hell 2 of his picks have been already accused of sexual related crimes.\n\nI expect Trump second presidency to be a trainwreck in every single aspect, for the population, for the institutions and for everyone (except the extremely rich, but those always win anyway).', 'created': '2024-11-17 22:08:21', 'submission_id': '1gtdnm2'}
{'comment': 'It’ll be a larger majority in the Senate than in the House, not sure what you’re saying', 'created': '2024-11-17 18:55:26', 'submission_id': '1gtdnm2'}
{'comment': 'Trump is also a Lame duck this term which will only increase the infighting.', 'created': '2024-11-17 19:42:47', 'submission_id': '1gtdnm2'}
{'comment': 'Republicans play by different rules. Biden had to deal with a supreme court that openly hated him, a parliamentarian who did their job for the first time in like a million years just to fuck him, and bullshit “this actually needed 60%” rules. Republicans will have a very tiny majority and somehow twist that into their unchecked holy rule.', 'created': '2024-11-18 00:44:56', 'submission_id': '1gtdnm2'}
{'comment': "I think perhaps you're still suffering from a Normalcy Bias that got us into this mess in the first place. There's no lame duck if there's no intent to ever leave office.", 'created': '2024-11-17 16:58:55', 'submission_id': '1gtdnm2'}
{'comment': 'Except that the majority of voters did vote for him. The ones that didn’t vote - also didn’t vote for Kamala. That signals to me that they didn’t like either candidate - Hump won the popular vote - I don’t think there is any other way to interpret that. He gained a million or so votes. The Dems lost millions - to be that says more about democrats than the republicans- the democrats have a lot of fixing to do if\nThey expect to win elections- any elections if they want to stamp out trumpism.', 'created': '2024-11-17 15:52:19', 'submission_id': '1gtdnm2'}
{'comment': 'I blame everyone for allowing the traitor to run again.', 'created': '2024-11-17 16:57:44', 'submission_id': '1gtdnm2'}
{'comment': "I blame Biden for not making sure that he wouldn't. \n\nWith perfect 20/20 hindsight, Biden should have offered Trump a pardon in a way that would ensure that he was no longer eligible to run again under the 14th Amendment. It's not justice and it's deeply unsatisfying, but it would have solved a major political problem.", 'created': '2024-11-17 15:48:29', 'submission_id': '1gtdnm2'}
{'comment': 'His cabinet members and VP would still keep their jobs. A successful recall could prevent any of them from ever taking office.', 'created': '2024-11-18 02:57:52', 'submission_id': '1gtdnm2'}
{'comment': 'That would require establishment dems to have a spine.', 'created': '2024-11-17 21:54:54', 'submission_id': '1gtdnm2'}
{'comment': "No, he won the electoral college. Just elected without a mandate means he is not the popular winner. It won't change anything. We have had a lot of Presidents win without the popular vote, Trump, both Bush for sure.", 'created': '2024-11-18 13:43:50', 'submission_id': '1gtdnm2'}
{'comment': 'I’m sure they definitely would in this recall.', 'created': '2024-11-18 02:55:25', 'submission_id': '1gtdnm2'}
{'comment': 'I think it only dipped below 50% in the past day.', 'created': '2024-11-18 02:55:53', 'submission_id': '1gtdnm2'}
{'comment': 'So a majority still wanted someone else other than Trump.', 'created': '2024-11-17 16:38:03', 'submission_id': '1gtdnm2'}
{'comment': 'Just like Hitler. Mr Plurality.', 'created': '2024-11-17 18:59:29', 'submission_id': '1gtdnm2'}
{'comment': 'AP has him back at 50.1%', 'created': '2024-11-17 16:37:16', 'submission_id': '1gtdnm2'}
{'comment': 'No, they mostly said "We hate Women, Latinos, and Trans folk, and we ain\'t going to let a Brown Woman tell us what to do, even if that means electing sociopathic despot."', 'created': '2024-11-17 21:04:38', 'submission_id': '1gtdnm2'}
{'comment': "I don't think the point is whether he won or not. He did so pretty well. But, still just enough to flip the swing states in his favor. However, it wasn't a landslide election. The last one that could conceivably be called a landslide was Obama's 2008 victory. But, Trump and Republicans will have narrow control of all three branches of government.", 'created': '2024-11-17 19:56:22', 'submission_id': '1gtdnm2'}
{'comment': "> The American people spoke and they said “We love Donald Trump”…\n\nThat's absolutely NOT what him getting the pop vote means, by any stretch of the imagination.", 'created': '2024-11-17 20:44:11', 'submission_id': '1gtdnm2'}
{'comment': 'Nobody cares about "culpability". \n \nAll second term Presidents are lame ducks from day one. Senators who are up for re-election in six years know that Trump can\'t help them.', 'created': '2024-11-17 16:20:11', 'submission_id': '1gtdnm2'}
{'comment': "Yep I wouldn't trust any Republican still in office to turn on Trump. They'll resist a little, act all moderate and then still vote with him.", 'created': '2024-11-17 16:23:17', 'submission_id': '1gtdnm2'}
{'comment': "I keep thinking about the guy that said if Trump says to jump 3 feet high then we jump 3 feet high. I would love to show a slideshow of the people that jumped when he said last time and how they're all convicted, shunned or bankrupt now.", 'created': '2024-11-17 18:55:34', 'submission_id': '1gtdnm2'}
{'comment': "Yup. Democrats tend to fall apart while the GOP just falls in line. It's the unfortunate reality.", 'created': '2024-11-17 16:20:54', 'submission_id': '1gtdnm2'}
{'comment': 'Pitching 53-47 Senate as somehow a bad thing for Trump is some serious copium.', 'created': '2024-11-17 19:57:37', 'submission_id': '1gtdnm2'}
{'comment': 'How is he a lame duck with all chambers of Congress?', 'created': '2024-11-17 19:58:02', 'submission_id': '1gtdnm2'}
{'comment': 'Yep. Dear Leader For Life ... and then Barron Trump.', 'created': '2024-11-17 22:45:17', 'submission_id': '1gtdnm2'}
{'comment': 'No, it says more about the media that used non-stop attacks on Biden and Harris while giving free pass after free pass to Trump. Why does everyone want to forget this and just blame Democrats instead? Are we just going to pretend that the media completely stopped all "too old" claims when Biden dropped out? All of a sudden, they stopped caring about being "too old".\n\nWhen people OVERWHELMINGLY support Harris\' policies, yet somehow believe that she DOESN\'T support those policies, that\'s not a problem with the Democratic platform. That is the messaging. You can say Dems didn\'t do a good job messaging, which is fair. But all this talk about Dems "losing their way" or "losing the working class" is just bullshit. (I know you didn\'t specifically say that, but I feel I still need to point that out)', 'created': '2024-11-17 16:32:35', 'submission_id': '1gtdnm2'}
{'comment': "There are still votes being counted. We don't know about the popular yet.", 'created': '2024-11-17 15:59:05', 'submission_id': '1gtdnm2'}
{'comment': 'Plurality, not majority', 'created': '2024-11-17 18:59:53', 'submission_id': '1gtdnm2'}
{'comment': 'I blame Garland', 'created': '2024-11-17 16:10:06', 'submission_id': '1gtdnm2'}
{'comment': 'People would’ve blown tf up if Biden issued Trump a pardon.\n\nLong term storytelling, that’d be great, but at the time, Democrats would’ve turned on him and anybody related to him hard.', 'created': '2024-11-17 17:21:08', 'submission_id': '1gtdnm2'}
{'comment': 'True', 'created': '2024-11-17 15:59:52', 'submission_id': '1gtdnm2'}
{'comment': 'Yes, but we live in a first past the post world.', 'created': '2024-11-17 19:16:44', 'submission_id': '1gtdnm2'}
{'comment': 'Which begs the case for rank choice voting!!', 'created': '2024-11-17 20:15:40', 'submission_id': '1gtdnm2'}
{'comment': 'This reminds me of the governors race in Maine, where LePage won with something like 37% of the vote.', 'created': '2024-11-18 04:23:54', 'submission_id': '1gtdnm2'}
{'comment': 'Not surprising. Happy cake day!', 'created': '2024-11-17 21:26:44', 'submission_id': '1gtdnm2'}
{'comment': None, 'created': '2024-11-17 18:14:43', 'submission_id': '1gtdnm2'}
{'comment': 'It’s absolutely a landslide considering a convicted felon who tried yo steal the last election with mob violence shouldn’t have come close to winning, or even being nominated.', 'created': '2024-11-17 19:57:44', 'submission_id': '1gtdnm2'}
{'comment': 'Then it’s very convenient for them that they all get to “joke around” with Trump about finding a way to get him a third term because of how singularly great his second term is going to be', 'created': '2024-11-17 16:38:48', 'submission_id': '1gtdnm2'}
{'comment': 'Dems are actually the much more disciplined party *generally* at this point. Republicans spend most of their time flailing around in abject disarray and petty, personality-driven infighting. They’re just uniquely capable at falling in line at exactly the times that a bit of dissent and disarray would actually help ward off a bad outcome for the country and democracy', 'created': '2024-11-17 16:41:52', 'submission_id': '1gtdnm2'}
{'comment': "The Republicans don't really fall in line, though. They stab each other and screw each other over every second they get. They were fist fighting in the House over petty disagreement with House Majority.\n\nDemocrats are passive and will gladly sway whoever they think is the best candidate and fuck over anyone who may be a great candidate over someone they either don't like their policies or goes against their lobbying practices.. and constantly makes terrible judgement calls.\n\nIt's an absolute joke that after stepping down, the amount of influence Nancy Pelosi had. She has been the crutch of that party or at least one of them.\n\nDems and Red Morons are opposite sides of the same greedy coin.", 'created': '2024-11-17 22:41:57', 'submission_id': '1gtdnm2'}
{'comment': 'Some people call any second term prez a lame duck', 'created': '2024-11-17 20:50:45', 'submission_id': '1gtdnm2'}
{'comment': "Means you can't run for re-election", 'created': '2024-11-17 20:45:09', 'submission_id': '1gtdnm2'}
{'comment': 'This is not being talked about enough.', 'created': '2024-11-17 17:48:58', 'submission_id': '1gtdnm2'}
{'comment': 'Yup, they allowed lies and propaganda without fact checking in order to make $$ from the egregious shit the anti christ flung daily.', 'created': '2024-11-17 17:51:25', 'submission_id': '1gtdnm2'}
{'comment': 'If they overwhelmingly supported Harris that would have been reflected in the election- they didn’t and they don’t. I mean I voted for her but she never articulates any “plans” - I seriously doubt she would have won a primary if we had one - is she “better” than trump. Yes - to any rational non Tim foil hat wearing crazy - but that clearly doesn’t win elections. We learned nothing from 2016. We had 4 years to find and vet candidates- bud didn’t. instead biden was forced out 100 days before rbe election- trump has been campaigning for the last 10 years- Harris 100 days is so. It’s incredible what she did in those 100 days but it was never any match for the trump cult.', 'created': '2024-11-18 08:40:54', 'submission_id': '1gtdnm2'}
{'comment': "Does it matter? Won't change anything", 'created': '2024-11-17 16:07:42', 'submission_id': '1gtdnm2'}
{'comment': 'Ok. But We lost. Hard facts. We lost the White House, the senate and the house. The people clearly spoke- let’s see if they like what they voted for.', 'created': '2024-11-18 08:47:07', 'submission_id': '1gtdnm2'}
{'comment': 'Hence, BideN for failing to replace his milquetoast ass.', 'created': '2024-11-17 17:48:25', 'submission_id': '1gtdnm2'}
{'comment': 'Sometimes, all options are bad.\n\nWe would have gotten a Republican in 2024. We would not have gotten Trump.', 'created': '2024-11-17 17:37:17', 'submission_id': '1gtdnm2'}
{'comment': 'That doesn’t make sense. In a head to head race, he has more votes than her and would therefore always be above 50%. Including 3rd party votes is the only way he could potentially fall below 50% and still win the popular vote.', 'created': '2024-11-17 18:41:56', 'submission_id': '1gtdnm2'}
{'comment': 'By that definition even a narrow loss is a landslide victory for him.', 'created': '2024-11-17 20:00:09', 'submission_id': '1gtdnm2'}
{'comment': 'Trump is more likely to be dead or in a memory care facility in 2028 than run for President. There is nowhere near the votes to repeal the 22nd Amendment. \n\nOf all the things to worry about, this is pretty low on the list.', 'created': '2024-11-17 16:44:59', 'submission_id': '1gtdnm2'}
{'comment': "People say they're joking around but I know they're serious about it", 'created': '2024-11-17 17:21:31', 'submission_id': '1gtdnm2'}
{'comment': 'That works for Presidents who respect the Constitution', 'created': '2024-11-17 20:51:10', 'submission_id': '1gtdnm2'}
{'comment': 'Do you really think Trump will go out peacefully?', 'created': '2024-11-17 20:45:54', 'submission_id': '1gtdnm2'}
{'comment': "No and everyone who says the votes are still coming is acting like it's all democratic votes.", 'created': '2024-11-17 16:22:02', 'submission_id': '1gtdnm2'}
{'comment': "Did they? Narrow majorities in a worldwide anti incumbent year? \n\nThis isn't 2008, or 2012, or 2018 \n\nThey barely won", 'created': '2024-11-18 08:57:53', 'submission_id': '1gtdnm2'}
{'comment': 'You are correct and I have deleted my inaccurate comment. The "total" value on Cook shows total votes including 3rd party and I incorrectly read it as the sum of Trump+Harris.', 'created': '2024-11-17 18:58:06', 'submission_id': '1gtdnm2'}
{'comment': 'It seems like they don’t need to repeal the 22nd, they just need someone else to run as top of the ticket with Trump as VP and say explicitly that the elected President will resign on day one and make Trump president', 'created': '2024-11-17 16:49:44', 'submission_id': '1gtdnm2'}
{'comment': "He'll go either way.", 'created': '2024-11-17 22:13:44', 'submission_id': '1gtdnm2'}
{'comment': 'Do you really think that at the core of the earth is liquid candy?', 'created': '2024-11-17 21:02:49', 'submission_id': '1gtdnm2'}
{'comment': "Most of them are in California, so a majority should be dems increasing her popular . It won't change the election, but It may change the popular vote.", 'created': '2024-11-17 16:24:01', 'submission_id': '1gtdnm2'}
{'comment': 'Right now, a lot of people here are in the denial stage of grief. Some will come out of it soon. If not, the future is bleak.', 'created': '2024-11-17 20:26:07', 'submission_id': '1gtdnm2'}
{'comment': 'But they won none the less and that’s all that counts now.', 'created': '2024-11-18 21:00:09', 'submission_id': '1gtdnm2'}
{'comment': 'Qualifications for VP are the same as President. \n\nAlso, there is the same dead/memory care facility problem.', 'created': '2024-11-17 16:53:51', 'submission_id': '1gtdnm2'}
{'comment': 'Trump would NEVER run for VP. Even if it was temp or just an act. His ego is far too big for that.\n\nThis thought neglects the reality that Republicans turn on each other like nothing. They are so blood thirstyv- they want that seat', 'created': '2024-11-17 22:32:32', 'submission_id': '1gtdnm2'}
{'comment': 'Trump has been elected to president twice, and thus unqualified for a third term which means he’s also unqualified to be VP. For your scenario to take shape, he’d need to become speaker and have POTUS/VP resign.', 'created': '2024-11-17 22:04:26', 'submission_id': '1gtdnm2'}
{'comment': 'And what is the other way?', 'created': '2024-11-17 22:23:40', 'submission_id': '1gtdnm2'}
{'comment': "You do realize that even if all the remaining California votes were for Harris it still wouldn't give her popular vote, right?", 'created': '2024-11-17 16:26:13', 'submission_id': '1gtdnm2'}
{'comment': "Specifically they're in heavily Latino districts, and we know Latinos swung toward Trump in a big way. We'll know soon enough.", 'created': '2024-11-17 18:17:45', 'submission_id': '1gtdnm2'}
{'comment': "The margins in the legislature matter. There wasn't some giant clammering for Trumpism.", 'created': '2024-11-18 21:01:08', 'submission_id': '1gtdnm2'}
{'comment': "And age-related dementia doesn't fuck around. It gets worse. He'll have better care than any of us poor suckers will ever see, but it won't stop his decline.", 'created': '2024-11-17 17:45:13', 'submission_id': '1gtdnm2'}
{'comment': "By force if he won't leave when his term's over.", 'created': '2024-11-17 22:28:50', 'submission_id': '1gtdnm2'}
{'comment': "I can dream until it's done.", 'created': '2024-11-17 16:26:58', 'submission_id': '1gtdnm2'}
{'comment': 'Doesn’t matter. They won. Margins are irrelevant-', 'created': '2024-11-18 22:45:25', 'submission_id': '1gtdnm2'}
{'comment': 'Not only does it get worse, it snowballs. A slow trickle becomes a flood. \n\nTrump may very will make it all four years, even though his brain will be mush by then end. The real fight will be over who holds the puppet strings.', 'created': '2024-11-17 17:59:52', 'submission_id': '1gtdnm2'}
{'comment': 'We need to accept that he will not face any consequences legally for his action and instead be greatful he is old and deteriorating. \n\nHis punishment will be fading into obscurity. The worst thing that can be done', 'created': '2024-11-17 22:36:38', 'submission_id': '1gtdnm2'}
{'comment': 'I highly doubt that will happen. All he has to do is declare martial law - likely due to the "invasion" on the border - and suspend the election indefinitely. People are too complacent to put up arms and the state run media will assure people this is good.', 'created': '2024-11-17 22:30:37', 'submission_id': '1gtdnm2'}
{'comment': 'They do because of how legislatures work', 'created': '2024-11-18 22:52:52', 'submission_id': '1gtdnm2'}
{'comment': 'Right, his cronies are the real issue.', 'created': '2024-11-17 20:28:16', 'submission_id': '1gtdnm2'}
{'comment': 'You can think like that. I remember hearing this after he lost in 2020.', 'created': '2024-11-17 22:36:19', 'submission_id': '1gtdnm2'}
{'comment': 'Not when they vote straight party line. And in the past that’s exactly how it went down. If they have the majority in the house, senate and supremely court I just don’t see any good coming our away — at least for the next 2 years until we maybe have a chance at the midterms- but we have to win elections- right now we aren’t doing that.', 'created': '2024-11-18 23:03:02', 'submission_id': '1gtdnm2'}
{'comment': ".. That's exactly what happened in 2020? That just proves my point. It didn't work only because it was disorganized. They've had years to plan it.", 'created': '2024-11-17 22:37:20', 'submission_id': '1gtdnm2'}
{'comment': "Have you seen the Republican caucus'a behavior lately? Did you forget already how they couldn't get their act together for the first two years of the Trump admit and were overwhelmingly tossed?", 'created': '2024-11-18 23:06:11', 'submission_id': '1gtdnm2'}
{'comment': "It didn't work because it was a gang of criminals and him. A new president will take office in 2029, and he'll be gone or forcibly taken out.", 'created': '2024-11-17 22:42:32', 'submission_id': '1gtdnm2'}
{'comment': "Again, they've literally been planning on how to stay in power. It's part of P2025.", 'created': '2024-11-17 23:11:28', 'submission_id': '1gtdnm2'}
{'comment': "P2025 is about executive authority (through executive departments). He can't rewrite the Constitution.", 'created': '2024-11-17 23:17:08', 'submission_id': '1gtdnm2'}
{'comment': "He doesn't have to rewrite the Constitution, he literally already has broken it and wasn't punished even after he wasn't in power. Liberals really think just because it's illegal it can't be done.", 'created': '2024-11-17 23:18:21', 'submission_id': '1gtdnm2'}
{'comment': 'I will never understand how anybody with a daughter could vote for a sexual predator. Contempt for women is the only explanation I can come up with. \n\nAlso, I believe NYT interviewed a couple dozen Trump supporters about his initial cabinet selections. Nobody seemed to care about Matt Gaetz’s history either. Shocking.', 'created': '2024-11-17 14:18:21', 'submission_id': '1gtcwce'}
{'comment': 'Probably correct, but I’m having a little trouble reconciling how women continue to win elected congressional, legal, and gubernatorial seats across the nation for years. I think there were even a few states in 2024 where female democrats won some state and local races while the presidential votes went to orange Julius. Odd, to say the least.', 'created': '2024-11-17 14:24:26', 'submission_id': '1gtcwce'}
{'comment': "That's obvious. Just look at the ridiculous double standard that harris was faced with", 'created': '2024-11-17 15:54:05', 'submission_id': '1gtcwce'}
{'comment': 'When you ask them about it, they say it is the economy, but Harris would have been way better for the economy, so it comes down to her being a black woman.', 'created': '2024-11-17 18:17:40', 'submission_id': '1gtcwce'}
{'comment': 'If you were in a swing state you would have seen all the ads blaming her for everything rump caused and screaming that the world is on fire. all total lies but EVERY commercial break on TV and radio was another on from a billionaire PAC.\n\nall these BS articles totally miss the point that billionaires STOLE this election with BS.', 'created': '2024-11-17 16:34:06', 'submission_id': '1gtcwce'}
{'comment': "250 years of male rule, and it's totally just a coincidence that the only two female candidates lost, right? \n\nAnd the conversation post election is how men don't feel they're being listened to enough. \n\nIt really is a deep, ugly problem.", 'created': '2024-11-17 17:16:36', 'submission_id': '1gtcwce'}
{'comment': 'You misspelled “religion”\n\nThat’s the real root of US misogyny. \n\nIf women could finally come to grips with this, reject biblical patriarchy, stop attending churches, and demand an equal voice in marriages and culture, we would be done with half-assed asshole males like Donald Trump', 'created': '2024-11-17 19:57:22', 'submission_id': '1gtcwce'}
{'comment': 'I’ve said for years that this country hates women and children. People balk because they individually love a woman or a child, but when you look at the culture and the policies of this country, you’ll see where the priorities lay - and it isn’t with women or children.', 'created': '2024-11-17 14:35:08', 'submission_id': '1gtcwce'}
{'comment': "Folks, are you forgetting about Gen Z men? They've been literally groomed by the right-wing media to view women as property! (Nick Fuentes, anyone?)\n\nNearly 3/4 of Gen Z men voted for Trump in 2024. They are the ones who pushed him over the top in the swing states.\n\nDon't forget about Arizona Latinos! They're now a majority Trump demographic.\n\nSo yes, mysogny _is_ a central, and ***growing*** issue. I live in Arizona in the thick of it. Why do you think Kari Lake lost, but Trump won by 5 points when they have the exact same policies? \n\nPlace your bets on the next Arizona governor being a man, regardless of party.\n\nI fucking hate what media has done to America.", 'created': '2024-11-17 17:28:06', 'submission_id': '1gtcwce'}
{'comment': 'Misogyny is deeply rooted in humanity, dating back to the origin myths of many cultures, from Pandora to Eve.', 'created': '2024-11-17 15:22:47', 'submission_id': '1gtcwce'}
{'comment': 'I heard many older white women say they just wouldn’t vote for a woman for president. So forward thinking 😖What a travesty they helped deal to this country w/Trump taking calls from foreign countries as he picks his cabinet and weakens this country.\n\nhttps://www.rawstory.com/trump-phone-calls/', 'created': '2024-11-17 15:14:05', 'submission_id': '1gtcwce'}
{'comment': 'The Presidency is the last holy grail for white, Christian, American men.\n\nThat’s why they had such a meltdown when Obama was elected. \n\nOnce they lose exclusivity to that, they will be relegated to being equal to people they currently feel superior to…women and POC.\n\nIt isn’t about only women, it’s about anyone who would have been denied membership in a 1950s country club.', 'created': '2024-11-17 14:53:02', 'submission_id': '1gtcwce'}
{'comment': "It's very true. If you notice all the noxious anti-trans ads were ALL about trans women in women's restrooms--NONE of them were about trans men in men's rooms. Also, all the republican comments about Kamala's intelligence level and qualifications for the role were totally sexist. Lastly, many recent legal immigrants come from very traditional cultures---Muslim, API, Latin America---where women are not traditionally seen as leaders. Hence the strong showing of men of these cultures voting trumpy. The patriarchy has strong roots.", 'created': '2024-11-17 14:31:53', 'submission_id': '1gtcwce'}
{'comment': 'Racists and misogynists are alive and well. All those small counties of thousands of people in rural America are literally a living time capsule of what America was like before civil rights. MOST people who are here and in cities NEVER interact with these people beyond a passing moment. These are the people who will say the N word casually, and routinely disrespect women and view them as servants/property. The problem is they don’t leave those small towns almost ever and we sure as shit are never going there. So the culture war is never going to end unless something changes.', 'created': '2024-11-17 16:00:02', 'submission_id': '1gtcwce'}
{'comment': 'It’s just the massive, constant, propaganda from the owners of the media. Right wing fascists are winning by controlling the messages people are hearing. Misogyny is just one wedge available to the enemies of democracy.', 'created': '2024-11-17 17:18:19', 'submission_id': '1gtcwce'}
{'comment': "Yes, there's an enormous problem with deeply rooted misogyny in the US.", 'created': '2024-11-17 22:15:23', 'submission_id': '1gtcwce'}
{'comment': 'Fascism is about a strong male leader. And it radicalizes people using intolerance. \n\nSo yeah. Since there are more women than there are any other group the fascist targeted, makes sense that misogyny and sexism was rampant on the right. \n\nBut the "underlying factor" here that drove the radicalization is *fear.* Fear of the other. Fear of change. \n\nSo make sure you aren\'t having trouble seeing the forest for the trees. Because fascists were going to use that fear of other, *whatever the other might be.*', 'created': '2024-11-17 20:00:24', 'submission_id': '1gtcwce'}
{'comment': 'The argument I keep hearing is "I\'m not voting for someone just because she\'s a woman."\n\nIt\'s very hard to convince them that the real issue here is voting for someone *despite* being a woman. They just don\'t get it.', 'created': '2024-11-17 15:20:58', 'submission_id': '1gtcwce'}
{'comment': 'I’ve always thought this because the world is changing. 2 of my grandkids graduated, this year and then one the previous year , 2023. Of the kids who graduated with high honors the girls outnumbered the boys 2:1. The global economy makes skills more important than gender or race. And men are terrified of competing against women because they are starting to lose. Nothing is more devastating to a pack animal than losing your herd status.\xa0', 'created': '2024-11-17 15:49:35', 'submission_id': '1gtcwce'}
{'comment': 'Misogyny incoming from all corners. All of them.', 'created': '2024-11-17 15:58:10', 'submission_id': '1gtcwce'}
{'comment': 'I don’t disagree that misogyny is perhaps more prevalent in Republicans, but I think some of your reasoning is off.\n\nAs to the woman president thing, I think there’s more to this than Republicans will never vote for a woman so we will never have one. Republicans generally don’t vote Democrat anyway.', 'created': '2024-11-17 15:43:57', 'submission_id': '1gtcwce'}
{'comment': "It's very true. If you notice all the noxious anti-trans ads were ALL about trans women in women's restrooms--NONE of them were about trans men in men's rooms. Also, all the republican comments about Kamala's intelligence level and qualifications for the role were totally sexist. Lastly, many recent legal immigrants come from very traditional cultures---Muslim, API, Latin America---where women are not traditionally seen as leaders. Hence the strong showing of men of these cultures voting trumpy. The patriarchy has strong roots.", 'created': '2024-11-17 14:31:59', 'submission_id': '1gtcwce'}
{'comment': 'Both sexism and racism are rooted in the belief that a particular subset of people, white men, are at the top of a pyramid of power and rights.', 'created': '2024-11-17 14:13:28', 'submission_id': '1gtcwce'}
{'comment': 'I am hesitant to blame it too much on her gender because that makes it a bigger barrier for other women. Of course misogyny plays a part, but I think populism and the economy played a bigger role. I still think a woman can win in the future', 'created': '2024-11-17 14:30:25', 'submission_id': '1gtcwce'}
{'comment': 'Did the Barbie movie not teach us anything!?! Maybe we need a more serious movie about the topic.', 'created': '2024-11-17 14:37:26', 'submission_id': '1gtcwce'}
{'comment': 'The world sucks and the dem party should have known that and run someone else. They asked to lose by running harris. I get thats wrong but you have to play the game', 'created': '2024-11-18 01:56:57', 'submission_id': '1gtcwce'}
{'comment': 'Politics, workplace, legal systems are all deeply invested in keeping women in inferior roles, paying us less in both salary and perceived value.', 'created': '2024-11-18 16:53:42', 'submission_id': '1gtcwce'}
{'comment': '4B movement.', 'created': '2024-11-17 17:04:41', 'submission_id': '1gtcwce'}
{'comment': 'It’s the misogyny, Stupid.\n\nI hope the Democratic Party has learned their lesson and I hope they don’t run another woman nominee until Republicans first win with a woman just to give America permission to vote for a woman for a change. How many times do we have to learn our lesson?', 'created': '2024-11-17 20:14:47', 'submission_id': '1gtcwce'}
{'comment': 'Look, I voted for Kamala because I can’t stand Trump but do people honestly think that people voted for Trump because they didn’t want a female minority as president? Why can’t people come to terms with the fact that she just ran a shit campaign or she wasn’t the right candidate? She didn’t even bother to distance herself from Biden, she said she wouldn’t have changed a thing. To top it off, she had zero coherent plans for anything ie she couldn’t talk about them eloquently. Trumps plans are also shit to be clear, but at least he had some that he could let rip at any time he was asked. Stop making excuses for her, half the country isn’t racist or misogynist, she just sucked.', 'created': '2024-11-17 16:04:11', 'submission_id': '1gtcwce'}
{'comment': 'This is the mentality that lost the election. It can’t always be the white mans fault. It’s not misogyny that lost the election. \n\nWe ran a candidate that failed her primary horrifically, and expected the American people to vote for her after putting her up without a primary. Our own party didn’t think she was a capable candidate, how were we going to convince non registered democrats? It was the least democratic thing this party and possibly any party has ever done.\n\nWe chose to spend hundreds of millions on celebrities and concerts in place of boots on the ground. We need to change our message instead of vilifying one demographic.\n\nSeriously wake up and learn, we lost this election.', 'created': '2024-11-17 17:02:02', 'submission_id': '1gtcwce'}
{'comment': "I think you described part of the problem. If people can't think of respecting women unless they have a daughter, then we definitely have a misogyny issue.", 'created': '2024-11-17 15:53:58', 'submission_id': '1gtcwce'}
{'comment': 'Millions of women voted the same way.', 'created': '2024-11-17 15:23:30', 'submission_id': '1gtcwce'}
{'comment': 'Because some folks don’t truly care', 'created': '2024-11-17 15:27:05', 'submission_id': '1gtcwce'}
{'comment': 'Most of those races for senate won by Dem women were won with the same number of votes Harris got basically. \n\nSo eithere was a large group of orange Jesus fans that simply didn’t vote for anything down ballot. I assume those are people that generally never cared about voting. \n\nBut in my opinion if Harris would have been the same but a man, she would have won.', 'created': '2024-11-17 14:43:31', 'submission_id': '1gtcwce'}
{'comment': 'I think when it comes to presidential authority - it’s like absolute power. And that’s a bit difficult for people to accept.', 'created': '2024-11-17 14:42:15', 'submission_id': '1gtcwce'}
{'comment': 'Secondary roles as compared to POTUS-', 'created': '2024-11-17 23:34:16', 'submission_id': '1gtcwce'}
{'comment': "It's the glass ceiling.", 'created': '2024-11-17 16:57:12', 'submission_id': '1gtcwce'}
{'comment': 'They do like women as long as they are not intelligent enough to talk back. Women are fine as long as they are subservient and keep producing children.', 'created': '2024-11-17 15:34:13', 'submission_id': '1gtcwce'}
{'comment': 'It’s very important to maintain the facade and insist upon this because if we admit the truth, women are a social underclass who actually do need concessions made to be equal and children are essentially just property of their parents then we’d have to actually address these issues. “If we knew we’d have to be responsible” so insisting upon a false reality of equality and care along side denying access to things that could prove this is a false reality, education, enshrines this cultural misogyny into systematic misogyny - also why none of these “voters don’t even know what that means” arguments don’t hold any water, that’s literally a symptom of the problem, not ever being taught about reality, real struggles and systemic roadblocks applied only to specific populations is purposeful, it allows the problem to exist publicly in a completely normalized and acceptable way, the literal definition of systemic misogyny relies on people not knowing it’s there, baked into the system', 'created': '2024-11-17 19:46:13', 'submission_id': '1gtcwce'}
{'comment': 'Many of those women have been brow beaten by their husbands. My dad and mom both 90 years old.', 'created': '2024-11-17 23:30:16', 'submission_id': '1gtcwce'}
{'comment': 'They still have a lot of "last holy grails" honestly.\n\nDespite women making up a majority of the population, men hold over 70% of seats in both chambers of Congress and a majority of the Supreme Court.\n\nOf the roughly 11,000 people who have ever served in the House, only 378 have been women. Of the nearly 2,000 who have served in the Senate, only 60 have been women. We\'ve had a total of 6 women Supreme Court justices out of 115. 49 governors out of some 2,500.\n\nI can understand the argument that some men fear being "left behind" in American pop culture, academia, etc, but to argue that they\'re being sidelined in politics or government is absolutely insane.', 'created': '2024-11-17 18:48:11', 'submission_id': '1gtcwce'}
{'comment': 'The irony is a lot of those people who champion White supremacy today wouldn’t be considered White back in the day or at least not the “right type” of White anyway.\xa0', 'created': '2024-11-17 15:12:34', 'submission_id': '1gtcwce'}
{'comment': "So it's ironic that anyone deported to Mexico will get a woman President after all.", 'created': '2024-11-17 16:59:47', 'submission_id': '1gtcwce'}
{'comment': 'I strongly think toxic masculinity is a big deal for conservative folks. Republicans would never vote for a democrat for sure - but the line of attack is more from the standpoint of misogyny.', 'created': '2024-11-17 15:49:29', 'submission_id': '1gtcwce'}
{'comment': 'Yes absolutely. That’s the hard reality and white men privilege is probably one of the most deep rooted problems.', 'created': '2024-11-17 14:15:41', 'submission_id': '1gtcwce'}
{'comment': 'I would love to be proved wrong', 'created': '2024-11-17 14:42:49', 'submission_id': '1gtcwce'}
{'comment': "I think that sexism/racism are lazy excuses from liberals that blame the voters instead of blaming the party for not appealing to them. \n\nYou go into an election with the voters you have, not the voters you wish you had. That's democracy. \n\nJoe Biden spent 3.5 years doing basically nothing to counteract the firehose of falsehoods coming from right wing media, and then decided to run for re-election when he simply didn't have the capability to run the campaign he needed to run. He DID get a lot done and he DID do a good job, but that's not good enough. Kamala Harris wasn't going reverse that in 15 weeks. She had an army of consultants trying to turn her into Obama 2.0, with no awareness that America in 2024 didn't want another Obama. \n\nJoe Biden, Nancy Pelosi, Chuck Schumer, and the Clintons need to go to the retirement home. Barack Obama needs to build houses like Jimmy Carter or fight HIV/AIDS like George W. Bush and move on from politics.", 'created': '2024-11-17 15:39:21', 'submission_id': '1gtcwce'}
{'comment': 'I think a woman can win, she’ll just be a Republican.', 'created': '2024-11-17 17:21:56', 'submission_id': '1gtcwce'}
{'comment': "They didn't listen to the actual story of the barbie movie. They just saw it as an attack on men an didn't listen to one word of the message. That's why people are so mad about DEI stuff in my opinion. They think the white race or men are being attacked but it's not about them at all. It's just their insecurities an its really fuckin annoying.", 'created': '2024-11-17 15:39:01', 'submission_id': '1gtcwce'}
{'comment': 'YES- for many people with no economic issues, this is exactly the reason they voted Trump. Occam’s Razor-', 'created': '2024-11-17 22:09:22', 'submission_id': '1gtcwce'}
{'comment': '^ the Republican propaganda runs deep in this one!', 'created': '2024-11-17 19:48:08', 'submission_id': '1gtcwce'}
{'comment': 'What about the women for Trump? Yikes!', 'created': '2024-11-18 02:08:27', 'submission_id': '1gtcwce'}
{'comment': 'I think misogyny is baked into our culture. Women can be more aggressive enforcers of it in my experience.', 'created': '2024-11-17 15:50:54', 'submission_id': '1gtcwce'}
{'comment': 'Because some women are the foot soldiers of the patriarchy. \n\nI know SA survivors who voted for Trump. \n\nNothing makes sense. Trying to understand it all will just make you infuriated and confused.', 'created': '2024-11-17 15:45:14', 'submission_id': '1gtcwce'}
{'comment': 'I returned to the states about 15 years ago and noticed the extraordinary prevalence of the term "creepy." Creep this creep that, the accusation/description had become the common way to describe a woman\'s uncomfortable feelings. Now American women have twice voted majority in favor of Trump, a creep among creeps. I don\'t know what this means, but it means something.', 'created': '2024-11-17 16:49:22', 'submission_id': '1gtcwce'}
{'comment': 'Actually I think that was the case. People went to the polls to vote for Trump and no one else.', 'created': '2024-11-17 15:08:06', 'submission_id': '1gtcwce'}
{'comment': 'Maybe so.', 'created': '2024-11-17 14:49:58', 'submission_id': '1gtcwce'}
{'comment': 'A ton of people vote for presidential elections and nothing else', 'created': '2024-11-17 19:38:14', 'submission_id': '1gtcwce'}
{'comment': 'Trump won by getting a bunch of low engagement/low information voters to the polls. They voted for Trump and nobody else. Opinion polls didn\'t pick them up because they didn\'t pass the "likely voter" screen.\n\nSexism is a lazy excuse for what happened. Democrats spent their time and energy preaching to the choir of suburban liberals and the mythical Cheney-Harris voters. Republicans were finding people who didn\'t usually vote and engaged them with small words and bumper sticker simple slogans. \n\nDemocrats talked about "bodily autonomy" and "reproductive rights". Millions of voters responded with "What is bodily autonomy?" and "What does reproductive rights mean?"', 'created': '2024-11-17 15:26:18', 'submission_id': '1gtcwce'}
{'comment': 'Except it’s literally not, the constitution defines the safeguards in a balanced government that prevents the presidency from being abused… at least until now. \n\nBut I suppose it would be too much expect an average MAGA voter to actually know how government works, and I shouldn’t be surprised they voted to burn the constitution and weaken the nation. Oh well, at least the billionaires will be fine.', 'created': '2024-11-17 14:45:40', 'submission_id': '1gtcwce'}
{'comment': 'I do understand that happens definitely as unfortunate as it is, but, jeez a big percentage was plain old misogyny.', 'created': '2024-11-17 23:39:34', 'submission_id': '1gtcwce'}
{'comment': 'I think they value traits present in “toxic masculinity” and proclaim it.\n\nThere’s female Republican governors and other elected officials. I’m sure many Republicans have a predisposition to prefer male candidates, but I’m not sure they’d never elect a female president. What if Ivanka Trump ran? /s kind of\n\nEdit: Ivanka not the other one', 'created': '2024-11-17 16:00:03', 'submission_id': '1gtcwce'}
{'comment': 'They’re children. Here I am hoping I get accepted into my Bachelors of Social Work program because I’m a cis white gay male lol. I’m hoping they DEI me because there aren’t many men that go into social work and I’m gay so I feel I bring a different view point to the co-hort. I have a 3.6 GPA so hopefully that’s high enough. \n \nTotally went off topic there. Sorry.', 'created': '2024-11-17 16:23:20', 'submission_id': '1gtcwce'}
{'comment': 'What did i say that was incorrect or propaganda? It’s really scary because you can’t contemplate how labeling everything propaganda is negatively impacting the democratic party. \n\nThis is the problem, instead of learning, listening and having an adult discussion we allow children to just scream propaganda and never actually deal with the issues that lost the election. It’s just “oh white mans fault” and never actually have an adult discussion about what went wrong. \n\nYou unironically will never comprehend that it’s people acting like you online, and in person that are single biggest recruiters of the republican party. I truly believe that y’all are doing it on purpose for some strange reason.', 'created': '2024-11-17 20:01:43', 'submission_id': '1gtcwce'}
{'comment': 'I think that most American voters, including many women, care less about this than most liberals think they do.\n\nA lot of voters don\'t even know what "misogyny" means.', 'created': '2024-11-17 17:13:49', 'submission_id': '1gtcwce'}
{'comment': 'For a lot of people, their bottom line matters more than principles and dignity. You have to have a certain amount of privilege to make these things a priority in the voting booth. \n\nA significant number of Trump voters hate Trump, but miss the pre-COVID economy that they associate with Trump.', 'created': '2024-11-17 15:51:59', 'submission_id': '1gtcwce'}
{'comment': 'The "anti-creep" vote is baked in. The decision makers were concerned with their bottom line.\n\nPerhaps Trump\'s personal weaknesses were the only thing that prevented a Reagan-sized landslide?', 'created': '2024-11-17 16:55:45', 'submission_id': '1gtcwce'}
{'comment': 'Which also explains Democratic overperformance in special elections and midterms.', 'created': '2024-11-17 15:30:44', 'submission_id': '1gtcwce'}
{'comment': 'Yeah. You and I and others here know the president is not the ultimate decider of everything, but they don’t seem to know this. I mean, these are people who blamed Joe Biden for high gas and grocery prices ffs. They are ignorant about how the world and economics work.', 'created': '2024-11-17 14:53:04', 'submission_id': '1gtcwce'}
{'comment': 'IDK, if your average Senator or Gov was convicted of a crime and pending 3 other criminal cases relating to the election and their affiliated position would they have easily been re-elected? I’m not so sure. Also, I’m not sure if Trump had been an incumbent with his current felonies if he would have been re-elected.', 'created': '2024-11-17 23:37:35', 'submission_id': '1gtcwce'}
{'comment': 'Right. The misogyny is not as clear cut as "not voting for a female" as there are clearly misogynistic women reps, but more so the candidate does not mesh with their misogynistic and patriarchal views of what women should do.\n\nEdit: typo', 'created': '2024-11-17 16:58:58', 'submission_id': '1gtcwce'}
{'comment': 'Is she running against a white, somewhat conservative male from a swing state?', 'created': '2024-11-17 23:29:06', 'submission_id': '1gtcwce'}
{'comment': " And fish don't know they're wet", 'created': '2024-11-17 19:21:49', 'submission_id': '1gtcwce'}
{'comment': 'That doesn’t mean they’re not impacted by it, being ignorant of something makes you especially vulnerable to it explicitly because you don’t know what it is/can’t see it so you can’t avoid it or do better', 'created': '2024-11-17 19:37:06', 'submission_id': '1gtcwce'}
{'comment': "The part that I'm missing is why do they think he will be able to bring that back? He inherited Obama's economy and then raised inflation with tariffs and his trade war bs, then the pandemic happened. A 5th grader could grasp this. Do they have Covid induced amnesia? Are they not smarter than a 5th grader?", 'created': '2024-11-17 19:59:49', 'submission_id': '1gtcwce'}
{'comment': "What bottom line? Economists showed that Harris' economic plans were better than Trump's. Morality and character absolutely matters in a leader. Why the fuck would you want someone in charge of a country when they don't actually give a fuck about the people they're leading? \n\nWe just handed someone who wanted to use the military on civilians, is a felon, and who tried to overturn the election results one of the most powerful positions in the US with now criminal immunity. Are you really going to sit here and say principles and dignity doesn't matter? I wonder if the Germans thought the same thing about Hitler. But hey, let's fuck this entire country and the minorities in it for cheaper products that are actually going to become more expensive due to tariffs. \n\nI fucking hate everyone who voted for Trump, and I hope they get exactly what they voted for. These people deserve to get fucked by their apathy and indifference towards the suffering of innocent people", 'created': '2024-11-17 23:37:39', 'submission_id': '1gtcwce'}
{'comment': "Still, I think it's notable that American women have become so brittle about uncomfortable feelings and yet they voted in majority numbers in favor of the creepiest man.", 'created': '2024-11-17 17:06:58', 'submission_id': '1gtcwce'}
{'comment': 'Trump has made a career out of exploiting the ignorant and gullible. He was doing that long before he entered politics. \n\nWhen he first ran, I said that he was a first rate con man running against a bunch of third rate con men.', 'created': '2024-11-17 15:25:07', 'submission_id': '1gtcwce'}
{'comment': 'There’s a reason why “Are you smarter than a fifth grader?” was a thing.\n\nMost people assume correlation implies causation.\xa0', 'created': '2024-11-17 20:45:50', 'submission_id': '1gtcwce'}
{'comment': 'Live in information bubbles that spew propaganda 24/7. And some are not smarter than a 5th grader', 'created': '2024-11-18 00:07:11', 'submission_id': '1gtcwce'}
{'comment': 'People believe that Trump will be better for their bottom line than Harris and they don’t trust economists.\n\nMost of them are graduates of the Facebook School of Economics, but their votes count the same as everyone else’s.\n\nTrump is a con man and very good at it.', 'created': '2024-11-18 00:21:18', 'submission_id': '1gtcwce'}
{'comment': 'There\'s a difference between the loudest and most prominent voices and the majority.\n\nMost Americans, men and women, are concerned about their bottom line. They also know little to nothing about economics. So it\'s kind of like a blind person choosing their favorite color.\n\nTalk to the average American voter about misogyny and the most common answer you will get is "What is misogyny?"', 'created': '2024-11-17 17:09:24', 'submission_id': '1gtcwce'}
{'comment': 'Sorry, can you expand on this? What do you mean by "brittle about uncomfortable feelings"? What\'s wrong with calling someone a creep when they make women and girls uncomfortable?', 'created': '2024-11-17 20:06:50', 'submission_id': '1gtcwce'}
{'comment': "So basically they're ignorant idiots. I think it's disappointing that people don't see the value or responsibility of being an informed voter. Our country is fucked", 'created': '2024-11-18 00:42:45', 'submission_id': '1gtcwce'}
{'comment': 'The same year that I returned Stateside there was a story in the local newspaper about a "creeper" on a local hiking trail. It turned out it was just a guy from Eastern Europe trying to talk to women. You can\'t do that here, and it\'s deeply isolating. American women are proud of their "agency," but they\'re not going to initiate conversation because they\'re women. It\'s another facet of our cultural loneliness. The problem with the term "creepy" is that it\'s ubiquitous now, an all-purpose condemnation for anything a guy does that somebody doesn\'t like. It\'s hateful and it\'s intimidating. You know who doesn\'t worry about that? Actual creeps. And, judging by the white-woman vote among other evidence, it\'s the actual creeps who get in. So apparently this kind of sensitivity is not even protective. It seems like this obsession with "creepy" separates people for no good reason.', 'created': '2024-11-17 21:24:12', 'submission_id': '1gtcwce'}
{'comment': 'That’s one of the weaknesses of democracy.\xa0', 'created': '2024-11-18 03:59:49', 'submission_id': '1gtcwce'}
{'comment': "Indeed. Kinda hard to disagree with Socrates when he said uneducated people shouldn't be allowed to vote. Of course, I wouldn't support barring people for it, nor would I trust the government to enforce that. But it's hard not to agree with it in principle, if not in practice", 'created': '2024-11-18 04:19:49', 'submission_id': '1gtcwce'}
{'comment': 'Marx observed that when France got universal manhood suffrage, the people promptly elected the profoundly mediocre Louis Napoleon Bonaparte, who later declared himself Emperor Napoleon III.\xa0', 'created': '2024-11-18 05:30:30', 'submission_id': '1gtcwce'}
{'comment': 'Man, his eyebrows have been migrating north ever since.', 'created': '2024-11-17 10:49:28', 'submission_id': '1gt8lrz'}
{'comment': 'POS BASTARD!!', 'created': '2024-11-17 10:59:10', 'submission_id': '1gt8lrz'}
{'comment': 'He looks good in his natural habitat', 'created': '2024-11-17 16:51:08', 'submission_id': '1gt8lrz'}
{'comment': 'Matt Gaetz before he turned into Liberace', 'created': '2024-11-17 14:02:59', 'submission_id': '1gt8lrz'}
{'comment': 'https://preview.redd.it/gnxox8ufrh1e1.jpeg?width=1162&format=pjpg&auto=webp&s=dbd840ac402ea680c91ca95ae5fcdb5aeca1fce8\n\nApproved by DJT', 'created': '2024-11-17 17:49:46', 'submission_id': '1gt8lrz'}
{'comment': 'What/when was this for?', 'created': '2024-11-17 17:11:27', 'submission_id': '1gt8lrz'}
{'comment': 'Man, I miss the days when Republicans would get outraged by criminals in politics, instead of voting for them.', 'created': '2024-11-18 02:10:47', 'submission_id': '1gt8lrz'}
{'comment': "It's the new red", 'created': '2024-11-17 18:15:16', 'submission_id': '1gt8lrz'}
{'comment': "He's got that psychopathic stare.", 'created': '2024-11-17 23:23:29', 'submission_id': '1gt8lrz'}
{'comment': 'Matt Gaetz before he turned into Liberace', 'created': '2024-11-17 14:02:59', 'submission_id': '1gt8lrz'}
{'comment': 'Stupid move on Trumps part. This is a huge gift to Democrats.', 'created': '2024-11-17 20:45:56', 'submission_id': '1gt8lrz'}
{'comment': 'Looks way too much like Anthony Soprano', 'created': '2024-11-17 22:36:32', 'submission_id': '1gt8lrz'}
{'comment': 'Need to lock up Elon too', 'created': '2024-11-17 23:16:01', 'submission_id': '1gt8lrz'}
{'comment': 'How is this not blatantly racist? Wtf OP', 'created': '2024-11-17 16:46:40', 'submission_id': '1gt8lrz'}
{'comment': 'DUI in 2008.\n\n[https://www.yahoo.com/news/fact-check-real-mug-shot-231500758.html](https://www.yahoo.com/news/fact-check-real-mug-shot-231500758.html)\n\n[https://www.snopes.com/fact-check/matt-gaetz-mug-shot/](https://www.snopes.com/fact-check/matt-gaetz-mug-shot/)', 'created': '2024-11-17 17:50:34', 'submission_id': '1gt8lrz'}
{'comment': 'It’s from a DUI in 2008', 'created': '2024-11-17 17:51:16', 'submission_id': '1gt8lrz'}
{'comment': 'Republicans’ outrage metric:\n\nDemocrat wearing tan suit, outraged.\n\nRepublican sex offender, no outrage.', 'created': '2024-11-18 16:39:07', 'submission_id': '1gt8lrz'}
{'comment': 'Truly dead eyes', 'created': '2024-11-18 05:56:33', 'submission_id': '1gt8lrz'}
{'comment': 'It’s based on the tv show about incarceration.', 'created': '2024-11-17 16:53:33', 'submission_id': '1gt8lrz'}
{'comment': '', 'created': '2024-11-17 19:50:15', 'submission_id': '1gt8lrz'}
{'comment': 'Bro, what are you even on about?', 'created': '2024-11-18 02:11:57', 'submission_id': '1gt8lrz'}
{'comment': 'Ah, thank you!', 'created': '2024-11-17 17:59:15', 'submission_id': '1gt8lrz'}
{'comment': 'Classy guy. Thank you!', 'created': '2024-11-17 17:59:31', 'submission_id': '1gt8lrz'}
{'comment': 'Yes I know what the show is. If you can’t see what OP is implying with this post..', 'created': '2024-11-17 16:55:27', 'submission_id': '1gt8lrz'}
{'comment': '“Orange is the new black”. Posts a mugshot of a man in orange. What’s that imply? The previous guy was black. It’s a racist stereotype.', 'created': '2024-11-18 09:07:29', 'submission_id': '1gt8lrz'}
{'comment': 'I think the OP is referring to the show, not the minority. Although I could see how you could come to this conclusion.', 'created': '2024-11-17 17:52:40', 'submission_id': '1gt8lrz'}
{'comment': 'Orange is the new black was a television series about prison. It had nothing to do with race.', 'created': '2024-11-18 14:12:45', 'submission_id': '1gt8lrz'}
{'comment': 'Sigh. I know what the show is. I’m talking about the joke OP made. I honestly don’t really care to explain again so let’s just leave it at that.', 'created': '2024-11-18 15:58:31', 'submission_id': '1gt8lrz'}
{'comment': None, 'created': '2024-11-17 05:28:43', 'submission_id': '1gt50dx'}
{'comment': "I'd forgotten about that. Seems like decades ago.", 'created': '2024-11-17 05:01:01', 'submission_id': '1gt50dx'}
{'comment': 'They are absolutely correct and it meant absolutely loyalty to Donald Trump think of how Paul manafort implanted this on Donald Trump to be like the Filipino client Ferdinand Marcos Sr.', 'created': '2024-11-17 05:08:01', 'submission_id': '1gt50dx'}
{'comment': 'And also distract from whatever shenanigans are happening in the background.', 'created': '2024-11-17 05:46:44', 'submission_id': '1gt50dx'}
{'comment': 'At this point, trump is trolling the entire country with these clowns in positions that could literally destroy the U.S. He\'s a bitter and resentful little bitch who wasn\'t loved enough by mommy and daddy, wasn\'t willed enough money and wasn\'t loved enough by his country, so he\'s going to make sure that we all suffer the way "that he has". Trump is a narcissistic and evil sociopath, and has the mind of a child who will kick down a beautiful sandcastle on the beach, if he thinks someone else built it.', 'created': '2024-11-17 08:14:42', 'submission_id': '1gt50dx'}
{'comment': 'Rachel, and Nicole are 💯. So is Joy and Ari.', 'created': '2024-11-17 06:26:29', 'submission_id': '1gt50dx'}
{'comment': "Donald Trump is going to become the first President in American History to have a majority of his cabinet picks rejected... by a Senate his own party controls.\n\nIt almost seems like he's setting himself up to be impeached by his own party.", 'created': '2024-11-17 05:38:51', 'submission_id': '1gt50dx'}
{'comment': 'I think the upside to an obviously weak cabinet is that we get to watch it all fall apart now. Unfortunately, Trump is way too lazy to deal with any of this and just picks his BFFs - he should have let Vance decide since Vance is basically going to be playing president.', 'created': '2024-11-17 06:21:14', 'submission_id': '1gt50dx'}
{'comment': "This is Trump's flex move - he wants us scared. Don't give him that. You all know what to do when a bully antagonize you.\n\nTruth is, these people will have no fucking idea what to do when they are in. Just a bunch of hateful dicks throwing their bullshit at the wall and hope it sticks. Republicans are, have been, and always will be - spare parts.", 'created': '2024-11-17 12:25:59', 'submission_id': '1gt50dx'}
{'comment': 'Yeah, I agree, but I think its end goal is to bury the lead on Sec Def. \n\nTrump doesn’t care about DOJ or Intelligence or Health - so he’ll put anyone in there. If they f it, he doesn’t care. If they do something he likes, he’s ok. If they do something he doesn’t like, he’ll purge them. The more dramatic the better, because it is a red herring to spins the news cycle to the weirdos. \n\nHe is does care and is fixated on our military and wants to have military parades like Putin, desperately wants to use it on his own people (2020), and to be able to fire generals (his Hitler’s generals comment). Now he has a like minded guy who has equally f’d up morals in play.', 'created': '2024-11-17 05:40:39', 'submission_id': '1gt50dx'}
{'comment': "Im not an USA citizen so I dont have much knowledge about the army, is the army loyal to the democratic system?, are they loyal to the constitution? are most of the top brass trustworthy?is the army relatively independent from politicians? and more importantly, are middle rank officers trustworthy? (in case of rebellion or coup d'etat soldiers tend to listen to their middle rank officers instead of generals, if the general gives an order and the middle officer doesnt follow through soldiers are more inclined to obey their direct superior).\n\nBecause the way Trump and his goons are going the army may be what seals the deal with USA becoming Rusia 2.0 or Trump second term just being a bump in the road.", 'created': '2024-11-17 12:17:30', 'submission_id': '1gt50dx'}
{'comment': "I think Trump took offense how often Democrats said he was unfit to be president. \n\nSo in retribution, he's selecting cabinet members who are not only inexperienced, but are terribly wrong for the positions they are being given.", 'created': '2024-11-17 06:44:31', 'submission_id': '1gt50dx'}
{'comment': "LOL...it's so cute when the figure out reality years after it was obvious.", 'created': '2024-11-17 14:35:50', 'submission_id': '1gt50dx'}
{'comment': 'This is the only reason I still care any more. These people *want violence*', 'created': '2024-11-17 05:29:57', 'submission_id': '1gt50dx'}
{'comment': 'What’s the under/over on her doing it this time around as well', 'created': '2024-11-18 01:11:08', 'submission_id': '1gt50dx'}
{'comment': 'Yes! And I like Ali Velshi, too.', 'created': '2024-11-17 07:30:47', 'submission_id': '1gt50dx'}
{'comment': "He's also the first president that was impeached twice. Maybe 3 times?", 'created': '2024-11-17 06:24:10', 'submission_id': '1gt50dx'}
{'comment': "You democrats are still delusional thinking he has to play by the rules.\n\nThis is just the beginning of him grabbing absolute power. I'll be genuinely surprised if there's another fait election ever again", 'created': '2024-11-17 06:02:05', 'submission_id': '1gt50dx'}
{'comment': "Aha not happening man. At worst it would be an exercise to understand who's with him or against him and the dissidents will be purged.", 'created': '2024-11-17 13:27:36', 'submission_id': '1gt50dx'}
{'comment': "I'd put money on him absolutely caring about the DOJ and Intelligence because they have gone after him and could do more in the future. So he wants them under his own control. And if whoever he puts in charge dessimates the organization, even better for trump.\xa0", 'created': '2024-11-17 15:05:11', 'submission_id': '1gt50dx'}
{'comment': 'The US military is loyal to the Constitution not a man!', 'created': '2024-11-17 14:38:58', 'submission_id': '1gt50dx'}
{'comment': None, 'created': '2024-11-17 05:34:06', 'submission_id': '1gt50dx'}
{'comment': 'Hitler rose, and he fell. Germany became a prosperous nation. They needed to get their ass beaten into shape.\n\nWe will too.\n\nThey want violence, they want us to be scared - but we are supposed to be the United States.', 'created': '2024-11-17 12:28:14', 'submission_id': '1gt50dx'}
{'comment': 'Same here.', 'created': '2024-11-17 17:39:03', 'submission_id': '1gt50dx'}
{'comment': "Third time's the charm.\n\nBut hopefully, not until Democrats take back the House & Senate in 2026. \n\nTrump is so outrageously bad, even Republicans with the slightest wisp of decency oppose him. In contrast, they'd sigh with relief & happily make JD's dreams come true if Trump were gone.", 'created': '2024-11-17 06:40:22', 'submission_id': '1gt50dx'}
{'comment': 'At the rate he\'s going, the military is going to send Trump to Gitmo, then JD will wink & say, "Thanks, we\'re good."', 'created': '2024-11-17 06:11:18', 'submission_id': '1gt50dx'}
{'comment': 'Agreed, he cares to control and damage, sure. But, as long as that happens, he doesn’t want to spend time on it. They aren’t inner circle. He put in grifters and pyschos but people in who won’t buck him, and will likely do the job but disposable so he can just get another in. He doesn’t care how it happens \n\nHe gets visibly titillated and excited about the military, like a child fascinated with its power not realizing or caring about harm or impact. He cares about how it happens in the military. Hence his Sec Def choice, establishing tribunals for generals, and culling emails/texts for non-believers in the government (which includes DOD) through heritage and the like. Sec Def is also very disposable, so if he doesn’t perform well enough, by the time that happens purge of the military leadership will have been culled down to believers to pick from without much effort.', 'created': '2024-11-17 15:16:23', 'submission_id': '1gt50dx'}
{'comment': 'Then thats a huge advantage in stopping Trump from making USA into Russia 2.0, here in Spain if a fascist like Trump were to be elected and then start taking steps to make the country into a dictatorship the army would 100% side with the fascist and repress anyone trying to stop the authoritarian shift.', 'created': '2024-11-17 16:42:07', 'submission_id': '1gt50dx'}
{'comment': 'But the President is the highest military position.\xa0', 'created': '2024-11-17 15:11:25', 'submission_id': '1gt50dx'}
{'comment': "And the wealthier dems and more reasonable members of the GOP, will be long gone after they've fled to different countries, so that they can watch us battle this shit on our own.", 'created': '2024-11-17 08:19:39', 'submission_id': '1gt50dx'}
{'comment': 'Bullshit. No one has had the balls to stand up to him ever. The courts didn’t stand up to him, Joe Biden ain’t doing shit about him, and the Republican senate ain’t going to stand up to him. There is no silver lining anymore. There is no possibility for a silver lining. The people who have the power to do something about this aren’t doing anything. We’re on our own.', 'created': '2024-11-17 06:46:33', 'submission_id': '1gt50dx'}
{'comment': 'Have you not been paying attention? Two of the three Republicans vying for Senate Majority Leader promised to rubber-stamp Trump\'s agenda. Both lost, and John Thune won.\n\nThe House will be no different. Trump is about to get a lesson in the meaning of "separation of powers".', 'created': '2024-11-17 06:53:55', 'submission_id': '1gt50dx'}
{'comment': "The Senate Majority Leader vote was anonymous. Their votes for Trump's cabinet picks will be public. And GOP members are notoriously cowardly when facing the potential wrath of Trump and his followers. \n\nIf the GOP caves to Trump's crazy choices, it'll embolden Trump and his GOP supporters, making Trump more powerful, hence bringing us closer to a dictatorship.\n\nTrump wants loyalty. The more absurd his lies & requests are, the easier it is for him to see who's loyal. Because only a sycophant would believe/support his craziest lies & requests. \n\nPlus, some of Trump's cabinet picks please Putin. And Trump is using [Putin's playbook](https://www.youtube.com/watch?v=MwscvKiQheg&t=219s).", 'created': '2024-11-17 07:27:49', 'submission_id': '1gt50dx'}
{'comment': 'He has his sugar daddy musk, throwing money at people like it was confetti though', 'created': '2024-11-17 08:22:15', 'submission_id': '1gt50dx'}
{'comment': 'Also show up to vote. Voter apathy got Trump elected twice. It seems that people are either okay with Trump or just fall for his bluster.', 'created': '2024-11-17 04:58:48', 'submission_id': '1gt4qy0'}
{'comment': 'Maria Ressa literally wrote the book on resisting mafia-style dictators. 👍🏼🇵🇭\n\n# [How to Stand Up to a Dictator](https://books.google.com/books?id=IAxcEAAAQBAJ)', 'created': '2024-11-17 04:45:29', 'submission_id': '1gt4qy0'}
{'comment': "Omg. Love her. Nothing we haven't heard before but the history of the Philippines and how articulate she is was worth the watch.", 'created': '2024-11-17 17:18:11', 'submission_id': '1gt4qy0'}
{'comment': 'Jokes on you, apparently Americans only learn from actually touching the hot stove, and that remains to be seen', 'created': '2024-11-17 06:56:14', 'submission_id': '1gt4qy0'}
{'comment': 'People largely do not believe anything will ever fundamentally change.\n\nThat’s literally a core propaganda tactic of fascists. Voter apathy.', 'created': '2024-11-17 06:24:21', 'submission_id': '1gt4qy0'}
{'comment': 'we are also living in a post truth/facts dont matter and anti-science world where people get their news and world events from social media (which is rife with foreign trolls/bots that control the narrative).', 'created': '2024-11-17 07:49:51', 'submission_id': '1gt4qy0'}
{'comment': ">It seems that people are either okay with Trump or just fall for his bluster.\n\nThat's a very trivialized view of what happened.\n\nFor decades Republicans have been psychologicaly conditioning people to mistrust government, mistrust experts, mistrust the press, and see Democrats as incompetent radical liberals who were going to destroy the country. \n\nThat set the stage for Trump, who took the fascist playbook and weaponized rhetoric in a propaganda war against American voters *for 9 years.*\n\nThey successfully radicalized a majority of Republican voters. \n\nBut they also sowed so much confusion among other people, such that they would vote for Trump based on misnformation. Or be disgusted with the political parties and government and not vote at all.\n\nPeople can shrug it off as the voters fault. But that's not going to stop this huge propaganda machine. Which is still chugging along radicalizing people. \n\nSo seems a lot better to recognize what an insidious thing this was.", 'created': '2024-11-17 07:00:05', 'submission_id': '1gt4qy0'}
{'comment': 'Democrats really need a strong grassroots presence, like with Dean envisioned with the 50 state strategy.', 'created': '2024-11-17 19:17:06', 'submission_id': '1gt4qy0'}
{'comment': "Definitely a banned book next year.\n\nThank you for the link! I'll grab a copy.", 'created': '2024-11-17 06:24:23', 'submission_id': '1gt4qy0'}
{'comment': 'Is this mostly targeted at journalists?', 'created': '2024-11-17 17:18:48', 'submission_id': '1gt4qy0'}
{'comment': "Me too. I'm so grateful for her courage and generosity.", 'created': '2024-11-18 00:37:59', 'submission_id': '1gt4qy0'}
{'comment': 'We also need to find a strong leader (less than 60) who has the charisma to stand up to a dictator. And, also make sure that we allow primaries instead of the president personally selecting someone of his own choosing without giving people the opportunity to elect a candidate.', 'created': '2024-11-17 06:54:47', 'submission_id': '1gt4qy0'}
{'comment': "Too little, too late. We are past the stage where a leader of another political party is likely to save us. \n\nWe have to save ourselves. By combating the propaganda machine. By preventing additional people from being radicalized. By talking to people who voted for Trump, who are not yet MAGA cult. \n\nAnd by talking to those who didn't vote, because they were victims of the psyops that Republicans started conducting on Americans decades ago. Which taught them to mistrust government, mistrust politicians, mistrust experts, and mistrust the press. Which Trump then amplified a ten or one hundred fold, while flooding the electric with misinformation.\n\nBut if you guys just want to wait until another election cycle, we may be so far along this path that the only way out is when the fascist state collapses.", 'created': '2024-11-17 07:14:10', 'submission_id': '1gt4qy0'}
{'comment': "It would be awesome if it actually happened, but I don't think it's realistic to think that we as individuals or small groups can change it all without any real leadership. I don't think people on the left are as united and motivated to take matters into own hand. And, centrists (Biden and Harris core base) are even more passive when it comes to political activism.\n\nBut I do like the idea of talking to people. I think what could really be useful is to stay united and provide support to one another, which we desperately need at this point with the Republicans in full control.\n\nI don't think we need to wait till another election cycle, Trump organized rallies after winning the election as a president, he started campaigning three years before election. Democrats need to start a movement like that.", 'created': '2024-11-17 08:25:40', 'submission_id': '1gt4qy0'}
{'comment': ">It would be awesome if it actually happened, but I don't think it's realistic to think that we as individuals or small groups can change it all without any real leadership.\n\nSure we can to do this. You can do this.\n\nThis is not a political movement to establish a political platform or elect a candidate. It doesn't require money.\n\nThis is a resistance movement of pro-democracy Americans. Which means everybody who hasn't fully embraced Trump's fascism.\n\nThis is what an American antifa should look like. Pro democracy Americans just talking to other Americans who haven't been able to grasp that fascism has been waging a propaganda war against all of us. \n\nThink a little bit another way. If you find your friend or coworker is reading the Nigerian Prince emails and doesn't recognize them for a scam. You would talk to them.\n\n\n>I don't think people on the left are as united and motivated to take matters into own hand. And, centrists (Biden and Harris core base) are even more passive when it comes to political activism.\n\nYou don't have to be united with anyone else to do start doing this. To push back against the propaganda war by helping someone out of the misinformation cloud. And to encourage other Democrats to do the same.\n\nDon't think of it as about political activism. Think of it as educating people you know about fascism.\n\nThen once you open their eyes to Trump's fascism, the next step would be to talk to them about the great wealth transfer. Help them to see that Republican Party leadership has always primarily been about making the rich richer. \n\n>I don't think we need to wait till another election cycle, Trump organized rallies after winning the election as a president, he started campaigning three years before election. Democrats need to start a movement like that.\n\nThat will probably fail. The same reason Democrats lost the election. \n\nBecause long before Trump, decades ago, the Republican party starting conditioning Americans to be suspicious of politicians, of government, of experts. And repeatedly told them over, and over again that Democrats are crazed liberals who would destroy the country. Trump came along and amplified that.\n\nSo the people who are part of MAGA who bought into Trump's fascist vision for the US are a lost cause. Because at their core, they fully embraced the message of intolerance.\n\nBut everyone else who voted against Harris, or didn't vote, mistrusts the political parties. They don't believe what Democrats have to say. Didn't vote for Harris, *because they can't hear her.*\n\nSo the Democratic Party can have all the political rallies they want, but these people aren't going to those rallies till they break the psychological conditioning. Until they can see through the propaganda. \n\nMeanwhile, it's important to start now. Because this propaganda machine is still chugging along. And it's going to radicalize more people if we don't work against it.", 'created': '2024-11-17 14:17:37', 'submission_id': '1gt4qy0'}
{'comment': 'At least the brain worm is smiling.', 'created': '2024-11-17 05:36:58', 'submission_id': '1gt4rkp'}
{'comment': 'I\'d like this plastered on the outside of ALL "religions" buildings.....', 'created': '2024-11-17 07:33:37', 'submission_id': '1gt4rkp'}
{'comment': "THE BRAIN WORM IS OUR ONLY HOPE\n\nHELP US, OBI-WAN BRAINWORM, YOU'RE OUR ONLY HOPE", 'created': '2024-11-17 14:18:14', 'submission_id': '1gt4rkp'}
{'comment': 'This cartoon is so accurate that it’s hard to believe that people like this could pose such a threat to our democracy, yet here we are.', 'created': '2024-11-17 16:25:52', 'submission_id': '1gt4rkp'}
{'comment': 'Four morons of the magapocalypse. It’s still funny even though we’re all kinda screwed by it.', 'created': '2024-11-17 21:55:11', 'submission_id': '1gt4rkp'}
{'comment': "Elon's hat is a nice touch lol.", 'created': '2024-11-17 20:26:39', 'submission_id': '1gt4rkp'}
{'comment': '"Occupy Mars". You guys have all the fun - laughs.\n\nTransplant MuskMushrooms!\n\nThey (mushrooms) like it dark with a lot of manure.', 'created': '2024-11-18 01:47:50', 'submission_id': '1gt4rkp'}
{'comment': 'MFs really need to learn how to download images and stop taking screenshots.', 'created': '2024-11-18 02:09:08', 'submission_id': '1gt4rkp'}
{'comment': 'if i was that worm, i’d want to get out of his grimy head as soon as possible', 'created': '2024-11-17 09:08:34', 'submission_id': '1gt4rkp'}
{'comment': "I can't tell if that's Steve Bannon or Trump...or maybe both rolled into one?", 'created': '2024-11-18 01:12:14', 'submission_id': '1gt4rkp'}
{'comment': 'yup, the US seems to want to be last at that. lines up as we seem headed for being last at many things.', 'created': '2024-11-17 04:13:20', 'submission_id': '1gt3soz'}
{'comment': 'At this point I think everybody will have a female president before the U.S.', 'created': '2024-11-17 15:29:54', 'submission_id': '1gt3soz'}
{'comment': 'Pakistan had a woman prime minister before the USA elected a woman as President.\n\nPakistan! \n\nBloody tragedy when Benazir Bhutto was assassinated…', 'created': '2024-11-17 04:31:41', 'submission_id': '1gt3soz'}
{'comment': "I was talking with someone I know the other day, and they said they think the first US female president will be Republican. The party against women's rights. That's depressing.", 'created': '2024-11-17 17:24:10', 'submission_id': '1gt3soz'}
{'comment': 'Mexico, Panama… machismo didn’t stop these countries. I don’t understand why that’s a problem here.', 'created': '2024-11-17 04:16:12', 'submission_id': '1gt3soz'}
{'comment': 'We ( half of those who bothered voting so 22%) "elected" an 🍊 range drama queen', 'created': '2024-11-17 04:22:48', 'submission_id': '1gt3soz'}
{'comment': 'The U.S. citizens rather choose a dictator than a qualified woman for President. Go figure.', 'created': '2024-11-17 08:19:05', 'submission_id': '1gt3soz'}
{'comment': 'The Philippines elected its first of two women president in 1986. Here is Corazon Aquino being welcomed at a joint session of the US Congress.\n\n\n\nhttps://youtu.be/4ZnnvbKyNCQ?si=Tes8sfQX_q7-Xj1n', 'created': '2024-11-17 18:01:05', 'submission_id': '1gt3soz'}
{'comment': 'For second time instead of America being ready for a female leader, a psycho egomaniac was elected for a second term.', 'created': '2024-11-17 05:25:27', 'submission_id': '1gt3soz'}
{'comment': 'The list of countries that have NOT elected a female president at least once is getting shorter all the time. But America seems hell bent on being the last one standing on that list.', 'created': '2024-11-17 06:12:48', 'submission_id': '1gt3soz'}
{'comment': 'Mars is going to have a female president before us at this rate.', 'created': '2024-11-17 07:28:10', 'submission_id': '1gt3soz'}
{'comment': "The US is currently in the grip of a political party that thought life in the 50s was good so they want to take us back there. No it's not the Democrats. It's the MAGAt infested Republicans.", 'created': '2024-11-17 06:35:48', 'submission_id': '1gt3soz'}
{'comment': 'Hell half of the world including Islamic countries have had female leaders. \n \nMisogyny is just part of the American DNA it seems.', 'created': '2024-11-17 18:01:51', 'submission_id': '1gt3soz'}
{'comment': 'Our country sucks.', 'created': '2024-11-17 06:10:57', 'submission_id': '1gt3soz'}
{'comment': 'India’s current president is Draupadi Murmu and she belongs to Santhal tribe, one of the largest indigenous tribes in India.', 'created': '2024-11-17 15:40:30', 'submission_id': '1gt3soz'}
{'comment': "You know it's bad when the US hasn't had a female leader and Liberia has.", 'created': '2024-11-17 10:18:33', 'submission_id': '1gt3soz'}
{'comment': 'Women presidents are common in LATAM-', 'created': '2024-11-17 05:53:21', 'submission_id': '1gt3soz'}
{'comment': 'Our country is falling behind the times. Misogyny and racism is alive and well in the USA. Shithole country indeed!', 'created': '2024-11-17 12:51:01', 'submission_id': '1gt3soz'}
{'comment': "WOAH ANOTHER PANAMANIAN? I'm from Panama too!! Crazy right? Out country elects a woman but the us cant", 'created': '2024-11-17 03:52:39', 'submission_id': '1gt3soz'}
{'comment': 'A bunch of countries had female leaders before the US. Even fucking Pakistan which is super conservative has had a woman leader.', 'created': '2024-11-17 04:04:37', 'submission_id': '1gt3soz'}
{'comment': 'So have Brazil and Argentina. Also, the current presidents of Mexico and Peru are women.', 'created': '2024-11-17 04:08:56', 'submission_id': '1gt3soz'}
{'comment': 'https://preview.redd.it/jkvfuv51ud1e1.jpeg?width=183&format=pjpg&auto=webp&s=6eec90e9efc0a0a7ff722e4311b93ce400d3802f\n\nGolda Meir (née Mabovitch) served as Israel’s Prime Minister from 1969 to 1974.', 'created': '2024-11-17 04:39:40', 'submission_id': '1gt3soz'}
{'comment': 'Trade ya!', 'created': '2024-11-17 06:03:21', 'submission_id': '1gt3soz'}
{'comment': 'My country currently has a female President Nataša Mirc (slovenia)', 'created': '2024-11-17 07:42:53', 'submission_id': '1gt3soz'}
{'comment': "I think my mother's country has both a Prime minister and President who are female.", 'created': '2024-11-17 11:43:37', 'submission_id': '1gt3soz'}
{'comment': 'Hello fellow Panamanian! My mom is from Panama. 🇵🇦', 'created': '2024-11-17 15:08:05', 'submission_id': '1gt3soz'}
{'comment': "That isn't the mom from the Goldbergs?", 'created': '2024-11-17 16:49:10', 'submission_id': '1gt3soz'}
{'comment': 'I really hope America can get there one day. 🥲', 'created': '2024-11-17 19:54:58', 'submission_id': '1gt3soz'}
{'comment': 'What is interesting is that Israel had a woman Prime Minister, Golda Meir. Since then it seems Israel has avoided letting a woman be in a position to become Prime Minister.', 'created': '2024-11-17 20:14:09', 'submission_id': '1gt3soz'}
{'comment': "Mexico's president is Claudia Sheinbaum, too.", 'created': '2024-11-18 03:18:57', 'submission_id': '1gt3soz'}
{'comment': 'And I bet every time she got her period she nuked America! /S', 'created': '2024-11-17 04:51:58', 'submission_id': '1gt3soz'}
{'comment': 'Still feel like Panama owes the U.S. for the blood and treasure Jimmy Carter gave to you.', 'created': '2024-11-17 04:50:44', 'submission_id': '1gt3soz'}
{'comment': 'What is the point of this post? This is the democrats sub and it really just feels like you’re rubbing our faces in it.', 'created': '2024-11-17 15:26:53', 'submission_id': '1gt3soz'}
{'comment': 'mine also and, made us the first country in asia having legalised samesex marriage proud of that, i think patriotism should be about that.', 'created': '2024-11-17 16:00:28', 'submission_id': '1gt3soz'}
{'comment': 'NZ has had Three!', 'created': '2024-11-17 12:11:43', 'submission_id': '1gt3soz'}
{'comment': 'FR! Bangladesh and India too.', 'created': '2024-11-17 06:45:10', 'submission_id': '1gt3soz'}
{'comment': "They're looking at the history of the UK when they say that.\n\nThe only female PMs in the UK have been Conservatives.", 'created': '2024-11-17 18:02:14', 'submission_id': '1gt3soz'}
{'comment': 'Well I would ideally like a Democratic Female President like Kamala Harris. But I think the GOP is too ignorant for a female president, especially from the left side. If there is a female republican candidate I hope they are a good one, maybe someone like Ana Navarro or something.', 'created': '2024-11-17 17:28:31', 'submission_id': '1gt3soz'}
{'comment': 'I know and even Islamic countries were able to achieve this.', 'created': '2024-11-17 22:39:03', 'submission_id': '1gt3soz'}
{'comment': 'Kala was too much man for trumpelina.', 'created': '2024-11-17 04:52:35', 'submission_id': '1gt3soz'}
{'comment': 'Not to mention a felon and rapist. But the us would rather undergo more of this than have a female president sadly', 'created': '2024-11-17 08:21:38', 'submission_id': '1gt3soz'}
{'comment': 'Oh my friend also told me about Aquino.', 'created': '2024-11-17 19:10:54', 'submission_id': '1gt3soz'}
{'comment': 'Yup.', 'created': '2024-11-17 17:11:57', 'submission_id': '1gt3soz'}
{'comment': 'This!', 'created': '2024-11-17 07:05:59', 'submission_id': '1gt3soz'}
{'comment': 'It very much does, I believe it is a possibility we might be the last. (Except for DPRK and countries like that no duh but yea)', 'created': '2024-11-17 06:46:44', 'submission_id': '1gt3soz'}
{'comment': 'LOL MARS🤣', 'created': '2024-11-17 07:46:52', 'submission_id': '1gt3soz'}
{'comment': "Fr. And life in the 50s wasn't amazing either.", 'created': '2024-11-17 06:50:27', 'submission_id': '1gt3soz'}
{'comment': 'I think they want to go farther back than the 50s.', 'created': '2024-11-17 14:23:02', 'submission_id': '1gt3soz'}
{'comment': 'It..has probelems lmao', 'created': '2024-11-17 06:49:36', 'submission_id': '1gt3soz'}
{'comment': 'Oh, but it’s all the Ds and Kamala’s fault!!!', 'created': '2024-11-17 12:13:31', 'submission_id': '1gt3soz'}
{'comment': "Oh wow. Even India has a female president not to mention she's indigenous.", 'created': '2024-11-17 16:28:00', 'submission_id': '1gt3soz'}
{'comment': "Oh nah we're finished I did not know Liberia has had one lol.", 'created': '2024-11-17 16:23:44', 'submission_id': '1gt3soz'}
{'comment': 'Which only shows that even Latin America is able to overcome the machismo ideal', 'created': '2024-11-17 17:13:45', 'submission_id': '1gt3soz'}
{'comment': 'Indeed.', 'created': '2024-11-17 17:14:19', 'submission_id': '1gt3soz'}
{'comment': '?\n\nhttps://preview.redd.it/lrta8s7lkh1e1.png?width=1778&format=png&auto=webp&s=ca24879df40aefc062caa3bf49347205a0d9864e', 'created': '2024-11-17 17:11:23', 'submission_id': '1gt3soz'}
{'comment': 'I hope to the good lord ur jokng lmao', 'created': '2024-11-17 06:49:24', 'submission_id': '1gt3soz'}
{'comment': "Panama owes absolutely nothing to ya'll because the US committed war crimes there. And my family only knew because we were able to listen to the radio from Costa Rica, which showed bodies being laid out on the streets and absolute chaos ensuing when Noriega was lounging blasting rock music. THE US COULD'VE got him out so much quicker but the military decided to do horrible things there instead of going to him.", 'created': '2024-11-17 06:59:44', 'submission_id': '1gt3soz'}
{'comment': 'HUH WDYM???? THE US INVADED AND KILLED SOO MANY PANAMANIANS IN THE CAPITAL STORMING FOR NORIEGA. KINDLY, WTF DO YoU MEAN?', 'created': '2024-11-17 06:47:40', 'submission_id': '1gt3soz'}
{'comment': None, 'created': '2024-11-17 06:34:51', 'submission_id': '1gt3soz'}
{'comment': "Oh really? I didn't know that.", 'created': '2024-11-17 21:55:06', 'submission_id': '1gt3soz'}
{'comment': 'Wonder how they’re going to get all the women in the workforce to go back to the kitchen, and who will replace them, and the immigrants…\n\nOh, that’s right, magats will have to get off their asses.', 'created': '2024-11-17 12:15:28', 'submission_id': '1gt3soz'}
{'comment': "True. The 50s is just the first stop. You can't take a society back to the Bronze Age in one day. Baby steps.", 'created': '2024-11-17 14:48:56', 'submission_id': '1gt3soz'}
{'comment': 'I didn’t say that. It is never one thing that leads to a huge failure. A bunch of things all have to go wrong', 'created': '2024-11-17 16:03:29', 'submission_id': '1gt3soz'}
{'comment': 'Someone had to do the work that nobody could do. We lost so many American lives and then when Jimmy Carter gave it away to Panama they kicked out all the families who grew up there of the men who worked on it. Now they charge us to pass through our own damn canal we built and gave them an economy. They should not change U.S. ships to pass or pay back the U.S.', 'created': '2024-11-17 17:09:42', 'submission_id': '1gt3soz'}
{'comment': 'No, ABSOLUTELY NO. Panamanian houses and people were killed and bombed because the US basically used us as an experiment.', 'created': '2024-11-17 06:48:48', 'submission_id': '1gt3soz'}
{'comment': "It's worse when you look at the details. Anyone wanting examples of why women leaders of countries are bad can just mention their names and their point will be made.\n\n(Seriously, those two were horrible)", 'created': '2024-11-17 22:22:58', 'submission_id': '1gt3soz'}
{'comment': '/s dolt', 'created': '2024-11-17 17:38:45', 'submission_id': '1gt3soz'}
{'comment': "Operation Just Cause was not a just cause and the USA commited horrible things there. They can get Noriega out, but they don't have to bomb residential neighborhoods and kill innocent people just to get Noriega out. Even reporters were killed by the military. WHY?", 'created': '2024-11-17 17:26:09', 'submission_id': '1gt3soz'}
{'comment': "Please stop fighting with Panamanians. We have enough problems to deal with here in the US. You're not making things better by alienating what few allies we have left. Let it go, please.", 'created': '2024-11-17 17:54:31', 'submission_id': '1gt3soz'}
{'comment': 'No, HELL no. Panama deserves the canal because it is our land and if Americans wanna throw a fit because its "their" canal. Bro, PANAMANIANS AND IMMIGRANTS FROM OTHER COUNTRIES ALL helped build the canal. It was not only Americans. only 23 US Soldiers and 3 civilians were lost. THOUSANDS of Panamanians were killed. YES, pay to drive your ship through the damn canal and stomp your feet. Not to mention USA LIKED Noriega until he wanted the canal for us as well. Then the usa goes on into their controlling rag and covered up the whole incident to the point where no one knows about it and the thousands of lives lost. 26 American lives? WE LOST THOUSANDS, go sit tf down.', 'created': '2024-11-17 17:22:29', 'submission_id': '1gt3soz'}
{'comment': 'WTF?!?!', 'created': '2024-11-17 06:49:58', 'submission_id': '1gt3soz'}
{'comment': 'Two? did you forget about Lettuce Liz?', 'created': '2024-11-18 02:15:28', 'submission_id': '1gt3soz'}
{'comment': 'Yea... Although a lot of them are pretty good. Mireya was one of the most "liked" presidents in Panama. I mean sure-all of them are corrupt to some degree but she was actually pretty good.', 'created': '2024-11-17 22:37:53', 'submission_id': '1gt3soz'}
{'comment': 'Ty😭', 'created': '2024-11-17 19:08:48', 'submission_id': '1gt3soz'}
{'comment': "I can't believe any American thinks they're entitled to a canal built in another country with an _international_ workforce over a century ago. That's absolutely asinine.", 'created': '2024-11-17 17:59:16', 'submission_id': '1gt3soz'}
{'comment': 'We built it! Our money and American Engineering! Americans raised their families there in towns that we also built. I will NEVER give the credit for the hard work and American Engineering to a country that was largely improvised. I am damn proud of the United States Engineering this and you should be too. You are welcome!', 'created': '2024-11-18 03:15:11', 'submission_id': '1gt3soz'}
{'comment': 'https://preview.redd.it/kvk84ga8ie1e1.png?width=1600&format=png&auto=webp&s=bf860e3b5f3eb6ec43927c5c9c00ce628edfd71e', 'created': '2024-11-17 06:53:14', 'submission_id': '1gt3soz'}
{'comment': 'HAS NONE OF THE AMERICAN POPULATION KNOWN ABOUT THIS?', 'created': '2024-11-17 06:51:25', 'submission_id': '1gt3soz'}
{'comment': 'Nah, I forgot about Teresa May.', 'created': '2024-11-18 02:30:36', 'submission_id': '1gt3soz'}
{'comment': 'To be clear, I\'m not opposed to women leading nations (I voted for one).\n\nJust, if you want to pull up anecdotes of women being bad leaders, you can say "Margret Thatcher" and "Liz Truss" and you\'ve ***almost*** got an entire argument.', 'created': '2024-11-18 00:04:43', 'submission_id': '1gt3soz'}
{'comment': "Isn't it??? The construction of the canal included many people from different ethnicities.", 'created': '2024-11-17 19:08:19', 'submission_id': '1gt3soz'}
{'comment': 'We built it! Our money and American Engineering! Americans raised their families there in towns that we also built. I will NEVER give the credit for the hard work and American Engineering to a country that was largely improvised. I am damn proud of the United States Engineering this and you should be too. You are welcome!', 'created': '2024-11-18 03:04:48', 'submission_id': '1gt3soz'}
{'comment': "Evidently, we're not taught this in school! OMG. I know we've done terrible things in other countries, but I never heard about this. :C\n\nOn behalf of the US, I apologize!", 'created': '2024-11-17 06:57:17', 'submission_id': '1gt3soz'}
{'comment': "My ex-wife is Panamanian. I know about some of it. This country is so easily fooled and manipulated, I'm surprised it took so long for an absolute rogue to come along and take as much advantage of it as Trump has/will.", 'created': '2024-11-17 07:23:07', 'submission_id': '1gt3soz'}
{'comment': 'You forgot Teresa May.', 'created': '2024-11-18 02:16:03', 'submission_id': '1gt3soz'}
{'comment': 'O yea ik sorry if I came off that way.', 'created': '2024-11-18 00:34:36', 'submission_id': '1gt3soz'}
{'comment': 'The labor, but it was American Engineering and American Money that made it all happen for an impoverished country that couldn’t build it in 1000 years without the U.S.', 'created': '2024-11-18 03:17:43', 'submission_id': '1gt3soz'}
{'comment': "Omg im sorry. I kinda blew up. But I'm honestly flabbergasted that they don't teach this. I didn't know it was this covered up. Sorry again I'm not mad at you I'm mad that the US chose not to recognize it at all in public education😭🙏🏽", 'created': '2024-11-17 07:02:38', 'submission_id': '1gt3soz'}
{'comment': 'Oh my gosh I almost was about to ask lol because my mom has an ex but he was republican lol😭 Yes, I only wonder if England will "intervene".', 'created': '2024-11-17 07:50:44', 'submission_id': '1gt3soz'}
{'comment': "Huh, you're right. She was pretty forgettable.", 'created': '2024-11-18 02:30:15', 'submission_id': '1gt3soz'}
{'comment': 'Donald Trump, an adjudicated sex offender, thinks women are good only for grabbing.', 'created': '2024-11-17 03:22:39', 'submission_id': '1gt3d78'}
{'comment': 'Dumb ass leading us to recruiting crisis as if we don’t got enough problem', 'created': '2024-11-17 04:18:02', 'submission_id': '1gt3d78'}
{'comment': 'And his tattoo raises burning crosses', 'created': '2024-11-17 22:28:25', 'submission_id': '1gt3d78'}
{'comment': 'The picture is hilarious, he looks like a cruise ship magician.', 'created': '2024-11-17 06:43:23', 'submission_id': '1gt3d78'}
{'comment': 'This is what those fucking trump voters did. Oh by the way maybe you want to buy some nfts , a bible and trump crypto. Ready for the bullshit.', 'created': '2024-11-17 06:00:19', 'submission_id': '1gt3d78'}
{'comment': "So that's why white women voted for Trump.🤣", 'created': '2024-11-17 10:50:06', 'submission_id': '1gt3d78'}
{'comment': "I have a gigantic family. One of my best friends is LGBTQ.\n\nShe served in the Army, was an MP, and right after she left (before she took her current job) she interviewed for the Secret Service (she didn't get in).\n\nLots of police and military experience in my family as well as those of us who've had martial arts training. Of all my brothers and cousins and our nephews, I can only think of 3 of us who'd I'd bet to win in a fist fight (maybe 4).\n\nShe has stories, but that's neither here nor there. The fact is, is that she wasn't asked to leave the Army or avoid combat....she received a letter to interview for the Secret fucking Service.\n\nDo with that what you will...", 'created': '2024-11-17 04:07:15', 'submission_id': '1gt3d78'}
{'comment': "MMW- the draft is coming back and they won't just force men into foreign wars but anything they want.", 'created': '2024-11-17 17:20:24', 'submission_id': '1gt3d78'}
{'comment': '"Is this your card?" \n"No." \n"Really? It isn\'t the eight of diamonds?" \n"No."\n\n"Ladies and gentleman, I present to you…\xa0the amazing linking rings!"', 'created': '2024-11-17 11:32:27', 'submission_id': '1gt3d78'}
{'comment': '"Trump’s choice for secretary of defense, Fox News News personality Pete Hegseth, has criticized the withdrawal, saying the U.S. lost the war and wasted billions of dollars."\n\nSounds like they\'re preparing a stab-in-the-back myth that they can use as another propaganda weapon to bludgeon the Democrats with. They\'ll pin the unpopular Afghan and Iraq Wars on Dems, even though it was conservative neocons who fabricated them.', 'created': '2024-11-17 07:27:19', 'submission_id': '1gt31gr'}
{'comment': 'Corporal Bonespurs loves (compliant) military men.*\n\n* Who haven’t been captured or killed or lost limbs, or disfigured, or suffered mentally, and who are white.', 'created': '2024-11-17 03:38:44', 'submission_id': '1gt31gr'}
{'comment': 'screwing over vets and especially health (mental) care is a great idea, nothing like a pissed off trained soldier off his meds to calm things down.', 'created': '2024-11-17 04:31:35', 'submission_id': '1gt31gr'}
{'comment': 'Please, please tell me there are legal protections in place that will prevent this complete insanity.', 'created': '2024-11-17 04:27:58', 'submission_id': '1gt31gr'}
{'comment': 'Will be interesting to see if a military coup really can’t happen in the US as people have claimed. Not that that would necessarily be any better than having Trump in charge. You usually end up with a military dictatorship that says it will restore democracy eventually and never does.', 'created': '2024-11-17 04:17:13', 'submission_id': '1gt31gr'}
{'comment': '“Trump first reached an agreement with the Taliban in 2020 to withdraw all U.S. forces from Afghanistan, roughly 13,000 troops, and release 5,000 Taliban fighters from prison. The Biden administration then completed the withdrawal.”\n\nSo let’s start with Trump, who ordered the withdrawal. The stupidity and hypocrisy is endless. Life imitating art Idiocracy.', 'created': '2024-11-17 12:34:03', 'submission_id': '1gt31gr'}
{'comment': 'Let me cut to the chase, investigation will determine that the deal cut with the Taliban , by Trump, lead to everything, including the closing of all other bases and thousands of Taliban prisoners being released prior to the hand off of operations to Biden.', 'created': '2024-11-17 13:54:44', 'submission_id': '1gt31gr'}
{'comment': 'His real motive is to just hobble our armed forces so that Russia can come in unopposed.', 'created': '2024-11-17 05:11:39', 'submission_id': '1gt31gr'}
{'comment': 'What Trump is doing, and I strongly suspect this is coming from Bannon, Musk, Thiel, because Trump is too stupid to have come up with it, is engaging in "shock and awe" on all institutions that could oppose him. That\'s what Matt Gaetz for AG is all about, forcing GOP senators to absolutely humiliate themselves by publicly voting for a child rapist. And now with DOD, Trumpies are sending a message to senior military officers that if you oppose us, as in when Trump wants to use the US military against the American people, then we will come after you.\n\nBut what the brilliant minds behind Trump are missing is shock and awe did not work. All that happened is the Iraqi government and military melted away and then formed a brutal and lethal resistance that fought the US military to a standstill. \n\nWhat the Bannon, Musk, Thiels don\'t get is you can\'t brutalize a population into submission. It ultimately never works, it\'s always sparks a resistance. \n\nOf course the current old, hapless conflict adverse leadership of the Dem party is incapable of leading any resistance, but an effective one will emerge, especially if the Trumpies court martial senior military leaders and fire civil servants. Great idea to take a group of people with organizational skills and military expertise and piss them off. Worked super well in Iraq.', 'created': '2024-11-17 10:31:10', 'submission_id': '1gt31gr'}
{'comment': 'This is why I am buying guns. How times have changed.', 'created': '2024-11-17 09:47:41', 'submission_id': '1gt31gr'}
{'comment': "I wish them luck with that. Wonder what they'll have the prosecuting officer charge?", 'created': '2024-11-17 07:52:22', 'submission_id': '1gt31gr'}
{'comment': 'Like The Other Candidate, I’d prefer to move forward, not rustle up some bullshit military sound bites and second guessing about past decisions. America needs fixing: from roads to bridges, taxes to treaties. However, when your only skill is creating conflict through division that’s your go-to, I guess.', 'created': '2024-11-17 07:24:48', 'submission_id': '1gt31gr'}
{'comment': 'Kind of ironic, considering so many vets support Trump', 'created': '2024-11-17 12:58:45', 'submission_id': '1gt31gr'}
{'comment': 'I remember last time he said all this outrageous stuff and did nothing. in fact in four years he did nothing for the American people except hate on libs. I guess that makes certain people feel like theyre "winning"', 'created': '2024-11-17 16:03:43', 'submission_id': '1gt31gr'}
{'comment': "where's Liam Neeson to save the day? lol", 'created': '2024-11-17 16:45:46', 'submission_id': '1gt31gr'}
{'comment': 'Unfortunately the people who would be enforcing these protections are sucking trumps mushroom.', 'created': '2024-11-17 04:35:23', 'submission_id': '1gt31gr'}
{'comment': 'There were until the Federalist Society bought John Roberts and the Supreme Court.', 'created': '2024-11-17 10:35:39', 'submission_id': '1gt31gr'}
{'comment': 'well a court martial includes a trial so that’s i guess what could prevent it from being a total sham. unless the fix is in on everyone running it.', 'created': '2024-11-17 12:53:51', 'submission_id': '1gt31gr'}
{'comment': 'The law only matters as far as people are willing to enforce it.', 'created': '2024-11-17 14:57:34', 'submission_id': '1gt31gr'}
{'comment': 'No. We learned this lesson already. There are not.', 'created': '2024-11-17 18:00:07', 'submission_id': '1gt31gr'}
{'comment': 'At least right now we still know that our military is honorable. At this point I’d rather bet on our military over the incoming dictator.', 'created': '2024-11-17 04:58:27', 'submission_id': '1gt31gr'}
{'comment': 'Mr. Trump struck a horrible deal with our enemy, claimed victory and pulled out 10500 soldiers home leaving just 2500 in place at the time of Biden’s inauguration. it wasn’t a great move because 2500 soldiers was not enough to ensure an orderly withdrawal and Biden would have had to send more soldiers back to Iraq to do things right. \n\nThen President Trump dumped a shit show of a of a withdrawal plan onto Biden after he lost the 2020 election and now he’s trying to blame the Generals and Biden for what was his own unforced error. \n\nTrump is unserious.', 'created': '2024-11-17 16:54:45', 'submission_id': '1gt31gr'}
{'comment': 'Ah, that’s what the report should say. \n\nWhen the Commander in Chief is threatening court martial and demanding loyalty tests the report will say: \n\nBiden started the War, Biden prolonged the war, Biden failed to support the troops while they were at war, Biden cut the deal, Biden botched the pullout and \n\nTrump is a great military mind.No it will say that Trump is our greatest military mind ever. Better than Grant, MacArthur, Eisenhower, Schwarzkopf and Powell combined. /s', 'created': '2024-11-17 17:00:35', 'submission_id': '1gt31gr'}
{'comment': 'The most likely immediate result is fracturing his already fragile coalition. \n \nEven if he has the Supreme Court in his pocket (he doesn\'t), his "shock and awe" is going to lead to protracted and slow moving litigation. \n\nTrump\'s allies KNOW the Democrats are ineffective resistance. Globally, the far right is working at destroying the center-right, so that the far right becomes the only alternative to the center-left. This is what happened in the UK. Labour didn\'t do much better than they did before, but Reform UK split the Tory vote, leading to a Labour supermajority. \n \nOnce the center-right is out of the way, all they have to do is wait for the price of eggs to get too high.', 'created': '2024-11-17 17:53:47', 'submission_id': '1gt31gr'}
{'comment': 'They are going to go with treason I read', 'created': '2024-11-17 14:19:27', 'submission_id': '1gt31gr'}
{'comment': 'The Tangerine Twatzi doesn’t have a great record when it comes to court cases. Of course, buying the Supreme Court helps his chances but it’s not infallible.', 'created': '2024-11-17 12:56:54', 'submission_id': '1gt31gr'}
{'comment': 'Any trials will be a political disaster for Trump. \n\nMy spidey sense tells me that this is mostly hot air. Terrifying hot air, but hot air nonetheless.', 'created': '2024-11-17 17:47:35', 'submission_id': '1gt31gr'}
{'comment': 'I had this nightmare as well and came to the same conclusion. \n\nThey serve the constitution.', 'created': '2024-11-17 09:49:25', 'submission_id': '1gt31gr'}
{'comment': 'It was a poison pill for Biden. \n\nThis was a smart move for Trump because he knew that the American people would blame his successor.', 'created': '2024-11-17 21:15:07', 'submission_id': '1gt31gr'}
{'comment': "That's pretty difficult to prove...", 'created': '2024-11-18 01:44:53', 'submission_id': '1gt31gr'}
{'comment': 'I don’t think military trials use the Supreme Court, but I’m not a military person, so I might be completely wrong.', 'created': '2024-11-17 14:16:51', 'submission_id': '1gt31gr'}
{'comment': 'yeah they’re trying to bend the military towards obedience by going after people who were just following orders? doesn’t seem like a great strategy', 'created': '2024-11-17 19:18:09', 'submission_id': '1gt31gr'}
{'comment': "That's why Trump is attacking Gen Milley\n\nhttps://youtu.be/9to_1UYH5rE?si=nf2FVs8geB7jfO84", 'created': '2024-11-17 13:46:16', 'submission_id': '1gt31gr'}
{'comment': 'Yeah they really don’t care about that aspect, might get a few to just resign instead to create openings', 'created': '2024-11-18 01:49:50', 'submission_id': '1gt31gr'}
{'comment': 'Once again, Trump appoints a big oil advocate to head the department that is responsible for… *checks notes* managing our nuclear stockpile.\n\nI love how these idiots don’t even know what the jobs are that they’re appointing people to.', 'created': '2024-11-17 03:23:02', 'submission_id': '1gt2kyw'}
{'comment': 'Patiently waiting for a news story about his Christian nationalist ties and sexual assault charges...allegedly.', 'created': '2024-11-17 03:19:19', 'submission_id': '1gt2kyw'}
{'comment': 'Media: why this is bad for Biden and Harris.', 'created': '2024-11-17 03:11:49', 'submission_id': '1gt2kyw'}
{'comment': 'Remember that it’s the DoE that oversees the nukes.', 'created': '2024-11-17 05:15:47', 'submission_id': '1gt2kyw'}
{'comment': 'What does Pdiddy get??', 'created': '2024-11-17 04:51:26', 'submission_id': '1gt2kyw'}
{'comment': "Next he should hire the Hamburgler to oversee the protection of the great Golden Arches, put Elon as Head of the Treasury and Don Jr. in charge of watching over the drugs seized by law enforcement personnel.\n\nReally great picks Donald. Totally no conflicts of interest in any of your picks.\n\nOh... and Matt Gaetz would make a great AG I bet! Too bad you'll probably never think to promote him...\n\n....nevermind.", 'created': '2024-11-17 03:55:39', 'submission_id': '1gt2kyw'}
{'comment': 'If Charlie Manson were still around, he would get a cabinet post.', 'created': '2024-11-17 04:08:28', 'submission_id': '1gt2kyw'}
{'comment': 'Once again it shows Donald Trump going forward with his idea of climate change is a Chinese hoax', 'created': '2024-11-17 05:08:32', 'submission_id': '1gt2kyw'}
{'comment': 'Can someone please explain to me how or why an oil executive would want less profit? (Lowering gas prices) I hope gas prices do come down but I understand that too low of a price oil companies start to loose money simple facts and that’s not going to happen', 'created': '2024-11-17 03:48:15', 'submission_id': '1gt2kyw'}
{'comment': "Fine. It's what he did last time. I think it could be worse, frankly", 'created': '2024-11-17 04:45:25', 'submission_id': '1gt2kyw'}
{'comment': 'The hits keep coming.', 'created': '2024-11-17 04:48:45', 'submission_id': '1gt2kyw'}
{'comment': "Never Forget Jill Stein - Protector of Women's Rights and the Environment. American Style Green Party.", 'created': '2024-11-17 04:54:50', 'submission_id': '1gt2kyw'}
{'comment': 'Imagine if China actually cracks fusion while we’re still burning fossils. American energy dominance immediately vanishes. The entire petrol industry implodes.', 'created': '2024-11-17 04:26:12', 'submission_id': '1gt2kyw'}
{'comment': 'Typical Trump administration, pay to play.', 'created': '2024-11-17 05:12:47', 'submission_id': '1gt2kyw'}
{'comment': "You guys realise Trump is all about burning the country down and enriching himself, right? Surely there's something that can be done about this 🤔? 😉", 'created': '2024-11-17 11:59:20', 'submission_id': '1gt2kyw'}
{'comment': 'I am sure that someone with President Elect Trump’s ear, like maybe someone who is an environmental lawyer and once headed the NRDC, clearly will advise against this, right?\n\n', 'created': '2024-11-17 04:38:16', 'submission_id': '1gt2kyw'}
{'comment': "He's actually trying to destroy everything. Should have seen it coming a mile away.", 'created': '2024-11-17 15:03:08', 'submission_id': '1gt2kyw'}
{'comment': 'And there you have it.\xa0', 'created': '2024-11-17 15:15:36', 'submission_id': '1gt2kyw'}
{'comment': 'Phew, just a fossil fuel executive.\n\nI’m relieved. I expected Honey Boo Boo or Elon Musk’s infant son.', 'created': '2024-11-17 19:59:14', 'submission_id': '1gt2kyw'}
{'comment': "This is probably his most sane appointee up to this point. 20 years ago, the public would probably be infuriated by this. Today, it's just a messed up past we wish we could go back to.", 'created': '2024-11-17 03:46:44', 'submission_id': '1gt2kyw'}
{'comment': '> I love how these idiots don’t even know what the jobs are that they’re appointing people to.\n\nI wrote on another site that the DOE has as much to do with oil as an airplane has to do with underwater exploration.', 'created': '2024-11-17 04:10:30', 'submission_id': '1gt2kyw'}
{'comment': 'So he fits right in with the rest of the trash', 'created': '2024-11-17 03:29:55', 'submission_id': '1gt2kyw'}
{'comment': 'I know. My insane, abusive, alcoholic neighbor worked for DOE in some nuke monitoring capacity.', 'created': '2024-11-17 10:14:26', 'submission_id': '1gt2kyw'}
{'comment': 'Special Advisor for Pregnant Women’s Safety', 'created': '2024-11-17 10:15:42', 'submission_id': '1gt2kyw'}
{'comment': 'The most traditional republican pick so far.', 'created': '2024-11-17 12:49:42', 'submission_id': '1gt2kyw'}
{'comment': 'Dunno, don’t be surprised if Trump starts ripping out wind farms and building fresh new fossil fuel powered generation plants, see if I’m wrong.', 'created': '2024-11-17 04:55:47', 'submission_id': '1gt2kyw'}
{'comment': 'Just assholes all the way down.', 'created': '2024-11-17 03:57:44', 'submission_id': '1gt2kyw'}
{'comment': 'You mind asking him if he can try launching a couple? America and Earth have had a good run, but we’re clearly at Season 8 of GoT and it’s well past time to start wrapping this up.', 'created': '2024-11-17 10:17:56', 'submission_id': '1gt2kyw'}
{'comment': 'The recession of 1990s was all it took for Clinton to beat Bush by 370 Electoral college votes and 5 million votes total ; Obama in 2008 ; Trump is going to pump the Economy on speed, if he was a normal traditional Republican i would say wed face a recession in 6-8 years however with Trump well be there in 2-4 years. Also that the Crash will be hard', 'created': '2024-11-17 02:12:11', 'submission_id': '1gt1k9y'}
{'comment': 'But will it lower the price of eggs?!?', 'created': '2024-11-17 02:01:39', 'submission_id': '1gt1k9y'}
{'comment': 'Anyone? Anyone? Something d-o-o economics?', 'created': '2024-11-17 02:17:16', 'submission_id': '1gt1k9y'}
{'comment': 'Fuck. Am I an adult now that this is interesting?', 'created': '2024-11-17 03:15:09', 'submission_id': '1gt1k9y'}
{'comment': 'Anyone, anyone?', 'created': '2024-11-17 01:47:49', 'submission_id': '1gt1k9y'}
{'comment': 'I would put it that tariffs *accelerated* the Great Depression. \n\nThe Smoot-Hawley Tariff Act was signed into law in June of 1930. The markets already crashed in the previous October. Smoot-Hawley was more like the equivalent of telling people to drink bleach while COVID-19 was already ravaging the US in 2020. \n\nThe crash of 1929 was precipitated by a wildly laissez-faire economy assisted by a financial services industry which was mostly devoid of regulation. The Harding and (especially) Coolidge administrations cleared the way for what was to follow.', 'created': '2024-11-17 02:57:41', 'submission_id': '1gt1k9y'}
{'comment': 'If it’s one things MAGA loves it’s learning from history', 'created': '2024-11-17 02:41:04', 'submission_id': '1gt1k9y'}
{'comment': 'Does anyone else feel like the universe is playing a huge practical joke on us?', 'created': '2024-11-17 04:08:17', 'submission_id': '1gt1k9y'}
{'comment': "Republicans don't know this but Putin does", 'created': '2024-11-17 02:44:38', 'submission_id': '1gt1k9y'}
{'comment': "I'll never be able to think of this scene as funny now, ever again.", 'created': '2024-11-17 03:43:47', 'submission_id': '1gt1k9y'}
{'comment': 'Please I need another FDR', 'created': '2024-11-17 03:36:39', 'submission_id': '1gt1k9y'}
{'comment': 'Whatever happened to him? He used to be on fux news and he just disappeared.', 'created': '2024-11-17 02:51:02', 'submission_id': '1gt1k9y'}
{'comment': 'This is great!', 'created': '2024-11-17 02:03:42', 'submission_id': '1gt1k9y'}
{'comment': "This isn't true. \n\nTariffs **EXASCERBATED** the Great Depression, but didn't cause it.", 'created': '2024-11-17 02:10:30', 'submission_id': '1gt1k9y'}
{'comment': 'Been thinking about this a lot lately.', 'created': '2024-11-17 03:41:42', 'submission_id': '1gt1k9y'}
{'comment': 'The captions misspelled Laffer. Also the Laffer curve is bullshit.', 'created': '2024-11-17 04:46:13', 'submission_id': '1gt1k9y'}
{'comment': "What's the name of this movie?", 'created': '2024-11-17 18:31:17', 'submission_id': '1gt1k9y'}
{'comment': 'But Elon said before the election that we needed to have hardship. So we apparently voted for it.', 'created': '2024-11-17 22:11:16', 'submission_id': '1gt1k9y'}
{'comment': 'I just wanna know what to do with my savings if the value of my dollar will go to shit.', 'created': '2024-11-18 01:15:38', 'submission_id': '1gt1k9y'}
{'comment': "You know what's funny? How accurate this scene is because these little shits in the movie became Boomers. They didn't pay attention and now the pushed for it. Fucking accurate", 'created': '2024-11-17 12:29:55', 'submission_id': '1gt1k9y'}
{'comment': 'This would be so much better if the words were visible. Someone fix it so I can share it', 'created': '2024-11-18 01:09:42', 'submission_id': '1gt1k9y'}
{'comment': 'What if our meth binge economy is still tweaking by the time the next election comes around and the next republican takes another shot of meth to the economy?', 'created': '2024-11-17 02:39:58', 'submission_id': '1gt1k9y'}
{'comment': "The ketamine fueled fantasies of Leon are pushing trump to make it happen sooner. \nTariffs + 75% reduction of the nations largest employer + mass deportations of critical workers = recession \nIt's a race to the bottom.", 'created': '2024-11-17 03:40:54', 'submission_id': '1gt1k9y'}
{'comment': 'Nope. The US is a net importer of eggs, on the order of $100 million a year.', 'created': '2024-11-17 03:19:22', 'submission_id': '1gt1k9y'}
{'comment': 'And now we’re heading for anyone anyone doo doo economics.', 'created': '2024-11-17 02:19:16', 'submission_id': '1gt1k9y'}
{'comment': 'Voodoo economics. I remember hearing about it on the news as a kid', 'created': '2024-11-17 04:30:05', 'submission_id': '1gt1k9y'}
{'comment': 'Yes', 'created': '2024-11-17 12:49:03', 'submission_id': '1gt1k9y'}
{'comment': '', 'created': '2024-11-17 03:47:54', 'submission_id': '1gt1k9y'}
{'comment': "don't worry, rump's other polices will tank the market too. I give it 6mo to be in recession.", 'created': '2024-11-17 04:20:39', 'submission_id': '1gt1k9y'}
{'comment': "You're going to argue with Ben Stein?", 'created': '2024-11-17 03:42:58', 'submission_id': '1gt1k9y'}
{'comment': 'Yeah it was a lack of regulation and speculation that probably did the most damage. The lack of social safety nets and other government programs got us stuck there until FDRs new deal. It’d be a long winded reply to explain much more than that. You’re right though that the tariffs were a reaction to an already shitty economy.', 'created': '2024-11-17 14:15:14', 'submission_id': '1gt1k9y'}
{'comment': 'Just the Nazi part', 'created': '2024-11-17 02:50:39', 'submission_id': '1gt1k9y'}
{'comment': "> learning from history\n\nLearning from history is already quite smart, as it learning from other people's mistakes.\n\nThe minimum is learning from your own mistakes, and there is plenty of missed opportunities here ...", 'created': '2024-11-17 11:13:02', 'submission_id': '1gt1k9y'}
{'comment': "That's literally what he said. It was an effort to alleviate the effects of the already existing Great Depression but instead sank the US deeper into it.", 'created': '2024-11-17 02:27:32', 'submission_id': '1gt1k9y'}
{'comment': 'That’s what the video stated. He said it sank us DEEPER into the Great Depression. The Great Depression was in effect and the tariffs act exacerbated it', 'created': '2024-11-17 02:27:34', 'submission_id': '1gt1k9y'}
{'comment': 'The video even says this. “…and the United States sank deeper into the Great Depression.”', 'created': '2024-11-17 02:28:14', 'submission_id': '1gt1k9y'}
{'comment': "I think that's what he said .. Ben Stien improvised this for Farris Buelers day off.", 'created': '2024-11-17 02:30:51', 'submission_id': '1gt1k9y'}
{'comment': 'He says this, bro. Pay attention.', 'created': '2024-11-17 02:35:37', 'submission_id': '1gt1k9y'}
{'comment': 'Well I just hope nothing insane happens before Biden leaves office. Set the stage is set for Trump.', 'created': '2024-11-17 02:44:53', 'submission_id': '1gt1k9y'}
{'comment': "I'm so sorry that up until now everyone thought you were replying to the video not the post title. We need to do better.", 'created': '2024-11-17 02:37:53', 'submission_id': '1gt1k9y'}
{'comment': 'Ferris Bueller’s Day Off', 'created': '2024-11-17 18:41:15', 'submission_id': '1gt1k9y'}
{'comment': 'The shits in the video are solidly Gen X.', 'created': '2024-11-17 15:25:34', 'submission_id': '1gt1k9y'}
{'comment': '100% was going to say this.', 'created': '2024-11-17 13:18:41', 'submission_id': '1gt1k9y'}
{'comment': "the longer it takes to correct, the harder the fall. Trump has literally said he knows more then the Fed ; when inflation hits again, he's going to cut interest rates ; In the Spring of 2020 i knew Inflation was going to be horrible, also knew who ever was in the white house would pay for it in 2024.", 'created': '2024-11-17 03:07:52', 'submission_id': '1gt1k9y'}
{'comment': 'I mean, if we’re all doing well, and another Republican gets elected and we’re all doing well, I won’t complain. If you go far enough out of course there’s a recession - 2 back to back administrations with a good economy, I’d take.\n\nI just don’t believe that will happen. And I believe they have some nefarious shit planned that will make everyone a lot more concerned with freedom than the economy…', 'created': '2024-11-17 03:03:09', 'submission_id': '1gt1k9y'}
{'comment': 'Better start printing the "I did that" Trump stickers then.', 'created': '2024-11-17 12:04:51', 'submission_id': '1gt1k9y'}
{'comment': "4 years of verbal diarrhea is what we're in for, that's for sure.", 'created': '2024-11-17 02:23:17', 'submission_id': '1gt1k9y'}
{'comment': "So do I. Right about the time when Oliver North was taking time away from my beloved Mr Roger's Neighborhood. \n\nI did not like that time.", 'created': '2024-11-17 06:27:18', 'submission_id': '1gt1k9y'}
{'comment': 'He doesn\'t say it caused the depression either, but that it exacerbated it, hence why he says "sank deeper"', 'created': '2024-11-17 05:41:10', 'submission_id': '1gt1k9y'}
{'comment': "they don't even do that well", 'created': '2024-11-17 06:10:33', 'submission_id': '1gt1k9y'}
{'comment': 'It was a response to the post title not the video.', 'created': '2024-11-17 02:38:15', 'submission_id': '1gt1k9y'}
{'comment': 'It was a response to the post title not the video.', 'created': '2024-11-17 02:38:20', 'submission_id': '1gt1k9y'}
{'comment': 'It was a response to the post title not the video.', 'created': '2024-11-17 02:38:32', 'submission_id': '1gt1k9y'}
{'comment': 'It was a response to the post title not the video.', 'created': '2024-11-17 02:38:49', 'submission_id': '1gt1k9y'}
{'comment': 'It was a response to the post title not the video.\n\nPay attention bro.', 'created': '2024-11-17 02:38:43', 'submission_id': '1gt1k9y'}
{'comment': '> We need to do better.\n\nThe election, once again, proved that. But a guy in the movie said it, so...', 'created': '2024-11-17 04:07:15', 'submission_id': '1gt1k9y'}
{'comment': 'Thanks!', 'created': '2024-11-17 18:42:20', 'submission_id': '1gt1k9y'}
{'comment': 'I stand corrected. Thank you kindly. I see that we still agree that they suck for not paying attention lol', 'created': '2024-11-18 05:12:46', 'submission_id': '1gt1k9y'}
{'comment': 'I know he wants a Nobel prize. But does he have one? \n\nhttps://amp.cnn.com/cnn/2024/10/23/politics/nobel-prize-economists-harris-economic-plan', 'created': '2024-11-17 03:30:00', 'submission_id': '1gt1k9y'}
{'comment': "The fed chairman has said he refuses to resign (aka Trump can't replace him with a chrony)", 'created': '2024-11-17 08:43:21', 'submission_id': '1gt1k9y'}
{'comment': 'dont kid your self, allot of people are worried about the Economy, the boom bust cycle is not fiction its fact. our sins will come back to haunt us, we never corrected for 2008, let alone 2020......', 'created': '2024-11-17 03:06:14', 'submission_id': '1gt1k9y'}
{'comment': "Not 'I did that' but instead 'You are all suckers and losers'", 'created': '2024-11-17 12:35:45', 'submission_id': '1gt1k9y'}
{'comment': 'And "if you voted for Trump, you owe me gas money" stickers', 'created': '2024-11-17 14:24:01', 'submission_id': '1gt1k9y'}
{'comment': 'But OP\'s title said it "led to the Great Depression". So that\'s what he/she is correcting above. OP is spreading BS. What OP should have stated was tariffs exacerbated the recession.', 'created': '2024-11-17 05:51:45', 'submission_id': '1gt1k9y'}
{'comment': "My bad, I didn't even look at the title on this post ngl", 'created': '2024-11-17 02:40:05', 'submission_id': '1gt1k9y'}
{'comment': 'I understand that. I was expanding on your point.', 'created': '2024-11-17 02:39:24', 'submission_id': '1gt1k9y'}
{'comment': "Ben Stien is an incredibly bright guy had a TV show for a while where if the contestants could answer more questions right than him they could win money. Called win Ben Stein's money ran for 6 seasons. He night be fully retired now he's 79 years old. \n\nHe did some other things including a film intitled expelled: no intelligence allowed in which he got Richard Dawkins so flustered that Dawkins claimed life on earth came from space crystals.", 'created': '2024-11-17 02:47:20', 'submission_id': '1gt1k9y'}
{'comment': 'He can replace him with a crony when his term is up in 2026. But luckily that’s just one vote on the FOMC. It wouldn’t be ideal but there are some safeguards.', 'created': '2024-11-17 09:31:31', 'submission_id': '1gt1k9y'}
{'comment': 'Reminder that the new deal killed the boom bust cycle until Reagan stripped started to revoke the new deal', 'created': '2024-11-17 08:44:24', 'submission_id': '1gt1k9y'}
{'comment': "It's the economy that doomed Harris.", 'created': '2024-11-17 15:57:47', 'submission_id': '1gt1k9y'}
{'comment': 'I agree with you fellers', 'created': '2024-11-17 04:45:27', 'submission_id': '1gt1k9y'}
{'comment': 'He was a speech writer for Nixon. I don’t enjoy him as much since I learned that.', 'created': '2024-11-17 02:57:52', 'submission_id': '1gt1k9y'}
{'comment': 'i dont think you guys have been paying attention to the MAGA agenda, END THE FED......', 'created': '2024-11-17 14:53:04', 'submission_id': '1gt1k9y'}
{'comment': "**Misinformation* about the economy doomed Harris. \n\nI can't believe the amount of people who voted for Trump didn't know what a tariff was! Next presidential election the Democrats should just campaign as a damn economics class.", 'created': '2024-11-17 20:17:59', 'submission_id': '1gt1k9y'}
{'comment': "very much so and not to their fault unlike Bush who did drive the economy off a cliff, and Trump who's about to do the same", 'created': '2024-11-17 18:07:41', 'submission_id': '1gt1k9y'}
{'comment': "Yes, I didn't mean that the economy was bad, it was doing well, too many were more worried about the price of eggs than who would better lead the country.", 'created': '2024-11-17 20:37:18', 'submission_id': '1gt1k9y'}
{'comment': "They'll still find a way to blame it on Harris, not even Biden, and MAGA will buy it", 'created': '2024-11-17 18:39:12', 'submission_id': '1gt1k9y'}
{'comment': 'MAGA may buy it, but those swing voters wont, Economy gets bad enough and power will change', 'created': '2024-11-17 21:47:26', 'submission_id': '1gt1k9y'}
{'comment': 'https://preview.redd.it/ivb3mddrvc1e1.jpeg?width=3179&format=pjpg&auto=webp&s=adf1156928c607460d8336f82dcd5fb89f4d2143\n\nI was expecting this energy.', 'created': '2024-11-17 01:25:44', 'submission_id': '1gsxxbj'}
{'comment': 'I was hoping he would be arrested.', 'created': '2024-11-16 22:59:18', 'submission_id': '1gsxxbj'}
{'comment': 'This image infuriates me. For years Democrats warned that Trump is dangerous, a fascist, he will bring down democracy. Then he wins and they just act as if it’s business as usual. Why legitimize him? Why not refuse to meet and say he won’t recognize someone who tried to overthrow the government? Because now I have maga people on FB saying, look they are friends, it was just political mudslinging. He’s either a danger or he’s not and this makes it seem like he’s not. I’m so tired of the Democrats rolling over and playing nice.', 'created': '2024-11-16 23:56:22', 'submission_id': '1gsxxbj'}
{'comment': "Folks realize something. Trump’s ego is his biggest weakness. He thinks everyone is his friend when they are *nice* to him. That's how you play Trump. \n\nHe even said in the summer how nice Biden was to him and it is a shame that he is running against him.", 'created': '2024-11-17 00:19:33', 'submission_id': '1gsxxbj'}
{'comment': 'Cute. We’re still fucked.', 'created': '2024-11-17 00:28:41', 'submission_id': '1gsxxbj'}
{'comment': "Leading by example doesn't really mean much when the other side doesn't give a shit and will do whatever they can to never leave power again", 'created': '2024-11-17 00:42:49', 'submission_id': '1gsxxbj'}
{'comment': 'I keep hoping Biden looks so happy because he has something up his sleeve like when he dropped the Harris bomb. I can only hope and pray. 🙏🏾', 'created': '2024-11-17 01:33:40', 'submission_id': '1gsxxbj'}
{'comment': 'Trump is an asshole as with everyone else he picked.', 'created': '2024-11-17 00:36:15', 'submission_id': '1gsxxbj'}
{'comment': 'I feel so leaderless.', 'created': '2024-11-16 23:59:57', 'submission_id': '1gsxxbj'}
{'comment': "Trump did not do this when Biden won in 2020. Not understanding why Biden didnt treat him the same. It's not like Trump is new at this.", 'created': '2024-11-17 00:58:34', 'submission_id': '1gsxxbj'}
{'comment': 'This is how we win, by being better than them /s', 'created': '2024-11-16 22:55:51', 'submission_id': '1gsxxbj'}
{'comment': 'America chose Trump. There’s not much anyone can do except wait to see what he does after he’s sworn in.', 'created': '2024-11-17 04:02:53', 'submission_id': '1gsxxbj'}
{'comment': '[removed]', 'created': '2024-11-17 01:01:40', 'submission_id': '1gsxxbj'}
{'comment': '50 shades of Chamberlain and Hitler at Munich. When you need Churchill and you get this.', 'created': '2024-11-17 07:03:19', 'submission_id': '1gsxxbj'}
{'comment': 'I hope Joe bitch-slapped him in the back room.', 'created': '2024-11-17 01:03:10', 'submission_id': '1gsxxbj'}
{'comment': 'Yet the example doesn’t matter to voters who were snowballed ..', 'created': '2024-11-17 01:59:31', 'submission_id': '1gsxxbj'}
{'comment': 'I can’t get the article to open. Is there an alternate link or could someone provide a tldr please?', 'created': '2024-11-16 23:47:33', 'submission_id': '1gsxxbj'}
{'comment': 'I’m sure when trump left and got in his limo he laughed his head off. Fucker.', 'created': '2024-11-17 02:19:33', 'submission_id': '1gsxxbj'}
{'comment': 'Biden doesn’t want to be thrown in prison. Capitulation and appeasement. The whole thing disgusted me. You’re seeing the same thing from the press.', 'created': '2024-11-17 01:25:47', 'submission_id': '1gsxxbj'}
{'comment': "Greeting him like this is why people don't take establishment Democrats seriously. Months of warning that he was a fascist and a danger to democracy, only to greet him with open arms and a handshake. People think they are just empty words, and this makes it look that way. I understand Democrats respect the results of the vote and the peaceful transition of power, but greeting the end of Democracy with a smile and a handshake leads people to believe that it was a bunch of BS.\n\nNone of them have signed transition and ethics agreements that would put some guardrails on the incoming admin with the transfer of power, and no meeting should have been done until then. And he certainly didn't need a warm welcome after he tried to steal the last election.\n\nIt's no wonder people don't trust Democrats when we pull BS like this.", 'created': '2024-11-17 08:23:02', 'submission_id': '1gsxxbj'}
{'comment': 'Biden lost my respect with this. Playing nice is what got us here. Fireside chat with the guy who said you stole the election from him and tried to stage a coup against you. Shit talked you and your vp, manipulated this election...and all you have to offer is a shit eating grin', 'created': '2024-11-17 01:09:10', 'submission_id': '1gsxxbj'}
{'comment': 'Use your power Mr. President.', 'created': '2024-11-17 14:01:15', 'submission_id': '1gsxxbj'}
{'comment': 'It was disgusting', 'created': '2024-11-17 02:59:05', 'submission_id': '1gsxxbj'}
{'comment': "Joe sat on his ass for 4 years and did nothing to prevent, prepare for, or insulate us from another Trump term.\n\n\nF*ck all these old people that don't realize the rules have changed.", 'created': '2024-11-17 03:48:31', 'submission_id': '1gsxxbj'}
{'comment': 'Trump wants loyal control of the military because he wants to use it against protesters when they riot after Trump refuses to cede power in 2028.', 'created': '2024-11-17 01:52:13', 'submission_id': '1gsxxbj'}
{'comment': 'trump is going down ….', 'created': '2024-11-17 00:33:19', 'submission_id': '1gsxxbj'}
{'comment': "Trump didn't do this for Biden four years ago", 'created': '2024-11-17 17:26:27', 'submission_id': '1gsxxbj'}
{'comment': 'he knows exactly what trump will do to this country and he’s going to let him do it because of the rules. democrats are an accessory if trump takes office.', 'created': '2024-11-17 19:20:59', 'submission_id': '1gsxxbj'}
{'comment': 'We don’t know what goes on. Harris is asking for donations for a recount. No big revelation, but it’s there. It’s not over till January.', 'created': '2024-11-17 21:33:53', 'submission_id': '1gsxxbj'}
{'comment': "I understand people's frustration about the results of the election but the current President has to respect the outcome and do his duty to begin the transition of power. Biden is doing his Presidential duty.\n\nI don't see how we'd be any better than Trump and his supporters back on Jan. 6th, 2021 if we expect Biden to do the something similar.", 'created': '2024-11-17 02:25:27', 'submission_id': '1gsxxbj'}
{'comment': 'Something is afoot with the dems. Either new vote counts will happen or the fbi is investigating. I sure hope so. We may know more (or not) in about a week.', 'created': '2024-11-17 01:12:15', 'submission_id': '1gsxxbj'}
{'comment': "Again. A nothingburger. Of course we have and will behave. It's what we do.", 'created': '2024-11-17 17:22:08', 'submission_id': '1gsxxbj'}
{'comment': "This is why I am renouncing my membership to the Democratic party. Biden, you have failed us. You're handing us over to a madman.", 'created': '2024-11-17 00:08:04', 'submission_id': '1gsxxbj'}
{'comment': 'Should be subtitled “Peace in our time”', 'created': '2024-11-17 00:29:28', 'submission_id': '1gsxxbj'}
{'comment': "Putin looks like he's receiving a scolding from his father. Love it.", 'created': '2024-11-17 19:41:40', 'submission_id': '1gsxxbj'}
{'comment': 'This is the way.', 'created': '2024-11-17 05:23:16', 'submission_id': '1gsxxbj'}
{'comment': 'Obama had this man Putin checked like a 3-way fork on the chessboard.', 'created': '2024-11-18 04:26:25', 'submission_id': '1gsxxbj'}
{'comment': 'That’s fierce.', 'created': '2024-11-17 21:30:43', 'submission_id': '1gsxxbj'}
{'comment': "Biden goes full dark Brandon and read Trump's is rights abs hand cuffs him", 'created': '2024-11-16 23:54:01', 'submission_id': '1gsxxbj'}
{'comment': 'As he should be', 'created': '2024-11-17 02:59:26', 'submission_id': '1gsxxbj'}
{'comment': 'Agreed. If Kamala had won, we would be dealing with the nastiest fall out imaginable from them if not an all out civil war. \nTreat him like what he is, a convicted felon who has yet to repay his debt to society.', 'created': '2024-11-17 00:08:33', 'submission_id': '1gsxxbj'}
{'comment': 'LITERALLY I don’t understand why at the very least Biden just wouldn’t invite him in. But more than that, telling him they’ll do everything they can to accommodate him? That just feels like a total slap in America’s face', 'created': '2024-11-17 00:49:11', 'submission_id': '1gsxxbj'}
{'comment': 'You think Biden should simply refuse to leave office?', 'created': '2024-11-17 00:02:49', 'submission_id': '1gsxxbj'}
{'comment': 'What are they supposed to do when American voted the dangerous man in? I mean I hear you and I get it. I can’t even stand to see that orange POS in the WH. However, America spoke and said that’s what they wanted. I believe Biden is just doing what he has to.', 'created': '2024-11-17 08:18:58', 'submission_id': '1gsxxbj'}
{'comment': 'Same. In fact, it makes it look like they were in cahoots together and we have all been played. In 10 yrs are we going to find out they were both on Russia’s payroll? I don’t know what to think anymore since anybody can make up anything facts be darned, so why not?', 'created': '2024-11-17 00:02:28', 'submission_id': '1gsxxbj'}
{'comment': 'Why legitimize him?\n\nBecause he won. Either your commitment to democracy is absolute, or it isn’t. Acting like Trump did in 2020 would’ve been the true hypocrisy.', 'created': '2024-11-17 03:43:04', 'submission_id': '1gsxxbj'}
{'comment': "So the people had spoken. They told us repeatedly and we didnt act as a group. Blame the voters. We had a choice and we chose Mr. Orange. It sucks but aparently enough of us are stupid enough to think he is going to make things better. C'est la via, thats what we get.", 'created': '2024-11-17 02:03:46', 'submission_id': '1gsxxbj'}
{'comment': 'I was just discussing this very thing with a friend and we are appalled to see Biden show his belly like this. It looks like this was all just part of the plan. It makes it seem as if all of the people who say that the Democrats and Republicans are the same are actually right. Either, this man is a danger to the Republic and to democracy or he isn’t. If he is a danger, we do not pretend like this is normal. For shame, Biden. \n\nThis hypocrisy is a big part of why people did not come out and vote for Kamala.', 'created': '2024-11-17 00:37:13', 'submission_id': '1gsxxbj'}
{'comment': 'He is dangerous. Remember his first term? Give him time to get back in the WH and start going all dictator on us', 'created': '2024-11-17 02:14:59', 'submission_id': '1gsxxbj'}
{'comment': 'True, democrats are weak. No strong leadership. I may get downvoted but it’s true.', 'created': '2024-11-17 10:23:56', 'submission_id': '1gsxxbj'}
{'comment': "Trump didn't do it for Biden, plus he was president before, shouldn't need an introduction to the WH.", 'created': '2024-11-17 19:39:58', 'submission_id': '1gsxxbj'}
{'comment': 'This! Why are dems just laying over? Letting our democracy slip away like a bunch of old heads that don’t know what’s happening. It’s time for others to take charge in that party. And it’s time for more people, maybe even you or me, to start getting involved..from city level and on up. I’m in disbelief with the way dems are handling, or should I say not handling anything…it’s obviously time for a change.', 'created': '2024-11-17 00:38:52', 'submission_id': '1gsxxbj'}
{'comment': 'Like Al Gore certifying the election in 2000, and refusing any members of the house to object. \n\nThis has been going on for decades.', 'created': '2024-11-17 02:16:55', 'submission_id': '1gsxxbj'}
{'comment': 'It sucks but what else is he supposed to do? DOJ screwed the pooch years ago', 'created': '2024-11-17 06:53:29', 'submission_id': '1gsxxbj'}
{'comment': '“Be the bigger man”', 'created': '2024-11-17 08:43:12', 'submission_id': '1gsxxbj'}
{'comment': 'I agree. I can’t believe that Biden and team are going to just hand over power in January to trump, knowing his Cabinet picks and his plan for our country. What the fuck is happening', 'created': '2024-11-17 02:01:42', 'submission_id': '1gsxxbj'}
{'comment': "It's pretty obvious that the Democrats never actually gave a fuck about stopping Trump or have ever had our best interests at heart. They just want power like everybody else in politics.\n\nIt's up to We The People to stop Trump now...", 'created': '2024-11-17 02:33:11', 'submission_id': '1gsxxbj'}
{'comment': 'Same. It makes me ashamed to be a Democrat. If this guy is such an existential threat to the nation, why didn’t the Democratic AG prosecute him? Why is the Democratic president welcoming him to the White House and promising a smooth transition? Why isn’t the Democratic-controlled Senate approving judges as fast as they can mash the button? What is the point of being the opposition party if they won’t actually oppose anything? WTH is going on here?', 'created': '2024-11-17 04:27:33', 'submission_id': '1gsxxbj'}
{'comment': 'Agreed. So much for protecting this nation from enemies both foreign *and domestic*.', 'created': '2024-11-17 01:47:50', 'submission_id': '1gsxxbj'}
{'comment': 'You have to assume after Trump things may go back to normal. The bat idiom would be “be the better man.”', 'created': '2024-11-17 22:02:00', 'submission_id': '1gsxxbj'}
{'comment': "He's so shallow, so basic, so intellectually inapt, so easy to read and to manipulate, yet, he repeatedly seems to outsmart everyone in the room.", 'created': '2024-11-17 02:00:02', 'submission_id': '1gsxxbj'}
{'comment': 'This is why I think Jeffries needs to "seduce" him by flattering him and slowly turning him against the rest of the right. It would be pretty easy to point to all the polls showing how much more unpopular P2025, Vance, and Congress are than him and that they would just drag him down.', 'created': '2024-11-17 03:14:52', 'submission_id': '1gsxxbj'}
{'comment': "I actually feel sort of bad for him because I can't imagine how anyone at that age thinks that way, especially when they're rich. It's the one thing all rich people complain about, that they can't tell you really likes them because everyone is nice go them. \n\nTrump just has absolutely no self awareness.", 'created': '2024-11-17 02:31:36', 'submission_id': '1gsxxbj'}
{'comment': 'Same. I fucking hate it.', 'created': '2024-11-17 00:07:43', 'submission_id': '1gsxxbj'}
{'comment': 'The way we win is enforcing the laws and treating these assholes like everyone else. \n\nThat’s the principle this country was founded on (and yes, I get that it was not even close to being implemented, but I believe this was the intent in its purest form). \n\nUntil we start doing that, yeah, we’re going to keep losing.', 'created': '2024-11-16 23:17:12', 'submission_id': '1gsxxbj'}
{'comment': "We tried that, the way we win is getting nasty and ugly. Politics is all about perception. Make the other side look bad and you become the better option. Policy doesn't mean shit to these idiot voters", 'created': '2024-11-16 23:32:19', 'submission_id': '1gsxxbj'}
{'comment': 'tldr;\n\nThe recent meeting between President Joe Biden and President-elect Donald Trump at the White House marked a significant moment in the peaceful transfer of power, highlighting the contrast between this transition and the events of 2020. Four years ago, Trump refused to concede defeat to Biden, spreading baseless conspiracy theories that ultimately fueled the January 6 Capitol attack. This time, Biden hosted Trump with the calm demeanor he has championed as essential to preserving democracy, emphasizing collaboration with Trump’s transition team to ensure a smooth handover of federal responsibilities.\n\nThe transition stands in stark contrast to Trump’s behavior in 2020, when his administration delayed key bureaucratic processes, stalling necessary preparations for the incoming Biden administration. By contrast, the Biden administration has been proactive, with the General Services Administration promptly acknowledging Trump’s victory and initiating the transfer of administrative services. This underscores Biden’s dedication to upholding democratic norms, even in the face of political rivalry.\n\nAnother defining moment will occur on January 6, 2025, when Vice President Kamala Harris fulfills her duty to certify the election results, a solemn task performed in the very spot pro-Trump extremists overran four years prior. Her actions, alongside Biden’s, illustrate a commitment to democracy that transcends personal political ambition, offering a fleeting return to normalcy before the uncertainties of a second Trump presidency. Together, these actions serve as a final testament to Biden’s belief in the resilience of democratic principles.', 'created': '2024-11-17 00:02:06', 'submission_id': '1gsxxbj'}
{'comment': 'The dude is 78 years old and his mental health is declining. Give him a break.', 'created': '2024-11-17 03:04:34', 'submission_id': '1gsxxbj'}
{'comment': 'He underestimated our stupidity.', 'created': '2024-11-17 15:01:01', 'submission_id': '1gsxxbj'}
{'comment': 'Trump goes down on Putin. \n\nI fixed it for you.', 'created': '2024-11-17 00:40:09', 'submission_id': '1gsxxbj'}
{'comment': "I mean, I think we would be, I'm just not sure it would be real effective.", 'created': '2024-11-17 02:29:01', 'submission_id': '1gsxxbj'}
{'comment': 'There\'s a brand new email from the Harris campaign floating around with a few hints. Not the one that started "As you know, I was a prosecutor", a newer one.', 'created': '2024-11-17 03:18:56', 'submission_id': '1gsxxbj'}
{'comment': "I'll believe it when it happens.", 'created': '2024-11-17 18:12:51', 'submission_id': '1gsxxbj'}
{'comment': '', 'created': '2024-11-17 00:19:42', 'submission_id': '1gsxxbj'}
{'comment': 'You know the Ukraine war started under Obama?', 'created': '2024-11-18 14:21:01', 'submission_id': '1gsxxbj'}
{'comment': 'I actually have some relief in that we aren’t dealing with the “civil war” BS. I know that’s terrible but I was dreading it.', 'created': '2024-11-17 02:19:47', 'submission_id': '1gsxxbj'}
{'comment': 'People who did an insurrection are laughing at democrats for this shit', 'created': '2024-11-17 02:59:27', 'submission_id': '1gsxxbj'}
{'comment': "correct and for the GOP they'll claim that harris is not the rightful winner of the Election but Trump is the winner as seen in 2020", 'created': '2024-11-17 07:58:15', 'submission_id': '1gsxxbj'}
{'comment': 'i get inviting him to the white house and meeting with him like any other dignitary but the thumbs up photo with Jill there was too much. why is the DNC asking me for more money while biden takes pictures with trump', 'created': '2024-11-17 03:42:09', 'submission_id': '1gsxxbj'}
{'comment': 'Because it\'s important to respect institutions and democracy even when your opponent doesn\'t. It\'d a simple way of standing up for the process and not legitimizing their Shitting on the process. Look up "20 lessons from the 20th century "', 'created': '2024-11-17 02:57:33', 'submission_id': '1gsxxbj'}
{'comment': 'I feel it’s a keep your friends close and your enemies closer thing, plus it’s what you are supposed to do.\n\nDon’t count out Dark Brandon - not his first rodeo.', 'created': '2024-11-17 14:37:44', 'submission_id': '1gsxxbj'}
{'comment': 'Maybe Biden should call on Seal Team Six to “deal with a political rival” as is his constitutional right as chief executive. /s', 'created': '2024-11-17 00:23:26', 'submission_id': '1gsxxbj'}
{'comment': 'Of course not but he doesn’t need to sit and laugh with him. I wouldn’t sit and laugh with Trump for money.', 'created': '2024-11-17 00:03:42', 'submission_id': '1gsxxbj'}
{'comment': 'Man this is exactly what I thought when I saw that shit. Like what the actual fuck. I immediately pictured that scene in Total Recall near the end when Hauser and Cohagen were revealed to be in on it together. It’s like nothing is even real anymore and suddenly nothing matters.', 'created': '2024-11-17 00:49:34', 'submission_id': '1gsxxbj'}
{'comment': 'Could it be that they want the next round of tax cuts they all benefit from?', 'created': '2024-11-17 01:47:44', 'submission_id': '1gsxxbj'}
{'comment': "> Either your commitment to democracy is absolute, or it isn’t.\n\nDemocracy is a means to an end. The goal is to make life better for everyone.\n\nLetting Trump into power takes us further from that, so we shouldn't do it.", 'created': '2024-11-17 18:07:31', 'submission_id': '1gsxxbj'}
{'comment': 'I’m with you until the last line. Frankly, voting for Harris was the last resort in keeping our country from falling into what has potentially been campaigned from the Trump end as full-blown fascism. People who couldn’t decide between Trump and Harris will forever blow my mind.', 'created': '2024-11-17 00:51:31', 'submission_id': '1gsxxbj'}
{'comment': 'That high road is deep in snow.', 'created': '2024-11-17 18:08:58', 'submission_id': '1gsxxbj'}
{'comment': 'I mean that was evident when Biden ran for another term and no one discouraged him from doing so. We would be in a totally different place if everything wasn’t about a power grab.', 'created': '2024-11-17 03:07:20', 'submission_id': '1gsxxbj'}
{'comment': 'To be fair I’m certain most think, “I can influence his behavior, and besides even if I don’t he can’t be so dumb he’ll actually do XYZ.” And then he is dumb enough to do XYZ.', 'created': '2024-11-17 03:55:15', 'submission_id': '1gsxxbj'}
{'comment': "I can't imagine how different things would be if Trump had been arrested immediately after the insurrection.", 'created': '2024-11-17 00:04:21', 'submission_id': '1gsxxbj'}
{'comment': 'Yep.\n\nWe keep being afraid to be perceived as political so we let them commit crimes with no consequence. Including national security crimes.\n\nAll in the name of political “normalcy”.', 'created': '2024-11-16 23:30:08', 'submission_id': '1gsxxbj'}
{'comment': 'Exactly spot on if you look at it from the Republican Party perspective they want themselves to be an autocratic government which explains the appointment of trump allies eventually leaving the way for an hereditary dictatorship system. That itself is never wanted by the founding fathers', 'created': '2024-11-16 23:19:05', 'submission_id': '1gsxxbj'}
{'comment': 'There are so many things wrong with the country right now but the biggest is that wealthy individuals are forming a global oligarchy that has no interest in upholding a democracy. I don’t know how you get out of that. They control everything.', 'created': '2024-11-17 06:06:13', 'submission_id': '1gsxxbj'}
{'comment': 'Well is sure is nice Biden is peacefully handing over power to the guy who is going to end our democracy. I am sure the history books will appreciate this kind gesture.\xa0', 'created': '2024-11-17 00:30:08', 'submission_id': '1gsxxbj'}
{'comment': '[looks like you might be referring to this letter in Pennsylvania. address to Governor Shapiro Ally of the vice president. if the letter was actually cooler it turns out that Donald Trump really capitalized on the Russians hacking the election for Him](https://spoutible.com/thread/37794003)', 'created': '2024-11-17 03:44:58', 'submission_id': '1gsxxbj'}
{'comment': 'Not this Ukraine War. Putin was always going to try and take it. \n\nRegardless, none of that changes the fact that Obama had him checked like a mf', 'created': '2024-11-18 21:10:01', 'submission_id': '1gsxxbj'}
{'comment': 'At this point, I’m done walking on eggshells with them. Let them be mad and let them react and then arrest them and charge them with domestic terrorism.', 'created': '2024-11-17 02:23:17', 'submission_id': '1gsxxbj'}
{'comment': 'It’s a small relief. The reality is that if Trump does what he promises, I don’t know how we don’t ultimately end up where the most unhinged among them wanted us to be anyway: at some form of civil conflict. Our options are pretty limited here if the intent is to truly end democracy.', 'created': '2024-11-17 02:25:11', 'submission_id': '1gsxxbj'}
{'comment': 'I wouldn’t call it game over yet on this point. There is a part of me still thinking that he’ll reach a point of insanity where the good people that are left will be forced to stand up and fight back to save our nation from its own darkest impulses.', 'created': '2024-11-17 04:53:22', 'submission_id': '1gsxxbj'}
{'comment': "There's always the next 4 years", 'created': '2024-11-18 01:11:26', 'submission_id': '1gsxxbj'}
{'comment': 'This!', 'created': '2024-11-18 04:14:09', 'submission_id': '1gsxxbj'}
{'comment': 'Well right now many of them are doing it from prison so there’s that.', 'created': '2024-11-17 14:25:10', 'submission_id': '1gsxxbj'}
{'comment': 'This. Do all the transition stuff if you want to but the smiling photo shoot with this motherfucker just feels like pour salt in our collective open wound. Fuck this bullshit.', 'created': '2024-11-18 01:45:13', 'submission_id': '1gsxxbj'}
{'comment': 'I think the other commenter below hit the nail on the head when they said we missed the proper thing to do years ago when he should have already been in prison. If democracy had followed through on that instead of constantly delaying his trials and having his stacked Supreme Court ruling presidents immune in anticipation of his administration, AND if he hadn’t ignored this part of the process himself last time while promising to be a dictator from day one this time — then maybe I’d agree with you.', 'created': '2024-11-17 05:15:59', 'submission_id': '1gsxxbj'}
{'comment': 'If you don’t respect the will of the people then that makes you the dictator, not them. Too bad America doesn’t implement its democracy very well.', 'created': '2024-11-17 03:26:50', 'submission_id': '1gsxxbj'}
{'comment': 'What if we all die in nuclear war in three years because of Trump? What would have been the proper thing to do?', 'created': '2024-11-17 04:39:33', 'submission_id': '1gsxxbj'}
{'comment': 'True', 'created': '2024-11-17 15:08:08', 'submission_id': '1gsxxbj'}
{'comment': 'There are six Supreme Court justices he can exercise his rights with, as well.', 'created': '2024-11-17 00:44:52', 'submission_id': '1gsxxbj'}
{'comment': "I don't think there's a good way to solve this, especially with Trump winning the popular vote. Biden has run his presidency as if he is preserving democracy, and this tradition of peacefully transitioning power is a part of that. And that sucks because they did tell us Trump was a threat to democracy, but democracy chose him.\n\nIf Biden refused this moment, the Republicans would accuse him of not willing to cede power, it would be a blemish on the democratic tradition (even though Trump did it first), and Democrats leadership love the opinions of the conservative base. There's just not a good answer for anyone here.", 'created': '2024-11-17 00:22:33', 'submission_id': '1gsxxbj'}
{'comment': 'Anything’s possible. I’m sure they all have accountants that make sure they pay nothing anyway. Probably all get massive refunds.', 'created': '2024-11-17 03:37:21', 'submission_id': '1gsxxbj'}
{'comment': 'No. Democracy is the END.\n\nLife is better when the people choose their government, instead of having an elite choosing the government for them. \n\nYou either trust the people, or you don’t.\n\nIf you think you know better than the majority, you’re imagining an elite which includes you. That’s delusional.\n\nThe theory is that when the people choose, they choose with self-interest in mind and, in the long run, that yields a better life for everyone. Doesn’t always work out, though.', 'created': '2024-11-17 18:33:02', 'submission_id': '1gsxxbj'}
{'comment': 'There was reasonable cause to believe he had committed one of the most heinous crimes against our country that day (don’t forget there are statements on the congressional record from witnesses - sitting congressmen- within a week of the insurrection impugning trump for these crimes). \n\nNo way he EVER should have been allowed to run. \n\nWe have had many opportunities to take the exit off this road, but here we are.', 'created': '2024-11-17 00:14:10', 'submission_id': '1gsxxbj'}
{'comment': 'Spot on.', 'created': '2024-11-16 23:30:40', 'submission_id': '1gsxxbj'}
{'comment': "Yes, this ☝️💯%. (You should have many more up votes.) Poor people have no money, no power, no control and no representation. And since for the most part they are uneducated, they aren't smart enough to figure out how to get it.", 'created': '2024-11-17 14:03:20', 'submission_id': '1gsxxbj'}
{'comment': 'The war started in 2014 under Obama and escalated in 2022. So yes this war started in 2014.\xa0', 'created': '2024-11-18 21:58:14', 'submission_id': '1gsxxbj'}
{'comment': 'Yes get down and dirty . Can’t walk on egg shells', 'created': '2024-11-17 03:00:29', 'submission_id': '1gsxxbj'}
{'comment': 'Honestly I think Trump is less dangerous for the country than JD. \n\nTrump is obviously in it for himself, he just wants the power and admiration. And if he gets that, he’s happy. Additionally, despite pulling off the occasional hail-mary, he’s somewhat inept, always making unforced errors because he can’t listen to other people. \n\nJD however is in it because he wants to implement his twisted far right view of the country. He’s organized and disciplined, and would not stop at any lengths. He’s very unlikeable, but that won’t matter if Trump croaks and he takes over.', 'created': '2024-11-17 11:15:20', 'submission_id': '1gsxxbj'}
{'comment': 'It’ll be interesting if trumpy pardons them. I’m thinking he won’t because they don’t have the big bucks to pay him off. Last time wasn’t it $2 mil a pardon?', 'created': '2024-11-17 17:13:00', 'submission_id': '1gsxxbj'}
{'comment': "Further consolation is they think Trump is going to get them out but I'm sure he won't. Not because he doesn't want to but because he can't be bothered, hope they enjoy rotting", 'created': '2024-11-17 16:34:53', 'submission_id': '1gsxxbj'}
{'comment': 'Most of them are already out.', 'created': '2024-11-17 18:04:23', 'submission_id': '1gsxxbj'}
{'comment': 'Merrick Garland was the worst attorney general we’ve ever had !! big baby', 'created': '2024-11-17 15:09:35', 'submission_id': '1gsxxbj'}
{'comment': 'Oh we missed the bus on the proper thing to do years ago when he should have already been in prison.', 'created': '2024-11-17 04:56:04', 'submission_id': '1gsxxbj'}
{'comment': "And too, I'm not sure it would work. I don't. I think unless Trump died a very natural death, his people would freak and we would just be back here.", 'created': '2024-11-17 02:33:51', 'submission_id': '1gsxxbj'}
{'comment': 'YES but at the same time, they campaigned on literally burning our democracy into flames. I don’t think there’s any reason why Biden should invite or welcome that after trashing him as a fascist rightfully for so long. Trying to pretend our democracy isn’t at stake when he just hands it over to Trump is a lose-lose for literally all of America.', 'created': '2024-11-17 00:53:30', 'submission_id': '1gsxxbj'}
{'comment': 'They will accuse us of anything their twisted minds can dream up. We can’t use that as a guide.', 'created': '2024-11-17 01:47:57', 'submission_id': '1gsxxbj'}
{'comment': "> There's just not a good answer for anyone here.\n\nThere is, but it would take actual conviction to do, not just a belief in the process.", 'created': '2024-11-17 18:06:30', 'submission_id': '1gsxxbj'}
{'comment': "> Democracy is the END.\n\nAhh, so you care more about the process than outcomes.\n\nYou'd have been a wonderful little Nazi, putting people on the trains to the death camps because that's what the majority voted for.\n\n> Life is better when the people choose their government\n\nHitler was elected, you know. And so was Trump.\n\n> The theory is that when the people choose, they choose with self-interest in mind\n\nYeah, that theory is looking mighty shaky right now.\n\n> Doesn’t always work out, though.\n\nAnd you even admit that!", 'created': '2024-11-17 19:03:47', 'submission_id': '1gsxxbj'}
{'comment': "No Putin did that by taking Crimea like the scumbag he is. All he wants to do is bring pain to Ukrainians and annex them even though they don't want that. It's that simple. That's why Obama had him checked like a little rugrat.", 'created': '2024-11-18 22:10:26', 'submission_id': '1gsxxbj'}
{'comment': 'They’ll become his Brown Shirts. They’ll go back to their communities and hunt down people like me who had a Harris/Walz sign in their yards. They will be fully empowered to create mayhem. \n\nTheir loyalty to Trump will be their payoff.\n\nAnd remember: there are hundreds of thousands, if not millions of fuckers just like the 2000 or so that went to the Capitol on 1/6.\n\nThat’s what keeps me up at night.', 'created': '2024-11-18 17:11:09', 'submission_id': '1gsxxbj'}
{'comment': 'That’s what I’m saying. Trump is a permanent affliction on humanity. Once he finds out about mortality, he’s going to get really mad and kill as many people as he can for having the audacity to have more youth than him.', 'created': '2024-11-17 05:47:18', 'submission_id': '1gsxxbj'}
{'comment': 'Well, that’s a non sequitur if I saw one. \n\nBut if what you want is a monarchy, then the Trump dream fits right with you. All you want is a different monarch, one that aligns with your values better. \n\nYou’d boo Hitler, but applaud Stalin, right?', 'created': '2024-11-17 19:08:23', 'submission_id': '1gsxxbj'}
{'comment': 'How is Putin in check when he took Crimea without any pushback? Would the escalation in the war in 2022 have occurred if Obama had stopped Putin back then?', 'created': '2024-11-18 22:44:38', 'submission_id': '1gsxxbj'}
{'comment': "> then the Trump dream fits right with you.\n\nYour attitude, if you're being consistant about it, is perfectly happy with Trump's rule. Because that's what democracy decided.\n\nMine isn't. Because I care about people's wellbeing more than I care about processes being followed.\n\n> one that aligns with your values better. \n\nGood things are good, yes.\n\n> You’d boo Hitler, but applaud Stalin, right?\n\nStalin was as much of a monster as Hitler was.", 'created': '2024-11-17 20:46:08', 'submission_id': '1gsxxbj'}
{'comment': "You just went from Obama started it to would this have been avoided if Obama stopped Putin... \n\nFirst of all let's just agree that Putin is a madman who deserves to end up like all his political targets.", 'created': '2024-11-18 23:34:37', 'submission_id': '1gsxxbj'}
{'comment': 'I’m not happy with Trump’s rule. But there are democratic avenues of opposition. The thing that I fear the most from Trump is the end of democracy. Doing what you suggest gives him the win.', 'created': '2024-11-17 20:51:09', 'submission_id': '1gsxxbj'}
{'comment': '>\xa0You just went from Obama started it to\n\nI never said that. I said it started under Obama. I was discussing with the other poster about Obama keeping Putin in check. My question is how is Putin being kept checked if Putin started a war under Obama administration. The blame for the war goes to Putin and in no way form or shape am I saying Obama started the way.\xa0', 'created': '2024-11-18 23:39:59', 'submission_id': '1gsxxbj'}
{'comment': "> I’m not happy with Trump’s rule.\n\nThen you aren't holding true to your stated value that democracy is all-important.\n\n> But there are democratic avenues of opposition.\n\nWhy are you prattling about laws when they have swords?", 'created': '2024-11-17 20:57:59', 'submission_id': '1gsxxbj'}
{'comment': 'Because I want a nation of laws, not a nation of swords.', 'created': '2024-11-17 20:58:29', 'submission_id': '1gsxxbj'}
{'comment': "Do you think that laws have some magic power to enforce themselves, absent swords wielded by people?\n\n(Also, that's a mangling of a quote from Plutarch's biography of Pompey, that feels so very apt right now)", 'created': '2024-11-17 21:06:45', 'submission_id': '1gsxxbj'}
{'comment': 'But the law is to let the winner of the election take office, so I’m confused by what you’re asking.', 'created': '2024-11-17 21:40:19', 'submission_id': '1gsxxbj'}
{'comment': '> But the law is\n\nThe law in Nazi Germany was to do the holocaust. Would you have followed it?\n\n> so I’m confused by what you’re asking.\n\nLaws are just ink on paper. They are only given power by people willing to commit violence to enforce them. Absent that, they are nothing. I was asking if you understood that.', 'created': '2024-11-17 21:51:47', 'submission_id': '1gsxxbj'}
{'comment': 'Just say you want a left-wing Trump-like King. That would be more honest than trying to portray democracy as NAZIsm.', 'created': '2024-11-17 21:53:09', 'submission_id': '1gsxxbj'}
{'comment': "It's interesting that you jump to strawmanning my position when presented with the simple facts of reality.\n\nDoes reality upset you?\n\n---\n\nAlso, I was pointing out that Nazism was democratic, not that democracy is Nazism.\n\nAll peanuts are beans, not all beans are peanuts. You said you like all beans, and are getting upset when I pointed out that you're allergic to peanuts.\n\n---\n\n> The law in Nazi Germany was to do the holocaust. Would you have followed it?\n\nI also note that you didn't answer my question.", 'created': '2024-11-17 22:16:27', 'submission_id': '1gsxxbj'}
{'comment': 'You’ve cited Hitler as an example a few times. How is answering directly to your example a “strawman”?', 'created': '2024-11-17 22:18:04', 'submission_id': '1gsxxbj'}
{'comment': 'You aren\'t answering directly and you know it. You\'re dodging around my questions like someone who knows they don\'t have good answers.\n\n---\n\nHitler and the holocaust was the democratic will of the people. Would you have followed that?\n\nYou can either stick to your "democracy can do no wrong" position, and be forced to admit that you\'d have assisted with the holocaust, or you can take the position that the holocaust was wrong, and be forced to abandon your position that democracy is always good.\n\nPick one.', 'created': '2024-11-18 00:09:50', 'submission_id': '1gsxxbj'}
{'comment': 'What do you want me to answer? The false equivalence of equating the American voter to Hitler’s youth? The fantasy that by eliminating democracy you can prevent Hitler instead of becoming it?\n\nYou’re delusional.', 'created': '2024-11-18 00:20:25', 'submission_id': '1gsxxbj'}
{'comment': "> What do you want me to answer?\n\nIf your dedication to democracy is strong enough for you to participate in the holocaust because people voted for it.\n\n> The false equivalence of equating the American voter to Hitler’s youth?\n\n#***Hitler was elected. The holocaust was the democratic will of the people.***\n\nWhat part of this don't you understand?", 'created': '2024-11-18 01:24:57', 'submission_id': '1gsxxbj'}
{'comment': 'You do see how your question is ridiculous, right?\n\nThe Holocaust was NOT the democratic will of the people.', 'created': '2024-11-18 02:11:18', 'submission_id': '1gsxxbj'}
{'comment': '> The Holocaust was NOT the democratic will of the people.\n\nCute.\n\nGermany voted for it as defined by their laws at the time. Therefore it was the democratic will of the people, whether you like it or not.\n\nFor something that you will have less of an emotional panic for, how about all the women who have died due to abortion bans? Those were performed under a democracy, by the duly elected representatives of the people. And if you try to claim that *they* weren\'t, then you\'re jumping fully into "no true scotsman" territory.\n\nDo you support women dying in Texas because the law prohibits saving their lives?\n\n---\n\nYou could get yourself out of this problem you have by admitting that democracy, like law, is not the definition of ethics.', 'created': '2024-11-18 02:37:24', 'submission_id': '1gsxxbj'}
{'comment': 'You are misinformed and misinforming. You’re equating democracy to NAZIsm, and I wonder if you don’t have a ve$ted interest in making that spurious comparison.', 'created': '2024-11-18 03:01:27', 'submission_id': '1gsxxbj'}
{'comment': 'Narrator voice: But those voters didn’t learn', 'created': '2024-11-17 01:37:26', 'submission_id': '1gsx9mw'}
{'comment': 'One of the best amendments ever was limiting it to only 2 chances for the morons to vote for a moron. These idiots didn\'t learn anything the 1st time. There\'s an old saying - "You don\'t learn nothin\' the second time a mule kicks you in the head."', 'created': '2024-11-17 02:03:12', 'submission_id': '1gsx9mw'}
{'comment': 'That\'s a nice meme, but "we\'re still smart and they\'re just too stupid to see" isn\'t exactly what I\'d call a winning message going forward :/', 'created': '2024-11-17 00:52:34', 'submission_id': '1gsx9mw'}
{'comment': 'Fucking BOOM! We are not cleaning up your messes anymore.', 'created': '2024-11-17 15:19:28', 'submission_id': '1gsx9mw'}
{'comment': "They'll really lose it when their precious money drastically loses it's value. He runs the country exactly as he has his businesses. He fails.", 'created': '2024-11-18 01:56:52', 'submission_id': '1gsx9mw'}
{'comment': 'Maybe they will when the price of their precious eggs skyrocket', 'created': '2024-11-17 02:04:15', 'submission_id': '1gsx9mw'}
{'comment': 'Agreed. Yes, misinformation is a huge reason why DJT won, but we won’t bring voters to our side by constantly telling them that they’re stupid. We need to find ways to combat misinformation and bring them over WITHOUT degrading them. We can’t be the party for every day Americans while telling every day Americans that they’re stupid and they should listen to us.', 'created': '2024-11-17 04:04:14', 'submission_id': '1gsx9mw'}
{'comment': '"how could the Dems let this happen"', 'created': '2024-11-17 06:07:41', 'submission_id': '1gsx9mw'}
{'comment': 'And they find themselves with no health insurance.', 'created': '2024-11-17 06:44:11', 'submission_id': '1gsx9mw'}
{'comment': 'And their SS and Medicare get cut and now eggs are outside the budget. I just hope it was all worth it for these people', 'created': '2024-11-18 14:26:18', 'submission_id': '1gsx9mw'}
{'comment': 'I think we need to need to start with Fox News. Are republicans stupid or maybe just majorly lied to? Fox News is dangerous propaganda masquerading as news but also trying to masquerade as proud patriotic everyday Americans. They are not. They are nothing but a mouthpiece for the Republican Party. This is not free speech. Why have the democrats lost the working class? It’s not because of democrats like us who might also be working class who just happened to not be persuaded by Fox’s bs. However when they first came on the scene in late 90s., I sort of liked their “fun, non-newsy”format. They sugar coat their propaganda with country music and barbecue. As CNN, MSNBC, MSM analyze and berate the Democratic Party now (and us too?), why are they not addressing their own huge failing? They are always preaching, talking heads, arrogant, smug, stiff. They try too hard to coat themselves in professionalism but it comes across as insincere. For awhile, msnbc was all about race issues. I don’t know how they keep viewers because I can’t tolerate more than 10 minutes. .If I was a working class young white male, why would I flip on CNN for news in the morning when I’m getting ready for work ? Fox is considered a trusted news organization now. I think MSM thought if they tried to appeared less bias than they would increase their viewership , but they really only ended up sanewashing Trump. Maybe just maybe when things start going south, Fox and the like will be exposed.', 'created': '2024-11-17 13:32:14', 'submission_id': '1gsx9mw'}
{'comment': 'Obama proposed CONSERVATIVE Garland on a "dare" to see if republicans in the senate would reject even him, just because Obama nominated him. They did. \n\nSince then, everyone thinks Garland is "Obama\'s guy" so he must be a Democrat. Not true. Garland is as conservative as they come. \n\nI wish people would wake up to this fact.', 'created': '2024-11-16 21:30:01', 'submission_id': '1gsvr2q'}
{'comment': '[removed]', 'created': '2024-11-16 21:13:50', 'submission_id': '1gsvr2q'}
{'comment': 'That pussy ain’t gonna do shit. Obviously he only gave a shit about covering things up for the Republican party. What a piece of shit.', 'created': '2024-11-16 21:15:52', 'submission_id': '1gsvr2q'}
{'comment': 'Excerpt\n\nIt’s worth keeping an eye on two categories of information that could be released in Smith’s final reports: classified information and grand jury records. Biden could declassify parts of the Mar-a-Lago records for no other reason than to preserve for posterity the facts regarding Trump’s alleged national security crimes. If the records of the investigation aren’t declassified and published before the change in administrations, Trump will undoubtedly order them all destroyed—an action that the Supreme Court’s ruling in Trump v. U.S. would insulate from scrutiny.', 'created': '2024-11-16 21:07:31', 'submission_id': '1gsvr2q'}
{'comment': "He won't do anything. It's his fault we are in this mess. He slow walked everything and still kisses the ring even after Trump slams him and insults him. He's a joke and will go down in history as a coward", 'created': '2024-11-16 21:45:28', 'submission_id': '1gsvr2q'}
{'comment': 'They call him “the backbone” for a reason. Oh wait, that’s not his nickname?', 'created': '2024-11-16 21:30:50', 'submission_id': '1gsvr2q'}
{'comment': 'Fuck Garland.', 'created': '2024-11-16 22:01:30', 'submission_id': '1gsvr2q'}
{'comment': 'Only if Jack Smith had been the AG…', 'created': '2024-11-16 22:33:46', 'submission_id': '1gsvr2q'}
{'comment': '“Nah, fuck that. MAGA!” - Garland, probably', 'created': '2024-11-16 21:17:25', 'submission_id': '1gsvr2q'}
{'comment': 'Merrick Garland dithered away democracy.', 'created': '2024-11-16 22:29:58', 'submission_id': '1gsvr2q'}
{'comment': '"no! that might be seen as ....gasp!....POLITICAL!", Garland said, as Trump\'s people grabbed him and threw him in to solitary.', 'created': '2024-11-16 21:41:52', 'submission_id': '1gsvr2q'}
{'comment': 'The only thing Merrick Garland must do is flee the country. Idk whether it will be the left or the right that strangles him, I guess whoever finds him first?', 'created': '2024-11-16 21:51:50', 'submission_id': '1gsvr2q'}
{'comment': 'He won’t because he’s a massive pussy who would rather be derelict in his duty than risk doing anything against Republicans.', 'created': '2024-11-16 21:28:31', 'submission_id': '1gsvr2q'}
{'comment': 'Garland will literally do NOTHING. Just like he’s done for 4 years', 'created': '2024-11-16 22:29:19', 'submission_id': '1gsvr2q'}
{'comment': 'Garland does nothing. My prediction', 'created': '2024-11-17 00:50:52', 'submission_id': '1gsvr2q'}
{'comment': 'Garland is an undescended testicle. Pussies are tough and no slur.', 'created': '2024-11-16 22:15:06', 'submission_id': '1gsvr2q'}
{'comment': 'I read it as just, not must, had high hope for 2.5 seconds', 'created': '2024-11-16 21:59:19', 'submission_id': '1gsvr2q'}
{'comment': "That guy can f*ck all the way off. He's the sole reason we got Trump back. 4 years later and Trump still hasn't been to trial for trying to overthrow the US Govt????? Closeted MAGA", 'created': '2024-11-16 23:40:59', 'submission_id': '1gsvr2q'}
{'comment': 'Dems perpetually capitulate for the sake of ringing the “bipartisan” bill.\n\nI’m ready to say“Fuq em!”', 'created': '2024-11-17 03:29:37', 'submission_id': '1gsvr2q'}
{'comment': 'Narrator: “but he didn’t, because he didn’t want ruffle any feathers.”', 'created': '2024-11-16 22:59:41', 'submission_id': '1gsvr2q'}
{'comment': 'He will come up with some “principled” reason(excuse) on why he won’t “for the good of the country” BS. And yeah, he was a poor pick for SCOTUS and AG. The repugs ALWAYS nominate a “in your face” most rightwing extreme candidates.', 'created': '2024-11-16 23:09:15', 'submission_id': '1gsvr2q'}
{'comment': "Why couldn't Letitia James be our AG? Oh idea for 2028", 'created': '2024-11-16 23:20:29', 'submission_id': '1gsvr2q'}
{'comment': 'Fuck this guy. An absolutely useless AG', 'created': '2024-11-16 23:42:31', 'submission_id': '1gsvr2q'}
{'comment': "He won't do shit.\n\nWelcome to Democrats.\n\nNext time, vote for Ranked Choice Voting to end this shit parade.", 'created': '2024-11-17 00:59:19', 'submission_id': '1gsvr2q'}
{'comment': 'If you could pin our current predicament on one man it would be merrick garland', 'created': '2024-11-17 01:32:37', 'submission_id': '1gsvr2q'}
{'comment': 'They say history is written by the winner. Pray to which ever God you claim that Trump doesn’t write HIS version of what actually happened these last 8 or 9 years! If that happens I’ll use all my history books as mulch in the garden because they’ll all be just bullshit good for only that.', 'created': '2024-11-17 01:42:08', 'submission_id': '1gsvr2q'}
{'comment': "He's the definition of milquetoast.", 'created': '2024-11-17 01:42:56', 'submission_id': '1gsvr2q'}
{'comment': 'Won’t matter. These people don’t care.', 'created': '2024-11-17 02:05:48', 'submission_id': '1gsvr2q'}
{'comment': 'He is a milk toast sucker. He won’t do anything to protect America.', 'created': '2024-11-17 03:52:51', 'submission_id': '1gsvr2q'}
{'comment': 'And do what 🤷', 'created': '2024-11-17 05:11:07', 'submission_id': '1gsvr2q'}
{'comment': 'Who is this Merrick Garland you speak of?', 'created': '2024-11-16 22:03:25', 'submission_id': '1gsvr2q'}
{'comment': 'I bet he doesn’t!', 'created': '2024-11-16 22:54:28', 'submission_id': '1gsvr2q'}
{'comment': 'If he does, surely the public will read it and once they learn of Trump’s wrong doings he will lose all support! \nWithout this report, how is anyone supposed to know anything about the way he has been conducting himself all these years? It will be a revelation.', 'created': '2024-11-16 23:55:44', 'submission_id': '1gsvr2q'}
{'comment': 'Trumps team will have already made threats about releasing anything to the public. We will probably never know.', 'created': '2024-11-17 01:00:19', 'submission_id': '1gsvr2q'}
{'comment': "He won't. He's Bill Barr in a plain grey wrapper.", 'created': '2024-11-17 05:30:11', 'submission_id': '1gsvr2q'}
{'comment': 'Narrator: "He won\'t."', 'created': '2024-11-17 06:51:36', 'submission_id': '1gsvr2q'}
{'comment': 'Merrick Garland should resign in shame', 'created': '2024-11-17 18:34:22', 'submission_id': '1gsvr2q'}
{'comment': 'I’ve seen more fortitude and courage from a toddler trying to get a treat than this man will ever display. He’s scared of his own shadow and his anemic tenure as AG will be remembered as the reason accountability and justice capsized in our country.', 'created': '2024-11-17 18:43:22', 'submission_id': '1gsvr2q'}
{'comment': 'O please that would never happen, he would rather give Trump delays. Hes the worse.\n\n', 'created': '2024-11-16 22:00:49', 'submission_id': '1gsvr2q'}
{'comment': 'Merrick Garland is a traitor', 'created': '2024-11-16 23:10:13', 'submission_id': '1gsvr2q'}
{'comment': 'He was literally a Heritage Foundation pick for SCOTUS', 'created': '2024-11-16 21:53:24', 'submission_id': '1gsvr2q'}
{'comment': "This is the part of Dems that always pisses me off. They always try to appease people who don't give a shit about them. It's like the abused spouse syndrome. They need to start growing a pair and just tell the Pubs to fuck off and do what they think is right. The way the Pubs always do what they want without worrying about what Dems will think.", 'created': '2024-11-16 22:13:12', 'submission_id': '1gsvr2q'}
{'comment': 'And Biden appointed him, seemingly just to spite Republicans and to win a single weeks news cycle.\n\nDumbest decision of his entire life.', 'created': '2024-11-16 23:56:10', 'submission_id': '1gsvr2q'}
{'comment': 'I think he is a ZOMBIE!', 'created': '2024-11-16 22:19:30', 'submission_id': '1gsvr2q'}
{'comment': 'I would love it if Smith ends up back in The Hague and he keeps looking into Trump there, but I won’t hold my breath', 'created': '2024-11-17 01:37:29', 'submission_id': '1gsvr2q'}
{'comment': "I'm so angry at Biden for choosing him as AG. I loved a lot of what he did, but his 2 biggest errors were choosing Garland for AG, and choosing to stay and try to win a second term. That motherfucker Garland purposely slow walked anything having to do with meting out justice against Republicans.", 'created': '2024-11-16 22:47:00', 'submission_id': '1gsvr2q'}
{'comment': 'I don’t know he certainly could have moved much faster…', 'created': '2024-11-16 21:56:01', 'submission_id': '1gsvr2q'}
{'comment': 'We need a fucking pentagon papers like expose. Somebody has access and can leak the files.', 'created': '2024-11-17 05:03:02', 'submission_id': '1gsvr2q'}
{'comment': 'Oh he will definitely be approving new text books.', 'created': '2024-11-17 04:57:40', 'submission_id': '1gsvr2q'}
{'comment': 'He’s that guy who is milquetoast enough that Pres. Obama thought he might get through the Senate for the Supreme Court! He retired from the DC Circuit Court of Appeals back in ‘20 and has lived a quiet life, tending his garden, doing the newspaper crossword and occasionally exchanging pleasantries with the mailman.', 'created': '2024-11-16 22:18:12', 'submission_id': '1gsvr2q'}
{'comment': 'Excuse me?!?!?! Why I haven’t heard this?! Now I see what he’s doing. He’s helping Trump while looking like he’s trying to be so impartial.', 'created': '2024-11-17 05:05:17', 'submission_id': '1gsvr2q'}
{'comment': "'When they go low, we go high' sounds fine in a speech, but it's a recipe for getting kicked in the balls.", 'created': '2024-11-16 22:20:42', 'submission_id': '1gsvr2q'}
{'comment': 'Bahahahah great point. He moves about as fast as the white walkers or the immigrant caravan thats been headed to the southern border for a decade.', 'created': '2024-11-16 21:57:19', 'submission_id': '1gsvr2q'}
{'comment': 'He’s a Federal Society Conservative; he was never going to move the needle toward *Justice* ever. Never.', 'created': '2024-11-16 22:01:36', 'submission_id': '1gsvr2q'}
{'comment': 'Idt it’s that deep. He is a straight-laced and by-the-book type. The goal was to not politicize the DOJ the way the previous administration was doing and are obviously attempting to take way farther for the upcoming term. \n\nThe DOJ under Garland has focused on police brutality issues the previous administration ignored. They’ve focused on the dilapidated and overcrowded prison system in my state to force the state to address issues that were being ignored.', 'created': '2024-11-17 06:17:32', 'submission_id': '1gsvr2q'}
{'comment': "The one thing I never understand is how those so-called professional politicians don't understand this. One among many reasons why Dems lost. It's in our DNA to be a rebel, to speak authentically, to give everyone a fuck you when we don't agree with what they said. Ask the Brits.", 'created': '2024-11-16 22:50:50', 'submission_id': '1gsvr2q'}
{'comment': "They could at least go middle. You don't need to go lowest of the low to fight someone who does.", 'created': '2024-11-16 22:51:23', 'submission_id': '1gsvr2q'}
{'comment': 'I also wish the dems did better at messaging buy ill be the devil\'s advocate here : the rules aren\'t the same for them. The media will apply a double standard to anything they say or do. \n\nRemember all the media that covered Biden\'s "garbage" comment when it\'s not even a fraction of what Trump says in a single rallye ? Every word, statement they make will be torn to pieces word by word while Republicans can lie outright without being challenged. \n\nMeanwhile, it\'s extremely easy to sell simple ideas to complex problems, along with a dose of hate for group X or Y. It\'s so much harder to sell the truth.\n\nFor those reasons and more, messaging is much harder for the left. No wonder they struggle at it.', 'created': '2024-11-17 01:18:43', 'submission_id': '1gsvr2q'}
{'comment': 'Yep! The messaging network MAGA has included an entire chorus on rightwing media and in Congress. They all repeat the same things and they push it on social media. Democrats need to use the Beating a Dead Horse technique that MAGA has mastered. It was clear how well that works when they replaced Biden’s name with Harris for so many things. \n\nMAGA isn’t burdened with reality. They can make up and exaggerate problems and use that same method to solve problems. On the bright side, at least they’re going to remove nonexistent litter boxes from public school bathrooms soon so people can stop stressing about that very serious issue! \n\nI think there is also a longterm memory issue. Voters will have 4 years of reminders why they voted for Democrats in 2020. We will all have to help them out with the longterm memory issue by making sure they don’t forget why they voted for Trump and Vance this time. They voted for 2019 grocery prices and 2020 gas prices, we’ll be the ones bitching and whining those prices.', 'created': '2024-11-17 06:44:16', 'submission_id': '1gsvr2q'}
{'comment': 'Indeed, I passed his tower in Vagas and wished I was blind', 'created': '2024-11-16 21:12:58', 'submission_id': '1gsvljm'}
{'comment': 'Would have been better if our F was with our voting. We have to take responsibility for this L.', 'created': '2024-11-17 00:01:21', 'submission_id': '1gsvljm'}
{'comment': 'https://preview.redd.it/p9nku962xc1e1.jpeg?width=3840&format=pjpg&auto=webp&s=1940cfa55674b2c4107961ae3d5113aff3a860fe\n\nI wish I could do that nearby the Trump Tower. Guess live during a Presidential election is close enough.', 'created': '2024-11-17 01:32:20', 'submission_id': '1gsvljm'}
{'comment': 'Thank you for this. Exactly how all the sane people feel.', 'created': '2024-11-16 21:22:44', 'submission_id': '1gsvljm'}
{'comment': "Trump Tower is a stain on my Chicago's beautiful skyline", 'created': '2024-11-17 04:50:08', 'submission_id': '1gsvljm'}
{'comment': 'I flip off Trump and Trump tower anytime I see them anywhere. Mar a lago too.', 'created': '2024-11-16 21:35:12', 'submission_id': '1gsvljm'}
{'comment': 'I share this anger! Wondering how to channel it into organizing and perhaps reshaping the Democratic party (and supporting third parties)', 'created': '2024-11-17 01:03:53', 'submission_id': '1gsvljm'}
{'comment': 'Just another ugly and unremarkable glass box.', 'created': '2024-11-17 01:11:33', 'submission_id': '1gsvljm'}
{'comment': 'Feel the same way', 'created': '2024-11-17 01:45:12', 'submission_id': '1gsvljm'}
{'comment': '', 'created': '2024-11-17 04:47:03', 'submission_id': '1gsvljm'}
{'comment': 'I did this when I was there too', 'created': '2024-11-17 03:53:20', 'submission_id': '1gsvljm'}
{'comment': '', 'created': '2024-11-16 22:04:19', 'submission_id': '1gsvljm'}
{'comment': 'We need those fuck trump stickers for our cars now. Or Trump did that stickers', 'created': '2024-11-17 03:34:32', 'submission_id': '1gsvljm'}
{'comment': "Praise be! \n\n* The use of Gilead vocabulary is intended to be ironic. Sharing in case it's not clear. \n\nFuck shitler", 'created': '2024-11-17 17:21:01', 'submission_id': '1gsvljm'}
{'comment': 'The not so silent rebellion continues…. I’m all for it.', 'created': '2024-11-16 21:38:31', 'submission_id': '1gsvljm'}
{'comment': 'I approve this message.', 'created': '2024-11-16 21:35:10', 'submission_id': '1gsvljm'}
{'comment': 'Good energy, Wished we could convert this into election results.', 'created': '2024-11-17 06:49:49', 'submission_id': '1gsvljm'}
{'comment': 'Yes!!\n\n', 'created': '2024-11-16 22:15:20', 'submission_id': '1gsvljm'}
{'comment': 'I have a very similar picture from about 6 yrs ago.', 'created': '2024-11-17 00:38:32', 'submission_id': '1gsvljm'}
{'comment': 'Felt the same way in Vegas. The reflection ruined a lot of my photos from the pedestrian bridges', 'created': '2024-11-16 21:41:09', 'submission_id': '1gsvljm'}
{'comment': 'America shot itself in the foot once. To remedy that situation it takes aim at its other foot.\n\nGood thing we had a spare!', 'created': '2024-11-17 19:10:19', 'submission_id': '1gsvljm'}
{'comment': 'https://preview.redd.it/07fub2wxac1e1.jpeg?width=2744&format=pjpg&auto=webp&s=996861732e3990bb88db737c77bf4711d6fd36db', 'created': '2024-11-16 23:28:23', 'submission_id': '1gsvljm'}
{'comment': 'Yeah, that’ll show him!', 'created': '2024-11-16 21:14:54', 'submission_id': '1gsvljm'}
{'comment': 'if only this .... was enough.', 'created': '2024-11-18 11:49:53', 'submission_id': '1gsvljm'}
{'comment': 'Yeah, were probably going to be giving the finger a lot in the next 4 years', 'created': '2024-11-16 22:39:48', 'submission_id': '1gsvljm'}
{'comment': 'You show him!', 'created': '2024-11-17 06:06:04', 'submission_id': '1gsvljm'}
{'comment': 'There need to be recounts', 'created': '2024-11-16 21:23:20', 'submission_id': '1gsvljm'}
{'comment': 'Well done.', 'created': '2024-11-17 00:48:17', 'submission_id': '1gsvljm'}
{'comment': 'This is so freaking punk rock', 'created': '2024-11-17 17:21:29', 'submission_id': '1gsvljm'}
{'comment': 'Amen!', 'created': '2024-11-17 17:35:52', 'submission_id': '1gsvljm'}
{'comment': "I'm saying it should bread now E. Jean Carol? Tower or something like that. This mutha fucka's already dissembling governmental structure. I'm scared shitless! -", 'created': '2024-11-17 20:38:00', 'submission_id': '1gsvljm'}
{'comment': '', 'created': '2024-11-17 23:00:38', 'submission_id': '1gsvljm'}
{'comment': 'https://preview.redd.it/59ycgwvegj1e1.jpeg?width=1170&format=pjpg&auto=webp&s=4324b44c54813f2cfd4de100983a077d8a5f8c4b\n\nWhy can’t all states be like Massachusetts? Even Alabama had its lowest turnout since 1988.', 'created': '2024-11-17 23:31:59', 'submission_id': '1gsvljm'}
{'comment': "I have a match. Why aren't their any protesters?", 'created': '2024-11-18 01:40:31', 'submission_id': '1gsvljm'}
{'comment': 'Love it. 😂', 'created': '2024-11-18 06:39:29', 'submission_id': '1gsvljm'}
{'comment': 'We are in agreement!', 'created': '2024-11-18 12:28:17', 'submission_id': '1gsvljm'}
{'comment': 'https://preview.redd.it/tg245hsdco1e1.jpeg?width=1170&format=pjpg&auto=webp&s=5e4f4f113d7141b92d2ba672284f7677df0457c8', 'created': '2024-11-18 15:57:50', 'submission_id': '1gsvljm'}
{'comment': 'Yep, exactly', 'created': '2024-11-18 16:52:02', 'submission_id': '1gsvljm'}
{'comment': 'Our lives are going to hell right before our eyes. Whoever thought what we’d see what’s happening in other countries is happening right in our backyards. We set helpless watching the foul smelly cloud of hate and fear coming to overtake us and our government says there’s nothing we can do to stop it.', 'created': '2024-11-18 18:27:57', 'submission_id': '1gsvljm'}
{'comment': '', 'created': '2024-11-17 06:42:17', 'submission_id': '1gsvljm'}
{'comment': "That must be where the nazis 300,000,000 Sq ft apartment is and I think it's on the 144th floor or is it the 145th, I forget", 'created': '2024-11-17 16:54:45', 'submission_id': '1gsvljm'}
{'comment': 'E. Jean Carroll should seize the building as payment owed', 'created': '2024-11-18 21:49:26', 'submission_id': '1gsvljm'}
{'comment': "It's so gaudy. It looks cheap next to everything around it.", 'created': '2024-11-17 02:58:50', 'submission_id': '1gsvljm'}
{'comment': "Isn't that thing hideous!!!", 'created': '2024-11-17 20:09:48', 'submission_id': '1gsvljm'}
{'comment': "Everybody here voted for Harris. It's the moderates you have to campaign to. Somehow, despite how center her campaign seemed, she failed to do that.", 'created': '2024-11-17 01:21:09', 'submission_id': '1gsvljm'}
{'comment': 'It\'s how I feel, but I gotta be honest, it isn\'t helping our cause. \n\nFor the 52% of this country that values "triggering the libs" over qualified leadership and global stability, this just makes them happy. This picture is the first and only goal of the MAGA movement. Making us elite libruls sad.\n\nAngry gestures and snarky comebacks on Xitter just make us seem like pouty little bitches who don\'t like losing. All these posts on the front page about Trump voter regret is just us trying to make ourselves feel better. A sitting US President incited an insurrection against this country and a majority of the voting public didn\'t find that disqualifying. Do we really think any of them are having buyer\'s remorse because he nominated Matt Gaetz to be AG? Everything Trump is doing right now is a giant middle finger to us and the "establishment", and unlike ours, his "f-yous" have real weight and power behind them.\n\nNo amount of "I told you so"\'s, flipped birds, witty bumper stickers, or bad outcomes will ever get a Trump voter to examine their choice for even a second. Every single one of them has already displayed a superhuman capacity for cognitive dissonance, and every single one of them already got everything they ever wanted out of their vote.', 'created': '2024-11-17 00:22:16', 'submission_id': '1gsvljm'}
{'comment': 'Do you not understand that third party votes damage us! Hillary Clinton lost and Trump won in 2016 because of 3rd party votes. We DO NOT have a system that supports 3rd party candidates. All they do is siphon votes from the two major parties.', 'created': '2024-11-17 04:17:17', 'submission_id': '1gsvljm'}
{'comment': 'I started with some money to the ACLU this week until i can get my energy back. They blocked SO many things Trump tried to do through legal action from 2016-2020. I cant say enough about supporting their lawyers advocacy and lawsuits to protect Americans right now.', 'created': '2024-11-17 04:38:14', 'submission_id': '1gsvljm'}
{'comment': 'Heading to etsy now to look for them. I just hope many put them up', 'created': '2024-11-17 04:43:38', 'submission_id': '1gsvljm'}
{'comment': 'Resistance!??? I will aid and abet abortions and illegal immigrants. There will be a resistance underground railroad. If they could do this without technology in the past, we can certainly figure out how to connect to help others during these next hideous 4 yrs.', 'created': '2024-11-17 04:40:47', 'submission_id': '1gsvljm'}
{'comment': '"Rebellion" might be a bit dramatic for this. Haha', 'created': '2024-11-16 22:00:44', 'submission_id': '1gsvljm'}
{'comment': 'And those fools think we need to respect that POS. Hell, no.', 'created': '2024-11-17 05:17:26', 'submission_id': '1gsvljm'}
{'comment': 'i wish. can’t believe we’re the ones saying it this time, but it’s sketchy asf', 'created': '2024-11-16 21:52:03', 'submission_id': '1gsvljm'}
{'comment': "Because most of us do not want to cause harm or chaos. Most of us are WAY more educated and thus don't have the resolve to protest when it will not change anything, Protesting will not change the fact that Trump will be our President again, and it will not prevent him from doing whatever he wants.\n\nThe ONLY way to prevent any of that, is civil war...and no one really wants that as it would disrupt so much of our already complicated daily lives. Not to mention we don't want to be viewed as treasonous. But I will say, I do hope that if things do happen to get bad enough, with no other solutions...that people WILL stand up and fight, physically fight if needed, but I have doubts that anything significant will ever happen.", 'created': '2024-11-18 23:17:13', 'submission_id': '1gsvljm'}
{'comment': 'That to lol', 'created': '2024-11-17 03:04:30', 'submission_id': '1gsvljm'}
{'comment': 'That’s why it’s off strip. Just a pipe dream of the real casinos out there.', 'created': '2024-11-17 05:21:12', 'submission_id': '1gsvljm'}
{'comment': 'So does he, it fits', 'created': '2024-11-17 10:50:23', 'submission_id': '1gsvljm'}
{'comment': 'so much so', 'created': '2024-11-17 20:21:30', 'submission_id': '1gsvljm'}
{'comment': 'I don’t even know that you’re right though? we had a lot of Republicans voting with her as a statement against him. We literally didn’t have enough of the Democrats that voted in 2020–they didnt even come out! I don’t know if they all died or like they were in La La Land or really believe Donald Trump couldn’t win, but people sat home and did not come out to vote And I can’t understand it at all', 'created': '2024-11-17 04:35:45', 'submission_id': '1gsvljm'}
{'comment': 'I agree with you Bob, but sometimes little things make people feel better. The truth is we had 20 mil less voters on both sides this election. They didn’t win the war, they only won the battle for now. Many of these people, as many did in 2016 will regret their votes. That we are all sure of. In the end, the pendulum will swing back to good. Noone even understands how 4 yrs of all Republican u checked decisions will make their own supporters react. But we do! Sadly it will take a huge cut to medicate or SSI or seeing his tariffs raise our prices…but in the end democracy will win. He can not change the constitution!', 'created': '2024-11-17 04:33:04', 'submission_id': '1gsvljm'}
{'comment': 'There are a lot of people who like “triggering the libs” or at least playing at that, but I seriously doubt it’s 52%. If you’re talking about how many idiots voted for the orange goblin, it was just over 50% of the recorded votes. Another 90 MILLION registered voters didn’t bother to show up. So, really, it’s less than about 1/3 of the eligible voters who supported trump.', 'created': '2024-11-17 01:43:02', 'submission_id': '1gsvljm'}
{'comment': 'Yeah we need to get third party banned. 3 candidates have to become 2 by the final vote', 'created': '2024-11-17 04:38:53', 'submission_id': '1gsvljm'}
{'comment': 'Start building a massive radio station!', 'created': '2024-11-17 19:16:00', 'submission_id': '1gsvljm'}
{'comment': 'I’ll latch on to any resistance at this point.', 'created': '2024-11-16 22:04:28', 'submission_id': '1gsvljm'}
{'comment': 'Skirmish', 'created': '2024-11-17 02:11:18', 'submission_id': '1gsvljm'}
{'comment': 'Many. It seems, those who voted trump as a punishment to the Dems, but in the end, who’ll be punished but the ones who should have voted for us in the end? It makes no sense at all.', 'created': '2024-11-17 05:11:55', 'submission_id': '1gsvljm'}
{'comment': 'If I were a betting person, I’d put money that they got complacent and thought Trump wasn’t going to win. Did they forget Biden only won in the swing states by only 10k’s of votes? 🤦🏻\u200d♂️🤷🏻\u200d♂️', 'created': '2024-11-17 18:51:32', 'submission_id': '1gsvljm'}
{'comment': 'My husband died in 2021. He would’ve voted for Kamala. Over a million people died from Covid, so I think you have something.', 'created': '2024-11-18 07:09:56', 'submission_id': '1gsvljm'}
{'comment': 'Tbf, my state (Alabama) still has no early voting, limits absentee ballots, and you have to be registered to vote at least 2-3 weeks before elections. Oh—and they tried to purge voter rolls prior to the election, but at least that was halted because it was in 90 days of an election. \n\nAll of that to say: some states make it pretty hard to cast your vote. Is there a correlation between those states and the ones taking everyone’s rights away? 🤔🤔🤔', 'created': '2024-11-17 18:58:17', 'submission_id': '1gsvljm'}
{'comment': 'Exactly!', 'created': '2024-11-17 04:34:05', 'submission_id': '1gsvljm'}
{'comment': 'This is ultimately "slacktivism" though. It\'s completely void of any meaning or significance and purely symbolic. It\'s just impotence masquerading as purpose.', 'created': '2024-11-16 22:08:43', 'submission_id': '1gsvljm'}
{'comment': 'Vapidish', 'created': '2024-11-17 02:14:22', 'submission_id': '1gsvljm'}
{'comment': 'You are assuming that they are educated voters. These people have a sixth grade reading level who watch faux news without the ability to think critically. If you took everything that propaganda machine said at face value you would have voted for him too. They truly believed they were saving democracy.', 'created': '2024-11-17 17:35:13', 'submission_id': '1gsvljm'}
{'comment': 'Im so sorry. I can’t imagine how hard that was and is.', 'created': '2024-11-18 12:41:09', 'submission_id': '1gsvljm'}
{'comment': 'Oh come on. We all need to feel better and this micro aggression (that hurts no-one) certainly does. Just because this is here does not mean this person is not an activist in other ways. This may be what he or she needs to keep fighting. So its not bad either.', 'created': '2024-11-17 04:42:39', 'submission_id': '1gsvljm'}
{'comment': 'The Faux News that got sued and admitted they weren’t really reporting the actual news 😬', 'created': '2024-11-17 18:52:41', 'submission_id': '1gsvljm'}
{'comment': 'That one RIGHT there. I was honestly hoping Kamala would address truth in reporting. Now, Fox “News” will likely become state sanctioned media.', 'created': '2024-11-17 18:51:24', 'submission_id': '1gsvljm'}
{'comment': '>We all need to feel better\n\nSure, and that\'s all this is. It\'s not "resistance" haha', 'created': '2024-11-17 04:47:29', 'submission_id': '1gsvljm'}
{'comment': 'https://preview.redd.it/yu3nmun99b1e1.jpeg?width=1284&format=pjpg&auto=webp&s=8d49c4a205609bad7141ca098f4626958b20f566\n\nDude in charge. “Oklahomas”', 'created': '2024-11-16 19:57:11', 'submission_id': '1gstj8l'}
{'comment': 'As a Massachusetts native I support this message.', 'created': '2024-11-16 20:11:08', 'submission_id': '1gstj8l'}
{'comment': 'Harris also won all 5 counties in Hawaii.', 'created': '2024-11-16 20:04:12', 'submission_id': '1gstj8l'}
{'comment': "Right wingers think everything is everyone else's fault.", 'created': '2024-11-16 19:46:17', 'submission_id': '1gstj8l'}
{'comment': '“The spirit of Massachusetts is the spirit of America”', 'created': '2024-11-16 19:48:58', 'submission_id': '1gstj8l'}
{'comment': 'Right wing states are f*cking hell holes, i live in one, headed to NE this coming fall', 'created': '2024-11-16 19:58:15', 'submission_id': '1gstj8l'}
{'comment': 'These poor red states boast low taxes, low house prices. They aren’t wrong. A well payed family in Mass can buy quite the home in Oklahoma, WV, KY, Mississippi etc But what else do they have? Not. Much', 'created': '2024-11-16 20:54:14', 'submission_id': '1gstj8l'}
{'comment': 'never thought about visiting mass before but now i might', 'created': '2024-11-16 19:31:25', 'submission_id': '1gstj8l'}
{'comment': 'Didn’t West Virginia vote straight red too?', 'created': '2024-11-16 20:02:49', 'submission_id': '1gstj8l'}
{'comment': 'the worst part about this is that with low levels of education and high levels of general suffering in OK, people there are probably easier to manipulate with promises of a better future, while people in Massachusetts could be more skeptical, ask more questions and research topics for themselves; critical thinking. I am not trying to knock Oklahomans. If anything I kind of feel for them. They are kept in a shitty position and might not know any better or have the resources to find out.', 'created': '2024-11-16 20:24:41', 'submission_id': '1gstj8l'}
{'comment': 'We are looking to flee our red state now so that our autistic son has a chance at a normal life. I assume the education system of each red state will be one of the first things to go.', 'created': '2024-11-16 19:45:07', 'submission_id': '1gstj8l'}
{'comment': 'as a MA resident totally agree, but we have voted republican at the state level in the past and there are redder counties. hope we continue to stay blue!', 'created': '2024-11-16 20:13:35', 'submission_id': '1gstj8l'}
{'comment': 'I’m from Oklahoma (moved away years ago) and can confirm it’s pretty terrible', 'created': '2024-11-16 19:36:15', 'submission_id': '1gstj8l'}
{'comment': 'I’m saving this for 2028.', 'created': '2024-11-16 20:11:16', 'submission_id': '1gstj8l'}
{'comment': 'It’s well documented the republican base is ignorant as fuck. I thought that was common knowledge.', 'created': '2024-11-16 21:59:11', 'submission_id': '1gstj8l'}
{'comment': "I'm curious, Native American reservations account for large amounts of territory in Oklahoma. They also voted red in the aggregate?", 'created': '2024-11-16 20:35:59', 'submission_id': '1gstj8l'}
{'comment': 'Maybe education should be a priority instead of trying to restrict public schools to act as private ones. People will complain that “my tax dollars are being used to teach woke ideologies!!”\n\n…And then the “ideology” will be something like climate change, which is backed by years of scientific studies. I get if you didn’t want your school to be showing, for example, R-rated movies. That’s obviously not meant for children. But children do need to be educated about our world and the way it works, which includes being educated about different cultures and the struggles minorities may face in our country. My home state (Alabama) is living proof that many POC, for example, do have a disadvantage in our country when it comes to some aspects of life.', 'created': '2024-11-16 23:36:43', 'submission_id': '1gstj8l'}
{'comment': 'Instinctively we know this - the red states suffer and will continue to suffer until voters open their eyes and realize that the Republicans do not care about them.', 'created': '2024-11-16 19:54:49', 'submission_id': '1gstj8l'}
{'comment': None, 'created': '2024-11-16 20:00:13', 'submission_id': '1gstj8l'}
{'comment': 'This is missing Rhode Island and West Virginia but that kind of strengthens the point.', 'created': '2024-11-16 21:27:58', 'submission_id': '1gstj8l'}
{'comment': "And let's see what difference that makes: \n\nGDP\n\t•\tMassachusetts: The GDP is $734 billion.\n\t•\tOklahoma: The GDP is $254 billion.\n\nLand Area and Population\n\t•\tMassachusetts:\n\t•\tLand Area: Approximately 10,565 square miles.\n\t•\tPopulation: About 7 million people.\n\t•\tOklahoma:\n\t•\tLand Area: Approximately 69,899 square miles.\n\t•\tPopulation: About 4 million people.\n\nDifferences\n\t•\tMassachusetts has a significantly higher GDP compared to Oklahoma despite its smaller land area and larger population.\n\t•\tOklahoma has a much larger land area with many coal, oil & gas fields, but struggles with poverty, illiteracy & low productivity despite its rich energy resources. \n\nHuh. Goes to show.", 'created': '2024-11-17 00:23:46', 'submission_id': '1gstj8l'}
{'comment': 'They blame the Dems for it anyway even if they are run by Republicans', 'created': '2024-11-17 00:52:15', 'submission_id': '1gstj8l'}
{'comment': 'I hate bible thumpers.', 'created': '2024-11-17 01:12:17', 'submission_id': '1gstj8l'}
{'comment': 'Republicans are really just brain dead stupid.', 'created': '2024-11-17 13:51:09', 'submission_id': '1gstj8l'}
{'comment': 'This is totally inaccurate, Oklahoma is definitely 1st in Tornadoes.', 'created': '2024-11-17 00:20:55', 'submission_id': '1gstj8l'}
{'comment': 'No surprise at all.', 'created': '2024-11-16 19:51:49', 'submission_id': '1gstj8l'}
{'comment': 'End gerrymandering of state maps.', 'created': '2024-11-17 00:23:22', 'submission_id': '1gstj8l'}
{'comment': 'Oklahoma has a large Native American population that has been abused, suppressed, and manipulated for generations. The numbers for healthcare and education reflect long term systemic neglect by, not only the state government, but also the federal government.', 'created': '2024-11-17 11:47:24', 'submission_id': '1gstj8l'}
{'comment': 'https://preview.redd.it/gkdzfoqw9b1e1.jpeg?width=1080&format=pjpg&auto=webp&s=76ba3c727497fc7c71a1203193d2163c28005f35\n\nWV has entered the chat', 'created': '2024-11-16 20:00:47', 'submission_id': '1gstj8l'}
{'comment': 'The question is- is Massachusetts the way it is because they are democrats, or do they vote Democrat because of the way they are?', 'created': '2024-11-16 19:51:20', 'submission_id': '1gstj8l'}
{'comment': "Think I made up my mind where I'm moving!", 'created': '2024-11-16 20:38:18', 'submission_id': '1gstj8l'}
{'comment': 'If only I could afford to live anywhere in Massachusetts.', 'created': '2024-11-16 23:29:06', 'submission_id': '1gstj8l'}
{'comment': 'In red states, with just a simple higher education, you\'re considered the "elite".', 'created': '2024-11-17 00:29:10', 'submission_id': '1gstj8l'}
{'comment': 'You think Oklahomans care their state is ass? \n\nSome people live in roach infested homes without a care in the world.', 'created': '2024-11-17 03:27:06', 'submission_id': '1gstj8l'}
{'comment': "We used to have a Democrat as governor too. However the party spends no money out here, we have no Democrat pollsters and the *two* Democrats running for Mayor of Tulsa couldn't get consultants out here.\n\nUnder Dean, we had money being spent out here to try and make us more competitive... But the DNC couldn't give a shit about the 40% of Oklahomans that are Democrats.", 'created': '2024-11-17 05:27:24', 'submission_id': '1gstj8l'}
{'comment': 'Conservative logic: “Someone has to be last!”', 'created': '2024-11-17 13:54:27', 'submission_id': '1gstj8l'}
{'comment': "These numbers are typically reported by the Department of Education. They're going to shut down the flow of information.", 'created': '2024-11-17 14:56:36', 'submission_id': '1gstj8l'}
{'comment': 'Keep in mind the governments of both states are getting the outcomes they wish for.', 'created': '2024-11-18 01:01:02', 'submission_id': '1gstj8l'}
{'comment': "There's a punching down elitism in this post that's created the exact kind of bubble that would blindside someone to the election results", 'created': '2024-11-16 22:05:08', 'submission_id': '1gstj8l'}
{'comment': 'Wv says hold my beer', 'created': '2024-11-16 21:12:20', 'submission_id': '1gstj8l'}
{'comment': 'I thought I just saw a blue belt in Alabama through Montgomery.', 'created': '2024-11-16 20:03:04', 'submission_id': '1gstj8l'}
{'comment': 'Plus, it is harder for the gqp to steal votes in a blue state', 'created': '2024-11-16 20:47:02', 'submission_id': '1gstj8l'}
{'comment': '*not only', 'created': '2024-11-16 21:07:38', 'submission_id': '1gstj8l'}
{'comment': 'Huh West Virginia had a county flip?', 'created': '2024-11-16 21:21:24', 'submission_id': '1gstj8l'}
{'comment': 'Why are all the warm coastal states (except Cali)not populated by more liberal folks? Why do they get all the warm sandy beaches and we get mostly the upper north east urban areas with lots of snow?', 'created': '2024-11-16 22:38:48', 'submission_id': '1gstj8l'}
{'comment': 'I’m so glad I went to school when Brad Henry was governor and Oklahoma was 17 in education. He left office in 2011, to reference how quickly we fell.', 'created': '2024-11-16 22:52:23', 'submission_id': '1gstj8l'}
{'comment': "I'm in West Virginia and it is a mirror image of Oklahoma. It might even be worse.", 'created': '2024-11-17 02:28:00', 'submission_id': '1gstj8l'}
{'comment': 'Yeah but yeah but price of eggs', 'created': '2024-11-17 03:02:40', 'submission_id': '1gstj8l'}
{'comment': 'Do Mississippi!!', 'created': '2024-11-17 04:02:08', 'submission_id': '1gstj8l'}
{'comment': 'I’m sure these are correct, but would love to see sources listed', 'created': '2024-11-17 04:39:46', 'submission_id': '1gstj8l'}
{'comment': 'I live in Mass and think New England should leave the country of leech red states.', 'created': '2024-11-17 04:53:31', 'submission_id': '1gstj8l'}
{'comment': 'This is going to all be fixed by requiring one of the 500 Trump Bibles in every classroom.\n\nEdit adding /s', 'created': '2024-11-17 04:58:49', 'submission_id': '1gstj8l'}
{'comment': 'I miss Massachusetts 😭….i wish I could move back\xa0', 'created': '2024-11-17 05:32:02', 'submission_id': '1gstj8l'}
{'comment': 'They just introduced bibles to Ohio classrooms. They’re doomed', 'created': '2024-11-17 05:33:45', 'submission_id': '1gstj8l'}
{'comment': 'Not to mention crime stats.', 'created': '2024-11-17 08:22:30', 'submission_id': '1gstj8l'}
{'comment': "What's the source for these figures?", 'created': '2024-11-17 10:34:51', 'submission_id': '1gstj8l'}
{'comment': 'Stereotypes exist for a reason', 'created': '2024-11-17 17:17:03', 'submission_id': '1gstj8l'}
{'comment': 'Don’t forget to compare New Mexico and OK. Lol', 'created': '2024-11-17 17:28:58', 'submission_id': '1gstj8l'}
{'comment': 'This is why conservatives should NOT be allowed to run for office. PERIOD.', 'created': '2024-11-18 04:28:53', 'submission_id': '1gstj8l'}
{'comment': "The comments here, all looking down their noses at this red state (or any red state), show that we're definitely not learning the right lessons from this election.\n\nYes, we can pat ourselves on the back for being better educated and voting for Democrats. So what? The way our elections are built, we can't just rely on that alone (and it's looking like it didn't even muster within the popular vote this time either).\n\nGet off your high horses.", 'created': '2024-11-16 22:36:58', 'submission_id': '1gstj8l'}
{'comment': "I'm a proud Blue Masshole and I agree it's a great place to live, however it's expensive. Even with a solidly upper-middle class household income and a 2.75% mortgage on a modest home purchased before the boom, it's expensive. \n\nThe OKlahoma folks see this and think that the reason they're poor bc of the current democratic administration. They have short goldfish memories and think they were doing great under Trump. They also don't value education so to them having a strong educational system isn't important. They're basically the bitter, chip-on-the-shoulder person who can't get out of their own way.", 'created': '2024-11-16 22:39:23', 'submission_id': '1gstj8l'}
{'comment': 'We need to be careful spreading this message. You’re absolutely correct, but this is exactly why the working uneducated class are walking away from us. We’ve become the party of the educated elite.', 'created': '2024-11-17 02:20:08', 'submission_id': '1gstj8l'}
{'comment': 'Oklahoma is #1 in bastardized bibles, so there’s that…', 'created': '2024-11-17 04:50:42', 'submission_id': '1gstj8l'}
{'comment': 'Is Charlie baker still governor of Massachusetts?', 'created': '2024-11-17 04:57:55', 'submission_id': '1gstj8l'}
{'comment': 'How expensive is Massachusetts?', 'created': '2024-11-17 05:04:42', 'submission_id': '1gstj8l'}
{'comment': 'Not a surprise\xa0', 'created': '2024-11-17 06:59:02', 'submission_id': '1gstj8l'}
{'comment': 'This needs to be a T-shirt!', 'created': '2024-11-17 08:41:41', 'submission_id': '1gstj8l'}
{'comment': "Can someone also check the cost of living and average job in MA? I'm betting that's shifting less and less blue.\n\nAs fewer and fewer folks can afford to live there.", 'created': '2024-11-17 12:28:28', 'submission_id': '1gstj8l'}
{'comment': 'Forgot to add cost of living to the comparison', 'created': '2024-11-17 13:30:00', 'submission_id': '1gstj8l'}
{'comment': 'I wish this was Tennessee', 'created': '2024-11-17 14:05:44', 'submission_id': '1gstj8l'}
{'comment': 'Business owners so well in red states. Wage slaves not so much but they are trained to vote against their best interests.', 'created': '2024-11-17 20:33:08', 'submission_id': '1gstj8l'}
{'comment': 'Hmmm.. 🤔', 'created': '2024-11-17 22:13:08', 'submission_id': '1gstj8l'}
{'comment': 'I’m sure they are blaming all of their faults on Democrats.', 'created': '2024-11-18 02:39:25', 'submission_id': '1gstj8l'}
{'comment': 'And they take the most $$$ and pay no taxes', 'created': '2024-11-18 02:56:40', 'submission_id': '1gstj8l'}
{'comment': 'No doubt. Same with Utah I’m sure.', 'created': '2024-11-18 20:08:58', 'submission_id': '1gstj8l'}
{'comment': 'Ok but the point is these people’s lives aren’t great. A lot of them are really pissed at a system that for twelve of the last sixteen years has been run by democrats. It doesn’t matter how strongly you may believe that the GOP will fuck them even harder and it probably will. The huge failure was not doing enough for them.', 'created': '2024-11-16 21:36:55', 'submission_id': '1gstj8l'}
{'comment': "Don't be too smug, you did lose to them.", 'created': '2024-11-17 17:57:33', 'submission_id': '1gstj8l'}
{'comment': "This is such a weirdly chauvinistic post. Like, should we be bragging that the Democrats can't appeal to some of the poorest, most in need people in the nation? Great, we won the vote in one of the most comfortable, easy to live in, well educated, state in the nation. But if we really think we have the solution to America's problems, isn't it a pretty strong indictment of our ability to communicate and persuade and build coalition that the state most in need of what we have to offer so resoundingly rejected us?", 'created': '2024-11-17 10:59:40', 'submission_id': '1gstj8l'}
{'comment': 'Unananmously how?', 'created': '2024-11-17 14:12:07', 'submission_id': '1gstj8l'}
{'comment': "I don't understand what they mean by voted unanimously. I've seen two Reddit posts about this. What did they vote unanimously on?", 'created': '2024-11-16 19:53:05', 'submission_id': '1gstj8l'}
{'comment': 'I would love to see a thorough background on how they derive on that comparison.', 'created': '2024-11-16 22:00:45', 'submission_id': '1gstj8l'}
{'comment': 'This is a nonsense comparison. The differences in advantage between Massachusetts and Oklahoma are enormous. On top of that, Massachusetts has benefited greatly from having republican governors, not in that their republican as that obviously is itself bad, but that they’ve been far more reasonable in administration and policy due to split government.', 'created': '2024-11-17 02:26:50', 'submission_id': '1gstj8l'}
{'comment': '[removed]', 'created': '2024-11-16 20:36:38', 'submission_id': '1gstj8l'}
{'comment': 'Republicans will say that this PROVES that the Democrats are the party of the wealthy. \n\nIt all depends on how you spin it.', 'created': '2024-11-17 15:53:19', 'submission_id': '1gstj8l'}
{'comment': 'I mean if you’re comparing all 50 states by ranking them. By default one of them has to be 50th.', 'created': '2024-11-16 21:42:11', 'submission_id': '1gstj8l'}
{'comment': '[removed]', 'created': '2024-11-16 20:43:00', 'submission_id': '1gstj8l'}
{'comment': 'Back on track before crashing it into the warehouse.', 'created': '2024-11-16 20:28:26', 'submission_id': '1gstj8l'}
{'comment': 'Still don’t understand how it’s legal to have the Bible in classrooms, because I know they’re not simply using it for “academic study”.', 'created': '2024-11-16 21:46:07', 'submission_id': '1gstj8l'}
{'comment': 'He’s holding a Trump Bible…because literally no other Bible fits their requirements', 'created': '2024-11-16 21:39:24', 'submission_id': '1gstj8l'}
{'comment': '“Back on track” as in tied to the track with the train barreling towards them.', 'created': '2024-11-16 22:32:44', 'submission_id': '1gstj8l'}
{'comment': 'But that violates separation of church and state', 'created': '2024-11-17 14:03:10', 'submission_id': '1gstj8l'}
{'comment': 'Mug says “si vis pacem, para bellum” Latin for “if you went peace, prepare for war”.', 'created': '2024-11-17 18:58:48', 'submission_id': '1gstj8l'}
{'comment': 'But that violates separation of church and state', 'created': '2024-11-17 14:03:16', 'submission_id': '1gstj8l'}
{'comment': 'He is working hard at auditioning for their dear leader. https://kfor.com/news/oklahoma-education/lawmaker-says-state-supt-ryan-walters-prayer-to-the-nation-video-is-indoctrination/', 'created': '2024-11-17 22:10:47', 'submission_id': '1gstj8l'}
{'comment': 'Separation of church and state?', 'created': '2024-11-18 20:12:08', 'submission_id': '1gstj8l'}
{'comment': 'I fucking love Boston. \n\n-Texan', 'created': '2024-11-17 10:13:12', 'submission_id': '1gstj8l'}
{'comment': 'As someone from Oklahoma who lived in Massachusetts for a year, I also support this message.', 'created': '2024-11-17 18:51:47', 'submission_id': '1gstj8l'}
{'comment': None, 'created': '2024-11-17 03:04:54', 'submission_id': '1gstj8l'}
{'comment': 'And we passed marriage equality into our constitution.', 'created': '2024-11-16 23:30:53', 'submission_id': '1gstj8l'}
{'comment': 'Blamers Together Strong', 'created': '2024-11-16 20:37:44', 'submission_id': '1gstj8l'}
{'comment': 'And anything unfortunate that happens to other people is “God’s Plan”', 'created': '2024-11-16 21:28:17', 'submission_id': '1gstj8l'}
{'comment': 'We should stop subsidizing them', 'created': '2024-11-17 04:39:46', 'submission_id': '1gstj8l'}
{'comment': 'Yep🫤', 'created': '2024-11-16 19:47:19', 'submission_id': '1gstj8l'}
{'comment': 'They cream when they can play the victim.', 'created': '2024-11-17 03:40:06', 'submission_id': '1gstj8l'}
{'comment': "The irony of this comment being posted in the Democrats subreddit when 90% of the left-wing discourse after the election was how it was all somebody else's fault.", 'created': '2024-11-16 22:33:45', 'submission_id': '1gstj8l'}
{'comment': 'Yes, it did and it is worse than Oklahoma. I know, I am here and hoping to escape soon.', 'created': '2024-11-17 02:31:48', 'submission_id': '1gstj8l'}
{'comment': 'We did that in 2021.\n\nBest decision ever.', 'created': '2024-11-16 20:02:21', 'submission_id': '1gstj8l'}
{'comment': 'Same. Ohio is a fucking shithole.', 'created': '2024-11-16 20:34:35', 'submission_id': '1gstj8l'}
{'comment': 'We moved from the NE to GA in 2011 (corporate transfer/ career opportunity I couldn’t pass up). We often talk about moving back but now it’s harder because we have kids, recently built a house, have a village, etc. \n\nWe’re both willing to become massholes if it means our kids will live in a state that espouses the same social values we are raising them with down here. We were “northeast conservatives” back then (socially liberal, fiscally conservative when it comes to govt spending allocations) and now even more progressive after living amongst actual conservatives.\n\nWe have never voted red down here because southern Rs are largely downright evil. Hate autonomy, hate individuality, see everyone as cogs in the capitalistic wheel and think Christianity should rule the people. It’s a weird world to live in when you grew up elsewhere.', 'created': '2024-11-17 05:01:27', 'submission_id': '1gstj8l'}
{'comment': 'Unfortunately that is what they want. Given the way the EC works, they figure if they can convince democrats to all gather in blue states, they will keep power forever. \n\nAll the same, I can see why you’d want to move. I would want to too.', 'created': '2024-11-16 21:19:35', 'submission_id': '1gstj8l'}
{'comment': "Yeah, I'm working on that too.", 'created': '2024-11-16 21:03:55', 'submission_id': '1gstj8l'}
{'comment': 'Congrats on escaping', 'created': '2024-11-17 04:13:50', 'submission_id': '1gstj8l'}
{'comment': 'I live in one of the 55 red counties in PA and while this one is far from the worst I wouldn’t exactly call it a pillar of acceptance and understanding, either.', 'created': '2024-11-17 04:34:16', 'submission_id': '1gstj8l'}
{'comment': None, 'created': '2024-11-17 09:23:56', 'submission_id': '1gstj8l'}
{'comment': 'Look at New Mexico.', 'created': '2024-11-17 17:30:33', 'submission_id': '1gstj8l'}
{'comment': "There's a reason it's cheap. It like selling cheap real estate next to an oil refinery.", 'created': '2024-11-17 23:11:13', 'submission_id': '1gstj8l'}
{'comment': 'I would recommend Salem in the fall. Super fun and beautiful.', 'created': '2024-11-16 19:50:25', 'submission_id': '1gstj8l'}
{'comment': 'Cape Cod FTW. We go almost every summer to Wellfleet on the outer cape. Gorgeous', 'created': '2024-11-16 20:37:35', 'submission_id': '1gstj8l'}
{'comment': 'Great Barrington is delightful. Anywhere in the Berkshires, actually.', 'created': '2024-11-16 20:11:59', 'submission_id': '1gstj8l'}
{'comment': 'I went to Boston and had a great time.', 'created': '2024-11-16 23:28:43', 'submission_id': '1gstj8l'}
{'comment': "Come on up, it's not bad!", 'created': '2024-11-16 21:52:14', 'submission_id': '1gstj8l'}
{'comment': 'we welcome visitors!', 'created': '2024-11-17 04:15:21', 'submission_id': '1gstj8l'}
{'comment': 'Rockport and Andover are beautiful houses.', 'created': '2024-11-17 04:24:35', 'submission_id': '1gstj8l'}
{'comment': 'Yes', 'created': '2024-11-17 03:05:11', 'submission_id': '1gstj8l'}
{'comment': 'I believe the two states were compared for their rankings in how they do in things that should matter.', 'created': '2024-11-17 13:52:17', 'submission_id': '1gstj8l'}
{'comment': "Rural poverty is a real issue in Oklahoma, but I would say we are easy to manipulate. The issue is there is only one message being sent out here and countering that message takes money. Under Dean's 50 state initiative we had a big surge in this state, but the state party is under funded and under staffed.\n\nI think it'd be extremely incorrect to say that our voters are illeducated. A recent poll found us at #30 which isn't great but, once again, rural poverty is a real issue. We had a state question this past go around about passing bonds for zoning districts and it was a fairly complex issue. The levels of discourse I saw around it were pretty well educated and reasoned. \n\nIt's a shitty situation on two sides. We are the testing ground for stupid shit the Republicans want to try. We (Oklahoma Democrats) are pretty routinely shit on by both Republicans for being Democrats but also Democrats for being Oklahomans. Those of us who aren't fleeing the state and instead want to push back against this stupid crap get it from all sides.\n\n40% of this state is fighting back against this crap with bailing wire and grit, because that is all we have but by God are we going to try.\n\n(That's not saying you in particular are shitting on us, you aren't. Just a general reminder for all that a lot of us are trying to reverse course. The top school districts all told Ryan Walters to fuck off)", 'created': '2024-11-17 05:39:12', 'submission_id': '1gstj8l'}
{'comment': 'I live in a red state and it isn’t about manipulating the uneducated; these people who are deprived of education just don’t vote. The red wins because they continuously invest in their elite communities, leaving these disadvantaged communities behind, who don’t vote for themselves because they don’t know better. I’m in SC and we have 29% dems to 44% R; but they get a higher turnout out than we do consistently. I also firmly believe we have more unregistered voters than they do here but that’s speculation on my part.', 'created': '2024-11-17 02:23:23', 'submission_id': '1gstj8l'}
{'comment': 'What about New Mexico.', 'created': '2024-11-17 17:30:49', 'submission_id': '1gstj8l'}
{'comment': 'Go to a swing state with a democratic governor or dominated government. They will protect your son.', 'created': '2024-11-16 19:49:41', 'submission_id': '1gstj8l'}
{'comment': 'Illinois has really affordable areas outside Chicago. Also great services and tons of protections.', 'created': '2024-11-17 14:16:21', 'submission_id': '1gstj8l'}
{'comment': 'Come to Virginia! I am a special ed teacher in Fairfax County. Not perfect, but a lot better than it could be.', 'created': '2024-11-16 22:34:58', 'submission_id': '1gstj8l'}
{'comment': "MA Republicans are a different breed, though. They're more focused on business friendliness. Reminder that Mitt Romney signed a bill into state law that was used as a framework for Obamacare", 'created': '2024-11-16 23:33:48', 'submission_id': '1gstj8l'}
{'comment': 'Yep, we had Romney as our governor, who was one of the many moving pieces behind Mass Health, which is what Obama modelled his health plan after.', 'created': '2024-11-16 21:54:16', 'submission_id': '1gstj8l'}
{'comment': 'I live in Tulsa and love it. \n\nOutside of here or OKC, however, no fucking way.', 'created': '2024-11-16 20:22:25', 'submission_id': '1gstj8l'}
{'comment': 'Glad you escaped', 'created': '2024-11-17 04:38:48', 'submission_id': '1gstj8l'}
{'comment': 'I was wondering the same thing. Especially since Secretary of the Interior, Deb Haaland was the first Native American cabinet member ever.', 'created': '2024-11-16 21:18:19', 'submission_id': '1gstj8l'}
{'comment': 'Due to settlement patterns almost all counties have more non-Native than Native people. And sadly many Native Americans have assimilated into the surrounding society.', 'created': '2024-11-16 22:04:57', 'submission_id': '1gstj8l'}
{'comment': "Didn't the Democratic party do better than Harris downballot though?", 'created': '2024-11-16 20:15:30', 'submission_id': '1gstj8l'}
{'comment': 'WV is going to be waiting a LONG time for coal to come back.', 'created': '2024-11-17 04:22:00', 'submission_id': '1gstj8l'}
{'comment': 'We literally have no natural resources or manufacturing outside of high tech in MA.', 'created': '2024-11-17 15:22:22', 'submission_id': '1gstj8l'}
{'comment': 'I was raised catholic. Religion was the worst invention of humanity. It’s killed more people than anything else.', 'created': '2024-11-17 23:52:50', 'submission_id': '1gstj8l'}
{'comment': 'Lmafo', 'created': '2024-11-17 01:11:29', 'submission_id': '1gstj8l'}
{'comment': 'https://preview.redd.it/wopgpss3db1e1.jpeg?width=750&format=pjpg&auto=webp&s=fbe0420d4aeabf6824cf7981f084dae95a2ecd58', 'created': '2024-11-16 20:18:44', 'submission_id': '1gstj8l'}
{'comment': 'https://preview.redd.it/2r96pyw4db1e1.jpeg?width=750&format=pjpg&auto=webp&s=b760451b10d3ef07b27b5215b1190ebf55f18ac7', 'created': '2024-11-16 20:18:54', 'submission_id': '1gstj8l'}
{'comment': 'Education: 9th from the bottom\n\nHealthcare: 48th\n\nQuality of Life: 46th\n\nTest scores: Bottom 5\n\nPoverty: 5th highest', 'created': '2024-11-16 20:27:07', 'submission_id': '1gstj8l'}
{'comment': 'Democrats have been making their policy arguments based on research and nuance for a long time. There’s a reason Elizabeth Warren, who grew up in Oklahoma and voted Republican in her early adulthood votes Democrat now — she did a pile of graduate level research into what causes individual bankruptcy and how to fix it.', 'created': '2024-11-16 20:23:43', 'submission_id': '1gstj8l'}
{'comment': 'It all comes down to education- if people are poorly educated they have much more difficulty discerning information and determining what is true and plausible vs not. Plus the poorly educated have fewer options and resources. If state governments do not support and fund decent school curriculums, the people in those states are at a disadvantage, for life. Much of this can be seen on the ballots and reflected in the voter counts.', 'created': '2024-11-17 00:24:03', 'submission_id': '1gstj8l'}
{'comment': None, 'created': '2024-11-16 20:03:14', 'submission_id': '1gstj8l'}
{'comment': 'Both?', 'created': '2024-11-16 22:05:30', 'submission_id': '1gstj8l'}
{'comment': 'Western MA is much more reasonable than eastern MA.', 'created': '2024-11-17 20:00:45', 'submission_id': '1gstj8l'}
{'comment': 'Is it elitism to refuse to vote for a convicted felon for POTUS? Is having values and morals now considered elite? And you know what, a POTUS Trump is only going to put more money in elitists’ pockets.', 'created': '2024-11-17 00:13:10', 'submission_id': '1gstj8l'}
{'comment': None, 'created': '2024-11-17 09:29:12', 'submission_id': '1gstj8l'}
{'comment': "These people have agency\n\nDenying the reasons for why they vote how they do doesn't help you to understand them as people", 'created': '2024-11-17 04:43:19', 'submission_id': '1gstj8l'}
{'comment': "No, all counties have been red and getting redder since the Obama years. It's a GOP wasteland.", 'created': '2024-11-17 02:40:16', 'submission_id': '1gstj8l'}
{'comment': 'Studying, researching, learning is largely an indoors pursuit. Cold weather absolutely leads to better intellectual achievements.', 'created': '2024-11-17 04:28:02', 'submission_id': '1gstj8l'}
{'comment': None, 'created': '2024-11-17 09:35:14', 'submission_id': '1gstj8l'}
{'comment': "Don't forget gas. They're gonna save $82 in gas a year. So that plus eggs should save them $102 per year.", 'created': '2024-11-17 21:50:50', 'submission_id': '1gstj8l'}
{'comment': 'The schools also gonna have to pay for each one of them', 'created': '2024-11-17 05:18:12', 'submission_id': '1gstj8l'}
{'comment': '/S right?', 'created': '2024-11-17 14:57:55', 'submission_id': '1gstj8l'}
{'comment': 'Hard to overcome overt misogyny and racism.', 'created': '2024-11-17 00:11:44', 'submission_id': '1gstj8l'}
{'comment': "Oklahomans do not believe they are poor because of Democrats. A shit ton of us do value education (a *lot* of our reps are teachers), we've had multiple large teacher walkouts and demonstrations. We pass funding measures (Casinos, Weed) to help pay for more things for schools but rural poverty is a *huge* issue. Property taxes only go so far in a town of 5000 people. The average household income here is $60k and that's even when you include Paycom and other high paying employers. \n\nAlso, I will point out *we had universal Pre-K before Massachusetts did* which is really saying something for a state of gold fish memoried, bitter, chip-on-our-shoulder people, huh?", 'created': '2024-11-17 05:54:20', 'submission_id': '1gstj8l'}
{'comment': 'If having a good education system makes you an “educated elite” there’s not a god damn thing we can do messaging wise.', 'created': '2024-11-17 04:33:33', 'submission_id': '1gstj8l'}
{'comment': 'Expensive', 'created': '2024-11-17 17:26:28', 'submission_id': '1gstj8l'}
{'comment': 'We’ve had a Republican trifecta for the last 12 years. There are a small handful of democratic state legislators but never a majority.\xa0\n\nWe didn’t used to be so low in education and living stnadards. Our challenges rest squarely on the shoulders of our republican politicans.', 'created': '2024-11-16 22:08:20', 'submission_id': '1gstj8l'}
{'comment': 'These states are run by the GOP. The GOP governs education in GOP run states.', 'created': '2024-11-17 00:14:01', 'submission_id': '1gstj8l'}
{'comment': 'We lost to ignorant brainwashed mouth breathers who always vote against their own economic interests. They are easily manipulated and that’s not our fault.', 'created': '2024-11-18 02:29:35', 'submission_id': '1gstj8l'}
{'comment': 'If I learned anything from this is that, idiots can lose', 'created': '2024-11-17 19:54:40', 'submission_id': '1gstj8l'}
{'comment': 'Every country had a red or blue outcome', 'created': '2024-11-17 20:26:36', 'submission_id': '1gstj8l'}
{'comment': 'Every county went blue or red.', 'created': '2024-11-16 19:55:54', 'submission_id': '1gstj8l'}
{'comment': 'I live in Oklahoma and don’t feel superior, but I sure as hell wished the public consumed some kind of decent news sources.', 'created': '2024-11-16 22:09:49', 'submission_id': '1gstj8l'}
{'comment': "Fools. I didn't question my faith until I actually read my Bible alone and not just listened to what someone else told me it said. Found the parts that said life doesn't begin til the first breath, and the part about how to make a recipe to induce an abortion and was no longer bought the prolife lies. Was disgusted by televangelist and the prosperity gospel after reading Christ's views on rich men and hoarding wealth. In fact, nearly every atheist I know has actually read the Bible, and turned away from religion *because* of it.", 'created': '2024-11-17 14:50:05', 'submission_id': '1gstj8l'}
{'comment': "They need to teach about the crusades, the inquisition, and the witch burnings. If you're going to teach religion, teach it ALL.", 'created': '2024-11-17 20:47:00', 'submission_id': '1gstj8l'}
{'comment': 'They hold prayer meetings in classrooms there—after buses arrive but before the official school day and period 1/announcements commence. They have “student-led” prayer on the gridiron, sidelines, in the parking lots during and after football games. They have prayer in locker rooms at half time, during games. As long as it’s “spontaneous”, “student-led”, and not controlled or commanded or required by coaches, staff, parents or school leaders? Not a lot you can do about it except complain or scrutinize the circumstances somewhat, to see if kids who won’t participate are being unfairly treated, bullied or not given equal opportunity to make or stay on the team or receive proper coaching, or are subjected to hazing, maybe punished academically or by withholding of awards or scholarship opportunity, etc. \n\nHeck, my husband interviewed for a job there and they didn’t tell him that every morning there’s a mandatory prayer meeting that blurs into a businesses meeting. Another employee clued him in, he asked, they basically said yeah it’s true—and if you’re not ok with it then we’re not ok with you. He took a job here in Massachusetts, instead—and I am grateful every day I wake up here (especially lately), that he did.', 'created': '2024-11-17 13:38:26', 'submission_id': '1gstj8l'}
{'comment': 'trump bible made in China', 'created': '2024-11-16 23:06:49', 'submission_id': '1gstj8l'}
{'comment': "Supreme Court: Constitution? What's that?", 'created': '2024-11-17 18:24:44', 'submission_id': '1gstj8l'}
{'comment': 'Wonderful 🫠', 'created': '2024-11-17 19:01:13', 'submission_id': '1gstj8l'}
{'comment': "Why bother giving them the holy war they want? Just sit back and let god come to them in the form of an inevitable EF4 tornado! And it'll arrive without warning because they voted to have national weather alerts behind a paywall.", 'created': '2024-11-17 23:08:40', 'submission_id': '1gstj8l'}
{'comment': 'What’s that?', 'created': '2024-11-18 21:01:48', 'submission_id': '1gstj8l'}
{'comment': 'I love Austin, lived in MA my whole life.', 'created': '2024-11-18 00:00:02', 'submission_id': '1gstj8l'}
{'comment': 'Oh is that what BTS stands for? 😝', 'created': '2024-11-16 21:18:18', 'submission_id': '1gstj8l'}
{'comment': 'Well hold on, they said I was controlling the weather. Am I god or was it his plan to give me immense power to destroy all? Lol', 'created': '2024-11-17 02:08:03', 'submission_id': '1gstj8l'}
{'comment': "The difference being that the hicks in Dumpville blame others for their own plight. When help is offered, they don't want it.", 'created': '2024-11-16 22:37:25', 'submission_id': '1gstj8l'}
{'comment': "Well in an election if people don't vote than it is someone else's fault. I think most of us here did our part. Alt of people here canvassed and phonebanked. Plus in other threads we've already and continue to talk about where we went wrong. Now we're just on to other areas of discussion.", 'created': '2024-11-17 19:00:59', 'submission_id': '1gstj8l'}
{'comment': 'huh', 'created': '2024-11-17 03:14:27', 'submission_id': '1gstj8l'}
{'comment': "I'm in FL, its a far right wing evangelical hellscape", 'created': '2024-11-16 20:11:43', 'submission_id': '1gstj8l'}
{'comment': "I'd rather not but I'm the extreme minority here. I know very few Dems", 'created': '2024-11-16 23:29:05', 'submission_id': '1gstj8l'}
{'comment': 'Also true', 'created': '2024-11-17 16:27:20', 'submission_id': '1gstj8l'}
{'comment': 'Go in early October. The closer you get to Halloween the crazier Salem gets', 'created': '2024-11-16 23:31:19', 'submission_id': '1gstj8l'}
{'comment': '“Fuck Great Barrington, Massachusetts.”\n\nAnthony Jeselnik', 'created': '2024-11-17 18:23:55', 'submission_id': '1gstj8l'}
{'comment': 'New Mexico would be a better contrast but it doesn’t fit the narrative', 'created': '2024-11-17 17:30:12', 'submission_id': '1gstj8l'}
{'comment': 'Yup....Pennsylvania....', 'created': '2024-11-17 04:21:14', 'submission_id': '1gstj8l'}
{'comment': 'Unfortunately, you could lose your governor in 4 years. You know, the presidency and all...', 'created': '2024-11-17 15:01:15', 'submission_id': '1gstj8l'}
{'comment': 'Oh, we know exactly how bad it could be. Virginia is tempting but also a bit scary. Had a lovely friend of a friend that lives near you that made the paper mache Tiamat stature that was at one of the big state museums.', 'created': '2024-11-16 23:03:10', 'submission_id': '1gstj8l'}
{'comment': 'Didn’t Romney fight against it though? But then later took credit because people liked it?', 'created': '2024-11-17 18:52:48', 'submission_id': '1gstj8l'}
{'comment': 'We just moved to Tulsa and I really like it so far. That superintendent though, what a dipshit.', 'created': '2024-11-16 20:59:22', 'submission_id': '1gstj8l'}
{'comment': 'Norman is the third blue dot.', 'created': '2024-11-16 22:03:22', 'submission_id': '1gstj8l'}
{'comment': 'I’m from Tulsa! Love and miss it so much but the rest is just hopeless', 'created': '2024-11-17 00:29:45', 'submission_id': '1gstj8l'}
{'comment': "Yes..and like how is voting held, is it just like anywhere else? Can poll workers come and go from the reservations? And additionally, I'm wondering about voting culture among Native Americans, does it mirror general US trends? Ok might post this in a different sub.", 'created': '2024-11-16 21:25:08', 'submission_id': '1gstj8l'}
{'comment': "It turns out that Native Americans are a diverse group that includes Democrats and Republicans. \n\nOklahoma has the nations only native American senator, Markwayne Mullin (R). Two of the state's five representatives are also Native American, both Republican. Then you have Democratic Indigenous representatives from Alaska and Kansas.", 'created': '2024-11-17 11:03:26', 'submission_id': '1gstj8l'}
{'comment': "WV is pretty sad because above all else it's a non-turnout state more than a red state. The lack of political signage there compared to nearby areas in Virginia is stark.", 'created': '2024-11-17 04:24:15', 'submission_id': '1gstj8l'}
{'comment': 'Exactly. Oklahoma should be a freaking little Abu Dhabi based on its energy resources. But no.\n\nMA has nothing but educated people & yet does well.', 'created': '2024-11-17 15:23:49', 'submission_id': '1gstj8l'}
{'comment': "Couldn't agree more", 'created': '2024-11-18 01:50:06', 'submission_id': '1gstj8l'}
{'comment': "Unfortunately, I live in WV. I am surprised it's not last in all those categories. Especially Healthcare and Education.", 'created': '2024-11-17 02:37:54', 'submission_id': '1gstj8l'}
{'comment': 'So they elect the party of billionaires. Cognitive dissonance is a hell of a drug.', 'created': '2024-11-16 20:11:14', 'submission_id': '1gstj8l'}
{'comment': 'You know what is incompatable with my VALUES and MORALS? Voting for a convicted felon for POTUS!', 'created': '2024-11-17 00:25:16', 'submission_id': '1gstj8l'}
{'comment': 'Is it even Massachusetts outside of Boston city limits?', 'created': '2024-11-17 20:02:03', 'submission_id': '1gstj8l'}
{'comment': '"Push for policies that actually work". Give me an example of one that changes this disparity and sways the election outcome to a different result', 'created': '2024-11-17 16:52:42', 'submission_id': '1gstj8l'}
{'comment': 'I study just fine and read a ton even better when I can take a break from time to time and take a relaxing stroll down the beach with the warm sunshine on my back. 😎', 'created': '2024-11-17 04:31:13', 'submission_id': '1gstj8l'}
{'comment': 'That’s make sense. I’ve lived in most of the southern states for various reasons and the historical ties to the land are a factor. \n\nWhen I lived Charleston SC for several years, you could still sense there was a current of racism that wasn’t noticeably overt but instead came out in native Charlestonians as a kind of palpable arrogant interaction toward a black population that did most of the physical labor and service jobs in the town. This undercurrent no doubt felt an affinity for the movement Trump started.\n\nRacist cultures love company, combined with generational familial ties probably kept most southerners as glued to the southern regions in a similar way that northerners who didn’t rely on slave labor for their economy stayed put in the north where family and jobs coalesced into their melting pot cities where waves of immigrants with multiple cultural and racial differences worked side by side and found ways to tolerate one another until some homogeneity was achieved. This ingrained attitude of tolerance and acceptance for diversity fits well with the Democratic idea of equality, and more recently DEI.\n\nSelfishly though, I love warm beaches and sea breezes. Too bad that we didn’t at least carve out a couple of southern coastal areas for ourselves. Oh well.', 'created': '2024-11-17 15:27:30', 'submission_id': '1gstj8l'}
{'comment': "That's a tank of gas in a usa sized fuel crusher.", 'created': '2024-11-18 05:00:52', 'submission_id': '1gstj8l'}
{'comment': 'How the hell did H. Sapiens get this far by having such a prevalence of idiocy in breeding populations. Maybe they weren’t so concentrated and the effects of the idiocy were mitigated by fewer individuals relative to local population who were physically distant from others, but over recent millennia they have been able to coalesce into subgroups, like Oklahoma, where they can flourish. That’s all i’ve got.', 'created': '2024-11-17 06:23:17', 'submission_id': '1gstj8l'}
{'comment': 'Lol yeah', 'created': '2024-11-17 20:42:23', 'submission_id': '1gstj8l'}
{'comment': None, 'created': '2024-11-17 09:36:52', 'submission_id': '1gstj8l'}
{'comment': "Sorry...the MAGA Oklahomans. I literally saw this posted elsewhere and the red staters were blaming the woes of red states on democrats. There was a lot of general anti-education sentiment and belief that they needed republican policies to improve economically. No one would acknowledge the fact that MA sends more money to the federal government than it receives in federal funding (and the opposite for OK) I shouldn't have generalized that all Oklahomans feel that way. \n\nIt's great that OK has universal pre-K. I've long thought it would help keep kiddos from slipping through the cracks. Interestingly, pre-K doesn't have great supporting research for improving outcomes, but considering the overall increase in conduct disorders, the research may not be showing the larger picture. The lack of supporting research for pre-K is one of the reasons advocates have had trouble gaining support. \n\nThankfully on the other end of the spectrum, the MA taxpayers foot the bill for community college for certain associates paths for those who have not received a degree previously. \n\nI still remember an Oklahoman being interviewed after a tornado when a reporter asked something about God sparing them. They replied that they were an atheist and it was a big reminder that generalizing doesn't work. I should have kept that in mind when commenting.", 'created': '2024-11-17 06:16:55', 'submission_id': '1gstj8l'}
{'comment': 'I mean honestly you’re kinda right, which really sucks. I am so scared Dems are going to lose so much power and our messaging will be the culprit. We are alienating people with our messaging that our policies actually support.', 'created': '2024-11-17 13:11:54', 'submission_id': '1gstj8l'}
{'comment': 'I 100% agree, but for a large number of non engaged voters, it’s as simplistic as ‘my life sucks. Dems are in power’.', 'created': '2024-11-16 22:11:01', 'submission_id': '1gstj8l'}
{'comment': 'I had a lot of hope for the US before the election. I thought progressives would show up for Harris. The american left totally shit the bed. You made your bed and people all over the world have to lay in it with you. It most certainly is the fault of democrats, whether or not you personally voted.', 'created': '2024-11-18 02:37:12', 'submission_id': '1gstj8l'}
{'comment': 'I see, I think they need to be a bit more clear in the meme because I literally had no idea what they were talking about. It could have meant by popular vote it could have meant by Congressional district. It could have meant something other than the presidential election such as an abortion referendum. I just was not sure.', 'created': '2024-11-16 19:56:54', 'submission_id': '1gstj8l'}
{'comment': 'I’m from Missouri and have watched many people sucked into the right wing media news cycle. From Rush to Murdoch. The appeal of demonizing the other is a GOP invention. We will not beet them by playing there game. \n\nTrump will impoverish the working classes. It’s our moment to win them back. But every advocate needs to learn how that is effectively done. It’s not by a “told you so” speech.', 'created': '2024-11-16 22:34:18', 'submission_id': '1gstj8l'}
{'comment': 'Yup!', 'created': '2024-11-18 20:11:01', 'submission_id': '1gstj8l'}
{'comment': 'Damn. "Welcome to Oklahoma. Love God, Or Else!"', 'created': '2024-11-17 17:22:49', 'submission_id': '1gstj8l'}
{'comment': 'Chiiiiiinaaaahhh', 'created': '2024-11-17 05:05:50', 'submission_id': '1gstj8l'}
{'comment': 'Better get one now before the new tariffs. 🤣', 'created': '2024-11-17 23:13:51', 'submission_id': '1gstj8l'}
{'comment': 'I suspect despite the state of the court they wouldn’t let that slide', 'created': '2024-11-17 19:07:22', 'submission_id': '1gstj8l'}
{'comment': 'Unfortunately, they will soon will be history. Then Christian Sharia law will replace them.', 'created': '2024-11-18 20:15:16', 'submission_id': '1gstj8l'}
{'comment': "Worse than Missouri, the State we moved from. I'll grant you that. \n\nWe're in Connecticut now, and it's lovely.", 'created': '2024-11-16 20:15:56', 'submission_id': '1gstj8l'}
{'comment': 'im in north west cousin lovin area of the state. i am always amazed at just how self centered and uneducated the people are here. i swear its a step back in evolution.', 'created': '2024-11-16 20:50:07', 'submission_id': '1gstj8l'}
{'comment': 'I feel your pain', 'created': '2024-11-16 20:15:38', 'submission_id': '1gstj8l'}
{'comment': 'True. You can wait in the exit ramp for an hour. Plan accordingly', 'created': '2024-11-17 02:49:14', 'submission_id': '1gstj8l'}
{'comment': 'I had to Google who that was. Assuming he’s mildly funny, and we’re fraternity brothers.', 'created': '2024-11-17 21:08:06', 'submission_id': '1gstj8l'}
{'comment': 'That’s true New Mexico is pretty bad too.', 'created': '2024-11-17 19:23:47', 'submission_id': '1gstj8l'}
{'comment': 'Illinois is pretty damn blue because of Chicagoland. And midterm elections tend to benefits the party, not in the White House so if anything, Illinois will be even more blue.\n\nIf Pritzker runs again in 2026, he stands an extremely high chance of winning reelection \nHe won by 12 points in 2022', 'created': '2024-11-17 23:26:17', 'submission_id': '1gstj8l'}
{'comment': 'Anyone can travel to and on a reservation. And yes, voting on reservations is done just like in the rest of the country - although most Native Americans live in cities.', 'created': '2024-11-17 11:06:42', 'submission_id': '1gstj8l'}
{'comment': 'We have one of the highest GDP per capita and median incomes in the world. Every nation ahead of us is tiny, tax haven or petro state and there are only a few ahead of US. If we had gas/oil and we’re a tax haven we would leave the rest of the US and world far behind.', 'created': '2024-11-17 15:43:48', 'submission_id': '1gstj8l'}
{'comment': 'That is anecdote. Try data.', 'created': '2024-11-17 04:33:02', 'submission_id': '1gstj8l'}
{'comment': 'As the final counting is coming to a close, that does appear to be a major contributor to the loss. Trump got a bit more votes and Dems didn’t show up. It really does show that about 90% of success in life is driven by showing up- doesn’t matter how skilled, smart, correct or well intentioned you are, if you don’t show up, none of it matters.', 'created': '2024-11-17 18:54:34', 'submission_id': '1gstj8l'}
{'comment': 'Oh nationally… Yeah, local politics have such a strong, immediate impact on our lives.', 'created': '2024-11-16 22:24:16', 'submission_id': '1gstj8l'}
{'comment': 'So doesn’t that speak to the “intellect” of that voter?', 'created': '2024-11-17 00:14:42', 'submission_id': '1gstj8l'}
{'comment': 'Yeah, I’m not even sure. I just see the lines on the map that look like counties and assumed that’s what they meant.', 'created': '2024-11-16 19:59:04', 'submission_id': '1gstj8l'}
{'comment': 'If you know of progressive YouTubers, influencers, podcasters, etc., let me know! Especially young men. Not my media choice but we should help amplify them.', 'created': '2024-11-16 22:37:30', 'submission_id': '1gstj8l'}
{'comment': '"We will not beet them by playing there game"\n\nWas this intentional? lmao', 'created': '2024-11-17 13:52:58', 'submission_id': '1gstj8l'}
{'comment': 'Giiinah', 'created': '2024-11-17 16:36:23', 'submission_id': '1gstj8l'}
{'comment': 'All the way from New York', 'created': '2024-11-17 14:50:52', 'submission_id': '1gstj8l'}
{'comment': "I was going to ask where you went. I'm happy for you guys. Plus it's close to NYC for entertainment etc, great choice", 'created': '2024-11-16 20:22:12', 'submission_id': '1gstj8l'}
{'comment': 'Hello, fellow transplant!\n\nWe moved to CT from a red state in 2021, too!', 'created': '2024-11-16 20:28:25', 'submission_id': '1gstj8l'}
{'comment': "Haha, cousin lovin area, lol. That's pretty much all of FL now, lol", 'created': '2024-11-16 23:26:44', 'submission_id': '1gstj8l'}
{'comment': 'I dont know whether to leave or not. My whole family is in PA but that went red too', 'created': '2024-11-16 20:21:15', 'submission_id': '1gstj8l'}
{'comment': 'Oh. He’s a great comedian with a famous joke about Great Barrington.', 'created': '2024-11-17 21:23:56', 'submission_id': '1gstj8l'}
{'comment': 'And completely controlled by Dems. All the way down to the local level.', 'created': '2024-11-17 19:40:09', 'submission_id': '1gstj8l'}
{'comment': 'Not disputing the data about intellectual pursuits, only that liberals deserve a beautiful beach just as much as some Trumper. Almost every southern beach is populated by legions of southerner retirees who’ve bought homes there. Whereas it seems that a lot of liberal folks prefer the upper north east mostly despite the cold weather.', 'created': '2024-11-17 04:40:00', 'submission_id': '1gstj8l'}
{'comment': "There are a lot of us. \n\nThose red states are already suffering from the lack of professionals. \n\nDoctors, engineers, architects. All those professions that require an education and can work anywhere are moving away from red states. \n\nThose places are bad now, but in 10 years, they'll be so much worse.", 'created': '2024-11-16 20:32:48', 'submission_id': '1gstj8l'}
{'comment': 'How bad are the winters?', 'created': '2024-11-16 22:35:21', 'submission_id': '1gstj8l'}
{'comment': 'New slogan - " Cousin lovin\', what could be more convenient?"', 'created': '2024-11-17 14:58:12', 'submission_id': '1gstj8l'}
{'comment': 'Ehhh PA is such a close state to be honest. The Gov is a Democrat, the Democrats held the House of Reps, and it’s a near tie between McCormick and Casey for the state’s senate. \n\nYinzer here and I take comfort in the fact that my county is 60% Democrat, my borough flies the pride flag in June, and the City is a proud sponsor of the Furry convention out of all things. At the very least, so I doubt my part of PA is going to go full crazy.', 'created': '2024-11-16 20:59:46', 'submission_id': '1gstj8l'}
{'comment': 'I wish it was option.', 'created': '2024-11-16 20:23:34', 'submission_id': '1gstj8l'}
{'comment': 'It’s a problem in NC. Retirees keep moving in but there aren’t nearly enough doctors to keep up with the numbers.', 'created': '2024-11-17 16:10:40', 'submission_id': '1gstj8l'}
{'comment': "They're really not bad at all. We have a few weeks of snowy weather, but the roads are well serviced. \n\nI moved from SC, it wasn't too much of an adjustment.", 'created': '2024-11-16 23:14:57', 'submission_id': '1gstj8l'}
{'comment': 'And accurate, I can see the bumper stickers now, lol', 'created': '2024-11-17 15:08:27', 'submission_id': '1gstj8l'}
{'comment': 'What part of PA?', 'created': '2024-11-16 23:27:41', 'submission_id': '1gstj8l'}
{'comment': "Connecticut isn't going to run out of doctors anytime soon.", 'created': '2024-11-18 03:42:41', 'submission_id': '1gstj8l'}
{'comment': 'Wow. I used to live in Charleston and later Pawley’s Island before moving to Raleigh.', 'created': '2024-11-16 23:51:02', 'submission_id': '1gstj8l'}
{'comment': 'My husband’s primary care physician gave him a referral to Duke’s rheumatology center last summer. They finally called him in July and said their first available appointment was September 9…of 2025. The scheduler said there was a statewide shortage of rheumatologists.', 'created': '2024-11-18 16:47:06', 'submission_id': '1gstj8l'}
{'comment': "Yeah, it's much preferable to SC - the summers aren't literally hot as hell, either", 'created': '2024-11-17 00:13:26', 'submission_id': '1gstj8l'}
{'comment': "That's terrible.", 'created': '2024-11-18 17:06:22', 'submission_id': '1gstj8l'}
{'comment': 'Tankies really thought they were onto something when they wasted their vote on Jill Stein.', 'created': '2024-11-16 19:05:13', 'submission_id': '1gsrc7w'}
{'comment': 'I don’t feel bad for them.', 'created': '2024-11-16 23:04:16', 'submission_id': '1gsrc7w'}
{'comment': 'Good!! Lessons are learned the hard way.', 'created': '2024-11-16 22:06:23', 'submission_id': '1gsrc7w'}
{'comment': 'r/LeopardsAteMyFace', 'created': '2024-11-16 18:59:44', 'submission_id': '1gsrc7w'}
{'comment': 'The media will simply stop talking about it when Trump is president.\n\nThis is because the media is owned by republicans.', 'created': '2024-11-18 22:07:51', 'submission_id': '1gsrc7w'}
{'comment': 'They won’t learn anything. Failure of the system is their goal.', 'created': '2024-11-16 22:27:11', 'submission_id': '1gsrc7w'}
{'comment': 'The Muslim voters that didn’t vote for Harris will learn a hard lesson. Muslim and Somalis will not be able to enter this country. The goal is White Christian Nationalism. And they do NOT fit in that ideal. Watch and learn what happens when you put a felon in the white with IMMUNITY!', 'created': '2024-11-17 16:27:05', 'submission_id': '1gsrc7w'}
{'comment': 'Free paywall workaround:\n\nhttps://archive.is/Vbtaa', 'created': '2024-11-16 15:22:52', 'submission_id': '1gsoajf'}
{'comment': 'I am glad democrats are thinking of ways to limit Trump’s power. The SCOTUS pretty much ensured states have rights.', 'created': '2024-11-16 15:47:11', 'submission_id': '1gsoajf'}
{'comment': "In a nutshell: our defensive strategy relies on Democratic governors and an army of lawyers emulating Republican strategy at the state level.\xa0\n\n\nGreat step forward. I wish they would have been doing this decades ago like our Republican counterparts. We have a long way to catch up. SCOTUS is still a right wing organization.\xa0\n\n\nEdit: Actual Republican strategy would involve them using all their state assets and right-wing courts to block the actions from the federal government. Then using their propaganda machine to blame Democrats for the bad situations they helped create.\xa0We're barely doing step #1.\xa0", 'created': '2024-11-16 18:25:17', 'submission_id': '1gsoajf'}
{'comment': "I'm going to be honest, even here we fucking fight and bitch and complain. If we want an organized response to the propaganda machine, then we need to just bite our tongues and band together and do it. \n\nBut no.", 'created': '2024-11-16 21:12:03', 'submission_id': '1gsoajf'}
{'comment': 'Keith Ellison, yes!', 'created': '2024-11-16 16:48:35', 'submission_id': '1gsoajf'}
{'comment': 'We need the Democrats to be more like AOC and Keith Ellison. And the message has to be like FDR in 1932 a charismatic candidate that can appeal to everyone with a message of progress, getting better and higher wages for all.', 'created': '2024-11-16 17:56:04', 'submission_id': '1gsoajf'}
{'comment': 'To do what exactly? Too little too late.', 'created': '2024-11-16 16:14:45', 'submission_id': '1gsoajf'}
{'comment': 'The governors are scared to publicly say they joined the group… damn.\n\nAlso I wish Texas would protect us like this but I don’t think we will ever turn blue', 'created': '2024-11-16 17:14:36', 'submission_id': '1gsoajf'}
{'comment': 'I predict in 2 years, we’ll have the G7 calling for regime change in US, wild times', 'created': '2024-11-16 20:32:40', 'submission_id': '1gsoajf'}
{'comment': 'I’ve taken as much as I can. I’m done. They wore me out. They say “ if you don’t like it here then leave.” Sounds about right. Lucky I’m in a field that’s considered specialized so I’ll be able to get a work visa. Have to wait four years for my youngest to finish school. That will be four more years of home equity. By then I’ll only have seven years left of the mortgage anyway. I plan on moving to Portugal. Go from there \n Saddest part is I’m an Army veteran. Never in a million years would I believe I’d be moving to a different country out of disgust. Good luck to everybody staying. I wish this place the best. We were at one time.\n\nEdit* wrong word', 'created': '2024-11-16 23:44:02', 'submission_id': '1gsoajf'}
{'comment': '\\#1 plan - more Elizabeth Warren twitter zingers.', 'created': '2024-11-16 18:24:54', 'submission_id': '1gsoajf'}
{'comment': 'It’s too late he’s going to take away your right to have a plan.', 'created': '2024-11-16 16:25:23', 'submission_id': '1gsoajf'}
{'comment': 'Good luck with that, Governor Murphy', 'created': '2024-11-16 19:46:24', 'submission_id': '1gsoajf'}
{'comment': 'Again.', 'created': '2024-11-16 23:28:16', 'submission_id': '1gsoajf'}
{'comment': 'Please write to these 3 senators:\n\nSusan Collins:\n\nhttps://www.collins.senate.gov/contact/email-senator-collins\n\nLisa Murkowski:\n\nhttps://www.murkowski.senate.gov/contact/email\n\n and\n\nJoe Manchin: \n\nhttps://www.manchin.senate.gov/contact-joe/email-joe\n\n!!! These 3 are critical for this to get through!!!\n\nAlso write to your local senators:\n\nhttps://www.senate.gov/senators/senators-contact.htm\n\n\nHere is a template you can use:\n\nConfirm 47 Federal Judges Now\n\nDear Senator: \nPlease prioritize the immediate confirmation of 47 Federal Judges. Protect our democracy against Trump’s threats—this is your legacy. Put aside party lines and act now for our families and nation. Thank you.', 'created': '2024-11-17 09:05:31', 'submission_id': '1gsoajf'}
{'comment': 'If the dems don’t execute the plan it’s useless. The dems are pretty useless anymore.', 'created': '2024-11-18 20:14:18', 'submission_id': '1gsoajf'}
{'comment': '>The SCOTUS pretty much ensured states have rights.\n\nYou mean up until the recent turning point. \n\nWhere they began granting unlimited executive branch power by giving Trump presidential immunity. \n\nBe prepared for any so-called \'states rights" case to go Trump\'s way from now on.', 'created': '2024-11-16 15:54:56', 'submission_id': '1gsoajf'}
{'comment': "I am fairly certain that once the Republicans secure their control of the federal government, SCOTUS will start ruling against state's rights. The court has no morals or principles and they certainly aren't beholden to precedent as we've seen in recent rulings. \n\nIt's not about Trump. People focusing on one man are making a mistake. The Republican establishment is in control and will do whatever they need to obtain, shore-up, and then retain that control. Constitution be damned. They saw that the demographics of this country were changing and they would lose their relevancy decades ago and have been working on subverting that ever since Reagan was in office. \n\nThey don't care about state's rights. They don't care about precedent. They don't care about the law. They don't care about democracy. They only care about money and power.", 'created': '2024-11-16 18:27:36', 'submission_id': '1gsoajf'}
{'comment': 'Better late than never I suppose.', 'created': '2024-11-17 05:58:02', 'submission_id': '1gsoajf'}
{'comment': 'I think citizens should consider helping with the same strategy by being relentlessly supportive in numbers online. We need to shirk the shame the right tries to levy at left-leaning people that they’re not being critical thinkers or savvy if they embrace a side of the aisle. The sides are now democracy and anti-democracy. Choosing a side here doesn’t mean we’re being unbalanced or naive.', 'created': '2024-11-17 02:34:06', 'submission_id': '1gsoajf'}
{'comment': 'He should be the new head of the DNC.', 'created': '2024-11-16 17:46:05', 'submission_id': '1gsoajf'}
{'comment': 'Democrats need new leadership. The current batch are hopeless and don’t seem to grasp why they keep getting trounced by Republicans.', 'created': '2024-11-16 16:29:37', 'submission_id': '1gsoajf'}
{'comment': 'You never fail till you stop trying', 'created': '2024-11-16 18:57:23', 'submission_id': '1gsoajf'}
{'comment': 'Please don’t dis Warren. She is a true and valiant warrior for the Dems.', 'created': '2024-11-16 19:31:08', 'submission_id': '1gsoajf'}
{'comment': 'I love her actually', 'created': '2024-11-16 18:56:22', 'submission_id': '1gsoajf'}
{'comment': 'At least she is doing something and bringing attention to all this.', 'created': '2024-11-16 21:09:42', 'submission_id': '1gsoajf'}
{'comment': None, 'created': '2024-11-16 15:58:06', 'submission_id': '1gsoajf'}
{'comment': 'Really, even further back to Goldwater and the Southern Strategy.', 'created': '2024-11-16 18:51:37', 'submission_id': '1gsoajf'}
{'comment': "“John Marshall has made his decision; now let him enforce it” was once used for a heinous act, maybe the lack of being able to enforce anything by the Supreme Court can be used for some good. If they want to ignore the Constitution, let's see them howl when we do it as well", 'created': '2024-11-17 07:54:02', 'submission_id': '1gsoajf'}
{'comment': 'Part of it is the new media war which the Democrats are terribly behind. It\'s very easy to run into right leaning media even when you\'re not looking for it, but the same can\'t be said for left leaning unless you\'re already in those circles.\n\n\nWhere\'s the Democrat version of Ben Sharpiro "owning" dozens of MAGA in debates?', 'created': '2024-11-16 17:48:25', 'submission_id': '1gsoajf'}
{'comment': "Most of the subreddit doesn't get why Harris lost the election. \n\nIt wasn't her. It wasn't her campaign strategy. It wasn't her ground game. It wasn't the DNC.\n\nRather, it was the propaganda war that Trump and his surrogates waged against the American voters by using the fascist playbook, beginning *9 years ago.*\n\nWhich was preceded by decades of Republican psychological conditioning of voters to mistrust government, mistrust the parties, mistrust experts, and think the Democrats are crazed radical liberals who would destroy the country. \n\nMost people never learned that the most powerful weapon of the Nazi party was not their military. It wasn't their science and engineering. It was their weaponization of rhetoric. \n\nFor when rhetoric is weaponized, it's one of the most powerful weapons that humanity has. \n\nBecause there are no protections against this in our Constitution or system of laws, the deck was stacked against the Democrats. No matter what they did, the propaganda machine would have adjusted its barrage of lies to compensate.\n\nSo until everybody wraps their head around this, we are screwed. Because the huge propaganda machine is going to keep chugging along radicalizing people. And it will continue to sow mistrust and confusion among others. All in order to solidify control of the authoritarian government.", 'created': '2024-11-16 20:20:44', 'submission_id': '1gsoajf'}
{'comment': 'Yes, they need to start creating multiple media opportunities for potential candidates for midterms and 2028 (assuming we still have elections). The names and faces and talking points need to become familiar over time to voters.', 'created': '2024-11-16 18:55:16', 'submission_id': '1gsoajf'}
{'comment': 'I think Democrats need a leader that can actually stand up to Trump and remind people of all the outrageous things he’s done in an effective manner. Biden and Harris clearly failed at that. Bringing Obama in the final hours can only do so much.', 'created': '2024-11-16 18:20:09', 'submission_id': '1gsoajf'}
{'comment': '"We\'ll go further right! Grab that war criminal Cheney and put her onstage with Harris!" That was such a bad look.', 'created': '2024-11-16 16:55:16', 'submission_id': '1gsoajf'}
{'comment': 'Me too.', 'created': '2024-11-16 22:03:45', 'submission_id': '1gsoajf'}
{'comment': "I don't know. Biden is getting ready to hand over the White House to a tyrant, despite the fact that no one should call this a free and fair democratic election. Both major parties have to run *pro-democracy* candidates to have one of those.\n\nWaging an all out propaganda war against American voters is not a *fair* thing to do in an election.\n\nSo if the DNC leadership is willing to hand over the White House to Trump now, why wouldn't they keep just acquiescing to tyranny?\n\nWhen does the resistance begin? What why do y'all want to wait until after Trump is in the White House?", 'created': '2024-11-16 16:03:53', 'submission_id': '1gsoajf'}
{'comment': 'I mean the Republicans do it so why not', 'created': '2024-11-16 20:27:25', 'submission_id': '1gsoajf'}
{'comment': 'back to when LBJ stood up for civil rights and the detectors went to start the flip and power grab', 'created': '2024-11-17 02:38:53', 'submission_id': '1gsoajf'}
{'comment': "I was kind of thinking the same things. Blue states really should just do what they want and ignore the supreme court. There doesn't really seem to be any consequences for crime in the government anyway. However, I think Trump would just end up sending in the military to bust some heads or something at this point.", 'created': '2024-11-17 12:37:46', 'submission_id': '1gsoajf'}
{'comment': 'Destiny could get out there a little more. I would kind of compare him to Shapiro.', 'created': '2024-11-16 19:30:29', 'submission_id': '1gsoajf'}
{'comment': 'You think they care. They like what he’s done and because he talks their talk they feel he’s listening to their wants/needs. Dems need to figure that out.', 'created': '2024-11-16 20:18:51', 'submission_id': '1gsoajf'}
{'comment': 'If 10 million Democrats refused to vote because of that, we deserved what we got. No, I think it\'s a combination of "egg prices Biden\'s fault" and Russian hacking and disinformation.', 'created': '2024-11-16 16:59:55', 'submission_id': '1gsoajf'}
{'comment': 'Despite being very left of center myself, I disagree with you. Building a bigger tent requires us to work with and compromise with those who we don’t perfectly align. Democrats have to break the urban/rural divide and accept that not everyone will pass a party purity test.', 'created': '2024-11-16 20:16:44', 'submission_id': '1gsoajf'}
{'comment': 'Once both parties give up on democracy, it’s gone for good. That’s why the Democratic Party has to uphold rules and institutions even in dangerous moments like this.\n\nIt doesn’t mean you have to cheer the party on; it’s grim business and none of us are happy, but please don’t try to push us off a cliff.\n\nOn the other hand, you’re free to fight back how you wish.', 'created': '2024-11-16 17:14:38', 'submission_id': '1gsoajf'}
{'comment': 'I think the whole "When they go low, we go high" thing hasn\'t translated to any wins. They just consistently go lower.\n\n"Waging an all out propaganda war against American voters is not a\xa0*fair*\xa0thing to do in an election." Republicans haven\'t been operating in good faith for decades. Dems have been kowtowing to them. I feel your pain and I agree with you, I sent [this](https://wagingnonviolence.org/2024/11/10-things-to-do-if-trump-wins/) article to some friends and it gives a couple of ways to assist with a response. I have never been more incentivized to do something so I am seriously thinking about joining up. I have been a keyboard warrior on this thread so I think its time to do a bit more. The frustration and angst this administration is already causing is a strong motivator. Gotta do something', 'created': '2024-11-16 17:19:44', 'submission_id': '1gsoajf'}
{'comment': 'It really was a Kremlin style propaganda and disinformation blitz', 'created': '2024-11-16 20:16:20', 'submission_id': '1gsoajf'}
{'comment': 'Not just that. The Democratic party needs to pay him to get out more.', 'created': '2024-11-16 23:12:57', 'submission_id': '1gsoajf'}
{'comment': 'Well, the core MAGA obviously don’t care. And, apparently, a lot of other Republican voters also don’t care. \n\nBut I think a leader with strong rhetorical speaking abilities could at least sway some swing voters. Right now there simply isn’t anyone strong enough to even establish the basic civility and decency, allowing MAGA crowd to completely normalize things that were once outrageous. January 6th is now considered an event of peaceful protests with some minor isolated petty crimes, and apparently, no democrats has been successful in challenging that. Bernie seemed to have spoken out against strongly, Obama did towards the end of the campaign, but it wasn’t enough. \n\nSo, whose job was it to put Trump in his place? Biden? Harris? Pelosi? That’s the the main leadership. But no one is assuming any responsibility for anything and that’s a problem.\n\nWe’ve been told to have faith in the establishment and trust the process of status quo and we did. But it hasn’t worked so it’s fair for us to seek answers.', 'created': '2024-11-16 22:07:07', 'submission_id': '1gsoajf'}
{'comment': 'I am a firm believer in a big tent. The Cheney\'s? No. There is very little we should agree with them. Dems have apparently totally forgotten about Liz\'s anti-Obama PAC. \n\nWe have vastly different morals and principles than the Cheney\'s. That should be celebrated, not "triangulated" away.', 'created': '2024-11-16 22:27:52', 'submission_id': '1gsoajf'}
{'comment': ">Once both parties give up on democracy, it’s gone for good.\n\nIf Biden decided to take extraordinary action against the MAGA leadership, rather than hand over the keys to the White House, that would not be giving up on democracy. That would be fighting for it.\n\n>That’s why the Democratic Party has to uphold rules and institutions even in dangerous moments like this.\n\nThe US Constitution is first and foremost a social contract which we all agree to support because we want a democracy. \n\nThroughout the election, Republicans acted in bad faith. And by electing a tyrant, they have broken that social contract. \n\nSo the idea that Democrats must then stay bound to an agreement that the other party backed out of, seems self-defeating. And it seems based on some ideological perspective about democracy that is fallacious. \n\nFor if you look at our founding forefathers, they fought against tyranny to establish this country. Having the leader of America democracy fight against tyranny to preserve our democracy is in the spirit of that.\n\nMoreover, Biden's oath is to protect and preserve the Constitution. How is he doing that by giving it over to Trump so that Trump can establish an authoritarian government?\n\nNo I'm not saying Biden has to do it. I'm not saying that he has the resources to do it. Just that if he chooses that path, he still is working to preserve democracy.", 'created': '2024-11-16 19:58:37', 'submission_id': '1gsoajf'}
{'comment': ">Dems have been kowtowing to them.\n\nI wouldn't say that. They just can't fight back using the same kind of extreme propaganda and lies. \n\nThe reason we have the First Amendment is because voters need the opportunity to be informed. So if both political parties are misinforming voters constantly, that would be terrible for our democracy.\n\nSo I would describe the Democratic Party as generally engaging in politics and governance as a political party should in a democracy.", 'created': '2024-11-16 19:48:07', 'submission_id': '1gsoajf'}
{'comment': "Even worse. The Nazi fascist playbook. Radicalize using intolerance. Flood the people with misinformation to create confusion and indecision among others.\n\nRemember Ivana Trump told people in the '90s that Donald kept a book of Hitler speeches by his bed. \n\nWhat people don't get is that the Nazis most dangerous weapon was not their military. It was not their science and engineering. It was their weaponization of rhetoric. \n\nBut we were never taught that. We were just taught that they were evil. \n\nSo now the US got a first-hand demonstration of it.", 'created': '2024-11-16 20:22:21', 'submission_id': '1gsoajf'}
{'comment': None, 'created': '2024-11-16 23:13:41', 'submission_id': '1gsoajf'}
{'comment': 'It would be interesting to see how poorly he would’ve handled inflation. \n\nI imagine he’d have had an entire Twitter war with the fed over interest rates.\n\nDems would’ve CRUSHED the 2022 midterms.', 'created': '2024-11-16 15:08:10', 'submission_id': '1gsnwce'}
{'comment': 'The Biden presidency was a necessary stop gap. No matter how awful Trump’s second term will be now, it would have been infinitely worse if it happened these past 4 years. We might not have even had a country left. If we survive the next 4, it’s because of the work Biden did to stabilize our economy and build guardrails to mitigate the risk of another Jan 6th type event.', 'created': '2024-11-16 15:45:10', 'submission_id': '1gsnwce'}
{'comment': 'I was conflicted with his loss in 2020 because I knew he would run again in 2024 on the economy and win. There was no doubt in my mind that Biden would face an uphill climb crawling out of COVID, but I would have rather Trump deal with the post-COVID economy fallout, and get all of the blame he deserves. We would have a Dem trifecta right now. \n\nI don’t want to think what hell the last four years would have been though. Biden Admin did remarkably well under the circumstances, and deserves way more credit.', 'created': '2024-11-16 15:30:10', 'submission_id': '1gsnwce'}
{'comment': 'Ukraine and Palastine would be gone, and millions more of us would have died from covid.', 'created': '2024-11-16 15:17:39', 'submission_id': '1gsnwce'}
{'comment': 'I think more about how if Biden ran in 2016, he would have won and probably would have been a two-term president.', 'created': '2024-11-16 16:37:32', 'submission_id': '1gsnwce'}
{'comment': "I think he would've already pulled the dictator card by now tbh. He already mentioned it a bunch and acted with complete impunity throughout his first term to the point he staged a coup to try to remain in power. \n\nI just wish Biden would've done more to safeguard the country and prosecute him in the interim. Like Trump got the immunity decision and doesn't give a damn what anyone thinks anyway, why couldn't Biden have pulled that card to get the DOJ to just do it's job?", 'created': '2024-11-16 15:13:44', 'submission_id': '1gsnwce'}
{'comment': 'Cute of you to assume he’d willingly leave.', 'created': '2024-11-16 15:55:19', 'submission_id': '1gsnwce'}
{'comment': 'Yesssssss. Every fucking day. I wonder if we would’ve just let him win we’d be done with his ass and it wouldn’t have been as bad as what they’re planning with project 2025. But maybe I’m delusional.', 'created': '2024-11-16 15:19:06', 'submission_id': '1gsnwce'}
{'comment': 'I think you’re kidding yourself if you think he’d be leaving.', 'created': '2024-11-16 15:41:27', 'submission_id': '1gsnwce'}
{'comment': "Nah he wouldnt leave. And he won't in Jan 2029", 'created': '2024-11-16 16:06:45', 'submission_id': '1gsnwce'}
{'comment': 'If Biden had run in 2016, maybe we would have avoided this whole mess altogether', 'created': '2024-11-16 16:03:49', 'submission_id': '1gsnwce'}
{'comment': 'Do you think he would actually leave?', 'created': '2024-11-16 15:34:20', 'submission_id': '1gsnwce'}
{'comment': "Joe Biden's height is 6 feet. Trump claims to be 6'3. Assuming he has bad posture or whatever shouldn't Trump be at least as tall as Biden?\n\nI know it's a petty thing but I just hate that absolutely everything with Trump is a lie and that it just never seems to matter.", 'created': '2024-11-16 17:08:59', 'submission_id': '1gsnwce'}
{'comment': 'Biden would never had been president and honestly he’s been a really good one. History will be kind to him.', 'created': '2024-11-16 15:29:20', 'submission_id': '1gsnwce'}
{'comment': '4 years is such a long time', 'created': '2024-11-16 15:33:11', 'submission_id': '1gsnwce'}
{'comment': 'And if Clinton had won in 2016, *she* would be leaving in January. And Tim Kaine might be moving in.', 'created': '2024-11-16 16:50:50', 'submission_id': '1gsnwce'}
{'comment': 'If my aunt has wheels she’d be a bus', 'created': '2024-11-16 17:05:42', 'submission_id': '1gsnwce'}
{'comment': 'Or we would be having Jan 6th 2025…', 'created': '2024-11-16 17:16:53', 'submission_id': '1gsnwce'}
{'comment': 'If he had been reelected, he’d have done a worse job with inflation and not had four years to regroup. We’d have been better off.', 'created': '2024-11-16 16:18:50', 'submission_id': '1gsnwce'}
{'comment': 'We would be navigating through a great recession instead of preparing for one', 'created': '2024-11-16 16:58:57', 'submission_id': '1gsnwce'}
{'comment': 'No he wouldn’t. He barely left as it is and tried to overturn the election results. 1/6/21 ring a bell?', 'created': '2024-11-16 15:56:09', 'submission_id': '1gsnwce'}
{'comment': "If Trump won in 2020 we wouldn't have a country left.", 'created': '2024-11-16 16:50:13', 'submission_id': '1gsnwce'}
{'comment': 'How cute you think he would leave', 'created': '2024-11-16 16:56:13', 'submission_id': '1gsnwce'}
{'comment': 'Would he though? I’m not so sure. He’s already hinted at a 3rd term.', 'created': '2024-11-16 15:37:34', 'submission_id': '1gsnwce'}
{'comment': 'In hindsight, losing the 2020 election is probably the best thing that could have happened to the republicans. Neither party could have survived the pandemic fallout and GLOBAL inflation. Now they just get to blame the democrats and take power back in the house, senate, White House, and probably solidify the Supreme Court for the rest of my lifetime.', 'created': '2024-11-16 16:07:39', 'submission_id': '1gsnwce'}
{'comment': "No he wouldn't!", 'created': '2024-11-16 16:11:54', 'submission_id': '1gsnwce'}
{'comment': 'I think about whether I’d prefer his 2nd term in 2020 versus now and what would be less damaging to the country. Either way you look at it sucks but I think it was important Biden step in at the time he did. 8 straight years of Trump would be arguably worse than a gap in his terms.', 'created': '2024-11-16 16:29:58', 'submission_id': '1gsnwce'}
{'comment': 'There likely would have been twice as many deaths from COVID had he won again.', 'created': '2024-11-16 16:38:56', 'submission_id': '1gsnwce'}
{'comment': 'I’m glad his terms are non-consecutive. At least we had Biden in the middle to clean shit up before Trump ruins it again. Eight years straight of Trump would destroy our country', 'created': '2024-11-16 16:49:37', 'submission_id': '1gsnwce'}
{'comment': 'If this orange catastrophe had won in 2020, none of us wd be here now. Instead of daydreaming about some “interesting”survival scenario orchestrated by the power of inevitability, let’s concentrate on how we’re gong to survive the next 4 years. Believe me, this is going to be a full Kong event.💣', 'created': '2024-11-16 16:14:38', 'submission_id': '1gsnwce'}
{'comment': 'I had the same thought—would be in a weaker position today.', 'created': '2024-11-16 15:43:23', 'submission_id': '1gsnwce'}
{'comment': "Hilarious of you to think that he'd leave office.", 'created': '2024-11-16 16:27:49', 'submission_id': '1gsnwce'}
{'comment': 'No, he would not be leaving in January. Jan. 6, 2021 showed us once and for all his beliefs about giving up power. He would be announcing the eternal reign of the divine MAGA party.', 'created': '2024-11-16 17:49:54', 'submission_id': '1gsnwce'}
{'comment': 'All the time…I kinda wish we’d lost in 2020 so we could be done with him now. At the same time, who knows what America would look like if he’d won then with all of the problems post Covid.', 'created': '2024-11-16 18:38:14', 'submission_id': '1gsnwce'}
{'comment': 'I definitely feel now it would have been safer for him to win in 2020 then today, I do think about this he would have still be in restraints and it would just be a clown on TV. But then I think if he was still in office at the prime of covid, a lot of people would have died. Also, Biden would definitely be too old to run again so we would have a whole set of candidates in the primaries. It would have been way different in that timeline', 'created': '2024-11-16 19:56:24', 'submission_id': '1gsnwce'}
{'comment': "Not really. But now that I think about it, he's had 4 years to finalize his plans to destroy Democracy. Maybe it would have been better if he'd won.", 'created': '2024-11-16 21:41:18', 'submission_id': '1gsnwce'}
{'comment': 'No. And don\'t be obtuse if you aren\'t a bot.\n\nIn a nutshell. He would delay or void all legal suits against him. Try to do away with elections and become a dictator. And keep printing money to shore up the stock market and banks. We would be about 12 Trillion in debt if/when he left and as soon as we stopped printing free money, the economy would collapse like never seen before. But none of that matters to him, because he would be selling everything the position allows him access to.\n\nIt\'s also safe to say that he would have sold/given as much COVID vaccines to Russia as asked....while letting more Americans die. I don\'t think any other president has let 900,000 civilians die - and he did without giving a single fuck about it. States had to pay for the mass graves required for the mounting bodies.\n\nAnyone with an ounce of compassion or empathy wouldn\'t dare be seen in public after that. And yet, he never mentions it or feels remorse. I live in a very blue state and get to watch this shitshow in relative safety. I feel no remorse for the ignorant people that voted for him. They deserve everything they actively get taken from them - by "Their" President.\n\nI will not mind it we elect to secede for a while. We will have better healthcare, could probably bankroll everyone in State\'s Social Security 2.0 benefits within 2 years, and be able to pay down more long term debt..........simply by not footing the bill for so, so many Red states that can not afford to be self sufficient - without Socialism by a different name.', 'created': '2024-11-17 05:37:58', 'submission_id': '1gsnwce'}
{'comment': 'Maybe not. He has no respect for rules.', 'created': '2024-11-16 15:31:17', 'submission_id': '1gsnwce'}
{'comment': 'He would have changed the law and allowed for unlimited terms. He would be president for life by now.', 'created': '2024-11-16 15:30:35', 'submission_id': '1gsnwce'}
{'comment': 'I think we would definitely end up with another republican winning in 2024, the economy is booming rn, unemployment is at a very low rate, interest rates are coming down, inflation is coming down. Trump would be claiming he and the GOP made it happen. They’re going to claim credit for it now anyway but it would be nice to be done with Trump rn. We have had to deal with him and his shit the last four years anyway.', 'created': '2024-11-16 15:36:44', 'submission_id': '1gsnwce'}
{'comment': 'Lol he wouldn\'t be leaving in January. He would be trying for a 3rd term. Then naming his republican succeser to rule next. To "keep America great"', 'created': '2024-11-16 16:29:19', 'submission_id': '1gsnwce'}
{'comment': 'He wouldn’t leave. Just like he’s not leaving in 2029. America bought the ticket. Now they’re going to take the full Find Out Ride.', 'created': '2024-11-16 16:34:16', 'submission_id': '1gsnwce'}
{'comment': "Yes. My wife said she wishes he had won in 2020 so we'd be done with him by now, and they wouldn't have had the extra 4 years to think about all the dumb shit they're about to unleash.", 'created': '2024-11-16 16:38:43', 'submission_id': '1gsnwce'}
{'comment': "He wouldn't leave, even then.", 'created': '2024-11-16 17:00:24', 'submission_id': '1gsnwce'}
{'comment': 'That’s a tough call. Despite the sentiment, Biden’s presidency was pretty dam consequential. I don’t know that he’d be running in ‘24 if he had lost. So in your “what if” we would lose all that.', 'created': '2024-11-16 17:08:16', 'submission_id': '1gsnwce'}
{'comment': 'Yes many people have thought about this but you have no clue how bad it could have been. Its not even worth entertaining it.', 'created': '2024-11-16 17:20:41', 'submission_id': '1gsnwce'}
{'comment': 'My education professor told me the night after the election that he long believed that the party that wins in 2024 would be the party that lost 2020. After mulling it over, I honestly couldn’t agree more', 'created': '2024-11-16 17:37:06', 'submission_id': '1gsnwce'}
{'comment': 'You think he’s leaving the White House in 4 years?', 'created': '2024-11-16 17:54:03', 'submission_id': '1gsnwce'}
{'comment': 'No because the country would be in shambles, Russia would have invaded Poland and he would be attempting a third term', 'created': '2024-11-16 18:02:20', 'submission_id': '1gsnwce'}
{'comment': 'Yea. Wish he won.', 'created': '2024-11-16 19:04:18', 'submission_id': '1gsnwce'}
{'comment': 'We’d see a dem blowout in the 2022 midterms and likely an inverse of the 2024 electoral map with the dem candidate winning all 7 swing states. Also Casey and Brown would’ve kept their senate seats', 'created': '2024-11-16 20:49:31', 'submission_id': '1gsnwce'}
{'comment': 'I wish Biden had run and won 8 years ago and Trump and his cronies never sallied the White House or constitution.', 'created': '2024-11-16 20:59:16', 'submission_id': '1gsnwce'}
{'comment': "Bold of you to assume he would've left office.", 'created': '2024-11-16 21:24:27', 'submission_id': '1gsnwce'}
{'comment': 'Just a thought here….if America wasn’t absurdly racist and misogynistic and downright idiotic, trump wouldn’t ever be elected to any position of power.', 'created': '2024-11-17 00:32:01', 'submission_id': '1gsnwce'}
{'comment': "Honestly, I wish trump won in 2020 now.\n\nTrump has sailed on two recovering economys now and is falsely taking credit for both.\n\nDems would've had 4 years to pick a fresh new candidate.", 'created': '2024-11-17 00:57:10', 'submission_id': '1gsnwce'}
{'comment': 'We would have been fighting his third term.', 'created': '2024-11-17 15:02:19', 'submission_id': '1gsnwce'}
{'comment': 'Bold of you to think we would have even had elections in 2022 or 2024 if that had happened.', 'created': '2024-11-16 15:42:37', 'submission_id': '1gsnwce'}
{'comment': 'That is the main concern of mine.', 'created': '2024-11-16 16:27:16', 'submission_id': '1gsnwce'}
{'comment': 'How many of us do you think would still be here? Covid probably would have taken out a lot more of us.', 'created': '2024-11-16 16:38:22', 'submission_id': '1gsnwce'}
{'comment': "I've thought about this. It would have delayed all of the criminal cases that have already been dismissed over the immunity ruling, which wouldn't have been issued yet.", 'created': '2024-11-16 16:45:46', 'submission_id': '1gsnwce'}
{'comment': 'President Biden laughing at clown something up', 'created': '2024-11-16 17:26:58', 'submission_id': '1gsnwce'}
{'comment': 'You mean like how he’ll leave in 2028?', 'created': '2024-11-16 17:34:21', 'submission_id': '1gsnwce'}
{'comment': 'Like maybe we should have just let him have 2020 so that he wouldn’t be trying to be a fucking king? \n\nIt’s wild to even think about. Idk. Basically all of reality is a bit fucked right now.', 'created': '2024-11-16 18:01:14', 'submission_id': '1gsnwce'}
{'comment': 'Would he, though?', 'created': '2024-11-16 18:01:52', 'submission_id': '1gsnwce'}
{'comment': 'We would have the same exact economy we have now, but it would be amazing and tremendous, a big beautiful economy like you’ve never seen before. 🤦\u200d♂️', 'created': '2024-11-16 18:03:51', 'submission_id': '1gsnwce'}
{'comment': 'Would he????', 'created': '2024-11-16 18:08:32', 'submission_id': '1gsnwce'}
{'comment': 'Another million dead from COVID.', 'created': '2024-11-16 18:09:57', 'submission_id': '1gsnwce'}
{'comment': 'I have been…would be so great to be done rather than beginning', 'created': '2024-11-16 18:12:49', 'submission_id': '1gsnwce'}
{'comment': 'Would he actually be leaving?', 'created': '2024-11-16 18:27:22', 'submission_id': '1gsnwce'}
{'comment': 'Tired of thinking about it. America picked a felon. Time to regroup.', 'created': '2024-11-16 18:32:45', 'submission_id': '1gsnwce'}
{'comment': 'Bold of you to assume he would willingly leave.', 'created': '2024-11-16 18:34:38', 'submission_id': '1gsnwce'}
{'comment': 'Four years of, “I’ll have an infrastructure Bill in 2 weeks.” \n\n🙄', 'created': '2024-11-16 18:36:49', 'submission_id': '1gsnwce'}
{'comment': 'I sometimes daydream about if McCain won in 2008 and Obama ran again and won 2 terms from 2012-2020 followed by a Biden administration to present, we’d have skipped over a trump administration and how well off our country would currently be.', 'created': '2024-11-16 18:46:30', 'submission_id': '1gsnwce'}
{'comment': 'Yes all the time. More people might have died or maybe not because maybe he would have defended the constitution', 'created': '2024-11-16 18:48:33', 'submission_id': '1gsnwce'}
{'comment': 'While some would argue we’d be better off had he won in 2020, I’d counter with a few points:\n\n1. Biden successfully presided over the “return to normal” from the pandemic—boosting vaccine production/rollout, keeping safety measures going until vaccination levels hit goal targets, etc. Trump would’ve continued his COVID skepticism and, once the pushback to vaccines started, probably would’ve discouraged vaccination. This would’ve kept the pandemic going longer.\n\n2. Biden pushed heavily for additional COVID relief, through the ARPA. Trump was done with that, so the economic recovery would’ve dragged longer, if it ever really kicked off.\n\n3. Biden and Senate Dems have been able to mitigate a lot of the harm done by Trump and the GOP in the judiciary. Another 2-4 years of GOP judicial appointments would’ve been disastrous.\n\nBasically, and 2021-24 Trump second term would’ve better locked-in the damage he did in his first term. Sure, electorally, Dems might have been positioned for big wins in ‘22 and ‘24, we don’t know. But we know it would’ve also meant 4 more years of damage, possibly a full-blown lasting recession, vs. the repairs Biden was able to achieve.', 'created': '2024-11-16 18:49:51', 'submission_id': '1gsnwce'}
{'comment': "At least we got a 4yr break & he's drummer, slower & more incontinent & incompetent.", 'created': '2024-11-16 18:59:22', 'submission_id': '1gsnwce'}
{'comment': 'Im trying to be positive. If a second trump term was inevitable, having Biden as the buffer bought us some time. If trump was in charge who knows how worse off we’d be. I know shitty logic but I’m trying.', 'created': '2024-11-16 19:04:28', 'submission_id': '1gsnwce'}
{'comment': 'I always take it back 4 years. If Clinton won in 16, she would’ve been blamed for covid and blasted for mitigation guidelines. Trump would’ve won easily in 2020, taken all the credit for the recovery…and we live in a country that’s collectively dumb enough to believe him. So he probably gets re elected in 24 anyway\n\nI’d still take this reality due to how the SC vacancies timed out', 'created': '2024-11-16 19:14:19', 'submission_id': '1gsnwce'}
{'comment': 'I’ve thought about it since he announced he was running again.', 'created': '2024-11-16 19:28:32', 'submission_id': '1gsnwce'}
{'comment': "There isn't a nonlethal force on this earth that could, or will, stop him from running for a third term. Nor his supporters for voting for him.", 'created': '2024-11-16 20:40:00', 'submission_id': '1gsnwce'}
{'comment': 'I doubt he would be leaving. Project 2021 had longevity provisions.', 'created': '2024-11-16 20:50:50', 'submission_id': '1gsnwce'}
{'comment': 'Leaving? Of course he wouldn’t be leaving just like he won’t be once he gets into the Whitehouse again.', 'created': '2024-11-16 20:54:06', 'submission_id': '1gsnwce'}
{'comment': "We'd be in the middle of a recession on top of the inflation of he'd won in 2020.\n\n\nThe good news is that like last time, there will be a lot of Swing State governors riding an anti trump wave in two years", 'created': '2024-11-16 21:03:56', 'submission_id': '1gsnwce'}
{'comment': 'There are an incredible amount of what if’s that could have altered our current timeline.', 'created': '2024-11-16 22:53:57', 'submission_id': '1gsnwce'}
{'comment': 'All. The. Time.', 'created': '2024-11-16 23:09:50', 'submission_id': '1gsnwce'}
{'comment': 'How about their height… Biden is taller than Trump…how about that!', 'created': '2024-11-16 23:34:14', 'submission_id': '1gsnwce'}
{'comment': 'We would have never beaten COVID, and millions more would have died.', 'created': '2024-11-17 02:00:42', 'submission_id': '1gsnwce'}
{'comment': 'Would he be though?', 'created': '2024-11-17 02:39:10', 'submission_id': '1gsnwce'}
{'comment': 'More people would be dead for various reasons, but COVID especially. \n\nThe COVID recovery dollars that my small(ish) town got and distributed probably would not have been given - and honestly? It made a difference.\n\nInfrastructure, job gains, etc... we\'d definitely be worse off. AT least this way, there was 4 years of recovery and a little respite. \n\nHe\'s going to have to build a lot from scratch - including his entire administration - rather than just rolling over from one term to next. \n\nRemember the infighting that happened when McCarthy wanted to be speaker? Catching him on camera, if I remember right, saying "Please vote for me!". I think that some of the confirmations are going to be that difficult - some may not actually be confirmed. \n\nTrump is now a lame duck. Yes, he may try to stay in power at the end of 4 years - but that might be the final straw even for his most loyal minions. That is IF he\'s still president. I\'m not unconvinced that they might try to Amendment 25 him. JD Vance could run at that point. But he\'s not the cult draw like Cheetolini. \n\nBut NO ONE at the top of the ticket seemed to think about the down ballot. I think even Ted Cruz complained about that. \n\nTwenty three Republican Senate seats will be up for grabs (21 seats with their regular terms up, 2 special elections - JD Vance\'s seat has to be filled and Marco Rubio will probably be confirmed). It will be more if he picks other Senators for Cabinet positions. \n\nAll seats in the House are up for reelection in 2026. \n\nThere also seems to be an anti-incumbent bias, at least at the Presidential level. It wouldn\'t be the first time that midterms were very disappointing for the party that had the White House. 2 years of either not getting shit done or doing shit like making headway on a national abortion ban or skyrocking grocery prices because all the agricultural workers have been deported isn\'t going to incentivize people to go vote for the GOP to remain in control of Congress. Even if they are still rabid for Trump - he\'s not the type that will go and campaign for a lot of people at midterms. More likely to tell people to buy his bible or limited edition coins.', 'created': '2024-11-17 04:40:58', 'submission_id': '1gsnwce'}
{'comment': "Nope. I don't fuck around with time machines, things could *always* be worse no matter how bad any particular point may seem at any particular time. 👍", 'created': '2024-11-17 05:35:54', 'submission_id': '1gsnwce'}
{'comment': "Trump didn't intend to leave.", 'created': '2024-11-17 06:46:41', 'submission_id': '1gsnwce'}
{'comment': "He would not have left the White House and won't leave the White House in 2028", 'created': '2024-11-17 07:38:19', 'submission_id': '1gsnwce'}
{'comment': "leaving? no he wouldn't he wants to be king.", 'created': '2024-11-17 10:10:17', 'submission_id': '1gsnwce'}
{'comment': 'He was talking about how he deserved a third term in his first years…', 'created': '2024-11-17 11:26:27', 'submission_id': '1gsnwce'}
{'comment': 'I think about the irony of this. If Trump won in 2020 he probably would have crashed everything and the same people who love him so much now would be wishing that he lost. Go figure', 'created': '2024-11-17 15:20:31', 'submission_id': '1gsnwce'}
{'comment': "Yes, I do wonder about this. But I'm willing to bet Joe Biden was not the first choice of many people, myself included, to be the Democrat nominee in 2020. And while I think he's done a bang up job, I think most of us thought the Democrats would elect someone who was younger or more charismatic that stood a better chance in 2020. Or that Biden would have dropped out in time for a competitive primary. Or that there was no way Trump would be the nominee again.\n\nBut here we are.", 'created': '2024-11-17 17:46:28', 'submission_id': '1gsnwce'}
{'comment': 'Trump would he beginning his 3rd term because nobody would stop him', 'created': '2024-11-17 21:42:23', 'submission_id': '1gsnwce'}
{'comment': 'According to Google, Trump is 1.9m tall and Biden is 1.83m. But in this photo, Biden is taller than Trump???', 'created': '2024-11-18 09:40:03', 'submission_id': '1gsnwce'}
{'comment': 'I have always thought the best time line is the one where McCain won. Then we got Obama vs Trump, which was just a big loss.', 'created': '2024-11-16 16:30:36', 'submission_id': '1gsnwce'}
{'comment': 'Literally no one thinks this.', 'created': '2024-11-16 17:43:44', 'submission_id': '1gsnwce'}
{'comment': "Honestly it might have been the better situation. Trump would've had to deal with a Dem Senate in 2020 also. Americans don't give a fuck that Biden got us out of Covid and basically fixed inflation -- should've made the felon Trump deal with that and lose by a landslide this year. \n\nAmerican's are going to learn the hard way why we fired him last time.", 'created': '2024-11-16 17:59:40', 'submission_id': '1gsnwce'}
{'comment': 'Millions would have died from covid, minorities would be rounded up, and we’d be a ruined country….we just decided to wait 4 years to do if', 'created': '2024-11-16 18:05:08', 'submission_id': '1gsnwce'}
{'comment': 'The Dems would be in a very strong position now if Trump had won back in 2020. He would’ve been dealing with gridlock his entire second term, not to mention it would be a continuation of him surrounding himself with the “wrong” people (aka not loyalists) which would have severely handicapped his policy action. \n\nDems would’ve slaughtered the GOP across the board in the midterms, and then expanded their majorities and taken the white house this year. We would be looking at a Dem senate majority for 10+ years and an almost insurmountable lead in the House. Additionally, election denialism would never have happened.', 'created': '2024-11-16 23:01:35', 'submission_id': '1gsnwce'}
{'comment': 'He would have continued to crash the economy after Covid. We would have never even heard the term soft landing.', 'created': '2024-11-16 16:09:12', 'submission_id': '1gsnwce'}
{'comment': 'He wanted us dead in Minnesota.\n\n\nHe held back covid resources from Blue states specifically because he thought more people in cities would die.\xa0', 'created': '2024-11-16 16:44:06', 'submission_id': '1gsnwce'}
{'comment': 'Google George Bush’s era.. basically the 2000s, and see that literal hell adults at that time went thru. 2 Trump terms b2b is probably unsurvivable.. especially with the current Timid democrats, we’d be “Russia West” or something like that by midterms 😭😭', 'created': '2024-11-17 00:56:34', 'submission_id': '1gsnwce'}
{'comment': '2022 would make 2006 look like red wave.', 'created': '2024-11-17 05:39:41', 'submission_id': '1gsnwce'}
{'comment': 'The president has nothing to do with controlling inflation', 'created': '2024-11-16 16:25:27', 'submission_id': '1gsnwce'}
{'comment': ">No matter how awful Trump’s second term will be now, it would have been infinitely worse if it happened these past 4 years.\n\nI don't know about that. Trump could have just put it along in the White House, not really doing his job, like he did during the first 4 years. \n\nNow, Project 2025 is ready to go. The authoritarian shift in our government will likely happen fairly quickly.", 'created': '2024-11-16 15:59:12', 'submission_id': '1gsnwce'}
{'comment': "One thing that I don't think would have worked as well is maga crap wouldn't have got as bad if they didn't have Biden as a boogey man. But the whole economy would have crashed so bad by now.\nBut now rump will crash it as bad or worse again since it's still fragile and just starting to settle.", 'created': '2024-11-16 16:52:07', 'submission_id': '1gsnwce'}
{'comment': '👏👏👏👏', 'created': '2024-11-17 04:23:29', 'submission_id': '1gsnwce'}
{'comment': "I don't get what no advertisement... mentioned trukps bankruptcies...is this guy to be trusted with the economy?", 'created': '2024-11-17 06:41:44', 'submission_id': '1gsnwce'}
{'comment': 'Monkey Pox would have been a much bigger problem in the U.S. Trump would have downplayed it and millions of Americans would have caught it.', 'created': '2024-11-16 15:21:28', 'submission_id': '1gsnwce'}
{'comment': 'The Ukraine invasion would have just happened in 2025 or beyond, after Trump was gone. Assuming NATO still existed. Assuming a 2024 election were to happen in the first place…', 'created': '2024-11-16 18:29:24', 'submission_id': '1gsnwce'}
{'comment': 'This is real truth!!', 'created': '2024-11-16 20:13:52', 'submission_id': '1gsnwce'}
{'comment': 'Democrats are paying by the "old" rules of politics from 20 years ago, WAKE THE F UP ; Republicans have been radicalized, they hate government if it does not do what they want, they hate half of America because we have diffrent opinions, they hate gays, trans, and minorities, because deep down MAGA is a White Christian movement. Garland is old school and wanted to appear fair and just, well we all well see how "fair n Just" this new DOJ will be, Republicans sued Obama and won for recess appointments, well see how the courts and a Republican congress fold allowing Trump to simply pick his own cabinet at will. \n\nNo we have entered the end of the age of reason, and hyper partisan politics where Republicans have a unfair advantage in a senate which gives power to rural states with little population, the ultimate DEI. \n\nthe question is what are we going to do about it ? the question is what do our leaders do about it, everybody talks about Democrats lost the working mans vote, in period where inflation was the worst its been in 50 years we lost by 200K votes in 3 critical swing states, and we lost the popular vote by 2.9 million ; 4 battle ground states kept their senators despite overwhelming odds. What happens to all those voters and supports ? What do we tell them ? to fold ? to give up ? to give in ? to allow Trump to destroy the constitution ?\n\nNo we fight, we group, we plan and we wait for 2026, Trumps and MAGA policies are crazy, were going to be in a recession in next 2-4 years, we didn\'t fully recover from 2008, and now COVID on top of that, Trumps policies of easy money will inflate the economy until in bursts, Musk\'s cuts of federal assistance programs will piss off allot of people, and traffis will increase the costs of goods, the Tax cuts will reduce government intake, but 75% of all of our spending is in mandatory entitlements and military combined that with increase military, and immigration spending, and our deficits will remain the same but our priorities are the only thing to have changed. not too mention were at max unemployment and kicking out 20 million workers illegal or not will have a serious affect on the economy. the final topping on the cake deregulation, and Crypto entering our finical markets and what could go wrong ?', 'created': '2024-11-16 16:44:04', 'submission_id': '1gsnwce'}
{'comment': 'Because Biden was a Senator and respects the Democratic process.', 'created': '2024-11-16 16:07:52', 'submission_id': '1gsnwce'}
{'comment': "Wouldn't White House security staff escort him out if he refused to leave?", 'created': '2024-11-16 15:42:19', 'submission_id': '1gsnwce'}
{'comment': "The only way he leaves the White House (remember that he's fat and old) will be in a coffin. This is not a threat, it's just a statement of fact.", 'created': '2024-11-17 02:01:39', 'submission_id': '1gsnwce'}
{'comment': "He wouldn't have won the primary in 2016.", 'created': '2024-11-17 02:10:07', 'submission_id': '1gsnwce'}
{'comment': 'I don’t think he would have. Anymore than he’s going to want to leave after these 4 years.', 'created': '2024-11-16 15:45:18', 'submission_id': '1gsnwce'}
{'comment': 'Maybe he will be gone by midterms if his mental state gets worse.', 'created': '2024-11-16 18:33:02', 'submission_id': '1gsnwce'}
{'comment': 'He’s going to be Jimmy Carter', 'created': '2024-11-16 15:53:26', 'submission_id': '1gsnwce'}
{'comment': 'That would have been true if Kamala had won. Now that she hasn’t, Biden’s presidency will be seen as mostly a failure. Trump has succeeded in defining Biden - an old man so stuck in his ways that he seemed oblivious to the seriousness of the problems before him. He should have never sought re-election. He joins the list of boomers who refused to retire, and we all suffered as a result. \n\nDid Biden’s fed do a good job of stymying inflation and avoiding a recession? Absolutely. Agreed on that. But that won’t be the takeaway.', 'created': '2024-11-16 15:57:20', 'submission_id': '1gsnwce'}
{'comment': 'As Stephen Colbert said the [other night](https://youtu.be/eodtVCONCEc?t=547&si=XsuFu7I0YgLzPddy), "This is going to be a long four years"', 'created': '2024-11-16 18:38:37', 'submission_id': '1gsnwce'}
{'comment': 'Assuming Clinton would’ve won again in 2020.', 'created': '2024-11-16 17:59:09', 'submission_id': '1gsnwce'}
{'comment': "Exactly, there is no evidence to suggest this whatsoever once his 2nd term's completed except for wishful thinking.", 'created': '2024-11-16 16:56:55', 'submission_id': '1gsnwce'}
{'comment': 'Yeah. He would have created some kind of national emergency and then just canceled the general election for president by executive order. \n\nAnd of course the Supreme Court who gave him presidential immunity would have supported him in doing that. Just like from now on, every case involving executive power will be ruled in favor of Trump.', 'created': '2024-11-16 15:57:19', 'submission_id': '1gsnwce'}
{'comment': 'Yeah. I agree. I think it would have been incredibly dangerous to leave him in office for another 4 years. He would have solidified his power by now probably. \n\nOf course, him winning again means we may face that dictatorship with him anyway.', 'created': '2024-11-16 15:44:40', 'submission_id': '1gsnwce'}
{'comment': 'The economy is booming because of Biden’s policies.', 'created': '2024-11-16 15:51:07', 'submission_id': '1gsnwce'}
{'comment': 'We would/will. That’s part of the game, maintaining the illusion of democracy while for some reason any opponents just never seem to have enough votes. Russian style dictatorship with a thin veil of representative government.', 'created': '2024-11-16 16:09:28', 'submission_id': '1gsnwce'}
{'comment': 'On the flip side Biden gave Trump and his cronies 4 extra years to regroup. Trump never left the media, so that’s four extra years of constant misinformation, courting new voters, and purging the Republican party of “RINOs”. Trump was gifted the talking point about the economy. The Heritage Foundation had four years to draft their policy playbook and built a team of loyalists to help Trump implement it when he takes back office. Trump got better advisors and has learned who will push back on his ideas and who will say yes to everything.', 'created': '2024-11-16 23:15:25', 'submission_id': '1gsnwce'}
{'comment': "Time for the Trump landing. Inflation isn't beat just yet and tariffs will insure it's full recovery", 'created': '2024-11-16 16:16:18', 'submission_id': '1gsnwce'}
{'comment': "More Americans died under Trump's administration than have died under any other President's administration. \n\nIncluding Abraham Lincoln. You know, the President during the war, where Americans were killing Americans?\n\nGood Job Trump, #1 in bodycount! Both in dead people AND children!", 'created': '2024-11-16 18:49:14', 'submission_id': '1gsnwce'}
{'comment': 'He and his ghoul son-in-law stole flights full of PPE because he didn’t like “that woman in Michigan”', 'created': '2024-11-16 18:37:16', 'submission_id': '1gsnwce'}
{'comment': 'This is the same as California. Even looking further back, he withheld funding during the 2018 wildfires because he was hoping more Californians would die. And he’s threatened to do so again in his second term. This is a president who will actively be waging war against not only states, but his own citizens', 'created': '2024-11-17 08:42:18', 'submission_id': '1gsnwce'}
{'comment': 'Tell that to half of the American people (preferably go back in time a few weeks first if you figure out how to get through to them)', 'created': '2024-11-16 16:31:59', 'submission_id': '1gsnwce'}
{'comment': 'The executive’s role in creating and maintaining the conditions for economic prosperity have always been overstated.', 'created': '2024-11-16 17:11:55', 'submission_id': '1gsnwce'}
{'comment': 'He does if he enacts tarrifs.', 'created': '2024-11-16 18:06:01', 'submission_id': '1gsnwce'}
{'comment': 'Not true. Even if it was, the public sees it as the administration’s battle', 'created': '2024-11-16 16:37:08', 'submission_id': '1gsnwce'}
{'comment': 'This statement is naive at best.', 'created': '2024-11-16 18:37:59', 'submission_id': '1gsnwce'}
{'comment': 'Trump wants to stop an independent Federal Reserve, though.', 'created': '2024-11-16 18:41:03', 'submission_id': '1gsnwce'}
{'comment': 'Bruh lol', 'created': '2024-11-16 16:43:27', 'submission_id': '1gsnwce'}
{'comment': 'This statement is likely to be no longer valid moving forward.\n\nLook for Trump to have direct influence on setting interest rates.\n\nA large number of “trash millionaires” (under $10,000,000) are going to be shocked when they enter bankruptcy.\n\nI am also expecting confiscation of wealth for those not owning government approved assets (TSLA, Bitcoin).', 'created': '2024-11-16 22:59:48', 'submission_id': '1gsnwce'}
{'comment': 'This right here.', 'created': '2024-11-16 17:07:47', 'submission_id': '1gsnwce'}
{'comment': 'My hope is that the next 4 years are as max grift & incompetent as the cabinet nominations have been to "own the libs." That they fumble through the attempts of Project 2025 so badly that they can be easily fixed with a non-GOP presidency after Trump. \n\nThe hope I wish is, to borrow the words of a Ukrainian soldier over the early gains against the Russian invasion: *We\'re lucky that they\'re so fucking stupid.*', 'created': '2024-11-16 20:57:25', 'submission_id': '1gsnwce'}
{'comment': 'Plus we have all Jack Smith and investigations and shit that basically give him the green light to do the same', 'created': '2024-11-16 18:14:58', 'submission_id': '1gsnwce'}
{'comment': "And we would have a recession on top of the inflation. \n\nThis it's you have only works if the Biden administration had actually done nothing", 'created': '2024-11-16 21:06:06', 'submission_id': '1gsnwce'}
{'comment': "It'll be Biden's fault don't ya know", 'created': '2024-11-17 01:35:10', 'submission_id': '1gsnwce'}
{'comment': 'Doubt that. Monkey pox transmission by intimate contact is much different that respiratory spread like COVID\n\nHappy cake day.', 'created': '2024-11-16 16:17:14', 'submission_id': '1gsnwce'}
{'comment': 'I, for one, am for the same kind of smash and grab politics and purposeful propaganda editing they use constantly. Trump has shown you can be a fool as long as you say the right things sometimes. I think the fight now has to shift from the typical establishment Democrat bs to a true working class party. One that is hard fighting and has the grit and authenticity that the American people will respect. They want to keep calling us radical, let\'s show them what really progressive ideas are instead of playing this centrist patty cake against a party that has shown no good faith in the game. Simply, if they want to keep going low, we\'ve got to go just as low and create a movement that isn\'t afraid to call out their bs and tell them to stfu if needed.\n\nAll it takes is someone with some conviction to be like "these guys are insane, they want to dictate your life based on their beliefs..." really highlight that elitist authoritarian bent the GOP/MAGA has. Group them in with the system that has screwed us, as they are sort of the main culprit of that. Have no mercy and shine a light on all the GOP votes that flies in the face of their constituents rather than helps them.', 'created': '2024-11-16 21:16:09', 'submission_id': '1gsnwce'}
{'comment': 'You say all this forgetting they control it all. Elections as we knew them are a thing of the past.', 'created': '2024-11-16 17:47:52', 'submission_id': '1gsnwce'}
{'comment': 'We can “respect the Democratic process” until the cows come home but when you’re dealing with those who are doing everything they can to bring the process down it’s really not wise to go without a fight.', 'created': '2024-11-16 16:30:36', 'submission_id': '1gsnwce'}
{'comment': "I feel like not prosecuting is more of a slight to democratic process than just holding Garland to do his job. We all saw what happened... doesn't take a rocket scientist to levy indictment against him.", 'created': '2024-11-16 16:24:31', 'submission_id': '1gsnwce'}
{'comment': 'Letting fascists destroy democracy is NOT "respecting the democratic process."', 'created': '2024-11-16 18:27:24', 'submission_id': '1gsnwce'}
{'comment': 'It would be them vs his secret service agents.', 'created': '2024-11-16 16:21:10', 'submission_id': '1gsnwce'}
{'comment': 'I don’t know how that would go because it’s never been an issue before.', 'created': '2024-11-16 15:42:54', 'submission_id': '1gsnwce'}
{'comment': 'Agreed', 'created': '2024-11-16 16:02:29', 'submission_id': '1gsnwce'}
{'comment': 'One can only hope', 'created': '2024-11-16 18:37:45', 'submission_id': '1gsnwce'}
{'comment': 'An extremely under appreciated president.', 'created': '2024-11-16 15:56:19', 'submission_id': '1gsnwce'}
{'comment': 'That’s what I just said.', 'created': '2024-11-16 15:58:28', 'submission_id': '1gsnwce'}
{'comment': "Assuming Trump's smart enough to do that.", 'created': '2024-11-16 18:31:14', 'submission_id': '1gsnwce'}
{'comment': 'The fed chairman has refused to resign if Trump requests it.', 'created': '2024-11-16 16:19:35', 'submission_id': '1gsnwce'}
{'comment': 'Vlad has a window for him, elmo too.', 'created': '2024-11-16 17:42:50', 'submission_id': '1gsnwce'}
{'comment': 'Unfortunately, probably many more to come.', 'created': '2024-11-16 20:12:51', 'submission_id': '1gsnwce'}
{'comment': 'I wish we had made advertisements about this... again. People have fish memory', 'created': '2024-11-17 06:32:07', 'submission_id': '1gsnwce'}
{'comment': 'I do not think this is actually true - can you find a stat? I would love to share this information but from what I see this argument would be wrong as more people died under Wilson due to the Spanish Flu and more than the Civil War. Under trump’s administration only 400,000 individuals were reported to be dead due to Covid. 675,000 from Wilson. 620,000-750,000 for Lincoln.', 'created': '2024-11-17 19:33:56', 'submission_id': '1gsnwce'}
{'comment': 'President for all Americans indeed', 'created': '2024-11-17 01:32:18', 'submission_id': '1gsnwce'}
{'comment': 'I was thinking that a few weeks ago. Now I’m not so sure. Here’s why: if you use the examples, everyone else is using, Germany, 1933, Russia, 2000, both were democracies in deep trouble. Germany’s economy had been in the dumps since the end of WWI, when massive war reparations bankrupted the country. The ripple effect from the Great Depression didn’t help. Russia, when Putin was elected back in the early 2000’s, had suffered a decade of political and economic kleptocracy. The collapse of the Soviet Union decimated the economy, and the Russian mob moved in to grab as much as they could. People were ready for anyone promising change, and both Hitler and Putin did exactly that.\n\nThe economy here is still strong, and there are still guard rails protecting democracy, here scattered among the house, and definitely in the courts. There will be a pretty strong pushback to anything crazy Trump tries. If he wants to go full autocrat or dictator, he’ll have to completely destabilize the economy, and that will cause chaos. I suppose he could declare martial law at that point. I don’t know if that’s part of the plan, but it would cost billions to the people supporting him, and turn his fans against him.\n\nWe’ll certainly see what happens, but I don’t think democracy is dead in America just yet. If it goes down, it’s going to be a long, hard-fought, protracted death, and a lot of people will turn against Trump in the process.', 'created': '2024-11-17 09:49:31', 'submission_id': '1gsnwce'}
{'comment': "This is a situation where hope for the best, but plan for the worst is really important. Given the risk of all the other things that could happen.\n\nWe need to grow a grassroots movement of pro-democracy Americans reaching out to those who didn't vote for Harris. Not the MAGA true believers. But everybody else. People will need to start talking with their friends, family, co-workers, and neighbors.\n\nAn overtime, help wake them up to see who Trump is and what he is about. And how he and the Republicans have waged a propaganda war on the American voters. \n\nFor one day, we'll likely need everyone we can to engage in passive resistance revolt. Things like protests. And nationwide work stoppages.", 'created': '2024-11-16 21:11:02', 'submission_id': '1gsnwce'}
{'comment': 'I love this. SLAVA UKRAINI! 😊💙🇺🇦', 'created': '2024-11-17 04:25:01', 'submission_id': '1gsnwce'}
{'comment': "I have been saying that for a long long long time, Obama didn't have that warrior in him, but he showed some grit time to time, Fox news interview for example, but this they go low we go high is BS, and needs to stop were getting killed in it, We lost in 3 critical battle ground states by 200K, ok that sucks, pick ourselves up learn our lessons and move on. We need better candidates then the establishment offers, Clinton, Harris, Even Biden all central establishment candidates, Biden narrowly won, by like 100K votes same battle ground states in a Crisis of covid, now turn out was high and popular vote was good but ultimately doesn't matter , point is we should have done better. When Trump choose not to debate Harris she should have gone after him, have the debate back and forth, call him out call him a coward ect... \n\nTrump will be on the ticket in 2028, Lara Trump//Vance or whomever ; depending on the climate of the Global economy,", 'created': '2024-11-16 22:18:15', 'submission_id': '1gsnwce'}
{'comment': "Yeah, saving this isn't going to happen at the ballot box.", 'created': '2024-11-16 18:26:59', 'submission_id': '1gsnwce'}
{'comment': "The def hacked this one too. It's just too many factors not making sense here.", 'created': '2024-11-16 21:07:04', 'submission_id': '1gsnwce'}
{'comment': '', 'created': '2024-11-16 16:21:38', 'submission_id': '1gsnwce'}
{'comment': "Didn't those agents almost get him killed....", 'created': '2024-11-17 06:45:15', 'submission_id': '1gsnwce'}
{'comment': "At least theoretically, after the president's term ends on January 20th, if he refuses to leave wouldn't he technically be a trespasser? He wouldn't be the president anymore after January 20th.", 'created': '2024-11-16 15:43:48', 'submission_id': '1gsnwce'}
{'comment': 'That\'s Trump\'s run as president in a nutshell. Biden should\'ve pushed for serious limitations on the executive office in his first year. A set of bills that can be summed up as, "what if we elect another selfish moron again."', 'created': '2024-11-16 20:49:55', 'submission_id': '1gsnwce'}
{'comment': 'And just like Carter extremely unlucky with timing. And once again Trump gets lucky with timing on the economy and will take credit for it.', 'created': '2024-11-16 16:04:26', 'submission_id': '1gsnwce'}
{'comment': ' I believe Biden will only be mentioned in relation to Trump and whatever he did/didn’t do in relation to the man that sandwiched his presidency. Maybe one line about Covid recovery.', 'created': '2024-11-16 16:14:51', 'submission_id': '1gsnwce'}
{'comment': 'You said if Trump had been president that he would claim credit for the booming economy and we’d elect another republican.\n\nYou’re glossing over the fact that the economy would not be booming if Trump had been president for the last four years.', 'created': '2024-11-16 16:02:29', 'submission_id': '1gsnwce'}
{'comment': 'He’s just the guy in the chair. He doesn’t personally need to do anything but continue being incendiary and divisive.', 'created': '2024-11-16 18:34:19', 'submission_id': '1gsnwce'}
{'comment': "I was thinking more about after lockdown had finished, not right during the middle of it, which I can recall seeing numbers around 600,000... Searching shows me this one, which is way larger than what I had heard.. I'm not sure what to believe now https://usafacts.org/articles/million-covid-deaths-pandemic-race-age-geography/\n\nBut regardless, mass deaths of the pandemic could had been prevented, by acknowledging that there was something going on that Trump didn't understand. Instead of listening to and trusting the people who understood what was going on, he indirectly lead to the deaths of hundreds of thousands of people.", 'created': '2024-11-17 19:49:17', 'submission_id': '1gsnwce'}
{'comment': 'Definitely. We have to get those 14 million+ nonvoters back in order to finally end this nightmare. Courting Republicans was a disaster & the voting statistics show it. The good news is that we know how Trump works and how to avoid disasters this time around and, it seems, the Trump team are less coordinated and carrying less heavy hitters this time around.', 'created': '2024-11-16 23:03:34', 'submission_id': '1gsnwce'}
{'comment': "Democrats need to reach people regarding the economy, it's the only thing that gets people to vote. The people who stayed home don't care about democracy", 'created': '2024-11-17 01:34:28', 'submission_id': '1gsnwce'}
{'comment': 'I want someone that\'ll show up on Fox and not immediately be put on the defense. Someone that\'ll be like "listen dummies, your shit doesn\'t work" and not let them control the narrative. Decorum has gotten us nowhere. We can\'t be warriors in the garden anymore. These people don\'t care about being right they just care about winning and that\'s what we need to do. We have the facts and record on our side. Our ideas are fundamentally the interests of the people at large. It\'s time to make sure people know that, even if we have to flood every media avenue to do it. We are a powerful country that shouldn\'t be the way it is. We need to point the finger at the real problems instead of letting the gop force wedge issue after wedge issue on us.', 'created': '2024-11-16 23:31:43', 'submission_id': '1gsnwce'}
{'comment': "what doesn't make sense, what didn't make sense to me is Dems did so well in 2022 midterms and Inflation and Covid restrictions were in full swing, Turnout was high too, why didn't they punish the party in power in 2022 but then in 2024 ? that doesn't make sense at all, the only answer i have remotely is Trump wasn't on the ballot, he needed to be on the ballot for his voters to come out, otherwise nothing.", 'created': '2024-11-16 22:07:36', 'submission_id': '1gsnwce'}
{'comment': 'I worked at the polls. Some people in my area came and it said they already voted. Now they could of been lying but girl was very upset as she been in line forever.', 'created': '2024-11-17 06:43:25', 'submission_id': '1gsnwce'}
{'comment': 'I never know what to believe anymore, when it involves him.', 'created': '2024-11-17 13:51:06', 'submission_id': '1gsnwce'}
{'comment': 'Yes, that’s how the law and constitution would work. Term expires at 12pm on 1/20 no matter what. \n\nWhich is why the petty side of me, were I Biden in 2020, would have been to let him ride Air Force One down to Florida - but try to time it so he was in the air at 12pm. \n\nAFO would have immediately changed call signs, seeing how it would no longer be carrying the current president, and I would have directed the crew to broadcast the change over the PA…and then a ID broadcast every 10 minutes. \n\nBut this is another example of why I couldn’t be a politician. I’m too petty, and I’m too intelligent/mindful of my fellow humans to be MAGA.', 'created': '2024-11-16 16:33:06', 'submission_id': '1gsnwce'}
{'comment': 'Exactly.', 'created': '2024-11-16 16:47:53', 'submission_id': '1gsnwce'}
{'comment': 'Fair enough.', 'created': '2024-11-16 16:04:17', 'submission_id': '1gsnwce'}
{'comment': 'For sure — I am in agreement about the data being difficult to come by and that his administration inability/incompetence to lead caused an incredibly high amount of preventable deaths.', 'created': '2024-11-17 19:51:58', 'submission_id': '1gsnwce'}
{'comment': ">it's the only thing that gets people to vote.\n\nAt this stage, it's not about an election. \n\nWe have to combat the propaganda machine by getting people to recognize that they have been victims of it. By getting them to recognize Trump and Republicans for what they are. And what they are doing.\n\nIf that means pointing out over time what's happening with the economy. That's fine. But it could/should also mean calling attention to many other things. \n\nBecause most of these people who voted for Trump, who were not MAGA cult, and the people who stayed home, are people that generally aren't super engaged with politics and what's going on with their government until election time comes around. \n\nSo if we can just get them to notice things. We maybe can break the veil.\n\nThen, when it gets close to election time, we can worry about what's the best messaging to get them to vote Democrat.\n\nBut at this point, it's not really about what the Democrats could do for them.", 'created': '2024-11-17 02:28:06', 'submission_id': '1gsnwce'}
{'comment': 'couldn\'t agree more she didn\'t own that interview like she should have, but Trump literally walks off camera when confronted with tough questions and interviews and he got elected. MAGA has been winning the propaganda war and image war, and we need to take that on, i cant believe we live in a country where being called "woke" is worse then being called a fascists or a Nazi but that\'s where we are', 'created': '2024-11-17 00:39:44', 'submission_id': '1gsnwce'}
{'comment': "That's part of it but i legitimately think there was hacking by Musk to get Trump the win as well. How did we have record turnout but the total number of votes is less than last time when people were under those restrictions? I feel like Trump has gone even more blatantly psychotic and even a cursory glance with any sort of critical thinking would show Trump is a disaster", 'created': '2024-11-16 22:15:26', 'submission_id': '1gsnwce'}
{'comment': 'You make a fair point', 'created': '2024-11-17 19:02:13', 'submission_id': '1gsnwce'}
{'comment': 'I doubt Trump has the mental capacity to know what SAM 29000 or SAM 28000 means.', 'created': '2024-11-16 20:52:11', 'submission_id': '1gsnwce'}
{'comment': 'What the fuck. I fucking learned that only 150,000 soldiers died in the civil war. over 600k??? I... guess my textbooks had several footnotes on what they considered a causality in the war... I STG my school book said 150k.', 'created': '2024-11-17 19:57:29', 'submission_id': '1gsnwce'}
{'comment': "I agree with the sentiment I'm just so cynical at this point. I do not believe Trump's base can be deprogrammed at all, least of all by Democrats. At present I don't think there is a practical difference (read: who shows up to vote) between his cult and what we all consider to be *reasonable* Republicans. \n\nCombine those factors with the electoral college being so far in the Republicans favor and the left most 10% of the country thinking establishment dems and Maga Republicans are equally evil. I have very little hope for the future of the Democratic party.\n\nI hope I'm proven wrong. I will continue to show up and vote and not shy away from political discussions with people who can have a civil discussion regardless of views, but I'm at a loss right now.", 'created': '2024-11-17 02:43:18', 'submission_id': '1gsnwce'}
{'comment': "We should of fought them on saying things like you except a guy who bankrupted 5 companies to fix the economy \n\nWe should of had video collection of him saying hateful things to blacks, Hispanics and woman \n\nWe needed to prove he was a liar \n\nHow about a video on how trump was eipstiens best friend and you trust him to help your children?\n\nWe should of brought back his many died after you're spending the public task force. \n\nHow about the videos about we should drink bleach \n\nTrump said it was a fake virus too\n\nCould of fought dirty and mention how his wife isn't even American so how is he to be trusted with American beliefs. Maybe too far but they should of broke his picture down better \n\nPeople are stupid so we need to remind them why he's a con man", 'created': '2024-11-17 06:36:00', 'submission_id': '1gsnwce'}
{'comment': "Not sure if it's true but natives in reservations saying it doesn't add up for them", 'created': '2024-11-17 06:44:29', 'submission_id': '1gsnwce'}
{'comment': 'That’s crazy - what year? I learned that it was approx 600,000 and finished HS in 2000s', 'created': '2024-11-17 22:20:02', 'submission_id': '1gsnwce'}
{'comment': '>I do not believe Trump\'s base can be deprogrammed at all, least of all by Democrats.\n\nRight. I agree. \n\nBut there are tens of millions of other voters, and ten of millions of other people who didn\'t vote, whom we can pull into the pro-democracy cause. \n\n>Combine those factors with the electoral college being so far in the Republicans favor\n\nYeah. I would completely stop thinking about elections now. The most important priority is to stop the propaganda machine from radicalizing more people. Because if we don\'t stop that, elections aren\'t going to help.\n\n>and the left most 10% of the country thinking establishment dems and Maga Republicans are equally evil.\n\nI don\'t know that\'s necessarily true. \n\nBut it is true that the non-MAGA cult people who voted for Trump, and a lot of people who sat out the elections, don\'t like either party. \n\nWhich is another reason to stop thinking elections. Don\'t talk about what Democrats are going to do. Go to people as a pro-democracy American.\n\nOur goal is to get people to start to pierce the cloud of misinformation to see Trump for what he really is, to get them to recognize that they have been the victim of a propaganda war.\n\nAnd all you have to do is talk with them occasionally about "hey did you see this in the news about what Trump did." Start getting them to pay attention more. A lot of those people don\'t pay much attention to politics until it\'s election time. \n\n>I have very little hope for the future of the Democratic party.\n\nIf the Democratic Party as we know it doesn\'t survive this, it\'ll be okay. As long as America survives it by reclaiming democracy.\n\n>not shy away from political discussions with people who can have a civil discussion regardless of views,\n\nI wouldn\'t necessarily try to have political discussions. There\'s no need to debate politics. Rather just make people aware of what\'s going on as it happens. Because the people we need to reach are those who we may just need to get to pay attention.', 'created': '2024-11-17 04:00:26', 'submission_id': '1gsnwce'}
{'comment': 'Little bit later than that... but the text books we had were from the early 90s if not older.', 'created': '2024-11-17 22:26:16', 'submission_id': '1gsnwce'}
{'comment': 'We need to remind people how their one voice matters. Show some stories about that lady in Georgia who changed it for biden', 'created': '2024-11-17 06:40:06', 'submission_id': '1gsnwce'}
{'comment': 'You got to get them to be able to see through that cloud of misinformation first. And that means showing them the emperor has no clothes.', 'created': '2024-11-17 07:18:42', 'submission_id': '1gsnwce'}
{'comment': 'https://preview.redd.it/rmqf682gsa1e1.png?width=1080&format=pjpg&auto=webp&s=7b1e7b37f9c074267b313311b9e5492b95563fa4', 'created': '2024-11-16 18:22:55', 'submission_id': '1gsnoxp'}
{'comment': 'Democrats struggle to win because every time they point out the Republicans are hateful, bigoted, ignorant, incompetent dimwits it just makes the Republicans more popular.', 'created': '2024-11-16 16:21:42', 'submission_id': '1gsnoxp'}
{'comment': "I hope the 22% who explicity asked for this and the 50+% who bed rotted instead of trying to stop it get f'ed the hardest and learn their mistake", 'created': '2024-11-16 15:22:25', 'submission_id': '1gsnoxp'}
{'comment': 'It’s not ironic. Trump campaigned on hate. He knew enough Americans are sexist and/or racist and played on their emotions.', 'created': '2024-11-16 15:09:25', 'submission_id': '1gsnoxp'}
{'comment': "Now we all know you can't hurt them by showing them their hypocrisy. It fuels them. They are like deplorability vampires. They suck up all their own vices and it makes them more and more callous and evil.", 'created': '2024-11-16 16:06:46', 'submission_id': '1gsnoxp'}
{'comment': 'Updated 😅\n\nhttps://preview.redd.it/q4at3vc3gd1e1.png?width=1080&format=pjpg&auto=webp&s=bdb0253805fa5dc83265939d8cb551d7c4b2c303', 'created': '2024-11-17 03:19:01', 'submission_id': '1gsnoxp'}
{'comment': 'Wish I had gone ultra maga in disguise and licked his orange star so I get into a position of power to help stave off this disaster \n\n…the long game', 'created': '2024-11-16 17:13:22', 'submission_id': '1gsnoxp'}
{'comment': 'Well, the only hope Donny here actually gives me is the fact that literally anyone in our population can be a leader now, no matter your past crimes or "sins". My worst is certainly far from there\'s, I know I am setting the bar low, but I can\'t believe I ever doubted myself thanks to these people he is picking. It\'s encouraging.😆', 'created': '2024-11-16 17:17:07', 'submission_id': '1gsnoxp'}
{'comment': '**DEI** = **D**onald **E**mploys **I**ncompetents', 'created': '2024-11-17 01:07:41', 'submission_id': '1gsnoxp'}
{'comment': 'He only hires the best people, yet 40 of the 44 cabinet members from his prior administration did not support him for president\n\nNow he’s giving positions to unqualified people.\n\nIf you voted for Trump, enjoy the shit show ‼️🤣👀🇺🇸', 'created': '2024-11-17 10:09:18', 'submission_id': '1gsnoxp'}
{'comment': 'Hey I want to give a crucial Cabinet position to that one guy, you know, the one I saw on the tee-vee.', 'created': '2024-11-16 18:02:03', 'submission_id': '1gsnoxp'}
{'comment': 'Donny and the Deplorable, Deportable, Dipshits', 'created': '2024-11-16 18:15:54', 'submission_id': '1gsnoxp'}
{'comment': 'To be fair, licking Trump ass its a merit on its own, I wouldnt want the job if thats the requirement.', 'created': '2024-11-16 17:35:39', 'submission_id': '1gsnoxp'}
{'comment': 'Irony does not exist in the GoP.', 'created': '2024-11-16 16:25:26', 'submission_id': '1gsnoxp'}
{'comment': '', 'created': '2024-11-16 19:37:49', 'submission_id': '1gsnoxp'}
{'comment': 'Oh we’re going to watch poverty, crime and illness and debt skyrocket. For the wealthy and solidly middle class will be okay. Everyone else is in trouble.', 'created': '2024-11-17 01:11:51', 'submission_id': '1gsnoxp'}
{'comment': 'Surprise, they’re all white too.', 'created': '2024-11-16 17:17:45', 'submission_id': '1gsnoxp'}
{'comment': "And what the fuck else did people think he was gonna do. Make America great again? No, his 2nd term is a courtesy flush on this turd that he started pinching in 2016. You asked for it America, better grab the Glade because this one's gonna stink.", 'created': '2024-11-17 16:16:56', 'submission_id': '1gsnoxp'}
{'comment': 'The irony is the constant finger pointing while pretending that political appointees ie incompetent assholes have not been a thing since the creation of our country.', 'created': '2024-11-16 16:48:27', 'submission_id': '1gsnoxp'}
{'comment': 'Meanwhile, workers with disabilities or who are from more diverse groups this is intended for, often give double what the standard worker gives, just to not be judged unfairly for how they look, who they are, or to not seem like they dont work as hard because they have a disability. #FT', 'created': '2024-11-18 02:28:44', 'submission_id': '1gsnoxp'}
{'comment': 'DEI hires? Cringe and soy.\nNepo hires? Based and redpilled.', 'created': '2024-11-18 07:30:56', 'submission_id': '1gsnoxp'}
{'comment': "In Donald trumps defense hiring people who *don't* like him is a recipe for disaster and the ven diagram of people who like him and people who are intelligent qualified experts is two circles on opposite sides of the planet from each other", 'created': '2024-11-16 21:40:59', 'submission_id': '1gsnoxp'}
{'comment': "Didn't Biden put on a MAGA hat at one point? Maybe Trump will be dumb enough to add him to his cabinet! XD", 'created': '2024-11-17 06:24:03', 'submission_id': '1gsnoxp'}
{'comment': 'Bottom right looks like Vladimir Putin in a Tulsi Gabbard wig.', 'created': '2024-11-16 19:04:16', 'submission_id': '1gsnoxp'}
{'comment': "Ah, yes, the Monday morning quarterbacks with more of the *exact* same talking points from this time in November 2016 about how it's *always* the DNC's fault that Trump's base worships him like the qult leader he is.", 'created': '2024-11-16 20:43:21', 'submission_id': '1gsnoxp'}
{'comment': 'Democrats struggle to win because they do not deliver a message of white power. Point blank period.', 'created': '2024-11-17 11:52:00', 'submission_id': '1gsnoxp'}
{'comment': 'Rural folk are going to be DESTROYED by tariffs on imported machinery, fertilizer and animal medicines.', 'created': '2024-11-16 17:36:35', 'submission_id': '1gsnoxp'}
{'comment': '>and the 50+% who bed rotted instead of trying to stop it get f\'ed the hardest and learn their mistake\n\nThey absolutely will get fucked the hardest when they realize just how fucking *cheap* eggs have been compared to how much they\'re gonna cost once his "abolish federal income taxes in lieu of tariffs" concept of an "economic plan" kicks in.\n\nBut they ***abso-fucking-lutely will not learn*** anything from it.', 'created': '2024-11-16 20:32:10', 'submission_id': '1gsnoxp'}
{'comment': 'It’s hard for me to hope for those people to get fucked, when they are some of the most vulnerable and struggling ones already.', 'created': '2024-11-18 14:17:46', 'submission_id': '1gsnoxp'}
{'comment': 'And just let the world burn because the people you hate might burn first?', 'created': '2024-11-16 16:07:11', 'submission_id': '1gsnoxp'}
{'comment': 'Republicans. Not just Trump, the whole party went with pie in the sky garbage and then called everything that talked sense fake news. And 75m people bought it.', 'created': '2024-11-16 16:30:54', 'submission_id': '1gsnoxp'}
{'comment': 'Agreed. Their argument is basically, “no…you!”', 'created': '2024-11-16 16:25:40', 'submission_id': '1gsnoxp'}
{'comment': 'Gaetz totally looks like either Beavis or Butthead. Not sure which is which 🤔', 'created': '2024-11-17 19:18:07', 'submission_id': '1gsnoxp'}
{'comment': 'Except Vivek, and honestly there’s nothing wrong with having an all-white cabinet if you pick good people', 'created': '2024-11-16 18:57:25', 'submission_id': '1gsnoxp'}
{'comment': 'Rubio is latino I think.', 'created': '2024-11-17 19:23:21', 'submission_id': '1gsnoxp'}
{'comment': 'Nothing like this not even his first term. At least he picked a few competent people back then now he just wants ass kissers.', 'created': '2024-11-16 19:31:44', 'submission_id': '1gsnoxp'}
{'comment': "That's exactly what it is 👍🏾", 'created': '2024-11-16 19:29:23', 'submission_id': '1gsnoxp'}
{'comment': "I'm a Bill Maher fan, but he aggravates me with his blame the Left schtick.", 'created': '2024-11-16 22:18:44', 'submission_id': '1gsnoxp'}
{'comment': "That comment doesn't even blame democrats lol", 'created': '2024-11-17 18:45:53', 'submission_id': '1gsnoxp'}
{'comment': 'Maybe if we had taken those QBs seriously in 2016, we wouldn’t have lost in 2024. Trump’s rose to power on the tide of a cultural shift we helped create. Until we recognize that, I fear we will keep losing ground.', 'created': '2024-11-18 14:25:20', 'submission_id': '1gsnoxp'}
{'comment': 'Yup and the retaliatory tsrrifs on their crops for export', 'created': '2024-11-16 17:44:06', 'submission_id': '1gsnoxp'}
{'comment': 'Not to mention the cuts to social security and vet health benefits.', 'created': '2024-11-16 20:30:41', 'submission_id': '1gsnoxp'}
{'comment': "> and animal medicines.\n\nAgain, after all their livestock care stores had to keep the Ivermectin locked up and prices jacked up to deter the morons who thought Bro Rogaine's endorsement meant absolutely sweet fuck-all than it actually is worth.", 'created': '2024-11-16 20:32:06', 'submission_id': '1gsnoxp'}
{'comment': '>But they abso-fucking-lutely will not learn anything from it.\n\nI’m starting to think that’s true for all of us. We didn’t learn anything from the 2016 election and while I did hear some refreshingly honest self-reflection after this election, I feel like it will be back to status quo as soon as Trump gets back in office.', 'created': '2024-11-18 14:20:54', 'submission_id': '1gsnoxp'}
{'comment': "Not at all, but they lit the fire. If you have ideas on how to put it out tight now, i'm all ears", 'created': '2024-11-16 16:33:41', 'submission_id': '1gsnoxp'}
{'comment': 'Sad but true.', 'created': '2024-11-16 16:32:54', 'submission_id': '1gsnoxp'}
{'comment': 'Isn’t Gabbard Samoan? She’s awful, regardless of ethnicity, but I don’t know that she’s white.', 'created': '2024-11-16 19:07:18', 'submission_id': '1gsnoxp'}
{'comment': 'Who, Eric Bolton? 🤣. Not all appointees are incompetent but all presidents have incompetent appointees.', 'created': '2024-11-16 19:34:42', 'submission_id': '1gsnoxp'}
{'comment': 'I forgot to add Elise Stefanek 🙄', 'created': '2024-11-16 19:30:27', 'submission_id': '1gsnoxp'}
{'comment': "We'll just bail them out by printing more money. Which is just a roundabout way of raising taxes.", 'created': '2024-11-16 19:43:18', 'submission_id': '1gsnoxp'}
{'comment': 'Oof! I hadn’t thought of that.', 'created': '2024-11-17 02:23:45', 'submission_id': '1gsnoxp'}
{'comment': "I'm looking at the history books and [what flags they fly.](https://upload.wikimedia.org/wikipedia/commons/0/08/Charlottesville_'Unite_the_Right'_Rally_%2835780274914%29_crop.jpg)", 'created': '2024-11-16 16:35:26', 'submission_id': '1gsnoxp'}
{'comment': 'Happy cake day!! 🎂', 'created': '2024-11-16 16:34:41', 'submission_id': '1gsnoxp'}
{'comment': 'A Canadian alternative rock singer-songwriter. What does he have to do with this?', 'created': '2024-11-16 19:42:15', 'submission_id': '1gsnoxp'}
{'comment': 'Accurate', 'created': '2024-11-16 16:36:53', 'submission_id': '1gsnoxp'}
{'comment': 'If that’s your idea, what are you waiting for, Tex. Go get them! It’s not going to get any more legal or less dangerous, seize the day!\n\nOr was it just bluster?', 'created': '2024-11-16 19:18:17', 'submission_id': '1gsnoxp'}
{'comment': 'Nothing happy here!', 'created': '2024-11-16 16:42:57', 'submission_id': '1gsnoxp'}
{'comment': 'Hahahahahahhahahahaha man, he’s picked so many shitty people I just brain farted that one. John Bolton is who I meant. And no, none of his first picks were very good either remember? He fired most of them haha', 'created': '2024-11-16 19:44:08', 'submission_id': '1gsnoxp'}
{'comment': '>Or was it just bluster?\n\nOh, oh, I know the answer to that one! They\'ve been getting all hot-n-bothered these last 9 days over their family calling them "assholes" and dis-inviting them to Thanksgiving...again.', 'created': '2024-11-16 20:41:39', 'submission_id': '1gsnoxp'}
{'comment': 'I do not live in the USA.\n\nAnd before you get upset about me weighing in on things from here, the USA is ***MASSIVELY*** influential the world over. So what you lot do about your fascism problem effects me.\n\nBasically: Fix your shit before you get us all killed.', 'created': '2024-11-16 20:44:08', 'submission_id': '1gsnoxp'}
{'comment': 'I’m sorry, I know…', 'created': '2024-11-18 19:41:35', 'submission_id': '1gsnoxp'}
{'comment': 'At least they weren’t crazy weird. And by the way, he fired him because they weren’t ass kissers.\n\nThe other ones quit because they couldn’t put up with his bullshit', 'created': '2024-11-16 19:45:01', 'submission_id': '1gsnoxp'}
{'comment': "A decent amount of us are trying to. Unfortunately, the majority of our voting base doesn't give a singular fuck if the rest of the world burns so long as it makes them feel better about themselves. Tragic is human nature...", 'created': '2024-11-17 06:13:39', 'submission_id': '1gsnoxp'}
{'comment': 'A lot of people need to touch the hot stove because warning them that it’s hot isn’t enough for them. \n\nI’m a first grade teacher and it seems that every year I have a student who runs in front of the swingsets during recess and nearly gets kicked into next week by the swing users. I generally teach the child strategies to avoid getting hit, we practice the strategies, we discuss the strategies but sometimes a kid needs to be punted out into the soccer field to learn. And learn he does. \n\nThese guys are gonna learn too.', 'created': '2024-11-16 14:38:24', 'submission_id': '1gsmwdz'}
{'comment': 'World leaders are going to laugh at him again … sorry guys. I’d honestly love it if he swaggers into the UN and someone slams a pie in his face.', 'created': '2024-11-16 14:13:37', 'submission_id': '1gsmwdz'}
{'comment': 'They can go fuck themselves, we have to live with this now', 'created': '2024-11-16 14:44:24', 'submission_id': '1gsmwdz'}
{'comment': "Nope.\n\nIt doesn't work that way.\n\nKeep the recipets and call them out, hey this is what you voted for and clearly wanted.", 'created': '2024-11-16 14:25:27', 'submission_id': '1gsmwdz'}
{'comment': 'If you’re too dumb to understand how voting works, you really shouldn’t be voting.', 'created': '2024-11-16 14:51:40', 'submission_id': '1gsmwdz'}
{'comment': 'I hate these titles. As much as I truly want to believe this in my heart.. Where are all these people who regretted their vote? I haven’t heard any yet. All my fucking crazy family members who voted for him don’t even know what is happening now, they don’t even pay attention. When I tell them about the bill put forth last week about the social security revisions, I hear crickets, when I tell them what Dump said about ELIMINATING the department of Education a few days ago, I get crickets. THESE MOTHER FUCKERS DON’T WANT TO HEAR IT. They all think we are liars just trying to not like their golden god. This is the end of American democracy. No child left behind got us here, another fucking republican trying to dumb us down now by pushing us all along. Why not just get rid of education all together? \n\nWhy aren’t these people caring about their children and education?', 'created': '2024-11-16 14:34:14', 'submission_id': '1gsmwdz'}
{'comment': "There's no do over and we all suffer thanks to them. I'm so angry.", 'created': '2024-11-16 14:29:33', 'submission_id': '1gsmwdz'}
{'comment': 'Considering “how do I change my vote?” Was trending on google, I’d say there are many ppl that regret voting for him. But it’s too late now. They failed the open book test. I hope they get everything they voted for.', 'created': '2024-11-16 14:11:00', 'submission_id': '1gsmwdz'}
{'comment': "We Americans witnessed four years of PresidentTrump wherein he delivered verifiable, documented lies in the tens of thousands. If his party had any integrity whatsoever they would have impeached him for the sake of the country.\n\nHe's losing it, fast. And he's ALWAYS been a delusional capricious vindictive little sadist so with his advancing dementia, it's going to be a bigger shit show this time.\n\n \n\nNickelodeon's kids' vote resulted in a Kamala Harris win. They're younger and wiser than their parents.\n\n We Americans are a fucking laughingstock, and deservedly so.", 'created': '2024-11-16 14:36:41', 'submission_id': '1gsmwdz'}
{'comment': 'I want them all to feel the pain. I have a conservative family member (in-law) who is an immigrant from Argentina. She came here legally 30 years ago, votes, but because she is a housewife and never worked outside the home, she never assimilated. She speaks mostly Spanish and watches only Spanish language TV from Argentina. \n\nShe is the epitome of a low information voter and now she is panicked about losing naturalization and being deported.', 'created': '2024-11-16 15:03:23', 'submission_id': '1gsmwdz'}
{'comment': 'America proving to the world that slipping in education for decades has consequences', 'created': '2024-11-16 15:28:50', 'submission_id': '1gsmwdz'}
{'comment': 'I hear these stories but have trouble believing they are true. I feel like the regret will show when actual changes affect them. I doubt people are having these clarity moments just after the election.', 'created': '2024-11-16 14:51:25', 'submission_id': '1gsmwdz'}
{'comment': 'Obama once famously said, "Elections have consequences."', 'created': '2024-11-16 15:07:40', 'submission_id': '1gsmwdz'}
{'comment': 'No sympathy. We told them. They still followed their inner selfish racist fascist misogynistic transphobic hearts and voted for him over an extremely qualified POC female candidate. \n\nOkay then. Live with choice...unfortunately we all are affected.', 'created': '2024-11-16 15:32:18', 'submission_id': '1gsmwdz'}
{'comment': 'My fishing buddy, diehard redhat, says "No way that pedophile Gaetz gets confirmed!"\n\nI asked, what do you think about Hershel Walker being in charge of missile defense?"\n\n"I never heard about Herschel Walker getting a job. Why tf would he give that dumbass a job?"\n\nI shit you not.', 'created': '2024-11-16 16:11:41', 'submission_id': '1gsmwdz'}
{'comment': 'Yes well, this is the find out part of FAFO', 'created': '2024-11-16 14:17:30', 'submission_id': '1gsmwdz'}
{'comment': 'Republican voters all share one trait: a complete lack of empathy for others. They will never regret their vote until it directly affects them.', 'created': '2024-11-16 15:03:07', 'submission_id': '1gsmwdz'}
{'comment': "Please don't post his picture", 'created': '2024-11-16 16:05:45', 'submission_id': '1gsmwdz'}
{'comment': 'Yeah, probably becausw ads are no longer being played and the propaganda machine has wound down to passive mode. 90% of them will be all riled up to vote for him by 2028 again. And maybe the democrat will win by the slimest of margin. Assuming we still have real elections by then.', 'created': '2024-11-16 16:29:13', 'submission_id': '1gsmwdz'}
{'comment': 'This is what happens when you ignore the warnings clearly written on the box. Except here, there’s no take backs.', 'created': '2024-11-16 14:23:24', 'submission_id': '1gsmwdz'}
{'comment': 'I don’t think folks do. I wish they did, but they’re going to ride this shit show out, while blaming people who aren’t in office.', 'created': '2024-11-16 14:48:14', 'submission_id': '1gsmwdz'}
{'comment': 'Fuck them all. It’s called research. Are we in modern day? Because I’m pretty sure the internet is at their fingertips. No fucking excuses.', 'created': '2024-11-16 15:14:57', 'submission_id': '1gsmwdz'}
{'comment': "We live in the time of trolls. I'm sure some voters 18-25 voted for him as a joke, and now that joke has become your president.", 'created': '2024-11-16 16:01:52', 'submission_id': '1gsmwdz'}
{'comment': 'I have many Trump loving coworkers. They just see him as a blowtorch they get to take to a government they don\'t like and don\'t actually know anything about government. I typically avoid political debates. I\'ll let them rant or try to change the subject when it comes up.\n\nHowever, a younger coworker (he\'s 19, I\'m 39) was talking about how much he and his family like Trump. His reasons were superficial and covered all the cliches (he tells it like it is, he\'s a businessman, ect.) but then he asked who I\'m voting for. We get along and I know he\'s a respectful guy so I told him. He asked why. I said "I don\'t want to bore you with details about tax policy and healthcare. For example, if you\'re going to cut taxes, would you do it for people like you and me or would you give millionaires enough money to buy a brand new Mercedes every year? Because Trump did that". He looked at me like I had two heads and was visibly questioning his prior beliefs.\n\nA lot of these people are like casual sports fans. They\'ll catch a game here and there. They know a few players\' names. Come September they might check if their team is making the playoffs but of course they always root for the Phillies just like their family and friends do.', 'created': '2024-11-16 17:00:20', 'submission_id': '1gsmwdz'}
{'comment': 'That’s because voting has become a meme now, they realizing voting on one issue is dumb, however there’s still millions more who vote base on hate and won’t ever admit they made a mistake while they being evicted from their homes.', 'created': '2024-11-16 14:42:09', 'submission_id': '1gsmwdz'}
{'comment': '‘If you hate him now, wait til he takes office’', 'created': '2024-11-16 16:08:55', 'submission_id': '1gsmwdz'}
{'comment': "Well, some people you just can't reach. So you get what we had here last week. Which is the way they wanted it, well we all get it. The absolute failure of common sense to elect this orange nightmare again, after Charlottesville, after Helsinki, a million dead Americans during COVID-19 followed by a coup, stolen classified documents, failure to adhere to adhere to Democratic norms and 34 indictments. We are fixing to go through some things folks.", 'created': '2024-11-16 19:09:15', 'submission_id': '1gsmwdz'}
{'comment': 'Nobody regret it yet. Don’t buy into the articles that are just psi op-ing us again. \n\nThe real regret is going to come when actually human lives are at stake. And it will only be from the LAMF crowd. \n\nThe poor/ignorant whites that voted for Trump? They’ll be in his pocket until something horrible happens to them. And by horrible, I mean en masse; empathy is out the door, so nobody gives a shit in their literal neighbor suffers.', 'created': '2024-11-16 18:10:09', 'submission_id': '1gsmwdz'}
{'comment': "These stories are so funny. None of it matters, your coworker can bitch and moan for four years and claim he regrets voting for Trump but I'd bet everything I own he'd vote for him again in 2028 if it were possible. We've learned nothing lmao", 'created': '2024-11-16 16:39:25', 'submission_id': '1gsmwdz'}
{'comment': 'It took some of his policy’s to affect me or my family before I woke up from the cult. \n\nI was an essential worker in 2020 at a state controlled liquor store here in Pennsylvania. This was nightmarish because of how many trumpers would refuse masks, threaten us, or one outright tried to push past us when we tried to limit how many were in the store, or snuck in. We wouldn’t serve anyone without a mask, (since I was a state employee, I had to follow any rules the state puts forth.)and we had to call the cops a few times because of anti maskers, trumpers, or just rich fucks that thought they came first above anyone else. All of this put my sister who’s immunocompromised at high risk and since I had to work, these guys were risking my sisters life. Final straw was J6.', 'created': '2024-11-17 01:59:58', 'submission_id': '1gsmwdz'}
{'comment': 'Let them feel bad and remind them they chose him.', 'created': '2024-11-16 14:39:29', 'submission_id': '1gsmwdz'}
{'comment': 'Oh hell no! No regrets are allowed by Trumpets. They are going to have to suffer right along with the rest of us.', 'created': '2024-11-16 15:38:25', 'submission_id': '1gsmwdz'}
{'comment': 'Oh poor babies. Let me get out my tiny violin.', 'created': '2024-11-16 15:49:17', 'submission_id': '1gsmwdz'}
{'comment': 'I regret them voting for him as well.', 'created': '2024-11-16 17:37:37', 'submission_id': '1gsmwdz'}
{'comment': 'I wonder if those 15 million democrats who stayed home on Election Day are having any regrets.', 'created': '2024-11-16 23:37:50', 'submission_id': '1gsmwdz'}
{'comment': "I don't believe anything anymore. They won everything!", 'created': '2024-11-16 15:25:50', 'submission_id': '1gsmwdz'}
{'comment': 'These Trump people, his cult, their blamethrowers. Their lives were not what they had hoped. They blame it on anyone who has something they don’t. A happy family, a decent job, maybe a handout that helps them excel.', 'created': '2024-11-16 15:26:43', 'submission_id': '1gsmwdz'}
{'comment': "If they don't yet, they will. They will when he moves all the government agencies out of D.C. to cull the workforce before simply firing those who don't self select -- good luck getting that passport renewed or your Medicare reimbursement. They will when he executes on his 20M person immigration program that causes protests and your next roof repair to be an extra $10k. They will when he blindly imposes tariff after tariff that causes needless inflation and tariff retaliation that paired with the immigration round up has the potential to cause a global economic crises. They will if Republicans actually eliminate the ACA and 60M people lose their healthcare overnight, and those who get it through their employer experience extreme price hikes to their plans.\n\n \nThe felon Trump has no good plans for any of us, and his stated goal is to tear the country apart and rebuild it in his image. His vile, disgusting image.", 'created': '2024-11-16 18:22:05', 'submission_id': '1gsmwdz'}
{'comment': 'My issue is simply fine you didn’t like the last four years of Biden. Ok. Cool. But we had four years of Nostradumbass already and that was definitely not better. \n\nThe actual change would have been Harris.', 'created': '2024-11-16 18:57:11', 'submission_id': '1gsmwdz'}
{'comment': 'Please write to these 3 senators:\n\nSusan Collins:\n\nhttps://www.collins.senate.gov/contact/email-senator-collins\n\nLisa Murkowski:\n\nhttps://www.murkowski.senate.gov/contact/email\n\n and\n\nJoe Manchin: \n\nhttps://www.manchin.senate.gov/contact-joe/email-joe\n\n!!! These 3 are critical for this to get through!!!\n\nAlso write to your local senators:\n\nhttps://www.senate.gov/senators/senators-contact.htm\n\n\nHere is a template you can use:\n\nConfirm 47 Federal Judges Now\n\nDear Senator: \nPlease prioritize the immediate confirmation of 47 Federal Judges. Protect our democracy against Trump’s threats—this is your legacy. Put aside party lines and act now for our families and nation. Thank you.', 'created': '2024-11-16 21:27:57', 'submission_id': '1gsmwdz'}
{'comment': '“If you can convince the lowest white man he’s better than the best colored man, he won’t notice you’re picking his pocket. Hell, give him somebody to look down on, and he’ll empty his pockets for you.” Lyndon Johnson', 'created': '2024-11-16 22:05:07', 'submission_id': '1gsmwdz'}
{'comment': 'One of the most googled search terms in multiple swing states this week (ironically after all of Trump’s crazy picks) was “how do I change my vote” …tells you all you need to know.\n\nI love how everyone is acting so surprised—this is exactly who Trump said he was… he’s doing exactly what he said he’d do.\n\nSource: https://www.newsweek.com/donald-trump-how-change-vote-election-day-1984939', 'created': '2024-11-17 03:16:30', 'submission_id': '1gsmwdz'}
{'comment': 'To have regrets, you have to have awareness. No evidence of this yet.', 'created': '2024-11-17 03:40:43', 'submission_id': '1gsmwdz'}
{'comment': "I don't feel bad for ANY of them at this point.", 'created': '2024-11-16 14:59:09', 'submission_id': '1gsmwdz'}
{'comment': "Doesn't matter. Regret about voting is worthless. The votes did it. America. Their regret means nothing to me.", 'created': '2024-11-16 15:56:24', 'submission_id': '1gsmwdz'}
{'comment': 'They haven’t seen anything yet. Wait until they see the recession he’s gonna cause by deporting 10 million workers while raising costs with tariffs.', 'created': '2024-11-16 16:35:53', 'submission_id': '1gsmwdz'}
{'comment': 'My dad who relies solely on VA health benefits, he’s not in good health.', 'created': '2024-11-16 17:05:56', 'submission_id': '1gsmwdz'}
{'comment': 'Look on the bright side. Late night shows will be fun again!', 'created': '2024-11-16 18:44:00', 'submission_id': '1gsmwdz'}
{'comment': 'There was a story in the paper today about Muslims who voted for Trump and are appalled at his choices of Rubio and Huckabee. I was like, "What did you expect?!?"', 'created': '2024-11-16 20:14:48', 'submission_id': '1gsmwdz'}
{'comment': "Don't fall for these stories. We believed people were regretting their choices before and he won the popular vote. \n\nHis supporters do not learn and do not grow.", 'created': '2024-11-17 00:16:59', 'submission_id': '1gsmwdz'}
{'comment': 'The poorly educated are starting to realize that this isn’t a reality show. This is reality and they’re involved', 'created': '2024-11-17 03:18:25', 'submission_id': '1gsmwdz'}
{'comment': "Their playbook is outdated. When Maga rises - they will fall. Every fascist state falls. Hitler reigned for 9 years ending with suicide because he was a pussy.\n\nEverytime a fascist state is overthrown a new or deeply revised progressive form of politics picks up to rebuild. If Domocrats fail to do any action.. they will fall with it. Democratic Socialism is next.\n\nHistory always repeats itself and this playbook has been proven to fail in the long term. It will never stick. I find great comfort though knowing that this is most likely the ending of the republican party as we know it.\n\nMissiles, Nukes, Concentration Camps, and Jim Crow.\n\nDinosaurs. Relics of an older day. Trump missed his chance to go full Hitler. He's old, unhealthy, and hated more than Hitler was at Hitler's point of this cycle.\n\nThe cabinet picks are truly hilarious too. This is already like Hitler napping during wars level embarrassing.\n\nAt the end of the day, you need to remember who Trump is.. a FAILED businessman. Not one of his endeavors is successful. I imagine he will also fuck up overthrowing democracy too", 'created': '2024-11-17 03:48:12', 'submission_id': '1gsmwdz'}
{'comment': 'Honestly it’s probably a pretty small amount. How many stories did we hear before the election about republicans that were voting against him? They made me feel good at the time and then get slapped in the face on Election Day. I’m not falling for it again. The majority of people who voted for him are probably happy still.', 'created': '2024-11-16 14:32:43', 'submission_id': '1gsmwdz'}
{'comment': "Not as much as they will. I'm sure more stories will come over time and there is zilch to do about it.", 'created': '2024-11-16 14:32:40', 'submission_id': '1gsmwdz'}
{'comment': 'Funding for Public Transit, and tRUmPf will kill the Infrastructure bill/ projects. \nI warned our members.', 'created': '2024-11-16 15:17:38', 'submission_id': '1gsmwdz'}
{'comment': 'I haven’t heard anything on my end. It’s way too early since he his next term hasn’t started yet. So for now, everything is still going great for them. I haven’t really heard anything about them knowing who his picks for different cabinet positions are. I’m curious what they think of Gaetz as AG. These are the same people who want to execute pedophiles without due process.', 'created': '2024-11-16 15:23:16', 'submission_id': '1gsmwdz'}
{'comment': 'Seems more likely that people regret that they will be held accountable for the bad things that happen because they voted for Trump and let it be known. For the most part, they seem fine cutting off their nose, so long as their face gets what coming to it.', 'created': '2024-11-16 18:44:18', 'submission_id': '1gsmwdz'}
{'comment': 'I regret having even the tiniest faith in humanity for a brief moment. We deserve climate change.', 'created': '2024-11-16 18:55:04', 'submission_id': '1gsmwdz'}
{'comment': 'This post reminds me of the people in my church group who said that they feel Trump embodies their christian values. I have never been more disturbed in my life…', 'created': '2024-11-16 23:32:32', 'submission_id': '1gsmwdz'}
{'comment': 'I doubt many are regretting it just yet, not until the suffering gets real.', 'created': '2024-11-16 23:55:38', 'submission_id': '1gsmwdz'}
{'comment': "Remember, if he doesn't end the Ukraine war BEFORE he takes office again, that's his first broken campaign promise.", 'created': '2024-11-17 02:02:45', 'submission_id': '1gsmwdz'}
{'comment': "We have 4 years to hammer that your can't trust republicans. Will we do it? Probably not.", 'created': '2024-11-17 04:56:49', 'submission_id': '1gsmwdz'}
{'comment': 'Too bad, so sad. Should’ve thought about it before they voted for the orange idiot.', 'created': '2024-11-17 10:55:51', 'submission_id': '1gsmwdz'}
{'comment': "can we stop making this racist clown's face the focus of damn near every post?", 'created': '2024-11-16 14:34:35', 'submission_id': '1gsmwdz'}
{'comment': 'CALL A WAAAAHMBULANCE. FAAFO. GOOD LUCK.', 'created': '2024-11-16 16:26:52', 'submission_id': '1gsmwdz'}
{'comment': 'too bad, we are on the shitty ride together. they’ll blame other people that aren’t him eventually. They’ll blame remaining dems, they blame biden policies, they blame kamala or worse ethnic groups.', 'created': '2024-11-16 16:56:39', 'submission_id': '1gsmwdz'}
{'comment': 'I don’t believe they regret anything- this is fest they wanted.', 'created': '2024-11-16 17:46:56', 'submission_id': '1gsmwdz'}
{'comment': 'I dont think anyone is regretting Trump just yet. THey will but i dont think its happening until maybe mid april when people really start realizing what changed', 'created': '2024-11-16 17:59:36', 'submission_id': '1gsmwdz'}
{'comment': 'If they regret it now, just wait till he takes off my God the American populous is so dumb', 'created': '2024-11-16 18:09:12', 'submission_id': '1gsmwdz'}
{'comment': 'Veterans who were dumbfounded and devastated to learn that he’s going to gut veteran healthcare benefits.', 'created': '2024-11-16 18:17:01', 'submission_id': '1gsmwdz'}
{'comment': 'i do not feel sorry one bit. it is their fault we are in this mess, now they face the consequences.', 'created': '2024-11-16 18:20:52', 'submission_id': '1gsmwdz'}
{'comment': 'Lol its too soon. They should keep the regret for a while before expressing it dammit', 'created': '2024-11-16 18:29:23', 'submission_id': '1gsmwdz'}
{'comment': 'Don’t point at me. I didn’t vote for that mf’er', 'created': '2024-11-16 18:30:14', 'submission_id': '1gsmwdz'}
{'comment': 'As said by Carol King: " It\'s too late baby "', 'created': '2024-11-16 18:42:07', 'submission_id': '1gsmwdz'}
{'comment': 'I regret them voting for Trump, too', 'created': '2024-11-16 18:53:49', 'submission_id': '1gsmwdz'}
{'comment': 'Folks regretted it last time, too. And yet, here we are...', 'created': '2024-11-16 19:16:18', 'submission_id': '1gsmwdz'}
{'comment': 'There are plenty but most Trump voters will never realize their mistake. \n\nAnd right wing media will blame everyone but Trump for why things are going badly.', 'created': '2024-11-16 19:37:41', 'submission_id': '1gsmwdz'}
{'comment': 'Voters should vote for someone they would regret voting for if they didn’t talk about dictatorship and caging children. This is an unforgivable act. He will set us back decades upon decades of progression and literally slaughter us with no climate action as we suffer while he decomposes in the ground. F him and those that voted him forever. I hope he makes life for those that voted for him utter misery.', 'created': '2024-11-16 20:11:34', 'submission_id': '1gsmwdz'}
{'comment': 'I’ll be sending this to my family group chat the next year or so:\n\nhttps://preview.redd.it/oncscge2hb1e1.jpeg?width=600&format=pjpg&auto=webp&s=9633563d387ae4b2aa45f470e60bd574ff4146db', 'created': '2024-11-16 20:40:55', 'submission_id': '1gsmwdz'}
{'comment': 'Too early -- just wait.', 'created': '2024-11-16 23:17:22', 'submission_id': '1gsmwdz'}
{'comment': 'The search “how can I change my vote”, was one of the top Google searches the day after the election', 'created': '2024-11-17 00:33:06', 'submission_id': '1gsmwdz'}
{'comment': 'Inbreeding leads to ignorance.', 'created': '2024-11-17 02:24:34', 'submission_id': '1gsmwdz'}
{'comment': "All the ones I know to be MAGA and trump zealots changed to uncharacteristically silent than ever before between the election and now, so I'd say that's a huge loud YES!!!", 'created': '2024-11-17 02:26:00', 'submission_id': '1gsmwdz'}
{'comment': 'Fuck them. I hope he fucks them over so hard.', 'created': '2024-11-17 03:26:53', 'submission_id': '1gsmwdz'}
{'comment': '4 years from now...whats that shiny thing the republicans are showing me.', 'created': '2024-11-17 04:54:54', 'submission_id': '1gsmwdz'}
{'comment': 'Oh well too late now', 'created': '2024-11-17 06:46:07', 'submission_id': '1gsmwdz'}
{'comment': '😶 imagine being the type of person who would vote just to annoy someone else. And then finding out that they voted to harm themselves and didn’t annoy the other people- their voting just showed how toxic they were, so people removed them from their circle \nIt’s like a two fold hit. It’s left them hurt, confused, and upset. Eventually they will get angry at the politicians who betrayed them. I am waiting for that cause as soon as someone sparks a path, they will go scorched earth on the people who deceived them', 'created': '2024-11-17 16:08:26', 'submission_id': '1gsmwdz'}
{'comment': "It does feel good to write these things but despite these fun stories of the election were to be held today I don't think the results would be much different.", 'created': '2024-11-16 15:19:27', 'submission_id': '1gsmwdz'}
{'comment': 'Fuck em. Do your research before the election.', 'created': '2024-11-16 15:03:30', 'submission_id': '1gsmwdz'}
{'comment': 'Not nearly enough, but they will.', 'created': '2024-11-16 14:27:06', 'submission_id': '1gsmwdz'}
{'comment': 'This song is for them:\xa0https://m.youtube.com/watch?v=ZSM3w1v-A_Y&pp=ygUVYXBvbG9naXNlIG9uZXJlcHVibGlj', 'created': '2024-11-16 14:38:22', 'submission_id': '1gsmwdz'}
{'comment': 'Note Jake Paul apparently 🙄', 'created': '2024-11-16 15:15:02', 'submission_id': '1gsmwdz'}
{'comment': 'Well if ignorance is bliss, and they were so happy, when they got what they wanted. I guess this is the hangover, after the party!', 'created': '2024-11-16 15:41:20', 'submission_id': '1gsmwdz'}
{'comment': 'Macron will kiss him again though…', 'created': '2024-11-16 16:46:58', 'submission_id': '1gsmwdz'}
{'comment': '', 'created': '2024-11-16 18:06:07', 'submission_id': '1gsmwdz'}
{'comment': "I'm waiting for family to start preaching about Trump. Once they do all holidays are off. They all can fuck off until they stop drinking daddy Trumps kool-aid.", 'created': '2024-11-16 18:44:34', 'submission_id': '1gsmwdz'}
{'comment': 'I hope this time they treat him with all the “respect” he deserves.', 'created': '2024-11-16 18:55:05', 'submission_id': '1gsmwdz'}
{'comment': 'They will complain then vote Republican again and I no longer have sympathy for them. \xa0My friend who was born with a disability is who I care about. My friends who are lgbq+ I care about. My coworkers who are immigrants I care about. If you vote for the felon I don’t care.\xa0', 'created': '2024-11-16 18:57:13', 'submission_id': '1gsmwdz'}
{'comment': "Sure majority don't yet. But they will soon... Sadly nothing can be done. The fascist won.", 'created': '2024-11-16 20:16:13', 'submission_id': '1gsmwdz'}
{'comment': 'You don’t get to vote for trump and then try to take it back…. That’s not how it works. They need to feel guilty for the shitstorm they caused. Thanks assholes.', 'created': '2024-11-16 20:26:33', 'submission_id': '1gsmwdz'}
{'comment': "We haven't even gotten to this dude's actual presidency yet, and buyer's remorse is already setting in? \n\nFuck the people who voted for this shit. It's going to make all of our lives worse, but I hope it hits them the hardest.", 'created': '2024-11-16 20:51:13', 'submission_id': '1gsmwdz'}
{'comment': 'Too bad for them…. 4 years of tariffs and corruption', 'created': '2024-11-16 20:53:03', 'submission_id': '1gsmwdz'}
{'comment': 'The beginning of so many regrets', 'created': '2024-11-16 22:03:08', 'submission_id': '1gsmwdz'}
{'comment': "I'm guessing he's going to have about 35% approval in a couple of months, and there's nothing we can do about it. Trump voters bought a ticket for the whole country, and we're all along for the ride.", 'created': '2024-11-16 22:16:52', 'submission_id': '1gsmwdz'}
{'comment': 'Please !!!!! They deserve what they are going to get!!!!! But at lesser this is going to be the end of trump!!!!', 'created': '2024-11-16 22:41:09', 'submission_id': '1gsmwdz'}
{'comment': "Boo hoo I hope they experience real pain since they didn't know how good they had it. This is the Republican way though. Create problems, offer no real solutions, get people angry, take their money. Rinse, repeat \n\n\nEverything Trump touches turns to shit. I'm just sad I can't put effort to fleece these people myself. It's easier than working a real job.", 'created': '2024-11-16 22:46:59', 'submission_id': '1gsmwdz'}
{'comment': 'I\'m going to be the patron saint of "We told you so" for the next 4 years', 'created': '2024-11-16 23:20:49', 'submission_id': '1gsmwdz'}
{'comment': 'Fuck them. They made their choice with the all the info sitting in their smart phones. If you voted for trump, you have nothing but my contempt.', 'created': '2024-11-16 23:57:08', 'submission_id': '1gsmwdz'}
{'comment': 'Fuck those voters. I hope they REGRET it til their dying day.', 'created': '2024-11-17 00:15:47', 'submission_id': '1gsmwdz'}
{'comment': 'They shit in their bed now they gotta lay in it. I have No sympathy.', 'created': '2024-11-17 00:18:40', 'submission_id': '1gsmwdz'}
{'comment': 'We are the nation of fool me once shame on you, fool me twice, you can’t get fooled again.', 'created': '2024-11-17 00:38:52', 'submission_id': '1gsmwdz'}
{'comment': 'Shit show has barely started why would they regret it yet?', 'created': '2024-11-17 01:40:18', 'submission_id': '1gsmwdz'}
{'comment': 'It’s way too late for apologies or I told you so’s…we’re pretty much screwed. By placing idiots into the cabinet it focuses power and control to the executive. That is Fascism 101. And he’s not even in office yet. Just wait. Not just immigrants will suffer.', 'created': '2024-11-17 01:40:36', 'submission_id': '1gsmwdz'}
{'comment': 'Unfortunately, I keep recalling terrible things he’s done. We’ve been there and seen it already. \n\nLike, a thing I just recall is before the massive upheaval of Covid we were touch and go with war with gd Iran. \n\nWe have to try to weather the storm. We clearly need robust funding of education and more political awareness - our politics have been reduced to eggs and vibes.', 'created': '2024-11-17 01:52:13', 'submission_id': '1gsmwdz'}
{'comment': "I can't believe people would regret voting for a rapist criminal TRAITOR.", 'created': '2024-11-17 12:50:34', 'submission_id': '1gsmwdz'}
{'comment': "Our school system failed at teaching how tariffs work and the media fails at explaining who pays for them. They take the easy path of saying the cost is passed on to the consumer. What they never say is who actually pays the tariff. \n\nI seriously think Trump believes that China pays it. I never see anyone challenge him on it. For a tariff to work with trade you need there to be US producers of the product being taxed as well. If the US isn't producing a particular item then putting a tariff on the import is just punishing the American companies.", 'created': '2024-11-17 15:12:04', 'submission_id': '1gsmwdz'}
{'comment': 'I do not believe any of these remorse stories are real. I know trump supporters who have great cause to dislike trump and his policies. But, they rationalize and double down why he’s great. They can’t and won’t learn no matter what happens.', 'created': '2024-11-17 16:04:00', 'submission_id': '1gsmwdz'}
{'comment': 'Too damn late. They can now live with the consequences. Assholes', 'created': '2024-11-17 19:44:12', 'submission_id': '1gsmwdz'}
{'comment': "Some*, not many don't fool yourself", 'created': '2024-11-16 14:52:22', 'submission_id': '1gsmwdz'}
{'comment': 'Tell those folks to stop watching right wing media!', 'created': '2024-11-16 14:23:15', 'submission_id': '1gsmwdz'}
{'comment': "Why didn't they think about this BEFORE voting??? Too late now", 'created': '2024-11-16 14:38:49', 'submission_id': '1gsmwdz'}
{'comment': 'No, they won\'t. Anyone so dumb enough to vote for him won\'t know his policies are negatively affecting them. Democrats please I am begging you not to fall into this narrative. Every loss we take, I see Democrats falling into the narrative that the other side is going to stop chowing down on the 3rd plate of a dirt buffet and realize "this isn\'t chocolate!" Then we pull back from wildly popular candidates to avoid turning off 3rd party and cross-over voters. We have NEVER gotten those voters, and we NEVER will. Wanna know why white far-left liberal talking heads are retiring left and right? BECAUSE THEY SEE THEMSELVES AS PART OF THE PROBLEM! It\'s been nearly 10 years since we have had a narrative that is not \'stop X\'. The closest we\'ve had is build, back, better. This frankly reminds me of the Chris Rock sketch about the man bragging he "takes care of his kids." That\'s not a selling point. That\'s something you are supposed to do. This is why we are struggling.', 'created': '2024-11-16 19:32:44', 'submission_id': '1gsmwdz'}
{'comment': 'Can you really expect regret two weeks after the election? The ramifications won’t hit right away. He is making terrible staff choices, at least recognizable by those of us with half a brain, but 75% of his supporters don’t know shit! And until something actually slaps them in the face, they won’t understand what was bad about a vote for Trump. \n\nSome actually think getting rid of Department of Education is a good thing. Why? Because (1) they either believe the only thing they do is handle the student loan program, or (2) they don’t want the federal government to dictate what their students are learning. Neither of these are true, but ignorance abounds.', 'created': '2024-11-16 21:38:49', 'submission_id': '1gsmwdz'}
{'comment': "Trump's victory was billionaires deciding it was cheaper to buy the government they wanted than actually paying taxes. It had nothing to do with helping average people. I hope they learn their lesson sooner than later.", 'created': '2024-11-16 22:13:17', 'submission_id': '1gsmwdz'}
{'comment': '', 'created': '2024-11-16 14:43:23', 'submission_id': '1gsmwdz'}
{'comment': "Seems like a lot of people weren't talking to their Republican friends, family, and coworkers.", 'created': '2024-11-16 17:53:46', 'submission_id': '1gsmwdz'}
{'comment': "Not nearly as much as they're going to", 'created': '2024-11-16 18:21:48', 'submission_id': '1gsmwdz'}
{'comment': 'They can finally experience the consequences of their actions.', 'created': '2024-11-16 18:33:27', 'submission_id': '1gsmwdz'}
{'comment': 'If they are regretting it now what happens when he actually takes over.', 'created': '2024-11-16 19:05:58', 'submission_id': '1gsmwdz'}
{'comment': 'See: https://www.buzzfeed.com/natashajokic1/election-trump-supporters-find-out\n\nbut this not a reliable news source.', 'created': '2024-11-16 19:18:18', 'submission_id': '1gsmwdz'}
{'comment': "I have about eight or nine gay friends who'd like to do the womp womp chorus. But they're struggling too hard right now to truly enjoy the schadenfreude.", 'created': '2024-11-16 20:28:25', 'submission_id': '1gsmwdz'}
{'comment': 'I’ve run into customers saying that prices have gone down since the election, but I work at a gas station in the PNW, and prices haven’t changed for a month. Give it a year and you’ll either see denials or regrets. The other factor is they might be so far gone, that they’ll revel in the country’s misery and say, “Daddy came home “. Either way, there should be a historical list of the names that voted for him for posterity.', 'created': '2024-11-16 20:32:04', 'submission_id': '1gsmwdz'}
{'comment': 'IMO Trump makes people feel better about themselves because they say "Look, there\'s a guy who\'s even worse than me". Whoopie!', 'created': '2024-11-16 20:41:56', 'submission_id': '1gsmwdz'}
{'comment': "We'll all have more regrets in the years to come. Be happy he has to wait until January.", 'created': '2024-11-16 22:25:55', 'submission_id': '1gsmwdz'}
{'comment': "Already! People are starting to feel shame, great great shame! They should have listened to us! Now it's too late! The nightmare has begun!", 'created': '2024-11-16 22:31:05', 'submission_id': '1gsmwdz'}
{'comment': 'FAFO 💯', 'created': '2024-11-16 23:10:23', 'submission_id': '1gsmwdz'}
{'comment': "He's not even in yet. Lets all wait for the MAGA wonderland.", 'created': '2024-11-16 23:17:03', 'submission_id': '1gsmwdz'}
{'comment': None, 'created': '2024-11-17 02:09:41', 'submission_id': '1gsmwdz'}
{'comment': 'Too late, fuck them all', 'created': '2024-11-17 02:17:25', 'submission_id': '1gsmwdz'}
{'comment': "What we have are the new generation Hitler and Goering. Lil Donny is like Mussolini. They are working hard at setting the stage for their version of a new holocaust. They'll start with the Latinos because that's his first enemy of the state. Next will be the LBGTQ + community because of the fear factor that someone's child might be born gay. After that, just destroy Social Security, Medicare and medicaid and that rids America of the elderly and the less fortunate. The Supreme Court destroyed most of the guardrails that could have stopped or slowed the process but now those are gone. The last will be the biracial families either by forced separation by deportation or by turning them on each other. His cabinet selections will lay the foundation for his version of a fourth Riech. The next step will be the return of childhood diseases like the Measles, rubella, Mumps, and the rise of cancer in children and likely the rise of Polio because the vaccines will be discontinued by a person that claimed he had worms in his brain. All of this is very probable because of the blind choice his followers chose. The damage that is about to occur will take decades to reverse if possible. This did not have to happen but when you are blinded by lies and racist blind rhetoric, this is the result.", 'created': '2024-11-17 02:29:19', 'submission_id': '1gsmwdz'}
{'comment': 'America chose a hooker with AIDS!', 'created': '2024-11-17 03:39:20', 'submission_id': '1gsmwdz'}
{'comment': "It's posts like these that completely miss the plot - I voted Harris/Walz, but the vast majority of people in this country didn't, and the vast majority don't regret their choice.\n\nThe silver lining I see to this is that this will be Trumps last term.", 'created': '2024-11-17 05:48:37', 'submission_id': '1gsmwdz'}
{'comment': 'Are they though ? Really?', 'created': '2024-11-17 06:19:28', 'submission_id': '1gsmwdz'}
{'comment': 'So when the first 100 days happen and trump supporters see how bad he will screw them how will the midterm affect the Republican like they have to know that with trump picks they wont be able to hold some seats for midterms like they will have to work with Democrats to stop trump from doing half the things he wants to do or else they will be screw and wont be able to win in their next race for their district', 'created': '2024-11-17 10:43:44', 'submission_id': '1gsmwdz'}
{'comment': 'Many more are going to regret it a lot more than they do now before this is all over. There’s no way to sugar coat this: this is going to be a long, strange trip and some weird shit is gonna happen along the way.', 'created': '2024-11-17 13:31:13', 'submission_id': '1gsmwdz'}
{'comment': 'https://preview.redd.it/sjplkk8prg1e1.jpeg?width=1170&format=pjpg&auto=webp&s=57d38e94dc91bc3e5ffde6b976f53b1285f28e1b', 'created': '2024-11-17 14:29:26', 'submission_id': '1gsmwdz'}
{'comment': 'Cult will soon realize that stump never gave one shit about them, he uses them, and now he will destroy them. Oh well.', 'created': '2024-11-17 20:27:37', 'submission_id': '1gsmwdz'}
{'comment': "I've seen such stories online.", 'created': '2024-11-17 22:25:06', 'submission_id': '1gsmwdz'}
{'comment': 'Too la fucking idiots that don’t believe in critical thinking and learn history.\nThe table was set with all what trump is\nNow suck it up, hope you suffer', 'created': '2024-11-18 00:33:56', 'submission_id': '1gsmwdz'}
{'comment': 'Oh just wait till the real fun begins…', 'created': '2024-11-18 02:39:52', 'submission_id': '1gsmwdz'}
{'comment': "I know a woman who works at food company who voted for Trump. She thought Trump would free up the job market in her department and she'd get more raises and promoted. \n\nThe company sold her department to Mexico for some reason (probably unrelated in truth) and fired her. \n\nNot directly relevant but she was so confident Trump would improve her personal career.", 'created': '2024-11-18 04:19:56', 'submission_id': '1gsmwdz'}
{'comment': 'Let’s just hope this trend grows over the next 4 years. It is going to be a long strange trip.', 'created': '2024-11-18 17:47:28', 'submission_id': '1gsmwdz'}
{'comment': 'The election was rigged and Putin even admitted to it. Trump didn’t win. He stole it.', 'created': '2024-11-18 19:07:50', 'submission_id': '1gsmwdz'}
{'comment': 'They’re already counting votes and finding out there’s a big discrepancy. Something is wrong with the numbers. Putin admitted to helping Trump become president. Trump said I don’t need your votes. I already have enough. They were betting on Trump to win because they knew that’s why the FBI rated them, this election was stolen', 'created': '2024-11-18 19:10:41', 'submission_id': '1gsmwdz'}
{'comment': 'We need more pictures of Trump on this feed.', 'created': '2024-11-16 16:24:47', 'submission_id': '1gsmwdz'}
{'comment': "Thoughts and prayers. It's gonna be leopards eating faces season", 'created': '2024-11-16 16:48:52', 'submission_id': '1gsmwdz'}
{'comment': "If you regret voting for Trump fuck you. if you didn't bother to find out what a complete piece of shit he is, or can't remember how bad it was last time, I blame you for the next 4 years", 'created': '2024-11-16 21:02:09', 'submission_id': '1gsmwdz'}
{'comment': "Bullshit - I don't think there's one person that regrets voting for him.", 'created': '2024-11-16 19:03:19', 'submission_id': '1gsmwdz'}
{'comment': 'I think we’re telling ourselves that because it’s easier than confronting the truth. For a lot of Americans, it’s not that deep. They work and shit is expensive. They want change and the Dems didn’t offer change.', 'created': '2024-11-17 00:02:31', 'submission_id': '1gsmwdz'}
{'comment': "Fuck them; you don't hire someone to come into your home and murder you and your family and then complain about it. You made the choice to end everybody's life, so enjoy.", 'created': '2024-11-16 16:29:20', 'submission_id': '1gsmwdz'}
{'comment': '"There have been stories of (fill in something bad happening to political opposition)...." jfc if i never read that again I\'d be happy.', 'created': '2024-11-16 14:27:39', 'submission_id': '1gsmwdz'}
{'comment': 'Is there any polling data that shows this buyer’s remorse?', 'created': '2024-11-16 16:01:38', 'submission_id': '1gsmwdz'}
{'comment': 'r/LeopardsAteMyFace', 'created': '2024-11-16 16:24:53', 'submission_id': '1gsmwdz'}
{'comment': 'I hope you reap what you sow', 'created': '2024-11-16 17:38:15', 'submission_id': '1gsmwdz'}
{'comment': 'Jus wait', 'created': '2024-11-16 19:51:56', 'submission_id': '1gsmwdz'}
{'comment': 'lol\n\nNot my coworkers.\n\nIt’s insufferable.', 'created': '2024-11-16 20:05:14', 'submission_id': '1gsmwdz'}
{'comment': '[removed]', 'created': '2024-11-16 21:18:30', 'submission_id': '1gsmwdz'}
{'comment': 'Too late, they already did it', 'created': '2024-11-16 22:05:51', 'submission_id': '1gsmwdz'}
{'comment': "There was a hashtag for this last time called #Trumpgrets. I'm sure it will make a comeback.", 'created': '2024-11-16 22:10:58', 'submission_id': '1gsmwdz'}
{'comment': 'We call this the find out part', 'created': '2024-11-16 22:26:45', 'submission_id': '1gsmwdz'}
{'comment': 'Doesn’t matter. Maybe they should have used their brain when deciding who to vote for.', 'created': '2024-11-17 00:04:12', 'submission_id': '1gsmwdz'}
{'comment': 'Well, imagine that!', 'created': '2024-11-17 02:43:11', 'submission_id': '1gsmwdz'}
{'comment': 'Something tells me a black agency will make sure he’s not around for very long, or his intifada who want to destroy the country for $$$.', 'created': '2024-11-17 03:03:09', 'submission_id': '1gsmwdz'}
{'comment': 'Y\nHappy Cake Day', 'created': '2024-11-17 04:00:49', 'submission_id': '1gsmwdz'}
{'comment': 'And those who don’t soon will.', 'created': '2024-11-17 04:06:27', 'submission_id': '1gsmwdz'}
{'comment': 'FAAFO, you reap what you sow, this is their own undoing', 'created': '2024-11-18 02:15:45', 'submission_id': '1gsmwdz'}
{'comment': 'I hope they like paying MORE in taxes without knowing it', 'created': '2024-11-18 02:15:59', 'submission_id': '1gsmwdz'}
{'comment': 'We’re going to see how far his dementia has progressed- and it’s going to be scary.', 'created': '2024-11-18 13:49:31', 'submission_id': '1gsmwdz'}
{'comment': "We need to stop gloating if we plan on accepting these people's help in taking back congress in 2026", 'created': '2024-11-18 18:33:20', 'submission_id': '1gsmwdz'}
{'comment': 'December 7 or 8 no later than the 10th you should all know by then there’s going to be a big announcement about the theft of the election', 'created': '2024-11-18 19:11:31', 'submission_id': '1gsmwdz'}
{'comment': 'Bill Engvall made a fortune off people like this... and they were holding up a sign already', 'created': '2024-11-18 21:53:15', 'submission_id': '1gsmwdz'}
{'comment': 'theres no real evidence of this', 'created': '2024-11-16 18:47:35', 'submission_id': '1gsmwdz'}
{'comment': "No they don’t. I'm a Dem, and hate Trump, but stop this bullshit.", 'created': '2024-11-16 18:01:53', 'submission_id': '1gsmwdz'}
{'comment': 'Don’t get me wrong here, but could this be one of those faulty polls?', 'created': '2024-11-16 17:26:49', 'submission_id': '1gsmwdz'}
{'comment': 'Fuck ‘em. Every single one of them. Oh you’re mother voted for trump? So did mine, and fuck them both.', 'created': '2024-11-16 17:32:01', 'submission_id': '1gsmwdz'}
{'comment': 'This post looks like a satirical copium joke.', 'created': '2024-11-17 14:03:39', 'submission_id': '1gsmwdz'}
{'comment': "Prove it, or it's just Dems 'coping.'", 'created': '2024-11-17 00:59:51', 'submission_id': '1gsmwdz'}
{'comment': 'You mean they didn’t vote for an oligarchy? Shares of Tesla went up and Elonia made 100 BILLION in one week. These idiots voted for the leopard and now they’re going to find out that leopard is going to eat their face. Now every single safeguard has been weakened because of the MAGAt Cult.', 'created': '2024-11-16 18:36:27', 'submission_id': '1gsmwdz'}
{'comment': "Aaaah feck off...we're done with him", 'created': '2024-11-16 22:00:20', 'submission_id': '1gsmwdz'}
{'comment': 'Who care if they regretted. It\'s done. We are going into a dictatorship and the democrats aren\'t doing a goddamn thing about it. This is how Empire\'s fall and new ones take over.\n\nAll because people need to "touch the hot stove to learn"\n\nNah. No more excuses.', 'created': '2024-11-17 03:11:33', 'submission_id': '1gsmwdz'}
{'comment': 'WHO? HOW MANY? \n\nBullshit. Another failed democratic narrative. \n\nWhat other miracles have occurred? Do they now all accept transvestites too? \n\nWhomp Whomp.', 'created': '2024-11-16 16:48:41', 'submission_id': '1gsmwdz'}
{'comment': 'This discussion is pathetic. Republicans are still popping bottles of champagne over their absolute sweeping victory. They completely own the government right now and after the last 8 years of the way democrats have treated them they couldn’t be fucking happier. You are reaching so hard to find Trump hate, but you’re talking to 0% of voters and essentially asking liberals to share their experience.\xa0', 'created': '2024-11-16 18:15:49', 'submission_id': '1gsmwdz'}
{'comment': 'This is a lie. What a fake ass story. No one regrets voting for Trump. Stop the nonsense.', 'created': '2024-11-16 20:17:46', 'submission_id': '1gsmwdz'}
{'comment': "I don't believe it. Not yet. Give it 6 months and they may actually regret it then", 'created': '2024-11-17 02:50:09', 'submission_id': '1gsmwdz'}
{'comment': 'No Regerts', 'created': '2024-11-18 02:25:01', 'submission_id': '1gsmwdz'}
{'comment': 'They already had four years of him and four years of a temper tantrum. These are very slow learners', 'created': '2024-11-16 14:56:42', 'submission_id': '1gsmwdz'}
{'comment': 'Speaking of teachers, my mom is a teacher. She thinks it’s silly that Trump wants to put pressure on educators, when there’s already a teacher shortage……', 'created': '2024-11-16 14:41:35', 'submission_id': '1gsmwdz'}
{'comment': 'Is it possible to somehow record these incidents?... Into some kind of, erm, greatest "hits" compilation? For learning purposes, of course.', 'created': '2024-11-16 15:14:31', 'submission_id': '1gsmwdz'}
{'comment': 'No they\'re not. I\'m sorry but they\'re fucking not. You say that like he wasn\'t already president for 4 years, like he wasn\'t already impeached, tried, convicted.\n\n"They\'re gonna learn" what a joke', 'created': '2024-11-16 22:52:34', 'submission_id': '1gsmwdz'}
{'comment': 'There’s no innocent first mistakes in voting for Trump in 2024. They knew what they were voting for. Trump laid it out as clear as day, who he is, what he plans to do, and who he wants to hurt.\n\nThey know that running in front of the swing set might hurt them but that it will also disrupt and hurt the swing users. They think that’s funny, and they live the attention it gets them as well. They are the stupid, disruptive kid that doesn’t learn, gets hurt and laughs about it.', 'created': '2024-11-16 23:03:41', 'submission_id': '1gsmwdz'}
{'comment': 'Are they? If so, where were they the first time when he caused an insurrection and almost destroyed the country? It’s not like this is a new situation.', 'created': '2024-11-16 18:27:50', 'submission_id': '1gsmwdz'}
{'comment': 'I was definitely that kid in school hahaha', 'created': '2024-11-17 07:01:20', 'submission_id': '1gsmwdz'}
{'comment': 'I would have thought ww2 was that lesson…', 'created': '2024-11-18 04:34:38', 'submission_id': '1gsmwdz'}
{'comment': 'Learning is for people who give a shit about reality.\n\nThey are going to learn that there is no god and their whole life was a lie the fast way when they breathe their last, except it\'ll be the instant their brains shut off so they won\'t "learn" anything.', 'created': '2024-11-17 04:07:45', 'submission_id': '1gsmwdz'}
{'comment': 'You get the award today. Great analogy!', 'created': '2024-11-17 04:45:31', 'submission_id': '1gsmwdz'}
{'comment': 'Nicely put, and in a way that even they could understand. Lol', 'created': '2024-11-17 04:48:44', 'submission_id': '1gsmwdz'}
{'comment': 'Fantastic analogy!', 'created': '2024-11-17 13:39:00', 'submission_id': '1gsmwdz'}
{'comment': 'That’s a great analogy \n\nI’m in full support of whatever happens next. The American people made it exceptionally clear. I’m also tired of democrats fixing what had been broken and taking the blame.\n\nIf I was Democrat in the legislative I would vote present on everything.', 'created': '2024-11-17 15:37:46', 'submission_id': '1gsmwdz'}
{'comment': 'That\'s a horrible analogy and a horrible logic to apply to kids. The people that voted for him are adults and should be fully aware that there are consequences to their actions. You shouldn\'t be looking at kids like that. \n\nFirst graders may not always be aware of their surroundings, not to even mention the fact that neurodiversity, often undiagnosed at that age, can affect this. I really good you\'re not looking at these kids and thinking that getting kicked is a good way to "learn a lesson". Apply that same logic to a busy street and tell me if you feel the same way if a kid gets hit by a car. Shame on you for thinking this way. If a kid gets kicked from a swing on a playground, then that\'s more on you than on them. And I\'m not saying this from a point of view that doesn\'t understand taking care of kids, as I work everyday with children that have ASD and other disabilities. If I knew where you worked I\'d be required to report you.', 'created': '2024-11-17 08:25:18', 'submission_id': '1gsmwdz'}
{'comment': "Dump doesn't swagger. He waddles then struggles to open the door.", 'created': '2024-11-16 14:45:48', 'submission_id': '1gsmwdz'}
{'comment': '[ Removed by Reddit ]', 'created': '2024-11-16 14:20:13', 'submission_id': '1gsmwdz'}
{'comment': 'I had a friend tell me that she was voting for Trump because the world takes him seriously. I sent her a video of the UN laughing at Trump. She still voted for him..', 'created': '2024-11-16 18:15:29', 'submission_id': '1gsmwdz'}
{'comment': "They've already started. Did you see nude Melania on Russian TV?", 'created': '2024-11-16 16:11:08', 'submission_id': '1gsmwdz'}
{'comment': "Disagree. Rest of the world will be on pins and needles worried about the long game of Putin's engineered right wing takeover in their own countries as well.", 'created': '2024-11-16 14:44:24', 'submission_id': '1gsmwdz'}
{'comment': 'It could be worse this time. He’s older and declining.', 'created': '2024-11-16 18:22:47', 'submission_id': '1gsmwdz'}
{'comment': 'From all Americans, EVERYONE has permission to throw pies in Trumps face. All the time. No one respects him here. He just is voted in entertainment.', 'created': '2024-11-16 18:20:25', 'submission_id': '1gsmwdz'}
{'comment': "He hasn't swaggered in years. He wobbles now.", 'created': '2024-11-16 18:12:30', 'submission_id': '1gsmwdz'}
{'comment': 'A brick would be better', 'created': '2024-11-16 21:32:27', 'submission_id': '1gsmwdz'}
{'comment': "No no no, it's the world who laughs at the Biden administration. The whole world. Trump sez so.", 'created': '2024-11-16 17:09:54', 'submission_id': '1gsmwdz'}
{'comment': 'I’m sure Putin and the Kremlin will have at Trump when he publicly try to demand Russia to stop fighting Ukraine', 'created': '2024-11-16 14:14:40', 'submission_id': '1gsmwdz'}
{'comment': 'I will enjoy it a lot if he goes to make another UN speech and they laugh at him again like last time. That really surprised him and probably pissed him off. Lol.', 'created': '2024-11-16 19:49:51', 'submission_id': '1gsmwdz'}
{'comment': "The world needs more slapstick humor TBH. Somebody needs to antique him jackass style, just run up and throw flour right in dude's face... He'd have a conniption fit and sue for damages I'm sure.", 'created': '2024-11-16 19:57:53', 'submission_id': '1gsmwdz'}
{'comment': 'I think we have a lot to learn from our milkshake-throwing friends in Britain.', 'created': '2024-11-16 22:51:43', 'submission_id': '1gsmwdz'}
{'comment': "That'd be the highlight of the century", 'created': '2024-11-16 23:53:20', 'submission_id': '1gsmwdz'}
{'comment': 'Orrrr…trips him🤔?', 'created': '2024-11-17 00:44:24', 'submission_id': '1gsmwdz'}
{'comment': 'Oh that would be tremendous, I would enjoy that forever', 'created': '2024-11-17 04:53:26', 'submission_id': '1gsmwdz'}
{'comment': 'I wouldn’t mind if much more terrible things happen than pie lol', 'created': '2024-11-17 04:57:32', 'submission_id': '1gsmwdz'}
{'comment': 'I want to see the same photo of him raising his tiny fist in the air, with whipped cream dripping down his ear', 'created': '2024-11-17 05:02:15', 'submission_id': '1gsmwdz'}
{'comment': 'That would be funny!😄', 'created': '2024-11-17 05:55:11', 'submission_id': '1gsmwdz'}
{'comment': 'I’d prefer to see a knee slammed into his groin', 'created': '2024-11-17 13:44:14', 'submission_id': '1gsmwdz'}
{'comment': 'That’s pretty much my logic', 'created': '2024-11-16 14:45:47', 'submission_id': '1gsmwdz'}
{'comment': 'Touchee', 'created': '2024-11-16 19:42:22', 'submission_id': '1gsmwdz'}
{'comment': 'Coworker has whined about grocery prices since I met him in 2022. Of course, he blames Biden for it.', 'created': '2024-11-16 14:26:29', 'submission_id': '1gsmwdz'}
{'comment': 'A key indicator of being a Trumper is not being man enough to admit you’re wrong, ever.\n\nThat’s why several posts around the country basically said they saw no Trump merchandise at all until *after* he won. They’re not man enough to visibly endorse someone who doesn’t win. It’s a cult of cowardice and spite.\n\nWe’ll never see more than a handful admit they’re part of that google search.', 'created': '2024-11-16 15:18:39', 'submission_id': '1gsmwdz'}
{'comment': 'Unfortunately, some folks are willing to sacrifice their kid’s education if it means getting a larger paycheck due to tax cuts.', 'created': '2024-11-16 14:37:22', 'submission_id': '1gsmwdz'}
{'comment': 'I have similar thoughts. I’ve yet to see any person I know regretting their vote.', 'created': '2024-11-16 15:55:50', 'submission_id': '1gsmwdz'}
{'comment': 'Same, if the elections were today, he\'d win by the same margin, let\'s not kid ourselves. I saw plenty of stories bout "Republicans voting for Kamala". Only for her to lose support among republicans vs Biden. These titled are bonk and we should ignore them.', 'created': '2024-11-16 16:31:56', 'submission_id': '1gsmwdz'}
{'comment': 'Yes this title is pathetic. It’s like someone reaching so hard to hear somebody say they hate Trump. It’s been one week or so since the election. Nothing has changed yet, the amount of people regretting their vote at this point is close to fucking 0%', 'created': '2024-11-16 18:15:19', 'submission_id': '1gsmwdz'}
{'comment': "Hey there I was wondering what bill you are talking about from last week, social security revisions? I've been trying to find info but I can't so figured I'd just ask.", 'created': '2024-11-16 19:33:37', 'submission_id': '1gsmwdz'}
{'comment': 'I ask this trying to understand, how would eliminating the federal Department of Education affect children’s education?', 'created': '2024-11-16 19:48:49', 'submission_id': '1gsmwdz'}
{'comment': 'Totally agree. People who voted for Trump went back to their lives, business as usual. \nThis wishful thinking about someone regretting immediately is a BS. \nYes, they might regret it when his policies will derail and make the country weaker, but ONLY IF the prices stay high. And even then they will find excuses and blame Soros, Clinton, Gates, both Obamas and whoever else are the usual suspects. \nJust like the pig farmers did during his first term when he started shit with China.\nHate this wishful make believe nonsense.', 'created': '2024-11-16 20:32:15', 'submission_id': '1gsmwdz'}
{'comment': "These stories are so pointless just like everyone before the election claiming conservatives will finally abandon Trump in 24'. Didn't happen then, isn't happening now, will never happen no matter what.", 'created': '2024-11-16 16:43:57', 'submission_id': '1gsmwdz'}
{'comment': 'I was amazed that so many of my coworkers voted for Trump. We’re federal workers, and some are actually ok if their job is cut.', 'created': '2024-11-16 14:31:36', 'submission_id': '1gsmwdz'}
{'comment': 'Yeah, but they really “believed” , ignorantly, that he would do a better job.', 'created': '2024-11-16 17:43:28', 'submission_id': '1gsmwdz'}
{'comment': '"how do I change my vote" is exactly the level of wit I\'d expect from anyone who even considered this fucking tyrant', 'created': '2024-11-16 14:21:35', 'submission_id': '1gsmwdz'}
{'comment': 'It’s like they don’t remember his first term', 'created': '2024-11-16 14:15:13', 'submission_id': '1gsmwdz'}
{'comment': 'Except then we get the same thing they do. I seem recall that people said things like this after he was first elected.', 'created': '2024-11-16 14:28:45', 'submission_id': '1gsmwdz'}
{'comment': 'They can’t change their vote, but they could influence the electors. Technically electors can pretty much disregard the voters if they feel the candidate is not up to snuff. But has that ever happened? Also, new rules allow for them to replace faithless electors.\xa0', 'created': '2024-11-16 14:46:06', 'submission_id': '1gsmwdz'}
{'comment': 'I’ve been saying this a lot since I first saw it:\n\n> It’s not my lesson to learn', 'created': '2024-11-16 15:37:13', 'submission_id': '1gsmwdz'}
{'comment': "> But it’s too late now.\n\nNo, it isn't. He hasn't actually done any damage yet, so it's still possible to stop him.", 'created': '2024-11-16 16:09:05', 'submission_id': '1gsmwdz'}
{'comment': 'The unfortunate part of that is *we* get everything they voted for.', 'created': '2024-11-17 00:26:06', 'submission_id': '1gsmwdz'}
{'comment': 'Agree. Well said.', 'created': '2024-11-16 21:15:12', 'submission_id': '1gsmwdz'}
{'comment': 'Nickelodeon of all places did something for the election?\n\n(Australian here who is confused by that)', 'created': '2024-11-17 03:16:49', 'submission_id': '1gsmwdz'}
{'comment': 'Oh well', 'created': '2024-11-16 15:08:06', 'submission_id': '1gsmwdz'}
{'comment': 'Indeed. And Trump is going to ensure we stay behind.', 'created': '2024-11-16 15:29:33', 'submission_id': '1gsmwdz'}
{'comment': 'Former teacher here. Social media is the education. It overshadows everything. Youth brains have literally been rewired. Rapid fire Clickbait engages kids in ways that no damn teacher can. As such, kids are ripe for disinformation and propaganda. Fixing education to repair what’s happening is going to have little impact unless society decides that SM and algorithms are the real enemy here and so far, exactly ZERO politician has had the balls to do anything about it. I call it societal slow death by algorithm.', 'created': '2024-11-16 19:45:19', 'submission_id': '1gsmwdz'}
{'comment': 'And these people are asking for a reality check', 'created': '2024-11-16 15:12:53', 'submission_id': '1gsmwdz'}
{'comment': 'You’re right. At this point, I can only prepare my household for Trump’s bs. I’m a federal worker….I have started the process of developing career backup plans…', 'created': '2024-11-16 15:33:38', 'submission_id': '1gsmwdz'}
{'comment': 'I agree. No sympathy. However, I don\'t believe for one second that P01135809 supporters have done a 180 this quickly. They were dumb enough to vote for him. Most don\'t have the mental flexibility to change, and the few that do are unlikely to do so before he is even sworn in *let alone admit to it. These "regret anecdotes" are likely more Russian disinformation designed to further divide the voters.', 'created': '2024-11-16 15:38:01', 'submission_id': '1gsmwdz'}
{'comment': 'Smh', 'created': '2024-11-16 16:15:23', 'submission_id': '1gsmwdz'}
{'comment': 'It’s like they didn’t want to listen to anyone', 'created': '2024-11-16 14:18:22', 'submission_id': '1gsmwdz'}
{'comment': 'Sad thing is those who didn’t vote for him or couldn’t vote (like teenagers) are going to be fucked', 'created': '2024-11-16 19:31:52', 'submission_id': '1gsmwdz'}
{'comment': 'Yep. I work with a guy who “jokily” think illegals, including kids, should be lined up and taken out', 'created': '2024-11-16 15:07:31', 'submission_id': '1gsmwdz'}
{'comment': 'And about 12 or 13 brain cells shared between all of them.', 'created': '2024-11-16 18:38:11', 'submission_id': '1gsmwdz'}
{'comment': 'I think lack of empathy could be tied to not learning from other people’s mistakes or situations. I don’t have a source, and I’m not even sure why I believe it, but if it’s true it sucks because we have to wait on everyone to learn the same lesson by experiencing the affects themselves. Just seems like it slows us down as a people.', 'created': '2024-11-16 21:12:22', 'submission_id': '1gsmwdz'}
{'comment': 'They should probably put a warning on it next time. Perhaps a spoiler type protection lol.', 'created': '2024-11-17 03:18:09', 'submission_id': '1gsmwdz'}
{'comment': 'My coworker actually thought tariffs were great. The kicker is he’s in his 60s. You’ll think he would have known better.', 'created': '2024-11-16 14:24:51', 'submission_id': '1gsmwdz'}
{'comment': 'They remind me of this scene\n\nhttps://youtu.be/ee6-sI9rdtA?si=VfJHfYfoL425v3Hw', 'created': '2024-11-16 19:37:24', 'submission_id': '1gsmwdz'}
{'comment': 'Comparing voters to sport fans is accurate', 'created': '2024-11-16 17:35:16', 'submission_id': '1gsmwdz'}
{'comment': '34 convictions of a felony. 91 indictments total including the 34.', 'created': '2024-11-17 15:46:31', 'submission_id': '1gsmwdz'}
{'comment': 'Just like last time.. when they start deporting the "good" illegals.. people are going to get upset. I still remember the faces on the news where people were dumbstruck why this pillar of society had been deported.. he owned a business, paid taxes, had kids.. he wasn\'t the dangerous criminal they were sold on. \n\nAnd we will see this repeat itself over and over.. until it\'s like everything else in the Trump era.. background noise.', 'created': '2024-11-16 18:43:49', 'submission_id': '1gsmwdz'}
{'comment': 'You’re totally right. My coworker doesn’t like liberals.', 'created': '2024-11-16 16:45:05', 'submission_id': '1gsmwdz'}
{'comment': "It's gonna be bizarre when these people keep justifying him being president even when he's freaking old as dirt.", 'created': '2024-11-16 16:45:39', 'submission_id': '1gsmwdz'}
{'comment': 'I told my boss he can expect our projects to be more costly…He didn’t like that', 'created': '2024-11-16 14:43:05', 'submission_id': '1gsmwdz'}
{'comment': 'It did blow my mind that legal immigrants voted for Trump. He essentially has been bashing non Americans for decades.', 'created': '2024-11-16 15:51:58', 'submission_id': '1gsmwdz'}
{'comment': 'You do raise a good point about Trump voters getting jealous at folks who have something they don’t. These folks think Trump will magically make everyone successful.', 'created': '2024-11-16 15:29:00', 'submission_id': '1gsmwdz'}
{'comment': 'They’re probably hoping Trump and Republicans grant them another stimulus check', 'created': '2024-11-16 16:39:17', 'submission_id': '1gsmwdz'}
{'comment': 'Oh damn', 'created': '2024-11-16 17:35:48', 'submission_id': '1gsmwdz'}
{'comment': 'What does Trump plan to do with the VA?', 'created': '2024-11-16 18:22:00', 'submission_id': '1gsmwdz'}
{'comment': 'Yes, I was also hopeful that enough republicans would see the insanity of a second Trump presidency not to get him elected. Still struggling with the math how he managed to get more vote with so many republicans speaking out against him. But I did recently read that “undecided” voters significantly went for Trump at the end.', 'created': '2024-11-16 15:17:25', 'submission_id': '1gsmwdz'}
{'comment': "nothing has really happened yet except his stupid nominations. I bet at least enough will regret it once shit starts happening or the stuff they thought would magically be better aren't, that it will alter the next election. The weirdest thing to me is that he got more votes this time than 2016. Hell in 2020 the insurrection hadn't happened yet. Should have received less in 2024 than 2020. But eggs are expensive. When they stay expensive or get worse if Trump actually stays true to his words, some will sway. The die hard cult members will stay of course though.", 'created': '2024-11-17 19:58:06', 'submission_id': '1gsmwdz'}
{'comment': 'You do have a point. Folks sometimes vote against their own interests….', 'created': '2024-11-16 14:33:57', 'submission_id': '1gsmwdz'}
{'comment': 'I work with a few guys who love the outdoors….But they think Trump was a good pick', 'created': '2024-11-16 15:19:04', 'submission_id': '1gsmwdz'}
{'comment': 'Notice how the MAGA crowd aren’t calling for Gaetz to be taken out', 'created': '2024-11-16 15:24:16', 'submission_id': '1gsmwdz'}
{'comment': 'Reminds me of the vets who think Trump cares about them', 'created': '2024-11-16 18:48:33', 'submission_id': '1gsmwdz'}
{'comment': 'That is disturbing. And here they give Catholic church grief for their fucked up shit.', 'created': '2024-11-16 23:51:36', 'submission_id': '1gsmwdz'}
{'comment': 'Exactly. The suffering has not yet began. But eventually we’ll all suffer sadly.', 'created': '2024-11-17 01:19:02', 'submission_id': '1gsmwdz'}
{'comment': 'They’re already blaming illegals for the cost of goods', 'created': '2024-11-16 17:34:35', 'submission_id': '1gsmwdz'}
{'comment': 'They saw the Handmaid’s Tale and got excited', 'created': '2024-11-16 17:55:06', 'submission_id': '1gsmwdz'}
{'comment': 'I mean, Trump is already playing in our faces. He wants Matt “R Kelly” Gaetz to be the AG.', 'created': '2024-11-16 18:01:03', 'submission_id': '1gsmwdz'}
{'comment': 'They don’t have regret, clickbait title written by a singular reddit liberal.\xa0', 'created': '2024-11-16 18:35:15', 'submission_id': '1gsmwdz'}
{'comment': 'It’s because folks forgot how terrible Trump was', 'created': '2024-11-17 00:47:08', 'submission_id': '1gsmwdz'}
{'comment': 'It’s real. When Obama became president, I was going to college in a small town located in the mid west. There were poor racist conservatives who depended on government handouts who still votes republican because couldn’t handle seeing a black person in the White House…', 'created': '2024-11-17 16:10:20', 'submission_id': '1gsmwdz'}
{'comment': 'Indeed. Some people simply refuse to see a woman in that position', 'created': '2024-11-16 15:20:17', 'submission_id': '1gsmwdz'}
{'comment': 'They relied on social media', 'created': '2024-11-16 15:08:21', 'submission_id': '1gsmwdz'}
{'comment': 'Mine already did :-( will just be three of us at Thanksgiving dinner this year as opposed to the normal 20+', 'created': '2024-11-16 19:02:33', 'submission_id': '1gsmwdz'}
{'comment': 'Tariffs and corruption affect us as well, right?', 'created': '2024-11-16 22:06:33', 'submission_id': '1gsmwdz'}
{'comment': 'Yes finally the end', 'created': '2024-11-16 23:46:33', 'submission_id': '1gsmwdz'}
{'comment': 'Yes. My boomer coworker didn’t know.', 'created': '2024-11-17 15:12:57', 'submission_id': '1gsmwdz'}
{'comment': 'You do have a point. The boomer who voted for Trump at my job will still argue that the Cheeto was a better candidate than Harris.', 'created': '2024-11-17 16:05:21', 'submission_id': '1gsmwdz'}
{'comment': 'People are truly trying to see if it’s possible to change their votes', 'created': '2024-11-16 14:24:13', 'submission_id': '1gsmwdz'}
{'comment': 'Because some of these people didn’t want a female as president. I work with macho guys who have actually said this.', 'created': '2024-11-16 14:42:25', 'submission_id': '1gsmwdz'}
{'comment': 'Now, they want to whine about Gaetz', 'created': '2024-11-16 14:44:03', 'submission_id': '1gsmwdz'}
{'comment': 'Hmmm', 'created': '2024-11-16 17:55:20', 'submission_id': '1gsmwdz'}
{'comment': 'This is how I think republicans view the world. “No, don’t help them. I want to look down on someone.”', 'created': '2024-11-16 20:44:21', 'submission_id': '1gsmwdz'}
{'comment': '“Vast majority” = less than 50% of voters', 'created': '2024-11-17 06:46:37', 'submission_id': '1gsmwdz'}
{'comment': 'The ones being handed divorce papers are.', 'created': '2024-11-17 08:18:31', 'submission_id': '1gsmwdz'}
{'comment': 'It would be funny if Trump refuses to pardon the 1/6 rioters', 'created': '2024-11-17 20:57:26', 'submission_id': '1gsmwdz'}
{'comment': "Yeah, well. The leopards may be eating their faces. \n\nBut the tigers are going to be pouncing on the rest of us. So I don't think there's any solace in that.", 'created': '2024-11-16 16:54:35', 'submission_id': '1gsmwdz'}
{'comment': 'Yup same. This election taught us that we have far too much faith in humanity. People are simple and just apes when it comes right down to it. The crazies are running the asylum and are happy with Trump and his clown posse because their infantile brains love the excitement and chaos he brings to the table. They’re incorrigible. \n\nWe had better wake up to this new reality and support an outside the beltway populist with enough cojones to stand up against the right wing manosphere.', 'created': '2024-11-16 19:28:12', 'submission_id': '1gsmwdz'}
{'comment': 'E-C-O-N-O-M-Y. Exactly why Dems lost. Voters sat out. They Never addressed the fact that it was not great and job market was not good.', 'created': '2024-11-17 01:18:35', 'submission_id': '1gsmwdz'}
{'comment': 'Yep', 'created': '2024-11-16 16:30:15', 'submission_id': '1gsmwdz'}
{'comment': 'Not sure', 'created': '2024-11-16 16:02:00', 'submission_id': '1gsmwdz'}
{'comment': 'You’re free to fact check me', 'created': '2024-11-17 14:07:48', 'submission_id': '1gsmwdz'}
{'comment': 'To quote a British man, "Oh sorry. Were you expecting us to come to your rescue from the fascist you elected? Well we would, but you think we\'re evil apparently so I guess we shouldn\'t"', 'created': '2024-11-18 04:23:39', 'submission_id': '1gsmwdz'}
{'comment': 'Don’t ruin my cake day', 'created': '2024-11-16 16:55:15', 'submission_id': '1gsmwdz'}
{'comment': '8 years? You do realize Trump was president from 2016-2020 right? Are you stupid?', 'created': '2024-11-18 04:29:16', 'submission_id': '1gsmwdz'}
{'comment': 'My psychiatrist was telling me "Well he didn\'t do anything bad last time." \n\nMe: "Yes, he did. It came out after that he did a bunch of shit but they couldn\'t do anything in the 4 years since then. \nBut now theres no guardrails, so he\'s gutting everything."\n\n\nPsych: "Well, if he gets rid of all those departments, think of the talent from government employees are going to put in the work force. They only have government jobs because they\'re comfortable." \n\n\nGonna need a new Psych soon. After she let it slip that she was excited for the RNC, I had doubts. But damn...', 'created': '2024-11-16 19:51:50', 'submission_id': '1gsmwdz'}
{'comment': 'Sure but they haven’t been punted into the soccer field yet. The guardrails kept them safe (or their version of safe) during the first four years. The guardrails are off and it appears they will learn a little faster this time around.', 'created': '2024-11-16 15:00:38', 'submission_id': '1gsmwdz'}
{'comment': "They're not slow. All they care about is making someone else feel as bad as them. They're a chronic smoker who gets mad at people telling them smoking is bad for them and don't want it in their house that is happiest when one of the people telling them gets cancer.", 'created': '2024-11-16 19:40:38', 'submission_id': '1gsmwdz'}
{'comment': 'There’s a huge reason everyone keeps talking about the diploma divide—- this is a matter of people voting for him who clearly do not have ability to think critically, and people against him who use critical thinking 🤔', 'created': '2024-11-17 04:48:19', 'submission_id': '1gsmwdz'}
{'comment': 'No they will never learn they will relocate the goal posts and justify everything. They will never learn if they haven’t already.', 'created': '2024-11-17 01:49:53', 'submission_id': '1gsmwdz'}
{'comment': 'And I’m having trouble figuring out why now? Why immediately after the election? Like did they think he was joking?', 'created': '2024-11-17 23:12:16', 'submission_id': '1gsmwdz'}
{'comment': "Yeah but this time will be so much worse. He has had 4 years to plan.\n\nPlan things like taking away human rights, def womens rights \n\nHow to dismantle education and maybe even indoctrinate the kids \n\nHe has had 4 years to find out which extremists to pick for his cabinet so he can change election laws and the constitution \n\nWe are screwed this time. I hate to say it but we likely would have been better off if his terms were just consecutive and he couldn't plan all this shit.....at least as well.", 'created': '2024-11-17 04:36:53', 'submission_id': '1gsmwdz'}
{'comment': "They don't want educated critical thinking kids.. that will mess up the future workforce. They want em smart enough to push buttons but dumb enough to accept poor working conditions and bad pay.", 'created': '2024-11-17 08:41:47', 'submission_id': '1gsmwdz'}
{'comment': 'My cousin is a teacher. She voted for Trump bc the DoE is corrupted and needs to dissolved. I..what do what do with that!?!? She’s been teaching for 27 years.', 'created': '2024-11-17 04:21:33', 'submission_id': '1gsmwdz'}
{'comment': 'But he wants to get rid of the department of education and replace the good teachers with MAGATS', 'created': '2024-11-18 07:25:05', 'submission_id': '1gsmwdz'}
{'comment': '[removed]', 'created': '2024-11-17 03:27:38', 'submission_id': '1gsmwdz'}
{'comment': '[MeidasTouch has pretty much been doing this since the election results.](https://youtube.com/@meidastouch?si=wnh1PQbb91Q-MJQ7)', 'created': '2024-11-17 21:28:44', 'submission_id': '1gsmwdz'}
{'comment': "You'd be shocked how many people are just not paying attention. Like the people who didn't realize Biden dropped out until election day.", 'created': '2024-11-16 19:20:29', 'submission_id': '1gsmwdz'}
{'comment': "I downvoted you because the person has already stated they do their best to teach the children not to do things that will hurt them. They are absolutely 💯 percent correct that there are some children that have to learn the hard way. I have several children on the spectrum. Sometimes, even though they have been taught not to do things that hurt them, they learn the hard way. Sometimes, those children turn into adults who never learn from observing, and here we are. 3 of my 11 children are on the spectrum. I LIVE with them every day, so I get how they can be. The teacher isn't out of line, but you are.", 'created': '2024-11-17 14:28:28', 'submission_id': '1gsmwdz'}
{'comment': 'Cuz he’s so used to his flunkies opening it for him. Not sure he even has wrist muscles', 'created': '2024-11-16 18:47:45', 'submission_id': '1gsmwdz'}
{'comment': 'I doubt he can even waddle much anymore, they will just put him in a golf cart and he will roll around bumping into people', 'created': '2024-11-17 08:28:49', 'submission_id': '1gsmwdz'}
{'comment': "Waddles because he just pooped his pants! How long do you suppose Elon will hang around when he's constantly being blamed for Trump pooping himself? When those two lovebirds break up, I hope it's over something ridiculous, like poop.", 'created': '2024-11-17 11:40:50', 'submission_id': '1gsmwdz'}
{'comment': 'Great, then we’d be stuck with Vance, who I think would be infinitely worse but at least not (as?) beholden to Russia.', 'created': '2024-11-16 14:24:45', 'submission_id': '1gsmwdz'}
{'comment': 'Choking on a hunk of microwaved hotdog while sitting on the toilet during a furious 3am tweet-shit and being found the next day seems like his brand.', 'created': '2024-11-16 14:57:39', 'submission_id': '1gsmwdz'}
{'comment': 'Not sure. Vance may be worse. And I can’t really believe I’m saying this. Not sure 🤯', 'created': '2024-11-16 16:07:55', 'submission_id': '1gsmwdz'}
{'comment': 'But then we have Vance. Ugh they are both nightmares.', 'created': '2024-11-16 15:53:43', 'submission_id': '1gsmwdz'}
{'comment': 'Yep, or slips on a rug or spilled water and whatever breaks is fatal.', 'created': '2024-11-16 14:39:42', 'submission_id': '1gsmwdz'}
{'comment': 'Don’t threaten me with a good time.', 'created': '2024-11-16 17:30:07', 'submission_id': '1gsmwdz'}
{'comment': "Oh don't say that out loud, some buttercup will come along and say you're inciting violence", 'created': '2024-11-16 15:45:10', 'submission_id': '1gsmwdz'}
{'comment': 'Hopefully before he swaggers into the white house.', 'created': '2024-11-16 18:08:00', 'submission_id': '1gsmwdz'}
{'comment': 'This must have been pretty bad...', 'created': '2024-11-16 18:43:08', 'submission_id': '1gsmwdz'}
{'comment': 'I think they do take him seriously because he’s got a huge military at his disposal even if we think he’s a joke does that make sense?', 'created': '2024-11-16 20:36:24', 'submission_id': '1gsmwdz'}
{'comment': 'I think my biggest reaction after the election was sadness. I had no idea so many people like your friend were out there. These next 4 years will be scary on so many levels.', 'created': '2024-11-17 01:09:29', 'submission_id': '1gsmwdz'}
{'comment': 'Send her this.\n\nAutoZone CEO warns of price hikes for customers and the higher costs could come in weeks\n\nSome of the firms biggest suppliers could be hit with extra costs as high as 60%\n\nhttps://www.the-sun.com/motors/12788723/autozone-price-hikes-trump-tariffs/amp/', 'created': '2024-11-17 20:17:26', 'submission_id': '1gsmwdz'}
{'comment': 'Because, yes, they are that stupid.', 'created': '2024-11-17 21:07:51', 'submission_id': '1gsmwdz'}
{'comment': 'Oh, please elaborate. I have not heard about this.', 'created': '2024-11-17 00:24:22', 'submission_id': '1gsmwdz'}
{'comment': 'Exactly. His minions are at work everywhere injecting long form mind poison into the public media drinking water. Make Enough of the electorate live in an alternate reality that you foment, convince them that everything else is fake, and nudge their pre-existing tendencies in a way that causes them to vote and otherwise support, political figures and operatives, and over time This has enough effect that you can gradually tip the whole thing over.\n\nEdit - this along with having the political roles be filled by those who are exceedingly corrupt and absolutely have no care about anything but their own self enrichment and self empowerment. Those are easily bought and kept. We would not have so many stupid people, fatally corrupt politicians, if we did not have enough electorate continuing to vote them into office. Why are so many people continuing to vote in and reelect absolute insane morons? It is accelerating.', 'created': '2024-11-16 17:52:37', 'submission_id': '1gsmwdz'}
{'comment': 'This is the story behind the “shiny bauble” story and must be amplified.', 'created': '2024-11-16 22:10:37', 'submission_id': '1gsmwdz'}
{'comment': 'You really think he’ll “publicly try to demand Russia to stop fighting Ukraine”? I’ve already read (though I can’t remember where) that he plans to demand Ukraine cede land to Russia.', 'created': '2024-11-16 14:22:37', 'submission_id': '1gsmwdz'}
{'comment': 'Well when Russia, North Korea and China invade the US I can see NATO and rest of the world saying well just concede your territory and have peace. Actually Trump will concede it. Nukes are useless when retaliation means the end of our existence.', 'created': '2024-11-16 14:54:11', 'submission_id': '1gsmwdz'}
{'comment': 'Trump will never go against their mutual interests. I don’t see that he would ever say that - that would be too much in defense of democracy, and we know how he feels about that. No, he’s going to try to force Ukraine to cede itself back to Russia - problem solved and he’s the world’s greatest negotiator who should get the Nobel Peace Prize. /s', 'created': '2024-11-16 14:46:55', 'submission_id': '1gsmwdz'}
{'comment': 'Yeah right. He’s going to stop all military aid to Ukraine and sit back and do absolutely NOTHING when the annexation of UA begins.', 'created': '2024-11-16 21:50:49', 'submission_id': '1gsmwdz'}
{'comment': 'He would never go against Putin.', 'created': '2024-11-16 18:52:32', 'submission_id': '1gsmwdz'}
{'comment': 'Mary Trump shared her late father’s story about how Donny was being a brat at dinner and his brother picked up a bowl of mashed potatoes and dumped it on Donny’s head. \n\nThat should happen to him again.', 'created': '2024-11-17 15:20:17', 'submission_id': '1gsmwdz'}
{'comment': 'Me too. I said as much to one of my dumb ass associates after he was bitching at “the swamp being refilled”. What little fucks I had evaporated during the pandemic when we were playing Hunger Games for PPE and the same person was bitching about masking up to go get groceries.', 'created': '2024-11-16 17:03:48', 'submission_id': '1gsmwdz'}
{'comment': 'None of us should make it easy on them', 'created': '2024-11-16 21:38:08', 'submission_id': '1gsmwdz'}
{'comment': "He's gonna have a fun time making excuses for Trump when 45% of the agricultural workforce gets deported and food skyrockets.", 'created': '2024-11-16 14:53:35', 'submission_id': '1gsmwdz'}
{'comment': "This is how stupid people are.\n\nThe POTUS (especially a small gov't Republican) doesn't control prices.\n\nStart asking these people like I did before the election how is he going to lower prices? Is he going to sign an executive order that prices need to be xyz? Is he going to subsidize the cost of food and pay these big corps or give them trax breaks to lower their costs? Is the gov't going to get into the food/gas/rent business and start selling/renting for very low prices? All of these answers are ridiculous which is the point. There is nothing he can do lol", 'created': '2024-11-16 14:37:36', 'submission_id': '1gsmwdz'}
{'comment': "Well, he's not exactly wrong.\nBiden did a terrible job of communicating what was going on with inflation and he was president. You had all these companies taking advantage of the situation.\n\nKroger Executive Admits Company Gouged Prices Above Inflation\n\nhttps://www.newsweek.com/kroger-executive-admits-company-gouged-prices-above-inflation-1945742", 'created': '2024-11-17 06:10:16', 'submission_id': '1gsmwdz'}
{'comment': "Well that and many of them lied about the things they knew would be Trump plans. Project 2025 in particular... Every politician embellishes what they WILL do... If you have to lie about what you won't do to win that's a whole other level of fucked.\n\nhttps://preview.redd.it/17rfof341a1e1.png?width=500&format=pjpg&auto=webp&s=590af112d85350bf52408376a617009de6f41b56", 'created': '2024-11-16 15:49:42', 'submission_id': '1gsmwdz'}
{'comment': 'God, I hate you. (Just kidding) This is exactly what comes from their mouths. Meaning the people I know voted for him because they will increase their bank accounts. I hate capitalism. Sorry I had to edit', 'created': '2024-11-16 14:38:22', 'submission_id': '1gsmwdz'}
{'comment': 'yup, this is what my dad said. except the economy won’t even get better under trump, so he just voted away my family’s rights for no reason.\n\nit fucking sucks.', 'created': '2024-11-16 17:46:15', 'submission_id': '1gsmwdz'}
{'comment': 'The people who will get a tax cut are likely sending their kids to a private preppy school.', 'created': '2024-11-16 18:09:38', 'submission_id': '1gsmwdz'}
{'comment': 'https://www.congress.gov/bill/118th-congress/house-bill/82 \n\nIt was first introduced in 2023 but they brought it back to the table', 'created': '2024-11-17 01:26:46', 'submission_id': '1gsmwdz'}
{'comment': 'The US, from what I understand, spend an annual of 800. Billion a year, and most of that funding goes into public schools. Which the tax payer pays for. It come to about 17 some thousand a year per student. \n\nThis includes teachers salaries, also in my opinion, are completely underpaid. This also includes going right into the classrooms for supplies and services, school lunches, school maintenance. This list truly continues. If Republicans say they care about the kids and children l, why wouldn’t they want to fund their education?', 'created': '2024-11-17 00:11:04', 'submission_id': '1gsmwdz'}
{'comment': "Right now, I don't trust anyone who wasn't open about voting for Harris", 'created': '2024-11-16 14:43:51', 'submission_id': '1gsmwdz'}
{'comment': 'I’m also a federal employee. Of all of my coworkers I know that voted for Trump, they’re all poor performers. I can’t make this shit up.', 'created': '2024-11-16 15:37:23', 'submission_id': '1gsmwdz'}
{'comment': 'When bias takes over, logic and reason take vacations.', 'created': '2024-11-16 14:47:58', 'submission_id': '1gsmwdz'}
{'comment': 'They’re ok TILL they lose their job. Then- in that f’ed up MAGA logic, they’ll blame Biden somehow…', 'created': '2024-11-18 13:33:24', 'submission_id': '1gsmwdz'}
{'comment': "They think they will be fine because they can't think further than their current situation. When they have no job and no new jobs are available they will realize they are in danger and suddenly they will understand that the minorities are to blame for what is happening to them.", 'created': '2024-11-17 02:37:05', 'submission_id': '1gsmwdz'}
{'comment': '1000%', 'created': '2024-11-16 14:24:41', 'submission_id': '1gsmwdz'}
{'comment': "In a technological world of Backspace and Delete buttons... people are surprised that a vote can't be undone.", 'created': '2024-11-16 20:09:08', 'submission_id': '1gsmwdz'}
{'comment': 'They do - but they only remember their personal economic comfort and nothing else.', 'created': '2024-11-16 14:29:09', 'submission_id': '1gsmwdz'}
{'comment': 'Some of them don’t—under 22 GenZ swung heavily to the right compared to older GenZ and Millennials.', 'created': '2024-11-16 14:42:47', 'submission_id': '1gsmwdz'}
{'comment': "What the remember is the stable economy and what followed from Obama's administration. What Trump caused did not hit until the Biden administration and then Biden and Harris had to fix a bloody disaster from Trumps inaction to COVID. They remember the inflation but are too fkng stupid to connect the dots. Americans are stupid as bricks.", 'created': '2024-11-16 18:15:00', 'submission_id': '1gsmwdz'}
{'comment': 'Some of them don’t, one of the bigger percentage swings in his favor was GenZ.', 'created': '2024-11-16 15:14:20', 'submission_id': '1gsmwdz'}
{'comment': "Honestly that's a good point. I don't think they do. Even I forgot so much, because I went back and re read what he did in his first 3 months and I was just astonished", 'created': '2024-11-16 19:07:46', 'submission_id': '1gsmwdz'}
{'comment': 'You’re not wrong, but all I have to hold onto at this point is spite. This time he has full control of congress so anything he does that causes his voters to suffer is on him. There’s no one else around to blame. I’m hoping he loses a lot of his supporters this way but I also understand how brainwashed or hateful (or both) his supporters are so they may continue to support him despite literally burning with the rest of us. Dark times ahead.', 'created': '2024-11-16 14:33:18', 'submission_id': '1gsmwdz'}
{'comment': 'why are you taking one part of my comment and pretending like I said it’s too late in general? I’m saying it’s too late for them to vote for someone else.', 'created': '2024-11-16 17:12:44', 'submission_id': '1gsmwdz'}
{'comment': 'It\'s a kids "election" for President sponsored by the Nickelodeon channel.', 'created': '2024-11-18 03:49:03', 'submission_id': '1gsmwdz'}
{'comment': 'Yes, and I will do everything I can to help her but I will be saying how Trump is a demon while I do it.', 'created': '2024-11-16 15:12:21', 'submission_id': '1gsmwdz'}
{'comment': 'You are very possibly correct', 'created': '2024-11-16 16:41:15', 'submission_id': '1gsmwdz'}
{'comment': 'Google analytics says otherwise. It isn’t just anecdotes.', 'created': '2024-11-16 18:41:49', 'submission_id': '1gsmwdz'}
{'comment': "They are narcissists. They can't understand why their choices might be bad until after they get hurt. They take positions and work tirelessly against reason to justify them. They don't want to be hated but they don't want to stop doing shit that is hateful.", 'created': '2024-11-17 02:32:54', 'submission_id': '1gsmwdz'}
{'comment': 'I’m in my 60’s and did know better.', 'created': '2024-11-16 14:25:51', 'submission_id': '1gsmwdz'}
{'comment': "10 bucks says he didn't realize they would cause prices to go up.", 'created': '2024-11-16 15:17:47', 'submission_id': '1gsmwdz'}
{'comment': 'lol. Accurate!!!', 'created': '2024-11-16 20:23:52', 'submission_id': '1gsmwdz'}
{'comment': "I wonder how many young people like him there are because he didn't want to argue. He was just curious and it was a respectful conversation. To use the sports analogy again, he could tell I watch the draft and study player stats so he just wanted to know why someone working in a warehouse in a small town in Pennsylvania would root for the Red Socks.", 'created': '2024-11-16 23:05:26', 'submission_id': '1gsmwdz'}
{'comment': 'Lol', 'created': '2024-11-16 18:46:31', 'submission_id': '1gsmwdz'}
{'comment': 'Yes but it will be nothing new. His base has been raging hypocrites for nearly a decade now.', 'created': '2024-11-16 16:47:14', 'submission_id': '1gsmwdz'}
{'comment': 'The definition of “successful” is in play. I know many families who aren’t financially successful but their lives are whole. That is successful to me. But many a conservative think only of success as domination of someone by financial gain. There-in lies the problem, and it’s one of greed and bigotry.', 'created': '2024-11-16 15:33:41', 'submission_id': '1gsmwdz'}
{'comment': 'https://www.newsweek.com/veterans-health-care-cut-department-government-efficiency-1985641', 'created': '2024-11-16 19:04:13', 'submission_id': '1gsmwdz'}
{'comment': 'No, this is what they are interested in.', 'created': '2024-11-16 19:59:54', 'submission_id': '1gsmwdz'}
{'comment': 'Unimaginable. They can grieve when judgement day comes\nIn the form of their wallets!', 'created': '2024-11-16 15:22:58', 'submission_id': '1gsmwdz'}
{'comment': 'Right but that doesn’t have a direct impact yet . It will but nothings changed until January 6th', 'created': '2024-11-16 18:08:25', 'submission_id': '1gsmwdz'}
{'comment': 'How can you forget that disaster lol', 'created': '2024-11-18 03:43:24', 'submission_id': '1gsmwdz'}
{'comment': 'The bastion of integrity.', 'created': '2024-11-16 15:13:16', 'submission_id': '1gsmwdz'}
{'comment': 'Of course', 'created': '2024-11-16 22:09:45', 'submission_id': '1gsmwdz'}
{'comment': 'Mexico elected a Female President and the men there are known for their machismo. \n\nNot sure why men in the US are so afraid of a female president?', 'created': '2024-11-16 14:50:36', 'submission_id': '1gsmwdz'}
{'comment': 'Thoughts?', 'created': '2024-11-16 20:55:23', 'submission_id': '1gsmwdz'}
{'comment': "I wouldn't include people who didn't show up, they clearly DGAF - but there's enough data points to safely extrapolate either way.", 'created': '2024-11-17 20:27:29', 'submission_id': '1gsmwdz'}
{'comment': "All that's left to do is arm yourself and your family; learn how to use the weapons and be willing to do so. Get a Trust to hold the weapons in, and have your family members join the Trust so you can legally and easily use/pass down the weapons without interference.\n\nIt's going to be that bad.", 'created': '2024-11-16 19:36:43', 'submission_id': '1gsmwdz'}
{'comment': '', 'created': '2024-11-18 05:08:00', 'submission_id': '1gsmwdz'}
{'comment': 'Happy Cake Day.', 'created': '2024-11-16 17:09:57', 'submission_id': '1gsmwdz'}
{'comment': 'Government employees ARE in the workforce. And their knowledge, skills & abilities are being put to work... in the public sector. What a horrible take from your psychiatrist.', 'created': '2024-11-16 21:17:35', 'submission_id': '1gsmwdz'}
{'comment': 'Please tell her, “you’re fired”', 'created': '2024-11-17 01:13:14', 'submission_id': '1gsmwdz'}
{'comment': 'You need a new shrink asap.', 'created': '2024-11-17 00:12:42', 'submission_id': '1gsmwdz'}
{'comment': 'Honestly if your doctor uses that kind of "logic" in her life, how does she make critical diagnostic and treatment decisions? Supposedly you go to a doctor for expertise you do not have. Most people evaluate physicians based on something they can understand.\n\nExample: My surgeon dresses very sloppily, is he meticulous in his work? Maybe not\n\nI would be done with that psychiatrist now. \n\nWhat is your heuristic?', 'created': '2024-11-17 02:31:35', 'submission_id': '1gsmwdz'}
{'comment': 'Change doctors. You’ve got a MAGA there.', 'created': '2024-11-17 01:41:32', 'submission_id': '1gsmwdz'}
{'comment': 'As a mental health professional, we all know that our respective professional societies have told us he is dangerous for mental health and clients. That said, in the therapy room our job is to help you ground yourself and recognize you will be ok. I dont agree with his language but i frequently talk with my clients about hiw many things he promised last time that did not occur. Because we all need to know we will be ok right now, and get support. Not necessarily because we as professionals believe in trump or like him at all! To the contrary majority of us despise him..:but in that room, we need to remain impartial, narrow down your fears, and help you through this. Just some thoughts.', 'created': '2024-11-17 04:52:54', 'submission_id': '1gsmwdz'}
{'comment': 'How’s your mental health doing? Just wondering in light of what you wrote as some therapists are for the well-being of their clients and some are for the well-being of their bank accounts.', 'created': '2024-11-17 02:18:15', 'submission_id': '1gsmwdz'}
{'comment': 'Ask her what she thinks about RFKj taking over HHS.', 'created': '2024-11-17 06:24:33', 'submission_id': '1gsmwdz'}
{'comment': "Wow. Wild. A psych shouldn't even let you know their affiliation. But super disappointing when I hear doctors and psychiatrists are republican and trump voters. Republican is one thing, but normal ones know Trump is bad and didn't vote. \n\nI just expect better from doctors.", 'created': '2024-11-17 04:40:00', 'submission_id': '1gsmwdz'}
{'comment': 'I would have to leave.', 'created': '2024-11-17 02:41:27', 'submission_id': '1gsmwdz'}
{'comment': "She's a dip****", 'created': '2024-11-17 04:47:52', 'submission_id': '1gsmwdz'}
{'comment': 'Clearly she not the smart one in this story.', 'created': '2024-11-17 04:50:58', 'submission_id': '1gsmwdz'}
{'comment': 'Not very reassuring...', 'created': '2024-11-17 06:02:06', 'submission_id': '1gsmwdz'}
{'comment': "Holy crap. I'd have stopped the session and let them know exactly why.\n\nI could never trust the opinion or advice of someone that mentally compromised.", 'created': '2024-11-17 08:05:19', 'submission_id': '1gsmwdz'}
{'comment': "You gotta admit, Trump is going to drive so many people to the edge, he's going to fill the waiting-rooms of psychiatrists. Thats the problem with raw capitalism - there is no profit in a healthy and prosperous population 😅", 'created': '2024-11-17 09:07:38', 'submission_id': '1gsmwdz'}
{'comment': 'Your psychiatrist needs a psychiatrist.', 'created': '2024-11-17 13:00:35', 'submission_id': '1gsmwdz'}
{'comment': 'OMG if you can find someone else, do it if not, no more talking politics. I’m a life coach and I would never talk like this! Please move on if you feel u can do so. I need my coach lol yet we don’t talk politics because thankfully we are aligned.', 'created': '2024-11-17 13:41:27', 'submission_id': '1gsmwdz'}
{'comment': "Better check her credentials. Sounds like a lunatic who's stolen a doctors identity. 🤔 😆", 'created': '2024-11-17 08:37:47', 'submission_id': '1gsmwdz'}
{'comment': 'How can you work on your mental health with someone who isn’t right in their head? Get a new doctor!', 'created': '2024-11-17 15:29:47', 'submission_id': '1gsmwdz'}
{'comment': 'You need a psych with empathy.', 'created': '2024-11-18 07:22:17', 'submission_id': '1gsmwdz'}
{'comment': 'Sounds like your psychiatrist could use a shrink herself… she’s not living in reality.', 'created': '2024-11-18 13:22:30', 'submission_id': '1gsmwdz'}
{'comment': 'I thought psychiatrists were supposed to have some resistance to brainwashing, not an increased susceptibility..', 'created': '2024-11-18 18:35:23', 'submission_id': '1gsmwdz'}
{'comment': 'Remember when people were on their deathbeds from COVID and still denying it was real? I think most Trump voters are the same, and absolutely nothing will teach them.', 'created': '2024-11-16 18:46:50', 'submission_id': '1gsmwdz'}
{'comment': 'My sentiments exactly. I’m done resisting. Just let the bus roll over them all.', 'created': '2024-11-17 00:57:44', 'submission_id': '1gsmwdz'}
{'comment': 'It’s called Accelerationism. \n\nLet’s go!', 'created': '2024-11-17 00:09:16', 'submission_id': '1gsmwdz'}
{'comment': 'They will still blame democrats.', 'created': '2024-11-17 13:42:50', 'submission_id': '1gsmwdz'}
{'comment': 'Exactly', 'created': '2024-11-18 07:25:45', 'submission_id': '1gsmwdz'}
{'comment': 'She hates her job🤣', 'created': '2024-11-17 04:24:02', 'submission_id': '1gsmwdz'}
{'comment': "Ask what she would like for the DoEdu (in gov talk DOE is Dept of Energy) to do instead. Ask her how she thinks Trump would accomplish that. Ask about her union. Does she like that she has union protections at her job? Tell her about Trump's nonsupport of other unions.", 'created': '2024-11-18 15:56:58', 'submission_id': '1gsmwdz'}
{'comment': '11 children. I just … wow.', 'created': '2024-11-17 15:37:57', 'submission_id': '1gsmwdz'}
{'comment': "No, he waddles because he's always walking around with a load in his underwear.", 'created': '2024-11-17 00:27:14', 'submission_id': '1gsmwdz'}
{'comment': None, 'created': '2024-11-16 18:51:18', 'submission_id': '1gsmwdz'}
{'comment': "The cult of personality would at least be cracked. I really do believe there's something about Trump specifically that fuels MAGA. without him, I hope it starts to splinter.\n\nI'm just waiting for him to keel over, in anticipation the GOP leaders all go after each other vying for power, and implode the party.", 'created': '2024-11-16 14:28:12', 'submission_id': '1gsmwdz'}
{'comment': '\n\nJD getting ready for his inauguration', 'created': '2024-11-16 15:08:08', 'submission_id': '1gsmwdz'}
{'comment': 'Putin has Trump right where he wants him…', 'created': '2024-11-16 16:10:47', 'submission_id': '1gsmwdz'}
{'comment': 'Instead, he’s beholden to Thiel. Not sure which is worse.', 'created': '2024-11-16 15:26:14', 'submission_id': '1gsmwdz'}
{'comment': "THIS IS THE PLAN! Unless Trump dies of 'natural' causes (be real, all that McDs isn't natural), Vance will invoke the 25th no sooner than February 2027, outing Trump as being unable to serve.\n\nVance will be promoted to President in early 2027, serving the remainder of Trump's term. Then he is going to 'run' (be real, we have had our last real election) in 2028 for his first term, and then again in 2032 for his second term.\n\n**MMW, we will have Vance as a POTUS for more than 8 years.**\n\nAmerica needs to wake up. We did not elect Trump. If we ONLY elected Trump, we would be fine, because our government has checks and balances to control power.\n\nBut we have seen those checks and balances be dismantled by the SCOTUS this year. We didn't elect Trump. Trump was the poster boy. He was the golden ticket. We also didn't elect Vance, either. A never-trumper...\n\nWe elected the Heritage Foundation. Trump and Vance both are puppets.", 'created': '2024-11-16 16:01:52', 'submission_id': '1gsmwdz'}
{'comment': 'Vance is a teeny-tiny Trump wannabe. He’s not as dangerous as Trump - at least I hope not.', 'created': '2024-11-16 14:40:44', 'submission_id': '1gsmwdz'}
{'comment': 'Vance would be worse expect he is a bitch and would only be a puppet.', 'created': '2024-11-16 15:52:00', 'submission_id': '1gsmwdz'}
{'comment': "If Vance fucks couches imagine what he'll fuck in Russia while they film it from the portrait on the wall", 'created': '2024-11-16 14:26:35', 'submission_id': '1gsmwdz'}
{'comment': 'I think Vance is plyable and doesn’t have a spine. If the right people tell him what to do, then it would be better! If he does what the crazy people want him to do- we are fucked! But also he doesn’t have the personality to win over the majority of voters, so that works in our favor IMO', 'created': '2024-11-16 17:53:05', 'submission_id': '1gsmwdz'}
{'comment': "I think there's a distinction between MAGA and the Christian nationalists although a lot of the venn diagram overlaps.", 'created': '2024-11-16 16:28:09', 'submission_id': '1gsmwdz'}
{'comment': "No, he's beholden to peter thiel, a gay man who hates gays.", 'created': '2024-11-16 17:09:04', 'submission_id': '1gsmwdz'}
{'comment': 'Yeah, Vance might be more (negatively)effective, but I think I’d still be more comfortable with someone who didn’t steal top-secret documents.', 'created': '2024-11-16 18:07:59', 'submission_id': '1gsmwdz'}
{'comment': 'Vance is free to die of a massive coronary too.', 'created': '2024-11-16 18:15:40', 'submission_id': '1gsmwdz'}
{'comment': 'They’re all beholden to Vlad for tre45on’s debts and the dirt he has on elmo.', 'created': '2024-11-16 18:18:31', 'submission_id': '1gsmwdz'}
{'comment': "I don't think Vance would be worse.. I don't think he's be able to pull any ballsy moves. A lot of people seem to think he's a hidden evil genius like Pence. He's just a boring yes man who parrots literally anything Trump says.\n\nEven his background shows that at best he's just a little bitch", 'created': '2024-11-17 03:30:13', 'submission_id': '1gsmwdz'}
{'comment': 'The thing is, do we know? Vance is backed by billionaire Peter Thiel. But who is Peter Thiel backed by? Are we going to get into situation in which they are all ultimately backed by Putin?', 'created': '2024-11-17 08:33:23', 'submission_id': '1gsmwdz'}
{'comment': "I think Vance would be worse also. Hopefully, after this sht show ppl remember how nice sanity was. I still don't get how there were so many ppl who didn't vote compared to 2020. What happened!?", 'created': '2024-11-17 14:32:31', 'submission_id': '1gsmwdz'}
{'comment': 'What did they say? Reddit removed their comment', 'created': '2024-11-16 20:03:47', 'submission_id': '1gsmwdz'}
{'comment': 'Based on your response I can pretty much figure out what he said 🤣', 'created': '2024-11-16 22:24:23', 'submission_id': '1gsmwdz'}
{'comment': 'It does because they now he is crazy but Russia has him in their grip.', 'created': '2024-11-17 02:22:27', 'submission_id': '1gsmwdz'}
{'comment': 'They take the power he wields seriously, but not the man himself.', 'created': '2024-11-18 07:42:50', 'submission_id': '1gsmwdz'}
{'comment': '1st Trump lied and said he had a phone call with Putin telling him to hold back on his Ukraninan force. Putin then made a statement saying the call never happened, made another strike, and then Russian State TV showed the nude pictures of Melania that were 1st circulating the 1st time he ran, while the anchors laughed.', 'created': '2024-11-17 01:27:03', 'submission_id': '1gsmwdz'}
{'comment': 'Oh, and they made sure to refer to the nude pics as "America\'s next First Lady"', 'created': '2024-11-17 06:34:31', 'submission_id': '1gsmwdz'}
{'comment': 'The majority of the U.S. population are terrible at making decisions. They struggle to make solid household budgetary decisions much less electing competent leadership.', 'created': '2024-11-16 18:07:02', 'submission_id': '1gsmwdz'}
{'comment': 'Oh wow….Then again, he may try to appear brave to his flock', 'created': '2024-11-16 14:23:31', 'submission_id': '1gsmwdz'}
{'comment': "Realistically, unless we go the route of everyone shooting off ICBMs, America isn't ever going to get invaded. \n\nNot unless Russia, NKorea or China somehow get deep within the Mexican government, North America is basically a fortress with oceans on all of its sides.", 'created': '2024-11-16 16:06:07', 'submission_id': '1gsmwdz'}
{'comment': 'Which he will do. We all know how this movie goes. They just conveniently blame the other guy for all the bad things and take credit for all the good things.', 'created': '2024-11-16 14:59:59', 'submission_id': '1gsmwdz'}
{'comment': 'More like 75% and food is rotting in fields', 'created': '2024-11-16 15:06:34', 'submission_id': '1gsmwdz'}
{'comment': 'The only way to control prices is to install government price controls. That\'s not a free market, by definition. Countries have done it, and the US has also done it in the past. So like these people need to answer the question "Do you want a free market, or do you want the government to control prices?" Because it cannot be both. Pick one, if you want a free market, stop bitching about grocery prices. If you want price controls, stop bitching that its socialism.', 'created': '2024-11-18 15:59:56', 'submission_id': '1gsmwdz'}
{'comment': 'I know, I know. The boomer coworker who blames biden for high grocery bills refuses to admit that he’s struggling because his wife overspends and refuses to get a higher paying job.', 'created': '2024-11-16 14:40:22', 'submission_id': '1gsmwdz'}
{'comment': "They're bank accounts will not in fact be increased", 'created': '2024-11-17 01:22:03', 'submission_id': '1gsmwdz'}
{'comment': 'It really does suck.', 'created': '2024-11-16 17:54:45', 'submission_id': '1gsmwdz'}
{'comment': 'Yep', 'created': '2024-11-16 18:45:55', 'submission_id': '1gsmwdz'}
{'comment': 'Omg. Thank u', 'created': '2024-11-17 01:31:27', 'submission_id': '1gsmwdz'}
{'comment': 'I understand the tax payers pay for it, that’s mostly state and local government though. The federal government (DOE) on average contributes 16% to state funding. My state only uses 7%. It doesn’t make sense to me why this is a big deal, local and state government have and should be capable of managing their own schools districts, they’re the closest and most equipped to understand their needs. DOE was founded to ensure equal educational opportunities, which for the most part had been accomplished.\n\nTrying to find some other perspectives as to why the DOE potentially going away is a bad thing.\n\nhttps://nces.ed.gov/programs/coe/indicator/cma/public-school-revenue', 'created': '2024-11-17 04:06:10', 'submission_id': '1gsmwdz'}
{'comment': 'Indeed', 'created': '2024-11-16 14:44:20', 'submission_id': '1gsmwdz'}
{'comment': 'Yeah, I work with a catholic guy who voted for Trump because he’s pro-life….As an employee, he’s more useless than a Blockbuster card.', 'created': '2024-11-16 15:39:02', 'submission_id': '1gsmwdz'}
{'comment': 'It’s a small sample but they are also all white men who happen to be racist and misogynistic.', 'created': '2024-11-16 15:38:35', 'submission_id': '1gsmwdz'}
{'comment': '', 'created': '2024-11-16 14:48:47', 'submission_id': '1gsmwdz'}
{'comment': 'I love how Trump hasn’t returned to office yet, and he’s already causing drama.', 'created': '2024-11-18 13:34:10', 'submission_id': '1gsmwdz'}
{'comment': 'Heck, my personal economic comfort is *now* compared to 2020.', 'created': '2024-11-16 14:46:20', 'submission_id': '1gsmwdz'}
{'comment': 'Right - and if they weren’t one of the thousands of Americans who died from COVID, it’s all good.', 'created': '2024-11-16 14:49:58', 'submission_id': '1gsmwdz'}
{'comment': 'Even that isn’t an excuse; his steel tariffs fucked over all sorts of people in unrelated sectors.', 'created': '2024-11-16 15:15:01', 'submission_id': '1gsmwdz'}
{'comment': 'Comfort as in losing their jobs and needing unemployment during Covid? Which is why we ended up with inflation in the first place!', 'created': '2024-11-16 14:47:18', 'submission_id': '1gsmwdz'}
{'comment': 'They remember a check sent with his name on it...say what you want about the legality of that but it was a genius move to shore up the simple voters. I guarantee there were voters counting on getting more checks so they voted for him.', 'created': '2024-11-16 15:15:41', 'submission_id': '1gsmwdz'}
{'comment': 'This is true.', 'created': '2024-11-16 14:30:45', 'submission_id': '1gsmwdz'}
{'comment': 'While wiping their asses with coffee filters…😩', 'created': '2024-11-16 17:55:11', 'submission_id': '1gsmwdz'}
{'comment': 'Selfishness', 'created': '2024-11-16 21:01:19', 'submission_id': '1gsmwdz'}
{'comment': "Too many Americans do not understand economics on even a basic level. They don't understand the role the federal government plays & they don't understand the role the Federal Reserve plays. And they don't understand that economic recovery takes time, in years.", 'created': '2024-11-16 21:06:42', 'submission_id': '1gsmwdz'}
{'comment': 'Probably because some young guys worship Andrew Tate', 'created': '2024-11-16 15:18:00', 'submission_id': '1gsmwdz'}
{'comment': 'He had the same his first term. Midterms brought a blue wave. He should know he has to speed run the next year or so before campaigning starts. Buckle up and hold on to as much civil liberties as you can.', 'created': '2024-11-16 16:34:00', 'submission_id': '1gsmwdz'}
{'comment': 'As you should', 'created': '2024-11-16 15:13:29', 'submission_id': '1gsmwdz'}
{'comment': "Ok. I haven't looked, just questioning that any magat has the mental flexibility to change that quickly.plus, I wouldn't put anything past Russian propaganda. Notthat us voters can do anything about P01135809 beyond voting for democrats in 2026.", 'created': '2024-11-16 19:07:30', 'submission_id': '1gsmwdz'}
{'comment': 'He did argue that he didn’t want his kids learning about transgenders in school. Apparently, Harris was pushing for this.', 'created': '2024-11-16 14:27:46', 'submission_id': '1gsmwdz'}
{'comment': 'We had to explain to the same coworker how tariffs work.', 'created': '2024-11-16 15:19:39', 'submission_id': '1gsmwdz'}
{'comment': 'Yep! During Trump’s first term, I worked with a few mechanics who argued that his tax breaks allow them to make a ton of money.', 'created': '2024-11-16 15:35:04', 'submission_id': '1gsmwdz'}
{'comment': 'Didn’t the same thing happen in WWII Germany?', 'created': '2024-11-16 15:23:26', 'submission_id': '1gsmwdz'}
{'comment': 'Mexico doesn’t have the right wing media propaganda machine we do.', 'created': '2024-11-16 15:04:21', 'submission_id': '1gsmwdz'}
{'comment': 'There\'s a certain segment of men that consider themselves "alpha" that exhibit the least confidence of anyone I\'ve ever known. It\'s all bravado to cover up their lack of confidence', 'created': '2024-11-16 15:09:44', 'submission_id': '1gsmwdz'}
{'comment': 'Quotes from Zero Punctuation, I think one of Yahtzees reviews in 2015. R.I.P ZP', 'created': '2024-11-18 05:10:58', 'submission_id': '1gsmwdz'}
{'comment': 'And government employees are mental health professionals needed by the most vulnerable in society…veterans, refugees, military, children..:what a stupid thing for your psychiatrist to say! This is why psychiatrists don’t do therapy and only prescribed medications. They really have a very narrow view, out of all the mental health professionals, even though I would say that most psychiatrists would not support what he is saying.', 'created': '2024-11-17 04:55:22', 'submission_id': '1gsmwdz'}
{'comment': "I truly cannot believe that is the takeaway from a psychiatrist. The reason people think the federal government is so expendable is because it actually works so unbelievably well at an unfathomably low cost, that we don't even think about it most of the time. When it does mess up, it's almost always due to chronic underfunding or hilariously bad mismanagement.", 'created': '2024-11-18 15:53:55', 'submission_id': '1gsmwdz'}
{'comment': 'it’s great when you have doctors that agree with you! whenever I walk into my gynecologist and she sees my shirt, , she literally says to me “fuck Trump. I hate that guy!” I will never stop seeing her !', 'created': '2024-11-17 04:56:23', 'submission_id': '1gsmwdz'}
{'comment': 'Problem is that he knows better now. He has the Supreme Court assisting him. His picks may be incompetent, lacking in experience, and even crazy but they are completely loyal to his madness. I feel grief, fear, and helpless but I know I am not alone. Watching the dismantling of everything our forefathers crafted and our veterans have defended feels like a sword through the soul. I just hope that the price of gas and eggs is worth losing our country over.', 'created': '2024-11-17 06:34:32', 'submission_id': '1gsmwdz'}
{'comment': 'What possible good are you doing people by trying to give them a false sense of security? We are not going to be okay. The republic is in serious peril. People in this nation will suffer. Their children will never know a functioning democracy. \n\nFeeding people feel good lies is what Trump does. \n\nI’m really shocked by this.', 'created': '2024-11-17 15:34:40', 'submission_id': '1gsmwdz'}
{'comment': 'So, I\'m not sure how it normally works because mental health wasn\'t a thing in my house growing up. So I\'m new to all this.\n\nMy psychiatrist is a nurse practitioner, and for me to get a stimulant medication for ADHD, she has a "doctor she works with" who wrote my prescription without ever meeting me.\n\nShe also skipped drug testing me before getting the prescription, but warned me she has to test at future appointments. She scheduled 2 months out and is going to call in a refill for me next month.\n So, she gave me time to get weed out of my system before the next appointment. Otherwise, she can\'t let me stay on the new meds.\n\n\nSo, that seemed weird, but again... I don\'t know how it works. \n\nI will also say she is in a network that is known for helping people with addiction as well as behavioral issues. (Also, the closest Psych that takes my insurance)', 'created': '2024-11-17 19:30:41', 'submission_id': '1gsmwdz'}
{'comment': "Have to agree. Honestly SCARY to me there seem to be more of them and less of us, the sane ones!!! Just pissed I have to suffer because they are in a cult! He's going to do a lot more destruction this time around. Honestly ashamed to be an American these days...", 'created': '2024-11-17 04:30:41', 'submission_id': '1gsmwdz'}
{'comment': 'Yep and he was promoting not wearing masks?', 'created': '2024-11-17 04:02:19', 'submission_id': '1gsmwdz'}
{'comment': "At least they were raised to show kindness, empathy , and be self sufficient. The adults are all employed and doing well. They younger ones are being taught the consequences of voting,and will be registered to vote when they turn 18. None are republican voters, but a couple are lazy and didn't vote.", 'created': '2024-11-17 19:11:52', 'submission_id': '1gsmwdz'}
{'comment': 'And a thick abdominal apron.', 'created': '2024-11-17 20:17:33', 'submission_id': '1gsmwdz'}
{'comment': 'Arthritis is completely unrelated to dementia. The only commonality is age. Plenty of people mentally sharper than you or me have arthritis.', 'created': '2024-11-16 20:46:17', 'submission_id': '1gsmwdz'}
{'comment': 'Don’t forget that he swings golf clubs regularly.', 'created': '2024-11-17 20:10:53', 'submission_id': '1gsmwdz'}
{'comment': ">I really do believe there's something about Trump specifically that fuels MAGA.\n\nBecause it's a cult. The way they glorify and idolize him is beyond words.", 'created': '2024-11-16 15:11:39', 'submission_id': '1gsmwdz'}
{'comment': 'Yes very true. I look forward to the day when its just Jr trying to run the grift but it fails miserably', 'created': '2024-11-16 15:33:54', 'submission_id': '1gsmwdz'}
{'comment': 'Oh you know Lyin’ Ted Cruz, Gym Jordan, Marge Taylor Green, Traitorous Tulsi and Handy Boebert would be all over it if there was a Republican power vacuum. Now *that* would be fun to see!', 'created': '2024-11-16 14:43:04', 'submission_id': '1gsmwdz'}
{'comment': 'I think you make a good point. I’ve seen so many republicans try to emulate him, and it never really works. It’ll be interesting to see the vacuum that’s created someday.', 'created': '2024-11-16 15:29:04', 'submission_id': '1gsmwdz'}
{'comment': 'I agree. Trump has some secret sauce and Maga would not have the same feel with him gone.', 'created': '2024-11-16 15:31:42', 'submission_id': '1gsmwdz'}
{'comment': 'Also, I’m pretty sure Vance would be easy af to beat in a general election', 'created': '2024-11-16 15:28:17', 'submission_id': '1gsmwdz'}
{'comment': 'Nah, Q will just say this was the deep state kidnapping him and he will be back with a vengeance after he breaks free from the secret bunker under DC where he kills all the democrats and rinos and sets up his glorious thousand year reign', 'created': '2024-11-16 16:20:31', 'submission_id': '1gsmwdz'}
{'comment': 'Hopefully, you are correct. There are millions of people who have only ever voted when Trump is running. We learned a lot of them *only* vote for Trump, then leave the rest of the ballot blank. \n\nAnother thing we hope could happen is a conspiracy "theory" will emerge that he isn\'t really dead (just like JFK and JFK jr.) but rather he was kidnapped by The Deep State ™️ or some shit. They will, therefore, continue to write him in on future elections. Or not vote at all.', 'created': '2024-11-16 17:24:39', 'submission_id': '1gsmwdz'}
{'comment': 'the elections back your statement Kerri Lake lost in a state Trump won, tell me what makes her diffrent from Trump ? same election denier ; same extreme rhetoric ? same MAGA talking points, with our Trump there is no MAGA movement, and MAGA would have narrowly lost with no inflation or high interest rates', 'created': '2024-11-16 16:46:59', 'submission_id': '1gsmwdz'}
{'comment': 'Right. I can’t see fanfiction Rambo-esque, mucho macho characterizations of JD cat lady man on flags and banners and T-shirts and signs.', 'created': '2024-11-16 17:42:39', 'submission_id': '1gsmwdz'}
{'comment': "Yeah he is the glue that holds it together, it's why first off they seem to have sped up their plans to try and take over the country and second why they all are say in public they're subservient to him. If they don't he drops them and they lose any sway they have... Tbh I don't think Trump gives a shit about most of p25 but those around him definitely do and the only way to accomplish that goal is thru trump. It's like he's rubber, any normal candidate who got 34 felony charges, was found to have raped a woman or even said a thousandth of what he's said would have had their career go down in flames... But not Trump. The whole thing falls apart without him unless they enact every single thing they want to now.", 'created': '2024-11-16 15:42:31', 'submission_id': '1gsmwdz'}
{'comment': 'I’ve always thought of him as a sort of pied piper for morons.', 'created': '2024-11-17 04:59:12', 'submission_id': '1gsmwdz'}
{'comment': 'You need a personality to have a cult of personality.', 'created': '2024-11-16 16:26:38', 'submission_id': '1gsmwdz'}
{'comment': 'Eyeliner on men can be metal as fuck.. dude just doesn’t pull it off', 'created': '2024-11-16 15:29:20', 'submission_id': '1gsmwdz'}
{'comment': 'And Putin is dying of cancer. He is aging out too.', 'created': '2024-11-17 03:35:35', 'submission_id': '1gsmwdz'}
{'comment': 'Absolutely! Putin is holding something over him... maybe sexual in nature.', 'created': '2024-11-18 15:46:59', 'submission_id': '1gsmwdz'}
{'comment': 'They elected Vlad.', 'created': '2024-11-16 18:23:22', 'submission_id': '1gsmwdz'}
{'comment': 'Trump will never leave voluntarily. If he’s getting really tired, he *might* honor the two term limit. \n\nThe only way Vance will take over this tern is if Fearless Leader has an “accident”, or a tragic “age related” medical issue.', 'created': '2024-11-17 00:03:30', 'submission_id': '1gsmwdz'}
{'comment': "I really think you are overestimating Vance here. Agree about The Heritage Foundation. It's not hard to flatter Trump. He's an absolute moron", 'created': '2024-11-17 03:35:05', 'submission_id': '1gsmwdz'}
{'comment': 'Don’t forget Daddy Vladdy. He is the real winner.', 'created': '2024-11-17 11:03:59', 'submission_id': '1gsmwdz'}
{'comment': "Wouldn't Vance's possible 8 year maximum, start counting the moment he invokes the 25th?\n\n(Australian here)", 'created': '2024-11-17 03:14:31', 'submission_id': '1gsmwdz'}
{'comment': 'Part of me wants to believe this, but the other part is reminded that Thiel owns him. He’s a puppet. No matter what he privately thinks or feels, he is still going to go along with Thiel’s agenda.', 'created': '2024-11-16 15:30:18', 'submission_id': '1gsmwdz'}
{'comment': 'Vance doesn’t really know what he wants to be yet, and that’s why I find him very dangerous', 'created': '2024-11-16 14:49:20', 'submission_id': '1gsmwdz'}
{'comment': 'More.', 'created': '2024-11-16 18:22:12', 'submission_id': '1gsmwdz'}
{'comment': 'And a guy who is right hand to Putin said that they expect our obligations to them to be repaid. I mean, fuck, just come out and say it!', 'created': '2024-11-17 11:12:22', 'submission_id': '1gsmwdz'}
{'comment': 'Why would he bother? He can’t run for reelection unless they change the rules (which I won’t be surprised if they try).', 'created': '2024-11-16 14:27:06', 'submission_id': '1gsmwdz'}
{'comment': 'We have already been invaded. With misinformation and well placed foreign agents our country is now under Putin\'s power. All that is left to do is to dismantle our government, cause a major economic collapse and Americans will be fighting each other. Civil war is the best way to destabilize the USA. All done without "officially" invading our country.', 'created': '2024-11-16 17:16:15', 'submission_id': '1gsmwdz'}
{'comment': 'Yup, socialism lol oh the irony...', 'created': '2024-11-18 16:00:38', 'submission_id': '1gsmwdz'}
{'comment': 'Does he also drive a gas guzzling vehicle and lives an hour or more from work while bitching about gas prices', 'created': '2024-11-16 15:43:20', 'submission_id': '1gsmwdz'}
{'comment': 'Get out of my life!!! Get out! Lol', 'created': '2024-11-16 14:46:08', 'submission_id': '1gsmwdz'}
{'comment': 'Oh, my millennial neighbor says the same thing.', 'created': '2024-11-16 16:28:26', 'submission_id': '1gsmwdz'}
{'comment': 'I don’t hear that you care about children from your comment as much as you care more about cutting funding.Thisbis exactly what is wrong with the mindset of the conservative voter. How about instead of cutting from education we cut from where we spend money most. Military budget. Our kids deserve better than this', 'created': '2024-11-17 06:08:52', 'submission_id': '1gsmwdz'}
{'comment': 'Makes sense. Deep down they know they’re woefully inadequate. They need an outlet (or two) to project their self-hate onto so they can regain some *illusion* of control and self-worth.', 'created': '2024-11-16 18:28:59', 'submission_id': '1gsmwdz'}
{'comment': "Nope, stimulus checks, they thought trump gave them out cause he was a nice guy, kamala fucked up on that, hell she didn't mention that at all, it was Obama who eventually came in and called out the bullshit as to why those checks came out, but it was way too late", 'created': '2024-11-16 15:03:57', 'submission_id': '1gsmwdz'}
{'comment': 'It was. Trump is a terrible human being but he is a genius at branding.', 'created': '2024-11-16 15:37:47', 'submission_id': '1gsmwdz'}
{'comment': 'The wealthy who SHOULD understand economics don\'t understand that they are eventually screwed if they don\'t have a health middle class, if they don\'t have a dependable "Rule of Law", if they don\'t have less income inequality. This isn\'t just the USA but they do seem to excel here. Fkng dumb as bricks. I am exhausted from it.', 'created': '2024-11-16 22:03:08', 'submission_id': '1gsmwdz'}
{'comment': 'Because right wingers only want kids indoctrinated into their beliefs. Because somehow they’re stupid enough to believe that if you learn about something or someone different, you become that.', 'created': '2024-11-16 14:32:26', 'submission_id': '1gsmwdz'}
{'comment': "Apparently all Trump has to do is say words they don't know to sound impressive. But if Democrats do that that's looking down on the common people or some bullshit.", 'created': '2024-11-16 15:57:12', 'submission_id': '1gsmwdz'}
{'comment': 'Do they now have private jets and do they play on their yachts? 🤣🤦\u200d♂️. It is sad that the human memory is so capable of being flawed. “Gas was $1.34 a gallon under Trump” yeah but 400,000 died and you were wiping your ass with coffee filters“ yeah, I forgot about that”. Never ceases to astound me.', 'created': '2024-11-16 15:39:46', 'submission_id': '1gsmwdz'}
{'comment': "Awesome. Anyone involved in women's healthcare should hate that guy!", 'created': '2024-11-17 21:16:32', 'submission_id': '1gsmwdz'}
{'comment': 'I agree. I am deep down terrified too, but i know what i have to do to keep myself moving forward and mentally healthy. It is certainly scary, i just cant dwell on it. I have to believe and hope we will be ok with half of this world standing up to this jack off', 'created': '2024-11-18 00:15:22', 'submission_id': '1gsmwdz'}
{'comment': 'Scared and ashamed', 'created': '2024-11-17 07:05:55', 'submission_id': '1gsmwdz'}
{'comment': 'and drinking/injecting bleach?', 'created': '2024-11-17 05:34:35', 'submission_id': '1gsmwdz'}
{'comment': "I was just saying 'wow' because I both am in awe of and envy your being a parent with a big beautiful family. I did not mean to imply criticism or anything other than my limited comprehension but infinite admiration of your life.", 'created': '2024-11-17 20:08:52', 'submission_id': '1gsmwdz'}
{'comment': ' the inflammation associated with RA reduced blood flow to vital body organs, which increases the risk of developing dementia. Additionally, the study revealed that medications used by RA patients increase the risk of developing dementia. \nSame for osteoarthritis \nhttps://pmc.ncbi.nlm.nih.gov/articles/PMC11303829/\n\nhttps://pmc.ncbi.nlm.nih.gov/articles/PMC7255531/', 'created': '2024-11-16 20:56:59', 'submission_id': '1gsmwdz'}
{'comment': 'For example I have arthritis and I am much less sharper than you…….oh', 'created': '2024-11-17 08:29:57', 'submission_id': '1gsmwdz'}
{'comment': 'I totally agree that it’s a cult, but we have to recognize that the Republicans since Reagan have been setting up the perfect atmosphere for a cult leader to step in. Without Reagan, Gingrich and the religious right, Trump wouldn’t be possible.', 'created': '2024-11-16 15:33:17', 'submission_id': '1gsmwdz'}
{'comment': 'Only explanation. Those flags they fly seem to symbolize some kind of power within the cult.', 'created': '2024-11-16 15:19:13', 'submission_id': '1gsmwdz'}
{'comment': 'Trump and Musk represent to voters the fantasy of being so rich as to be exempt from the rules of society.', 'created': '2024-11-16 21:55:59', 'submission_id': '1gsmwdz'}
{'comment': 'Yea, I doubt anyone who voted for him would regret anything he does including the policies that actually hurt them. When he leaves they’ll be screaming 4 more years.', 'created': '2024-11-16 18:24:23', 'submission_id': '1gsmwdz'}
{'comment': 'The whole media misinformation machine and dark money is behind him. That seems to be the secret sauce.', 'created': '2024-11-16 17:05:05', 'submission_id': '1gsmwdz'}
{'comment': 'Who said anything about an election?', 'created': '2024-11-16 16:55:20', 'submission_id': '1gsmwdz'}
{'comment': "I'm not so sure. He's a skilled debater. Who knows - it's always so interesting to watch how debates change a race. No one thought in 2016 that Trump would become the nominee but here we are.", 'created': '2024-11-16 15:40:03', 'submission_id': '1gsmwdz'}
{'comment': "Probably, but Q has been pretty quiet lately. The real danger isn't with crazy conspiracies anymore but with the real power of Trump and what he is doing to purge non-loyalists.", 'created': '2024-11-16 16:50:22', 'submission_id': '1gsmwdz'}
{'comment': 'I’m astonished Trump has not imploded in the almost 10 years we’ve had to endure his ascent to power. I mean any one of the 12 billion shitty things he has done should have ended his popularity but he has staying power. Americans usually are way over it by this point.', 'created': '2024-11-17 11:01:07', 'submission_id': '1gsmwdz'}
{'comment': 'Trump ABSOLUTELY has a personality. To deny that is to be blind.', 'created': '2024-11-16 16:48:53', 'submission_id': '1gsmwdz'}
{'comment': "Yeah he's like a c level hair metal band from the 80s opening up for a B level hair metal band.. like Ratt in 2024", 'created': '2024-11-17 03:32:44', 'submission_id': '1gsmwdz'}
{'comment': 'Is he? Good!', 'created': '2024-11-17 11:06:17', 'submission_id': '1gsmwdz'}
{'comment': "'elected'\n\nMore like, he scooched his seat over until he was next to us, and when we went up to use the toilet, stole our seat and now is gaslighting us about never having had a seat in the first place.", 'created': '2024-11-16 18:42:23', 'submission_id': '1gsmwdz'}
{'comment': "Or if they don't want to murder someone, they will just say that he is inept and invoke the 25th, right after we are 51% through the term so Vance can be POTUS for 2 years before he runs for his first term.\n\nI want to say they are above murdering someone, but then I think of Epstein... so idk", 'created': '2024-11-17 03:20:54', 'submission_id': '1gsmwdz'}
{'comment': 'Regardless, if it is Trump for 4 years, or 2 years of both of them, Heritage is going to be able to do what they want to do', 'created': '2024-11-17 03:37:57', 'submission_id': '1gsmwdz'}
{'comment': 'Can you clarify - who is Thiel? I’ve deliberately stayed away from the news since the election. Thank you!', 'created': '2024-11-16 15:46:55', 'submission_id': '1gsmwdz'}
{'comment': 'I think Vance is very Fred Waterford in the Handmaid’s Take.', 'created': '2024-11-17 11:09:38', 'submission_id': '1gsmwdz'}
{'comment': 'Agree.', 'created': '2024-11-16 14:50:25', 'submission_id': '1gsmwdz'}
{'comment': "Well, this isn't EXACTLY true. The entire quote makes it sound like a far less blatant statement that he was paid off or something. The entire article is important, not just single convenient paragraph.", 'created': '2024-11-17 15:01:45', 'submission_id': '1gsmwdz'}
{'comment': 'Aren’t they already trying? Their argument being made that the 22nd Amendment doesn’t apply to non-consecutive terms. \n\nThe first line also says: “No person shall be elected to the office of the President more than twice…”\n\nThat right there I think is motivation enough for him to try to stay in office indefinitely.', 'created': '2024-11-16 14:34:48', 'submission_id': '1gsmwdz'}
{'comment': 'You’re right. Trump will most likely avoid angering Putin', 'created': '2024-11-16 14:28:20', 'submission_id': '1gsmwdz'}
{'comment': 'They will, but by then he will have left office feet first.', 'created': '2024-11-16 18:53:43', 'submission_id': '1gsmwdz'}
{'comment': "Yea, that is true. I was more referring to another 9-11 or a conventional invasion that would trigger NATO. That's never going to happen", 'created': '2024-11-16 17:22:37', 'submission_id': '1gsmwdz'}
{'comment': 'I completely agree with you!!!!', 'created': '2024-11-16 22:18:26', 'submission_id': '1gsmwdz'}
{'comment': "Gasoline prices that were only lower under Trump because some ass hole hadn't invaded ukraine and more importantly, because they actually have COVID to thank for that, not Trump, who gets to take credit for what covid did to gasoline prices.", 'created': '2024-11-16 22:56:32', 'submission_id': '1gsmwdz'}
{'comment': 'No, he lives near the job. However, he does have kids can’t afford.', 'created': '2024-11-16 15:45:01', 'submission_id': '1gsmwdz'}
{'comment': 'Hope everyone enjoys the last time we can afford buying Christmas presents', 'created': '2024-11-16 14:46:46', 'submission_id': '1gsmwdz'}
{'comment': 'I do care about children, I’m active in my PTO and pay attention to local elections and property tax referendums that fund 90%+ of my school district. I 100% agree military spending is excessive and needs to be addressed as well, all spending in the federal government is excessive. I am trying to understand why specifically the Dept. of Education is still needed. What does the DOE actually do to help children?\n\nI’m genuinely curious of details you are aware of. I’ve looked at their 2022-2026 budget and see very little that applies to curriculum and improving comprehension.', 'created': '2024-11-18 00:35:40', 'submission_id': '1gsmwdz'}
{'comment': 'But the same people who **constantly** *bitched* about the stimulus checks voted for Trump anyway. They bitched about others getting the checks but still used the money that they received themselves.', 'created': '2024-11-16 15:12:48', 'submission_id': '1gsmwdz'}
{'comment': 'What ever happened to investigations into fraudulent PPE loans?', 'created': '2024-11-17 12:47:36', 'submission_id': '1gsmwdz'}
{'comment': 'Exactly.', 'created': '2024-11-16 14:32:55', 'submission_id': '1gsmwdz'}
{'comment': 'Indeed', 'created': '2024-11-16 15:57:47', 'submission_id': '1gsmwdz'}
{'comment': 'Trump uses many words I don’t know. Covfefe hamberde Arizasians.', 'created': '2024-11-17 15:42:38', 'submission_id': '1gsmwdz'}
{'comment': 'They pick and choose what to remember', 'created': '2024-11-16 15:40:31', 'submission_id': '1gsmwdz'}
{'comment': 'Yes!!!', 'created': '2024-11-18 12:41:40', 'submission_id': '1gsmwdz'}
{'comment': 'That’s the one I bring up to my mom who was a nurse… still doesn’t phase her.', 'created': '2024-11-17 15:14:45', 'submission_id': '1gsmwdz'}
{'comment': 'He doesn’t have RA. He has osteoarthritis.', 'created': '2024-11-16 22:49:06', 'submission_id': '1gsmwdz'}
{'comment': 'Not everything you get off the Internet is actually appropriate for a response to something .As someone who has RA, arthritis (also known as osteoarthritis from aging and overuse)is not RA (rheumatoid arthritis)! RA is an autoimmune disorder that attacks different joints everyday. And like me many get it in 20’s-40’s! and while some of the inflammation and medications can increase dementia causes,it is a very slight link of dementia with RA and other autoimmune disorders', 'created': '2024-11-17 04:58:37', 'submission_id': '1gsmwdz'}
{'comment': 'And Fox News', 'created': '2024-11-16 17:46:23', 'submission_id': '1gsmwdz'}
{'comment': 'It’s like the Bene Gesserit plan for their Kwisatz Haderach. Except as an evil moron.\n\nEdit- actually ‘setting up the perfect atmosphere’ relates more to the Missionaria Protectiva.', 'created': '2024-11-16 17:44:33', 'submission_id': '1gsmwdz'}
{'comment': "Yup. It's called Christianity.", 'created': '2024-11-17 03:30:59', 'submission_id': '1gsmwdz'}
{'comment': 'I agree, and I believe the only thing Trump has planned is who he will point his finger at when his approval rating begins to decline.', 'created': '2024-11-17 11:50:58', 'submission_id': '1gsmwdz'}
{'comment': 'I’m going with no morals and complete lack of shame.', 'created': '2024-11-16 20:29:06', 'submission_id': '1gsmwdz'}
{'comment': '"I thought this debate wasn\'t going to be fact checked?"\n\nNot to say the Vance Walz debate wasn\'t more interesting with both of them being lucid, but man the debates have gone way down hill since 2012.', 'created': '2024-11-16 17:42:47', 'submission_id': '1gsmwdz'}
{'comment': "Oh yeah, no, I completely agree. Just saying that trump supporters won't fracture under the loss of Trump, its beyond even Donald at this point.", 'created': '2024-11-16 18:15:31', 'submission_id': '1gsmwdz'}
{'comment': 'Ah yes, the demented racist grandpa personality. It’s why he’s so popular.\n\nHe’s been a completely vapid person his whole life. Watch his TV appearances in the 80s and 90s, when he could still speak lucidly.\n\n The “personality” people are falling for is just that he now rambles endlessly about the same bigoted stuff they care about, helped along by political consultants who tell him which bigoted ideas his audience will like most.', 'created': '2024-11-16 18:19:18', 'submission_id': '1gsmwdz'}
{'comment': 'Vance.\n\nEdit: My point was the Vance has no personality, so he won’t be leading Trump’s cult after he kicks it.', 'created': '2024-11-16 16:49:11', 'submission_id': '1gsmwdz'}
{'comment': "Don't you mean Christian rock band.", 'created': '2024-11-17 12:01:50', 'submission_id': '1gsmwdz'}
{'comment': 'Trump will never forgive him. He’ll turn at least half of his followers against Vance. There will be a massive schism in the Republican Party. \n\nUnless this is part of the plan? Trump serves for a couple of years and then turns the job over to him, but… that doesn’t fit with his personality.\n\nBiden was just as stubborn, until some private polls he put out during the week of the RNC came back, showing him there was no way forward for him. Trump won’t listen to anyone. They’d have to kill him.', 'created': '2024-11-17 08:18:22', 'submission_id': '1gsmwdz'}
{'comment': 'They are going to be able to put a lot of their bullshit in place but nowhere near as much as they think they can in 2 years, even 4 years. This book is their wishlist. A dangerous wishlist. The issue for them though is that the Trump as President. The SCOTUS. His psychotic and really dumb / unqualified cabinet. The House and Senate Majority. All of these combined STILL cannot accomplish all of these especially in such a small time frame.\n\nThe truth here is that the first few ones are going to be implemented and all hell is gonna break loose in terms of global disagreements. Other countries will refuse to assist us, trade with us, share resources and at the end of the day - the billionaire support care more about the money than anything else.\n\nSure, you have the lunatics that want to resurrect zombie Hitler and shit but retaliation is going to bite this cabinet in the ass and they are going to be forced to back down on a lot. Another great example is tourism - soo much money comes in through this - when tourism is restricted.. a lot of them will change their tune.\n\nAlso, we are about to go into a huge amount of debt. Who is going to help us with that. What country will bail us out?\n\nI am not saying to not be concerned. Shit is about to get real and they are going to throw as much shit at the wall that sticks and a lot of people are in harms way. It pains me to think of all the people trapped in shit zones.\n\nThe truth, though- the REALITY is they are going to puff out their chests and they are going to globally get their asses handed to them. \n\nNo one in his cabinet knows the slightest idea how to do their jobs.\n\nThink of it this way, imagine Jared (more psychotic versions) got put into every cabinet position. They have their dicks in their hands. They will not know what to do in the event Europe says, "what you gonna about it?" \n\nTrump talks too much. This entire Republican Party does. \n\nRealistically, expect 2 years of hell and the next 2 years of stopping the bleeding because they can\'t do everything they want to do in that time. That\'s ambitious at best.\n\nAlso, keep in mind: the Republicans in fight all the time. They will turn on each other and I consider the cabinet that is being selected that same as 2016: "the first round of fires in a terrible stagging decision".\n\nI strongly encourage anyone that took the time to read this and sit and that (thank you if you read it) reflect on what matters around you, plan for struggles, protect the ones you love, be your best. It will be up to us (the people, not the government) to pick up the pieces when they devastate themselves.', 'created': '2024-11-17 12:23:33', 'submission_id': '1gsmwdz'}
{'comment': "Peter Thiel is a super crazy rich evil Republican. No joke, he once wrote that we aren't good enough for democracy. He thinks we should all be evaluated to see what sort of work we can do, and wear ankle monitors to make sure we're doing that. Women in the home, men digging ditches, and it's unclear to me what he would do with people who can't work, but considering he wants technological work camps...probably isn't good.\n\nETA: look up the crazy shit Elon Musk's grandpa was into, Curtis Yarvin, Kevin Roberts' (Heritage Foundation leader) comments on democracy. It's fuckin scary.", 'created': '2024-11-16 15:54:25', 'submission_id': '1gsmwdz'}
{'comment': 'He was a cofounder of PayPal. Actually Thiel’s company Confinity and Musk’s 1999 company X.com (ring a bell?) merged to form Paypal. Musk was originally CEO of PayPal, but the board soon fired him and replaced him with Thiel. As such, Thiel is one of the [PayPal Mafia](https://en.wikipedia.org/wiki/PayPal_Mafia).\n\nThiel went on to found Palantir, which is basically an IT consultant to law enforcement and spy agencies. They write software that agencies like the NSA, CIA, and FBI use. \n\nBut the reason that’s what Thiel does is because he’s basically a big fan of societal control. He’s authoritarian, nationalistic, but also somehow libertarian in a “rules for thee but not for me” way. As such, he’s been a big financial backer of Trump.', 'created': '2024-11-16 18:38:23', 'submission_id': '1gsmwdz'}
{'comment': 'Agreeing with chopshop.', 'created': '2024-11-16 16:17:00', 'submission_id': '1gsmwdz'}
{'comment': 'I Do not see him willingly leaving just because of some annoying rule in some document somewhere. When has he ever bothered about things like that ever? He seems to go out of his way to intentionally NOT adhere to these kinds of things if they contradict what he wants to do. He has already stated multiple times Indicating that he wants to be "president dictator King for life” like Xi and Little Rocket Man, admiring snappy subservience of the latter’s generals, and how Xi got himself named President for life. We know how much he admires Orban, enough to claim him as character reference, and clearly Putin has him by the mushroom. We saw what lengths he went to last time to try and stay, so I have less than zero confidence that he will not be more motivated, better prepared, and institutionally supported now. Only way he’s leaving is if he wants to ‘retire’ and hand it over to someone he basically appoints, or is carried out.', 'created': '2024-11-16 17:21:39', 'submission_id': '1gsmwdz'}
{'comment': 'Has anyone noted all the guardrails will be off for at least the first two years? I’m sure whoever he appoints will be of even less quality than those in his previous administration. Neither the Senate nor the House are likely to even make a pale attempt at reining him in.', 'created': '2024-11-16 22:29:00', 'submission_id': '1gsmwdz'}
{'comment': 'Ukraine is essentially handed over next year if not sooner.', 'created': '2024-11-16 14:45:37', 'submission_id': '1gsmwdz'}
{'comment': 'Exactly. I’m guessing there really is a “golden showers” tape in the Kremlin, just waiting for Trump to get out of line.', 'created': '2024-11-16 14:48:45', 'submission_id': '1gsmwdz'}
{'comment': ">because some ass hole hadn't invaded ukraine\xa0\n\n\nThe same asshole who had been meeting with both Trump and Elon secretly before the election?\xa0\n\n\nHe couldn't have known it would help, right?\xa0", 'created': '2024-11-17 04:08:49', 'submission_id': '1gsmwdz'}
{'comment': "They weren't low until COVID hit. When the economy is good, prices are up. When people are traveling during the summer, prices are up. I used to commute 100 miles round trip five days a week. I assure you, I knew exactly what the gas prices were. Fun fact, the state of Indiana raised gas taxes and continues to do so because the tax is tied to inflation too. So everyone in my state bitching and moaning that it was Biden's fault, didn't pay attention to the fact that it was their own Republican statehouse that raised them.", 'created': '2024-11-17 09:05:41', 'submission_id': '1gsmwdz'}
{'comment': "I wouldn't spend too much this year. Key word here is SAVE", 'created': '2024-11-16 19:04:03', 'submission_id': '1gsmwdz'}
{'comment': 'For Christmas I want out of this country.\n\nAlso Happy Cake Day.', 'created': '2024-11-17 15:25:57', 'submission_id': '1gsmwdz'}
{'comment': "The only ppl that bitched about them was the maga shitheads and even then it was the minority of those assholes(as crazy as that sounds) but low info voters absolutely claimed it was all trump and the reason why they was better off 4 years ago, like I said Obama literally made it a thing to call out why those checks came out, they wouldn't have done that if it was just maga that thought that way, clearly swing voters felt the same way", 'created': '2024-11-16 15:21:54', 'submission_id': '1gsmwdz'}
{'comment': ' No motor skills and aging , his $billions hired people to do everything for the Dump.', 'created': '2024-11-17 00:20:38', 'submission_id': '1gsmwdz'}
{'comment': None, 'created': '2024-11-16 22:58:56', 'submission_id': '1gsmwdz'}
{'comment': None, 'created': '2024-11-17 05:01:31', 'submission_id': '1gsmwdz'}
{'comment': 'My bad, the genesis for Fox News is probably more closely linked to Nixon, Roger Ailes specifically.', 'created': '2024-11-16 17:54:50', 'submission_id': '1gsmwdz'}
{'comment': 'It’s been a long time since I read Dune, but I think one big difference is that the Bene Gesserit were focused on producing the right sort of person, via breeding etc. \n\nWhereas the Republicans, helped along by their religion, created a cult leader shaped space which a random celebrity grifter was able to step into. (Also, Paul Atreides was pretty competent at things other than self-promotion.)', 'created': '2024-11-16 18:12:19', 'submission_id': '1gsmwdz'}
{'comment': '¿Porqué no los dos?', 'created': '2024-11-16 22:52:04', 'submission_id': '1gsmwdz'}
{'comment': 'Oof. Like Stryper meets Switchfoot', 'created': '2024-11-17 12:06:45', 'submission_id': '1gsmwdz'}
{'comment': 'I feel like I’m wearing a tin foil hat when I talk about this but it exists.', 'created': '2024-11-16 16:49:50', 'submission_id': '1gsmwdz'}
{'comment': 'Oh good Lord, another millionaire nut case.\n\nThank you for the information - I never heard of him.', 'created': '2024-11-16 15:56:03', 'submission_id': '1gsmwdz'}
{'comment': 'Thank you for this information. It’s stunningly disturbing.', 'created': '2024-11-16 19:39:16', 'submission_id': '1gsmwdz'}
{'comment': 'Not trying to doubt your theory here, but I honestly don’t believe he will remain healthy enough to stay in office beyond his 4 years (if he makes it that far)', 'created': '2024-11-16 19:07:55', 'submission_id': '1gsmwdz'}
{'comment': 'Trump is going to allow Russia to do what Germany did in WWII', 'created': '2024-11-16 14:46:15', 'submission_id': '1gsmwdz'}
{'comment': 'Ew. I don’t want to see that', 'created': '2024-11-16 14:49:04', 'submission_id': '1gsmwdz'}
{'comment': "It's like Vlad's playing chess with the world.", 'created': '2024-11-17 04:33:32', 'submission_id': '1gsmwdz'}
{'comment': 'I just had that talk with my kids. One is grown and the other is close to being grown. Christmas gifts are mostly canceled, because we need to save as much as possible. It sucks, but we will gather and celebrate the fact that we’re still together. \n\nThe hardest part is not knowing just how bad it’s going to get. I don’t want to freak out -that just makes things worse- but if history teaches us anything, it could get pretty f’in bad. I told the older one to get out of the country if possible and then work on bringing the other, more vulnerable one over. If they can manage it, I can deal with anything that comes my way and still be grateful.', 'created': '2024-11-17 02:01:08', 'submission_id': '1gsmwdz'}
{'comment': 'Thanks. Yeah, I don’t want to leave America. I hope that my friends and family aren’t going to be harmed too much by Trump’s actions.', 'created': '2024-11-17 16:00:35', 'submission_id': '1gsmwdz'}
{'comment': 'Thank you for this article. I have OA and a history of Alzheimer’s in my family. The article indicates that taking NSAIDS helps with both. 🤗', 'created': '2024-11-17 04:18:03', 'submission_id': '1gsmwdz'}
{'comment': 'Yeah, Every elderly person has OA if they live long enough…so it makes sense why elderly people might have both. Not really a correlation when you look at peer reviewed studies.', 'created': '2024-11-17 05:32:14', 'submission_id': '1gsmwdz'}
{'comment': 'His biggest risk factor is that his father had Alzheimer’s.', 'created': '2024-11-17 20:16:23', 'submission_id': '1gsmwdz'}
{'comment': 'Yep, but it still spawned the propaganda machine they have today. That, and Rush Limbaugh on AM radio. \n\nFox News was still flailing around when they had the perfect storm drop into their lap for a test run: the Clinton Lewinsky scandal. After that, they were off and running.', 'created': '2024-11-16 23:59:31', 'submission_id': '1gsmwdz'}
{'comment': "I know for a fact if I tried to tell people irl about this shit they would treat me like I was crazy. I rarely get responses when I bring it up online. The scariest part is how close these freaks of nature are to our government right now. I think people just don't want to imagine it.", 'created': '2024-11-16 18:23:20', 'submission_id': '1gsmwdz'}
{'comment': "I feel like I'm wearing a foil hat because I'm wondering why nobody is suggesting the possibility that Elon is seeking immortality via capturing an individuals human consciousness and implanting it in another. Like, say, Trump's placed in Vances brain. I seriously feel crazy thinking this, but...crazy times...", 'created': '2024-11-17 12:18:38', 'submission_id': '1gsmwdz'}
{'comment': 'What many people don\'t realize about Trump\'s rise is the extent to which it\'s a power play by conservative billionaires, to eliminate regulations, pay even less taxes, exploit workers, and so on.\n\nThiel himself commented on the billionaire support for Trump - see [Peter Thiel says Elon Musk\'s embrace of Donald Trump helped other Silicon Valley leaders feel safe supporting him](https://www.businessinsider.com/peter-thiel-elon-musk-turn-donald-trump-other-tech-ceos-2024-11):\n\n> Musk\'s embrace of Trump was key in facilitating Silicon Valley\'s shift to the right in the 2024 election.\n\n> "There was some degree to which it was safer for people to speak out when other people were speaking out," Thiel said on the podcast.\n\n> Leading up to the election, several Silicon Valley billionaires and business leaders who had previously shunned Trump or remained publicly apolitical came forward in support of the former president, including Marc Andreessen, David Sacks, and Shaun Maguire, among others.', 'created': '2024-11-16 19:47:15', 'submission_id': '1gsmwdz'}
{'comment': 'He lies to himself about his health most of all. He won’t step aside willingly.', 'created': '2024-11-17 15:13:38', 'submission_id': '1gsmwdz'}
{'comment': 'Melania doesn’t either.', 'created': '2024-11-16 14:50:48', 'submission_id': '1gsmwdz'}
{'comment': 'I have taken NSAIDS daily for years, for arthritis. Closing in on 70 and not showing signs of dementia YET.', 'created': '2024-11-17 20:14:39', 'submission_id': '1gsmwdz'}
{'comment': None, 'created': '2024-11-17 11:58:33', 'submission_id': '1gsmwdz'}
{'comment': 'All of what you say is easy to believe since that’s the path we’ve been on since the Reagan years. The power that conservative billionaires have in this country is just like the oligarchs in Russia, which ties in with what Trump eventually would like to be - a Putin-like figure with oligarchy around him and supporting him. Jeff Bezos could read the writing on the wall.', 'created': '2024-11-16 19:51:28', 'submission_id': '1gsmwdz'}
{'comment': 'Well i dont disagree with you on that', 'created': '2024-11-17 17:54:45', 'submission_id': '1gsmwdz'}
{'comment': "It's shocking to me how ignorant everyone has become.\xa0 Not that people were smart enough before, but the gross stupidity failing to understand how science & public health works (and does not) is no different than soviet lysinkoism.\xa0\xa0\n\n\nWhen the leaders in Science & Medicine are only *finance* grads, there's a problem.\xa0\xa0", 'created': '2024-11-16 07:55:19', 'submission_id': '1gshef4'}
{'comment': 'On the bright side, for every weak democrat, there’s a bunch strong Dems— just look at Wes Moore, Tim Walz, Gavin Newsom, Elizabeth Warren, AOC, Raskin etc \n\nThat being said, I understand why some elected are walking a fine line— running in swing districts, or states that need funding or fed programs, etc. but I’m confident when it comes down to it they’ll push back on what they can.\n\nManchin, Sinema, and the age of “bipartisanship” and “centrism” are gone now. Hopefully congressional Dems will prove to the people that real Democrat don’t submit to fascism', 'created': '2024-11-16 08:18:07', 'submission_id': '1gshef4'}
{'comment': 'Polis is a huge disappointment. Why do Dems always have no problems attacking each other like attacking Biden in July but are so feckless when it comes attacking Republicans. This is the problem with Dems and why they lost. They’re always more preoccupied with engaging in a circular firing squad vs uniting together and strongly attacking Republicans. They can never fully put on a true public united front and keep any disagreements/debates in house.', 'created': '2024-11-16 07:48:23', 'submission_id': '1gshef4'}
{'comment': 'Pathetic', 'created': '2024-11-16 09:11:56', 'submission_id': '1gshef4'}
{'comment': 'The Dems should open every public statement on Trump\'s plans with "This is a bad idea that will hurt most working Americans." Repeat and repeat and repeat. His ideas are either terrible or deliberately meant to hurt Americans. Still not sure which, but this subservience to Putin is certainly a factor.', 'created': '2024-11-16 14:46:18', 'submission_id': '1gshef4'}
{'comment': 'Pritzker is standing strong because he’s a real billionaire', 'created': '2024-11-16 15:13:08', 'submission_id': '1gshef4'}
{'comment': 'I think there a lot of wolves in sheep’s clothing just like Manchin. They get voted in and then flip.', 'created': '2024-11-16 15:26:11', 'submission_id': '1gshef4'}
{'comment': 'Democrats fall in love while republicans fall in line.', 'created': '2024-11-16 13:41:29', 'submission_id': '1gshef4'}
{'comment': 'This is why the GOP wins. Democrats eating their own. Stop with the fucking infighting and hand wringing. Stop posting opinion pieces. Maybe this wannabe be journalist at the Blade (whatever the fuck that is) should have called the Governors office to clarify his statement. Maybe the Governor knows the we can’t be seen as falling into the trap of “protecting the status quo” when the counter misguidedly voted for change of any kind? I don’t know the answers and none of us do. In the meantime everyone stay safe. Stay awake. And be ready. Til Valhalla!', 'created': '2024-11-16 15:40:22', 'submission_id': '1gshef4'}
{'comment': 'I’ll never understand it, if I live to be 100, why people who know better just keep caving in to Trump. Why are they so afraid of him? He’s just a bully with a big mouth. He can be dealt with, just like the bullies in grade school.', 'created': '2024-11-16 16:08:44', 'submission_id': '1gshef4'}
{'comment': 'Polis may be a “weak” Democrat, but he has the roadmap to winning over middle America which is skeptical about democratic plans. Every demographic except black women moved towards Trump and we need to be candid with ourselves about why. These purity tests are only going to make us a more obscure party. \n\nWe need to listen to both Polis and Bernie and open up our tent serving meat and potato answers to the American people. Polis toeing the line with the Trump administration is just an acceptance of the political reality we are in.', 'created': '2024-11-16 12:43:16', 'submission_id': '1gshef4'}
{'comment': "Polis founded the idea of blue State governors getting organized to resist Trump. It's really bad faith to say he's 'caving' just because he tweeted something supportive of one nominee.\n\nhttps://www.politico.com/news/2024/11/13/blue-states-unite-resist-federal-pressure-trump-00189204", 'created': '2024-11-16 16:24:10', 'submission_id': '1gshef4'}
{'comment': 'I lived in Colorado Springs and there are plenty of Trumpers. After Biden won in 2020 we had neighbors beating on our door at 4am to take our political signs down.', 'created': '2024-11-16 16:15:11', 'submission_id': '1gshef4'}
{'comment': 'He could be saying these things because he\'s cowardly and doesn\'t want to be seen as the "enemy within".', 'created': '2024-11-16 14:08:58', 'submission_id': '1gshef4'}
{'comment': "He's lap dancing for a greater cause 🫠", 'created': '2024-11-16 17:34:07', 'submission_id': '1gshef4'}
{'comment': 'Seems like somebody was unhappy with Polis’s time as a gay man in Congress…', 'created': '2024-11-17 02:50:20', 'submission_id': '1gshef4'}
{'comment': 'Well, I don’t really expect most congressional democrats to fight anyway. They just do what they do best—collapse like a broken lawn chair. 😄', 'created': '2024-11-16 15:21:41', 'submission_id': '1gshef4'}
{'comment': 'No. It’s called representing a purple state, and doing what’s best for your constituents. Democrats should understand why they don’t presently have the Senate, House, or Presidency.', 'created': '2024-11-16 16:23:54', 'submission_id': '1gshef4'}
{'comment': None, 'created': '2024-11-16 11:07:55', 'submission_id': '1gshef4'}
{'comment': "I watched an interview with Adam Kinzinger who said being in Congress easily brings out the worst in most people, especially the people of weak character to begin with. \n\nMembers of Congress can easily fall prey to the craving for relevance attention and power once they get settled in and it's a slippery slope. \n\nHe should have been applauded for his integrity but the Republican party decided to go low and stay there rather than rise to Kinzinger's example of decency.", 'created': '2024-11-16 14:11:03', 'submission_id': '1gshef4'}
{'comment': 'When establishment elite start crumbling to a strongman ruler, that’s when I get really worried about democracy. Obviously we always knew Bezos was a POS but when he genuflected to Trump and then other newspapers like the LA Times followed suit, that was a huge signal that Trump was on his way to consolidating his power. This is the pattern we’ve seen in the other 21st century fallen democracies', 'created': '2024-11-16 11:28:25', 'submission_id': '1gshef4'}
{'comment': ">That being said, I understand why some elected are walking a fine line— running in swing districts, or states that need funding or fed programs, etc. but I’m confident when it comes down to it they’ll push back on what they can.\n\nI wouldn't count on that. \n\nTrump promised retribution for people who opposed him. And I guarantee you that's why he appointed Gaetz to AG. To be his personal attack dog. \n\nWhen they start going after people, more politicians will capitulate. That's how they control dissidents.", 'created': '2024-11-16 10:05:34', 'submission_id': '1gshef4'}
{'comment': '[removed]', 'created': '2024-11-16 08:47:14', 'submission_id': '1gshef4'}
{'comment': "Tim Walz ? He gave one of the weakest debate performances I've ever seen. How tf did he not kick off that debate and Vance by saying 'the only reason my opponent showed up to this debate is because we were forced to agree to no fact checking demanded by my opponent. That means you cannot trust a single thing he says, he will lie to you throughout this debate. I am fine getting fact checked, I welcome it even if he wants to lie to you.'", 'created': '2024-11-16 19:36:05', 'submission_id': '1gshef4'}
{'comment': 'Tim Walz is not a strong democrat. His whinging about being a high school football coach to try to win over moderate conservatives fooled/impressed approximately zero people', 'created': '2024-11-16 08:47:03', 'submission_id': '1gshef4'}
{'comment': 'I wouldn\'t waste too much time on him right now except to criticize his comments. There will be time for electoral reckonings later on – if our system survives. .\n\nWe become part of that "circular firing squad" if we get too distracted from the immediate task of preserving democracy.', 'created': '2024-11-16 08:16:51', 'submission_id': '1gshef4'}
{'comment': 'This is a valid point. It reminds of parents who both love their children yet can’t get on the same page to show a united front in front of them, so the kids are confused, don’t know who to listen to, and it’s not as effective.\n\nRepublicans / MAGA I don’t think all really like Trump or anything but he’s their best shot to win so they all go that direction and this is what we get.', 'created': '2024-11-16 14:13:24', 'submission_id': '1gshef4'}
{'comment': 'They did do that', 'created': '2024-11-16 15:10:32', 'submission_id': '1gshef4'}
{'comment': "Prtitzker is standing strong WITH POLIS https://www.politico.com/news/2024/11/13/blue-states-unite-resist-federal-pressure-trump-00189204\n\nWe have to stop purity testing every little thing. Polis is skeptical of medical science, but I can tell you as someone from Boulder (where Polis is from) that a lot of very liberal people feel the same way. I'm not one of them but we shouldn't divide our coalition over it now.", 'created': '2024-11-16 16:29:39', 'submission_id': '1gshef4'}
{'comment': 'noticing this more and more', 'created': '2024-11-16 16:10:07', 'submission_id': '1gshef4'}
{'comment': "Just another reason why I tell people to check their feelings at the door when you're headed to the voting booth", 'created': '2024-11-16 17:02:31', 'submission_id': '1gshef4'}
{'comment': 'Why? There was nothing in Polis’s post that was unclear. Unless Polis was going to say that it was a fake post, seems clear that he was praising RFKJ. Nothing more needs to be said. Dems do too much explaining about their stances, and it’s why they come off as disingenuous. It looks and sounds fake when they do that. \n\nPolis agrees that vaccine mandates are a bad thing, our food is unsafe and unhealthy and the best way to fix that is to defang the FDA and CDC and replace it with ………… the wisdom of that great scientist, RFKJ. \n\nI will leave it at that.', 'created': '2024-11-17 13:05:50', 'submission_id': '1gshef4'}
{'comment': "Jewish voters didn't move towards him at all", 'created': '2024-11-16 15:09:54', 'submission_id': '1gshef4'}
{'comment': 'Or we could leverage the republican media strategy and energize their base that is partial to separation and start our own multi decade movement.\n\nWe are a nation or salvers and anti-slavers. I have no interest in subjecting my children to educational experts from states with worse education performance than most of the world, biblical scientists who this data and facts are relative, or oligarchs who will solve for 60% of the problem like businesses do and justify it as smart to bleed the middle class of what little is left.\n\nTime to move away.', 'created': '2024-11-16 14:17:42', 'submission_id': '1gshef4'}
{'comment': 'Make measles great again!', 'created': '2024-11-16 16:07:59', 'submission_id': '1gshef4'}
{'comment': 'Polis is a CO Dem, rich and has benefitted from the good work of people like Roy Romer, Bill Ritter and John Hickenlooper, all CO Dem governors who came before him. Also, if Polis were not gay, he probably could not win; his being gay provides a sheen to some pretty conservative views. \n\nGuy has always been a bit of a tool.', 'created': '2024-11-17 13:08:47', 'submission_id': '1gshef4'}
{'comment': "I suspect there's still a small percentage comparatively but they're the loudest in the room", 'created': '2024-11-16 16:53:40', 'submission_id': '1gshef4'}
{'comment': 'Yeah CO Springs used to be one of the largest pro-GOP cities in the country. It is also HQ for Focus on the Family, Dr. James Dobson’s RW religious group. However I think it just elected a Dem/Dem leaning independent for mayor right?', 'created': '2024-11-17 13:10:23', 'submission_id': '1gshef4'}
{'comment': 'If Democrats stopped voting with their feelings and started voting with the facts We would never have a Trump wave and We had loyal voters it would certainly never see extremist Republicans in office again', 'created': '2024-11-16 16:51:38', 'submission_id': '1gshef4'}
{'comment': 'CO is not really a purple state. It has voted D 5 straight elections, and every statewide office is held by Dems. It’s only had one GOP governor in the past 50 years.', 'created': '2024-11-17 13:15:24', 'submission_id': '1gshef4'}
{'comment': '👆 uneducated low information is showing', 'created': '2024-11-16 11:38:12', 'submission_id': '1gshef4'}
{'comment': 'I admire him so much!', 'created': '2024-11-16 16:09:21', 'submission_id': '1gshef4'}
{'comment': 'When you force people to take sides, many will take the side of power.', 'created': '2024-11-16 18:24:54', 'submission_id': '1gshef4'}
{'comment': 'Why is your post history nothing but blaming Dems for this? You realize people voted for the fascist right? You realize voting IS how you safeguard against fascism right? You realize no democracy is infallible, and everyone saying no way Trump can do this because our democracy safeguards us from this is an idiot, because voting WAS THE SAFEGUARD.', 'created': '2024-11-16 13:42:46', 'submission_id': '1gshef4'}
{'comment': "We have no idea what's going on behind the scenes.", 'created': '2024-11-16 08:59:40', 'submission_id': '1gshef4'}
{'comment': 'Exactly but reddit has been jerking him off ever since the pick was announced oblivious to the fact that in real life he was incredibly unpopular. Every single Kamala voter I know was ambivalent towards him and questioned the pick', 'created': '2024-11-16 20:31:52', 'submission_id': '1gshef4'}
{'comment': 'I dont see the correlation', 'created': '2024-11-16 10:27:27', 'submission_id': '1gshef4'}
{'comment': '👆 uneducated low information is showing', 'created': '2024-11-16 11:36:46', 'submission_id': '1gshef4'}
{'comment': 'So he faked being a football coach, thus trying to fool voters?\n\nYou know your guy’s whole existence is based on lies, right? No, of course you don’t.', 'created': '2024-11-16 11:03:17', 'submission_id': '1gshef4'}
{'comment': 'Yeah it frustrates the hell out of me that Democrats just can’t ever unify on a few effective lines of attack and keep repeating that shit over and over again. They keep getting distracted with internal squabbles and party purity BS. It distracts from the narrative and messaging vs putting the focus solely on how Republicans are fucking this country up.', 'created': '2024-11-16 17:54:54', 'submission_id': '1gshef4'}
{'comment': 'It was dumb but I’m for all democrats of course', 'created': '2024-11-16 16:30:49', 'submission_id': '1gshef4'}
{'comment': 'Oh for a second I wasn’t sure what you meant. Yeah, Polis is “skeptical of medical science” because apparently that reflects Colorado Democrats’ values. Not necessarily that Dems are expected to agree on everything, or that Polis is suddenly now 100% with Trump.', 'created': '2024-11-16 19:06:59', 'submission_id': '1gshef4'}
{'comment': 'I agree… but apparently not enough of us did this.', 'created': '2024-11-16 17:44:19', 'submission_id': '1gshef4'}
{'comment': 'Muslim voters went towards Donnie dementia or they went towards a third party candidate effectively helping him win', 'created': '2024-11-16 17:35:12', 'submission_id': '1gshef4'}
{'comment': 'maybe the base would be more energized if they ran on policy that a vast number of americans approve of rather than creeping incrementalism and campaigning with the chaneys.', 'created': '2024-11-16 16:49:50', 'submission_id': '1gshef4'}
{'comment': 'Nope, your denial is showing. Lost the presidency, senate, congress, still in denial. Trump is the worst candidate of all time, and democrats still couldn’t find a way to beat him. Biden and Harris both need to be held accountable.', 'created': '2024-11-16 17:58:03', 'submission_id': '1gshef4'}
{'comment': "I don't. He voted for Trump's agenda 95% of the time and also voted repeatedly to take my health insurance away with no replacement. He and the rest of the GOP can get fucked.", 'created': '2024-11-16 18:55:45', 'submission_id': '1gshef4'}
{'comment': "> You realize voting IS how you safeguard against fascism right?\n\nAnd now we're past safeguarding into stopping. Unless you want to lie down and die?", 'created': '2024-11-16 16:05:08', 'submission_id': '1gshef4'}
{'comment': "That is why they call it 'behind the scenes'", 'created': '2024-11-16 09:23:54', 'submission_id': '1gshef4'}
{'comment': "Given their history, you'll forgive me for not trusting them to do anything effective.", 'created': '2024-11-16 16:03:20', 'submission_id': '1gshef4'}
{'comment': 'The correlation is the guy spent 99% of his time trying to win over a phantom crowd of people who wanted a faux republican softie liberal instead of just being a real democrat', 'created': '2024-11-16 19:16:57', 'submission_id': '1gshef4'}
{'comment': 'Sorry I wasn’t roped in by a phony I liked Kamala but i thought Walz was a schmuck as did the majority of people not on reddit', 'created': '2024-11-16 19:15:55', 'submission_id': '1gshef4'}
{'comment': 'Bro I’m a democrat I just think the notion of Walz being a “strong democrat” is absurd the guy is faker than George Washington’s teeth I know reddit loved him but irl nobody liked him he just seems like a pansy', 'created': '2024-11-16 19:14:06', 'submission_id': '1gshef4'}
{'comment': "From the 2020 to 2024 election 5 million people decided voting wasn't important this year", 'created': '2024-11-16 18:18:27', 'submission_id': '1gshef4'}
{'comment': 'Maybe … or we can actually deal with the real problem of just a meme and propaganda culture that convinced a massive portion of the electorate on false info. I dunno, I’m tired tho. Reality is… Trump policies benefit me in the short term…long term, it sucks for all of us but a few thousand families.', 'created': '2024-11-16 17:33:49', 'submission_id': '1gshef4'}
{'comment': 'Congrats 🎉 low information MAGA! You win 🥔 and 🎤 and one 🪱, but only after your day’s picking is done. Unless you’re one tre45on promised to Vlad to bolster his drunken army at the front. 😉 \n\nBe best!', 'created': '2024-11-16 18:25:18', 'submission_id': '1gshef4'}
{'comment': 'Amen. It’s nice he was “brave” enough to recognize Trump is a lunatic but that only highlights how awful the rest of the GOP is.', 'created': '2024-11-16 19:08:11', 'submission_id': '1gshef4'}
{'comment': 'I’m so sorry that happened. Hopefully he sees the light.', 'created': '2024-11-16 19:37:51', 'submission_id': '1gshef4'}
{'comment': "I will continue to resist. I will not blame Democrats for following the Democratic process. There's a difference.", 'created': '2024-11-16 16:34:06', 'submission_id': '1gshef4'}
{'comment': 'Who was your choice?', 'created': '2024-11-17 13:01:09', 'submission_id': '1gshef4'}
{'comment': 'Again, low information. Bye!', 'created': '2024-11-16 19:58:16', 'submission_id': '1gshef4'}
{'comment': 'Fake how exactly? I’m just now learning that everything Trump does is legitimate, only speaks the truth, and is a selfless American.\n\n/s', 'created': '2024-11-16 20:00:16', 'submission_id': '1gshef4'}
{'comment': 'thinking and rationalizing are a lot harder than trolling and memeing. i dont know how to fix it either. i already know im gonna be fucked by trumps policies. i dont think even those few families will benefit in the long run.', 'created': '2024-11-16 17:42:28', 'submission_id': '1gshef4'}
{'comment': 'I’m not MAGA. Perhaps you can’t even read? Your denial is why we are here and were forced to settle with a declining Joe for so long, then an unelected Harris when there should have been a primary. Trump literally tried to overthrow a democratically elected government, Biden-Harris campaign somehow found a way to lose to him. It’s people like you who refused to remove Biden sooner should be held accountable.', 'created': '2024-11-16 20:02:25', 'submission_id': '1gshef4'}
{'comment': 'Agree.', 'created': '2024-11-16 19:38:00', 'submission_id': '1gshef4'}
{'comment': "Passive resistance won't stop them. And remember that Hitler took power through the democratic process.", 'created': '2024-11-16 16:37:59', 'submission_id': '1gshef4'}
{'comment': 'What information would I have to consume for Walz to not be a total chump with the charisma of a wet fart', 'created': '2024-11-16 20:06:44', 'submission_id': '1gshef4'}
{'comment': 'Listen to the man talk and how he tried to portray himself, and if you can’t see how incredibly disingenuous it was, even for a politician’s standards, then you are dumber than the average MAGA rat', 'created': '2024-11-16 20:08:21', 'submission_id': '1gshef4'}
{'comment': "People voted for this shitshow and that's what they are going to get. You can fake-believe that we're going to rise up suddenly, or you can plan to survive this and hope for an opportunity to turn it around later. Either way, there is no revolution coming until people are hurting so bad that they have no other choice but to fight or die.", 'created': '2024-11-16 17:54:13', 'submission_id': '1gshef4'}
{'comment': "> You can fake-believe that we're going to rise up suddenly\n\nOh, I don't expect it. But it's the only way out I can see. Because the death camps are coming.\n\n---\n\nNazi germany started by trying to deport their undesirables. When that turned out to be impractical they threw them in work camps and didn't give them enough food or medical. When they started dying they put in the gas chambers so that the other prisoners would keep working instead of trying to look after them.\n\nAmerica already has the work camps. It's just a matter of time now before the rest happens.", 'created': '2024-11-16 18:24:24', 'submission_id': '1gshef4'}
{'comment': "I laughed. they aren't even trying to make him look bad, they are just stating facts about how hes a despicable person.", 'created': '2024-11-16 05:34:57', 'submission_id': '1gsfc6r'}
{'comment': 'I take it someone has already uploaded this to Internet Archive.', 'created': '2024-11-16 05:55:58', 'submission_id': '1gsfc6r'}
{'comment': '"He is the only president in American history to be impeached twice by Congress."\n\nAfterward the senate republicans shielded him. The judges in his subsequent cases failed to do their jobs in such a way that the appearance of impropriety was clearly of no concern. So obviously it was clearly favoritism and cronyism. A willfully ignorant portion of American voters cast there votes while saying that the top voting issue, to them, was the economy. Not sure how this makes any sense as tRump straight up said he only had "concepts of a plan". \n\nAnd now, here the fuck we go again.', 'created': '2024-11-16 05:58:18', 'submission_id': '1gsfc6r'}
{'comment': '“The Trump administration’s program ‘Operation Warp Speed’ assisted in the private sector development of two approved vaccines. Nonetheless, by the time Trump left office, more than 400,000 Americans had died of COVID-19.” Damn I forgot how big the numbers were. I can’t believe people voted for him again.', 'created': '2024-11-16 06:53:55', 'submission_id': '1gsfc6r'}
{'comment': '“Before I end my letter, I pray Heaven to bestow the best of Blessings on this House and all that shall hereafter inhabit it. May none but honest and wise Men ever rule under this roof.”\n- John Adams\n\n\n…. Big ooooff. Poor guy must be rolling in his grave. But god bless America, right?', 'created': '2024-11-16 10:01:08', 'submission_id': '1gsfc6r'}
{'comment': 'I absolutely hate this pic of Trump. Feel like barfing ever time I see it. Such a fucking pretender.', 'created': '2024-11-16 10:13:25', 'submission_id': '1gsfc6r'}
{'comment': "It's actually a much more objective summary of his term than I would have written. Of course, it will be removed soon. Any presentation that is not obsequious is an offense to the crybabies on the right.", 'created': '2024-11-16 14:50:41', 'submission_id': '1gsfc6r'}
{'comment': 'Thank you for this. I took a long ass screenshot lol', 'created': '2024-11-16 08:54:38', 'submission_id': '1gsfc6r'}
{'comment': 'Saved as PDF', 'created': '2024-11-16 15:53:08', 'submission_id': '1gsfc6r'}
{'comment': 'should have used his mug shot.', 'created': '2024-11-16 17:31:09', 'submission_id': '1gsfc6r'}
{'comment': "There's really not anything that's inaccurate there, however.", 'created': '2024-11-16 07:52:39', 'submission_id': '1gsfc6r'}
{'comment': 'Melania’s killed me 🤣 💀', 'created': '2024-11-16 07:23:33', 'submission_id': '1gsfc6r'}
{'comment': 'Biden shouldn’t eschew what Trump is. I’m tired of due diligence and respect for regulation - it has to exist but give the bloated Twinkie some condign punishment beyond empty jabs.', 'created': '2024-11-16 13:57:07', 'submission_id': '1gsfc6r'}
{'comment': 'I love this. Being civil to him to his face, telling like it is online. This is what I aspire to be', 'created': '2024-11-16 14:22:04', 'submission_id': '1gsfc6r'}
{'comment': 'https://preview.redd.it/hc9onix6871e1.png?width=810&format=png&auto=webp&s=2d9477ff0edf508a6c12510c7523c75311830207', 'created': '2024-11-16 06:24:07', 'submission_id': '1gsfc6r'}
{'comment': 'Made a copy ... and copies of other stuff also. Wonder how they will change Obama and Biden.', 'created': '2024-11-16 13:51:42', 'submission_id': '1gsfc6r'}
{'comment': '> Nonetheless, by the time Trump left office, more than 400,000 Americans had died of COVID-19.\n\n> Trump lost reelection to Democratic candidate Joe Biden, but publicly claimed widespread voter fraud had affected the outcome. Supporters of President Trump traveled to Washington, D.C. for a “Save America” rally on January 6, 2021. Trump spoke to the large crowd on the Ellipse near the White House and encouraged attendees to protest the counting of the Electoral College votes in Congress. The rally turned violent when the president’s supporters overwhelmed law enforcement, breaching the United States Capitol and disrupting the vote count. Five people died as a result of the violence, and the Capitol complex suffered millions of dollars in damage.\n\n> On January 13, 2021, Trump’s actions resulted in the House of Representatives approving another article of impeachment: the incitement of insurrection. He is the only president in American history to be impeached twice by Congress.', 'created': '2024-11-16 17:54:22', 'submission_id': '1gsfc6r'}
{'comment': 'They skipped much of melanoma’s history. 🤔', 'created': '2024-11-18 20:53:06', 'submission_id': '1gsfc6r'}
{'comment': 'Saving as a PDF for archival purposes.', 'created': '2024-11-16 17:23:05', 'submission_id': '1gsfc6r'}
{'comment': 'Is this a new bio?', 'created': '2024-11-16 07:11:08', 'submission_id': '1gsfc6r'}
{'comment': 'Ikr', 'created': '2024-11-16 07:52:21', 'submission_id': '1gsfc6r'}
{'comment': 'Trump on truth social " Biden is Spreading Fake newds about me on the Whitehouse website, it was a Peaceful and patriotic protest at the Capitol, no one died it wasn\'t a big deal!! I\'m gonna Sue Biden because he hurt my feelings"', 'created': '2024-11-16 13:10:35', 'submission_id': '1gsfc6r'}
{'comment': 'Sounds too nice if you ask me...', 'created': '2024-11-16 14:13:05', 'submission_id': '1gsfc6r'}
{'comment': 'This is definitely my favorite part:\n\n>Without previous elected political experience, President Trump used unconventional methods to communicate his priorities. Most notably, he used the social media platform Twitter as a primary mechanism for direct communication with the American public, other politicians, and the press corps.\n\n\nAnd, of course, behaving like a 13-year-old girl by engaging in a Twitter slap fight with the dictator of a brutal regime about whose nuclear "button" was bigger. And based on Stormy Daniels\' unfortunately vivid descriptions -- and Trump\'s insecurities involved in needing to have a bigger "crowd" than the half-Black dude -- I think it\'s safe to say Kim Jong Un is the winner in that department.', 'created': '2024-11-16 14:59:46', 'submission_id': '1gsfc6r'}
{'comment': 'I know, right?', 'created': '2024-11-16 13:15:41', 'submission_id': '1gsfc6r'}
{'comment': '[https://archive.is/O8sc2](https://archive.is/O8sc2) \\- from 3 weeks ago\n\n[https://archive.is/Crdtu](https://archive.is/Crdtu) \\- created just now (probably exactly the same as the previous one)', 'created': '2024-11-16 06:13:09', 'submission_id': '1gsfc6r'}
{'comment': 'I hope so…for truth’s sake.', 'created': '2024-11-16 05:57:31', 'submission_id': '1gsfc6r'}
{'comment': "The Internet Archive needs mirrors in better countries.\n\nProbably Sweden? They're pretty good about the rights of the people over copyright holders, right?", 'created': '2024-11-16 06:38:17', 'submission_id': '1gsfc6r'}
{'comment': 'Three time’s a charm!', 'created': '2024-11-16 06:19:30', 'submission_id': '1gsfc6r'}
{'comment': '"Concepts of a plan" was about health.', 'created': '2024-11-16 15:01:33', 'submission_id': '1gsfc6r'}
{'comment': 'And Garland sat on his ass.', 'created': '2024-11-16 14:34:18', 'submission_id': '1gsfc6r'}
{'comment': 'Nor should you!', 'created': '2024-11-16 07:07:36', 'submission_id': '1gsfc6r'}
{'comment': 'Imagine the rest of the founding fathers? \n\nA major political party in the United States just abused the Constitution and our system of laws to put a tyrant in the White House. While the core voting block of the party behind this have been calling themselves "patriots."', 'created': '2024-11-16 11:25:01', 'submission_id': '1gsfc6r'}
{'comment': 'Such a fake smile.', 'created': '2024-11-16 10:18:11', 'submission_id': '1gsfc6r'}
{'comment': '> no one died \n\nUh, was it one shot and three had heart attacks because of suddenly exercising when completely out of shape?\n\nEdit: Or from [Wikipedia](https://en.wikipedia.org/wiki/January_6_United_States_Capitol_attack), I guess get it now before they change it too: \n\n> Within 36 hours, six people died: one was shot by Capitol Police, another died of a drug overdose, three died of natural causes, and a police officer died of natural causes a day after being assaulted by rioters.[c][33][44] Many people were injured, including 174 police officers.', 'created': '2024-11-16 14:31:04', 'submission_id': '1gsfc6r'}
{'comment': "It's just so good. I wonder how long it will [stay up](https://www.whitehouse.gov/about-the-white-house/presidents/donald-j-trump/)", 'created': '2024-11-16 10:43:49', 'submission_id': '1gsfc6r'}
{'comment': "> The Internet Archive needs mirrors in better countries.\n\nThey also don't need likely state sponsored DDoS attacks taking them down.", 'created': '2024-11-16 15:01:29', 'submission_id': '1gsfc6r'}
{'comment': 'Trump might be on the track for be the first and only president to get impeach 4 times', 'created': '2024-11-16 13:12:18', 'submission_id': '1gsfc6r'}
{'comment': 'Thanks for keeping me honest. Still stand by the post.', 'created': '2024-11-16 17:10:03', 'submission_id': '1gsfc6r'}
{'comment': "Obama's pick", 'created': '2024-11-17 03:33:49', 'submission_id': '1gsfc6r'}
{'comment': '> While the core voting block of the party behind this have been calling themselves "patriots."\n\nAll while pretending to venerate the Founding Fathers because they think that makes their "Patriotism 7476 Meter" fill up faster. \n\nThey also formed their own "tea party" backed by billionaire oligarchs who\'d have condemned the participants of the Boston Tea Party for destroying the poor East India Company\'s property and having the nerve to call it a "peaceful protest", like they always fucking do.', 'created': '2024-11-16 15:07:29', 'submission_id': '1gsfc6r'}
{'comment': 'Yep, he always has that dead look in his eyes that gives away the fake smile every time.', 'created': '2024-11-16 15:02:52', 'submission_id': '1gsfc6r'}
{'comment': '>police officer died of natural causes a day after being assaulted by rioters\n\nYeah I\'m pretty sure cause of death was "injuries sustained during attack"', 'created': '2024-11-16 19:33:54', 'submission_id': '1gsfc6r'}
{'comment': 'Until the afternoon of January 20.', 'created': '2024-11-16 19:25:02', 'submission_id': '1gsfc6r'}
{'comment': 'That’s what she said.', 'created': '2024-11-16 19:49:11', 'submission_id': '1gsfc6r'}
{'comment': "Didn't even think about that.", 'created': '2024-11-16 17:08:06', 'submission_id': '1gsfc6r'}
{'comment': 'He really has a dead look in his eyes. So creepy and dark.', 'created': '2024-11-17 00:00:52', 'submission_id': '1gsfc6r'}
{'comment': 'Pretty sure an officer lost an eye also.', 'created': '2024-11-17 11:12:50', 'submission_id': '1gsfc6r'}
{'comment': 'Trump as of right now the first and only president to get impeach twice and that only on his first term. Nixon and Clinton had there impeachment near the end of their respective terms.', 'created': '2024-11-16 19:11:06', 'submission_id': '1gsfc6r'}
{'comment': 'why is everything "house ethics" and never "Officers he committed a fucking crime, arrest him"', 'created': '2024-11-16 03:20:01', 'submission_id': '1gscuvg'}
{'comment': 'No wonder Speaker "MAGA Mike" Johnson doesn\'t want folks to see the shocking report.', 'created': '2024-11-16 03:01:37', 'submission_id': '1gscuvg'}
{'comment': "If she was a minor, she couldn't consent. He raped her.", 'created': '2024-11-16 03:28:24', 'submission_id': '1gscuvg'}
{'comment': 'Theres no way they can prevent this pipe from leaking, and so it begins\xa0', 'created': '2024-11-16 03:05:03', 'submission_id': '1gscuvg'}
{'comment': 'Someone has to have enough of a conscience to leak this so the people know what this potential unelected bureaucrat does with vulnerable people (read: MINORS)', 'created': '2024-11-16 03:14:47', 'submission_id': '1gscuvg'}
{'comment': 'Awful, vile, and I am glad we are on track to hold him accountable for this. But it begs the question, why is Trump still able to be teflon to not only similar allegations, but dozens of them? There is plenty of eyewitness testimony and even he himself bragging about sexual assault, so why the crickets? Why does he continue to get elevated to the highest positions while all of the lesser and more normal people in the world have to face consequences for \\*one\\* allegation? This is madness.', 'created': '2024-11-16 03:47:48', 'submission_id': '1gscuvg'}
{'comment': 'House Ethics Panel: “Who cares?”', 'created': '2024-11-16 03:19:16', 'submission_id': '1gscuvg'}
{'comment': "I had to explain to my sister tonight that the speaker of the house isn't a Republican. He's MAGA. There is a difference. A MAGA doesn't like John McCain because he was a decent person. They hate him because he saved ACA and stuck up for Obama. All of the MAGAs don't want the report released. Everyone else is demanding to see it. If this freak wants to be in a higher position in our government, everything is going to come out in the confirmation hearings.", 'created': '2024-11-16 04:22:07', 'submission_id': '1gscuvg'}
{'comment': 'Gross, this just get worse and worse.\xa0', 'created': '2024-11-16 03:25:09', 'submission_id': '1gscuvg'}
{'comment': 'Just read in New Yorker newsletter that Gaetz mocks the charges about his alleged criminal choices w minors by flashing pictures to colleagues of young girls/women he could have had sex with. \n\nDoesn’t the ethics committee stop investigating him now he’s resigned? Isn’t that what he was after by being loyal to he who is also named as a criminal seeking public office to be exempt from prosecution (Trump)?', 'created': '2024-11-16 03:53:31', 'submission_id': '1gscuvg'}
{'comment': 'Joining MAGA is just a way to avoid consequences for being a dipshit. The cult will take you in and claim everything is persecution.', 'created': '2024-11-16 04:20:40', 'submission_id': '1gscuvg'}
{'comment': 'If this is true, wtf is up with Merrick Garland??? Why did the DOJ not prosecute?', 'created': '2024-11-16 04:24:18', 'submission_id': '1gscuvg'}
{'comment': 'Disgusting.', 'created': '2024-11-16 03:51:45', 'submission_id': '1gscuvg'}
{'comment': 'The thing is, they do not care. If they cared about laws, integrity, humanity, etc., trump would have never been accepted as their leader years ago. They all have to be corrupt so that they all will have something on the other. People who do speak up about wrongdoing/crimes are rewarded.', 'created': '2024-11-16 05:56:36', 'submission_id': '1gscuvg'}
{'comment': '*The Justice Department spent years investigating the allegations against Gaetz, including allegations of obstruction of justice, before informing Gaetz last year that it would not bring charges.*\n\nYeah, because either someone and their family were threatened, or someone became about a million dollars richer to just "make this all go away". I no longer have ANY trust in our "justice department" after the last 8 years to be completely honest. It\'s like the U.S. Government is being ran by the Mafia now.', 'created': '2024-11-16 05:29:19', 'submission_id': '1gscuvg'}
{'comment': 'They don’t care. No one cares.', 'created': '2024-11-16 04:19:03', 'submission_id': '1gscuvg'}
{'comment': "Trump hasn't even returned to office yet and he's already nominated two rapists.", 'created': '2024-11-16 07:13:26', 'submission_id': '1gscuvg'}
{'comment': 'It has to be an embarrassing video for republicans to care, even plenty of them would say it’s ai or fake…. Sigh', 'created': '2024-11-16 03:53:47', 'submission_id': '1gscuvg'}
{'comment': 'Family values party.', 'created': '2024-11-16 04:10:25', 'submission_id': '1gscuvg'}
{'comment': 'The DOJ did not do anything. They are all corrupt.', 'created': '2024-11-16 04:38:09', 'submission_id': '1gscuvg'}
{'comment': 'Since when did republicans care about ethics?', 'created': '2024-11-16 06:53:27', 'submission_id': '1gscuvg'}
{'comment': 'I would like to offer a very special **FUCK YOU** to the FBI and DOJ investigators that choose to give Gaetz a free pass on this. Gaetz’s buddy Greenberg turned state’s evidence and still got a hefty prison sentence and yet they absolved Gaetz of all wrongdoing. \n\nhttps://www.usatoday.com/story/news/politics/2023/02/15/matt-gaetz-justice-department-investigation/11264211002/', 'created': '2024-11-16 12:41:12', 'submission_id': '1gscuvg'}
{'comment': 'Slime mold would make a better AG.', 'created': '2024-11-16 10:54:08', 'submission_id': '1gscuvg'}
{'comment': 'Having sec with a minor? Raping. She witness Gaetz raping a minor. Why is t this guy in jail awaiting trial', 'created': '2024-11-16 13:43:01', 'submission_id': '1gscuvg'}
{'comment': 'That was where some people in Alabama drew the line in 2017...', 'created': '2024-11-16 14:26:36', 'submission_id': '1gscuvg'}
{'comment': 'Arrest this POS', 'created': '2024-11-16 18:24:15', 'submission_id': '1gscuvg'}
{'comment': "The red voters won't believe it or don't care.", 'created': '2024-11-17 17:35:47', 'submission_id': '1gscuvg'}
{'comment': 'Does it matter to most people?', 'created': '2024-11-16 06:28:51', 'submission_id': '1gscuvg'}
{'comment': 'So what? With this upcoming administration, Trump would pardon anyone \nIt is pointless, just move to a different country \nThis country wants to die so let it be.', 'created': '2024-11-16 07:08:08', 'submission_id': '1gscuvg'}
{'comment': 'Agreed', 'created': '2024-11-16 03:24:22', 'submission_id': '1gscuvg'}
{'comment': 'Seriously like what the fuck', 'created': '2024-11-16 03:56:14', 'submission_id': '1gscuvg'}
{'comment': 'Republicans are protecting him', 'created': '2024-11-16 04:17:13', 'submission_id': '1gscuvg'}
{'comment': 'When the president’s friend does it, that means it is not illegal. - AG Gates', 'created': '2024-11-16 05:03:21', 'submission_id': '1gscuvg'}
{'comment': "You can thank the ever cautious and too prudent for his own good Merrick Garland for that. He didn't want to prosecute Gaetz because he didn't want to rely on the victim's credibility.\n\nSo because the attorney general was too timid to prosecute a rapist, now that rapist is in line to become the next attorney general.", 'created': '2024-11-16 07:12:56', 'submission_id': '1gscuvg'}
{'comment': 'Because the Florida age of consent is probably “breathing”', 'created': '2024-11-16 05:03:12', 'submission_id': '1gscuvg'}
{'comment': 'DOJ and FBI were very aware. They chose to let Gaetz walk while his buddy Greenberg got a decade. \n\nhttps://www.usatoday.com/story/news/politics/2023/02/15/matt-gaetz-justice-department-investigation/11264211002/', 'created': '2024-11-16 12:42:07', 'submission_id': '1gscuvg'}
{'comment': 'Same complaint Dateline NBC received during the first season of “To Catch a Predator” when the person meeting the minor wasn’t arrested after the interview. Would be so poetic if Chris Hansen himself were interviewing Gaetz.', 'created': '2024-11-16 06:10:13', 'submission_id': '1gscuvg'}
{'comment': 'Because the police *are* the government!!', 'created': '2024-11-16 09:38:43', 'submission_id': '1gscuvg'}
{'comment': 'The real answer is separation of powers. Congress is usually reluctant to allow feds to handle shit like this because it’s an intrusion of the executive branch into the affairs of the legislature. In cases like this it’s stupid but imagine a corrupt and angry president using a gutted and partisan FBI to take down political opponents in congress.', 'created': '2024-11-16 23:05:47', 'submission_id': '1gscuvg'}
{'comment': 'What does that say about maga Mike? No low bar, the bar is bouncing off the ground', 'created': '2024-11-16 03:52:14', 'submission_id': '1gscuvg'}
{'comment': 'Truly a man of god', 'created': '2024-11-16 04:35:35', 'submission_id': '1gscuvg'}
{'comment': 'And across state lines.', 'created': '2024-11-16 04:08:40', 'submission_id': '1gscuvg'}
{'comment': "Although what's the age of consent in floriduh? 12? 6? 6 weeks?", 'created': '2024-11-16 19:10:55', 'submission_id': '1gscuvg'}
{'comment': 'Question is... will it matter? Time will tell.', 'created': '2024-11-16 07:54:34', 'submission_id': '1gscuvg'}
{'comment': 'Then AG Butthead will arrested the leaker. Welcome to Newmerica.', 'created': '2024-11-16 15:52:52', 'submission_id': '1gscuvg'}
{'comment': 'Our madness is the rights "fake news."', 'created': '2024-11-16 04:43:16', 'submission_id': '1gscuvg'}
{'comment': "$$$$$...that's why", 'created': '2024-11-16 05:32:50', 'submission_id': '1gscuvg'}
{'comment': 'Maybe there was a difference, but by now, especially after 2024, the Republican Party and MAGA are synonymous', 'created': '2024-11-16 05:35:36', 'submission_id': '1gscuvg'}
{'comment': "Merrick Garland became a worthless empty suit who sat on his hands until it was too late.\n\nHe had a chance to prosecute Gaetz, but he didn't do it because he didn't want to rely on the victim's credibility.\n\nAnd now because the attorney general was too timid to prosecute a rapist, now that rapist is in line to become the next attorney general himself.", 'created': '2024-11-16 07:16:40', 'submission_id': '1gscuvg'}
{'comment': 'They care, half of them likely think they should’ve been picked for a top spot and a few of them were likely promised something for Romney or McCain.\n\nThere will be a lot of fights behind closed doors. Maya couple will make a difference.', 'created': '2024-11-16 04:02:44', 'submission_id': '1gscuvg'}
{'comment': 'Nah, nearly every Republican who voted still voted for the pedo and he just BARELY lost. The vast majority of "morals\'n\'values Christian conservatives" are cool with raping children.', 'created': '2024-11-16 19:10:02', 'submission_id': '1gscuvg'}
{'comment': "Oh no, it's at the moment of conception", 'created': '2024-11-16 05:30:09', 'submission_id': '1gscuvg'}
{'comment': '[seems appropriate](https://www.youtube.com/watch?v=IyVPyKrx0Xo)', 'created': '2024-11-16 15:41:03', 'submission_id': '1gscuvg'}
{'comment': "We're probably going to see this in the next few years", 'created': '2024-11-17 08:12:47', 'submission_id': '1gscuvg'}
{'comment': 'His ethical bar is underground. But as a fundamentalist fanatic, his level of hypocrisy is stratospheric.', 'created': '2024-11-16 04:13:18', 'submission_id': '1gscuvg'}
{'comment': 'The devil is playing limbo with that bar.', 'created': '2024-11-16 04:48:25', 'submission_id': '1gscuvg'}
{'comment': 'He’s a godly man and we’re all heathens.', 'created': '2024-11-16 07:09:15', 'submission_id': '1gscuvg'}
{'comment': 'Are you kidding me? The bar resides in Hell. The Devil has been trying to get OSHA to come down to declare the bar a tripping hazard.', 'created': '2024-11-16 08:29:58', 'submission_id': '1gscuvg'}
{'comment': 'Child molester is THE lowest', 'created': '2024-11-16 07:57:28', 'submission_id': '1gscuvg'}
{'comment': "Isn't that a federal crime?", 'created': '2024-11-16 04:20:10', 'submission_id': '1gscuvg'}
{'comment': 'Yep. Especially in Congress. \n\nThe non-MAGA Republicans pretty much all left or were defeated in primaries.', 'created': '2024-11-16 11:27:01', 'submission_id': '1gscuvg'}
{'comment': "Yeah that's what I mean. She told me she didn't vote because she doesn't agree with Democrats or Republicans and that more people need to see it from both sides. Then she went on to tell me that she found a newsletter that explains political issues from both sides. \n\nI told her that doesn't matter now because there aren't just two sides. There is Democrat, Republican, and MAGA. MAGA will literally turn a blind eye to anything as long as they win and own the libs. \n\nOur parents are deep into MAGA and brainwashed unfortunately so I think my sister is trying to stay in their good graces by saying she's not siding with either side. I honestly don't know any Republicans now. They either left the Republican party and became Democrats or they are full on MAGA. \n\nTo me there is a right and a wrong here. If you're MAGA you're likely the biggest hypocrite in the world and full of BS.", 'created': '2024-11-16 15:02:23', 'submission_id': '1gscuvg'}
{'comment': 'Not to mention he dragged his feet on the investigation of Trump... something that should have been done and over with at least a year ago.', 'created': '2024-11-16 16:43:56', 'submission_id': '1gscuvg'}
{'comment': 'Yeah no kidding', 'created': '2024-11-17 15:21:57', 'submission_id': '1gscuvg'}
{'comment': 'i’m assuming he’s trying to hide stuff about himself too', 'created': '2024-11-16 04:15:46', 'submission_id': '1gscuvg'}
{'comment': 'The devil uses it as a chin up bar.', 'created': '2024-11-16 05:21:14', 'submission_id': '1gscuvg'}
{'comment': 'Only for the poors.', 'created': '2024-11-16 04:33:31', 'submission_id': '1gscuvg'}
{'comment': 'It sure is!', 'created': '2024-11-16 04:28:14', 'submission_id': '1gscuvg'}
{'comment': 'In a few months we will enter an era where crimes are only committed by dissidents - i.e. democrats , etc - so no, effectively, it is not a crime by the time judgement rolls around.', 'created': '2024-11-16 10:22:48', 'submission_id': '1gscuvg'}
{'comment': 'Can trump kill the infrastructure bill??', 'created': '2024-11-16 01:53:31', 'submission_id': '1gsba0z'}
{'comment': "In Alabama, they parked all the money in investment banking accounts and funded a big portion of the Alabama annual budget increases with the huge interest payments from the banks.\n\nNow it's use-it-or-lose-it time, plus the interest rates are falling. They're already anticipating the expected government shortfalls and education cuts that will be coming next Spring. After the new prisons are completed Sand the new fancy State House for the super-majority Republican legislature is finished in downtown Montgomery. Now we'll do some of that infrastructure stuff.", 'created': '2024-11-16 01:58:40', 'submission_id': '1gsba0z'}
{'comment': 'Just in time. No way we lose the election next week!', 'created': '2024-11-16 03:18:23', 'submission_id': '1gsba0z'}
{'comment': 'He’ll try and fail but then take credit for all its success.', 'created': '2024-11-16 23:43:45', 'submission_id': '1gsba0z'}
{'comment': 'This is from the Washington Post - but I like how MSN lets you read the whole article without having to create an account or subscribe.\n\n*"...all of the ads were part of a single, $45 million effort created by political advisers to Tesla founder Elon Musk who had previously worked on the presidential campaign of Florida Gov. Ron DeSantis... efforts to get ads taken down were not successful. Facebook, which has pared back its ad restrictions since 2020, declined to act on a number of requests...*\n\n*"Andrew Romeo, who led the creative strategy for Building America’s Future and also worked as a spokesman for Musk’s America PAC, said they decided to simply ignore their detractors during the campaign. “People were upset on both sides of the aisle on it, said it was dishonest, disingenuous, we shouldn’t be running ads that look liked Harris’s. But it worked and the numbers are undeniable,” Romeo said. “We had a ton of inquiries on these efforts from the media. We didn’t answer any of them. We just ran our strategy and we didn’t care what anyone said. I think that we learned from the Trump campaign in that respect.”*', 'created': '2024-11-16 01:23:22', 'submission_id': '1gsaytn'}
{'comment': 'Truth in advertising, except when it comes to political ads! I saw so many of those ads in Ohio and it made me so angry!', 'created': '2024-11-16 02:43:03', 'submission_id': '1gsaytn'}
{'comment': "Elon's blood money and the fsb🇷🇺 propaganda machine cost us bigly", 'created': '2024-11-16 03:36:20', 'submission_id': '1gsaytn'}
{'comment': 'We have to all be mindful of targeted feeds, especially with AI features now that control everything we see. Every time I click on an article, my entire feed - at MSN, too - falls in line with my "interests," not even subtly. We have to make a deliberate effort to get a full picture of how things are, or at least the things that are being covered and reported.\n\nMost people make no effort at all. \n\nNot Democrats on reddit, of course. 😉', 'created': '2024-11-16 01:42:44', 'submission_id': '1gsaytn'}
{'comment': 'It will take a revolution to undo the rigged game that is the American electoral process. The current SCOTUS, and for decades to come, will not undue their own design. The rig is working to perfection.', 'created': '2024-11-16 04:01:18', 'submission_id': '1gsaytn'}
{'comment': 'here in MI too amerca pac and make america great pac. nonstop lies.', 'created': '2024-11-16 16:44:38', 'submission_id': '1gsaytn'}
{'comment': 'See:\n\nr/RepublicanValues\n\nr/GQP\n\nr/LeavingMaga', 'created': '2024-11-16 00:54:41', 'submission_id': '1gsabog'}
{'comment': 'Imagine making your wedding about another man 0.0', 'created': '2024-11-16 01:23:08', 'submission_id': '1gsabog'}
{'comment': 'That cake would literally make a better president than the one we are getting in Jan.', 'created': '2024-11-16 01:15:24', 'submission_id': '1gsabog'}
{'comment': '"I want a Trump cake."\n\nI just can\'t fathom...', 'created': '2024-11-16 01:02:03', 'submission_id': '1gsabog'}
{'comment': 'Trump and Musk within some months.\n\nhttps://preview.redd.it/jl679y7up51e1.jpeg?width=1400&format=pjpg&auto=webp&s=4dd22d7ec771dd051ca9d41b48b5fa919d6d6ed3', 'created': '2024-11-16 01:19:23', 'submission_id': '1gsabog'}
{'comment': 'This is just borderline creepy.', 'created': '2024-11-16 01:35:01', 'submission_id': '1gsabog'}
{'comment': 'Looks like a blonde Biden with a MAGA hat on.', 'created': '2024-11-16 01:42:45', 'submission_id': '1gsabog'}
{'comment': 'Is that their fucking wedding cake? What the fuck would possibly make you do that?', 'created': '2024-11-16 02:18:35', 'submission_id': '1gsabog'}
{'comment': 'MAGA shaming subs will likely be all news posts over the next four years.', 'created': '2024-11-16 01:57:19', 'submission_id': '1gsabog'}
{'comment': 'Bet the cake has more braincells than the real one...', 'created': '2024-11-16 02:21:01', 'submission_id': '1gsabog'}
{'comment': 'Why did they make a cake of Biden wearing a MAGA hat?', 'created': '2024-11-16 01:01:29', 'submission_id': '1gsabog'}
{'comment': 'Who is the woman in red? Is that the MAGA? Is this a throuple wedding?', 'created': '2024-11-16 01:43:56', 'submission_id': '1gsabog'}
{'comment': 'The cake looks like all three of those people combined.', 'created': '2024-11-16 01:57:38', 'submission_id': '1gsabog'}
{'comment': 'He wishes he looked like that cake. Paul Newman actually looks like that cake.', 'created': '2024-11-16 03:08:56', 'submission_id': '1gsabog'}
{'comment': "Ia that their wedding cake? \n\nIt's a cult.", 'created': '2024-11-16 14:56:08', 'submission_id': '1gsabog'}
{'comment': 'Concepts of when you have no life and put your whole being into a lier, narcissist, rapist, fraudster, SA’er, insurrectionist, and convicted felon 🤦\u200d♂️', 'created': '2024-11-16 03:49:43', 'submission_id': '1gsabog'}
{'comment': 'Say no more', 'created': '2024-11-16 01:49:20', 'submission_id': '1gsabog'}
{'comment': 'The cake is impressive tbh. But wtf the weird obsession with him is another level.', 'created': '2024-11-16 16:43:23', 'submission_id': '1gsabog'}
{'comment': 'Omg please someone do it!!!!', 'created': '2024-11-16 02:17:49', 'submission_id': '1gsabog'}
{'comment': "It's called R Conservative", 'created': '2024-11-16 02:22:29', 'submission_id': '1gsabog'}
{'comment': 'When does the infighting start for who succeeded Trump', 'created': '2024-11-16 03:26:24', 'submission_id': '1gsabog'}
{'comment': 'Something tells me that cake tastes like moth balls.', 'created': '2024-11-16 03:32:49', 'submission_id': '1gsabog'}
{'comment': 'It really is a sickness- seriously.', 'created': '2024-11-16 04:09:29', 'submission_id': '1gsabog'}
{'comment': 'Yes!!!', 'created': '2024-11-16 04:29:20', 'submission_id': '1gsabog'}
{'comment': 'I’m glad we’re in our petty hater era again. I was too young for the Bush years.', 'created': '2024-11-16 04:51:55', 'submission_id': '1gsabog'}
{'comment': "You can't shake the shameless.", 'created': '2024-11-16 05:09:34', 'submission_id': '1gsabog'}
{'comment': "This is what listening to a twice impeached convicted felon does to your brain cells, and judging by that cake, I'm sure there's none left.", 'created': '2024-11-16 09:56:00', 'submission_id': '1gsabog'}
{'comment': 'They are incapable of shame.', 'created': '2024-11-16 14:18:53', 'submission_id': '1gsabog'}
{'comment': 'It is obscene. Cannot unsee this mess. Yikes', 'created': '2024-11-16 16:26:50', 'submission_id': '1gsabog'}
{'comment': 'He looks like a good grandpa on that cake. Wonder if that’s what the maga people think he really looks like.', 'created': '2024-11-16 19:43:55', 'submission_id': '1gsabog'}
{'comment': 'What kind of people idolize this misogynistic, racist, criminal?', 'created': '2024-11-16 20:04:34', 'submission_id': '1gsabog'}
{'comment': 'I nominate you and then we will all follow and contribute to “magas are idiots” sub or whatever funny name you can think of', 'created': '2024-11-16 21:43:28', 'submission_id': '1gsabog'}
{'comment': 'Is this the new press secretary?', 'created': '2024-11-17 00:41:23', 'submission_id': '1gsabog'}
{'comment': 'Did the bakery run out of orange fondant?', 'created': '2024-11-17 15:48:33', 'submission_id': '1gsabog'}
{'comment': 'It’s not a cult. It’s a ✨cult ✨', 'created': '2024-11-17 20:54:50', 'submission_id': '1gsabog'}
{'comment': 'Agreed.\n\nhttps://preview.redd.it/rf5t2d9iuj1e1.jpeg?width=5796&format=pjpg&auto=webp&s=06175e217e8f4bc4cb417746a2bc92b112cffe01', 'created': '2024-11-18 00:50:30', 'submission_id': '1gsabog'}
{'comment': 'Great idea, but you can’t squeeze blood out of a turnip, as they say. No shame. They feel no shame.', 'created': '2024-11-18 03:23:04', 'submission_id': '1gsabog'}
{'comment': 'Well they are going to slice up his head so that’s good.', 'created': '2024-11-18 16:05:06', 'submission_id': '1gsabog'}
{'comment': 'Spot on.\n\nCult behavior. \n\nLike the men in cults that let the cult leader have their wives and children.', 'created': '2024-11-18 03:51:07', 'submission_id': '1gsabog'}
{'comment': 'No question about it… and the cake’s potential appointments (Duncan Hines, Pillsbury Doughboy, Betty Crocker) would ALSO be better.', 'created': '2024-11-16 01:48:18', 'submission_id': '1gsabog'}
{'comment': 'Looks better too.', 'created': '2024-11-16 03:42:12', 'submission_id': '1gsabog'}
{'comment': 'Hahaha thank you for the laugh! So true!!', 'created': '2024-11-16 21:44:48', 'submission_id': '1gsabog'}
{'comment': '🤣💀🤣', 'created': '2024-11-16 05:58:10', 'submission_id': '1gsabog'}
{'comment': 'Just one Republican needs to whisper to Trump “everyone thinks Musk is the real President and you’re his puppet…”', 'created': '2024-11-16 01:43:03', 'submission_id': '1gsabog'}
{'comment': "Yep, I've said it before it's only a matter time before that bromance or wtf ever it is will implode, I wonder what musk will do once maga turns on him", 'created': '2024-11-16 02:48:33', 'submission_id': '1gsabog'}
{'comment': 'I give it to Thanksgiving.', 'created': '2024-11-16 04:14:11', 'submission_id': '1gsabog'}
{'comment': ' Borderline? This is border invasion.', 'created': '2024-11-17 21:09:47', 'submission_id': '1gsabog'}
{'comment': 'It’s because he’s too thin. Trump hasn’t been that thin since 3rd grade.', 'created': '2024-11-16 05:08:44', 'submission_id': '1gsabog'}
{'comment': 'Yeah this doesn’t even look like Trump. Looks like those two old man Muppets.', 'created': '2024-11-16 05:16:44', 'submission_id': '1gsabog'}
{'comment': "That's the cake baker, subtly protesting this crime against nature and taste.", 'created': '2024-11-16 23:30:56', 'submission_id': '1gsabog'}
{'comment': 'Having zero life or personality', 'created': '2024-11-16 04:07:08', 'submission_id': '1gsabog'}
{'comment': 'Belonging to a cult of personality?', 'created': '2024-11-17 21:10:09', 'submission_id': '1gsabog'}
{'comment': "Yeah, I was thinking that ain't Trump.", 'created': '2024-11-16 01:31:10', 'submission_id': '1gsabog'}
{'comment': 'Maybe that was the baker’s joke', 'created': '2024-11-16 01:43:25', 'submission_id': '1gsabog'}
{'comment': 'Nobody can make me out of 50 eggs, flour and sugar.', 'created': '2024-11-16 04:54:01', 'submission_id': '1gsabog'}
{'comment': "What I wouldn't give to have another Bush over this. He was a bad president but at least people didn't blindly worship him like this and at least Bush wasn't a blatant fascist.\xa0", 'created': '2024-11-16 10:11:14', 'submission_id': '1gsabog'}
{'comment': None, 'created': '2024-11-16 02:27:11', 'submission_id': '1gsabog'}
{'comment': 'Have you forgotten the most honorable Cap’n Crunch?', 'created': '2024-11-16 02:46:03', 'submission_id': '1gsabog'}
{'comment': 'Good point! We need our military heroes to be the adults in the room.', 'created': '2024-11-16 13:03:33', 'submission_id': '1gsabog'}
{'comment': 'Secretary of Sweet Defence', 'created': '2024-11-16 03:01:38', 'submission_id': '1gsabog'}
{'comment': 'The Great Depression was made significantly worse because of the Smoot-Hawley Tariff Act of 1930 and the Fordney-McCumber Tariff Act of 1922 that, together, raised tariffs to about 60 percent. Several dozen foreign countries imposed tariffs on American goods in response.\n\nGiven Trump and his minions want to raise tariffs across the board, that will make inflation soar and weaken the economy. Given Democrats are strongly opposed to tariffs, it will be difficult to blame us for that.', 'created': '2024-11-16 01:00:13', 'submission_id': '1gsaa3v'}
{'comment': 'Let’s keep a scorecard for price comparisons today versus fast forward to 2028 under Trump/Vance.\n\nAverage Price Today November 15, 2024\n\nGas - $3.08/gallon\n\nEggs - $3.37/dozen\n\nGround Beef - $5.35/pound\n\nMilk - $3.772/gallon\n\nhttps://www.forbes.com/advisor/personal-finance/gas-prices-by-state/\n\nhttps://www.nerdwallet.com/article/finance/why-are-eggs-so-expensive\n\nhttps://www.nationalbeefwire.com/retail-ground-beef-prices-by-month-retail-ground-beef-prices-were-at-5-23-lb-in-december\n\nhttps://fred.stlouisfed.org/series/APU0000FJ1101', 'created': '2024-11-16 22:34:21', 'submission_id': '1gsaa3v'}
{'comment': 'Recessions only happen under republicans, deficits only increase under republican administrations.', 'created': '2024-11-16 20:09:31', 'submission_id': '1gsaa3v'}
{'comment': "Laughable if it wasn't true. But it is. So it's sad and terrifying.", 'created': '2024-11-16 01:24:13', 'submission_id': '1gsaa3v'}
{'comment': 'Question: If the price of eggs go down /s, is it worth it if an anti-vaxer is in charge of our health system, a sex trafficking suspect is in charge of law enforcement, a “likely” Russian asset is in charge of national intelligence, and a Fox News host is in charge of the Pentagon?', 'created': '2024-11-16 22:33:28', 'submission_id': '1gsaa3v'}
{'comment': 'Or, *"Why didn\'t Democrats do anything to stop this? They don\'t deserve my vote."*', 'created': '2024-11-16 02:43:06', 'submission_id': '1gsaa3v'}
{'comment': 'When the violence starts, it will be pointed at us', 'created': '2024-11-17 21:34:11', 'submission_id': '1gsaa3v'}
{'comment': 'Zero percent chance anything trump does will help bring prices go down. There will be some residual decrease from the Biden administration, but trump will quickly fuck that up.', 'created': '2024-11-16 17:22:38', 'submission_id': '1gsaa3v'}
{'comment': 'His leader already said it once . He takes no responsibility for anything', 'created': '2024-11-17 03:58:03', 'submission_id': '1gsaa3v'}
{'comment': 'These people are lost .. they are feeding off true fake news .. same reason you aren’t gonna change any Christian’s mind on their religion .. they gonna follow this shitshow to the end and love it', 'created': '2024-11-16 06:07:59', 'submission_id': '1gsaa3v'}
{'comment': 'Whack!', 'created': '2024-11-16 02:37:22', 'submission_id': '1gsaa3v'}
{'comment': 'We are already way to late to combat this strategy. This started a long time ago. It’s already too late folks.', 'created': '2024-11-17 16:42:44', 'submission_id': '1gsaa3v'}
{'comment': 'remindme! 6 months', 'created': '2024-11-17 21:54:14', 'submission_id': '1gsaa3v'}
{'comment': "I could use the economy to go tits up for a decade. I still got about 30 years to invest and the market is riding too high. Little economical collapse and some cheap shares won't be a terrible thing.", 'created': '2024-11-18 03:26:23', 'submission_id': '1gsaa3v'}
{'comment': 'MAGA “friends”?', 'created': '2024-11-18 03:41:02', 'submission_id': '1gsaa3v'}
{'comment': 'MAGA is already setting the stage they are saying when he takes office the news will have to tell the truth about the economy. We are already in a Great Depression and Biden is just lying to us the veil will be removed soon', 'created': '2024-11-18 03:52:18', 'submission_id': '1gsaa3v'}
{'comment': 'I am being told by my MAGA friends that the reduction in interest rates recently is the reason we are going into a major recession. That trump was handed, and i quote, "a ticking time bomb"', 'created': '2024-11-16 01:05:24', 'submission_id': '1gsaa3v'}
{'comment': 'Ferris Bueller flashback to an economic lecture recited by a right wing economist who was honest.', 'created': '2024-11-16 05:03:11', 'submission_id': '1gsaa3v'}
{'comment': '1930 GOP house seats 218 vs Dems 216. From 1932 till 1946 the Dems had control of the House. The Senate 1932 till 1946 Dems had control. History could be on track to repeat for the next 14 years more or less', 'created': '2024-11-16 13:36:57', 'submission_id': '1gsaa3v'}
{'comment': 'RemindMe! 6 months', 'created': '2024-11-16 22:41:22', 'submission_id': '1gsaa3v'}
{'comment': 'Would it not be fair then to compare the prices from Biden administration as well then?', 'created': '2024-11-17 19:36:39', 'submission_id': '1gsaa3v'}
{'comment': 'Yeah lets see how many times the govt almost shuts down too', 'created': '2024-11-17 17:57:52', 'submission_id': '1gsaa3v'}
{'comment': 'That is some crazy shit. I cannot even believe that.', 'created': '2024-11-17 22:21:05', 'submission_id': '1gsaa3v'}
{'comment': '?', 'created': '2024-11-18 03:41:26', 'submission_id': '1gsaa3v'}
{'comment': "> I am being told by my MAGA friends that the reduction in interest rates recently is the reason we are going into a major recession.\n\nBaloney. They don't know what they're talking about. The interest rate was dropped since inflation had cooled and to *prevent* the economy from going into a recession. And, of course, the Federal Reserve sets interest rates, not the President.", 'created': '2024-11-16 01:07:53', 'submission_id': '1gsaa3v'}
{'comment': 'If the public finally catches on and realizes that Trickle Down doesn’t work.', 'created': '2024-11-18 01:23:13', 'submission_id': '1gsaa3v'}
{'comment': 'I have it calendared 😃', 'created': '2024-11-16 22:44:58', 'submission_id': '1gsaa3v'}
{'comment': 'This is the Biden administration', 'created': '2024-11-17 22:20:29', 'submission_id': '1gsaa3v'}
{'comment': 'Oh, I\'m very aware! \n\nThey are going to blame it on them somehow, though. Fox News will find some hook and convince their minions it\'s real and I\'ll get to here from my father why Trump was set up to fail. Hell, might even extend that into "Trumps second term was fixed, that\'s why he deserves a third..."', 'created': '2024-11-16 01:10:33', 'submission_id': '1gsaa3v'}
{'comment': "But if the right can't tell you the slightest about how our government actually works, it will continue to be our fault?\nI look at the lack of knowledge from such a significant portion of the American population and am actually rather glad I'll not be around much longer? It's frigging terrifying!!", 'created': '2024-11-18 01:33:17', 'submission_id': '1gsaa3v'}
{'comment': 'It only works if your rich. Am I right?', 'created': '2024-11-18 01:41:54', 'submission_id': '1gsaa3v'}
{'comment': 'Well, it doesn’t trickle DOWN so much as it trickles UP.', 'created': '2024-11-18 01:42:52', 'submission_id': '1gsaa3v'}
{'comment': 'Or a republican politician taking “campaign contributions.”', 'created': '2024-11-18 02:58:59', 'submission_id': '1gsaa3v'}
{'comment': 'Thanks 😊', 'created': '2024-11-18 03:51:05', 'submission_id': '1gsaa3v'}
{'comment': '" great news Luther gave us a billion dollars"', 'created': '2024-11-18 03:37:34', 'submission_id': '1gsaa3v'}
{'comment': 'Socialism for the rich and rugged individualism for everyone else', 'created': '2024-11-16 00:13:12', 'submission_id': '1gs9foq'}
{'comment': 'Plenty of medicare and medicaid recipients in red and swing states wanted this. I hope they get exactly what they voted for.', 'created': '2024-11-16 02:00:11', 'submission_id': '1gs9foq'}
{'comment': '“Here’s who will be affected” - uh. Anyone on Medicaid. This is what the “people” wanted. Hope they choke on it.', 'created': '2024-11-16 02:47:20', 'submission_id': '1gs9foq'}
{'comment': '🍿!', 'created': '2024-11-16 02:02:51', 'submission_id': '1gs9foq'}
{'comment': 'Depression', 'created': '2024-11-16 02:50:27', 'submission_id': '1gs9foq'}
{'comment': 'Okay. This is the mandate of the people', 'created': '2024-11-16 01:51:06', 'submission_id': '1gs9foq'}
{'comment': 'Sexism will end the world.', 'created': '2024-11-16 02:56:42', 'submission_id': '1gs9foq'}
{'comment': 'The wannabe dictator clearly said he doesn\'t care about the people who voted for him. He made it abundantly clear everyday what type of "leader" he would be. Why are the people who voted for him surprised?\n\nOf course he and his cabal are going to enrich themselves and their friends off the backs of the poor and the middle class.', 'created': '2024-11-16 04:26:23', 'submission_id': '1gs9foq'}
{'comment': 'The odds of me ever visiting the us are plummeting even further.', 'created': '2024-11-16 05:31:01', 'submission_id': '1gs9foq'}
{'comment': "I live with severe chronic pain as a result of nerve damage in my limbs. I no longer have a sleep cycle because the pain gets worse the quieter my mind is. So trying to go to sleep has become an impossibility. I already scrape to get by. The system is punitive as it is. If I try to do anything to improve my situation I get dinged financially. I can't do anything consistantly because the pain determines when I can pass out. And I only can stay asleep for a couple hours at best. And then another long day of pain takes hold. Sometime my days last 2 - 3 days before I can sleep again. Cutting my disability any further will be a death sentence. And I have a friend, a veteran who is in worse shape than me. Man injured himself serving the country and the VA already treats him like crap. And now they want to cut his freaking Medicaid? Screw those entitled bastards.\n\nAnd I just had a review from SS where the freaking reviewer totally filled in all wrong numbers concerning my eligibility. Literally pulling numbers out of a hat. It had no basis is reality. I have had to get a lawyer to deal with this cretin every year he comes in trying to take me down. This was the worst year. Literally inventing numbers to try to knock me off disability.", 'created': '2024-11-16 07:06:43', 'submission_id': '1gs9foq'}
{'comment': 'This worries me a lot, I use Medicaid and have had no luck finding a job since 2020.', 'created': '2024-11-16 06:49:12', 'submission_id': '1gs9foq'}
{'comment': 'Unfortunately, there are plenty of poor Republicans who are ok with cuts to Medicaid, if Trump is still willing to go after certain minorities and transgenders.', 'created': '2024-11-16 14:45:31', 'submission_id': '1gs9foq'}
{'comment': "This won't end well for his administration.", 'created': '2024-11-16 04:33:30', 'submission_id': '1gs9foq'}
{'comment': 'If this does actually end up happening, that thing that he said about disabled people just dying because of something something burden to society something something, might actually just happen.', 'created': '2024-11-16 16:03:55', 'submission_id': '1gs9foq'}
{'comment': 'Another article that should have been written before the election.', 'created': '2024-11-16 18:28:49', 'submission_id': '1gs9foq'}
{'comment': 'All these rural voters are gonna be shocked when their hospital closes and they have to drive 90 minutes to get to an ER', 'created': '2024-11-16 19:04:37', 'submission_id': '1gs9foq'}
{'comment': 'I’ll take what’s classy when you’re rich and trashy when you’re poor for $500, Alex', 'created': '2024-11-16 02:59:07', 'submission_id': '1gs9foq'}
{'comment': 'So very true.', 'created': '2024-11-16 02:52:28', 'submission_id': '1gs9foq'}
{'comment': 'Pull yourself up by your bootstraps for the 99%.', 'created': '2024-11-16 05:57:04', 'submission_id': '1gs9foq'}
{'comment': 'Sure, but there are also lots of blue voters in red states. I don’t want anyone to suffer. It’s not like that’s going to fix anything or make the misinformation stop.', 'created': '2024-11-16 03:34:27', 'submission_id': '1gs9foq'}
{'comment': 'Yup. 👍', 'created': '2024-11-16 02:45:24', 'submission_id': '1gs9foq'}
{'comment': 'Amen!', 'created': '2024-11-16 04:12:48', 'submission_id': '1gs9foq'}
{'comment': 'Yeah but my parents will get it too.', 'created': '2024-11-16 10:58:57', 'submission_id': '1gs9foq'}
{'comment': None, 'created': '2024-11-16 03:20:12', 'submission_id': '1gs9foq'}
{'comment': '"This is what the American people wanted when they voted for Donald trump"', 'created': '2024-11-16 01:56:35', 'submission_id': '1gs9foq'}
{'comment': 'Same. My dad has a serious heart condition, and has spent most of his life working in schools. He doesn’t make much money despite his job being essential to society. He relies on Medicaid. I’m terrified. \n\nWe all voted for Kamala. Fucking sucks that millions who voted for her will be affected.', 'created': '2024-11-16 04:10:36', 'submission_id': '1gs9foq'}
{'comment': "Agreed he is trolling us and it's working", 'created': '2024-11-16 00:29:38', 'submission_id': '1gs9cyh'}
{'comment': 'This is the way.', 'created': '2024-11-16 02:56:42', 'submission_id': '1gs9cyh'}
{'comment': 'It makes the workplace more interesting', 'created': '2024-11-16 14:48:03', 'submission_id': '1gs9cyh'}
{'comment': 'and say to the people around you - "I didn\'t vote for him."', 'created': '2024-11-16 18:01:18', 'submission_id': '1gs9cyh'}
{'comment': 'This is exactly it. He wants each outrage to be a new and independent shock to the system, but they aren’t. Each one is a symptom of the same problem. Point people’s attention to that.', 'created': '2024-11-17 16:36:25', 'submission_id': '1gs9cyh'}
{'comment': 'Not for long.', 'created': '2024-11-16 02:35:30', 'submission_id': '1gs9cyh'}
{'comment': 'I love this guy!', 'created': '2024-11-16 00:04:11', 'submission_id': '1gs999n'}
{'comment': 'Andy Kim seems like a good dude.', 'created': '2024-11-16 00:28:53', 'submission_id': '1gs999n'}
{'comment': 'From Texas with love and support you go Senator-Elect Andy Kim', 'created': '2024-11-16 00:20:41', 'submission_id': '1gs999n'}
{'comment': 'I like this guy', 'created': '2024-11-16 00:33:22', 'submission_id': '1gs999n'}
{'comment': "I'm proud of my early support for Andy Kim. A small contribution just after he declared. \n\nLooking forward to his career in the Senate – and possibly beyond.", 'created': '2024-11-16 01:08:38', 'submission_id': '1gs999n'}
{'comment': 'I heard his interview with PSA today. It was good. I wish him luck and joy.', 'created': '2024-11-16 01:31:20', 'submission_id': '1gs999n'}
{'comment': 'The Severance shout out ❤', 'created': '2024-11-16 01:02:24', 'submission_id': '1gs999n'}
{'comment': 'The Capitol must have its own sign making department for how often they have to change those office signs.', 'created': '2024-11-16 01:18:18', 'submission_id': '1gs999n'}
{'comment': 'So happy for him. He’s a decent dude.', 'created': '2024-11-16 01:55:43', 'submission_id': '1gs999n'}
{'comment': 'Good luck! You embody the American dream but it is so sad that you will likely face so much racism and hate', 'created': '2024-11-16 02:13:20', 'submission_id': '1gs999n'}
{'comment': 'Very happy for him! Such a generous individual.', 'created': '2024-11-16 02:36:56', 'submission_id': '1gs999n'}
{'comment': "Looks like Jonah Ryan's office.", 'created': '2024-11-16 03:11:24', 'submission_id': '1gs999n'}
{'comment': 'Hope he leaves xitter.', 'created': '2024-11-16 16:15:37', 'submission_id': '1gs999n'}
{'comment': 'Congratulations Senator Kim. from Los Angeles CA', 'created': '2024-11-16 03:58:32', 'submission_id': '1gs999n'}
{'comment': 'Potential Presidential contender in 2028? Or even a Vice President. He’s got a political profile that could easily adjust and play well on the national stage. Anti Corruption/reformer guy who is a progressive and wants change.', 'created': '2024-11-16 04:14:06', 'submission_id': '1gs999n'}
{'comment': 'I hope he goes far!! Like him a lot!', 'created': '2024-11-16 06:50:10', 'submission_id': '1gs999n'}
{'comment': 'Before I moved from NJ to California, I had the privilege to vote for first time, unknown candidate Andy Kim in his very first race, against big pharma jerkoff Tom Macsomething… I’m in my forties and have been voting since 18. Looking back, that’s the proudest vote of my life, easily. \nKeep kicking ass Andy, show ‘em what it means to be from NJ.', 'created': '2024-11-17 03:41:46', 'submission_id': '1gs999n'}
{'comment': 'Congratz Senator Andy Kim. Sending love from the Oregon Cascades ☔️🌲💙🌲💙☔️', 'created': '2024-11-16 03:50:07', 'submission_id': '1gs999n'}
{'comment': 'Season 2 in January. At least that’s one good thing happening next year.', 'created': '2024-11-17 04:45:41', 'submission_id': '1gs999n'}
{'comment': 'Well, bad apples have worms.', 'created': '2024-11-16 00:12:49', 'submission_id': '1gs8yvc'}
{'comment': 'Honestly, given what he’s about to do, I’m perfectly happy with him disclaiming any ties to the democrats.', 'created': '2024-11-16 00:25:09', 'submission_id': '1gs8yvc'}
{'comment': 'So when is Cheryl gonna divorce this guy?', 'created': '2024-11-16 01:00:21', 'submission_id': '1gs8yvc'}
{'comment': 'Him or the worm.', 'created': '2024-11-15 23:59:29', 'submission_id': '1gs8yvc'}
{'comment': 'This is what happens after several generations of wealth and fame. Well and brain worms didn’t help', 'created': '2024-11-16 00:21:15', 'submission_id': '1gs8yvc'}
{'comment': 'His father, grandfather, and uncle would be so fucking ashamed of him.', 'created': '2024-11-16 00:17:04', 'submission_id': '1gs8yvc'}
{'comment': 'RFK Jr. was one of the people responsible for the deaths of 83 people, mostly children, in Samoa in 2019 when 5707 people were infected with measles due to low vaccination rates stemming from a previous disinformation campaign by local anti-vaxers with him actually traveling to Samoa to spread the lies.', 'created': '2024-11-16 01:29:38', 'submission_id': '1gs8yvc'}
{'comment': 'At this point, I actually feel bad for the worm.', 'created': '2024-11-16 01:46:57', 'submission_id': '1gs8yvc'}
{'comment': 'He is batshit crazy and he’s in bed with the kind of people his dad would have hated His grandfather would probably have been okay with it', 'created': '2024-11-16 02:26:36', 'submission_id': '1gs8yvc'}
{'comment': "I don't know if I can stand to hear his warbled voice spew ridiculous conspiracy theories for another four years. I cannot even fathom how a lawyer without formal medical training has been tapped to lead HHS.", 'created': '2024-11-16 04:17:30', 'submission_id': '1gs8yvc'}
{'comment': 'A traitor? His family came out a year ago and said not to vote for the guy. There are countless articles about him and his horror show behavior (the most recent in "Vanity Fair" which was excellent and can be found online. Highly recommend). He literally thinks that chemicals in water "turns kids gay". Apparently he was a decent environmental lawyer decades ago but that was short lived and he\'s been an absolute POS before and since. He\'s not traitorous, he\'s a danger to society with no moral compass and an ego the size of Musks.', 'created': '2024-11-16 03:11:07', 'submission_id': '1gs8yvc'}
{'comment': 'He’s a filthy opportunist. His entire family has basically disowned him because of his disgusting shameless attitude.', 'created': '2024-11-16 00:38:55', 'submission_id': '1gs8yvc'}
{'comment': 'When his family supported Biden with that photo op, that said it all.', 'created': '2024-11-16 01:24:51', 'submission_id': '1gs8yvc'}
{'comment': 'Roadkill meals and brain eating worms change a man.', 'created': '2024-11-16 01:34:13', 'submission_id': '1gs8yvc'}
{'comment': 'Gasp.\n\nI\'m shocked. SHOCKED. By how evil rfk jr is!\n\nIt\'s not like rfk is an anti-science, anti-vax, anti-ivf, anti-fluoride, covid autism and aids and chemtrails conspiracist, Russia apologist, confederate statue apologist, weirdly dodgy on everything like nuclear and abortion, epstein buddy, and a sexual abuser.\n\nIt\'s not like rfk picked a vp who bought into the campaign, is anti-ivf and has alternative solutions for reproductive health like "two hours of morning sunlight"\n\nIt\'s not like his vaccine solution is blocking research for 8 years.\n\nIt\'s not like he attacked Biden by demanding security months before others get any. \n\nIt\'s not like he demanded party debate access months after he left the party. \n\nIt\'s not like there were rfk trump talk leaks for ages. \n\nIt\'s not like he used fake signatures and fake addresses to get on the ballot, and only stepped down in states at risk to trump.\n\nI thought he was a Kennedy!', 'created': '2024-11-16 02:23:28', 'submission_id': '1gs8yvc'}
{'comment': 'An embarrassment to all mammals.', 'created': '2024-11-16 02:31:48', 'submission_id': '1gs8yvc'}
{'comment': 'Leopards ate his face and worms ate his brains.', 'created': '2024-11-16 03:31:31', 'submission_id': '1gs8yvc'}
{'comment': 'Oh, you think this nomination is bad, just wait until you have to listen to his f**king voice day after day after day after day…\n\n(And don’t remind me about some medical condition he has either. Listening to his nonsense coupled with the sound of his halting, guttural voice will be pure hell.)', 'created': '2024-11-16 01:37:15', 'submission_id': '1gs8yvc'}
{'comment': 'My parents are in love with him. They are so happy he and Trump are going to fix everything. I have become numb. Otherwise I’m the lib son who never stops complaining.', 'created': '2024-11-16 03:10:52', 'submission_id': '1gs8yvc'}
{'comment': 'Even his own family hates him', 'created': '2024-11-16 05:27:07', 'submission_id': '1gs8yvc'}
{'comment': "I'm gonna say this, he is right that food and drug companies have a stranglehold over the FDA. HOWEVER, I use supplements like he pushes for, they are not protected through any FDA scrutiny. You gotta hit all fronts Robbie...", 'created': '2024-11-16 02:32:16', 'submission_id': '1gs8yvc'}
{'comment': 'https://preview.redd.it/mtcqk1kcm71e1.jpeg?width=861&format=pjpg&auto=webp&s=ccd16187829f2873124f8a4bf31341229d3736a4', 'created': '2024-11-16 07:43:23', 'submission_id': '1gs8yvc'}
{'comment': "He offered support to Harris and Trump in exchange for being part of the administration, and Trump accepted, while Harris (clearly) didn't.", 'created': '2024-11-16 00:08:29', 'submission_id': '1gs8yvc'}
{'comment': 'He looks like a potato that stayed in the microwave too long that was rehydrated with alcohol.', 'created': '2024-11-16 04:34:36', 'submission_id': '1gs8yvc'}
{'comment': 'Bobby and Ethel would be ashamed', 'created': '2024-11-16 07:21:00', 'submission_id': '1gs8yvc'}
{'comment': 'All of them, but yes, absolutely. His family shouted it loud.', 'created': '2024-11-16 04:16:01', 'submission_id': '1gs8yvc'}
{'comment': 'BBC radio included “…long time heroin user…” in its bio of him.', 'created': '2024-11-16 00:49:01', 'submission_id': '1gs8yvc'}
{'comment': 'Fucking lunatic.', 'created': '2024-11-16 01:13:59', 'submission_id': '1gs8yvc'}
{'comment': 'He’s the platonic form of MMP (Mediocre Male Privilege). What a fucker—drives his wife to suicide, kills 86 Samoan children—and can’t comprehend that he’s not qualified to be in charge. Just assumes he should be. MMP 😒', 'created': '2024-11-16 13:02:39', 'submission_id': '1gs8yvc'}
{'comment': 'If you cut all social programs that people need to survive, you can then skim off the top to finance more tax cuts for the rich. That pretty much explains everything.', 'created': '2024-11-16 00:52:49', 'submission_id': '1gs8yvc'}
{'comment': 'We don’t want morons like this representing us.', 'created': '2024-11-16 00:20:26', 'submission_id': '1gs8yvc'}
{'comment': 'Another rich mans bratty son. Gaetz, trump..who else is in the club?', 'created': '2024-11-16 01:23:42', 'submission_id': '1gs8yvc'}
{'comment': 'what’s going to happen when rfk’s agenda bumps up against big ag and big pharma? he’s probably gone in like 6 months. then again all my predictions this year have been wrong', 'created': '2024-11-16 01:23:54', 'submission_id': '1gs8yvc'}
{'comment': 'Side note: Mike Pence’s problem with him is that he isn’t pro life.', 'created': '2024-11-16 01:46:53', 'submission_id': '1gs8yvc'}
{'comment': 'He just looks like his jaws are gonna unhinge and swallow whoever is in front of him at all times.', 'created': '2024-11-16 00:33:34', 'submission_id': '1gs8yvc'}
{'comment': "He's not and never has been a Democrat. He's a dumbass conspiracy theorist descended from a badly flawed family.\n\nFuck his kind and fuck this country for cozing up to turd blossoms like him (and Putin).", 'created': '2024-11-16 02:03:56', 'submission_id': '1gs8yvc'}
{'comment': 'Orange Julius sees himself as a sort of Joseph P. Kennedy I. Mar-a-Lago is his Hyannisport. RFK is his trophy.', 'created': '2024-11-16 02:17:03', 'submission_id': '1gs8yvc'}
{'comment': 'Like Trump is stupid to logic', 'created': '2024-11-16 04:06:18', 'submission_id': '1gs8yvc'}
{'comment': 'He just announced he wants to stop all infectious disease research for the next 8 years. Brain worm is in charge now.', 'created': '2024-11-16 11:15:00', 'submission_id': '1gs8yvc'}
{'comment': 'On top of everything else trump is trying to kill us. He had a knack for putting the worst possible candidate in each position.', 'created': '2024-11-16 19:12:33', 'submission_id': '1gs8yvc'}
{'comment': 'Huge scam to America. He took democrats votes away by running. I’m sure it was by design.', 'created': '2024-11-16 22:45:39', 'submission_id': '1gs8yvc'}
{'comment': 'Fucking psychopath.', 'created': '2024-11-16 00:28:19', 'submission_id': '1gs8yvc'}
{'comment': 'He was a Trumpeter from day one.', 'created': '2024-11-16 00:31:34', 'submission_id': '1gs8yvc'}
{'comment': 'His order of the day...cure for brain worms!!!', 'created': '2024-11-16 01:26:04', 'submission_id': '1gs8yvc'}
{'comment': 'They can have him', 'created': '2024-11-16 12:22:39', 'submission_id': '1gs8yvc'}
{'comment': 'He’s a traitor', 'created': '2024-11-16 00:28:49', 'submission_id': '1gs8yvc'}
{'comment': 'He was ALWAYS a right winged plant/saboteur.', 'created': '2024-11-16 05:33:44', 'submission_id': '1gs8yvc'}
{'comment': 'This is what Barron will become.', 'created': '2024-11-16 00:37:59', 'submission_id': '1gs8yvc'}
{'comment': 'He is a disgrace to everything his father and uncle stood for', 'created': '2024-11-16 00:59:33', 'submission_id': '1gs8yvc'}
{'comment': "I'm thinking his family is having a tough time with this. I wouldn't expect them to say anything but privately it must be hard to come to terms with and disappointing your family is the worst feeling in the world", 'created': '2024-11-16 01:37:40', 'submission_id': '1gs8yvc'}
{'comment': 'Someone please get this man a lozenge. I can’t stand hearing him speak.', 'created': '2024-11-17 08:26:13', 'submission_id': '1gs8yvc'}
{'comment': '', 'created': '2024-11-16 02:03:05', 'submission_id': '1gs8yvc'}
{'comment': 'Yes. He certainly is.', 'created': '2024-11-16 14:36:18', 'submission_id': '1gs8yvc'}
{'comment': '[removed]', 'created': '2024-11-16 16:56:21', 'submission_id': '1gs8yvc'}
{'comment': "He just wants to share the brain-worms with the rest of us. He just wants us to enjoy being part of the Worm Collective. It's freedom from thought and worry. Hail the Worm!!", 'created': '2024-11-16 17:26:21', 'submission_id': '1gs8yvc'}
{'comment': 'I wonder how JFK would be reacting to this.', 'created': '2024-11-17 06:39:51', 'submission_id': '1gs8yvc'}
{'comment': 'He will do great and give the idiots voting MAGA what they deserve', 'created': '2024-11-18 02:49:53', 'submission_id': '1gs8yvc'}
{'comment': 'Have ae not been after Big Pharma for years? This might be our chance. Besides the raw milk BS, what he says was Democratic platform from the early 2000s.', 'created': '2024-11-16 00:13:04', 'submission_id': '1gs8yvc'}
{'comment': 'Donald Trump was a Democrat, the Kennedys are Democrats. \nThe entire political system is rigged against us. They are us, until they aren’t.', 'created': '2024-11-16 06:08:25', 'submission_id': '1gs8yvc'}
{'comment': 'Look in the mirror!', 'created': '2024-11-16 03:06:27', 'submission_id': '1gs8yvc'}
{'comment': 'Only a traitor until January 20th. Then he trades the traitor cape for the savoir cape.', 'created': '2024-11-16 14:37:32', 'submission_id': '1gs8yvc'}
{'comment': 'A face like the smell of rotting whale.', 'created': '2024-11-16 04:56:11', 'submission_id': '1gs8yvc'}
{'comment': 'So does Road-kill that he dines on', 'created': '2024-11-16 07:24:13', 'submission_id': '1gs8yvc'}
{'comment': 'if you look real close you can see it looking out the windows', 'created': '2024-11-17 03:27:53', 'submission_id': '1gs8yvc'}
{'comment': "Did people actually believe this guy was a Democrat? \n\nI've known he was DINO like, since day one. \n\nCan't really be a traitor. He was never one of us. \n\nNow - Traitor to the US? Well - sure. That's how I feel about it anyway.", 'created': '2024-11-16 01:48:39', 'submission_id': '1gs8yvc'}
{'comment': 'She was all smiley-face with him @ Mar-a-Lago last night. 🤷\u200d♀️🤦\u200d♀️', 'created': '2024-11-16 01:32:07', 'submission_id': '1gs8yvc'}
{'comment': 'Last wife hung herself', 'created': '2024-11-16 07:29:52', 'submission_id': '1gs8yvc'}
{'comment': 'Interesting you say that. This is the same guy that when married to wife #1 kept a diary /s (of all the women he had sex with while he was married). She found it. Went to a barn on their property and hung herself. He’s scum. True story. It’s only a matter of time current wife decides to divorce him', 'created': '2024-11-16 12:50:25', 'submission_id': '1gs8yvc'}
{'comment': 'I’m waiting on her to get fired from her show due to all the backlash.', 'created': '2024-11-16 03:39:13', 'submission_id': '1gs8yvc'}
{'comment': "Kennedys don't get divorced", 'created': '2024-11-16 13:48:26', 'submission_id': '1gs8yvc'}
{'comment': 'I chose the worm. Shai-Hulud would never forsake the people like this.', 'created': '2024-11-16 00:40:05', 'submission_id': '1gs8yvc'}
{'comment': 'Cant blame the worm. It died of hunger.', 'created': '2024-11-16 01:09:16', 'submission_id': '1gs8yvc'}
{'comment': '“Once you go worm, that’s what you’ll yearn.”\n\nNeeble', 'created': '2024-11-16 02:49:11', 'submission_id': '1gs8yvc'}
{'comment': 'And now he goes to work for Baron ‘Orange’ Harkonnen.', 'created': '2024-11-16 08:15:33', 'submission_id': '1gs8yvc'}
{'comment': 'And a dozen years of heroin addiction.', 'created': '2024-11-16 00:30:49', 'submission_id': '1gs8yvc'}
{'comment': 'Am I the only one who feels bad for the worm?', 'created': '2024-11-16 01:28:47', 'submission_id': '1gs8yvc'}
{'comment': 'For all their faults, the Kennedys looked out for America.', 'created': '2024-11-16 00:29:37', 'submission_id': '1gs8yvc'}
{'comment': 'Father and Uncle Jack, yes. But Grandpa Joe was a piece of shit, so no to that one.', 'created': '2024-11-16 00:41:04', 'submission_id': '1gs8yvc'}
{'comment': 'Dude his grandfather was a gigantic piece of shit he would be proud of the grift his father and uncle on the other hand definitely not', 'created': '2024-11-16 00:37:21', 'submission_id': '1gs8yvc'}
{'comment': '👏👏👏👏', 'created': '2024-11-16 00:30:09', 'submission_id': '1gs8yvc'}
{'comment': 'It must have been starving for so long.', 'created': '2024-11-16 01:57:25', 'submission_id': '1gs8yvc'}
{'comment': "Junior's brain worm died fat and happy.", 'created': '2024-11-16 18:49:12', 'submission_id': '1gs8yvc'}
{'comment': 'I use them with weight loss, working out and muscle building FYI and not because I believe those are the best drugs out there.', 'created': '2024-11-18 19:00:53', 'submission_id': '1gs8yvc'}
{'comment': 'He was selling his endorsement to the highest bidder\nAnd Kamala didn’t bother bidding', 'created': '2024-11-16 00:19:58', 'submission_id': '1gs8yvc'}
{'comment': 'Ofcourse they didn’t accept, he is the last person who should be in charge of the cdc and fda', 'created': '2024-11-16 00:35:33', 'submission_id': '1gs8yvc'}
{'comment': 'You know in a twisted way Trump did build a bigger tent.', 'created': '2024-11-16 00:24:56', 'submission_id': '1gs8yvc'}
{'comment': "Well, maybe us in the comments don't want him, but 76M people voted for Trump, so a lot of people do want morons representing us. Truly sad. After the election I commented that Trump will be worse than even his detractors imagine. That's how it works.", 'created': '2024-11-16 22:22:08', 'submission_id': '1gs8yvc'}
{'comment': "I'll never look at him the same again after reading that. Like I needed another thing to be creeped out by when I see him.", 'created': '2024-11-16 01:50:20', 'submission_id': '1gs8yvc'}
{'comment': '"Orange Julius"... I love that!', 'created': '2024-11-16 16:24:58', 'submission_id': '1gs8yvc'}
{'comment': 'He first called the Harris campaign asking for a job in exchange for dropping out and his endorsement. When they wouldn’t take his calls or otherwise refused him, he pledged allegiance to Trump. Creepy dude.', 'created': '2024-11-16 23:21:26', 'submission_id': '1gs8yvc'}
{'comment': 'He used to be a pro-Dem conspiracy theorist (he thought Republicans stole the 2004 election for Bush). \n\n[https://people.csail.mit.edu/rivest/voting/press/WasThe2004ElectionStolen.pdf?utm\\_source=substack&utm\\_medium=email](https://people.csail.mit.edu/rivest/voting/press/WasThe2004ElectionStolen.pdf?utm_source=substack&utm_medium=email)', 'created': '2024-11-16 00:43:43', 'submission_id': '1gs8yvc'}
{'comment': 'Is that a worm wiggling out of his ear??', 'created': '2024-11-16 13:33:20', 'submission_id': '1gs8yvc'}
{'comment': 'Well his cousin Timmy says he still loves him and he’s not willing to lose his Family to politics… too late.', 'created': '2024-11-16 03:48:45', 'submission_id': '1gs8yvc'}
{'comment': 'Sarah Sherman is delightfully weird.', 'created': '2024-11-16 03:39:14', 'submission_id': '1gs8yvc'}
{'comment': "Big pharma is a problem, but it's because of cost and access to medication \n\nIt isn't because vaccines are evil, dangerous, or ineffective", 'created': '2024-11-16 01:07:19', 'submission_id': '1gs8yvc'}
{'comment': "This guy is essentially the Michael Moore of the right.. He starts with a good idea and then leans so hard into unfeasible things that it just derails the whole possibility of it working.\n\n(Well and he's insane)", 'created': '2024-11-16 00:30:39', 'submission_id': '1gs8yvc'}
{'comment': 'He has some good positions, but I’m not sure if it makes up for the crazy.', 'created': '2024-11-16 00:32:20', 'submission_id': '1gs8yvc'}
{'comment': 'Un-bear-able', 'created': '2024-11-16 05:04:53', 'submission_id': '1gs8yvc'}
{'comment': 'Yeah I was questioning the traitor thing too.\xa0', 'created': '2024-11-16 02:26:36', 'submission_id': '1gs8yvc'}
{'comment': 'It’s worth reading a profile about this guy. He sounds pretty messed up and that he’s used his father’s name as a ticket to get whatever he wants.', 'created': '2024-11-16 14:10:16', 'submission_id': '1gs8yvc'}
{'comment': 'Right? Not really a traitor if he was never on our side to begin with. He was always the opposition.', 'created': '2024-11-16 04:42:39', 'submission_id': '1gs8yvc'}
{'comment': 'These assholes just go with whatever’s popular.', 'created': '2024-11-16 16:38:02', 'submission_id': '1gs8yvc'}
{'comment': 'Fuck it’s so disappointing.', 'created': '2024-11-16 02:22:29', 'submission_id': '1gs8yvc'}
{'comment': 'Oh, and it was actually wife # 2 that hung herself. He’s on wife # 3 now. Truly an execrable human being.', 'created': '2024-11-17 01:01:24', 'submission_id': '1gs8yvc'}
{'comment': 'The fluoridated spice must flow.', 'created': '2024-11-16 01:45:23', 'submission_id': '1gs8yvc'}
{'comment': 'Ha ha, thank you.', 'created': '2024-11-16 02:14:07', 'submission_id': '1gs8yvc'}
{'comment': 'Been saying that for weeks now', 'created': '2024-11-16 07:48:14', 'submission_id': '1gs8yvc'}
{'comment': 'nuts how a guy who chased the dragon for over a decade is so paranoid about a jab.', 'created': '2024-11-16 01:14:27', 'submission_id': '1gs8yvc'}
{'comment': 'It starved to death 😞', 'created': '2024-11-16 10:18:23', 'submission_id': '1gs8yvc'}
{'comment': 'All but this one.', 'created': '2024-11-16 00:30:13', 'submission_id': '1gs8yvc'}
{'comment': 'Uncle Teddy’s definitely rolling in hiss grave', 'created': '2024-11-16 00:57:10', 'submission_id': '1gs8yvc'}
{'comment': 'Looks like it skipped a generation.', 'created': '2024-11-16 01:25:10', 'submission_id': '1gs8yvc'}
{'comment': "Uncles. Don't forget Ted in all of this.", 'created': '2024-11-16 00:55:54', 'submission_id': '1gs8yvc'}
{'comment': 'Which is completely idiotic. She could have gave him some made up position or fired him at any time. He brought a lot of votes they needed.', 'created': '2024-11-16 00:29:16', 'submission_id': '1gs8yvc'}
{'comment': 'Source?', 'created': '2024-11-16 00:53:38', 'submission_id': '1gs8yvc'}
{'comment': 'And that’s one of the things the DnC needs to consider in the future', 'created': '2024-11-16 00:31:35', 'submission_id': '1gs8yvc'}
{'comment': 'Just one tent, a very crazy dysfunctional tent\n\nIt’s like an old circus tent that was ‘waterproofed’ with wax and gasoline \n\nAnd, it’s going to explode exactly like circus tents burned a hundred years ago.', 'created': '2024-11-16 07:36:17', 'submission_id': '1gs8yvc'}
{'comment': 'Even a broken clock is right twice a day.', 'created': '2024-11-16 00:47:57', 'submission_id': '1gs8yvc'}
{'comment': 'Does he now. Cousin Timmy. Interesting profile you got there', 'created': '2024-11-16 05:00:12', 'submission_id': '1gs8yvc'}
{'comment': 'I think that is a strawman of his view', 'created': '2024-11-17 13:22:59', 'submission_id': '1gs8yvc'}
{'comment': 'True. But you have to give the morons a reason to go after them.', 'created': '2024-11-16 01:26:00', 'submission_id': '1gs8yvc'}
{'comment': 'He used to run a progressive news show that I still watch with Mike Papantonio. Now it’s solely ran by Farron Cousins with Mike making cameo appearances. Bobby used to be a progressive apparently then something happened but nobody knows what.', 'created': '2024-11-16 04:23:53', 'submission_id': '1gs8yvc'}
{'comment': 'It\'s because the OP has a very Strange worldview. He\'s a self proclaimed "liberal monarchist" who thinks that the American Revolutionary War is an Atrocity on the Same scale as the Holocaust.', 'created': '2024-11-17 14:36:07', 'submission_id': '1gs8yvc'}
{'comment': 'Women love this shit. White women have helped put Trump in office twice now, more than 50% of them.', 'created': '2024-11-16 05:05:08', 'submission_id': '1gs8yvc'}
{'comment': 'Ahhh. Ok. Didn’t realize he was married that many times. All I knew it was the wife before current wife. Thanks for correcting me on that. All I know he liked to keep lots of journals. That rat bastard. What he did to his second wife is deplorable', 'created': '2024-11-17 01:46:10', 'submission_id': '1gs8yvc'}
{'comment': 'I got high for over a decade and am fully vaccinated. Covid × 4.', 'created': '2024-11-16 01:17:53', 'submission_id': '1gs8yvc'}
{'comment': 'Ted advocated everything that this asshole opposes.', 'created': '2024-11-16 07:26:35', 'submission_id': '1gs8yvc'}
{'comment': "His siblings and cousins aren't bats#it crazy like he is, and they've repeatedly distanced themselves from him and called him out on his BS, so I don't think it's a generational problem - just a problem with him.", 'created': '2024-11-16 01:40:50', 'submission_id': '1gs8yvc'}
{'comment': None, 'created': '2024-11-16 01:35:23', 'submission_id': '1gs8yvc'}
{'comment': 'Mary Jo at Chappaquiddik, anyone?', 'created': '2024-11-16 13:05:56', 'submission_id': '1gs8yvc'}
{'comment': "I don't know. Did we really want to have him be part of the process? I think he would rightfully turn off center democrats. Chopping off whale heads. Killing bears and dumping their bodies in central park. His vaccine and HIV conspiracy theories.", 'created': '2024-11-16 01:11:59', 'submission_id': '1gs8yvc'}
{'comment': 'He took half a percent of total votes.', 'created': '2024-11-16 07:18:27', 'submission_id': '1gs8yvc'}
{'comment': 'how are things in your cave?', 'created': '2024-11-16 01:18:02', 'submission_id': '1gs8yvc'}
{'comment': 'Don’t know but I saw the whole story on MSNBC last night.', 'created': '2024-11-16 03:40:32', 'submission_id': '1gs8yvc'}
{'comment': 'I’m starting to understand why the plebes couldn’t vote', 'created': '2024-11-16 00:41:21', 'submission_id': '1gs8yvc'}
{'comment': 'Why not just run Cthulu and skip the intermediate steps?', 'created': '2024-11-16 06:06:30', 'submission_id': '1gs8yvc'}
{'comment': 'He thinks vaccines are dangerous', 'created': '2024-11-17 16:29:04', 'submission_id': '1gs8yvc'}
{'comment': '> Bobby used to be a progressive apparently then something happened but nobody knows what.\n\nMaybe the brain worms?', 'created': '2024-11-16 04:32:14', 'submission_id': '1gs8yvc'}
{'comment': 'What’s the show?', 'created': '2024-11-16 15:10:19', 'submission_id': '1gs8yvc'}
{'comment': 'Not this one.', 'created': '2024-11-16 08:23:59', 'submission_id': '1gs8yvc'}
{'comment': 'Women do not love this shit.', 'created': '2024-11-16 11:15:59', 'submission_id': '1gs8yvc'}
{'comment': 'I never did', 'created': '2024-11-16 16:18:05', 'submission_id': '1gs8yvc'}
{'comment': 'yeah I used to do some things too.', 'created': '2024-11-16 01:20:06', 'submission_id': '1gs8yvc'}
{'comment': 'Except for that one cousin who murdered a woman in 1975. Micheal Skakel.', 'created': '2024-11-16 03:30:25', 'submission_id': '1gs8yvc'}
{'comment': 'I think his kids have distanced themselves, too.', 'created': '2024-11-16 06:55:17', 'submission_id': '1gs8yvc'}
{'comment': 'Facts', 'created': '2024-11-16 01:46:41', 'submission_id': '1gs8yvc'}
{'comment': 'Google “Chapaquiddick”.', 'created': '2024-11-16 04:05:58', 'submission_id': '1gs8yvc'}
{'comment': 'THAT’S THE ONE!', 'created': '2024-11-16 03:27:27', 'submission_id': '1gs8yvc'}
{'comment': 'Why are you in a Democrat group posting rage bait? That’s not a good look.', 'created': '2024-11-16 02:06:13', 'submission_id': '1gs8yvc'}
{'comment': 'Americans don’t live in caves', 'created': '2024-11-16 01:18:32', 'submission_id': '1gs8yvc'}
{'comment': 'I’m a germaphobe, so living in a cave is definitely not an option for me.', 'created': '2024-11-16 02:14:01', 'submission_id': '1gs8yvc'}
{'comment': 'Yea you know… I was leaning towards that brain worm doing a number on his mental but I guess I was thinking someone or an event radicalized him or something. Kinda like ol Clarence Thomas who is probably the only conservative that I have an understanding as to why he is the way he is.', 'created': '2024-11-16 04:46:09', 'submission_id': '1gs8yvc'}
{'comment': 'And not this one. Never voted for him.', 'created': '2024-11-16 13:05:05', 'submission_id': '1gs8yvc'}
{'comment': 'Nor this one either.', 'created': '2024-11-16 13:06:59', 'submission_id': '1gs8yvc'}
{'comment': "White women do, if we trust the vote. It seems to be consistent. I don't mean *all*; but a majority which is part of a larger majority which is enough, in a democracy.", 'created': '2024-11-17 03:11:26', 'submission_id': '1gs8yvc'}
{'comment': 'I met him in Elan years ago.', 'created': '2024-11-16 03:59:26', 'submission_id': '1gs8yvc'}
{'comment': "Russia gave him a fat check, I'm sure.", 'created': '2024-11-16 08:28:45', 'submission_id': '1gs8yvc'}
{'comment': 'Why is CT a conservative? Is it his for his kraken of a wife?', 'created': '2024-11-16 15:10:03', 'submission_id': '1gs8yvc'}
{'comment': "Man, I'm watching through the 80s twilight zone right now.\n\nI gave up everything to get Harris elected, and now I'm trying to find some preparation and solace in old tales.\n\nYou never know what's good til it's gone.", 'created': '2024-11-15 23:31:29', 'submission_id': '1gs86sd'}
{'comment': "That's a nice way to put it...", 'created': '2024-11-16 00:10:09', 'submission_id': '1gs86sd'}
{'comment': "Here's another\n\nhttps://preview.redd.it/gjoq6sus651e1.jpeg?width=1611&format=pjpg&auto=webp&s=c61d568ff44f50d6c08286e4fa4d47c53c4882f8", 'created': '2024-11-15 23:32:40', 'submission_id': '1gs86sd'}
{'comment': 'Check out Toys of Caliban. Trump needs to have his picture books taken away.', 'created': '2024-11-15 23:36:12', 'submission_id': '1gs86sd'}
{'comment': 'At this point the democrats can do no right and Trump can do no wrong.', 'created': '2024-11-15 22:59:50', 'submission_id': '1gs7f18'}
{'comment': 'This election was an absolute masterclass in deception via social media propaganda, the likes that have never been seen before. The republicans (with *much* more help from Elon than I think people realize) absolutely fleeced 70 million Americans. This will be studied for decades to come, and the price America is going to pay for this over the next 4 years is going to be heavy.', 'created': '2024-11-15 23:29:14', 'submission_id': '1gs7f18'}
{'comment': 'These voters are living in an alternate information universe. Plain and simple. It’s been tested that people who recognize reality — ie accurate understanding of actual inflation and crime levels — voted for Harris by large margins. We essentially need a Radio Free ~~Europe~~ America to compete with the MAGA propaganda.', 'created': '2024-11-15 23:06:58', 'submission_id': '1gs7f18'}
{'comment': "We can blame dumb voters and misperceptions all we like. \n\nBut the root of the problem is control of media by pro-Republican entities. And we can't say we didn't see it coming. Rightwingers have been force-feeding propaganda into the American information gullet for decades.\n\nFirst there was rightwing talk radio with an assist by longtime fundamentalist Christian stations. Then Fox News came along. And in digital media we now have Musk and Zuck pushing the pro-billionaire narrative in their own ways. \n\nTop Democratic establishment types need to quit acting like all they need to do is slightly adjust their message or add a few enticements to attract swing voters.\n\nWe need to immediately build up our own media or, at the very least, whittle away at GOP controlled media. And we need a combination of older and newer media as not to put all our eggs in one basket.\n\nThat would take time. But in the interim we can have more of a personal local presence in communities around the US. The purpose would be to provide permanent feedback to the state and national parties and to let locals know that Dems are there to help.", 'created': '2024-11-15 23:54:20', 'submission_id': '1gs7f18'}
{'comment': "It turns out that Democrats don't appeal to low information or low IQ voters. When you think about it, a lot of the things that we stand for are not going to make sense to someone that can't do critical thinking. We need to find a way to fix this. I don't know what the answers are.", 'created': '2024-11-15 23:46:07', 'submission_id': '1gs7f18'}
{'comment': 'Honestly, this is what pisses me off about people saying that it had anything to do with how Harris campaigned or what her policies were because *people weren’t listening to her*. They were listening to what republicans said about her.', 'created': '2024-11-16 00:08:12', 'submission_id': '1gs7f18'}
{'comment': 'So the polling wasn’t just off? The shift we saw towards Trump in the final weeks/days was accurate then. Really wonder what motivated this.', 'created': '2024-11-15 22:58:52', 'submission_id': '1gs7f18'}
{'comment': "Media bubbles are impenetrable now. People use streaming services and hang out on Discord and watch live streamers who are barely literate, or social media where they've trained the algorithm to avoid certain political content. \n\nEveryone controls their own algorithms on social media, but they blame other people if they don't see things. You wouldn't believe how dense Gen Z men are about this. Trying to explain to them that if they have never looked up any info on Kamala, then the algorithm won't show them info on Kamala, making their own ignorance their own fault? They're too fragile to accept the truth, and too emotionally childish not to blame anybody except their own essential laziness and anti-intellectualism. \n\nThey do spend a concerning amount of time on dating advice subs, which is probably making them weirder, less dateable, way more boring, and less mentally stable. \n\nThe future is freaking bleak.", 'created': '2024-11-16 00:05:57', 'submission_id': '1gs7f18'}
{'comment': "So basically swing voters polled are gullible and will buy anything sold to them. Please let them know I have a bridge in Brooklyn that's for sale cheap.", 'created': '2024-11-16 02:36:15', 'submission_id': '1gs7f18'}
{'comment': 'How is this possible?We have been buried in election news for four years and it all ramped up considerably after Harris got on the ticket. You would have to be living underground to not understand what was at stake.', 'created': '2024-11-15 23:50:08', 'submission_id': '1gs7f18'}
{'comment': 'These people are so dense I want to tear all the skin off my own face. "Too focused on fighting trump"??? "Not focused on crime"???? WHAT? We 10000% deserve everything he does to the country, our average IQ or even attention span is banana slug-level. Just kill me.', 'created': '2024-11-16 00:12:40', 'submission_id': '1gs7f18'}
{'comment': 'What sad misinformed too easily persuadables', 'created': '2024-11-15 23:35:46', 'submission_id': '1gs7f18'}
{'comment': "These people didn't get the message because they didn't want to get the message. They chose to listen to a fascist racist misogynist rather than Kamala Harris. \n\nSo yeah, blame the party for some of it, but realize lots of blame goes to listless ignorant lazy lackadaisical people who really didnt care about Kamala Harris for whatever reason.", 'created': '2024-11-15 23:52:56', 'submission_id': '1gs7f18'}
{'comment': "Half of Americans FA'd and now we are all going to FO.", 'created': '2024-11-15 23:52:15', 'submission_id': '1gs7f18'}
{'comment': 'Boy aren’t they going to be surprised. This is what happens when you sit out politics for 3 years and 355 days. Dumbasses.', 'created': '2024-11-16 02:14:53', 'submission_id': '1gs7f18'}
{'comment': 'Little do the majority of people in this country realize how un-liberal the US democrat party is & swerves more center-right than radically left. Sigh.', 'created': '2024-11-15 23:37:03', 'submission_id': '1gs7f18'}
{'comment': "I thought her message was clear and there was a lot of enthusiasm at her speeches. Walz was clear with the same message- I don't know how anyone could have been confused.", 'created': '2024-11-16 01:27:43', 'submission_id': '1gs7f18'}
{'comment': 'Can we not call this misinterpretation and call it low information and uneducated voters..', 'created': '2024-11-16 00:21:21', 'submission_id': '1gs7f18'}
{'comment': "Even with that, I still think racism/sexism and the economy are the main reasons she lost, incumbents all over the world got they asses kicked as well because of post covid inflation(I know she wasn't the incumbent but being vp ties her to Biden obviously)hell I'm not sure a white dude would of won this time", 'created': '2024-11-16 02:15:29', 'submission_id': '1gs7f18'}
{'comment': 'I’m sure there will be a lot of people complaining about the leopard eating their face. I’m not sure it’s possible to undo what’s been done now. We’ve become Russia, ruled by oligarchs who install the worst possible candidates into power to do their bidding.', 'created': '2024-11-16 13:20:50', 'submission_id': '1gs7f18'}
{'comment': 'There were virtually no actual swing voters in this election.', 'created': '2024-11-16 16:12:18', 'submission_id': '1gs7f18'}
{'comment': "So misinformation. It's basically the Swift Boats thing but supercharged by social media.", 'created': '2024-11-16 05:15:02', 'submission_id': '1gs7f18'}
{'comment': 'WTF does it matter? There were no "misperceptions," just stupid people refusing to believe their own eyes and ears. They voted for it, so I hope to God they\'re the first ones to feel the consequences.', 'created': '2024-11-16 06:52:27', 'submission_id': '1gs7f18'}
{'comment': None, 'created': '2024-11-16 01:35:10', 'submission_id': '1gs7f18'}
{'comment': 'I don’t believe it', 'created': '2024-11-16 12:41:28', 'submission_id': '1gs7f18'}
{'comment': 'In a world where most people get their news/"facts" from social media, there is no nuance/detail to anything and spewing lies and propaganda at the lowest common denominator wins the election. Democrats present detailed policies on everything which no one reads. Trump lies about everything and turns people out based on fear, and repeating the lies over and over convinced people that things were great under his administration and horrible under Biden. Democrats need a way to turn people out based on emotion, because arguing on policy isn\'t cutting it. \n\nToo many people lack the critical thinking skills or desire to research policy. Have you ever seen people share blatantly false propaganda on Facebook which can easily be debunked with a 2 second Google search? Congratulations, you\'ve met the average American voter. \n\nWhen presented neutrally, people favor Democratic policies (as we saw in the abortion guarantees, minimum wage increases, and other Dem policies voted in by red states). We need to start talking to people with very simple messaging and turn people out based on emotion. Policy positions don\'t matter if no one bothers to read it.', 'created': '2024-11-17 10:47:23', 'submission_id': '1gs7f18'}
{'comment': 'I know this is exit polling but I wish there was some raw numbers from it. For instance, it shows that the last minute deciders broke heavily for Trump, but does that represent the difference of 100,000 voters or just 100?\n\nBut aside from that, we should look at what is statistically relevant. Avoid anything that says 54% because that response is almost certainly within the margin of error, or a statistical tie. There are others that I could highlight but for the sake of brevity lets look at just these:\n\n* 77% – Democrats aren’t tough enough on the border crisis\n* 73% – Democrats “don’t know how to manage the economy”\n* 75% – Democrats “are too focused on fighting Trump rather than bringing the country together”\n\nThat massive. Almost 1/5 undecided voters thought we were wrong on the top issues of the election: economy and border/immigration, and wrong about the threat that Trump himself posed. We gauged the electorate *terribly*. Point blank.\n\nIs most poignant. [Gallup released a poll a few days before the election. ](https://news.gallup.com/poll/652970/economy-immigration-abortion-democracy-driving-voters.aspx)Scrolling down about a 1/4 page to "Most Important Factor in Registered Voters\' Presidential Vote" you see that for Democratic voters, abortion, protecting democracy, and a particular dislike of Trump were the top 3 motivating factors. For Republicans it was economy, immigration, and inflation (economy 2.0). All registered voters was economy by a lot, immigration, and abortion. \n\nRight off the bat, our own voters didn\'t match the electorate on 2 of the top 3. \n\nWhich is why I\'d then argue that this part in the Blueprint link...\n\n>**Trust Crisis**: Only 22% of swing voters who broke for Trump believed Harris prioritized “Americans like me” versus party activists—a stark contrast with the 80% who said Trump prioritizes “Americans like me” over party activists.\n\n...suggests that we are in fact being driven by our activists and core base, than listening/responding to the electorate. I\'d further argue that voters who ranked abortion, protecting democracy, and a dislike of Trump were locked in with us as far back as at least 2022. Nothing was going to move them away from Kamala; we needed to win the economy and immigration voter.\n\nAnd so, avoiding actually talking about those issues, having every other word out of our mouth be "fascism" did us no service. \n\nWe needed to actually provide a menu of reasons to vote for us beyond just "but Trump is the *wooooorst.* Also, abortion... which by the way Trump took away."\n\nWe-- actually the senior campaign staff-- did it to ourselves.', 'created': '2024-11-16 00:07:50', 'submission_id': '1gs7f18'}
{'comment': 'I’ll play devils advocate here. I’m a low information, low educated, fairly racist voter who had been fed white grievance since 2015. How do you sway me toward Kamala the communist Harris?', 'created': '2024-11-16 03:56:18', 'submission_id': '1gs7f18'}
{'comment': 'Because the voting was rigged for trump', 'created': '2024-11-16 02:31:45', 'submission_id': '1gs7f18'}
{'comment': 'What I find crazy is that democrats are apparently totally fucked by the more extreme online left, and screwed by association, even if the left actually don’t like the democrats; but the supporters the republicans have from literal Nazis does nothing to tarnish their brand', 'created': '2024-11-15 23:21:52', 'submission_id': '1gs7f18'}
{'comment': 'It’s so frustrating. The man is a convicted felon and rapist. Yet people thought the dems spent too much time fighting him, yet believed a host of positions Harris didn’t even hold. It’s over. I just don’t know how anyone fights stupid.', 'created': '2024-11-16 00:31:13', 'submission_id': '1gs7f18'}
{'comment': 'This, it’s so surreal watching people try to figure out what the Democrats did “wrong” like consulting a magical orb because there just is no reasonable way to look at it.', 'created': '2024-11-16 08:58:28', 'submission_id': '1gs7f18'}
{'comment': 'And hopefully only the next four years.', 'created': '2024-11-15 23:54:00', 'submission_id': '1gs7f18'}
{'comment': '4 years? \n\n12 if you consider Vance will likely become President by fair vote or by cheating. \n\n100 if you consider a 6/9 Trump SCOTUS destroying all human rights it possibly can, as soon as it can.', 'created': '2024-11-15 23:59:53', 'submission_id': '1gs7f18'}
{'comment': "Yep. \n\nA lot of people get that the fascist rhetoric aims to radicalize some people. \n\nBut they don't get that it's also designed to sow confusion and misinformation among other people. Such that they vote for the wrong reasons. Or don't even vote at all. \n\nI think we need a grassroots campaign of people talking to friends, family, neighbors, co-workers who did not vote for Harris, but who are not MAGA cult. Work with them over time to help them pierce the veil and see Trump and the Republicans for what they really are.\n\nIt's not going to happen quickly. But effective resistance to authoritarian government is generally not a quick fix.", 'created': '2024-11-15 23:10:17', 'submission_id': '1gs7f18'}
{'comment': 'I love this idea.', 'created': '2024-11-16 00:31:51', 'submission_id': '1gs7f18'}
{'comment': ">But the root of the problem is control of media by pro-Republican entities. And we can't say we didn't see it coming. Rightwingers have been force-feeding propaganda into the American information gullet for decades.\n\nDefinitely. This is a big problem. \n\nBut the other big problem is that our Constitution and system of laws offers no protection against weaponized rhetoric intent on bringing down a democracy.\n\n>We need to immediately build up our own media or, at the very least, whittle away at GOP controlled media. And we need a combination of older and newer media as not to put all our eggs in one basket.\n\nI actually think a grassroots movement of people talking to friends, family, neighbors, and coworkers who did not vote for Harris, but are not MAGA cult members. Conversations over time as Trump demonstrates more of who he is were we call attention to it. And perhaps we can pierce the veil of misinformation and confusion. Get them to wake up.", 'created': '2024-11-16 00:01:10', 'submission_id': '1gs7f18'}
{'comment': 'I agree. This is a giant factor, maybe even the main one, that people do not seem to want to talk about. Like it is a lame excuse for losing, which it is not. [The Alt-Right Pipeline and the Rise of Trump: How Digital Radicalization Found Its Political Voice - Feminist Majority Foundation](https://feminist.org/news/the-alt-right-pipeline-and-the-rise-of-trump-how-digital-radicalization-found-its-political-voice/)', 'created': '2024-11-16 00:06:43', 'submission_id': '1gs7f18'}
{'comment': 'Aint nobody got time for that. \n\nIt’s revolution or bust I’m afraid', 'created': '2024-11-16 00:09:17', 'submission_id': '1gs7f18'}
{'comment': 'Here in MI every commercial for the last couple weeks was a political one. 80% were from billionaire PACs. one that was in almost every commercial break was literally screaming that dems were responsible for afganistan, crime was skyrocketing, millions of illegals were killing people, inflation was skyrocketing, and country was shit. literally easily proved BS. people are stupid.', 'created': '2024-11-16 00:07:34', 'submission_id': '1gs7f18'}
{'comment': "My opinion, I think it was partially due to the celebrity appearances. I think we are in a post celeb-culture era. My own staunch left husband who always supported Kamala in the last week of the election started talking about how he didn’t trust that all these celebrities were coming out of the woodworks to endorse Kamala and why.\n\nWe fought about it because I find it to be an extremely unintelligent view of things, but the left seems to be a bit tone deaf regardless. So many famous people fell from grace this year including JLo and Beyonce. I feel like this wasn't the year to have them showing up at rallies.", 'created': '2024-11-15 23:28:33', 'submission_id': '1gs7f18'}
{'comment': ">Media bubbles are impenetrable now.\n\nYes. Which is why we need a grassroots movement of talking to people face-to-face. \n\nMAGA cult members are lost. But there are tens of millions of people who voted for Trump who succumbed to misinformation and confusion. Or didn't vote at all because of it. \n\nStart talking with friends, family, co-workers, and neighbors who didn't vote for Harris, but aren't part of the cult. Over time, help them to notice who Trump really is and what he is about. \n\nOtherwise, I think we could end up being stuck in authoritarian rule for a long time.", 'created': '2024-11-16 00:43:38', 'submission_id': '1gs7f18'}
{'comment': 'Yep. The deck was stacked against Democrats.\n\nThis is what happens when one party adopts the fascist playbook and launches a full-on propaganda war against the voters. \n\nNo matter what campaign strategies Harris would have used, they would have simply shifted the lies to compensate.', 'created': '2024-11-16 01:56:40', 'submission_id': '1gs7f18'}
{'comment': 'Reading further down, they said that 73% of swing Trump voters and 59% of swing Harris voters believed we were pushing a Medicare for All policy.\n\nI kind of wish we had been but holy shit. Not even the "good" things we got tagged with swung in our favor. It\'s hard to judge strictly from a single stat of a single poll, but this almost suggests that if we had been pushing for it, we might\'ve lost even more votes.', 'created': '2024-11-16 00:48:57', 'submission_id': '1gs7f18'}
{'comment': "It was that way in 2016 too. The Bernie Bro were parroting the lie that the economy was bad back then too. It's pathetic really. Those people lost the right to abortion for America and now they will lose much more.", 'created': '2024-11-15 23:48:16', 'submission_id': '1gs7f18'}
{'comment': 'That’s what I can’t understand the Dems ≠ Online Left', 'created': '2024-11-16 02:55:06', 'submission_id': '1gs7f18'}
{'comment': 'I think Trump is smart not to fly a Nazi flag. Democrats might (unfortunately) need to take a page out of that book and stop publicly taking needlessly controversial stances on ethical issues. They can advance those issues when they *win*.', 'created': '2024-11-15 23:31:02', 'submission_id': '1gs7f18'}
{'comment': "You don't. You just survive it. I'm using some of my savings to get things now that I could have waited to get in a reasonable world. Or things that might get banned because brain worms thinks they are bad.", 'created': '2024-11-16 03:44:09', 'submission_id': '1gs7f18'}
{'comment': 'It bothers me that this is the most realistic take.', 'created': '2024-11-16 13:53:16', 'submission_id': '1gs7f18'}
{'comment': 'Instructions unclear, I told all my Trump voting friends and family they are morons and cut them off.\xa0 Surely that will work.', 'created': '2024-11-16 00:07:55', 'submission_id': '1gs7f18'}
{'comment': 'All the talk about "revolution" and "resistance" got nowhere in Trump\'s first term. \n\nAnd with Trump creating chaos, the most appealing route is to offer stability.', 'created': '2024-11-16 00:16:35', 'submission_id': '1gs7f18'}
{'comment': 'If you are running against the incumbent, your job is to convince people that everything is awful. Because they will blame the incumbent. Trump in particular is very skilled at making people feel like the world is falling apart.', 'created': '2024-11-16 00:13:37', 'submission_id': '1gs7f18'}
{'comment': 'I think some celebs, like Taylor Swift, are truly helpful endorsements because she has a genuine, massive cult-like fan base that can be absolutely energized by what she says. But yeah, nobody gives a fuck who some of these other celebs were endorsing and might have made it worse', 'created': '2024-11-15 23:31:29', 'submission_id': '1gs7f18'}
{'comment': 'My mom said she didn’t like either of them and Kamala shouldn’t have started calling Trump names. \n\nI had to hang up the phone. So it’s okay he calls her a whore?', 'created': '2024-11-16 01:23:47', 'submission_id': '1gs7f18'}
{'comment': "Trump has celebrity endorsements like kid rock and hulk Hogan. Trump also most of the wealthiest American families backing him. I don't know why only Democrats get flak for things Republicans also do. It's strange.", 'created': '2024-11-16 05:13:04', 'submission_id': '1gs7f18'}
{'comment': "I'm not sure they were saying the economy was bad, but they were saying the system was rigged and corrupt. Dems overall retreated from Obama during and after the 2014 midterms, and we spent 2 years basically saying to ourselves that we weren't that great.\n\nBernie entered that gap from the retreat and helped amplify the notion that Democrats sucked. Didn't exactly make it easy for us to convince the middle of the road.\n\nHere are again after 2 years of shitting on the sitting President, forcing him out of a primary (not that he shouldn't have committed to not running),", 'created': '2024-11-16 00:30:45', 'submission_id': '1gs7f18'}
{'comment': 'What does this have to do with Bernie Bros? Bernie is mostly an economic populist, which I think is a popular?', 'created': '2024-11-16 00:23:11', 'submission_id': '1gs7f18'}
{'comment': 'What needlessly controversial stance did Harris take?', 'created': '2024-11-16 00:10:52', 'submission_id': '1gs7f18'}
{'comment': 'Celebs work when they reflect something that resonates with every day Americans. Beyonce and JLo might just be the most disconnected celebrities out there.', 'created': '2024-11-16 00:42:49', 'submission_id': '1gs7f18'}
{'comment': 'The thing is Taylor Swift wasn’t paid. And she is very much loved and admired and very relevant right now. JLo and Beyonce are not in people’s good graces right now at all. So to pay them each $10 million of donor money for appearances that aren’t going to move the needle one bit because nobody likes them right now, was a gross miscalculation on the dem’s part.', 'created': '2024-11-16 02:13:06', 'submission_id': '1gs7f18'}
{'comment': 'It’s maddening. The left is held to an impossible standard while Trump can shoot a person dead on the street and they would still support him. And I don’t understand why.', 'created': '2024-11-16 02:07:45', 'submission_id': '1gs7f18'}
{'comment': 'Literally NOBODY cares about those 2 has beens lol and also remember, democrats are fighting this elitist image that the maga propaganda is trying to portray them as. Kid Rock and Hulk Hogan appeal more to the “working class” than the unrelatable A list megastars who are constantly accused of being part of the Illuminati.', 'created': '2024-11-16 05:34:33', 'submission_id': '1gs7f18'}
{'comment': "Bernie inadvertently created a privileged culture among voters that if the Democratic nominee isn't perfect, or close to it, based on certain policies, then they'll either not vote or vote for the other nominee in protest.", 'created': '2024-11-16 00:51:31', 'submission_id': '1gs7f18'}
{'comment': "Exactly,\n\nIf the commenter is doing what I think they're doing, they're probably talking about lgbtq people, who have been the subject of numerous attacks from the right-wing. \n\nThe democrats didn't lose on social issues, they lost on economics. The amount of people who supported abortion referendums but supported trump proves this point.", 'created': '2024-11-16 00:15:51', 'submission_id': '1gs7f18'}
{'comment': 'None. Trump and his super pacs lied and people believed it.', 'created': '2024-11-16 00:32:15', 'submission_id': '1gs7f18'}
{'comment': 'Do you have any evidence to support the claim that they were paid?', 'created': '2024-11-16 06:22:46', 'submission_id': '1gs7f18'}
{'comment': 'I keep running this through my head. Just why are Dems held to this impossible standard but Republicans promote all matters of vulgarity with no repercussions.', 'created': '2024-11-16 05:18:27', 'submission_id': '1gs7f18'}
{'comment': "I'm not sure that those Bernie Sanders voters who stayed home or ended up voting for Trump were ever going to vote for her regardless. 83% of us voted for Hillary.", 'created': '2024-11-16 01:20:03', 'submission_id': '1gs7f18'}
{'comment': "This is a dumb take. I voted for Bernie twice and still always voted for the Dem nominee in the general election. Making blatant assumptions like this is not how the Democrats pull together a big tent. Now they are throwing trans people under the bus when Harris didn't campaign on trans issues at all; people are just too stupid and think Trump ads were Harris campaign promises.\n\nDon't continue to divide people with this rhetoric.", 'created': '2024-11-16 16:34:27', 'submission_id': '1gs7f18'}
{'comment': "She didn't need to talk about transgender illegal immigrant sex changes all these years ago. I agree with her stance on it, but I don't think it's a good thing that she said it out loud.", 'created': '2024-11-16 01:09:56', 'submission_id': '1gs7f18'}
{'comment': 'I think that the right is promoting anti establishment, they’re making people believe that they’re gonna shake things up and “drain the swamp” and shake things up for the better. And is low key going to bring back white supremacy. Which is what MAGA truly means IMO\n\nThey portray the democrats as the dinosaur establishment that’s in bed with big pharma and just want to make your kids gay/trans and tax you to death for their own benefit while pretending to care about the working class.\n\nThey’re so stupid, uneducated and bigoted that they choose to ride with it.', 'created': '2024-11-16 05:39:03', 'submission_id': '1gs7f18'}
{'comment': 'A greater percentage, in fact, than Hillary primary voters who came back to vote for Obama after he won the nomination.', 'created': '2024-11-16 01:38:36', 'submission_id': '1gs7f18'}
{'comment': 'I would be sad to see us become so secretive and two faced.', 'created': '2024-11-16 01:21:05', 'submission_id': '1gs7f18'}
{'comment': 'Transphobic attacks haven\'t really done much electorally, in fact if you look at exit polls people were either voting for the economy or to save democracy. There generally wasn\'t any transgender issues present there. I also refuse to believe that most people besides a few choice problem children actually give a shit about "transgender illegal immigrant sex changes."\n\nI don\'t think dropping people by the wayside is the right way to get more voters. Dropping workers and slowly trending toward centrism and corporate interests are what got us in this mess.', 'created': '2024-11-16 12:17:06', 'submission_id': '1gs7f18'}
{'comment': 'Trump is not "playing you". He told you exactly who he is and you refused to listen. You played yourselves.', 'created': '2024-11-15 21:23:36', 'submission_id': '1gs5c9m'}
{'comment': '*"And on the NEXT episode of No Shit, Sherlock..."*\n\n\nI wonder about the intellect of people who vote for someone who HAS CLEARLY STATED THAT HE DOESN\'T LIKE THEM AND WILL HARM THEM.\xa0', 'created': '2024-11-15 21:11:56', 'submission_id': '1gs5c9m'}
{'comment': 'Do they forget the “Muslim Ban”?', 'created': '2024-11-15 21:19:00', 'submission_id': '1gs5c9m'}
{'comment': 'I just…can’t anymore.\n\nI fought the good fight all the way back from 2015. I volunteered, I donated, I voted, I marched, I resisted.\n\nNow? I’m going to hunker down, make as much money as I can, watch out for me, and witness it all burn. 🔥', 'created': '2024-11-16 01:04:20', 'submission_id': '1gs5c9m'}
{'comment': "You don't say!", 'created': '2024-11-15 21:07:47', 'submission_id': '1gs5c9m'}
{'comment': 'FAFO is undefeated!', 'created': '2024-11-15 21:16:09', 'submission_id': '1gs5c9m'}
{'comment': 'If only someone warned them.', 'created': '2024-11-15 21:17:05', 'submission_id': '1gs5c9m'}
{'comment': "No. Enough of these stories of regret. They ain't seen nothing yet, but they sure taught Kamala Harris a lesson.", 'created': '2024-11-15 21:26:51', 'submission_id': '1gs5c9m'}
{'comment': 'As someone else already pointed out, the title is clickbaity and the article doesn\'t really live up to it, but some of the comments in the article really illustrate why Democrats will always have to beg and plead for every last vote. \n \n> “You can’t claim to represent the values of your base and then ignore them. You’re not going to win—and that’s exactly what happened.” \n \nDemocrats *don\'t have a base.* This is a big tent party. Republicans have a base, and their base wants people like the ones living in Dearborn dead. Democrats have potentially everyone who isn\'t a Republican, but that\'s a huge gamut of different groups of people, many of which are at severe odds with each other. So when this woman says "you can\'t ignore your base and expect to win," I feel like she thinks she\'s the base and they should form their entire platform around what she thinks is right. \n \nSorry, no offense, but Muslims in Dearborn Michigan are a tiny minority of the potential Democratic voting bloc. There are several other groups, groups without which Democrats CANNOT win, who want to see Israel continue to receive support and consider Hamas a terrorist threat that needs to be eliminated. If the party leaned fully into the foreign policy this woman is calling for, I don\'t think you can argue that would result in a net gain of votes. \n \nThis is just a microcosm of the larger scope of the party\'s total platform across all issues, and what we have gotten ourselves into is a situation where the Democratic party, essentially a coalition party, has seen such a deep divide form between its center and left partitions that it is now effectively impossible to earn votes from one group without losing votes from the other. This rift will be difficult to heal as each side becomes less open to compromise and more strictly attached to their issue of choice. So you get people refusing to budge on things like immigration, Palestine, or student loans and while they don\'t vote Republican, they do the next best thing which is vote third party or stay home. \n \nThis is horrifyingly similar to Germany in the 1930s. We are literally repeating those mistakes as if we\'re following a set of instructions. Hitler came to power in Germany not because a majority of Germans elected him, but because the centrist and socialist Germans became largely convinced that they were each other\'s greatest enemies and became stubbornly opposed to any form of compromise with each other whatsoever. Ultimately each group\'s voters decided in numbers big enough to matter that the other side would do well to learn a lesson from letting the fascists run things for a while. See how that feels then come back to the table when you\'re ready to start giving in to our demands (both sides of the opposition were guilty of this). \n \nNobody was remotely prepared for the actual weight of that lesson. A decade of death and destruction on a scale difficult to comprehend and not seen before or since followed, after which Germans would spend 40 years without their own country, residents of two proxy states separated by a figurative and literal wall, families torn apart for decades, young men dead of old age before seeing their home restored. The people who had thought that was a lesson worth teaching died before the lesson ended, either violently or after a long slow limbo of international shame. \n \nBut good news. They didn\'t have nukes when they elected fascism, nor did they have to deal with imminent climate change. So we likely won\'t meet the same fate they did. Our hell is far different, far darker, and far harder to escape from.', 'created': '2024-11-15 23:17:18', 'submission_id': '1gs5c9m'}
{'comment': 'LOL He said he was going to make them into a parking lot. How could that be interpreted as anything else.', 'created': '2024-11-15 21:20:50', 'submission_id': '1gs5c9m'}
{'comment': 'Play stupid games, win stupid and evil presidents.', 'created': '2024-11-15 23:59:31', 'submission_id': '1gs5c9m'}
{'comment': 'People who got their faces eaten by the leopard for $400, Alex.', 'created': '2024-11-15 21:25:44', 'submission_id': '1gs5c9m'}
{'comment': '80K votes in MI, The green vote went up by double about 20-30K and Trump cut the Lib vote in half ; they should go protest about it after January 20th, tell me how it goes', 'created': '2024-11-15 21:21:14', 'submission_id': '1gs5c9m'}
{'comment': 'Fuck them they wanted expulsion from the country, they got it.', 'created': '2024-11-15 23:41:59', 'submission_id': '1gs5c9m'}
{'comment': "You voted for him ? You deserve all of the shit coming your way. I don't care.", 'created': '2024-11-15 21:28:53', 'submission_id': '1gs5c9m'}
{'comment': 'No shit!', 'created': '2024-11-15 21:13:53', 'submission_id': '1gs5c9m'}
{'comment': 'Playing?! Nah, past tense. Played.', 'created': '2024-11-15 21:24:32', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-15 21:25:49', 'submission_id': '1gs5c9m'}
{'comment': 'Seriously f u very much\n\nAny demographic that didn’t vote for Harris and start regretting their choice ; f u very much', 'created': '2024-11-16 08:20:04', 'submission_id': '1gs5c9m'}
{'comment': 'It’s almost like this guy might be a con man or something!', 'created': '2024-11-16 01:02:44', 'submission_id': '1gs5c9m'}
{'comment': 'I will never take these people serious again. They have burned that bridge, congrats idiots.\xa0', 'created': '2024-11-15 21:15:41', 'submission_id': '1gs5c9m'}
{'comment': 'As I tell anyone who voted for this crapfest: I hope you get everything you voted for.', 'created': '2024-11-15 23:33:40', 'submission_id': '1gs5c9m'}
{'comment': '54% of Muslims voted for JILL STEIN??? \n\nPONDER THIS…. HARD.', 'created': '2024-11-16 07:53:59', 'submission_id': '1gs5c9m'}
{'comment': 'You think a little critical thinking would prevent this… The stupidity doesn’t end!', 'created': '2024-11-15 21:27:44', 'submission_id': '1gs5c9m'}
{'comment': 'Lol. Trump didn’t play them. They played themselves. They’ve only just begun the initial Find Out Phase. There are four years to go. And, oh my heavens, are they ever going to *Find Out.*\n\nNo one twisted their arms. They voted for it. Enjoy!', 'created': '2024-11-16 00:15:51', 'submission_id': '1gs5c9m'}
{'comment': 'You reap what you sow', 'created': '2024-11-15 23:22:47', 'submission_id': '1gs5c9m'}
{'comment': '“I never thought the leopards would eat *my* face!” He literally had a Muslim ban when he was in office the first time!', 'created': '2024-11-15 22:56:16', 'submission_id': '1gs5c9m'}
{'comment': 'Oh boo hoo. Every center-left voter with more than 2 brain cells told you so. Now you reap what you sow. Enjoy having you and your family deported because you just couldn\'t drop the "they\'re both bad" rhetoric.', 'created': '2024-11-15 23:12:09', 'submission_id': '1gs5c9m'}
{'comment': 'I don’t care if you’re Muslim, Mexican, Chinese, Haitian, Cuban, or Mongolian. If you’re dumb enough to vote Trump, you *deserve* to be deported. \n\nLow IQ people are ruining this country.', 'created': '2024-11-15 21:54:20', 'submission_id': '1gs5c9m'}
{'comment': "played you not playing. it's over and you screwed the world with your stupidity.", 'created': '2024-11-15 21:29:16', 'submission_id': '1gs5c9m'}
{'comment': "Hey we warned about this, but you didn't listen.", 'created': '2024-11-15 23:24:22', 'submission_id': '1gs5c9m'}
{'comment': "It's kinda like me when I started regretting asking for back door play with that guy in college with the 🐎 🐔.\n\nIt's just the tip... it's only going to get worse!!!\n\nEnjoy your vote!!!\n\n🍿!", 'created': '2024-11-15 23:28:38', 'submission_id': '1gs5c9m'}
{'comment': 'You played yourself! And we all will suffer for it.', 'created': '2024-11-16 01:55:06', 'submission_id': '1gs5c9m'}
{'comment': 'If only someone had warned them.', 'created': '2024-11-16 02:21:55', 'submission_id': '1gs5c9m'}
{'comment': 'Muslim-ban guy lied to the Muslim community? What?', 'created': '2024-11-16 04:02:06', 'submission_id': '1gs5c9m'}
{'comment': 'A little late to realize you sold out your country in a meaningless protest vote encouraged by online trolls', 'created': '2024-11-16 05:44:20', 'submission_id': '1gs5c9m'}
{'comment': "WELL, DUH!!! Every single trump voter needs to be tattooed with IDIOT on their forehead. I'll start with my family, you start with yours 😋", 'created': '2024-11-16 06:04:05', 'submission_id': '1gs5c9m'}
{'comment': "I don't want to hear it. They should just stay quiet", 'created': '2024-11-15 21:30:04', 'submission_id': '1gs5c9m'}
{'comment': "Don't know why we'd expect anything else from the Muslim community. Look at Islamic governments around the world and tell me which one is as democratic as our, potentially soon to be former, American democracy", 'created': '2024-11-15 21:28:46', 'submission_id': '1gs5c9m'}
{'comment': "I can understand not voting altogether if you are that upset with Kamala (albeit, she does want a cese-fire but whatever). \n\nBut to vote for Trump is an absurd level of delusion, considering he's boys with Netanyahu and the Muslim Ban he ran on in 2016, that people just forgot about.", 'created': '2024-11-15 23:45:39', 'submission_id': '1gs5c9m'}
{'comment': 'Duh.', 'created': '2024-11-15 21:19:21', 'submission_id': '1gs5c9m'}
{'comment': "I don't want to hear anything from them.", 'created': '2024-11-15 21:31:26', 'submission_id': '1gs5c9m'}
{'comment': 'Michigander here. It’s so frustrating, man. Ann Arbor delivered for Harris, voting similarly to 2020. But the rest of the state did not.', 'created': '2024-11-15 21:38:11', 'submission_id': '1gs5c9m'}
{'comment': '[removed]', 'created': '2024-11-15 21:43:58', 'submission_id': '1gs5c9m'}
{'comment': 'Congratulations. You’ve cut off your nose to spite your face. You win!', 'created': '2024-11-15 22:58:15', 'submission_id': '1gs5c9m'}
{'comment': "I'm sorry, but he wasn't even playing you! You believed a fantasy that wasn't real.", 'created': '2024-11-15 23:26:40', 'submission_id': '1gs5c9m'}
{'comment': 'too late fkn asshats. live with your consequences like the rest of us. you knew exactly what you were voting for.', 'created': '2024-11-15 23:48:30', 'submission_id': '1gs5c9m'}
{'comment': 'Oh, look the leopard ate my face', 'created': '2024-11-16 00:12:17', 'submission_id': '1gs5c9m'}
{'comment': 'Trump wanted to implement a registry for Muslims last time. He’ll probably try again.', 'created': '2024-11-16 00:42:04', 'submission_id': '1gs5c9m'}
{'comment': '“In other words, they wanted Harris to win, but didn’t want to have to vote for her in order for that to happen, so they didn’t sacrifice their own principles.”\n\naaaaahhhhHhHHHHHHHHHHHHHHHHHHHHHHH I truly don’t know where we go from here if he decides to go full fascist man', 'created': '2024-11-16 01:41:32', 'submission_id': '1gs5c9m'}
{'comment': 'Basically one word.\n\n\nKarma.', 'created': '2024-11-16 02:02:00', 'submission_id': '1gs5c9m'}
{'comment': 'This is what they voted for.', 'created': '2024-11-16 02:53:15', 'submission_id': '1gs5c9m'}
{'comment': 'https://preview.redd.it/sre1eq5m371e1.png?width=400&format=png&auto=webp&s=b1b867b8aa81c6ea756bbfa5117f50dd9fcb563d', 'created': '2024-11-16 05:58:24', 'submission_id': '1gs5c9m'}
{'comment': 'They played themselves, people need to start accepting responsibilities for their actions. This whole not my fault ! somebody made me ! bs is weak. You have a brain you can research, so you only can blame yourself.', 'created': '2024-11-16 07:43:28', 'submission_id': '1gs5c9m'}
{'comment': 'Ya good thing you aren’t going to be here when America is great again!\n\n/s', 'created': '2024-11-15 21:21:30', 'submission_id': '1gs5c9m'}
{'comment': 'Oops, who could’ve guessed that supporting someone with a history of anti-Muslim rhetoric would backfire? Oh wait, we did try to warn you.', 'created': '2024-11-15 21:32:32', 'submission_id': '1gs5c9m'}
{'comment': '\n\nMy mood at this point. Seriously what did people expect? Buyer’s remorse 10 days after the election, so soon? They can’t sane wash this shit show any more? More to come, and it’s not even the holidays yet…', 'created': '2024-11-15 21:47:58', 'submission_id': '1gs5c9m'}
{'comment': 'I don’t buy this. You *know* who you’re voting for when you vote. I refuse to believe that a city with this large of a population of Muslims ALL thought “ohhh trump isn’t going to do ALLLLLL the bad stuff he says, he’s just a big joker that’s all!! I’m sure he’ll look out for us Muslims!”', 'created': '2024-11-15 21:35:50', 'submission_id': '1gs5c9m'}
{'comment': 'Fucking assholes.', 'created': '2024-11-15 21:50:58', 'submission_id': '1gs5c9m'}
{'comment': 'https://preview.redd.it/32j3yhqiu41e1.jpeg?width=592&format=pjpg&auto=webp&s=50c8b7bb1016b6c357d7c883021929b944f86925', 'created': '2024-11-15 22:23:50', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-15 23:00:45', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-15 23:02:32', 'submission_id': '1gs5c9m'}
{'comment': 'Netanyahu thanks you for your service.', 'created': '2024-11-16 00:10:11', 'submission_id': '1gs5c9m'}
{'comment': 'Bruh I don’t want to hear it', 'created': '2024-11-16 00:21:52', 'submission_id': '1gs5c9m'}
{'comment': 'Play stupid games, win stupid prizes', 'created': '2024-11-16 01:38:36', 'submission_id': '1gs5c9m'}
{'comment': 'Muslims are the last minority that should ever vote Republican. Republicans hate them', 'created': '2024-11-16 04:50:56', 'submission_id': '1gs5c9m'}
{'comment': 'https://i.redd.it/udsmjrmzt61e1.gif', 'created': '2024-11-16 05:04:27', 'submission_id': '1gs5c9m'}
{'comment': "I imagine it's very hurtful to find out you've been lied to but here's the thing, WE told you the truth. We weren't running for office. We had no reason to lie. But you believed a politician with a long history of lying over us. I feel sorry for you as humans, but I'm really angry right now and I just want you to accept your consequences.", 'created': '2024-11-16 06:14:54', 'submission_id': '1gs5c9m'}
{'comment': 'They can place their “leave Harris” signs in their front yards so maga will know they’re “one of the good ones”.', 'created': '2024-11-16 09:07:21', 'submission_id': '1gs5c9m'}
{'comment': 'We aren’t your mommy or daddy. If you are too\nstupid to figure out the most basic politics there is nothing I can do for you\n\nI feel for the children though', 'created': '2024-11-16 12:41:06', 'submission_id': '1gs5c9m'}
{'comment': 'He didn’t play anyone. He told us exactly what he’d do. We know who he is.', 'created': '2024-11-16 13:13:19', 'submission_id': '1gs5c9m'}
{'comment': 'Oh, for fuck sake… \xa0they’re probably some of the most conservative, goddamn people and y’all expected them to not vote conservative? \xa0 They will do it all day every day.', 'created': '2024-11-16 14:13:29', 'submission_id': '1gs5c9m'}
{'comment': 'I wonder if they will soon be deported as well?', 'created': '2024-11-15 21:30:01', 'submission_id': '1gs5c9m'}
{'comment': 'And you’re just *now* saying that?\n\n', 'created': '2024-11-15 21:56:02', 'submission_id': '1gs5c9m'}
{'comment': 'That would be a shame if they were all deported. Karma?', 'created': '2024-11-15 21:28:47', 'submission_id': '1gs5c9m'}
{'comment': "No shit!! It's not like we told you so.", 'created': '2024-11-15 21:31:32', 'submission_id': '1gs5c9m'}
{'comment': 'Play stupid games get stupid prizes', 'created': '2024-11-15 21:50:59', 'submission_id': '1gs5c9m'}
{'comment': '*Let the leopards eat faces* 🐆', 'created': '2024-11-15 21:35:24', 'submission_id': '1gs5c9m'}
{'comment': "Fuck around and find out. Honestly, part of me can't wait for next year. Although the other part is already dead inside so there's that.", 'created': '2024-11-15 21:57:17', 'submission_id': '1gs5c9m'}
{'comment': 'No sympathy whatsoever.', 'created': '2024-11-15 22:05:35', 'submission_id': '1gs5c9m'}
{'comment': 'FatJeffrey was extremely clear about the people whom he’s going to totally screw over. Any Muslims who voted for him deserve 100% of what they voted for. They literally voted for it.', 'created': '2024-11-16 01:37:45', 'submission_id': '1gs5c9m'}
{'comment': 'Well they showed the world didn’t they? Their stupid third party vote meant nothing as everyone told them it would. Except by with holding their voting power they let the biggest Muslim hater get back into office.', 'created': '2024-11-16 02:17:38', 'submission_id': '1gs5c9m'}
{'comment': 'Zero empathy.', 'created': '2024-11-16 02:22:28', 'submission_id': '1gs5c9m'}
{'comment': 'i don’t care anymore 🤷\u200d♂️', 'created': '2024-11-16 02:50:46', 'submission_id': '1gs5c9m'}
{'comment': 'Who cares? No one played them, they’re just stupid as fuck. Hope they all get deported.', 'created': '2024-11-16 03:35:59', 'submission_id': '1gs5c9m'}
{'comment': "Don't care. This is what you wanted, sorry your listening and comprehension skills are less than ass, good luck with the consequences to your decisions.", 'created': '2024-11-16 03:55:58', 'submission_id': '1gs5c9m'}
{'comment': 'What did they expect? They were warned on numerous occasions, but they spent more time protesting Harris and tearing apart our party rather than doing hard research on voting for Stein or Trump.', 'created': '2024-11-16 04:14:28', 'submission_id': '1gs5c9m'}
{'comment': 'I’m hope they can see that they are the direct cause of all the destruction trump will do and they should feel awful about it.', 'created': '2024-11-16 05:24:06', 'submission_id': '1gs5c9m'}
{'comment': 'No shit🤣', 'created': '2024-11-16 05:25:46', 'submission_id': '1gs5c9m'}
{'comment': 'Thoughts and mid day prayers', 'created': '2024-11-16 06:12:23', 'submission_id': '1gs5c9m'}
{'comment': "They deserve everything he's gonna do to them. But the rest of us don't. The Palestinians don't. Shame on them.", 'created': '2024-11-16 12:11:10', 'submission_id': '1gs5c9m'}
{'comment': 'Wait, Trump got the Muslim vote too? AFTER HIS Muslim ban? Holy shit', 'created': '2024-11-16 16:00:27', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-16 16:09:54', 'submission_id': '1gs5c9m'}
{'comment': 'Well this is gonna be a tough pill to swallow but there it is.', 'created': '2024-11-15 21:35:45', 'submission_id': '1gs5c9m'}
{'comment': 'Someone should’ve warned them………….oh wait', 'created': '2024-11-15 21:51:47', 'submission_id': '1gs5c9m'}
{'comment': 'People who just had to grab the stove for $600, Alex', 'created': '2024-11-15 22:00:21', 'submission_id': '1gs5c9m'}
{'comment': 'They played themselves', 'created': '2024-11-15 22:03:39', 'submission_id': '1gs5c9m'}
{'comment': 'Nowhere in the article does the word "regret" come up. Not one of those quotes demonstrates any level of regret from anyone interviewed. The words "punish Democrats" did come up though.', 'created': '2024-11-15 22:11:33', 'submission_id': '1gs5c9m'}
{'comment': 'Well, unfortunately I ran out of fucks to give for Trump supporters.', 'created': '2024-11-15 22:14:19', 'submission_id': '1gs5c9m'}
{'comment': "How tf did Muslims forget Republican's unmitigated hatred of Islam? How??", 'created': '2024-11-15 21:47:35', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-15 21:49:56', 'submission_id': '1gs5c9m'}
{'comment': 'Awww…Playing you??? NS Shylock, if your misogyny hadn’t had ahold of your balls we may not be in this mess !', 'created': '2024-11-15 22:13:32', 'submission_id': '1gs5c9m'}
{'comment': 'They played themselves', 'created': '2024-11-15 22:48:55', 'submission_id': '1gs5c9m'}
{'comment': 'The phrase "no shit, Sherlock" comes to mind.\n\nThis was the guy who claimed that he saw Muslims on television cheering when the towers came down on 9/11, despite no TV station having any footage of that. He hates you. Well, he hates almost everyone, but he hates you more than he hates white people, and a little more than he hates Jews.', 'created': '2024-11-16 07:24:25', 'submission_id': '1gs5c9m'}
{'comment': 'Member when the first thing he did in his first term was a muslim ban?', 'created': '2024-11-15 22:12:03', 'submission_id': '1gs5c9m'}
{'comment': 'Yeah, no 💩', 'created': '2024-11-15 23:33:36', 'submission_id': '1gs5c9m'}
{'comment': 'Oh wow who could have seen this happen', 'created': '2024-11-15 23:41:37', 'submission_id': '1gs5c9m'}
{'comment': 'Fucking idiots', 'created': '2024-11-16 00:37:47', 'submission_id': '1gs5c9m'}
{'comment': 'And now we will suffer\n\nTy Talib and Company', 'created': '2024-11-16 01:35:00', 'submission_id': '1gs5c9m'}
{'comment': 'Trump is playing everybody. It is up to you to be smart enough to realize it.', 'created': '2024-11-16 01:43:34', 'submission_id': '1gs5c9m'}
{'comment': 'I see they now reached the “win stupid prizes” phase.', 'created': '2024-11-16 03:17:40', 'submission_id': '1gs5c9m'}
{'comment': 'Oh, was the known liar lying?', 'created': '2024-11-16 03:30:07', 'submission_id': '1gs5c9m'}
{'comment': 'Wow, somebody should have warned you. Who could have predicted this?', 'created': '2024-11-16 03:38:04', 'submission_id': '1gs5c9m'}
{'comment': 'You ate your face', 'created': '2024-11-16 04:01:03', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-16 04:25:22', 'submission_id': '1gs5c9m'}
{'comment': 'https://render.fineartamerica.com/images/rendered/default/print/8/7/break/images-medium-5/he-tells-it-like-it-is-paul-not.jpg\n\nRelevant', 'created': '2024-11-16 04:47:00', 'submission_id': '1gs5c9m'}
{'comment': 'TOUGH TITTY.. FAAFO. GOOD LUCK FOR THE NEXT FOUR YEARS.', 'created': '2024-11-16 13:25:26', 'submission_id': '1gs5c9m'}
{'comment': 'Muslims are not Democrats.', 'created': '2024-11-16 14:42:00', 'submission_id': '1gs5c9m'}
{'comment': 'I will say this - This was identified early on as a potential outcome.', 'created': '2024-11-16 14:53:14', 'submission_id': '1gs5c9m'}
{'comment': 'I don’t think this community swung the election, I don’t cast blame at their feet, but I also don’t feel any sympathy for what will happen especially after Dems tried so hard to message about Trump being so much worse.', 'created': '2024-11-16 17:04:52', 'submission_id': '1gs5c9m'}
{'comment': 'No shit, idiots\xa0', 'created': '2024-11-16 18:04:33', 'submission_id': '1gs5c9m'}
{'comment': 'oh well.. don’t care.', 'created': '2024-11-16 18:22:15', 'submission_id': '1gs5c9m'}
{'comment': 'DeRR', 'created': '2024-11-16 18:25:18', 'submission_id': '1gs5c9m'}
{'comment': 'Like a violin, and of course, you loved it. Good luck being deported, sent to an internment camp, having family members or relatives banned from entering the US, or seeing increased discrimination. You wanted this con man and you got him. \n\nAnd the Hispanic men who don\'t care if deported because they got their "tough guy," good luck with that. And for all the black men who couldn\'t tolerate seeing a woman much less a woman of color in the White House, watch your back because George Floyd will pale in comparison to what\'s coming with Trump 2.0', 'created': '2024-11-16 22:41:58', 'submission_id': '1gs5c9m'}
{'comment': 'If you are a Muslim voting for trump you are beyond repair anyway.', 'created': '2024-11-16 23:39:58', 'submission_id': '1gs5c9m'}
{'comment': 'I get it, I’m tempted to take the fuck around and find out mentality. I really want to. But we’re failing to live up to our own ideals if we do. I want to rub it in the face or every “protest” voter who left the top line blank. But we can’t. We have to build a stronger coalition next time around. It’s time to turn the other cheek. We all got knocked down a couple pegs. We can keep fucking around, or we can learn something. \n\nTrump campaigned everyday for four years after 2020. I hate that he was able to spread so much disinformation that it worked, but god damn it fuck around and find out isn’t a winning strategy. It’ll feel good, it will satisfy you for a time to punish the people who let you down. Then you’ll realize we’re no better off than we were before.', 'created': '2024-11-17 03:09:27', 'submission_id': '1gs5c9m'}
{'comment': '\n\nLeopards currently', 'created': '2024-11-15 22:09:43', 'submission_id': '1gs5c9m'}
{'comment': 'These “I regret voting for Trump within a week” post are getting really tiresome because 1) I don’t care and 2) I don’t believe it.', 'created': '2024-11-15 22:47:59', 'submission_id': '1gs5c9m'}
{'comment': 'Congratulations. You played yourself.', 'created': '2024-11-15 23:01:53', 'submission_id': '1gs5c9m'}
{'comment': "I think it needs to be said that, even factoring in protest votes, this was still an unmitigated disaster for the Democrats. Blaming certain voting blocks for not falling in line is not going to change anything. Yeah, in hindsight, was it dumb? Certainly. Did those votes swing the election? Abso-fucking-lutely not.\n\nHarris and the DNC did a terrible job at getting their message out, and showing how Harris would be different from Biden, how her policies affected the working class, and how her policies for the economy would be any different than what Biden had done. The fact is, entire voting blocks felt alienated by the Democrat's message and just simply didn't vote. That is on Harris the DNC and Biden, nobody else.", 'created': '2024-11-15 21:42:29', 'submission_id': '1gs5c9m'}
{'comment': 'All I’m going to say is I told you, I told you, I told you. But nooo….', 'created': '2024-11-15 21:48:20', 'submission_id': '1gs5c9m'}
{'comment': 'Idiots.', 'created': '2024-11-15 21:51:46', 'submission_id': '1gs5c9m'}
{'comment': "Yeah, that was a stupid move on the 'Uncommitted' movement.", 'created': '2024-11-15 22:25:12', 'submission_id': '1gs5c9m'}
{'comment': 'Who cares! I am glad that realized what everyone had been telling them for over a year: vote for Trump at your peril.\n\n“We tried to tell ya” - Old Black proverb.', 'created': '2024-11-16 07:10:08', 'submission_id': '1gs5c9m'}
{'comment': '"Wait, the leopard is eating out collective faces?"\n\n*ShockedPickachu.jpg*', 'created': '2024-11-15 21:57:42', 'submission_id': '1gs5c9m'}
{'comment': 'Don’t you hate it whenever the leopards eat your face?', 'created': '2024-11-15 22:14:12', 'submission_id': '1gs5c9m'}
{'comment': "Yes. Muslims got played. \n\nSwing voters got played. \n\nOther voters got played. \n\nBut you're only playing into the fascists hand when you are antagonistic towards the Muslims when they start to figure it out. The fascists want everyone else divided.\n\nInstead, we should see this as an opportunity to continue to open their eyes.\n\nSo if you know someone who is Muslim, who voted for Trump, but is now having a lot of second thoughts about there vote. Encourage the second thoughts, and help them to see Trump and the Republican Party for what they really are.", 'created': '2024-11-15 23:51:41', 'submission_id': '1gs5c9m'}
{'comment': 'Guys. Muslim voters weren’t the reason we lost. This is pathetic.', 'created': '2024-11-15 21:52:39', 'submission_id': '1gs5c9m'}
{'comment': 'Harris would still have lost if Michigan Muslims voted for her. Democrats got absolutely destroyed in this election and they’d better start reflecting on why they’re losing appeal. Bernie made some great points during his interview on The Daily. They need to be acknowledging that people are struggling.', 'created': '2024-11-16 04:35:01', 'submission_id': '1gs5c9m'}
{'comment': 'No shit', 'created': '2024-11-15 21:40:14', 'submission_id': '1gs5c9m'}
{'comment': 'r/LeopardsAteMyFace NO SHIT SHERLOCK!', 'created': '2024-11-15 21:44:52', 'submission_id': '1gs5c9m'}
{'comment': 'Idiots', 'created': '2024-11-15 22:58:01', 'submission_id': '1gs5c9m'}
{'comment': 'They didn’t wanna punish Harris or the Democrats they wanted to punish America. At least say it right', 'created': '2024-11-15 23:08:08', 'submission_id': '1gs5c9m'}
{'comment': 'I get the point. But that is the poorest written article I have ever read.', 'created': '2024-11-15 23:09:07', 'submission_id': '1gs5c9m'}
{'comment': 'That source tho 🙄', 'created': '2024-11-15 23:13:04', 'submission_id': '1gs5c9m'}
{'comment': 'Que a massive, nation-spanning golf clap.\n\nFool me once, shame on you. Fool me twice, shame on me. Fool me three times... well, what makes you think there will even be a SECOND time?', 'created': '2024-11-15 23:19:14', 'submission_id': '1gs5c9m'}
{'comment': 'Hmm if only they had been warned… 🙄', 'created': '2024-11-15 23:35:50', 'submission_id': '1gs5c9m'}
{'comment': 'Well duh', 'created': '2024-11-15 23:38:08', 'submission_id': '1gs5c9m'}
{'comment': 'Duh', 'created': '2024-11-15 23:46:31', 'submission_id': '1gs5c9m'}
{'comment': 'Na, uh, na? Ya, think?????', 'created': '2024-11-16 00:06:02', 'submission_id': '1gs5c9m'}
{'comment': 'This is an Outrage!?', 'created': '2024-11-16 01:21:37', 'submission_id': '1gs5c9m'}
{'comment': 'Thoughts and prayers.', 'created': '2024-11-16 01:22:26', 'submission_id': '1gs5c9m'}
{'comment': 'DAH !', 'created': '2024-11-16 01:36:41', 'submission_id': '1gs5c9m'}
{'comment': 'Always next season to vote Democrat', 'created': '2024-11-16 02:41:13', 'submission_id': '1gs5c9m'}
{'comment': 'No 💩', 'created': '2024-11-16 02:50:16', 'submission_id': '1gs5c9m'}
{'comment': "It's kind of like watching those people in a group that don't get a joke for 10 minutes", 'created': '2024-11-16 03:04:04', 'submission_id': '1gs5c9m'}
{'comment': 'https://preview.redd.it/lapc07k3a61e1.jpeg?width=600&format=pjpg&auto=webp&s=004f37f959e7cd1070e97f922d370e443c6b122e', 'created': '2024-11-16 03:12:56', 'submission_id': '1gs5c9m'}
{'comment': 'Ya think?', 'created': '2024-11-16 03:22:58', 'submission_id': '1gs5c9m'}
{'comment': 'No shit…', 'created': '2024-11-16 03:42:51', 'submission_id': '1gs5c9m'}
{'comment': 'Why would they regret it? He told them exactly what he was going to do. We all already know who he is. He banned them in his first term. They had to want these things to vote for him. I mean are they fucking serious?', 'created': '2024-11-16 03:56:32', 'submission_id': '1gs5c9m'}
{'comment': 'Yeah think. Idiots', 'created': '2024-11-16 04:24:37', 'submission_id': '1gs5c9m'}
{'comment': 'How? He said what he wants to do multiple times. \xa0', 'created': '2024-11-16 04:27:42', 'submission_id': '1gs5c9m'}
{'comment': 'Every voter should be forced to read exactly what each candidate has said before they can cast their ballots', 'created': '2024-11-16 04:43:12', 'submission_id': '1gs5c9m'}
{'comment': 'A to little to late buyers remorse☠️🆘😳🥊', 'created': '2024-11-16 04:44:56', 'submission_id': '1gs5c9m'}
{'comment': "You shoulda thought about that before you voted for him. Now you're stuck with him.", 'created': '2024-11-16 05:02:14', 'submission_id': '1gs5c9m'}
{'comment': 'Tell it to someone who cares', 'created': '2024-11-16 05:21:54', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-16 05:32:56', 'submission_id': '1gs5c9m'}
{'comment': 'Duh', 'created': '2024-11-16 05:49:34', 'submission_id': '1gs5c9m'}
{'comment': 'You played yourself voters', 'created': '2024-11-16 05:51:40', 'submission_id': '1gs5c9m'}
{'comment': 'Welp...', 'created': '2024-11-16 05:52:51', 'submission_id': '1gs5c9m'}
{'comment': 'This is my shocked face.', 'created': '2024-11-16 06:16:33', 'submission_id': '1gs5c9m'}
{'comment': "Trump has been very consistent on this; he hates you and cant believe you were dumb enough to do this. buyers remorse now is about the dumbest shit I've ever heard of.", 'created': '2024-11-16 06:26:42', 'submission_id': '1gs5c9m'}
{'comment': 'Uh duh.\n\nLiterally, how stupid can you be.', 'created': '2024-11-16 06:43:05', 'submission_id': '1gs5c9m'}
{'comment': 'I call bullshit on that.', 'created': '2024-11-16 08:09:22', 'submission_id': '1gs5c9m'}
{'comment': 'Duh!', 'created': '2024-11-16 08:36:52', 'submission_id': '1gs5c9m'}
{'comment': 'America doesn’t deserve to be a democracy \n\nThey are filled with morons', 'created': '2024-11-16 12:47:32', 'submission_id': '1gs5c9m'}
{'comment': 'It’s kind of amazing. On what were they deceived?', 'created': '2024-11-16 16:56:22', 'submission_id': '1gs5c9m'}
{'comment': 'You think so?', 'created': '2024-11-16 19:25:34', 'submission_id': '1gs5c9m'}
{'comment': 'Faces will be eaten.', 'created': '2024-11-16 21:41:49', 'submission_id': '1gs5c9m'}
{'comment': 'I have ZERO words to say about this. A middle finger will suffice.', 'created': '2024-11-16 23:02:57', 'submission_id': '1gs5c9m'}
{'comment': 'No were not.', 'created': '2024-11-17 21:01:24', 'submission_id': '1gs5c9m'}
{'comment': 'Thoughts and prayers dummies. Leopard Eat Face.', 'created': '2024-11-15 22:27:35', 'submission_id': '1gs5c9m'}
{'comment': 'The reality is that if the United States continues to be a democracy, it will only be because of conservative Republicans in the Senate who are faithful to the Constitution. \n\nThey’re worthy of respect. \n\nLiberals, moderates and progressives who failed to vote for Harris or Democratic candidates for Congress in states where they lost by a narrow margin deserve to suffer from a weird itch for the rest of their lives.', 'created': '2024-11-16 01:21:28', 'submission_id': '1gs5c9m'}
{'comment': "I mean they can't say they weren't earned about this.", 'created': '2024-11-15 21:39:47', 'submission_id': '1gs5c9m'}
{'comment': 'Oh my goodness my shocked expression is getting so much mileage this week!', 'created': '2024-11-15 21:40:05', 'submission_id': '1gs5c9m'}
{'comment': 'Shit the F up and sit down!!!', 'created': '2024-11-15 21:40:26', 'submission_id': '1gs5c9m'}
{'comment': 'Well, duh!', 'created': '2024-11-15 21:41:21', 'submission_id': '1gs5c9m'}
{'comment': 'Slowly the penny drops. It will be raining pennies soon', 'created': '2024-11-15 21:41:44', 'submission_id': '1gs5c9m'}
{'comment': '“Damn that’s crazy”', 'created': '2024-11-15 21:48:37', 'submission_id': '1gs5c9m'}
{'comment': 'Well duh', 'created': '2024-11-15 21:52:06', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-15 21:55:10', 'submission_id': '1gs5c9m'}
{'comment': 'a lying liar lied who would have thought', 'created': '2024-11-15 21:56:23', 'submission_id': '1gs5c9m'}
{'comment': 'yeah no i just am not buying people not having any idea who they voted for', 'created': '2024-11-15 21:57:54', 'submission_id': '1gs5c9m'}
{'comment': 'That should be past-tense: Trump played you. You lost all of your power, so definitely past tense. I’m not going to say “I told you so”, but it isn’t like you weren’t fucking warned.', 'created': '2024-11-15 21:58:53', 'submission_id': '1gs5c9m'}
{'comment': 'Duh', 'created': '2024-11-15 22:02:26', 'submission_id': '1gs5c9m'}
{'comment': '\n\nI mean…did we or did we not try to warn them?', 'created': '2024-11-15 22:06:33', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-15 22:09:25', 'submission_id': '1gs5c9m'}
{'comment': 'Consequences of their own actions. They decided protesting in a critical election by not voting was a good idea. \n\nWell good luck to them.', 'created': '2024-11-15 22:18:53', 'submission_id': '1gs5c9m'}
{'comment': 'Basically Trump told everyone what he intends to do and everyone fell into his misinformation machine', 'created': '2024-11-15 22:22:44', 'submission_id': '1gs5c9m'}
{'comment': 'Who had 10days on their betting sheet on how long it would take for people to start to regret their voting decision?!', 'created': '2024-11-15 22:27:28', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-15 22:28:17', 'submission_id': '1gs5c9m'}
{'comment': 'Yeah, but they were never going to vote for as women, so….', 'created': '2024-11-15 22:28:58', 'submission_id': '1gs5c9m'}
{'comment': 'Trump \\*played you. And now he has no use for you.', 'created': '2024-11-15 22:29:40', 'submission_id': '1gs5c9m'}
{'comment': "It's assimilation. The majority of white voters have been voting for the billionaire class to **** them over for years. Muslim Americans have learned the American way.", 'created': '2024-11-15 22:32:06', 'submission_id': '1gs5c9m'}
{'comment': 'No sympathy from me. pure schadenfreude.', 'created': '2024-11-15 22:38:24', 'submission_id': '1gs5c9m'}
{'comment': 'Put a quarter in your ass cause you played yourself.', 'created': '2024-11-15 22:51:39', 'submission_id': '1gs5c9m'}
{'comment': 'Hold on to your burkas bitches. It’s not even started yet.', 'created': '2024-11-16 04:46:29', 'submission_id': '1gs5c9m'}
{'comment': 'Actually pretty funny, the side they voted against pushes things they hate, and the side they voted for knows how shitty Islam is', 'created': '2024-11-16 07:50:24', 'submission_id': '1gs5c9m'}
{'comment': 'It’d be nice to find out exactly what the immigration status of those residing in specific zip codes are. \n\nI wouldn’t mind helping out in deportation efforts of any anti-gay bigot who voted for Trump. That’s one movement I will gladly get behind.', 'created': '2024-11-15 21:58:54', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-15 21:30:56', 'submission_id': '1gs5c9m'}
{'comment': '#ETTD', 'created': '2024-11-15 21:40:15', 'submission_id': '1gs5c9m'}
{'comment': 'Duh', 'created': '2024-11-15 21:40:24', 'submission_id': '1gs5c9m'}
{'comment': 'Well, *duh.*', 'created': '2024-11-15 21:42:39', 'submission_id': '1gs5c9m'}
{'comment': 'Well said.', 'created': '2024-11-15 21:59:06', 'submission_id': '1gs5c9m'}
{'comment': 'Duh doy', 'created': '2024-11-15 22:17:25', 'submission_id': '1gs5c9m'}
{'comment': 'Sometimes it’s refreshing to encounter a genuinely stupid person or group of people. Whomp Whomp.', 'created': '2024-11-15 22:30:04', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-15 22:37:59', 'submission_id': '1gs5c9m'}
{'comment': 'He always is. Tf!', 'created': '2024-11-15 22:41:42', 'submission_id': '1gs5c9m'}
{'comment': 'Really…no..you’re kidding…get out of of here…', 'created': '2024-11-15 22:42:38', 'submission_id': '1gs5c9m'}
{'comment': 'You think? Trump does love the poorly educated....', 'created': '2024-11-15 22:44:04', 'submission_id': '1gs5c9m'}
{'comment': 'The wanted to ef the dems so badly tho.', 'created': '2024-11-16 01:23:49', 'submission_id': '1gs5c9m'}
{'comment': 'Gee, really? Just listened to a Trump voter touting Biden’s economy yet crediting Trump’s reelection. I told him, “ Wait until Putin invades more of Europe “. Americans of every ethnicity need to flee this country and be safe elsewhere, just claim to be Canadian or develop an Australian accent.', 'created': '2024-11-15 22:47:00', 'submission_id': '1gs5c9m'}
{'comment': 'even if, lets say they voted for kamala, trump still wins the whitehouse without MI', 'created': '2024-11-15 22:02:06', 'submission_id': '1gs5c9m'}
{'comment': 'Muslim voters didn’t cost Harris her election lol even if all the 3rd party voters voted for her. She would have still lost', 'created': '2024-11-16 04:22:23', 'submission_id': '1gs5c9m'}
{'comment': 'Literally idiocracy', 'created': '2024-11-15 22:02:40', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-15 23:20:03', 'submission_id': '1gs5c9m'}
{'comment': "I'm not going to feel sorry for a single person who didn't vote for Harris and gets fucked by Trump. My heart breaks for all the people that made the right choice and still have to go through it, but everyone else can get fucked", 'created': '2024-11-16 03:03:39', 'submission_id': '1gs5c9m'}
{'comment': 'They were so caught up in their own hate they fucked themselves over🤌🏼', 'created': '2024-11-15 23:10:24', 'submission_id': '1gs5c9m'}
{'comment': '☝️', 'created': '2024-11-15 21:53:59', 'submission_id': '1gs5c9m'}
{'comment': 'This article doesn’t contain a single word about Muslim voters regretting their vote. It also doesn’t contain the “he’s playing us” quote. \n\nPeople who spread this garbage are doing literally the exact same thing as confused senior citizens on Facebook spreading right wing conspiracies. Falling for clickbait without even having the media literacy to actually click it is how you end up with a Fox News host as your secretary of defense. \n\nDo better, democrats.', 'created': '2024-11-15 22:21:30', 'submission_id': '1gs5c9m'}
{'comment': '\n\nDJ Khaled could make a living going door-to-door telling everyone who voted Trump that. As an added bonus, it leaves him little time to “play” a Bob Marley guitar.', 'created': '2024-11-16 03:17:42', 'submission_id': '1gs5c9m'}
{'comment': 'Nah, Russia played them', 'created': '2024-11-16 00:09:30', 'submission_id': '1gs5c9m'}
{'comment': 'And the rest of us', 'created': '2024-11-15 23:43:44', 'submission_id': '1gs5c9m'}
{'comment': 'Stick a quarter in yo ass', 'created': '2024-11-16 01:48:01', 'submission_id': '1gs5c9m'}
{'comment': 'Barnum was almost right. You CAN fool MOST of the people all of the time.', 'created': '2024-11-16 02:02:14', 'submission_id': '1gs5c9m'}
{'comment': "He didn't lie about not getting you into checkmate...you kind just left yourself open...", 'created': '2024-11-16 03:39:49', 'submission_id': '1gs5c9m'}
{'comment': 'They were warned for years. But too much “women shouldn’t be equal” crap going on in their heads. Let’s be real.', 'created': '2024-11-16 03:58:14', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-16 06:28:39', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-16 12:53:01', 'submission_id': '1gs5c9m'}
{'comment': 'On the bright side, maybe some of them will renounce their faith and choose to educate themselves instead of just banking on prayer to the god that obviously has abandoned them (and likely never was).', 'created': '2024-11-16 15:08:39', 'submission_id': '1gs5c9m'}
{'comment': 'He is literally a con artist and people act surprised?', 'created': '2024-11-16 15:08:59', 'submission_id': '1gs5c9m'}
{'comment': 'They literally told Democrats what they thought, as did the ICC, ICJ, and every humans right group on the planet. What did we do? We sent Bill Clinton, who to espoused King David rhetoric, and Ritchie Torres to Michigan. Because of our actions we opened a hole for Trump to weasel his way into, losing a group that overwhelmingly voted for us previously. We played ourselves.', 'created': '2024-11-15 23:47:01', 'submission_id': '1gs5c9m'}
{'comment': ">He doesn't mean me though.", 'created': '2024-11-15 21:34:48', 'submission_id': '1gs5c9m'}
{'comment': 'The Michigan muslims were already voting for Republicans in 2022 because of LGBT issues.', 'created': '2024-11-15 23:10:25', 'submission_id': '1gs5c9m'}
{'comment': 'What intellect?', 'created': '2024-11-15 21:42:46', 'submission_id': '1gs5c9m'}
{'comment': None, 'created': '2024-11-16 02:49:48', 'submission_id': '1gs5c9m'}
{'comment': "They choose to believe that the regime will spare them personally and only harm somebody else. They ultimately dream of getting some benefit from another's suffering.", 'created': '2024-11-16 11:21:19', 'submission_id': '1gs5c9m'}
{'comment': 'It sounds like they thought Democrats would win and they did a protest vote against Harris, It’s a dumb thing to do.\xa0', 'created': '2024-11-16 12:06:05', 'submission_id': '1gs5c9m'}
{'comment': 'They\'re in serious contention for the "stupidest people in the world" award at this point. The only contenders are gay and trans people who voted for Trump.', 'created': '2024-11-16 13:57:51', 'submission_id': '1gs5c9m'}
{'comment': 'Forgot about the 1st thing he did calked the Muslim ban…but ok! Dish out punishment, now what?', 'created': '2024-11-17 01:22:36', 'submission_id': '1gs5c9m'}
{'comment': 'Or the significantly much more recent, "finish the job"?', 'created': '2024-11-15 21:25:37', 'submission_id': '1gs5c9m'}
{'comment': None, 'created': '2024-11-15 23:10:59', 'submission_id': '1gs5c9m'}
{'comment': "They didn't forget. They just reached for every reason not to vote for VP Harris. And we know why. They have to be the most ridiculous voting block. As a group they aren't very bright or politically savvy.", 'created': '2024-11-15 22:47:17', 'submission_id': '1gs5c9m'}
{'comment': 'He can ban the MAGA Muslims. Done caring', 'created': '2024-11-16 02:21:03', 'submission_id': '1gs5c9m'}
{'comment': '“He’s only banning the bad ones!”', 'created': '2024-11-16 01:04:15', 'submission_id': '1gs5c9m'}
{'comment': 'Trump will give them a reminder. I believe that he wants to expand the ban on more countries.', 'created': '2024-11-16 07:44:08', 'submission_id': '1gs5c9m'}
{'comment': 'Ban<Children being roasted alive in their hospital beds', 'created': '2024-11-16 02:07:50', 'submission_id': '1gs5c9m'}
{'comment': 'My rental properties will become my primary source of income, followed by options trading on my 7-figure portfolio. The business I bought earlier this year is in for some rough times—the tariffs Trump proposes will hurt it substantially', 'created': '2024-11-16 17:57:40', 'submission_id': '1gs5c9m'}
{'comment': '', 'created': '2024-11-15 21:29:47', 'submission_id': '1gs5c9m'}
{'comment': 'Don’t worry, Trump will expel them from the United States', 'created': '2024-11-15 21:12:08', 'submission_id': '1gs5c9m'}
{'comment': 'In 2025 FAFO will be the word of the year', 'created': '2024-11-15 21:30:24', 'submission_id': '1gs5c9m'}
{'comment': 'That is extremely well put, and yet quite terrifying.', 'created': '2024-11-16 00:52:54', 'submission_id': '1gs5c9m'}
{'comment': 'Wow, summarized perfectly', 'created': '2024-11-17 01:33:58', 'submission_id': '1gs5c9m'}
{'comment': 'The new government will really appreciate that. Having them all in one place will make rounding them up so much easier.', 'created': '2024-11-15 21:31:23', 'submission_id': '1gs5c9m'}
{'comment': None, 'created': '2024-11-15 23:11:42', 'submission_id': '1gs5c9m'}
{'comment': 'And they should protest in college campuses, Trump has a special plan for those protesters.', 'created': '2024-11-16 07:50:37', 'submission_id': '1gs5c9m'}
{'comment': 'Priceless, I’m using it. Is this woman from SNL?', 'created': '2024-11-15 22:33:05', 'submission_id': '1gs5c9m'}
{'comment': 'Agreed you will not find me standing on the street corner protesting their treatment at all they couldn’t be bothered to show up to save our democracy. They can suffer the consequences along with the rest of us.', 'created': '2024-11-15 21:27:15', 'submission_id': '1gs5c9m'}
{'comment': 'Ouch.', 'created': '2024-11-15 23:40:09', 'submission_id': '1gs5c9m'}
{'comment': 'I can’t even understand not voting. If you *really* wanted to take action and don’t live in la la land, I don’t understand how not voting accomplishes that mission. FAFO indeed.', 'created': '2024-11-16 03:47:55', 'submission_id': '1gs5c9m'}
{'comment': "Muslims tend to be very conservative on social issues. Why wouldn't they for for the guy who wants to ban gay people", 'created': '2024-11-16 11:16:10', 'submission_id': '1gs5c9m'}
{'comment': 'I just keep,saying hmm mmm, yup to myself. I don’t know what more to say at this point.', 'created': '2024-11-15 21:47:35', 'submission_id': '1gs5c9m'}
{'comment': 'A lot of people love being lied to.', 'created': '2024-11-15 23:19:29', 'submission_id': '1gs5c9m'}
{'comment': "Exactly. I'm sorry but I have NO sympathy for bigots and racists. They knew what they were supporting - I don't care now if it harms them (which was also really stoooopid on top of all the hate and cruelty)", 'created': '2024-11-15 22:19:20', 'submission_id': '1gs5c9m'}
{'comment': "They didn't listen, or didn't want to listen, or only watched Fox.", 'created': '2024-11-16 16:28:53', 'submission_id': '1gs5c9m'}
{'comment': 'Masturbating with a megalomaniac.', 'created': '2024-11-15 22:08:13', 'submission_id': '1gs5c9m'}
{'comment': '..to have been smart enough to… the bastard is elected.', 'created': '2024-11-16 01:45:11', 'submission_id': '1gs5c9m'}
{'comment': 'We are blaming certain voting blocks for contributing to the totality of the outcome.\n\nSaying things like “gas prices” or “egg prices” is just as bullshit an explanation for why Dems lost.', 'created': '2024-11-15 22:10:11', 'submission_id': '1gs5c9m'}
{'comment': ">Harris and the DNC did a terrible job at getting their message out,\n\nNo. Harris ran a great campaign. \n\nPeople simply could no longer hear it. Decades of Republicans painting Democrats as incompetent radical lefties, amplified a hundred times by Trump, paid off in full.\n\nWhat Democrats need to realize is that the Nazis most powerful weapon was not their military. It was not their science and engineering. It was their weaponized rhetoric. \n\nAnd we have been witnessing an effective demonstration from the fascist playbook. A psyops war waged against American voters by Trump and GOP leadership. \n\nSo it didn't matter who the candidate was, or what the campaign strategies were, Trump and the GOP would have simply modified the tsunami of misinformation to compensate.", 'created': '2024-11-15 23:17:09', 'submission_id': '1gs5c9m'}
{'comment': 'Nah, fuck em. They didn’t want to listen before, why are they deserving of empathy now? They’re accountable for their own decisions, and no other adult owes them any sympathy.', 'created': '2024-11-16 00:09:55', 'submission_id': '1gs5c9m'}
{'comment': 'Low information voters', 'created': '2024-11-15 21:58:37', 'submission_id': '1gs5c9m'}
{'comment': 'It is one of the many reasons.\n\nBut a vivid example of voting against your own interests to “punish democrats.”\n\nAnd then whining about the consequences.', 'created': '2024-11-15 22:08:35', 'submission_id': '1gs5c9m'}
{'comment': 'That’s not the point most people are making though. What most people are saying is that it’s pretty galling to complain about something you brought on yourself and expect sympathy from a group of people who repeatedly warned you about the consequences.', 'created': '2024-11-16 00:11:41', 'submission_id': '1gs5c9m'}
{'comment': 'This ignores that a hell of a lot of people stayed home.', 'created': '2024-11-16 14:35:54', 'submission_id': '1gs5c9m'}
{'comment': 'Brainwashed ⬆️⬆️⬆️⬆️', 'created': '2024-11-16 01:46:03', 'submission_id': '1gs5c9m'}
{'comment': 'Another case of holding a grudge backfiring 😆\n\nhttps://preview.redd.it/wu8s480a951e1.jpeg?width=1200&format=pjpg&auto=webp&s=459c3ca3f3fe31d3f6f711028170407773fd7cb7', 'created': '2024-11-15 23:46:48', 'submission_id': '1gs5c9m'}
{'comment': 'There is a reason google had it as the top 7 searched streaming movie this week', 'created': '2024-11-15 22:39:15', 'submission_id': '1gs5c9m'}
{'comment': 'Stupidity is expensive.', 'created': '2024-11-15 22:51:00', 'submission_id': '1gs5c9m'}
{'comment': 'Apparently it should have been played on all channels before the election.', 'created': '2024-11-16 23:03:45', 'submission_id': '1gs5c9m'}
{'comment': 'My entire family and several good friends. I can’t wait to say…..’TRIED TO TELL YALL DUMB B*TCHES!’', 'created': '2024-11-16 05:21:01', 'submission_id': '1gs5c9m'}
{'comment': 'Exactly how I feel', 'created': '2024-11-16 04:07:39', 'submission_id': '1gs5c9m'}
{'comment': "Yeah I'd love to say that but my MAGA parents will be *my* problem once their social security and Medicare gets cut off. It's gonna suck.", 'created': '2024-11-17 03:20:57', 'submission_id': '1gs5c9m'}
{'comment': "Yeah, now they have no friends. The Democrats were their only allies, now it's like fighting a war on two fronts, the Israelis and the Republicans.", 'created': '2024-11-16 07:41:41', 'submission_id': '1gs5c9m'}
{'comment': 'Pretty common result for the Palestinians.', 'created': '2024-11-16 17:22:21', 'submission_id': '1gs5c9m'}
{'comment': 'I’ve seen all ages spreading disinformation.', 'created': '2024-11-15 22:33:56', 'submission_id': '1gs5c9m'}
{'comment': "Agreed. The article doesn't seem to live up to its clickbait title. Just wait a bit and then we'll see some real regret.", 'created': '2024-11-15 22:36:40', 'submission_id': '1gs5c9m'}
{'comment': 'Yes, I noticed the article ended abruptly with the line about them wanting to vote to punish the Dems and Harris. The regret part wasn’t really clear though. I think we are all waiting to see what this coming term brings.', 'created': '2024-11-15 23:47:27', 'submission_id': '1gs5c9m'}
{'comment': 'The writer does add a lot of their own framing and assumptions based on the quotes, but the quotes at the very least point to ignorance and (IMO) illogical stubbornness over what a Trump victory potentially means for the issue they care most about.', 'created': '2024-11-16 01:45:01', 'submission_id': '1gs5c9m'}
{'comment': 'We tried, yet here we are. Let us enjoy schadenfreude. Personally I believe it is a vile thing, but what the hell.', 'created': '2024-11-15 22:43:51', 'submission_id': '1gs5c9m'}
{'comment': 'Idk, fighting fire with fire might be a solution. Since actual facts don’t mean shit to these people.', 'created': '2024-11-15 23:58:47', 'submission_id': '1gs5c9m'}
{'comment': 'Please don’t paint all of us with a broad brush. I agree the post and attached “article” is click bait and there was no mention of regret or anything of that sort.', 'created': '2024-11-16 00:18:34', 'submission_id': '1gs5c9m'}
{'comment': 'This really needs to be the top comment', 'created': '2024-11-16 15:55:47', 'submission_id': '1gs5c9m'}
{'comment': "I hate to say this, but my favorite thing for the next four years is to see how hypocritical Democrats will become. \n\nThis is why I hate politics, dislike trump more cause he's just team trump. Also can't be mad at the guy, told people exactly who he is and people choose him anyway.\n\nDo better", 'created': '2024-11-16 01:27:26', 'submission_id': '1gs5c9m'}
{'comment': 'I’d they thought trump would support their cause, they haven’t been listening over the last 8 years.', 'created': '2024-11-16 00:53:22', 'submission_id': '1gs5c9m'}
{'comment': 'A tiny religious minority demanded America abandon support of our only ally in the Middle East, key to protecting the oil supply.\n\nAnd surprise, they got ignored.\n\nNetanyahu is a lunatic on Trumpian levels, but we still CANNOT EXIST WITHOUT OIL.\n\nThe amazing thing is, they thought they could blackmail the DNC.\n\nBecause that never works and they should have realized it.', 'created': '2024-11-16 01:21:07', 'submission_id': '1gs5c9m'}
{'comment': 'Look out behind you!!🐆', 'created': '2024-11-15 22:35:14', 'submission_id': '1gs5c9m'}
{'comment': 'I mean, I’m them, but I’m not THEM.', 'created': '2024-11-16 02:42:34', 'submission_id': '1gs5c9m'}
{'comment': 'Sigh, I was reading like that in first and second grade. This...this is sad\n\nWosre, a trump speech barely clears 4th grade speaking levels...', 'created': '2024-11-16 17:10:09', 'submission_id': '1gs5c9m'}
{'comment': "Well damn. That didn't make my Saturday morning.", 'created': '2024-11-16 14:45:26', 'submission_id': '1gs5c9m'}
{'comment': 'What was “finish the job” about?', 'created': '2024-11-15 21:42:53', 'submission_id': '1gs5c9m'}
{'comment': '2 sides of the same coin both have intolerant religious beliefs. Once they get rid of everyone they consider unclean the Ultra Evangelicals and the Muslims will have their holy war.', 'created': '2024-11-16 07:49:44', 'submission_id': '1gs5c9m'}
{'comment': 'The sad part is that Democrats were willing to help them and support them and what did Biden and Kamala get, they spit on their faces.', 'created': '2024-11-16 07:47:30', 'submission_id': '1gs5c9m'}
{'comment': 'They did not listen to Steven Miller deportation speech at MSG either, but they got their punishment doled out', 'created': '2024-11-17 01:29:29', 'submission_id': '1gs5c9m'}
{'comment': 'I guess not showing up to vote, or voting Green or for Trump has consequences', 'created': '2024-11-15 21:45:46', 'submission_id': '1gs5c9m'}
{'comment': "This is where I'm at. I've been wary of supporting Islam for a while because of how often I run into the exact same kind of hatred seen in American Christianity and been absolutely torched online for it. Ok. Fine, maybe not all Muslims. But way too many of them.", 'created': '2024-11-15 21:35:31', 'submission_id': '1gs5c9m'}
{'comment': "Except it's not. Whether you want to admit it or not the economy was a huge issue for many voters, especially working class voters. She did nothing to differentiate herself from Biden and show how her policies wouldn't lead to more of the same status quo. Maybe those don't matter for you, but high gas prices and high egg prices matter a fucking lot for millions of people.", 'created': '2024-11-15 22:18:00', 'submission_id': '1gs5c9m'}
{'comment': "You don't have to have empathy. If you only respond to self-serving motivations, it's in your best interest to reach out to them, and help them to understand exactly who Trump is and what he's all about. \n\nBecause if we don't pull enough people back to resist authoritarian rule, we get to endure it that much longer.", 'created': '2024-11-16 00:16:52', 'submission_id': '1gs5c9m'}
{'comment': 'Hasn’t been a new post in 212 days. I suspect that will change soon', 'created': '2024-11-16 05:24:00', 'submission_id': '1gs5c9m'}
{'comment': 'People thought that movie was so absurd when it came out. Now look at us... Living in it.', 'created': '2024-11-16 00:30:07', 'submission_id': '1gs5c9m'}
{'comment': 'Another movie to check out: “A Day Without a Mexican”…..\nA look into what could happen if Hispanic immigrants suddenly disappeared….\nHow it could affect our society.\nNot a great movie- but makes one think…', 'created': '2024-11-16 14:14:35', 'submission_id': '1gs5c9m'}
{'comment': 'I watched it on my plex because of the 6th', 'created': '2024-11-16 17:08:38', 'submission_id': '1gs5c9m'}
{'comment': "Argh. What's the movie?", 'created': '2024-11-16 14:40:47', 'submission_id': '1gs5c9m'}
{'comment': 'Very expensive. It might end up costing America everything they have.', 'created': '2024-11-15 23:33:54', 'submission_id': '1gs5c9m'}
{'comment': "I can't comment on that, my parents are liberals from South Carolina. I would suggest you let them figure it out themselves, but it's easier said than done", 'created': '2024-11-17 05:04:57', 'submission_id': '1gs5c9m'}
{'comment': 'Same', 'created': '2024-11-15 22:37:31', 'submission_id': '1gs5c9m'}
{'comment': "If there is no regret, then that's actually worse. Nothing was learned.", 'created': '2024-11-15 23:24:23', 'submission_id': '1gs5c9m'}
{'comment': 'Doesnt matter voting to punish without looking at the big picture is….oh well. When someone tries to punish me I ______ fill in the blanks.', 'created': '2024-11-17 01:20:06', 'submission_id': '1gs5c9m'}
{'comment': 'I think ignorance and illogical stubbornness applies to all Trump voters, but we know for absolute certain after his reelection that regret is not what they’re experiencing.', 'created': '2024-11-16 02:59:35', 'submission_id': '1gs5c9m'}
{'comment': 'One of the few instances of emojis on Reddit I will upvote. That was pretty darn clever', 'created': '2024-11-16 10:46:59', 'submission_id': '1gs5c9m'}
{'comment': None, 'created': '2024-11-16 17:16:41', 'submission_id': '1gs5c9m'}
{'comment': 'Finish = Bomb \nThe = The \nJob = Palestinians', 'created': '2024-11-15 21:44:23', 'submission_id': '1gs5c9m'}
{'comment': 'It is thy cake day!!!!', 'created': '2024-11-15 21:47:52', 'submission_id': '1gs5c9m'}
{'comment': 'In its original context, to encourage Netanyahoo to ramp up military action.', 'created': '2024-11-15 22:00:07', 'submission_id': '1gs5c9m'}
{'comment': 'Happy Cake Day bro', 'created': '2024-11-16 10:47:25', 'submission_id': '1gs5c9m'}
{'comment': '2 sides of the same coin, Islam dont get a pass while evangelicals get shit on, they are both the same just different prophets', 'created': '2024-11-16 07:54:18', 'submission_id': '1gs5c9m'}
{'comment': 'Inflation was global. Neither Biden nor Kamala caused the inflation. \n\nAnd saying it was because of inflation ignores all the reasons Trump voters are saying they voted against Kamala. Which was all over the damn place.\n\nThe only common denominator was absolute ignorance and misinformation.', 'created': '2024-11-16 00:07:52', 'submission_id': '1gs5c9m'}
{'comment': 'Maybe, but still, fuck ‘em if they can’t be bothered educating themselves before they vote. They’ll probably just fall for the latest grift next time anyway, so why bother wasting your efforts?', 'created': '2024-11-16 00:19:19', 'submission_id': '1gs5c9m'}
{'comment': 'I like how Crocs became a real thing lol', 'created': '2024-11-16 01:50:54', 'submission_id': '1gs5c9m'}
{'comment': 'Shut up! I’m baitin!', 'created': '2024-11-16 07:20:24', 'submission_id': '1gs5c9m'}
{'comment': 'Correction it will', 'created': '2024-11-15 23:46:46', 'submission_id': '1gs5c9m'}
{'comment': 'Too soon. Wait until their friends and family end up in a deportation camp.', 'created': '2024-11-15 23:58:52', 'submission_id': '1gs5c9m'}
{'comment': 'Reread it again - from the direct quotes, I think that’s fair.', 'created': '2024-11-16 03:07:57', 'submission_id': '1gs5c9m'}
{'comment': 'Why thanky.', 'created': '2024-11-15 21:49:29', 'submission_id': '1gs5c9m'}
{'comment': 'Nuttyyahoo', 'created': '2024-11-15 22:31:37', 'submission_id': '1gs5c9m'}
{'comment': ' I think Netanyahu prevented any ceasefire from happening in order to help Trump so he can make a case against the Democrats and make it a campaign issue.', 'created': '2024-11-16 07:46:16', 'submission_id': '1gs5c9m'}
{'comment': "They're the same violent offenders with predilection for pedophilia and oppression. The civilized world needs to start fighting back.", 'created': '2024-11-16 14:18:51', 'submission_id': '1gs5c9m'}
{'comment': 'Exactly, the average person doesn\'t understand what drives inflation, they just know that it happened under Biden. And Harris and the DNC did nothing to highlight how inflation would go down or be different under her administration.\n\nAnd I didn\'t say that the loss was only because of inflation. That\'s reductionist and disingenuous to what I actually said. I said it was a major factor including a number of issues. If you don\'t want to look at the campaign and acknowledge it\'s obvious faults that\'s fine. Stay away from 2028 then because we need growth and change within the party and not "well these people didn\'t vote with us so let\'s post and post and post about how it\'s their fault" instead of looking at WHY they chose not to vote for Harris. It\'s incredibly easy to just go, "protest voters ruined the election, and disinformation is bad too" instead of acknowledging the glaring and obvious problems with the party and the Harris campaign.', 'created': '2024-11-16 00:31:11', 'submission_id': '1gs5c9m'}
{'comment': '\nThe most powerful weapon of the Nazis was not their military. It was not their science and engineering. It was their weaponized rhetoric. \n\nThis was not some little grift. Or little con. Trump and his surrogates drew right out of that fascist playbook and waged a psyops war against American voters. For years. \n\nThis on top of the fact that for decades Republicans have been teaching people to mistrust government, mistrust experts, mistrust the press, and see Democrats as incompetent radical liberals who were going to destroy the country. \n\nSo you want to try to wrap your head around how insidious this was. Instead of blaming people for succumbing to extensive psychological conditioning.', 'created': '2024-11-16 00:27:15', 'submission_id': '1gs5c9m'}
{'comment': '>The price good men pay for indifference to public affairs is to be ruled by evil men. ― Plato', 'created': '2024-11-16 02:36:19', 'submission_id': '1gs5c9m'}
{'comment': 'I’m betting on Trump’s inherent incompetence.', 'created': '2024-11-16 04:37:49', 'submission_id': '1gs5c9m'}
{'comment': "You're making great points for everything. Agree 100%.\n\nThe messaging was terrible. It's stupid that she has to have great messaging to beat an idiot sociopath but that's the world we live in. The average voter isn't checking global economies to see how Biden steered it for us against them. She basically should've been running against Biden too.", 'created': '2024-11-16 02:18:40', 'submission_id': '1gs5c9m'}
{'comment': "For the TLDR, this is a summary of the article: \n\nhttps://preview.redd.it/g5qe4yp0z41e1.jpeg?width=444&format=pjpg&auto=webp&s=bced9b41778d3f172779b6dbbcaf01f775b3d53f\n\nRegarding #8, democratic governors have begun to join forces to resist Trump: \n\n[Democratic Governors Form a Group to Oppose the Trump Administration](https://www.nytimes.com/2024/11/13/us/politics/democratic-governors-trump.html)\n\n[Democratic Governors Join Forces to Resist Trump's Extreme Policies ](https://www.thenation.com/article/politics/democratic-governors-safeguard-democracy-trump/) \n\n[Blue states unite to resist federal pressure under Trump](https://www.politico.com/news/2024/11/13/blue-states-unite-resist-federal-pressure-trump-00189204)", 'created': '2024-11-15 22:56:01', 'submission_id': '1gs3u8u'}
{'comment': 'To help my mental health, I stay away from MAGA people.', 'created': '2024-11-15 20:54:53', 'submission_id': '1gs3u8u'}
{'comment': 'I really liked this piece. \n\nThere\'s been too much of the "we just have to wait 4 years, and then have the right candidate with the right messaging."\n\nWe need more articles to talk about how to live under authoritarian rule, and how to resist it. That is not just about putting our hopes in the next election.', 'created': '2024-11-15 23:07:19', 'submission_id': '1gs3u8u'}
{'comment': 'Forgot “Endure.” There’s 2 years of crap coming our way. We’ll have each other but we must endure.', 'created': '2024-11-15 22:46:06', 'submission_id': '1gs3u8u'}
{'comment': 'Fuck this! Fight!', 'created': '2024-11-15 23:19:27', 'submission_id': '1gs3u8u'}
{'comment': 'I noticed this part, and it\'s important. I wanted to amplify it a bit, since the author doesn\'t address it much directly.\n\n>We’re not going to\xa0*convince*\xa0him not to do these things. No pressure on Republicans will result in more than the tiniest of crumbs (at least initially). We’re not going to stop him from doing these things just by persuasive tactics or showing that there are a LOT of us who oppose them.\n\nA lot of people have a MAGA rep, and they think "Well, writing to my Congressman isn\'t going to help. He worships Trump."\n\nOK, right, FOR NOW. But if enough people keep up enough pressure, and it becomes clear that Trump\'s policies are becoming so unpopular as to be a political liability, or your MAGA congressman starts to think he\'s gone off the rails based on what he himself is seeing, it might start to turn the tide.\n\nHere\'s another piece of hopium: by and large, people don\'t call their congress members, or visit, when they\'re happy. So maybe for the next year give or take, your MAGA neighbors will be perfectly happy, sitting on their front porch with a smoke while Trump\'s ICE brigades round up immigrants. They\'re getting what they want; they\'re copacetic.\n\nYou know who\'s not? People who find this abhorrent. THEY are gonna be the ones calling the congressman\'s office, sending letters, and showing up with signs. At some point, it\'s going to be clear who\'s louder, who\'s angrier, and who wants some change. \n\nAnd no, it won\'t work for all of them. But the point is, don\'t think that it won\'t work for any of them, just because they\'re Trump-loving MAGAs right now. Get out there and fight.', 'created': '2024-11-15 22:29:40', 'submission_id': '1gs3u8u'}
{'comment': "None of these are practical solutions \n\nKnow your rights if a badge asks if they can talk to you\n\nBuy stable foods like pancake mix Ramen noodles pasta\n \nBuy easily grown food seeds vegetables tomatoe potato\n \nBuy a gun \n\nCarry mace pepper spray \n\nGet an old school front door lock especially if you have a z or numerous vowels in your last name \n\nStay out of the Sun this Summer \n\nSpiritual cleansing won't stop racist nazis looking for brown people", 'created': '2024-11-15 23:48:24', 'submission_id': '1gs3u8u'}
{'comment': "I've decided not to read the news for the next four years. I'm getting stressed just by hearing about his picks for various posts. I can't do this for four years. Head in the ground is the best way for me.", 'created': '2024-11-15 23:41:49', 'submission_id': '1gs3u8u'}
{'comment': 'Half the battle will be the damage Trump inflicts on himself from failing to deliver on campaign promises, to his cabinet staff crashing the country into the ground.\n\nTariffs will raise prices, deportations will see food prices sky rocket when nobody is working the farm fields or slaughterhouses, and Elons proposed austerity who even he openly admits will be unpopular, painful and make a lot of enemies will turn voters against the GOP, who elevated the red wave to make their lives easier, not sign up for this.', 'created': '2024-11-16 08:22:32', 'submission_id': '1gs3u8u'}
{'comment': 'If Trump has his way with the military, we’re all fucked. \n\nWhat’s to stop him federalizing the national guards of each blue state into his own personal army? \n\nWhat’s there to stop him turning every public protest into Tianamen Square again?\n\nthanks for the Supreme Court ruling on official access president, he can do whatever he wants without consequence', 'created': '2024-11-16 07:36:17', 'submission_id': '1gs3u8u'}
{'comment': "I don't understand why Biden won't use his immunity to help and protect us", 'created': '2024-11-17 01:45:01', 'submission_id': '1gs3u8u'}
{'comment': 'Yes, I read it. Garbage article. Skip it. Nothing here that you can practically use.', 'created': '2024-11-16 07:46:51', 'submission_id': '1gs3u8u'}
{'comment': "I'm not going to try and read anything from this paper when Bezos complied with the assault on free press before the election even happened", 'created': '2024-11-16 00:08:02', 'submission_id': '1gs3u8u'}
{'comment': 'Thanks Op. I would encourage folks to read the full article because it’s very robust. These highlights, while great, don’t fully capture everything :)', 'created': '2024-11-16 02:58:12', 'submission_id': '1gs3u8u'}
{'comment': 'I am on a cleansing spree since last Tuesday. Hard boundary for anyone MAGA in my life.', 'created': '2024-11-15 21:00:07', 'submission_id': '1gs3u8u'}
{'comment': 'Worst thing that you can do for the future is increase the divide by closing lines of communication. Take the highroad, swallow your pride, and say your piece politely, clearly, and effectively. I say that now, not “when you’re ready“, because you’re never going to be “ready” as with most difficult but important things in life.', 'created': '2024-11-15 21:34:06', 'submission_id': '1gs3u8u'}
{'comment': "I'm honestly glad. I haven't slept in a week, I know most people here can relate. You can only handle so much despair and anticipatory anxiety before you need to take action and start moving forward again. Wallowing in despair keeps us in line, allows them to go unchecked. I keep saying this but **73 million** people voted for Harris. Let's stop acting like that isn't real power, let's use it and find our way through this, together.", 'created': '2024-11-15 23:19:01', 'submission_id': '1gs3u8u'}
{'comment': 'This is the first piece I have seen like this. Like, hello, time to pivot and learn to live in our new reality. We lost the farm, now we adapt.', 'created': '2024-11-16 02:54:50', 'submission_id': '1gs3u8u'}
{'comment': 'The article is exactly about how to prepare to do that :)', 'created': '2024-11-16 02:55:37', 'submission_id': '1gs3u8u'}
{'comment': 'I get that. This was my original strategy too. The single thing that changed my mind, though, was the realization that that is giving them what they want. Give up, let them deconstruct the country, literally part of their plan. \n\nIt\'s not hopeless unless we give up. That is obeying in advance. This was the turning point for me, from a Rolling Stone article a few days ago:\n\nTimothy Snyder is a Yale professor of totalitarian European history and author of\xa0[*On Tyranny: Twenty Lessons from the Twentieth Century*](https://archive.is/o/zjD3a/https://books.google.com/books/about/On_Tyranny.html?id=3z7cDQAAQBAJ&printsec=frontcover&source=kp_read_button&hl=en&newbks=1&newbks_redir=0%23v=onepage&q&f=false). "You can’t despair,” he tells\xa0*Rolling Stone*. “**Because that’s what they want. They want you to think that it’s hopeless.** It’s never hopeless.”\n\nSnyder’s first rule in\xa0*On Tyranny*\xa0is “don’t obey in advance.”\xa0\n\nSnyder insists the key is “to get out in protest” — now and through the inauguration. The understandable impulse of “keeping your head in,” Snyder says will only embolden Trump’s reactionary team. “You’re giving them even more confidence that they’re gonna be able to do what they want in January.” What’s demanded of activists in this moment is to “deflate that confidence,” Snyder says, and you do that by “showing that you’re not afraid, by cooperating with your neighbors, and by organizing.”\n\nI won\'t paste the entire article. Here\'s the link for you/all: [‘YOU CAN’T DESPAIR. BECAUSE THAT’S WHAT THEY WANT’](https://www.rollingstone.com/politics/politics-features/trump-america-fascism-authoritarianism-resist-election-2024-1235157764/)', 'created': '2024-11-15 23:53:31', 'submission_id': '1gs3u8u'}
{'comment': "What paper? I don't read The Washington Post either. This article is from Waging Nonviolence which is a nonprofit media organization. (For the record, I have no affiliation, I found it on BlueSky).", 'created': '2024-11-16 00:22:06', 'submission_id': '1gs3u8u'}
{'comment': "Absolutely agree. I found the article on Bluesky and had to share. I'm blasting it everywhere, it energized me after such a miserable week. The bullet points are just to hopefully nudge *towards* the article. Fingers crossed.", 'created': '2024-11-16 03:13:59', 'submission_id': '1gs3u8u'}
{'comment': "Going high when they go low wasn't a winning strategy for us. The worst thing I can do is to continue to subject myself to those who support destroying our country. This is the new playbook.", 'created': '2024-11-15 22:02:30', 'submission_id': '1gs3u8u'}
{'comment': 'I disagree.\n\nAfter 8 years, *everyone* knows exactly who and what Trump is. \n\nThey\'ve made their choice, and it reflects on their morals and their selfishness. They voted for divisiveness. The division is of their own making. They have stood up and proudly proclaim their support of Mr Grab Her by the Pussy.\n\nIf someone chooses to cut MAGA people out of their lives, that is not a rash decision. It\'s very likely that everyone has spent the last 8 years being patient with MAGA in their lives, trying to explain, trying to be patient, trying to appeal to them...but in the end, these people voted for the man that called us "the enemy within" and suggested using the army to "take care" of us.\n\nThe divide happened. They voted for it.', 'created': '2024-11-15 21:58:38', 'submission_id': '1gs3u8u'}
{'comment': ">I keep saying this but 73 million people voted for Harris. Let's stop acting like that isn't real power,\n\nIt is. But more importantly, we need to add to it. \n\nI think we need a grassroots campaign of people talking to friends, family, neighbors, co-workers who did not vote for Harris, but who are not MAGA cult. Work with them over time to help them pierce the veil and see Trump and the Republicans for what they really are.\n\nIt's not going to happen quickly. But effective resistance to authoritarian government is generally not a quick fix.\n\nI would also say it's probably better not to go to them as Democrats, but as pro-democracy fellow Americans. Because a lot of those people have been taught through the Republican propaganda and lies to distrust Democrats. They'll come around a Democrats once they break through the veil of confusion.", 'created': '2024-11-15 23:56:26', 'submission_id': '1gs3u8u'}
{'comment': 'I’m done grieving .', 'created': '2024-11-16 23:40:28', 'submission_id': '1gs3u8u'}
{'comment': 'Thank you. I needed to read that.', 'created': '2024-11-16 01:21:37', 'submission_id': '1gs3u8u'}
{'comment': 'Lol, OMG I saw Wa.....on ... And just auto completed in my brain', 'created': '2024-11-16 00:22:48', 'submission_id': '1gs3u8u'}
{'comment': 'I sent it to a bunch of friends! Thanks for sharing', 'created': '2024-11-16 04:56:18', 'submission_id': '1gs3u8u'}
{'comment': 'Leading is more important than winning. Either do both or do neither. Democracy can’t survive otherwise. Nobody ever had success when they gave up after having a setback.', 'created': '2024-11-15 22:06:18', 'submission_id': '1gs3u8u'}
{'comment': 'You got it, I did too.', 'created': '2024-11-16 01:33:57', 'submission_id': '1gs3u8u'}
{'comment': 'A "setback"? Political violence, an attempted coup, holding all three branches of the government, foreign interference, filling the cabinet with loyalists and a corrupted Supreme Court. At what point is any of that more than a "setback".\n\nWe have, and have had, our warning for years now. They aren\'t even bothering to conceal their intentions. Trump\'s contempt for the country is palpable. The time is now to defend our democracy. Not sure how you read that as "giving up". Leadership 1) acknowledges the true threat to our country and 2) defends our democracy.', 'created': '2024-11-15 22:38:56', 'submission_id': '1gs3u8u'}
{'comment': "I'm not being tolerant of the intolerant anymore", 'created': '2024-11-16 02:58:31', 'submission_id': '1gs3u8u'}
{'comment': 'Winning is pretty important in politics.', 'created': '2024-11-16 02:32:19', 'submission_id': '1gs3u8u'}
{'comment': 'I didn’t say normalize it. I said go after it. If you don’t, I can guarantee you that Trump is going to come pretty darn close to not leaving the White House in four years.', 'created': '2024-11-16 03:11:34', 'submission_id': '1gs3u8u'}
{'comment': 'The thing about propaganda is facts and good faith arguments aren’t how they got into this mental mess. So facts and good faith arguments aren’t how they’ll get out of it. \n\nThey’re in a cult and willfully intoxicated with heavy propaganda. Some of that is fueled by hate, some by racism, maybe even depression. They need therapy sessions to get out off it, but that starts with willing to go see one. I wish simple stickers could do it, but it’s more complicated than that.', 'created': '2024-11-15 19:31:29', 'submission_id': '1gs2okb'}
{'comment': 'No, they shouldn\'t because the President has nothing to do with gas prices. If you want to be petty, make some Trump "I did that" stickers for when any agricultural tariffs or mass deportations suddenly make fruit and coffee significantly more expensive.', 'created': '2024-11-15 19:24:07', 'submission_id': '1gs2okb'}
{'comment': 'Biden, with his knowledge of how this system actually works, did everything right to move this economy beyond the damage of Trump’s term and the Covid epidemic. He gets no credit, and like Obama, was constantly obstructed by Republicans to the point where it’s a miracle that either of them got anything done.', 'created': '2024-11-15 19:36:53', 'submission_id': '1gs2okb'}
{'comment': 'Well now the Republicans have POTUS, Senate, House and SCOTUS so we’ll see where this all takes us. If it doesn’t go well I’m sure it will still be Biden’s fault somehow.\n\n*also paid $2.99 / gallon yesterday and with my shopper’s discount, only $2.19 / gallon. I’m sure it’s because Trump just got elected /s.', 'created': '2024-11-15 19:39:17', 'submission_id': '1gs2okb'}
{'comment': 'Trumpers have already taken credit for this.\n\nNone of them are going to look at a sticker on a gas pump and change their mind.', 'created': '2024-11-15 19:58:38', 'submission_id': '1gs2okb'}
{'comment': 'Just get stickers that say trump tax" and when we are paying g $17 for one pound of chicken or $1 per egg, slap a sticker on those packages next to the price.', 'created': '2024-11-15 19:48:13', 'submission_id': '1gs2okb'}
{'comment': 'If these people only knew how the world works 😭', 'created': '2024-11-15 20:03:41', 'submission_id': '1gs2okb'}
{'comment': 'Just filled up for $2.38/gal\n\nOf course “Biden lowered the prices before the election to make sure they win.” I guess he forgot to raise it back up after trump won', 'created': '2024-11-15 20:14:36', 'submission_id': '1gs2okb'}
{'comment': 'Or… trump stickers when it goes up …', 'created': '2024-11-15 21:54:32', 'submission_id': '1gs2okb'}
{'comment': 'Gas jumped 26 cents this week in my area. I already miss sub $3 gas. Not to say I’m not prepping some Trump stickers of the same. Can’t wait to put those everywhere.', 'created': '2024-11-15 20:17:24', 'submission_id': '1gs2okb'}
{'comment': "It does not matter to them. Most trump voters think that he is already in the white house since the election is over.\xa0\n\nCivics isn't taught anymore and Americans are dumb.", 'created': '2024-11-15 21:12:34', 'submission_id': '1gs2okb'}
{'comment': 'It just feeds the idiocity of Maga that the president decides the gas prices.', 'created': '2024-11-15 19:42:25', 'submission_id': '1gs2okb'}
{'comment': 'I drive an efficient car and top up like once every 3 weeks. I just don’t care about petrol prices… I do care about the separation of powers and state capture by oligarchs.', 'created': '2024-11-15 20:27:50', 'submission_id': '1gs2okb'}
{'comment': "It's astonishing nobody has mentioned the main problem with these.\n\nInevitably the minimum wage workers having to come out and clean them off with solvent because their company (justifiably might I add) doesn't want them on their pumps. And usually in my experience most gas stations are already barely staffed.\n\nThey aren't paid enough to deal with this crap. Don't promote it.", 'created': '2024-11-15 21:24:50', 'submission_id': '1gs2okb'}
{'comment': 'https://preview.redd.it/2yr4v6bpc61e1.jpeg?width=720&format=pjpg&auto=webp&s=c6c34af1b74612f75616bc0c501ac3bb59d840b3', 'created': '2024-11-16 03:27:32', 'submission_id': '1gs2okb'}
{'comment': 'I drive an EV…so cheap gas for ICE drivers is great but I need Biden to do something about Elon.', 'created': '2024-11-15 19:45:39', 'submission_id': '1gs2okb'}
{'comment': 'No, because we’re not asshole. We also lose elections, so maybe…', 'created': '2024-11-15 21:03:47', 'submission_id': '1gs2okb'}
{'comment': 'As someone that does stickers, it just bothers me the length of the white outline / border / stroke at the finger. So i fixed it, lol.\n\nhttps://preview.redd.it/e7ev7icbi41e1.png?width=3300&format=png&auto=webp&s=166722c681a72fafa9af10de1777804b05724869', 'created': '2024-11-15 21:15:34', 'submission_id': '1gs2okb'}
{'comment': 'We should do it with Trump’s image when gas prices inevitably rise.', 'created': '2024-11-15 21:30:26', 'submission_id': '1gs2okb'}
{'comment': 'I’m waiting for the trump stickers saying the same thing when gas prices go up again', 'created': '2024-11-16 02:20:22', 'submission_id': '1gs2okb'}
{'comment': 'I wish you could get a sticker of Trump and Biden together pointing and saying, “Neither of us did that!”, because people really need to understand that Presidents do not set gas prices.', 'created': '2024-11-16 02:48:09', 'submission_id': '1gs2okb'}
{'comment': "I agree but 4.49 is high. Was pleasantly surprised they didn't gouch before the election not that it mattered 😒", 'created': '2024-11-15 19:26:17', 'submission_id': '1gs2okb'}
{'comment': 'THE PRESIDENT DOES NOT CONTROL GAS PRICES IN ANY WAY', 'created': '2024-11-15 20:21:28', 'submission_id': '1gs2okb'}
{'comment': 'Put down a trump sticker when prices are higher again.', 'created': '2024-11-15 19:44:24', 'submission_id': '1gs2okb'}
{'comment': 'Yessss!!!', 'created': '2024-11-15 20:15:45', 'submission_id': '1gs2okb'}
{'comment': 'They don’t even think gas prices are low right now though so the message would be lost on them. Until it is the price of a clearance rack Arizona iced tea they will never be happy', 'created': '2024-11-15 20:46:19', 'submission_id': '1gs2okb'}
{'comment': '$2.39 with ez pay here in Arkansas', 'created': '2024-11-15 21:02:52', 'submission_id': '1gs2okb'}
{'comment': 'But now maga is stating that gas was $1.50 a gallon last time cheeto was in charge of regulating gas prices. Mfers are so delusional.', 'created': '2024-11-15 21:34:18', 'submission_id': '1gs2okb'}
{'comment': 'Trumpers are already crediting Trump with the stock market. I…just…can’t.', 'created': '2024-11-15 21:39:46', 'submission_id': '1gs2okb'}
{'comment': 'Let’s not forget during covid when trump was in office and no one was driving, it was $3.50 a gallon. How is that a good price.', 'created': '2024-11-15 21:48:02', 'submission_id': '1gs2okb'}
{'comment': "Honestly a humorous sentiment but that only creates more work for the gas station employees so let's not..", 'created': '2024-11-15 22:24:26', 'submission_id': '1gs2okb'}
{'comment': 'That won’t age well at all', 'created': '2024-11-15 23:07:58', 'submission_id': '1gs2okb'}
{'comment': 'Where the hell do you live where $4.50 for gas is cheap? Gas is $2.50 in my city', 'created': '2024-11-16 01:29:29', 'submission_id': '1gs2okb'}
{'comment': 'Low iq Conservatives and MAGA keep forgetting we had a damn crisis!', 'created': '2024-11-16 01:42:48', 'submission_id': '1gs2okb'}
{'comment': '$2.58 today in SC', 'created': '2024-11-16 02:08:21', 'submission_id': '1gs2okb'}
{'comment': 'The Big Deal not being talked about much.', 'created': '2024-11-16 05:30:27', 'submission_id': '1gs2okb'}
{'comment': 'make trump stickers. cause it’s gonna go back up.', 'created': '2024-11-16 07:56:52', 'submission_id': '1gs2okb'}
{'comment': 'Nah, they’ll wait a week a claim trump did it.', 'created': '2024-11-17 06:12:54', 'submission_id': '1gs2okb'}
{'comment': 'You know they’ll start putting Trump stickers on the moment he takes office… assuming it stays low', 'created': '2024-11-17 14:53:32', 'submission_id': '1gs2okb'}
{'comment': 'Presidents have no control over gas prices', 'created': '2024-11-15 20:03:16', 'submission_id': '1gs2okb'}
{'comment': 'Exactly. We took our best shot, all we can do now is stay quiet (for the most part) and let the sh\\*t hit the fan. These people are so filled with hate and ready with bs counter arguments that have no place in reality that it is pointless to even try to persuade them anymore.', 'created': '2024-11-15 19:36:40', 'submission_id': '1gs2okb'}
{'comment': 'Unfortunately, the majority of Americans aren\'t in a cult. They aren\'t MAGA hatting on a regular. They just voted for the guy who they thought would work harder for them. I strongly disagree, and think they were misguided but that\'s the fact of the matter. \n\nInterview after interview Trump voters keep saying "I don\'t even really like the guy. But I really don\'t think Biden has done a good job, and I see Kamala as an extension of that." \n\nWe lost this election in 2022, arguably in 2021.', 'created': '2024-11-15 19:43:21', 'submission_id': '1gs2okb'}
{'comment': 'Also, THE PRESIDENT DOESNT SET GAS PRICES', 'created': '2024-11-16 13:35:43', 'submission_id': '1gs2okb'}
{'comment': 'https://preview.redd.it/m0k1uxoa741e1.png?width=1333&format=png&auto=webp&s=0d7ab7d802d4c971745ed8541248d6cd3cc237f8', 'created': '2024-11-15 20:13:46', 'submission_id': '1gs2okb'}
{'comment': 'Yeah we need to get on that.', 'created': '2024-11-15 19:33:07', 'submission_id': '1gs2okb'}
{'comment': 'Trust me they are coming', 'created': '2024-11-15 19:41:29', 'submission_id': '1gs2okb'}
{'comment': "Actually Biden actually did have something to do with it. Usually you would be right. BUT when prices were worst he sold a large part of the US strategic reserve, fairly dumped it on the market and prices came down. Then when prices were at their lowest, a year or two later, he bought it back. Making a huge profit for the US.\n\nHe's just bought the last of it back. At a profit.\n\nhttps://www.energy.gov/articles/biden-harris-administration-makes-final-purchase-strategic-petroleum-reserve-secures-200", 'created': '2024-11-15 20:14:24', 'submission_id': '1gs2okb'}
{'comment': 'Does it matter? Truth didnt matter to MAGA and others, and it wont even when he breaks the promise and lies more.\n\nFuck at this point promise the moon, deliver nothing, profit.', 'created': '2024-11-15 20:49:25', 'submission_id': '1gs2okb'}
{'comment': "I'll gladly do that and when asked, I'll say why did you allow the Biden ones?", 'created': '2024-11-15 19:47:57', 'submission_id': '1gs2okb'}
{'comment': "I'm waiting for apples and oranges to be $1 a piece and strawberries $25 a flat.", 'created': '2024-11-15 20:52:28', 'submission_id': '1gs2okb'}
{'comment': 'Hell yea. I was already planning on making trump i did that stickers for when gas prices go back up but i like the idea of putting them up on everything else thats effected also.', 'created': '2024-11-15 22:25:49', 'submission_id': '1gs2okb'}
{'comment': 'come\nup with something original tho', 'created': '2024-11-15 19:34:05', 'submission_id': '1gs2okb'}
{'comment': 'The obstruction by Republicans this time was even worse, because Obama just had to deal with the racist faction and then the tea party/freedom caucus nutjobs. Biden had to deal with an entirely trumpified political organization and he still passed more significant legislation than Obama.', 'created': '2024-11-15 20:28:30', 'submission_id': '1gs2okb'}
{'comment': 'On that last part, MAGA literally are saying gas is lower bc Trump won, even though gas was the same price the day of and days before the election.', 'created': '2024-11-15 20:35:51', 'submission_id': '1gs2okb'}
{'comment': "Well nothing will change those idiots minds they're a lost cause, might work on the low info swing voters tho", 'created': '2024-11-16 02:44:39', 'submission_id': '1gs2okb'}
{'comment': 'This is the way.', 'created': '2024-11-16 00:02:11', 'submission_id': '1gs2okb'}
{'comment': 'I just got gas yesterday for 2.74', 'created': '2024-11-15 20:10:06', 'submission_id': '1gs2okb'}
{'comment': "It's an old photo", 'created': '2024-11-15 19:51:17', 'submission_id': '1gs2okb'}
{'comment': "Actually... He released oil reserves to offset the price of crude and it did have a significant impact on lowering the price of gas. He then bought back the oil reserves at a lower cost after the price dropped. So while technically the President doesn't have direct control over crude oil prices Biden did a great job to help bring the price of crude down. No one ever talks about that though. \nhttps://www.energy.gov/articles/biden-harris-administration-makes-final-purchase-strategic-petroleum-reserve-secures-200", 'created': '2024-11-15 21:10:52', 'submission_id': '1gs2okb'}
{'comment': 'If only there could be another worldwide pandemic so I can fill up my 8 mpg truck for under $50 😭', 'created': '2024-11-15 21:49:33', 'submission_id': '1gs2okb'}
{'comment': "> We took our best shot, all we can do now is stay quiet (for the most part) and let the sh*t hit the fan. \n\nNo. The best thing you can do right now is stay calm, but also organize your communities. Get involved, instead of laying low and watching the world burn. Talk to your neighbors. Join a local organization, like Food Not Bombs.\n\nGetting involved is how we'll make it through these times and build a movement from the ground up.", 'created': '2024-11-16 00:56:00', 'submission_id': '1gs2okb'}
{'comment': 'Should have thrown the book at Trump after Jan 6', 'created': '2024-11-15 20:25:17', 'submission_id': '1gs2okb'}
{'comment': 'My favorite quote was the “I think he’s as bad as Hitler but I still voted for him.”', 'created': '2024-11-16 02:20:11', 'submission_id': '1gs2okb'}
{'comment': 'I think this is the right attitude, but I’d say it’s not as unfortunate as the alternative. The cult members are never going to change their minds.\n\nThe people you describe can change their minds, and they’ll be pissed when they figure out they’ve been scammed.\n\nLook at the back to back landslide elections of Hoover and FDR because of the Great Depression. With his tariffs, Trump is working from Hoover’s playbook, except this time global markets are far more interconnected and complex.\n\nI wish we’d stop the doom and gloom about Trump voters being in a cult. The Democratic Party’s policies are better for the economy than the Republican Party’s. Republicans are going to spend the next 2-4 years proving that point to a lot of independent voters.', 'created': '2024-11-15 20:01:27', 'submission_id': '1gs2okb'}
{'comment': "Ultimately Biden couldn't do anything about Inflation, with time it will stabilize, however Harris should have called him out, prices dont come down wages need to go up, 20 dollar min wage NOW!!\n\nShe barely had time, i voted in October along with 70 million other people, minds were made up, i honestly think she did a better job and the losses are by no means a land slide, Republicans barely hold the house, and 3 seats in the senate under normal times, would be dead lock.\n\nNow Trump is going to use intimidation and threats to get his way through congress , which is dangerous, i dont know how they hold, Elon is threating congress with Billion dollar PAC ads for anyone voting their district or self", 'created': '2024-11-15 21:43:11', 'submission_id': '1gs2okb'}
{'comment': 'This tariffies me to my core.', 'created': '2024-11-15 20:24:00', 'submission_id': '1gs2okb'}
{'comment': 'Looking forward to putting these throughout the grocery store', 'created': '2024-11-15 20:38:25', 'submission_id': '1gs2okb'}
{'comment': 'I know I am doing it', 'created': '2024-11-15 20:09:44', 'submission_id': '1gs2okb'}
{'comment': 'Oh my, nuance and understanding of a complex situation. \n\n\nTHIS WILL NOT BE TOLERATED IN MERICA', 'created': '2024-11-16 07:52:26', 'submission_id': '1gs2okb'}
{'comment': 'Just get stickers that have the average egg/meat/whatever price from 2023-2024 and “but you couldn’t afford them at this price” or somethin', 'created': '2024-11-15 19:36:52', 'submission_id': '1gs2okb'}
{'comment': 'We may not see as successful president as Biden for a long time. I’m so tired of hucksters and posers with big-mouthed claims and false accusations. Image with no substance, or wolves in sheep’s clothing. I prefer someone who lets their work speak for itself. No drama. No bullshit. Just do the job and let me live my life.', 'created': '2024-11-17 01:05:28', 'submission_id': '1gs2okb'}
{'comment': "Lol. Gas wasn't even that cheap through the pandemic. The last time gas was $1.50, Obama was president. Lmao.", 'created': '2024-11-15 22:49:06', 'submission_id': '1gs2okb'}
{'comment': 'Counterpoint. Fuck em', 'created': '2024-11-16 01:15:55', 'submission_id': '1gs2okb'}
{'comment': 'Their propaganda machine is so great, Trump does something egregious and they claim it’s the DOJ targeting political enemies. Then when Biden’s son has a gun charge totally unrelated to the federal govt, they get their cult frothy over it, but their guy gets a pass. I mean Trump was on tape trying to strong arm the GA Sec of State, they claim that voting is rigged until they win.', 'created': '2024-11-15 23:22:39', 'submission_id': '1gs2okb'}
{'comment': 'Maybe Trump really is playing 6d chess to make America great like his cult members think he is. Just not in the way they think he is lol. But by causing The Great Depression 2, and getting us Americans to get dark money out of politics, shift back left to where the center is actually center, and not right wing, and tax the billionaires/wealthy, and maybe find a way to reverse the damage we’ve to our planet lol. \n\nI know that’s not really his plan, just some copium I’m taking to not go insane watching our country devolve into Idiocracy.', 'created': '2024-11-15 21:04:55', 'submission_id': '1gs2okb'}
{'comment': 'That’s terrific!', 'created': '2024-11-15 20:35:07', 'submission_id': '1gs2okb'}
{'comment': 'Lmao 🤣', 'created': '2024-11-15 22:40:24', 'submission_id': '1gs2okb'}
{'comment': "That's tarriffic*", 'created': '2024-11-15 21:15:20', 'submission_id': '1gs2okb'}
{'comment': 'I don\'t know that his cabinet picks are so much about "burning down the rule of law."\n\nInstead, I think it\'s representative of what Harris said. Trump is not serious about governing. \n\nCabinet picks are just gifts the narcissist can bestow upon loyalists because he craves that loyalty. He\'s doesn\'t care whether they can actually run the department.', 'created': '2024-11-15 19:57:56', 'submission_id': '1gs1v2s'}
{'comment': "It's clear what he is doing. He's putting in loyalists all the way down the line to ensure his agenda is met and he can influence every aspect of government. His last term ended w/ most of his staff turning against him.", 'created': '2024-11-15 20:40:03', 'submission_id': '1gs1v2s'}
{'comment': 'Mr law and order', 'created': '2024-11-15 19:54:55', 'submission_id': '1gs1v2s'}
{'comment': 'The Rule of Law was already effectively dissolved in Trump v. United States, that marked its death knell. \n\nThe rules shall never apply to the rich and powerful, for that is what the people wanted in electing Donald Trump.', 'created': '2024-11-15 21:12:57', 'submission_id': '1gs1v2s'}
{'comment': "I think it's all about the 25th Amendment. He's filling his cabinet with stooges who won't ever declare him unable to perform the duties, no matter how senile he gets.\n\nhttps://constitutioncenter.org/the-constitution/amendments/amendment-xxv", 'created': '2024-11-15 21:01:39', 'submission_id': '1gs1v2s'}
{'comment': "What are we as normal citizens?? I'm truly scared of everything that they are saying?? Will no one on the left start standing up and pushing back?!", 'created': '2024-11-15 20:48:02', 'submission_id': '1gs1v2s'}
{'comment': "It's already meaningless. He was never held accountable for Jan 6th, law in this country doesn't mean anything for people with money and power.", 'created': '2024-11-15 23:44:30', 'submission_id': '1gs1v2s'}
{'comment': 'The way Public Notice stretched “Trump proposed Matt Gaetz, the congressman investigated for sex with a 17 year old, to be his Attorney General” into a multi-page article reminds me of college.', 'created': '2024-11-15 20:13:11', 'submission_id': '1gs1v2s'}
{'comment': 'So, are the Dems actually going to do anything about this?\n\nAnything at all to stop America turning into Gilead?\n\nNo?', 'created': '2024-11-16 03:34:40', 'submission_id': '1gs1v2s'}
{'comment': 'Do half his picks even understand the rule of law? I guess the lawyer background ones do.', 'created': '2024-11-15 20:15:04', 'submission_id': '1gs1v2s'}
{'comment': 'Merrick Garland already beat him to it.', 'created': '2024-11-15 20:49:32', 'submission_id': '1gs1v2s'}
{'comment': 'Because, according to Trump, he IS the law.', 'created': '2024-11-15 22:20:58', 'submission_id': '1gs1v2s'}
{'comment': 'Criminal and Chief.', 'created': '2024-11-15 22:55:07', 'submission_id': '1gs1v2s'}
{'comment': "He's going to finish what he started", 'created': '2024-11-15 20:43:52', 'submission_id': '1gs1v2s'}
{'comment': 'I dont see him living long with this bs? He’s gonna piss off the wrong people', 'created': '2024-11-15 22:34:20', 'submission_id': '1gs1v2s'}
{'comment': "Trump is just happy he's getting away with his crimes. Now he's going to go play golf for 4 years, while the worst administration ever does whatever they do. I hope we can get a democrat back in the white house in 4 years from now.", 'created': '2024-11-15 22:57:40', 'submission_id': '1gs1v2s'}
{'comment': 'This. 100%', 'created': '2024-11-15 21:51:03', 'submission_id': '1gs1v2s'}
{'comment': 'If they were just gifts, they wouldn’t be keyed so closely to the worst quality of each nominee.', 'created': '2024-11-15 23:13:06', 'submission_id': '1gs1v2s'}
{'comment': 'I disagree. He wants the loyalists to protect him from going to jail, and a coup from Vance/Thiel as Trump gets older. Hes not going to make it all 4 years with his dementia and health, not to mention how old he is.\n\nWeird how the media stopped caring about the President being hella old the second Biden withdrew.\xa0', 'created': '2024-11-16 13:28:17', 'submission_id': '1gs1v2s'}
{'comment': 'Trump doesn’t want to be president to be president, or a leader, or anything. He just wants to sit in the big chair and yell at people, that’s all he wants.', 'created': '2024-11-16 08:59:43', 'submission_id': '1gs1v2s'}
{'comment': 'He’s trying to make all branches irrelevant like the Congress so the power and control move to the executive . That’s how fascism works to break down democracy.', 'created': '2024-11-15 22:21:41', 'submission_id': '1gs1v2s'}
{'comment': 'We are no longer citizens. We are subjects. All the Trumpists screaming about their free-dumbs during the covid era are sure to love the loss of civil and human rights.', 'created': '2024-11-15 22:11:22', 'submission_id': '1gs1v2s'}
{'comment': 'The only defenses we have now are, judicial, minority (but close) in the house and senate, and state government, plus the press I guess. \n\nThat’s gotta hold for at least 2 years, after which we might, might be able to turn things in the house or senate.', 'created': '2024-11-16 12:28:29', 'submission_id': '1gs1v2s'}
{'comment': 'Were you the voter going to do anything? Did you vote? Did you give Trump a pass by voting for him?', 'created': '2024-11-16 08:42:45', 'submission_id': '1gs1v2s'}
{'comment': 'Garland will and should go down as the most idiotic and downright sinister AG in history.\xa0', 'created': '2024-11-15 22:48:09', 'submission_id': '1gs1v2s'}
{'comment': "You might be right. \n\nAnd deporting all of the migrants might end up being like the wall. There'll be a big show with some deportations. And then he'll blame Democrats for not being able to do it. \n\nAlthough I do think he'll block all asylum's seekers.", 'created': '2024-11-15 23:04:07', 'submission_id': '1gs1v2s'}
{'comment': 'Remember what you did with the last king of the USA?', 'created': '2024-11-16 06:01:20', 'submission_id': '1gs1v2s'}
{'comment': "> The only defenses we have now are, judicial, minority (but close) in the house and senate, and state government, plus the press I guess. \n\nJudicial is full-on Trumper. They'll get rid of the fillibuster so size of minority won't matter.\n\nAnd you forgot a defence. Maga are the bastard child of the Nazis and the Confederates. Look at a history book.", 'created': '2024-11-16 16:02:40', 'submission_id': '1gs1v2s'}
{'comment': 'Of all of the mistakes Biden made, Garland was the worst.', 'created': '2024-11-15 22:55:27', 'submission_id': '1gs1v2s'}
{'comment': 'I think this is definitely the most likely path given what we already know about him and his ability to be president.', 'created': '2024-11-16 00:43:49', 'submission_id': '1gs1v2s'}
{'comment': "Yeah... we're fucked.", 'created': '2024-11-16 16:20:58', 'submission_id': '1gs1v2s'}
{'comment': "Yep. And who he is as a con man. \n\nThere's the story of Taj Mahal. Trump had the land, but not the money to build. He was almost broke. So he found some investors.\n\nHowever, they wouldn't turn the money over to him until he proved to them that the building was under construction. Because of course, he told them he had lots of money to put into it as well.\n\nSo Trump hired bulldozers and other machinery for a day. Just to push dirt back and forth across the property while the investors watched, so they would turn the money over to him.\n\nThis has always been who he is.", 'created': '2024-11-16 00:48:53', 'submission_id': '1gs1v2s'}
{'comment': "Ok, him being shitler aside, that story is fucking hilarious. Why couldn't he just stick to scamming rich people?", 'created': '2024-11-16 12:24:29', 'submission_id': '1gs1v2s'}
{'comment': "You can bet that SCOTUS will make it so that these rights won't be valid for the undocumented at some point during the immigrant round ups. The majority are just as far right and corrupt as the rest of Trump's circle and are in Trump's pocket.", 'created': '2024-11-15 18:08:30', 'submission_id': '1gs0o9i'}
{'comment': 'I would expect with Trump as the head of state the people he empowers to go round up brown people will be operating under some sort of blanket pardon. So showing them this card will probably just get you shot.', 'created': '2024-11-15 18:34:18', 'submission_id': '1gs0o9i'}
{'comment': 'What are we fighting for exactly? Didn’t many undocumented immigrants support Trump? I saw a video of some undocumented immigrants saying even if they get deported they still support Trump.\n\nSo why are we doing this even though many undocumented immigrants support Trump?\n\nWhen do we face reality about the folks in this country instead of interacting with the ideal of who we think folks are?\n\nWe in the Democratic Party have some tough questions to ask ourselves.', 'created': '2024-11-16 02:08:07', 'submission_id': '1gs0o9i'}
{'comment': "Why bother? Illegal immigrants can't vote nor have a legal right of residence when apprehended.", 'created': '2024-11-16 04:10:00', 'submission_id': '1gs0o9i'}
{'comment': 'https://preview.redd.it/njvd22iiq31e1.jpeg?width=1080&format=pjpg&auto=webp&s=5d914e1f56a7ede2641b35205ae3b5058d621ba7', 'created': '2024-11-15 18:39:36', 'submission_id': '1gs0o9i'}
{'comment': 'https://preview.redd.it/i1q0bbknq31e1.jpeg?width=1080&format=pjpg&auto=webp&s=ad7e317b299cf567e136eb7ab92cd75defc3c708', 'created': '2024-11-15 18:40:23', 'submission_id': '1gs0o9i'}
{'comment': 'I feel the same but even then there’s immigrants who don’t support him and could be fearful now. So a little something like this could help them', 'created': '2024-11-16 03:56:46', 'submission_id': '1gs0o9i'}
{'comment': '[removed]', 'created': '2024-11-16 04:21:29', 'submission_id': '1gs0o9i'}
{'comment': "Okay, when he's setting up American concentration camps I'm sure the card will help. My bad.", 'created': '2024-11-15 18:42:46', 'submission_id': '1gs0o9i'}
{'comment': 'I agree with you. I am just so bewildered and upset that the very folks we fought for and tried to protect and took election losses for are the ones who stab us in the back and support him. That’s not right.\n\nAs a devout Christian myself, I always want to protect undocumented immigrants. They come here for a better life and are escaping turmoil. However we need to face the reality that many of them still work against the Democratic Party, do not support us, and thus we need to rethink our approach.\n\nHowever, for the ones who do recognize the efforts of the Democratic Party and support us, we do need to help them.', 'created': '2024-11-16 04:04:22', 'submission_id': '1gs0o9i'}
{'comment': 'Enjoy your stay in Trumps work camp, lib.', 'created': '2024-11-16 06:04:23', 'submission_id': '1gs0o9i'}
{'comment': 'definitely agree. With his claims to end birthright citizenship, his mass deportation claims and all that, I don’t get it. Even recently how Biden wanted to make it easier for over 500,000 undocumented immigrants to get citizenship. A bunch of republican states and a Judge that Trump appointed just killed it. Like I don’t understand how people can look at the Republican Party and think they have their best interests. I think at the end of the day, as unfortunate as it is, it’s gonna come down to the way media is fed to people and how easily misinformed they are. \n\nEven if it may seem like it’s a few right now, I’m sure there’s many people hidden in the shadows that would need a little help like this. Maybe it’ll even open up other people’s eyes for how serious the situation is !', 'created': '2024-11-16 04:19:48', 'submission_id': '1gs0o9i'}
{'comment': 'This article may be behind a paywall. You can add 2-4 paragraphs as a quote in a comment. *Do not post the text for the entire article.*\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-15 16:49:52', 'submission_id': '1grzcez'}
{'comment': "Someone posted on Bluesky \n*They want you to think it's a culture war when it's really a class war*\n\nI'm internalizing this.", 'created': '2024-11-15 19:17:40', 'submission_id': '1grzcez'}
{'comment': "The NYTs is part of the problem.\xa0 They are only relevant because too many don't understand this.", 'created': '2024-11-15 18:03:17', 'submission_id': '1grzcez'}
{'comment': 'Gosh if only there was something the New York Fucking Times could have done about this', 'created': '2024-11-15 19:16:54', 'submission_id': '1grzcez'}
{'comment': '\nExcerpts:\n\n...autocratic breakthrough as the transition from the rule of law to the law of rule. When Putin campaigned for president in 2000, his slogan was “Dictatorship of the Law.”\n\nReading Magyar’s writing about that period, I was struck most of all by the mood that seemed to accompany Orban’s actions. We all remember it from Trump’s first term, this sense of everything happening all at once and the utter impossibility of focusing on the existentially threatening, or distinguishing it from the trivial — if that distinction even exists. It’s not just what the autocrats do to stage their breakthrough, it’s how they do it: passing legislation (or signing executive orders) fast, without any discussion, sometimes late at night, in batches, all the while denigrating and delegitimizing any opposition.', 'created': '2024-11-15 16:50:09', 'submission_id': '1grzcez'}
{'comment': 'The NY Times is a shell of itself. Them waiting till after the election to have things like these means they were part of the problem.', 'created': '2024-11-15 19:49:45', 'submission_id': '1grzcez'}
{'comment': 'The realization that America has always been a money dictatorship. That’s how 1% of the population ended controlling 50% of the wealth.\n\nWith Trump, the personification of money as power, the mask fell off.', 'created': '2024-11-15 18:38:08', 'submission_id': '1grzcez'}
{'comment': ">For those bewildered by why so many Americans apparently voted against the values of liberal democracy, Balint Magyar has a useful formulation. “Liberal democracy,” he says, “offers moral constraints without problem-solving” — a lot of rules, not a lot of change — while “populism offers problem-solving without moral constraints.” Magyar, a scholar of autocracy, isn’t interested in calling Donald Trump a fascist. He sees the president-elect’s appeal in terms of something more primal: “Trump promises that you don’t have to think about other people.”\n\nWith this bullshit opening, why should I read the rest of the article? \n\nBiden's administration was full of initiatives that solved problems. Harris offered more problem solving. \n\nThe problem was people couldn't hear what Democrats were doing anymore. Because of all the propaganda and lies from the right.\n\nAnd anyone, like the person quoted above, who doesn't want to call Trump out for using the fascist playbook is either disingenuous or doesn't have a clue as to what's been going on in the US.", 'created': '2024-11-16 00:05:26', 'submission_id': '1grzcez'}
{'comment': 'It was a revolution, which, like most revolutions, involves an upstart elite using the masses to overthrow the old guard.\xa0', 'created': '2024-11-15 19:32:23', 'submission_id': '1grzcez'}
{'comment': 'Yesssss. I would highly recommend everyone here migrate from Twitter to Bluesky!', 'created': '2024-11-15 19:25:36', 'submission_id': '1grzcez'}
{'comment': 'It is absolutely a class war.', 'created': '2024-11-15 20:30:49', 'submission_id': '1grzcez'}
{'comment': 'The NYT that vigorously attacked Biden’s age and then went silent about Trump’s. But Biden’s voice is raspier and his gait is stiffer. Trump couldn’t keep a coherent thought to the point that they pretended it was a clever technique.', 'created': '2024-11-15 19:16:41', 'submission_id': '1grzcez'}
{'comment': 'Why would the NYT be in favour of this in the first place? Is strictly a power grab? That would be so short sited. \n\nI just don’t understand what’s going on, why the people don’t see it. Or if they do, why they want it? Because once it’s gone, it’s gone.', 'created': '2024-11-15 19:53:45', 'submission_id': '1grzcez'}
{'comment': 'To its credit, the NYT endorsed Biden and wrote a scathing OpEd about why. The WaPO and LAT chickened out. \n\nRegardless, it likely would not have mattered.', 'created': '2024-11-15 20:16:10', 'submission_id': '1grzcez'}
{'comment': 'Or, as bannon calls it, “flooding the zone.”', 'created': '2024-11-15 17:42:02', 'submission_id': '1grzcez'}
{'comment': "They, like every other media outlet desperately wanted trump back because the constant outrage gave them viewers/readers/subscribers like they haven't had in decades", 'created': '2024-11-15 20:44:58', 'submission_id': '1grzcez'}
{'comment': 'Actually, that’s kind of profound and a serendipitous source of hope, because implies nothing’s gonna change, except for the concept of selecting a leader.', 'created': '2024-11-15 20:02:37', 'submission_id': '1grzcez'}
{'comment': 'Why?', 'created': '2024-11-15 20:37:26', 'submission_id': '1grzcez'}
{'comment': 'Compliant media does great under fascism.\n\nThe NYTimes is owned by rich people that benefit from conservative / fascist rule.\n\nIt also gives them a reason to want to discredit the most progressive democrats since LBJ.\n\nThey made a ton of money last time Trump was president. Always looming disaster attacks eyeballs.\n\nThere are so many reasons.', 'created': '2024-11-15 20:10:21', 'submission_id': '1grzcez'}
{'comment': 'Their coverage was despicable.\n\nThe difference with which the treated Biden and Trumps age is completely staggering. \n\nAn endorsement is too little too late.', 'created': '2024-11-15 20:17:40', 'submission_id': '1grzcez'}
{'comment': 'You mean, selecting the Dear Leader.', 'created': '2024-11-15 20:11:02', 'submission_id': '1grzcez'}
{'comment': 'Getting away from your abusive X is the first step towards healing', 'created': '2024-11-15 22:49:31', 'submission_id': '1grzcez'}
{'comment': 'Yeah but the problem is that the sort of people who read the NYT overwhelmingly voted for Harris.', 'created': '2024-11-16 01:40:37', 'submission_id': '1grzcez'}
{'comment': 'lol - ya, I guess. But what’ll be the real life differences in the ‘trenches’ where most of us live and work?\n\nI’m in my 60s, it doesn’t matter a whole shitload to me, but it’s about the grandkids. I guess if it’s the system they grow up in, it’ll simply be their reality. \n\nI think doing a term in the military would be an asset for the new generation.', 'created': '2024-11-15 20:21:20', 'submission_id': '1grzcez'}
{'comment': 'This is a very bad argument imho.\n\nThe new York times is the most prestigious news outlet in the country. They set the conversation.\n\nAnd the conversation they set is "maybe it\'s okay to vote for fascists, here\'s vapid horse race coverage and radical sane washing of Trump.\n\nI think they did it on purpose personally. Trump presidency is good for NYTimes and it\'s owners.', 'created': '2024-11-16 01:46:18', 'submission_id': '1grzcez'}
{'comment': 'What’s the point of accumulating material in excess if we all gonna die? \n\nPoor kids. We should move towards a fairer society. But Trump is starting an era where to be greedy is the norm.', 'created': '2024-11-15 20:51:25', 'submission_id': '1grzcez'}
{'comment': 'I don’t know how anyone can honestly believe that that NYTs has any influence on voters in the states that we lost. \n\nTo those voters, the NYT is just the paper that helped lie us into Iraq and carried water for the Bush 43 administration’s lies.', 'created': '2024-11-16 02:48:07', 'submission_id': '1grzcez'}
{'comment': 'Rich people need poor people so they can feel good about themselves. If there was no poverty the rich would create poverty so they can feel like winners.', 'created': '2024-11-15 21:09:07', 'submission_id': '1grzcez'}
{'comment': "This doesn't matter for about 7 reasons. \n\nThe first is the Ds could have won without convincing a single Trump voters.", 'created': '2024-11-16 15:29:58', 'submission_id': '1grzcez'}
{'comment': 'Yes. Individuals and groups have all sorts of negative behaviors. The role of a government is to set rules and laws to curb those negative behaviors. In principle.\n\nThere is more than enough wealth in the world for everyone to live comfortably.\n\nRich people in America/World hacked the democratic system using the media to make sure that they get even richer.', 'created': '2024-11-15 21:36:18', 'submission_id': '1grzcez'}
{'comment': "Appeasement DOESN'T WORK! It'll just embolden them to keep pushing more and more! Seriously is WW2 forgotten already?!", 'created': '2024-11-15 17:49:29', 'submission_id': '1gryvxw'}
{'comment': 'Biden should order our military to wipe out russian front lines just before he leaves. let rump try to explain that to his owners after.', 'created': '2024-11-15 17:04:31', 'submission_id': '1gryvxw'}
{'comment': 'Lead Paragraphs:\n\nDonald Trump’s US presidential election victory has sparked a new round of speculation over the possibility of a compromise deal with the Kremlin to end the war in Ukraine. Many commentators are convinced that some form of Ukrainian territorial concessions are now inevitable. Others insist that trading land for peace is Kyiv’s only option to exit a devastating conflict that is threatening to destroy the Ukrainian nation.\n\nThese arguments are certainly not without merit, but anyone now calling for a negotiated settlement that grants Russia control over large parts of Ukraine must also consider the consequences of such an historic step. If the Ukrainian authorities are forced to cede land in exchange for peace, Vladimir Putin’s entire invasion will be legitimized and his imperial appetite will only grow. The West may succeed in securing a temporary respite at Ukraine’s expense, but the threat of an expansionist Russia will remain and the ultimate cost of stopping Putin will only rise.', 'created': '2024-11-15 16:29:51', 'submission_id': '1gryvxw'}
{'comment': "Yeah, this is precisely the reason why people are against this idea. And i'm not just worried about Putin, since China is probably following this with great interest. China attacking Taiwan could lead to a much greater economic crisis than the war in Ukraine, because they are such a massive producer of advanced semiconductors. \n\nWithout Taiwan, there wouldn't be any consumer electronics. No laptops, smartphones, gaming consoles.... And not just that, those chips are also extremely important for military applications. If China actually got control over those factories, they would have a monopoly on advanced semiconductors for a few years at least, which would make them immensely powerful.\n\nThat's why the factories have kill switches. But even with those precautions in mind, it's still a massive risk. And even if they do manage to destroy the factories before China gets to them, that would immediately tank the supply of those chips, meaning insane levels of inflation and a potential recession like we haven't seen it in decades.", 'created': '2024-11-15 17:19:53', 'submission_id': '1gryvxw'}
{'comment': 'Appeasement only makes the aggressor more aggressive\n\nSource-all of human history', 'created': '2024-11-15 17:34:22', 'submission_id': '1gryvxw'}
{'comment': 'Why are they acting like Donald Trump is against this? He would be happy to see his good buddy Vlad extend his power.', 'created': '2024-11-15 18:07:37', 'submission_id': '1gryvxw'}
{'comment': 'At least Ukraine destroyed his army.\n\nHe will be vulnerable from an insurrection and separatist movements for the rest of his life and Russia will be vulnerable to China for at least a decade\n\nPeople forget that Russia and China have territorial disputes, and during the Cold War Russia had more troops defending the border of China than they did on the borders in Europe.', 'created': '2024-11-15 18:04:02', 'submission_id': '1gryvxw'}
{'comment': 'Yeah. We went through this shit nearly a century ago.', 'created': '2024-11-16 00:37:30', 'submission_id': '1gryvxw'}
{'comment': 'Wrong, we proved how well ceding land works to quell a dictators thirst for power with the Munich agreement!!', 'created': '2024-11-15 19:25:01', 'submission_id': '1gryvxw'}
{'comment': 'Did we forget about 1939?\xa0\n\n20 years after fighting a pointless war, we fail to prevent the next one.\xa0', 'created': '2024-11-15 19:40:41', 'submission_id': '1gryvxw'}
{'comment': "Forgotten? No. We've just switched sides. We want Putin to expand his power. Russia is our friend now. Or, Russia is Trump's friend. Not America's. Fuck America. Trump will take what he wants from America and if the country fails after he's done, who cares? Not him.", 'created': '2024-11-15 18:09:25', 'submission_id': '1gryvxw'}
{'comment': 'Because the media is still playing the both sides narrative instead of looking at who Trump is and what he’s done. If past is prologue then we’re about to be fucked.', 'created': '2024-11-15 18:59:52', 'submission_id': '1gryvxw'}
{'comment': 'This would actually be a great time for Europe to stand up and army and divide Russia up between Europe and China. Give China the further Asian parts of Russia and claim Western Russia and parts of Siberia for Europe. As the climate keeps changing, that Siberian land will become very livable.', 'created': '2024-11-15 18:11:08', 'submission_id': '1gryvxw'}
{'comment': 'Trump would certainly try to send aid to Russia', 'created': '2024-11-15 18:28:36', 'submission_id': '1gryvxw'}
{'comment': 'He may try to send aid during the Ukraine war if Ukraine rejects his “peace” plan.\n\nHe absolutely will send US intelligence related to Zelensky’s location and activities. \n\nOr, rather, Tulsi will.', 'created': '2024-11-15 19:08:01', 'submission_id': '1gryvxw'}
{'comment': 'he may ship cannon fodder to Russia.\xa0 \xa0I\'m not saying he *will*, but if it happens I *want* that "I called it" shirt.\xa0\xa0', 'created': '2024-11-15 20:18:57', 'submission_id': '1gryvxw'}
{'comment': 'I’m sure the Kremlin is laughing at his choices', 'created': '2024-11-15 19:08:41', 'submission_id': '1gryvxw'}
{'comment': 'They orchestrated it.\n\nShe has literally no qualifying experience and a history of behaviors indicating she is compromised. \n\nHer ONLY intelligence experience is as a Russia asset.', 'created': '2024-11-15 19:10:46', 'submission_id': '1gryvxw'}
{'comment': 'My Republican coworkers aren’t thrilled', 'created': '2024-11-15 19:11:13', 'submission_id': '1gryvxw'}
{'comment': 'I am a retired former intelligence officer.\n\nOf all the things I have ever seen in war and peace, of all the crises that happened or were averted, of all the threats that loomed or still looming, of all the information I know, including the information I wish I didn’t know…\n\nHer nomination is the first time I was ever shook to my very core with existential dread. \n\nHer nomination has to be stopped.', 'created': '2024-11-15 19:24:47', 'submission_id': '1gryvxw'}
{'comment': 'Hopefully, Senate Republicans will grow a backbone and block her nomination', 'created': '2024-11-15 19:31:02', 'submission_id': '1gryvxw'}
{'comment': 'sounds like some should report it to DOGE', 'created': '2024-11-15 15:52:55', 'submission_id': '1grxk6m'}
{'comment': 'I’m usually not the biggest supporter of shaming people but we have to make it clear that this is what people voted for. You don’t get to just say I wanted lower prices and better taxes. No, all of this is what democrats meant when they said democracy was on the line and Trump is unfit. \n\nGotta let people know hey this is what you voted for', 'created': '2024-11-15 16:46:43', 'submission_id': '1grxk6m'}
{'comment': 'On the bright side, the Biden admin just put forward a huge nuclear power plan which is pretty bipartisan.', 'created': '2024-11-15 16:11:17', 'submission_id': '1grxk6m'}
{'comment': 'The next 4 years are going to be so, SO stupid', 'created': '2024-11-15 17:02:06', 'submission_id': '1grxk6m'}
{'comment': 'It sucks for those of us who want humanity to survive and inherit a decent planet instead of just ignoring it for the sake of billionaires.', 'created': '2024-11-15 17:39:55', 'submission_id': '1grxk6m'}
{'comment': 'Trump is quite happy to burn this country down to satisfy his egomaniacal hunger for worship, he won’t be around when the consequences kill our children’s future.', 'created': '2024-11-15 17:18:21', 'submission_id': '1grxk6m'}
{'comment': 'This is why they have to let Democrats win again. They need someone to fix the economy while simultaneously being blamed for the state Republicans left it in.', 'created': '2024-11-15 18:58:59', 'submission_id': '1grxk6m'}
{'comment': 'MAGA fiscal responsibility...', 'created': '2024-11-15 19:05:14', 'submission_id': '1grxk6m'}
{'comment': 'Gotta own the libs.', 'created': '2024-11-15 19:19:54', 'submission_id': '1grxk6m'}
{'comment': "I'm not sure I want to hear day after day the finer points of all the things this administration is going to do to dismantle this country. Ramaswamy wants to cut government by 75%. I think I'm going to need to hide my head in the sand and let the world crumble around me.", 'created': '2024-11-15 21:59:36', 'submission_id': '1grxk6m'}
{'comment': "The fires are already lit because of incompetent voting. This is the reward. Let's all enjoy the sinking ship.", 'created': '2024-11-16 15:58:13', 'submission_id': '1grxk6m'}
{'comment': 'Do you think anything is more important to him than money or himself?', 'created': '2024-11-15 18:43:09', 'submission_id': '1grxk6m'}
{'comment': 'Messaging, messaging, messaging. You know trump will bkame the dems, so that needs to be nipped in the bud.\xa0', 'created': '2024-11-15 18:28:33', 'submission_id': '1grxk6m'}
{'comment': 'This way of thinking gets us nowhere. The problem is people were upset about \n prices of everyday items and our response was basically shut up it’s not that bad. Then we pointed out that Trump’s a criminal, but somehow the average American doesn’t care.\n\nShame gets us nowhere where. What we need to do is offer a plan when people realize they were lied to. We need to implement that plan in a couple states and get real results.\n\nShame and fighting disinformation gets us nowhere.', 'created': '2024-11-15 17:49:33', 'submission_id': '1grxk6m'}
{'comment': 'If he can’t protect us from trump it’s worthless', 'created': '2024-11-15 16:30:08', 'submission_id': '1grxk6m'}
{'comment': 'Nuclear power is not coming back, not matter how hard they try. It cannot compete with renewables plus storage.\n\nThe right time to build nuclear was 1960-1990s. \n\n18 Westinghouse AP1000s were approved. There is a reason only two were built', 'created': '2024-11-16 03:35:37', 'submission_id': '1grxk6m'}
{'comment': 'He does what President-Elect Elon tells him to do. Trump is a puppet.\n\nTrump pimps the masses.\n\nThe oligarchs foreign and domestic pimp Trump.', 'created': '2024-11-16 00:24:36', 'submission_id': '1grxk6m'}
{'comment': 'It’s gonna be migrants. This whole thing is gonna be ugly', 'created': '2024-11-15 19:04:50', 'submission_id': '1grxk6m'}
{'comment': 'No, we need to shame and let people know that politics isn’t just about who is going to lower prices or balance a budget. Matter of fact, the president generally doesn’t have much input over prices. \n\nOh wow a guy who trafficked minors is AG? You voted for that. Home prices are actually higher now because we’ve deported a lot of construction workers who happened to be undocumented ? You voted for that. Theres reports of rampant chicken contamination because the already thin FDA has been gutted? You voted for that. \n\nPeople need to understand that nobody said democracy was on the line with George W, McCain or Romney. They were debates over a vision for the country but we knew we’d revisit in 4 years. When the general consensus from most sane people left right or nonpartisan is one side is threatening to take freedoms that’s not just negative campaigning…it’s real\n\nYour point of view which I respectfully disagree with continues to normalize Trump and trumpism. This isn’t a debate over policy or vision. This is literally democracy vs authoritarians', 'created': '2024-11-15 18:11:32', 'submission_id': '1grxk6m'}
{'comment': 'You can’t fix anything while the uninformed stay uninformed and there’s no way to make what they did sound less incredibly stupid.', 'created': '2024-11-15 18:22:06', 'submission_id': '1grxk6m'}
{'comment': 'Well the only thing that can protect us from Trump is our state governments to a point.', 'created': '2024-11-15 17:33:59', 'submission_id': '1grxk6m'}
{'comment': 'Renewables need to be heavily subsidized and are still not reliable for keeping up with high power demand. I say let’s build nuclear now so when in the future power demand is much much higher we actually have a clean and reliable source of power. Kicking the can down the road for only wind and solar is gonna screw us.', 'created': '2024-11-16 03:46:08', 'submission_id': '1grxk6m'}
{'comment': 'You are trying to wage an intellectual debate against someone who just wants to feed their family. In their mind they believe they have done nothing wrong, but now they can’t afford groceries. The reason why doesn’t matter, they don’t care they just want it fixed.\n\nAs Dems we think if we just get people to understand the nuances people will see why Harris and Walz are the only choice. Meanwhile Trump is saying I will kick out the people taking our jobs, committing crimes, and stealing your tax dollars, and while we are at it we will make China pay to sell here and not tax your tips. It’s all a lie, but it doesn’t matter. It’s a plan which gives people hope.\n\nMy point here is people obviously don’t care about electing a criminal. Most people probably, wrongly, assume if he was really a criminal he couldn’t run for President.', 'created': '2024-11-15 18:25:25', 'submission_id': '1grxk6m'}
{'comment': 'Not to be an ass, but also to be an ass. That’s hilarious you think that’s true. The states will comply or eventually have to.', 'created': '2024-11-16 02:58:21', 'submission_id': '1grxk6m'}
{'comment': "Nothing you just said is accurate. Absolutely nothing.\n\nIn fact you're so incorrect as to be intentionally malicious disinformation.\n\n\nEdit: the fuck blocked me so I can't debunk his bullshit.\n\nBULLSHIT. You’re some random schmuck on the internet claiming the sky is purple with pink polka dots. Meanwhile every actually known industry expert says you’re full of shit. \n\nYou are not smarter than Lazards, the DOE, every European agency, the IEEE, etc. \n\nhttps://imgur.com/a/BN7e54e\n\nThis is UNSUBSIDIZED LCOE. And before you spew that shit “LFSCOE” shit at me, that “study” modeled power grids in a fashion nobody would EVER build (single generation type with no storage) which intentionally gives eyewatering costs.\n\nhttps://spectrum.ieee.org/amp/electric-inverter-2667719615\n\nhttps://e360.yale.edu/features/three-myths-about-renewable-energy-and-the-grid\n\n\nThere is a 2600GW interconnection backlog in the United States. 1TW of that is storage, 1.4-1.5TW of it is new renewables \n\n0KW is nuclear. Zero. There are zero planned permitted reactors. There are 16 permitted that were cancelled and have zero interest in being renewed.\n\nThe reason isn't NIMBYs or regulations or anything like that. The reason is COST", 'created': '2024-11-16 03:46:38', 'submission_id': '1grxk6m'}
{'comment': 'You’re talking campaign strategy. That cake has been baked. What most people think is this Trump presidency can’t be any worse than the last one. We already see with these appointments it will be. \n\nThat means it’s time for education. I’m not even trying to debate with people. It’s literally what they voted for and they deserve to know that. \n\nThe issue is most people thought democrats were speaking in hyperbole when we warned about project 2025. The things are so bat shit they couldn’t believe people would implement it. Well here we are so when it happens we need to get a little smug and say we told you so but you still wanted it. \n\nIt worked in the 2022 mid terms no?', 'created': '2024-11-15 18:34:06', 'submission_id': '1grxk6m'}
{'comment': 'Texas and Florida didn’t. One of those was a Supreme Court order too.', 'created': '2024-11-16 03:10:54', 'submission_id': '1grxk6m'}
{'comment': 'I work in energy bud. Try again.', 'created': '2024-11-16 03:49:21', 'submission_id': '1grxk6m'}
{'comment': "It seems like the basis of the MAGA propaganda victory was Russian, Fox, and Christian. We can't do much to erode the power of Putin's Russia, the failure of which would hack a leg out from under Republican rule, or Fox news unless by class-action suit. But we can challenge Christianity, as I believe we should. The churches are getting a free ride and using the privilege to hurt democracy.", 'created': '2024-11-15 19:49:48', 'submission_id': '1grxk6m'}
{'comment': 'What works in the midterms isn’t what works for general elections. There is a higher percentage of intellectuals in the midterms. They care about the direction of the country instead of just how much money is in my wallet today.', 'created': '2024-11-15 20:30:10', 'submission_id': '1grxk6m'}
{'comment': 'So, you\'re throwing out the "trust me bro" argument?', 'created': '2024-11-16 16:21:42', 'submission_id': '1grxk6m'}
{'comment': 'Nah it was really the democrats. Harris could’ve easily campaigned on the Biden administration setting America up for long term prosperity and she would promise to help Americans immediately. Instead she chose to campaign with Cheney …', 'created': '2024-11-15 20:06:09', 'submission_id': '1grxk6m'}
{'comment': "Well, sure, that too - but wasn't that just a concession to the enormous juggernaut of Republican propaganda? It was a surrender, but it's an uphill argument to say that it was the primary cause of failure, in my opinion.", 'created': '2024-11-15 20:23:27', 'submission_id': '1grxk6m'}
{'comment': 'You will not find a republican voter admit they were misinformed.', 'created': '2024-11-15 14:11:00', 'submission_id': '1grvp2p'}
{'comment': "Remember 2016, they said they will control history because they will write the books...hence the ongoing book bans, GOP's total control of education, including their alternative facts, going forward.", 'created': '2024-11-15 16:08:36', 'submission_id': '1grvp2p'}
{'comment': ">About 10 questions like this sent to enough base Trump voters would give Democrats ammunition to prove that Trump didn't win because he was the “chosen” one, rather it would prove that he won because of misinformation.\n\nBut how are you going to use that ammunition effectively? \n\nI know you know that the MAGA cult isn't going to listen to anything that Trump doesn't tell them. \n\nAs far as the rest of people who voted for Trump, they've been victims of the fascist playbook, of creating mistrust in government and political parties, and sowing confusion.\n\nThose people don't trust Trump or the Democrats, because they live in that cloud of misinformation. \n\nSo you're not going to reach them with that data. \n\nAnd as far as the people who didn't vote, most of them were susceptible to the same fascist play as the swing voters. They were either too disgusted with the political parties and government, or feel that it's completely hopeless.\n\nSo you may have ammunition, but you got nothing to aim at.", 'created': '2024-11-15 14:48:52', 'submission_id': '1grvp2p'}
{'comment': 'It’s nice that we get to read articles about people flagrantly breaking our laws with no repercussions whatsoever.', 'created': '2024-11-15 16:06:08', 'submission_id': '1grvp2p'}
{'comment': 'It’s a nice idea, but to what end? A vote is a vote, and the count is not affected by the voters IQ or knowledge on the issues.', 'created': '2024-11-15 14:44:55', 'submission_id': '1grvp2p'}
{'comment': 'Reminds me of the voters remorse after Brexit - when the leave group flooded misleading propoganda', 'created': '2024-11-15 16:02:28', 'submission_id': '1grvp2p'}
{'comment': 'I think this article could help sums everything up [https://www.nature.com/articles/s41599-024-03503-6](https://www.nature.com/articles/s41599-024-03503-6)', 'created': '2024-11-15 15:41:17', 'submission_id': '1grvp2p'}
{'comment': "They don't feel mis-informed.", 'created': '2024-11-15 16:02:33', 'submission_id': '1grvp2p'}
{'comment': "Tell me something I don't already know.", 'created': '2024-11-15 18:22:34', 'submission_id': '1grvp2p'}
{'comment': 'Too bad, so sad for us. We tried to tell them it was all a bunch of lies but they went and voted for him.', 'created': '2024-11-15 18:29:32', 'submission_id': '1grvp2p'}
{'comment': 'Umm yeah we know that part already, like it was blatantly obvious that a task force of domestic and foreign assets funded by the worlds richest man was doing all it could to pollute our process, and pretending like any of this was free and fair when it was clearly not is umm well just as half witted as expecting a candidate who had less than half the time of any other candidate to actually be able to win, democrats knew they needed a better candidate 24 months ago, and did nothing but complain about a man who was not president, while allowing him unprecedented privileges and the abilities of an office he did not have, when they knew they needed to prosecute him just as they would any other person who was guilty of the same crimes he obviously is, \n\nThanks for that…', 'created': '2024-11-15 14:47:53', 'submission_id': '1grvp2p'}
{'comment': "They already did that and the results were as expected. \n\nhttps://www.ipsos.com/en-us/link-between-media-consumption-and-public-opinion\n\nBut that is less important imo. The more important question to be asking is why we were told Biden was sharp as a tack and never been in better shape repeatedly before the debate. Do we really want to pretend nobody at the DNC noticed Biden's increasing senility? Why didn't we have a primary? Why didn't somebody who wasn't a Republican confirm that he was slipping? We all saw the Republicans saying it for years and the Democrats lying to us about it. I expect that shit from Republicans but I expected better from our leaders. We are owed an apology at the least but I'd prefer a nearly complete replacement of current DNC leadership with people of integrity.", 'created': '2024-11-15 15:16:52', 'submission_id': '1grvp2p'}
{'comment': 'There’s no point in surveying or polling Republicans. They just troll people who ask them questions. According to the polls, this election was supposed to be close.!', 'created': '2024-11-15 15:25:59', 'submission_id': '1grvp2p'}
{'comment': '2016 was just the first rehearsal', 'created': '2024-11-15 15:30:28', 'submission_id': '1grvp2p'}
{'comment': "That's the beauty of it. They won't know they are admitting it when they think they are choosing the correct answers when in fact, they are getting every answer wrong.", 'created': '2024-11-15 14:16:59', 'submission_id': '1grvp2p'}
{'comment': 'I have a boomer Republican coworker who often works on his cars. Yesterday, I had the pleasure of telling him that Auto Zone plans to raise prices due to trump’s tariff.', 'created': '2024-11-15 15:35:39', 'submission_id': '1grvp2p'}
{'comment': 'There is a firm belief this last few years among them that voting makes them correct, as if facts are a popularity contest.', 'created': '2024-11-15 15:01:53', 'submission_id': '1grvp2p'}
{'comment': "They're completely aware that they are, though.\n\nGetting them to admit it is another story.", 'created': '2024-11-15 15:48:07', 'submission_id': '1grvp2p'}
{'comment': "I just say at least we can have all the boomers do the jobs the mass deportations are going to leave open after they cut Medicare and Social Security. Can't give any handouts to those people, that would be socialism.\n\nEdit: I truly do feel bad for the older generation that did not want that. I listen to my mother's fears every day. She is 69 years old and is scared to lose what little she does have.", 'created': '2024-11-15 18:18:37', 'submission_id': '1grvp2p'}
{'comment': 'Because facts aren’t a popularity contest and the country can’t be fixed by lies, liars, or trash who believe in either.', 'created': '2024-11-15 15:02:40', 'submission_id': '1grvp2p'}
{'comment': "As I stated, I don't know what difference it would make, but at least it could be used to hammer home the fact that Trump didn't win, misinformation did. If nothing else, it would drive him nuts.", 'created': '2024-11-15 14:48:33', 'submission_id': '1grvp2p'}
{'comment': 'Biden is frail; he is not senile. Words mean things.', 'created': '2024-11-15 17:29:07', 'submission_id': '1grvp2p'}
{'comment': 'I’m afraid that they were stuck in that old adage of: Joe Biden is the only one who’s ever beat Trump.\n\nBelieve me, that’s not an excuse… How they handled it directly related to DonOld being back in office. 🙁', 'created': '2024-11-15 15:49:26', 'submission_id': '1grvp2p'}
{'comment': "No, the most important question to be asking is why so many people don't understand basic civics, aren't media literate, fall so easily for their most ugly and base emotions (racism, misogyny, greed), have no desire to read up on policy, have no respect for the democratic process, never watch committee hearings or read articles by publications that employ fact checkers, don't understand the nuance of geopolitics, can't see the difference between politicking and policy, and refuse to acknowledge absolute accomplishments. Joe Biden has integrity and so does his cabinet. If you're listening to Republican propaganda instead of looking at his rather remarkable record, that's on you...not the current administration.", 'created': '2024-11-16 08:54:04', 'submission_id': '1grvp2p'}
{'comment': "How'd he respond?", 'created': '2024-11-15 19:12:37', 'submission_id': '1grvp2p'}
{'comment': 'That is literally how their beliefs work. They base so much of their opinions on group think, if a post has thousands of likes then surely the person is not full of it. Thats what made Russian bots/paid influencers so effective in molding their opinions.', 'created': '2024-11-15 15:42:56', 'submission_id': '1grvp2p'}
{'comment': 'The difficulty is that Trump supporters are a combination of functionally illiterate and industrial strength stupid. But this isn’t the first time. President Nixon supporters were willfully stupid, and President Hoover brought unemployment up to around 40% with a combination of austerity and mass deportation.', 'created': '2024-11-15 15:06:10', 'submission_id': '1grvp2p'}
{'comment': 'Like I said, nice idea but we’ve been hammering the zone with facts and data and counter programming for 4+ years, including mountains of evidence of both the Biden administration’s successes and the previous administration’s failures and shortcomings, plus of course the new President elect’s personal, professional, ethical, and legal shortcomings. Literally nothing is getting through to these people.', 'created': '2024-11-15 14:51:25', 'submission_id': '1grvp2p'}
{'comment': "He's done some good work but if he had integrity he would have stepped down like he promised to when he ran in 2020. We can't choose our electorate. We know many people are idiots and don't bother to do it care about whatever you mentioned. So a party that catered to them is going to get elected more than one that doesn't do a party that actually cares about the causes it espouses is going to do what it can to be elected instead of catering to the egos of the politicians in the party.", 'created': '2024-11-16 13:34:42', 'submission_id': '1grvp2p'}
{'comment': 'He didn’t say anything. I guess he’s still waiting for tariffs to bring back American jobs..', 'created': '2024-11-15 19:13:13', 'submission_id': '1grvp2p'}
{'comment': ">Thats what made Russian bots/paid influencers so effective\n\nPutin's Russia and American church 501(c)(3)", 'created': '2024-11-15 19:25:25', 'submission_id': '1grvp2p'}
{'comment': 'It’s really astonishing how Trump and the Republican Party have been able to grab the mantle of being the party of the working class despite having an administration filled with billionaires. Trump, Musk, Ramaswamy, Burgum, Lutnick; all of these guys are the antithesis of blue collar representation and yet Democrats are the ones who constantly have to prove they’re not a bunch of out of touch elites. It will never cease to amaze me how this aspirational desire to be part of the billionaire class blinds people to the reality that these billionaires don’t actually care about their issues and desires.', 'created': '2024-11-15 09:44:01', 'submission_id': '1grr89b'}
{'comment': 'Whelp, goodbye National parks.', 'created': '2024-11-15 14:47:25', 'submission_id': '1grr89b'}
{'comment': "So is Doug Burgum the token (relative) normie in Trump's cabinet? \n\nNorth Dakota is a significant oil producer, a factor which may have caused Trump to look more favorably upon Dougie. But his conventional style might rub hardcore MAGA loyalists in the administration the wrong way.", 'created': '2024-11-15 08:41:49', 'submission_id': '1grr89b'}
{'comment': 'Boo! \nI had my money on Mohamed bin-Salman for the new US Sec’y of Interior.\n\nHe’s actually more progressive than most of Trump’s picks.', 'created': '2024-11-15 20:56:16', 'submission_id': '1grr89b'}
{'comment': 'Boring! I need this shit show to be funny. Give it to Boeboe.', 'created': '2024-11-15 20:19:49', 'submission_id': '1grr89b'}
{'comment': "he's not even an interior designer bro!? what has he designed!? name one thing!?", 'created': '2024-11-16 00:41:49', 'submission_id': '1grr89b'}
{'comment': 'Maybe ND can get a sensible governor out of the deal, and not some billionaire environmental pillager.', 'created': '2024-11-15 14:11:19', 'submission_id': '1grr89b'}
{'comment': 'Propaganda works.', 'created': '2024-11-15 15:07:15', 'submission_id': '1grr89b'}
{'comment': 'I think we all underestimated how fucking stupid the average voter is', 'created': '2024-11-15 20:57:11', 'submission_id': '1grr89b'}
{'comment': 'They’ll open up all federal land to oil drilling', 'created': '2024-11-15 15:22:15', 'submission_id': '1grr89b'}
{'comment': "Can't wait to see oil rigs in the Grand Canyon. /s (like this is necessary)", 'created': '2024-11-15 19:39:01', 'submission_id': '1grr89b'}
{'comment': "We'll see. Burgum seems like the least horrible pick so far. It will all depend on what Trump demands and how strongly he demands it. I wouldn't be surprised if he gets the axe in short order.", 'created': '2024-11-16 08:32:02', 'submission_id': '1grr89b'}
{'comment': 'Lawsuits, lawsuits, lawsuits. Delay this pillaging as much as humanly possible!', 'created': '2024-11-15 18:34:07', 'submission_id': '1grr89b'}
{'comment': "Hey now, Matt Gaetz isn't the only pedophile of the four.", 'created': '2024-11-15 09:34:46', 'submission_id': '1grp17s'}
{'comment': 'Find your local Democrats, be it a Democratic Club, Executive Committee, or Caucus, and start attending meetings. Here in Brevard County, we have all three, including an LGBTQ Caucus. So yeah, attend meetings and get your voice heard.', 'created': '2024-11-15 12:33:18', 'submission_id': '1grp17s'}
{'comment': 'This is Master Obi-Wan Kenobi. I regret to report that both our Jedi order and the Republic have fallen, with the dark shadow of the Empire rising to take their place. This message is a warning and a reminder for any surviving Jedi; Trust in the force. Do not return to the Temple. That time has passed, and our future is uncertain. We will each be challenged. Our trust. Our faith. Our friendships. But we must persevere and in time a new hope will emerge. May the force be with you, Always.', 'created': '2024-11-15 11:35:23', 'submission_id': '1grp17s'}
{'comment': "I think it'll turn into a competition of who can out narcissist the other and they'll fail to really accomplish anything. That's my sincere hope.", 'created': '2024-11-15 13:43:52', 'submission_id': '1grp17s'}
{'comment': "I feel like, calling gaetz a pedophile doesn't do him justice. Let's take a play from the GOP, especially the name calling/ labeling but switch it up with some truth in there. \n\nHe is a child rapist.", 'created': '2024-11-15 15:05:00', 'submission_id': '1grp17s'}
{'comment': "Donate to the ACLU. You can make it one-time (and then donate as much as you can when ever you can) so you don't get caught in them taking money from you every month. They will be in the front lines battling Trump and whoever he has as attorney general. Great organization.", 'created': '2024-11-15 15:35:37', 'submission_id': '1grp17s'}
{'comment': "There are allegations of sexual misconduct regarding Trump's pick for Defense Secretary. \n\n[https://www.cnn.com/2024/11/15/politics/pete-hegseth-2017-sexual-assault-allegation/index.html](https://www.cnn.com/2024/11/15/politics/pete-hegseth-2017-sexual-assault-allegation/index.html)", 'created': '2024-11-15 11:35:09', 'submission_id': '1grp17s'}
{'comment': 'Trump has always been following the same Nazi play book - Mein Kampf.\n\nThere is an obvious concerted effort to bring down the administrative state, create chaos, and consolidate power.', 'created': '2024-11-15 15:10:50', 'submission_id': '1grp17s'}
{'comment': '[Find a local chapter of Indivisible](https://indivisible.org/organize-your-home-turf), or see if they can connect you with others wanting to start a group in your area! I just found out about them and attended their Wednesday meeting, and they have *tons* of info on their site :)', 'created': '2024-11-15 13:28:51', 'submission_id': '1grp17s'}
{'comment': 'Given how things are looking I think alcohol sales will increase over the next 4 years. As Jimmy Buffett said We have a lot to drink about.', 'created': '2024-11-15 14:20:31', 'submission_id': '1grp17s'}
{'comment': 'The circus is forming', 'created': '2024-11-15 15:26:48', 'submission_id': '1grp17s'}
{'comment': 'Good job USA!', 'created': '2024-11-15 14:22:05', 'submission_id': '1grp17s'}
{'comment': "Remember when the Republicans had a complete meltdown when AG Loretta Lynch briefly met with the spouse of a candidate during an investigation?\n\nNow we have a president appointing an unqualified AG only to destroy the cases against himself and the president. And they love it. I'd love to see them defend that shift without calling themselves a cult.", 'created': '2024-11-15 20:25:55', 'submission_id': '1grp17s'}
{'comment': "They will turn on each other as no one knows what they are doing and we'll suffer for a while, then the truth shall set us free as their own base will rise up against them.....", 'created': '2024-11-15 18:50:17', 'submission_id': '1grp17s'}
{'comment': 'Crazyocracy', 'created': '2024-11-15 15:04:14', 'submission_id': '1grp17s'}
{'comment': '[removed]', 'created': '2024-11-15 18:44:11', 'submission_id': '1grp17s'}
{'comment': 'My allegiance is to the Republic - TO DEMOCRACY!', 'created': '2024-11-15 14:27:08', 'submission_id': '1grp17s'}
{'comment': 'It does feel like the Nazi won WW2 doesnt it', 'created': '2024-11-15 21:56:36', 'submission_id': '1grp17s'}
{'comment': "Don't forget child sex trafficker", 'created': '2024-11-15 16:26:06', 'submission_id': '1grp17s'}
{'comment': 'I agree!', 'created': '2024-11-15 19:14:52', 'submission_id': '1grp17s'}
{'comment': 'Yeah fine, I’m sure he’s a slime ball but I’m more concerned that the guy is a literal trained talking head, and he was surely chosen for his ability to charismatically repeat on camera whatever his boss tells him to. \n\nSecretary of Defense! My god.', 'created': '2024-11-15 14:01:15', 'submission_id': '1grp17s'}
{'comment': 'Perhaps. But there are now more Democratic governors than there were in 2017. \n\nKentucky, Wisconsin, Illinois, Arizona, Maine, and even Massachusetts all had GOP governors when Trump took office; they have been replaced by Dems. This boost in numbers helps them coordinate their defense of democracy.', 'created': '2024-11-15 03:30:42', 'submission_id': '1grl87s'}
{'comment': 'New and existing ones should come together to mount a defence against the Trump Miller deportation machine and Trump plans to dismantle state DOEs', 'created': '2024-11-15 06:37:35', 'submission_id': '1grl87s'}
{'comment': "Can we just deal with this now? This is more important than in two years. We don't mess this is and we will own the house and Senate. Now, how to agree to do this is the real problem.", 'created': '2024-11-15 17:33:32', 'submission_id': '1grl87s'}
{'comment': 'I’m bothered that POTUS willingly engaged with Trump, he did nothing to stop him. Why did he cave so easy? He shouldn’t of met with him', 'created': '2024-11-15 15:49:24', 'submission_id': '1grl87s'}
{'comment': 'Also Michigan', 'created': '2024-11-15 05:31:25', 'submission_id': '1grl87s'}
{'comment': "Don't forget NC now, too!", 'created': '2024-11-15 22:06:17', 'submission_id': '1grl87s'}
{'comment': "Because it's part of the peaceful transition. Just like obama meeting trump. It's standard protocol.", 'created': '2024-11-16 03:15:51', 'submission_id': '1grl87s'}
{'comment': 'Thanks for that reminder!', 'created': '2024-11-15 05:47:32', 'submission_id': '1grl87s'}
{'comment': "Props to all our Tar Heel friends! But Dem Gov. Roy Cooper came to office the same time as Trump – technically weeks before Trump. So that's why I didn't include NC.", 'created': '2024-11-16 00:00:50', 'submission_id': '1grl87s'}
{'comment': 'Has he been convicted yet? \n\nEven if he has no convictions, the still unreleased House Ethics report on him might contain evidence which might be used by DC authorities to keep him a safe distance from kids.', 'created': '2024-11-15 02:27:05', 'submission_id': '1grkhze'}
{'comment': "maybe he could talk the crew into catching a lunchtime show with him at Ford's Theatre", 'created': '2024-11-15 02:22:03', 'submission_id': '1grkhze'}
{'comment': 'Hmm, good point.', 'created': '2024-11-15 03:11:54', 'submission_id': '1grkhze'}
{'comment': 'After Trump pardons him it will not be an issue.', 'created': '2024-11-15 05:13:32', 'submission_id': '1grkhze'}
{'comment': 'Took me a while to get the joke', 'created': '2024-11-15 05:58:46', 'submission_id': '1grkhze'}
{'comment': '', 'created': '2024-11-15 03:19:22', 'submission_id': '1grkhze'}
{'comment': 'Murdered by words (and maps).', 'created': '2024-11-15 22:16:43', 'submission_id': '1grkhze'}
{'comment': "You know we're in the end times when this guy is the voice of reason.", 'created': '2024-11-15 00:15:59', 'submission_id': '1gri37p'}
{'comment': 'Or the GOP senate could just *not* be a rubber stamp and just refuse to confirm an unqualified sex trafficker and an unqualified Russian agent for the highest offices in the country.', 'created': '2024-11-15 00:56:06', 'submission_id': '1gri37p'}
{'comment': "That's the smartest thing Bolton ever said. Personally I prefer tying both of them with plastic ties handcuffs but I forgot I'm not a Democop yet", 'created': '2024-11-15 00:33:03', 'submission_id': '1gri37p'}
{'comment': 'Gop will just ignore their reports like they did for Brett k', 'created': '2024-11-15 01:07:39', 'submission_id': '1gri37p'}
{'comment': "Soon there won't be an FBI, so they better hurry", 'created': '2024-11-15 02:24:04', 'submission_id': '1gri37p'}
{'comment': "Why bother? no matter what else they find beyond that which is already known, it won't matter. 76,000,000 voted for a convicted felon.", 'created': '2024-11-15 01:46:43', 'submission_id': '1gri37p'}
{'comment': "Trump's first term pick wasn't as extreme as now but at least this guy had a balls to kick Trump in the balls. As for this article, he needs to inform the FBI right away about Matt Gaetz, he's a dangerous man to run for congress.", 'created': '2024-11-15 00:42:38', 'submission_id': '1gri37p'}
{'comment': 'Heartbreaking: The Worst Person You Used To Know Before Being Introduced To A Huge Array Of Unimaginably Worse People Just Made A Great Point', 'created': '2024-11-15 03:33:25', 'submission_id': '1gri37p'}
{'comment': 'The best we can hope for is infighting until the midterms.', 'created': '2024-11-15 03:22:18', 'submission_id': '1gri37p'}
{'comment': 'Pretty sure Hegseth needs to be carefully looked at too.', 'created': '2024-11-15 03:30:40', 'submission_id': '1gri37p'}
{'comment': 'I seem to remember an ”FBI investigation” of Kavanaugh. Wonder how that played out…', 'created': '2024-11-15 03:44:10', 'submission_id': '1gri37p'}
{'comment': 'Rare Bolton W? wtf?', 'created': '2024-11-15 01:45:10', 'submission_id': '1gri37p'}
{'comment': 'Who is going to enforce anything Trump does? No one has stood up to him. We are so screwed.', 'created': '2024-11-15 15:43:20', 'submission_id': '1gri37p'}
{'comment': 'Bolton is a coward. He had his chance.', 'created': '2024-11-15 01:22:09', 'submission_id': '1gri37p'}
{'comment': 'I also call for FBI investigation! I bet they don’t listen to either of us', 'created': '2024-11-15 03:41:34', 'submission_id': '1gri37p'}
{'comment': 'Hey John Bolton, who did you vote for?', 'created': '2024-11-15 05:05:49', 'submission_id': '1gri37p'}
{'comment': 'https://preview.redd.it/42b1z4u0g31e1.jpeg?width=750&format=pjpg&auto=webp&s=e06da65f6bdaa2c9498e5ce627c2929c608611a6', 'created': '2024-11-15 17:40:49', 'submission_id': '1gri37p'}
{'comment': 'they are both compromised and trump has their dirt. He is putting them in positions to do his bidding', 'created': '2024-11-15 07:26:00', 'submission_id': '1gri37p'}
{'comment': "Shit,they are gonna hang Bolton. Couldn't happen to a better guy, but still. I'm sure they (R) and djt will seek vengance. Sigh.", 'created': '2024-11-15 03:34:34', 'submission_id': '1gri37p'}
{'comment': 'Into the election? I agree', 'created': '2024-11-16 04:56:20', 'submission_id': '1gri37p'}
{'comment': 'Jesus, right?!?', 'created': '2024-11-15 02:55:11', 'submission_id': '1gri37p'}
{'comment': 'Dick Cheney too', 'created': '2024-11-15 03:25:11', 'submission_id': '1gri37p'}
{'comment': 'I swear. I think we’re really seeing the beginning of the end of civilization as we know it. So surreal.', 'created': '2024-11-15 16:53:17', 'submission_id': '1gri37p'}
{'comment': 'Lol; they were elected based on their promises to be a cockholster for Trump and Putin.\n\nThe GOP has spent a huge chunk of the last 10 years evicting anyone not treasonously loyal to Trump over their country and family.', 'created': '2024-11-15 01:23:40', 'submission_id': '1gri37p'}
{'comment': 'Matt Gaetz and Venmo is not the right choice', 'created': '2024-11-15 03:09:04', 'submission_id': '1gri37p'}
{'comment': 'How I feel about John Thune too', 'created': '2024-11-15 06:03:08', 'submission_id': '1gri37p'}
{'comment': 'Took 6 years and was hampered by various forms of stonewalling. Guardian did some good coverage of it.', 'created': '2024-11-15 14:46:57', 'submission_id': '1gri37p'}
{'comment': 'Agree. Fuck this guy.', 'created': '2024-11-15 02:10:45', 'submission_id': '1gri37p'}
{'comment': 'He chose to abstain this year rather than vote for Kamala, according to interview I saw.', 'created': '2024-11-15 14:47:32', 'submission_id': '1gri37p'}
{'comment': 'WSJ was reporting that up to 30 Republicans are going to vote against Gaetz.', 'created': '2024-11-15 03:31:22', 'submission_id': '1gri37p'}
{'comment': 'Give it time. There’s a reason he’s making all of these ridiculous pick announcements so far in advance. It gives people time to adjust to the absurdity and for the outrage news cycle to die down.', 'created': '2024-11-15 03:32:55', 'submission_id': '1gri37p'}
{'comment': 'Yeah but Tuberville was threatening anyone who votes against.', 'created': '2024-11-15 05:36:42', 'submission_id': '1gri37p'}
{'comment': 'Until Trump promises them something.', 'created': '2024-11-15 13:27:14', 'submission_id': '1gri37p'}
{'comment': 'It’s pretty normal to announce appointments early on, that I don’t think is abnormal.', 'created': '2024-11-15 03:42:04', 'submission_id': '1gri37p'}
{'comment': 'The GOP should be renamed “The Overton Window Moving Company” at this point.\n\nhttps://en.wikipedia.org/wiki/Overton_window?wprov=sfti1', 'created': '2024-11-15 12:49:04', 'submission_id': '1gri37p'}
{'comment': 'What they are failing to connect here is “big ag” and “big pharma” are big donors', 'created': '2024-11-14 23:56:00', 'submission_id': '1grgtjv'}
{'comment': 'One of our best friends is a woman who\'s been stuck in a nursing home for years because her legs won\'t even let her transfer to and from her wheelchair anymore. Her childhood polio - she was just a little too early for the Salk vaccine - didn\'t cripple her immediately, but the aftereffects came back for her during middle age. Her husband turned out to be not so much "in sickness or in health" after all, and frankly I don\'t envy a day of her life since then.\n\nNow future generations will get to experience this joy.', 'created': '2024-11-14 23:55:28', 'submission_id': '1grgtjv'}
{'comment': "Imagine growing up in an era of health and safety strictly because of vaccines. Then thinking society just doesn't need them anymore. What a joke", 'created': '2024-11-15 01:57:32', 'submission_id': '1grgtjv'}
{'comment': 'Bro, Republicans are the ones who ended prescription drug price negotiations.\xa0\n\n\nWait until he does none of that because Republicans are owned by those corporations.', 'created': '2024-11-15 00:23:25', 'submission_id': '1grgtjv'}
{'comment': 'Any anti vaccination asshat does not understand the devastation of polio or mumps. Google children and mumps. Horrid and preventable', 'created': '2024-11-15 02:15:06', 'submission_id': '1grgtjv'}
{'comment': '"defeat vaccine mandates" \n"make america healthy again" \nthats gonna be a no.', 'created': '2024-11-15 00:29:37', 'submission_id': '1grgtjv'}
{'comment': 'This is the pick I’ve been fearing the most. It’s not even funny. If he’s confirmed, then I’m going to have seriously start looking for another country. We are talking directly about our health. After Covid, Trump unsurprisingly learned nothing. Next pandemic is all on him. The Trump Flu.', 'created': '2024-11-15 00:14:00', 'submission_id': '1grgtjv'}
{'comment': '[removed]', 'created': '2024-11-14 23:41:39', 'submission_id': '1grgtjv'}
{'comment': 'Is this actually from Jared Polis? Jesus, what a letdown.', 'created': '2024-11-15 01:18:21', 'submission_id': '1grgtjv'}
{'comment': 'A lot of people are going to die.\n\nI think I want to schedule some boosters...', 'created': '2024-11-15 01:20:48', 'submission_id': '1grgtjv'}
{'comment': "Any Colorado folks here that can elucidate Polis' angle here?\n\nThe degree to which Americans pretend that COVID didn't happen is incredible. A few years after a virus kills a million Americans and we're about to put a conspiracy theorist in charge of our health policy.", 'created': '2024-11-15 02:58:03', 'submission_id': '1grgtjv'}
{'comment': 'Oh it’s the “protect the children” line again, from\nthe group that seems to specialize in committing criminal acts against children.\n\nOn the flip side, big pharma will flex those checking accounts and we’ll see who goes running to the money. To try to battle big pharma in Colorado is one thing but to take it on at a national level is going to be fun to watch.', 'created': '2024-11-15 00:27:10', 'submission_id': '1grgtjv'}
{'comment': 'complete circus', 'created': '2024-11-14 23:38:01', 'submission_id': '1grgtjv'}
{'comment': '“Special interest groups.” Yeah you mean like the entire science and healthcare community.', 'created': '2024-11-14 23:55:42', 'submission_id': '1grgtjv'}
{'comment': 'Wonder when the first case of polio will happen when childhood immunizations won’t happen. People dying from measles mumps rubella… stop people! It’s SCIENCE not faith based bullshit', 'created': '2024-11-15 00:05:45', 'submission_id': '1grgtjv'}
{'comment': "Uh oh, it seems like RFK Jr.'s brain worm has developed a dangerous mutation, making it contagious!", 'created': '2024-11-14 23:34:49', 'submission_id': '1grgtjv'}
{'comment': 'We are **fucked**. Like it is seriously ridiculous how screwed we are and half the country thinks this is fine.', 'created': '2024-11-15 01:04:50', 'submission_id': '1grgtjv'}
{'comment': 'My generic pills are already manufactured in China. Does he know about global manufacturing?', 'created': '2024-11-15 01:58:24', 'submission_id': '1grgtjv'}
{'comment': 'I live in Colorado. I’m not sure my opinion of a politician has dropped so much so quickly after reading this. \n\nSupport a brain damaged moron who keeps spouting bullshit about vaccines because he MIGHT be able to do things elsewhere? Get the FUCK out of here. \n\nHe will share responsibility for the easily preventable epidemics that will happen over the next 4 years at least.', 'created': '2024-11-15 03:50:14', 'submission_id': '1grgtjv'}
{'comment': 'I didn’t realize that not wanting babies to die from avoidable diseases was a special interest.', 'created': '2024-11-15 04:30:09', 'submission_id': '1grgtjv'}
{'comment': 'I didn’t realize Jared Polis wasn’t aware of how vaccines work. I guess it’s going to take a generation of children dying pointlessly from avoidable diseases before people wake up. And that is incredibly sad.', 'created': '2024-11-15 01:09:16', 'submission_id': '1grgtjv'}
{'comment': "I'm honestly cool with PARENTS who are for full authority over their childrens live cuz we finally can hold them accountable, jail them and or use the electric chair when they cause others and their kids to be horrified when the measles, polio, whooping cough outbreak causes mass destruction of our future. FAFO.\n\nThese people are not human. They are MONSTERS. A threat to American society.", 'created': '2024-11-15 02:47:09', 'submission_id': '1grgtjv'}
{'comment': 'Love how everything except the anti vax stuff is highlighting the good stuff he wants to do and completely skipping over the fact that he wants to take fluoride out of the water, remove food safety regulations, and likes roadkill and raw milk. The guy is insane and this post is ridiculously misleading.', 'created': '2024-11-15 05:38:09', 'submission_id': '1grgtjv'}
{'comment': 'As an autistic person, so glad to have someone heading the Health Department who thinks my entire being is defective and caused by vaccines 😃', 'created': '2024-11-15 01:48:09', 'submission_id': '1grgtjv'}
{'comment': 'RFK Jr thinks Vaccines are toxic in what universe would he be open to personal choice?', 'created': '2024-11-14 23:26:41', 'submission_id': '1grgtjv'}
{'comment': 'The reason Europeans pay less for drugs is they have universal healthcare. Their health system negotiate prices with drug companies on a national level. Drugs are outrageously expensive in the US because of free markets. Private companies set their prices. Does anyone believe that the Trump admin is going to curb free markets and fight with drug makers and insurance companies?', 'created': '2024-11-15 06:54:15', 'submission_id': '1grgtjv'}
{'comment': None, 'created': '2024-11-14 23:44:14', 'submission_id': '1grgtjv'}
{'comment': "Uff my kid's 3year appointment was last week and my doctor said it would take a LOT to outright ban vaccines so she strongly discouraged getting his 4yo vaccines early (it's the polio, chicken pox, MMR, dTAP) because the school system won't acknowledge them as valid if they're gotten too early. Now I'm panicking a little bit. He can get rid of mandates but it'll be harder to outright ban the actual ability to get these vaccines, right? I live right next to a blue state that I could theoretically go to in order to access these.", 'created': '2024-11-15 03:43:55', 'submission_id': '1grgtjv'}
{'comment': 'Morons. The world’s population can’t be sustained by organic farming alone, and it’s substantially worse for the environment than conventional farming based on water and land use. And of course, vaccines are inarguably the most important health discovery in human history.', 'created': '2024-11-15 06:50:49', 'submission_id': '1grgtjv'}
{'comment': 'People used to talk about Polis like he was the second coming. He can fuck right off with that', 'created': '2024-11-15 00:38:49', 'submission_id': '1grgtjv'}
{'comment': 'Quote 1: The Biden Administration already begun taking steps towards that, numb nuts, and that was vehemently opposed by, wait for it, Republicans in Congress. This shit takes time as it needs to be done in a way that ensures the supply of medication isn’t interrupted while the process works. Upending the apple cart to thump your chest just ensures you have massive shortages in the mean time, and people will die\n\nQuote 2: you know what a great way to accomplish that would be? Put board certified nutritionists in charge of it. But, no, that would be listening to experts and we can’t have that 🙄\n\nQuote 3: Reduce reliance on pesticide-laden food production. This I do actually partially agree with in principle, however, people are going to realize right quick that said pesticides are what keep food as whole and intact as possible in the time it takes to go from farm to table. A better strategy would be to fund and push for less indiscriminately environmentally impactful pesticide that are more targeted to the worst offenders but don’t destroy ecosystems. In addition, actually crafting an official federal standard as to what constitutes “organic.” The current standard is not a federal regulation but an industry-developed set of flimsy guidelines that has no real governing body to hold businesses accountable when they violate it.', 'created': '2024-11-15 09:07:05', 'submission_id': '1grgtjv'}
{'comment': 'WTF?', 'created': '2024-11-14 23:55:41', 'submission_id': '1grgtjv'}
{'comment': "Weren't Polis and Pritzker forming a group? what the fuck?", 'created': '2024-11-15 07:13:34', 'submission_id': '1grgtjv'}
{'comment': "I can't disagree with him wanting to get rid of all the garbage in our food, lower drug prices, and reduce pesticide usage. His stances on vaccines and alternative medicine are troubling and I suspect we will see a rise in communicable diseases under his tenure. So he's a bit of a half and half for me.", 'created': '2024-11-15 00:12:45', 'submission_id': '1grgtjv'}
{'comment': '', 'created': '2024-11-15 05:41:00', 'submission_id': '1grgtjv'}
{'comment': 'I was almost certain this had to be a spoof message. [I was wrong.](https://x.com/jaredpolis/status/1857173250586911189?s=46&t=LZRez4LlojYtRqoJl047TQ) What the fuck, Polis?', 'created': '2024-11-15 06:21:10', 'submission_id': '1grgtjv'}
{'comment': 'He caved, which is ominous for the fight to keep the Constitution alive.', 'created': '2024-11-15 06:27:24', 'submission_id': '1grgtjv'}
{'comment': "It's good that he'll be taking this job during the biggest measles outbreak in decades. What could possibly go wrong?", 'created': '2024-11-15 16:47:23', 'submission_id': '1grgtjv'}
{'comment': 'Terrific, my teeth are going to look like I brush my teeth with dirty water.\n\n', 'created': '2024-11-15 00:37:42', 'submission_id': '1grgtjv'}
{'comment': 'I’m not surprised - he was Trump’s most obvious pick for this role. The Matt Gaetz pick is the only surprise for me so far.', 'created': '2024-11-15 00:56:50', 'submission_id': '1grgtjv'}
{'comment': 'https://freespeechforpeople.org/wp-content/uploads/2024/11/letter-to-vp-harris-111324.pdf', 'created': '2024-11-15 01:57:04', 'submission_id': '1grgtjv'}
{'comment': 'This Antivaxxer deserves to get stung by those insects', 'created': '2024-11-15 03:53:36', 'submission_id': '1grgtjv'}
{'comment': 'Why are republicans so stupid?', 'created': '2024-11-15 08:25:06', 'submission_id': '1grgtjv'}
{'comment': 'Looking forward to when Trump blames all his failures on all these appointees and they all come out to say what a crotch stain Trump is to work with…..again.', 'created': '2024-11-15 17:28:47', 'submission_id': '1grgtjv'}
{'comment': None, 'created': '2024-11-15 01:27:02', 'submission_id': '1grgtjv'}
{'comment': 'Get ready for everything to have whooping cough. I recommend reading about the diseases we vaccinate against.', 'created': '2024-11-15 04:40:27', 'submission_id': '1grgtjv'}
{'comment': 'Congress is lobbied hard by big pharma companies. Good luck getting any prices lowered. They had to fight like hell to get insulin lowered for Medicaid and Medicare.', 'created': '2024-11-15 05:45:29', 'submission_id': '1grgtjv'}
{'comment': 'Just you wait. Just you wait.', 'created': '2024-11-15 05:48:54', 'submission_id': '1grgtjv'}
{'comment': 'I have a friend *with a Masters degree* that told me measles is \'just an itchy rash\'.\n\n\nShe\'s Puerto Rican and *got angry with me* that I shared with her that her own party laughed and called PR \'floating garbage\'. She said "both sides say the same thing\'\n\n\nShe got angrier when I told her that no...we don\'t. It\'s why we were angry about what that asshole said.\n\n\nPeople are working as hard as they possibly can to undo any good that\'s ever been done here.\xa0', 'created': '2024-11-15 11:34:55', 'submission_id': '1grgtjv'}
{'comment': 'He’s a nutty head case of a freak show, but if he can fix the ADHD medicine shortage so that I can find my daughter’s medicine without having to go to 3 different pharmacies each month …. I’ll go from using 9 derogatory words to only 5 about him.', 'created': '2024-11-15 13:39:43', 'submission_id': '1grgtjv'}
{'comment': "I'm all for organics, I just wish we didn't need a bridge troll to do it.", 'created': '2024-11-15 14:14:43', 'submission_id': '1grgtjv'}
{'comment': '*googles Iron Lung companies to invest in*', 'created': '2024-11-15 19:51:04', 'submission_id': '1grgtjv'}
{'comment': 'I realize now I may should have became a lawyer but guys- fight', 'created': '2024-11-15 21:17:44', 'submission_id': '1grgtjv'}
{'comment': 'It is also no shock in the rise of autoimmune diseases in America from what is in our food and gmos. You can see a direct link of chemicals and plastics in our food and pollution to the number of young people suffering from rheumatoid arthritis, multiple sclerosis, lupus etc', 'created': '2024-11-16 19:54:05', 'submission_id': '1grgtjv'}
{'comment': 'I kind of see what benefits he outlines like importing Cheaper drugs … but like. WTF?', 'created': '2024-11-15 01:47:52', 'submission_id': '1grgtjv'}
{'comment': 'It’s what the people voted for. That’s who you’re disappointed in.', 'created': '2024-11-15 01:06:40', 'submission_id': '1grgtjv'}
{'comment': "I give him six months, twelve tops and he's toast. Everything he wants is against what Republicans want.", 'created': '2024-11-15 04:43:51', 'submission_id': '1grgtjv'}
{'comment': 'It’s almost like Trump hasn’t thought this through…🤔', 'created': '2024-11-15 13:52:58', 'submission_id': '1grgtjv'}
{'comment': 'They will cut the organic standard and let them call anything they want organic', 'created': '2024-11-15 22:22:37', 'submission_id': '1grgtjv'}
{'comment': 'And ingrained into the mind and stomach of people. Big agriculture means the meat industry. It’s the number one threat to the environment, but not enough ppl really gonna go vegetarian at revolution level and stop the CAFOs.', 'created': '2024-11-16 17:46:35', 'submission_id': '1grgtjv'}
{'comment': 'And Mitch McConnell is a polio survivor who has suffered lifelong ill effects.', 'created': '2024-11-15 00:23:52', 'submission_id': '1grgtjv'}
{'comment': 'You can say this of all the government agencies R voters are foaming at the mouth to get rid of', 'created': '2024-11-17 01:08:32', 'submission_id': '1grgtjv'}
{'comment': 'I can’t believe I’m saying this but I’m rooting for big pharma to step in with some common fucking sense.', 'created': '2024-11-15 04:21:30', 'submission_id': '1grgtjv'}
{'comment': 'The only thing he’ll do is make it harder to get much needed vaccines.', 'created': '2024-11-15 00:47:55', 'submission_id': '1grgtjv'}
{'comment': 'Yeah, he mentions Big AG but appears to be entirely unaware of Big Pharma, who pads the pockets of many crooked politicians. When Dems forced a reduction in the absurd price of insulin, Trump was quick to try and take credit for it and still does. Trump would have NEVER helped Americans when he’s getting paid not to.', 'created': '2024-11-15 00:58:24', 'submission_id': '1grgtjv'}
{'comment': 'That\'s because these same asshats *were vaccinated* as children, and this "vaccines are a tool of Satan", horseshit wasn\'t trendy when they came of age. They had the privilege to grow up in a time where diseases like Polio, whooping cough and measles weren\'t wiping out entire towns. So that means that they have no point of reference as well as ZERO CLUE, as to how devastating and deadly these diseases are. They have convinced themselves that something like Polio or smallpox would be just an annoying inconvenience like chicken pox or the flu that will only put their kids in bed for a couple of days.', 'created': '2024-11-15 03:37:29', 'submission_id': '1grgtjv'}
{'comment': 'As an ex-emt this man said nothing incorrect here.\n\nSecondly... does anyone see this march into nationalism or is it just me? As someone who was a high-school history nerd big into ww2 ... I always wondered.. how the f.. did a massive powerful nation like Germany fall into the hands of psychopaths who went on to murder millions of jews.. infront of their faces... it always boggled my mind back in 2004ish.. I was like how could a nation alienate its own people, point them out for round up, fight for a cause of pure nationality and themselves not even pure of "pure Aryan" race.\n\nAnd it took not even 20 years for my own eyes to see the answer... when they say history repeats its self.. there is nothing more true.\n\nMore then 70% of this nation has forgotten my own great grandfather immigrated from mexico in 1930s and went on fight in ww2 and fight ALL the way to Burma india... a Mexican immigrant who spoke little English was in Burma India fighting a mixture of both Japanese axis and German troops protecting the railroads.. battles un documented almost.. and he came back and was so proud to be given his citizenship.. and for what? For not even 100 years later his entire nation to call his blood "ruining this country"..\n\nNote: he went on to live to 97 and raise 3 daughters and marry his wife who was blind from the age of 15. When I asked him about his time in war he only told me once and when we got to any part of battles he would stare into space and quiver, mumble in Spanish.. and almost break down. He saw fierce combat for years fighting along side our Alies \n\nI\'m infuriated that I have to visit a national cemetery in riverside California to visit a man who risked everything for a nation that wants to build a wall, and deport them.\n\nIn the end. America looses.. as they get richer', 'created': '2024-11-15 01:09:01', 'submission_id': '1grgtjv'}
{'comment': 'There are reports that another pandemic is likely and may have even started--a bird flu. So yeah, this could potentially end in the deaths of millions of people.', 'created': '2024-11-15 00:23:30', 'submission_id': '1grgtjv'}
{'comment': 'This and Matt pedo Gaetz. Holy fuck.\n\n Just when I thought this was bad. Fox and friends host and only a major in the national guards as Sec of Defense and Russian bought Tulsi Gabbard. Glad I’m ancient and no kids. My two formerly feral cats are scared though.', 'created': '2024-11-15 15:34:51', 'submission_id': '1grgtjv'}
{'comment': "My wife has an MPH. She feels the same, but personally, I've been panicking about so many things like this since he said he would run again. We had so much time to lock him up and we did nothing, we let our government do nothing. Every death, every minute of agony, every lost dollar, we'll have earned by our negligence and unwillingness to take our situation seriously.\n\nGood luck finding an unaffected country.", 'created': '2024-11-16 13:34:14', 'submission_id': '1grgtjv'}
{'comment': "Nope, my entire attitude towards the people I work with who are openly Trump supporters has stooped to a new low. I'm now going to be as hateful towards them as they are toward people of color, the LGBTQ+, immigrants, and whatever the fuck else they are hateful towards. I'm done. As a white male, I'm terrified for those communities and the future of our daughters. We are fucked.", 'created': '2024-11-15 00:49:04', 'submission_id': '1grgtjv'}
{'comment': 'I agree. I could understand a 2016 Trump vote. Would that be shitty? Sure, but all the warnings were theoretical, and there were legitimate problems with Clinton, etc etc.\n\n2020? No way. After the last four years, you would have to be a psychopath to want more.\n\n2024? After January 6th and the false electors plot? Literally, at that point, you’re voting against democracy—and no one can claim they didn’t know who he was or what he stood for. Absolutely inexcusable to vote for him at that point. I want absolutely nothing to do with Trump supporters of any stripe and I seriously question how they can look at themselves in the mirror, knowing they voted for a fascist. They should be ashamed and disgusted with themselves, and I’m sure in 40 years they’ll be claiming they voted for Harris to avoid 100% justified social ostracism.\n\nI have no sympathy for them whatsoever. They’ve signed us all up for four years of chaos and possibly longer than four years of dictatorship. I sincerely hope Trump’s disastrous policies bite them in the ass as hard as they deserve.', 'created': '2024-11-15 04:23:26', 'submission_id': '1grgtjv'}
{'comment': 'America will face a crisis of young, highly educated individuals leaving in droves.', 'created': '2024-11-15 03:52:08', 'submission_id': '1grgtjv'}
{'comment': 'Polis isn’t a Trump supporter. He is a bona fide Democrat, but he approaches it the liberal side of libertarianism. As in people should be able to declare their gender for themselves.', 'created': '2024-11-15 00:26:58', 'submission_id': '1grgtjv'}
{'comment': 'Polis is the Democratic governor of Colorado.', 'created': '2024-11-15 01:50:59', 'submission_id': '1grgtjv'}
{'comment': 'Same. I’m exhausted and don’t fucking care anymore. My dad supported him and I’m cutting him off right now. I love you dad but fuck you for doing this to us.', 'created': '2024-11-15 05:43:42', 'submission_id': '1grgtjv'}
{'comment': None, 'created': '2024-11-15 00:01:56', 'submission_id': '1grgtjv'}
{'comment': 'I\'m in Colorado. My read on this is that he\'s extending an olive branch. Basically saying, "okay, here are some areas where we agree. You\'ve said these things yourself. Let\'s get to work taking on big pharma."', 'created': '2024-11-15 05:04:36', 'submission_id': '1grgtjv'}
{'comment': 'Protect the kids while nominating a dude that raped and drugged a 17 yr old and electing a dude that raoed 12 yr olds.', 'created': '2024-11-15 02:51:34', 'submission_id': '1grgtjv'}
{'comment': 'this comment was pointless. care to elaborate?', 'created': '2024-11-15 00:09:08', 'submission_id': '1grgtjv'}
{'comment': 'Well, 5,707 people had measles in the outbreak that struck the tiny Pacific nation of Samoa at the end of 2019. In just three and a half months, 83 died and 1,868 were admitted to hospital. Vaccination rates as low as 31% were blamed, with Samoa becoming the exemplar of what can happen in an underimmunised population.', 'created': '2024-11-15 00:56:42', 'submission_id': '1grgtjv'}
{'comment': 'I guess this is how they save social security.', 'created': '2024-11-15 00:16:11', 'submission_id': '1grgtjv'}
{'comment': 'Did Polis strap a grizzly on his roof, take it home and eat it?\xa0', 'created': '2024-11-15 03:07:52', 'submission_id': '1grgtjv'}
{'comment': 'There goes Polis’s Presidential ambitions.', 'created': '2024-11-15 03:43:39', 'submission_id': '1grgtjv'}
{'comment': "They've become pretty good at just shrugging their shoulders when school children are gunned down at school, on a pretty frequent basis, so I don't see why they would be at all concerned about a generation of children being cut down by entirely preventable illnesses.", 'created': '2024-11-15 03:43:22', 'submission_id': '1grgtjv'}
{'comment': '[removed]', 'created': '2024-11-15 03:33:41', 'submission_id': '1grgtjv'}
{'comment': 'Polis is a dem', 'created': '2024-11-15 00:38:59', 'submission_id': '1grgtjv'}
{'comment': 'Before the last 6 months I’d say “no way they can ban them”. But since the judiciary is going to further evolve into a wholly owned subsidiary of the Republican Party, who the fuck knows what they will be able to do.', 'created': '2024-11-15 04:07:30', 'submission_id': '1grgtjv'}
{'comment': 'But will insurance companies cover vaccines if there is no mandate for them?\n\nHere in Florida it’s impossible to get a COVID vaccine for anyone below the age of five.', 'created': '2024-11-15 06:40:57', 'submission_id': '1grgtjv'}
{'comment': 'He really never was to begin with.', 'created': '2024-11-15 09:53:44', 'submission_id': '1grgtjv'}
{'comment': 'This all day long!', 'created': '2024-11-16 14:57:36', 'submission_id': '1grgtjv'}
{'comment': '>him wanting to get rid of all the garbage in our food\n\nAbolishing the FDA and letting corporations self-regulate will do the exact opposite.', 'created': '2024-11-15 00:43:30', 'submission_id': '1grgtjv'}
{'comment': 'I agree with the goals of lowering drug prices, reducing pesticide use, and reducing the "business-interests" in our nutritional recommendations. I also agree that their methods will not only fail in those achievements, but also make a number of things worse.\n\nI don\'t like ending vaccine mandates though. There\'s a reason that polio and smallpox have been all but eradicated.', 'created': '2024-11-15 01:02:57', 'submission_id': '1grgtjv'}
{'comment': "I know X sucks but it's his verified account.", 'created': '2024-11-15 01:28:56', 'submission_id': '1grgtjv'}
{'comment': 'They want a poorly run government and him and his brain worm are here for the job', 'created': '2024-11-15 15:17:34', 'submission_id': '1grgtjv'}
{'comment': 'More important, everything he wants is against what _Big Ag and Big Pharma_ want. He is indeed toast and I think that your timeline is correct.', 'created': '2024-11-15 15:54:47', 'submission_id': '1grgtjv'}
{'comment': "Surely you're not suggesting that this was... _impulsive_, are you?", 'created': '2024-11-15 15:44:24', 'submission_id': '1grgtjv'}
{'comment': "Wow...just wow! Considering he's such a yes man, he'll seem to forget his ill effects if it means supporting his dictator.", 'created': '2024-11-15 02:27:14', 'submission_id': '1grgtjv'}
{'comment': 'We live in a capitalist country where the share holders get top priority. It ain’t gonna happen.', 'created': '2024-11-15 14:19:12', 'submission_id': '1grgtjv'}
{'comment': "Like Martin Shkreli? 🤔\n\nThat's the only cents the pharma bros care about... 📈", 'created': '2024-11-16 13:29:37', 'submission_id': '1grgtjv'}
{'comment': 'Prob take away government requiring insurance companies provide them as part of your basic benefits at low or no cost', 'created': '2024-11-15 16:09:57', 'submission_id': '1grgtjv'}
{'comment': 'He also wanted to weaken FDA requirements for drugs and supplements. They don’t give two fucks about taking on big pharma.', 'created': '2024-11-15 06:02:35', 'submission_id': '1grgtjv'}
{'comment': None, 'created': '2024-11-15 02:25:19', 'submission_id': '1grgtjv'}
{'comment': 'Thanks to your grandfather for his service. May he rest in peace. \n\nPeople don\'t like hearing this, but we\'ve become a country that\'s placed being ignorant and uninformed on the same plane as training and expertise. Our media feels it has more of an obligation to be reporters as opposed to truth tellers. This country won the second half of the 20th Century be encouraging education, knowledge, and the pursuit of genius. Now, some dolt reads some trash on some website that "the government doesn\'t want you to know" and believes they\'re the truly well-informed. I\'d bet half the people who voted for Trump couldn\'t name the three branches of government. These people know nothing about tariffs, which have become our most obscure method of taxation. Most of these folks couldn\'t tell you the main ingredient in peanut butter. Once upon a time, having a strong back and a weak mind didn\'t deprive you of being able to make enough of a living to support a family. Those days are gone, and, for these people, the "elites" are to blame for that. The same people who whine about the price of eggs would whine about the price of TVs if they were still made in this country because they\'d cost twice as much. \n\nThe morons voted to be led by their king.', 'created': '2024-11-15 04:57:59', 'submission_id': '1grgtjv'}
{'comment': "> When I asked him about his time in war he only told me once and when we got to any part of battles he would stare into space and quiver\n\nSame look my dad got talking about the Bulge and I only recall a couple occasions that even happened when I was growing up. Many years later we watched Saving pvt Ryan as a family and it was obvious he was having a hard time with it. He was a Republican his whole life. The last Democrat he voted for was FDR. He passed before Trump 45 thankfully. He'd have been mortified seeing him in the Oval Office. He hated him as a real estate dude let alone shaming the office of president.", 'created': '2024-11-15 05:35:41', 'submission_id': '1grgtjv'}
{'comment': 'The Forgotten History of Hitler’s Establishment Enablers https://www.newyorker.com/magazine/2024/03/25/takeover-hitlers-final-rise-to-power-timothy-w-ryback-book-review', 'created': '2024-11-15 06:22:10', 'submission_id': '1grgtjv'}
{'comment': 'Firing and replacing the military command structure with Trumpees is the scariest alignment with 1930s Germany.', 'created': '2024-11-15 04:46:57', 'submission_id': '1grgtjv'}
{'comment': 'Loses. The second o comes loose and then you lose it.', 'created': '2024-11-15 09:58:50', 'submission_id': '1grgtjv'}
{'comment': 'I saw this in 2016.', 'created': '2024-11-15 15:47:33', 'submission_id': '1grgtjv'}
{'comment': 'Only sime get richer', 'created': '2024-11-15 16:12:08', 'submission_id': '1grgtjv'}
{'comment': "The book On Tyranny by Timothy Snyder validates this 100 percent. I mean I can see it with my own eyes, but he gives some guidance on how to avoid actually falling into it. It's a short read or listen. Less than two hours. \n\nIncredibly scary timed for this country and for younger people.", 'created': '2024-11-15 20:28:56', 'submission_id': '1grgtjv'}
{'comment': 'There are no credible reports that an H5N1 pandemic has started. There are no cases or evidence of human to human transition.\n\n\nI do think that H5N1 is a serious threat, and it is spreading among dairy farms and even has been found in pigs, so I believe it very likely will mutate to transmit between humans, but that has not happened yet.', 'created': '2024-11-15 00:35:31', 'submission_id': '1grgtjv'}
{'comment': 'Granted those millions will mostly be his followers, just like with Covid.', 'created': '2024-11-15 00:37:42', 'submission_id': '1grgtjv'}
{'comment': 'I know. I don’t know what we do. Maybe it’s too late. Yes, we are all to blame in some part, some a lot more than others. My worst fear when Biden won in 2020 was they would underestimate the MAGA threat. Biden won because of Covid.', 'created': '2024-11-16 14:45:11', 'submission_id': '1grgtjv'}
{'comment': 'I’m there as well. Unfortunately, my empathy for them has hit rock bottom. If you can’t help yourself by voting for your own interests, then I’m done here. Good luck with your sociopath of a president', 'created': '2024-11-15 01:05:40', 'submission_id': '1grgtjv'}
{'comment': 'Right there with ya! \n\nIt\'s borderline comical because I\'ve been known as a super sweet person. However, with what we likely will be facing, folks have seen a new side of me.... the fact that people knowingly and willingly filled in the circle next to the name of an individual who quite literally told us what he would do... (and his cabinet "taps" are yet another nod in the direction his administration and the GOP plan on taking us) absolutely infuriates me!!!!\n\nWhile this now reformed ex-"super sweet/nice gal" (me) has a public facing job as a lead server/ bartender in our locally owned Brewery/Restaurant, i can\'t always do/say what I\'m really thinking .... guests that are loud/verbose trump supporters get my full and unadulterated disdain (and no, I don\'t NOT mess with their food/drink.) \n\nSadly, close to half of them, my responses/reactions - to their continual comments are met with rather quizical looks on their part, so sometimes I have to rephrase, or dumb it down for them when they think that due to my attire (oftentimes I\'m in jeans/cowboy boots) they seem to think thar I\'m "one of them" - to which I quickly assure them, that I\'m most certainly, NOT!!!', 'created': '2024-11-15 11:15:36', 'submission_id': '1grgtjv'}
{'comment': 'Polis is helping to normalize that an anti-vaxxer was nominated to run our country’s Health Dept. This is not normal. Nothing about any of this is normal.', 'created': '2024-11-15 06:36:46', 'submission_id': '1grgtjv'}
{'comment': 'Only 22% of eligible voters voted for him, 21% did not. It’s all of the others we CAN attempt to flip out of their complacency, not magats.', 'created': '2024-11-15 00:29:42', 'submission_id': '1grgtjv'}
{'comment': None, 'created': '2024-11-15 00:17:39', 'submission_id': '1grgtjv'}
{'comment': "There are ways he could have said it without saying he's really excited about the appointment.\n\nHe literally tweeted this back in August:\n\nhttps://preview.redd.it/hyhicb8z201e1.jpeg?width=1179&format=pjpg&auto=webp&s=a5d602228df1f93f8bceb847082baffde5981032", 'created': '2024-11-15 06:22:25', 'submission_id': '1grgtjv'}
{'comment': 'Polis said this will face strong “special interest” opposition, as though only small or fringe groups are against this stupidity.', 'created': '2024-11-15 00:57:39', 'submission_id': '1grgtjv'}
{'comment': 'MAGA does not care about', 'created': '2024-11-15 01:40:09', 'submission_id': '1grgtjv'}
{'comment': 'I understand your sentiment, but just the opposite is very much possible as measles are a childhood disease.\n\nSo, those who would be contributing to Social Security will be removed from the system. And being removed from the Social Security system is quite a euphemism.', 'created': '2024-11-15 00:59:25', 'submission_id': '1grgtjv'}
{'comment': 'Up until this I actually for the most part liked him. \n\nEven so, he had no shot.', 'created': '2024-11-15 03:51:34', 'submission_id': '1grgtjv'}
{'comment': 'I’m diagnosed. Let me guess, you know more than the doctors who diagnosed me lol?', 'created': '2024-11-15 03:36:15', 'submission_id': '1grgtjv'}
{'comment': 'Uffff I really really hope I can manage to get THESE ones at the very very least in time.', 'created': '2024-11-15 05:18:10', 'submission_id': '1grgtjv'}
{'comment': 'Facts are getting in the way of the fairytales, shush.', 'created': '2024-11-15 00:46:45', 'submission_id': '1grgtjv'}
{'comment': 'Im terrified as a government employee. Things were not good last time he was in office. He cut jobs, almost stopped funding votes, lessened services for veterans, tried to privatize government services (which we know from child welfare does not work). Our government efficiency has gotten better over the last 10 yrs during democrat presidents, but not him. He didnt even give decent cost of living raises. I could make double what i make by leaving government but i choose to be a civil servant and help our nations veterans, like my dad who loved his VA. However, i truly fear what he is going to do.', 'created': '2024-11-16 19:50:36', 'submission_id': '1grgtjv'}
{'comment': '“If it weren’t for the polio vaccine, I wouldn’t be able to bend this knee”', 'created': '2024-11-15 02:36:46', 'submission_id': '1grgtjv'}
{'comment': 'The pharmaceutical industry in the United States generated over 602 billion in revenue in 23 in the US so I’m hoping they protect their business? I dk.', 'created': '2024-11-15 19:15:42', 'submission_id': '1grgtjv'}
{'comment': "It feels surreal to see it play out... the clear as day asset influenced by the KGB and Kremlin talking points right infront of America's face for years.. and successful not once... but twice.\n\nIt's as if Jan 6th never happened and honestly it did besides some bafoons in jail.. this time around it will be much much more cordinated... the rehearsal to seize power in America is done, it's show time.", 'created': '2024-11-15 03:47:15', 'submission_id': '1grgtjv'}
{'comment': '…but at least they’re not ‘woke’.', 'created': '2024-11-15 06:52:30', 'submission_id': '1grgtjv'}
{'comment': 'First reported human infection: [https://www.statnews.com/2024/11/13/bird-flu-canada-teenager-infected-different-strain-than-dairy-cattle/](https://www.statnews.com/2024/11/13/bird-flu-canada-teenager-infected-different-strain-than-dairy-cattle/)', 'created': '2024-11-15 00:44:07', 'submission_id': '1grgtjv'}
{'comment': 'Rather than “anti-vaxer” I prefer the more accurate term “plague enthusiast”.', 'created': '2024-11-15 13:55:19', 'submission_id': '1grgtjv'}
{'comment': 'Perhaps, but you win more friends with honey than with vinegar, and given that the table is set already for what will have to be a working relationship, why not start off on a non-antagonistic foot?', 'created': '2024-11-15 13:02:52', 'submission_id': '1grgtjv'}
{'comment': "He'll conveniently forget he ever said that.", 'created': '2024-11-15 02:43:22', 'submission_id': '1grgtjv'}
{'comment': '"...to Trump."', 'created': '2024-11-15 07:03:12', 'submission_id': '1grgtjv'}
{'comment': "Somehow the MAGA crowd are going to blame Democrats for this if it becomes a thing...two Trump presidencies, two pandemics...they are going to say it was intentional to try to derail Trump's ambition and then they are going to want a third term.", 'created': '2024-11-15 00:51:08', 'submission_id': '1grgtjv'}
{'comment': "They didn't say humans haven't been infected they said we don't have human to human transmission\n\n>The virus that infected the Canadian teenager was a 2.3.4.4b virus of the D1.1 genotype. This version of the virus, which is spread by wild birds, has caused poultry outbreaks in a variety of places, including recently in Washington state.", 'created': '2024-11-15 00:50:21', 'submission_id': '1grgtjv'}
{'comment': 'Correct, but there was animal to human transmission, and if it crossed that barrier it is likely to start transmitting between humans.', 'created': '2024-11-15 01:10:25', 'submission_id': '1grgtjv'}
{'comment': "You're wrong to correct me though lmao. It's also far from the first human infection btw, there are tons of farm workers who have tested positive. My whole point was specifically about human to human transmission, your replied with info I already knew like it was an own", 'created': '2024-11-15 02:55:39', 'submission_id': '1grgtjv'}
{'comment': 'Missouri had a case not connected to animals in a human. Its about to jump the barrier', 'created': '2024-11-15 06:38:39', 'submission_id': '1grgtjv'}
{'comment': "They investigated that case and found no evidence of human to human transmission, and found that it wasn't transmitting between that person and others around them.\n\n\nI agree that it is likely to jump the barrier, but it hasn't happened yet.\n\n\n\nhttps://www.cdc.gov/bird-flu/spotlights/missouri-h5n1-serology-testing.html", 'created': '2024-11-15 06:58:44', 'submission_id': '1grgtjv'}
{'comment': 'Europeans: “Americans can’t possibly get any dumber…”\n\nTrump: “Hold my Diet Coke.”', 'created': '2024-11-14 23:12:34', 'submission_id': '1grgpk5'}
{'comment': 'it’s only been what 9 days….', 'created': '2024-11-14 23:16:46', 'submission_id': '1grgpk5'}
{'comment': 'He says COVID vaccine causes COVID.\n\nYou know, the vaccine that TWUMP developed, and it causes COVID? So, like, Twump screwed up?', 'created': '2024-11-15 00:34:20', 'submission_id': '1grgpk5'}
{'comment': 'Is it wrong for me to think, that as Democrats, we should stop trying to fix the disaster that is coming our way?\n\nHear me out. Apparently a majority of Americans voted for Trump knowing how chaotic he is. We all saw January 6. We all know he’s a convicted felon. We saw his last administration. So what is to stop us from just letting these Maga Republicans experience the consequence of their choice?\n\nMaybe this is the fuck around and find out stage of American democracy. And then when they figure out, or are reminded, what a con man he is, they will have a change of heart next go around. This has to be combined with, however, a common sense platform by the Democratic Party, focusing on the basics, economy, affordable housing, healthcare and public safety.', 'created': '2024-11-14 23:29:56', 'submission_id': '1grgpk5'}
{'comment': '“Skeptic” Jesus Christ…\n\nHe is not a “Skeptic”. He fully believes that children should not ever be vaccinated. For anything.', 'created': '2024-11-15 00:18:51', 'submission_id': '1grgpk5'}
{'comment': 'When did the term "skeptic" become the standard term for antivaxxers.', 'created': '2024-11-14 23:36:09', 'submission_id': '1grgpk5'}
{'comment': 'This is horrible. I (and family members) rely on vaccines especially covid for lung issues. So much of this administration is terrifying but this makes me scared for my health.', 'created': '2024-11-15 01:41:58', 'submission_id': '1grgpk5'}
{'comment': 'Doesn’t he also have to be confirmed by Congress? There’s no way that they’ll confirm him imo', 'created': '2024-11-15 01:59:38', 'submission_id': '1grgpk5'}
{'comment': 'Like nominating Josef Mengele as HHS secretary for Germany.', 'created': '2024-11-15 03:14:31', 'submission_id': '1grgpk5'}
{'comment': 'Vaccine “skeptic” is a gentle way of phrasing it…', 'created': '2024-11-15 02:52:55', 'submission_id': '1grgpk5'}
{'comment': "r/LeopardsAteMyFace \n\nDon't blame us we voted for Kamala.", 'created': '2024-11-14 23:48:45', 'submission_id': '1grgpk5'}
{'comment': 'https://preview.redd.it/f89jtjjddz0e1.jpeg?width=1536&format=pjpg&auto=webp&s=8f1e5e5f380e96b5d619e63fd950a5986a644ddc', 'created': '2024-11-15 03:58:52', 'submission_id': '1grgpk5'}
{'comment': 'Viruses everywhere celebrate!\n\nThe next pandemic is gonna be a whopper. Stock up on TP now.', 'created': '2024-11-15 04:30:49', 'submission_id': '1grgpk5'}
{'comment': 'I got a flu shot and covid booster today - these MAGAt vaccines deniers “don’t want my tainted blood “? GOOD. I don’t want them to have it.', 'created': '2024-11-15 05:12:39', 'submission_id': '1grgpk5'}
{'comment': 'This is great motivation to take a good look at your health and exercise regime. Screwed otherwise.', 'created': '2024-11-15 07:32:21', 'submission_id': '1grgpk5'}
{'comment': 'At this point I really feel like he believes it’s The Apprentice. He wants to hire/fire.', 'created': '2024-11-15 15:30:04', 'submission_id': '1grgpk5'}
{'comment': 'He’s not a skeptic. He outright denies them.', 'created': '2024-11-15 19:23:11', 'submission_id': '1grgpk5'}
{'comment': 'Yup. I hate it here (Earth).', 'created': '2024-11-14 23:25:27', 'submission_id': '1grgpk5'}
{'comment': 'The term hasn’t even begun and it feels like it has', 'created': '2024-11-15 03:55:36', 'submission_id': '1grgpk5'}
{'comment': 'I think this is the right approach.\n\nHerbert Hoover won in a landslide and did such a bad job with the economy that they called homeless camps “Hoovervilles” before the next election. Which FDR won by a landslide.\n\nRather than stew in self recrimination and hand wringing, I think we should just sit back and let it play out. Let’s put together our coalition after Trump’s falls apart.\n\nA lot of people voted for him thinking the economy would improve, because many people assume that republicans are better for the economy. They’re about to learn a hard lesson about which party is actually better for the economy.', 'created': '2024-11-15 00:41:05', 'submission_id': '1grgpk5'}
{'comment': 'I agree. It sucks for the sane people who didn’t vote for this, but fuck those who did. I stopped caring about them a long time ago. They wanted this, so they’ll have to live with what happens.', 'created': '2024-11-15 00:40:19', 'submission_id': '1grgpk5'}
{'comment': 'That’s where I’m at. Let Trump go unleashed so that people see the damage he’ll inflict. Unfortunately we’re all going to have to experience it in some way.', 'created': '2024-11-14 23:40:43', 'submission_id': '1grgpk5'}
{'comment': "Most addicts need to hit rock bottom before they start looking for help.\n\nThe way you hit rock bottom is when all your support systems leave you to cope alone.\n\nFuck it, they won, they're panicing. We can bask in their suffering.", 'created': '2024-11-15 02:49:51', 'submission_id': '1grgpk5'}
{'comment': 'Do you seriously think we are going to have fair elections next time? If Gaetz is confirmed, then fascists will be encouraged to commit federal crimes while Dems are punished for any dissent. They are going to use mass social engineering and propaganda to relentlessly rig society against the left. Arguably, they’ve already done that. We shouldn’t merely be hoping it gets bad enough for a backlash at the polls. We need it to get so bad that society devolves into chaos and the military is forced to depose these morons.', 'created': '2024-11-15 00:45:02', 'submission_id': '1grgpk5'}
{'comment': 'I’m inclined to agree. If America wants to step firmly down on the rake of history, who are we to refuse them? Let’s focus on getting the tetanus shot ready.', 'created': '2024-11-14 23:48:20', 'submission_id': '1grgpk5'}
{'comment': 'There won’t be a next go around without armed revolt', 'created': '2024-11-15 00:55:10', 'submission_id': '1grgpk5'}
{'comment': "I'm here. Maybe we don't spend four years getting shit on by these fickle morons while we save them from what the MAGA breaks come 2025. Let them see what eight or more years of this shit really does to them. Fuck it.", 'created': '2024-11-15 16:41:44', 'submission_id': '1grgpk5'}
{'comment': 'Well a majority of people who actually voted. He got less votes than Biden did, barely any more than he got in 2020.\n\nLess than 1/4 of the population voted for him', 'created': '2024-11-15 23:14:44', 'submission_id': '1grgpk5'}
{'comment': "They should call him a science denier. I hope we're able to even get vaccines next time there's a pandemic.", 'created': '2024-11-15 00:00:59', 'submission_id': '1grgpk5'}
{'comment': 'I hope not.', 'created': '2024-11-15 04:23:02', 'submission_id': '1grgpk5'}
{'comment': 'Me too. 😕', 'created': '2024-11-15 00:01:13', 'submission_id': '1grgpk5'}
{'comment': 'Yes.', 'created': '2024-11-15 00:56:43', 'submission_id': '1grgpk5'}
{'comment': "The only thing is we have to fix the media somehow.\xa0 Conservatives control nearly all of it.\xa0 Their brand of nonsense is better adapted to social media.\xa0 We could stoop to their lows, but that's win the the battle, lose the war.\xa0 So how do we get people to focus back on reputable unbiased media?", 'created': '2024-11-15 05:23:44', 'submission_id': '1grgpk5'}
{'comment': 'And armadillos were Hoover hogs! I hope they bought some charcoal before the price goes up.', 'created': '2024-11-15 02:57:06', 'submission_id': '1grgpk5'}
{'comment': 'The best take I’ve seen. Wholeheartedly agree.', 'created': '2024-11-15 03:30:09', 'submission_id': '1grgpk5'}
{'comment': 'The question has been answered for us, too. The Republicans have a trifecta. We need something to run on, and we want to live in a better country. But our power is limited anyway.', 'created': '2024-11-15 15:25:13', 'submission_id': '1grgpk5'}
{'comment': 'Yes, there is that. With Republicans taking the presidency and both chambers, being totally responsible for their decisions, I’m inclined to let them fall flat on their face. I honestly don’t think there’s any other way for Trump’s supporters to see him for what he is. Having said that, however, I don’t think that is enough. Democrats need to hone down there message on the basics for working class Americans. Let’s hope they get that done.', 'created': '2024-11-14 23:59:11', 'submission_id': '1grgpk5'}
{'comment': "Yeah last time, trump had guardrails and babysitters. His fan club never really experienced the terror and havoc that this man can inflict, the first time around. I can guarantee that this do over, will be like nothing they've experienced in their life. They seem to think that this will just be a re-run of his first term. NOPE", 'created': '2024-11-15 03:50:44', 'submission_id': '1grgpk5'}
{'comment': 'How does the military depose them?\xa0 They will purge dissenting generals and the military already leans right', 'created': '2024-11-15 05:25:30', 'submission_id': '1grgpk5'}
{'comment': 'This is not the first time in this nation’s history that we’ve had a horribly biased and corrupt media. We survived William Randolph Hearst, we’ll survive this.\n\nThey’re like sharks. Once there’s blood in the water they’ll start attacking.\n\nI think the best bet is to stand back for a few months, focus on grassroots organizing and let the Republicans have the spotlight while they are actively crashing the economy.', 'created': '2024-11-15 05:35:43', 'submission_id': '1grgpk5'}
{'comment': 'That’s what I find so frustrating. Our policies are more popular, it’s just the messaging and breaking through to the people that need to hear them.', 'created': '2024-11-15 00:10:02', 'submission_id': '1grgpk5'}
{'comment': 'well Dems will need a "from scratch" plan for goverment. Maybe they can set things up in a better way. There will be little left by the time we get the chance.', 'created': '2024-11-15 00:14:02', 'submission_id': '1grgpk5'}
{'comment': 'Yes, DNC leaders, Hello, 👋 … Anyone listening. Step 1. Let Trump and GOP fail. Step 2. Talk to working class Americans and hone in on economics and the basics.', 'created': '2024-11-15 00:12:29', 'submission_id': '1grgpk5'}
{'comment': "I'm so glad you posted this message my family and I talk about this alot and we're Christians too but wasn't with idol worshipping of their orange god I definitely voted with my Christian Values which line up more with Harris Walz 2024", 'created': '2024-11-14 23:44:10', 'submission_id': '1grgeuf'}
{'comment': "Reminds me of the bumper sticker I put on my car, circa 2012. It said: *Obama is not a brown skinned socialist who gives away free health care. You're thinking of Jesus.*", 'created': '2024-11-15 00:31:56', 'submission_id': '1grgeuf'}
{'comment': 'Tax all churches.', 'created': '2024-11-15 01:24:32', 'submission_id': '1grgeuf'}
{'comment': "I honestly think that a large part of the reason why Trump won is the fact that he's simply so cartoonishly evil that the negative press around him still doesn't *feel* real to some people even though it absolutely is.", 'created': '2024-11-15 00:47:59', 'submission_id': '1grgeuf'}
{'comment': 'A “friend” on Facebook posted that “God doesn’t use perfect people to do his work” 🫠😑', 'created': '2024-11-15 00:31:26', 'submission_id': '1grgeuf'}
{'comment': 'This is a good question. The likely answer is "The ends justifies the means." "I did the bad things to gain enough power to stop abortion."\n"I did the evil acts to create a Christian nation and ultimately a Christian controlled world." "I did the evil acts to bring your teachings to all humans so they could be saved from burning in hell for eternity."\n\nThis is the answer Matt Walsh will give to Jesus at the Pearly Gates.\n\nBut he will be shocked to learn his excuses are not accepted. Back you go into yet another incarnation to learn the consequences of your mistakes.', 'created': '2024-11-15 01:21:36', 'submission_id': '1grgeuf'}
{'comment': "https://preview.redd.it/mrtli0j11y0e1.png?width=633&format=pjpg&auto=webp&s=c08887580aacfaf2d1796e112df4b5ee64771568\n\nThey all had Jesus light switch cover plates, too!\n\nThey thought of him every time they toggled the light on. And off. And on. And off. Oh... right... I guess **that's** why the red elevator doors just opened...", 'created': '2024-11-14 23:27:56', 'submission_id': '1grgeuf'}
{'comment': 'Posting this on my insta story. Let’s see what happens hahah', 'created': '2024-11-14 23:18:45', 'submission_id': '1grgeuf'}
{'comment': "It's like Dostoevsky wrote in the Parable of the Grand Inquisitor, if Christ came back to Earth, they would persecute him as the Anti-Christ.", 'created': '2024-11-15 01:31:31', 'submission_id': '1grgeuf'}
{'comment': 'This concept almost makes me wish this whole Jesus mumbojumbo were real. The biblical depiction of Jesus, if you can filter out all the "thee", "thou" bullshit, makes him seem more like one of those peace lovin\' hippies from the sixties. And if he could zap these MAGAt motherfuckers at the moment of death, well then that would just be the most awesomest thing imaginable.', 'created': '2024-11-15 02:13:21', 'submission_id': '1grgeuf'}
{'comment': 'First, they will ask to speak to the real Jesus because this one is one of those illegal nonwhite immigrants who advocate for children to be fed and to give to the poor.', 'created': '2024-11-15 05:35:39', 'submission_id': '1grgeuf'}
{'comment': "It's easy. All the bad stuff about Trump is a lie and they think Trump will make the country better including bringing back Christian values.", 'created': '2024-11-14 23:43:40', 'submission_id': '1grgeuf'}
{'comment': 'My youngest brother is a jail/prison chaplain. He is such a hypocrite, fucking grifter. While I do not open facebook often, I did this morning when there was a notice he posted something. "RED WAVE, MISSION ACCOMPLISHED!" Good thing we have been somewhat estranged for several years.', 'created': '2024-11-15 10:40:08', 'submission_id': '1grgeuf'}
{'comment': "I have concluded that they know the evil he's causing.... and they don't care because they are as evil as he is", 'created': '2024-11-15 19:58:22', 'submission_id': '1grgeuf'}
{'comment': 'Pretty sure we should all agree there is no god at this point.', 'created': '2024-11-15 01:42:03', 'submission_id': '1grgeuf'}
{'comment': 'If hell exists, theyre probably investing in expansion right now.', 'created': '2024-11-15 01:42:09', 'submission_id': '1grgeuf'}
{'comment': 'Let’s be real here: if you believe in Jesus, Satan, and all that stuff…if you’re. Trump supporter Jesus is going to take one look at you and bitch-slap you all the way down to see the other guy.', 'created': '2024-11-15 03:25:21', 'submission_id': '1grgeuf'}
{'comment': 'To own the libs - maga losers everywhere in the afterlife.', 'created': '2024-11-15 08:17:34', 'submission_id': '1grgeuf'}
{'comment': 'Which turn out to be false promises and never was going to deliver anything he said.', 'created': '2024-11-15 11:09:51', 'submission_id': '1grgeuf'}
{'comment': 'You really expect them to have any level of self-reflection? Their only justification is making the libs suffer, which they have succeeded in doing by making everyone suffer.', 'created': '2024-11-15 17:25:31', 'submission_id': '1grgeuf'}
{'comment': 'Maga (make America Gay Again)', 'created': '2024-11-15 07:16:33', 'submission_id': '1grgeuf'}
{'comment': 'OR its all just religious bullshit', 'created': '2024-11-15 09:16:51', 'submission_id': '1grgeuf'}
{'comment': 'Politics and Religion... Always a bad combination... Always.', 'created': '2024-11-15 21:33:15', 'submission_id': '1grgeuf'}
{'comment': 'Religion smh come on people', 'created': '2024-11-15 00:41:20', 'submission_id': '1grgeuf'}
{'comment': 'Thank you for being a real Christian and sticking by your morals.\n\nhttps://preview.redd.it/tdo8u3eedy0e1.jpeg?width=938&format=pjpg&auto=webp&s=76ac2586546a829f5d49d22ffa33ae45900ab905', 'created': '2024-11-15 00:37:11', 'submission_id': '1grgeuf'}
{'comment': '👏👏👏👏', 'created': '2024-11-15 01:54:28', 'submission_id': '1grgeuf'}
{'comment': 'Same.', 'created': '2024-11-15 02:40:02', 'submission_id': '1grgeuf'}
{'comment': 'I’m so glad to know there are people out there who feel the same way me and my family do. I live in the Bible Belt in a red county, in a red state and it’s so disappointing that so many can’t see through the bullshit and hypocrisy.', 'created': '2024-11-17 19:33:26', 'submission_id': '1grgeuf'}
{'comment': "That doesn't mean he then chooses The most antichristian ever lol", 'created': '2024-11-15 00:38:42', 'submission_id': '1grgeuf'}
{'comment': 'Well stated.\n\nhttps://preview.redd.it/r6v3ffvary0e1.jpeg?width=2660&format=pjpg&auto=webp&s=4349400a76767224690643297baaf444b89cc11d', 'created': '2024-11-15 01:55:07', 'submission_id': '1grgeuf'}
{'comment': '“To hell” kind of better suits the audience.', 'created': '2024-11-15 01:58:41', 'submission_id': '1grgeuf'}
{'comment': 'The look on Jesus’ face is perfect.', 'created': '2024-11-15 00:24:29', 'submission_id': '1grgeuf'}
{'comment': 'That is an unfortunately-placed switch.', 'created': '2024-11-15 03:36:32', 'submission_id': '1grgeuf'}
{'comment': "Well of course he's telling the truth when he says he will help me and lying when he says he will hurt me...\n\n", 'created': '2024-11-15 01:26:34', 'submission_id': '1grgeuf'}
{'comment': 'Yeah…they actually believe this.', 'created': '2024-11-15 01:26:49', 'submission_id': '1grgeuf'}
{'comment': "Never thought I'd see the day when law enforcement supported a literal 34 count felon, adjudicated rapist, serial fraudster, child bullying, veteran disparaging, disabled ridiculing, pathological, compulsive lying insurrectionist who allowed his supporters to attack police on Jan 6th - attacks that led to 6 of your own to die. \n\nThis won't make our country great again. And it certainly won't make the LEOs great again.", 'created': '2024-11-15 20:58:02', 'submission_id': '1grgeuf'}
{'comment': 'Exactly\n\nhttps://preview.redd.it/30vpbsoif41e1.jpeg?width=3814&format=pjpg&auto=webp&s=6d71d09819aacbcec647ab84de2687c18f6ff5bc', 'created': '2024-11-15 20:59:47', 'submission_id': '1grgeuf'}
{'comment': "I don't disagree but such a statement I fear indicates you may have missed the main point being illustrated", 'created': '2024-11-15 02:00:06', 'submission_id': '1grgeuf'}
{'comment': 'Sometimes you gotta expand lol\n\nhttps://preview.redd.it/0869nkecsy0e1.jpeg?width=2540&format=pjpg&auto=webp&s=c3f86a9b62579e1e08c61b33ee66e2ec38ed7a3d', 'created': '2024-11-15 02:00:57', 'submission_id': '1grgeuf'}
{'comment': "https://preview.redd.it/hutc48ig9z0e1.jpeg?width=2584&format=pjpg&auto=webp&s=14e1407fc26d56725628e679e548b948e7a581bd\n\nNah Jesus wouldn't resort to violence lol", 'created': '2024-11-15 03:36:53', 'submission_id': '1grgeuf'}
{'comment': "I think you're missing the main premise. Your own ideological beliefs should have no bearing here unless you're maga. \n\nThis is meant to highlight and expose the blatantly blasphemous hypocrisy that we see tomorrow get demonstrated by these people.", 'created': '2024-11-15 01:58:18', 'submission_id': '1grgeuf'}
{'comment': 'Tell them "This is Trump Derangement Syndrome, or TDS."\n\nThey\'re forced to go: "Nuhh uhh, TDS is when democrats are obsessed with trump so much that he lives in their head rent free" And then you just stare and blink.', 'created': '2024-11-15 15:39:25', 'submission_id': '1grgeuf'}
{'comment': '\n\n👍', 'created': '2024-11-16 01:21:21', 'submission_id': '1grgeuf'}
{'comment': "I didn't realize you could zoom in that far on Reddit. Nice lol", 'created': '2024-11-15 00:38:02', 'submission_id': '1grgeuf'}
{'comment': 'Oh, I think it was *quite* deliberate, and its creator added the "honor thy father & mother" to give it plausible deniability & bypass otherwise-astute parental firewalls.', 'created': '2024-11-16 03:04:45', 'submission_id': '1grgeuf'}
{'comment': 'I know, right? This brother of mine sickens me to my core. I am a vet, husband is a vet, this brother has a veteran son and think its vapid daughter is still in the AF. He has many women in his family. While I have not ever "wished" pain and suffering on anyone, but for him and his family, I make an exception. \n\nI know 100% I will not ever be in the same room with any of them because they are 4,500 miles from me, have been for 50 years. He freaks out flying for one thing, obviously the god he sells is not able to give help him through that. I certainly will not travel to them.', 'created': '2024-11-16 12:39:26', 'submission_id': '1grgeuf'}
{'comment': 'I didn’t miss it. They have forsaken the godly laws and ideals they claim to honor. They are asshats, and the belief in a god, in general, is a big reason america is where it is now.', 'created': '2024-11-15 04:04:56', 'submission_id': '1grgeuf'}
{'comment': 'He did go a little crazy on the money changers in the temple.', 'created': '2024-11-15 04:50:45', 'submission_id': '1grgeuf'}
{'comment': 'The same family members that like Trump also say they understand where Ebenezer Scrooge was coming from.\n\nEdit: *my* family members', 'created': '2024-11-15 02:27:45', 'submission_id': '1grgeuf'}
{'comment': 'Just checking lol', 'created': '2024-11-15 04:08:50', 'submission_id': '1grgeuf'}
{'comment': 'Fair point, but no one was injured other than some egos perhaps lol', 'created': '2024-11-15 05:07:54', 'submission_id': '1grgeuf'}
{'comment': 'That\'s rough. If it makes you feel any better I\'ve "black sheeped" a couple of my own 😅', 'created': '2024-11-15 04:15:15', 'submission_id': '1grgeuf'}
{'comment': "People we need to reach aren't reading all that.\n10 word slogan maybeeee", 'created': '2024-11-15 07:31:35', 'submission_id': '1grg1uy'}
{'comment': "There are tons of free anarchist publications that would be probably less delusional and more informative. And they're free.\n\nNeoliberalism is dead. We tried.", 'created': '2024-11-15 05:51:07', 'submission_id': '1grg1uy'}
{'comment': 'Link to article referenced in image:\n\nhttps://www.theatlantic.com/politics/archive/2024/11/democrat-states-population-stagnation/680641/', 'created': '2024-11-14 21:48:20', 'submission_id': '1gregr6'}
{'comment': 'I live in San Francisco. We need to build more housing. The excuses to not build housing usually don’t stand up to scrutiny. \n\nIn addition, it is creating Republicans as priced-out Californians are usually bitter about having to leave.', 'created': '2024-11-14 22:41:21', 'submission_id': '1gregr6'}
{'comment': "We need to squash blue NIMBYs. It doesn't even make sense that there are any blue NIMBYs but I see them in my area. Housing costs in my state (NY) have reached astronomical proportions. Nobody my age can buy a house if they stay in NY. The same is true about housing in California. We need to increase housing supply ten fold and tell NIMBYs to get fucked", 'created': '2024-11-14 21:39:36', 'submission_id': '1gregr6'}
{'comment': 'We should probably just not have the electoral college to begin with.', 'created': '2024-11-14 21:42:54', 'submission_id': '1gregr6'}
{'comment': 'I would happily move to California from Iowa if I had any idea how to search for a job in california.', 'created': '2024-11-14 23:31:11', 'submission_id': '1gregr6'}
{'comment': "I don't think you are doing the math right here. \n\nBlue voters don't just disappear.... they also move to Texas and Florida. the influx might actually flip those states blue, meaning We wouldn't need the blue wall states at all.\n\nCrystal ball viewing goes both ways.", 'created': '2024-11-14 22:06:28', 'submission_id': '1gregr6'}
{'comment': 'Alternatively, transplant the excessive California votes to low population red states and flip them. "Invade" Wyoming and Montana.', 'created': '2024-11-14 21:42:11', 'submission_id': '1gregr6'}
{'comment': "No, we don't. We need to get blue ppl to leave Florida and go to North Carolina.", 'created': '2024-11-15 03:21:59', 'submission_id': '1gregr6'}
{'comment': 'I think we will see a lot of people moving to and staying in blue states to run from red states', 'created': '2024-11-14 21:39:13', 'submission_id': '1gregr6'}
{'comment': 'Nobody needs to move, unless you want or need to. Web need to get involved. Blue state populations are generally more than red state. Volunteer from where you are. \n\nOn Nov 26 there’s a runoff election in Mississippi for state Supreme Court. While Supreme court supposedly is a non partisan position, judge Kitchens is a Democrat endorsed by the Democrats, opponent Branning is endorsed by the Republican party. Per her website she believes in the “traditional values of faith, family and freedom”. She calls herself a constitutional conservative.\n\nAbsentee ballot voting opens next week and will extend through Saturday, November 23rd.\n\nThe in-person deadline for voting in advance is the Saturday before election, November 23rd.\n\nNovember 26 is ELECTION DAY. This is the Tuesday before Thanksgiving. We ask that you RE-ELECT Justice Jim Kitchens, the experienced choice in this election.\n\nFollow, amplify him on your socials. If you can afford the time and or money donate and volunteer for\n\nhttps://justicekitchens.tbgsites.com/\n\n🗳️🗳️🗳️🗳️🗳️🗳️\n\nDecember 3rd Georgia has runoff elections. Early voting begins Nov 27th.\n\nAtlanta City Council Post 3 Eshe Collins is your progressive here. Get to know her here. Follow, amplify, donate and sign up to take a shift\n\nhttps://www.collins4atlanta.com/blank-1\n\nI haven’t researched all the rest yet 👇🏼\n\nEast Point Council Ward B Jermaine Wright vs Shean Atkins\n\nDeKalb County Commission District 3 Nicole Massiah vs Andrew Bell\n\nDeKalb County Commission District 7 Jacqueline Adams vs LaDena Bolton\n\nDoraville City Council District 1, Post 2 candidates are Andy Yeomen vs Taylor Ray\n\nHenry County Commission District 4 Michael Price vs Vivian Thomas personally I’d favor Vivian https://www.vote4vivian.com/\n\nMulberry City Council District 5 Doug Ingram vs Michele Sims personally I favor Doug\n\nhttps://www.dougformulberry.com/\n\n🗳️🗳️🗳️🗳️🗳️🗳️\n\nConcurrently and next up, running for East Baton Rouge Mayor is Sharon Weston Broome\n\nRunoff Is Saturday, Dec. 7th. Early Voting starts November 22-30, except 11/24, 11/28, 11/29.\n\nGet to know her, sign up to take a shift at;\n\nhttps://www.mayorsharonwestonbroome.com/', 'created': '2024-11-14 22:44:47', 'submission_id': '1gregr6'}
{'comment': 'We have people who used to want to only relocate to the Twin Cities or Duluth here in Minnesota. The bluest areas in a blue state. \n\nNow they are willing to move anywhere within the state as long as they’re in Minnesota; even if that means being in the remote northwest corner of the state. At least they’re here, and they can always move later.\n\nAnd I think that’s changing northwestern Minnesota, and to a degree even North Dakota.', 'created': '2024-11-15 00:06:08', 'submission_id': '1gregr6'}
{'comment': "15-20 years ago, these same sorts of articles were prognosticating about how Texas and Florida would permanently turn blue by now, due to their dense urban areas and high latino populations. The authors of these articles don't know the future any better than we do. We can only fight the battles that are in front of us.", 'created': '2024-11-15 04:50:30', 'submission_id': '1gregr6'}
{'comment': 'The primary reason people were moving to red states was affordability. That could change due to this election.', 'created': '2024-11-15 03:24:04', 'submission_id': '1gregr6'}
{'comment': 'At this rate most of Florida will be under water and Texas will lose significant coastlines and flooded plains.', 'created': '2024-11-15 03:27:30', 'submission_id': '1gregr6'}
{'comment': 'We need to figure out how to get blue voters to move to *swing* states.', 'created': '2024-11-15 02:37:02', 'submission_id': '1gregr6'}
{'comment': 'Just build housing. Blue states have strong economies but high housing costs. Build more apartments, townhomes, duplexes, tri/quad/whatever plexes. Single family. Luxury, market, affordable, whatever. Just build the houses.\n\n#1 thing correlated with declining housing costs is increased supply.', 'created': '2024-11-15 02:36:37', 'submission_id': '1gregr6'}
{'comment': 'Minnesota is doing everything it can to gain at least one while everything around us stagnates at best.', 'created': '2024-11-15 02:05:56', 'submission_id': '1gregr6'}
{'comment': 'Blue dot in Florida, desperately wanting to move to a blue state but cold weather hurts my body and California is kinda expensive. \nFor years I’ve been hearing wealthy republicans here complain about people moving here from blue states and threatening to turn Florida blue and that’s really been the only silver lining to the insane amount of people who have come here over the last few years, squeezing us out of housing and more than doubling rent. Unfortunately it doesn’t look like those folks even voted because my county, as well as Hillsborough ended up red this election and I just don’t get it and can’t live here anymore', 'created': '2024-11-15 06:38:59', 'submission_id': '1gregr6'}
{'comment': "Blue states are more expensive because the residents are better-educated and therefore command higher salaries. And since they believe in things like education, they're willing to tolerate higher tax rates to pay for their children's futures. There's no real getting around the economics that make blue states harder to live in.\n\nThe solution? Eliminate the Electoral College. Go to direct popular vote. But even that's not a long-term solution because birth rates are higher in red states (although red states are going to become unlivable sooner than blue states due to climate change, which might cause many to reconsider living in those places).", 'created': '2024-11-14 22:14:11', 'submission_id': '1gregr6'}
{'comment': 'Putin wants this result, drive us apart, make our federal power weak sauce. Put his puppets in power at the top while they sell out our allies, ruin NATO, destroy intelligence networks, and deminish the dollar so that it’s no longer the reserve currency of the world. And Crypto takes our economy into the xitter.', 'created': '2024-11-15 02:15:27', 'submission_id': '1gregr6'}
{'comment': 'Maybe Dems need to make it so that it isn’t so expensive to live in their states', 'created': '2024-11-14 21:46:57', 'submission_id': '1gregr6'}
{'comment': 'Taxes.', 'created': '2024-11-15 01:58:53', 'submission_id': '1gregr6'}
{'comment': 'The simple solution is just uncapping the house lol. It’s arbitrarily restricted to the 1920s Congress size, when for the century and a half before that it would gain reps every election. \n\nLiterally just increase the size of the house from 435 to idk, 870 and you increase the electoral votes from 538 to 973. \n\nThat, or gut the electoral college.', 'created': '2024-11-14 23:19:05', 'submission_id': '1gregr6'}
{'comment': 'People having yet another discussion about why we need to have the popular vote. When the anti-popular vote party just won an election that will likely make this discussion completely moot, seems a bit out of touch.', 'created': '2024-11-14 23:18:23', 'submission_id': '1gregr6'}
{'comment': 'I have been thinking and id need to look at the map in more detail then i can at the moment but what if we pushed for a percentage based distribution of EC votes instead of the winner take all vote?\n\nThis would actually make the minority parties in both Blue and Red states actually matter the people who live in California who vote Red would actually count towards who would win the presidency as would anyone in Texas who voted Blue. We would have a EC result that seems more in line with the peoples actual vote instead of these squeaky wins. \n\nI think we could actually get support behind this even in deep red places. Grants i am not completely sure if it would work at all, would anyone even get a full 270 if the last election was run that fashion?\n\nBut I think it could be a possible compromise when a full EC abolishment wont happen.', 'created': '2024-11-15 03:44:30', 'submission_id': '1gregr6'}
{'comment': 'Maybe competent blue states government. Or move to appeal to those voters', 'created': '2024-11-15 03:58:28', 'submission_id': '1gregr6'}
{'comment': 'Maybe it’s time for democrats to campaign hard in Florida and Texas', 'created': '2024-11-15 04:04:34', 'submission_id': '1gregr6'}
{'comment': 'Wa state had high housing prices and few jobs......... be sure to have a job and housing lined up before you move.....\n\nIt also rains all the time and gray skies in western wa and in eastern wa it hits 107 in summer and - 5 in winter with tons of snow.\n\nLots of homeless , lots.', 'created': '2024-11-15 04:14:33', 'submission_id': '1gregr6'}
{'comment': '#BUILD MORE HOUSING AND LOWER HOUSING PRICES!!!!!!', 'created': '2024-11-15 04:38:55', 'submission_id': '1gregr6'}
{'comment': 'Maybe get the younger populations that are LGBTQ from the Red Wall to Blue Wall. Remember the Red Wall states are the testing grounds for Trump 47 and future Donald Trump Jr regimes for Anti LGBTQ rights', 'created': '2024-11-15 04:41:20', 'submission_id': '1gregr6'}
{'comment': "I am going to be honest, I'm planning on moving to a blue state in the next few years. I probably won't be able to move countries, but moving to a blue state would be enough for me.", 'created': '2024-11-15 05:03:18', 'submission_id': '1gregr6'}
{'comment': 'Pretty simple really- build housing they can afford.', 'created': '2024-11-15 05:33:58', 'submission_id': '1gregr6'}
{'comment': 'Wait this makes no sense. If the electoral college is based in population numbers, then a lot of red states have more electoral votes than makes sense for their population size. What the heck is the delegate number based on? Who is deciding this?', 'created': '2024-11-15 05:49:33', 'submission_id': '1gregr6'}
{'comment': 'We will be moving from Texas to a blue state in the next few years.', 'created': '2024-11-15 08:47:59', 'submission_id': '1gregr6'}
{'comment': 'LGBTQ people are making a mad dash for blue states.', 'created': '2024-11-15 10:12:47', 'submission_id': '1gregr6'}
{'comment': "Wish Dems would stop playing the EC map so much, and work more on their messaging to lower income and working class voters. And formulate SPECIFIC plans to help! $20/hr minimum wage (to increase with CPI), realistic rent control, free daycare for working families, Medicare for all, and more (I could go on and on). Harris' plan for down payment assistance was a start.", 'created': '2024-11-15 15:23:15', 'submission_id': '1gregr6'}
{'comment': 'If blue people are leaving blue states, won’t that make the other states bluer?\n\nIt’s not necessarily a net loss.', 'created': '2024-11-15 17:53:09', 'submission_id': '1gregr6'}
{'comment': "No, you don't need blue states to get blue-er. We need the battle ground states to switch to a comfortable blue. Enough with this battleground bullshit", 'created': '2024-11-16 05:37:19', 'submission_id': '1gregr6'}
{'comment': 'Maybe stop taxing the absolute shit out of everyone', 'created': '2024-11-14 23:37:43', 'submission_id': '1gregr6'}
{'comment': "Does this take into account the hell that the country is going to be put through by Republicans? Or are people going to choose to live under even harsher conditions to save a few more pennies that they're probably not going to end up saving at the end of this debacle?", 'created': '2024-11-15 01:58:40', 'submission_id': '1gregr6'}
{'comment': 'If anyone wants to sponsor me in CA I’m game….I’d LOVE to get out of DeSantistan.', 'created': '2024-11-15 03:00:41', 'submission_id': '1gregr6'}
{'comment': 'I think this mass deportation idea will cause more movement to the blue states. It’s anecdotal evidence but I know many people that plan to move to NY, MA, NJ before Trump takes office to avoid the issues his policies will cause. I’m in FL btw. \n\nIf I’m not mistaken the census counts all people regardless of your status.', 'created': '2024-11-14 22:49:11', 'submission_id': '1gregr6'}
{'comment': 'Climate change is going to change all of these calculmalations.', 'created': '2024-11-15 04:02:17', 'submission_id': '1gregr6'}
{'comment': "Maybe we could like...I don't know... fire the DNC leadership/consultants, not water down our messaging to pander to the right, sharpen our rhetoric to match the populist messaging on the right, and actually invest in working class people. But then again, that doesn't attract corporate donors so I guess we'll keep ceding power to an oligarchy until shit gets bad enough.", 'created': '2024-11-15 04:49:44', 'submission_id': '1gregr6'}
{'comment': "1. Make the cost of living in those states cheaper\n\n2. This doesn't necessarily hurt us electorally. With the way the winner take-all-system works, making Texas and Florida a lot redder but making swing states and little bluer is better electorally. Lost the popular vote by 1.5% but only lost the swing states by less than that on average. The advantage that's typically for Republicans is flipping.", 'created': '2024-11-15 05:56:47', 'submission_id': '1gregr6'}
{'comment': 'The problem we are facing is deeper than that. We live in what I call the Age of Denialism. And that has been brought about due to people losing their ability to trust one another. Our empathy for each other is at a low. And this lack of trust extends to institutions such as science, medicine, and government. The social contract is dying. The solution is not an easy or quick one. We need to reach out and connect with others. We need to build trust between us. We need to reach out and help others. And in this way we can try to rebuild things. \n\nHowever we have aspects of modern society that work against this. Work environments compress so many things into a day due to all the time saving devices and concepts. But because Corporations have to constantly make more money everything gets compressed rather than easier. And the human mind is not built for such rapid switching between tasks that come with this compression. So people go home from a day of work stressed out of their gourd and incapable of connecting to family or friends. Often even into the weekend. \n\nAnd then there are factors such as corporations deliberately trying to muddy the institutions of science and medicine because both of them can bring light to problems in their products. So their solution to this is to throw opposing claims of science at the issues and confuse the public. Undermining confidence is the institutions. \n\nAnd politicians have learned to play the same game. Throwing word salad at people to confuse them into resignation. \n\nThere is a lot of work to do to correct the course this nation is on. We are coming apart at the seems. But what must be done is small and simple. Reach out to others. Connect. Build trust. Repeat.', 'created': '2024-11-15 03:51:18', 'submission_id': '1gregr6'}
{'comment': 'Blue Voter in Texas here. Definitely ready to leave after 8 years which is exactly what they want. It will only get more corrupt and oppressive. But where to go to get bang for buck and livability?\n\nNowhere seems to fit the bill but open to ideas 🤷\u200d♂️', 'created': '2024-11-15 04:15:12', 'submission_id': '1gregr6'}
{'comment': 'Most red states are red because they have a low voter turnout. What would it take to reach out to them?', 'created': '2024-11-15 04:49:02', 'submission_id': '1gregr6'}
{'comment': 'Well, think of it this way: when more democrats move to red states, the states will get blue.', 'created': '2024-11-15 06:29:14', 'submission_id': '1gregr6'}
{'comment': "With the BS red states are pulling, you'll soon have more migrating to the Blue States leaving the Red States.", 'created': '2024-11-15 07:29:01', 'submission_id': '1gregr6'}
{'comment': 'Or...we can turn red states blue.', 'created': '2024-11-15 08:00:07', 'submission_id': '1gregr6'}
{'comment': 'We need to abolish the Electoral College.', 'created': '2024-11-15 08:16:22', 'submission_id': '1gregr6'}
{'comment': 'The other side of this coin is that enough people move to TX and FL to turn those states blue...', 'created': '2024-11-15 08:32:59', 'submission_id': '1gregr6'}
{'comment': "Doesn't this make Texas and Florida a tad bit more competitive for Democrats?", 'created': '2024-11-15 11:00:22', 'submission_id': '1gregr6'}
{'comment': 'Secede', 'created': '2024-11-15 12:37:38', 'submission_id': '1gregr6'}
{'comment': "Stay in blue states and expand the Republican advantage in the Senate.\n\nLeave blue states and expand the Republican advantage in the Electoral College.\n\nIt's a tradeoff that we really shouldn't worry about in my opinion.", 'created': '2024-11-15 13:31:17', 'submission_id': '1gregr6'}
{'comment': 'I don’t think you’ll need to worry. There will be a move when republicans wreck the red states with abortion bans, lgbtq targeting and religious education. Lots of people will want to get to a blue state where things are safe and secure', 'created': '2024-11-15 13:48:46', 'submission_id': '1gregr6'}
{'comment': 'Maybe just no electoral college would be simple? The US is the only first world country that has an EC system.', 'created': '2024-11-15 13:48:59', 'submission_id': '1gregr6'}
{'comment': 'The national vote interstate compact has 278 EVs when you include the pending states.\n\nWouldn’t have to worry about where people live then.\n\nhttps://en.m.wikipedia.org/wiki/National_Popular_Vote_Interstate_Compact', 'created': '2024-11-15 13:57:22', 'submission_id': '1gregr6'}
{'comment': "My husband and I would love to move to NY but can't afford to do so. We would need to be hired into new jobs in advance (before moving there) and help with relocation expenses. I don't know of many (any) companies that offer relo unless you're a high level exec. A few years ago my husband applied to some jobs there (for which he was more than qualified) but never got a call to interview, we suspect because he has a different area code on his resume. Offering free college education would probably help lure young people who often stay where they Are after graduation.", 'created': '2024-11-15 14:22:29', 'submission_id': '1gregr6'}
{'comment': 'Hmm good to know! l live in Florida and l hate it! I bought a house on 15 acres right before Covid. It was incredibly cheap but has gone up in value quite a bit. The little town l live in has exploded in new builds over the past few years and the rural life l had hoped for has quickly vanished! I’m just about ready to sell it and move back to Europe where my family is from. l guess I’ll hold out a little longer and see what I can get!', 'created': '2024-11-15 14:56:59', 'submission_id': '1gregr6'}
{'comment': 'We need to get a message that resonates with young men. \n\nWe need to get a message that resonates with the people living pay check to pay check. \n\nWe need to get policies and promises that we can actually keep.', 'created': '2024-11-15 15:22:39', 'submission_id': '1gregr6'}
{'comment': 'No we need to focus on reaching people who are red and focus on what we agree on. We get no place fighting blue lost this time red last time both thought the world would end. We agree on more than we don’t. 70% of Americans want sensible gun laws and abortion rights. We need to figure out who is dividing us and purge that.', 'created': '2024-11-15 16:51:03', 'submission_id': '1gregr6'}
{'comment': 'The sad part about this is that in a lot of states like California and NY, things are insanely expensive so I think both states need to build more housing to make to affordable to own a home in either state. Or at the very least make rents in both states lower by using rent control. In the south, the south has affordable houses. To where people don’t need to rent their house, but ***buy*** their houses. My buddy and his gf moved to North Carolina in 2021 from Pittsburgh where I live, and at the age of 24 both of them bought their first house and newer cars. When I visited I saw he had land in his backyard that he and his gf own. It’s not like acres but they have a ***big*** backyard. They’ve since added two other bedrooms and a new bathroom by doing it themselves. My aunt and uncle got a house significantly cheaper in Texas that has a lot. Building housing and bringing down costs to live in said states is vital. This goes for any dem state that is losing population.\n\nButttt, on the bright side if dems move to these southern states dems might have a better chance to get more southern states if we overwhelm them with dems moving to the south.', 'created': '2024-11-15 18:01:26', 'submission_id': '1gregr6'}
{'comment': 'My young liberal children cannot afford housing in Blue States. They would HAPPILY move out of this hell hole of Florida for Bluer climes.', 'created': '2024-11-15 18:13:13', 'submission_id': '1gregr6'}
{'comment': 'I’m a Texan and after this election hell, my family is looking to get out to a Blue State. Maybe Oregon. I love my home here, but we have a 12 year old daughter. We can’t keep wading in this shit.', 'created': '2024-11-15 19:31:36', 'submission_id': '1gregr6'}
{'comment': "Unaffordable areas, over taxed, extreme cost of living. People are leaving and going to red states where their incomes stretches much farther. They are becoming Republicans. Red states are getting stronger. We should probably ask what the blue states are doing wrong ansofocus on fixing that. I'd love to live in California however I can't afford it. I'll just wait till everyone fleas and then buy in ten years i suppose.", 'created': '2024-11-15 19:47:50', 'submission_id': '1gregr6'}
{'comment': "What's the point when the vote of a few dozen red state people counts the same?", 'created': '2024-11-15 21:13:09', 'submission_id': '1gregr6'}
{'comment': 'Make those states warmer in the winter. So climate change! We’re doing pretty good.', 'created': '2024-11-15 21:22:34', 'submission_id': '1gregr6'}
{'comment': 'We need blue people to move out of blue states and into red states.', 'created': '2024-11-15 21:40:29', 'submission_id': '1gregr6'}
{'comment': 'Build more affordable housing and bring more jobs. People are moving to Texas because it’s dirt cheap to build a gigantic house.', 'created': '2024-11-15 22:15:48', 'submission_id': '1gregr6'}
{'comment': "California is solidly red outside of the cities. In fact compared to 2020 the state became even more red. Like they say, as liberals age they become more conservative. Perhaps in a few election cycles, the Republicans will control the state once again. That's why I don't know why Democrats don't do the same gereymandering and passing laws to protect their domain just as Republicans do in the red states.", 'created': '2024-11-15 01:43:00', 'submission_id': '1gregr6'}
{'comment': 'Govern the states better so people stop fleeing.', 'created': '2024-11-15 03:00:58', 'submission_id': '1gregr6'}
{'comment': "More democrats in Texas and Florida means it's more likely that they flip blue", 'created': '2024-11-15 03:43:42', 'submission_id': '1gregr6'}
{'comment': 'I have been trying to tell my friends for years that if we were serious about making a political difference, we need to move as a group to Florida. Or Pennsylvania. Or Wisconsin. I’m not fucking moving to Michigan but that’s because of a personal grudge', 'created': '2024-11-15 00:31:54', 'submission_id': '1gregr6'}
{'comment': 'what we need is convincing more people to vote, dismantling the electoral college, and getting democratic candidates who will lean left instead of capitulating to the right and playing nice. we would win every election on merit alone with none of the election subversion tactics the right loves to use', 'created': '2024-11-15 03:31:51', 'submission_id': '1gregr6'}
{'comment': "Its because you guys lived in an idiotic bubble and believed blue states have the best cost of living, which they do not.\n\nBlue states come with some advantages depending on where they are, but most of the most blue (or longest blue at least) are corrupt as all hell with internal state politics that are broken. Most red states are like this too, but the difference between the two is blue states actively try to attract wealthy individuals while red states invite businesses.\n\nUntil the democratic party gets it in it's head that it's always, always, always, economy first, they will lose elections.\n\nHonestly, at this point I can't see the democratic party getting it together for another 8 years minimum unless there is a colossal fuck up under trump (possible, happened last time).\n\nBut really the democratic party is broken. The Republican party is/was, but has actively been remade into the MAGA party and say what you will about it, they are actively trying to go somewhere - the democratic party simply has not - too many cooks in the kitchen.\n\nAs an independent who lived in Chicago for 20 years, who now lives in a red state - let me tell you guys the brutal truth.\n\nFolks are moving to red states because thats where there are opportunities. The failed economic policies that the democrats have grabbed onto for nearly 30 years, have finally destroyed them. Ask anyone who is not a party member of the democrats - or a republican, what they think of New York City, what they think of Philly, of Chicago, Detroit, Atlanta, San Francisco, San Diego, - look for the unbiased perspectives. Even the folks that love those cities, ask them the hard questions - what sort of economic opportunities are here for the underserved? The underprivileged? The last election proved that. It's now on the democrats to decide - do they want to be the minority party, or do they want to embrace economic populism before the GOP does? Because the GOP hasn't yet really embraced it. There is still time.\n\nYeah, downvote me- instead of asking yourself - why are they moving and when they arrive, do you think these ex-citizens of California that had to move because of work are going to support californian style politics? Or do you think they'll want something new?\n\nLet me tell you - Texas is expensive as hell in the cities, and not the paradise that a lot of Republicans make it out to be. I have very good points here and you are foolish if you ignore them. (Just today I met someone who left his 6 figure tech job in Dallas to move to South Carolina for a manufacturing position because the cost of living is better - he makes less money but has twice as much to spend thanks to Republican wealthy-oriented Dallas taxes, owning homes in Texas is becoming nigh-impossible unless you want to live in the boondocks for people who are trying to lift themselves up). Both democrats and Republicans fail to address the root causes of these issues - wealth inequality.", 'created': '2024-11-15 08:23:11', 'submission_id': '1gregr6'}
{'comment': 'Awesome. Just wonderful.\n\n/s', 'created': '2024-11-14 21:47:08', 'submission_id': '1gregr6'}
{'comment': 'Maybe we should get those people to move to less populous states (Nebraska, Wyoming, Utah?) and flip state legislatures and congressional seats at the same time.', 'created': '2024-11-15 03:57:36', 'submission_id': '1gregr6'}
{'comment': 'Texas needs to flip blue no matter the cost', 'created': '2024-11-15 04:33:52', 'submission_id': '1gregr6'}
{'comment': 'I’m a New Yorker and plenty of people are moving back here. Climate change is an issue and the problems with being in a red state. I’m really not too worried about it.', 'created': '2024-11-15 05:37:33', 'submission_id': '1gregr6'}
{'comment': 'We need to add DC and PR', 'created': '2024-11-15 05:38:02', 'submission_id': '1gregr6'}
{'comment': "Exactly...stop saying the economy is great to people who can't afford to pay rent. \n\nIt's amazing the acrobatics the democratic leadership will go through to dance around the issue that's literally been at the top of polls.", 'created': '2024-11-15 04:51:48', 'submission_id': '1gregr6'}
{'comment': None, 'created': '2024-11-15 12:00:56', 'submission_id': '1gregr6'}
{'comment': 'I love California. The weird thing is there’s so many houses for sale in places like Santa Rosa, Santa Clarita even San Francisco. There will be tons and tons of homes for sale, but the prices don’t reflect the salaries in those locations and the sellers aren’t willing to lower their prices. It’s stupid.', 'created': '2024-11-15 20:04:55', 'submission_id': '1gregr6'}
{'comment': 'As we saw in this election. It’s money. Home costs, taxes are high. Yes there are a lot of good things that these states do. But you don’t care if it’s hard to pay your bills.', 'created': '2024-11-15 21:35:29', 'submission_id': '1gregr6'}
{'comment': "Fellow New Yorker here and you've got it right.\n\nWe get these fucking 'affordable luxury' 1-bedroom apartments in spades but no starter homes in sight.\n\nThe only reason people like myself are gonna leave is because we just can't afford to stay anymore.", 'created': '2024-11-14 21:45:54', 'submission_id': '1gregr6'}
{'comment': 'This is exactly it - build a shit ton of housing as fast as possible.', 'created': '2024-11-14 21:58:56', 'submission_id': '1gregr6'}
{'comment': 'TONS of older white liberal NIMBYs in Massachusetts. They’re chill until you want to build high density affordable housing and encourage public transit.', 'created': '2024-11-14 23:59:26', 'submission_id': '1gregr6'}
{'comment': 'Lots of very affordable house in Upstate NY. I bought one for less than the price of most used cars two years ago.', 'created': '2024-11-14 22:11:40', 'submission_id': '1gregr6'}
{'comment': None, 'created': '2024-11-15 11:58:28', 'submission_id': '1gregr6'}
{'comment': "The wild thing is that is a gop campaign promise. To build thousands of houses on federal land. The DNC wanted to give down payment credits to first time home buyers. \n\nThose promises are totally different orders of magnitude. The moderates who want cheaper housing backed the GOP plan. \n\nI don't like it. But I'm not a first time homebuyer and can't afford a house, so the Harris plan didn't speak to me at all. Evidently I'm not alone.", 'created': '2024-11-15 15:26:02', 'submission_id': '1gregr6'}
{'comment': 'Only if you insist on living in the vicinity of New York City… upstate where I live is dirt cheap by comparison. You can currently get a beautiful house on multiple acres for around $400k-$500k.', 'created': '2024-11-15 12:53:22', 'submission_id': '1gregr6'}
{'comment': '🔰🔰🔰🌐🌐🌐', 'created': '2024-11-15 03:31:11', 'submission_id': '1gregr6'}
{'comment': "We shouldn't, but we do. At this point, I feel that the only reason it still exists is because Republicans know that it helps them win elections that they otherwise wouldn't be able to win.", 'created': '2024-11-14 22:04:23', 'submission_id': '1gregr6'}
{'comment': None, 'created': '2024-11-15 12:12:19', 'submission_id': '1gregr6'}
{'comment': None, 'created': '2024-11-15 12:09:33', 'submission_id': '1gregr6'}
{'comment': "The Californians leaving aren't blue though\xa0", 'created': '2024-11-15 04:23:09', 'submission_id': '1gregr6'}
{'comment': 'Except Texas and Florida have found ways to get blue voters to leave—anyone with a trans or nonbinary kid, anyone who’s gay or a woman of childbearing age may feel unsafe staying due to current legal environment. Also hurricanes have a way of getting sensible people to leave.', 'created': '2024-11-14 22:34:13', 'submission_id': '1gregr6'}
{'comment': 'That’s hopeful at least. 😊💙', 'created': '2024-11-15 04:14:13', 'submission_id': '1gregr6'}
{'comment': 'Blue Texas and Florida are OFF the table for several more election cycles. Florida maybe forever, it’s been getting redder for some time now. But Texas just jumped straight from R+4 to R+14.', 'created': '2024-11-15 18:36:30', 'submission_id': '1gregr6'}
{'comment': 'Ok but imagine living in CA then moving to Montana', 'created': '2024-11-15 03:49:28', 'submission_id': '1gregr6'}
{'comment': None, 'created': '2024-11-15 03:26:27', 'submission_id': '1gregr6'}
{'comment': "Unfortunately, Wyoming and Montana had a huge flux of Californians move there during COVID. Yet they are MAGA, pissed off at the restrictions California placed during COVID and to get cred, don't miss a moment to tell/show how MAGA they are.", 'created': '2024-11-15 07:37:37', 'submission_id': '1gregr6'}
{'comment': '👏👏👏👏', 'created': '2024-11-15 04:16:42', 'submission_id': '1gregr6'}
{'comment': 'I have long thought that the University of California system should open new schools in Wyoming & Montana.', 'created': '2024-11-15 13:36:39', 'submission_id': '1gregr6'}
{'comment': 'If they can find housing that they can afford. My answer to the question posed by OP would be, build some houses/apartments! Lots of them! Especially affordable units.', 'created': '2024-11-14 22:23:42', 'submission_id': '1gregr6'}
{'comment': "This is me. Thought I could stay after Georgia went blue in 2020. But nope. I'm done. Not sure where I'm going yet, but Minneapolis, Chicago, and the northeast are all looking pretty good (and cold.... But I'm sure I'll survive, lol)", 'created': '2024-11-15 03:34:11', 'submission_id': '1gregr6'}
{'comment': 'There used to be affordable places to live in blue states. People with low incomes get exemptions from income tax, but have a hard time finding housing they can afford these days.', 'created': '2024-11-14 22:39:09', 'submission_id': '1gregr6'}
{'comment': 'Not entirely true. I live in San Francisco. We are expensive first and foremost because we make it so difficult to build housing.\n\nAnd as a teacher, I wish people here supported education with more than just words. Being a teacher in the Bay, LA, or San Diego is very difficult these days.', 'created': '2024-11-14 22:42:29', 'submission_id': '1gregr6'}
{'comment': 'Blue states charge more taxes but have more benefits, and pay better salaries. Living in Florida, when you see people from NY you automatically think $. My dad made a 6 figure salary as a public school teacher in NYC. In Florida they don’t even make half that, and I live in Miami, can’t even imagine the rural areas.', 'created': '2024-11-15 01:11:51', 'submission_id': '1gregr6'}
{'comment': "It's a catch 22. Those places are expensive because they're desirable. Usually a lot of things to do. Excellent job prospects. Excellent education systems. Etc.\n\nUnfortunately that all that requires higher taxes.", 'created': '2024-11-14 21:59:27', 'submission_id': '1gregr6'}
{'comment': 'The higher salaries and benefits (like better education, healthcare, etc) makes up for it. In Florida people are shacking up 2/3 families in one home, because salaries suck ass here and housing is astronomical.', 'created': '2024-11-15 01:14:33', 'submission_id': '1gregr6'}
{'comment': 'We give away to many freebies to transplants to do that.Spokane WA has 2,000 homeless, half were sent on a one way bus ticket from other areas.', 'created': '2024-11-15 04:24:20', 'submission_id': '1gregr6'}
{'comment': 'Hitler did that to get the majority, added hundreds.', 'created': '2024-11-15 04:21:38', 'submission_id': '1gregr6'}
{'comment': 'Love this however, let offer an improvement.\n\nTax Land, not Labor.', 'created': '2024-11-15 13:44:50', 'submission_id': '1gregr6'}
{'comment': 'typical republican propaganda taxes are needed.', 'created': '2024-11-15 07:43:08', 'submission_id': '1gregr6'}
{'comment': 'same here, friend', 'created': '2024-11-15 14:22:56', 'submission_id': '1gregr6'}
{'comment': "I actually think the consultant class slapping CORPORATIONS SUCK on everything is the problem.\n\nIt's tired & lazy, people don't know what it means, and they know that it doesn't actually address their biggest problem; they can't afford housing. \n\nDemocrats biggest weakness is their biggest flaw.\n\nWhy in tarnation is it illegal to build housing in so many blue states & cities. THAT is why your wages feel shitty its because you can't afford to put a roof over your head because even in Democratic run places it is illegal to build housing!", 'created': '2024-11-15 13:40:49', 'submission_id': '1gregr6'}
{'comment': "Agreed we HAVE to do something to make blue states and policies more attractive. ALSO let's stop subsidizing these red states. They should get a bill the next year if they are in the negative and then their taxes will have to go up. I hate to punish red states but the voters need to know whose causing their problems.", 'created': '2024-11-15 16:04:37', 'submission_id': '1gregr6'}
{'comment': 'not happening.', 'created': '2024-11-15 07:43:23', 'submission_id': '1gregr6'}
{'comment': None, 'created': '2024-11-15 12:01:48', 'submission_id': '1gregr6'}
{'comment': "the dems can't make everyone millionaires.", 'created': '2024-11-15 07:39:48', 'submission_id': '1gregr6'}
{'comment': 'In Denver they are tearing down what were once affordable homes (1200 sq/ft brick bungalows, 3 bed/1bath) as fast as they can and replacing them with McMansions. They buy a house for a million, tear it down, toss up a piece of shit 6,000 sq ft modern farmhouse and charge $4,000,000 for it.', 'created': '2024-11-15 06:48:38', 'submission_id': '1gregr6'}
{'comment': "There's a reddit post for those looking to move to upstate NY.", 'created': '2024-11-15 10:13:26', 'submission_id': '1gregr6'}
{'comment': "Wait but preferably well built.\n\nI'm watching whole D. R. Horton neighborhoods go up in our County & they're awful.", 'created': '2024-11-15 01:49:35', 'submission_id': '1gregr6'}
{'comment': "Just building houses is such a narrow response.\n\nTwo step process, you need the businesses and the housing, and it's a chicken/egg situation. But realistically businesses are moving out of blue states because it's cheaper to run in red states, and often the legal regulations are fewer too (this isn't necessarily just about cheaper, but avoiding lawsuits where they can have arbitration friendly judges).\n\nIt's weird because the executives of these industries/corporations/etc tend to prefer blue politics (at least on a social level), while enjoying the financial policies of red politics. It tends to make the growing areas more purple (areas of South Carolina, Texas, North Carolina, etc) while Florida's immigration is a different case.\n\nWhere is a single damn policy from the democrats on rents? rent controls? Anything? Rents in major cities skyrocketed over the past ten years, and don't look to be going down any time soon.\n\nCar insurance? More then doubled for some folks.\n\nHell, the car lease - ownership paradigm is beginning to shift for lower income folks. Where if you don't have the capital - getting loans for ownership can screw you over depending on what states you live in.\n\nThey are basically nickling and dimeing the bottom 33% harder then ever. Harris was talking to the middle class, while forgetting to even make a half hearted effort to anyone else. It was frustrating to watch. I went from being sure she had a shot, to as every weekend/week that went by, having decreasing optimism as her campaign never said the basics they needed to get the youth back on board.", 'created': '2024-11-15 08:39:22', 'submission_id': '1gregr6'}
{'comment': 'There are cheap houses where there aren’t jobs', 'created': '2024-11-14 22:26:23', 'submission_id': '1gregr6'}
{'comment': 'Where there aren’t any jobs sure you can buy a big house', 'created': '2024-11-15 13:04:07', 'submission_id': '1gregr6'}
{'comment': 'I could only afford a house because it was 103k. Can I get a three-bedroom, two-and-a-half bath house in upstate New York for that?', 'created': '2024-11-15 23:40:19', 'submission_id': '1gregr6'}
{'comment': 'Didn’t really make a difference this time. If the popular vote compact had been in effect, Trump would still have won. And the reason it still exists is because it’s basically impossible to amend the constitution on anything even slightly controversial. The constitution was designed so that you needed large majorities of both states and votes to amend.', 'created': '2024-11-14 22:29:30', 'submission_id': '1gregr6'}
{'comment': "I didn't suggest that, but ok...", 'created': '2024-11-15 14:46:34', 'submission_id': '1gregr6'}
{'comment': "Imagine thinking people should choose where to live based on what is best for the Democratic Party's electoral prospects instead of what is best for their own lives.\n\nI am the most unhinged political junkie and even I think that is lunacy.", 'created': '2024-11-15 13:38:26', 'submission_id': '1gregr6'}
{'comment': '"I have given up on Iowa because it is full of rage junkies and the oligarchs that manipulate them so easily." \n\\-actual translation', 'created': '2024-11-15 14:25:34', 'submission_id': '1gregr6'}
{'comment': 'Iowa is too far right; the Democrats are never winning that shit again for a long time. And people do not choose where to live based on what helps them Democratic Party.', 'created': '2024-11-15 18:35:31', 'submission_id': '1gregr6'}
{'comment': 'Some are. Maybe not all, but certainly some, as one of the biggest driving factors is cost of housing, not politics per se.', 'created': '2024-11-15 06:12:18', 'submission_id': '1gregr6'}
{'comment': 'Then where are the blue voters going? Apparently there’s a population increase in Florida and Texas. Meaning they’re coming from other red states, or they’re coming from blue states. Either the way the map is rearranged.', 'created': '2024-11-14 23:12:31', 'submission_id': '1gregr6'}
{'comment': 'Dyed-in-the-wool Texas Democrat over here: We’re not giving up on returning this state to the light, I can promise you that.', 'created': '2024-11-15 05:40:31', 'submission_id': '1gregr6'}
{'comment': 'If ONLY women had voted in Texas it would have been BLUE.\n\nTexas was 47% blue vote.', 'created': '2024-11-15 04:17:30', 'submission_id': '1gregr6'}
{'comment': 'I live in Florida and I can tell you, none of my gay friends are leaving or planning to. Most live in blue parts of the state anyway. Miami, Ft Lauderdale, Tampa, etc (I know miami went red this time but it’s the first time in 30 something years)', 'created': '2024-11-15 01:10:17', 'submission_id': '1gregr6'}
{'comment': 'I actually hold out more hope for Texas than Florida. Every year they’re just SO close.', 'created': '2024-11-15 04:54:38', 'submission_id': '1gregr6'}
{'comment': 'Start a commune?', 'created': '2024-11-15 03:59:25', 'submission_id': '1gregr6'}
{'comment': "You don't have to imagine that. Ask the transplants who moved to Montana and dumped Senator Tester. They did just that and they are very, very happy.", 'created': '2024-11-15 13:37:28', 'submission_id': '1gregr6'}
{'comment': 'there are a lot of blue places other than california', 'created': '2024-11-15 05:48:14', 'submission_id': '1gregr6'}
{'comment': 'Are you going to invest and build them or wait for others to do it?', 'created': '2024-11-15 04:18:54', 'submission_id': '1gregr6'}
{'comment': None, 'created': '2024-11-15 12:05:32', 'submission_id': '1gregr6'}
{'comment': "I live in what *used* to be an affordable part of California, but it has become increasingly unaffordable as the cost of housing has sky rocketed largely due to the white flighters from Southern California and the bay area, selling their 2 million dollar homes, to come and buy 10 acre spreads for a fraction of that. The kicker, is that not only is my hometown DEEP red, it's also now as expensive as hell to live in.", 'created': '2024-11-15 04:24:45', 'submission_id': '1gregr6'}
{'comment': "Exactly - but a bigger problem is the illusion that places like Texas are more attractive because we do not have a state income tax.\n\nWe just pay taxes on literally everything else. We have an 8.25% tax on anything we buy. We have much higher property taxes than other states. This year, alone, my property taxes are over $4000 dollars, and I don't live in a super-bougie part of Texas.\n\nWe may not pay a state income tax, but we end up paying more in taxes here than states that have an income tax.\n\nI had a friend move here from Europe and they moved back home because they were paying more in taxes in Texas than they were in their home country. \n\nSadly, our schools are underfunded, we can't keep teachers properly paid, our roads are always under construction, or in terrible shape (I-35, I-20), we have a failing energy grid, and our Governor is a racist douchebag.\n\nWhere does all that money go? Last I heard, Texas has a 4.5 Billion dollar fund that Abbott refuses to touch. Sure we could fund all our schools, fix our roads, start public programs and actually put that money to use, but instead it is just sitting in a vault somewhere, collecting interest, and doing nothing for anyone.", 'created': '2024-11-14 22:15:46', 'submission_id': '1gregr6'}
{'comment': "The thing that pisses me off to no end, is that we (California) have a lot of out of state property owners, who shit on California because of it's politics.... but still choose to keep their high priced rental properties and vacation homes here, after they relocate to redder parts of the country.", 'created': '2024-11-15 04:28:42', 'submission_id': '1gregr6'}
{'comment': 'No jobs in many towns in WA.', 'created': '2024-11-15 04:24:54', 'submission_id': '1gregr6'}
{'comment': "Or get more voters by actually listening to their needs. Working class people are broke and in staggering amounts of debt. Dems spent this election telling them the economy was great while their housing is still twice what it was a few years back. They believe the system is rigged against them, and to some extent since Reagan, it has been.\n\nThere was this democratic socialist a couple years back who built a massive coalition a couple of times and spoke directly to those voters, and the DNC squashed him. A good chunk of those voters went to the next guy who validated their mistrust of the system and he's about to be our president.", 'created': '2024-11-15 16:00:49', 'submission_id': '1gregr6'}
{'comment': 'Reverse gerrymandering', 'created': '2024-11-15 14:36:32', 'submission_id': '1gregr6'}
{'comment': 'I would be curious what the zoning laws are. If there are lot size minimums that seems likely. Let dense housing be built.', 'created': '2024-11-15 14:28:01', 'submission_id': '1gregr6'}
{'comment': 'Ideally it’s more dense, infill housing near urban centers - but we honestly need all kinds', 'created': '2024-11-15 02:41:36', 'submission_id': '1gregr6'}
{'comment': 'DR Horton is the worst! I own one of their pieces of shit.', 'created': '2024-11-15 04:15:57', 'submission_id': '1gregr6'}
{'comment': 'There are quite a few blue collar jobs in my neck of the woods.', 'created': '2024-11-15 00:04:51', 'submission_id': '1gregr6'}
{'comment': 'There’s plenty of big companies hiring around Albany where I am', 'created': '2024-11-15 16:05:00', 'submission_id': '1gregr6'}
{'comment': 'Ya for sure, check zillow with those filters, there will be lots of options', 'created': '2024-11-16 00:53:35', 'submission_id': '1gregr6'}
{'comment': 'Didn’t make a difference in the sense that Trump still won the popular vote. But could have made a difference in the sense that Kamala wouldn’t need to spend time campaigning in a handful of battleground states.', 'created': '2024-11-15 04:55:20', 'submission_id': '1gregr6'}
{'comment': '"The constitution was designed so that you needed large majorities of both states and votes to amend" Until you have SCOTUS in your pocket and they erode away through misinterpretation & perversion.', 'created': '2024-11-15 04:00:17', 'submission_id': '1gregr6'}
{'comment': 'It’s not about it making a difference in this one specific election. The person who won the majority of votes should be the president, plain and simple. Yes, that means Trump still should have won this election. I don’t agree with it at all, but that is how Democracy works. But Hillary should have also won her election, along with every other democrat who’s gotten fucked by this ridiculous system.', 'created': '2024-11-15 18:34:18', 'submission_id': '1gregr6'}
{'comment': "Most are red and politics is a huge contributor. Respectfully, I think you're misunderstanding what is happening.", 'created': '2024-11-15 07:55:26', 'submission_id': '1gregr6'}
{'comment': 'There have been a bunch of stories about how moving patterns are increasing polarization, in the sense that conservatives tend to move to red areas and liberals tend to move to blue areas. I think it was in the NY Times, it had one of those animated graphics to go with it.', 'created': '2024-11-15 05:43:29', 'submission_id': '1gregr6'}
{'comment': "Maybe, and that sucks. But first I must protect myself... Some will stay and fight, and I'm so glad for it. I wish I could, but I need to keep myself safe..", 'created': '2024-11-18 03:14:18', 'submission_id': '1gregr6'}
{'comment': 'Abbott wants his stupid fucking vouchers.', 'created': '2024-11-14 22:31:40', 'submission_id': '1gregr6'}
{'comment': "I understand that as a Texas Democrat this line of reasoning may sound great but please don't talk about tax policy like that.\n\nProperty Taxes (Or even better land taxes) are far preferable to income taxes in every single way. Texas Tax Policy is far preferable to California's, and is unironically more progressive and follows best economic principles.", 'created': '2024-11-15 13:43:20', 'submission_id': '1gregr6'}
{'comment': None, 'created': '2024-11-15 16:04:07', 'submission_id': '1gregr6'}
{'comment': 'campaigning everywhere would have been much harder, though', 'created': '2024-11-15 05:28:09', 'submission_id': '1gregr6'}
{'comment': "Many are purple, and would be Democrats, if we didn't have an insane policy of making housing illegal to build.\n\n \nRespectfully, I think you're misunderstanding what is happening.", 'created': '2024-11-15 13:34:56', 'submission_id': '1gregr6'}
{'comment': None, 'created': '2024-11-18 03:40:06', 'submission_id': '1gregr6'}
{'comment': "I don't know how he hasn't got them yet, but I am glad he hasn't. \n\nIt will be the end of the education system in Texas and do such damage across this state that having a degree from anywhere in Texas will be like telling people you eat crayons.", 'created': '2024-11-14 22:37:51', 'submission_id': '1gregr6'}
{'comment': 'When your property tax rate, in addition to your sales tax, and other taxes you pay, are higher than a state income tax, which is capped a certain %, you are always going to pay higher taxes. \n\nThat is basic math.', 'created': '2024-11-15 19:21:46', 'submission_id': '1gregr6'}
{'comment': '>But that isn\'t where we are.\n\nWhere we are is bleeding voters, even in the cities. Again, people don\'t feel the system is working for them and it generally isn\'t. And they\'re saying "no dummy, it is, read the GDP."\n\n>We are here, not in a world where Bernie was allowed to win.\n\nThat is exactly my point. The DNC had role in that. They are steering the boat all wrong...these are class issues and they are trying to play both sides with subtle shifts to the right (ie. All of a sudden they\'ve adopted the immigration stance of the right from 2016...and now they are starting to adopt the "not woke" messaging). It doesn\'t work like that.', 'created': '2024-11-15 17:19:43', 'submission_id': '1gregr6'}
{'comment': 'For BOTH of them. That money would need to be spent across 50 whole states not just 7.', 'created': '2024-11-15 12:46:13', 'submission_id': '1gregr6'}
{'comment': 'Which ones? Because AZ, FL, GA, ID, and TN are all destinations for outward migration from blue states and all got redder.', 'created': '2024-11-16 11:41:21', 'submission_id': '1gregr6'}
{'comment': "I absolutely will not be, for several reasons, chief among them that I am a woman of childbearing age. The state does not allow abortion, which has already killed at least one woman here. Being in Atlanta won't save me from state laws. If I was in one of the other swing states that has had reasonable state level government for a while, I wouldn't be doing this, but that's not the case here. Republicans don't just want me gone. They want me *dead*. Again, I'm choosing my own safety first. I've been thinking of leaving for years but put it on hold after 2020. The abortion laws brought it back up, and this election solidified my decision. I'm very sorry that I can't stay and make Georgia blue. Truly. But I can't.. I also am considering the idea of being a safe haven for cishet family members that live in Alabama (the rest of my family lives in Alabama). Georgia is not exactly the great escape that somewhere like Minnesota can be for them. Idk that they'll need it - I hope not. But if they do, I could provide that for them if I'm there.", 'created': '2024-11-18 04:53:03', 'submission_id': '1gregr6'}
{'comment': "The thing about property taxes is that you have to own property to be taxed.\n\nI guarantee you a renter in Texas is better off (tax wise) than a renter in California.\n\nProposition 13 in California has caused the state to raise income, sales, and gas taxes, and to raise fees for everything for decades. The Howard Jarvis Taxpayers Association convinced Californian's to pass this property tax cap to protect vulnerable people on fixed incomes.\n\nI have nothing wrong with guaranteeing dignified living conditions for seniors, children, and the disabled.\n\nI have a huge problem with feudalism, and that's what property taxes ultimately lead to.\n\nIn California all the hard work and wealth that our great economy generates ultimately gets funneled to landlords. It's why people flee the state pissed off at Democratic governance and spiteful towards those of us who remain.\n\nAgain, I empathize with Texas Democrats who probably like to use this talking point as you try to win elections.\n\nBut I promise you that if you are truly progressive, if you truly care about working people, you would be better off letting Republicans continue to win elections than to use the promise of lower property taxes to turn the state Democratic. You will be creating a class of elite, liberal gentry, and that is NOT the path to longterm success for Texans, nor for Texas' Democrats.", 'created': '2024-11-15 20:22:47', 'submission_id': '1gregr6'}
{'comment': 'In one breath you say it is better to have property taxes and no state income tax, and in the next you say we should...and I cannot believe I am hearing this, vote Republican than argue for lower property taxes.\n\nIt is obvious you aren\'t from Texas because the giant land owners here are all Republican. Texas is probably 60% farming land, ranches, government owned areas, and parcels of land that no one is ever going to develop. \n\nFor those of us in the cities, property taxes, combined with high sales tax, gas tax, and other "sin taxes" that they have put in place, generate billions of dollars for the government, yet still they do not invest that money back into the state beyond the bare minimum.\n\nI know the cost of everything is higher in California, but that is a real estate issue, not a tax issue. You have a scarcity of resources, too many people who want those resources, and a society that actually tries to help its people. That is not cheap.\n\nI would, 100%, gladly trade all of the taxes I pay now for a 10% state income tax.', 'created': '2024-11-15 22:06:03', 'submission_id': '1gregr6'}
{'comment': 'It’s obvious that I’m not from Texas? Did you figure that one out when I said I was from California?\n\nI would be thrilled to see Texas Democrats work for a land value tax, which would be much more fair to urban Texans than the Property Tax, but taxing labor as a replacement for taxing land is an ass backwards thing to do for the party of the working class.\n\nDo it, if ya’all would like. You may buy off enough homeowners to secure a few generations of electoral success.\n\nBut you will enjoy enormous inflation, a giant housing shortage, and increased poverty as your award. And I will shit talk your party until I die, just as I shit talk the Democratic Party here in California.\n\nIf Democrats want to be the Party of the Working Class, we need to have their backs.', 'created': '2024-11-15 22:37:35', 'submission_id': '1gregr6'}
{'comment': 'You can shit talk whatever you want, I don\'t think anyone cares, at least I don\'t. \n\nYour argument is a weird one, and the phrasing is off too. \n\nYou don\'t sound like a Democrat, but you do sound like a Libertarian pretending to be a Democrat? \n\nI get that taxes are not fun, but they are a necessity in any society that has some social structure to it.\n\nIn Texas, we pay, estimating here, about 15% in taxes from property, sales, and all other forms of taxes.\n\nSales tax unjustly punish the poor, disabled, and the elderly at a much higher impact rate than it does the middle-class and up. \n\nIf I am on a limited income, there is no barrier in place for me to not pay that sales tax. I can file a homestead exemption for property taxes to get them reduced, and if I am over 65, I can get them reduced a little bit more. But I am required to pay something.\n\nIf a person makes $1200.00 a month on social security, and their property taxes are $2300.00 a year, after reductions, that takes up almost 2 full months of income. Then they still have to pay sales tax, road tax, sin taxes, etc. \n\nIf I make $8000 a month with a full-time job, same neighborhood, and my property taxes are $4000 a year, that is about 2 weeks worth of work for me.\n\nIf I had a state income tax of 10%, I only have to pay $9600 a year total. That means no sales tax for the grocery store, no taxes on any big purchases, no water taxes, gas taxes, sin taxes, nothing. That is one month worth of work and a part of a week of another.\n\nThe person on social security gets 2 months of her pay back in her pocket and she can continue to live in her home and put food on her table.\n\nSo by screwing over the elderly and disabled, we can, what was it, "be the party of the working class"\n\nBeing a Democrat is about more than being for the workers. It is about taking care of those who cannot care for themselves, helping them get their feet under them, and helping them move forward. \n\nIt means standing up and doing what is right when everyone else is content to watch people suffer. \n\nIt means doing the right thing, even if you are going to be uncomfortable in the process.\n\nIt means we do not harm one group, just to favor other groups, because it might be financially expedient or "look good" down the road.', 'created': '2024-11-16 17:39:16', 'submission_id': '1gregr6'}
{'comment': 'Eu needs to not put up with Trumps crap. Stop letting him bully you around. Even most of US hate his guts.', 'created': '2024-11-14 22:20:20', 'submission_id': '1gref0j'}
{'comment': "There's no European language were surrender is synonymous with peace!", 'created': '2024-11-14 21:39:34', 'submission_id': '1gref0j'}
{'comment': 'It’s sad, but we all know Russia is going to attack/invade NATO nations and Trump will command that the U.S. stand down', 'created': '2024-11-14 22:18:35', 'submission_id': '1gref0j'}
{'comment': 'Neither is in Hungarian, which is not a European language. Not Indo-European at least. This was a big fuck you for Orbán and his European defense crap. And I say it as a native Hungarian speaking person.', 'created': '2024-11-14 22:07:14', 'submission_id': '1gref0j'}
{'comment': 'The actions of the 13 colonies is really inexcusable. Their attack against the peace loving British soldiers was a horrible, horrible act, and it was unnecessary and unprovoked. They had a perfect relationship, a wonderful relationship, like nothing ever seen before. And they killed it, those colonies killed it. The war was their doing, every bit of it. \n\n\\-- Fox News, circa 1780', 'created': '2024-11-14 23:35:32', 'submission_id': '1gref0j'}
{'comment': 'Orban was pretending to jot down notes as he was being shamed by the European Union.', 'created': '2024-11-15 08:46:49', 'submission_id': '1gref0j'}
{'comment': 'Beautifully said. <3', 'created': '2024-11-14 22:59:32', 'submission_id': '1gref0j'}
{'comment': 'Makes me wish I was European.', 'created': '2024-11-15 04:55:56', 'submission_id': '1gref0j'}
{'comment': "Sorry for when US help dries up. Prepare yourselves for the speech about it involving how things are beautiful and perfect, and the fake news media, and maybe Rosie O'Donnell. Sorry Ukraine.", 'created': '2024-11-14 22:24:47', 'submission_id': '1gref0j'}
{'comment': 'I remember when we had articulate, inspiring leaders\n\n.', 'created': '2024-11-15 00:08:19', 'submission_id': '1gref0j'}
{'comment': 'Some? We all know who. Just say his name.', 'created': '2024-11-15 00:47:25', 'submission_id': '1gref0j'}
{'comment': 'Can she be our president?', 'created': '2024-11-15 11:29:54', 'submission_id': '1gref0j'}
{'comment': 'Man taking notes: She is mean 😤', 'created': '2024-11-15 20:20:49', 'submission_id': '1gref0j'}
{'comment': 'good good but now make some decisions that help Ukraine win. and fast.', 'created': '2024-11-14 23:17:05', 'submission_id': '1gref0j'}
{'comment': 'They are worse than Democrats. “I will give a nice moving speech and use reason. That will change everything, since people are really decent & want to do the right thing.” Does no one in Europe pay attention to politics here? I would be sounding the alarm for the EU to militarize fast. Thats just me though.', 'created': '2024-11-17 01:22:07', 'submission_id': '1gref0j'}
{'comment': 'Sadly many facist leaders in Europe are pro trump just because they equate trump with conservatism (ie PiS party in Poland, Meloni in Italy, FPO in Austria, AfD in Germany etc)', 'created': '2024-11-15 03:02:18', 'submission_id': '1gref0j'}
{'comment': 'what are they going to do about it?\n\nThe US military spends more than every single country in the entire EU\n\nYou think theyre just gonna tell America to piss off until we get a good president and risk having their military power cut in half or worse?', 'created': '2024-11-15 15:35:40', 'submission_id': '1gref0j'}
{'comment': 'The majority of the popular vote would say you’re wrong. Not saying that’s right, but… If people had wanted something else, they should have voted that way. Again, not looking forward to a Trump presidency (again), but seems like the people of our country gave him a mandate. Scares the shit out of me, but they did and here we are.', 'created': '2024-11-14 23:22:35', 'submission_id': '1gref0j'}
{'comment': "As a local in the Carpathian mountains I rather die than be Russian. We don't have a culture close to them at all. We are EU and NATO (tho NATO won't be much with Trump probably) and we had the longest anti communist resistance in Eastern Europe here. Messing with us is messing with their mothers pubic hair. 😈\n\n\nhttps://youtu.be/X2ufwj4FhrU?si=m1OieN9w6apBFkj0\n\n\nHungarian \n\nhttps://youtu.be/9wOfmLLi5ks?si=L4gjZ2Xw9A_cVcRm\n\n\nRomanian \n\n\nEDITED", 'created': '2024-11-14 22:25:24', 'submission_id': '1gref0j'}
{'comment': None, 'created': '2024-11-15 01:12:40', 'submission_id': '1gref0j'}
{'comment': "We hope they won't join Russian troops now.", 'created': '2024-11-15 00:19:56', 'submission_id': '1gref0j'}
{'comment': "As long as we're in NATO Trump has no choice, that's why he's looking for excuses to pull out of NATO.", 'created': '2024-11-16 03:16:59', 'submission_id': '1gref0j'}
{'comment': 'Well, our forces will be committed in Iran by then.', 'created': '2024-11-14 23:24:21', 'submission_id': '1gref0j'}
{'comment': 'We still do, but unfortunately our vapid, idiot, conspiracy theory ridden population refuses to elect them.', 'created': '2024-11-15 08:18:14', 'submission_id': '1gref0j'}
{'comment': "It's not diplomatically to say it yet. Even when in war with some we still used their titles and called them sir sometimes. 😄", 'created': '2024-11-15 05:32:36', 'submission_id': '1gref0j'}
{'comment': "She's not mean. We are with her! 🇪🇺", 'created': '2024-11-16 17:16:10', 'submission_id': '1gref0j'}
{'comment': 'Probably', 'created': '2024-11-16 22:54:58', 'submission_id': '1gref0j'}
{'comment': 'Unfortunately EU is a confederacy, not exactly a united state. We do our best but only on country level. 🙁', 'created': '2024-11-15 06:14:24', 'submission_id': '1gref0j'}
{'comment': "> PiS party\n\nWell that's an unfortunate name", 'created': '2024-11-15 05:21:58', 'submission_id': '1gref0j'}
{'comment': 'And so it continues! We never seem to “learn” until it is too late! As America slumbers, her fate slides towards its eventual demise. Sigh…', 'created': '2024-11-15 18:56:51', 'submission_id': '1gref0j'}
{'comment': "US spends more than the next five countries combined. They can tell America whatever they want, Trump doesn't want to send troops anywhere.", 'created': '2024-11-16 03:14:18', 'submission_id': '1gref0j'}
{'comment': None, 'created': '2024-11-15 01:08:57', 'submission_id': '1gref0j'}
{'comment': 'He won by about 2%', 'created': '2024-11-16 22:57:21', 'submission_id': '1gref0j'}
{'comment': 'Even without USA, NATO still has the whole EU+UK+Canada and seeing Russian performance in Ukraine I doubt Russia would last long if they attack and we have to go all in, hell, Japan and Australia would probably join just to guarantee full support just in case China gets ideas.', 'created': '2024-11-15 00:58:41', 'submission_id': '1gref0j'}
{'comment': 'We’re kicking the GOP out in 4 years.', 'created': '2024-11-15 01:16:54', 'submission_id': '1gref0j'}
{'comment': 'I can see Trump doing this', 'created': '2024-11-15 01:09:03', 'submission_id': '1gref0j'}
{'comment': 'Don\'t forget "deliberately misinformed."', 'created': '2024-11-15 18:23:30', 'submission_id': '1gref0j'}
{'comment': 'And an unfortunate party.', 'created': '2024-11-15 06:12:07', 'submission_id': '1gref0j'}
{'comment': 'The majority of the nation may hate him, but they don’t have a right to complain if they didn’t do anything to keep him out of office.', 'created': '2024-11-15 01:10:29', 'submission_id': '1gref0j'}
{'comment': "Yes but Europe can't fight both and China on top. It's too much. But we'll try probably. I'm not talking about war necessarily here. War waged by Russia against EU and USA is a long time war. I wonder WTF CIA was for all these years?!", 'created': '2024-11-15 05:48:36', 'submission_id': '1gref0j'}
{'comment': 'If they let us have elections.', 'created': '2024-11-15 03:08:21', 'submission_id': '1gref0j'}
{'comment': 'two years', 'created': '2024-11-17 03:43:00', 'submission_id': '1gref0j'}
{'comment': "Actually, a fundamental aspect of our country (and most democracies) is that there's no prerequisite on your right to complain. \n\nYou can always complain, without any reason or facts . It is one of those inalienable rights.", 'created': '2024-11-15 04:43:55', 'submission_id': '1gref0j'}
{'comment': 'If they hate him they sure have a way to show it.', 'created': '2024-11-15 01:15:46', 'submission_id': '1gref0j'}
{'comment': 'Fuck that, we have elections or it’s war. We need to stop letting them bully us. We need to grow a fucking backbone.', 'created': '2024-11-15 04:46:19', 'submission_id': '1gref0j'}
{'comment': 'two years', 'created': '2024-11-17 03:42:49', 'submission_id': '1gref0j'}
{'comment': "Dictators won't let you change their system.", 'created': '2024-11-15 06:23:43', 'submission_id': '1gref0j'}
{'comment': 'Fully agree. I’m just saying that the next administration and current Supreme Court might not see 1A rights in the same way as past administrations.\n\nEdit: sorry thought I was arguing a different post, but the point stands.', 'created': '2024-11-15 04:45:40', 'submission_id': '1gref0j'}
{'comment': 'Protests where they could be shot if the next president orders it? Makes peaceful civil unrest seem a bit flaky as a proposition to me…', 'created': '2024-11-15 01:29:09', 'submission_id': '1gref0j'}
{'comment': '“Those that make peaceful revolution impossible, make violent revolution inevitable”', 'created': '2024-11-15 07:43:47', 'submission_id': '1gref0j'}
{'comment': 'I meant to say they have a funny way of showing it.', 'created': '2024-11-15 01:40:07', 'submission_id': '1gref0j'}
{'comment': 'This can go both ways. But in the end we should treat ourselves as human beings and stop looking up for a "*daddy*" in politics.', 'created': '2024-11-15 07:46:14', 'submission_id': '1gref0j'}
{'comment': 'Oh yeah, for sure.', 'created': '2024-11-15 01:47:55', 'submission_id': '1gref0j'}
{'comment': 'Like nominating a Russian asset for the head of national intelligence?', 'created': '2024-11-14 21:31:20', 'submission_id': '1grdz9f'}
{'comment': 'Doesn\'t matter if it gets him a "pardon" without needing to give him a pardon. The sudden departure from Congress prior to the report from the investigation of him, the recirculation of colleagues explicitly saying he showed them pictures and what he said about them, and McCarthy\'s clip about why he was ousted. Cornered animals do weird things....', 'created': '2024-11-14 21:16:57', 'submission_id': '1grdz9f'}
{'comment': 'Don’t overthink it. \n\nTrump wants a sycophant in at every position of power. He knows Gaetz will absolutely weaponize the DOJ to go after anyone he directs Gaetz to go after. \n\nHe will be AG on a recess appointment. The only question is if Thune puts the senate in recess the first week or makes a show of “trying” to confirm the clown show before going into recess “for the good of the country”.', 'created': '2024-11-14 21:16:31', 'submission_id': '1grdz9f'}
{'comment': "Some nefarious shit that they're going to get away with.", 'created': '2024-11-14 21:25:36', 'submission_id': '1grdz9f'}
{'comment': 'I look at Gaetz and think of a smooth-brained mammal.', 'created': '2024-11-14 21:36:19', 'submission_id': '1grdz9f'}
{'comment': "Here's the malarkey.\n\nHe resigned just before the report on him was released, making accountability impossible.\n\nGrump announces him as a pick but there is no guarantee this doesn't change. None of that matters regarding the fact that Gaetz was given a public reason to resign immediately (which is weird.....) and avoid punishment.\n\nMy guess is that Count Chocula has dodged culpability as a thank you from Grump for being such a good dog.\n\nHe will not ultimately be Trump's pick, Gaetz will withdraw himself for consideration, and Chocula will go on to lead some other lunatic angle of Grump's holy regime. \n\nFor all of the right-wing lunacy around protecting our dear children, they chose Grump who has helped a genuine abusive and disgusting person get away with it all. \n\nI hope criminal charges are brought against Count Chocula.", 'created': '2024-11-14 22:13:37', 'submission_id': '1grdz9f'}
{'comment': "He is not likely to pass confirmation as he is hated by many Senate GOP. If having a sycophant like Gaetz is part of trump's plans to push really dark things through that someone that would pass confirmation would reject then he may just cram Gaetz in as Acting AG which does not require confirmation but comes with a time limit. He may be the gateway through which trump tries to push the worst of his ideas. \n\nI think our saving grace in all this is that trump has the organizational skills of a guppy. He has the concept of a lot of ideas bubbling through his addled mind. But he does not have the capacity to pull it off. He is going to hit an increasing resistance and roadblocks as he goes. He just doesn't understand systems with rules and wants to get ride of the rules. That is harder than he thinks. And he is going to get pissed off as he hits more and more obstacles. And this will mean more mistakes.", 'created': '2024-11-14 22:02:25', 'submission_id': '1grdz9f'}
{'comment': "If you're surprised by any of these picks, you weren't paying attention. Trump the felon has been telling us he would skip past the reasonable picks and go straight for loyalist fascists allllllllllll year. He corrected multiple interviewers on his language around being a dictator and that he fully intends to be one. Buckle the fuck up.", 'created': '2024-11-15 04:11:52', 'submission_id': '1grdz9f'}
{'comment': 'Possible. In 2016, my whole Facebook feed was obsessed with insulting Betsy Devoss while I was the sole person going, "Hey, have you noticed Gen Flynn is an Obvious Russian Asset?!" Everybody ignored me because they were riled up over Betsy.\n\nI was correct. People seem to have a limit to how many things they can worry about at once. \n\nhttps://www.npr.org/2020/11/25/823893821/trump-pardons-michael-flynn-who-pleaded-guilty-to-lying-about-russia-contact', 'created': '2024-11-15 00:06:31', 'submission_id': '1grdz9f'}
{'comment': "honestly I think it was to get ahead of the Friday House Investigation - they have now lost jurisdiction and can't announce it - he resigned SO FAST after the announcement and just winning re-election.\n\nso now they're saying recess appointment, which ironically, is always Matt Gaetz's favorite first date", 'created': '2024-11-14 22:28:30', 'submission_id': '1grdz9f'}
{'comment': 'his nomination was a way to leave congress without having to face the ethics charges of sleeping with a 17 year old. he’s a pedo coward', 'created': '2024-11-15 05:04:56', 'submission_id': '1grdz9f'}
{'comment': 'There’s no smokescreen; they’re nakedly working toward anarchy. They’re actively dismantling the government.', 'created': '2024-11-15 04:18:59', 'submission_id': '1grdz9f'}
{'comment': 'Democrats need to learn how to keep their powder dry and not blow all of their political capital on obvious targets.', 'created': '2024-11-14 21:24:23', 'submission_id': '1grdz9f'}
{'comment': 'Even if this is a smoke screen, the replacement could be just as bad: Ken Paxton, most corrupt POS AG in the US', 'created': '2024-11-14 21:47:53', 'submission_id': '1grdz9f'}
{'comment': 'EVERY AMERICAN MUST GET THAT REPORT UNCENSORED AND RELEASED FOR ALL TO SEE', 'created': '2024-11-14 21:33:29', 'submission_id': '1grdz9f'}
{'comment': "Trump had 4 Attorney Generals during his first term. Matt Gaetz won't be Attorney General for long. It is a waste of time to discuss what Gaetz may or may not do. All of Trump's appointments are disposable to Trump.", 'created': '2024-11-14 22:35:32', 'submission_id': '1grdz9f'}
{'comment': "I \\*guarantee\\* you that there's truly nefarious shit going on that we're not paying attention to.", 'created': '2024-11-15 01:46:08', 'submission_id': '1grdz9f'}
{'comment': 'I swear he looks like Butthead. It’s uncanny.\n\n', 'created': '2024-11-15 05:43:31', 'submission_id': '1grdz9f'}
{'comment': 'Maybe but isnt it all? They flood the zone with bullshit all the time. Its impossible to know whats going on which is the point.', 'created': '2024-11-14 21:39:27', 'submission_id': '1grdz9f'}
{'comment': 'It can be both at once', 'created': '2024-11-14 21:34:08', 'submission_id': '1grdz9f'}
{'comment': "He's picking Gaetz because he knows Gaetz will trash the DOJ. They both have crimes being investigated and they both need those crimes to disappear. They have the same agenda as criminals.", 'created': '2024-11-14 22:04:26', 'submission_id': '1grdz9f'}
{'comment': "He's being deployed as a sniffer. By throwing in such a horrendous pick, Trump will know immediately who among the Senate isn't necessarily on-board with his plans by how the vote to confirm. This also shows Musk which candidates to fund primaries against right out the gate. Senators for safe Republican states suddenly find themselves exposed to their own party's piranhas.\n\nAs for smoke screen, duh. You can be very certain that there are nefarious deals and actions being taken at all times with Trump. Trust the dishonest man to be dishonest and act accordingly.", 'created': '2024-11-15 01:40:07', 'submission_id': '1grdz9f'}
{'comment': 'Or, it’s all nefarious shit and we now have no checks or balances left with which to stop it.', 'created': '2024-11-15 03:54:34', 'submission_id': '1grdz9f'}
{'comment': 'He’s looking to test the bounds of recess appointments. And in the absence staff that don’t require confirmations will run the departments. It’s not that secretive.', 'created': '2024-11-15 06:09:52', 'submission_id': '1grdz9f'}
{'comment': '\n\nGaetz always reminds me of Jack Nicholson here.', 'created': '2024-11-14 21:52:52', 'submission_id': '1grdz9f'}
{'comment': "I think it's just to get the investigation to go away. To be pardoned he'd have to admit guilt, this way it all just goes away.", 'created': '2024-11-14 22:26:05', 'submission_id': '1grdz9f'}
{'comment': "You know how Trump buries controversies with even more controversies?\n\nThis is him outsourcing controversies to the cloud. It will be a cloud of controversies. The media won't know where to look and no story will get traction for more than a few days.", 'created': '2024-11-14 22:40:27', 'submission_id': '1grdz9f'}
{'comment': 'Elon met with Iran ambassador. Something is up there.', 'created': '2024-11-15 01:25:27', 'submission_id': '1grdz9f'}
{'comment': "Nah they're hiring the least qualified and most loyal morons they can find. They want to do as much damage as possible to the establishment, that much you can be sure of...", 'created': '2024-11-15 02:38:46', 'submission_id': '1grdz9f'}
{'comment': 'His resting bitch face is the stuff of nightmares.', 'created': '2024-11-15 04:14:37', 'submission_id': '1grdz9f'}
{'comment': 'I someone told me that is the face of a serial killer I would not doubt them.', 'created': '2024-11-15 04:30:22', 'submission_id': '1grdz9f'}
{'comment': 'Vote for a clown, expect a circus', 'created': '2024-11-15 06:02:21', 'submission_id': '1grdz9f'}
{'comment': 'Like Gaetz, Trump likes them young. The president-elect is just trying to protect his pedo buddy.', 'created': '2024-11-14 21:33:42', 'submission_id': '1grdz9f'}
{'comment': 'Trump only cares about the Justice Department as a means of revenge against his enemies, that is the purpose of Matt Gaetz. An absolute loyalist with 0 ethical standards', 'created': '2024-11-14 22:04:14', 'submission_id': '1grdz9f'}
{'comment': 'This administration doesn’t have the qualifications nor ethics nor moral decency to run a lemonade stand let alone the most powerful government in the world.', 'created': '2024-11-14 23:39:08', 'submission_id': '1grdz9f'}
{'comment': "Friday's surprise has to be MTG.", 'created': '2024-11-15 00:21:13', 'submission_id': '1grdz9f'}
{'comment': "All his picks are fake. He's gauging the response by said picks.", 'created': '2024-11-15 12:37:34', 'submission_id': '1grdz9f'}
{'comment': "First-time.gif?\nIt's nefarious shit all the way down to 2028.", 'created': '2024-11-15 13:33:21', 'submission_id': '1grdz9f'}
{'comment': 'He bailed Gaetz out of a bad situation. Now he probably has an AG that’s in debt to him. I’m leaning towards Occam’s Razor in this case', 'created': '2024-11-15 18:38:58', 'submission_id': '1grdz9f'}
{'comment': 'Gaetz is never going to make it past a background check. \n\nWhat this is really about is selecting a guy just as crazy as Gaetz but with a lower profile so no one raises too big a stink over it.', 'created': '2024-11-14 21:30:51', 'submission_id': '1grdz9f'}
{'comment': 'I find that people feel better when there is a “reason” for all the crazy shit that happens in the world, and this results in the assumption that Trump’s decisions are the result of some calculated 4d chess. In reality it’s almost never that deep.', 'created': '2024-11-14 22:03:28', 'submission_id': '1grdz9f'}
{'comment': 'There always is.', 'created': '2024-11-14 22:26:11', 'submission_id': '1grdz9f'}
{'comment': "Guys, they are going to immediately impeach Trump. He's served his purpose.", 'created': '2024-11-14 23:24:15', 'submission_id': '1grdz9f'}
{'comment': 'Like a direct funnel of all of our national security secrets going straight to Putin through the Russian asset, Tulsi Gabbard?', 'created': '2024-11-15 00:29:52', 'submission_id': '1grdz9f'}
{'comment': "I read in the New York Times today that he didn't even have a nomination set until just this week and it was decided while in a plane and Matt Gaetz was there. They just spontaneously thought it would be a good idea and Trump knows Matt Gaetz will deliver what he wants. \n\nHow Trump Picked Gaetz https://www.nytimes.com/2024/11/14/us/politics/trump-gaetz-decision-plane.html?smid=nytcore-android-share", 'created': '2024-11-15 00:48:43', 'submission_id': '1grdz9f'}
{'comment': 'Yep. This is now how it will be. Just like last time, only sooooooooo much worse', 'created': '2024-11-15 01:39:14', 'submission_id': '1grdz9f'}
{'comment': 'There’s always nefarious shit going on in the shadows. But this outrage is real. Ya see, the real conservatives that are left aren’t going to allow someone to just quit his job in the house to stop a federal investigation into his sex trafficking crimes, only to use that job as a springboard to being top cop in the country. Any sane republican has already said “Hell no”. This POS really is one of the most hated politicians by his fellow party members and it shows.', 'created': '2024-11-15 02:43:44', 'submission_id': '1grdz9f'}
{'comment': "They're trying to get career professionals to resign from the departments by appointing complete jackass s to head them.", 'created': '2024-11-15 16:31:34', 'submission_id': '1grdz9f'}
{'comment': 'They are not and have not been hiding what they are doing for quite a while now. This is just the latest "yes" man to be installed. The conservatives realized the mistakes made last go around.', 'created': '2024-11-15 17:54:04', 'submission_id': '1grdz9f'}
{'comment': "Honestly you're giving him too much credit. Hell do all the crazy shit right alongside this bc there's literally no one to stop him.", 'created': '2024-11-15 20:11:23', 'submission_id': '1grdz9f'}
{'comment': 'I understand your suspicions but I think it will be such a firehose of ever worse shit that the general public will become immune to the horror.', 'created': '2024-11-14 21:50:12', 'submission_id': '1grdz9f'}
{'comment': 'Trump just wants to see who votes against him, so he can complete his "enemies list".\n\nHis **REAL** plan is to dig up John Wayne Gacy (the serial killer), reanimate his body, and then appoint him Attorney General during a recess.', 'created': '2024-11-14 21:53:06', 'submission_id': '1grdz9f'}
{'comment': 'It’s always nefarious with them', 'created': '2024-11-14 22:24:39', 'submission_id': '1grdz9f'}
{'comment': 'You mean like him raping children?', 'created': '2024-11-14 23:40:56', 'submission_id': '1grdz9f'}
{'comment': 'IMHO you think DJT (AKA stupid) is smarter than he is. This, very likely a pedophile, fits his requirements and is someone he can control. He is someone with secrets to hide. Sounds a lot like stupid, doesn’t it? \n\nAgain… IMHO people think stupid doesn’t mean what he says… I think he means everything he says including his daughter exciting hi sexually. \n\nThis is all MHO…', 'created': '2024-11-14 23:55:57', 'submission_id': '1grdz9f'}
{'comment': 'Yeah, there’s shit afoot…', 'created': '2024-11-15 01:15:38', 'submission_id': '1grdz9f'}
{'comment': 'I could swear I saw a picture of Tulsi Gabbard, sitting around the dinner table with Putin and Mike Flynn. Yay or nay🤨?', 'created': '2024-11-15 01:34:39', 'submission_id': '1grdz9f'}
{'comment': 'Welcome to America. Now have you figured out that we\'re all slaves but kept distracted by infighting like "keeping up with the Jones" and distracted by fighting each other\'s politics like a sports team', 'created': '2024-11-15 01:35:47', 'submission_id': '1grdz9f'}
{'comment': "Anyone nominated that gets the seat they're nominated for, can sell their business, tax free. \n\nElon wants a seat so he can sell X etc.", 'created': '2024-11-15 01:52:10', 'submission_id': '1grdz9f'}
{'comment': 'Agreed. These first round of clowns will not be confirmed and the next round will be the people he truly intends to seat and he will make them acting so he can fire them like they’re on the Apprentice.', 'created': '2024-11-15 02:15:21', 'submission_id': '1grdz9f'}
{'comment': 'Gaetz was going to resign anyway because of the investigation.\n\nThis was just a "fig leaf", he doesn\'t have a chance of bring confirmed in the Senate because of the bridges he\'s burned.', 'created': '2024-11-15 02:22:00', 'submission_id': '1grdz9f'}
{'comment': '#RapeyMcForehead', 'created': '2024-11-15 02:47:49', 'submission_id': '1grdz9f'}
{'comment': 'Win win for Trump. Either Gates is approved or we\'re distracted - "squirrel"', 'created': '2024-11-15 04:46:57', 'submission_id': '1grdz9f'}
{'comment': 'Like… literally fucking everything? Dude look around lol. I’m genuinely not sure if this is a troll post or not. Every single announcement since Trump has been elected has been a fucking horror sideshow, it’s one train wreck after another after another. At this point if they ARE covering something up, it must be MEGA FUCKED. I don’t even have a word for something that awful.', 'created': '2024-11-15 05:58:00', 'submission_id': '1grdz9f'}
{'comment': 'It is all, always a smoke screen. Always a distraction. And it always works, because the major media wants it to work. They do not want to cover the real stories. So they pretend that the distractions are the stories.', 'created': '2024-11-15 07:50:10', 'submission_id': '1grdz9f'}
{'comment': 'He literally looks like a villain 💀', 'created': '2024-11-15 10:44:21', 'submission_id': '1grdz9f'}
{'comment': 'Are they legitimizing pedophilia?', 'created': '2024-11-15 13:27:08', 'submission_id': '1grdz9f'}
{'comment': 'Like Musk talking with Iran?', 'created': '2024-11-15 13:57:59', 'submission_id': '1grdz9f'}
{'comment': 'Well one is an adjudicated rapist and felon. Of course he would play interference for another sex offender.', 'created': '2024-11-15 14:01:55', 'submission_id': '1grdz9f'}
{'comment': "1. They are not that smart\n2. They don't NEED a smokescreen\n3. Whatever you imagine, it is going to be worse.", 'created': '2024-11-15 14:18:13', 'submission_id': '1grdz9f'}
{'comment': 'You can probably repost the 2nd sentence every day for the next 4 years.', 'created': '2024-11-15 14:43:40', 'submission_id': '1grdz9f'}
{'comment': "Crazy that Trump's picks are that bad we assume it's a game and not the real deal.", 'created': '2024-11-15 15:20:39', 'submission_id': '1grdz9f'}
{'comment': 'This base maneuver is not elegant enough to be called a "smoke screen". People ascribe some great intelligence to tRumps actions when in the end they are all just grifts in some form or another. tRump is super transactional, without subterfuge.', 'created': '2024-11-15 15:22:03', 'submission_id': '1grdz9f'}
{'comment': 'Yeah it is, McCarthy said as much. Also gives him cover to resign.', 'created': '2024-11-15 15:48:15', 'submission_id': '1grdz9f'}
{'comment': 'In the same way trumps antics allowed Mitch to work un noticed, and unimpeded.', 'created': '2024-11-15 15:59:18', 'submission_id': '1grdz9f'}
{'comment': "It's a smoke screen for Mike Johnsons and Trumps dirty little secret.", 'created': '2024-11-15 16:03:01', 'submission_id': '1grdz9f'}
{'comment': 'I think differently. All the Republicans Senators and Congressmen who are expressing disbelief over Gaetz will eventually tow the line. They always do. Even Susan Collin’s and Lisa Murkowski. Anyone who doesn’t understand this hasn’t been paying attention. Trump will use the Gaetz approval as a way of solidifying his support in Congress They will be afraid to contest anything he does . Even Dem Congressman and Senators will learn that it’s best to comply.', 'created': '2024-11-15 17:38:16', 'submission_id': '1grdz9f'}
{'comment': 'Nominate a bunch of people that will not get approved by the Senate, then you have an automatic way to blame everyone else when things go to shit.', 'created': '2024-11-15 18:41:32', 'submission_id': '1grdz9f'}
{'comment': 'No. Trump doesn’t play 4D chess. He wants this goof', 'created': '2024-11-15 20:32:00', 'submission_id': '1grdz9f'}
{'comment': 'when beavis has plastic surgery?', 'created': '2024-11-15 22:24:49', 'submission_id': '1grdz9f'}
{'comment': "What difference does it make what we are paying attention to? We can't change anything. We can't control anything. It doesn't matter what side of the ship you're on; we're all sinking.", 'created': '2024-11-16 04:54:38', 'submission_id': '1grdz9f'}
{'comment': 'I blame our government. The 14th amendment says that anyone trying who was involved in an insurrection or rebellion can not run for president, but here we are. This whole thing is illegal. \n\nEta grammar', 'created': '2024-11-16 06:49:33', 'submission_id': '1grdz9f'}
{'comment': 'Is it just me, or does he look like Ted Cruz had a baby with Jack Niclson, and he is that baby.', 'created': '2024-11-16 06:54:07', 'submission_id': '1grdz9f'}
{'comment': 'Whatever is happening on the surface is all to hide the monsters in the swamp. The damage done henceforth... The machinations of puppet Drumpf', 'created': '2024-11-14 21:23:18', 'submission_id': '1grdz9f'}
{'comment': 'I can’t stand Trump, not even a little bit.\n\nBut\n\nIt would be hilarious if Trump withdrew the nomination after his resignation was completed then blew him up on Twitter for being a pedo. Like it was all a work to get rid of him.', 'created': '2024-11-14 21:39:03', 'submission_id': '1grdz9f'}
{'comment': 'Dang, look at those eyes! He looks so demonic! And, I know the look, dark circle and the bags. My dad was a functioning (most of the time) MAJOR alcoholic and everything about his face says..alcoholic. PLUS, the guy is just a low life, pathetic frat boy. Despicable. 🤦🏻\u200d♀️', 'created': '2024-11-14 22:54:25', 'submission_id': '1grdz9f'}
{'comment': "It is a move to limit his exposure from ethics violations and potential for criminal charges. It probably won't work because I'm fairly certain that his nomination will fail confirmation and likely during or just prior to that process, the findings of the ethic inquiry will be public. Now, he might get away with the crimes, but he likely never be AG. There likely will be some other sycophant in that role who will quash any charges against Gaetz but at least Gaetz won't have any power.", 'created': '2024-11-14 21:40:49', 'submission_id': '1grdz9f'}
{'comment': 'I agree 100%', 'created': '2024-11-14 21:43:44', 'submission_id': '1grdz9f'}
{'comment': 'Just wait a see what AG Gaetz will do the DOJ, it’s all part of Phase 1 of the end of our government and Constitution. No will like what comes in Phase 2, but will be too busy dealing with other chaos to notice.', 'created': '2024-11-14 21:50:18', 'submission_id': '1grdz9f'}
{'comment': 'Well, people did stop talking about Tulsi Gabbard and how she is 100% a Russian asset as soon as Gaetz was confirmed so maybe some truth to this.', 'created': '2024-11-14 21:50:53', 'submission_id': '1grdz9f'}
{'comment': "Oh no doubt it's to distract us from some truly shady shit going on behind the scenes.", 'created': '2024-11-14 21:53:40', 'submission_id': '1grdz9f'}
{'comment': 'Agreed, 100%', 'created': '2024-11-14 21:55:43', 'submission_id': '1grdz9f'}
{'comment': 'I still can’t get over how there are no prerequisites or essential qualifications that has to be followed in order to even be qualified for the job! Doesn’t even matter if people want him, but just like you can’t put an accountant in a creative director role and you can’t put an actress in a financial services role. How is the AG role above this??', 'created': '2024-11-14 21:58:37', 'submission_id': '1grdz9f'}
{'comment': 'I don’t think it’s a distraction. I think Trump plans for Gaetz to control the justice department as his personal attack dog and witchfinder general.', 'created': '2024-11-14 22:01:47', 'submission_id': '1grdz9f'}
{'comment': 'Classic lightning rod play', 'created': '2024-11-14 22:05:55', 'submission_id': '1grdz9f'}
{'comment': 'Yep, I was thinking this too, especially knowing that the leaks are now starting.', 'created': '2024-11-14 22:23:14', 'submission_id': '1grdz9f'}
{'comment': 'I think this nomination is to make the Hegseth nomination look palatable.', 'created': '2024-11-14 22:33:19', 'submission_id': '1grdz9f'}
{'comment': '"Ok, ok, ok, you got me, here\'s the real Attorney General nomination...Diddy!"', 'created': '2024-11-14 22:36:41', 'submission_id': '1grdz9f'}
{'comment': 'i just figured it was one pedo doing another pedo a favor.', 'created': '2024-11-14 22:53:07', 'submission_id': '1grdz9f'}
{'comment': 'You are close, it’s the tariffs. Everyone is focused on those so hard that it’s obviously the smoke and mirrors to whatever they are really doing.', 'created': '2024-11-14 22:56:15', 'submission_id': '1grdz9f'}
{'comment': 'Yes. Secretary of Defense.', 'created': '2024-11-14 23:04:02', 'submission_id': '1grdz9f'}
{'comment': 'Trump just reignited his war of attrition, by flooding the airwaves with outrageous shit and trying to wear he enemies down with outrage. That’s all that this is. He did it all throughout 2016-2020, and I imagine given his power now he’ll really amp it up.', 'created': '2024-11-14 23:25:22', 'submission_id': '1grdz9f'}
{'comment': "Been saying this. The barrage of scandals won't let you keep up.", 'created': '2024-11-14 23:28:34', 'submission_id': '1grdz9f'}
{'comment': '100% a red herring', 'created': '2024-11-14 23:54:11', 'submission_id': '1grdz9f'}
{'comment': 'Yes. It all is.', 'created': '2024-11-15 00:07:22', 'submission_id': '1grdz9f'}
{'comment': 'He looks evil.', 'created': '2024-11-15 01:58:38', 'submission_id': '1grdz9f'}
{'comment': 'https://preview.redd.it/v1fzs4c8uy0e1.jpeg?width=317&format=pjpg&auto=webp&s=1cd92114dac2778c0f7ef6b9cfbccb8964c3c140', 'created': '2024-11-15 02:11:33', 'submission_id': '1grdz9f'}
{'comment': 'I agree.', 'created': '2024-11-15 02:21:36', 'submission_id': '1grdz9f'}
{'comment': 'That would be consistent with the way things went the first time around.', 'created': '2024-11-15 02:30:20', 'submission_id': '1grdz9f'}
{'comment': 'What country is Vance in?', 'created': '2024-11-15 03:05:13', 'submission_id': '1grdz9f'}
{'comment': 'The sacrificial lamb. He’s someone who Trump can throw under the bus to show he can compromise then shuffle the others through the process. This is basic stuff.', 'created': '2024-11-15 03:22:09', 'submission_id': '1grdz9f'}
{'comment': 'Some hungover ass eyes in that pic', 'created': '2024-11-15 03:25:57', 'submission_id': '1grdz9f'}
{'comment': 'Recess appointments', 'created': '2024-11-15 03:59:03', 'submission_id': '1grdz9f'}
{'comment': 'There’s no 3D chess happening here. He won a mandate and is designing an administration to carry out that mandate.', 'created': '2024-11-15 04:10:55', 'submission_id': '1grdz9f'}
{'comment': 'Come to Butthead.', 'created': '2024-11-15 04:18:52', 'submission_id': '1grdz9f'}
{'comment': "You don't say?", 'created': '2024-11-15 06:01:51', 'submission_id': '1grdz9f'}
{'comment': 'New fear unlocked', 'created': '2024-11-15 06:32:04', 'submission_id': '1grdz9f'}
{'comment': '1,000,000%', 'created': '2024-11-15 07:18:37', 'submission_id': '1grdz9f'}
{'comment': 'Is there any way to prevent him from taking office?', 'created': '2024-11-15 09:21:30', 'submission_id': '1grdz9f'}
{'comment': 'Trump handed him a get out of jail card. \n\nWith his resignation the ethics report just goes away. \n\nNow we will get to see whether or not the Senate approves his Trump appointment. \nGarth is equally unliked by both sides in the Senate.', 'created': '2024-11-15 12:49:35', 'submission_id': '1grdz9f'}
{'comment': "He quit Congress. That's an open seat that we better win.", 'created': '2024-11-15 13:17:11', 'submission_id': '1grdz9f'}
{'comment': 'Absolute Immunity. Only Biden can save us...', 'created': '2024-11-15 13:27:58', 'submission_id': '1grdz9f'}
{'comment': 'A lot of what Trump does is a distraction. He likes to be in the news everyday. This is one way of doing it. Republicans got what they voted for. Let them deal with it. Oh, well.', 'created': '2024-11-15 14:36:59', 'submission_id': '1grdz9f'}
{'comment': 'Yup, the shinny object trick.', 'created': '2024-11-15 15:35:30', 'submission_id': '1grdz9f'}
{'comment': 'Trump nominated him so if the appointment goes through (which is extremely unlikely) gaetz can immediately order a stop to the investigation into his own actions as well as trumps and then gaetz will be endebted even further to trump so trump will own the AG seat and be able to do whatever the fuck he wants without fear of recourse because the AG wont stop him', 'created': '2024-11-15 15:40:35', 'submission_id': '1grdz9f'}
{'comment': 'My only hope, take the spotlight off Kamala why she investigates and hand counts the election results allowing her to take over 270.', 'created': '2024-11-15 16:53:00', 'submission_id': '1grdz9f'}
{'comment': "Yeah, he just escaped the ethics committee voting to oust him from Congress. So Trump appointed him AND he just got away with raping a 17 year old and sex trafficking. Though, I really don't think Congress will approve him anyways.", 'created': '2024-11-15 17:07:59', 'submission_id': '1grdz9f'}
{'comment': "I don't think it's a smoke screen. It's simple, if you don't wanna be pressed about your sexual misconduct you just put a guy in charge of the pressing with more to loose if he presses you.\nNot a smoke screen, a straw man", 'created': '2024-11-15 17:19:20', 'submission_id': '1grdz9f'}
{'comment': 'Or the intention could be to have us fighting over Gaetz so that when Trump nominates someone else who has sexual assault allegations and hate group ties the Dems will appear unreasonable if they fight that too.', 'created': '2024-11-15 19:58:55', 'submission_id': '1grdz9f'}
{'comment': 'Obviously', 'created': '2024-11-15 21:00:46', 'submission_id': '1grdz9f'}
{'comment': 'Let the Republicans fight it out. No need to waste Democratic influence at this point.', 'created': '2024-11-15 23:18:13', 'submission_id': '1grdz9f'}
{'comment': 'Well, yeah. Obviously.', 'created': '2024-11-16 01:27:36', 'submission_id': '1grdz9f'}
{'comment': 'So from a more macro lense - whats ongoing with two groups right now? The BRICs commity and the Council for Inclusive Capitalism. Arguably the most powerful and well informed humans on our planet. Are they doing anything at all in the wake of current events?', 'created': '2024-11-16 01:46:40', 'submission_id': '1grdz9f'}
{'comment': 'Or they want someone for that spot who would almost as inappropriate, but more competent and able to carry out their vision, and they’re hoping the decent Republicans (as few as there are) and Dems exhaust their outrage on a nomination that was never expected to be confirmed. Undercuts objections to the 2nd nominee.', 'created': '2024-11-16 02:29:03', 'submission_id': '1grdz9f'}
{'comment': 'I agree, I think that it is a strategy to fluff in Ken Paxton. If you don’t know who he is then you are trouble. Even the pope has called him out by name.', 'created': '2024-11-16 02:58:32', 'submission_id': '1grdz9f'}
{'comment': 'I think it’s probably as simple as Gaetz likely telling trump he’ll just do the job as trump’s lackey.', 'created': '2024-11-16 08:59:12', 'submission_id': '1grdz9f'}
{'comment': "I can't wait to see how many quit, if any. He will end up replacing a few like last time. I am very excited to see how he trashes his new boot licking picks.", 'created': '2024-11-16 11:07:14', 'submission_id': '1grdz9f'}
{'comment': 'Awww. All his botox wore off. 😭', 'created': '2024-11-16 19:58:22', 'submission_id': '1grdz9f'}
{'comment': 'He’s gonna rake him over the coals for this', 'created': '2024-11-16 23:30:24', 'submission_id': '1grdz9f'}
{'comment': 'This is how democracies die', 'created': '2024-11-16 23:30:37', 'submission_id': '1grdz9f'}
{'comment': 'Like dropping the fact that aliens are 100% real?', 'created': '2024-11-15 01:12:32', 'submission_id': '1grdz9f'}
{'comment': 'There’s no smokescreen; let’s stop trying to divine some sort of Machiavellian strategy in these nominations. Trump genuinely wants these sycophantic loyalists in his administration and thinks he can get them confirmed and unlike the prevailing opinion I don’t believe he’s necessarily wrong. We keep thinking Senate Republicans are going to grow some sort of spine and hold on to whatever little dignity or principles they may have to push back against this insanity but I’ve seen precious little evidence that this will ever happen.\n\nPretty much any Republican who has resisted Trump in the past has either eventually bent the knee or been kicked out of the party. The ones that have stood by him have been massively rewarded. What incentive is there for them to resist him now? If I were Trump I would go all in on my preferred picks and see if Republicans have the guts to oppose me.', 'created': '2024-11-14 23:20:46', 'submission_id': '1grdz9f'}
{'comment': 'This is exactly right. She’s a Russian spy and the KGB instructed Trump how to divert attention from her by making an even more outrageous pick for AG.', 'created': '2024-11-14 22:45:29', 'submission_id': '1grdz9f'}
{'comment': 'Yeah frankly this was the "concerning" one to me. \n\nI mean they\'re all fucking concerning, but that one was like holy shit......', 'created': '2024-11-14 22:59:19', 'submission_id': '1grdz9f'}
{'comment': 'Vlad’s idea.', 'created': '2024-11-14 22:48:09', 'submission_id': '1grdz9f'}
{'comment': "I'm thinking cheating and stealing an election.", 'created': '2024-11-14 21:39:49', 'submission_id': '1grdz9f'}
{'comment': 'Nows the time for the CIA to do CIA shit', 'created': '2024-11-15 18:01:10', 'submission_id': '1grdz9f'}
{'comment': 'It would be interesting if the senate headed by Thune, who is more McConnell than MAGA, chooses to hold senate confirmations and not do recess appointments. \n\nGaetz goes from shoe-in in recess to can’t get appointed when people like Murkowski are already saying he’s too extreme.', 'created': '2024-11-14 21:46:58', 'submission_id': '1grdz9f'}
{'comment': '>He knows Gaetz will absolutely weaponize the DOJ to go after anyone he directs Gaetz to go after.\n\nExactly. \n\nAnd Gaetz will share all information that DoJ gathers with Trump, so Trump can intimidate people.', 'created': '2024-11-14 21:27:30', 'submission_id': '1grdz9f'}
{'comment': '"Don\'t overthink it," really? Yesterday I saw a story on Reuters about Trump drafting a list of Pentagon officials he plans to fire. Have yet to see anyone talk about that but 1000 stories about Gaetz.', 'created': '2024-11-14 21:54:28', 'submission_id': '1grdz9f'}
{'comment': "Yep.\n\n \nTrump doesn't play 4D chess. This is just typical behavior for him and honestly given his other choices shouldn't be that surprising. It's not like he actually cares about competency when it comes to these selections, just how much they brown-nose him and how likely they will go along with every stupid thing he does.", 'created': '2024-11-14 23:13:12', 'submission_id': '1grdz9f'}
{'comment': 'Of course he shouldn\'t be approved by the Senate. The question, as Chris Hayes put it, is an early test of "will the Senate submit to my will?"\n\nAnd the response isn\'t going to be "well I guess that didn\'t work, darn!" It either confirms that submission, installs gaetz, or identifies the road locks that they have to start attacking. \n\nHe/they are wasting absolutely no time with that process.', 'created': '2024-11-15 05:09:44', 'submission_id': '1grdz9f'}
{'comment': "The hopium I've been ingesting says they're not competent enough to pull it off.", 'created': '2024-11-14 21:29:07', 'submission_id': '1grdz9f'}
{'comment': "The problem is he isn't stupid. He reminds me of Tucker Carlson. Both of these people are dangerous.", 'created': '2024-11-14 23:32:21', 'submission_id': '1grdz9f'}
{'comment': "That's an insult to shrews and opossums...", 'created': '2024-11-14 23:14:13', 'submission_id': '1grdz9f'}
{'comment': 'That and the culture war BS is all a distraction\xa0', 'created': '2024-11-15 03:45:49', 'submission_id': '1grdz9f'}
{'comment': 'It also boggles my mind that Flynn\'s brother, Charles, [was one of two men who delayed the National Guard response on January 6th by several hours](https://www.politico.com/news/2021/12/06/jan-6-generals-lied-ex-dc-guard-official-523777#:~:text=A%202%3A30,Flynn%2C%20Matthews%20wrote).\n\nOnly once it was clear that they wouldn\'t get what they wanted, [Trump released his video](https://en.wikipedia.org/wiki/Timeline_of_the_January_6_United_States_Capitol_attack#:~:text=Trump%20speaks%20) saying "you have to go home now." and then [15 minutes later](https://en.wikipedia.org/wiki/Timeline_of_the_January_6_United_States_Capitol_attack#:~:text=4%3A32%C2%A0p.m.%3A%20Secretary%20Miller%20authorizes%20DCNG%20to%20actually%20deploy%20in%20support%20of%20the%20U.S.%20Capitol%20Police.%5B189%5D%5B306%5D) acting Secretary of Defense Charles Miller gave the go-ahead for the National Guard to move in.', 'created': '2024-11-15 18:48:35', 'submission_id': '1grdz9f'}
{'comment': 'Was it Stephen or Jimmy who used this same joke last night?\n😅', 'created': '2024-11-14 23:37:29', 'submission_id': '1grdz9f'}
{'comment': 'I can’t believe we live in this timeline', 'created': '2024-11-15 19:58:20', 'submission_id': '1grdz9f'}
{'comment': "So we should let a clearly corrupt individual take over the DoJ competely unchallenged when we have clear evidence of them engaged in disgusting criminal conduct? I don't think that's a great idea. Removing Gaetz from the political chess board is something we absolutely should do if we have the opportunity to do so.", 'created': '2024-11-14 21:43:32', 'submission_id': '1grdz9f'}
{'comment': "Paxton is a corrupt piece of shit, but I hope Trump takes him. That means we get a new AG in Texas, Paxton won't last 6 months under Trump, and then he gets sent packing back home with his tail between his legs. \n\nHe has no power or ability to do anything until the next election cycle, and then he has to run on a record of going against Trump.\n\nLOL - the MAGAs in Texas wouldn't know what to do with themselves.", 'created': '2024-11-14 22:20:15', 'submission_id': '1grdz9f'}
{'comment': 'I kind of expect he is going to save Paxton for a supreme court pick, honestly.', 'created': '2024-11-14 23:14:46', 'submission_id': '1grdz9f'}
{'comment': 'Theyd be very upset if they could read', 'created': '2024-11-14 21:50:37', 'submission_id': '1grdz9f'}
{'comment': "Why? So nothing can happen? If nothing happens and there's no accountability, then who gives a crap man?", 'created': '2024-11-15 05:00:47', 'submission_id': '1grdz9f'}
{'comment': 'Well, it goes a little deeper than that. If you throw all the shit at the fan now, when it gets time to doing actual confirmations, those are the ones that are gonna be the most dangerous. \n\nThese four are like the cover of a comic book', 'created': '2024-11-15 02:47:32', 'submission_id': '1grdz9f'}
{'comment': 'Jack Nicholson as joker, ama right?!', 'created': '2024-11-15 06:00:38', 'submission_id': '1grdz9f'}
{'comment': 'Completely agree', 'created': '2024-11-15 12:38:03', 'submission_id': '1grdz9f'}
{'comment': '', 'created': '2024-11-14 22:34:45', 'submission_id': '1grdz9f'}
{'comment': '🎯', 'created': '2024-11-15 21:40:44', 'submission_id': '1grdz9f'}
{'comment': "On a bunch o' foots.", 'created': '2024-11-15 06:31:22', 'submission_id': '1grdz9f'}
{'comment': 'OK. Bit of a stretch but OK. \n\nThe Department of DOGE Department isn’t a Department at all nor something that one would get nominated for.', 'created': '2024-11-15 02:20:03', 'submission_id': '1grdz9f'}
{'comment': 'Gabbard', 'created': '2024-11-14 22:50:01', 'submission_id': '1grdz9f'}
{'comment': 'Bottom line is ALL his picks are insane. Incompetent YES men/women. In the end the word corruption won’t even be able to fully quantify the cesspool of trash that will be running our country, economy, military, laws, and our children’s futures for the next 20 years.', 'created': '2024-11-15 02:48:34', 'submission_id': '1grdz9f'}
{'comment': 'Would you share some info/evidence about this? She went from being a respectful presidential nominee to now a Russian spy. And yes, I find it weird to switch parties which just tells me you’re either in for the money and power or just a puppet following powerful people.', 'created': '2024-11-14 22:53:44', 'submission_id': '1grdz9f'}
{'comment': 'Forget it Jake,it’s Russia town.', 'created': '2024-11-15 01:43:16', 'submission_id': '1grdz9f'}
{'comment': 'Why is concerning in quotes? Is it not concerning?', 'created': '2024-11-15 05:42:22', 'submission_id': '1grdz9f'}
{'comment': 'I don’t know if Gaetz will do any work except talking in front of the press - his favorite thing. I found it interesting that the deputy AG is Todd Blanche. Todd Blanche wasTrump’s attorney for the NY trial. He’s actually supposed to be quite competent although I don’t know if his skills and experience match what’s needed for one of the highest level government prosecutor position- he’s really a defense trial lawyer but still infinitely more qualified than Gaetz.', 'created': '2024-11-15 14:40:33', 'submission_id': '1grdz9f'}
{'comment': 'There’s no evidence currently, so no reason to believe this.', 'created': '2024-11-14 22:23:03', 'submission_id': '1grdz9f'}
{'comment': "McConnell didn't do jack shit against MAGA, so I doubt Thune will do anything to prevent Gaetz from being appointed.", 'created': '2024-11-14 21:52:08', 'submission_id': '1grdz9f'}
{'comment': 'Sort of like a two person J Edgar Hoover.', 'created': '2024-11-14 21:49:54', 'submission_id': '1grdz9f'}
{'comment': 'If any of this actually happens it sets up a civil war scenario IMO. For example them trying to cancel all the 4 late night comedians who mock Trump every weeknight. Doing something blatantly illegal like this would trigger a very dangerous response.', 'created': '2024-11-14 23:21:09', 'submission_id': '1grdz9f'}
{'comment': 'So that’s still consistent. We know how Trump abandons his thought at the slightest distraction. I’m ADHD-adjacent, I get that, but he doesn’t have really any capacity to think more than one thought ahead.', 'created': '2024-11-14 22:12:18', 'submission_id': '1grdz9f'}
{'comment': 'good thing about those officials at the pentagon is high ranking military personnel can\'t be "fired," they must go through a congressional hearing to determine whether or not they should be discharged. by no means is this a cork in a hole but it should slow things down should they get that bad.', 'created': '2024-11-14 22:20:11', 'submission_id': '1grdz9f'}
{'comment': 'Trump has the ace up his sleeve which is his now corrupt Supreme Court.\nQuestion: Can any of his CRIMINAL cases now result in actual prison time given his control of the Supreme Court?', 'created': '2024-11-14 23:27:54', 'submission_id': '1grdz9f'}
{'comment': "Anyone who thinks Trump's gonna roll in and smoothly execute literally ANYTHING is deluding themselves. \n\nAlmost nothing he blustered about on campaign will happen because of infighting and incompetence.", 'created': '2024-11-14 22:31:09', 'submission_id': '1grdz9f'}
{'comment': 'At this point it\'s more..."What you are going to do about it? Stand on decorum and expect us to do the same?!?!!? LULZ"', 'created': '2024-11-14 21:50:14', 'submission_id': '1grdz9f'}
{'comment': 'Hope is a lying bastard.', 'created': '2024-11-15 15:48:52', 'submission_id': '1grdz9f'}
{'comment': 'Hoping for bad things to not happen is not a good strategy.', 'created': '2024-11-14 23:30:40', 'submission_id': '1grdz9f'}
{'comment': 'If we could get rid of Gaetz without cost, I\'d agree. But winning a protracted battle against Gaetz makes it more likely that we\'re stuck with whoever Trump nominates after that because he\'d be seen as "better." This is how we wind up with clowns like Mike Johnson.\n\nI hate the idea of Gaetz as AG, but we\'re going to have to choose which things we hate to fight against. We can\'t keep strategizing like we\'re winning. There are plenty of Republicans who don\'t want Gaetz in any important role too. Let them do the hard work of finding the votes to keep him out or live with the consequences of confirming him. I promise there will be even bigger, more awful fish to fry.', 'created': '2024-11-14 22:16:24', 'submission_id': '1grdz9f'}
{'comment': 'Kevin is with you on this one.', 'created': '2024-11-14 23:29:20', 'submission_id': '1grdz9f'}
{'comment': 'Paxton also seems to be homicidal, to be completely frank', 'created': '2024-11-15 05:15:20', 'submission_id': '1grdz9f'}
{'comment': 'GOD HELP US ALL NOOOOOOOOOO', 'created': '2024-11-14 23:23:53', 'submission_id': '1grdz9f'}
{'comment': 'They can read, they just have to sound the letters out.', 'created': '2024-11-15 04:33:49', 'submission_id': '1grdz9f'}
{'comment': "They're trolling for sure. It feels more dangerous this time around", 'created': '2024-11-15 02:48:47', 'submission_id': '1grdz9f'}
{'comment': "Nah, from the Shining. Combined with one of Jim Carrey's characters from the 90s movies, maybe, but only for the shape of his brows.\n\n", 'created': '2024-11-15 06:28:16', 'submission_id': '1grdz9f'}
{'comment': 'How is it a stretch? It\'s a known legal loophole \n\nWP did a great explanation back in 2016 \n\nPaywall removed [link](https://www.removepaywall.com/search?url=https://www.washingtonpost.com/business/economy/trump-cabinet-could-avoid-millions-in-taxes-thanks-to-this-little-known-law/2016/12/02/509d009a-b7f5-11e6-959c-172c82123976_story.html)\n\nI agree that nefarious shit is happening. I\'d say this is just one of the nefarious things, a way for them to all get richer. The only reason any of these buffoons "support" trump is 💰 interest.\n\nFrom article :\n\nTax loophole is called the "Certificate of divesture"\n\n"The benefit was used to great effect when Henry Paulson, then chief executive of Goldman Sachs, was nominated by President George W. Bush to serve as treasury secretary. Paulson sold roughly half a billion dollars’ worth of Goldman stock and used the benefit to avoid what the Economist estimated was $200 million in taxes."', 'created': '2024-11-15 06:55:50', 'submission_id': '1grdz9f'}
{'comment': 'He told us that he only wanted yes men.', 'created': '2024-11-15 16:11:30', 'submission_id': '1grdz9f'}
{'comment': 'Tulsi Gabbard, has these outrageous views that align with Russia:\n\n\t1.\tBlaming NATO for Provoking Russia: Gabbard claimed that NATO and the Biden administration provoked Russia into its 2022 invasion of Ukraine by not addressing Russia’s security concerns. Huh?\n\t2.\tCriticizing U.S. Support for Ukraine: She has been a vocal critic of U.S. military aid to Ukraine, arguing that it escalates the conflict and does not serve American interests. \n\t3.\tOpposing Economic Sanctions on Russia: Gabbard argued against economic sanctions on Russia, stating that Americans would suffer from higher oil and gas prices. \n\t4.\tComparing U.S. and Russian Media Freedom: In March 2022, she stated that media freedom in Russia is “not so different” from that in the United States, a claim that was fact-checked as false. \n\t5.\tPromoting Biolab Conspiracy Theories: Gabbard has promoted the debunked theory that the U.S. funded biolabs in Ukraine, a narrative aligned with Russian disinformation. \n\nThese positions have drawn criticism for echoing Russian propaganda and undermining U.S. foreign policy objectives.', 'created': '2024-11-14 23:05:45', 'submission_id': '1grdz9f'}
{'comment': 'Respectable presidential candidate?! Wtf', 'created': '2024-11-14 23:54:05', 'submission_id': '1grdz9f'}
{'comment': 'I never thought she was a “respectful” anything. She grew up in a cult and is sus AF.', 'created': '2024-11-15 05:09:58', 'submission_id': '1grdz9f'}
{'comment': ">I mean they're all fucking concerning, but that one was like holy shit......\n\nThey answered that. They're all concerning, but mostly ranging through incompetence but with clear ideological signs. Gabbard blows all the others out of the water.", 'created': '2024-11-15 06:13:55', 'submission_id': '1grdz9f'}
{'comment': "There's questionable activity. \n\n\nLook, we aren't inciting violence or an insurrection. We are posting STOP THE STEAL everywhere and getting our guns ready. We aren't even discussing it to death. We aren't using it as a reason to keep Trump out or anything. \n\nSome of us just think there's been some interesting and sus activity and we want to talk about it.", 'created': '2024-11-15 00:37:50', 'submission_id': '1grdz9f'}
{'comment': 'Difference is Trump can’t run again, so they don’t have to be afraid of him anymore. They still probably will be, but they don’t have to be.', 'created': '2024-11-14 23:01:48', 'submission_id': '1grdz9f'}
{'comment': '>If any of this actually happens it sets up a civil war scenario IMO. For example them trying to cancel all the 4 late night comedians who mock Trump every weeknight.\n\nReally? You think that would trigger a civil war???\n\nI suspect not.', 'created': '2024-11-14 23:26:49', 'submission_id': '1grdz9f'}
{'comment': 'Tik Tok > Late night comedians.', 'created': '2024-11-15 18:25:33', 'submission_id': '1grdz9f'}
{'comment': 'A civil war would not be a negative to 45s Russian "friends"', 'created': '2024-11-16 21:53:32', 'submission_id': '1grdz9f'}
{'comment': 'Unfortunately he has Project 2025 to keep him on task this time.', 'created': '2024-11-15 00:44:52', 'submission_id': '1grdz9f'}
{'comment': "No no no. That's just the weave. /S", 'created': '2024-11-14 23:04:10', 'submission_id': '1grdz9f'}
{'comment': 'The language of “Trump can’t do…..” needs to be erased from our vernacular. Dictator on day 1 with a SCOTUS that implicitly has his back.', 'created': '2024-11-14 23:55:15', 'submission_id': '1grdz9f'}
{'comment': 'Those criminal cases are all dead. New York won’t sentence him. Jack Smith’s office will be disbanded at 12:01pm on Jan 21st. Georgia republicans made sure they can get rid of Willis. \n\nHe won. He won’t ever be charged for anything.', 'created': '2024-11-14 23:56:41', 'submission_id': '1grdz9f'}
{'comment': "And because there's just SO DAMN MUCH of it. No president 100% executes their agenda, even with a trifecta. Because there's too damn much to do, and it takes monumental amounts of time, money, and manpower.", 'created': '2024-11-15 22:21:10', 'submission_id': '1grdz9f'}
{'comment': 'Agreed, plus he didnt deliver much on what he promised during his first mandate. The one thing I 100% guarantee he is going to do is tax cuts for rich folk.', 'created': '2024-11-16 00:13:10', 'submission_id': '1grdz9f'}
{'comment': 'I think we should try and win the battles that we can. We can win this one. I think it\'d be fool hardy to let someone who is a criminal be in charge of the DoJ. Kinda undermines the whole reason for it to exist. While I don\'t disagree they\'d get some other corrupt asshat, we may or may not be able to defeat them too. I don\'t really think the "better" comparison will enter into it. It\'s about what the evidence is and whether or not Congress likes them. Right now, we have a Congress that absolutely despises Gaetz AND we have plenty evidence that he is corrupt and a criminal. We should not, under any circumstances, just let the opportunity to get rid of him go. Also, keep in mind Trump likes to run through cabinet appointees. So, sooner or later he\'d probably ditch Gaetz. Might as well do it for him and destroy Gaetz\'s future prospects in the process. Take the piece off the board.', 'created': '2024-11-15 01:15:55', 'submission_id': '1grdz9f'}
{'comment': 'He certainly did. And yet, here we are.', 'created': '2024-11-15 16:21:10', 'submission_id': '1grdz9f'}
{'comment': 'Yes men to Putin', 'created': '2024-11-16 21:50:48', 'submission_id': '1grdz9f'}
{'comment': 'She is also pro Assad/denies chemical weapons being used against Syrians. Psychotic.', 'created': '2024-11-15 02:21:24', 'submission_id': '1grdz9f'}
{'comment': 'That’s not even the half of it. She first gained suspicion as a supporter of the Bashar Al-Assad regime and even having secret meeting with him when in 2017. Since then the Russian bot factory propped all of her social media, making her a darling to right-wingers.', 'created': '2024-11-15 00:55:16', 'submission_id': '1grdz9f'}
{'comment': 'This definitely sounds like the YouTubers caught getting paid by Russia. So you’re saying if swore, the US intelligence is fucked. Russia will most likely invade Eastern Europe and there’s a big chance WW3 will follow.', 'created': '2024-11-14 23:09:11', 'submission_id': '1grdz9f'}
{'comment': 'https://preview.redd.it/it5tjptf1z0e1.jpeg?width=1170&format=pjpg&auto=webp&s=5ebfaf6163aaff01c3b993086c35f22140cd7461\n\nI believe what Russia is saying that they told Biden and NATO that for not responding to the “security concerns” You forced us to invade Ukraine because you wouldn’t just roll over like little bitches and let us Annex it unopposed.\n\nSorry Vlad, true Americans just don’t roll over and take whatever communist dictators demand.', 'created': '2024-11-15 02:55:46', 'submission_id': '1grdz9f'}
{'comment': "Oh she's absolutely a member of The Party", 'created': '2024-11-15 00:26:51', 'submission_id': '1grdz9f'}
{'comment': "And to think that 30 years ago, hell, even 20 years ago...she'd be charged with treason.", 'created': '2024-11-15 04:51:14', 'submission_id': '1grdz9f'}
{'comment': 'That formatting is impossible so here:\n\n1. Blaming NATO for Provoking Russia: Gabbard claimed that NATO and the Biden administration provoked Russia into its 2022 invasion of Ukraine by not addressing Russia’s security concerns. Huh? \n\n2. Criticizing U.S. Support for Ukraine: She has been a vocal critic of U.S. military aid to Ukraine, arguing that it escalates the conflict and does not serve American interests. \n\n3. Opposing Economic Sanctions on Russia: Gabbard argued against economic sanctions on Russia, stating that Americans would suffer from higher oil and gas prices. \n\n4. Comparing U.S. and Russian Media Freedom: In March 2022, she stated that media freedom in Russia is “not so different” from that in the United States, a claim that was fact-checked as false. \n\n5. Promoting Biolab Conspiracy Theories: Gabbard has promoted the debunked theory that the U.S. funded biolabs in Ukraine, a narrative aligned with Russian disinformation.', 'created': '2024-11-15 10:41:59', 'submission_id': '1grdz9f'}
{'comment': 'Wasn’t she quite progressive when running against Biden?', 'created': '2024-11-15 02:18:32', 'submission_id': '1grdz9f'}
{'comment': "I don't even get how people can read all this stuff about Russian interference, Elon's interference, voter purges, ballots being miscounted or 'lost' and still say with a straight face there was no cheating. Trump would do anything legal or illegal to keep his ass out of prison. But 'LEtS nOt dO tHIs gUyS!!'", 'created': '2024-11-15 01:38:13', 'submission_id': '1grdz9f'}
{'comment': 'Talk about it, but it’s not going to go anywhere just like the 2020 election. The results aren’t going to change. You want to talk about how Republicans use election interference, gerrymandering and suppression, sure. That’s a real problem that needs to be addressed.', 'created': '2024-11-15 04:52:27', 'submission_id': '1grdz9f'}
{'comment': "But the fix is already in. They can get rid of Trump the day after he's inaugurated and have Vance run the show for the next eight years.", 'created': '2024-11-14 23:13:14', 'submission_id': '1grdz9f'}
{'comment': 'Just yesterday or the day before Trump was once again "joking" about a third term. With any luck, Nature might keep that from happening.', 'created': '2024-11-15 15:44:29', 'submission_id': '1grdz9f'}
{'comment': 'Hope your correct', 'created': '2024-11-15 02:28:32', 'submission_id': '1grdz9f'}
{'comment': None, 'created': '2024-11-15 05:08:25', 'submission_id': '1grdz9f'}
{'comment': 'I used to put myself in the shoes of Germans and try to understand what they experienced in real time, as their country fell apart. \n\n\nThen I see uneducated comments like yours and I get it.', 'created': '2024-11-15 00:44:12', 'submission_id': '1grdz9f'}
{'comment': 'Taking away guns would really create a revolution in this country.', 'created': '2024-11-15 00:43:31', 'submission_id': '1grdz9f'}
{'comment': 'Exactly', 'created': '2024-11-15 13:07:21', 'submission_id': '1grdz9f'}
{'comment': ' i never said, "trump can\'t do...."', 'created': '2024-11-15 00:09:04', 'submission_id': '1grdz9f'}
{'comment': 'Thanks.', 'created': '2024-11-15 01:12:22', 'submission_id': '1grdz9f'}
{'comment': '"Never interrupt your enemy when he is making a mistake." --Napoleon Bonaparte', 'created': '2024-11-15 20:05:07', 'submission_id': '1grdz9f'}
{'comment': 'Due to a lot of idiots, ignorance, uneducated, hateful people. Take your pick or all of the above.', 'created': '2024-11-15 16:24:59', 'submission_id': '1grdz9f'}
{'comment': 'If we survive long enough the damage will result in us having to have another D-day in Europe 10-20 years from now. All that progress from WW2 pissed away. It’s beyond tragic.', 'created': '2024-11-15 04:26:35', 'submission_id': '1grdz9f'}
{'comment': 'Oh that shit IS happening. I’m making my prediction now. Putin and XI plan this down to the letter. 2025-2026 they both attack Taiwan and the rest of Europe simultaneously. Insta-fucked for the planet.\n\nEdit: forgot one point. North Korea also simultaneously attacks South Korea.', 'created': '2024-11-15 02:58:16', 'submission_id': '1grdz9f'}
{'comment': 'She was just untrustworthy.', 'created': '2024-11-15 05:11:26', 'submission_id': '1grdz9f'}
{'comment': "The FBI has put out a reward for the people responsible for setting mailboxes on fire. There was something like 36 bomb threats on Georgia on election day. \n\nAnd don't forget the recent raids.\n\nIt's been proven that Trump has committed election interference in the last 2 elections. Is it really that much of a stretch that he (and some co-conspirators) learned from the last 2 times, as well s got some advice from Putin, to get it right this time?\n\nIf it's investigated and nothing comes from it, fine. But I don't think there's anything wrong with asking questions.", 'created': '2024-11-15 01:49:57', 'submission_id': '1grdz9f'}
{'comment': 'Vance would never win a general election if they did that to Trump. The base would riot. Trump is the cult.', 'created': '2024-11-15 03:36:33', 'submission_id': '1grdz9f'}
{'comment': 'So Republicans will impeach Trump to get Pants? Um OK I guess.\n\nLol!', 'created': '2024-11-14 23:23:40', 'submission_id': '1grdz9f'}
{'comment': 'Careful, if Vance is in too long, he becomes the incumbent in 2028. The "known" guy. I don\'t want that.', 'created': '2024-11-15 22:19:38', 'submission_id': '1grdz9f'}
{'comment': 'It’s not up to him. The 22nd Amendment could not be more clear on the issue.', 'created': '2024-11-15 16:57:58', 'submission_id': '1grdz9f'}
{'comment': "Then please--in your all knowing hubris--educate me on why that would trigger civil war.\n\nI'll be waiting for that educated response!", 'created': '2024-11-15 02:14:04', 'submission_id': '1grdz9f'}
{'comment': "The mistake would be letting him - likely a criminal - take the office that has control over the entirety of law enforcement in this country. Bonaparte's message does more for my side than yours. The mistake would be to do nothing and just let corruption take control over critical institutions without any check on it. We can easily keep Gaetz out. We should.", 'created': '2024-11-15 20:10:48', 'submission_id': '1grdz9f'}
{'comment': 'I’m gonna go with all of the above.', 'created': '2024-11-15 16:25:42', 'submission_id': '1grdz9f'}
{'comment': 'Such a damn shame. But everyone keeps saying the US is a young country. Internal conflict will escalate just like in any other nations. I feel like regardless of what happens within the next 5-20 years, us humans are so selfish. We will never coexist with others in peace. We always manage to fuck shit up.', 'created': '2024-11-15 05:35:47', 'submission_id': '1grdz9f'}
{'comment': 'So nice of the Trump voters to donate their sons to the War Machine.', 'created': '2024-11-15 16:11:03', 'submission_id': '1grdz9f'}
{'comment': "Yeah there's nothing wrong with asking questions and all of this stuff needs to be seriously investigated by the Dems still in power.", 'created': '2024-11-15 01:56:37', 'submission_id': '1grdz9f'}
{'comment': 'Hahahha you think we will have national elections?', 'created': '2024-11-15 04:32:57', 'submission_id': '1grdz9f'}
{'comment': "You're SO CLOSE to getting it.", 'created': '2024-11-15 16:16:33', 'submission_id': '1grdz9f'}
{'comment': "No, they could enact the 25th Amendment on him. Or he could just resign.\n\nYou can chuckle all you want, but seriously you should be hoping for the best but expecting the ABSOLUTE FUCKING WORST from a guy who has 34 felony convictions and isn't going to prison for them.", 'created': '2024-11-15 00:58:16', 'submission_id': '1grdz9f'}
{'comment': "Impeachment isn't necessary, if they get Vance and the cabinet to invoke the 25th Amendment. I don't know how that will go with the MAGA crowd though.", 'created': '2024-11-14 23:29:56', 'submission_id': '1grdz9f'}
{'comment': "Honestly, I'm tired of giving history lessons to 18 year old dudes who don't know what's going on. If you don't think civil war is possible given the last 10 years plus Trump silencing comedians mocking him, and well *gestures at everything* that's fine. One less person to worry about when war does get here, because they didn't see it coming.", 'created': '2024-11-15 02:58:01', 'submission_id': '1grdz9f'}
{'comment': "Trump is going to weaponize the Justice Department as much as he can. He's going to try to fill the Pentagon with yes men. I'd much rather he do that with two incompetents who don't know the tactics, don't know the terrain, and lack any obvious ability to win over detractors than a couple of unknown quantities.\n\nMore than any other part of government, I trust the strategic minds at the Pentagon and the naturally argumentative, legally trained heads at the Justice Department to take care of themselves in the face of bad political appointees. How well democracy survives the next four years depends very much on how well we force Trump to deplete his resources not getting things done. This double quagmire could be a huge drain on that.\n\nWhen it comes to policy, it's important to hold onto idealism. This isn't that. The policy comes from Trump himself. This is about who tries to execute that policy for him. That's politics and, now more than ever, politics is a knife fight.", 'created': '2024-11-15 20:21:34', 'submission_id': '1grdz9f'}
{'comment': 'This. I feel this time around it’ll be a combo of WW3 plus civil war 2 at home.', 'created': '2024-11-15 15:53:51', 'submission_id': '1grdz9f'}
{'comment': "I mean, Russia technically has elections. I don't think the appearance of the elections are going anywhere. It'll just be the value of the outcome left in question after the autocrats get done dismantling anything good left in our government.", 'created': '2024-11-15 08:17:03', 'submission_id': '1grdz9f'}
{'comment': 'Yes, because the states conduct the elections, not the federal government.', 'created': '2024-11-15 16:58:35', 'submission_id': '1grdz9f'}
{'comment': 'You’re so far from getting it. The states run elections, not the federal government. There will be elections, and Vance would lose if they did what you’ve described. Stop fearmongering.', 'created': '2024-11-15 16:56:41', 'submission_id': '1grdz9f'}
{'comment': "It's so unlikely that either of those things happens. Hence my ridicule.\nBut if it DID happen I doubt Pants would be worse than Trump. He is smart enough IMO to not let the country burn to the ground.\nPlus more importantly Pants isn't under any legal threats like Trump. Pants would likely quietly restore most of the older rules and freedoms that mainstream Republicans want. Riots and widespread violence are bad for the wealthy and bad for business.", 'created': '2024-11-15 01:31:21', 'submission_id': '1grdz9f'}
{'comment': 'I doubt 25th Amendment would work.\nTrump is still somewhat sentient.\nImpeachment however WOULD work and there is ample evidence to support it.', 'created': '2024-11-15 01:11:13', 'submission_id': '1grdz9f'}
{'comment': ">I'm tired of giving history lessons to 18 year old dudes\n\nThere is your hubris again. \n\n>If you don't think civil war is possible\n\nAh. So you think in strawman arguments. That's not very helpful for critical thinking.\n\nI suggest you reread my post that you responded to.\n\nBut it is a ludicrous notion to think that tens of millions of Americans are going to rise up to engage in the horrible monstrosity of civil war, because Trump suppresses late night talk show hosts. \n\nOr maybe you don't know what civil war means? Maybe to you it means some protests and little acts of rebellion? If so, I suggest you study some more history.\n\nSo far, you haven't seen very educated.", 'created': '2024-11-15 03:38:50', 'submission_id': '1grdz9f'}
{'comment': 'Ya. Might as well have that or have our planet conquered by aliens or get hit by an asteroid. SMH', 'created': '2024-11-15 16:06:59', 'submission_id': '1grdz9f'}
{'comment': 'Unfortunately, I think you’ve hit the nail on the head with that statement.', 'created': '2024-11-15 16:39:49', 'submission_id': '1grdz9f'}
{'comment': "You're incredibly naive if you think free elections will be guaranteed in the future.", 'created': '2024-11-15 17:38:51', 'submission_id': '1grdz9f'}
{'comment': "Why would you think pretty boy Vance would do the right thing when he hasn't so far?", 'created': '2024-11-15 16:17:23', 'submission_id': '1grdz9f'}
{'comment': 'No, not for suppressing them.\n\nJailing them outright. Exiling them. Or just taken out back for the firing squad.\n\nThem, the Latinos (all of them), the Blacks, the Women, the LGBTQ+ community. \n\nWhat\'s coming is gonna be extremely nasty and isn\'t going to stop with a "strawman argument".\n\nAnd I\'ve be extremely well educated. Especially in history. And 10 times out 10, things go extremely bad from here. Extremely bad. \n\nPerhaps not a civil war, just a nice war with all Central and South America. Perhaps a lovely conflict in Iran. Perhaps a wonderful attack against China or some other place.\n\nMark these words. At the end of these 4 years, hell will seem like a wonderful vacation.', 'created': '2024-11-15 06:31:58', 'submission_id': '1grdz9f'}
{'comment': "I don't have any objective evidence just intuition.", 'created': '2024-11-15 20:09:57', 'submission_id': '1grdz9f'}
{'comment': ">No, not for suppressing them.\n\nThat was the claim of the other person. And that's what I quoted. Before you threw out an ad hominem attack because you lack the ability to perceive what's being said.\n\nAnd still running with the strawman argument in this response. With an appeal to authority.\n\nHere. This might help you educate yourself \n\nhttps://thelogicofscience.com/2017/03/14/the-importance-of-logical-fallacies/", 'created': '2024-11-15 12:02:45', 'submission_id': '1grdz9f'}
{'comment': "Relax raist.\n\nIt'd help not attacking others and calling them dumb. You're picking dumb fights.\n\nJust help others that need it.", 'created': '2024-11-16 09:51:09', 'submission_id': '1grdz9f'}
{'comment': 'My man, many norms we’ve taken for granted have been steadily dismantled over the past decade.\n\nThe stage is being increasingly set up for a triggering event that will straight up cause people to snap. We just don’t know exactly what form that incident will take, but all the anger that exists and is building up in similar ways isn’t just going to diffuse away, especially if Donny intends to grip onto that power as long as he wants to try to.', 'created': '2024-11-15 13:16:17', 'submission_id': '1grdz9f'}
{'comment': 'Them motherfuckers are brainWASHED, RINSED AND DRIED', 'created': '2024-11-14 20:50:08', 'submission_id': '1grd4y5'}
{'comment': 'How are you supposed to get people back that are this stupid? How the fuck did Trump covince so many people to act this way?', 'created': '2024-11-14 20:58:15', 'submission_id': '1grd4y5'}
{'comment': 'Is it any wonder Democrats lost when you have people going against their own interests to this extent?', 'created': '2024-11-14 20:34:32', 'submission_id': '1grd4y5'}
{'comment': 'Trump supporters constantly vote against their own interests', 'created': '2024-11-14 20:46:47', 'submission_id': '1grd4y5'}
{'comment': 'We need a populist democrat that just said word salad that sounds really smart to dumb people. \n\n\nWe are going to fix the economy with flux capacitors made in the USA by real Americans. We will cure every disease and everyone will he super ripped and muscular with our new HUNK bill. We will encourage supermodels from every country to immigrate here and marry incels. We will cut your taxes to 0% and also give everyone $1M.\n\n\nIf our policies dont work, blame the republicans.', 'created': '2024-11-14 21:32:22', 'submission_id': '1grd4y5'}
{'comment': 'It’s kind of refreshing to meet a genuinely stupid person on occasion.', 'created': '2024-11-14 21:04:08', 'submission_id': '1grd4y5'}
{'comment': "If he doesn't care if he gets deported then why hasn't he left yet? Why even bother to vote for a guy to run a country you're gonna be kicked out of? \n\nLiteral brainworms.\n\nEdit: whoops, didn't see that he can't vote lol\n\nStill, his support is beyond stupid.", 'created': '2024-11-14 20:58:44', 'submission_id': '1grd4y5'}
{'comment': 'Ahem... "when" he\'s deported', 'created': '2024-11-14 21:12:11', 'submission_id': '1grd4y5'}
{'comment': 'If he doesn’t care, then who am I, to care about what happens to him? \n\nI think we’ve all had enough of the nonsense from those that voted against their own interests, and ours. It’s just a shame that they’re not the only ones that are gonna deal with the fucked up mess that we’ve all inherited.', 'created': '2024-11-14 21:13:44', 'submission_id': '1grd4y5'}
{'comment': 'If he’s undocumented he can’t vote.', 'created': '2024-11-14 20:57:28', 'submission_id': '1grd4y5'}
{'comment': 'Ok so let’s send him in his way now.', 'created': '2024-11-14 20:52:32', 'submission_id': '1grd4y5'}
{'comment': "Obviously, he couldn't vote but supported Trump to deport his friends. I don't know what to say other than he's not needed as a voter.", 'created': '2024-11-14 20:58:19', 'submission_id': '1grd4y5'}
{'comment': 'Talk about cutting your nose off to spite your face.', 'created': '2024-11-14 20:58:49', 'submission_id': '1grd4y5'}
{'comment': 'Well guess what buddy...', 'created': '2024-11-14 21:08:42', 'submission_id': '1grd4y5'}
{'comment': 'Good then those are the people that need to go to the head of the line. \n\nI have to ask though why did you come here in the first place and spend your life worrying about being snatched up in the middle of the night and sent back to your country?', 'created': '2024-11-14 21:13:50', 'submission_id': '1grd4y5'}
{'comment': 'I would hope someone is calling ICE to let them know where this guy lives. Let’s truly see how he likes it.', 'created': '2024-11-14 21:46:54', 'submission_id': '1grd4y5'}
{'comment': 'He’s undocumented. What “support” can he offer?', 'created': '2024-11-14 21:07:06', 'submission_id': '1grd4y5'}
{'comment': "He's clearly lying and most likely doesn't believe for a second that he will be deported. His tune will change the moment they lock him up in a cage and ship him out.", 'created': '2024-11-14 21:00:28', 'submission_id': '1grd4y5'}
{'comment': 'Only one way to find out for sure.', 'created': '2024-11-14 20:51:13', 'submission_id': '1grd4y5'}
{'comment': 'Support even after he deports. This is the type of people that we are talking about', 'created': '2024-11-14 20:58:34', 'submission_id': '1grd4y5'}
{'comment': "It's like a Jew saying he will support the Nazis in the hopes OTHER Jews may be persecuted but not him.\n\nThat just makes him a traitor.", 'created': '2024-11-14 21:39:40', 'submission_id': '1grd4y5'}
{'comment': "His support is in voice only. He can't vote, so he basically supports millions of people who think he's vermin.", 'created': '2024-11-14 21:48:01', 'submission_id': '1grd4y5'}
{'comment': 'And suddenly I’m in favor of deportation.', 'created': '2024-11-14 22:00:41', 'submission_id': '1grd4y5'}
{'comment': "Dude thinks because he has citizen kids, he won't be kicked out. I've been through US immigration- these people are LOOKING for a way to keep you out, even before trump. Say goodbye to your kids, bro because you're going back.", 'created': '2024-11-15 12:04:08', 'submission_id': '1grd4y5'}
{'comment': 'Let him support Trump from wherever he came from.', 'created': '2024-11-15 13:45:59', 'submission_id': '1grd4y5'}
{'comment': "Let's ask him again, after he's deported.", 'created': '2024-11-14 22:11:19', 'submission_id': '1grd4y5'}
{'comment': "Then, I won't regret him being deported. It's apparently what he wants.", 'created': '2024-11-15 02:43:42', 'submission_id': '1grd4y5'}
{'comment': 'Undocumented people can’t vote so he just ran his mouth? Buh bye', 'created': '2024-11-15 03:07:47', 'submission_id': '1grd4y5'}
{'comment': "Oh no! The Democrats didn't help me enough but they don't want to deport me, so I'll vote for the guy that will. ????? Wtf?", 'created': '2024-11-15 13:36:49', 'submission_id': '1grd4y5'}
{'comment': 'He didn’t vote so I don’t care if he supports Trump.', 'created': '2024-11-14 21:08:18', 'submission_id': '1grd4y5'}
{'comment': 'Do what now? 🫠', 'created': '2024-11-14 21:41:36', 'submission_id': '1grd4y5'}
{'comment': 'Okay then good riddance.', 'created': '2024-11-14 21:49:16', 'submission_id': '1grd4y5'}
{'comment': 'This is good news, I was worried I was going to have to feel sorry for them. Apparently my empathy will die right before our democracy.', 'created': '2024-11-14 21:53:36', 'submission_id': '1grd4y5'}
{'comment': 'Bye bye buddy', 'created': '2024-11-14 22:04:14', 'submission_id': '1grd4y5'}
{'comment': "I won't regret said undocumented worker getting booted out of the country either. Now, if only we could figure out how to boot the voters who did support Trump out of the country too. ..", 'created': '2024-11-14 22:19:35', 'submission_id': '1grd4y5'}
{'comment': 'Im trying incredibly hard to be respectful here, because I respect democracy and peoples own choices… but when peoples brains actually work this way, and follow this thought process…\n\n….then sanity, rationale, and compassion were never going to win.', 'created': '2024-11-14 22:29:53', 'submission_id': '1grd4y5'}
{'comment': 'Listen, we just don’t need people that stupid living in this country sorry lol', 'created': '2024-11-14 23:02:34', 'submission_id': '1grd4y5'}
{'comment': 'Good, seeya', 'created': '2024-11-14 23:05:01', 'submission_id': '1grd4y5'}
{'comment': 'Of course not. They are never going to admit they made a mistake, especially this close to the election.', 'created': '2024-11-15 00:01:51', 'submission_id': '1grd4y5'}
{'comment': 'Give him what he wants.', 'created': '2024-11-15 00:03:25', 'submission_id': '1grd4y5'}
{'comment': 'I probably say this every week but if THIS isn’t a cult, I don’t know what is. This man is willing to be thrown into a concentration camp and then deported all for his devotion to Trump.', 'created': '2024-11-15 00:53:41', 'submission_id': '1grd4y5'}
{'comment': 'That makes two of us.\n\nMmmmmmm.... POPCORN!', 'created': '2024-11-15 01:44:50', 'submission_id': '1grd4y5'}
{'comment': 'https://preview.redd.it/tpi8lhlo0z0e1.jpeg?width=850&format=pjpg&auto=webp&s=429081008cf47a6e0159d900552b85b2c72405de', 'created': '2024-11-15 02:47:56', 'submission_id': '1grd4y5'}
{'comment': 'brainWASH, RINSE, REPEAT.', 'created': '2024-11-15 05:31:07', 'submission_id': '1grd4y5'}
{'comment': 'Wait until they come for his family and friends and penalize employers out of business. He’s not your friend dude.', 'created': '2024-11-15 11:05:30', 'submission_id': '1grd4y5'}
{'comment': 'Good. Get him out of here.', 'created': '2024-11-15 14:51:05', 'submission_id': '1grd4y5'}
{'comment': "These stupid ass men are so against ever seeing women in power that they'd rather get deported. I guarantee if it comes true, they'd be bitching and moaning the whole time.", 'created': '2024-11-15 16:16:09', 'submission_id': '1grd4y5'}
{'comment': 'Oh for heaven’s sake.', 'created': '2024-11-14 21:29:56', 'submission_id': '1grd4y5'}
{'comment': 'You know, I would´ve just bought him a plane ticket, we didńt have to destroy the country', 'created': '2024-11-14 21:30:13', 'submission_id': '1grd4y5'}
{'comment': 'So he’s here to sabotage democracy for the rest of us. Yeah got it. If you can’t have it no one else can either.', 'created': '2024-11-14 22:29:00', 'submission_id': '1grd4y5'}
{'comment': "He didn't vote if he's undocumented, unless he did it illegally.", 'created': '2024-11-14 22:31:05', 'submission_id': '1grd4y5'}
{'comment': "* when he's deported", 'created': '2024-11-14 22:51:24', 'submission_id': '1grd4y5'}
{'comment': 'There’s that lack of common sense that is so evident in so many Trump supporters.', 'created': '2024-11-14 23:29:07', 'submission_id': '1grd4y5'}
{'comment': 'So?? He can’t vote. Zero impact in the election.', 'created': '2024-11-15 00:00:09', 'submission_id': '1grd4y5'}
{'comment': "I don't think he could vote though? Undocumented people aren't allowed to vote", 'created': '2024-11-15 00:57:52', 'submission_id': '1grd4y5'}
{'comment': "If he's undocumented and can't vote, then who cares what he thinks.", 'created': '2024-11-15 01:10:37', 'submission_id': '1grd4y5'}
{'comment': 'Of course he says that, nobody wants to admit they screwed up. Regret will kick in when he is dumped w no money in a border town.😢😞', 'created': '2024-11-15 01:12:53', 'submission_id': '1grd4y5'}
{'comment': '"Whatever you say alien, get back in line."\n\n-Border Agent to this guy in the future', 'created': '2024-11-15 02:50:29', 'submission_id': '1grd4y5'}
{'comment': 'what in the brainbroken did I just read', 'created': '2024-11-15 07:33:13', 'submission_id': '1grd4y5'}
{'comment': "He knows that for having said that to the clickbait media, he will be the one that gets to stay... That's how this is going to work: \n \nWorship Trump, Media Cares, You Win. \n \nOR\n \nThink Trump is a felon & petty dictator, media ignores, you lose.", 'created': '2024-11-15 12:06:56', 'submission_id': '1grd4y5'}
{'comment': "I hope he won't be whining about it once he got deported", 'created': '2024-11-15 17:00:14', 'submission_id': '1grd4y5'}
{'comment': 'hate to say but maybe universal support of illegal aliens is a lost cause for Dems. There are some like this dude that are just mocking us for bending over backwards to protect his rights & help him achieve his dream. Dems may have to consider pulling back & narrowing their position to cover undocumented families with kids.', 'created': '2024-11-15 19:41:59', 'submission_id': '1grd4y5'}
{'comment': 'Of course, if he was dumb enough to vote for Trump he may not know what deported means...', 'created': '2024-11-14 20:52:31', 'submission_id': '1grd4y5'}
{'comment': "Well he's fucking stupid.", 'created': '2024-11-14 21:11:20', 'submission_id': '1grd4y5'}
{'comment': 'Then hopefully he goes first', 'created': '2024-11-14 21:30:42', 'submission_id': '1grd4y5'}
{'comment': "As a Democrat, I say deport him, if he's here illegally. Just like all immigrants that are here illegally, no matter what country they came from. Canada, El Salvador, England, Italy, Brazil. Deport them. That's what other countries do.", 'created': '2024-11-15 01:05:59', 'submission_id': '1grd4y5'}
{'comment': 'How did he vote?', 'created': '2024-11-14 20:45:56', 'submission_id': '1grd4y5'}
{'comment': 'Well, atleast I’m not blaming us anymore. Only so much you can do, then it’s … enjoy\n\n\nOf course and undocumented guy voting for Trump certainly explains the results… guessing this illegal vote is ok', 'created': '2024-11-14 20:52:37', 'submission_id': '1grd4y5'}
{'comment': "That's some boot licking right there...", 'created': '2024-11-14 21:16:33', 'submission_id': '1grd4y5'}
{'comment': "I'm calling bs on this one. Illegals can't vote. Nor would they go on social media to announce their illegality.", 'created': '2024-11-15 00:02:05', 'submission_id': '1grd4y5'}
{'comment': 'Support? Can this guy even legally vote?', 'created': '2024-11-14 21:06:18', 'submission_id': '1grd4y5'}
{'comment': 'Okay', 'created': '2024-11-14 20:55:26', 'submission_id': '1grd4y5'}
{'comment': "I pay no attention to these things because let's be honest....he can say whatever he wants to keep from having to prove anyone right. Let's see how he feels when he is back wherever he came from and his life is uprooted.", 'created': '2024-11-14 21:33:26', 'submission_id': '1grd4y5'}
{'comment': "Ooh, let's turn his name in since he is happy to be deported!!!", 'created': '2024-11-14 21:52:29', 'submission_id': '1grd4y5'}
{'comment': 'Yikes', 'created': '2024-11-14 22:08:29', 'submission_id': '1grd4y5'}
{'comment': 'You see the mentality is if you hate the same people they hate, you are A OKAY in their eyes', 'created': '2024-11-14 22:12:37', 'submission_id': '1grd4y5'}
{'comment': 'Of course. Why does this surprise anyone? They adore as in truly worship Trump as the risen messiah. He\'s their "tough guy" barroom brawler cowboy archetype to a blue collar culture that echews intellctualism. If he literally beat someone to the ground on TV they would have swooned and voted for him even more enthusiastically.\n\nThe question is how do you cater to that voter which IS the uneducated white male / Hispanic male / white woman / angry redneck voter base that is Trump\'s fawning base. They embrace anti-science rhetoric nonsense, racism, misogyny, chaos, rage, fear mongering and voted for him not despite but BECAUSE of his felony convictions and sexual harassment charges and massaging a microphone and bizarre angry racist behavior. They wish they could behave that way and be above the law and as this guy says, even if he is deported he would be deported with a smile on his face and love it.\n\nI hope this imbecile is deported and can be shipped back with a grin on is face and gleam in his eye. His "tough guy" vulgar brawler will also clap his hands in glee and they can celebrate together. As the video said, they would sooner vote for their own abuser than vote for a woman first and then a woman of color secondly.', 'created': '2024-11-14 22:14:28', 'submission_id': '1grd4y5'}
{'comment': 'Then he should just leave. Oh no. Stay. And i hope they capture you and make you a slave! Enjoy.', 'created': '2024-11-14 22:21:53', 'submission_id': '1grd4y5'}
{'comment': 'Undocumented mechanic states out loud and without any uncertainty, “I am a very stupid guy.”\nFixed the headline.', 'created': '2024-11-14 22:22:25', 'submission_id': '1grd4y5'}
{'comment': 'Can\'t wait to see him find out he\'s not "one of the good ones."', 'created': '2024-11-14 22:22:59', 'submission_id': '1grd4y5'}
{'comment': 'Good.. hope he gets a head start out of the country and let the door hit him in the ass', 'created': '2024-11-14 22:23:48', 'submission_id': '1grd4y5'}
{'comment': 'Maybe they want undocumented immigrants to vote afterall', 'created': '2024-11-14 22:24:15', 'submission_id': '1grd4y5'}
{'comment': 'Attention: The voters are the voters. We need to stop complaining about them and focus on reaching them. Their side has. Our side hasn’t. Period. \n\nWe spend all our time on policy and polishing our message to showcase our policy. We’ve completely allowed the other side to both convince millions that the party of grift and plutocrats are on their side by ignoring the channels people get their (dis)information from. That’s what we need to fix - reaching people and convincing them that 1) We understand AND PRIORITIZE their concerns and, 2) relentlessly explain who is really to blame, simply and in terms they understand. Engagement is key. In the bars, in the Union Halls, in engaging - to them - podcasts and broadcasts and discord servers and everything else.', 'created': '2024-11-14 22:27:06', 'submission_id': '1grd4y5'}
{'comment': "He's even stupid enough to go on national media to say he's undocumented.", 'created': '2024-11-14 22:30:38', 'submission_id': '1grd4y5'}
{'comment': 'Personally, I don’t think folks like him will be deported. I think we’re going to see work camps. Closest to slavery the bastards can get.', 'created': '2024-11-14 22:39:23', 'submission_id': '1grd4y5'}
{'comment': 'So is he volunteering to leave the U.S. first?', 'created': '2024-11-14 22:43:08', 'submission_id': '1grd4y5'}
{'comment': '“Don’t know what ya got until its gone”\n\nSo he’ll get rid of everything so he knew what he had…😆🤘\n\n', 'created': '2024-11-14 22:47:50', 'submission_id': '1grd4y5'}
{'comment': "Support and voted are 2 different things. He could have convinced others who could vote to vote for Trump which would have a real impact. It's still totally stupid of course. Maybe he's hoping his story and go viral enough for Steven Miller to get him a job as a media stooge? We live in a very weird time in history.", 'created': '2024-11-14 23:10:29', 'submission_id': '1grd4y5'}
{'comment': 'He should self deport', 'created': '2024-11-14 23:14:13', 'submission_id': '1grd4y5'}
{'comment': 'Maybe he should just leave in his own?', 'created': '2024-11-14 23:17:17', 'submission_id': '1grd4y5'}
{'comment': '"LoL" said the scorpion. "Lmao"', 'created': '2024-11-14 23:26:30', 'submission_id': '1grd4y5'}
{'comment': 'https://preview.redd.it/zo3mjusu1y0e1.jpeg?width=960&format=pjpg&auto=webp&s=079b75283308d8d6d9922217b6af088662f752ff', 'created': '2024-11-14 23:32:30', 'submission_id': '1grd4y5'}
{'comment': 'Bye!', 'created': '2024-11-14 23:39:57', 'submission_id': '1grd4y5'}
{'comment': 'I can’t speak Spanish but if I could I would say “Adios Amigo, hasta la vista, enjoy new vistas!!”', 'created': '2024-11-14 23:56:11', 'submission_id': '1grd4y5'}
{'comment': "I guarantee once he's back in his home country broke and alone he'll be pissed", 'created': '2024-11-14 23:56:15', 'submission_id': '1grd4y5'}
{'comment': 'Get back to me in 12 months. By the way does he want to provide his contact information?', 'created': '2024-11-14 23:56:54', 'submission_id': '1grd4y5'}
{'comment': 'Yeah, and I’m sure the diabetic doesn’t mind eating a shit ton of sugar either', 'created': '2024-11-15 00:11:17', 'submission_id': '1grd4y5'}
{'comment': 'Drinking too much of the trumper kool-aid.', 'created': '2024-11-15 00:38:56', 'submission_id': '1grd4y5'}
{'comment': 'This is the consistency I was looking for', 'created': '2024-11-15 00:49:39', 'submission_id': '1grd4y5'}
{'comment': "I wonder how much money he made telling that lie.\n\nI have a whole family of immigrants of varying statuses and I know better.\n\nNot clicking on CNN anymore. They are part of the reason we're in the mess we're in.", 'created': '2024-11-15 00:52:20', 'submission_id': '1grd4y5'}
{'comment': 'Get going then. That’s what your boss wants', 'created': '2024-11-15 01:20:42', 'submission_id': '1grd4y5'}
{'comment': 'In the DSM it is referred to as Stockholm Syndrome', 'created': '2024-11-15 01:23:51', 'submission_id': '1grd4y5'}
{'comment': 'Because he\'s obviously stupid. I wonder if his family will welcome him back with open arms, or will they think, "What a dumbass!"', 'created': '2024-11-15 01:25:11', 'submission_id': '1grd4y5'}
{'comment': "you can't save these people, all you can do is avoid them, and hopefully, they die out naturally.", 'created': '2024-11-15 16:25:22', 'submission_id': '1grd4y5'}
{'comment': 'Not shocked… anti-vaxxers who got COVID were giving interviews from the hospital rooms on oxygen saying they still wouldn’t have taken it if they could go back in time\n\nI am a 40 something white guy who owns a home and makes good money. The people that Kamala would have helped the most wasn’t me, but I wanted a better society overall for future generations and people trying to better themselves like I had to at one point\n\n\nI’m done… if people want to vote against their own interests, then let them get what they get', 'created': '2024-11-15 17:52:17', 'submission_id': '1grd4y5'}
{'comment': 'Good riddance!', 'created': '2024-11-16 04:47:48', 'submission_id': '1grd4y5'}
{'comment': 'Maybe this guy can move in with the Gay Latino guy from Chicago who bragged that he voted for a Trump even though he has undocumented family members who may get deported. They can all keep each other company in the camps.', 'created': '2024-11-16 07:12:57', 'submission_id': '1grd4y5'}
{'comment': 'I have a similar statement. I have been coming on Reddit and spouting my negative views in emotionally charged ways. But I have recognized the mistake I have made. My ethical values are defined by how I stay away from denigrating others. So, my behavior on Reddit has violated my standards and beliefs. It is my solemn oath to back and support Mr Trump at all cost and cause. For societal it has always been my belief, backing the sitting president. Giving him my all out support is here to fore my intent and desire. Respect the sitting president my honorable duty. Thanks.', 'created': '2024-11-14 23:57:58', 'submission_id': '1grd4y5'}
{'comment': 'racism is cool again', 'created': '2024-11-14 22:07:34', 'submission_id': '1grd4y5'}
{'comment': "and then perfumed with farts, rolled in shit, and convinced it's fabric softener\u200b", 'created': '2024-11-14 20:55:46', 'submission_id': '1grd4y5'}
{'comment': 'Undocumented immigrants CANT legally vote people. Only U.S. citizens. You can’t be both. It makes no difference if an undocumented immigrant says they support Trump. It matters not because they can’t vote. Posting this story as some truth just feeds into the notion that our election system is flawed and it’s overwhelmingly fair and lawful.', 'created': '2024-11-14 22:31:09', 'submission_id': '1grd4y5'}
{'comment': 'Seriously tho. Wtf. lol. They will throw their whole lives in the toilet for this man.', 'created': '2024-11-14 22:44:46', 'submission_id': '1grd4y5'}
{'comment': 'Perfectly said', 'created': '2024-11-14 23:27:43', 'submission_id': '1grd4y5'}
{'comment': 'He’s hateful towards the people they hate. Minorities/women/LGBT', 'created': '2024-11-14 22:01:43', 'submission_id': '1grd4y5'}
{'comment': "Maybe just maybe Dems are starting to realize how TRULY DANGEROUS lies and propaganda are. We are now on the precipice of losing our democracy.\nIt's kinda ironic actually.\nUnlimited free speech could lead to the COMPLETE LOSS OF FREE SPEECH. \n\nJust let that sink in for a moment.", 'created': '2024-11-14 23:14:58', 'submission_id': '1grd4y5'}
{'comment': 'Yeah I don’t want to hear about messaging.', 'created': '2024-11-15 05:11:34', 'submission_id': '1grd4y5'}
{'comment': 'It’s simple really. “Gas was cheaper when Trump was president” - Idiots', 'created': '2024-11-15 17:06:33', 'submission_id': '1grd4y5'}
{'comment': "He's undocumented - he can't vote. Like wtf????", 'created': '2024-11-14 20:54:49', 'submission_id': '1grd4y5'}
{'comment': "On the plus side, he's unlikely to be here in 2028.\n\nIn 2020, Trump's loss could be traced back in some meaningful way to how many of his most fervent supporters died of COVID. This time, he's going to deport one of the voting blocs that got him over the top.", 'created': '2024-11-14 20:41:43', 'submission_id': '1grd4y5'}
{'comment': "Hate and fear are both strong emotions. It's hard to break through the cult of disinformation.", 'created': '2024-11-14 21:04:21', 'submission_id': '1grd4y5'}
{'comment': "If Reps can convince people to vote against their interests, it should be on Dems to convince people to vote for these. But yeah, it's quite the mountain to climb with people like that.", 'created': '2024-11-14 20:37:56', 'submission_id': '1grd4y5'}
{'comment': 'If he hates someone that much it’s really not surprising. There’s nothing anyone can do or say no matter what’s in his best interests.', 'created': '2024-11-14 22:51:07', 'submission_id': '1grd4y5'}
{'comment': 'Yeah—you can’t beat a cult with traditional methods.', 'created': '2024-11-14 21:13:50', 'submission_id': '1grd4y5'}
{'comment': "I'm assuming this one didn't vote since he's undocumented.", 'created': '2024-11-14 21:49:44', 'submission_id': '1grd4y5'}
{'comment': "Well...in fairness it's kind of a long standing republican tradition.", 'created': '2024-11-15 05:48:00', 'submission_id': '1grd4y5'}
{'comment': "What you said won't work. First off, none of your sentences trailed off into nothing. Secondly, capacitor has too many syllables. They'd know the Democrat read a book once, so he's obviously part of the liberal elite.", 'created': '2024-11-14 21:49:36', 'submission_id': '1grd4y5'}
{'comment': 'This country sucks', 'created': '2024-11-14 22:23:48', 'submission_id': '1grd4y5'}
{'comment': "Can't vote", 'created': '2024-11-14 21:27:39', 'submission_id': '1grd4y5'}
{'comment': "Mate, he literally can't vote lol", 'created': '2024-11-14 21:34:44', 'submission_id': '1grd4y5'}
{'comment': 'Doesn’t say he voted.', 'created': '2024-11-14 21:06:32', 'submission_id': '1grd4y5'}
{'comment': 'He probably bought hats and other BS.', 'created': '2024-11-14 21:12:49', 'submission_id': '1grd4y5'}
{'comment': "Or lock him up and make him part of the new prison slave labor force they want to build. \n\nThere's worse things than deportation.", 'created': '2024-11-14 21:57:10', 'submission_id': '1grd4y5'}
{'comment': 'I still don’t understand why some Latinos identify as white when they’re clearly a minority.', 'created': '2024-11-14 22:25:32', 'submission_id': '1grd4y5'}
{'comment': 'I guess you can support a candidate without voting for them.', 'created': '2024-11-14 20:46:49', 'submission_id': '1grd4y5'}
{'comment': 'He didn’t but he probably influenced some of his friends and family who could vote to vote for Trump', 'created': '2024-11-14 21:01:18', 'submission_id': '1grd4y5'}
{'comment': "He can't vote he's undocumented.", 'created': '2024-11-14 20:53:42', 'submission_id': '1grd4y5'}
{'comment': 'I dunno. It sounds like he’s undocumented, he voted for the guy that wants to deport him. Now he says he has no regrets about his vote even if he gets deported. Trump wants to deport him. So if we can’t agree he should be deported heaven help us!!', 'created': '2024-11-14 21:57:44', 'submission_id': '1grd4y5'}
{'comment': "He's clearly brainwashed whether he can vote or not. It's just... it's like we're the protagonists of a shitty 90's Saturday morning cartoon where everything's a dystopia and we're some of the few people in the world who weren't taken in by the supervillain's mind control weapon. It's spooky af to listen to these people talk.", 'created': '2024-11-14 22:34:29', 'submission_id': '1grd4y5'}
{'comment': 'He just said he supports him, not that he voted for him. But there are actual citizens who had the same status and beginnings who both supported and voted for him.', 'created': '2024-11-15 05:45:52', 'submission_id': '1grd4y5'}
{'comment': 'This is a good hill to fight on. But this isn’t what we are talking about.', 'created': '2024-11-14 22:40:50', 'submission_id': '1grd4y5'}
{'comment': 'Some Latinos even identify as white, so they don’t see themselves as a minority', 'created': '2024-11-14 22:23:12', 'submission_id': '1grd4y5'}
{'comment': 'Russia did this! fuck Trump and Putin.\n\nGod bless America!, Slava Ukrani!', 'created': '2024-11-15 00:19:52', 'submission_id': '1grd4y5'}
{'comment': 'Well clearly thats how some people feel which is insane', 'created': '2024-11-15 17:11:38', 'submission_id': '1grd4y5'}
{'comment': 'Not vote, “support” .. he can still convince others, send money etc etc! He’s actually trying to get in front of it now.. hoping Trump/Ice knows he’s one of “the good ones” .. smh\n\nWho even knew Spanish people hated each other this much! So many Latinos/Cubans etc don’t gaf what happens to the rest of them.. 🤯🤯🤯', 'created': '2024-11-14 21:16:56', 'submission_id': '1grd4y5'}
{'comment': 'COVID causes a loss of IQ in survivors\n\n\nhttps://www.scientificamerican.com/article/covid-19-leaves-its-mark-on-the-brain-significant-drops-in-iq-scores-are/', 'created': '2024-11-14 21:06:48', 'submission_id': '1grd4y5'}
{'comment': 'Oh, he’ll be here.\n\nBut he’ll be in a private prison working for the “federal” government as an imprisoned illegal alien for a few dollars a week.\n\nIf he actually gets relo’d to another country, he’ll be lucky.', 'created': '2024-11-14 21:53:48', 'submission_id': '1grd4y5'}
{'comment': 'He didn’t vote, but I bet he showed his support in other ways', 'created': '2024-11-14 22:02:05', 'submission_id': '1grd4y5'}
{'comment': 'Stupid people suck', 'created': '2024-11-15 07:25:30', 'submission_id': '1grd4y5'}
{'comment': 'My bad. I just assumed support meant voted for.', 'created': '2024-11-14 20:47:55', 'submission_id': '1grd4y5'}
{'comment': 'If you are undocumented, then you better not have voted', 'created': '2024-11-14 22:20:50', 'submission_id': '1grd4y5'}
{'comment': "Even though the stated reason was 'economy' - It feels like one guy couldn't deal with his own internal racism & misogyny. His sense of 'machismo' couldn't handle a black, female president. So rather than working on that he'd rather rely on Convicted Felon's questionable 'humanity?'\n\nSince he has no papers he's probably getting deported. I feel for his kids.", 'created': '2024-11-14 23:56:03', 'submission_id': '1grd4y5'}
{'comment': 'I feel like I\'m in "Persona" sometimes.', 'created': '2024-11-15 03:07:35', 'submission_id': '1grd4y5'}
{'comment': "There's so many of them that they are hardly a minority.", 'created': '2024-11-14 23:36:37', 'submission_id': '1grd4y5'}
{'comment': "Selfishness \n\nThat is the root of Trump's support, whether a white dude, black or Hispanic. To support Trump is to be a selfish, self-centered person \n\nThat mechanic worker is so dumb he cannot even see what would happen. He would be deported to a place where car mechanic work is so devaluated, and it's at the bottom of the income ladder. He forgot he has a job that pays the bills and allows for food and entertainment. Wait until he gets deported. He will be begging for a job in Mexico where ageism is a big problem. No one hires you if you are his age. He will be making $100 dlls a week if he is lucky to even get a job 💩💀", 'created': '2024-11-14 22:17:48', 'submission_id': '1grd4y5'}
{'comment': "They come from different countries. I don't know why somebody from Cuba would care for someone from Salvador. It's a competition. Especially someone who is a legal resident or citizen already.", 'created': '2024-11-14 23:45:00', 'submission_id': '1grd4y5'}
{'comment': 'People had a low IQ even before the pandemic.', 'created': '2024-11-14 22:22:07', 'submission_id': '1grd4y5'}
{'comment': 'I got covid 3 times and I legitimately feel dumber. I have suspected it for years now, so seeing this just confirms that.', 'created': '2024-11-14 22:36:37', 'submission_id': '1grd4y5'}
{'comment': 'Probably donated', 'created': '2024-11-14 22:05:28', 'submission_id': '1grd4y5'}
{'comment': 'Undocumented immigrants can’t actually vote, despite what Republicans say.', 'created': '2024-11-14 20:52:01', 'submission_id': '1grd4y5'}
{'comment': 'LOL doh!! Oops! He didn’t say he voted for Trump supported Trump. You have to forgive I haven’t sleep for like 9 years!', 'created': '2024-11-14 22:44:27', 'submission_id': '1grd4y5'}
{'comment': 'Not probably - he is. My brother works for ice and they have NO issue tearing families apart. He sees life in black and white - you are illegal, so you have to go. And this guy put his name out there, so if he has any enemies, 1 phone call will do it. Or 1 ICE employee watching will be on this.', 'created': '2024-11-15 12:17:40', 'submission_id': '1grd4y5'}
{'comment': 'They’re probably one of the largest minority groups then.', 'created': '2024-11-14 23:39:03', 'submission_id': '1grd4y5'}
{'comment': 'So, because there are so many of them, does that mean they’re no longer considered a minority? (Edit: why am I being downvoted for asking a question?', 'created': '2024-11-14 23:37:03', 'submission_id': '1grd4y5'}
{'comment': 'Yup. Selfishness and idiocy, imo.', 'created': '2024-11-14 22:44:05', 'submission_id': '1grd4y5'}
{'comment': 'You should join Covid subs, they all say it .. like they’re missing a step, feels like their brains aged etc etc\n\nIt’s astounding that republicans talked the world into accepting Covid, all for one more dollar.. smdh', 'created': '2024-11-15 15:39:01', 'submission_id': '1grd4y5'}
{'comment': 'It does not. As of the 2020 census, 57.8% of Americans identify as White, non-Hispanic. Anyone not in that category is a minority from a national standpoint.', 'created': '2024-11-15 00:12:15', 'submission_id': '1grd4y5'}
{'comment': 'Not sure why I’m being downvoted for asking a question. I don’t know everything about Latin Americans.', 'created': '2024-11-15 15:50:20', 'submission_id': '1grd4y5'}
{'comment': "the democrats didn't start calling it obamacare. it was the republicans who first coined the phrase.", 'created': '2024-11-14 20:36:17', 'submission_id': '1grczuu'}
{'comment': 'We are dealing with the perpetually stupid here.', 'created': '2024-11-14 20:49:39', 'submission_id': '1grczuu'}
{'comment': 'There was literally a poll about this during Trump’s first campaign or presidency. Poll showed idiots loved ACA but hated Obamacare. Republicans called it that on purpose knowing how stupid their base is.', 'created': '2024-11-14 22:13:34', 'submission_id': '1grczuu'}
{'comment': '#REPUBLICANS CALLED IT OBAMACARE!', 'created': '2024-11-14 22:22:50', 'submission_id': '1grczuu'}
{'comment': 'https://preview.redd.it/onmlsfax6y0e1.jpeg?width=448&format=pjpg&auto=webp&s=b05e5a9b284bb8f9aca095b37b1e942c352c7280', 'created': '2024-11-15 00:00:54', 'submission_id': '1grczuu'}
{'comment': 'I\'m at the "fuck it - they shot themselves in the dick, it\'s their problem" stage - back to medical bankruptcies, denial of health care for pre-existing conditions and all their fucking obese asses can just catch diabetes for all I care.', 'created': '2024-11-14 22:45:00', 'submission_id': '1grczuu'}
{'comment': 'Amazing how stupid people are', 'created': '2024-11-14 21:58:12', 'submission_id': '1grczuu'}
{'comment': 'This is from 4chan, they are somehow more degenerate and even stupider than your average redditor. This brain dead take doesn’t surprise me at all.', 'created': '2024-11-14 21:34:40', 'submission_id': '1grczuu'}
{'comment': 'That person is a perfect example of Natural Selection.\n\n', 'created': '2024-11-14 22:42:15', 'submission_id': '1grczuu'}
{'comment': '\n\nMe right now:', 'created': '2024-11-14 22:46:42', 'submission_id': '1grczuu'}
{'comment': "Here's a [documentary](https://www.imdb.com/title/tt0387808/?ref_=nv_sr_srsg_0_tt_8_nm_0_in_0_q_idocracyhttps://www.imdb.com/title/tt0387808/?ref_=nv_sr_srsg_0_tt_8_nm_0_in_0_q_idocracy) that explains the confusion.", 'created': '2024-11-14 22:54:10', 'submission_id': '1grczuu'}
{'comment': 'Hope he doesn’t have a pre-existing condition or he’s fooked 😆', 'created': '2024-11-14 22:51:00', 'submission_id': '1grczuu'}
{'comment': 'Morons gonna moron', 'created': '2024-11-15 00:06:30', 'submission_id': '1grczuu'}
{'comment': "You've got to remember that these are just simple farmers.", 'created': '2024-11-14 22:50:28', 'submission_id': '1grczuu'}
{'comment': 'lol not the gaslighting at the end. But that’s why we are in the situation we are in. We have people voting who apparently do not know how to do a simple google search.', 'created': '2024-11-14 23:56:12', 'submission_id': '1grczuu'}
{'comment': "It's OK with me if their self-selection ends up self-eliminating. Unfortunately, the rest of us have to deal with it too.", 'created': '2024-11-14 22:00:13', 'submission_id': '1grczuu'}
{'comment': 'This is no surprise.', 'created': '2024-11-14 23:15:41', 'submission_id': '1grczuu'}
{'comment': 'That is so frickin’ stoopud, I’m inclined to think it’s a joke….but I know a bunch of MAGAts, it’s no joke. The one’s I know have IQ points equal to that of a cool room temp.', 'created': '2024-11-15 01:13:17', 'submission_id': '1grczuu'}
{'comment': 'These are the dumbest people on earth.', 'created': '2024-11-15 05:30:44', 'submission_id': '1grczuu'}
{'comment': "The above displayed txt just illustrates how I'll informed the general populace is. My job provided insurance is complaining about rising health cost in 2025, so the admin costs for health plans are going up. Who knows what Trumpy will do, that will make insurance costs go up. He wants to get rid of the ACA/Obamacare, but he doesn't care if it will fuck all citizens over. I'm not looking forward to the old HMO style plans coming back.😩", 'created': '2024-11-14 23:48:16', 'submission_id': '1grczuu'}
{'comment': "It was the snarky Republicans that started calling it Obamacare. As far as I know ONLY Republicans call it Obamacare. Every Dem I've ever heard talk about it calls it the ACA- because that's the name of the Bill.", 'created': '2024-11-15 01:30:56', 'submission_id': '1grczuu'}
{'comment': 'Baa ....bahahahaha.', 'created': '2024-11-14 23:27:35', 'submission_id': '1grczuu'}
{'comment': 'I hope he gets everything he voted for.', 'created': '2024-11-15 01:55:25', 'submission_id': '1grczuu'}
{'comment': 'These fucking idiots deserve it all. The darwin awards are gonna run outta trophies these next couple of years.', 'created': '2024-11-15 21:41:04', 'submission_id': '1grczuu'}
{'comment': 'The ignorance is strong in this one……..', 'created': '2024-11-15 00:54:03', 'submission_id': '1grczuu'}
{'comment': '*cries in pre-existing conditions*', 'created': '2024-11-15 01:57:49', 'submission_id': '1grczuu'}
{'comment': 'Deadly stupid.', 'created': '2024-11-15 04:51:06', 'submission_id': '1grczuu'}
{'comment': 'Love the third part where he answered his own question', 'created': '2024-11-14 23:53:00', 'submission_id': '1grczuu'}
{'comment': 'Stupid people in large groups....', 'created': '2024-11-15 01:26:03', 'submission_id': '1grczuu'}
{'comment': 'He had one chance to sign off with *thanks Obama* and he blew it', 'created': '2024-11-15 05:48:05', 'submission_id': '1grczuu'}
{'comment': 'Imagine while scuba diving you cut your air hose because you found out it was partly named "Obama".', 'created': '2024-11-15 13:04:20', 'submission_id': '1grczuu'}
{'comment': 'I find it so hard to believe that I’m smarter than so many of these people. Because I’m not that smart myself, but the stupid shit they say. \nI just can’t deal with it y’all', 'created': '2024-11-15 17:46:27', 'submission_id': '1grczuu'}
{'comment': 'ODS... Obama Derangement Syndrom', 'created': '2024-11-15 21:14:28', 'submission_id': '1grczuu'}
{'comment': 'They were so close! 🤦', 'created': '2024-11-15 01:22:17', 'submission_id': '1grczuu'}
{'comment': 'I love that, especially considering it was the Tea Party who named it Obamacare.', 'created': '2024-11-15 14:56:19', 'submission_id': '1grczuu'}
{'comment': 'The person who wrote this deserves to have their affordable health care taken away by greedy rich people...', 'created': '2024-11-15 16:17:55', 'submission_id': '1grczuu'}
{'comment': 'I don’t feel bad for this dumbass. I feel bad for all the people that he and those with a similar world view have royally screwed because said people could not be bothered to look up ANYTHING themselves. And then turn around and blame Democrats for them being too stupid to know Obama care IS the ACA , obviously.', 'created': '2024-11-15 18:41:39', 'submission_id': '1grczuu'}
{'comment': 'Yea and this is before they disband the department of education. I hate stupidity. 😡', 'created': '2024-11-15 20:57:54', 'submission_id': '1grczuu'}
{'comment': 'I saw someone on Facebook whining about democrats, "How can they call Trump a Nazi? That is such a serious accusation? Do democrats even realize the horrendous persecution of the Jews? I\'m for women\'s rights and all but this goes too far."\n\nSeriously? This person doesn\'t understand the parallels that he himself drew in this whiny comment. Women\'s rights, huh. So the persecution of women can\'t possibly be bad and we are somehow calling Trump a Nazi because of this? \n\nI explained that we call Trump a Nazi because of the horrible shit and he spews out of his mouth and the people he surrounds himself with. Not to mention the most obvious is that he loves the support he gets from white supremists.', 'created': '2024-11-15 22:38:54', 'submission_id': '1grczuu'}
{'comment': "He fell for his own party's trap: stick a nickname on something to turn people against it, so he opposes it, like the sheep he is.", 'created': '2024-11-15 23:12:09', 'submission_id': '1grczuu'}
{'comment': 'r/LeopardsAteMyFace', 'created': '2024-11-14 23:04:01', 'submission_id': '1grczuu'}
{'comment': 'My thought process is that they assume "obamacare" was from back when that term became commonplace and there were fees for not being insured. I know QUITE a few people who got fined hundreds of dollars during that time who obviously couldn\'t afford it and got very soured about Obama over it. I was just entering high school back then, so I don\'t know exactly what happened-- but you don\'t get fined for not having insurance anymore--- and I think that\'s what they consider the ACA. Feel free to enlighten me if I\'m wrong about anything.', 'created': '2024-11-15 16:03:34', 'submission_id': '1grczuu'}
{'comment': 'Let’s all just wait until they start losing their health coverage. We won’t tell them a thing. Let them figure it out on their own.', 'created': '2024-11-15 17:00:06', 'submission_id': '1grczuu'}
{'comment': 'It looks like the problem solved itself', 'created': '2024-11-15 19:51:05', 'submission_id': '1grczuu'}
{'comment': '🤪', 'created': '2024-11-15 20:51:50', 'submission_id': '1grczuu'}
{'comment': 'Maybe Obama != bad?', 'created': '2024-11-15 22:04:04', 'submission_id': '1grczuu'}
{'comment': 'Well Trump did say he loves the poorly educated...', 'created': '2024-11-15 22:52:31', 'submission_id': '1grczuu'}
{'comment': '🤦\u200d♂️🤦\u200d♂️', 'created': '2024-11-16 07:33:00', 'submission_id': '1grczuu'}
{'comment': 'On second thought, maybe they deserve it', 'created': '2024-11-16 21:51:35', 'submission_id': '1grczuu'}
{'comment': 'I hate being fucking stupid.', 'created': '2024-11-16 22:57:40', 'submission_id': '1grczuu'}
{'comment': 'Ouch', 'created': '2024-11-17 04:40:23', 'submission_id': '1grczuu'}
{'comment': "My husband told me a while back that they were changing Obamacare to The Affordable Care Act because republicans couldn't handle their healthcare being named after a black man.... and now I realize that's EXACTLY what happened. Which is why they hate Obamacare but love the ACA. How fucking embarrassing.", 'created': '2024-11-14 22:02:29', 'submission_id': '1grczuu'}
{'comment': 'Also why would a Democrat come up with the concept that Obama = bad?', 'created': '2024-11-14 21:09:01', 'submission_id': '1grczuu'}
{'comment': 'The Leopards are eating at the **FACE RESTAURANT** tonight.', 'created': '2024-11-15 00:44:16', 'submission_id': '1grczuu'}
{'comment': 'exactly my very first thought!', 'created': '2024-11-14 21:31:55', 'submission_id': '1grczuu'}
{'comment': 'Well Trump did say he loves the poorly educated...', 'created': '2024-11-15 16:33:28', 'submission_id': '1grczuu'}
{'comment': 'Yep. It was a dog whistle for the racists they were courting for votes, and it worked so well that the racists have been screaming for the Republicans to take away their healthcare ever since.', 'created': '2024-11-15 07:55:15', 'submission_id': '1grczuu'}
{'comment': 'I hope that was a typo.', 'created': '2024-11-14 22:57:40', 'submission_id': '1grczuu'}
{'comment': 'And anyone with a functioning brain know *exactly* why they did it. Case and point..', 'created': '2024-11-15 17:57:18', 'submission_id': '1grczuu'}
{'comment': 'i thought it was a nice way to compliment him :(', 'created': '2024-11-15 01:22:40', 'submission_id': '1grczuu'}
{'comment': 'Farm-raised artisanal morons, is my new favorite descriptor.', 'created': '2024-11-14 21:07:01', 'submission_id': '1grczuu'}
{'comment': 'Millions voted for Trump not knowing they were voting to lose their own healthcare. The ignorance is unreal…', 'created': '2024-11-14 23:49:30', 'submission_id': '1grczuu'}
{'comment': 'And will be paying the price for it.', 'created': '2024-11-14 23:48:14', 'submission_id': '1grczuu'}
{'comment': 'I\'m not so sure about the "stupid:. I call it "intentionally ignorant". The difference is that stupid is an intellectual description and can\'t be fixed, but ignorance can be. Hopefully these 4 years will make these people less ignorant.', 'created': '2024-11-16 05:04:02', 'submission_id': '1grczuu'}
{'comment': 'The problem is this "joke" could end up killing people or financially ruining them. The ACA is a major lifeline for 10s of millions of Americans. I was in no mans land myself being in my 50\'s and self employed.', 'created': '2024-11-14 23:02:22', 'submission_id': '1grczuu'}
{'comment': 'Literally. Like they are beyond help. Because they will blame the dems for everything even when it’s blatantly the fault of republicans.', 'created': '2024-11-15 01:16:13', 'submission_id': '1grczuu'}
{'comment': 'I will eventually start caring about people again, but right now I think I have to take a break from it.', 'created': '2024-11-14 23:26:38', 'submission_id': '1grczuu'}
{'comment': 'George Carlin has entered the conversation.', 'created': '2024-11-15 02:50:31', 'submission_id': '1grczuu'}
{'comment': 'I come to Reddit to get away from the idiots, there are far fewer here than elsewhere…..', 'created': '2024-11-14 23:42:58', 'submission_id': '1grczuu'}
{'comment': '\n\nLeopards gonna be eating good in 2025.', 'created': '2024-11-14 22:46:48', 'submission_id': '1grczuu'}
{'comment': 'Okay, say the rest of it…', 'created': '2024-11-15 02:51:09', 'submission_id': '1grczuu'}
{'comment': 'This. In fact THIS.', 'created': '2024-11-14 23:03:54', 'submission_id': '1grczuu'}
{'comment': 'This is why I hate these people. All the information a as right there! They chose to ignore it!', 'created': '2024-11-15 13:47:31', 'submission_id': '1grczuu'}
{'comment': 'Julian Assange posted stolen emails from the DNC, and told Bernie’s Followers there was proof that the DNC had “cheated” Bernie.\n\nI immediately did a search of those emails under every variation of Bernie’s name and State.\n\nThere were 7 emails and the ONE guy who spoke derisively about Sanders got slapped down, hard.\n\nAnd yet those morons believed Assange without fact checking.\n\nAnd that was when I realized that the stupidity is a Fringe phenomenon.\n\nMorons are attracted to the political extremes.', 'created': '2024-11-15 20:17:35', 'submission_id': '1grczuu'}
{'comment': 'Came here to say this. Democrats introduced the Affordable Care Act. Republicans nicknamed it Obamacare to get it killed. I believe it was passed by a majority that included BOTH parties.', 'created': '2024-11-15 06:49:25', 'submission_id': '1grczuu'}
{'comment': 'That’s what keeps me up at night!!', 'created': '2024-11-15 21:17:13', 'submission_id': '1grczuu'}
{'comment': "They do their research. They say so, when asked. It's just that they use shitty references and YouTube videos especially selected for them by algorithms. Using Google is too tough for them. They keep getting answers they don' want to see.", 'created': '2024-11-16 05:14:15', 'submission_id': '1grczuu'}
{'comment': 'This dude says he hates democrats, well I hate stupid people. Check-mate.', 'created': '2024-11-17 04:01:13', 'submission_id': '1grczuu'}
{'comment': 'It was never called Obamacare. Its official name has always been The Affordable Care Act. \n\nIt was republicans who coined “Obamacare” after the fact. They knew attaching Obama’s name to it would demonize it to their base. They knew it was helpful to citizens, and yet convinced so many that it was bad because Obama did it.', 'created': '2024-11-14 22:08:44', 'submission_id': '1grczuu'}
{'comment': 'Your husband doesn’t know what he’s talking about', 'created': '2024-11-14 23:43:51', 'submission_id': '1grczuu'}
{'comment': 'The all you can eat face buffet.', 'created': '2024-11-15 02:03:01', 'submission_id': '1grczuu'}
{'comment': 'He sure knows his audience. Gotta give him that.', 'created': '2024-11-15 16:56:01', 'submission_id': '1grczuu'}
{'comment': '💯☝️', 'created': '2024-11-16 13:14:25', 'submission_id': '1grczuu'}
{'comment': 'it was and i fixed it.', 'created': '2024-11-15 02:55:40', 'submission_id': '1grczuu'}
{'comment': 'Jesus Christ, this is phenomenal!', 'created': '2024-11-14 21:48:00', 'submission_id': '1grczuu'}
{'comment': 'and gluten free!', 'created': '2024-11-14 21:18:24', 'submission_id': '1grczuu'}
{'comment': '“These are simple farmers. The common clay of the new west. You know…morons.”', 'created': '2024-11-15 16:05:58', 'submission_id': '1grczuu'}
{'comment': "It's not a joke, it's intentional propaganda.", 'created': '2024-11-15 00:45:32', 'submission_id': '1grczuu'}
{'comment': "Same, but 20s with depression and migraines, so no one would insure me for any amount of money that I didn't have anyway.", 'created': '2024-11-15 03:44:36', 'submission_id': '1grczuu'}
{'comment': 'Samesies', 'created': '2024-11-15 01:54:20', 'submission_id': '1grczuu'}
{'comment': '(insert funny echochamber comment here)', 'created': '2024-11-15 01:26:04', 'submission_id': '1grczuu'}
{'comment': 'No Republicans voted for the ACA, in either the house or the senate.', 'created': '2024-11-16 17:34:28', 'submission_id': '1grczuu'}
{'comment': 'You have a valid point.', 'created': '2024-11-16 05:15:18', 'submission_id': '1grczuu'}
{'comment': 'Since you\'re so intelligent. Tell me why people are against "Obamacare" but like "The Affordable Care Act".', 'created': '2024-11-15 02:01:19', 'submission_id': '1grczuu'}
{'comment': 'A favorite piece of trivia is that Wilder ad-libbed that.', 'created': '2024-11-15 16:37:51', 'submission_id': '1grczuu'}
{'comment': 'Blazing Saddles must be popular on Reddit. I see quotes from it all the time. One of my favorites is "Someone go get a shitfull of dimes."', 'created': '2024-11-16 05:05:41', 'submission_id': '1grczuu'}
{'comment': "That's why it's in air quotes.", 'created': '2024-11-15 01:23:52', 'submission_id': '1grczuu'}
{'comment': 'WTH? One of the features of the ACA is it covers preexisting conditions. You need to check again ( before Rethuglicans kill it altogether)', 'created': '2024-11-15 12:21:08', 'submission_id': '1grczuu'}
{'comment': "Ah, you're right. Just fact checked myself. Senate: 60 votes FOR (all DNC, plus 2 Independents), 39 votes (all GOP) against.", 'created': '2024-11-16 21:13:15', 'submission_id': '1grczuu'}
{'comment': "Because they're trained to not like Democrats, hence why they THINK Obamacare = Bad and Affordable Care Act = Good. Also, Republicans actively fought against Obamacare when Obama was president. After he wasn't in office Republicans then said they support the ACA because that's what they do. They take credit for shit when it works out for them and fights things Democrats support that are actually good when it doesn't favor them politically.", 'created': '2024-11-15 06:52:41', 'submission_id': '1grczuu'}
{'comment': 'What’ll that asshole think of next?!?', 'created': '2024-11-16 05:47:00', 'submission_id': '1grczuu'}
{'comment': 'This was pre-ACA.', 'created': '2024-11-15 14:15:56', 'submission_id': '1grczuu'}
{'comment': 'All Dems in the House as well.', 'created': '2024-11-16 21:14:05', 'submission_id': '1grczuu'}
{'comment': 'So you genuinely believe it had nothing to do with his race? I get hating democrats, but you can\'t tell me their hate for "Obamacare" wasn\'t amplified based on his race. All these down votes, makes me realize even white democrats can\'t handle racial issues.', 'created': '2024-11-16 03:23:53', 'submission_id': '1grczuu'}
{'comment': 'Ok. My bad.\n\n', 'created': '2024-11-15 15:31:24', 'submission_id': '1grczuu'}
{'comment': "I don't want to believe anything Russia says *about anything.*\n\nThat being said, yeah. Duh. We all know.", 'created': '2024-11-14 20:45:58', 'submission_id': '1grcm2n'}
{'comment': "Donald Trump has been a Russian tool for 30 years. We're about to find out...", 'created': '2024-11-14 20:59:42', 'submission_id': '1grcm2n'}
{'comment': 'Trump called him to see about ending the war against Ukraine and Putin game him the middle finger by putting naked pictures of his "wife" on the Russian national news. Tip of the iceberg.\n\nIf trump had any balls at all (as if) he would respond by upping American support for NATO and Ukraine to piss putin off. But since trump is all hot air and no balls, that won\'t happen. A chance to show some spine for once gone by the wayside.', 'created': '2024-11-14 21:58:51', 'submission_id': '1grcm2n'}
{'comment': 'Trump is an asset of Putin since the Soviet Era', 'created': '2024-11-14 21:47:53', 'submission_id': '1grcm2n'}
{'comment': 'It’s real and it’s serious and if Donnie doesn’t follow through on whatever inflammatory promises he made, he’s going to want to stay away from tall windows and have other people drink from his beverages first, if you catch my drift….', 'created': '2024-11-14 21:24:41', 'submission_id': '1grcm2n'}
{'comment': 'They got Tulsi Gabbard.\n\nThat’s exactly what they meant.', 'created': '2024-11-14 21:42:18', 'submission_id': '1grcm2n'}
{'comment': "The problem here is, both sides are lying the most time and spreading misinformation.But there really seems to be a tension between the two.I think Putin is also irritated by Trump's self-important behavior towards him, which he never had before.Before he was rather submissive. Now he is the one who alone can solve the Ukraine conflict,and he is the one who calls Putin, not the other way around. 4 years in the MAGA bubble surrounded by sycophants,have made Trump bigger in his own world,than he is.Two narcissists are fighting for power,represents a problem.", 'created': '2024-11-14 21:24:13', 'submission_id': '1grcm2n'}
{'comment': "The people who could do something about it will make excuses instead, and we'll all end up riding the flush down. 🤢🤮", 'created': '2024-11-14 21:28:11', 'submission_id': '1grcm2n'}
{'comment': 'The fact that they aren’t even trying to hide it anymore says everything. There is still time to take this bull by the horns and castrate it, if Biden has the gumption. Call your reps and demand a forensic hand recount, to start. The more ballots that are counted, the closer the race is so let’s bug them.', 'created': '2024-11-14 21:47:15', 'submission_id': '1grcm2n'}
{'comment': 'Let’s see what happens if Trump decides not to pay this debt. I don’t think Putin will handle it like Joe the plumber', 'created': '2024-11-14 22:15:49', 'submission_id': '1grcm2n'}
{'comment': 'Golden showers, Jim…. Golden showers a plenty on film…', 'created': '2024-11-14 22:41:13', 'submission_id': '1grcm2n'}
{'comment': None, 'created': '2024-11-14 23:25:52', 'submission_id': '1grcm2n'}
{'comment': 'It’s going to be so interesting. Since I gave up all hope all I can do is laugh', 'created': '2024-11-15 01:05:17', 'submission_id': '1grcm2n'}
{'comment': 'I’m waiting to see the Pee pee video at this point', 'created': '2024-11-15 02:03:28', 'submission_id': '1grcm2n'}
{'comment': 'I think more of us should have tried voting last week is what I think. Russian influence over Trump is almost part of the GOP platform it is so evident.', 'created': '2024-11-15 02:41:40', 'submission_id': '1grcm2n'}
{'comment': 'Putin owns Trump. Trump put Gabbard in charge of our National Intelligence. They will hand our secrets right tf over to our enemies: Russia, NK, Saudi Arabia, China. Ukraine military movements will be handed right over to Russia. Russia won the Cold War.', 'created': '2024-11-15 04:32:06', 'submission_id': '1grcm2n'}
{'comment': "Either Russia is trying to intimidate him with whatever they're holding over his head, or it's a psychological warfare tactic trying to spur the left to get as conspiracy-theorist as the right, thus hastening a civil war.\n\nOr both.", 'created': '2024-11-15 09:41:13', 'submission_id': '1grcm2n'}
{'comment': 'I hope the FBI is currently running detailed background checks on everyone in Trumps orbit now and his proposed appointees and that those reports, if they show of whiff of anything other than patriotic American behavior, are publicly shared prior to the inauguration and the Congressional hearings on those candidates. \n\nThrough his appointments Trump is acting like a Russian agent with a focus on the precipitation a civil war by ruining the economy, our health, and our military. Frankly I am not sure how else you would interpret his choices. He seems the be hell bent on burning the place down.', 'created': '2024-11-15 13:53:58', 'submission_id': '1grcm2n'}
{'comment': 'Status quo', 'created': '2024-11-15 20:23:53', 'submission_id': '1grcm2n'}
{'comment': 'Theater.', 'created': '2024-11-14 20:23:59', 'submission_id': '1grcm2n'}
{'comment': 'What was the exact wording of the full statement or was that the full quote?', 'created': '2024-11-14 21:47:59', 'submission_id': '1grcm2n'}
{'comment': 'Exactly what I thought when he was elected in 2016. And again in 2020, and still today in 2014: America? Do you hear that big flushing sound? That’s for you, and Putin is the plumber.', 'created': '2024-11-15 07:27:12', 'submission_id': '1grcm2n'}
{'comment': "Can't wait to see what happens next in this Netflix series which, has a plot that seems a little far-fetched, but, it's entertaining.", 'created': '2024-11-14 23:07:09', 'submission_id': '1grcm2n'}
{'comment': 'And a tool in general for 78 years\xa0', 'created': '2024-11-14 21:24:38', 'submission_id': '1grcm2n'}
{'comment': 'I can’t believe people actually trust him', 'created': '2024-11-14 21:25:32', 'submission_id': '1grcm2n'}
{'comment': 'Trump is scared', 'created': '2024-11-14 22:19:42', 'submission_id': '1grcm2n'}
{'comment': 'I heard Trump was getting golden showers in Russia', 'created': '2024-11-14 21:49:00', 'submission_id': '1grcm2n'}
{'comment': 'I think Russia will expose his secrets', 'created': '2024-11-14 21:25:12', 'submission_id': '1grcm2n'}
{'comment': 'Yeah. So weird how many people fall out of windows in Russia.', 'created': '2024-11-14 23:41:47', 'submission_id': '1grcm2n'}
{'comment': 'Yeah, you’re right. Trump has picked folks who don’t have any experience.', 'created': '2024-11-14 21:44:14', 'submission_id': '1grcm2n'}
{'comment': 'Trump will be President of the US, awful as that is, he seems to at least realize that the US is far richer and more powerful than Russia. He does not *need* Putin, at least not any more.', 'created': '2024-11-14 21:38:49', 'submission_id': '1grcm2n'}
{'comment': 'If Donald trump gets Putin assassinated while avoiding WW3 and ending the war in Ukraine I’d consider changing my worldview', 'created': '2024-11-14 21:35:24', 'submission_id': '1grcm2n'}
{'comment': 'Trump is about to get a reality check', 'created': '2024-11-14 21:31:14', 'submission_id': '1grcm2n'}
{'comment': 'I can see Trump causing a war with Russia. If Putin embarrasses him, he will surely try something', 'created': '2024-11-14 21:32:03', 'submission_id': '1grcm2n'}
{'comment': 'Trump’s already paying the debt.', 'created': '2024-11-14 22:20:08', 'submission_id': '1grcm2n'}
{'comment': 'I had to look this up. It’s clear that Russia is going to see how much of an alpha male Trump is.', 'created': '2024-11-15 01:08:47', 'submission_id': '1grcm2n'}
{'comment': 'Does it matter? If the FBI reports finding something shady, Trump and the MAGA crowd will call it “deep state”….', 'created': '2024-11-15 13:55:11', 'submission_id': '1grcm2n'}
{'comment': 'I really hope Trump didn’t make a deal with Putin. The republican coworkers would have a hard time defending this.', 'created': '2024-11-15 20:34:49', 'submission_id': '1grcm2n'}
{'comment': 'That is what Trump and the Republicans would have us believe.', 'created': '2024-11-14 20:40:56', 'submission_id': '1grcm2n'}
{'comment': 'I posted it', 'created': '2024-11-14 22:05:15', 'submission_id': '1grcm2n'}
{'comment': '“The election campaign is over. To achieve success in the election, Donald Trump relied on certain forces to which he has corresponding obligations. As a responsible person, he will be obliged to fulfill them.”', 'created': '2024-11-15 18:11:42', 'submission_id': '1grcm2n'}
{'comment': "It's more that everyone just cares about their bag and no one else. They think that he'll put more money in their pockets, so that's all that matters and that everything else will improve because of that. If not, at least they received more money.", 'created': '2024-11-14 21:56:48', 'submission_id': '1grcm2n'}
{'comment': 'Oh god I hope so, that would be so much better than anything else honestly', 'created': '2024-11-14 21:26:17', 'submission_id': '1grcm2n'}
{'comment': 'It won’t matter, nobody will believe it except people who already kinda know.', 'created': '2024-11-14 21:39:52', 'submission_id': '1grcm2n'}
{'comment': 'Think about this.\n\nTrump is inaugurated. Putin nukes Kiev.\n\nWould anyone in our government do anything about it? Probably not.\n\nAnd if NATO or the EU tried, we’d side with Putin.\n\nThey just won the Cold War.', 'created': '2024-11-14 21:46:55', 'submission_id': '1grcm2n'}
{'comment': "It's also true that T r u m p's followers would not believe anything negative about him at this point anyway, so blackmail be damned. If P u t i n were to threaten him in a meaningful way, it would be away from prying eyes and in a way that would make T r u m p watch his back. I think of it like that opening scene in Skyfall where the careerist, loyal assistant to M turned out to be a mole for his entire career. Something along those lines (possibly also by coercion and/or money), but maybe through the secret service. Just a threat of course. T r u m p is much more useful to P u t i n alive than dead, so the latter will coerce him in some subtle way to cooperate.", 'created': '2024-11-14 22:00:40', 'submission_id': '1grcm2n'}
{'comment': "That maybe true,but he has made concessions to Putin if he helps him win the election, as he did in 2016.And Putin's threats are aimed at showing that he has Trump in his hands,and he must keep his promises.Whatever it is, perhaps one of his paid Russian spies should be placed in a key position. As Trump may have already done with his absurd nominations We just don't know which people were appointed to certain positions at Putin's request or or of Trump's loyalty.", 'created': '2024-11-14 21:52:30', 'submission_id': '1grcm2n'}
{'comment': 'I think Putin’s been training all his life, to be able to play Trump like this. Trump suspects it, doesn’t like it, .. but also needs it.', 'created': '2024-11-15 08:17:29', 'submission_id': '1grcm2n'}
{'comment': 'I hope his reality check doesn’t kill us along with him', 'created': '2024-11-14 21:39:59', 'submission_id': '1grcm2n'}
{'comment': 'We will see what happens in January', 'created': '2024-11-14 20:47:59', 'submission_id': '1grcm2n'}
{'comment': "Thank YOU 🙏 💯 How he wondered that... was what I was asking, I do not know lol but yes I knew the original statement was more than that and that's what I was looking for, I do not know how that could get any clearer wow man that is straight scary", 'created': '2024-11-15 18:46:59', 'submission_id': '1grcm2n'}
{'comment': 'I think there’s also a lot of threats, fear and blackmail going on. Even at the level of Putin->Trump. It’s strangely optimistic, in a way, because I can’t believe people are so blindly selfish and corrupt. I hope not, anyway.', 'created': '2024-11-15 08:13:01', 'submission_id': '1grcm2n'}
{'comment': 'No, most in his cult actually Trust him.\n\nWhenever they face information that challenges their view of him you can watch them develop alternate explanations and justifications in real time on conservative message boards.\n\nWithin a few hours to a day they have completely reframed the information to make him out to be a hero, or created a contract narrative that allows them to dismiss the information, or assume he knows something they don’t and it’s some sort of 5D chess.\n\nI have been watching it play out week in and week out for 8 years on a veteran blog that went full MAGA.', 'created': '2024-11-15 15:49:57', 'submission_id': '1grcm2n'}
{'comment': 'Trump has promised he can end the war in 24 hours. He lied and said he told Putin to ease up on the war.', 'created': '2024-11-14 21:30:45', 'submission_id': '1grcm2n'}
{'comment': 'And Trump supporters will somehow defend his actions', 'created': '2024-11-14 21:40:21', 'submission_id': '1grcm2n'}
{'comment': "Pooty doesn't have to nuke anything. trumpturd & repukes will just withhold funding. Ukraine dies like a dog in the road.", 'created': '2024-11-15 07:12:29', 'submission_id': '1grcm2n'}
{'comment': 'I think Trump would simply stay out of the war', 'created': '2024-11-14 21:48:25', 'submission_id': '1grcm2n'}
{'comment': 'Trump’s pride will end the world if we’re not careful', 'created': '2024-11-14 21:40:58', 'submission_id': '1grcm2n'}
{'comment': '…his cult isn’t the only cohort who voted him in. Again, “money in my pocket, nothing else matters” people. There’s a lot of reprehensible Americans like that. Don’t need the money, but “grind” anyway and take advantage of others to get it. It’s not poverty in those cases, but antisocial traits.\n\nMy doge skyrocketed and I couldn’t care less. I would trade it all for a different election outcome. Seriously. I’ve never been in the red with it, so it’s a pretty large net gain (10s of thousands), not just less of a loss.', 'created': '2024-11-15 15:51:23', 'submission_id': '1grcm2n'}
{'comment': 'We’re all so shocked by him lying tho, right? 🙄🤦\u200d♀️', 'created': '2024-11-14 21:50:46', 'submission_id': '1grcm2n'}
{'comment': 'Goes without saying. Of course they will', 'created': '2024-11-14 21:41:36', 'submission_id': '1grcm2n'}
{'comment': '“Would anyone in our government do anything about it? Probably not.”\n“I think Trump would simply stay out of the war.”\n\nYou understand these are both describing the same action, right? Is that the outcome you were hoping for?', 'created': '2024-11-14 21:55:50', 'submission_id': '1grcm2n'}
{'comment': 'There\'s a reason his neice\'s first book was subtitles "How my family produced the world\'s most dangerous man".', 'created': '2024-11-15 04:01:26', 'submission_id': '1grcm2n'}
{'comment': 'His cult was most of the people who voted for him. The rest won him the election but 70% of those that voted for him are ride or die and have been since 2016.', 'created': '2024-11-15 16:03:40', 'submission_id': '1grcm2n'}
{'comment': 'I’m sure Trump was pissed that Putin didn’t call him', 'created': '2024-11-14 21:43:14', 'submission_id': '1grcm2n'}
{'comment': 'I’m calling Trump a coward', 'created': '2024-11-14 22:19:08', 'submission_id': '1grcm2n'}
{'comment': '… his “cult” alone cannot get him elected. That’s universally, well almost anyway, understood. I’m not talking about his cult. Their opinions are not worth the battery power to type about them.', 'created': '2024-11-15 16:05:18', 'submission_id': '1grcm2n'}
{'comment': 'You said “everyone”.\n\nMeaning everyone that voted for him.\n\nNow you mean about 1/3 of those that voted for him. \n\nFair enough.', 'created': '2024-11-15 16:35:10', 'submission_id': '1grcm2n'}
{'comment': 'You said “everyone”.\n\nMeaning everyone that voted for him.\n\nNow you mean about 1/3 of those that voted for him. \n\nFair enough.', 'created': '2024-11-15 16:35:19', 'submission_id': '1grcm2n'}
{'comment': 'Yeah, just meant the ones who put him over the top. They didn’t give a shit about Kamala’s message that she was pitching about moving forward, progress, we’re not going back, etc. they just wanna go back to pre-Covid when everything was cheap and they didn’t have to look up at the world.', 'created': '2024-11-15 16:40:49', 'submission_id': '1grcm2n'}
{'comment': 'Meet your future director of NASA! She’ll get to the bottom of what’s up with those Jewish space lasers and remote control hurricanes.', 'created': '2024-11-14 20:00:25', 'submission_id': '1grc0ij'}
{'comment': "Considering she's already butting heads with Johnson again, hopefully she stays in the House and becomes a problem for the GOP by gumming shit up.", 'created': '2024-11-14 19:55:37', 'submission_id': '1grc0ij'}
{'comment': ">Only person missing in his cabinet is MTG\n\nGive him time. He hasn't filled every slot. Given how many of his announced picks are wildly unqualified, she could be secretary of agriculture.", 'created': '2024-11-14 19:52:23', 'submission_id': '1grc0ij'}
{'comment': 'MAGA isnt very deep in Congress anymore. MAGA doesnt win Congress seats anymore, but Trump winning Pres was the surprise to me. I genuinely thought MAGA was dying off because of Congress’s MAGA dying slowly.\n\n\xa0She’ll stay to push his plans. I’m hoping lots of infighting with Republicans like they did for Speaker', 'created': '2024-11-14 19:54:16', 'submission_id': '1grc0ij'}
{'comment': 'Apparently Speaker Johnson is begging Trump to stop appointing house GOP reps to his Cabinet because ot could jeoparadize their majority.', 'created': '2024-11-14 20:09:34', 'submission_id': '1grc0ij'}
{'comment': 'Hard to put something in a cabinet when you prefer to keep it under your desk.', 'created': '2024-11-14 19:51:32', 'submission_id': '1grc0ij'}
{'comment': "Don't give him any ideas.", 'created': '2024-11-14 19:55:50', 'submission_id': '1grc0ij'}
{'comment': 'Make her his press secretary. She just oozes charm and grace. /s', 'created': '2024-11-14 20:05:11', 'submission_id': '1grc0ij'}
{'comment': 'Waiting for Laura Loomer to be tapped “House Girl”.', 'created': '2024-11-14 20:13:06', 'submission_id': '1grc0ij'}
{'comment': "I almost wish he would try to nominate her so I could watch my dad's (voted for Trump) head explode even more than it did yesterday with Gaetz.", 'created': '2024-11-14 20:33:16', 'submission_id': '1grc0ij'}
{'comment': 'Stop giving him ideas 😭', 'created': '2024-11-14 19:56:38', 'submission_id': '1grc0ij'}
{'comment': 'Nominated as director of the Newly created Office of Bitchin’ Stuff', 'created': '2024-11-14 20:11:11', 'submission_id': '1grc0ij'}
{'comment': '“Fluffer” isn’t a cabinet position and if it was Elon would already have been appointed.', 'created': '2024-11-14 20:38:42', 'submission_id': '1grc0ij'}
{'comment': 'Secretary of De-Education sounds good for her.', 'created': '2024-11-14 19:58:50', 'submission_id': '1grc0ij'}
{'comment': 'Give him time. He is going to fire this round of fools soon. Maybe even before his actual term starts', 'created': '2024-11-14 20:32:31', 'submission_id': '1grc0ij'}
{'comment': "I read that word on the street is she is pissed that she didn't get Secretary of Homeland Security.", 'created': '2024-11-14 20:16:17', 'submission_id': '1grc0ij'}
{'comment': 'Kari Lake isn’t there either. She’s basically a female Donald Trump herself but he called her a two time loser.', 'created': '2024-11-14 20:00:43', 'submission_id': '1grc0ij'}
{'comment': "I wonder what he will give her, she was more involved in the January 6 plot than others, and one of the most loyal. She also asked for a pardon from Trump. I think it could get revenge if he doesn't give her at least a small position in his administration. She knows too much to pass her up.The same with Laura Lommer, she still emphasizes her loyalty, but she was hoping for the job of press secretary, and many thought she would it be.If he ignores both of them, it could take revenge one day. Both women are very resentful.", 'created': '2024-11-14 20:16:36', 'submission_id': '1grc0ij'}
{'comment': 'There is still a chance she could be appointed the Mayor of Whoville. This new cabinet appears to be a bad joke.', 'created': '2024-11-14 20:02:03', 'submission_id': '1grc0ij'}
{'comment': 'I think it’s because she’s overqualified…', 'created': '2024-11-14 20:34:10', 'submission_id': '1grc0ij'}
{'comment': 'Within the trump\'s administration, it is amazing how folks don\'t have to be qualified for positions, starting from the top, if you are White. However, Black folks and others are typically overqualified when it comes to credentials and/or experience, yet they are demonized by trying to equate DEI with being not qualified. Positions are "dumbed down" under the trump\'s administration. Make it make sense, America.', 'created': '2024-11-14 21:50:41', 'submission_id': '1grc0ij'}
{'comment': 'He doesn’t want to give a cabinet position to Seabiscuit', 'created': '2024-11-14 20:09:31', 'submission_id': '1grc0ij'}
{'comment': 'This is not a “Cabinet” as much as it’s a Junk Drawer! This is the Star Wars Cantina on Steroids.', 'created': '2024-11-15 01:06:39', 'submission_id': '1grc0ij'}
{'comment': 'Please give her a role in climate change or something to do with the weather.', 'created': '2024-11-14 20:16:26', 'submission_id': '1grc0ij'}
{'comment': 'I thought that this morning.', 'created': '2024-11-14 19:54:07', 'submission_id': '1grc0ij'}
{'comment': '….so far!', 'created': '2024-11-14 20:13:17', 'submission_id': '1grc0ij'}
{'comment': "TBH I don't even think Trump wants to work around MTG everyday. He likes her for loyalty but not enough to want to actually be around her and listen to her all the time. He just will never say that out loud.", 'created': '2024-11-14 20:18:35', 'submission_id': '1grc0ij'}
{'comment': "Oh just wait, he's not done yet.", 'created': '2024-11-14 20:36:31', 'submission_id': '1grc0ij'}
{'comment': 'Education secretary…. I’m sure', 'created': '2024-11-14 20:55:09', 'submission_id': '1grc0ij'}
{'comment': 'Neanderthall looking ass', 'created': '2024-11-14 22:26:09', 'submission_id': '1grc0ij'}
{'comment': None, 'created': '2024-11-15 01:44:12', 'submission_id': '1grc0ij'}
{'comment': "I doubt she makes it. Nobody likes her or Boebert and everybody just thinks they're a joke.", 'created': '2024-11-14 19:59:50', 'submission_id': '1grc0ij'}
{'comment': 'If he puts her on for anything i am leaving this circus of a country', 'created': '2024-11-14 20:16:28', 'submission_id': '1grc0ij'}
{'comment': 'Ssshhhh... 🤫', 'created': '2024-11-14 20:19:57', 'submission_id': '1grc0ij'}
{'comment': 'She will be in charge of the weather device and the Jewish space lasers.', 'created': '2024-11-14 20:42:23', 'submission_id': '1grc0ij'}
{'comment': 'Education because she is so smart', 'created': '2024-11-14 20:44:20', 'submission_id': '1grc0ij'}
{'comment': 'Secretary to the Home Erectus.', 'created': '2024-11-14 20:45:30', 'submission_id': '1grc0ij'}
{'comment': 'And Cawthorne.', 'created': '2024-11-14 20:48:39', 'submission_id': '1grc0ij'}
{'comment': 'Department of Energy!', 'created': '2024-11-14 20:50:09', 'submission_id': '1grc0ij'}
{'comment': 'Watch him accidentally give dems a majority by poaching all the loyal Rs from the house', 'created': '2024-11-15 00:35:16', 'submission_id': '1grc0ij'}
{'comment': 'She has been, extra, extra quiet. She is waiting. I bet it is something HUUUGE.', 'created': '2024-11-15 01:19:45', 'submission_id': '1grc0ij'}
{'comment': 'Department of education, here we come!!!', 'created': '2024-11-15 01:25:38', 'submission_id': '1grc0ij'}
{'comment': 'Head of NASA incoming. We going to get those space laser and hurricane devices.', 'created': '2024-11-15 04:50:45', 'submission_id': '1grc0ij'}
{'comment': 'Oh god delete this before he sees it', 'created': '2024-11-15 08:15:47', 'submission_id': '1grc0ij'}
{'comment': 'Space Force coming soon', 'created': '2024-11-15 12:28:11', 'submission_id': '1grc0ij'}
{'comment': 'Nobody is missing her.', 'created': '2024-11-14 20:00:44', 'submission_id': '1grc0ij'}
{'comment': 'Press Secretary…', 'created': '2024-11-14 20:06:44', 'submission_id': '1grc0ij'}
{'comment': "I've been saying that he said he wouldn't consider her for VP because he thinks she's too ugly. I hope she's squirming right now.", 'created': '2024-11-14 20:24:48', 'submission_id': '1grc0ij'}
{'comment': 'So far', 'created': '2024-11-14 20:39:02', 'submission_id': '1grc0ij'}
{'comment': 'head of nasa plz', 'created': '2024-11-14 20:41:38', 'submission_id': '1grc0ij'}
{'comment': "Don't give them any more ideas", 'created': '2024-11-14 20:52:22', 'submission_id': '1grc0ij'}
{'comment': 'Dear Lord it’s bad enough! Please not her!', 'created': '2024-11-14 20:56:03', 'submission_id': '1grc0ij'}
{'comment': 'Please keep narrowing that margin in the House.', 'created': '2024-11-14 20:57:59', 'submission_id': '1grc0ij'}
{'comment': 'Hey it appears Alex Jones has time on his hands??!', 'created': '2024-11-14 21:06:35', 'submission_id': '1grc0ij'}
{'comment': 'Sec’y of agriculture, for sure, if he didn’t already give that to Clive Bundy or Kevin Costner.', 'created': '2024-11-14 21:15:15', 'submission_id': '1grc0ij'}
{'comment': 'Press Secretary \n\nUnless that’s reserved for Alex Jones', 'created': '2024-11-14 21:36:45', 'submission_id': '1grc0ij'}
{'comment': 'Secretary of Propaganda. New cabinet post', 'created': '2024-11-14 22:57:26', 'submission_id': '1grc0ij'}
{'comment': 'She’ll be under his desk in the oval office', 'created': '2024-11-14 23:13:55', 'submission_id': '1grc0ij'}
{'comment': 'She won in a LANDSLIDE in her district. I truly don’t understand it. She’s an actual idiot. Like the definition of idiot.', 'created': '2024-11-14 23:19:23', 'submission_id': '1grc0ij'}
{'comment': 'Put her in charge of the Space Force so she can run the space lasers, and NOAA so she can run the weather control machines.', 'created': '2024-11-14 23:24:50', 'submission_id': '1grc0ij'}
{'comment': 'Why you’re looking at the new NASA and Space Force Commander. Lord, the ALIENS can’t get here fast enough. There is also the Cabinet Secretary of Agriculture who is a rather colorful character who keeps talking about something called‘BRAWNDO’', 'created': '2024-11-14 23:53:15', 'submission_id': '1grc0ij'}
{'comment': 'Awww, she tried so hard and got so far… but in the end, it didn’t even matter.', 'created': '2024-11-15 00:14:42', 'submission_id': '1grc0ij'}
{'comment': 'Maybe she could be the Hogwarts High Inquisitor.', 'created': '2024-11-15 00:36:38', 'submission_id': '1grc0ij'}
{'comment': 'She’s his next SCOTUS nominee', 'created': '2024-11-15 00:36:40', 'submission_id': '1grc0ij'}
{'comment': 'Probably fucking Treasury Secretary the way things are going.', 'created': '2024-11-15 00:37:40', 'submission_id': '1grc0ij'}
{'comment': 'is there a Department of Batshit Crazy?', 'created': '2024-11-15 01:13:25', 'submission_id': '1grc0ij'}
{'comment': 'Hulk Hogan keeps mistaking her for Rick Flair and tries to body slam her. That would be really distracting in the White House', 'created': '2024-11-15 01:22:37', 'submission_id': '1grc0ij'}
{'comment': "She won't be in the Cabinet, but under the Resolute Desk.", 'created': '2024-11-15 01:27:54', 'submission_id': '1grc0ij'}
{'comment': 'whatever she’s least qualified for is where she’ll end up. don’t worry.', 'created': '2024-11-15 01:37:40', 'submission_id': '1grc0ij'}
{'comment': "she can't be *in* the cabinet when she spends all her time *under* the desk...😏", 'created': '2024-11-15 01:57:05', 'submission_id': '1grc0ij'}
{'comment': 'Interior or Transportation', 'created': '2024-11-15 02:04:49', 'submission_id': '1grc0ij'}
{'comment': 'There’s still room in the clown car.', 'created': '2024-11-15 02:23:30', 'submission_id': '1grc0ij'}
{'comment': 'Who’s going to head The Ministry of Truth?', 'created': '2024-11-15 02:50:07', 'submission_id': '1grc0ij'}
{'comment': 'Secretary of education', 'created': '2024-11-15 03:02:35', 'submission_id': '1grc0ij'}
{'comment': "He created a spot for Musk, he will create one for her if their isn't one available. \n\nWe are fucked as a nation.", 'created': '2024-11-15 04:29:21', 'submission_id': '1grc0ij'}
{'comment': 'I wish she was just ‘missing’ in general.', 'created': '2024-11-15 05:19:11', 'submission_id': '1grc0ij'}
{'comment': 'PLEASE DONT PUT IT INTO THE UNIVERSE NOOOOOO\n\ndude. oh god. i finally forgot about her', 'created': '2024-11-15 05:32:43', 'submission_id': '1grc0ij'}
{'comment': "How is this real life!??! I seriously can't believe this!!! I NEVER saw this coming! I mean, I voted, I took several people with me and reminded friends and family to vote....I just don't understand!!! I thought I knew my fellow citizens better than this!!! It's truly disheartening...I feel despondent and without hope. \n\nI can't believe Americans are okay with a president that is a proven national security risk. He stole classified documents and left them in a bathroom at Mar a Lago. Even if you believe he was allowed to take them and didn't steal them, was it okay to store classified documents in a bathroom? What about her emails?!?! She COULD have acid washed her server and done whatever she wanted, it doesn't even come close in comparison!\n\nI'm sorry, it's just so 😢", 'created': '2024-11-15 06:08:18', 'submission_id': '1grc0ij'}
{'comment': 'Department of Education or the Interior. Either way future generations are screwed.', 'created': '2024-11-15 10:46:26', 'submission_id': '1grc0ij'}
{'comment': 'I guarantee the only reason he doesn’t like her is because she’s not attractive. He’s a narcissist to the core.', 'created': '2024-11-15 13:13:26', 'submission_id': '1grc0ij'}
{'comment': 'SHHHHHHH 🤫', 'created': '2024-11-15 17:16:21', 'submission_id': '1grc0ij'}
{'comment': "America's least pickable pick-me.", 'created': '2024-11-15 18:26:15', 'submission_id': '1grc0ij'}
{'comment': "OP don't jinx it 💀💀", 'created': '2024-11-15 19:31:06', 'submission_id': '1grc0ij'}
{'comment': 'And Boebert!', 'created': '2024-11-15 21:34:54', 'submission_id': '1grc0ij'}
{'comment': 'why are we giving him ideas?', 'created': '2024-11-14 21:02:42', 'submission_id': '1grc0ij'}
{'comment': "DON'T GIVE THEM IDEAS", 'created': '2024-11-14 21:08:59', 'submission_id': '1grc0ij'}
{'comment': 'Department of education is where i want to see her', 'created': '2024-11-14 21:11:13', 'submission_id': '1grc0ij'}
{'comment': 'Just wait', 'created': '2024-11-14 21:11:55', 'submission_id': '1grc0ij'}
{'comment': 'I don’t think he likes her. She is even flakier than he is.', 'created': '2024-11-14 21:14:11', 'submission_id': '1grc0ij'}
{'comment': "Brace yourselves: she's likely the Trump approved pick to run for Senate.", 'created': '2024-11-14 21:17:36', 'submission_id': '1grc0ij'}
{'comment': 'I’m sure he will find a place for her.', 'created': '2024-11-14 21:19:16', 'submission_id': '1grc0ij'}
{'comment': 'I hope it stays that way but I know better we are all f ed', 'created': '2024-11-14 21:30:06', 'submission_id': '1grc0ij'}
{'comment': "Don't give them any ideas", 'created': '2024-11-14 21:31:33', 'submission_id': '1grc0ij'}
{'comment': "I'm sure he can find some job for her in the White House.\n\nWith Melania gone and all.", 'created': '2024-11-14 21:32:02', 'submission_id': '1grc0ij'}
{'comment': "LMAO!-*and who do you think will get the 2nd-round nomination if Gaetz doesn't dodge the Republican House report on his pedophelia?", 'created': '2024-11-14 21:37:24', 'submission_id': '1grc0ij'}
{'comment': 'So far….', 'created': '2024-11-14 21:38:33', 'submission_id': '1grc0ij'}
{'comment': "His pick for CIA or NSA I'm calling it now", 'created': '2024-11-14 21:46:05', 'submission_id': '1grc0ij'}
{'comment': 'Director of nasa.', 'created': '2024-11-14 22:05:45', 'submission_id': '1grc0ij'}
{'comment': "Good. Lets get all these idiots out of Congress. They won't last long in the Trump Administration. I'd say that's a win...", 'created': '2024-11-14 22:15:06', 'submission_id': '1grc0ij'}
{'comment': "And why isn't Laura Loomer getting a cabinet post or cushy ambasador assignment? She was his main squeeze this past summer. Surely Trump won't discard her like a used tissue, will he?\xa0", 'created': '2024-11-14 22:16:44', 'submission_id': '1grc0ij'}
{'comment': 'The department of MLM‘s', 'created': '2024-11-14 22:22:22', 'submission_id': '1grc0ij'}
{'comment': "He didn't get Lauren bobert, either", 'created': '2024-11-14 22:35:48', 'submission_id': '1grc0ij'}
{'comment': 'Make a great Labor secretary. 🙄', 'created': '2024-11-14 22:44:05', 'submission_id': '1grc0ij'}
{'comment': 'Don’t give him ideas', 'created': '2024-11-14 23:05:56', 'submission_id': '1grc0ij'}
{'comment': 'New position. Minister of conspiracy theories.', 'created': '2024-11-14 23:10:45', 'submission_id': '1grc0ij'}
{'comment': 'I hope he makes her the administrator of the Small Business Administration just to send her through the roof.', 'created': '2024-11-14 23:19:14', 'submission_id': '1grc0ij'}
{'comment': 'She’ll be planted under the resolute desk.', 'created': '2024-11-14 23:24:11', 'submission_id': '1grc0ij'}
{'comment': 'Cabinet? I\'ve been told it\'s a "junk drawer". Clearly', 'created': '2024-11-14 23:27:09', 'submission_id': '1grc0ij'}
{'comment': 'Stormy Daniel as head chief of chief of staff', 'created': '2024-11-14 23:27:26', 'submission_id': '1grc0ij'}
{'comment': 'She’s the 2028 candidate', 'created': '2024-11-14 23:28:54', 'submission_id': '1grc0ij'}
{'comment': 'Don’t jinx it!', 'created': '2024-11-14 23:31:49', 'submission_id': '1grc0ij'}
{'comment': 'I was\nThinking about it today LMAO', 'created': '2024-11-14 23:35:14', 'submission_id': '1grc0ij'}
{'comment': 'So far.', 'created': '2024-11-14 23:35:54', 'submission_id': '1grc0ij'}
{'comment': 'Maybe deep down he has the same opinion of her as we do.', 'created': '2024-11-14 23:36:20', 'submission_id': '1grc0ij'}
{'comment': 'I would love to see him make MTG and Loomer CO-cabinet members. They have to share a desk. That way, while the world is burning, we at least have something to laugh at.', 'created': '2024-11-14 23:36:59', 'submission_id': '1grc0ij'}
{'comment': 'I hear Lauren Boebert is going to be offered the top spot at the National Endowment for the Arts. Her focus will reportedly be on eliminating the “woke mob” theater staff who are shoving their liberal morals down our throats every day by preventing visitors from engaging in public sex acts during performances.\n\nMake public indecency great again!', 'created': '2024-11-14 23:38:04', 'submission_id': '1grc0ij'}
{'comment': 'After inauguration, she will call for a new vote for speaker of the house. After that, ladies and gentlemen, the Speaker of the House, MTG!', 'created': '2024-11-14 23:48:12', 'submission_id': '1grc0ij'}
{'comment': "Please don't give him ideas", 'created': '2024-11-14 23:50:55', 'submission_id': '1grc0ij'}
{'comment': "She's a pickme. Hence, Trump won't pick her.", 'created': '2024-11-14 23:51:14', 'submission_id': '1grc0ij'}
{'comment': 'Shhhh!!! 🤫', 'created': '2024-11-15 00:05:06', 'submission_id': '1grc0ij'}
{'comment': 'DON’T GIVE HIM IDEAS!!!', 'created': '2024-11-15 00:09:00', 'submission_id': '1grc0ij'}
{'comment': 'Expected her to be Secretary of State, TBH.', 'created': '2024-11-15 00:12:35', 'submission_id': '1grc0ij'}
{'comment': 'Don’t give them ideas!', 'created': '2024-11-15 00:23:03', 'submission_id': '1grc0ij'}
{'comment': 'Please don’t give him any ideas. It’s possible his dementia addled brain forgot about her. Probably not though.', 'created': '2024-11-15 00:28:03', 'submission_id': '1grc0ij'}
{'comment': 'God that Bitch fits perfectly in his deluded circle of cronies.', 'created': '2024-11-15 00:39:09', 'submission_id': '1grc0ij'}
{'comment': 'stop this madness. Russia needs a black eye.', 'created': '2024-11-15 00:50:22', 'submission_id': '1grc0ij'}
{'comment': 'Careful, mentioning MTG and Trump in the same line twice is like saying Beetlejuice three times!', 'created': '2024-11-15 01:11:58', 'submission_id': '1grc0ij'}
{'comment': 'Please don’t give him ideas.', 'created': '2024-11-15 01:18:05', 'submission_id': '1grc0ij'}
{'comment': 'Kari Lake.', 'created': '2024-11-15 01:22:20', 'submission_id': '1grc0ij'}
{'comment': 'Oh the beauty queen needs a post', 'created': '2024-11-15 01:26:01', 'submission_id': '1grc0ij'}
{'comment': 'I can’t wait for her to act like the next major hurricane was an “act of God” and not created by the government', 'created': '2024-11-15 01:28:35', 'submission_id': '1grc0ij'}
{'comment': 'Only one good thing came out of this election at least Marjorie Taylor lost to her chances of being Vice President for being a Woman. See what happens when you vote for Trump and call him the First Female President of the United States.', 'created': '2024-11-15 01:40:01', 'submission_id': '1grc0ij'}
{'comment': 'And the spawn of satan. Oh wait Mat Gaetz is WHAT?!?!', 'created': '2024-11-15 02:34:50', 'submission_id': '1grc0ij'}
{'comment': 'Don’t will that into existence please.', 'created': '2024-11-15 02:39:35', 'submission_id': '1grc0ij'}
{'comment': 'Keep joking and she’ll be over the Department of Education', 'created': '2024-11-15 02:54:03', 'submission_id': '1grc0ij'}
{'comment': 'Don’t forget Giuliani. Where’s he going, head of corrections ?', 'created': '2024-11-15 02:59:21', 'submission_id': '1grc0ij'}
{'comment': 'It would be hilarious if she was totally left out.', 'created': '2024-11-15 02:59:34', 'submission_id': '1grc0ij'}
{'comment': '....so far... though it would be hilarious if she gets completely snubbed like McCarthy', 'created': '2024-11-15 03:09:29', 'submission_id': '1grc0ij'}
{'comment': "I'm sure King Trump will coronate her as his predecessor.", 'created': '2024-11-15 03:14:29', 'submission_id': '1grc0ij'}
{'comment': 'Weird psycho! Yep, perfect fit!', 'created': '2024-11-15 03:22:27', 'submission_id': '1grc0ij'}
{'comment': 'Put her in charge of the NSA.', 'created': '2024-11-15 03:30:41', 'submission_id': '1grc0ij'}
{'comment': 'Greg Abbott secretary of legs.', 'created': '2024-11-15 03:31:15', 'submission_id': '1grc0ij'}
{'comment': 'Well, you could “hand your bestie the keys to the country” if they weren’t a complete slimy dirtbag of a traitor to said country. If they were a decent person who actually cared about said country and had a good moral compass, it would be fine.', 'created': '2024-11-15 03:37:52', 'submission_id': '1grc0ij'}
{'comment': 'Rumour has it Sarah Huckabee Sanders will be picked to dismantle the USDOEd.', 'created': '2024-11-15 03:46:41', 'submission_id': '1grc0ij'}
{'comment': 'What, no Boebert?', 'created': '2024-11-15 04:04:37', 'submission_id': '1grc0ij'}
{'comment': 'You had to put that out into the world, didn’tcha?', 'created': '2024-11-15 04:13:20', 'submission_id': '1grc0ij'}
{'comment': 'She’ll need in charge of space force to find the Jewish lasers.', 'created': '2024-11-15 04:31:41', 'submission_id': '1grc0ij'}
{'comment': 'Gonna create a new department just for Madge. The department of super emtellijin, uh really smart people.', 'created': '2024-11-15 04:33:23', 'submission_id': '1grc0ij'}
{'comment': 'Why are her and Bobert so quiet? It’s unnerving.', 'created': '2024-11-15 05:02:52', 'submission_id': '1grc0ij'}
{'comment': '', 'created': '2024-11-15 05:03:07', 'submission_id': '1grc0ij'}
{'comment': 'They are closing the dept of education so don’t think they need a secretary of it', 'created': '2024-11-15 05:07:21', 'submission_id': '1grc0ij'}
{'comment': 'I wouldn’t say we are “missing” her, Bob.', 'created': '2024-11-15 05:22:50', 'submission_id': '1grc0ij'}
{'comment': 'Federal Insurance Office Director. So easy a caveman can do it.', 'created': '2024-11-15 06:00:46', 'submission_id': '1grc0ij'}
{'comment': 'Noooooo don’t give him any ideas', 'created': '2024-11-15 06:06:27', 'submission_id': '1grc0ij'}
{'comment': "STOPPPPPPPP! You're killing me 🥺😵", 'created': '2024-11-15 06:20:26', 'submission_id': '1grc0ij'}
{'comment': 'Don’t threaten repubs with a good time', 'created': '2024-11-15 06:32:41', 'submission_id': '1grc0ij'}
{'comment': 'Just wait for the yeti to get a placement. Mark my words!', 'created': '2024-11-15 07:34:58', 'submission_id': '1grc0ij'}
{'comment': 'I have next Tuesday on my bingo card', 'created': '2024-11-15 08:11:19', 'submission_id': '1grc0ij'}
{'comment': 'I feel like a ton of these guys are gonna do nothing but hurt him', 'created': '2024-11-15 08:18:45', 'submission_id': '1grc0ij'}
{'comment': 'With how the current cabinet looks, I wouldn’t even bat an eye', 'created': '2024-11-15 08:23:03', 'submission_id': '1grc0ij'}
{'comment': 'Did Trump name some supervillains. For the secretary of the interior yet?', 'created': '2024-11-15 08:29:52', 'submission_id': '1grc0ij'}
{'comment': 'Oh no', 'created': '2024-11-15 10:20:35', 'submission_id': '1grc0ij'}
{'comment': 'Just no!', 'created': '2024-11-15 10:21:16', 'submission_id': '1grc0ij'}
{'comment': 'She and Blowbert “Pick Me!” mean girls will dirty fight till the end for recognition by daddy. Nails and hair will be flying every which way.', 'created': '2024-11-15 10:58:13', 'submission_id': '1grc0ij'}
{'comment': 'And nothing left for little Timmy Scott!', 'created': '2024-11-15 11:57:47', 'submission_id': '1grc0ij'}
{'comment': 'I hope she goes missing from the political seen forever!!', 'created': '2024-11-15 12:23:12', 'submission_id': '1grc0ij'}
{'comment': 'Space Force coming soon', 'created': '2024-11-15 12:27:58', 'submission_id': '1grc0ij'}
{'comment': 'I think the King of the Dumbass Kingdom even sees she has two braincells fighting for third place', 'created': '2024-11-15 14:47:19', 'submission_id': '1grc0ij'}
{'comment': 'Head of NOAA', 'created': '2024-11-15 16:38:45', 'submission_id': '1grc0ij'}
{'comment': 'Thank God for small miracles', 'created': '2024-11-15 17:00:20', 'submission_id': '1grc0ij'}
{'comment': 'Jim Jordan', 'created': '2024-11-15 17:21:50', 'submission_id': '1grc0ij'}
{'comment': 'Press secretary', 'created': '2024-11-15 20:20:13', 'submission_id': '1grc0ij'}
{'comment': 'How about CIA director? Gah', 'created': '2024-11-15 20:46:05', 'submission_id': '1grc0ij'}
{'comment': "She shouldnt have been so horsey-faced. She didn't get a spot because she's fugly.", 'created': '2024-11-15 21:20:41', 'submission_id': '1grc0ij'}
{'comment': 'And Boebert!', 'created': '2024-11-15 21:34:48', 'submission_id': '1grc0ij'}
{'comment': 'They dont have enough seats in the house for that.......talk to me again about the great landslide victory MAGA won!!!!!', 'created': '2024-11-15 22:01:30', 'submission_id': '1grc0ij'}
{'comment': 'Nah, [Kari Lake](https://www.nbcnews.com/news/amp/rcna147902), [Louie Gohmert](https://www.texastribune.org/2022/08/18/louie-gohmert-texas-congress/), and [Mark Robinson](https://amp.cnn.com/cnn/2024/09/19/politics/kfile-mark-robinson-black-nazi-pro-slavery-porn-forum), among others, would all fit in perfectly.', 'created': '2024-11-16 00:06:23', 'submission_id': '1grc0ij'}
{'comment': "Don't give them the idea WTF?!", 'created': '2024-11-16 05:36:17', 'submission_id': '1grc0ij'}
{'comment': 'I wonder how butt hurt she’ll be that she didn’t get an appointment. She did sell her soul to the orange devil himself, after all. 🤭🤭🤭', 'created': '2024-11-17 01:03:39', 'submission_id': '1grc0ij'}
{'comment': 'Omg this would be perfect.', 'created': '2024-11-14 20:41:29', 'submission_id': '1grc0ij'}
{'comment': 'naw, all the resources instantly disappear when they kill NOAA', 'created': '2024-11-14 21:40:13', 'submission_id': '1grc0ij'}
{'comment': 'She can help Trump name the next Super Duper Rocket Missile, and with Elons help, they can use it to send Dogecoin prices to the moon! “Ground control to Major Green. Your circuit’s dead, there’s something wrong..”', 'created': '2024-11-14 22:25:10', 'submission_id': '1grc0ij'}
{'comment': 'I don’t know why he didn’t have Elon do NASA shit, like that actually would make sense. Instead he gave him the job to improve government efficiency, which we can see his tactics and impact by looking at his handling of Twitter. Didn’t go so well there.', 'created': '2024-11-15 02:30:53', 'submission_id': '1grc0ij'}
{'comment': 'finally', 'created': '2024-11-14 21:24:31', 'submission_id': '1grc0ij'}
{'comment': 'Good one. Although I m thinking Secretary of housing and urban development so that she can make sure that all those pesky non Anglo -Saxons are segregated and do not bother the patriotic southern white nationalists.', 'created': '2024-11-15 10:04:47', 'submission_id': '1grc0ij'}
{'comment': 'Cant do that when Vivek and first lady Elon are going to axe it with DOGE', 'created': '2024-11-15 13:34:15', 'submission_id': '1grc0ij'}
{'comment': 'LMAO that would just be icing on the cake and won’t surprise me', 'created': '2024-11-17 20:27:44', 'submission_id': '1grc0ij'}
{'comment': 'It’s because she’s fugly and fails to make his mushroom grow.', 'created': '2024-11-15 07:49:26', 'submission_id': '1grc0ij'}
{'comment': 'Secretary of Education or something like it would be a better fit for her particular lack of skills', 'created': '2024-11-14 20:50:59', 'submission_id': '1grc0ij'}
{'comment': "Rumor is Herbster. \n\nHerbster tried running for Nebraska Governor, had Trump's endorsement, got primaried by Jim Pillen.\n\nHerbster ran for Nebraska Governor despite his primary residence being in a KC suburb.", 'created': '2024-11-14 20:04:47', 'submission_id': '1grc0ij'}
{'comment': 'With all the shit that comes out of her mouth, she can canvas across America with speaking events held in farm lands.', 'created': '2024-11-14 20:38:24', 'submission_id': '1grc0ij'}
{'comment': 'She’s under the podium with her big mouth wide open. 🤣', 'created': '2024-11-14 21:07:21', 'submission_id': '1grc0ij'}
{'comment': 'And Kari lake', 'created': '2024-11-14 20:57:08', 'submission_id': '1grc0ij'}
{'comment': 'I feel like judge Cannon is getting a SCOTUS position... Like Gaetz is AG, and i was predicting that MTG would get that position. She has got to be the biggest trump loyalist in history.', 'created': '2024-11-14 22:48:06', 'submission_id': '1grc0ij'}
{'comment': 'Trailer park queen Bobert is also missing. She’ll be the director of handjobs and undercooked pork.', 'created': '2024-11-15 03:00:48', 'submission_id': '1grc0ij'}
{'comment': "If she has to give up her seat I'll be damned happy.\n\nI live in her rather now larger district 😩\n\nI'm kidding obviously. Her being in a higher position is bad. She's too insane to be a House rep but here we are.", 'created': '2024-11-15 01:11:28', 'submission_id': '1grc0ij'}
{'comment': 'Has he selected education yet? It would be worse than abolishing it.', 'created': '2024-11-15 00:26:37', 'submission_id': '1grc0ij'}
{'comment': 'Probably head the EEOC the way this administration is looking.', 'created': '2024-11-15 00:09:34', 'submission_id': '1grc0ij'}
{'comment': 'I think she’s going to become the Head of the newly created “Conspiracy Division”.', 'created': '2024-11-15 06:36:59', 'submission_id': '1grc0ij'}
{'comment': "This. Also, he's gonna fire most of the ones who get confirmed anyway. If she's not in this round, she can get in on it next year.", 'created': '2024-11-15 01:53:57', 'submission_id': '1grc0ij'}
{'comment': 'No shes gonna be left out and she is going to be our new best friend lol. A psycho ex you root for even though shes a monster.', 'created': '2024-11-14 20:48:32', 'submission_id': '1grc0ij'}
{'comment': "She's a shoe in for Monica Lewinskys role", 'created': '2024-11-15 01:24:16', 'submission_id': '1grc0ij'}
{'comment': 'Oh good God, no!😨 We do not need that bad butch body built heifer in anything that can hurt us even more!', 'created': '2024-11-14 23:40:51', 'submission_id': '1grc0ij'}
{'comment': "There's a chance that she's too stupid even for trump. I also think that trump doesn't like her looks one bit lol.", 'created': '2024-11-15 04:33:27', 'submission_id': '1grc0ij'}
{'comment': 'I think he already has a toilet.', 'created': '2024-11-15 05:59:37', 'submission_id': '1grc0ij'}
{'comment': 'I’m hoping that lack of MAGAt support in Congress by non MAGAts and Dems is enough to keep him from running the country into the ground. I doubt it, but maybe. Maybe they can keep impeachment proceedings rolling for the next 4 years. He’s already breaking the law. If MTG doesn’t get a cabinet post, maybe she will go all Fatal Attraction on his ass and cause more trouble for him in Congress.', 'created': '2024-11-14 23:21:48', 'submission_id': '1grc0ij'}
{'comment': 'There was a Congressman who was saying he actually thinks Trump would prefer one chamber to be controlled by the Democrats so he has a scape goat.', 'created': '2024-11-14 20:18:11', 'submission_id': '1grc0ij'}
{'comment': 'would be a shame if he gave the house to dems that way lol', 'created': '2024-11-14 21:08:26', 'submission_id': '1grc0ij'}
{'comment': "that would be boebert in beetlejuice. he doesn't want greene because he doesn't like to share the spotlight with people even dumber than he is", 'created': '2024-11-14 19:58:54', 'submission_id': '1grc0ij'}
{'comment': 'Ew.', 'created': '2024-11-14 20:12:40', 'submission_id': '1grc0ij'}
{'comment': 'MTG *would not be* his *first choice* for that roll. >!That position belongs to Ivanka.!<', 'created': '2024-11-14 20:27:28', 'submission_id': '1grc0ij'}
{'comment': "Damn, I wrote the same comment before seeing yours. But yeah, she'll be installed next to Loomer under there.", 'created': '2024-11-14 22:13:51', 'submission_id': '1grc0ij'}
{'comment': '“This is impordant!!”', 'created': '2024-11-14 20:13:50', 'submission_id': '1grc0ij'}
{'comment': 'Alina Haboob is press secretary', 'created': '2024-11-14 20:14:48', 'submission_id': '1grc0ij'}
{'comment': 'There will no longer be press conferences', 'created': '2024-11-15 00:11:02', 'submission_id': '1grc0ij'}
{'comment': 'He already tapped her for campaign girl.', 'created': '2024-11-14 20:25:10', 'submission_id': '1grc0ij'}
{'comment': 'Was he shocked good or bad?', 'created': '2024-11-14 20:58:44', 'submission_id': '1grc0ij'}
{'comment': 'Right? He’s got enough shitty ideas to last a lifetime', 'created': '2024-11-14 20:23:24', 'submission_id': '1grc0ij'}
{'comment': 'Secretary of UNeducation', 'created': '2024-11-14 20:30:12', 'submission_id': '1grc0ij'}
{'comment': 'Secretary of Duuuhifacation?', 'created': '2024-11-14 20:32:03', 'submission_id': '1grc0ij'}
{'comment': 'It would be hilarious if they had to start the Scaramucci counter before he even takes office.', 'created': '2024-11-14 23:59:47', 'submission_id': '1grc0ij'}
{'comment': 'My mom and I both bet that Kari Lake will be his press secretary haha', 'created': '2024-11-14 20:51:58', 'submission_id': '1grc0ij'}
{'comment': "She's really quite dangerous. Hope she gets NOTHING related to power.", 'created': '2024-11-15 00:05:03', 'submission_id': '1grc0ij'}
{'comment': '😆😆😆', 'created': '2024-11-14 20:56:27', 'submission_id': '1grc0ij'}
{'comment': "Not a bad idea actually. Once the US leaves the Paris Accord there won't be anything left to do.\n\nLol.", 'created': '2024-11-15 00:03:41', 'submission_id': '1grc0ij'}
{'comment': "She's too fUgly for tRUMP. Although, Laura Loomer is just as fUgly. Uhmm.", 'created': '2024-11-14 20:40:59', 'submission_id': '1grc0ij'}
{'comment': 'shes a loyalist though, shell get something', 'created': '2024-11-14 20:14:10', 'submission_id': '1grc0ij'}
{'comment': 'How the hell do they even keep getting elected in the first place? I am baffled that enough people in their respective districts actually WANT to be represented by such vile women…', 'created': '2024-11-14 21:20:03', 'submission_id': '1grc0ij'}
{'comment': 'I would, too, but how? None of the places I would consider want us either.', 'created': '2024-11-14 20:21:56', 'submission_id': '1grc0ij'}
{'comment': 'She could be Trump’s caddy on the golf course. Then we won’t hear much from her because Trump’s last presidential term, Trump spent a whole lot of time golfing. I suspect he’ll be golfing a lot again during this term.', 'created': '2024-11-15 04:57:42', 'submission_id': '1grc0ij'}
{'comment': 'This made me LOL. It may be the only way she ever gets *paid!!*', 'created': '2024-11-15 00:12:35', 'submission_id': '1grc0ij'}
{'comment': 'He is shutting down the DOE, remember?', 'created': '2024-11-15 11:37:18', 'submission_id': '1grc0ij'}
{'comment': 'Careful, I was banned in another sub for something similar, lol', 'created': '2024-11-15 10:51:46', 'submission_id': '1grc0ij'}
{'comment': 'Her desk is under the rocket launch platform', 'created': '2024-11-15 16:43:24', 'submission_id': '1grc0ij'}
{'comment': 'They killed Noah? 🤔😜🤣', 'created': '2024-11-15 06:41:15', 'submission_id': '1grc0ij'}
{'comment': 'Well, Trump bankrupted a casino, so they have a lot in common.', 'created': '2024-11-15 08:47:34', 'submission_id': '1grc0ij'}
{'comment': "Not to mention they are creating an unofficial government department headed by 2 people on the ground of efficiency when we already have the GAO. \n\n\nIt is possibly the most inefficient thing anyone could have created. It's like being the CEO of Ford and creating a separate car company named Bord with fewer resources to make the exact same automobiles.", 'created': '2024-11-15 18:21:35', 'submission_id': '1grc0ij'}
{'comment': 'https://www.reuters.com/world/us/elon-musk-efficiency-panel-seeks-high-iq-staff-plans-livestreams-2024-11-15/\n\nRamaswamy has spoken frequently about the parts of the U.S. government where he sees a need for extensive change.\nFor example, he said on X on Friday there is too much bureaucracy leading to less innovation and higher costs at the Food and Drug Administration, the Nuclear Regulatory Commission and "countless other 3-letter agencies."\n\nIt\'s not actually about efficiency, that\'s the gag. They want to get rid of regulations that stop their own businesses from harming and maiming people, ultimately. Ramaswamy owns a big pharma company and Musk is into nuclear energy, plus Musk is running away from lawsuits on his businesses. Musk has been bending Trump\'s ear in public about nuclear energy, like when they did their little Twitter chat and Trump thought he was talking about bombs instead of energy, so while I don\'t follow all of Musk\'s business dealings, I\'m sure there\'s something there.', 'created': '2024-11-16 16:32:24', 'submission_id': '1grc0ij'}
{'comment': 'Yeah, that sounds more in line with the klan ideologies.', 'created': '2024-11-15 22:45:02', 'submission_id': '1grc0ij'}
{'comment': 'Everyone loves a Cro-Magnon.', 'created': '2024-11-15 14:34:36', 'submission_id': '1grc0ij'}
{'comment': 'He already picked GED Boebert for that.', 'created': '2024-11-15 01:36:25', 'submission_id': '1grc0ij'}
{'comment': 'Yep. In charge of dismantling the DOE. Just wait.', 'created': '2024-11-14 21:46:06', 'submission_id': '1grc0ij'}
{'comment': 'Your level of sarcastic skill is impressive. You get my upvote.', 'created': '2024-11-14 23:54:26', 'submission_id': '1grc0ij'}
{'comment': 'Walters in Oklahoma will most likely get that post.', 'created': '2024-11-14 20:53:00', 'submission_id': '1grc0ij'}
{'comment': 'Perfect for her as he plans to get rid of the Department of Education', 'created': '2024-11-15 01:54:25', 'submission_id': '1grc0ij'}
{'comment': 'No no, that’s for Boebert', 'created': '2024-11-15 04:16:09', 'submission_id': '1grc0ij'}
{'comment': 'Human manure spreader.', 'created': '2024-11-15 05:20:12', 'submission_id': '1grc0ij'}
{'comment': "Nah it was her. Now it's looney loomer.", 'created': '2024-11-15 03:29:23', 'submission_id': '1grc0ij'}
{'comment': 'Ministry of Media', 'created': '2024-11-14 21:36:31', 'submission_id': '1grc0ij'}
{'comment': 'Secretary of voting integrity, in tandem with Giuliani and Mike Pillow', 'created': '2024-11-14 23:30:26', 'submission_id': '1grc0ij'}
{'comment': "She'll probably be the new White House press secretary.", 'created': '2024-11-15 01:47:26', 'submission_id': '1grc0ij'}
{'comment': 'Dear God - please do not put ideas like that in his dumb skull!', 'created': '2024-11-15 02:58:08', 'submission_id': '1grc0ij'}
{'comment': "> MTG would get that position\n\nSupreme Court? She's not a lawyer. (As if that would stop Trump.)", 'created': '2024-11-14 23:05:29', 'submission_id': '1grc0ij'}
{'comment': "That's what I was thinking. He's going to try to railroad the system to get all of his appointees in, then something will happen, and they'll get fired 1 by 1. Then, once they're out of a job, they'll be selling their story about the crazy man.", 'created': '2024-11-15 02:56:48', 'submission_id': '1grc0ij'}
{'comment': 'A marked-down Monica. Lewinsky was in her early 20s when her liaisons happened. MTG is 50.', 'created': '2024-11-15 01:30:06', 'submission_id': '1grc0ij'}
{'comment': 'I thought Laura Loomer was already filling that position.', 'created': '2024-11-15 01:37:50', 'submission_id': '1grc0ij'}
{'comment': "You think he's that smart? I dunno maybe Miller could convince him it's a good idea. Makes sense though since these idiots will ruin America and the economy. And if they control the government at that point 100% they will get 100% blame.", 'created': '2024-11-14 23:58:41', 'submission_id': '1grc0ij'}
{'comment': "An excuse to why he doesn't follow through with most of his promises.. I can't see it happening though.", 'created': '2024-11-14 23:36:02', 'submission_id': '1grc0ij'}
{'comment': 'I believe it! I’ve been praying the Republicans get FULL control so they can’t blame anyone else.', 'created': '2024-11-15 01:09:56', 'submission_id': '1grc0ij'}
{'comment': 'Like he could be monogamous to begin with…', 'created': '2024-11-14 20:01:17', 'submission_id': '1grc0ij'}
{'comment': 'Not anymore...', 'created': '2024-11-15 00:50:14', 'submission_id': '1grc0ij'}
{'comment': 'Not Fucker Turdston?', 'created': '2024-11-14 21:18:38', 'submission_id': '1grc0ij'}
{'comment': 'I think she said no to that', 'created': '2024-11-15 01:26:16', 'submission_id': '1grc0ij'}
{'comment': 'BAD! He was utterly disgusted...he hates Gaetz and MTG. I laughed at him and told him he got what he voted for....incompetence and the worst of humanity.', 'created': '2024-11-14 21:00:37', 'submission_id': '1grc0ij'}
{'comment': 'To last generations to come', 'created': '2024-11-14 20:51:52', 'submission_id': '1grc0ij'}
{'comment': 'One of many he will have in the next 4 years lmao', 'created': '2024-11-14 21:41:29', 'submission_id': '1grc0ij'}
{'comment': 'Gun to my head I’d still take loomer any day if we’re just talking looks.', 'created': '2024-11-14 20:42:01', 'submission_id': '1grc0ij'}
{'comment': "I'm pretty sure she's fucked after the Speaker thing.", 'created': '2024-11-14 20:19:54', 'submission_id': '1grc0ij'}
{'comment': 'A narrow enough group of people in her district support her in the primary and like a lot of places the primary is the election.', 'created': '2024-11-14 21:40:01', 'submission_id': '1grc0ij'}
{'comment': "I'd go to the UK. Universal health care and most of the shit they put in our food here is banned there. Just a thought", 'created': '2024-11-15 21:08:11', 'submission_id': '1grc0ij'}
{'comment': "Please tell me that's just a joke. I've seen that idea floating around, and I refuse to believe he'd put a high school dropout/3 times GED failure in charge of education.", 'created': '2024-11-15 12:55:49', 'submission_id': '1grc0ij'}
{'comment': 'Trump Bibles everywhere. I genuinely think that will be the no. 1 education policy he installs.', 'created': '2024-11-14 23:58:05', 'submission_id': '1grc0ij'}
{'comment': 'Tiffany Justice Moms for Liberty', 'created': '2024-11-14 23:38:34', 'submission_id': '1grc0ij'}
{'comment': 'Oklahoman here and this is my fear.', 'created': '2024-11-15 09:21:21', 'submission_id': '1grc0ij'}
{'comment': 'Maybe they could compete for Stupidest Lady in the USA', 'created': '2024-11-15 04:39:53', 'submission_id': '1grc0ij'}
{'comment': 'Poor Giuliani has no money for food. He needs a job.', 'created': '2024-11-15 01:55:22', 'submission_id': '1grc0ij'}
{'comment': 'Hahahha', 'created': '2024-11-15 01:47:50', 'submission_id': '1grc0ij'}
{'comment': "Remarkably she would actually be qualified for that position, so can't do that.", 'created': '2024-11-15 08:21:47', 'submission_id': '1grc0ij'}
{'comment': 'Thinking Alex Jones may be looking for a new gig promulgating fuckery and he would make a spicier Sean Spicer.', 'created': '2024-11-15 12:49:01', 'submission_id': '1grc0ij'}
{'comment': "a fox news host got a cabinet postion. anything's possible at this point.", 'created': '2024-11-14 23:10:09', 'submission_id': '1grc0ij'}
{'comment': 'There have been a few justices who weren’t lawyers in the past', 'created': '2024-11-15 04:25:00', 'submission_id': '1grc0ij'}
{'comment': 'I think this is all weaponized incompetence. He knows they cannot fill these roles, so when they ROYALLY fuck things up, then he can give cause for his NEED to take over as dictator.', 'created': '2024-11-15 06:40:39', 'submission_id': '1grc0ij'}
{'comment': "I was wondering who was really controlling everything. How tf does trump know about recess appointments and some of the other shit he's talking about? Do they brief him on the golf course?", 'created': '2024-11-15 02:59:05', 'submission_id': '1grc0ij'}
{'comment': 'Steve Miller?? What makes you think that psychopath is sane?', 'created': '2024-11-15 17:47:35', 'submission_id': '1grc0ij'}
{'comment': 'Especially that white reparations bullshit', 'created': '2024-11-15 17:48:12', 'submission_id': '1grc0ij'}
{'comment': "Who then? Tiffany? As far as I know Donald hasn't checked her out [since she was an infant](https://www.youtube.com/watch?v=3p9mWlCJHBs).", 'created': '2024-11-15 05:55:11', 'submission_id': '1grc0ij'}
{'comment': 'Also - inhumanity and the worst of competence.', 'created': '2024-11-14 23:14:28', 'submission_id': '1grc0ij'}
{'comment': 'No way! really? This thing. LOL!\n\nhttps://preview.redd.it/a50k1jvlpy0e1.jpeg?width=352&format=pjpg&auto=webp&s=eef7571072dd76296bb98e7fb8a5abb5e6a7c532', 'created': '2024-11-15 01:45:42', 'submission_id': '1grc0ij'}
{'comment': "And how would one move permanently to the uk? I don't qualify for an ancestry, entrepreneur or global talent visa and none of the other schemes apply either. A lot of us want to get away from diaper donny and his nest of vipers. But most of us don't have the connections or the cash.", 'created': '2024-11-15 23:43:01', 'submission_id': '1grc0ij'}
{'comment': "We need her to resign immediately, like Gaetz, and hopefully neither of them get approved, but then can't go back to Congress. With that in mind, he may as well nominate MTG for Secretary of State. Let's *actually* clean up the fucking swamp. I'm so fucking scared and miserable.", 'created': '2024-11-16 00:41:45', 'submission_id': '1grc0ij'}
{'comment': 'The whole fucking thing is a joke, and I wish someone would put me in a medically-induced coma for the next four years. This is just the tip of the iceberg, my friend.', 'created': '2024-11-16 00:38:43', 'submission_id': '1grc0ij'}
{'comment': 'I’m honestly waiting on Putin to be assigned over Foreign Appairs.', 'created': '2024-11-15 06:38:58', 'submission_id': '1grc0ij'}
{'comment': 'Yes, but they all learned the law under the now all-but-forgotten method of "reading the law," where they studied one-on-one with an experienced attorney. And they nonetheless were all experienced, practicing attorneys themselves at the time of their nomination for the Supreme Court. MTG has zero training or experience in the law. Her last employment was as a gym trainer.', 'created': '2024-11-15 13:48:17', 'submission_id': '1grc0ij'}
{'comment': 'Yes people behind the scenes likely ran things the last time too. Trump just wants to play golf, run rallies and stay out of prison. \n\nOh I forgot, also stop comics from mocking him.', 'created': '2024-11-15 05:36:48', 'submission_id': '1grc0ij'}
{'comment': "Does the ability to calculate strategies mean a person is sane? IMO a person can be corrupt and calculate. This of course is the most dangerous kind of person. Intelligent with no morals or integrity. Note that from a broader spiritual perspective evil is completely stupid because it ignores the reality of Unity and karma. \n\nI guess it's kind of a paradox.", 'created': '2024-11-15 20:17:41', 'submission_id': '1grc0ij'}
{'comment': 'Eww I was thinking more that recently plastified loon Lauren something.', 'created': '2024-11-15 15:59:19', 'submission_id': '1grc0ij'}
{'comment': 'Excuse me but I did say gun to my head 😅', 'created': '2024-11-15 01:46:53', 'submission_id': '1grc0ij'}
{'comment': 'OF here i come', 'created': '2024-11-16 17:18:54', 'submission_id': '1grc0ij'}
{'comment': "There is zero chance any of that matters to Trump.\n\nThe ONLY thing he cares about is himself.\n\nHe has probably never heard of Oliver Wendell Holmes, and wouldn't care anyway.", 'created': '2024-11-15 13:54:37', 'submission_id': '1grc0ij'}
{'comment': "I wasn't being an asshole, I genuinely want to know why you think a ghoulish asshole like Steve Miller would be some voice of reason or whatever", 'created': '2024-11-15 20:50:47', 'submission_id': '1grc0ij'}
{'comment': "I wasn't being an asshole, I genuinely want to know why you think a ghoulish asshole like Steve Miller would be some voice of reason or whatever", 'created': '2024-11-15 20:50:54', 'submission_id': '1grc0ij'}
{'comment': 'Not sure what you need I explained it best I can.', 'created': '2024-11-15 21:38:02', 'submission_id': '1grc0ij'}
{'comment': "They'll continue to blame Democrats because they belong to a cult.", 'created': '2024-11-14 18:45:15', 'submission_id': '1graf6u'}
{'comment': 'Those of us not stuck on stupid tried to warn everyone else', 'created': '2024-11-14 18:48:44', 'submission_id': '1graf6u'}
{'comment': "You mean imposing widespread tariffs and gutting our agricultural workforce won't bring food prices down??", 'created': '2024-11-14 18:46:03', 'submission_id': '1graf6u'}
{'comment': 'Duh lol also the dopey kids are gonna be mad when Netanyahu cuts the ribbon on the trump golf course built in Gaza oh well they broke they buy it with a tarriff', 'created': '2024-11-14 18:47:44', 'submission_id': '1graf6u'}
{'comment': 'Well, duh. What do you expect when you consider the IQ of your average MAGAt is <75? They don\'t pay attention to politics, let alone how the fucking economy works. They don\'t have the resources to make an educated choice at the voting booth. All they hear is "I hate Mexicans, trans, and gays." And that\'s enough for them to pull the R lever.\n\nAt this point all we can do is sit back and watch America burn. The MAGAts won\'t ever come around to seeing the truth, even when they stand in the ashes of this once great nation. But the rest of us can bide our time. It\'ll be up to us to undo all this shit.', 'created': '2024-11-14 19:24:00', 'submission_id': '1graf6u'}
{'comment': 'Good I hope they eat dog food.', 'created': '2024-11-14 18:46:35', 'submission_id': '1graf6u'}
{'comment': 'Trumptards like paying high prices for eggs', 'created': '2024-11-14 19:34:27', 'submission_id': '1graf6u'}
{'comment': 'Imagine thinking a guy who has probably never shopped for groceries in 60 years is going to lower prices.', 'created': '2024-11-14 19:35:41', 'submission_id': '1graf6u'}
{'comment': 'Can anyone please help me understand what bills Joe Biden signed to make eggs expensive? Or what bills went unsigned that raised the price of eggs? I am struggling to tie directly tie Biden with “Muh’conomy” \n\nThe economy is very complex. Covid, supply chains, bird flu, war in Ukraine, don’t all of these affect economy in one way or another to some varying degree?', 'created': '2024-11-14 19:46:17', 'submission_id': '1graf6u'}
{'comment': 'They won’t pay less. But that’s ok for them since it is GOP in power. It will be someone else’s fault.', 'created': '2024-11-14 19:41:45', 'submission_id': '1graf6u'}
{'comment': 'Surprise surprise', 'created': '2024-11-14 19:26:37', 'submission_id': '1graf6u'}
{'comment': 'Don’t doubt Trump. If we have a severe recession in the next four years, prices will go down.\n\nAmerican voters want a recession. They OVERWHELMINGLY told pollsters they were better off financially in 2020 when we were in a recession. American voters want the stock market to tank, they want mass layoffs and unemployment. Anything to make groceries cheaper…', 'created': '2024-11-14 19:25:33', 'submission_id': '1graf6u'}
{'comment': 'Duh. In other news, sky is blue.', 'created': '2024-11-14 19:28:07', 'submission_id': '1graf6u'}
{'comment': 'Yeah, no kidding', 'created': '2024-11-14 19:28:57', 'submission_id': '1graf6u'}
{'comment': 'Rash decision voting.\n\nTrumps plan for mass deportation will see fruits and vegetables rot in the field, and slaughterhouses with insufficient workforce to meet consumer demand. Prices for all foods will skyrocket.\n\nAlabama already went through this. Passed a law forbidding farmers from hiring certain migrant workers. \n\nAlabama had plans to bus in local workers, which fell flat on its face. Most of the workers were not in physical condition to work hard labor in the fields and be exposed to the heat and sun all day. Many quit the same day or would no show or show up to work late. Production output was very low. One AL farmer said “if you don’t want illegals here then just stop eating!!!!”.\n\nAnd how many people you know would be willing to work in a slaughterhouse? Biggest lie by the GOP is Americans will fill in the vacancies.\n\nI say let all of this fall apart and fail. Voters will have to learn the hard way they chose wrong voting for Trump/Vance.', 'created': '2024-11-14 20:04:08', 'submission_id': '1graf6u'}
{'comment': 'Going to pay a lot more on everything plus higher taxes and more expensive healthcare along with a huge drop in the value of the dollar.', 'created': '2024-11-14 20:37:40', 'submission_id': '1graf6u'}
{'comment': 'Republicans are masochists confirmed', 'created': '2024-11-14 20:50:34', 'submission_id': '1graf6u'}
{'comment': 'If memory serves me correct, the last time we placed tariffs at over 20%, we had *checks notes* the Great Depression not even a year later. Add on top of that, Trump’s proposing to get rid of income taxes and replace them with tariffs which would require an tariff hike of nearly 70%. We’re just trying to make Idiocracy look like child’s play at this point.', 'created': '2024-11-14 21:21:34', 'submission_id': '1graf6u'}
{'comment': 'Imagine going through life being so stupid that you think politicians control grocery prices', 'created': '2024-11-14 22:04:41', 'submission_id': '1graf6u'}
{'comment': "This is how simple it is to understand what is going on...and how stupid Republicans are.\xa0\n\n\nWatch the profits reported by a company.\xa0\n\n\nRemember when eggs were $10 a dozen?\xa0\n\n\n*Just ONE* of those companies reported an increase of over **700%** over the previous quarter.\xa0\n\n\nPublix? A manager locally was giddy because Publix has more than doubled their profit in the last couple of years.\xa0\n\n\n*This is gouging.*\n\n\nBut just like with gas, they are too stupid and lazy to figure it out by simply reading.\xa0\n\n\nI hate this country. I can't stand any of them and I wish they'd go live on another planet.\xa0", 'created': '2024-11-15 18:11:27', 'submission_id': '1graf6u'}
{'comment': "On the one hand, I hope that Sen. Thune is able to stop those tariffs. On the other... \n\nI don't want people to suffer just because a bunch deserve to. I'll probably be ok. I live in a place where there are a lot of farms. I'm used to paying higher than a lot of grocery store prices. But those prices will go up because their over all costs will go up.\n\nBut people voted for this because they're fucking stupid and sometimes you have to burn your hand on the stove top to figure it the fuck out.", 'created': '2024-11-14 22:08:10', 'submission_id': '1graf6u'}
{'comment': 'They think one egg will equal 40 eggs.\n\n', 'created': '2024-11-14 19:49:48', 'submission_id': '1graf6u'}
{'comment': "Time to uncage the leopards! They've got a whole lot of faces to eat.", 'created': '2024-11-14 20:01:23', 'submission_id': '1graf6u'}
{'comment': 'Where was CNN when this reporting before the election - derrrr', 'created': '2024-11-14 20:16:44', 'submission_id': '1graf6u'}
{'comment': 'No Shit!!', 'created': '2024-11-15 01:33:25', 'submission_id': '1graf6u'}
{'comment': 'Something tells me we’ll be paying much more. Or we won’t have groceries at all.', 'created': '2024-11-15 04:54:41', 'submission_id': '1graf6u'}
{'comment': 'Stupidity won', 'created': '2024-11-16 01:35:05', 'submission_id': '1graf6u'}
{'comment': 'Its not the prices, but extrema gender polices!', 'created': '2024-11-16 19:46:20', 'submission_id': '1graf6u'}
{'comment': 'Yep! They’ll still blame Democrats even if the GOP controls all 3 branches of the fed.', 'created': '2024-11-14 19:31:32', 'submission_id': '1graf6u'}
{'comment': 'We need to start blaming him for prices the day he is inaugurated whether it’s actually his fault or not. Even if decided to subsidize groceries across the country for everyone with his own money and we should still be complaining it’s his fault eggs cost too much.', 'created': '2024-11-14 20:41:24', 'submission_id': '1graf6u'}
{'comment': 'They literally still blame Obama and he was 2 now almost 3 administrations ago.', 'created': '2024-11-14 21:13:39', 'submission_id': '1graf6u'}
{'comment': 'Nah, diehard maga will, but the voters in general will blame republicans, just like in 2018 and 2020. Sentiment shifts based on who is in power when things are tough. If prices are the same or worse, Republicans will get voted out the same as Democrats. People vote based on their wallet above everything else.', 'created': '2024-11-14 19:51:26', 'submission_id': '1graf6u'}
{'comment': 'Yeah. Suddenly they will pretend to understand how economic policies take time to have their effects "felt."\n\nExcept tariffs are the exception to that rule. Always have been. Always will be.', 'created': '2024-11-14 22:08:59', 'submission_id': '1graf6u'}
{'comment': 'Exactly', 'created': '2024-11-14 18:51:53', 'submission_id': '1graf6u'}
{'comment': 'Yep!', 'created': '2024-11-14 19:27:32', 'submission_id': '1graf6u'}
{'comment': "Economists everywhere: This is an objectively terrible plan. \n \n MAGAs: You know, I'm something of an economist, myself... gas prices are.. \n \n Economists: Actually pretty damn good, given the circumstances. \n \n MAGAs: Okay, well, grocery prices.. \n \n Economists: Are controlled by the corporations who are intentionally gouging you so they can have record profits. \n \n MAGAs: Because inflation.. \n \n Economists: Actually came in at an incredibly reasonable post-COVID rate and is not related to the corporate greed, the price of groceries, or other items. \n \n MAGAs: And my taxes.. \n \n Economists: Are going to lower if you elect Kamala, because her platform is heavily focused on holding the richest 1% accountable for their fair share, to which, the IRS has already shown great progress under Biden after Trump's first term intentionally underfunded the agency in hopes that it would help his billionaire friends more easily evade paying.. to which, it should also be mentioned that Trump is recorded as only having paid $750 in taxes total for each of his first two years as Preaident.. \n \n MAGAs: Well, the immigrants.. \n \n Economists: Are a crucial backbone of the American work force, and deporting them will cause food prices to spike astronomically due to an emergency labor shortage and reduced domestic availability, coupled with the new tariffs making import costs equally unaffordable. \n \n MAGAs: *votes Trump anyway*", 'created': '2024-11-14 19:59:40', 'submission_id': '1graf6u'}
{'comment': 'Surprised Pikachu face!', 'created': '2024-11-14 19:11:20', 'submission_id': '1graf6u'}
{'comment': 'The DNC is SO punished though!', 'created': '2024-11-14 19:50:05', 'submission_id': '1graf6u'}
{'comment': 'People talk about it being like 1984 but it’s really more like Atlas Shrugged. All the smart people left and the dumbasses wondered what happened', 'created': '2024-11-14 19:26:47', 'submission_id': '1graf6u'}
{'comment': 'They will be when they cut down their social security and Medicare benefits', 'created': '2024-11-14 19:09:34', 'submission_id': '1graf6u'}
{'comment': 'It’s about to get hot and you know what, the voters should get what they wanted lol', 'created': '2024-11-14 19:06:53', 'submission_id': '1graf6u'}
{'comment': 'And dog shit', 'created': '2024-11-14 19:06:37', 'submission_id': '1graf6u'}
{'comment': 'This is not the response, this comment is an example of the out of touch thinking that lost things for the democrats.\n\nWhen you hear that there are people who are struggling affording food and rent so they voted for another candidate, your response is:\n\n“Good I hope they eat dog food.”\n\nWow truly out of touch with those struggling to say that garbage, I’m sure this message will win over the lower class', 'created': '2024-11-14 19:21:13', 'submission_id': '1graf6u'}
{'comment': 'There is a chance it could happen. He could break the economy so bad that it goes into a death spiral. I mean, prices lowered during the Great Depression. It was because no one had a job or money and couldn’t afford food, but a lower price is a lower price, right?', 'created': '2024-11-15 14:33:36', 'submission_id': '1graf6u'}
{'comment': "Trumpers can't comprehend complex or nuanced things\n\n\nThere is no understanding", 'created': '2024-11-14 19:51:57', 'submission_id': '1graf6u'}
{'comment': 'Right', 'created': '2024-11-14 19:27:34', 'submission_id': '1graf6u'}
{'comment': 'Doesn’t matter how cheap groceries are if you’re unemployed! 😔', 'created': '2024-11-14 19:44:12', 'submission_id': '1graf6u'}
{'comment': 'You nailed all of it', 'created': '2024-11-14 20:59:23', 'submission_id': '1graf6u'}
{'comment': 'Agreed', 'created': '2024-11-14 20:57:41', 'submission_id': '1graf6u'}
{'comment': "When they don't hold another election in 2028, they won't be able to blame Democrats ever again. \n \n We can finally laugh in their faces, but we'll have to do it in Russian or be otherwise locked up.", 'created': '2024-11-14 19:48:31', 'submission_id': '1graf6u'}
{'comment': 'They\'ll be like "you knew this would happen why didn\'t you (dems) stop it?!"\n\nBecause we\'re tired of cleaning up a republicans mess every time or trying to prevent it', 'created': '2024-11-14 20:36:25', 'submission_id': '1graf6u'}
{'comment': 'Sorry to get pedantic but “the fed” refers to the Federal Reserve, not the whole government', 'created': '2024-11-14 20:34:07', 'submission_id': '1graf6u'}
{'comment': 'Agree. The herd will move again. People are acting like we need to convert all the MAGA wingnuts to win power again. We don’t. We need a small handful of people who aren’t paying much attention and live in swing states. Just like always.\xa0', 'created': '2024-11-15 00:40:58', 'submission_id': '1graf6u'}
{'comment': 'Thank you for posting this. I think about this a lot. Still very disappointed in the election. I don\'t buy people saying that they voted for trump because he\'s better for the economy. The truth is he is not.\n\nPeople voted for trump purely because of the image. Not because of substance. If anyone took time to really look into policies between the two candidates, most would understand trump\'s plans were not going to help poor and working class. It was all the bluster, the constant fear mongering like at his rallies where he\'d say "America is a garbage can. It really is." Then, he\'d proclaim only he could save it, without any specifics. \n\nAnd people ignored everything else (his poor character, past failings as president, no current policies), and voted because, yeah things are tough and he just looks like he will do good for me.', 'created': '2024-11-15 15:25:48', 'submission_id': '1graf6u'}
{'comment': 'Other the bruised ego nothing 😒', 'created': '2024-11-14 19:58:14', 'submission_id': '1graf6u'}
{'comment': 'The Trump administration is not going to help you with that. \n\nThings were finally getting better after the pandemic and Harris had an economic plan that the economist approved of. Trump has one that the economist say will probably put us into a depression. If you would’ve listened to sources other than Trump, you may have known that.\n\nYou are to blame for your own ignorance on how things work', 'created': '2024-11-14 19:30:07', 'submission_id': '1graf6u'}
{'comment': 'Democrats have tried to play nice for 9 years and have been met with hate at every level. \n\nDemocrats tried to warn people of what is to come and have been met with hate at every level. \n\nDemocrats have been bullied and harassed enough. Playing nice got them nowhere. \n\nAll we ask now is that republicans get what they voted for. This is still very polite, if you ask me. We really hope you get all you asked for. \n\nAnd if that means they might have to eat dog food when tariffs kick in, immigrants are deported, and the FDA is abolished (like they were warned), then eat up. \n\nThe tolerance and sympathy democrats have given is running out. \n\nI do have great sympathy for those who did not vote for this.', 'created': '2024-11-14 19:56:07', 'submission_id': '1graf6u'}
{'comment': 'I hope dog food is too expensive for those who choose to believe lies and choose bigotry. No fucks left to give for these assholes.', 'created': '2024-11-14 19:39:23', 'submission_id': '1graf6u'}
{'comment': 'Because the struggling voted to make things worse for themselves. Because they failed to recognize reality and fell for lies and bs. They voted for literal garbage. So dog food it is', 'created': '2024-11-15 10:44:10', 'submission_id': '1graf6u'}
{'comment': 'They will\n\n\n\xa0It will be our fault we didn\'t save them with "a better candidate"', 'created': '2024-11-14 19:49:37', 'submission_id': '1graf6u'}
{'comment': 'I’ll be like “you just told me I had TDS 🤷🏻\u200d♂️”', 'created': '2024-11-14 20:39:00', 'submission_id': '1graf6u'}
{'comment': 'Ah damn. That’s right, forgot about that 😄', 'created': '2024-11-14 20:34:53', 'submission_id': '1graf6u'}
{'comment': 'One thing you need to understand before commenting is that I’d be a Harris supporter and think Trump is the worst person for the world since Hitler, so I’m not against Harris.\n\n\n“The Trump administration is not going to help you with that.”\n\nI didn’t say they would, what’s abhorrent is hearing that there is a crisis with people affording rent and food so they voted for a change instead of the candidate who stupidly said she wouldn’t have done anything different than Biden, hearing poor people made that decision and saying “Good I hope they eat dog food” is gross and an example of someone not understanding the current crisis currently happening and instead of empathy showing the opposite. \n\n\n\n“You are to blame for your own ignorance on how things work”\n\nMy own ignorance? You mean the ignorance at least smart enough to see what has happened with the charts of first time homebuyers age or first time parents age and see that people cannot do either in some areas anymore because it’s essentially not possible? Is the best way to court these people to say I hope they eat dog food for being desperate enough to vote for the other side? Gross', 'created': '2024-11-14 19:47:07', 'submission_id': '1graf6u'}
{'comment': 'What I think lost Kamala the election is not that she was too nice, it’s that she didn’t address the fears enough.\nAlso Biden has not been successful solving affordable housing. I believe affordable housing is the main cause of conservatives surging. Keep in mind like with Hitler, conservatives do best during bad times when people are desperate and this is one of those times with the cost of living crisis.\nI did not see Biden or Kamala ever come up with policy solutions to deal with these, neither has Trump, but criticizing the person in power works well right now.\nWhat could they have come up with? New regulation to fix the zoning policy’s that are causing the housing crisis. I didn’t see Kamala or Joe showing passion about solving this crisis at all besides Kamala promising to bring down cost of housing but not expanding on how much.\n\nDemocrats are focused on talking about the grocery bill, do you know how much asking rent has changed in the past 5 or 10 years on a 1 bedroom? It makes groceries look like nothing, but I hear nonstop about one and none about the other. That’s an example of targeting the low wage earning voters the wrong way, they want politicians to talk about how they could have a roof over their head for less than 70% of their paycheque. The worst way to court these votes? Make fun of them voting for their pocketbooks instead of looking at why with empathy', 'created': '2024-11-14 20:06:13', 'submission_id': '1graf6u'}
{'comment': 'People vote for reasons other than lying and bigotry. I can’t count the amount of times the past months I’ve heard people say they just ignore what they don’t like.\n\nClearly what we’ve learned actually is they’re willing to ignore that. Many republicans vote because of lower tax reasons and appearance of the economy running badly since covid', 'created': '2024-11-14 19:50:16', 'submission_id': '1graf6u'}
{'comment': 'I am not saying I want them to eat dog food. I’m saying that they voted for Trump and his shitty economic policy. People are adults when they make a choice to vote. Voting has consequences and if you don’t care about researching what you were voting for then that’s their problem. \n\nWe are already seeing what Trump is doing. It’s what he said he would do all along. Retribution for going against him. It doesn’t have anything to do with anyone else in the United States or the world for that matter. Have you seen the people who he is appointing to high offices? They are not qualified for those positions, except for the qualification of doing exactly what Trump wants them to do that will benefit Trump.', 'created': '2024-11-14 20:24:47', 'submission_id': '1graf6u'}
{'comment': 'Kamala had a plan to give people buying homes $25,000 dollars. \n\nThe cost of living rarely goes down. Greedy landlords and corporations don’t care about people. \n\nKamala wanted to invest in workers and is pro-union, raise minimum wage, tax billionaires more, expand healthcare coverage, lower prescription drugs… this would help families be able to afford the higher costs. \n\nI live in the one of the most expensive cities in the most expensive state. I know how much rent is. \n\nTrump not only has zero plans to help the average person, his economic concepts of plans are designed to destroy the working class. \n\nHis economic guy, Elon, had told the American people to be ready for two years of suffering. If you heard that and still voted for this guy, dog food it is. You were warned.', 'created': '2024-11-14 20:15:38', 'submission_id': '1graf6u'}
{'comment': 'Like when they make money betting on an election….spare me the bullshit', 'created': '2024-11-14 19:52:18', 'submission_id': '1graf6u'}
{'comment': '1: are you talking about only help buying houses or helping renters at all? What is $25000 to buy a house especially when they already need to get mortgage approval too? $25k is almost nothing. Literally it’s like saying “we’re going to give you 5% towards a home” lol ok? It’s honestly a laughable fix to the housing crisis. How long until housing raises 5% and that 25k is really nothing, historically raises more than 5% a year.\n\nAnd again when people are buying houses they’re generally stable, that’s not addressing the people who are actually struggling and can only pay rent.\nI know a lot of people around age 30, the only people able to live alone are people with 2 jobs to pay rent, the highest education people, or couples. Otherwise essentially all young people and low earners are struggling and I feel bad about the people who lose their place and have to find a new place costing double the rent compared to 10 years ago so now they’re homeless or living with parents.\n\n“ the cost of living rarely goes down, greedy landlords and corporations don’t care about people”\n\nRight, so it’s Kamala’s fault that she didn’t come out and say “I’ve heard you the people and I see the housing crisis” I will do my best even if it upsets the corporations to make affordable housing a reality for the hardworking people of the USA, it is my mission that everyone working a full time job will be able to live without having to work 2 jobs, and I will do whatever I can to make life livable for these people” \nIt’s her fault she didn’t do something like this courting people struggling, so guess what, they bought into the message of “the people in charge are doing a horrible job” and it sticks because for example she said she couldn’t think of anything she would’ve done differently the last 4 years.\n\nIt’s Kamala’s job to care about the people and be their voice', 'created': '2024-11-14 20:30:43', 'submission_id': '1graf6u'}
{'comment': 'What you just said is completely ridiculous, betting on the election literally means nothing and is completely not connected to what we’re talking about just sidetracking', 'created': '2024-11-14 19:54:15', 'submission_id': '1graf6u'}
{'comment': 'Yikes. Just yikes.', 'created': '2024-11-14 20:35:18', 'submission_id': '1graf6u'}
{'comment': 'What a ridiculous and uninformed pile of garbage.', 'created': '2024-11-15 10:40:43', 'submission_id': '1graf6u'}
{'comment': 'Exactly how much time did you spend getting Democrats elected? The grocery meme is obtuse at best. \xa0 Bet on that.', 'created': '2024-11-14 20:03:02', 'submission_id': '1graf6u'}
{'comment': 'Great response, the only thing substantive you said about Kamala saying she’d do anything for the housing crisis is raising minimum wage and a 25k incentive to buy a house, and no renter help, and then you don’t get how people struggling literally see this as next to nothing.\n\n\nYou’re right people were flocking to her thinking she’d be solving problems, and I actually think that was being way too radical for solving the housing crisis. 25k? Wow so much I’m surprised not everyone has a house with fixes like that being offered', 'created': '2024-11-14 20:43:09', 'submission_id': '1graf6u'}
{'comment': 'Thanks for the rebuttal using facts countering my points. Over half of America lives paycheque to paycheque and Kamala didn’t court these voters enough so they went out to vote for a change from paycheque to paycheque and her saying she wouldn’t have made any different decisions the past 4 years', 'created': '2024-11-15 17:48:23', 'submission_id': '1graf6u'}
{'comment': 'How much time? I don’t know id estimate easily over 24 hours debating with people over the last 4 years trying to sway people to the democrats.\n\nI don’t even know what you’re trying to say', 'created': '2024-11-14 20:11:15', 'submission_id': '1graf6u'}
{'comment': 'lol. Trump has no plan besides blow up the economy. \n\nKamala was at least trying to address it. \n\nTrump will actively make things worse. A lot worse. Based on what he has promised, housing and renting will continue to rise (he has no plan for this). Wages will go down (anti-union, no overtime pay). Grocery costs will go up a lot(tariffs and mass deportations). Healthcare will be gutted as promised. Social programs will be gone as promised. \n\nBut okay. I guess you win. You are right.', 'created': '2024-11-14 21:15:09', 'submission_id': '1graf6u'}
{'comment': 'First of all, I don’t win, nobody wins, I agree with everything you said about Trump having no plan.\nI am simply trying to outline the appeal that Trump had vs Kamala, and that is Kamala didn’t appeal to struggling people beyond essentially saying I’m going to continue what Biden has been doing, and a 25k bump on a house purchase which is nothing. She didn’t address doing anything to fix the rental crisis.\n\nTrump on the other hand is the biggest celebrity businessman in the world for decades who says everything is broken and he’s going to fix it all, and countless people were desperate enough for a change keeping in mind one thing, Trump does have a plan: to be selfish.\n\nSo essentially a lot of people looked at it as continuation of the question “is my life better now than 4 years ago” and continuing policies, vs gambling with someone trying to be selfish for everyone’s wallets', 'created': '2024-11-14 21:41:26', 'submission_id': '1graf6u'}
{'comment': 'Link to *Guardian* piece referenced above:\n\nhttps://www.theguardian.com/media/2024/nov/13/why-the-guardian-is-no-longer-posting-on-x', 'created': '2024-11-14 18:35:27', 'submission_id': '1gr9s1u'}
{'comment': 'Everyone against Trump needs to do this. Elon Musk = Donald Trump. Two billionaire bullies doing whatever the fuck they please. Both own social media platforms which engage in rampant misinformation.', 'created': '2024-11-14 20:22:42', 'submission_id': '1gr9s1u'}
{'comment': 'Yeah, if all the big users pull out, X is history. No amount of Musking can pull it back from a catastrophic exodus of users and ad revenue.', 'created': '2024-11-15 00:33:57', 'submission_id': '1gr9s1u'}
{'comment': "That's the key, big names with big followers. Stephen King left yesterday. Millions of swifties left after the election, now Taylor needs to move too. And everyone else that has values and morals.", 'created': '2024-11-15 22:09:39', 'submission_id': '1gr9s1u'}
{'comment': '[Click here for article referenced in image.](https://archive.is/XNBS0)', 'created': '2024-11-14 18:37:45', 'submission_id': '1gr9wcz'}
{'comment': 'Details of the report will eventually get released. No way this stays secret now that he’s resigned. There are very few in congress that actually like him.', 'created': '2024-11-14 18:23:27', 'submission_id': '1gr9wcz'}
{'comment': '\n\nHe’s the R Kelly of Congress', 'created': '2024-11-14 18:35:47', 'submission_id': '1gr9wcz'}
{'comment': "I can't help but wonder if they can publish their findings anyway since he will have to go through confirmation hearings.", 'created': '2024-11-14 18:24:24', 'submission_id': '1gr9wcz'}
{'comment': "Paid to fuck a minor and will be AG.\n\nTrump's AmErIcA!", 'created': '2024-11-14 18:45:46', 'submission_id': '1gr9wcz'}
{'comment': 'Come on staffers… leak it', 'created': '2024-11-14 18:31:50', 'submission_id': '1gr9wcz'}
{'comment': 'The best people', 'created': '2024-11-14 18:27:33', 'submission_id': '1gr9wcz'}
{'comment': 'HE IS INNOCENT! LEAVE HIM ALONE. HE DOES NO WRONGS. /s\n\n\nI fucking hate this man.', 'created': '2024-11-14 18:57:13', 'submission_id': '1gr9wcz'}
{'comment': 'Coward. I hate how these republicans get away with everything.', 'created': '2024-11-14 18:54:13', 'submission_id': '1gr9wcz'}
{'comment': 'Explain it to me like I’m 5 why he gets away with this bc he is leaving the job. If you did something wrong it follows you, no?', 'created': '2024-11-14 19:49:56', 'submission_id': '1gr9wcz'}
{'comment': 'Fkn sex trafficker', 'created': '2024-11-14 22:28:18', 'submission_id': '1gr9wcz'}
{'comment': 'Is he Fire Marshal Bill?\n\n', 'created': '2024-11-14 18:33:57', 'submission_id': '1gr9wcz'}
{'comment': 'Release it anyways!!', 'created': '2024-11-14 18:44:20', 'submission_id': '1gr9wcz'}
{'comment': 'Any evidence of criminal activity would have been referred to the DoJ.\n\nIf the DoJ charges him before Trump takes office, the charges will get thrown out by the Trump admin, but it could derail Gaetz AG confirmation. \n\n\nIf the DoJ doesn’t charge him, some of his enemies in the house will leak the report. Which hopefully derails his confirmation.\n\nAnd if nobody leaks, there is still close door meeting where the findings are being discussed with senators who will vote on his confirmation.\n\nI actually think Gaetz being AG is a long shot.\n\nBut I constantly underestimate the depravity of Congress.', 'created': '2024-11-14 18:47:12', 'submission_id': '1gr9wcz'}
{'comment': 'they are pulling all kind of tricks out of the closet', 'created': '2024-11-14 18:59:12', 'submission_id': '1gr9wcz'}
{'comment': 'Somebody gonna leak the report, or is the world just full of cowards?', 'created': '2024-11-14 19:15:34', 'submission_id': '1gr9wcz'}
{'comment': "can you imagine if quitting your job got you off the hook for raping a child. \n\nI don't think we'll have a chance to put America back together in our lifetimes but I sure hope that they make actual rules next time.", 'created': '2024-11-14 21:16:31', 'submission_id': '1gr9wcz'}
{'comment': 'Idiot thinks he will be pardoned if he gets in Trumps cabinet. Little does he know he’s disliked by those who get to confirm him 😆', 'created': '2024-11-14 18:37:31', 'submission_id': '1gr9wcz'}
{'comment': "#If you haven't please watch AMERICAN GREED Season 15 episode 1 Joel Greenberg's episode featuring his BFF Matt Gaetz", 'created': '2024-11-14 19:41:32', 'submission_id': '1gr9wcz'}
{'comment': 'The president elect is a convicted felon- the bar is so low, the devil might be using it for Hades Limbo.', 'created': '2024-11-14 19:46:01', 'submission_id': '1gr9wcz'}
{'comment': 'The self proclaimed “protector of women” nominated a guy being investigated for sex trafficking as Attorney General.', 'created': '2024-11-14 19:47:01', 'submission_id': '1gr9wcz'}
{'comment': 'He’s so punchable!', 'created': '2024-11-14 20:08:24', 'submission_id': '1gr9wcz'}
{'comment': 'Gates is in MHO a pig. Like other on the supreme court and including the president elect I would not let them be alone with my mother, wife, daughters or granddaughters. Can you say PIG. \n\nThis is not really our problem with all due respect. Our problem is the media. The right wing BS overpowers the mainstream media we need to promote & engage media for the people. Not left, not right but FOR THE PEOPLE. \n\nWithout this it is my humble opinion we will lose every election.', 'created': '2024-11-15 00:01:45', 'submission_id': '1gr9wcz'}
{'comment': "This just means he's willing to do anything, absolutely anything, for Trump. As all his picks but this one in particular with evidence against him, including witnesses.", 'created': '2024-11-15 04:08:28', 'submission_id': '1gr9wcz'}
{'comment': 'Bevis....', 'created': '2024-11-14 18:29:51', 'submission_id': '1gr9wcz'}
{'comment': 'Matt Gaetz looks completely blasted in this photo', 'created': '2024-11-14 18:39:52', 'submission_id': '1gr9wcz'}
{'comment': None, 'created': '2024-11-14 18:51:29', 'submission_id': '1gr9wcz'}
{'comment': "Does this narrow the Republican's majority in the house?", 'created': '2024-11-14 20:19:28', 'submission_id': '1gr9wcz'}
{'comment': 'What a joker.\n\n', 'created': '2024-11-14 20:39:22', 'submission_id': '1gr9wcz'}
{'comment': 'He looks every bit as much as the psychopath that he is.', 'created': '2024-11-14 20:42:55', 'submission_id': '1gr9wcz'}
{'comment': 'The nation had a chance to move on from all the drama, corruption, deceit, and chose Trump. Now the rest of us will have to live through four more years of insanity.', 'created': '2024-11-14 21:10:03', 'submission_id': '1gr9wcz'}
{'comment': 'Not only does Gaetz have a lot of skeletons in his closet, there was a apparently literal dead body in his college dorm room.', 'created': '2024-11-14 22:17:35', 'submission_id': '1gr9wcz'}
{'comment': 'They both enjoy island getaways and little girls', 'created': '2024-11-15 01:28:49', 'submission_id': '1gr9wcz'}
{'comment': 'This shit is so corrupt I don’t know what to say. Why is this rule even in place?', 'created': '2024-11-15 02:09:11', 'submission_id': '1gr9wcz'}
{'comment': 'He looks like a snake.', 'created': '2024-11-15 21:10:19', 'submission_id': '1gr9wcz'}
{'comment': 'This dude looks like a combination ofJohnny Knoxville and the Leader from Marvel Comics but took on all of the dumbass attributes with none of the intelligence', 'created': '2024-11-16 03:56:25', 'submission_id': '1gr9wcz'}
{'comment': 'I’m really confused, even with him resigning and the ethics committee not having jurisdiction over him, can’t he still be prosecuted criminal for sleeping with a minor? Or have we passed that threshold of reality where people with money can fuck kids now and no one bats an eye?', 'created': '2024-11-18 07:01:43', 'submission_id': '1gr9wcz'}
{'comment': 'https://preview.redd.it/w2slivu1jw0e1.jpeg?width=1170&format=pjpg&auto=webp&s=c036cf59a9944ae864dea9934e2206440c1a3224\n\nThis is what really appalls me', 'created': '2024-11-14 18:25:52', 'submission_id': '1gr9wcz'}
{'comment': 'Yep, it will come out, leaks happen all the time and Gaetz is universally hated on congress.', 'created': '2024-11-14 21:00:06', 'submission_id': '1gr9wcz'}
{'comment': 'They should do that. Supposedly his investigation is now dead due to him resigning. Like if they have damaging evidence as there was claimed to be, then they should somehow still show that, send it to the Feds. Something! So much for protecting children.', 'created': '2024-11-14 18:28:25', 'submission_id': '1gr9wcz'}
{'comment': 'He literally Venmo’d a 17 year old girl and when under investigation, all of a sudden his Venmo account was deleted. Not sus at all!', 'created': '2024-11-14 18:46:58', 'submission_id': '1gr9wcz'}
{'comment': 'Somebody please! Anonymous? Please help us here if you can. Leak something', 'created': '2024-11-14 18:32:59', 'submission_id': '1gr9wcz'}
{'comment': 'Venmo’d Girls to have sex \n\n*deletes venmo account when investigated* \n\nInvestigated by the house committee of ethics\n\n*resigns days before* \n\nYeah totally innocent', 'created': '2024-11-14 19:00:48', 'submission_id': '1gr9wcz'}
{'comment': 'He literally had sex with minors and is now appointed to be attorney general. Remind me again how pronouns are a threat to children?', 'created': '2024-11-14 18:55:43', 'submission_id': '1gr9wcz'}
{'comment': 'Everything!!!!!!!!!', 'created': '2024-11-14 19:06:01', 'submission_id': '1gr9wcz'}
{'comment': 'Politicians get away with too much, if you and I, an everyday regular citizen did stuff they did. Immediate jail', 'created': '2024-11-14 19:50:56', 'submission_id': '1gr9wcz'}
{'comment': 'Our whole government is a joke to me right now, like what do you mean an investigation is over if he resigns?! That makes things look worst for him and this motherfucker deleted his Venmo account after being investigated since that’s how he paid an underage girl for sex. I truly hope his evidence gets leaked. They have something on him', 'created': '2024-11-14 18:52:57', 'submission_id': '1gr9wcz'}
{'comment': 'Confirmation? Who need that? Trump is getting the Senate to allow recess appointments. Even if they don’t, that didn’t stop him last time. He’ll just make him“Acting Attorney General” and move on.', 'created': '2024-11-14 19:01:55', 'submission_id': '1gr9wcz'}
{'comment': 'https://preview.redd.it/a1tnkq3opw0e1.jpeg?width=1170&format=pjpg&auto=webp&s=8351fc45e3d946ca4a5c42acd67dcf785cbc6de5\n\nHe deleted his venmo right after being investigated on this part. Now he’s resigning before investigations. This man is so fucking guilty', 'created': '2024-11-14 19:03:27', 'submission_id': '1gr9wcz'}
{'comment': 'Someone has to leak it!', 'created': '2024-11-14 19:16:11', 'submission_id': '1gr9wcz'}
{'comment': 'What makes this worst is these girls he had sex with are underage', 'created': '2024-11-14 19:47:29', 'submission_id': '1gr9wcz'}
{'comment': 'For someone who looks like Bevis he sure is a butthead', 'created': '2024-11-14 18:31:03', 'submission_id': '1gr9wcz'}
{'comment': 'He looks like Beavis even though he acts like a butthead', 'created': '2024-11-14 18:53:29', 'submission_id': '1gr9wcz'}
{'comment': 'Not by much', 'created': '2024-11-14 20:23:49', 'submission_id': '1gr9wcz'}
{'comment': 'True. But what they’ve found so far will eventually get out.', 'created': '2024-11-14 18:28:18', 'submission_id': '1gr9wcz'}
{'comment': 'Why wouldnt the findings be made public?', 'created': '2024-11-14 19:01:10', 'submission_id': '1gr9wcz'}
{'comment': "Yeah but with the investigation days from over, they don't need to do much investigating do they?", 'created': '2024-11-14 18:45:21', 'submission_id': '1gr9wcz'}
{'comment': 'They can’t officially release it but it can be unofficially released. Also the girl he abused has a lawyer who has a ton of evidence and witnesses. He can release that on his own. Last but not least, they can use the findings in his hearing before congress', 'created': '2024-11-15 00:57:17', 'submission_id': '1gr9wcz'}
{'comment': 'Yup. \n\nCurious as to what the current count of Ds vs Rs right now to take action.\n\nTuberville is already making [threats against Republicans](https://www.yahoo.com/news/tuberville-threatens-end-republicans-voting-155954387.html)\n\nEdit: missed the t.', 'created': '2024-11-14 19:10:21', 'submission_id': '1gr9wcz'}
{'comment': 'True Patriots in Congress who knows info WILL leak it', 'created': '2024-11-15 23:12:34', 'submission_id': '1gr9wcz'}
{'comment': '"anonymous" lol...\n\nThose mfs doxxed the DNC but not the Republicans last time this happened. \n\nThen they did absolutely nothing for this entire election cycle.', 'created': '2024-11-14 18:46:13', 'submission_id': '1gr9wcz'}
{'comment': 'Hey OP, see how I used /s? It means this is *sarcasm*. Gaetz is filth.', 'created': '2024-11-14 19:18:50', 'submission_id': '1gr9wcz'}
{'comment': 'Something, something God didn’t make it that way….. the only excuse I ever hear from these assholes.', 'created': '2024-11-14 18:57:45', 'submission_id': '1gr9wcz'}
{'comment': 'Exactly!!', 'created': '2024-11-14 19:51:32', 'submission_id': '1gr9wcz'}
{'comment': 'Unless Congress intends to remain in recess for four years, those recess appointments are temporary.\n\nAnd the more he signals he intends to appoint nutcases the less likely republicans on Congress will agree to be on recess at the beginning of his terms', 'created': '2024-11-14 19:35:48', 'submission_id': '1gr9wcz'}
{'comment': 'I sure as hell hope so! This is ridiculous and the dumbest excuse ever to not proceed on an investigation. If I rob a bank and I “resign” from my state where I robbed it, do I get off Scott free?', 'created': '2024-11-14 18:29:55', 'submission_id': '1gr9wcz'}
{'comment': "It literally won't matter. Trump is in charge and they will get what they want. They don't abide by the same rules that we do. They will continue to take and take.", 'created': '2024-11-14 18:50:44', 'submission_id': '1gr9wcz'}
{'comment': 'No it won’t', 'created': '2024-11-14 22:31:17', 'submission_id': '1gr9wcz'}
{'comment': 'Great question! Says a lot about people in our government.', 'created': '2024-11-14 19:03:59', 'submission_id': '1gr9wcz'}
{'comment': 'They don’t! Why don’t they present the damaging evidence that they have? Send it to the Feds, something', 'created': '2024-11-14 18:49:04', 'submission_id': '1gr9wcz'}
{'comment': 'So he’s into minors as well?', 'created': '2024-11-14 19:13:27', 'submission_id': '1gr9wcz'}
{'comment': 'I know you were being sarcastic, I was joining in with you. That’s why I said yeah totally innocent at the end', 'created': '2024-11-14 19:19:40', 'submission_id': '1gr9wcz'}
{'comment': 'I would respond with So God is ok with pedophiles getting away with stuff?', 'created': '2024-11-14 18:59:35', 'submission_id': '1gr9wcz'}
{'comment': 'I really struggle to understand people who STILL think republicans will be a check on trump, right wing extremism or oligarchy. Even if they disagree, they are spineless and selfish and have enabled him for years. No reason to stop now that he has even more power.', 'created': '2024-11-14 19:49:30', 'submission_id': '1gr9wcz'}
{'comment': 'I would recommend against testing that theory.', 'created': '2024-11-14 18:35:19', 'submission_id': '1gr9wcz'}
{'comment': 'No. But If you mess up at work and resign you face no consequences.', 'created': '2024-11-14 18:44:45', 'submission_id': '1gr9wcz'}
{'comment': "Only if you're a Republican.", 'created': '2024-11-15 02:42:49', 'submission_id': '1gr9wcz'}
{'comment': 'PRESIDENTIAL PARDONS FOR THE HIGHEST BIDDER!', 'created': '2024-11-14 23:12:47', 'submission_id': '1gr9wcz'}
{'comment': 'The Feds that trump will soon control?', 'created': '2024-11-14 18:55:33', 'submission_id': '1gr9wcz'}
{'comment': 'They all are 🤣', 'created': '2024-11-14 19:28:46', 'submission_id': '1gr9wcz'}
{'comment': 'Ope excuse me. My bad. I was fired up because he is just despicable.', 'created': '2024-11-14 19:38:37', 'submission_id': '1gr9wcz'}
{'comment': 'Well in their fake ass story, Mary was like 14. So yes.', 'created': '2024-11-15 18:35:07', 'submission_id': '1gr9wcz'}
{'comment': 'I don’t.\n\nBut Congress being in recess for three years would derail any lasting changes of the Trump presidency.\n\nThe damage will linger, but every order and change he made can be reversed in the rise weeks of a new presidency since it will al be appointments and executive orders. \n\nFor him to make lasting changes, he needs Congress in session. \n\nWhich means his appointments will be temporary.', 'created': '2024-11-14 19:57:38', 'submission_id': '1gr9wcz'}
{'comment': 'Obviously I’m not going to do that but I’m using this logic in a hypothetical scenario', 'created': '2024-11-14 18:37:34', 'submission_id': '1gr9wcz'}
{'comment': 'It depends on the level of the “ mess up”. Financial crimes and SA follow you all the days of your life!', 'created': '2024-11-14 23:11:55', 'submission_id': '1gr9wcz'}
{'comment': 'We still got 2 months. DO SOMETHING NOW!', 'created': '2024-11-14 18:56:32', 'submission_id': '1gr9wcz'}
{'comment': 'It’s ok🫶🏻', 'created': '2024-11-14 19:46:39', 'submission_id': '1gr9wcz'}
{'comment': 'Recess appointments last until the next legislative session. I dont know why you think congress needs to be in recess for the entire trump presidency for his recess appointments to wreak havoc.\n\nHe will make the recess appointments and when GOP senators return, they wont do anything about it. Thune promised as such.', 'created': '2024-11-14 21:42:07', 'submission_id': '1gr9wcz'}
{'comment': 'Robbing a bank is a crime.\n\nSAing a teenager is apparently a resume builder these days…', 'created': '2024-11-14 19:32:36', 'submission_id': '1gr9wcz'}
{'comment': 'what can be done, would swiftly be undone. Trump retains the pardon power', 'created': '2024-11-14 21:32:29', 'submission_id': '1gr9wcz'}
{'comment': 'You don’t say anything different than what I said. Except the implicit claim that they can do plenty of damage during recess.\n\nYes, they can. But then they don’t get confirmed and the damage is largely temporary.\n\nExcept Gabbard. That traitor can hand the key to the palace to Putin in a matter of weeks.', 'created': '2024-11-15 04:36:01', 'submission_id': '1gr9wcz'}
{'comment': 'Funny for all the wrong reasons. Or all the right reasons depending on how you look at it.', 'created': '2024-11-14 20:42:18', 'submission_id': '1gr9wcz'}
{'comment': 'Funny for alt-right reasons more like.', 'created': '2024-11-14 21:00:51', 'submission_id': '1gr9wcz'}
{'comment': '', 'created': '2024-11-15 00:03:53', 'submission_id': '1gr9wcz'}
{'comment': 'My read is that Trump knows some of these appointments won’t pass. If they do, he gets a loyalist at the head of an agency. If they don’t, he knows early which republicans won’t follow him unconditionally, and he can begin applying pressure to them.', 'created': '2024-11-14 17:39:28', 'submission_id': '1gr7xsd'}
{'comment': 'He should be forced to tell them this to their face on video - no emails or letters or close door conferences if he makes the decision to prohibit women from combat. He has to own it.', 'created': '2024-11-14 18:01:10', 'submission_id': '1gr7xsd'}
{'comment': 'They should fear what’s going to happen.', 'created': '2024-11-14 19:58:15', 'submission_id': '1gr7xsd'}
{'comment': 'And they should. Unfortunately we cannot help them for at least two years. If this doesn’t embarrass you… it should.', 'created': '2024-11-15 00:05:41', 'submission_id': '1gr7xsd'}
{'comment': "They're also looking at purging all generals they deem woke. I hope we don't get into war in the next four years as we will be losing the best and the brightest.", 'created': '2024-11-15 06:53:20', 'submission_id': '1gr7xsd'}
{'comment': 'Next? Well, I think they will be "turned invisible" ....', 'created': '2024-11-15 10:46:51', 'submission_id': '1gr7xsd'}
{'comment': 'Trump has never been a real man before today and he’s not gonna start now.', 'created': '2024-11-14 20:39:11', 'submission_id': '1gr7xsd'}
{'comment': "He is spineless, dickless, and owned by Putin. And you think that Trump will take ANY responsibility for anything? Wait, the only thing he'll every take responsibility for is showing how much he says he's loved and admired by Russia, N Korea and China.", 'created': '2024-11-15 04:14:17', 'submission_id': '1gr7xsd'}
{'comment': 'And even that will be a lie as they only PRETEND to "love" him', 'created': '2024-11-15 10:48:10', 'submission_id': '1gr7xsd'}
{'comment': 'ya think..', 'created': '2024-11-14 16:48:04', 'submission_id': '1gr7iwb'}
{'comment': 'I’m honestly at a loss anymore. \n\nDemocrats have spent the last 10 years telling us who Trump and MAGA are. Trump and MAGA have spent the last 10 years proving the democrats right and validating it. Time after time, they get called out for their crap and then it gets buried. A Democrat misspeaks and it’s on blast 24/7 for the next several weeks. Yes, the democrats are about as toothless as they come and the grassroots involvement is all but forgotten. We can’t organize ourselves enough to get out a corn maze that only has one stalk. Meanwhile, Trump and maga can burn down an orphanage without the slightest consequence anywhere. Hell, they are so organized, you would probably never hear about it or if you did, they would successfully blame it on the democrats. \n\nWe have got to find a way to do better. Every time it seems like we are, we end up taking two steps backwards.', 'created': '2024-11-14 17:22:31', 'submission_id': '1gr7iwb'}
{'comment': 'The whole thing is fishy', 'created': '2024-11-14 16:56:46', 'submission_id': '1gr7iwb'}
{'comment': 'So hold them accountable.', 'created': '2024-11-14 16:43:12', 'submission_id': '1gr7iwb'}
{'comment': 'Democrats are the guy screaming at the ref about a missed foul while the other team runs down the court and dunks the ball.', 'created': '2024-11-14 16:45:30', 'submission_id': '1gr7iwb'}
{'comment': 'Yeah no shit!', 'created': '2024-11-14 16:43:31', 'submission_id': '1gr7iwb'}
{'comment': 'I hate my party and am considering running just to show them how it should be done. Jesus christ.', 'created': '2024-11-14 16:58:13', 'submission_id': '1gr7iwb'}
{'comment': 'This is the problem not just with Warren, but the entire Democratic Party, we are FAR to content with just pointing out the problems and assuming that knowing or identifying the problem is going to somehow fix it. \n\nIf she can articulate what she’s doing and how I can help, I’m in. But if that answer is Vote, I’ve been voting, I voted in every election and I’m not seeing a whole lot of action.', 'created': '2024-11-14 16:51:12', 'submission_id': '1gr7iwb'}
{'comment': "Don't worry it's just Trump's diaper again", 'created': '2024-11-14 16:56:10', 'submission_id': '1gr7iwb'}
{'comment': "We all know Trump doesn't smell particularly good lol", 'created': '2024-11-14 16:45:43', 'submission_id': '1gr7iwb'}
{'comment': 'This is what happens when you let a madman and his sycophants commit crimes for 10 years without consequences!!! God i’m so angry', 'created': '2024-11-14 17:49:39', 'submission_id': '1gr7iwb'}
{'comment': 'I’m tired of this, he is doing something fishy, he is making the law. \n\nWe have judges without balls to sentence him. The legal system is a travesty.\n\nThe reason why he won is that people dressed him as the guy that breaks the law and is free. \n\nHe mocks & insult everybody and people claps at him. \n\nHe is a con man and commits fraud and he gets away. \n\nHe grabs them by the pussy and people admired him as he is a man!. \n\nHe cheats on his wife with a porn start ,that he bribed and threatened. People think he is cool. \n\nHe is “rich & famous” people want to be like him. \n\nEverything is a fraud people love that. \n\nThose are many of the reasons why he won\n\n\nAmerica loosed is ethical & moral compass.\n\n\nAmerican is ignorant and stupid and don’t know squat about history, fascism, dictatorship.\n\n\nBecause America is above and better, will find out the decline of the American empire.', 'created': '2024-11-15 04:11:02', 'submission_id': '1gr7iwb'}
{'comment': "It isn't the dramatic rescue we want, but Warren is doing something by pointing this out. I'm sorry, but this is part of what we need.", 'created': '2024-11-14 18:09:31', 'submission_id': '1gr7iwb'}
{'comment': 'Well, they *did* elect the head of a crime family/organization for President, so Senator Warren won’t be able to do much of anything. The Supreme Court has been totally corrupted by said crime boss, and he has total immunity, so whatever Senator Warren is able to find out is going to be a “So what”?', 'created': '2024-11-15 04:11:38', 'submission_id': '1gr7iwb'}
{'comment': '“cause for concern” oh yes the good old I will furrow my brow at them, that will out rage people and make them do something.\n\nThis law requiring them to sign this is pretty much worthless since even if the president signs it he has immunity and can only be impeached and he can just pardon anyone else who signs it. Also what if they don’t sign it. It’s not like there is something in the constitution that says they can’t be president if they do not sign it.', 'created': '2024-11-14 17:02:31', 'submission_id': '1gr7iwb'}
{'comment': 'I like how the response from most of the democrats on here is like “then do something!” and then they criticize her while also not acknowledging she is one of the most active progressive Democrats in the Senate. I think she would be the first one to tell you, you don’t do anything alone. Maybe start electing progressives?!', 'created': '2024-11-14 17:19:36', 'submission_id': '1gr7iwb'}
{'comment': '#DOSOMETHING\n\nget this hashtag trending on all social media plz', 'created': '2024-11-15 00:08:26', 'submission_id': '1gr7iwb'}
{'comment': 'I smell something putrid and rotting', 'created': '2024-11-14 17:06:16', 'submission_id': '1gr7iwb'}
{'comment': "Can't wait for her and the dems to do absolutely nothing about it!", 'created': '2024-11-14 17:30:15', 'submission_id': '1gr7iwb'}
{'comment': 'DO SOMETHING, stop writing about it, ACT', 'created': '2024-11-14 18:01:52', 'submission_id': '1gr7iwb'}
{'comment': "Liz Warren is one of the few Dems who will do something, at least to the extent it's legal. But she can't do anything on her own, and I don't know what can be done at all. He apparently won, and we're not going to storm the capitol. Right?", 'created': '2024-11-15 02:10:30', 'submission_id': '1gr7iwb'}
{'comment': "Can't wait to read the scathing tweet as I'm marched into my gas chamber", 'created': '2024-11-14 17:32:35', 'submission_id': '1gr7iwb'}
{'comment': 'All talk and no actions is why we are in this mess in the first place.\n\n\nThe dinosaurs need to go.', 'created': '2024-11-14 16:49:01', 'submission_id': '1gr7iwb'}
{'comment': 'No! Really? And water is wet.', 'created': '2024-11-14 17:05:09', 'submission_id': '1gr7iwb'}
{'comment': 'We all do. Well, 50%', 'created': '2024-11-14 17:01:54', 'submission_id': '1gr7iwb'}
{'comment': "Unless she or anybody else in the Democratic party plans to actually fucking do something about it I don't want to hear about it anymore. All we heard for the last 10 years almost is how the GOP and Trump keep doing all this messed up illegal shit and yet nothing ever happens. And when it does actually happen via court cases it moves so slow that it is completely useless", 'created': '2024-11-14 17:42:44', 'submission_id': '1gr7iwb'}
{'comment': "why does this party always smell shit but does nothing they're part of the problem", 'created': '2024-11-14 16:51:43', 'submission_id': '1gr7iwb'}
{'comment': "That's actually Trump's normal smell.", 'created': '2024-11-15 01:40:09', 'submission_id': '1gr7iwb'}
{'comment': 'Yeah. She should get tf off twitter and do something about it.', 'created': '2024-11-15 01:42:01', 'submission_id': '1gr7iwb'}
{'comment': 'She would have been an amazing President.', 'created': '2024-11-15 03:19:36', 'submission_id': '1gr7iwb'}
{'comment': 'Can’t give this guy an inch. He’s too dangerous.', 'created': '2024-11-15 04:31:17', 'submission_id': '1gr7iwb'}
{'comment': "And she's not going to be able to do a fuckin thing about it.....", 'created': '2024-11-14 17:07:53', 'submission_id': '1gr7iwb'}
{'comment': 'Cool. DO SOMETHINGGGGGA!', 'created': '2024-11-14 19:32:41', 'submission_id': '1gr7iwb'}
{'comment': 'Anyone else fucking exhausted with this shit? Elected dems scream about shit like this and then do absolutely nothing while whining they caaaaan’t do anything. An elected official has a lot more they can do than the individual peons reading this shit on social media. I can’t put up with it for another 4 years. Either nut up or shut up.', 'created': '2024-11-14 16:58:23', 'submission_id': '1gr7iwb'}
{'comment': 'Oh does she? Is that the only clue, a fishy smell? Trump could spread his ass cheeks and publicly defecate on the street and progressives would be like "I have a hunch something\'s not right here" Elizabeth "Nancy Drew" Warren. Scooby Doo - ass "look, gang. I found a clue."', 'created': '2024-11-14 16:54:30', 'submission_id': '1gr7iwb'}
{'comment': 'Thanks for teaching us absofuckinglutely nothing, Elizabeth.', 'created': '2024-11-15 01:31:52', 'submission_id': '1gr7iwb'}
{'comment': '*No waaayyyy! Whaaat, nooo…*', 'created': '2024-11-14 22:34:09', 'submission_id': '1gr7iwb'}
{'comment': "You don't fucking say", 'created': '2024-11-14 22:39:02', 'submission_id': '1gr7iwb'}
{'comment': 'Something...singular?', 'created': '2024-11-14 22:54:31', 'submission_id': '1gr7iwb'}
{'comment': 'Fishy? This is a mass die-off washing ashore.', 'created': '2024-11-14 23:32:40', 'submission_id': '1gr7iwb'}
{'comment': 'Uh-huh......what ya gonna do about it?', 'created': '2024-11-14 23:41:37', 'submission_id': '1gr7iwb'}
{'comment': 'Tell me what youre doing about it, lady.', 'created': '2024-11-15 00:03:19', 'submission_id': '1gr7iwb'}
{'comment': 'Yeah a team of epstein friends network', 'created': '2024-11-15 02:09:43', 'submission_id': '1gr7iwb'}
{'comment': 'No fucking shit', 'created': '2024-11-15 03:51:21', 'submission_id': '1gr7iwb'}
{'comment': "If someone breaks a law and there's no penalty, and literally no consequences whatsoever, is it really illegal? \n\nPT Barnum done discovered that the biggest patsy of them all is 'we the people'.", 'created': '2024-11-15 10:57:14', 'submission_id': '1gr7iwb'}
{'comment': 'Really?!?', 'created': '2024-11-15 15:23:04', 'submission_id': '1gr7iwb'}
{'comment': "she thinks laws matter to Trump, that's cute.", 'created': '2024-11-14 17:38:32', 'submission_id': '1gr7iwb'}
{'comment': "Maybe you should have all pressured Garland to be useful before this shit show. I don't want to hear about all Trump's criming the next 4 years. I'm just taking it for granted that he is breaking the law every day. Let me know when someone holds him accountable.", 'created': '2024-11-14 20:13:21', 'submission_id': '1gr7iwb'}
{'comment': "And she'll Tweet about it so hard", 'created': '2024-11-14 20:17:43', 'submission_id': '1gr7iwb'}
{'comment': "This isn't a surprise to anyone and his supporters couldn't care less. The White House is now up for auction and policy will be dictated by whatever foreign entity pays the most.", 'created': '2024-11-14 20:23:07', 'submission_id': '1gr7iwb'}
{'comment': 'So… fucking do something? Stop calling it out on Twitter and do something. She’s the legislator at the levers of power. I hate this powerlessness act — YOU are the ones at the epicenter of power. So fix it.', 'created': '2024-11-14 20:55:45', 'submission_id': '1gr7iwb'}
{'comment': "If I had a nickel for every time Trump broke the law and faced no consequences I'd be richer than Trump.", 'created': '2024-11-14 20:59:47', 'submission_id': '1gr7iwb'}
{'comment': 'Wow, genius of the year award.', 'created': '2024-11-14 17:01:35', 'submission_id': '1gr7iwb'}
{'comment': 'So do something!!!!', 'created': '2024-11-14 16:54:58', 'submission_id': '1gr7iwb'}
{'comment': 'So do something about it instead of bitching at us, who have no power.', 'created': '2024-11-14 16:55:10', 'submission_id': '1gr7iwb'}
{'comment': '"Potential corruption"? Any one who paid attention during the first Trump term knows there IS corruption when Trump\'s involved.', 'created': '2024-11-14 17:12:40', 'submission_id': '1gr7iwb'}
{'comment': 'Then do something substantial about it- get back to us with results.', 'created': '2024-11-14 18:13:24', 'submission_id': '1gr7iwb'}
{'comment': 'We’re getting punched in the mouth and instead of punching back we’re like nah let’s talk about our feelings', 'created': '2024-11-14 18:17:48', 'submission_id': '1gr7iwb'}
{'comment': 'Then fucking do something about it', 'created': '2024-11-14 20:22:34', 'submission_id': '1gr7iwb'}
{'comment': 'Aaaannnndddddd all she’ll do is tweet. No action .', 'created': '2024-11-14 16:47:28', 'submission_id': '1gr7iwb'}
{'comment': "Cool. What are we doing about it then? It's been 8 years of this bullshit, with people gasping and pointing while sitting back and eating their popcorn as it continues.", 'created': '2024-11-14 17:29:50', 'submission_id': '1gr7iwb'}
{'comment': 'Well, I’m glad her nose is working like the rest of ours but what’s her plan to do anything about it?', 'created': '2024-11-14 17:37:32', 'submission_id': '1gr7iwb'}
{'comment': 'Shocking', 'created': '2024-11-14 17:37:52', 'submission_id': '1gr7iwb'}
{'comment': 'America loves criminals', 'created': '2024-11-14 17:56:11', 'submission_id': '1gr7iwb'}
{'comment': 'Then hold them accountable and “do something” since you have the power to do it.', 'created': '2024-11-14 17:57:32', 'submission_id': '1gr7iwb'}
{'comment': "So, if he refuses to sign the required contracts, does that mean he won't be able to step into his role?\n\nAsking for a friend.", 'created': '2024-11-14 18:17:50', 'submission_id': '1gr7iwb'}
{'comment': 'And they will smile mockingly while rest of World is just watching helplessly, because a fascist won the election.', 'created': '2024-11-14 18:24:16', 'submission_id': '1gr7iwb'}
{'comment': 'He is feces in a suit', 'created': '2024-11-14 18:26:29', 'submission_id': '1gr7iwb'}
{'comment': 'Can democrats please wake the fuck up', 'created': '2024-11-14 18:47:11', 'submission_id': '1gr7iwb'}
{'comment': 'Is there any wonder why we lost here? I swear the ‘bros’ that voted for Bernie now voted for Trump. The Dems didn’t want these bros, and so well - now we’re here…and they are just trying to draw fouls', 'created': '2024-11-14 18:53:40', 'submission_id': '1gr7iwb'}
{'comment': 'No shit? I expect the worst pond scum in existence to be on his "team."', 'created': '2024-11-14 19:37:58', 'submission_id': '1gr7iwb'}
{'comment': 'Then fucking do something!', 'created': '2024-11-14 19:41:44', 'submission_id': '1gr7iwb'}
{'comment': 'I keep seeing lists of companies announcing layoffs due to the need to prep for the upcoming presidency and the tariffs. This mass deportation is going to affect my job for sure. We rely heavily on immigrants to meet our quotas. If they get tossed out….it would be gutting to see it happen!', 'created': '2024-11-14 19:45:44', 'submission_id': '1gr7iwb'}
{'comment': "Where has this been for the past 3 months?\n\nDuring this campaign I heard so much about trump being a dictator, an authoritarian, a lot of vague scare mongering about very cerebral, intellectual things. \n\nBut what I never heard was... he had the job before. He was really bad at it. He was dishonest and used the office to make himself richer at the expense of everyone else. This is real. This is tangible. And it was like... we never spoke about the fact that we already voted him out. HE'S A LOSER. and it just... never came up.\n\nUGH.", 'created': '2024-11-14 19:53:49', 'submission_id': '1gr7iwb'}
{'comment': 'Wow, if only there were people in positions of power who could do something about it.\n\nWhat the fuck is she tweeting it to *us* for?', 'created': '2024-11-14 19:58:40', 'submission_id': '1gr7iwb'}
{'comment': "This coming administration is stinkier than Trump's depends after all you can eat gas station sushi.", 'created': '2024-11-14 20:26:20', 'submission_id': '1gr7iwb'}
{'comment': 'So fucking what? It’s not like *anyone* will ever actually do anything about it.', 'created': '2024-11-14 20:34:07', 'submission_id': '1gr7iwb'}
{'comment': 'Ok well maybe do something', 'created': '2024-11-14 20:41:37', 'submission_id': '1gr7iwb'}
{'comment': 'And is she, or any of the Dems, doing anything about it? No? Then I really don’t want to hear about it.', 'created': '2024-11-14 21:02:53', 'submission_id': '1gr7iwb'}
{'comment': 'I mean republicans won’t hold him accountable and the Supreme Court has given him a get out of jail free card on everything that happens over the next 4 years. \n\nDo we expect him to actually follow the rules? He’s a corrupt unethical person.', 'created': '2024-11-14 21:40:03', 'submission_id': '1gr7iwb'}
{'comment': 'The dems are just good at spotting the crime., but they suck at preventing the crime and punishing the culprit. Sad.', 'created': '2024-11-15 02:07:37', 'submission_id': '1gr7iwb'}
{'comment': 'And today on MSNBC we report about Elizabeth fucking Warren…doing fucking nothing!', 'created': '2024-11-15 02:32:28', 'submission_id': '1gr7iwb'}
{'comment': 'She should take it up with the management.', 'created': '2024-11-14 16:59:42', 'submission_id': '1gr7iwb'}
{'comment': 'Cool.\n\nDo something about it, as our elected official.', 'created': '2024-11-14 17:44:04', 'submission_id': '1gr7iwb'}
{'comment': "Like are we serious? Of course there is. Apparently no one cares. I can't go through another 4 years of these impotent pronouncements. Do something.", 'created': '2024-11-14 18:22:04', 'submission_id': '1gr7iwb'}
{'comment': 'Fucking call me when something is actually done about it.', 'created': '2024-11-14 18:28:18', 'submission_id': '1gr7iwb'}
{'comment': None, 'created': '2024-11-14 17:26:18', 'submission_id': '1gr7iwb'}
{'comment': "This is an interestingly scary article and Rep. Elizabeth Warren is more than likely 100% correct. However, I'm not sure I will listen to MSNBC, or read an article by them again. It seems all the media outlets, including mainstream, like MSNBC missed the red tsunami that was coming.", 'created': '2024-11-14 23:38:19', 'submission_id': '1gr7iwb'}
{'comment': 'Doesn’t matter if you are going to do anything about it.', 'created': '2024-11-14 23:40:19', 'submission_id': '1gr7iwb'}
{'comment': 'No, say it ain’t so.', 'created': '2024-11-15 00:16:33', 'submission_id': '1gr7iwb'}
{'comment': "It's probably just tRUMP - *he smells like that a lot of the time I hear...*", 'created': '2024-11-15 00:29:21', 'submission_id': '1gr7iwb'}
{'comment': 'Duh', 'created': '2024-11-15 00:33:32', 'submission_id': '1gr7iwb'}
{'comment': 'It’s a barrel of smelly fishes', 'created': '2024-11-15 01:14:33', 'submission_id': '1gr7iwb'}
{'comment': 'Duh.', 'created': '2024-11-15 03:00:59', 'submission_id': '1gr7iwb'}
{'comment': "wait, she's STILL on twitter?", 'created': '2024-11-15 05:17:23', 'submission_id': '1gr7iwb'}
{'comment': 'Let’s just throw feces at the wall and see what pictures it makes!', 'created': '2024-11-15 06:02:43', 'submission_id': '1gr7iwb'}
{'comment': '100% agreed‼️👀🇺🇸', 'created': '2024-11-15 07:46:02', 'submission_id': '1gr7iwb'}
{'comment': 'I call her the shark, since she can trace even the most miniscule drops of blood in the pool.', 'created': '2024-11-15 07:59:46', 'submission_id': '1gr7iwb'}
{'comment': 'And nothing will come of it. Nothing ever does. Maybe he’ll get impeached a third time. But that could be a while 🙄', 'created': '2024-11-15 09:24:27', 'submission_id': '1gr7iwb'}
{'comment': 'Duh', 'created': '2024-11-15 14:47:57', 'submission_id': '1gr7iwb'}
{'comment': 'Oh watch active measures on tubi. Donald is their hack. Hes back to complete the job!', 'created': '2024-11-15 19:53:47', 'submission_id': '1gr7iwb'}
{'comment': 'They absolutely didn’t take Trump seriously enough', 'created': '2024-11-15 20:02:06', 'submission_id': '1gr7iwb'}
{'comment': 'I mean, no shit. But can it be identified and addressed before it matters? I sure hope so.', 'created': '2024-11-16 00:15:38', 'submission_id': '1gr7iwb'}
{'comment': 'Potential?! Everything about Trump is corruption!', 'created': '2024-11-16 21:08:19', 'submission_id': '1gr7iwb'}
{'comment': 'Are her opinions still valid or something?', 'created': '2024-11-14 18:25:13', 'submission_id': '1gr7iwb'}
{'comment': 'So do something about it?\xa0', 'created': '2024-11-14 18:36:14', 'submission_id': '1gr7iwb'}
{'comment': 'This is a big part of the problem. Point the obvious out and do absolutely nothing to fight it. When are the democrats going to learn that fighting fair will never work.', 'created': '2024-11-14 18:39:43', 'submission_id': '1gr7iwb'}
{'comment': 'Don’t talk about it, be about it', 'created': '2024-11-14 18:42:42', 'submission_id': '1gr7iwb'}
{'comment': "I. DON'T. FUCKING. CARE.\n\nTell me about it after you fucking do something about it.", 'created': '2024-11-14 18:48:45', 'submission_id': '1gr7iwb'}
{'comment': "Stop telling us about it and DO something about it for fucks sake. Why bother electing you if you won't take action.", 'created': '2024-11-14 18:55:20', 'submission_id': '1gr7iwb'}
{'comment': 'You know what stops these sorts of things? Ineffectual "tweets". Always works... /s', 'created': '2024-11-14 19:01:51', 'submission_id': '1gr7iwb'}
{'comment': 'Too little. Too late', 'created': '2024-11-14 19:21:48', 'submission_id': '1gr7iwb'}
{'comment': 'So fucking do something about it Lizzie. Tired of this grandstanding. FUCKING DO SOMETHING!', 'created': '2024-11-15 04:15:24', 'submission_id': '1gr7iwb'}
{'comment': 'So don’t just sit there and let it stew…..\n\nChange that diaper!', 'created': '2024-11-14 17:06:27', 'submission_id': '1gr7iwb'}
{'comment': '“Potential Trump Corruption” no fucking shit', 'created': '2024-11-14 17:31:25', 'submission_id': '1gr7iwb'}
{'comment': 'I had to laugh. Wait’ll she sees what they transition INTO.', 'created': '2024-11-14 17:43:38', 'submission_id': '1gr7iwb'}
{'comment': "What happens when he just doesn't sign? Anything? At all?", 'created': '2024-11-14 17:50:20', 'submission_id': '1gr7iwb'}
{'comment': 'This gives me Dora, standing in front of Swiper, asking me where fucking Swiper is.', 'created': '2024-11-14 17:53:50', 'submission_id': '1gr7iwb'}
{'comment': 'Running to tell the teacher when the bullies have already taken over the playground is an exercise in futility.', 'created': '2024-11-14 18:04:19', 'submission_id': '1gr7iwb'}
{'comment': 'No kidding. \n\nIt\'ll be fun listening to the Democrats say things like "This Trump fella sure is doin\' some crazy stuff. Anyway, I\'m off to cash my lobbyist check, hope everything works out."\n\nI\'m so tired of them politely telling everyone that "something fishy is going on" when they won\'t do anything. I thought we were past that already.', 'created': '2024-11-14 18:08:16', 'submission_id': '1gr7iwb'}
{'comment': "unfortunately the public is half-asleep & been lulled into misguided complacency! They've green-lighted this level of corruption & cronyism & kleptocracy with Trump's re-election. He & his Far Right advisors truly believe he has a mandate to reshape government & policies without any hamstrings.", 'created': '2024-11-14 18:36:53', 'submission_id': '1gr7iwb'}
{'comment': 'The only qualification is being an ultra-loyalist to Trump… that’s it', 'created': '2024-11-14 18:39:43', 'submission_id': '1gr7iwb'}
{'comment': 'Oh, does she? She’ll never act on it. The democrats are the most impotent group of people on earth. It’s a goddamn shame.', 'created': '2024-11-14 19:01:32', 'submission_id': '1gr7iwb'}
{'comment': 'Corrupt cult leader appointing more corrupt sycophants for an even more corrupt cabinet than the first time round? Thanks captain obvious.', 'created': '2024-11-14 19:21:49', 'submission_id': '1gr7iwb'}
{'comment': 'I’m not saying don’t pay attention but I’m sort of checking out for a while for my own sake. All I wanted was to stop having to care what this guy says and does after this election so I need to focus more locally for a while hopefully until after the inauguration. I just assume I will hate it, and I don’t want to give clicks to the media that refused to cover this correctly for 2 years to drive ratings and engagement.', 'created': '2024-11-14 19:23:37', 'submission_id': '1gr7iwb'}
{'comment': 'Someone replied to Warren on Twitter that we cannot take a weekly rundown by Democrats of all the ways Trump is breaking the law.\xa0\n\nThey either need to do something about it or come up with a better way to beat his agenda in 2026. It’s all well and good to catalog his potential crimes, etc but we need more than tweets this time.', 'created': '2024-11-14 19:34:37', 'submission_id': '1gr7iwb'}
{'comment': 'He’s finally releasing the Epstein list, in the form of appointments.', 'created': '2024-11-14 20:55:04', 'submission_id': '1gr7iwb'}
{'comment': 'They should actually do something then instead of just giving it lip service.', 'created': '2024-11-14 20:57:48', 'submission_id': '1gr7iwb'}
{'comment': 'So hoping our patriots rise to the occasion. Thank you Elizabeth Warren.', 'created': '2024-11-14 21:03:08', 'submission_id': '1gr7iwb'}
{'comment': 'Cool 4 years of democrats pointing at a fire, yelling fire on repeat while doing absolutely nothing to put out the fire as it grows out of control around them eventually burning them and the entire building down. \n\nLike fuck off Warren. I can see the fucking fire. I need you and others to put it out not point it out.', 'created': '2024-11-14 21:49:57', 'submission_id': '1gr7iwb'}
{'comment': "Safeguards only work if you utilize and enforce them. Yes, maga might be pissed but they're gonna be pissed no matter how things go. So why not save democracy in the process?", 'created': '2024-11-14 21:57:39', 'submission_id': '1gr7iwb'}
{'comment': "Why the fuck is anybody even remotely surprised that the Trump team would be openly and blatantly corrupt? Especially when Trump himself went to great lengths to tell us all, under no uncertain terms, just exactly how wildly corrupt and illegal his administration intends to be. \n\nThe jackasses in the MSM refused to report on what Trump explicitly said he was going to do. Now they're all wearing their surprised Pikachu faces that he is following through. \n\nHere's a tip to the supposed 'journalists' out there: If it's in regard to doing something horrible and vile, he intends to follow through. If it's something that might benefit ordinary people, it's a lie.", 'created': '2024-11-14 22:19:49', 'submission_id': '1gr7iwb'}
{'comment': "He's putting together one helluvan All Star team, isn't he?", 'created': '2024-11-15 02:37:22', 'submission_id': '1gr7iwb'}
{'comment': 'These headlines and posts are worthless nothing will happen. So who cares', 'created': '2024-11-15 02:53:50', 'submission_id': '1gr7iwb'}
{'comment': "Thanks for letting us know that you're not going to do anything about it, ma'am.", 'created': '2024-11-14 17:46:22', 'submission_id': '1gr7iwb'}
{'comment': 'Maybe Tulsi needs to keep her legs closed.', 'created': '2024-11-14 17:42:30', 'submission_id': '1gr7iwb'}
{'comment': "Unless you actually plan to do something about it I do not fucking care.\n\nStop talking, stop calling things out, stop complaining and **fucking do something** or shut the fuck up and stop pretending you care.\n\n4 fucking years they didn't do a fucking thing I don't care anymore.", 'created': '2024-11-15 01:59:50', 'submission_id': '1gr7iwb'}
{'comment': 'I don’t think ethics documents for federal positions require a signature for them to be binding I think the position does that but hey, we are in a fucked up timeline here.', 'created': '2024-11-14 17:07:51', 'submission_id': '1gr7iwb'}
{'comment': 'Ya think?', 'created': '2024-11-14 17:12:55', 'submission_id': '1gr7iwb'}
{'comment': 'Well, duh, look who he is hiring to do his bidding', 'created': '2024-11-14 17:24:02', 'submission_id': '1gr7iwb'}
{'comment': 'Samsies. I’m sure she’ll do as much about it as I will.', 'created': '2024-11-14 17:52:21', 'submission_id': '1gr7iwb'}
{'comment': 'Well, duh. Of course there is.', 'created': '2024-11-14 18:00:55', 'submission_id': '1gr7iwb'}
{'comment': "Do bears shit in the woods? Of f-ing course there's corruption.", 'created': '2024-11-14 18:34:25', 'submission_id': '1gr7iwb'}
{'comment': "We haven't seen anything yet. The guard rails are gone, accountability it in the wind. Trump will brazenly do whatever he wants and he knows he's 100% immune for it. We should all hope his goal is just to enrich himself and his friends and not worse.", 'created': '2024-11-14 18:35:15', 'submission_id': '1gr7iwb'}
{'comment': 'What can she do about it?', 'created': '2024-11-14 18:45:03', 'submission_id': '1gr7iwb'}
{'comment': 'Smelling fish in the fish market', 'created': '2024-11-14 19:08:06', 'submission_id': '1gr7iwb'}
{'comment': '>Donald Trump is a living, breathing conflict of interest, and potentially ripe for manipulation\xa0\n\nI think we can stop using the word, "potentially." As well, we can also stop pretending his (lack of) intelligence and his want of unchecked power aren\'t enough to sway him; money not *required* but definitely welcomed.', 'created': '2024-11-14 19:31:01', 'submission_id': '1gr7iwb'}
{'comment': 'All the people saying do something, may I remind you, apparently America doesn\'t care. They know he\'s a felon. They know there have been multiple investigations into him and they still don\'t care. It\'s disgusting and I don\'t understand it. I have family that voted for Trump and they can\'t even articulate why they don\'t care. They just don\'t believe it or they brush aside his behavior as "business". It makes no sense. Warren has been outspoken and fighting against Trump from the beginning. I realize people are frustrated, but it\'s truly disappointing to see so many shitting on her in this thread. She\'s a senator. She can lead committees, but she can\'t charge Trump. All she can do is repeatedly sound the alarm, which she has been doing ad nauseum for nearly a decade now. The justice system has failed and Biden plays by the rules, so here we are.', 'created': '2024-11-14 20:00:03', 'submission_id': '1gr7iwb'}
{'comment': 'the sky is also blue… for now', 'created': '2024-11-14 20:01:59', 'submission_id': '1gr7iwb'}
{'comment': "That's just what cheeseberder-soiled diapers smell like.", 'created': '2024-11-14 21:03:13', 'submission_id': '1gr7iwb'}
{'comment': "He's going to stroll into the White House and no one will stop him. That's been the narrative for over a year and it's ALWAYS been right.", 'created': '2024-11-14 21:03:22', 'submission_id': '1gr7iwb'}
{'comment': 'What is she going to do about it? I mean, besides talk?', 'created': '2024-11-14 21:24:23', 'submission_id': '1gr7iwb'}
{'comment': 'She should do something about besides tweeting', 'created': '2024-11-14 21:27:22', 'submission_id': '1gr7iwb'}
{'comment': 'Democrats: “they’re fascists!!”\n\n\nAlso democrats: “we want a smooth transition”', 'created': '2024-11-14 21:32:48', 'submission_id': '1gr7iwb'}
{'comment': 'And nothing will come of it. Fuck off with these articles - “we caught Trump doing something illegal! Just wanted to let you know, we’ll do absolutely nothing about it”', 'created': '2024-11-14 21:33:30', 'submission_id': '1gr7iwb'}
{'comment': 'Then do something about it. We can point out problems all fucking day like we’ve been doing for the past 10 goddamn years. But unless there’s actual consequences, it really doesn’t mean much does it?', 'created': '2024-11-14 21:47:03', 'submission_id': '1gr7iwb'}
{'comment': 'Really? She smells something fishy? If only she were a sitting US Senator and could do something about that?', 'created': '2024-11-14 21:53:38', 'submission_id': '1gr7iwb'}
{'comment': 'Annnnd nothing will be done.', 'created': '2024-11-14 21:56:35', 'submission_id': '1gr7iwb'}
{'comment': 'And they will do NOTHING', 'created': '2024-11-14 22:15:10', 'submission_id': '1gr7iwb'}
{'comment': 'SOMETHING FISHY IS GOING ON WITH THE ELECTION', 'created': '2024-11-14 23:24:30', 'submission_id': '1gr7iwb'}
{'comment': 'And the election. Obviously rigged.', 'created': '2024-11-14 23:46:43', 'submission_id': '1gr7iwb'}
{'comment': "I'm sure they'll have some sternly worded speeches and warnings", 'created': '2024-11-15 02:56:04', 'submission_id': '1gr7iwb'}
{'comment': 'That she will scream about to get Democrats riled up while not ever doing anything', 'created': '2024-11-15 03:42:49', 'submission_id': '1gr7iwb'}
{'comment': 'Nah lol nothing fishy going on /s', 'created': '2024-11-14 23:47:22', 'submission_id': '1gr7iwb'}
{'comment': "Liz can smell? At her age most people can't even smell the full diaper, like Trump.", 'created': '2024-11-15 05:39:38', 'submission_id': '1gr7iwb'}
{'comment': 'As soon as I heard that Susie, Kristi and Tulsi were appointed for cabinet positions, it started smelling "fishy".', 'created': '2024-11-14 20:09:15', 'submission_id': '1gr7iwb'}
{'comment': 'Wow, she must be a genius', 'created': '2024-11-14 20:29:09', 'submission_id': '1gr7iwb'}
{'comment': "It can stink of rotten fish but nothing can be done.\n\nWe'll have a white Christian nationalist as secretary of defense, a pedophile as attorney general and much, much worse to come.\n\nCongrats America. You deserve this.", 'created': '2024-11-14 22:21:24', 'submission_id': '1gr7iwb'}
{'comment': "She's just smelling her moustache.", 'created': '2024-11-14 23:13:23', 'submission_id': '1gr7iwb'}
{'comment': 'First thing that came to mind. If this isn’t a play to pay scheme, I don’t know what is.', 'created': '2024-11-14 17:17:59', 'submission_id': '1gr7iwb'}
{'comment': 'Why are they all speaking Russian now. Seems suspicious.', 'created': '2024-11-14 19:35:30', 'submission_id': '1gr7iwb'}
{'comment': 'Came here to say this—it’s almost as if their goal is to DESTROY! These are NOT CONSERVATIVES!', 'created': '2024-11-14 20:10:06', 'submission_id': '1gr7iwb'}
{'comment': 'I swear it’s like this is brand new to them. Dear Liz, they have been committing crimes in the open without consequence for 9 years. They aren’t going to stop. Thanks for your time.', 'created': '2024-11-14 18:02:48', 'submission_id': '1gr7iwb'}
{'comment': 'The Hamburgler to head DOJ? Are you kidding me?', 'created': '2024-11-16 13:37:31', 'submission_id': '1gr7iwb'}
{'comment': "I mean, I think the real problem is that a lot of people just wanted Trump to win. Not just evil organizations and groups, but a lot of just normal people wanted him to win. It's fucked up, but we need to focus on eroding that and not being nice about it", 'created': '2024-11-14 17:52:09', 'submission_id': '1gr7iwb'}
{'comment': 'well, we arent a cult. This us why cults are powerful. They do tend to eat themselves\xa0', 'created': '2024-11-14 19:21:31', 'submission_id': '1gr7iwb'}
{'comment': 'They should pressure Biden to release every document, every investigation, everything that involves corruption of previous administrations right now. Use the power they still have.', 'created': '2024-11-14 21:57:15', 'submission_id': '1gr7iwb'}
{'comment': 'The world has shifted to shitposting\n\nWe have to make facts and reality something that is funny to us and humiliating to them.\n\nNever anyone like Biden again.\n\nBipartisanship only comes from making deals in a position of strength.', 'created': '2024-11-15 00:12:01', 'submission_id': '1gr7iwb'}
{'comment': "I'm starting to believe that we're in a really bad TV show where Trump just has ridiculous plot armor. How else could he be so obviously corrupt for so long and not face any consequences?", 'created': '2024-11-15 01:48:41', 'submission_id': '1gr7iwb'}
{'comment': 'Media channels have share holders and the share holders want republican policies, cheaper taxes and stripping employee protections, so they will never report either side accurately. \n\nThe democrat has to be perfect while the republican can be….well Trump, it’s all about information and disinformation.', 'created': '2024-11-14 20:54:24', 'submission_id': '1gr7iwb'}
{'comment': "The problem is Joe sat on his ass for 4 years and acted like everything was normal. This isn't normal and he is as much to blame for the mess we are in.", 'created': '2024-11-15 01:04:08', 'submission_id': '1gr7iwb'}
{'comment': '>A Democrat misspeaks and it’s on blast 24/7 for the next several weeks.\n\nIt\'s called propaganda. It\'s what\'s going on and nobody is trying to address it or even acknowledge it.\n\nPeople are like\xa0"*I think the real problem is that a lot of people just wanted Trump to win*". No place for propaganda radicalizing people non-stop in that narrative but it\'s the one that keeps pushed to the top everywhere.\n\nUntil dems stop denying how far-right propaganda affect people and radicalizes them there will never be hope.', 'created': '2024-11-14 22:30:46', 'submission_id': '1gr7iwb'}
{'comment': "Real question of mine is what's to stop trump from rigging elections for the house and senate and state seats so that he can amend the constitution. Realistically what could possibly stop him?", 'created': '2024-11-14 22:48:28', 'submission_id': '1gr7iwb'}
{'comment': 'Democrats are undefeated world champions at snatching defeat from the iron jaws of victory, and learning nothing except how to do it even better next time', 'created': '2024-11-14 23:51:04', 'submission_id': '1gr7iwb'}
{'comment': 'Conservative media is why. Full stop.', 'created': '2024-11-15 00:23:38', 'submission_id': '1gr7iwb'}
{'comment': 'Sadly I’m at a similar point. I’ll keep voting for democrats primarily, it after this election I’m on the side of “fine, do whatever you have always said you would do”.', 'created': '2024-11-15 02:25:38', 'submission_id': '1gr7iwb'}
{'comment': "Until RW media is sued into oblivion and made to follow some sort of standards, things will keep getting worse. They are the reason that no rules apply to GOP politicians. They refuse to live up to their charter as the 4th estate. That hot garbage shouldn't even exist. Why should a country need a news outlet, any news outlet, devoted to towing the line for one political party? And yes I'm totally willing to see MSNBC folded back into a mainstream news org so long as it means the right wing trash media is taken out.", 'created': '2024-11-15 04:50:42', 'submission_id': '1gr7iwb'}
{'comment': "Dude, if you think you will go only two steps backward this time...\n\nIt will be a sprint to backwards land that you won't unfuck for the next decades.", 'created': '2024-11-15 06:12:45', 'submission_id': '1gr7iwb'}
{'comment': '[demogogues](https://en.wikipedia.org/wiki/Demagogue)\nLike Trump, prey on popular resentment. We need better market research, better messaging, and being willing to fight.', 'created': '2024-11-15 17:13:05', 'submission_id': '1gr7iwb'}
{'comment': 'But I mean have you seen the price of bacon?!\n/s', 'created': '2024-11-14 22:09:23', 'submission_id': '1gr7iwb'}
{'comment': "Blame the media, they're both owned by billionaires who want lower taxes and chasing the profits of the last 4 years of Trump's circus.\xa0\n\n\nThey could have told the truth about him at at time", 'created': '2024-11-14 22:16:04', 'submission_id': '1gr7iwb'}
{'comment': 'So….is anything going to happen or are they just going to lay down and quit.', 'created': '2024-11-14 23:17:21', 'submission_id': '1gr7iwb'}
{'comment': "Election ballot technology experts who audit the different companies machines , have written a letter to Harris demanding she request a recount in the swing states, physical evidence of a broken seal on more than 1 machine was observed and chain of custody has blank spots as well. \n\nFrom the last election Hysteria, conservatives sympathetic to trump were allowed to examine the machines and had access to copy the code to decompile and study it. Also multiple machines have been connected to the Internet for firmware/software updates \n\nWe need to verify the votes bc we need to have faith in our elections. \n\nAnd Dems are so complacent and spineless I'm worried that it won't happen. We deserve reassurance that the results are in fact the will of the people. Too much fishy stuff happened that it's not crazy to demand a recount in swing counties. \n\n#DOSOMETHING", 'created': '2024-11-15 00:15:03', 'submission_id': '1gr7iwb'}
{'comment': 'That ship sailed when Garland sat on his ass.', 'created': '2024-11-14 17:03:04', 'submission_id': '1gr7iwb'}
{'comment': 'Serious question, through what mechanism would she hold them accountable? Also, prepare yourself for the most corrupt executive branch in the history of the United States. There is going to be record-breaking criminality across the board.', 'created': '2024-11-14 17:12:30', 'submission_id': '1gr7iwb'}
{'comment': "She tried (see: CFPB). I feel bad for all the public servants, like Elizabeth Warren, that do their job for the betterment of the country and it's citizens.", 'created': '2024-11-14 18:15:02', 'submission_id': '1gr7iwb'}
{'comment': 'This will be impossible with no power. We’re screwed.', 'created': '2024-11-14 17:13:32', 'submission_id': '1gr7iwb'}
{'comment': 'If we’ve learned anything from all this, it’s that it’s impossible to hold trump accountable for anything.', 'created': '2024-11-14 17:53:03', 'submission_id': '1gr7iwb'}
{'comment': 'How exactly?\n\nThis is what the people want , sadly', 'created': '2024-11-14 17:14:05', 'submission_id': '1gr7iwb'}
{'comment': 'The Biden Administration and the Federal government or Federal law enforcement isn’t going to do shit. They’re pussies too worried about upsetting the status quo and going through a period of unrest. They’re wimps and would rather “peacefully” hand power over to a fascist they’ve been saying will destroy the foundations of our government for years now. And they’re not gonna do shit about it. \n\nWe’ll go across seas and blow people up to counter terroristic attacks on our nation from the outside, but fighting a domestic criminal fascist mafia that’s taken hold of all aspects of our government? Nah, they’re too old and tired to be bothered with saving everything this nation has built up over the last 125 years since the end of the Gilded Age. \n\nTeddy & Franklin Roosevelt are rolling in their graves right now. The modern DNC is filled with pussies who don’t have the balls to fight. “When we fight we win!” Yeah fucking right.', 'created': '2024-11-14 17:34:46', 'submission_id': '1gr7iwb'}
{'comment': 'Can she even request to hold hearings in the senate on this? I dunno the answer but I’m doubtful', 'created': '2024-11-14 17:30:37', 'submission_id': '1gr7iwb'}
{'comment': 'How?\n\n\nPlease explain?', 'created': '2024-11-14 19:08:41', 'submission_id': '1gr7iwb'}
{'comment': "That's what elections are for.", 'created': '2024-11-14 20:35:32', 'submission_id': '1gr7iwb'}
{'comment': "Nobody has done that yet for anything. It's all over, I'm tired, boss. Fuck em all.", 'created': '2024-11-14 19:24:56', 'submission_id': '1gr7iwb'}
{'comment': "For real, she states that she knows it's against the law because she wrote the law. That's an excellent way to get fired and have the law changed by America's new tyrant.", 'created': '2024-11-14 19:29:00', 'submission_id': '1gr7iwb'}
{'comment': 'Since we live in a democracy, it is the job of the citizens to hold their government accountable. In a way, they have. The citizens have collectively decided (including by abstention) to elect a dictator. This is what Americans effectively “want.” There is no mechanism, nor has there ever been one in this country, to formally circumvent the democratic process when the voters have made an objectively poor choice. We can discuss the informal and insidious entities or systems that disrupt informed and/or fair representation, but as far as “holding Trump accountable” via official processes, we had such a process. It was called an election, and as a country we voted against democracy itself.', 'created': '2024-11-15 01:06:23', 'submission_id': '1gr7iwb'}
{'comment': 'Y’all gotta stop screaming this. It’s been 10 years. Only people held accountable were Giuliani and Alex jones as far as I can tell.\n\nTrump and his buddies are untouchable it seems. Just sit back and watch the show', 'created': '2024-11-15 01:27:10', 'submission_id': '1gr7iwb'}
{'comment': 'With what majorities? They will hold all parts of the government in no time.', 'created': '2024-11-15 01:40:47', 'submission_id': '1gr7iwb'}
{'comment': "Yep. I'm also done paying any attention to Democrat's constant inaction. Democrat's warnings about Trump is kind of like Russia drawing red lines for NATO, completely pointless.", 'created': '2024-11-15 08:49:31', 'submission_id': '1gr7iwb'}
{'comment': 'Don’t worry jack smith will take 4 years of being in headlines daily to finally……do nothing. But hey atleast he can write and sell a cute book!!!', 'created': '2024-11-14 18:44:49', 'submission_id': '1gr7iwb'}
{'comment': 'Or usually not even screaming. Saw an interview with Biden and Obama talking about election interference. Said they had too much respect for the integrity of the system that they didn’t want to bring it up because people might have doubts. Even after everything happened they still defended that position. This would have been far easier to deal with then and is my chief complaint against Biden. \n\nThen we have the Merrick Garland fiasco who has never seen any crime that wasn’t too political to address.\n\nThe rest are kind of stuck because they don’t have the votes to do anything. Biden and garland could do stuff but the other can’t do much more than whine.', 'created': '2024-11-14 17:01:24', 'submission_id': '1gr7iwb'}
{'comment': '“I don’t want to inconvenience you, but Would you pretty please stop doing the fascism? Thanks!!”', 'created': '2024-11-14 17:09:38', 'submission_id': '1gr7iwb'}
{'comment': "Except in a lot of these cases, they are also the ref. It's not just their job to tell us what Trump is up to. It's up to them to try to stop it.", 'created': '2024-11-14 17:16:02', 'submission_id': '1gr7iwb'}
{'comment': 'Seriously, our party is so predictable.', 'created': '2024-11-14 17:00:18', 'submission_id': '1gr7iwb'}
{'comment': 'More like the ref yelling at the crowd about the foul, and the crowd being like "what are you telling me for???"', 'created': '2024-11-14 19:20:54', 'submission_id': '1gr7iwb'}
{'comment': 'That’s not democrats. They only get the tools that we give them.\n\nIt’s you. You’re that guy.', 'created': '2024-11-14 17:13:16', 'submission_id': '1gr7iwb'}
{'comment': 'Republicans do that all the time and the refs actually fucking listen to them.', 'created': '2024-11-14 17:42:56', 'submission_id': '1gr7iwb'}
{'comment': 'It’s just good cop, bad cop bullshit at this point.', 'created': '2024-11-14 17:29:46', 'submission_id': '1gr7iwb'}
{'comment': 'They when the other team is showering after they lost. I really want them to either do something or not even bring it up if all they do is post on social media to raise my blood pressure.', 'created': '2024-11-14 18:39:00', 'submission_id': '1gr7iwb'}
{'comment': "She's not gonna do anything about it, nor will anyone in the Democratic Party, but she wants everyone to know it's real bad you guys now will you please keep voting for us and dontaing money thanks xoxo", 'created': '2024-11-14 18:14:39', 'submission_id': '1gr7iwb'}
{'comment': 'Dan Osborn put the fear of God into Deb Fischer in Nebraska.\n\nThey did such a good job framing her as a career politician who rubber stamps the Republican agenda.\n\nThey stumbled at the finish line by airing voters who said "I\'m voting for Trump but I\'m also voting for Dan Osborn"\n\nDude. You just said she rubber stamps the GOP agenda. And now you\'re trying to convince people who are okay with that to vote for you. One tough hill to climb.', 'created': '2024-11-14 17:15:10', 'submission_id': '1gr7iwb'}
{'comment': 'Do it. We need some Democrats in there who are willing to actually fight back and not roll over.', 'created': '2024-11-14 18:50:54', 'submission_id': '1gr7iwb'}
{'comment': 'I support you. Those are my sentiments exactly. They just lost democracy and are like “oh well, it’s the effort that counts”', 'created': '2024-11-14 17:35:03', 'submission_id': '1gr7iwb'}
{'comment': "It doesn't seem like they're playing by the rules, so why are we? At least we should grow a fucking backbone before our country is burned to the god damn ground. But it's probably too late.", 'created': '2024-11-15 00:31:33', 'submission_id': '1gr7iwb'}
{'comment': 'Unironically THIS is how you fix the country by getting real people actually involved in the political system BEFORE the elections signing the x on a ballot paper should be the last political action you take in a cycle not the first and only.', 'created': '2024-11-14 19:47:01', 'submission_id': '1gr7iwb'}
{'comment': 'Jesus Christ is why we are in this mess to begin with.', 'created': '2024-11-14 18:17:04', 'submission_id': '1gr7iwb'}
{'comment': 'Hey you better have a criminal past!!?', 'created': '2024-11-14 18:53:31', 'submission_id': '1gr7iwb'}
{'comment': 'Do it. We need new leaders', 'created': '2024-11-14 21:46:17', 'submission_id': '1gr7iwb'}
{'comment': 'Maybe we can finally get the Forward Party going. Never forget what they stole from us in 2020.', 'created': '2024-11-14 18:38:13', 'submission_id': '1gr7iwb'}
{'comment': 'The problem with the party is there aren’t more people like Warren in it in my eyes. She actually has a history of being a policy wonk. It’s just the party is half filled with Democratic politicians in areas that if they side with progressives they fear they will lose re-election. \n\nThe problem isn’t the party. It’s the lack of political education and knowledge in the overall electorate. The country has gotten less intelligent. You think with the internet and technology that people would be more informed, but it turned out it’s more profitable to lie for engagement than educate and inform. Capitalism is both what makes this country so strong and yet it is also a major source of weakness.', 'created': '2024-11-14 17:28:02', 'submission_id': '1gr7iwb'}
{'comment': "The party just expects a nation where the majority can't read at a 6th grade level, and half don't vote at all, will listen to long flowery arguments about what the Republicans are doing to break the law and destroy the country. And it gets more unbelievable when they think that by them pointing these things out, the people will actually do something about it when most people have no idea how these things will personally affect them. Do you honestly think that some random person in Ohio has any idea what the Department of Education does for them?\n\nFFS you can't win a knife fight if you are sitting down trying to reason with the other person. Fight dirty, like LBJ or FDR would do, and talk to the people directly, at their level, and about how things that personally affect them in simple terms. No compromises at all. Screw decorum. Filibuster everything. Cuss them out like they used to back in the day and insult them to their faces. Don't let then hide behind us being the nice ones who will fix their problems.\n\nStop being the meek little ones and be the bigger problem. If we don't win, at least the history books far in the future will say the defenders of the Republic went down swinging.", 'created': '2024-11-14 18:49:16', 'submission_id': '1gr7iwb'}
{'comment': "Won't somebody do something?! You! You're the somebody. Fucking idiots.", 'created': '2024-11-14 18:03:59', 'submission_id': '1gr7iwb'}
{'comment': 'What should they be doing? Like practically, right now.', 'created': '2024-11-14 19:46:31', 'submission_id': '1gr7iwb'}
{'comment': 'Gee, thanks Liz! I wasn’t concerned about Donald J Trump before, but now I’ve found cause for concern.', 'created': '2024-11-14 17:08:30', 'submission_id': '1gr7iwb'}
{'comment': '#DOSOMETHING', 'created': '2024-11-15 03:44:07', 'submission_id': '1gr7iwb'}
{'comment': 'Naw she\'s the "you see something, say something" type. That\'s as good as it gets here In the good ol u-s and a', 'created': '2024-11-15 00:17:20', 'submission_id': '1gr7iwb'}
{'comment': 'Exactly what do you expect her to do?\n\nShe can’t save the American people from themselves. They voted for this and gave republicans control of Congress as well.\n\nHer ONLY power is making these statements. Her senate vote now means nothing.', 'created': '2024-11-14 16:52:13', 'submission_id': '1gr7iwb'}
{'comment': "Exactly. \n\nGood that Warren is speaking out on that, in case it gets to people that don't know it.\n\nBut most people watching MSNBC, and people on the subreddit, already know the grift starts now!", 'created': '2024-11-14 17:14:01', 'submission_id': '1gr7iwb'}
{'comment': 'Couldn’t agree more. I’m tired, boss.', 'created': '2024-11-14 23:19:47', 'submission_id': '1gr7iwb'}
{'comment': 'correct and for Trump he wants himself to be the American Ferdinand Marcos Sr Putin Xi Kim Orban and Netanyahu which explains the use of Loyalists in the cabinet', 'created': '2024-11-15 04:38:24', 'submission_id': '1gr7iwb'}
{'comment': 'Haha yeah man never been much of a fan of her', 'created': '2024-11-14 16:58:01', 'submission_id': '1gr7iwb'}
{'comment': "I am completely sympathetic to your sentiment and frustration (I feel it too), but what would you have her do? I'd really like to hear practical suggestions that you have.", 'created': '2024-11-14 17:04:55', 'submission_id': '1gr7iwb'}
{'comment': '*Typed the individual furiously behind his keyboard*', 'created': '2024-11-14 16:57:16', 'submission_id': '1gr7iwb'}
{'comment': 'Democrats are becoming increasingly irrelevant,fascism is way more sexy to the American people.', 'created': '2024-11-14 20:39:53', 'submission_id': '1gr7iwb'}
{'comment': 'And he knows he can get away with it because he gets away with every GD thing', 'created': '2024-11-15 00:28:52', 'submission_id': '1gr7iwb'}
{'comment': "That's all well and good... When the entire ocean isn't already 70% hemoglobin...", 'created': '2024-11-15 11:38:32', 'submission_id': '1gr7iwb'}
{'comment': 'Do you understand how the Senate works? WTF do you have in mind that she do?', 'created': '2024-11-15 06:00:00', 'submission_id': '1gr7iwb'}
{'comment': 'That remark is misogynistic and unnecessary.', 'created': '2024-11-14 18:07:50', 'submission_id': '1gr7iwb'}
{'comment': 'Remember, no Russian...', 'created': '2024-11-15 01:10:58', 'submission_id': '1gr7iwb'}
{'comment': 'https://www.instagram.com/reel/DCTCgzfRDVR/?igsh=M3FlbWlhMXN1OGZi\n\nWatch this preview of documentary\nExplains EVERYTHING we need to know about trump and russia.', 'created': '2024-11-15 19:55:22', 'submission_id': '1gr7iwb'}
{'comment': 'Destrublicans?\n\nDestructatives? \n\nDestructAGA? \n\nLast one my get copyright claimed by Final Fantasy EA/Square Enix', 'created': '2024-11-14 22:19:14', 'submission_id': '1gr7iwb'}
{'comment': "They've been trying to conserve things that haven't existed for decades. That's not conserving that's regressing.\n\nRegressives.", 'created': '2024-11-15 03:41:41', 'submission_id': '1gr7iwb'}
{'comment': 'Disturblicans', 'created': '2024-11-15 07:27:52', 'submission_id': '1gr7iwb'}
{'comment': 'And quite honestly there’s nothing we can do about it.', 'created': '2024-11-15 03:53:59', 'submission_id': '1gr7iwb'}
{'comment': " yes they are lmao. They're been running like this for a decade if not more.", 'created': '2024-11-15 09:12:06', 'submission_id': '1gr7iwb'}
{'comment': 'Can’t get smaller government without dismantling the current one first. …I really want to sarcasm tag this, but, yeah.', 'created': '2024-11-15 14:55:04', 'submission_id': '1gr7iwb'}
{'comment': "Liz has been the most consistently outspoken Senator against this shit, if you haven't heard her, it's not her fault. She built the CFPB, for fuck's sake, and her whole career has been built on going after this kind of stuff. She's doing all she can, the law moves slowly, it's not her fucking fault. Pick the right fucking targets.", 'created': '2024-11-14 18:09:49', 'submission_id': '1gr7iwb'}
{'comment': 'I work with a few 20 something’s that voted for Trump. Their biggest reasoning is the economy. They complain about how much things cost and inflation yet they eat most of their meals from restaurants and have all the new tech, one ordered a new car last month. They’re just regurgitating talking points they heard on social media. They make over $25/hr and live in lower COL rural Midwest.', 'created': '2024-11-15 00:45:46', 'submission_id': '1gr7iwb'}
{'comment': 'This and messaging. Democrats are also awful with messaging. A lot of people wanted him to win because they thought he would be better on the economy and the current situation was just awful.', 'created': '2024-11-14 18:31:11', 'submission_id': '1gr7iwb'}
{'comment': 'It’s only because Trump is a really good snake oil salesman and everybody believes he did good with the economy when it was really Obama‘s economy and he ruined it for Biden. The trajectory was unstoppable By the time he was out of office. \n\nThe real issue in this election was education! All of the people that voted for him are just really too ignorant or stupid to understand how economics and government works. Every single one of them needs to go back to a high school civics class and get retrained on the branches of government and how things operate in America.', 'created': '2024-11-15 02:22:00', 'submission_id': '1gr7iwb'}
{'comment': "Not to mention, less voters showed up. Every time you have a low voter turnout, repub wins. High voter turnouts, Dem wins. Compared to 2020 it was quite shocking. I thought we'd see a record turnout! \n\nIn 2020, Biden got 81 million votes, Trump 74 mill. This time Trump did even worse.. 71 mil. Harris 67 mil..just abysmal", 'created': '2024-11-15 07:07:24', 'submission_id': '1gr7iwb'}
{'comment': "Well, with what's left of US healthcare soon going away for good, that probably will kind of take care of itself.\n\nThe next problem is all the kinds gobbling up all the misinformation in tiktok and the like.", 'created': '2024-11-14 19:17:16', 'submission_id': '1gr7iwb'}
{'comment': 'Actually Trump only got about the same number of votes as he did in 2020, so those same people did indeed want him to win, but it was the 8 million who had voted for Biden but didn’t vote for Harris that handed him the election. I’m not sure how we wrap our heads around that.\n\nMany Patriotic Republicans obviously left Trump after Jan 6. Many Patriotic independents left him as well. And so did many veterans after he disparaged them. And Puerto Ricans and Haitians that he disparaged left him as well. And many women who were affected by Roe getting overturned left him also. Yet somehow he gets 2 million more votes than he did 4 years prior. And Harris gets 8 million less than Biden. None of this makes any sense.\n\nYou say we need to focus on “eroding” that, but it was eroded. So how does he gain votes? The math doesn’t work. Not at all.\n\nTrump clearly lost voters. Yet he somehow didn’t. Kamala gained former Trump supporters. Yet she got 8 million less votes than Biden. There is no way to logically explain this. \n\nEven if those people who left Trump didn’t vote for Harris then where did the 8 million that voted for Biden go? And how does Trump get 2 million more if he lost votes?\n\nSo Warren is right that something smells fishy, but the stink started before the transition team. I’m no conspiracy nut. I’m the opposite. I’m logical. And this math defies logic.', 'created': '2024-11-16 03:43:45', 'submission_id': '1gr7iwb'}
{'comment': 'This is so very true. It’s also how religion plays such a large impact. I grew up in a church that is very cult like and while they preach “free will”, what they mean is you are free to believe everything they say or be shunned by everyone you know and love. It took me 20+ years to deprogram myself. During that time they kept trying to reel me back in.', 'created': '2024-11-14 19:44:39', 'submission_id': '1gr7iwb'}
{'comment': 'Only after they eat everyone else.', 'created': '2024-11-15 21:20:24', 'submission_id': '1gr7iwb'}
{'comment': 'They absolutely should. He won’t though. In the “spirit of unity”. Fuck that noise. The other side has been anything but unify. The “fuck your feelings” crowd deserves to have their feelings hurt.', 'created': '2024-11-14 22:03:09', 'submission_id': '1gr7iwb'}
{'comment': 'I keep seeing an ad for some Dune show running on Max. There is a line that hits hard in the trailer: “Humanity’s greatest weapon is the lie.” Seeing how much disinformation we have had to deal with lately, damn does that ring true.', 'created': '2024-11-14 22:05:06', 'submission_id': '1gr7iwb'}
{'comment': 'I’m thinking we will be finding out real soon.', 'created': '2024-11-15 00:24:52', 'submission_id': '1gr7iwb'}
{'comment': 'Nothing will happen. They are like " oh well ".', 'created': '2024-11-15 00:57:49', 'submission_id': '1gr7iwb'}
{'comment': "Oh and here's the link with more info and a copy of the letter [https://freespeechforpeople.org/computer-scientists-breaches-of-voting-system-software-warrant-recounts-to-ensure-election-verification/](https://freespeechforpeople.org/computer-scientists-breaches-of-voting-system-software-warrant-recounts-to-ensure-election-verification/)", 'created': '2024-11-16 07:13:57', 'submission_id': '1gr7iwb'}
{'comment': 'Milquetoast Merrick', 'created': '2024-11-14 17:41:04', 'submission_id': '1gr7iwb'}
{'comment': 'Our Neville chamberlain and I will never stop this', 'created': '2024-11-14 17:56:58', 'submission_id': '1gr7iwb'}
{'comment': 'Really it sailed when they compromised and appointed Garland to appease Republicans. \n\nI hope Dems never try this appeasement compromise shit again because holy fuck', 'created': '2024-11-14 21:58:38', 'submission_id': '1gr7iwb'}
{'comment': 'Well Garland was a Heritage Foundation stooge, blame Biden', 'created': '2024-11-14 19:58:51', 'submission_id': '1gr7iwb'}
{'comment': 'When Biden appointed McConnell rec Garland, you mean.', 'created': '2024-11-14 18:20:31', 'submission_id': '1gr7iwb'}
{'comment': 'Merrick Garland is a goddamn coward', 'created': '2024-11-15 04:33:54', 'submission_id': '1gr7iwb'}
{'comment': "Well the first mechanism to prevent this would be to have the Electoral College refuse to elect him President. That's the entire point of the thing to be a safety check in case the American people elect a potential tyrant. But electors haven't worked that way in well over 150 years. Then another mechanism is to have Congress refuse the results and elect someone else, but Congress is full of people loyal to the man and not the country. Then finally, Congress could remove him once as he takes power, but again loyal to the man, not the country. Finally the Supreme Court was designed to remain completely neutral and would always side with the Constitution and preventing any branch from gaining too much power could limit the damage, but they have been compromised as well. \n\nBut the framers of the Constitution never dreamed that a party would be more loyal to a man than the country itself and never installed any real consequences should a president become a tyrant. They believed that there would always be enough people in the government who would act in good faith, and people would instead remain loyal to their home states needs. They also thought that while the Federal government was of a higher authority, it could never be used against the individual states.\n\nThis has happened before. Andrew Jackson was a bomb to the established government that was still on shaky ground and upended everything while destroying the economy and trampling rights. But the only silver lining was that Jackson still loved the country itself and believed what he was doing was for the betterment of the nation. Trump is just burning it down to establish himself as a dictator. The only thing that can resist him is the bureaucracy of the Federal government, which is what generally blunted his damage last time, so he is specifically attempting to target that first.", 'created': '2024-11-14 18:22:42', 'submission_id': '1gr7iwb'}
{'comment': 'Biden should have declared a national state of emergency and enacted Presidential emergency powers to do fucking SOMETHING, long ago to counter this shit. I don’t know what exactly he could have done but he could have done more.\n\nThe FBI, CIA, & NSA, sure as shit have all they need on Trump to actually forcefully shut this shit down. But they’re too worried about upsetting the status quo or worried about how the populace will perceive them based on the false reality that MAGA has created. They’re pussies.', 'created': '2024-11-14 17:36:30', 'submission_id': '1gr7iwb'}
{'comment': 'Off the top of my head, im not sure. But there must be some mechanism to hold them accountable. And then investigations and press conferences will be really important.', 'created': '2024-11-14 17:13:58', 'submission_id': '1gr7iwb'}
{'comment': '“I’m going to give the Grant and Harding administrations a run for their money.” \n\n* Trump, probably', 'created': '2024-11-14 17:58:08', 'submission_id': '1gr7iwb'}
{'comment': None, 'created': '2024-11-14 18:02:17', 'submission_id': '1gr7iwb'}
{'comment': "Oooh, hearings! That'll get em!", 'created': '2024-11-14 17:58:21', 'submission_id': '1gr7iwb'}
{'comment': 'True, screaming would be nice instead of “excuse me sir, if I could have a moment please”', 'created': '2024-11-14 17:07:50', 'submission_id': '1gr7iwb'}
{'comment': 'Okay, I’ll play along.\n\nWhat can I, rando Reddit poster, do about it?\n\nAs opposed to a sitting senator.\n\nIf you have ideas I’m game.', 'created': '2024-11-14 17:15:06', 'submission_id': '1gr7iwb'}
{'comment': "Can she do anything? Genuinely curious because last time this was brought up, it was asserted she can't.", 'created': '2024-11-14 19:56:49', 'submission_id': '1gr7iwb'}
{'comment': 'Third parties delivered Clinton in 1992 and Nader delivered W Bush in 2000.\nFuck right off with this', 'created': '2024-11-14 17:33:18', 'submission_id': '1gr7iwb'}
{'comment': 'It’s like none of them were raised in a small town and have no idea what real struggle is.', 'created': '2024-11-14 18:51:45', 'submission_id': '1gr7iwb'}
{'comment': 'Joe Biden can fix this as an official act of the president for the good of the country', 'created': '2024-11-14 18:56:41', 'submission_id': '1gr7iwb'}
{'comment': 'Bc we fucking play the safe card and americans want a damn celebrity as a president, not a politician.', 'created': '2024-11-14 18:44:43', 'submission_id': '1gr7iwb'}
{'comment': 'Nope. Grew up surrounded by cotton and soybean fields. Veteran, Law degree, masters in ML/AI.', 'created': '2024-11-14 18:56:16', 'submission_id': '1gr7iwb'}
{'comment': "The problem is that the party sold out to centrist corporate interests and bailed on the working/middle class, and with the repeal of Citizens United, it's basically too late to go back. The working class donors can't compete with billionaire influence dollars, so instead of a party full of Bernies and Elizabeth Warrens and AOCs, we get a party of Clintons and Harrises still serving the interests of the rich. This is why we need ranked choice voting and multiple parties, and also why we'll never get them.", 'created': '2024-11-14 18:13:46', 'submission_id': '1gr7iwb'}
{'comment': '"Why aren\'t our voters turning out for us?? We didn\'t do anything!!"', 'created': '2024-11-14 18:22:57', 'submission_id': '1gr7iwb'}
{'comment': 'Do what?', 'created': '2024-11-14 22:36:31', 'submission_id': '1gr7iwb'}
{'comment': "> They voted for this\n\nLots of people are saying that they didn't.\n\nEnough that they should at least check.", 'created': '2024-11-15 02:41:40', 'submission_id': '1gr7iwb'}
{'comment': 'Fanta Ferdinand', 'created': '2024-11-15 06:03:48', 'submission_id': '1gr7iwb'}
{'comment': 'I agree that it\'s not up to Elizabeth Warren personally to sort this out. I just think society as a whole (no thanks to media) has become way too accepting of his dishonorable and law-breaking behavior. \n\nI don\'t know what the answer is. The fact that he\'s been getting away with this bullshit for 8 years completely blows my mind. The "Grab them by the kitty" line should have canceled him for good, but here we are.', 'created': '2024-11-14 17:36:37', 'submission_id': '1gr7iwb'}
{'comment': 'Honestly I’m not sure, but I don’t want to just hear about whenever he breaks the law. Maybe hold up appointments if possible, use the power they have now before republicans take the majority.', 'created': '2024-11-14 18:03:43', 'submission_id': '1gr7iwb'}
{'comment': "Would have been nice if she dropped out of her deeply unserious campaign 4 years ago so the left-wing vote wasn't split between her, Bernie, and obvious grifter fraud loser Andrew Yang.", 'created': '2024-11-14 18:25:33', 'submission_id': '1gr7iwb'}
{'comment': "Didn't realize a rando redditor has as much political power as Elizabeth Warren", 'created': '2024-11-14 18:24:07', 'submission_id': '1gr7iwb'}
{'comment': 'I wish I could argue.', 'created': '2024-11-15 05:48:08', 'submission_id': '1gr7iwb'}
{'comment': 'Yeah. Like it’s soooo frustrating. \n\nLike I’m also a civil servant, so is my husband. We are both putting our plans to buy a house on hold bc of Trump. He might gut my husbands agency (one of the ones he particularly hates). He will likely blanket revoke all remote agreements (there goes my job). Then there is his initiative to politicize the military and civil servants. Like we just want to do our jobs to the best of our abilities, we don’t talk politics at work. It doesn’t influence anything we do, mission is X we do X. New policy says Y, we do Y. \n\nHis whole schedule F thing could cripple the Gov. It also shows he has zero idea how policy works in the Gov. As it flows down, it can ONLY get more restrictive. Like the Army can’t say “oh we aren’t doing that” when the DoD comes out with a new policy. All the army can do is add further restrictions and provide supplemental guidance.', 'created': '2024-11-15 01:30:46', 'submission_id': '1gr7iwb'}
{'comment': 'Something more effective. The finger wagging simply isn’t enough.', 'created': '2024-11-15 06:15:33', 'submission_id': '1gr7iwb'}
{'comment': "So, it's not funny?", 'created': '2024-11-14 18:09:06', 'submission_id': '1gr7iwb'}
{'comment': 'Still more ethical than many of the things Trumps proposed cabinet members have done', 'created': '2024-11-15 11:42:58', 'submission_id': '1gr7iwb'}
{'comment': 'Not even the salad dressing….', 'created': '2024-11-16 13:35:46', 'submission_id': '1gr7iwb'}
{'comment': 'I’m intimately familiar with our Russia problems. I have been saying this on Reddit and to anyone that would give me an ear, we are already fully compromised by Russia. Trump was just the Trojan horse that let the final move in. Our idiocracy let it happen in plain sight. It started back before 2014. When OPM was hacked and shortly after, the State department. From that point forward, I have had increasingly more concern about the depth of infiltration with our corporate and government leadership. \n\nThere’s a couple of good podcasts I’d also recommend (Putin’s Trader, and all of the short series that Rachel Maddow did, Bagman, Epic, Ultra), that help also, and then there’s [Russian KGG defectors](https://youtu.be/yErKTVdETpw?si=jSI72FNoNjjLb7h1) telling how they were doing in from the mid 80s. It’s not like we didn’t have enough warning. By the time people figure it out, it’s long been too late. \n\nAnd if you want to know how Trump consolidated power just like Putin, you only need to see [Rachel Maddow’s show about KGB Hotels](https://youtu.be/uHX031UoCXA?si=tRY4aXi1WBJuz8-9) to understand. It’s all been right there, but nothing happens. So I’m done.', 'created': '2024-11-15 20:34:43', 'submission_id': '1gr7iwb'}
{'comment': 'Oh, one more thing, If you want to know what Fox, NewsMax, and OAN’s underlying script is, read the short story [“The Children’s Story”, by James Clavell](https://www3.uwsp.edu/cnr-ap/UWEXLakes/Documents/programs/lakeleaders/crew7/greenlake_may_2008/the_childrens_story_becken_presentation.pdf).', 'created': '2024-11-15 20:42:01', 'submission_id': '1gr7iwb'}
{'comment': 'DESTRUBLICANS!!!!! FANTASTIC! \nImma use that one.', 'created': '2024-11-14 23:50:13', 'submission_id': '1gr7iwb'}
{'comment': 'Destructa-cons', 'created': '2024-11-15 05:22:19', 'submission_id': '1gr7iwb'}
{'comment': 'MAGAts', 'created': '2024-11-14 23:55:33', 'submission_id': '1gr7iwb'}
{'comment': "It's the sort of thing that gets leveled at Democrats whenever a headline is written like this. Folks treat it as if they're noticing something for the first time, or just starting to do something rather than the reality that they've consistently worked on the situation for years.\n\nIt's done every five minutes through Biden's administration whenever he addressed student loans or climate change or the economy or whatever issue of the day. It's the stilted media landscape we're in where the media just doesn't want to report on things appropriately, it doesn't reach the 'front page' on social media too often, particularly if it helps Democrats. \n\nAnd often enough bad actors promote the sentiment, as the 'vibe' of 'do nothing Democrats' depresses their support. It seems to me this last election was all about that 'vibe' sentiment.", 'created': '2024-11-14 19:15:54', 'submission_id': '1gr7iwb'}
{'comment': 'She can’t do it alone!', 'created': '2024-11-14 19:55:58', 'submission_id': '1gr7iwb'}
{'comment': "I agree. I haven't seen a politician as genuinely mad and outraged as she was when Roe versus Wade was overturned.", 'created': '2024-11-15 01:21:30', 'submission_id': '1gr7iwb'}
{'comment': 'I love the CFPB. They fixed two banking issues for me this year alone. When banks get that email from them it ten hut time.', 'created': '2024-11-15 04:45:08', 'submission_id': '1gr7iwb'}
{'comment': 'I actually work at CFPB and the higher ups in meetings all week about what to do to minimize what’s coming has been just daunting. I mean, it’s a lot of lawyers there working hard and plenty of reasonable government workers that aren’t lawyers who know their shit and they know we will be impacted somehow, internally or externally with whatever they got cooking.', 'created': '2024-11-15 20:53:22', 'submission_id': '1gr7iwb'}
{'comment': 'Yeah seriously as an independent i completely respect her and Kinzinger for tanking their careers to speak out about how destructive and dangerous trump is. She is a true republican conservative. Magas are not. They need to call their party something else', 'created': '2024-11-15 02:12:00', 'submission_id': '1gr7iwb'}
{'comment': "Absolutely correct furthermore Donald Trump's second term if correct as a dictatorship modeled after manafort client Ferdinand Marcos senior will want CFPB destroyed", 'created': '2024-11-15 18:11:53', 'submission_id': '1gr7iwb'}
{'comment': "You sure? \n\nThe democrats sat silently by as Trump & MAGA called them pedophiles, groomers, incompetent and outright ignorant. \n\nHe committed crimes in the open while they tweeted and went on MSNBC.\n\nThe law may move slowly, but individuals don't have to. Dems, including her, allowed all this.", 'created': '2024-11-15 02:00:39', 'submission_id': '1gr7iwb'}
{'comment': 'What has the CFPB done?', 'created': '2024-11-14 19:49:45', 'submission_id': '1gr7iwb'}
{'comment': '[removed]', 'created': '2024-11-14 18:25:57', 'submission_id': '1gr7iwb'}
{'comment': "lmao do they not understand that it's not the Dems holding them back but all the Republicans, who haven't raised wages nor wanted to for 20 years? These kids know NOTHING about sacrifice.", 'created': '2024-11-15 01:41:55', 'submission_id': '1gr7iwb'}
{'comment': "This is what I mean. The economy isn't perfect but it isn't that bad.", 'created': '2024-11-15 00:52:23', 'submission_id': '1gr7iwb'}
{'comment': "Talking points from social media and right wing media, probably. Now let's follow the money.", 'created': '2024-11-15 22:18:33', 'submission_id': '1gr7iwb'}
{'comment': "OK, so let's think: what sort of messaging should we use? Like, what should we focus on?", 'created': '2024-11-14 18:36:16', 'submission_id': '1gr7iwb'}
{'comment': 'This right here is the only reason I would believe that there was voter interference. How, after all that, could we have less votes?\n\nOr maybe the people who were passionate were just that passionate', 'created': '2024-11-15 13:14:22', 'submission_id': '1gr7iwb'}
{'comment': "2020 was an anomaly. Because of covid and shutdowns ppl had nothing to do. Mail in voting was easier so more ppl voted out of boredom than anything else. Can we make a fair comparison between 2020 and 2024. When ppl are busy a lot don't take the time to vote.", 'created': '2024-11-15 16:20:57', 'submission_id': '1gr7iwb'}
{'comment': 'what helped you deprogram?. I have a family member who was in a cult, he got out, but after divorce he’s chronically on youtube so back in the manoshithole he went', 'created': '2024-11-14 19:46:41', 'submission_id': '1gr7iwb'}
{'comment': 'Federalist Failure', 'created': '2024-11-14 20:39:22', 'submission_id': '1gr7iwb'}
{'comment': 'Neville Chamberlain was trying to avoid another global war where an entire generation of men were lost. He was completely wrong in his approach but at least there was a reason behind his inaction and appeasement.\n\nMerrick Garland had no such excuse for his inaction when the fate of the Republic was blatantly at stake.', 'created': '2024-11-14 18:04:53', 'submission_id': '1gr7iwb'}
{'comment': 'This is exactly right. MAGA has hypnotized tens of millions of people, to an extend that hasn’t been seen in this country before. **any** move against His Grace King Trump will automatically trigger civil unrest and people *will* die, just like on J6. This doesn’t mean he shouldn’t be held accountable, though. Letting MAGA get to this point is unacceptable.', 'created': '2024-11-14 17:52:56', 'submission_id': '1gr7iwb'}
{'comment': 'Biden lives and works as though there are still rules. Good if you believe in our democracy which he does, but not good to counter the lawlessness that our country apparently loved so much they brought it back.', 'created': '2024-11-14 18:32:37', 'submission_id': '1gr7iwb'}
{'comment': 'That would be a constitutional crisis', 'created': '2024-11-14 17:38:01', 'submission_id': '1gr7iwb'}
{'comment': "Well that's the thing bud. There isn't. We had investigations. We had charges. Trump was convicted of 34 felonies and had many cases pending against him.\n\nAll of that is going away now and he's getting the keys to the oval office, the nuclear codes, and all the rest of it.", 'created': '2024-11-14 17:15:57', 'submission_id': '1gr7iwb'}
{'comment': 'Well the first thing he wants to do is chip away at our first amendment rights. This bothers me to no end as a veteran who took an oath to protect our constitution. He really is trying to start a civil war.', 'created': '2024-11-14 17:21:44', 'submission_id': '1gr7iwb'}
{'comment': 'The mechanisms don’t exist because a bunch of people voted for this. So they will reap what they have sown, I’m not going to get bent out of shape about it anymore.', 'created': '2024-11-14 17:18:31', 'submission_id': '1gr7iwb'}
{'comment': 'There isn’t lol that’s why it’s a house of cards predicated on ppl following norms and basic ethics', 'created': '2024-11-14 17:37:22', 'submission_id': '1gr7iwb'}
{'comment': 'Should? Yes.\n\nMust? Eh…', 'created': '2024-11-14 17:17:09', 'submission_id': '1gr7iwb'}
{'comment': 'Each branch is to hold the other accountable and they’ve won all three along with the corrupt SCOTUS. The monkeys are loose with no zoo keeper. \n\nWho ya gonna call?\n\nGhost Busters!', 'created': '2024-11-14 17:46:28', 'submission_id': '1gr7iwb'}
{'comment': 'We got Biden when we needed Sulla. We need a hardass that will purge the corruption then retire peacefully to the countryside.', 'created': '2024-11-14 18:23:53', 'submission_id': '1gr7iwb'}
{'comment': 'Biden could have appointed more justices.\n\nBiden could have used that presidential immunity.', 'created': '2024-11-15 02:34:54', 'submission_id': '1gr7iwb'}
{'comment': 'I have a link in another comment to my Discord. I’ll start just adding it to my profile later today until I get my new website up. But I do have a plan.', 'created': '2024-11-14 17:19:05', 'submission_id': '1gr7iwb'}
{'comment': 'That’s the question of the moment, isn’t it? Truth is, nobody’s sure. But if we sit around and wait for surety then we’ll never find it. Perhaps we need to throw spaghetti at the wall and see what sticks.\n\nSo go donate, or protest, or go to law school. Run for office. Talk to your neighbors, put flags on your lawn. Come up with something new. I don’t want to tell you what to do because maybe you can come up with a new idea.\n\nMe? I’m gonna attend my next local democrats meeting for the first time, see what they’re about.', 'created': '2024-11-14 17:21:02', 'submission_id': '1gr7iwb'}
{'comment': 'She can’t. This is why people are freaking out. The normal barriers to despotism in the US heavily involve people agreeing not to cross those barriers, and to hold those accountable who do cross those barriers. We saw in 2020 that the republicans weren’t willing to hold Trump accountable, so he’s free to ignore the barriers.', 'created': '2024-11-14 22:40:20', 'submission_id': '1gr7iwb'}
{'comment': 'The Supreme Court handed W Bush 2000.', 'created': '2024-11-14 18:04:15', 'submission_id': '1gr7iwb'}
{'comment': "There was no Democratic challenger to Deb Fischer. Osborn raised funds through ActBlue. As far as I'm concerned, he was running as a Democrat.\n\nHe simply didn't get an endorsement from Nebraska Dems because Nebraska Dems don't bother, except in CD-2.", 'created': '2024-11-14 18:23:06', 'submission_id': '1gr7iwb'}
{'comment': '100%. All politics is local and this neoliberalism focus only on high level policy is what is dooming the party. All of the party greats were effective because they focused on how things will effect every day people and adapted their messaging to talk to those people directly, and then took that leverage to beat their opponents over the head with until they got their laws and policies enacted. The party has become one of ivory tower holier-than-thou altruism.', 'created': '2024-11-14 19:09:43', 'submission_id': '1gr7iwb'}
{'comment': "Sorry you're out of luck....the education is a bust...extremely over qualified...need to work on that criminal background... possibly sexual assault,fraud??!!", 'created': '2024-11-14 21:00:27', 'submission_id': '1gr7iwb'}
{'comment': 'The repeal of McCain-Feingold in the Citizens United decision isn’t talked about enough. It’s a bipartisan issue that the majority of the country wants, but because of a conservative SCOTUS ruling, we just have to fuck off about it…\n\nI mean I believe Congress could amend the constitution to say that corporations aren’t people and money isn’t free speech.', 'created': '2024-11-15 18:03:13', 'submission_id': '1gr7iwb'}
{'comment': 'Did Elizabeth Warren tweet her way to Senator?', 'created': '2024-11-14 18:29:05', 'submission_id': '1gr7iwb'}
{'comment': 'Me too', 'created': '2024-11-15 22:17:05', 'submission_id': '1gr7iwb'}
{'comment': 'Like getting people to be aware of the issue and to contact their senators so hopefully a few republicans will defect and not confirm these insane nominations? Perhaps by speaking about it publicly? Like she’s doing? And you’re dismissing because you don’t know how anything actually works? Like that?', 'created': '2024-11-15 06:19:43', 'submission_id': '1gr7iwb'}
{'comment': 'I have been Screaming from the rooftops about this too. Non of the slow or nonexistent learners on the other side believe it. They believe the snake oil salesman “wealthy” “superstar” Trump over people who can literally detail how we got from point a to point b. I feel you. Im so over preaching it too! It will be too late by the time trumps a**kizzers are all nuked, with the rest of us who will resist. If i am in some trench telling someone wearing a maga hat that I told you this would happen, I’m going to implode.', 'created': '2024-11-15 20:39:13', 'submission_id': '1gr7iwb'}
{'comment': 'Glad youve been doing it too! Its so frustrating. Keep up the good fight!', 'created': '2024-11-15 20:40:08', 'submission_id': '1gr7iwb'}
{'comment': 'How about Destructicons?', 'created': '2024-11-15 02:31:01', 'submission_id': '1gr7iwb'}
{'comment': 'Destroybicans', 'created': '2024-11-15 12:26:37', 'submission_id': '1gr7iwb'}
{'comment': 'Too close to a Transformers villain team. I do like it though.', 'created': '2024-11-15 17:33:20', 'submission_id': '1gr7iwb'}
{'comment': 'You see it in every article about appointing judges. \n\n“Why haven’t they been doing this??”\n\nThey’ve appointed 400, you didn’t notice.', 'created': '2024-11-14 19:22:48', 'submission_id': '1gr7iwb'}
{'comment': 'If things are functioning properly, it doesn\'t get reported. People say that the media doesn\'t report it because people don\'t read/watch that sort of news, but I think it goes two ways. What people want to watch is definitely affected by what they are used to. Show Alex Jones to someone in the 1960s (corrected for technology and newscycle) and they are not likely going to watch it for long. And media doesn\'t dare to take the "risk" that not showing disasters all the time is to them.', 'created': '2024-11-15 01:43:46', 'submission_id': '1gr7iwb'}
{'comment': "Elizabeth Warren attended the Indivisible 2.0 meeting on Weds night. \n\nShe spoke gleefully with the founders of Indivisible about the first battle to keep Obamacare. \n\nPeople demanded Town Hall meetings from their Congressional Representatives. Thousands of people contacted their reps through mail, phone, fax, and email. Hundreds of medically vulnerable kids & their parents visited Congress; going to reps' offices, attending hearings, calling press conferences. \n\nI attended Town Hall meetings in 3 Congressional districts nearby. Hundreds of people attended. We were on fire.", 'created': '2024-11-14 23:12:45', 'submission_id': '1gr7iwb'}
{'comment': 'What is CFPB. Sure i should know as a government employee…', 'created': '2024-11-16 12:05:35', 'submission_id': '1gr7iwb'}
{'comment': "Wrong Liz, we're talking about Elizabeth Warren, not Liz Cheney. Elizabeth Warren is one of the furthest left Democrats in Congress (which I know isn't really very left, but the point stands).", 'created': '2024-11-15 04:35:28', 'submission_id': '1gr7iwb'}
{'comment': 'Personal anecdote: the CFPB is an invaluable resource against scammers of all sorts. \n\nI have been targeted over the years by a lot of dishonest "collectors" who tried to scare me / scam me into paying for a nonexistent debt. One was from a company calling themselves "Regional Mediation Bureau." \n\nThe scam goes like this: "YOU\'RE ABOUT TO GET SUED." \n\nHere’s how they suckered me:\n\n1. Told me that he was a “courier” who is on their way to my house to serve me papers because I’m being sued for some debt I might have. \n2. Advised me that I can call the law firm suing me to make a deal so I don’t have to go to court.\n3. He transfers the call. The “law firm” takes over, tells me they are just mediators (Regional Mediation Bureau), they can’t do anything… but wait, maybe we can talk to the lawyer. Your debt is $12,101, we can accept half of that, $6,000. Can you do that? \n3. The debt was something vaguely familiar, I thought we had paid it off through consumer credit counseling years ago. But this guy was telling me that no, it wasn’t paid and probably they were taking it to court before the statute of limitations was up. \n4. Said they had sent me letters about this previously but had not gotten a response, so there was no recourse but a lump settlement. \n5. Sent me an official looking “Bill of Lading” that supposedly proved the debt. \n6. Said the offer was only good for today. \n\nI’m not a stupid person. But I emptied my savings account to pay it off because I was afraid to go to court. I actually felt good about it at the time. I had had terrible debt and terrible credit in my younger years, and I was just starting to have enough to make ends meet. Getting rid of an old debt felt like the right thing to do. \n\nBut then, a year later, another person called trying to collect the same debt. Not the exact same dollar amount, but the same creditor. I told him I’d already paid it and he got abusive. (I kept trying to calm *him* down, if you can believe it.) It was all a ploy. I hung up on him, and none of his threats about cops showing up at me door came true. \n\nAnd then, months later, Regional Mediation Bureau called again, same tactic, telling me he was a courier on the way to my house, etc. this time the creditor was for a Mastercard for a bank in Hong Kong. I said I’d never owned a Mastercard. I said why don’t you send me something that proves that I owe the debt. They sent me the same bullshit Bill of Lading, which, it turns out, doesn’t prove anything, it’s just an invoice for a made up debt. \n\nThe guy tried to tell me they’d sent me correspondence but that was a lie. He made me a special settlement offer that was only good for today. He told me if I didn’t respond then they’d send police to my house. But he gave my old address m. I’d moved to a different state a year ago. The scammer was using my old area code, though. I looked up the number and found it was from a small rural village, way the hell out in the middle of nowhere: a strange place to run a collections agency. It was obviously a spoofed number they used to convince me to answer my phone. \n\nI told them they were required by law to provide me proof of the debt. They said the Bill of Lading was proof enough. I declined to pay them. Spitting threats, they hung up on me. \n\nAnd the cops, unsurprisingly, did not bust down my door. \n\nThese people are scum. They prey on the meek, the poor, the fearful. These tactics seem plausible if you have never heard them before. A bill of Lading? Sounds official. Heading off a lawsuit? Getting the cops involved? Offer expires at midnight? Collecting on an old debt you don’t quite remember? Claiming to have sent correspondence (is it somewhere in those piles of unopened letters in my junk room? Did I throw it away by accident?) Claiming a much higher balance so that they could cut it in half and offer a “settlement”? \n\nThis is all scripted. And these scammers have no intention of following through on their threats. You are a line item on a spreadsheet, and if you hang up they move on to the next row. These lists of debtors are freely bought and sold among collectors, and they do not update the list if someone settles a debt. \n\n—-\n\nI will say one thing: the Consumer Financial Protection Bureau website has a ton of useful information that was tremendously helpful in fending these people off. \n\nA real collector will have no problem providing proof of a debt, and they won’t get mad about it. If the debt is real, the facts are on their side. \n\nhttps://www.consumerfinance.gov', 'created': '2024-11-14 21:36:49', 'submission_id': '1gr7iwb'}
{'comment': '"Alright, aside from the roads, and the aqueducts, and the sanitation, and the irrigation, and the education, and the wine, and the public health, what have the Romans ever done for us?" That\'s you right now.', 'created': '2024-11-14 20:40:16', 'submission_id': '1gr7iwb'}
{'comment': 'How so?', 'created': '2024-11-14 18:41:14', 'submission_id': '1gr7iwb'}
{'comment': 'They will learn it now…', 'created': '2024-11-15 19:54:04', 'submission_id': '1gr7iwb'}
{'comment': 'We really need to show that democrats are better for the economy and the average person. We really didn’t do a good job with the message on inflation and how it was a global issue. Republicans succeeded in pinning it on Biden but there was barely anything from them showing how this was a result of Covid and actions from the prior administration. We need to do better at fighting back when all these lies and half truths get pinned on democrats. Two years will be here quick and we better get something going for the midterms.', 'created': '2024-11-14 19:05:09', 'submission_id': '1gr7iwb'}
{'comment': 'Sadly, the messaging has to be _simple_. Being simple to understand, (even if the truth is more complicated) is what wins elections. Hell, the R base essentially call themselves by a campaign slogan, and we all do it for them too. \n\nShowing detailed plans of how they will improve life for Americans doesn’t work in the age of 140 character social media, and 1-2 minute videos. It worked in the 90s because people still watched the news, and read newspapers. Now, if you can’t catch someone’s attention in a 10 second catchy soundbite, it gets lost. \n\nThat, more than anything else, let Trump win. Don’t say, “the problem when talking about inflation is that it’s actually …”, say “Our inflation is caused by greedy corporations and I will make them lower prices”. Everything after that first sentence only matters to people who are already going to vote. \n\nIn general, the Democratic party has to get less wordy and more firm on “I will fix this” messaging if they want to win over blue collar workers (the largest demographic in the US). But at this point, I suspect it’s moot, since they’ve let Republicans define them for over 15 years, it’s going to take fully leaning into the next big populist candidate like AOC(but not her)/Bernie to even begin to undo that.', 'created': '2024-11-14 23:40:09', 'submission_id': '1gr7iwb'}
{'comment': 'I think the issue is the Democratic Party does not want to alienate its billionaire donors. \n\nThe real reason why the “economy” looks so great on paper is because corporations are making a fuck ton of money that’s all trickling up to the mega wealthy and the billionaires.\n\nAnd our economic indicators don’t seem to include any meaningful metric for wealth accumulation and distribution over time.\n\nIf Dems came out with a message that corporations and billionaires have been profiteering off the working class, Dems would get a ton of votes IF they can figure out how to fund their campaigns without mega donors and super PACs.', 'created': '2024-11-14 22:24:52', 'submission_id': '1gr7iwb'}
{'comment': 'Populist dirtbag left.\n\nGet off that high road, because it goes nowhere.\n\nAnd stop trying to pander to "centrists." They don\'t exist and we all know that you\'re actually just trying to reassure your big donors that you won\'t take their power away, when that\'s what needs to happen for the country to improve.', 'created': '2024-11-15 02:25:06', 'submission_id': '1gr7iwb'}
{'comment': 'Literally anything except “Biden economics are working” ?\xa0', 'created': '2024-11-14 23:14:17', 'submission_id': '1gr7iwb'}
{'comment': 'Like someone else mentioned, it was covid times and so many people were glued to their phones/Tv and not working etc, invested in politics and just what was going on. Lots of mail in voting because of convenience', 'created': '2024-11-15 20:31:44', 'submission_id': '1gr7iwb'}
{'comment': 'My wife was very instrumental along with our kids. Especially the kids. Explaining what they believe to children and listening to their reactions puts a lot of bs into perspective. There were a few times where things got stressful between my wife and I, especially when my family and other members would make comments. Listening to how those things made her feel helped prop the door open a little more. She knew about the church but wasn’t involved at all. She had her own thing going with the local Catholic Church. Plus Covid. They stopped bugging me when Covid hit and never came back.', 'created': '2024-11-14 19:59:49', 'submission_id': '1gr7iwb'}
{'comment': 'But Trump could have still run for President if he was convicted of a crime—there is nothing in the Constitution that says a felon can’t run for President. The Supreme Court would have released him from jail if it had gotten that far. The problem wasn’t Merrick Garland, it was the popular support Trump had, which speaks to the toxic political atmosphere in the country and paranoid distrust of government that most people seem to have.', 'created': '2024-11-14 18:55:54', 'submission_id': '1gr7iwb'}
{'comment': 'I wonder what would have occurred if he lost to Kamala. It would have been a shitshow all over the country. I dreamed of him fading into obscurity but here we are.', 'created': '2024-11-14 19:35:45', 'submission_id': '1gr7iwb'}
{'comment': 'There already is a constitutional crisis. All three branches of government are about to merge', 'created': '2024-11-14 17:45:37', 'submission_id': '1gr7iwb'}
{'comment': 'Boy howdy, what the fuck are we about to be involved in anyway? Fucks sake, arguments like yours are exactly why we’re here.', 'created': '2024-11-14 18:17:37', 'submission_id': '1gr7iwb'}
{'comment': "Let's not forget President Musk and all his tech Bros will be able to start mining gov't data and making the lists: Where you live, whom you voted for, anything you said about Dear Leader on social media, etc etc. Will be an interesting new oligarchy to watch, unless of course you're on the wrong list.", 'created': '2024-11-14 17:38:28', 'submission_id': '1gr7iwb'}
{'comment': 'The mechanism is really simple and darker than we can imagine. The will of the people through voting.', 'created': '2024-11-14 18:00:17', 'submission_id': '1gr7iwb'}
{'comment': 'Right, it’s pointless now. We live in a dictatorship. Kings get to do whatever they want.', 'created': '2024-11-14 17:25:09', 'submission_id': '1gr7iwb'}
{'comment': 'SCOTUS handed Biden full immunity. He could have done two things with it and been remembered as a hero.\n\n1) Handle the Trump mess.\n\n2) Get his repaired SCOTUS to revoke it.\n\nIn that order.', 'created': '2024-11-15 02:32:50', 'submission_id': '1gr7iwb'}
{'comment': 'Fantasy future: John Roberts has a come to Jesus moment and refuses to administer the oath of office. Trump broke it last time. The Constitution requires it. Why would Trump be expected to keep it this time? \n\nThe mango Mussolini is not eligible for federal government office because he cannot credibly swear to uphold the Constitution. \n\nConsent of the governed. Why should we consent?', 'created': '2024-11-14 20:17:25', 'submission_id': '1gr7iwb'}
{'comment': 'And the supreme court decision, I\'m sure assigning a cabinet would be considered an "official act", so yeah, he can appoint whomever he wants and we can\'t do a thing about it.\n\nBut, these people still have to pass Senate confirmation, if I\'m not mistaken. Does anyone else have better info on this?', 'created': '2024-11-14 17:43:01', 'submission_id': '1gr7iwb'}
{'comment': 'change ghost busters to filibuster', 'created': '2024-11-15 13:40:10', 'submission_id': '1gr7iwb'}
{'comment': "Great reference. Hopefully this wasn't fiction though.", 'created': '2024-11-14 18:38:02', 'submission_id': '1gr7iwb'}
{'comment': None, 'created': '2024-11-15 02:44:48', 'submission_id': '1gr7iwb'}
{'comment': 'Thank you that’s more than my state’s 2 Democratic senators have offered.', 'created': '2024-11-14 17:29:27', 'submission_id': '1gr7iwb'}
{'comment': "You're about 4 decades too late for any of that useless shit.", 'created': '2024-11-14 18:00:15', 'submission_id': '1gr7iwb'}
{'comment': 'Oh! My hanging chads!', 'created': '2024-11-14 18:49:45', 'submission_id': '1gr7iwb'}
{'comment': 'Add up the Nader Votes in Florida you get a win.\nSource: me i voted for Nader', 'created': '2024-11-15 03:56:44', 'submission_id': '1gr7iwb'}
{'comment': 'An endorsement from the Democratic party would have been the kiss of death in Nebraska.', 'created': '2024-11-14 18:52:11', 'submission_id': '1gr7iwb'}
{'comment': 'I’ll start a charity to embezzle from tomorrow. :)', 'created': '2024-11-15 00:46:11', 'submission_id': '1gr7iwb'}
{'comment': 'Yes. Keep doing things the traditional way, achieve nothing, and then brag about it. Let’s save democracy from an armchair. It will be so effective against the endless Trump chaos that never faced any consequences.', 'created': '2024-11-15 06:27:18', 'submission_id': '1gr7iwb'}
{'comment': 'You leave the transformers out if this!', 'created': '2024-11-15 22:39:37', 'submission_id': '1gr7iwb'}
{'comment': 'It’s really hard when you live in a gerrymandered, solidly red district…', 'created': '2024-11-14 23:42:24', 'submission_id': '1gr7iwb'}
{'comment': 'Consumer Financial Protection Bureau. Basically if a bank tries to screw over customers, there’s lawyers waiting to meet the bank’s lawyer.', 'created': '2024-11-16 13:03:04', 'submission_id': '1gr7iwb'}
{'comment': 'Sorry I came in sub and read a comment and obviously had a really long day and week. Sorry for the wrong comment in wrong spot. I like EW too. When it said Liz on this comment, i thought you meant Cheney', 'created': '2024-11-16 12:08:41', 'submission_id': '1gr7iwb'}
{'comment': 'This is an awesome story! I truly had no idea the CFPB could do this for people. Thank you for sharing.', 'created': '2024-11-14 21:42:28', 'submission_id': '1gr7iwb'}
{'comment': None, 'created': '2024-11-14 20:41:31', 'submission_id': '1gr7iwb'}
{'comment': "I mean, given the news coming out, we won't have to work that hard on that front.", 'created': '2024-11-14 19:08:30', 'submission_id': '1gr7iwb'}
{'comment': "Yea, the average Joe voter doesn't care about trans issues when they can't put food on the table. I understand why they voted for Trump. Literally all my friends voted trump and I'm the only one who voted Harris it seems. None of these friends know anything about the geopolitical situation, the economic plans of the candidates, shit they don't even know history. (thinking Russia will ever keep peace with Ukraine if peace is reached)\n\nIt is a fact that democrats are better for the economy. They need to drill that point home if they want to convert voters", 'created': '2024-11-15 03:24:50', 'submission_id': '1gr7iwb'}
{'comment': 'Look up the video of Trump saying that the economy is generally known to do better when Democrats are in charge come from his own mouth. His followers probably still wouldn’t believe that he said it, though, even if they see it with their own eyes.', 'created': '2024-11-15 02:22:42', 'submission_id': '1gr7iwb'}
{'comment': 'Simple.\n\nTrump won because he just says he will fix literally everything. No follow-up. No further questions. “I am going to fix this,” to every single grievance anyone came to him with. \n\nDemocrats don’t do that because they know it’s a lie and they know the media will eventually come to them for the receipts. \n\nIt needs to be simple but it also is just going to be harder for Democrats forever because they are held to a higher standard by everyone. Voters *need* them to be the adults in the room so they have someone to rebel against.', 'created': '2024-11-15 01:56:12', 'submission_id': '1gr7iwb'}
{'comment': 'I\'ve been saying this since 2016. A big part of Trump’s appeal is that he gives very simple answers to very complex issues. It doesn\'t matter that they\'re nonsense or worthless:\n\nImmigration? Just build a wall along the border! (Which did not get built.)\n\nHow much will the wall cost? We\'ll make Mexico pay for it! (Trump later admitted that he had no way of making Mexico pay for it)\n\nInflation and rising prices? Tariffs! (Most Trump voters have no idea how tariffs work, and how they will likely increase prices further.)\n\nThe war in Ukraine? I\'ll end it in 24 hours! (While offering absolutely no plans or details on how that would happen.)\n\nExpensive healthcare? Get rid of Obamacare and replace it with something better! (He\'s been promising a better healthcare plan since 2016, and eight years later the only details we\'ve gotten are "I have a concept of a plan.")\n\nThe average uneducated voter is just glad to hear a "solution," even if it doesn\'t hold up to two seconds of scrutiny - that\'s about two seconds more than the voters are willing to give it. They don\'t want to hear a long, detailed, complicated plan that involves a lot of work. They want someone who is going to wave a magic wand and make all the problems go away, and Trump has convinced them that he can do that.', 'created': '2024-11-15 13:24:30', 'submission_id': '1gr7iwb'}
{'comment': 'I mean, how were we supposed to say "the economy sucks, but we can fix it!" when the Republicans were blaming us?', 'created': '2024-11-14 22:31:54', 'submission_id': '1gr7iwb'}
{'comment': '"Robin Hood Taxes"\n\nSimple, to the point, and 100% clear.\n\nBut their big donors would run screaming.', 'created': '2024-11-15 02:26:28', 'submission_id': '1gr7iwb'}
{'comment': "I mean, I'm sorry, but we do need the big donors. I mean, it's probably gonna be easy to keep them after four years of Trump destroying the economy, but still.", 'created': '2024-11-15 02:52:55', 'submission_id': '1gr7iwb'}
{'comment': 'But what do you replace that with?', 'created': '2024-11-14 23:19:47', 'submission_id': '1gr7iwb'}
{'comment': 'Conviction on the Jan 6 charges might have kept him off the ballot, despite SCOTUS chicanery.', 'created': '2024-11-14 20:11:22', 'submission_id': '1gr7iwb'}
{'comment': "Being prevented from running because you were convicted of a felony was intentionally left out of the Constitution, lest it be abused. You don't think for one second that there is not some jury in Oklahoma that wouldn't convict every single person that is a member of Democrats on trumped up felony charges just so they can't run for President?\n\nTrump sitting behind jail bars would have been enough to stop him from running.", 'created': '2024-11-14 19:12:24', 'submission_id': '1gr7iwb'}
{'comment': 'Burning the Constitution to the ground to save the Constitution of certainly a choice', 'created': '2024-11-15 02:54:40', 'submission_id': '1gr7iwb'}
{'comment': "Correct the term, for it is an autocracy and Kleptocracy. Basically, what the voters ended up doing was americanizing Vladimir Putin Ferdinand Marcos Sr. Korean Workers Party (조선노동당) Kim Jong Un Xi Jinping's Chinese Communist Party (中國共產黨) Viktor Orban 's Fidesz party and his son-in-law Jared kushner's friend the Saudi Crown Prince Mohammed. They all have what Trump likes a centralized autocracy complete with kleptocracy with officials loyal to them which is what Trump is doing as of right now with HI 2nd District Rep Gabbard DNI NYS 21st Albany Northern suburbs Clinton County followed by First District Eastern Suffolk County including Ronkonkoma general Douglas MacArthur Airport Reps Stefanik and Zeldin as United Nations Ambassador and Environmental Protection Agency head. \nIf you want to keep that going you have Florida First District Pensacola Matt Gatez as his DOJ Head Gov Noem SD DHS Florida Senator Marco Rubio Secretary of State. The Oddity is that Senator Rubio ended up schooling Donald Trump on the nuclear Triad.", 'created': '2024-11-14 17:37:21', 'submission_id': '1gr7iwb'}
{'comment': 'He is demanding that the senate allow him to use recess appointments to bypass the official confirmation process', 'created': '2024-11-14 17:46:19', 'submission_id': '1gr7iwb'}
{'comment': 'They are SUPPOSED to but Trump wants to skip all that and do “recess” appointments. Trump never submitted taxes, medical records. He isn’t going to follow any rules now. He has free reign', 'created': '2024-11-14 17:55:15', 'submission_id': '1gr7iwb'}
{'comment': 'I don’t understand what you mean about fiction? Sulla was a real person in Ancient Rome who came in as dictator during a period of immense corruption and purged the Republic then relinquished power. Unfortunately Ceasar came in shortly after and held onto dictator powers instead of relinquishing which lead to his death. I’m just hoping that, if we have to change America to more of an authoritarian form because of how large we are, that we can get an Augustus in shortly after the period of unrest. Of course I would RATHER hold onto our democracy. But my point is, sometimes you have to commit tyranny to save the state from tyranny. The Roman’s knew this which is why, before the Empire, they allowed for periods of dictatorship during unrest which would then be relinquished when the unrest is solved.', 'created': '2024-11-14 19:35:49', 'submission_id': '1gr7iwb'}
{'comment': "So the first thing he does is fix the supreme court to back him. He can do that by removing judges.\n\nThis isn't complicated.", 'created': '2024-11-15 02:51:05', 'submission_id': '1gr7iwb'}
{'comment': 'Perhaps. But if we’re going down, I’m going down swinging. Better to do something useless (in case it’s not), rather than do nothing.', 'created': '2024-11-14 19:08:31', 'submission_id': '1gr7iwb'}
{'comment': 'You want her to shoot the fuckers? What exactly do you have in mind? Senators can vote and they need to get other senators on their side. Do you think there’s a magic wand for her to use? No really, give an example of an action you’d like to see?', 'created': '2024-11-15 06:31:14', 'submission_id': '1gr7iwb'}
{'comment': 'LOL! I wondered if anyone would get the reference.', 'created': '2024-11-16 00:40:01', 'submission_id': '1gr7iwb'}
{'comment': 'Well, that\'s the point of contacting your representative. As the wright of calls & emails add up, they start to worry about votes. \n\nIt doesn\'t matter what color your Rep is; they still log voter contacts.\n\nAOC tweeted that the "declare terrorist" Bill in the House was defeated by activism. \n\nThe Reps got so many contacts that the purple districts decided not to vote for it \n\nIt\'s only necessary to shift a dozen Members of Congress to break a narrow majority.', 'created': '2024-11-15 07:08:40', 'submission_id': '1gr7iwb'}
{'comment': "You're the one exposing your inability to Google, I'm not going to do your job for you.", 'created': '2024-11-14 20:49:02', 'submission_id': '1gr7iwb'}
{'comment': 'Blaming an incumbent party for current economic woes works rather well regardless of how much of it is their fault, just look at people blaming biden for inflation, or their grocery prices on that inflation. So blaming Republicans for the shitstorm that is upcoming may work', 'created': '2024-11-14 19:17:49', 'submission_id': '1gr7iwb'}
{'comment': 'Voters being “the adults in the room” is a pipe dream. Hoping voters will suddenly want to be educated and not hunting for the next dopamine hit, is how 2016 and 2024 happened.', 'created': '2024-11-15 03:30:04', 'submission_id': '1gr7iwb'}
{'comment': '> do need the big donors.\n\nThen the world is doomed to fall to fascism.', 'created': '2024-11-15 09:48:57', 'submission_id': '1gr7iwb'}
{'comment': 'Something that’s not bullshit and that resonates with everyday people. \xa0', 'created': '2024-11-14 23:22:57', 'submission_id': '1gr7iwb'}
{'comment': 'Also, fixing SCOTUS might have helped.', 'created': '2024-11-15 02:30:39', 'submission_id': '1gr7iwb'}
{'comment': 'How?', 'created': '2024-11-14 21:56:04', 'submission_id': '1gr7iwb'}
{'comment': 'The point stands, Trump also gets the benefit of that. It’s not Merrick Garland’s fault that Democrats lost this election, there was no way to stop the Republicans from nominating Trump. Democrats have to find a way to connect with working people, saying they’re idiots and trying to overturn the election is not the way to do it.', 'created': '2024-11-14 19:16:58', 'submission_id': '1gr7iwb'}
{'comment': 'Taking that as your interpretation of what I’m saying proves to me that your avenues of reasonable thought and interpretation are narrow and confined.', 'created': '2024-11-15 03:05:09', 'submission_id': '1gr7iwb'}
{'comment': 'Oh yes I agree, if you need to clean house because of corruption, you definitely cut through red-tape with someone like Sulla. Especially if institutions have the inertia of hundreds of years like America.\n\nAnd my comment was just poking fun at your user name! Not saying Sulla was fiction. One of my favourite books in fact is Rubicon.', 'created': '2024-11-14 19:50:03', 'submission_id': '1gr7iwb'}
{'comment': None, 'created': '2024-11-15 04:09:50', 'submission_id': '1gr7iwb'}
{'comment': 'I’m tired boss', 'created': '2024-11-15 06:32:13', 'submission_id': '1gr7iwb'}
{'comment': 'They can come out and just say he’s a disgusting pedo and there’s evidence to prove it. \n\nThey need to be more direct and less procedural. The rhetoric needs to change. They need to be seen as freedom fighters that find a way to prevail, not spineless bureaucrats. \n\nGOP makes wild accusations even when they don’t have evidence and people believe them. It’s time to actually fight, not just make a slogan about it.', 'created': '2024-11-16 17:17:12', 'submission_id': '1gr7iwb'}
{'comment': 'I understand that but also know how solidly red my district is. I will still call.', 'created': '2024-11-15 13:45:37', 'submission_id': '1gr7iwb'}
{'comment': None, 'created': '2024-11-14 20:57:28', 'submission_id': '1gr7iwb'}
{'comment': "I'm not certain. I think they'll embrace the shitstorm. With big shit eating grins on their chrisofascist faces.", 'created': '2024-11-14 23:54:22', 'submission_id': '1gr7iwb'}
{'comment': 'Republicans are so good at propaganda that their voters will brag how awesome the shitstorm is', 'created': '2024-11-15 05:33:21', 'submission_id': '1gr7iwb'}
{'comment': 'I’m saying voters expect Democrats to be the adults in the room so they have an authority to feel like they are rebelling against.', 'created': '2024-11-15 04:18:32', 'submission_id': '1gr7iwb'}
{'comment': "Listen, I'm sickbof this. Why do we have to abandon our big donors but Republicans don't? This isn't about that, this is about Republicans wanting Trump. That's it", 'created': '2024-11-15 13:12:59', 'submission_id': '1gr7iwb'}
{'comment': "But what? Because I'm not sure what could have worked for them.", 'created': '2024-11-14 23:27:42', 'submission_id': '1gr7iwb'}
{'comment': 'Insurrection clause of the 14th Amendment.', 'created': '2024-11-15 01:05:46', 'submission_id': '1gr7iwb'}
{'comment': 'You\'re already buying into a false narrative. \n\nIf you present the policies of both parties to the vast majority of people, *including* working people, they prefer the dem\'s policies. *They\'re* the ones who are being helped by them after all. The issue isn\'t primarily policies, it\'s *access*, and that\'s far more difficult to solve for. The dem\'s ground game was vastly superior this time out, the republicans completely flubbed theirs as they were too busy robbing the coffers to benefit dear leader. But a decent ground game just isn\'t enough anymore, not when their churches, news sources, and social media networks are arrayed against you. The problem comes from the demonization of the democratic party coupled with the "team" mentality of those voters that won\'t allow them to elect a dem, and the oft impenetrable information bubbles they live in, where they never learn whose policies are whose to begin with, or even what the options are. \n\nWhen an increase in Faux viewership correlates directly to an increase in the republican voters, when more liberal media is increasingly hidden behind a paywall, that necessary access becomes more and more elusive.', 'created': '2024-11-14 20:49:24', 'submission_id': '1gr7iwb'}
{'comment': 'Working people, they must really be eating some bad mushrooms to not see the lies that they accept as facts. Until they open their eyes and see,we are doomed to do this over and over.', 'created': '2024-11-14 21:45:08', 'submission_id': '1gr7iwb'}
{'comment': "You wanted the president to take powers he doesn't have in the name of a national emergency promoting a constitutional crisis, purportedly to defend the Constitution.", 'created': '2024-11-15 17:19:51', 'submission_id': '1gr7iwb'}
{'comment': 'OHHHHH. Lol I get your comment now. I was so confused. I forget about my username and can’t change it lmao.', 'created': '2024-11-14 19:50:52', 'submission_id': '1gr7iwb'}
{'comment': 'OHHHHH. Lol I get your comment now. I was so confused. I forget about my username and can’t change it lmao.', 'created': '2024-11-14 19:51:02', 'submission_id': '1gr7iwb'}
{'comment': 'Go read the dissent to the "POTUS is a king" decision.', 'created': '2024-11-15 09:48:01', 'submission_id': '1gr7iwb'}
{'comment': 'Exactly. I still bug John Cornyn and Ted Cruz, too.', 'created': '2024-11-15 18:41:41', 'submission_id': '1gr7iwb'}
{'comment': "This is one of the principles from Indivisible 1.0 — create a written record at the representative's office. \n\nSome employee will log calls & emails, some employee will create a report showing volume of calls on a topic. The representative reviews these, and it can change their behavior.", 'created': '2024-11-16 18:15:40', 'submission_id': '1gr7iwb'}
{'comment': 'k', 'created': '2024-11-14 20:58:32', 'submission_id': '1gr7iwb'}
{'comment': "Truth. People in America are actually stupid and should all enjoy the shit storm that's about to occur. My dad and sister who is MAGA says Trump is for the economy and I secretly hope they actually lose all their savings due to their stupidity. I mean, how can you sit there watching Fox News every night and hope to 'own the libs' when you can't see yourself and your family 'getting owned' not by the left but by Donald Trump? the absurdity is beyond comprehension. They all deserve to be brought to their knees.", 'created': '2024-11-15 01:39:55', 'submission_id': '1gr7iwb'}
{'comment': '> Why do we have to abandon our big donors but Republicans don\'t?\n\nBecause the big donors want things that will make ordinary people suffer.\n\nThey don\'t want laws against price gouging. They don\'t want strong unions. They don\'t want universal healthcare. They don\'t want a sensible minimum wage. They don\'t want shorter working hours.\n\nSo the big donors naturally align to the Republicans. Which means the Dems can either drift right (letting the Republicans run even further right), or tell the big donors "this is what we\'re doing, either get with the program or go away."', 'created': '2024-11-15 13:35:47', 'submission_id': '1gr7iwb'}
{'comment': 'Specifically, conviction beyond a reasonable doubt of having violated his oath of office would have made him, prima facie, ineligible in all states. That would have made it more difficult for the SCOTUS to ignore than the “preponderance of evidence” standard used by the Colorado court in ruling on the civil action to keep him off the ballot. \n\nBack when we needed to keep Confederate secessionists out of federal office, there was implementing legislation to keep traitors to the Constitution off the ballot without full trials. After they had all died, Congress let that legislation expire. That was the loophole SCOTUS used to allow him to run this time: There was no uniform legislative standard for deciding he had broken his oath, and was therefore ineligible.', 'created': '2024-11-15 01:13:51', 'submission_id': '1gr7iwb'}
{'comment': 'The “bad mushrooms” is called TikTok, from what I hear.', 'created': '2024-11-14 21:49:09', 'submission_id': '1gr7iwb'}
{'comment': 'No problem buddy.', 'created': '2024-11-14 19:51:38', 'submission_id': '1gr7iwb'}
{'comment': 'I doubt it since she’s a bonafide Trumper, Claudia Tenney! I have called, however. Dems are in a small minority here.', 'created': '2024-11-16 18:57:56', 'submission_id': '1gr7iwb'}
{'comment': "I think this entire thought process jusf breaks down when you consider how people voted. I'm sorry, but every revolution that succeeds does it because of healthy donors and patrons.", 'created': '2024-11-15 14:10:47', 'submission_id': '1gr7iwb'}
{'comment': 'Rather that have some states decide differently than others, SCOTUS decided to let him just tear up the Constitution with no consequences.', 'created': '2024-11-15 01:16:16', 'submission_id': '1gr7iwb'}
{'comment': "I notice that you didn't address any of my points, and pivoted to a completely different topic.", 'created': '2024-11-15 14:26:07', 'submission_id': '1gr7iwb'}
{'comment': "Because I don't entirely disagree, but at the same time, this is the fact. And I don't think that's pivoting, I think that's bringing up a very necessary snd important point.", 'created': '2024-11-15 14:34:42', 'submission_id': '1gr7iwb'}
{'comment': 'How does "Capital will ally with fash, so a left-wing movement cannot give capital veto power over policy" have anything to do with what voters want?', 'created': '2024-11-15 15:36:35', 'submission_id': '1gr7iwb'}
{'comment': 'Because we need money', 'created': '2024-11-15 16:31:57', 'submission_id': '1gr7iwb'}
{'comment': 'Free firewall workaround:\n\nhttps://archive.is/QYmaJ', 'created': '2024-11-14 16:31:14', 'submission_id': '1gr6vdb'}
{'comment': 'This is absolutely awesome. \n\nAlex Jones is PISSED. \n\nMoments of joy since trumps election: ~~0~~ 1', 'created': '2024-11-14 16:38:26', 'submission_id': '1gr6vdb'}
{'comment': 'Infowars first news headline post onion acquisition: “InfoWars goes to war against thing caused by InfoWars”', 'created': '2024-11-14 16:15:24', 'submission_id': '1gr6vdb'}
{'comment': 'This is amazing, bc the worry was that he would get bought by a billionaire who would just turn around and give it all back to Jones.', 'created': '2024-11-14 16:38:36', 'submission_id': '1gr6vdb'}
{'comment': 'It’s been a dark week but finally some good news!!!!!!!!!!!!!!’', 'created': '2024-11-14 17:30:03', 'submission_id': '1gr6vdb'}
{'comment': 'I’m not sure, but I think I’ve seen that the Sandy Hook families actually had a higher bid for Jones’s assets, but liked the idea of The Onion owning it, because they shared their values.\n\nEDIT: That may not be strictly true, but I like this even better: [some of the Sandy Hook families worked with The Onion on their bid](https://apnews.com/article/onion-buys-infowars-alex-jones-6496f198d141c991087dcd937b3588e9). They wanted them to win!', 'created': '2024-11-14 17:17:38', 'submission_id': '1gr6vdb'}
{'comment': 'Infowars dot com has already been shut down.\n\nhttps://preview.redd.it/ugvh455oaw0e1.jpeg?width=1640&format=pjpg&auto=webp&s=1b767e75f36ad67404bbb34e369927c974442b40', 'created': '2024-11-14 17:38:21', 'submission_id': '1gr6vdb'}
{'comment': 'My Fav part = "As for the vitamins and supplements, we are halting their sale immediately. Utilitarian logic dictates that if we can extend even one CEO’s life by 10 minutes, diluting these miracle elixirs for public consumption is an unethical waste. Instead, we plan to collect the entire stock of the InfoWars warehouses into a large vat and boil the contents down into a single candy bar–sized omnivitamin that one executive (I will not name names) may eat in order to increase his power and perhaps become immortal."', 'created': '2024-11-14 17:52:27', 'submission_id': '1gr6vdb'}
{'comment': 'Finally gonna have real info', 'created': '2024-11-14 16:38:37', 'submission_id': '1gr6vdb'}
{'comment': 'Watch trump appoint him as press secretary.', 'created': '2024-11-14 17:17:36', 'submission_id': '1gr6vdb'}
{'comment': 'A joke news platform buys a joke news platform', 'created': '2024-11-14 17:39:45', 'submission_id': '1gr6vdb'}
{'comment': 'Poetic justice for sure!', 'created': '2024-11-14 16:44:25', 'submission_id': '1gr6vdb'}
{'comment': 'As someone from Sandy Hook. Love this.', 'created': '2024-11-14 20:22:03', 'submission_id': '1gr6vdb'}
{'comment': 'cool 👍🏽', 'created': '2024-11-14 16:18:26', 'submission_id': '1gr6vdb'}
{'comment': 'Best news in over a week. Big kudos to The Onion for doing this!', 'created': '2024-11-14 20:28:05', 'submission_id': '1gr6vdb'}
{'comment': "It's not a joke, but it is funny", 'created': '2024-11-14 18:02:09', 'submission_id': '1gr6vdb'}
{'comment': 'I love this for the families and all the people who had to put up with this phat ass turd all these decades. The lies, the grifting and pandering, the pretend sobbing and dramatic bullshit this man did just to get away from accountability. \n\nThis is just ONE bright things we can all hang on to... considering what else is yet to come', 'created': '2024-11-14 18:11:39', 'submission_id': '1gr6vdb'}
{'comment': 'Thank goodness', 'created': '2024-11-14 16:28:51', 'submission_id': '1gr6vdb'}
{'comment': 'This is poetic justice', 'created': '2024-11-14 17:29:59', 'submission_id': '1gr6vdb'}
{'comment': 'Even better is they had something of a rivalry with Alex Jones to see if they could put out crazier bullshit than he did. Alex Jones absolutely hates The Onion with every fiber of his being.', 'created': '2024-11-14 19:11:52', 'submission_id': '1gr6vdb'}
{'comment': 'At least gift us the article ffs.', 'created': '2024-11-14 17:25:41', 'submission_id': '1gr6vdb'}
{'comment': 'Really deserve it for his misinformation furthermore he might have something about January 6th 2021.', 'created': '2024-11-14 17:39:44', 'submission_id': '1gr6vdb'}
{'comment': 'at least the BS will be funny now.', 'created': '2024-11-14 17:53:06', 'submission_id': '1gr6vdb'}
{'comment': 'Its going to gain a lot of credibility after this.', 'created': '2024-11-14 20:45:27', 'submission_id': '1gr6vdb'}
{'comment': 'I hope they turn it into a legit, factual, left-leaning news outlet just to troll him lmao', 'created': '2024-11-15 01:42:48', 'submission_id': '1gr6vdb'}
{'comment': 'Lovely.', 'created': '2024-11-14 22:41:45', 'submission_id': '1gr6vdb'}
{'comment': 'This is all great but not enough IMO.\nJones should be forced to wear a giant placard that reads "I am a shitstain on humanity." and then walk up and down a crowded mall in a major US city. The city should be changed every week and his punishment live streamed so everyone can enjoy his humiliation. It would also send a CLEAR MESSAGE that his behavior is not accepted by Americans.', 'created': '2024-11-14 23:51:24', 'submission_id': '1gr6vdb'}
{'comment': 'Maybe they can run headlines featuring Jesse Waters......', 'created': '2024-11-15 00:44:19', 'submission_id': '1gr6vdb'}
{'comment': "I really hope they do something like Comedy Central Daily show or HBO John Oliver on a bigger, consistent scale. \xa0Those are great shows, but they’re paywalled behind cable TV or streaming.\xa0\n\nMake it a comedy news site, but also bring in the kind of news that's a big deal but goes underreported in the MSM. It's what Democrats really need to engage non-democratic voters.\xa0", 'created': '2024-11-15 05:20:10', 'submission_id': '1gr6vdb'}
{'comment': 'This is a great opportunity for The Onion to post actual facts as Infowars and shift things a bit because we all know the followers of the original Infowars won’t know it’s been taken over. It’s like sneaking veggies into a toddler’s food without them knowing.', 'created': '2024-11-15 13:24:36', 'submission_id': '1gr6vdb'}
{'comment': 'I love this for every single one of us, especially Alex Jones', 'created': '2024-11-14 17:49:29', 'submission_id': '1gr6vdb'}
{'comment': 'We need wins like this right now. God... The Onion will know exactly what to do.', 'created': '2024-11-14 19:11:37', 'submission_id': '1gr6vdb'}
{'comment': 'This!', 'created': '2024-11-14 18:17:10', 'submission_id': '1gr6vdb'}
{'comment': 'I was about to post the same image. This sparks joy.', 'created': '2024-11-14 18:53:19', 'submission_id': '1gr6vdb'}
{'comment': 'Nope, still up.\n\nhttps://preview.redd.it/rzagjftgv41e1.png?width=651&format=png&auto=webp&s=bdb26905fa7a3a4f7f25a1090a99dbeaa29f6fea\n\nMain story line.', 'created': '2024-11-15 22:29:20', 'submission_id': '1gr6vdb'}
{'comment': 'If he did, the first thing he would do is change the name of the position,', 'created': '2024-11-14 18:16:55', 'submission_id': '1gr6vdb'}
{'comment': 'Nope, that’s Alina Habba, sadly.', 'created': '2024-11-14 17:24:30', 'submission_id': '1gr6vdb'}
{'comment': 'Yeah, but one is funny like Daffy and Bugs doing “Rabbit season”/“Duck season” is funny, and the other is funny like “we’d better not eat this chicken, it smells funny”.', 'created': '2024-11-14 18:27:21', 'submission_id': '1gr6vdb'}
{'comment': 'Im so glad one part of Jones\'s empire has crumbled. Im still shook by the horrible actions that man caused those poor Sandy Hook Parents. \n\n"The shooting\xa0had barely happened when Jones began pushing the falsehood that it\xa0was a hoax. Victims’ families who sued Jones said they were subjected to years of torment, threats and abuse by people who believed the lies told on his show. One father said conspiracy theorists urinated on his 7-year-old son’s grave and threatened to dig up the coffin."', 'created': '2024-11-14 17:54:19', 'submission_id': '1gr6vdb'}
{'comment': 'And Borowitz!', 'created': '2024-11-15 15:36:57', 'submission_id': '1gr6vdb'}
{'comment': 'They should play “which column is true?”', 'created': '2024-11-15 15:37:44', 'submission_id': '1gr6vdb'}
{'comment': 'Then it came back.', 'created': '2024-11-15 23:27:31', 'submission_id': '1gr6vdb'}
{'comment': 'Minister of Propaganda has a nice ring, doesn’t it?', 'created': '2024-11-15 07:36:54', 'submission_id': '1gr6vdb'}
{'comment': 'I’m go glad that I don’t have to deal with quid pro quo to be genuinely happy. I will never understand ruthless ambition.', 'created': '2024-11-14 17:46:49', 'submission_id': '1gr6vdb'}
{'comment': "According to [this article](https://thehill.com/homenews/media/4990246-habba-out-white-house-press-secretary/), she was a front-runner, but now she's out.", 'created': '2024-11-14 18:54:10', 'submission_id': '1gr6vdb'}
{'comment': '“One part”? I think they got *everything*. Even the supplements.\xa0', 'created': '2024-11-14 18:35:40', 'submission_id': '1gr6vdb'}
{'comment': 'Win prizes!', 'created': '2024-11-15 15:37:53', 'submission_id': '1gr6vdb'}
{'comment': 'Huh. How about that.', 'created': '2024-11-14 18:55:01', 'submission_id': '1gr6vdb'}
{'comment': 'Free firewall workaround:\n\nhttps://archive.is/hs1WF', 'created': '2024-11-14 15:21:38', 'submission_id': '1gr5tuk'}
{'comment': "This is...*chef's kiss* ♥️", 'created': '2024-11-14 17:56:02', 'submission_id': '1gr5tuk'}
{'comment': 'Awesome! Need these wins right now.', 'created': '2024-11-14 19:08:50', 'submission_id': '1gr5tuk'}
{'comment': 'I thought this itself was an Onion article at first. 🤣🥳', 'created': '2024-11-15 02:35:21', 'submission_id': '1gr5tuk'}
{'comment': 'The viewers won’t notice any difference.', 'created': '2024-11-15 22:38:38', 'submission_id': '1gr5tuk'}
{'comment': 'Unfortunately, the judge said no, and Alex has InfoWars back for the time being.', 'created': '2024-11-16 09:06:24', 'submission_id': '1gr5tuk'}
{'comment': 'I’m less worried about being right and more worried about being alive.', 'created': '2024-11-14 16:10:41', 'submission_id': '1gqy5f1'}
{'comment': 'Can’t believe republicans aren’t calling out Trump’s cabinet picks', 'created': '2024-11-14 15:42:29', 'submission_id': '1gqy5f1'}
{'comment': 'We still lost. Those guys still won. And all we can do is hope the politicians we do have keep doing the right thing. I haven’t lost faith in the vote. I’ve lost faith in people. In the country. 70 million chose this. 3 times now. Who knows what the actual numbers are. A large percentage didn’t bother because they just don’t like Dems. I’m guessing they’re afraid of the “woke”boogeyman. If that many people fell for the grift… well, here we are.\n\nEdit: and the other percentage thinks were the bad guys because of abortion. “Baby murder.” For starters, anyone who says that is a willfully ignorant scaremongering piece of shit. And for another thing? Trump claimed he was gonna leave abortion up to the states and most states voted in favor of abortion rights. So anyone who claims they voted to end abortion? Did they think Trump was lying?', 'created': '2024-11-14 17:49:15', 'submission_id': '1gqy5f1'}
{'comment': 'That depends on who writes the history.', 'created': '2024-11-14 18:29:36', 'submission_id': '1gqy5f1'}
{'comment': 'History is written by the winners. Remember that. The good guys don’t always win \n\nHistory is littered with the graves of peoples and civilizations that didn’t make it, for one reason or another. \n\nThe “right side of History” might not be the one you prefer.', 'created': '2024-11-14 20:01:44', 'submission_id': '1gqy5f1'}
{'comment': 'We’re past being right. That was in 2016. We want to still have a democracy and a semblance of our country left in 2028.', 'created': '2024-11-15 01:21:12', 'submission_id': '1gqy5f1'}
{'comment': 'Doesn’t matter if your right. You’re still screwed.', 'created': '2024-11-14 17:24:23', 'submission_id': '1gqy5f1'}
{'comment': 'Thanks for this! 👍', 'created': '2024-11-14 23:50:34', 'submission_id': '1gqy5f1'}
{'comment': 'Some are. Murkowski called Gaetz "not a serious" pick and likened it to nominating George Santos', 'created': '2024-11-14 17:28:59', 'submission_id': '1gqy5f1'}
{'comment': 'Yes, but there are young voters who are discouraged because this was their first time voting. I empathize with them because my first time voting was in 2016 when I was 20 — I traveled 4 hours to vote for Hillary in my republican home district. After she lost, it was hard having to hear young people be scapegoated for the loss when the loss itself already devastated me :)', 'created': '2024-11-15 05:11:52', 'submission_id': '1gqy5f1'}
{'comment': 'Gaetz will not be the nominee by January.', 'created': '2024-11-14 18:30:00', 'submission_id': '1gqy5f1'}
{'comment': 'You don’t say?!🙄\n\n-signed one of 80% of voting Black Men who isn’t falling for GOP bullshittery.', 'created': '2024-11-14 04:38:14', 'submission_id': '1gqvo95'}
{'comment': '', 'created': '2024-11-14 04:34:33', 'submission_id': '1gqvo95'}
{'comment': 'Anyone of color is kidding themselves if they think they are truly accepted by MAGA…they will never be equal. Never.', 'created': '2024-11-14 04:57:12', 'submission_id': '1gqvo95'}
{'comment': 'They were just able to confuse and misinform enough minorities that these people didn’t understand the consequences of a Republican government.', 'created': '2024-11-14 07:05:25', 'submission_id': '1gqvo95'}
{'comment': 'Trump got 46% of the latino vote, 13% of the black vote, and 39% of the asian vote. He got 54% of the "other race/nationality" vote. When you get nearly half of the largest minority, and improve by 2 percentage points on the next largest, that\'s a multiracial coalition, or at the very least more diverse than anything we\'ve seen in decades for Republicans.\n\nDemocrats aren\'t going to beat Trump\'s cult by ignoring reality.', 'created': '2024-11-14 05:08:04', 'submission_id': '1gqvo95'}
{'comment': 'Who cares about a “multi-racial coalition”. They are expanding and we are shrinking. Probably because they don’t spend all their time talking about DEI.', 'created': '2024-11-14 13:41:36', 'submission_id': '1gqvo95'}
{'comment': 'MAGA only courted them to win the election. They are fodder now.', 'created': '2024-11-14 08:29:31', 'submission_id': '1gqvo95'}
{'comment': None, 'created': '2024-11-14 05:31:44', 'submission_id': '1gqvo95'}
{'comment': 'They spend way more time talking about DEI.', 'created': '2024-11-14 14:21:40', 'submission_id': '1gqvo95'}
{'comment': 'I saw wayyyyyy more ads from Republicans this election season with DEI talking points. "He/she is for They/Them, not you." They used that ad across the country for many races.', 'created': '2024-11-14 14:33:19', 'submission_id': '1gqvo95'}
{'comment': 'It’s so true. A friend of mine’s wife voted for Trump. He’s white and she’s Mexican whose parents are immigrants. I wished her good luck. She thinks it’s not going to happen to her.', 'created': '2024-11-15 21:40:53', 'submission_id': '1gqvo95'}
{'comment': "One election is not a trend. Three elections in a row where the republican candidate did better across the board with non-white votes *is*.\n\nDemocrats need to do some serious introspecting. And I don't think that's possible with the current leadership. Pelosi, Schumer, Biden, Harris--everyone down to the State Committee Chairs, with a few exceptions, needs the boot. The party is floundering, stuck in a focus-group tested neoliberal rut, and needs fresh eyes to critically examine the systemic, long-term causes that led us to this point. They aren't going to do that unless the rank-and-file agitate for that change, instead of joining them in a voter-punching fest.", 'created': '2024-11-14 15:01:10', 'submission_id': '1gqvo95'}
{'comment': "They don't need to win anymore. :(", 'created': '2024-11-14 08:30:22', 'submission_id': '1gqvo95'}
{'comment': 'Fair point. They do talk about it a lot but they pin it on us. Thats the issue', 'created': '2024-11-14 15:09:27', 'submission_id': '1gqvo95'}
{'comment': 'I’m not sure what you mean.\n\nDiversity, equity, and inclusion are not the problem. Making them a divisive talking point is the problem and that’s been pushed by the right.\n\nRepublicans have misappropriated the term and are abusing it to stir up a false narrative that white males are at a disadvantage in the job market.', 'created': '2024-11-14 15:41:59', 'submission_id': '1gqvo95'}
{'comment': 'All young men are falling behind in society. The stats clearly show that. It’s a problem democrats ignore and it bit us in the ass.', 'created': '2024-11-14 17:57:07', 'submission_id': '1gqvo95'}
{'comment': 'Young men falling behind has nothing to do with DEI, other than the right using it as a scapegoat.', 'created': '2024-11-14 17:58:45', 'submission_id': '1gqvo95'}
{'comment': 'Do young men need DEI as they are falling behind and are a demographic?', 'created': '2024-11-14 19:06:03', 'submission_id': '1gqvo95'}
{'comment': 'You are buying into a false narrative about what DEI is.', 'created': '2024-11-14 19:32:13', 'submission_id': '1gqvo95'}
{'comment': 'Are you for real or is this a sock puppet account?\n\nI’m happy to help explain what DEI actually is, but I don’t want to waste my time if you’re trolling.\n\nThe right wing has presented a false narrative that DEI is the same as Affirmative Action. It’s really not.\n\nTo answer your question. Yes, everyone needs diversity equity and inclusion. Young men should be treated equally to any other demographic, that’s the point.', 'created': '2024-11-14 20:00:39', 'submission_id': '1gqvo95'}
{'comment': 'there is a small part of me, perhaps a therapist would call it denial, that hopes that this whole situation is one elaborate sting operation where some group in the fbi or something are letting things get just far enough along so they can terminally fuck a bunch of terrible terrible people. \n\n\ni am reluctant to put too much faith in that idea though', 'created': '2024-11-14 05:36:20', 'submission_id': '1gqvjib'}
{'comment': 'There’s a sliver of hope that someone is behind the scene, actively investigating voter fraud.\n\nBut for the most part I strongly believe this country is full of dumbasses.', 'created': '2024-11-14 05:32:46', 'submission_id': '1gqvjib'}
{'comment': 'Ashton probably voted for the orange menace. He loves supporting rapists.', 'created': '2024-11-14 13:42:26', 'submission_id': '1gqvjib'}
{'comment': 'No but this is definitely the Biff Tannon rules the world alternate time line', 'created': '2024-11-14 05:36:50', 'submission_id': '1gqvjib'}
{'comment': 'I’m sure he supports Trump', 'created': '2024-11-14 14:51:23', 'submission_id': '1gqvjib'}
{'comment': "I'm waiting for him to go back in time and take us to a different timeline.", 'created': '2024-11-14 04:37:42', 'submission_id': '1gqvjib'}
{'comment': "Even when he was campaigning it was like he was saying the most outlandish shit. Idk how anyone could watch any of that he said and not see he's a psycho", 'created': '2024-11-14 10:22:39', 'submission_id': '1gqvjib'}
{'comment': 'Probably to busy diddling kids', 'created': '2024-11-14 04:40:10', 'submission_id': '1gqvjib'}
{'comment': 'The sex trafficke?', 'created': '2024-11-14 06:31:16', 'submission_id': '1gqvjib'}
{'comment': "I was praying he would pop out after I saw The Last Jedi. But I'll hold out hope here too.", 'created': '2024-11-14 05:00:20', 'submission_id': '1gqvjib'}
{'comment': 'I have the same small part of me that thinks the same, especially after the FBI raided Polymarkets CEO (there was huge betting on the app over the election, they released an election map a week prior to the election that matched perfectly). Truth be told, though, this is most likely unrelated, but Peter Thiel and Elon Musk bet millions on Trump winning so theres that. I’ll hold out for more hope. I’m afraid it’s just going to get worse.', 'created': '2024-11-15 18:39:22', 'submission_id': '1gqvjib'}
{'comment': "So, what's going to be the new age of consent for young women under this new administration? 10? 12?", 'created': '2024-11-14 05:29:15', 'submission_id': '1gqu3p4'}
{'comment': "Disgusting.\n\nAre you sure this is a real tweet though? I know he's a pedo, but this feels brazen, even for the GOP.", 'created': '2024-11-14 03:28:11', 'submission_id': '1gqu3p4'}
{'comment': "Matt Gaetz was the only 'no' vote in the entire Congress against legislation that targeted human trafficking\n\n\nAlso, let me add:\n\n\nTrump placed the guy (Alexander Acosta) that gave Epstein his sweetheart deal as his labor secretary. \n\n“In 2019, Acosta proposed cutting the funding of his department's International Labor Affairs Bureau from $68 million in 2018 to under $20 million in 2020. That agency combats human trafficking (including child sex trafficking), child labor and forced labor internationally.”", 'created': '2024-11-14 13:38:42', 'submission_id': '1gqu3p4'}
{'comment': 'That’s a benefit in maga world.', 'created': '2024-11-14 06:32:40', 'submission_id': '1gqu3p4'}
{'comment': 'This is verified: \n\n*"In 2018, the ADL and the Republican Jewish Coalition both criticized* [Gaetz](https://www.timesofisrael.com/trumps-ag-pick-called-adl-racist-invited-holocaust-denier-to-state-of-the-union/?fbclid=IwY2xjawGi7pxleHRuA2FlbQIxMQABHSqmuTkm3ssxwcubTZta15gGRLtBepBOTnps1m5Dqg9n9yL6MlJR0CU6Wg_aem_szbiB3F2szxEj2K0WQxLiw)*, then in his first term, for inviting a Holocaust denier as his guest at the State of the Union address. The guest, Charles Johnson, had publicly doubted that 6 million Jews\xa0were killed in the Holocaust and suggested falsely that only 250,000 had died of illness."*', 'created': '2024-11-14 15:55:23', 'submission_id': '1gqu3p4'}
{'comment': "Are we sure he wasn't making a joke about old age? There are a lot of old people in Florida.\n\nFor the record, I believe the allegations and I know he's awful. Just like to be objective and unbias when possible", 'created': '2024-11-14 08:50:00', 'submission_id': '1gqu3p4'}
{'comment': 'Straight to Gitmo.', 'created': '2024-11-14 12:53:57', 'submission_id': '1gqu3p4'}
{'comment': 'Matt had better step away from Bebe, she’s an icon and he’s a disgrace.', 'created': '2024-11-14 14:56:24', 'submission_id': '1gqu3p4'}
{'comment': 'Jesus fucking Christ, man.', 'created': '2024-11-14 20:14:32', 'submission_id': '1gqu3p4'}
{'comment': 'Ugh way to take a nice thing to say about older women and make it gross', 'created': '2024-11-14 09:14:58', 'submission_id': '1gqu3p4'}
{'comment': "Probably take a note from the Taliban and push it down to 9, it's what theocracies do.", 'created': '2024-11-14 08:03:27', 'submission_id': '1gqu3p4'}
{'comment': 'Probably look at what Iraq just did and make it 9', 'created': '2024-11-14 13:07:51', 'submission_id': '1gqu3p4'}
{'comment': 'There is no consent in this administration', 'created': '2024-11-14 12:05:38', 'submission_id': '1gqu3p4'}
{'comment': 'What are you a prude? Might as well get them when they are fresh!', 'created': '2024-11-14 07:45:35', 'submission_id': '1gqu3p4'}
{'comment': 'It is, still up since mid 2010s', 'created': '2024-11-14 03:35:51', 'submission_id': '1gqu3p4'}
{'comment': 'Yeah but it’s Matt Gaetz so I can 100% believe he actually said it', 'created': '2024-11-14 13:07:19', 'submission_id': '1gqu3p4'}
{'comment': 'Like always they will claim "That´s not what they meant", then 2 weeks later they will say "yes, that´s what we meant" and their own audience goes surprised pikachu face, before falling back in the rhetoric "well he meant it, but he wouldn´t do it"', 'created': '2024-11-14 09:43:20', 'submission_id': '1gqu3p4'}
{'comment': "he wasn't.", 'created': '2024-11-14 17:19:39', 'submission_id': '1gqu3p4'}
{'comment': 'Did they make it 9 too, I know Iraq recently did', 'created': '2024-11-14 13:08:32', 'submission_id': '1gqu3p4'}
{'comment': 'I guess, but the old age hypothesis is just more logical than him meaning kids given Floridas reputation.', 'created': '2024-11-14 11:38:20', 'submission_id': '1gqu3p4'}
{'comment': "Here is the article referenced in the image:\n\nhttps://slate.com/news-and-politics/2024/11/trump-election-results-patrushev-putin-rubio-russia-ukraine.html\n\nThere's also a large thread about this topic here:\n\nhttps://old.reddit.com/r/Law_and_Politics/comments/1gp9kfq/russian_official_releases_ominous_statement_to/", 'created': '2024-11-14 02:46:39', 'submission_id': '1gqtjuz'}
{'comment': 'Imagine if Merrick Garland was alive to witness all of this.', 'created': '2024-11-14 04:20:41', 'submission_id': '1gqtjuz'}
{'comment': 'Putin found the most divisive person possible and crammed him down ignorant MAGAs throats. Welcome to the losing side, Americans. Putin wins.', 'created': '2024-11-14 03:21:24', 'submission_id': '1gqtjuz'}
{'comment': 'Its so obvious Trump is a Russian asset. It has been obvious for 9 years.\xa0', 'created': '2024-11-14 03:25:19', 'submission_id': '1gqtjuz'}
{'comment': 'Joke is on Putin. Since when has Trump ever fulfilled his obligations?\xa0', 'created': '2024-11-14 03:36:44', 'submission_id': '1gqtjuz'}
{'comment': 'Or they’re fucking with us to sow chaos because they want to topple democracy around the world.', 'created': '2024-11-14 03:03:09', 'submission_id': '1gqtjuz'}
{'comment': 'So basically, he’s Putin’s bitch like we always thought?', 'created': '2024-11-14 03:24:32', 'submission_id': '1gqtjuz'}
{'comment': 'Now if the WH could just get proof of whatever it was, this would justify extraordinary action from Biden and Harris to take down the Trump MAGA conspiracy.', 'created': '2024-11-14 02:44:24', 'submission_id': '1gqtjuz'}
{'comment': 'This doesn’t feel like the end. I truly think something big is going to happen between today and the inauguration and it’s just going to flip shit upside down.', 'created': '2024-11-14 02:47:33', 'submission_id': '1gqtjuz'}
{'comment': 'So we’re all just saying the quiet part out loud now? Okay fine, I hope trump chokes on a cheeseburger.', 'created': '2024-11-14 04:28:13', 'submission_id': '1gqtjuz'}
{'comment': 'Russia is saying that now just to fuck with us the way they praised Biden a few months ago.', 'created': '2024-11-14 04:30:46', 'submission_id': '1gqtjuz'}
{'comment': '"As a responsible person..."\n\nNope. Trump is not a responsible person.', 'created': '2024-11-14 05:08:25', 'submission_id': '1gqtjuz'}
{'comment': "Whether true or not, they're releasing this to sow discord.", 'created': '2024-11-14 05:09:26', 'submission_id': '1gqtjuz'}
{'comment': 'That damn satanic contract signed in blood is going to bite him in the azz.\n\nYou want to blame people blame the right people, the media that catered to trump trump trump everyday for years, and your fellow Americans that voted to removed democracy', 'created': '2024-11-14 05:16:49', 'submission_id': '1gqtjuz'}
{'comment': 'Yes so they helped him get elected and they own America', 'created': '2024-11-14 06:05:02', 'submission_id': '1gqtjuz'}
{'comment': 'For trump it never was or is about MAGA, it is about him grifting his way to wealth funded by stupid people, and giving the workforce to American Oligarchs, so they can enrich themselves while destroying not only democracy but the middle class to boot.', 'created': '2024-11-14 11:20:57', 'submission_id': '1gqtjuz'}
{'comment': 'PP TAPE! PP TAPE! PP TAPE!', 'created': '2024-11-14 03:34:04', 'submission_id': '1gqtjuz'}
{'comment': 'Why do you all think Tulsi Gabbard is about to be appointed DNI?', 'created': '2024-11-14 04:05:15', 'submission_id': '1gqtjuz'}
{'comment': 'Trump wrote Russia a check in the form of Ukraine.', 'created': '2024-11-14 04:15:19', 'submission_id': '1gqtjuz'}
{'comment': "Yes, they're saying the quiet part out loud.\n\nThey're letting the world know vlad has a lap dog named donnie.", 'created': '2024-11-14 04:17:41', 'submission_id': '1gqtjuz'}
{'comment': "That they have to pretend like they still aren't friends on TV? Yes", 'created': '2024-11-14 03:52:16', 'submission_id': '1gqtjuz'}
{'comment': 'Yep... The first horseman in the white horse is trump.. The second horseman rides a red horse.. So yes lol \n\n(little dark drunk coping book of revelations humor)', 'created': '2024-11-14 05:28:17', 'submission_id': '1gqtjuz'}
{'comment': 'Gabbard is the payback. Putin now owns our national security apparatus. Loon for a new round of loss of assets in the field followed by penetration of our secure networks. \n\nWe’re done unless the senate rethugs discover some balls.', 'created': '2024-11-14 05:32:39', 'submission_id': '1gqtjuz'}
{'comment': 'I sure hope that the younger generations realize that Russia propaganda is a real thing. Putin has spent over $100 billion in the last 20 years trying to get Americans to refer to each other as Republicans and Democrats. Separate the parties, then divide them. Russia has always hated the fact that we call ourselves Americans. As one people. Once they can divide the parties. Their next step is to start racial divide within the United States and they seem to be right on track.', 'created': '2024-11-14 16:14:25', 'submission_id': '1gqtjuz'}
{'comment': 'Or he\'s trying to frame Trump as receiver of some "election help" that was never provided. Then everybody gets suspicious and ruzia feeds on the chaos.', 'created': '2024-11-14 13:25:26', 'submission_id': '1gqtjuz'}
{'comment': 'No quid pro quo, no collusion, nothing to see here 🙄. I think I’ve seen this film before', 'created': '2024-11-14 10:57:42', 'submission_id': '1gqtjuz'}
{'comment': 'He’s not referring to Putin, Russian officials aren’t going to intentionally implicate themselves. \n\nHe’s referring to Musk.', 'created': '2024-11-14 11:14:51', 'submission_id': '1gqtjuz'}
{'comment': 'Trump is not Putin’s friend. He’s Putin’s bitch.', 'created': '2024-11-14 13:00:09', 'submission_id': '1gqtjuz'}
{'comment': "I almost feel bad for Trump. Like, can't he see that Putin hates him? That's just sad. \n\nOh well, my moment of weakness has passed.", 'created': '2024-11-14 04:19:03', 'submission_id': '1gqtjuz'}
{'comment': 'Not saying Russia did or did not do anything though I think it’s common sense other countries engage in espionage as frequently as the US…\n\nBut do people really think Russia wouldn’t just say whatever destabilized the US as much as possible?\n\nGet yo head out yo ass', 'created': '2024-11-14 03:54:20', 'submission_id': '1gqtjuz'}
{'comment': 'Yes.', 'created': '2024-11-14 05:05:13', 'submission_id': '1gqtjuz'}
{'comment': 'The mini-brain of tRump betrayed both him and the country he wants to run', 'created': '2024-11-14 08:16:08', 'submission_id': '1gqtjuz'}
{'comment': 'I actually miss the days when the evil plans were kept secret', 'created': '2024-11-14 16:13:46', 'submission_id': '1gqtjuz'}
{'comment': 'This is a PSA;\n\nKeep in mind, fellow Dems, that Russia lies. All. The. F’n. Time.', 'created': '2024-11-14 17:25:28', 'submission_id': '1gqtjuz'}
{'comment': 'Yup, this is blatantly saying they helped Trump win.', 'created': '2024-11-14 19:07:14', 'submission_id': '1gqtjuz'}
{'comment': 'Would be great if trump just said fuck you to him anyway but you know he idolizes dictators. He wants to be top of the pyramid.', 'created': '2024-11-14 03:08:50', 'submission_id': '1gqtjuz'}
{'comment': 'Great! Maybe the Russians will be the ones who finally knock some sense into Maga World.', 'created': '2024-11-14 15:59:24', 'submission_id': '1gqtjuz'}
{'comment': ">So, is Russia saying what we think they're saying?\n\nYes. Why is this even a question? Everyone who has been paying attention knows this. \n\nThey don't own him so much as they have him thinking he's their best friend, so he's going to share whatever they want willingly. Convincing an extremely stupid man to trust you is so much easier than blackmail.", 'created': '2024-11-14 16:38:10', 'submission_id': '1gqtjuz'}
{'comment': 'If this country had responsible and competent leadership at this time this statement would be enough to bar Trump from assuming office until a full and COMPLETE investigation had been made, valid election or not, and if Russia (and/or any other actors) meddled in the elections, it was not a valid election.', 'created': '2024-11-14 18:25:00', 'submission_id': '1gqtjuz'}
{'comment': 'Russia is saying what they think will sow the most discord in America.', 'created': '2024-11-15 04:16:54', 'submission_id': '1gqtjuz'}
{'comment': '[removed]', 'created': '2024-11-14 03:30:02', 'submission_id': '1gqtjuz'}
{'comment': 'You would think this would be all over the "main stream media"....', 'created': '2024-11-14 12:49:19', 'submission_id': '1gqtjuz'}
{'comment': 'Trump bribing Putin to rig the election isn’t unbelievable. But why would they make this public?', 'created': '2024-11-14 13:15:18', 'submission_id': '1gqtjuz'}
{'comment': 'Wasn’t there something else in that article, about attempts at unaliving bone spurs in chief? Like, Russia is aware of it, and you know. Helicopters and windows and all that.', 'created': '2024-11-14 13:26:34', 'submission_id': '1gqtjuz'}
{'comment': '“Responsible person?” Since when?', 'created': '2024-11-14 13:50:20', 'submission_id': '1gqtjuz'}
{'comment': 'Alright, but why do we believe this statement?', 'created': '2024-11-14 15:22:44', 'submission_id': '1gqtjuz'}
{'comment': 'Joke\'s on Russia too -- Trump doesn\'t pay his "obligations".\n\nBut yeah, he used Russian disinformation again.', 'created': '2024-11-14 15:31:59', 'submission_id': '1gqtjuz'}
{'comment': 'What a fucking traitor.', 'created': '2024-11-14 16:33:17', 'submission_id': '1gqtjuz'}
{'comment': 'Good that he’s not a responsible person, I guess?', 'created': '2024-11-14 17:03:55', 'submission_id': '1gqtjuz'}
{'comment': "Trump doesn't get it. He's too dumb to be humiliated.", 'created': '2024-11-14 18:03:49', 'submission_id': '1gqtjuz'}
{'comment': "And half the electorate doesn't give a shit", 'created': '2024-11-14 20:16:54', 'submission_id': '1gqtjuz'}
{'comment': "It could just as easily be misinformation designed to stoke more political discord. It's unlikely that putins aid would admit this if it were true and the only time a russian tells the truth is when his mouth is shut.", 'created': '2024-11-15 02:04:28', 'submission_id': '1gqtjuz'}
{'comment': 'While terrifying if true, we have to bear in mind that putin’s intelligence chief is about the world’s least reliable source.', 'created': '2024-11-15 22:17:30', 'submission_id': '1gqtjuz'}
{'comment': 'Is this Russia admitting they helped trump win? Will this be investigated?', 'created': '2024-11-17 22:30:25', 'submission_id': '1gqtjuz'}
{'comment': 'Trump is NOT a "responsible person"', 'created': '2024-11-14 12:05:25', 'submission_id': '1gqtjuz'}
{'comment': '[removed]', 'created': '2024-11-14 03:25:02', 'submission_id': '1gqtjuz'}
{'comment': 'Biden has to stand by and protect the constitution... even if that means refusing to hand over power to the guy who literally said he is going to burn the house down when he gets the power. We live in the darkest timeline', 'created': '2024-11-14 14:26:51', 'submission_id': '1gqtjuz'}
{'comment': '', 'created': '2024-11-14 04:16:24', 'submission_id': '1gqtjuz'}
{'comment': '“As a responsible person, he will be obliged to fulfill them” should tell anyone reading this that it is fake. Trump is none of that.', 'created': '2024-11-14 13:10:22', 'submission_id': '1gqtjuz'}
{'comment': 'shame what happened to him. Got lost in the basement of DOJ and was never seen again.', 'created': '2024-11-14 04:46:23', 'submission_id': '1gqtjuz'}
{'comment': 'May he rest in peace.', 'created': '2024-11-14 15:36:28', 'submission_id': '1gqtjuz'}
{'comment': "I went down the rabbit hole of YouTube comments yesterday and was pretty harsh with the MAGA folks sayingI hope they will enjoy Putin, but I admit I was very vulgar about it. Don't regret it at all! I may have gotten blocked or something, lol", 'created': '2024-11-14 22:15:03', 'submission_id': '1gqtjuz'}
{'comment': 'It’s been obvious for far longer. At least since he married Ivana from Eastern Europe.', 'created': '2024-11-14 03:41:33', 'submission_id': '1gqtjuz'}
{'comment': 'Not to a majority of American voters apparently', 'created': '2024-11-14 16:00:53', 'submission_id': '1gqtjuz'}
{'comment': 'not to everyone apparently.', 'created': '2024-11-14 14:44:12', 'submission_id': '1gqtjuz'}
{'comment': 'Im out of the loop. Can you elaborate, please?\n\nEdit: Thank you to the people who actually wanted to help me understand and not pounce on me for absolutely no reason.', 'created': '2024-11-14 06:00:30', 'submission_id': '1gqtjuz'}
{'comment': 'Hey, maybe he can bankrupt Russia even more somehow', 'created': '2024-11-14 04:28:57', 'submission_id': '1gqtjuz'}
{'comment': 'Putin is a lot more powerful than little Donald. The amount of kompromat he must have on Donald alone… Woof.', 'created': '2024-11-14 06:36:55', 'submission_id': '1gqtjuz'}
{'comment': 'Both can be true.', 'created': '2024-11-14 04:50:23', 'submission_id': '1gqtjuz'}
{'comment': 'Yeah, this is likely the truth. Our enemies are no strangers to using media to make us confused and start infighting, which only serves to weaken us.', 'created': '2024-11-14 04:59:32', 'submission_id': '1gqtjuz'}
{'comment': 'Their entire playbook has been around separating the UK from Europe, and dividing the US and destabilising the country.', 'created': '2024-11-14 06:06:43', 'submission_id': '1gqtjuz'}
{'comment': 'They dont have to, trump and his asylum will do that for them.', 'created': '2024-11-14 05:23:27', 'submission_id': '1gqtjuz'}
{'comment': 'Except Trump said and did nothing when Putin humiliated him by publicly posting his wife’s nudes . If it wasn’t true , Trump the man who can’t keep his mouth shut would have said something .', 'created': '2024-11-14 13:50:34', 'submission_id': '1gqtjuz'}
{'comment': "I guess we'll see when US diplomats accidentally start ingesting novichok and falling from windows.", 'created': '2024-11-14 12:13:19', 'submission_id': '1gqtjuz'}
{'comment': '', 'created': '2024-11-14 10:40:33', 'submission_id': '1gqtjuz'}
{'comment': 'Democrats are about as toothless as an 80 year old truck stop hooker.', 'created': '2024-11-14 03:16:59', 'submission_id': '1gqtjuz'}
{'comment': 'They aren’t going to do anything.', 'created': '2024-11-14 03:14:53', 'submission_id': '1gqtjuz'}
{'comment': 'Garland is on it ! oh, wait....', 'created': '2024-11-14 04:45:17', 'submission_id': '1gqtjuz'}
{'comment': 'I would like to think so but the track record isn’t good for the Dems doing anything to hold him accountable.', 'created': '2024-11-14 03:09:31', 'submission_id': '1gqtjuz'}
{'comment': "I'm terrified about that. I think the same. Something like proving Trump is working with Russia. Then if Trump is stopped before taking office the MAGA crowd might start a war over that, despite evidence.", 'created': '2024-11-14 06:04:02', 'submission_id': '1gqtjuz'}
{'comment': 'Absolutely not. Democrats won’t do jack. They are too busy “taking the high road”', 'created': '2024-11-14 03:15:06', 'submission_id': '1gqtjuz'}
{'comment': "I get what you mean. Things are gonna be BAD with him in office, but it feels like some other crazy unexpected shit is gonna happen that won't necessarily be awful lol", 'created': '2024-11-14 05:30:50', 'submission_id': '1gqtjuz'}
{'comment': 'One thing is for sure, Ukraine is in trouble.', 'created': '2024-11-14 04:40:39', 'submission_id': '1gqtjuz'}
{'comment': 'I sir hope so. This story has a better ending than the one we have now. We need a taped damaging phone call to Putin from orange face.', 'created': '2024-11-14 06:11:34', 'submission_id': '1gqtjuz'}
{'comment': "Hey, Trump said the VP had the constitutional right not to certify a presidential election. In fact, he wanted to hang Mike Pence for not doing so. Maybe that's a precedent Harris can use. Dark Brandon, 4 more years!\n\n/s", 'created': '2024-11-14 05:13:31', 'submission_id': '1gqtjuz'}
{'comment': 'You should really stop fantasizing. Nothing extraordinary is going to happen. Biden is already going through the traditional transfer of power as if he isn’t signing America’s death warrant.', 'created': '2024-11-14 16:03:11', 'submission_id': '1gqtjuz'}
{'comment': 'Like?', 'created': '2024-11-14 02:58:19', 'submission_id': '1gqtjuz'}
{'comment': 'Like what do you think is goin to happen?', 'created': '2024-11-14 07:24:19', 'submission_id': '1gqtjuz'}
{'comment': 'The Hamburger of Heaven 🍔\U0001fabd🙏', 'created': '2024-11-14 13:49:00', 'submission_id': '1gqtjuz'}
{'comment': "Putin likes to do that shit as a joke, I'm not sure why anyone would ever take it seriously. It's clear that Biden doesn't fuck with him.", 'created': '2024-11-14 07:36:26', 'submission_id': '1gqtjuz'}
{'comment': 'No they are releasing this to gloat', 'created': '2024-11-14 05:26:37', 'submission_id': '1gqtjuz'}
{'comment': 'you are everything that is wrong with the paper industry.', 'created': '2024-11-14 03:47:30', 'submission_id': '1gqtjuz'}
{'comment': "It's not that kind of P tape, it's not a urine flick, it's Trump in russia in the 80's most likely raping a child. P stands for Pedophilia.", 'created': '2024-11-14 03:54:20', 'submission_id': '1gqtjuz'}
{'comment': 'It’s so fucking obvious.', 'created': '2024-11-14 06:38:12', 'submission_id': '1gqtjuz'}
{'comment': 'https://thehill.com/policy/national-security/4989036-tulsi-gabbard-trump-intelligence/\n\n\nProbably cause he said it???', 'created': '2024-11-14 07:44:19', 'submission_id': '1gqtjuz'}
{'comment': 'if they’re questioning gaetz, former dem tulsi is not getting thru', 'created': '2024-11-14 13:57:21', 'submission_id': '1gqtjuz'}
{'comment': 'But no caulooosh’n. /s', 'created': '2024-11-14 21:34:20', 'submission_id': '1gqtjuz'}
{'comment': 'Except as always, the Russian’s rely on useful MAGA thus will tread carefully so as not to disrupt their carefully planned operation. They are ten steps ahead of the GOP.', 'created': '2024-11-14 16:47:02', 'submission_id': '1gqtjuz'}
{'comment': '', 'created': '2024-11-14 04:02:34', 'submission_id': '1gqtjuz'}
{'comment': 'He means responsible to Russia.', 'created': '2024-11-14 16:48:49', 'submission_id': '1gqtjuz'}
{'comment': 'Is he even alive still? I can’t tell', 'created': '2024-11-14 16:26:01', 'submission_id': '1gqtjuz'}
{'comment': 'I’ve been saying this since after the election that I think that if Trump pisses Putin off enough that Putin will ensure a world of hurt on Trump (and Americans). \nI’m certain he will be trumps unraveling. \n\nTrump and Musk have both hinted that the election was fixed in trumps favor.', 'created': '2024-11-15 10:55:57', 'submission_id': '1gqtjuz'}
{'comment': 'Pieces.', 'created': '2024-11-15 20:33:54', 'submission_id': '1gqtjuz'}
{'comment': 'I’m stuck between cheering on Trump (because MAGAt fools are going to be the most damaged from his presidency), and worrying that that’s pretty much cutting off my nose to spite my face! I love my country, the environment, and democracy: all things that Trump will screw into the ground. What a dilemma!', 'created': '2024-11-15 00:43:19', 'submission_id': '1gqtjuz'}
{'comment': 'It’s apparent to everyone outside the US. Why not here???', 'created': '2024-11-16 12:20:55', 'submission_id': '1gqtjuz'}
{'comment': 'He openly admires Putin and occasionally references Russian support', 'created': '2024-11-14 06:51:59', 'submission_id': '1gqtjuz'}
{'comment': 'What do you get out of pretending to be ignorant?', 'created': '2024-11-14 06:45:00', 'submission_id': '1gqtjuz'}
{'comment': 'russia is already almost bankrupt. rump is going for the big time in bankrupting the USA', 'created': '2024-11-14 04:45:20', 'submission_id': '1gqtjuz'}
{'comment': 'China owns Russia', 'created': '2024-11-14 19:55:02', 'submission_id': '1gqtjuz'}
{'comment': 'Yup! It’s their MO\n\nThe same reason why Putin “endorsed” Kamala (as Putin and the entire room laughed - knowing exactly what he was doing)\n\nThe only people that fooled was Trump supporters. Can’t tell you how many times I heard “you know Putin endorsed Harris, right?', 'created': '2024-11-14 07:30:04', 'submission_id': '1gqtjuz'}
{'comment': 'All i want to know is how stupid are people to not bother to research anything before handing their lives over to someone? America gets what it deserves', 'created': '2024-11-14 05:17:52', 'submission_id': '1gqtjuz'}
{'comment': 'already did.', 'created': '2024-11-14 06:27:07', 'submission_id': '1gqtjuz'}
{'comment': '[removed]', 'created': '2024-11-14 03:39:15', 'submission_id': '1gqtjuz'}
{'comment': 'I’m not banking on that. I’m banking on the GOP imploding and an ensuing jockeying for power that will force an uneasy alliance between Democrats and a handful of ambitious purple-state republicans. Just enough to block their platform progress/anything dangerous- not enough to hold him and others accountable.', 'created': '2024-11-14 04:49:46', 'submission_id': '1gqtjuz'}
{'comment': "No, he's gonna have another, more debilitating stroke, then the GOP is going to struggle to find another Trump and they will implode", 'created': '2024-11-14 05:26:45', 'submission_id': '1gqtjuz'}
{'comment': 'Most likely thing I can think is that some more moderate congressional republicans switch parties to keep him under control.', 'created': '2024-11-14 05:23:26', 'submission_id': '1gqtjuz'}
{'comment': 'And here comes hand picked JD Vance to the forefront, ready to push P2025 further into our already tainted society than ever imagined\n\nRevelations 13', 'created': '2024-11-14 13:51:21', 'submission_id': '1gqtjuz'}
{'comment': 'Well Biden has immunity....will he use it to save the nation?', 'created': '2024-11-14 05:19:22', 'submission_id': '1gqtjuz'}
{'comment': 'I don’t mean that now Kamala is miraculously going to be President, she lost. I don’t really know a lot of weird shit going on right now. Feels like it’s leading up to something', 'created': '2024-11-14 03:44:30', 'submission_id': '1gqtjuz'}
{'comment': "Some Democrat is going to wag a finger. That'll show them", 'created': '2024-11-14 03:18:30', 'submission_id': '1gqtjuz'}
{'comment': 'I honestly don’t even know', 'created': '2024-11-14 13:14:12', 'submission_id': '1gqtjuz'}
{'comment': 'Why not both?', 'created': '2024-11-14 10:46:15', 'submission_id': '1gqtjuz'}
{'comment': 'probably have the tape of him negotiating to make sure "she is a virgin".', 'created': '2024-11-14 04:47:25', 'submission_id': '1gqtjuz'}
{'comment': 'It was a rhetorical question. Her appointment is how Trump is repaying the Russians for getting him elected.', 'created': '2024-11-14 08:41:27', 'submission_id': '1gqtjuz'}
{'comment': 'I would not be so sure. Gaetz is actually hated. Tulsi is sly, which is why she is so dangerous. I’d bet that many people don’t really believe the threat she is to national security.\n\nEdit: put another way, if they reject Gabbard they would be admitting that she is an actual national security threat because she is a honest to god Russian asset. That would open up the entire box of questions that they don’t want to answer. \n\nOne hope I have is that she would have to have a security clearance before taking the job. And I have to believe that her behavior would cause that to fail. I hope.', 'created': '2024-11-14 21:02:17', 'submission_id': '1gqtjuz'}
{'comment': '…yeah. I know. He’s never followed through on anything is what I’m saying. He’s not one to fulfill obligations.', 'created': '2024-11-14 18:10:21', 'submission_id': '1gqtjuz'}
{'comment': 'He’s working his way through the bowels of the Federalist Society.', 'created': '2024-11-14 16:28:56', 'submission_id': '1gqtjuz'}
{'comment': 'Poor education and a media that is nothing but a talking head for propaganda.', 'created': '2024-11-16 12:54:56', 'submission_id': '1gqtjuz'}
{'comment': 'Uh, there is an overwhelming amount of evidence that both Trump and Elon are Russian assets.\xa0', 'created': '2024-11-14 16:07:24', 'submission_id': '1gqtjuz'}
{'comment': "I'm confused because I saw an interview with Putin a few months ago, and he endorsed Biden. Was that just a facade or something? Im sorry. I dont really focus on politics very much, so Im always out of the loop. Thanks for the help!", 'created': '2024-11-14 07:03:42', 'submission_id': '1gqtjuz'}
{'comment': 'STUPID GAMES=STUPID PRIZES!', 'created': '2024-11-14 21:27:39', 'submission_id': '1gqtjuz'}
{'comment': "What is your problem? Im asking because I don't know. Either answer or go away.", 'created': '2024-11-14 06:53:28', 'submission_id': '1gqtjuz'}
{'comment': "rump can bankrupt anything! he bankrupted fucking \\*casinos\\* for fuck's sake :-)", 'created': '2024-11-14 05:18:28', 'submission_id': '1gqtjuz'}
{'comment': 'How can Russia be bankrupt when they [fined Google for $20,000,000,000,000,000,000,000,000,000,000,000](https://www.google.com/amp/s/amp.cnn.com/cnn/2024/10/31/tech/google-fines-russia) ?', 'created': '2024-11-14 06:03:32', 'submission_id': '1gqtjuz'}
{'comment': "People keep saying this, but I still haven't seen any bank statements.", 'created': '2024-11-14 06:31:11', 'submission_id': '1gqtjuz'}
{'comment': "Let's be realistic. The Americans that voted for him will get what they deserve but half of us did not vote for him. We are getting far worse than we deserve.", 'created': '2024-11-14 07:06:46', 'submission_id': '1gqtjuz'}
{'comment': 'GOP imploding between now & then? How, why? They’re about to seize complete control. They will unite to suck. That’s what they do best.', 'created': '2024-11-14 07:53:15', 'submission_id': '1gqtjuz'}
{'comment': "It's a nice pipedream, but the opposition is all gone. They've resigned or been primaried. The opposition now is Susan Collins, and she'll just furrow her brow deeply.", 'created': '2024-11-14 15:49:33', 'submission_id': '1gqtjuz'}
{'comment': 'Why would they implode? They literally voted for this', 'created': '2024-11-14 12:20:08', 'submission_id': '1gqtjuz'}
{'comment': 'Why would they? The election showed them all MAGA is the winning strategy. They’ll fall in line to maintain their power and reputation.', 'created': '2024-11-14 06:32:10', 'submission_id': '1gqtjuz'}
{'comment': "I already know he won't.\xa0", 'created': '2024-11-14 06:24:51', 'submission_id': '1gqtjuz'}
{'comment': "They aren't going to do anything and we're all fucked.", 'created': '2024-11-14 06:27:37', 'submission_id': '1gqtjuz'}
{'comment': 'Seriously? if you dont know what this is leading up to you are not paying attention. Trump wants to nullify congress so he has full control, he is challenging that now', 'created': '2024-11-14 05:21:08', 'submission_id': '1gqtjuz'}
{'comment': 'Someone’s getting a sternly written letter.', 'created': '2024-11-14 03:35:21', 'submission_id': '1gqtjuz'}
{'comment': 'They will at least write a sternly worded letter.', 'created': '2024-11-14 03:35:50', 'submission_id': '1gqtjuz'}
{'comment': 'I understand.', 'created': '2024-11-14 19:28:59', 'submission_id': '1gqtjuz'}
{'comment': "Sorry, I didn't catch the sarcasm! My bad", 'created': '2024-11-14 09:39:02', 'submission_id': '1gqtjuz'}
{'comment': 'I made my comment in the spirit of things that are readily available to people who listen only to right wing news sources.\n\nWould be interested in hearing your sources anyway though.', 'created': '2024-11-14 16:13:26', 'submission_id': '1gqtjuz'}
{'comment': 'https://www.rand.org/pubs/perspectives/PE198.html\n\nThe GOP has adopted the Russian propaganda model, Russia has been supporting Trump online since his birther conspiracy, Trump has slapped his name on many Russian real estate buildings, his business have been bailed out by Russian oligarchs. Read about the Mueller report or watch the congressional hearings about it, along with the Steele dossier. (My fav part is the piss tapes) Look into Rachel Maddow\'s doc "From Russia, with Lev." Really, all you need to do is google "Trump Russia connections" and you\'ll find layers and layers of proof that he\'s very heavily involved with not only Putin but their oligarchs as well.', 'created': '2024-11-14 07:31:17', 'submission_id': '1gqtjuz'}
{'comment': "I'm not sure where you heard that. Do you have a link to the interview", 'created': '2024-11-14 07:44:01', 'submission_id': '1gqtjuz'}
{'comment': "You don't focus on politics but you're in the democrats subreddit? That makes no sense at all.", 'created': '2024-11-14 11:09:04', 'submission_id': '1gqtjuz'}
{'comment': 'You\'re lying. Your comment history is very telling and you pull this "what is Trump in trouble for, derr herr herr" act all the time in between obsessing about Call of Duty and Pokémon cards. \n \n It\'s just rhetoric. Knock it off.', 'created': '2024-11-14 06:56:40', 'submission_id': '1gqtjuz'}
{'comment': 'A terrorist state suing an international corporation, what could ever be wro... oh wait 🤣', 'created': '2024-11-14 13:30:10', 'submission_id': '1gqtjuz'}
{'comment': 'It’s not a question of deserving. They were duped. The first time around, Trump’s covid misinformation killed something like 400,000 people. I don’t feel comfortable saying any of those people deserved what happened, any more than I’m comfortable saying it about the next administration.', 'created': '2024-11-14 15:35:55', 'submission_id': '1gqtjuz'}
{'comment': 'they basically are imploding over GOP leader and trump cabinet picks. they won, but their name could go thru the mud.', 'created': '2024-11-14 13:54:22', 'submission_id': '1gqtjuz'}
{'comment': 'I’m thinking those that do would have outsized power/national attention, ex. Manchin. So for those who either don’t want to keep kissing the ring, actually care about their constituents, want to rise in prominence, or want to continue to be able to blame problems on others and not truly govern, this would be an option. I think that group might be bigger than it looks. I think many people in govt like personal power and they might have more nominally in the party and pursuing personal power, than as a nameless maga backbencher. Idk. I hope so at least. Maybe it’s the hope talking.', 'created': '2024-11-14 16:36:17', 'submission_id': '1gqtjuz'}
{'comment': 'Thank you for the info and link. \n\n#\n\n\n#\n\n\n(piss tapes!?)', 'created': '2024-11-14 07:57:03', 'submission_id': '1gqtjuz'}
{'comment': "I couldn't find the actual interview, but I found a clip: \n\nhttps://www.nbcnews.com/video/russia-s-putin-expresses-preference-for-biden-as-president-204262981632", 'created': '2024-11-14 07:54:47', 'submission_id': '1gqtjuz'}
{'comment': "It doesn't make sense that I would check out the subreddit of the party I just voted for? Seriously...\n What did I do wrong? I just asked a question, and tbh I just wanted some human interaction 😔 \n\nI'm regretting even attempting to leave my comfort zone by showing interest for once.", 'created': '2024-11-14 11:38:38', 'submission_id': '1gqtjuz'}
{'comment': 'Yeah, Im obviously not really into politics, and im asking for help. Why are you being so aggressive and rude?', 'created': '2024-11-14 07:07:58', 'submission_id': '1gqtjuz'}
{'comment': 'Let me tell you if you were the one dying they wouldnt care.', 'created': '2024-11-15 06:11:24', 'submission_id': '1gqtjuz'}
{'comment': 'Free firewall workaround if you need one:\n\nhttps://archive.is/dJ5GP', 'created': '2024-11-14 02:27:19', 'submission_id': '1gqtc1z'}
{'comment': 'The whole fucking incoming regime is.', 'created': '2024-11-14 02:34:31', 'submission_id': '1gqtc1z'}
{'comment': 'Every nomination so far is a national security risk.', 'created': '2024-11-14 02:37:42', 'submission_id': '1gqtc1z'}
{'comment': 'Trump himself is a security risk, they are all Putin apologists.', 'created': '2024-11-14 02:44:14', 'submission_id': '1gqtc1z'}
{'comment': "Donald Trump's election is a national security risk.", 'created': '2024-11-14 03:02:52', 'submission_id': '1gqtc1z'}
{'comment': 'Lol national security. That’s not a thing anymore, friend. We’ve got an open door policy with Putin. Hopefully the rest of the world realizes it and stops fuckin telling us stuff.', 'created': '2024-11-14 04:33:49', 'submission_id': '1gqtc1z'}
{'comment': 'If we can live with a newscaster as Pentagon Chief then Tulsi Gabbard won’t be hard to sell. Are Trumper beginning to see the winning policy? I bet they’re not. They will go to their grave in blinders I’m afraid.', 'created': '2024-11-14 03:41:35', 'submission_id': '1gqtc1z'}
{'comment': 'These picks are rage bait. It would be funny if these unqualified hacks helped Vance remove the clown with the 25th amendment. Vance might be more dangerous cause he is more coherent maga is a cult of personality and would implode 😆', 'created': '2024-11-14 03:56:04', 'submission_id': '1gqtc1z'}
{'comment': 'Oh the Russians will be getting access to whatever the Hell they want now.', 'created': '2024-11-14 03:45:39', 'submission_id': '1gqtc1z'}
{'comment': 'So is the election of DJT.', 'created': '2024-11-14 04:36:03', 'submission_id': '1gqtc1z'}
{'comment': 'You see Javanka on stage with dad after he won? Even those grifters coming back for round 2', 'created': '2024-11-14 04:41:05', 'submission_id': '1gqtc1z'}
{'comment': "here's the crux imo:\xa0\xa0\n\n\n>Trump could also be engaging in a ploy to bring in someone else. He may suspect that Gabbard is unconfirmable by the Senate. Once she’s turfed, he could then slide in an even more appalling nominee and claim that he has no choice but to\xa0use a recess appointment\xa0as a backstop. (Hard to imagine who might be worse as DNI than Gabbard, but remember that Trump has promised at various times to bring\xa0retired General Mike Flynn\xa0back into government. Flynn is a decorated veteran who was fired from Trump’s White House in a scandal about lying to the FBI; he is now\xa0a conspiracist\xa0who is fully\xa0on board\xa0with Trump’s desire for revenge on his enemies.", 'created': '2024-11-14 03:31:37', 'submission_id': '1gqtc1z'}
{'comment': 'No shit!!', 'created': '2024-11-14 03:20:02', 'submission_id': '1gqtc1z'}
{'comment': 'I would have to say that unfortunately no beekeeper is coming to stop this shit.\n\n\nWe are on our own.', 'created': '2024-11-14 04:15:03', 'submission_id': '1gqtc1z'}
{'comment': "Tulsi Gabbard is not a national security risk. She's a guaranteed national security breech. 100% guaranteed.", 'created': '2024-11-14 18:34:29', 'submission_id': '1gqtc1z'}
{'comment': 'Yeah, that’s the whole point of her nomination.', 'created': '2024-11-14 04:29:43', 'submission_id': '1gqtc1z'}
{'comment': "She's a spy.", 'created': '2024-11-14 07:07:32', 'submission_id': '1gqtc1z'}
{'comment': 'No its. Not. If musk is Vp all bets are off. She’s the least important person', 'created': '2024-11-14 07:09:40', 'submission_id': '1gqtc1z'}
{'comment': 'She’s the least security risk of all the cabinet.', 'created': '2024-11-14 07:19:42', 'submission_id': '1gqtc1z'}
{'comment': "I hope this is part 1 of an ongoing series. They could do a new one every day with a different member of Lump's cabinet.", 'created': '2024-11-14 08:43:04', 'submission_id': '1gqtc1z'}
{'comment': "If she truly loves her country and abides by the constitution. She'll be fine. \n\nBut she has a history of selling out.\n\nMy opinion", 'created': '2024-11-14 11:38:42', 'submission_id': '1gqtc1z'}
{'comment': "Trump is a risk but Republicans don't give a damn", 'created': '2024-11-14 14:04:13', 'submission_id': '1gqtc1z'}
{'comment': 'Yeah, no shit. Trumps win is 100 times worse.', 'created': '2024-11-14 15:35:14', 'submission_id': '1gqtc1z'}
{'comment': 'A Russian asset as the DNI certainly will go wonderfully, right?', 'created': '2024-11-14 16:00:18', 'submission_id': '1gqtc1z'}
{'comment': 'It doesn’t matter. Trump want folks who are simply loyal to him', 'created': '2024-11-14 20:22:00', 'submission_id': '1gqtc1z'}
{'comment': 'If Trump doesn\'t pull out of NATO it will be a major surprise.\nHere is the way it works.\nTrump proposes ceasefire or solution that benefits Russia.\nUkraine and Europe say no.\nTrump uses "no" as an excuse to remove America from NATO.\nRussia thanks Trump by not releasing pee pee tape.', 'created': '2024-11-15 00:21:14', 'submission_id': '1gqtc1z'}
{'comment': 'Wait until you see the latest article from Slate\n\n>The final twist of this saga came on Monday when Russia’s intelligence chief, Nikolai Patrushev, made the following comment in an interview with the Moscow newspaper Kommersant:\n\n>"The election campaign is over. To achieve success in the election, Donald Trump relied on certain forces to which he has corresponding obligations. As a responsible person, he will be obliged to fulfill them."\n\nhttps://slate.com/news-and-politics/2024/11/trump-election-results-patrushev-putin-rubio-russia-ukraine.html', 'created': '2024-11-14 02:46:54', 'submission_id': '1gqtc1z'}
{'comment': "He turned the party's voters into Russian and Putin apologists as well.", 'created': '2024-11-14 08:14:11', 'submission_id': '1gqtc1z'}
{'comment': 'still cant believe Florida allowed a convicted felon to vote.', 'created': '2024-11-14 11:15:06', 'submission_id': '1gqtc1z'}
{'comment': "Do this:\n\nGo to the conservative sub. Look for the most commented on post about any of the appointments, especially Musk and the guy-who-doesn't-believe-in-germs... much infighting there is.", 'created': '2024-11-14 04:44:59', 'submission_id': '1gqtc1z'}
{'comment': 'Most of them already have tuned out of politics and probably aren\'t paying attention anymore now that they have "won"', 'created': '2024-11-14 14:43:06', 'submission_id': '1gqtc1z'}
{'comment': "The thing I'm hoping for is once that asshole is no longer on earth maga collapses quickly.\xa0", 'created': '2024-11-14 04:45:36', 'submission_id': '1gqtc1z'}
{'comment': 'I still cant see beyond Ukraine what is Putin\'s aim? More "Buffer" territory to go after? Estonia, Latvia buffer zones?', 'created': '2024-11-14 11:19:26', 'submission_id': '1gqtc1z'}
{'comment': 'Has anyone checked on Marla Maples? Where has she been all this time?', 'created': '2024-11-14 04:58:49', 'submission_id': '1gqtc1z'}
{'comment': 'I will never believe that Trump is bluffing.', 'created': '2024-11-14 04:15:01', 'submission_id': '1gqtc1z'}
{'comment': 'Yes, Im very suprised Flynn has not been appointed by trump to some official WH spot.', 'created': '2024-11-14 11:17:01', 'submission_id': '1gqtc1z'}
{'comment': 'So Russia is basically openly admitting they helped him win? Like they did last time and (checks notes) NO ONE DID A FUCKING THING TO ADDRESS IT??\n\nThanks Merrick Garland. Please provide me with an address so I can send you a shit cake.', 'created': '2024-11-14 04:01:51', 'submission_id': '1gqtc1z'}
{'comment': 'Who is dumb enough to assume that Trump is a responsible person? Have they been living in a hole for the last 40 years?', 'created': '2024-11-14 02:55:41', 'submission_id': '1gqtc1z'}
{'comment': 'I guess we are lucky that MTG isn’t Director of Intelligence', 'created': '2024-11-14 05:01:49', 'submission_id': '1gqtc1z'}
{'comment': "Irs a a cult of personality so likely will. I don't think Dpn Jr. Can pull it off", 'created': '2024-11-14 04:55:00', 'submission_id': '1gqtc1z'}
{'comment': "picking out cemetery plots on donnie's golf courses?", 'created': '2024-11-14 11:20:08', 'submission_id': '1gqtc1z'}
{'comment': "seems safe to be ready for anything.\xa0 it's bad all the way down.\xa0\xa0", 'created': '2024-11-14 04:19:58', 'submission_id': '1gqtc1z'}
{'comment': 'yet.\xa0 \xa0as the piece says, this Gabbard idea may be a feint.', 'created': '2024-11-14 18:43:02', 'submission_id': '1gqtc1z'}
{'comment': 'If you do a Kickstarter, I will pitch in. That way, we can send a great big one.', 'created': '2024-11-14 08:44:42', 'submission_id': '1gqtc1z'}
{'comment': 'When you owe the forces he’s talking about, you better pay up.', 'created': '2024-11-14 05:36:31', 'submission_id': '1gqtc1z'}
{'comment': 'Department of Jewish Space-Laser Forest Fire Prevention.', 'created': '2024-11-14 05:06:35', 'submission_id': '1gqtc1z'}
{'comment': 'No one can fuckem.', 'created': '2024-11-14 04:55:31', 'submission_id': '1gqtc1z'}
{'comment': "Someone joked about making her head of NASA, but with these picks I wouldn't put it past Trump...", 'created': '2024-11-14 14:43:45', 'submission_id': '1gqtc1z'}
{'comment': ">Other GOP House colleagues believe his decision is actually tied to an Ethics Committee report investigating several allegations including that Gaetz engaged in sex with a minor, which they believe was poised to be released in a matter of days.\n\nYep. I bet Susie Wiley told Gaetz he needed to resign. Because Trump wouldn't be happy if the ethics investigation took over the news from featuring Trump.", 'created': '2024-11-14 02:07:15', 'submission_id': '1gqsqgz'}
{'comment': 'So now the House investigation on him will end. He wants to go into confirmation without that hanging over him.\n\nStill doesn’t make him qualified to be AG.', 'created': '2024-11-14 02:05:59', 'submission_id': '1gqsqgz'}
{'comment': 'Doesn’t he still have to get confirmed? If that doesn’t happen isn’t he sol?', 'created': '2024-11-14 02:10:32', 'submission_id': '1gqsqgz'}
{'comment': 'He doesn’t want that report released', 'created': '2024-11-14 02:07:31', 'submission_id': '1gqsqgz'}
{'comment': "The Ethics committee was going to release and rule on their report on Friday. Since he is no longer a Congressman, the can't rule on him.", 'created': '2024-11-14 02:07:12', 'submission_id': '1gqsqgz'}
{'comment': "To be AG..........LOL. So you have a sex offender running the AG's office and another one running the country. Epstein would be very proud of them both.", 'created': '2024-11-14 02:26:18', 'submission_id': '1gqsqgz'}
{'comment': "This dude threw out McCarthy from Speaker. Let's see if will play ball to confirm him in the senate. He really fucked up and they will remember.", 'created': '2024-11-14 02:31:11', 'submission_id': '1gqsqgz'}
{'comment': "AND if McCarthy's friends in the Senate decide tell him to fuck off, he's officially unemployed 👍", 'created': '2024-11-14 02:44:27', 'submission_id': '1gqsqgz'}
{'comment': 'But what about the price of eggs???', 'created': '2024-11-14 03:06:45', 'submission_id': '1gqsqgz'}
{'comment': 'House ethics report was supposed to be released Friday. Which means lots of staffers probably have copies, just saying.', 'created': '2024-11-14 02:41:47', 'submission_id': '1gqsqgz'}
{'comment': 'It’s gonna be a spicy pepper', 'created': '2024-11-14 01:59:14', 'submission_id': '1gqsqgz'}
{'comment': 'Funny if Trump changes his mind.', 'created': '2024-11-14 02:26:18', 'submission_id': '1gqsqgz'}
{'comment': 'Trump 2.0 doesn’t give a shit about qualifications. He hired the smart guys last time and they did him dirty. This time around he only cares about one thing: complete loyalty not to the rule of law or the Constitution, but to Trump. This is a dictatorship in the making.', 'created': '2024-11-14 03:30:44', 'submission_id': '1gqsqgz'}
{'comment': 'That dude should be in jail.', 'created': '2024-11-14 02:50:00', 'submission_id': '1gqsqgz'}
{'comment': "I'd love to see the house release the report as a 'fuck you' to his 'fuck you'. Alternatively, leaking the report would be A-OK.", 'created': '2024-11-14 02:41:44', 'submission_id': '1gqsqgz'}
{'comment': 'The Senate has a chance to do the funniest thing ever…', 'created': '2024-11-14 03:04:00', 'submission_id': '1gqsqgz'}
{'comment': "I am reading responses to this post that point to republicans already becoming concerned about some of tRump's potential appointees. Just wait for the national abortion bans and the entitlement program cuts. Then things are gonna get spicy.", 'created': '2024-11-14 03:07:45', 'submission_id': '1gqsqgz'}
{'comment': "Attorney General. You have to be kidding. But they're not. This corrupt clown car administration will go down in history.", 'created': '2024-11-14 02:52:58', 'submission_id': '1gqsqgz'}
{'comment': 'Party of creeps, perverts, and criminals!!', 'created': '2024-11-14 04:27:01', 'submission_id': '1gqsqgz'}
{'comment': 'Pedophile as AG to own the libs.', 'created': '2024-11-14 03:34:19', 'submission_id': '1gqsqgz'}
{'comment': 'It would be so sweet if the senate did not confirm him.', 'created': '2024-11-14 04:05:26', 'submission_id': '1gqsqgz'}
{'comment': 'Going to be hilarious if his appointment gets blocked.', 'created': '2024-11-14 06:47:54', 'submission_id': '1gqsqgz'}
{'comment': "He was just re-elected last week. Can he resign form the term which hasn't started yet? \n\nI would love to hear Kevin McCarthy's reaction to this latest twist.", 'created': '2024-11-14 01:59:54', 'submission_id': '1gqsqgz'}
{'comment': 'The closest thing we’ll get to an admission or justice re: Matt Gaetz having sex with a minor and/or paying for it.\n\nThis is the United States under Donald Trump and the modern GQP.', 'created': '2024-11-14 02:47:54', 'submission_id': '1gqsqgz'}
{'comment': 'So there is a silver lining to all this buffoonery.', 'created': '2024-11-14 02:05:52', 'submission_id': '1gqsqgz'}
{'comment': 'Guess we will really see if the republicans are the real party of law in order now /s', 'created': '2024-11-14 05:16:11', 'submission_id': '1gqsqgz'}
{'comment': 'They are all over playing their hands. Secretary of Defense dude is a born again militia Captain in the National Guard. Will 3 and 4 star generals take orders from this 3rd rate Fox “news” reporter? All these low life synchophants are populating Trump’s cabinet because all the qualified candidates have too much self respect to want to work for him. Old Matty boy quit one step ahead of the House Ethics Committee turning their statutory rape investigation agains him over to law enforcement. t', 'created': '2024-11-14 06:00:07', 'submission_id': '1gqsqgz'}
{'comment': 'I’m sure this question has already been asked and answered but I can’t seem to find a definitive answer. Gaetz apparently resigned from the current Congress but he’s just been re-elected to the next Congress. Is there anything that actually prevents him from being sworn in for the next Congress even though he just resigned? Does his resignation carry over to the next Congress or is it limited to the current one?', 'created': '2024-11-14 02:56:12', 'submission_id': '1gqsqgz'}
{'comment': 'Well if that doesn’t show he’s guilty I don’t know what does.', 'created': '2024-11-14 03:24:52', 'submission_id': '1gqsqgz'}
{'comment': 'These next four years are gonna be crazy', 'created': '2024-11-14 03:02:10', 'submission_id': '1gqsqgz'}
{'comment': 'The one who wants to be Senate Majority Leader has to agree to recess the senate so he can make recess appointments without senate approval.\n\nIf that’s the case they might as well just stay home and not come to Washington at all. That’s the point of checks and balances. You can’t demand someone neglect their duties as an equal power of government and call that a republic. The executive is not king. That would necessitate breaking their oaths to the constitution at the very core of our governmental structure. There is no way to justify that in court. There is no purpose to a legislature that wont legislate.\n\nI have an idea, let’s abolish the senate and have the house do everything. That’s fine I don’t think Idaho needs as many reps as NY anyway. The senate is an anti-democratic body by design.', 'created': '2024-11-14 03:38:53', 'submission_id': '1gqsqgz'}
{'comment': 'Republicans gonna republican', 'created': '2024-11-14 04:00:36', 'submission_id': '1gqsqgz'}
{'comment': 'https://preview.redd.it/u1zobu4x4s0e1.jpeg?width=949&format=pjpg&auto=webp&s=e24d76722d9355bce562a75505c0a48d05c5a574', 'created': '2024-11-14 03:39:01', 'submission_id': '1gqsqgz'}
{'comment': "ABC news- Gaetz' resignation will end the house investigation into his underage sex allegations\n\nFox news- Gaetz resignation is so Florida has more time for a special election (even though another FL representative picked for trumps cabinet didn't resign)", 'created': '2024-11-14 12:21:52', 'submission_id': '1gqsqgz'}
{'comment': 'I kinda wonder if we should encourage all the worst MAGA in the House and Senate to be picked for cabinet just to clear them and have a change at challenging appointees in the next elections. Even if they’re red districts, it gives some chance of non-MAGA Republicans replacing them.', 'created': '2024-11-14 03:03:32', 'submission_id': '1gqsqgz'}
{'comment': "At\n\n\nThe way things have been going I expect Trump to dig up Epsteins body and put him in charge of the Dept. Of Women's Safety.", 'created': '2024-11-14 14:52:36', 'submission_id': '1gqsqgz'}
{'comment': "Everyone knows Gaetz is guilty of sex trafficking and providing drugs to under age girls. There are reports from Reps who Gaetz would show videos to on the House floor.\n\nHardly anyone can stand the guy, and then when he pitched a fit to get the Speaker removed, he lost even more support.\n\nFriday, tomorrow, was the release of the ethics committee findings against Gaetz and the evidence, while not criminal, was said to be incredibly damaging to him.\n\nTrump threw him a bone. He would nominate Gaetz for AG, knowing that the Senate would never confirm him, and Gaetz could resign from his seat, preventing the report from being released. \n\nNeither Trump not Gaetz expect him to be confirmed for AG. Gaetz had to leave office, and he did it the only way that would allow him to not face any punitive measures in the house and avoid all possibility of any criminal prosecution down the road.\n\nTo be fair DOJ declined to prosecute, but that doesn't mean he was innocent.", 'created': '2024-11-14 16:31:38', 'submission_id': '1gqsqgz'}
{'comment': 'This is such a fking joke.', 'created': '2024-11-14 02:54:55', 'submission_id': '1gqsqgz'}
{'comment': 'What a fucking shit show.', 'created': '2024-11-14 02:55:35', 'submission_id': '1gqsqgz'}
{'comment': 'And so it begins', 'created': '2024-11-14 04:15:34', 'submission_id': '1gqsqgz'}
{'comment': 'Everyone saying “he won’t get confirmed” I’m sure also thought a 2nd Trump presidency was unlikely. Expect him to be confirmed now so you aren’t taken off guard yet again when it inevitably happens.', 'created': '2024-11-14 19:08:16', 'submission_id': '1gqsqgz'}
{'comment': '', 'created': '2024-11-14 03:27:01', 'submission_id': '1gqsqgz'}
{'comment': '... do they still have the House after this? I thought they had barely a majority.', 'created': '2024-11-14 04:29:30', 'submission_id': '1gqsqgz'}
{'comment': 'If he’s not in congress could they report on his investigation?', 'created': '2024-11-14 06:00:37', 'submission_id': '1gqsqgz'}
{'comment': 'GOP circus makes Tiger King characters seem sane 🤪', 'created': '2024-11-14 16:42:25', 'submission_id': '1gqsqgz'}
{'comment': 'Pedo’s got each other’s back.', 'created': '2024-11-14 16:43:31', 'submission_id': '1gqsqgz'}
{'comment': 'I bet this will make Ken Paxton attorney general.', 'created': '2024-11-14 16:47:29', 'submission_id': '1gqsqgz'}
{'comment': "That scumbag is probably going to be absolutely in a worse legal jam if he gets so much as a freaking parking ticket or speeding ticket when he's back in Florida and the authorities find out that he's being accused of giving illegal substances to minors, relationships with underage individuals and human trafficking.", 'created': '2024-11-14 16:53:25', 'submission_id': '1gqsqgz'}
{'comment': 'Haha what a creep.. hell never get confirmed', 'created': '2024-11-14 20:00:36', 'submission_id': '1gqsqgz'}
{'comment': "So, what's the current makeup of the house with all the retirements and resignations? Does Biden have a chance of getting some legislation passed at this point?", 'created': '2024-11-14 04:55:20', 'submission_id': '1gqsqgz'}
{'comment': '*gasp!*', 'created': '2024-11-14 03:24:29', 'submission_id': '1gqsqgz'}
{'comment': 'Can the GOP afford to lose a Seat?', 'created': '2024-11-14 03:31:11', 'submission_id': '1gqsqgz'}
{'comment': "Didn't he just run for relection? WTH?", 'created': '2024-11-14 03:36:27', 'submission_id': '1gqsqgz'}
{'comment': 'Will there be a special election? Maybe we can flip his seat :)', 'created': '2024-11-14 03:59:27', 'submission_id': '1gqsqgz'}
{'comment': 'Shoot. I thought it was for the live-action Beavis and Butthead movie.', 'created': '2024-11-14 15:56:40', 'submission_id': '1gqsqgz'}
{'comment': 'The hearings for him will be absolutely fucking brutal', 'created': '2024-11-14 16:17:43', 'submission_id': '1gqsqgz'}
{'comment': 'Why is he not already in jail? Lock them all up until the end of Eternity.', 'created': '2024-11-14 16:21:40', 'submission_id': '1gqsqgz'}
{'comment': 'This is Awesome. Trump will fire hm within the year. Nobody lasts long', 'created': '2024-11-14 16:32:25', 'submission_id': '1gqsqgz'}
{'comment': 'Let me say something I think Matt will and understand… oink… oink … OINK\n\nDid I say he was a pig?', 'created': '2024-11-15 00:07:03', 'submission_id': '1gqsqgz'}
{'comment': 'He has been under investigation for underage sex trafficking since his first term in office. Now that he has been picked by Trump to be the United States of Americas top law enforcer, he’ll be able to not only squash the investigation against himself but, most importantly, the Epstein -Trump connection. Which is why Trump picked him. WAKE UP AMERICA! Trump is a transactional President. WHAT CAN HE EXTRACT FROM HIS POWER TO BENEFIT HIMSELF. The next 4 years are going to be even more destructive than the first but the majority of American voters won’t even blink an eye.', 'created': '2024-11-14 05:17:25', 'submission_id': '1gqsqgz'}
{'comment': 'Suzy got a divorce after 32 years, her ex was one of the team of Russians and Russian operatives who went to Trump Tower with Don Jr to discuss" Russian adoptions"\n\nShe is the Russian link!', 'created': '2024-11-14 05:06:55', 'submission_id': '1gqsqgz'}
{'comment': "> So now the House investigation on him will end. He wants to go into confirmation without that hanging over him.\n\nIt's so obvious what he's done. Hopefully the report will leak. He has enough Republican enemies in the House that it might.", 'created': '2024-11-14 02:11:10', 'submission_id': '1gqsqgz'}
{'comment': "So the report can't be discussed if a confirmation hearing happens? That's insane to me.", 'created': '2024-11-14 02:47:23', 'submission_id': '1gqsqgz'}
{'comment': 'It would be hilarious he resigns then Trump changes his mind or they vote no on him', 'created': '2024-11-14 03:13:22', 'submission_id': '1gqsqgz'}
{'comment': 'Very attorney general worthy.', 'created': '2024-11-14 02:58:15', 'submission_id': '1gqsqgz'}
{'comment': 'It would sure be unfortunate if they were to get "hacked," and all of that evidence fell into the public\'s hands...', 'created': '2024-11-14 11:55:52', 'submission_id': '1gqsqgz'}
{'comment': 'R Senators are being threatened by MAGA that if they vote against gaetz being AG then they will make sure they don’t get elected next primary', 'created': '2024-11-14 02:27:31', 'submission_id': '1gqsqgz'}
{'comment': 'Yup.', 'created': '2024-11-14 02:12:19', 'submission_id': '1gqsqgz'}
{'comment': "Unfortunately, he represents a safe district, so I'm sure they'll replace him with someone equally nutso.", 'created': '2024-11-14 05:19:31', 'submission_id': '1gqsqgz'}
{'comment': 'The big push is to do all of these through recess appointments.', 'created': '2024-11-14 16:05:59', 'submission_id': '1gqsqgz'}
{'comment': 'Would be spicy if they made it public anyways', 'created': '2024-11-14 02:24:35', 'submission_id': '1gqsqgz'}
{'comment': 'Would be a shame if someone leaked it.', 'created': '2024-11-14 03:01:14', 'submission_id': '1gqsqgz'}
{'comment': 'Can they release the report anyway?', 'created': '2024-11-14 03:01:46', 'submission_id': '1gqsqgz'}
{'comment': 'This is beyond fucked up… This is our life right now? This is really happening… For real. I’m still in shock honestly.', 'created': '2024-11-14 02:52:31', 'submission_id': '1gqsqgz'}
{'comment': 'Don’t forget the Russian asset as the Director of National Intelligence.', 'created': '2024-11-14 15:17:41', 'submission_id': '1gqsqgz'}
{'comment': "Markwayne Mullin had interesting words for Gaetz when he threw McCarthy under the bus 2 years ago. Now he's backtracking somewhat, but boy, Trump must twist a lot of balls to push Gaetz through, and I'm not sure he can do that to enough senators. From the get go I see Collins, Murkowski and McConnell to be against, and if McConnell is against, he can muster at least dozen more votes to cover his ass, so he wouldn't be 50th opposing vote. Or 51st.", 'created': '2024-11-14 02:52:54', 'submission_id': '1gqsqgz'}
{'comment': "But in Gaetz's mind, at least the investigation gets tossed. His win either way, I guess. If Gaetz gets confirmed, McCarthy better know where his passport is.", 'created': '2024-11-14 03:21:49', 'submission_id': '1gqsqgz'}
{'comment': 'Well, there’s going to be an open Florida Senate seat…', 'created': '2024-11-14 02:58:07', 'submission_id': '1gqsqgz'}
{'comment': 'We must wait to see who is appointed as Egg Czar.\n\nI think MTG is a natural.', 'created': '2024-11-14 04:14:58', 'submission_id': '1gqsqgz'}
{'comment': 'Release the report and don’t confirm him.\xa0\n\nOut at second. Out at first. Holy cow.\xa0', 'created': '2024-11-14 03:26:37', 'submission_id': '1gqsqgz'}
{'comment': '"If you wanted to troll the libs, who would you nominate for your cabinet?"', 'created': '2024-11-14 03:04:34', 'submission_id': '1gqsqgz'}
{'comment': 'I’m sure Desantis and Trump have a list of MAGA losers to appoint until a special election.', 'created': '2024-11-14 02:24:24', 'submission_id': '1gqsqgz'}
{'comment': ">He was just re-elected last week. Can he resign form the term which hasn't started yet? \n\nThe answer is no. \n\n>I would love to hear Kevin McCarthy's reaction to this latest twist.\n\nI would also like to be a fly on the wall when Kevin saw the news. Probably burst a vein in his forehead or had heart attack.", 'created': '2024-11-14 02:47:55', 'submission_id': '1gqsqgz'}
{'comment': "He resigned from current term which runs until Jan. And he should be entitled to but won't show up to swearing in, so it just continues to be vacant.", 'created': '2024-11-14 05:09:13', 'submission_id': '1gqsqgz'}
{'comment': 'Not a silver lining, Friday was when the house ethics committee on Gaetz was to come out. Trump gave the fucking pedophile a way out.', 'created': '2024-11-14 02:46:51', 'submission_id': '1gqsqgz'}
{'comment': 'Unfortunately, his district is deep red. He will likely be replaced by another MAGA politician.', 'created': '2024-11-14 02:28:10', 'submission_id': '1gqsqgz'}
{'comment': 'Not sure if the results in his 2024 Florida election have even been certified. But in the process of looking, I found this bit of Florida election law. \n\n[Statutes & Constitution :View Statutes : Online Sunshine](http://www.leg.state.fl.us/Statutes/index.cfm?App_mode=Display_Statute&Search_String=&URL=0100-0199/0102/Sections/0102.168.html) \n\nOur friends here from Florida might be able to sort this all out.', 'created': '2024-11-14 03:08:12', 'submission_id': '1gqsqgz'}
{'comment': 'I hope someone leaks the report.', 'created': '2024-11-14 04:52:37', 'submission_id': '1gqsqgz'}
{'comment': '"He\'s a great pick and totally qualified." *Some shithead maga senator on fox news', 'created': '2024-11-14 16:15:25', 'submission_id': '1gqsqgz'}
{'comment': "From what I've seen, Dems will end up with between 212 to 215 House seats. \n\nIf the higher figure turns out to be final, the GOP would have 220 seats — or 217 seats if you factor in the three temporary vacancies. \n\nI don't see Dems flipping those seats in special elections. Two are in severely gerrymandered Florida. And the sprawling NY-21 was won by Elise Stefanik with 62.3% of the vote. For it to go blue would require a 1974-style blowout.", 'created': '2024-11-14 04:57:27', 'submission_id': '1gqsqgz'}
{'comment': '>Now that he has been picked by Trump to be the United States of Americas top law enforcer, he’ll be able to not only squash the investigation against himself but, most importantly, the Epstein -Trump connection.\n\nAny Trump Republican would have done that. \n\nBut Gaetz is crazy MAGA. He will hire a fleet of lawyers to turn DOJ into a retribution machine. And funnel information from DOJ to Trump that he can use to blackmail people.', 'created': '2024-11-14 14:04:18', 'submission_id': '1gqsqgz'}
{'comment': "This is trump's political genius. He creates so many issues, stories, controversies we can not focus on them because the next day there is even more to talk about.", 'created': '2024-11-14 15:36:31', 'submission_id': '1gqsqgz'}
{'comment': 'Really? OMG on the news and stuff they were saying she was the one that may slow trump on the crazy. I guess I was wrong', 'created': '2024-11-14 08:53:01', 'submission_id': '1gqsqgz'}
{'comment': 'Hopefully so! I peeked over at the republican subreddit and they aren’t happy about his appointment.', 'created': '2024-11-14 02:18:33', 'submission_id': '1gqsqgz'}
{'comment': 'I heard the report was going to be made public on Friday, it was on CNN or MSNBC tonight.\n\nWho knows now......hope they show it too!', 'created': '2024-11-14 06:17:00', 'submission_id': '1gqsqgz'}
{'comment': 'Gaetz’ enemies will fold because Trump will tell them to and he’s the returning hero so get on this train or get under it. He will be in control of the House and the Senate and he can do whatever the fuck he wants because he proved democrats were too lame, apathetic and lazy to prevent the other side from re-electing him even though his first term was a bit of a train wreck. You think democratic leadership has any influence? NO! Their constituents don’t vote! Or at least not enough to affect the most important election of our lifetime. And they had the numbers to do it.', 'created': '2024-11-14 03:43:25', 'submission_id': '1gqsqgz'}
{'comment': 'He has enemies in the Senate too. Trump can nominate whoever he wants, but that doesn’t mean he’ll get confirmed for the position. I think his chances of getting the nom are not great.', 'created': '2024-11-14 13:48:32', 'submission_id': '1gqsqgz'}
{'comment': 'There won’t be any confirmation hearings. Trump ordered the republicans in the Senate to call for a recess when he is inaugurated so he can make recess appointments and skip confirmation.', 'created': '2024-11-14 03:29:48', 'submission_id': '1gqsqgz'}
{'comment': 'Yeah. MAGA isnt good at getting their candidates elected. Only Trump bucks that trend', 'created': '2024-11-14 02:44:41', 'submission_id': '1gqsqgz'}
{'comment': 'How much water will that carry for senators who have up to 6 years left in their term though', 'created': '2024-11-14 03:04:28', 'submission_id': '1gqsqgz'}
{'comment': 'A lot of these guys have 6 year terms they might give a shit.', 'created': '2024-11-14 04:06:11', 'submission_id': '1gqsqgz'}
{'comment': 'Not much to be afraid of for the senators that count. Thune is now the leader and they threatened him the same way. Collins, Murkowski are safe. McConnell is retiring in two years. So many Republicans hate Gaetz this was a dumb pick. The dimentia is already showing.', 'created': '2024-11-14 12:45:38', 'submission_id': '1gqsqgz'}
{'comment': 'Umm those Rs will still get reelected. Just look at the last election. Cruz won in a landslide.', 'created': '2024-11-14 04:45:32', 'submission_id': '1gqsqgz'}
{'comment': 'Not when the Senate has abdicated their power completely to Trump and allowing him to just do recess appointments he wont. Also the Republicans are spineless cowards who will cave completely. Gaetz will be AG.', 'created': '2024-11-14 02:17:40', 'submission_id': '1gqsqgz'}
{'comment': 'They could have video of him raping babies and it wouldn’t mean a thing.', 'created': '2024-11-14 03:22:22', 'submission_id': '1gqsqgz'}
{'comment': "Too bad there's no one with unlimited power who could demand it be released...\n\n\nEven if SCOTUS rules it was unconstitutional, can't put the cat back in the bag. Internet is forever", 'created': '2024-11-14 03:29:23', 'submission_id': '1gqsqgz'}
{'comment': "The ethics committee is chaired by a Republican who has already said it won't be coming out if Gaetz resigns, which he has.\n\n>“Once the investigation is complete, the Ethics Committee will meet as a committee. We will then return our findings. If Matt Gaetz is still a member of Congress, then that will occur. If Matt has resigned, then this ethics investigation, like many others in the past, will end again,” Guest told reporters about the impact of Gaetz being picked for attorney general", 'created': '2024-11-14 04:30:21', 'submission_id': '1gqsqgz'}
{'comment': "I'm sure it'll wind up in a reporter's hands somehow.", 'created': '2024-11-14 03:16:42', 'submission_id': '1gqsqgz'}
{'comment': "Michael Guess (R-Mississippi) is the chairman of ethics committee and pretty plainly said he'd quash it.\n\n>“Once the investigation is complete, the Ethics Committee will meet as a committee. We will then return our findings. If Matt Gaetz is still a member of Congress, then that will occur. If Matt has resigned, then this ethics investigation, like many others in the past, will end again,” Guest told reporters about the impact of Gaetz being picked for attorney general.", 'created': '2024-11-14 04:29:22', 'submission_id': '1gqsqgz'}
{'comment': "Dudes already saying he's running for a third term in 2028.", 'created': '2024-11-14 03:54:41', 'submission_id': '1gqsqgz'}
{'comment': 'Republicans are just going to hold pro forma recesses so that Trump can make appointments without any confirmation hearings.', 'created': '2024-11-14 03:13:07', 'submission_id': '1gqsqgz'}
{'comment': 'would be funny if he pulled enough crazies from congress that he looses the majority.', 'created': '2024-11-14 03:34:34', 'submission_id': '1gqsqgz'}
{'comment': 'Nope, Gaetz is House', 'created': '2024-11-14 04:29:01', 'submission_id': '1gqsqgz'}
{'comment': "She'd still be a yolk", 'created': '2024-11-14 04:33:22', 'submission_id': '1gqsqgz'}
{'comment': 'Unlike the Senate, governors do not make interim appointments to House seats. \n\nAfter the departure of George Santos, people in NY-03 had to wait for a special election which was won by Democrat Tom Suozzi. \n\nSo if Gaetz does not take his seat in the next Congress, Republicans will have 3 fewer seats than anticipated when Elise Stefanik (NY-21) and Mile Waltz (FL-06) take up their administration jobs.', 'created': '2024-11-14 02:53:45', 'submission_id': '1gqsqgz'}
{'comment': ">I’m sure Desantis and Trump have a list of MAGA losers to appoint until a special election.\n\nThey can't appoint anyone to a house seat. Also DeSantis may take Rubio seat if he comes to arrangement with his Lt governor. Cause a senate seat out of Florida doesn't come around often that's open.", 'created': '2024-11-14 02:49:00', 'submission_id': '1gqsqgz'}
{'comment': 'But it could be someone easier to challenge, even if it’s at the primary level where a non-MAGA Republican could challenge them. Appointees are toss-ups with the public who can be fickle about non-elected officials.', 'created': '2024-11-14 02:59:20', 'submission_id': '1gqsqgz'}
{'comment': 'But it sounds like his seat will be empty for awhile, which is a good thing.', 'created': '2024-11-14 06:41:37', 'submission_id': '1gqsqgz'}
{'comment': 'Okay, and do they have enough of a majority to actually govern in the meantime?', 'created': '2024-11-14 06:50:50', 'submission_id': '1gqsqgz'}
{'comment': "I think she can be a buffer for crazy. Indications were that she was the one that helped rein him in and keep him on message until Corey Lewandowski came back in and blew up all kinds of shit. Trump brought him back into the fold because Trump just had a sneaking suspicion that he was being too managed.\n\nWe'll see. He seems to trust her, so we'll see how it goes for her.", 'created': '2024-11-14 17:17:07', 'submission_id': '1gqsqgz'}
{'comment': 'Her role during the campaign and now in the white house is to keep the Clown Car people of MAGA out of the ear of donnie.', 'created': '2024-11-14 15:35:07', 'submission_id': '1gqsqgz'}
{'comment': 'Didn’t take long for them to enter the find out stage', 'created': '2024-11-14 02:38:28', 'submission_id': '1gqsqgz'}
{'comment': 'They are hating most of Trump’s appointees. 😋', 'created': '2024-11-14 02:37:40', 'submission_id': '1gqsqgz'}
{'comment': 'Republicans: he’s out of Congress. It’s cool. You can safely shit on him now!', 'created': '2024-11-14 03:00:50', 'submission_id': '1gqsqgz'}
{'comment': 'Just wanted to say that you are brave for going over to that subreddit! Holy shit it’s scary over there- took me about 5 mins and then I couldn’t stand it haha', 'created': '2024-11-14 04:18:58', 'submission_id': '1gqsqgz'}
{'comment': 'I went to the conservative subreddit and got this gem…\n\nhttps://preview.redd.it/9jwuoneiws0e1.jpeg?width=828&format=pjpg&auto=webp&s=9c33d63bc08d7387a5b5cbb3cd5ac2d531476a80\n\nYou couldn’t make this up if you tried, jfc…', 'created': '2024-11-14 06:13:59', 'submission_id': '1gqsqgz'}
{'comment': 'Give the republicans sometime. In a day or two they will be cheering all the finest cabinet members watch', 'created': '2024-11-14 03:28:35', 'submission_id': '1gqsqgz'}
{'comment': 'Trump has told the Senate GOP leadership to go into recess so he can just appoint interim secretaries without confirmation. Thune, the new Senate majority leader, has "[made clear that options like recess appointments remained on the table](https://www.yahoo.com/news/thune-democrat-cooperation-needed-avoid-223536763.html)," whatever that\'s supposed to mean. "And avoiding them, Thune emphasized, would require the cooperation of Democrats."', 'created': '2024-11-14 13:57:16', 'submission_id': '1gqsqgz'}
{'comment': 'The senate doesn’t need to comply, and taking politicians power away voluntarily isn’t really something people in power would do without good reason. But I totally agree it’s scary and dangerous he even asked. But do note that recess appointments are only temporary (even if valid), and to stay permanently they need to be approved by the senate.', 'created': '2024-11-14 04:13:47', 'submission_id': '1gqsqgz'}
{'comment': "John Thune is going to be the new Majority Leader. He's more McConnell than Scott. As in old school Republican (relatively speaking). Thune *might* go along with Trump if he sees a benefit to him or the Republican party, but he may well believe it makes more sense to go through confirmations as is generally expected. We'll have to see.", 'created': '2024-11-14 04:14:05', 'submission_id': '1gqsqgz'}
{'comment': 'Yeah, but Elon might bankroll those candidates\xa0', 'created': '2024-11-14 03:20:16', 'submission_id': '1gqsqgz'}
{'comment': 'Came here to say this. MAGA primaries in purple states just end up getting Democrats elected.', 'created': '2024-11-14 03:10:33', 'submission_id': '1gqsqgz'}
{'comment': "There's TWENTY Republican Senators up for reelection in 2026. \xa0Theirs only like 13 Democrats. \xa0They're gonna use Trump like a giant ball and chain on the Republican Party and go after as many seats as possible.\n\nThose are the Senators Democrats need to lean hard on this next two years. Democrats need to name and shame them right now, and publish a review of their voting record every week until 2026.\xa0", 'created': '2024-11-14 05:53:18', 'submission_id': '1gqsqgz'}
{'comment': 'Recess appointments or everybody gets "acting" roles that don\'t require confirmation', 'created': '2024-11-14 03:13:25', 'submission_id': '1gqsqgz'}
{'comment': 'I saw one Republican congressman say that the party must be unified; That if Trump tells them to jump three feet and scratch their head that they must jump three feet and scratch their head.\n\n\nhttps://www.mediaite.com/tv/house-republican-declares-absolute-fealty-to-trump-trump-says-jump-three-feet-high-we-all-jump/', 'created': '2024-11-14 03:09:53', 'submission_id': '1gqsqgz'}
{'comment': 'MAGA men & women would get their rocks off🙄', 'created': '2024-11-14 03:31:59', 'submission_id': '1gqsqgz'}
{'comment': 'We tried to tell them. Now they’re mad that project 2025 is real.', 'created': '2024-11-14 15:31:09', 'submission_id': '1gqsqgz'}
{'comment': 'Shit, if they make it so that Trump can run for a third term, I wonder if Obama will try for a third as well? Trump might very well get the match he dreamed of, himself vs Obama. While I’d rather someone get the Democratic nomination along the lines of Bernie Sanders, it would be entertaining to see Trump and Obama run against each other and Trump lose to him. Then get the popcorn for the ensuing MAGA meltdown.', 'created': '2024-11-15 02:20:01', 'submission_id': '1gqsqgz'}
{'comment': 'You guys are more optimistic than I am. This is the same mcconnell who blamed trump for the insurection and the voted not to convict him in the second impeachment trial.', 'created': '2024-11-14 03:20:08', 'submission_id': '1gqsqgz'}
{'comment': 'No, meaning he can (and will) run for that Senate seat.', 'created': '2024-11-14 07:23:35', 'submission_id': '1gqsqgz'}
{'comment': "Awhile? There won't be a special election soon?", 'created': '2024-11-14 16:53:07', 'submission_id': '1gqsqgz'}
{'comment': "Sadly correct. \n\nThough the new Congress doesn't get sworn in until January 3rd. Vote counting is still going on.", 'created': '2024-11-14 07:21:37', 'submission_id': '1gqsqgz'}
{'comment': 'Fucking dimwits. They elect trump and president and expect him to be competent when appointing his cabinet.🙄', 'created': '2024-11-14 03:32:25', 'submission_id': '1gqsqgz'}
{'comment': 'Ya we blew past the fuck around part.', 'created': '2024-11-14 03:06:34', 'submission_id': '1gqsqgz'}
{'comment': "I'll wait until that happens. We know the republicans now that they'll always fall in line, unfortunely.", 'created': '2024-11-14 05:22:05', 'submission_id': '1gqsqgz'}
{'comment': 'God I can’t wait for the find out stage, a bitter sweet treat for this terrible election', 'created': '2024-11-16 09:20:56', 'submission_id': '1gqsqgz'}
{'comment': 'I’m convinced anyone who voted for Trump this year must have some sort of amnesia from his first term. It was an embarrassing shit show every single day.', 'created': '2024-11-14 02:55:30', 'submission_id': '1gqsqgz'}
{'comment': 'The Republicans know now', 'created': '2024-11-14 02:46:45', 'submission_id': '1gqsqgz'}
{'comment': 'The mind boggles of having a cabinet with both Gabbard and Marco Rubio. Those two people...do not at all have similar political thought processes', 'created': '2024-11-14 04:24:39', 'submission_id': '1gqsqgz'}
{'comment': 'Well actually find that to be a good thing because a lot of his supporters just love everything he does. I don’t know wtf they expected though. Trump has to have all the boot lickers appointed. He can’t have people telling him what to do.', 'created': '2024-11-14 03:26:16', 'submission_id': '1gqsqgz'}
{'comment': 'Damn it, I KNEW I needed more popcorn!', 'created': '2024-11-14 03:38:59', 'submission_id': '1gqsqgz'}
{'comment': 'I mean that definitely sounds sarcastic even down to the name', 'created': '2024-11-14 06:21:08', 'submission_id': '1gqsqgz'}
{'comment': 'I’m from Florida. Let me tell ya, it is commonplace here. I don’t know why, but the Florida legislature seems only too enthusiastic to hand DeSantis their power.', 'created': '2024-11-14 04:48:54', 'submission_id': '1gqsqgz'}
{'comment': "I can't see any sane Senate leader just giving up a core constitutional power like that... for any president. \xa0It would basically give away the only real unique power the Senate has.\xa0", 'created': '2024-11-14 05:49:34', 'submission_id': '1gqsqgz'}
{'comment': 'Until Republicans nuke all those various subsidies for green energy to help out there buddies in big oil...', 'created': '2024-11-14 04:27:51', 'submission_id': '1gqsqgz'}
{'comment': 'Pay per vote', 'created': '2024-11-14 06:22:16', 'submission_id': '1gqsqgz'}
{'comment': 'Elon is not Trump - no one else has whatever it is that Trump has. We have seen it play out time and time again. \n\nTrump backed candidates do not have a great track record of election, but Trump himself does. \n\nOnce we are through these next 4 years, assuming our Democracy is still intact, we never have to worry about his dumbass ever again.', 'created': '2024-11-14 16:33:45', 'submission_id': '1gqsqgz'}
{'comment': 'But they could get Republican incumbents unelected. Which is what the Republican incumbents care about.', 'created': '2024-11-15 00:55:55', 'submission_id': '1gqsqgz'}
{'comment': '"He\'s just kidding" yea ok. Now who\'s huffing copium', 'created': '2024-11-14 15:35:26', 'submission_id': '1gqsqgz'}
{'comment': 'This sounds like DeSatan will appoint someone to fill it, not by special election:\n\n"The speaker said he asked Gaetz for his reasoning for stepping down from his post, and he cited state law that outlines "an 8-week period to select and fill a vacant seat."\n\n"If you start the clock now, if you do the math, we may be able to fill that seat as early as Jan. 3 when we take the new oath of office for the new Congress," Johnson explained."\n\nhttps://www.usatoday.com/story/news/politics/elections/2024/11/13/matt-gaetz-resigns-congress-donald-trump/76271543007/', 'created': '2024-11-14 17:03:06', 'submission_id': '1gqsqgz'}
{'comment': 'His 4D chessboard turned out to be checkers.', 'created': '2024-11-14 03:55:36', 'submission_id': '1gqsqgz'}
{'comment': 'It’s ok, they are enthralled with all of his other appointments. Real fighters', 'created': '2024-11-14 04:28:29', 'submission_id': '1gqsqgz'}
{'comment': 'They are just finding out what a tariff is, too.', 'created': '2024-11-14 09:33:58', 'submission_id': '1gqsqgz'}
{'comment': 'The vote was the fuck around part', 'created': '2024-11-14 03:08:22', 'submission_id': '1gqsqgz'}
{'comment': 'He left office with a 29% approval rating. Like, WTF. Racism, xenophobia, and misogyny are a hell of a drug.', 'created': '2024-11-14 05:34:51', 'submission_id': '1gqsqgz'}
{'comment': 'I will admit, that he had some really competent people in his first administration like that 4 star General. I think that helped his administration “look” normal. Now the competent people don’t want to work for him and so all he has left are the idiots.', 'created': '2024-11-14 04:20:49', 'submission_id': '1gqsqgz'}
{'comment': "I'm thinking they set aside any morals or ethics they had left and voted for hate and their pocketbook.", 'created': '2024-11-14 09:35:18', 'submission_id': '1gqsqgz'}
{'comment': 'I can’t begrudge in some regards. Probably a lot of trauma blocking going on.', 'created': '2024-11-14 03:11:41', 'submission_id': '1gqsqgz'}
{'comment': 'I work in the IT department of a Customs Broker and we still have PTSD from his last term where we spent the weekends following his Twitter account to see what kind of shit show our next week was going to be work wise based on what tariffs he decided to implement through tweets at 2 am.', 'created': '2024-11-14 14:47:49', 'submission_id': '1gqsqgz'}
{'comment': 'My guess was lazy Russian? just not even trying anymore lol', 'created': '2024-11-14 06:23:40', 'submission_id': '1gqsqgz'}
{'comment': "Yeah, my gut instinct is to think you're right on this. It's one thing to support Trump (or any Republican) using the power, it's another to give up the power (even temporarily) to support him.\n\nMcConnell never gave up power, just bent the rules as he saw fit to help out his team. With that logic, it makes more sense to think Thune will do similar.\n\nI still think we'll have to see. I've been shocked by enough that I don't really take norms for granted anymore. But I think your logic is sound.", 'created': '2024-11-14 06:34:26', 'submission_id': '1gqsqgz'}
{'comment': 'The Senate has no power anymore. It is de facto dead. There was a short period once the Nazis came to power where the Reichstag still functioned, if performatively. Ours might last slightly longer. But not by much.', 'created': '2024-11-14 06:08:56', 'submission_id': '1gqsqgz'}
{'comment': 'Y’all are straight up not living in reality. What the fuck has happened that made you think there’s a chance they won’t ALL fall to this dictator? They will. They have ALL proven it time and time again.', 'created': '2024-11-14 15:43:18', 'submission_id': '1gqsqgz'}
{'comment': 'Cheese board🤔?', 'created': '2024-11-14 04:06:20', 'submission_id': '1gqsqgz'}
{'comment': "Nah it's just a pile of shit covering an older pile of shit.", 'created': '2024-11-14 05:19:41', 'submission_id': '1gqsqgz'}
{'comment': 'you mean tic-tac-toe?', 'created': '2024-11-14 07:05:10', 'submission_id': '1gqsqgz'}
{'comment': "No doubt. You and I didn't want to fuck around.", 'created': '2024-11-14 03:11:12', 'submission_id': '1gqsqgz'}
{'comment': 'I did take a photo of my absentee ballot I mailed in more for my own sanity but not thinking that could be my last vote allowed in America for President.', 'created': '2024-11-14 15:37:34', 'submission_id': '1gqsqgz'}
{'comment': "Don't give them more excuses. I want them to feel everything they have brought on us. They should not get an out.", 'created': '2024-11-14 04:18:53', 'submission_id': '1gqsqgz'}
{'comment': "We're watching Turtle Mitch's legacy of Senate manipulation and power be flushed down the drain right in front of him. \xa0It's glorious.\n\nI just can't fathom how people are so willing to give up such authority so easily. \xa0", 'created': '2024-11-14 16:23:58', 'submission_id': '1gqsqgz'}
{'comment': 'Double cheeseburger board...🤔', 'created': '2024-11-14 04:32:09', 'submission_id': '1gqsqgz'}
{'comment': 'Forbidden fudge.', 'created': '2024-11-14 13:09:40', 'submission_id': '1gqsqgz'}
{'comment': 'Never ceases to disappoint just how many people thought fucking around was worth it just to upset others… I’d venture to guess the sadism was more fleeting than they anticipated', 'created': '2024-11-14 03:18:49', 'submission_id': '1gqsqgz'}
{'comment': 'Fuck their feelings?', 'created': '2024-11-14 05:20:16', 'submission_id': '1gqsqgz'}
{'comment': "I didn't say all regards. Just some. Not a blanket pardon for incompetence.", 'created': '2024-11-14 18:43:50', 'submission_id': '1gqsqgz'}
{'comment': 'I genuinely think Russia is carrot-and-sticking them all. They’re being bribed and threatened. Either with kompromat or killing their families. I’m not even being hyperbolic. I genuinely believe that because NOBODY is this big a villain in their own minds. Well, Trump maybe. But not a whole party.', 'created': '2024-11-14 16:26:23', 'submission_id': '1gqsqgz'}
{'comment': "Trump is too weird to eat cheeseburgers; it's a hamberder board", 'created': '2024-11-14 06:20:08', 'submission_id': '1gqsqgz'}
{'comment': 'Uuuh, yes, super size it, please… super size it, plea… super size it, please…', 'created': '2024-11-14 06:16:07', 'submission_id': '1gqsqgz'}
{'comment': 'Hahaha, cutting their noses off to "own the libs". Pretty sure this isn\'t gonna work out to well for them.', 'created': '2024-11-14 22:47:17', 'submission_id': '1gqsqgz'}
{'comment': 'Nah fuck their entire existence', 'created': '2024-11-14 06:11:49', 'submission_id': '1gqsqgz'}
{'comment': 'Slathered in ketchup.', 'created': '2024-11-14 07:04:06', 'submission_id': '1gqsqgz'}
{'comment': 'Lol little did they know they were the libs being owned all along', 'created': '2024-11-14 23:00:06', 'submission_id': '1gqsqgz'}
{'comment': 'This one.', 'created': '2024-11-14 06:49:16', 'submission_id': '1gqsqgz'}
{'comment': 'Ah, another one of those "best people."\n\n> *[The "Deus vult" slogan is used by perpetrators of right-wing terrorism; it was repeatedly used by the perpetrator of the 2017 Quebec City mosque shooting and was one of the tattoos on the body of the perpetrator of the 2023 Allen, Texas outlet mall shooting. It was among the slogans and symbols used during the violent far-right riot in Charlottesville, Virginia in 2017.](https://en.wikipedia.org/wiki/Deus_vult#Adoption_by_far-right_as_slogan)*', 'created': '2024-11-14 01:50:28', 'submission_id': '1gqsfst'}
{'comment': 'White Christian nationalist.\n\n\nThe loonies now run the ward', 'created': '2024-11-14 02:20:25', 'submission_id': '1gqsfst'}
{'comment': 'Dude looks like he’s part of a white supremacist prison gang.', 'created': '2024-11-14 07:12:40', 'submission_id': '1gqsfst'}
{'comment': "Yep. I said it many times yesterday when everyone was saying he's a Fox personality. \n\nHe's actually a piece of shit on a good day. On a bad day, he's a monster.", 'created': '2024-11-14 02:44:21', 'submission_id': '1gqsfst'}
{'comment': "What a loser. Mf thinks he's some sort of Templar.\n\nThis ain't Assassin's Creed, you racist cocksucker.", 'created': '2024-11-14 07:19:06', 'submission_id': '1gqsfst'}
{'comment': 'Trump 2.0 is White Christian Nationalism 110%', 'created': '2024-11-14 04:56:02', 'submission_id': '1gqsfst'}
{'comment': 'Speaking as a Catholic, Catholics should be the last folks to espouse Christian nationalism. Conservative Catholics are severely outnumbered by conservative Protestants.', 'created': '2024-11-14 02:47:59', 'submission_id': '1gqsfst'}
{'comment': 'That pec cross is looking kinda sus, too.', 'created': '2024-11-14 02:12:05', 'submission_id': '1gqsfst'}
{'comment': 'This a-hole is going to be thrown to the curb in 4 years, probably sooner. He will be a scapegoat for Trump, a useless dupe, a complete patsy, a poltroon. He acts tough but is afraid of women, poc and lgbtq. He is a coward in a poorly made wolf costume.', 'created': '2024-11-14 02:31:06', 'submission_id': '1gqsfst'}
{'comment': 'He shaves his man-tits weird.', 'created': '2024-11-14 10:55:44', 'submission_id': '1gqsfst'}
{'comment': "Our country is so f'd.", 'created': '2024-11-14 14:18:16', 'submission_id': '1gqsfst'}
{'comment': "Yeah he's got some issues...", 'created': '2024-11-14 03:38:42', 'submission_id': '1gqsfst'}
{'comment': 'Also the catchphrase of the idiots who marched out into the Syrian desert in chainmail armor to face Saladin without adequate water.\n\nThe Crusader States were largely evil, but also an interesting and complex phenomena. But he only wants to imitate their stupidest decisions.', 'created': '2024-11-14 15:04:35', 'submission_id': '1gqsfst'}
{'comment': 'So much for Trump going to unite the country!', 'created': '2024-11-14 15:11:39', 'submission_id': '1gqsfst'}
{'comment': 'Ten bucks says they change it back to Secretary of War.', 'created': '2024-11-14 15:29:57', 'submission_id': '1gqsfst'}
{'comment': "Yeah that's an Iron Cross, this guy is a Nazi. The claim that it's something else is a very common tactic of White Supremacists to hide their true identity.", 'created': '2024-11-14 05:27:33', 'submission_id': '1gqsfst'}
{'comment': 'We’ve been fucked ever since our anchor being, Harambe, died', 'created': '2024-11-15 01:01:39', 'submission_id': '1gqsfst'}
{'comment': 'He would not pass a MEPS physical with a hate tattoo, how is he supposed to lead the DOD?', 'created': '2024-11-15 10:27:37', 'submission_id': '1gqsfst'}
{'comment': 'This will be a “fun” 4 years', 'created': '2024-11-14 05:48:10', 'submission_id': '1gqsfst'}
{'comment': "God told me that it is his wish for me to sucker punch the fuck out of this guy.\n\nI can't disobey obviously because he's God, right? So now since I can claim God permits my actions, I can do no wrong!", 'created': '2024-11-14 16:53:21', 'submission_id': '1gqsfst'}
{'comment': 'So fucking unqualified', 'created': '2024-11-14 20:50:17', 'submission_id': '1gqsfst'}
{'comment': 'I’ll try to spin a hopeful silver lining. \n\nHegseth is (a) overly concerned with culture wars (that are actually small-ish in scale) and (b) he’s completely inexperienced at managing any organization. \n\nIf we really focus on resisting him, we may able to shift his focus, waste his time and limit his effectiveness. And maybe that makes a difference on the margins.', 'created': '2024-11-14 16:52:42', 'submission_id': '1gqsfst'}
{'comment': "Yea so... I won't be paying\xa0taxes anymore.\xa0", 'created': '2024-11-14 03:30:29', 'submission_id': '1gqsfst'}
{'comment': "He's one step away from full blown Aryan Brotherhood membership.... just needs to deport some non whites.", 'created': '2024-11-14 03:45:59', 'submission_id': '1gqsfst'}
{'comment': 'I guarantee he has a grindr account!!!', 'created': '2024-11-14 03:58:36', 'submission_id': '1gqsfst'}
{'comment': 'DEI hire', 'created': '2024-11-14 04:26:56', 'submission_id': '1gqsfst'}
{'comment': 'This guy should be in charge of nothing including the tattoos go on his body', 'created': '2024-11-14 04:33:32', 'submission_id': '1gqsfst'}
{'comment': 'https://preview.redd.it/6xtqcah89t0e1.jpeg?width=1125&format=pjpg&auto=webp&s=3657ba8760120bc15ce7e482bb19718aeeec2ba8', 'created': '2024-11-14 07:24:58', 'submission_id': '1gqsfst'}
{'comment': "He looks like trash\n\nOh, and he also said he hasn't washed his hands in 10 years. \n\nSaid he doesn't believe in germs because he can't see them, so they don't exist.", 'created': '2024-11-14 09:06:03', 'submission_id': '1gqsfst'}
{'comment': "That's just a pic of some random crackhead", 'created': '2024-11-14 09:10:31', 'submission_id': '1gqsfst'}
{'comment': 'Its astonishing how in your face racist you can be and its okey apparently', 'created': '2024-11-14 09:59:26', 'submission_id': '1gqsfst'}
{'comment': 'The plan is to bring about the apocalypse. The death cult has taken over', 'created': '2024-11-14 11:52:08', 'submission_id': '1gqsfst'}
{'comment': 'America itself is a white supremacist statehood . The founding fathers who you hold up as honorable and platter their faces everywhere engaged in genocide and slavery .', 'created': '2024-11-14 12:14:43', 'submission_id': '1gqsfst'}
{'comment': 'What does the Hebrew tattoos say?', 'created': '2024-11-14 16:37:58', 'submission_id': '1gqsfst'}
{'comment': 'FYI: if you see what is coming, you know that we are going to war with Iran. It’s definitely happening in the next 500 days. Israel attacking Hezbollah is the hand being tipped. If you have kids in prime military age group, make a plan now to avoid military service. Like, NOW!', 'created': '2024-11-14 17:22:18', 'submission_id': '1gqsfst'}
{'comment': 'Can. World War be far behind', 'created': '2024-11-14 18:26:17', 'submission_id': '1gqsfst'}
{'comment': 'Anyone know what the Hebrew on his arm says?', 'created': '2024-11-14 19:22:24', 'submission_id': '1gqsfst'}
{'comment': "Shhh, don't make him more popular...", 'created': '2024-11-14 19:38:34', 'submission_id': '1gqsfst'}
{'comment': 'To call this “problematic” tampers down how dangerous this is. Leading the Pentagon and the 1.3 million soldiers with it means defending the United States from enemies, but this guy sees all enemies of Christianity as enemies of the United States. And probably sees those neutral or even indifferent to Christianity as enemies, as well.\n\nWe can go into the bankrupt philosophy of Christian nationalism, the embedded racism of Manifest Destiny types of policy, and how Christianity has been co-opted by right-wing extremism, but the more important point is that this isn’t an independent, objective thinker. This is a highly impressionable little boy who probably believes whatever his friends on the internet say.\n\nAnd he’s gonna lead the most powerful force in the world?\n\nThe military should be putting America First. Not Christian nationalism.', 'created': '2024-11-14 19:43:10', 'submission_id': '1gqsfst'}
{'comment': 'If it looks like a white supremacist, talks like a white supremacist, and has tattoos like a white supremacist… Probably a great candidate for US Secretary of Defense right? /s', 'created': '2024-11-15 01:49:02', 'submission_id': '1gqsfst'}
{'comment': 'Is that the flag of Georgia? I hope that means he supports protecting breakaway countries from Russian aggression.', 'created': '2024-11-14 04:16:32', 'submission_id': '1gqsfst'}
{'comment': 'I am hoping that the appointment of all these Xtian nationalists will ultimately result in them being locked away for Constitutional violations.\n\nHegseth orders military to artillary an ACLU office? Straight to jail!\n\nGaetz orders an illegal prosecution? Straight to jail!\n\nNoem murders many more goats and dogs? Straight to jail!', 'created': '2024-11-14 16:17:43', 'submission_id': '1gqsfst'}
{'comment': None, 'created': '2024-11-14 02:56:10', 'submission_id': '1gqsfst'}
{'comment': 'Hillbilly hootenanny', 'created': '2024-11-14 03:47:38', 'submission_id': '1gqsfst'}
{'comment': 'Yep, the inmates are running the asylum.\n\nJust wait - it will get worse.', 'created': '2024-11-14 13:31:18', 'submission_id': '1gqsfst'}
{'comment': 'Not the loonies.\n\nThere has been exactly one other Christian nationalist group in history. Led by a burnout of a douche, funny mustache, failure at art. People may have heard of him.', 'created': '2024-11-14 18:02:28', 'submission_id': '1gqsfst'}
{'comment': 'This was their plan all along. Check out the documentary, "Bad Faith" - it maps their entire political trajectory.', 'created': '2024-11-14 10:18:23', 'submission_id': '1gqsfst'}
{'comment': 'Heretics-the only “unforgivable sin”. They will have their come-uppance in the off-chance the religion they created for power is in fact legit.', 'created': '2024-11-14 05:34:26', 'submission_id': '1gqsfst'}
{'comment': 'Give it a couple of years, he might belong to a white supremacist prison gang yet.', 'created': '2024-11-14 16:40:22', 'submission_id': '1gqsfst'}
{'comment': 'He wishes. He would be a BJ machine for the AB', 'created': '2024-11-14 15:33:59', 'submission_id': '1gqsfst'}
{'comment': 'Hopefully he will really be one some day soon.', 'created': '2024-11-18 16:56:05', 'submission_id': '1gqsfst'}
{'comment': 'So just like Trump, then.', 'created': '2024-11-15 00:42:07', 'submission_id': '1gqsfst'}
{'comment': 'Not to worry, Jesus, Mary and Pope Francis are on our side.', 'created': '2024-11-14 06:01:51', 'submission_id': '1gqsfst'}
{'comment': 'Especially after all the Hispanics are kicked out!', 'created': '2024-11-14 07:44:03', 'submission_id': '1gqsfst'}
{'comment': 'Check how many are on the Supreme court. How many doesn’t matter if you are holding one of the three branches of government. I don’t get how this isn’t a bit worrisome.', 'created': '2024-11-14 09:35:02', 'submission_id': '1gqsfst'}
{'comment': 'Order of the Holy Sepulcher, I think', 'created': '2024-11-14 02:40:41', 'submission_id': '1gqsfst'}
{'comment': 'Apparently he was told to stand down from Biden’s inauguration because of the chest tattoo. Jerusalem Cross, also co-opted by white nationalists.\n\nhttps://www.newsweek.com/pete-hegseth-was-removed-bidens-inauguration-labelled-extremist-1984882', 'created': '2024-11-14 13:02:32', 'submission_id': '1gqsfst'}
{'comment': 'It’s a Jerusalem cross or also known as the Crusader’s cross. It represents the spreading of the faith to the 4 corners of the world and was. Symbol of faith during the Crusades.\n\nDeus Vult also has origins in the crusade so the motif of all his ink seems to be a crusading holy warrior spreading the faith.', 'created': '2024-11-14 20:28:55', 'submission_id': '1gqsfst'}
{'comment': 'Everyone he nominate are going under the bus at some point in the next four years.', 'created': '2024-11-14 16:49:50', 'submission_id': '1gqsfst'}
{'comment': 'Sooner. Trump, who “fired” everyone on his dumbass “reality” show who hired & managed a shitty employee so much so that the koolaid drinkers entertained by his drivel believed America needed a great business man to lead our country out of debt (regardless of how many bankruptcies, fraud instances, etc. his real life ventures had), hires complete turds then fires them repeatedly for purely copying of mafioso reasons.\n\nNobody stands a chance at longevity and there is zero recourse to the “will you accept this rose” brainwashed crew of rejects.', 'created': '2024-11-14 05:39:51', 'submission_id': '1gqsfst'}
{'comment': 'But sure as you’re born, he’ll do some major damage.', 'created': '2024-11-14 04:11:22', 'submission_id': '1gqsfst'}
{'comment': 'That’s the Jerusalem Cross. Symbol of the Crusader Kingdom.', 'created': '2024-11-14 13:43:03', 'submission_id': '1gqsfst'}
{'comment': "It's not an iron cross. It's a symbol of the order of the holy sepulcher. It's a crusader thing.", 'created': '2024-11-14 13:15:18', 'submission_id': '1gqsfst'}
{'comment': 'Nope, it’s Nazis.', 'created': '2024-11-14 08:21:55', 'submission_id': '1gqsfst'}
{'comment': "What makes you think that's going to happen when Trump himself has 9000 lives?", 'created': '2024-11-14 18:07:55', 'submission_id': '1gqsfst'}
{'comment': 'The Cincinnati Zoo killed Harambe', 'created': '2024-11-14 06:01:47', 'submission_id': '1gqsfst'}
{'comment': "Some (too many) of us decided that Harris wasn't perfect, so we didn't need to vote for her.", 'created': '2024-11-14 19:59:00', 'submission_id': '1gqsfst'}
{'comment': 'Not vote', 'created': '2024-11-14 20:08:59', 'submission_id': '1gqsfst'}
{'comment': 'Put Reagan in as president', 'created': '2024-11-14 04:13:49', 'submission_id': '1gqsfst'}
{'comment': 'Stole Native American land and forced blacks here in chains to do free work and be concubines .', 'created': '2024-11-14 12:13:23', 'submission_id': '1gqsfst'}
{'comment': 'Some ()', 'created': '2024-11-14 19:57:22', 'submission_id': '1gqsfst'}
{'comment': 'Hillbilly hootenanny heretic hypocrites', 'created': '2024-11-14 05:35:01', 'submission_id': '1gqsfst'}
{'comment': 'it hasn’t even started. these are the previews,', 'created': '2024-11-14 20:20:27', 'submission_id': '1gqsfst'}
{'comment': 'You know I was going to say how negative that statement is but you’re right! Everyday gets a little bit worse and will continue that way for the next 4 years or even longer….', 'created': '2024-11-14 20:00:11', 'submission_id': '1gqsfst'}
{'comment': 'Yep!', 'created': '2024-11-15 05:01:47', 'submission_id': '1gqsfst'}
{'comment': 'Unless he’s such an ultra hardline Catholic, he believes Pope Francis is an illegitimate anti-pope.\n\nYes, there’s quite a few Catholics that believe this. And they might just have the same exact giant tattoo on their bodies.', 'created': '2024-11-14 16:39:32', 'submission_id': '1gqsfst'}
{'comment': "There are a lot of Catholics on the Supreme Court. But most Catholics are not Christian nationalists.\n\nWe need to get out of the habit of thinking that being conservative and being Christian automatically means Christian nationalist. It can, but it doesn't necessarily. You can absolutely take a conservative understanding of the Constitution (e.g., textualism) and be a Christian, while also believing that our nation was founded as a secular one with no establishment of religion.\n\nI've been noticing this trend of thought within left and center-left circles within the past several months and it's just not true. In some cases it is, but in many cases it is not. We like to put people in boxes when reality is much more nuanced.\n\nIf the Supreme Court were interested in establishing some sort of Christian nationalist state, they wouldn't have ruled in favor of LGBT rights in *Bostock*. In that case, textualists (who are usually conservative) applied a very straightforward logic to the reading of the Constitution and concluded that it violates Title VII to treat a man who's married to a man different from a woman who's married to a man. Of course, liberals would agree, but they'd likely take a different approach to get there.\n\nThat said, I do think that Alito and Thomas have really sketchy interpretations of the Constitution that somehow always find a way to lend itself to positions espoused by Christian nationalists. But they're only 2 justices out of 9. The only new conservative justice since the above decision is Amy Coney Barrett and she's actually turned out to be a relatively fair arbiter of the Constitution. She's likely another example of someone who has a conservative approach to the Constitution and is religious in her personal life, but doesn't appear to let that bias her judgment.", 'created': '2024-11-14 10:03:31', 'submission_id': '1gqsfst'}
{'comment': 'Sure whatever. I mean I believe you, but I agree with athas that it doesn’t _not_ look a bit Nazi-ish.', 'created': '2024-11-14 04:23:22', 'submission_id': '1gqsfst'}
{'comment': 'Yes. And they defend & uphold a catholic precense in Jerusalem and the Holy Land.\n\nSo reconquer it soon?', 'created': '2024-11-14 07:37:32', 'submission_id': '1gqsfst'}
{'comment': 'Nope. Kingdom of Jerusalem.', 'created': '2024-11-14 13:43:18', 'submission_id': '1gqsfst'}
{'comment': 'May he rest in peace and intercede on our behalf before the almighty, wretched though we are.', 'created': '2024-11-14 08:16:56', 'submission_id': '1gqsfst'}
{'comment': 'And to this very day. Work to try and make sure to try put them back into that same bondage. Along with some other suspiciously brown persons. Try to keep their children stupid so they wont see the hatefulness behind their deeds.', 'created': '2024-11-18 16:54:23', 'submission_id': '1gqsfst'}
{'comment': 'That’s JD Vance of Hillbilly Elegy fame influence.', 'created': '2024-11-15 10:30:11', 'submission_id': '1gqsfst'}
{'comment': 'Exactly. We’ve got 4 years - I’m saving my outrage for something truly outrageous. And once he’s ensconced in the Oval Office “outrageous” will happen on the regular, sometimes several times a day. No sense in getting exhausted by it too early.', 'created': '2024-11-14 21:06:14', 'submission_id': '1gqsfst'}
{'comment': 'Yep. The nightmare will commence once Trump takes the oath of office.', 'created': '2024-11-15 03:39:23', 'submission_id': '1gqsfst'}
{'comment': 'I’m Catholic. Amy Coney Barrett is not the same kind of Catholic, she’s part of the Covenant People of Praise, Kavanaugh I don’t trust either.', 'created': '2024-11-14 14:21:43', 'submission_id': '1gqsfst'}
{'comment': 'I’m not saying he’s not nazi-ish, I’m just saying that’s what it looks like.', 'created': '2024-11-14 04:30:26', 'submission_id': '1gqsfst'}
{'comment': 'I’m technically Catholic but do not practice but still have a lot in my family. They are a disgrace to Catholics. Biden is what most Catholics including my family are like. At least in the northeast.', 'created': '2024-11-14 17:32:18', 'submission_id': '1gqsfst'}
{'comment': 'I remember, I think it was after her nomination, while she was claiming to be nonpartisan, she was speaking at the McConnell Center with Mitch looking on.', 'created': '2024-11-14 20:03:29', 'submission_id': '1gqsfst'}
{'comment': 'Again, you can have your personal beliefs and they can be separate from your jurisprudence. \n\nThis is bordering really closely on a form of bigotry. Are we to never accept a Muslim justice? Because Islam has some pretty antiquated ideas on LGBT rights and there really is no form of Islam that’s accepting.', 'created': '2024-11-14 21:22:09', 'submission_id': '1gqsfst'}
{'comment': 'I mean, as bad as things are gonna get, one easy thing we can do as normal Democrats is to be supportive. I know a lot of us feel so much anger and, yes, hate, but we need to keep those in check for the greater good.', 'created': '2024-11-14 01:59:38', 'submission_id': '1gqsb2h'}
{'comment': 'I can appreciate his prose but nothing he said is gonna forestall the damage thats about to be done to our republic. The only thing we can do is hold our noses, stay mentally strong and vote for change in the mid terms', 'created': '2024-11-14 03:04:33', 'submission_id': '1gqsb2h'}
{'comment': 'If we ever have another election, I really hope he runs! He’s exactly the kind of guy the Dems need!', 'created': '2024-11-14 07:28:45', 'submission_id': '1gqsb2h'}
{'comment': 'When I read that title I thought you, u/pleasureismylife were the governor of kentucky.', 'created': '2024-11-14 03:27:10', 'submission_id': '1gqsb2h'}
{'comment': 'Hate to dissent from any enthusiasm about a guy who won so sweetly/narrowly, but he is implying Harris/Walz didn’t represent those things he enumerated. But they did.\n\nhttps://preview.redd.it/pdj0h2fri61e1.jpeg?width=1170&format=pjpg&auto=webp&s=536284695a63fb1ca6ac28ab30cb24a6f074f5bc', 'created': '2024-11-16 04:01:33', 'submission_id': '1gqsb2h'}
{'comment': 'He gives off Golden Retriever vibes', 'created': '2024-11-14 07:28:06', 'submission_id': '1gqsb2h'}
{'comment': 'He was the candidate we needed!', 'created': '2024-11-14 06:16:20', 'submission_id': '1gqsb2h'}
{'comment': '“The focus of the Democratic Party must return to creating better jobs, more affordable and accessible health care, safer roads and bridges, the best education for our children and communities where people aren’t just safer but also feel safer.”\n\nHaven’t we been doing this? Jobs growth is up, infrastructure projects up, Obamacare was still there although there should have been measures to enhance it, etc. \n\nI ended up reading this entire article with the thought that it basically said, “oh, and don’t run a woman, especially a black one.”\n\nBecause I know that this country, including parts of the left, still suffer with recognizing the impact of racism and misogyny …. I’d like to propose something we can probably all agree on: stop dicking around with MAGA, and take the threat seriously.\n\nWe need all hands on deck not in 2028, but now. We need to take control of the narrative on healthcare, taxes, national security, education, etc. Remind people how horrific the Trump presidency was and how terrible it and all of its future clones will be. \n\nIt might be time to inject Christian (really universal) principles into the lefts messaging:\n\n- supporting the poor and the needy\n- assisting your fellow man\n- being honorable, having integrity\n\n\n“Compassionate Liberalism”', 'created': '2024-11-16 00:12:54', 'submission_id': '1gqsb2h'}
{'comment': "Well written, however if his election was last week does anyone hear think he could win ? being off cycle is a diffrent beast, Presidential years are tough, i do not doubt he is a good man and a great Democrat but we do need to fight back on these issues, LGTBQ issues especially, Harris didn't respond, and she should have. \xa0Andy Beshear's response to that nonsense is on target, because trans people are gods children too and we should support and protect them. Jesus Crist's finial commandment is that we love one another. At the end of the day we are all Americans First, and should support one another. Lets now talk about our economy and proposals to put Americans on track for a better tomorrow", 'created': '2024-11-15 21:36:43', 'submission_id': '1gqsb2h'}
{'comment': 'Great leaders emerge in times of crisis...', 'created': '2024-11-17 06:42:06', 'submission_id': '1gqsb2h'}
{'comment': "I think he's saying don't give up. The people agree with our policies but have been brainwashed into only paying attention to what Fox tells them.\n\nWe need to work harder at our own propaganda. Biden did great things for the economy and our country but no one realized it.\n\nWe need angry left wing media.", 'created': '2024-11-18 20:19:01', 'submission_id': '1gqsb2h'}
{'comment': 'I am reposting this comment I made in the Louisville sub about my experience with talking to people about Andy, and I want to ad that I voted for Andy for governor both times.\n\n\nAndy, and his success in Kentucky, has a big lesson for the democrats to learn if they want to hear it.\n\nwhy is Andy the blue governor that red state voters are the least unhappy with?\n\nwhat is something that almost every democrat governor with a democrat controlled statehouse(which I get, Andy dont got) tries to force into law?\n\nAndy has never ran on gun control, and so he is able to win rural votes, not all of their votes sure, but because he doesnt ever say shit about guns rural voters are able to look past the ( D ) next to his name and are able to kinda think about him based on his policies.\n\nbeing pro-gun has become a part of rural voter heuristics. rural voters in TN would vote against Dolly if she ran on gun control and im not even stretching the truth of the matter.\n\nAndy had success in Ky first because he was running against the worst KY Gov in 50 years and he had positive name recognition thanks to his dad. but he got re-elected because he never said anything about "taking weapons of war off the streets" or "common sense restrictions". if he had, he would not have been voted in a second time. Im pretty sure Andy knows this because he did a great job of shaming the behavior of armed protestors who were totally threatening and harrassing his family during COVID.\n\neven then, when his family was being menaced by dudes with guns he only talked about their despicable behavior and went out of his way not to even talk about guns. I was very tuned in then and I think he managed never to even say the word "AR15" or "Assault rifle" when talking about people who were totally trying to make him and his family afraid.\n\nif he had started railing against the dangers of civilians owning assault rifles he would not be the governor right now.\n\nthis is a real lesson for the democrats nationally, and it really sucks how much they dont want to hear it.', 'created': '2024-11-16 15:35:37', 'submission_id': '1gqsb2h'}
{'comment': 'Sure. Everything he says Biden and Harris either have done or was in Harris\' platform. They spoke and acted like real people. Walz was perfect at this. They talked about fixing price gouging, increasing the national minimum wage, expanding Medicare, continuing negotiations for lower drug costs, ETC!!!!\n\nBut most of the population just don\'t pay attention. We screamed Project 2025 but "he says he knows nothing and I believe him".\n\nKY is an outlier and maybe it\'s easier at the state level.\n\nI\'m queer, granddaughter is and her bff is trans (in a very red state) . I think the thing that really fucked us over for no good reason was fear mongering on a subject many people don\'t understand. And that damning political ad where Harris talks about providing reassignment surgery for inmates. \n\nI think we need moles. We campaign hard right, get elected, then torpedo everything we can. Sure they probably won\'t get reelected but it will confuse the constituency. \n\nI\'m thrilled Beshear was reelected but his advice to Democrats is redundant.', 'created': '2024-11-17 17:03:01', 'submission_id': '1gqsb2h'}
{'comment': 'And stay strong over the next 2 to 4 years.', 'created': '2024-11-14 03:02:39', 'submission_id': '1gqsb2h'}
{'comment': 'Anger is motivating. Wield it.\n\nAnd figure out where your line is for actually defending the country. How far can Trump go before you have to do something illegal just to be able to look at yourself in the mirror again.', 'created': '2024-11-16 06:08:35', 'submission_id': '1gqsb2h'}
{'comment': 'Supportive of what?', 'created': '2024-11-17 17:03:36', 'submission_id': '1gqsb2h'}
{'comment': "Yeah, but part of that is keeping our rage in check and working on being practical. I was watching some sane Christian YouTubers and one thing I needed to be reminded of is that we aren't good people just for the sake of being good and kindness, but out of basic practicality.", 'created': '2024-11-14 04:06:50', 'submission_id': '1gqsb2h'}
{'comment': "> The only thing we can do is hold our noses, stay mentally strong and vote for change in the mid terms\n\nWell, there are other things you can do, but they aren't *dignified* so you'll never hear Dems say now is the time for them.\n\nAnd there aren't going to be midterms.", 'created': '2024-11-16 06:09:56', 'submission_id': '1gqsb2h'}
{'comment': "especially since it's likely that person who he will be running against is Vance, and it feels like he would be an effective counter to him.", 'created': '2024-11-14 14:39:19', 'submission_id': '1gqsb2h'}
{'comment': 'That gave me a chuckle. I should have maybe clarified in the comments that I am not the author of the article.', 'created': '2024-11-14 09:11:23', 'submission_id': '1gqsb2h'}
{'comment': "Exactly this. People just didn't listen.", 'created': '2024-11-17 17:07:09', 'submission_id': '1gqsb2h'}
{'comment': 'https://preview.redd.it/oqbj537vi61e1.jpeg?width=1170&format=pjpg&auto=webp&s=4813c9b5b5a3bdf88d502aff7f9ad357948abb33', 'created': '2024-11-16 04:02:07', 'submission_id': '1gqsb2h'}
{'comment': 'If only there existed a fair, open, and transparent process where Democratic voters got to select our party’s candidates. \xa0🤔', 'created': '2024-11-14 11:57:35', 'submission_id': '1gqsb2h'}
{'comment': "Some of this has been done yes, but I think the point he's trying to make is remind us that we are the progressive party for Americans, and the only way for us to progress isn't just to keep doing what we've been doing, it is, well, progressing quality of life for Americans. The status quo may not be terrible, but it's not enough for most people. Healthcare is still very inaccessible to millions of Americans who are forced to may obscene amounts of money while rich insurance companies are swimming in wealth. Our federal minimum wage has not been raised nor have we been able to offer paid family and medical leave nationally, meanwhile deep red states voted overwhelming in support of these issues. He's trying bring us back to the sense of urgency which is that we need a leader in 2028 who is going to actually really fight for a better life for Americans.", 'created': '2024-11-17 06:34:21', 'submission_id': '1gqsb2h'}
{'comment': '# Worth Fighting For: A Post-Election Community Gathering Guide\n\n[https://indivisible.org/resource/worth-fighting-post-election-community-gathering-guide](https://indivisible.org/resource/worth-fighting-post-election-community-gathering-guide)', 'created': '2024-11-17 16:02:47', 'submission_id': '1gqsb2h'}
{'comment': "The focus of the Democratic Party should be fucking stopping fascism.\n\nBut noo. They can't get down from that high road, even though it's getting them killed.", 'created': '2024-11-16 06:11:54', 'submission_id': '1gqsb2h'}
{'comment': "And maybe longer. But we will need to focus on supporting out stupid, stupid neighbors who did this to us. \n\nI never said we couldn't think less of them, we just have to pretend we don't.", 'created': '2024-11-14 04:05:02', 'submission_id': '1gqsb2h'}
{'comment': 'You should have been around in 1980 after Regan won. Wow that was wilderness times of 12 years until Clinton came along', 'created': '2024-11-14 23:47:10', 'submission_id': '1gqsb2h'}
{'comment': "It's about practicality for me. I know how these stories go. I'm not throwing away my life if it ain't gonna do something or make it worse", 'created': '2024-11-16 06:09:53', 'submission_id': '1gqsb2h'}
{'comment': 'This. We are already too fucking nice. We need unions to band together for rolling general strikes. And I think it is not crazy to believe Trump when he said we will never have to vote again.', 'created': '2024-11-17 17:06:00', 'submission_id': '1gqsb2h'}
{'comment': 'There were supposed to be other images of the accompanying article! I think they’re there.', 'created': '2024-11-18 07:50:53', 'submission_id': '1gqsb2h'}
{'comment': 'https://preview.redd.it/0ku47t3xi61e1.jpeg?width=1170&format=pjpg&auto=webp&s=23c8f86dff6c8cf54c348855f5bf3c385fd8cee5', 'created': '2024-11-16 04:02:24', 'submission_id': '1gqsb2h'}
{'comment': "\n\nDNC wanted Hillary in '08 but we chose Obama.\n\nBernie in '16 was our choice but DNC wanted Hillary.", 'created': '2024-11-14 23:48:23', 'submission_id': '1gqsb2h'}
{'comment': 'LOL!!', 'created': '2024-11-16 06:39:50', 'submission_id': '1gqsb2h'}
{'comment': "Please tell me you don't think i am being to optimistic? After this past election I am looking for silver linings anywhere I can.", 'created': '2024-11-15 00:12:17', 'submission_id': '1gqsb2h'}
{'comment': 'Everybody dies eventually.\n\nThe only question is what you do in the meantime.', 'created': '2024-11-16 06:28:47', 'submission_id': '1gqsb2h'}
{'comment': 'Most union members are trump supporters and right wingers', 'created': '2024-11-18 21:53:36', 'submission_id': '1gqsb2h'}
{'comment': None, 'created': '2024-11-18 07:51:44', 'submission_id': '1gqsb2h'}
{'comment': 'https://preview.redd.it/tmx4cr4yi61e1.jpeg?width=1170&format=pjpg&auto=webp&s=41808043cb337f81a80a8c207ba8752897a0ad4a', 'created': '2024-11-16 04:02:34', 'submission_id': '1gqsb2h'}
{'comment': 'Yes, Clinton came out of no where in \'92. I remember people in the DNC laughing at another southerner running. Clinton was not the parties original choice. Jerry Brown (again) was front runner. Hope were high also on Mass Gov Paul Tsongas. Clinton was not doing well in first few primaries until he won the 4th primary in Georgia then made his famous "comeback kid" speech. Im saying let it organically take hold. Run the primaries in \'28 and let the people pick the most energetic one.', 'created': '2024-11-15 00:40:19', 'submission_id': '1gqsb2h'}
{'comment': "I don't want to be poor Charlotte after she killed Marat.", 'created': '2024-11-16 06:30:51', 'submission_id': '1gqsb2h'}
{'comment': None, 'created': '2024-11-18 07:52:03', 'submission_id': '1gqsb2h'}
{'comment': 'https://preview.redd.it/z8dio2lzi61e1.jpeg?width=1170&format=pjpg&auto=webp&s=d92600df741f0804e8d420c5a47a275c151f87a4', 'created': '2024-11-16 04:02:48', 'submission_id': '1gqsb2h'}
{'comment': 'I think the dem bench is strong with Josh Shapiro and Gavin Newsom. They could possibly be duking it out in the primaries. If JD Vance is the republican contender, either of them would beat him.', 'created': '2024-11-15 03:30:03', 'submission_id': '1gqsb2h'}
{'comment': "I'd be comparing to [Herschel Grynszpan](https://en.wikipedia.org/wiki/Herschel_Grynszpan), personally. For the bad ourtcome of someone pushed far past snapping point.\n\nThe better outcome would be what happened the last time the USA had a king. But that will need an organisation with more balls than the Dems to do.", 'created': '2024-11-16 06:37:11', 'submission_id': '1gqsb2h'}
{'comment': None, 'created': '2024-11-18 07:52:21', 'submission_id': '1gqsb2h'}
{'comment': 'https://preview.redd.it/vcrno6n0j61e1.jpeg?width=1170&format=pjpg&auto=webp&s=a97dfdd1da9300caaa5ddfc3609036e463829308', 'created': '2024-11-16 04:02:58', 'submission_id': '1gqsb2h'}
{'comment': "Newsom's environmentalism means he has exactly **zero** chance of winning any state in the southeastern US.", 'created': '2024-11-17 06:45:31', 'submission_id': '1gqsb2h'}
{'comment': "The hard thing is, you do something and it doesn't work, you make it worse.", 'created': '2024-11-16 06:40:09', 'submission_id': '1gqsb2h'}
{'comment': None, 'created': '2024-11-18 07:52:38', 'submission_id': '1gqsb2h'}
{'comment': 'https://preview.redd.it/08asd792j61e1.jpeg?width=1170&format=pjpg&auto=webp&s=23f0f7b26be0cbaa82f09f4a54e4b7dc41328b85', 'created': '2024-11-16 04:03:14', 'submission_id': '1gqsb2h'}
{'comment': "I don't think we have been doing that great in that portion of the country anyway but I would personally prefer Josh anyway. He's currently my governor.", 'created': '2024-11-17 15:15:50', 'submission_id': '1gqsb2h'}
{'comment': "You do nothing and it's garunteed to not work.", 'created': '2024-11-16 08:45:40', 'submission_id': '1gqsb2h'}
{'comment': None, 'created': '2024-11-18 07:52:50', 'submission_id': '1gqsb2h'}
{'comment': 'https://preview.redd.it/6szkjgd3j61e1.jpeg?width=1170&format=pjpg&auto=webp&s=f04954cc349eca6da724ffda6a9b808650b9ae71\n\nMy Andy knows better. With all due respect.', 'created': '2024-11-16 04:04:03', 'submission_id': '1gqsb2h'}
{'comment': 'Look out Kevin, the new AG is going to arrest you now.', 'created': '2024-11-14 07:56:12', 'submission_id': '1gqs395'}
{'comment': 'And the biggest MAGA enabler of them all. Fuck off Kevin', 'created': '2024-11-14 15:24:00', 'submission_id': '1gqs395'}
{'comment': 'Don’t trust the AG with kids', 'created': '2024-11-14 20:41:43', 'submission_id': '1gqs395'}
{'comment': 'Fuck him too', 'created': '2024-11-15 06:54:31', 'submission_id': '1gqs395'}
{'comment': "Amen! You'll get no argument from me.", 'created': '2024-11-14 01:05:17', 'submission_id': '1gqrkqv'}
{'comment': "Dude looks like he's 13, yet speaks like an adult. Well said, we need more young folks engaged like this.", 'created': '2024-11-14 01:37:16', 'submission_id': '1gqrkqv'}
{'comment': "This young man has articulated almost everything I feel about the results of this election in an eloquent and hard hitting way. I'd vote for him for president!", 'created': '2024-11-14 01:11:52', 'submission_id': '1gqrkqv'}
{'comment': 'Damn skippy. Well said', 'created': '2024-11-14 01:25:18', 'submission_id': '1gqrkqv'}
{'comment': 'Wow!! So well said!! I love this. This should be a commercial running 24/7', 'created': '2024-11-14 01:42:50', 'submission_id': '1gqrkqv'}
{'comment': 'Literally where I’m at right now. I’m more pissed at the willfully ignorant ass people the most. \n\nAlways have been 👩\u200d🚀', 'created': '2024-11-14 02:29:08', 'submission_id': '1gqrkqv'}
{'comment': 'I absolutely have no more filter with this bullshit. I had a neighbor pop his head in my truck when I pulled into the driveway today and said sorry about your loss. I was on the phone so pretty much ignored him and thought he was referring to our dog we lost months ago,then it hit me. I had a Harris sign before the election so obviously he was being typical maga. This will be interesting in the future!', 'created': '2024-11-14 04:31:21', 'submission_id': '1gqrkqv'}
{'comment': 'Fucking PREACH.', 'created': '2024-11-14 01:48:16', 'submission_id': '1gqrkqv'}
{'comment': 'He said everything I’ve been wanting to say for a while.', 'created': '2024-11-14 01:50:14', 'submission_id': '1gqrkqv'}
{'comment': 'They are the enemy within. Magats are nazis period. \n\nFuck them!', 'created': '2024-11-14 05:49:15', 'submission_id': '1gqrkqv'}
{'comment': 'I like this guy. Go to college young man. Become the next president. I will vote for you', 'created': '2024-11-14 06:02:44', 'submission_id': '1gqrkqv'}
{'comment': 'This young man is speaking the truth. Good job.', 'created': '2024-11-14 04:40:38', 'submission_id': '1gqrkqv'}
{'comment': 'Well said. I hope the people who voted for this or didn’t bother to vote get everything they voted for.', 'created': '2024-11-14 01:48:14', 'submission_id': '1gqrkqv'}
{'comment': 'Agree', 'created': '2024-11-14 01:29:43', 'submission_id': '1gqrkqv'}
{'comment': "I like how he's not taking himself out of the conversation. Instead he's speaking up.", 'created': '2024-11-14 02:17:55', 'submission_id': '1gqrkqv'}
{'comment': 'Brilliantly said!!', 'created': '2024-11-14 02:30:42', 'submission_id': '1gqrkqv'}
{'comment': 'Love this!', 'created': '2024-11-14 03:18:36', 'submission_id': '1gqrkqv'}
{'comment': 'Constantly having to play peacemaker is exhausting.', 'created': '2024-11-14 06:55:55', 'submission_id': '1gqrkqv'}
{'comment': "Does anyone have a link to this that I can share? Most people I know don't use reddit.", 'created': '2024-11-14 02:21:53', 'submission_id': '1gqrkqv'}
{'comment': 'I absolutely love whoever this dude is… I concur… I’m 110% about love and togetherness IF the person didn’t vote for fascism and hurting EVERYONE including themselves. \n\nPlus, now we have Epstein’s best friend as president, and he’s apparently adding other pedos to his cabinet…. Welcome to the White House pedo ring… \n\nYou Trump folks googled “What are tarriffs?” days AFTER you voted… @ssholes… \n\nIf you’re a Kamala person, then I’ve got your back… If you voted for Trump, I’m turning my back on you… I don’t like Nazis.', 'created': '2024-11-14 16:56:16', 'submission_id': '1gqrkqv'}
{'comment': 'Truth', 'created': '2024-11-14 04:13:59', 'submission_id': '1gqrkqv'}
{'comment': 'Well said!!! Fuck trump and everyone who voted for that fucking traitor.', 'created': '2024-11-14 07:20:30', 'submission_id': '1gqrkqv'}
{'comment': 'Need more voices like this young man and support what is Real that is detrimental to the people the Safety & wellbeing of the people as a whole is allowed to be Threatened \n\nYupperrrr !!! the half of the people I’m mean Sheeple who voted for this Unhinged Dictator Lunatic Demented Cheetooo are Just as Responsible for the Total Chaos and hardships that’s taking place .', 'created': '2024-11-14 11:12:58', 'submission_id': '1gqrkqv'}
{'comment': "Well if I'm not going to give their businesses my money I'm sure not going to give them my time. \n\nTime = money\n\nCorporations = people", 'created': '2024-11-14 16:08:55', 'submission_id': '1gqrkqv'}
{'comment': 'I’m keeping some of them to just see their reaction when leopard eats their faces.', 'created': '2024-11-14 02:24:22', 'submission_id': '1gqrkqv'}
{'comment': 'Brilliant', 'created': '2024-11-14 03:16:21', 'submission_id': '1gqrkqv'}
{'comment': 'Preach.', 'created': '2024-11-14 08:38:27', 'submission_id': '1gqrkqv'}
{'comment': 'Well said, young man! I concur wholeheartedly!', 'created': '2024-11-14 13:42:48', 'submission_id': '1gqrkqv'}
{'comment': 'I cut them out in 2016 and never looked back. My life is a lot more peaceful now.', 'created': '2024-11-14 13:40:07', 'submission_id': '1gqrkqv'}
{'comment': 'this dude is a fucking legend', 'created': '2024-11-14 15:46:19', 'submission_id': '1gqrkqv'}
{'comment': "Well said! My wife and I let all our friends know if they support DJT that we can't support a felons, sexual deviants, and someone who won't speak out against things like racism or violence-", 'created': '2024-11-14 16:38:36', 'submission_id': '1gqrkqv'}
{'comment': "I'm in full agreement!", 'created': '2024-11-14 16:48:12', 'submission_id': '1gqrkqv'}
{'comment': 'I’ve already begun cutting them out. Unfortunately, I work with some, so I’m still navigating those waters.', 'created': '2024-11-14 19:34:04', 'submission_id': '1gqrkqv'}
{'comment': "In 2016, most people could claim that they didn't really know what Trump was all about. Nobody has that excuse this time.", 'created': '2024-11-14 22:01:57', 'submission_id': '1gqrkqv'}
{'comment': 'My exact position', 'created': '2024-11-15 01:44:11', 'submission_id': '1gqrkqv'}
{'comment': "It's a compelling argument.", 'created': '2024-11-14 16:02:29', 'submission_id': '1gqrkqv'}
{'comment': "I'm with you. Fuck them. They deserve what we're all about to get. \n\n\nPlease tell me there's more young people with this viewpoint, and they can step away from the skibidi brain-rot bullshit for an hour every 4 years to go out and actually vote...", 'created': '2024-11-14 19:43:35', 'submission_id': '1gqrkqv'}
{'comment': 'Exactly bro', 'created': '2024-11-14 21:00:30', 'submission_id': '1gqrkqv'}
{'comment': 'We have seen exactly that. I think it is for the best', 'created': '2024-11-14 23:15:28', 'submission_id': '1gqrkqv'}
{'comment': 'Sounds good. You are young and your future is at stake.', 'created': '2024-11-15 00:15:52', 'submission_id': '1gqrkqv'}
{'comment': 'I’m a WW and I agree 1000%. We are hosting “Friendsgivings” from now on.', 'created': '2024-11-14 16:59:30', 'submission_id': '1gqrkqv'}
{'comment': 'FAFO', 'created': '2024-11-14 06:45:20', 'submission_id': '1gqrkqv'}
{'comment': 'Hear hear', 'created': '2024-11-15 04:03:07', 'submission_id': '1gqrkqv'}
{'comment': 'Yes fight hate with…. hate.\n\nA consistent message taught throughout time by all people on the moral high ground.\n\nPretty sure people were already doing this btw and it didn’t matter.', 'created': '2024-11-14 05:16:30', 'submission_id': '1gqrkqv'}
{'comment': 'Enough said! Good job Young Man!', 'created': '2024-11-14 18:13:22', 'submission_id': '1gqrkqv'}
{'comment': 'Young men of this country …. Please LISTEN - send this to every young man of ANY race. There are Too many podcasters lying to them and they are listening whole heartedly!!!!', 'created': '2024-11-15 23:34:28', 'submission_id': '1gqrkqv'}
{'comment': '[removed]', 'created': '2024-11-14 19:57:24', 'submission_id': '1gqrkqv'}
{'comment': 'Honestly Joe got booted and we stayed silent in defending him before or afterwards b/c he/they refused to take this kind of tone.. Trump was basically running the country this entire time b/c Joe was soo focused on mending the relationship with them.. he never realized it was a cult they’ve been building for over a decade+ .. \n\nThey literally blew up a picture of his naked son, in the throws of addiction, and marched that shit all over C-Span and anyone else covering it .. Joe did a great job in our recovery, he meant well, but this relationship can’t be fixed.. it’s impossible! 2016 could’ve been mended.. but now, a rapist in office? Felony miscarriage? Palestinians? Ukrainians? Once Cubans and Latinos get a full understanding.. \n\nNo way in hell.. this is forever! Smdh', 'created': '2024-11-14 01:45:54', 'submission_id': '1gqrkqv'}
{'comment': 'The biggest threat to Democracy is the people who ignore politics.', 'created': '2024-11-14 17:37:37', 'submission_id': '1gqrkqv'}
{'comment': "Too bad he's only preaching to the choir. The right won't listen to him, to reason, or anyone who disagrees with the fascist in chief. He's on point and I'm glad that some people see what's right in front of them. Especially young people!", 'created': '2024-11-14 06:13:47', 'submission_id': '1gqrkqv'}
{'comment': 'Click the share arrow on the far right under the actual video, select download. It goes into my photos in my iPad. Then I can share it.', 'created': '2024-11-14 07:18:30', 'submission_id': '1gqrkqv'}
{'comment': 'Liberalism is dead. Get with the program already.', 'created': '2024-11-14 09:32:04', 'submission_id': '1gqrkqv'}
{'comment': 'NOT enough said! More-MORE we want MORE!! 🙌🏻🙌🏻🙌🏻 This gives me hope for the next Gen! 💙\U0001fa75💙', 'created': '2024-11-15 01:47:48', 'submission_id': '1gqrkqv'}
{'comment': '[removed]', 'created': '2024-11-14 19:59:39', 'submission_id': '1gqrkqv'}
{'comment': 'Forever is a funny way of saying 4 years. The bungie cord will snap back and I hope it hits some fuckers right in the balls when it does.', 'created': '2024-11-14 02:26:59', 'submission_id': '1gqrkqv'}
{'comment': 'You’re flatly STUPID attacking Joe Biden.\n\nOf COURSE Biden knew it was a Cult. But he needed the “moderate” Republican voters, and you don’t get them by setting off political dynamite.\n\nLike all fringe radicals, you think you can win with only your base.', 'created': '2024-11-14 17:32:40', 'submission_id': '1gqrkqv'}
{'comment': 'That’s the point though. Dems need to get over this bullshit be accepting of opposing opinions” bullshit, these people have declared all of us expendable as a means to their ego. The only thing that will change behavior of bad, malevolent narcissists is if there starts to impact their personal lives, and cutting them off has an effect on them whether they admit it or not.', 'created': '2024-11-14 07:08:19', 'submission_id': '1gqrkqv'}
{'comment': "You're awesome! Thank you!", 'created': '2024-11-14 13:47:18', 'submission_id': '1gqrkqv'}
{'comment': 'The damage of his previous four year reign is still being felt.', 'created': '2024-11-14 03:18:14', 'submission_id': '1gqrkqv'}
{'comment': "In 4 years I will still remember. Can't unring this bell. The damage has been done and now we ALL get to suffer for 4 years. At the end of that, I will not be OK with the people responsible for making my family and I go through it.\n\nForever.", 'created': '2024-11-14 06:12:49', 'submission_id': '1gqrkqv'}
{'comment': "It's only going to snap back when he pisses on his allies. It shouldn't take long.", 'created': '2024-11-14 16:10:47', 'submission_id': '1gqrkqv'}
{'comment': 'Extremely naive to act like it’s just 4 years', 'created': '2024-11-15 14:56:18', 'submission_id': '1gqrkqv'}
{'comment': 'You’re emotional, your screen time is too high, set a reminder to log out a couple times a week.. \n\nNo one attacked Joe, I said Joe did a hell of a job. It left US unable to defend him because how? If someone attacks your kid and you keep worrying about work.. wtf are your friends and family supposed to do?\n\nIt’s an emotional time, the internet doesn’t help. Log out awhile and talk to someone please..', 'created': '2024-11-14 17:55:27', 'submission_id': '1gqrkqv'}
{'comment': 'Dems aren’t “accepting” of opposing opinions.\n\nWe just figure bear baiting isn’t good strategy.', 'created': '2024-11-14 17:39:34', 'submission_id': '1gqrkqv'}
{'comment': 'When the Hispanics get swept up in the deportations, the Hispanic men who voted for Trump are finally going to understand.', 'created': '2024-11-14 17:34:34', 'submission_id': '1gqrkqv'}
{'comment': 'I barely even LOOK at Reddit politics once a week on average.\n\nIf you have nothing intelligent to say, leave me out of it.', 'created': '2024-11-14 18:00:57', 'submission_id': '1gqrkqv'}
{'comment': 'You’re downvoting immediately .. it means you’re here and generally online a lot. I’ve been here a couple months and still can’t remember to downvote.. \n\nJust please take my advice, delete these apps a couple days a week. Enjoy your day ..', 'created': '2024-11-14 18:03:08', 'submission_id': '1gqrkqv'}
{'comment': 'You’re irrational and or inexperienced.\n\nTry shutting up.\n\nI think I’m a better judge of my online time than you are.', 'created': '2024-11-14 18:04:51', 'submission_id': '1gqrkqv'}
{'comment': 'We fight amongst ourselves... has always been the weak spot in the blue wall', 'created': '2024-11-14 20:01:21', 'submission_id': '1gqrkqv'}
{'comment': 'replace sinister with dysfunctional or stupid. these people are gonna fight all the damn time and nothings gonna get done. you have to understand that dictators like Hitler and Erdogan have/had smart and loyal people in positions of power and advisory, not total cult idiots. The MAGA GOP is too stupid to do anything we are scared of. I rest my case.', 'created': '2024-11-14 14:13:37', 'submission_id': '1gqr963'}
{'comment': '“How this is actually great for democracy” tonight on FOX', 'created': '2024-11-14 00:51:46', 'submission_id': '1gqr963'}
{'comment': 'Yea but what about the price of eggs??', 'created': '2024-11-14 01:46:38', 'submission_id': '1gqr963'}
{'comment': 'Where is Gabbard?', 'created': '2024-11-14 05:24:37', 'submission_id': '1gqr963'}
{'comment': 'Hahaha! Man this is gonna be a funny 4 years. Maybe we should just print out these posts for ads. \n\n\n"Democrats: we\'re not bat shit crazy!"', 'created': '2024-11-14 02:16:58', 'submission_id': '1gqr5ma'}
{'comment': 'Also God: “I sent you Hillary. I sent you Biden. I sent you Kamala. One out of three ain’t bad but it’s not God-like. I’m done, you’re on your own.”', 'created': '2024-11-14 01:28:23', 'submission_id': '1gqr5ma'}
{'comment': 'What do you mean "whole new?"\n\nThis is their MO.', 'created': '2024-11-14 09:20:15', 'submission_id': '1gqr5ma'}
{'comment': 'Not new. Just standard. Get used to it. We voted this in.', 'created': '2024-11-14 07:24:24', 'submission_id': '1gqr5ma'}
{'comment': "A fucking broom could out do trump and to all three's credit they fucking tried to unfuck these dumbasses but eh yeah honestly I think God might be just shrugging at this point with this stupidity from these fuck nuts.", 'created': '2024-11-14 02:18:35', 'submission_id': '1gqr5ma'}
{'comment': 'the old stranded on an island line..\n\nnext it will be "why didn\'t god save us?" from some magat.', 'created': '2024-11-14 04:36:20', 'submission_id': '1gqr5ma'}
{'comment': '"we" didn\'t', 'created': '2024-11-14 14:07:59', 'submission_id': '1gqr5ma'}
{'comment': '#broomonaroomba4prez2028', 'created': '2024-11-14 05:57:48', 'submission_id': '1gqr5ma'}
{'comment': "Just goofin'.. I know there will be no election in 2028", 'created': '2024-11-14 05:58:35', 'submission_id': '1gqr5ma'}
{'comment': "Perhaps there's a chance he won't get confirmed after all in reading this story.", 'created': '2024-11-14 00:09:22', 'submission_id': '1gqqesw'}
{'comment': 'Nothing surprises me anymore…\n\nComing soon:\n\nTrump selects actual turd image to replace flag… that tracks\n\nTrump promotes MTG to head of “education”… that tracks\n\nTrump vomits on stage and eats it, his crowd cheers… that tracks', 'created': '2024-11-14 00:33:10', 'submission_id': '1gqqesw'}
{'comment': 'He is bring in people loyal to him, not to the USA. This is everything wrong with this country.', 'created': '2024-11-14 00:13:34', 'submission_id': '1gqqesw'}
{'comment': 'I’m sure they’ll be stunned and disgusted right up until they vote to confirm him.', 'created': '2024-11-14 00:35:30', 'submission_id': '1gqqesw'}
{'comment': 'Are they? The pedophile Gaetz embodies exactly who they have become.', 'created': '2024-11-14 00:30:53', 'submission_id': '1gqqesw'}
{'comment': "No they aren't. What a load of crap. This is what they chose!", 'created': '2024-11-14 00:18:30', 'submission_id': '1gqqesw'}
{'comment': 'Maya Angelou put it perfectly when she said “When someone shows you who they are, believe them the first time”\nNo one in the world who knows anything about Donald Trump should be shocked by this , because he showed us who he is and we believed him.', 'created': '2024-11-14 00:49:04', 'submission_id': '1gqqesw'}
{'comment': 'We are also stunned and disgusted', 'created': '2024-11-14 00:24:58', 'submission_id': '1gqqesw'}
{'comment': 'oh now they’re stunned and disgusted?', 'created': '2024-11-14 00:55:07', 'submission_id': '1gqqesw'}
{'comment': 'The hearings are gonna be hilarious', 'created': '2024-11-14 00:15:57', 'submission_id': '1gqqesw'}
{'comment': 'A pedo rapist president appoints a pedo rapist child trafficking attorney general. Seems normal.', 'created': '2024-11-14 00:25:14', 'submission_id': '1gqqesw'}
{'comment': 'Not disgusted enough. They are getting what they voted for. This is their faults for bending the knee to trump and breaking their own spines.', 'created': '2024-11-14 00:56:40', 'submission_id': '1gqqesw'}
{'comment': 'Let them implode.', 'created': '2024-11-14 00:30:10', 'submission_id': '1gqqesw'}
{'comment': 'Whatever. We all know they’re gonna swallow their pride and confirm him. People saying he won’t get confirmed are delusional.', 'created': '2024-11-14 00:29:47', 'submission_id': '1gqqesw'}
{'comment': 'That is 1 way to get him out of Florida.\n\nWhat is scary, more to come.', 'created': '2024-11-14 00:32:35', 'submission_id': '1gqqesw'}
{'comment': 'Please don\'t be fooled. This is likely a headfake so he can relent and put in some brutally corrupt Roy Cohn-style attack dog who ISN\'T a pedophile.\n\nThen his people can go "see, at least it\'s not Gaetz!"', 'created': '2024-11-14 00:34:03', 'submission_id': '1gqqesw'}
{'comment': 'If you’re “stunned” you haven’t been paying attention', 'created': '2024-11-14 00:51:49', 'submission_id': '1gqqesw'}
{'comment': 'Why would anyone be stunned? Are they fucking stupid? Have they not paid attention for the last 9 years?', 'created': '2024-11-14 00:39:30', 'submission_id': '1gqqesw'}
{'comment': 'Putin just got another life. His leadership was about to cave, no longer. Get ready for more deaths across the pond and more unrest here. Just wait, wait until tariffs are implemented, your pensions and Social Security gets cut and Medicare is no longer.', 'created': '2024-11-14 00:59:08', 'submission_id': '1gqqesw'}
{'comment': 'Disgusted, but will still approve him at the end of the day.', 'created': '2024-11-14 00:29:25', 'submission_id': '1gqqesw'}
{'comment': 'OK, this made me laugh. \n \n"Gaetz has a better shot at having dinner with Queen Elizabeth II than being confirmed by the senate," said Rep. Max Miller (R-Ohio), referring to the British monarch who\xa0[died in 2022](https://www.axios.com/2022/09/08/queen-elizabeth-dies-obit-united-kingdom).', 'created': '2024-11-14 00:45:20', 'submission_id': '1gqqesw'}
{'comment': '"Stunned and disgusted"\n\n\nI am sure...', 'created': '2024-11-14 00:40:49', 'submission_id': '1gqqesw'}
{'comment': "Oh, they'll confirm him anyway rather than risk Trump demonizing them to his (and their) voters because they're spineless sacks of shit.", 'created': '2024-11-14 00:41:44', 'submission_id': '1gqqesw'}
{'comment': 'Republicans disgusted by Republican nominee \n\nIt never ends', 'created': '2024-11-14 00:54:15', 'submission_id': '1gqqesw'}
{'comment': 'They made their own bed. So now they lie in it.', 'created': '2024-11-14 00:57:18', 'submission_id': '1gqqesw'}
{'comment': 'I mean, this is what Republicans voted for, right? Trump is a disgusting human being so, of course, he would pick the bottom of the barrel for his AG, someone who was under investigation for sex trafficking by the DOJ, is now tapped to lead that same agency? The Republican Party is a total joke and an absolute disgrace.', 'created': '2024-11-14 02:26:14', 'submission_id': '1gqqesw'}
{'comment': 'Will the republicans stand up and do what’s right and not confirm any of these WILD ass picks to say the least?!? BIG NOPE!', 'created': '2024-11-14 00:53:32', 'submission_id': '1gqqesw'}
{'comment': 'Republicans stunned and disgusted? I doubt that', 'created': '2024-11-14 01:37:23', 'submission_id': '1gqqesw'}
{'comment': '“My first act as AG will be to drop all current investigations against Puffy.”', 'created': '2024-11-14 02:31:51', 'submission_id': '1gqqesw'}
{'comment': 'Trump\'s a lame duck in a movement that\'s been proven to not exist beyond him.\n\nTo use crass language, Republicans are great greatful for one last handjob (winning Congress on his coat tails etc), but Mr. Trump i suspect will find his cunny ain\'t the draw it was even a week ago.\n\nHe\'s falling into the exact same trap he did before, listening to asskissers offering him a proverbial cookie if he\'ll do this and that and pretending that\'s "power".', 'created': '2024-11-14 02:43:10', 'submission_id': '1gqqesw'}
{'comment': 'Good chance he did this to get someone slightly less horrible to look good', 'created': '2024-11-14 00:34:44', 'submission_id': '1gqqesw'}
{'comment': 'No they aren’t. Shut up Axios', 'created': '2024-11-14 00:47:42', 'submission_id': '1gqqesw'}
{'comment': "They'll be over it in about five minutes just like trumps Jan 6 overturning election attempt.", 'created': '2024-11-14 01:32:45', 'submission_id': '1gqqesw'}
{'comment': "Yet they'll still confirm him. Prove me wrong cowards.", 'created': '2024-11-14 03:01:41', 'submission_id': '1gqqesw'}
{'comment': 'Oh yea. SUUURE they are. \n\nThis pearl clutching is bullshit. \n\nthis is exactly what they wanted. \n\n"Stunned and Disgusted" This is what they voted for when they made him their man. \n\n\n"Stunned and Disgusted" is a sham. \n\nRepublicans are at full mast hard core throbbing at this fiasco.', 'created': '2024-11-14 17:08:24', 'submission_id': '1gqqesw'}
{'comment': 'I think it’s time for the Epstein girls that are hiding in the shadows to speak up about this Pedo. We all know what he did but this is the creepiest person alive to be in this position. I don’t care how much money you were paid, it is your time to do what is right for others..', 'created': '2024-11-14 00:30:33', 'submission_id': '1gqqesw'}
{'comment': 'Gaetz, Gabbard, and most of the controversial nominees are a smokescreen for dogecoin. Oh I’m sorry the new privatization of the government branch, DOGE. Vivek and Elon are both easily confirmed candidates because they look normal compared to the rest. They are smart an empowered. DOGE is the danger.', 'created': '2024-11-14 00:39:19', 'submission_id': '1gqqesw'}
{'comment': 'Go ahead, confirm him, because I don’t want to know what kind of monster is behind door number 2.', 'created': '2024-11-14 00:44:48', 'submission_id': '1gqqesw'}
{'comment': 'He’s stacking his cabinet with way too many people who the media likes to talk about. He’s gonna get jealous and oust them', 'created': '2024-11-14 00:46:53', 'submission_id': '1gqqesw'}
{'comment': 'Well. Epstein wasn’t available. So makes sense.', 'created': '2024-11-14 01:02:56', 'submission_id': '1gqqesw'}
{'comment': 'How does it go? “Show me thy company and I’ll show you thy character”', 'created': '2024-11-14 01:06:22', 'submission_id': '1gqqesw'}
{'comment': '', 'created': '2024-11-14 01:09:23', 'submission_id': '1gqqesw'}
{'comment': "They're casually admitting they've known all along that he's a pedophile and racist.\n\n", 'created': '2024-11-14 01:23:30', 'submission_id': '1gqqesw'}
{'comment': 'Jesus... Trump cabinet is like a freakshow All-Stars team.', 'created': '2024-11-14 01:24:28', 'submission_id': '1gqqesw'}
{'comment': '> Rep. Troy Nehls (R-Texas) told in a text message that “of course” he backs Gaetz’s nomination because he supports “any/all of DJT’s nominations.”\n\nBeing a good republican and hanging his brain in the closet.', 'created': '2024-11-14 01:32:09', 'submission_id': '1gqqesw'}
{'comment': 'They really just had no plan for this and are picking names from Fox news segments.', 'created': '2024-11-14 01:33:37', 'submission_id': '1gqqesw'}
{'comment': "Republicans have no right to be disgusted when they voted for this! I don't want to hear a syllable of complaint. Y'all wanted to live in Trumpsylvania. Be careful what you wish for....", 'created': '2024-11-14 02:19:33', 'submission_id': '1gqqesw'}
{'comment': 'But are they really?', 'created': '2024-11-14 02:46:44', 'submission_id': '1gqqesw'}
{'comment': 'They supported a convicted felon and grapist for president, how disgusted can they be?', 'created': '2024-11-14 02:51:21', 'submission_id': '1gqqesw'}
{'comment': 'The GOP isn’t upset, they knew it was coming. It’s all an act.', 'created': '2024-11-14 03:02:07', 'submission_id': '1gqqesw'}
{'comment': 'Not stunned or disgusted enough.', 'created': '2024-11-14 04:14:37', 'submission_id': '1gqqesw'}
{'comment': 'Rapey mcfivehead', 'created': '2024-11-14 04:21:52', 'submission_id': '1gqqesw'}
{'comment': 'Bet he gets confirmed tho', 'created': '2024-11-14 16:20:26', 'submission_id': '1gqqesw'}
{'comment': '*gasp* oh my pearls! \n\nPlay acting like always. When the chips are down they do what orange daddy says, or more specifically what his bosses tell him to say. He doesn’t care, he already kept himself out of jail.', 'created': '2024-11-14 00:28:38', 'submission_id': '1gqqesw'}
{'comment': "... Ok what? Really? I'm surprised. No kidding this is actually surprising. He's literally young Trump what's their beef with him?\n\n\n And I mean their beef not the average human being's issue with a child rapist.", 'created': '2024-11-14 00:33:05', 'submission_id': '1gqqesw'}
{'comment': 'Commenting on Republicans "stunned and disgusted" as Trump taps Matt Gaetz for AG...', 'created': '2024-11-14 00:49:02', 'submission_id': '1gqqesw'}
{'comment': 'When in the history of the GOP have they done the right thing', 'created': '2024-11-14 01:05:38', 'submission_id': '1gqqesw'}
{'comment': 'And yet most of them will probably vote to confirm him. You’re already seeing Senators like Markwayne Mullin already hedge their bets and leave open room to vote for Gaetz despite previously coming out against him. Republicans will grumble and complain behind the scenes but ultimately they’ll all fall in line and bend the knee to Trump.', 'created': '2024-11-14 01:10:38', 'submission_id': '1gqqesw'}
{'comment': "Well, Republicans are stunningly disgusting so it makes sense for them to have voted for Trump when he's the guy that would pick someone like Gaetz.", 'created': '2024-11-14 01:53:47', 'submission_id': '1gqqesw'}
{'comment': 'They will fall in line. They always do. Gutless', 'created': '2024-11-14 01:59:34', 'submission_id': '1gqqesw'}
{'comment': 'No, they aren’t.', 'created': '2024-11-14 02:13:49', 'submission_id': '1gqqesw'}
{'comment': 'Oh he will get in. He’s an absolutely horrid evil child sex trafficking piece of human waste who will lick Trumps shoes. He covers all the qualities that impresses Trump. Our new Attorney General.a child sex trafficker! Sing it with me “I’m proud to be an American, where at least I used to be free….”', 'created': '2024-11-14 02:23:51', 'submission_id': '1gqqesw'}
{'comment': "Yeah right.. they'll bend over backwards for Supreme Chancellor Trump", 'created': '2024-11-14 02:47:02', 'submission_id': '1gqqesw'}
{'comment': 'Trump told us exactly what he is the many times he told the story about the girl and the snake.', 'created': '2024-11-14 03:05:48', 'submission_id': '1gqqesw'}
{'comment': 'Are they actually stunned and disgusted or are we just hoping they are?', 'created': '2024-11-14 03:08:23', 'submission_id': '1gqqesw'}
{'comment': 'The leopards are gonna have a feast.', 'created': '2024-11-14 03:13:00', 'submission_id': '1gqqesw'}
{'comment': 'Yeah, I heard Susan Collins is “very concerned,” or something. I bet she even gives him a stern glance at the confirmation hearing!', 'created': '2024-11-14 03:26:57', 'submission_id': '1gqqesw'}
{'comment': 'Oh, NOW they’re disgusted? Not when they had all the evidence he’d be like this BEFORE the election? Fuck off', 'created': '2024-11-14 03:49:03', 'submission_id': '1gqqesw'}
{'comment': 'But they will do nothing.', 'created': '2024-11-14 04:08:39', 'submission_id': '1gqqesw'}
{'comment': 'How could anyone have seen this coming o no', 'created': '2024-11-14 04:19:43', 'submission_id': '1gqqesw'}
{'comment': 'They’re stunned and disgusted but will confirm his nomination in the end.\xa0', 'created': '2024-11-14 04:49:17', 'submission_id': '1gqqesw'}
{'comment': 'The party that wants to protect unborn babies appear to be perfectly okay with child predators in charge.', 'created': '2024-11-14 12:49:01', 'submission_id': '1gqqesw'}
{'comment': "I'll believe it when they vote against confirmation.", 'created': '2024-11-14 15:07:32', 'submission_id': '1gqqesw'}
{'comment': 'On the upside…he has to resign from Congress, and Trump fires everybody within a year or so.', 'created': '2024-11-14 15:18:02', 'submission_id': '1gqqesw'}
{'comment': '', 'created': '2024-11-14 00:28:00', 'submission_id': '1gqqesw'}
{'comment': "Lol no they're not. They'll pretend to Clutch their pearls for show and then move on as if nothing happened.\n\nSusan Collins is a perfect example.", 'created': '2024-11-14 04:26:58', 'submission_id': '1gqqesw'}
{'comment': "He's had too many investigations to be the boss, in a position that requires public trust.", 'created': '2024-11-14 00:45:39', 'submission_id': '1gqqesw'}
{'comment': 'https://preview.redd.it/n24s1jpnar0e1.jpeg?width=1284&format=pjpg&auto=webp&s=c4e5b22b2c7cf074f06c6ecba0abaa19c37f2a1a', 'created': '2024-11-14 00:49:26', 'submission_id': '1gqqesw'}
{'comment': 'Dems should undermine any republicans with “morals” and let Trump do what he wants. Make them sleep with the bed they made also.', 'created': '2024-11-14 01:13:10', 'submission_id': '1gqqesw'}
{'comment': '', 'created': '2024-11-14 01:15:30', 'submission_id': '1gqqesw'}
{'comment': 'https://preview.redd.it/fpf7eqrifr0e1.jpeg?width=1200&format=pjpg&auto=webp&s=31e8ef27c37607dd7206db94a2c2cc22a19975f8\n\n😆🤘', 'created': '2024-11-14 01:16:40', 'submission_id': '1gqqesw'}
{'comment': 'Doesn’t the president elect normally have a transition team that understands the way DC works, who would have advised Trump about the difficulty in securing the confirmation of Gaetz as AG? I know Trump is unconventional but these appointments seem very haphazard.', 'created': '2024-11-14 01:18:14', 'submission_id': '1gqqesw'}
{'comment': 'I think he and or Gabbard are the sacrificial lambs to get the other nominations through.', 'created': '2024-11-14 01:19:38', 'submission_id': '1gqqesw'}
{'comment': 'Stop pretending there are going to be Republican guardrails! This ends in one disaster or another and, if we survive, it will be after a brutal struggle', 'created': '2024-11-14 01:23:16', 'submission_id': '1gqqesw'}
{'comment': 'Nobody cares; if history books still exist in four years EVERY maga hat will be named just as bad as Trump.', 'created': '2024-11-14 01:26:17', 'submission_id': '1gqqesw'}
{'comment': 'They love this. They get to shove Christianity into everything & make more laws to help white men.', 'created': '2024-11-14 01:27:57', 'submission_id': '1gqqesw'}
{'comment': 'What a disappointment', 'created': '2024-11-14 01:30:32', 'submission_id': '1gqqesw'}
{'comment': 'I sincerely hope he doesn’t get this job.', 'created': '2024-11-14 01:47:17', 'submission_id': '1gqqesw'}
{'comment': 'Not only Republicans', 'created': '2024-11-14 02:17:00', 'submission_id': '1gqqesw'}
{'comment': 'No they are not. They’re all thrilled actually. What’s up with the false media', 'created': '2024-11-14 02:20:34', 'submission_id': '1gqqesw'}
{'comment': "They'll be cheering once he starts hailing registered Democrats though ...", 'created': '2024-11-14 02:37:22', 'submission_id': '1gqqesw'}
{'comment': 'They will do what he wants and Gaetz will lead the fight to get ride of Thune.', 'created': '2024-11-14 02:39:25', 'submission_id': '1gqqesw'}
{'comment': 'https://preview.redd.it/u2622gr63s0e1.jpeg?width=1319&format=pjpg&auto=webp&s=6fcdad393092d0e2ec78e5fa94fff2bd4d02ef50', 'created': '2024-11-14 03:29:18', 'submission_id': '1gqqesw'}
{'comment': 'What do y’all mean? They just got MAGA’d thats all!', 'created': '2024-11-14 03:42:34', 'submission_id': '1gqqesw'}
{'comment': '"This shows why the advice and consent process is so important and I\'m sure that there will be a lot of questions raised at his hearing," said Sen. Susan Collins (R-Maine) who added that she was "shocked" by the pick.\n\nHAHAHAHAHAHAHA!! I bet Susan Collins is so "concerned."', 'created': '2024-11-14 03:50:21', 'submission_id': '1gqqesw'}
{'comment': 'I don’t think he Gaetz it. Never swill.', 'created': '2024-11-14 03:51:52', 'submission_id': '1gqqesw'}
{'comment': 'Uh-Oh, consequences', 'created': '2024-11-14 03:59:29', 'submission_id': '1gqqesw'}
{'comment': 'Uh-huh. Sure they are.', 'created': '2024-11-14 04:05:16', 'submission_id': '1gqqesw'}
{'comment': 'Stop being stunned by this. Grow up and at least be jaded.', 'created': '2024-11-14 04:09:48', 'submission_id': '1gqqesw'}
{'comment': 'Pedophilia and right-wing ideology have always gone hand-in-hand.', 'created': '2024-11-14 04:12:48', 'submission_id': '1gqqesw'}
{'comment': "Well buckle up because there is going to be a lot of that. He is your guy, you've made that very clear.", 'created': '2024-11-14 04:31:57', 'submission_id': '1gqqesw'}
{'comment': 'Disgusted but still on board.', 'created': '2024-11-14 04:48:52', 'submission_id': '1gqqesw'}
{'comment': 'Isn’t this the guy who can’t go near a Chuck E. Cheese?', 'created': '2024-11-14 04:51:19', 'submission_id': '1gqqesw'}
{'comment': 'Disgusted yes, but why are you stunned?', 'created': '2024-11-14 04:55:28', 'submission_id': '1gqqesw'}
{'comment': "It's entirely hypocritical verging on dishonest for \\*any\\* Republican to say that they are shocked by this appointment. If you voted for Trump, you knew the level of insanity, corruption, and incompetence you were going to get This is it.", 'created': '2024-11-14 05:02:47', 'submission_id': '1gqqesw'}
{'comment': "Is he better or worse than Paxton? \n\nGaetz is an idiot. He might try some evil shit, but he'll do it in the most stupid way possible. \n\nPaxton is evil but smart. He can do some real damage during his time there.", 'created': '2024-11-14 05:18:41', 'submission_id': '1gqqesw'}
{'comment': 'No they’re not', 'created': '2024-11-14 05:21:01', 'submission_id': '1gqqesw'}
{'comment': 'He us one of the nicest guy of the republicans', 'created': '2024-11-14 05:31:19', 'submission_id': '1gqqesw'}
{'comment': 'They voted for this; just think all the Q people were afraid of pedo child traffickers and actually voted them into power.', 'created': '2024-11-14 05:34:59', 'submission_id': '1gqqesw'}
{'comment': 'Even his party hates him for what he did to Kevin McCarthy lol', 'created': '2024-11-14 06:02:10', 'submission_id': '1gqqesw'}
{'comment': 'As they should be', 'created': '2024-11-14 06:14:37', 'submission_id': '1gqqesw'}
{'comment': 'WTF??', 'created': '2024-11-14 06:23:50', 'submission_id': '1gqqesw'}
{'comment': 'Ahhhhaahhhahhha. I hope they get everything they voted for.', 'created': '2024-11-14 07:07:20', 'submission_id': '1gqqesw'}
{'comment': 'No. They are not. They love it. Just putting on a good face. Don’t be fooled.', 'created': '2024-11-14 07:08:26', 'submission_id': '1gqqesw'}
{'comment': 'Quick question — how the fuck are these Republicans “stunned” and/or “disgusted?” Surely they knew what they were voting for… right?', 'created': '2024-11-14 07:15:33', 'submission_id': '1gqqesw'}
{'comment': 'No they are not. It’s a game to them. It’s funny to pretend', 'created': '2024-11-14 07:20:26', 'submission_id': '1gqqesw'}
{'comment': 'Why do so many republicans actually look like villains. Like without knowing anything about this guy i would think he looks like a villain', 'created': '2024-11-14 07:53:20', 'submission_id': '1gqqesw'}
{'comment': 'Republicans stunned and disgusted… hahahaha.', 'created': '2024-11-14 08:51:57', 'submission_id': '1gqqesw'}
{'comment': 'They are neither stunned or disgusted', 'created': '2024-11-14 08:55:47', 'submission_id': '1gqqesw'}
{'comment': 'This video talks about if he becomes AG then the investigations into his sex trafficking go away https://www.youtube.com/watch?v=-UJfAdv613E&t=485s', 'created': '2024-11-14 09:32:00', 'submission_id': '1gqqesw'}
{'comment': 'Oh no - not stunned AND disgusted? Tell me more 💅 🙄', 'created': '2024-11-14 12:29:42', 'submission_id': '1gqqesw'}
{'comment': 'They are neither "stunned" nor "disgusted." This is exactly on brand for MAGA world. Republicans are MAGA regardless if they lie and pretend otherwise!', 'created': '2024-11-14 13:26:36', 'submission_id': '1gqqesw'}
{'comment': "No, they really aren't! \n\nThey just want cover from the press! Republicans love this stuff because (1) it won't materially affect their lives and (2) they still get their tax cuts\n\nBad people are bad people, full stop.", 'created': '2024-11-14 13:40:35', 'submission_id': '1gqqesw'}
{'comment': 'They will not defy their overlord.', 'created': '2024-11-14 13:47:52', 'submission_id': '1gqqesw'}
{'comment': "Stunned and disgusted? I'm sorry are we talking about US republicans?\n\nI'm sorry I spoke to 2 republican coworkers today and one thinks it's funny, the other literally doesn't care.\n\nRepublicans do not care about the America we know.", 'created': '2024-11-14 13:57:07', 'submission_id': '1gqqesw'}
{'comment': 'Next up MTG as the director of NASA, going to send a rocket to get them Jewish space lasers', 'created': '2024-11-14 14:06:29', 'submission_id': '1gqqesw'}
{'comment': "How shocked can they be? They nominated Trump, and allowed Gaetz to stay in his position.\n\nSuddenly they're acting like caring people?", 'created': '2024-11-14 14:30:13', 'submission_id': '1gqqesw'}
{'comment': 'Clearly shows that the senile old fart is hellbent on destroying the United States.', 'created': '2024-11-14 15:06:14', 'submission_id': '1gqqesw'}
{'comment': 'The leopards have been eating well lately.', 'created': '2024-11-14 15:31:57', 'submission_id': '1gqqesw'}
{'comment': 'They are not going to go against him now. They’ll fall in line as usual.', 'created': '2024-11-14 15:51:56', 'submission_id': '1gqqesw'}
{'comment': 'Better than a pardon I suppose - for Gaetz I mean. He gets a promotion, & the ethics committee drops their investigation.', 'created': '2024-11-14 16:10:06', 'submission_id': '1gqqesw'}
{'comment': 'This is an entire Cabinet of Deplorables. Collect them all! Someone get Funko Pop on the phone.', 'created': '2024-11-14 18:53:55', 'submission_id': '1gqqesw'}
{'comment': 'And NO ONE WILL DO ANYTHING. \n\nIncluding the dems. Nothing. Zero. It’s all talk. Even Warren. She’s great at playing a “warrior crusader” but she’s done jack shit.', 'created': '2024-11-14 20:05:13', 'submission_id': '1gqqesw'}
{'comment': 'Elect a clown, expect a circus!', 'created': '2024-11-14 22:31:17', 'submission_id': '1gqqesw'}
{'comment': 'Congratulations… join the crowd.', 'created': '2024-11-15 00:07:56', 'submission_id': '1gqqesw'}
{'comment': 'Sure they are. I’m not going to be counting on the same republicans who didn’t stand up to him before to suddenly find a spine. We’ve seen this before, some complain and then nothing. Remember Graham and McCarthy after J6 and how quickly they flipped?', 'created': '2024-11-15 00:08:37', 'submission_id': '1gqqesw'}
{'comment': "Good. Hopefully they'll all go against him and oppose to Project 2025.", 'created': '2024-11-14 01:14:31', 'submission_id': '1gqqesw'}
{'comment': 'There’s a chance no one will get confirmed by the Senate because Trump is demanding the Senate deliberately recess so that he can get all of his nominees in for two years without the pesky checks and balances prescribed by the Constitution.', 'created': '2024-11-14 00:36:47', 'submission_id': '1gqqesw'}
{'comment': 'They were also stunned and disgusted on January 6th. And did nothing do hold trump accountable. Don’t hold your breath on republicans doing the right thing.', 'created': '2024-11-14 00:50:26', 'submission_id': '1gqqesw'}
{'comment': "Don't forget who's the president-elect... At this point, nothing can surprise me.", 'created': '2024-11-14 00:36:26', 'submission_id': '1gqqesw'}
{'comment': 'Bwhahaha, yeah right.', 'created': '2024-11-14 00:27:49', 'submission_id': '1gqqesw'}
{'comment': 'We thought there was a good chance Trump wouldn’t win after the Puerto Rico “jokes” or “THEYRE EATING THE DOGS”.\n\nLook what happened.', 'created': '2024-11-14 01:05:23', 'submission_id': '1gqqesw'}
{'comment': 'Plus he just resigned from the house. Win win.\xa0', 'created': '2024-11-14 01:35:29', 'submission_id': '1gqqesw'}
{'comment': 'I m guessing every Republican senator after “reviewing” his qualifications and interviewing Gaetz at his hearing will find him an extremely qualified candidate and will end up voting for him. Republicans will ask Gaetz many, many questions (all softball questions) to go through the motions. And will ultimately claim that all the accusations of breaking the law and every ethical standard have no bearing of him being an excellent choice to lead the department of justice.', 'created': '2024-11-14 06:29:16', 'submission_id': '1gqqesw'}
{'comment': 'And endure the wrath of his majesty’s Capitol storm troopers?', 'created': '2024-11-14 02:05:11', 'submission_id': '1gqqesw'}
{'comment': 'I believe Murkowski, Collins, and Grassley have already expressed their disapproval at confirming him', 'created': '2024-11-14 03:15:05', 'submission_id': '1gqqesw'}
{'comment': "Yea most Republicans even hate matt. I don't think they will let him in.", 'created': '2024-11-14 13:05:54', 'submission_id': '1gqqesw'}
{'comment': 'He’s probably Trump’s canary in the coal mine. He quits today from THIS house term; (house doesn’t release their ethics find on Friday). \n\nTrump sees which Senators are putting up resistance.\n\nAG’s nomination is pulled and Gaetz gets to be sworn into his recently elected term in January. I don’t know if that’s possible, but why not?\n\nOr, becomes Floridas next senator…', 'created': '2024-11-14 04:18:50', 'submission_id': '1gqqesw'}
{'comment': "What if this is the plan to make Gaetz' own legal fiascos go away? Trump nominates him, he steps down to make it look like his nomination is the reason, he fails to reach the confirmation threshold and goes back to private citizen life.", 'created': '2024-11-14 05:26:35', 'submission_id': '1gqqesw'}
{'comment': 'He’s getting confirmed, none of these guys wants a political ad in two years of them voting against Trump or his agenda.', 'created': '2024-11-14 15:24:56', 'submission_id': '1gqqesw'}
{'comment': "He'll go into the National archives museum and shoot the Constitution and not lose a single voter. That tracks.", 'created': '2024-11-14 00:43:12', 'submission_id': '1gqqesw'}
{'comment': 'If trump vomited on stage MAGA would eat it for him. The traditional conservatives may opt for utensils, but they will eat it.\xa0', 'created': '2024-11-14 00:44:51', 'submission_id': '1gqqesw'}
{'comment': 'I really thought nothing could surprise me anymore, then Donald Trump won again. *NOW* nothing can surprise me anymore.', 'created': '2024-11-14 00:48:22', 'submission_id': '1gqqesw'}
{'comment': 'I noticed in his first administration, it seemed like the people he chose were always the person most likely to destroy that agency.', 'created': '2024-11-14 00:48:34', 'submission_id': '1gqqesw'}
{'comment': 'This is how project 2025 goes.', 'created': '2024-11-14 01:49:49', 'submission_id': '1gqqesw'}
{'comment': 'I guess Tucker Carlson as Press Secretary. Though, Tucker said in 2016 he wouldn’t take a cabinet position.', 'created': '2024-11-14 02:39:35', 'submission_id': '1gqqesw'}
{'comment': '🎯', 'created': '2024-11-14 00:38:28', 'submission_id': '1gqqesw'}
{'comment': 'There brows are preparing to be furrowed!', 'created': '2024-11-14 01:07:32', 'submission_id': '1gqqesw'}
{'comment': 'It’s who they’ve always been… they’ve just gotten a lot worse at hiding it', 'created': '2024-11-14 00:40:22', 'submission_id': '1gqqesw'}
{'comment': 'He just resigned Congress', 'created': '2024-11-14 01:44:32', 'submission_id': '1gqqesw'}
{'comment': 'Dennis Hastert', 'created': '2024-11-14 00:58:18', 'submission_id': '1gqqesw'}
{'comment': 'And if we do nothing but bitch on social media, everything that happens we deserve.', 'created': '2024-11-14 01:29:32', 'submission_id': '1gqqesw'}
{'comment': 'If they could make the age of consent 9 (like was just done in Iraq), they would. Fucking disgusting humans.', 'created': '2024-11-14 04:27:14', 'submission_id': '1gqqesw'}
{'comment': "I'm no Republican or Republican apologist, but I know there are still a handful of respectable Republican congresspeople / politicians. I have DeWine to thank for helping me realize that.\n\n\nThe question is if they'll risk persecution by standing in the way.", 'created': '2024-11-14 02:39:02', 'submission_id': '1gqqesw'}
{'comment': 'If only maga could read anything…or listen to anything but their orange savior', 'created': '2024-11-14 01:24:08', 'submission_id': '1gqqesw'}
{'comment': 'THAT is what has me puzzled too! ALTHOUGH if he just enough dumb things MAYBE the republic to their realization of who Trump ACTUALLY is!', 'created': '2024-11-14 01:26:46', 'submission_id': '1gqqesw'}
{'comment': '"Hearings"\n\n\nThere won\'t be any...', 'created': '2024-11-14 00:41:30', 'submission_id': '1gqqesw'}
{'comment': 'They had the opportunity to oust Gaetz, but they decided his vote was worth more than their integrity. So here we are 🙃', 'created': '2024-11-14 01:07:18', 'submission_id': '1gqqesw'}
{'comment': "That's pretty much what I'm hoping for too.", 'created': '2024-11-14 01:27:20', 'submission_id': '1gqqesw'}
{'comment': ' Not gonna happen. There is no bottom and there is no limit to what the Republican base will allow.', 'created': '2024-11-14 05:15:37', 'submission_id': '1gqqesw'}
{'comment': 'She’s not his type. He likes them real young.', 'created': '2024-11-14 05:16:13', 'submission_id': '1gqqesw'}
{'comment': 'With underage minors...', 'created': '2024-11-14 01:51:53', 'submission_id': '1gqqesw'}
{'comment': 'I don\'t think he\'s that smart. \n\nOr honestly cares if they "look better".\n\nOn the plus side: this 100% means geatz is finished.', 'created': '2024-11-14 01:20:53', 'submission_id': '1gqqesw'}
{'comment': 'I mean I’m sure they found two to make the story be true', 'created': '2024-11-14 00:49:01', 'submission_id': '1gqqesw'}
{'comment': "It won't matter, nothing will. Trump could have probably raped all their mothers and the Republicans would still be following him.", 'created': '2024-11-14 01:22:45', 'submission_id': '1gqqesw'}
{'comment': 'Vivek and Elon don’t need to be confirmed, since it’s a quasi agency, right?', 'created': '2024-11-14 00:43:50', 'submission_id': '1gqqesw'}
{'comment': 'Eh a weaponizing the DoJ and a Russian asset in charge of Intel seem bad too.', 'created': '2024-11-14 01:24:50', 'submission_id': '1gqqesw'}
{'comment': 'Or they are there to take whatever heat the media has left to give the administration, while the deputies behind the scenes work on implementation of P2025 in relative obscurity.', 'created': '2024-11-14 03:02:29', 'submission_id': '1gqqesw'}
{'comment': 'Hahahahaha. What is this, 2016 all over again?\n\n“Surely now they’ll see how weird he is!”', 'created': '2024-11-14 09:43:40', 'submission_id': '1gqqesw'}
{'comment': 'I hear Gaetz loves “recess” appointments.', 'created': '2024-11-14 01:22:25', 'submission_id': '1gqqesw'}
{'comment': 'I don’t think a traditionalist like Thune is going to like that very much.', 'created': '2024-11-14 00:42:27', 'submission_id': '1gqqesw'}
{'comment': 'They will also give gop senators an out - “we trusted that he knew what he was doing. It wasn’t *me*.”', 'created': '2024-11-14 22:29:47', 'submission_id': '1gqqesw'}
{'comment': 'Yeah, this here. 90% of the lick shit off trumps shoes now. No need to think they will change…', 'created': '2024-11-14 01:05:31', 'submission_id': '1gqqesw'}
{'comment': 'We all have no idea what is in store for us. He will literally burn this country to the ground, while half the people will say "Fire, good!".', 'created': '2024-11-14 03:50:54', 'submission_id': '1gqqesw'}
{'comment': "He's MAGA, even announcing skepticism gets your field office fire bombed.", 'created': '2024-11-14 00:55:42', 'submission_id': '1gqqesw'}
{'comment': 'I, for one, was shocked he won the nomination after he mocked the disabled reporter before the first shit show, and yet here we are! Three cheers for the party of morals and values!', 'created': '2024-11-14 03:58:14', 'submission_id': '1gqqesw'}
{'comment': 'Yep, turns out racist comments were big hits with racist garbage, never saw that coming.', 'created': '2024-11-14 01:29:03', 'submission_id': '1gqqesw'}
{'comment': 'I just saw that!', 'created': '2024-11-14 01:39:45', 'submission_id': '1gqqesw'}
{'comment': 'All three of those windbags will just gaze at their navels', 'created': '2024-11-14 04:01:06', 'submission_id': '1gqqesw'}
{'comment': 'Yes. Government agencies, despite the colossal horseshit lies told by trash, have a primary function of at least trying to protect Americans from the predations of the rich.\n\nThe rich hate that, and they’ve been big mad since their betters took their slaves away, so here Republicans are to bring back slavery.', 'created': '2024-11-14 01:31:03', 'submission_id': '1gqqesw'}
{'comment': 'You wouldn’t like them with their arms crossed.', 'created': '2024-11-14 02:03:46', 'submission_id': '1gqqesw'}
{'comment': 'Actually they just don’t care to hide it anymore', 'created': '2024-11-14 01:03:48', 'submission_id': '1gqqesw'}
{'comment': 'Do the Republicans currently have a majority now because of that? They were pretty tight, dems should ram thru anything they possibly can if they can oust Johnson for a couple months.', 'created': '2024-11-14 14:17:13', 'submission_id': '1gqqesw'}
{'comment': 'I think we already know the answer to that', 'created': '2024-11-14 02:49:47', 'submission_id': '1gqqesw'}
{'comment': 'Yes they will sidestep. Like he did last time.', 'created': '2024-11-14 01:06:12', 'submission_id': '1gqqesw'}
{'comment': 'Even if they do, they will look so normal vs. the others that they will the fastest confirmees', 'created': '2024-11-14 01:13:48', 'submission_id': '1gqqesw'}
{'comment': 'Matt Pizza Gaetz', 'created': '2024-11-14 02:10:50', 'submission_id': '1gqqesw'}
{'comment': 'Let’s hear it for the superb innuendo from GrandPriapus', 'created': '2024-11-14 14:54:29', 'submission_id': '1gqqesw'}
{'comment': 'I saw someone say he couldn’t get a recess appointment because he’s not a member of the DOJ. I don’t know how accurate this is..', 'created': '2024-11-14 16:11:29', 'submission_id': '1gqqesw'}
{'comment': 'You can be a real man or maga. Never, ever both.\n\nTrumps transition team has been saying for months they simply will not tap anyone who won’t swear unconstitutional, utterly fascist oaths of fealty to Trump.\n\nIf Thune got tapped, he bent the knee and polished the shroom,\nSame as everyone else.', 'created': '2024-11-14 01:27:56', 'submission_id': '1gqqesw'}
{'comment': '[He’s using it as a threat to strong arm Democrats into cooperating in rubber stamp hearings or else we’ll get no hearings at all.](https://www.usatoday.com/story/news/politics/elections/2024/11/13/south-dakota-senator-john-thune-says-recess-appointments-still-an-option-for-trump-cabinet/76265376007/)\n\nSo his plan is to go through the motions to give the appearance of Constitutional checks and balances but if the Democrats get too uppity in getting shameful things on the record about Trump’s shameful nominees then they’ll just skip the confirmation crap altogether. Win-win! For Trump.', 'created': '2024-11-14 00:49:07', 'submission_id': '1gqqesw'}
{'comment': 'It was an explicit prerequisite to be in the running in the first place.', 'created': '2024-11-14 00:44:43', 'submission_id': '1gqqesw'}
{'comment': 'Makes them feel better about themselves that he’s a crim like them.', 'created': '2024-11-14 01:38:35', 'submission_id': '1gqqesw'}
{'comment': 'I’m not sure as someone just croaked I thought I read too. Everything I find is for the new regime.', 'created': '2024-11-14 16:25:50', 'submission_id': '1gqqesw'}
{'comment': 'Pence and DeWine did it, and a few stood up for Kamala this year... We just need a handful of decent ones. Tall order, but not improbable.', 'created': '2024-11-14 03:14:22', 'submission_id': '1gqqesw'}
{'comment': 'He can pick anyone through recess appointments, you’re thinking of acting positions where they have to be part of the department already', 'created': '2024-11-14 18:46:14', 'submission_id': '1gqqesw'}
{'comment': 'I’m so tired of being told that Trump is bluffing or has an ulterior plan. Trump says what he’s doing and then does it, because nobody stops it. And he will continue to do it until someone stops him or he dies.', 'created': '2024-11-14 02:35:45', 'submission_id': '1gqqesw'}
{'comment': 'How can they legally skip the confirmation crap? Honest question.', 'created': '2024-11-14 02:22:14', 'submission_id': '1gqqesw'}
{'comment': 'Wake up to what is actually happening in front of you. You’re trying to hammer Trump into the political system that was working up until a week ago. America as a democratic republic is done. There are no checks or anything to balance with. Trump will do whatever he wants, with no checks on his authority. Who will you appeal to? This Supreme Court? We live under an authoritarian regime now.', 'created': '2024-11-14 16:09:35', 'submission_id': '1gqqesw'}
{'comment': 'All Thune said was "all options are on the table". That\'s pretty far from a commitment. \n\nMaybe he\'ll grow a spine. Maybe he\'ll put party before Trump even if he\'s genetically unable to put party before county.', 'created': '2024-11-14 00:48:36', 'submission_id': '1gqqesw'}
{'comment': "I mean if it's even 50/50 if they can find one republican to vote for Jeffries they could actually enshrine alot of stuff for specific periods of time so trump can't do away with them. Basically ruin every plan of his they can.", 'created': '2024-11-14 17:41:09', 'submission_id': '1gqqesw'}
{'comment': "Let's remember that Pence put the final nail in Trump trying to steal the 2020 election.\n\nTrump is so outrageous in his antics, not everyone is going to just go through with him shitting all over the constitution. There will be resistance... Whether it will be enough, let's hope.", 'created': '2024-11-14 08:50:55', 'submission_id': '1gqqesw'}
{'comment': 'Only if they cede their power to the wanna be dictator', 'created': '2024-11-14 02:24:13', 'submission_id': '1gqqesw'}
{'comment': "I think they will just be Acting this or Acting that. Didn't he do it for at least one of his cabinet members towards the end of his last administration?\n\nHe will just do it for all of them now", 'created': '2024-11-14 02:47:31', 'submission_id': '1gqqesw'}
{'comment': 'The President can make recess appointments if the Senate recesses for (I think) 10+ days. So Thune can call a recess, Trump can wait X days, make his appointments, and then Thune can call the Senate back into session. Recess appointments aren’t *quite* as good as the usual appointments but I think they’re “valid” until the end of the next year’s session. So if they did a bunch of recess appointments in January they’d be good through the end of 2026. Also, I’m not sure how it works once the recess appointment “expires”? Are they ousted until approved by the Senate? Or do they just become the “acting” [role] and carry on as before? If the Senate quickly recesses again before the midterms can he re-recess-appoint the same people he already recess appointed?\n\nApparently for like twenty years they’ve been making sure at least one Senator is banging the gavel in chambers every 3 days so no Presidents can get recess appointments. Since everyone was doing it and the purpose of recess appointments isn’t really applicable in the modern era and the people most inconvenienced by the existence of recess appointments were in a position to do something about it I’m a bit miffed nobody was like “hey instead of all this three day gavel nonsense why don’t we get rid of this thing?”', 'created': '2024-11-14 02:39:28', 'submission_id': '1gqqesw'}
{'comment': 'Maybe pigs fly. Republicans, with maybe a handful of exceptions, have no spine and will fall in line. Remember this post in a few months and really throughout the next four years. THEY WILL ALL FALL IN LINE LIKE GOOD LITTLE SOLDIERS BEHIND trump.', 'created': '2024-11-14 03:00:32', 'submission_id': '1gqqesw'}
{'comment': 'Hopefully they’re examining every angle.', 'created': '2024-11-14 17:47:55', 'submission_id': '1gqqesw'}
{'comment': 'You’re being foolish.', 'created': '2024-11-14 16:10:13', 'submission_id': '1gqqesw'}
{'comment': 'In theory, the Senate is supposed to hold confirmation hearings for Acting “appointments”. I think they basically just postponed those indefinitely after the first few rounds of people cycled through in Trump’s first “administration”. Or maybe it was just that he never officially nominated them, just left them as Acting indefinitely.', 'created': '2024-11-14 03:40:56', 'submission_id': '1gqqesw'}
{'comment': 'I had blocked out some of his first term, but now that you mention it, I seem to recall he had a lot of “acting” positions in his cabinet for a while because he had some trouble filling them with candidates that could pass the nomination process.', 'created': '2024-11-14 04:51:23', 'submission_id': '1gqqesw'}
{'comment': 'Grenell got all upset saying he was the first openly gay cabinet member, but he was never confirmed.', 'created': '2024-11-14 14:51:58', 'submission_id': '1gqqesw'}
{'comment': 'It’s in the Constitution, so they can’t just get rid of it.\n\n> Article II, Section 2, Clause 3:\n> The President shall have Power to fill up all Vacancies that may happen during the Recess of the Senate, by granting Commissions which shall expire at the End of their next Session.', 'created': '2024-11-14 03:34:58', 'submission_id': '1gqqesw'}
{'comment': "We'll see, dems tend to regularly let me down. They've just let republicans run rampant with no reprocussions... I honestly wonder if they even want to stop trump or just let him do as he pleases. They're a bunch of pussies.", 'created': '2024-11-14 18:44:50', 'submission_id': '1gqqesw'}
{'comment': " I'm being cautiously optimistic. I very much know what's at stake here, but there is a system in place that benefits all involved politicians, especially from a money perspective. I think it's reasonable to believe there will be a good deal of resistance whenever Trump moves closer and closer to a fascist state. The only one that really benefits from a Trump fascist state is Trump. GOP senators will likely push-back at some point the moment they realize that the system that handsomely compensates them comes crashing down. When they realize they are no longer needed or that their political life is on the line, they will fight like hell and eat their own without a moment's notice if they believe that results in their own survival.\n\nWe've seen this behavior from the GOP time and time again. Trump has a thing about making enemies and having his own turn on him. It would be silly to think that won't happen again when he's even more demented than before.", 'created': '2024-11-14 20:19:20', 'submission_id': '1gqqesw'}
{'comment': 'Yes, they can. It’s in the Constitution:\n\n> Article V: The Congress, whenever two thirds of both Houses shall deem it necessary, shall propose Amendments to this Constitution, or, on the Application of the Legislatures of two thirds of the several States, shall call a Convention for proposing Amendments, which, in either Case, shall be valid to all Intents and Purposes, as Part of this Constitution, when ratified by the Legislatures of three fourths of the several States, or by Conventions in three fourths thereof, as the one or the other Mode of Ratification may be proposed by the Congress; Provided that no Amendment which may be made prior to the Year One thousand eight hundred and eight shall in any Manner affect the first and fourth Clauses in the Ninth Section of the first Article; and that no State, without its Consent, shall be deprived of its equal Suffrage in the Senate.', 'created': '2024-11-14 03:54:11', 'submission_id': '1gqqesw'}
{'comment': 'Let’s play a game: it’s the 1st of February, 2025, and you come home from work. Your key won’t work. During the day, someone at the DHS came and changed the locks. You go to the atm-they’ve blocked you from your accounts. You call DHS to find out why. They tell you you’ve been declared a non-citizen of the US for “disloyalty”. They’ve seized all your assets. Who, then, do you appeal to for help getting back what the government took from you? Right now, there are procedures to help you, and a way to challenge government decisions. Checks exist tight now on government power. But in February, what checks will you have in your favor then? This Supreme Court? \n\nRead history- you’re always welcome to agree with authoritarians. It’s when you don’t that you need to have an independent co-equal branch to stand up for you. Who will that be in a Trump regime?\nEdit: spelling', 'created': '2024-11-14 22:18:28', 'submission_id': '1gqqesw'}
{'comment': 'The last amendment was made 32 years ago and it took 202 years to be ratified.\n\nBut regardless, the _Senate_ cannot just get rid of it.', 'created': '2024-11-14 03:57:21', 'submission_id': '1gqqesw'}
{'comment': 'Guess what? Anything Trump does which is plausibly related to his official duties is absolutely immune. So what’s to stop Trump from issuing an Executive Order declaring a state of emergency exists which permits him to suspend the powers of Congress, and of the Supreme Court if they try to tell him he can’t do that? They literally wrote an opinion saying “you can do that.”', 'created': '2024-11-14 14:56:34', 'submission_id': '1gqqesw'}
{'comment': 'Yea, I’m well aware of how the fucking Constitution works, thanks. I’m a lawyer.\n\nCongress proposes amendments. The Senate is part of Congress. Senators are affected by recess appointments. Senators are in a position to do something about it. Something like approaching their colleagues in DC and saying “hey instead of all this three day gavel nonsense why don’t we get rid of this thing?”\n\nNB- This comment is not a Constitutional treatise. The actual amendment process is more complex. There are like at least three more steps involved. Maybe even more. I would hate for a Redditor to read a Reddit comment believing it’s a full and complete and accurate statement of the law rather than a flippant offhand remark and get their panties all in a bunch.', 'created': '2024-11-14 04:19:56', 'submission_id': '1gqqesw'}
{'comment': 'This court will let Trump do just about anything, but the one uncrossable line I expect it will have is to protect its own power: they get to decide what is an official act or not.', 'created': '2024-11-14 15:01:24', 'submission_id': '1gqqesw'}
{'comment': 'Apologies, I didn’t mean to offend. I just read your initial comment as “why don’t Senators just get rid of it” as though you thought it was something they could do unilaterally, like modify the Senate rules for the session.', 'created': '2024-11-14 04:27:25', 'submission_id': '1gqqesw'}
{'comment': 'I’m a lawyer too, so I’d expect you to have better reading comprehension and courtesy. Your earlier comment implied that the senate could unilaterally change it. No need for the attitude.', 'created': '2024-11-15 00:52:37', 'submission_id': '1gqqesw'}
{'comment': 'My comment that quoted the part of the Constitution that lays out exactly how to amend the Constitution gave that person the impression that I believed *only* the Senate could amend the Constitution?', 'created': '2024-11-15 01:10:55', 'submission_id': '1gqqesw'}
{'comment': 'I giggled at this', 'created': '2024-11-14 00:51:04', 'submission_id': '1gqqdqe'}
{'comment': 'Vivek will be the first to go.. Megamind forgot he was Indian', 'created': '2024-11-14 05:13:09', 'submission_id': '1gqqdqe'}
{'comment': 'Human centipede', 'created': '2024-11-14 16:31:34', 'submission_id': '1gqqdqe'}
{'comment': 'The Senate has never been as MAGA infested as Congress.', 'created': '2024-11-14 00:19:46', 'submission_id': '1gqpv96'}
{'comment': 'This is a small…small…glimmer of hope. He’ll still push through bad judges and the like. But, nothing gets to the floor unless he decides to put it there. The senate isn’t as close as the past two years, but it’s still very close. Murkowski will pick and choose when to push back and Susan, pearl clutcher, Collins is up for re-election in a non-MAGA state in 2026.', 'created': '2024-11-14 16:26:58', 'submission_id': '1gqpv96'}
{'comment': 'Just so we’re clear; a Rino is a Republican who chooses country over Trump.', 'created': '2024-11-15 01:24:35', 'submission_id': '1gqpv96'}
{'comment': 'The house is a little crazy, but glad to know the Senate is more normal, thank Goodness Kari Lake lost, I have some hope and some guard rails will be in place', 'created': '2024-11-14 00:28:16', 'submission_id': '1gqpv96'}
{'comment': 'Yet...', 'created': '2024-11-14 01:50:49', 'submission_id': '1gqpv96'}
{'comment': "Yeah, but I don't see the Senate ever going toe to toe with Trump. None of them are going to want to piss him off.", 'created': '2024-11-14 02:10:25', 'submission_id': '1gqpv96'}
{'comment': 'Hopefully he won\'t give in on Trump demand for the Senate to go on recess so Trump can skip the whole " shall nominate, and by and with the Advice and Consent of the Senate" with the key word Advice and Consent.', 'created': '2024-11-14 17:05:01', 'submission_id': '1gqpv96'}
{'comment': 'There only one Donald Trump, thank God, what will the GOP do when Trump Ticker stops ticking', 'created': '2024-11-15 01:46:56', 'submission_id': '1gqpv96'}
{'comment': 'Supposedly, that was one of the reasons they went with him over Cornyn and the Magalyte guy.\n\nThey do not want these appointments going without their permission.\n\nPeople think the Senate won\'t go against Trump, but they are already bowing up to him to let him know that they are going to do what they want. \n\nSometimes that might be in alignment with him and other times it won\'t.\n\nThese guys still have to get re-elected and there is not another "Trump" out there that is going to be able to do what he has done. \n\nIn one fail swoop, Trump lost his staunchest supporter in the House, the Senate already told him no, and he is a lame duck President.\n\nProvided they stick to their guns, Trump\'s second term is going to be a lot of bluster and court cases tying up his executive actions.', 'created': '2024-11-14 17:38:00', 'submission_id': '1gqpv96'}
{'comment': "It was 2 rounds of voting Scott didn't do well in the first round so Thune was elected in the second round. \n\nForgive me, take me a minute to understand, so they want the chance to vote for Trumps cabinet?\n\nFrom my understanding from your 3rd point, the Senate wants to keep their job and not be voted out? \n\nFor your 4th point Thune will have a better back bone than Mitch McConnell?\n\nYes they do if they like working, Trump is at 78 and in 4 years he will be 82, God forbid if anything bad happen to Trump the GOP will be lost because some die hard members invested in him so much like MTG. \n\nPoint 6, give me hope for the next 2-4 years because there are some never Trump people in the house, definitely the Senate, so we could see some bipartisan, Trump could get his tariffs but a water down version. \n\nSo kinda like his 1st term what comes to my mind was the Muslim travel band second one that might work was when he shut down the government because Congress wouldn't fund his wall. If you have any more examples can you please give me some? \n\nAgain I'm a 23 year old male, it take me a minute to comprehend some of you points, sometimes I need some clarification, I'm always happy and ready to learn about things!", 'created': '2024-11-14 18:55:19', 'submission_id': '1gqpv96'}
{'comment': 'So Thune was the one guy Trump did not want to be the leader of the Senate. He wanted Kelly who is a Trump loyalist. Trump called Thune a "RINO" or "Republican in Name Only" - meaning that he is closer to a Democrat, but that is not true in any way. Thune is a Republican, but he is not an extremist, so yes, there is some hope there that he will not back down to what Trump wants all the time.\n\nYes, the Senate wants to do their jobs. They are the ones who vote on appointees, like the AG of the US, and other very, critically, important positions. They do not want Trump to over-reach his power, by using recess appointments, where he can bypass the Senate debate about someone he wants to put in office. Kelly was willing to allow the recess appointments, the rest of the Senate was not.\n\nYes, the Senate has to worry about their jobs and keeping the majority. In two years we have mid-terms, and in those elections, there are, I think, 13 seats up for grabs. If the Senate goes crazy pushing everything Trump wants through to law, most of them will lose their seats and they want to avoid that at all cost. Politics is a slow burn game, not a hurry up and do everything all at once. Trump does not understand that, so he is trying to get a bunch of things shoved through at one time, on his first day in office, and he is not going to get to do most of it.\n\nAs far as anything happening to Trump, the alternative is JD Vance and he is much sharper than Trump is, but he is about as likeable as a rubbing your crotch on a cactus. The danger with him is that he is sneaky smart and eloquent, and would be able to make more traction on Project 2025 than Trump will. Trump is going to fire every single one of the people he has already appointed, most of them before this time next year. There is little he enjoys more than firing people, and that will keep his administration dysfunctional. Vance would not have that problem.\n\nThere is hope over the next 4 years. We have mid-terms coming up and we need everyone to get out a vote. We need to give Congress back to the Democrats so they can stall Trump\'s hostile takeover of the government. We have good people on both side of the aisle in both Chambers of Congress. Not everyone is a Trump loyalist who is chomping at the bit to crash the economy and send us into another Great Depression. There are some very intelligent and powerful people in Washington DC who can beat Trump behind the scenes. They will have to concede some lower end losses, but they can keep most everything else the same as it is today. Whether or not they WILL do it, is another story, but don\'t lose hope. At the end of the day, most of the people in Congress do not care who you voted for, if you call them, they will try their best to help you. \n\nI am as scared about the next 4 years as anyone. But, I am a straight, white, male, in Texas, and I honestly do not have a lot to worry about personally. My concern is for my wife and kids and what kind of world we are creating, and leaving behind, for them. \n\nTrump has made it okay for racist, misogynist, homophobic asshats to crawl out of the woodwork and openly scream their bullshit from the rooftops.\n\nAll we can do is fight the fight in front of us. We have to vote. We have to educate, not only ourselves, but those around us. We have to be the example of what we want the world to be. It is going to be easy to give into hate and depression over these next few years, but you have to fight it. It will get better.', 'created': '2024-11-14 20:43:27', 'submission_id': '1gqpv96'}
{'comment': "Well said. I can't imagine that Thune wants his legacy of Majority Leader to start with allowing the dismantling of the Government and Alliances.", 'created': '2024-11-14 21:40:10', 'submission_id': '1gqpv96'}
{'comment': "He also hasn't complied with his ethics disclosures, so technically, there should be no transition happening.\n\nHe can still take office, but by the law HE SIGNED the old admin should not share info with the incoming administration until they have disclosed how they will deal with any conflicts of interest and Trump is one big conflict of interest.", 'created': '2024-11-13 23:51:58', 'submission_id': '1gqpss0'}
{'comment': "I'm actually kind of insulted that Biden met with it.", 'created': '2024-11-14 01:09:48', 'submission_id': '1gqpss0'}
{'comment': "As usual.. Biden being the nice guy. .. to be honest I'm tired of the nice. It didn't get us anywhere. And now we're living in a f****** nightmare. But sure shake the guy's hand. Who's going to destroy our country. And let him do it.", 'created': '2024-11-13 23:54:46', 'submission_id': '1gqpss0'}
{'comment': 'A little thought exercise: If Trump had engaged in a peaceful transfer power after losing in 2020, would he still have won in 2024?', 'created': '2024-11-14 01:43:51', 'submission_id': '1gqpss0'}
{'comment': 'I hear you, but one leads by example. Biden is a die-hard institutionalist and always tries to stake the high ground.', 'created': '2024-11-14 00:02:57', 'submission_id': '1gqpss0'}
{'comment': 'It’s absolute madness. Biden invites Trump to the White House, shakes his hand, and plays nice like everything’s normal, all while Trump tried to overthrow the government when he lost in 2020. And Biden doesn’t even call him out on it? This is exactly the kind of weak, appeasement politics that’s killing the Democrats. Wake up and stop pretending things are business as usual!', 'created': '2024-11-14 00:42:06', 'submission_id': '1gqpss0'}
{'comment': 'If we are going to get mad it should be directed at the morons who voted him in.', 'created': '2024-11-13 23:59:03', 'submission_id': '1gqpss0'}
{'comment': 'He said “Welcome Back”…. That’s all you need to know…', 'created': '2024-11-14 00:11:15', 'submission_id': '1gqpss0'}
{'comment': 'As an American, I am insulted to think that any real American could vote for the orange fascist.', 'created': '2024-11-14 00:45:35', 'submission_id': '1gqpss0'}
{'comment': "Welcome back \n\nGood luck \n\nI've had zero assassination attempts in all my years as Senator VP and President \n\nYou had 2 this year and we're the same age \n\nMelania isn't going to be here with you \n\nI'll outlive you and no one will see me smile when the news reports you died", 'created': '2024-11-14 00:45:44', 'submission_id': '1gqpss0'}
{'comment': 'Meeting in the Oval Office is one thing. The Bidens took a smiling photo w/ Trump outside that is flat out disgusting. Normalizing this evil madman is not okay.', 'created': '2024-11-14 07:12:52', 'submission_id': '1gqpss0'}
{'comment': 'Dems continue to be addicted to adhering to decorum but it’s probably worth it in the long run', 'created': '2024-11-14 07:23:41', 'submission_id': '1gqpss0'}
{'comment': "I'm mad as hell about this. They go low, we go high, they gut and hamstring us while we sail over their heads. \n\nBiden will be a gentleman while handing the country over to fascists. \n\nAnd I'm still waiting for their preparations for Project 2025 . . . I'm afraid those are a set of laws and ethics codes that Drumpf will ignore and step on, like usual.", 'created': '2024-11-14 00:06:26', 'submission_id': '1gqpss0'}
{'comment': 'We are witnessing the last breath of American decency in government and politics.', 'created': '2024-11-14 07:16:15', 'submission_id': '1gqpss0'}
{'comment': "Don't hand it over. Please.", 'created': '2024-11-14 02:27:12', 'submission_id': '1gqpss0'}
{'comment': 'You are correct to feel insulted. That’s the best I got for you.', 'created': '2024-11-14 04:40:02', 'submission_id': '1gqpss0'}
{'comment': 'Like magic, all the election integrity issues vanished overnight.', 'created': '2024-11-14 11:40:56', 'submission_id': '1gqpss0'}
{'comment': "Trump never did that for Biden. I feel like Dems are being TOO gracious. They shouldn't go all January 6 but why is everyone just letting him take power?", 'created': '2024-11-14 15:16:07', 'submission_id': '1gqpss0'}
{'comment': "Biden is a class act. He did the right thing. He probably laid out to Trump the best courses of action to follow. If Trump wants his ego stroked, he will do better by surprising us and not doing the evil he has promised. If he chooses evil, Biden's example will shine bright.", 'created': '2024-11-14 01:07:20', 'submission_id': '1gqpss0'}
{'comment': 'Exactly', 'created': '2024-11-14 01:26:46', 'submission_id': '1gqpss0'}
{'comment': 'What do you mean by "countless Americans?" (edit: Are you referring to January sixth, or that plus the pandemic deaths?)', 'created': '2024-11-14 08:21:46', 'submission_id': '1gqpss0'}
{'comment': 'As an American, I feel disgusted and appalled that my fellow Americans would elect a traitorous ex-president wannabe dictator over a woman.', 'created': '2024-11-14 17:22:17', 'submission_id': '1gqpss0'}
{'comment': '[removed]', 'created': '2024-11-14 01:06:14', 'submission_id': '1gqpss0'}
{'comment': 'Trump is a pig. Elections only actually work if he wins.', 'created': '2024-11-14 05:06:08', 'submission_id': '1gqpss0'}
{'comment': 'he is a malignant narcissist. he doesn’t care.', 'created': '2024-11-14 09:17:55', 'submission_id': '1gqpss0'}
{'comment': 'Absolutely amazing that Trump has no embarrassment what so ever.', 'created': '2024-11-14 12:46:02', 'submission_id': '1gqpss0'}
{'comment': 'If you wanna win elections going forward, you have to appeal by any means and policies necessary to Latino voters', 'created': '2024-11-14 13:41:38', 'submission_id': '1gqpss0'}
{'comment': 'There are so many thing to be insulted with this is way down the list.', 'created': '2024-11-14 17:28:25', 'submission_id': '1gqpss0'}
{'comment': 'This is the core problem with the democrats. The ritual of the peaceful transfer of power must be observed irrespective of the impact on the country and the planet. You cannot spend 12 years accurately maligning Trump as a threat to democracy, the country, and the planet and then go "well, the will of the people has spoken, I guess there is nothing we can do :shrug:". DO LITERALLY ANYTHING.', 'created': '2024-11-14 20:55:55', 'submission_id': '1gqpss0'}
{'comment': 'I feel like Biden should just be honest and respond with, "Yes, that\'s the way a real leader does things. Only a small, weak man would try to make the transition harder. "', 'created': '2024-11-15 16:09:23', 'submission_id': '1gqpss0'}
{'comment': 'Biden is a status quo capitalist and a coward...\nHe has proven that many, many times', 'created': '2024-11-14 07:22:03', 'submission_id': '1gqpss0'}
{'comment': 'He didn’t need to acknowledge it. We haven’t forgotten. He’s not a petty man.', 'created': '2024-11-14 04:20:34', 'submission_id': '1gqpss0'}
{'comment': 'Biden just wants out. I can’t blame him. He saved us once and the country treated him like shit.', 'created': '2024-11-14 02:02:13', 'submission_id': '1gqpss0'}
{'comment': 'We took out Osama Bin Laden, a terrorist. Why doesn’t the Constitution allow for this big idiot to go to jail.', 'created': '2024-11-14 08:27:21', 'submission_id': '1gqpss0'}
{'comment': 'Yeah, I was pissed at Obama for acting like it was a normal hand off and I’m super pissed Biden is doing the same thing. \n\nLike, if he’s as unfit as everyone has said he is, shouldn’t they be doing something to insure we don’t have a dictator king??', 'created': '2024-11-14 00:54:44', 'submission_id': '1gqpss0'}
{'comment': 'Yup just yesterday he was going on and on about crooked Joe this and crooked Joe that. I would decline to meet with him if I were Joe.', 'created': '2024-11-14 07:15:34', 'submission_id': '1gqpss0'}
{'comment': "I agree, im pissed at Biden. The Dems loae because they play by different rules. If Dems don't learn to get brutal and get in the gutter and win at all costs, they'll never win again", 'created': '2024-11-14 14:00:09', 'submission_id': '1gqpss0'}
{'comment': 'That is not donnie\'s way. Remember he is mentored by Roy Cohn who said "Never admit defeat"', 'created': '2024-11-14 11:12:01', 'submission_id': '1gqpss0'}
{'comment': 'We’ll put it on Americas tombstone. “At least we were nice.”', 'created': '2024-11-14 01:24:06', 'submission_id': '1gqpss0'}
{'comment': "Well that doesn't work anymore", 'created': '2024-11-14 00:27:11', 'submission_id': '1gqpss0'}
{'comment': 'I’m mad at them too!', 'created': '2024-11-14 01:17:39', 'submission_id': '1gqpss0'}
{'comment': 'Real Americans *didn’t* vote for the orange fascist, rest assured.', 'created': '2024-11-16 17:45:43', 'submission_id': '1gqpss0'}
{'comment': 'Biden will be a gentleman, and Trump’s DOJ will arrest him on made-up charges and actually throw him into the jail cell that TFG never saw.', 'created': '2024-11-14 04:42:28', 'submission_id': '1gqpss0'}
{'comment': 'I don’t blame Biden. \n\nThe man gave us what no other government managed to do. A soft post-COVID landing. \n\nThe voters told him to fuck off. As did his own Party and political “allies”. \n\nThis is Dark Brandon’s final “fuck you” to us and to Pelosi and the other “power brokers”. \n\nAnd we deserve it. He doesn’t owe us shit.', 'created': '2024-11-14 19:59:32', 'submission_id': '1gqpss0'}
{'comment': ">Biden is a class act. He did the right thing\n\nIf Trump succeeds in making the US an authoritarian government, did Biden do the right thing?\n\nBecause there are a lot of dark potential paths ahead of us. \n\n5 years from now, it may be obvious the best thing to do was to arrest Trump and have him hauled off to a CIA black site, never to be seen again. And then deal with the fallout from that.\n\nBut I guess if he wasn't prepared to take extraordinary action, this was the best course.", 'created': '2024-11-14 02:15:55', 'submission_id': '1gqpss0'}
{'comment': 'Peaceful transfer of power. You have to look at the global picture. trump temper tantrum "It was stollen" was the message he presented to the world in \'20. Biden presents this "our democratic process spoke and gave the presidency to trump"', 'created': '2024-11-14 11:14:22', 'submission_id': '1gqpss0'}
{'comment': 'Ruth Bader Biden delivered this presidency to us, and everything that happens from here on out will be his legacy.', 'created': '2024-11-14 02:34:53', 'submission_id': '1gqpss0'}
{'comment': 'Jan 6th — you’re right. The word “countless” to represent 6 individuals is excessive. I just get angry when I think about Americans dying and worded it incorrectly.', 'created': '2024-11-14 08:50:49', 'submission_id': '1gqpss0'}
{'comment': 'Atta boy! Purge the heretics! Marxist Revolution now!', 'created': '2024-11-14 19:57:35', 'submission_id': '1gqpss0'}
{'comment': "History will look back with great admiration for what Biden did for the country. He has laid in some great ground work (I'm a huge supporter of the CHIP(s) act) but these programs take time like a seed to grow and sprout.", 'created': '2024-11-14 11:07:34', 'submission_id': '1gqpss0'}
{'comment': 'He did a lot of good work going into the situation, but when the times called for him to grow some balls he failed us terribly. He should have dropped out far earlier, and he should have made more of a fuss about locking Trump up and doing SOMETHING, ANYTHING, to stop this bullshit. \n\nThe modern Dems are too afraid of performing government overreach because MAGA has labeled that characteristic for them and they’re adhering to MAGAs false reality. They’re too afraid of upsetting the status quo and having a period of instability and unrest even if it means protecting everything this nation has been building up since the end of the fucking Gilded Age 124 years ago. Teddy Roosevelt & FDR are rolling in their graves right now. \n\nThe Dems have failed us, then after raising 1 BILLION dollars they had the AUDACITY to send people text messages the day after the election asking for more money. \n\nThe modern Democratic Party needs to get their shit together and learn from their mistakes. Bernie’s message was right and the fact the DNC chair came out and said what Bernie said is “bullshit” means that the DNC still has learned absolutely nothing. They’re too obsessed with keeping the status quo going even when things CLEARLY must be handled differently. \n\nThe Dems have one more attempt in four years to fix this shit or else they’re just fucking done for. Absolute pitiful action by them in this election. Kamala’s snap campaign was handled best it could, and it wasn’t terrible. But there were numerous shortcomings, the main being Biden should have dropped out sooner. \n\nThere are many fingers to point in the blame game on this, but one finger to point definitely goes to Biden.', 'created': '2024-11-14 15:22:46', 'submission_id': '1gqpss0'}
{'comment': 'No, Biden must be blamed as well if you want to learn from loses. He should have prepared the next candidate since day one. But his ego and his corrupted political entourage wanted to cling into power. It was clear that he was too old since day one.', 'created': '2024-11-15 15:49:15', 'submission_id': '1gqpss0'}
{'comment': 'That’s what I’m saying. There are definitely things that federal powers could have done to stop this. But it would have required government overreach, and MAGA has painted the false reality of the Dems as doing government overreach and the Dems are living in that false reality by being too afraid of their image because of the false reality MAGA painted in the first place. They’re fucking wimps. They won’t commit some overreach to save us from a fucking nutjob fascist.', 'created': '2024-11-14 15:27:28', 'submission_id': '1gqpss0'}
{'comment': "I was just having a dialogue with one of the few sane Republicans I have left in my life that stemmed from him claiming Biden was gaslighting Americans by stoking fear of fascism only to turn around and say everything would be ok. I disagreed, gave my reasons, and then my friend said something akin to what you just said: if it's something the administration is actually worried about, why aren't they doing anything about it? I didn't have a good response because he's right to an extent. Biden is handing our democracy over with his tail between his legs.", 'created': '2024-11-14 01:09:03', 'submission_id': '1gqpss0'}
{'comment': "One would think. But not in this New nightmare. My brother has multiple myoma. He'll lose his health care. He's going to die. .. I'm disabled. I'm going to lose everything that I need to live on.. without medication. I will die.. I have friends who are wanting to kill themselves. Because they don't feel safe in this new reality. \n\n But yeah that's be nice about it. I'm absolutely disgusted. That there's not a bigger fight. To stop this from happening. Nothing about this is okay. The rest of the world is terrified. Or they're laughing at us. Because we let this happen.", 'created': '2024-11-14 00:59:55', 'submission_id': '1gqpss0'}
{'comment': 'Like what?', 'created': '2024-11-14 05:05:39', 'submission_id': '1gqpss0'}
{'comment': 'Bringing knife sharpeners to gun fights.', 'created': '2024-11-14 00:33:27', 'submission_id': '1gqpss0'}
{'comment': "And the Orange turd is sitting there, smirking, because he knows this is how it'll play out.", 'created': '2024-11-14 16:58:14', 'submission_id': '1gqpss0'}
{'comment': 'There’s no Superman coming, no magical Uno reverse card. \n\nYou can’t “save” Democracy from itself. \n\nWhat do you wanna do? Have Biden Seal Team 6 Trump? Then what? A civil war? Great. \n\nThere’s supposed to be a peaceful transition of power. Both teams have to accept that. \n\nBut nothing can save Democracy from the voters. They are absolutely capable of ending it.', 'created': '2024-11-14 19:56:56', 'submission_id': '1gqpss0'}
{'comment': 'The trouble with this is that Trump is just the figurehead of the wave. It’s not enough to whisk him away. TPTB would have to stop the entire Republican administration from coming in, and possibly the turnover of Congress to Republican control. \n\nIn a few years, we may wish that had happened, but we have to acknowledge that Joe will never be the person who would do that.', 'created': '2024-11-14 04:46:28', 'submission_id': '1gqpss0'}
{'comment': "Unfortunately, I'm seeing a lot of comments where people think that's weak, and that Biden shouldn't have given Trump the Honor.", 'created': '2024-11-14 17:14:47', 'submission_id': '1gqpss0'}
{'comment': 'Oh please. Put the blame at McConnell’s feet and stop cutting down a legacy of an amazing woman and legal mind who did what President Obama asked her to do.', 'created': '2024-11-14 06:40:30', 'submission_id': '1gqpss0'}
{'comment': 'No blame on the voters. Interesting. Kind of weird to fully abscond those that, you know - elect their leaders?', 'created': '2024-11-14 19:54:08', 'submission_id': '1gqpss0'}
{'comment': "Okay yeah no worries just wanted clarification in case I was misinformed. I mean Trump did cause deaths with COVID misinformation and overturning roe v Wade, and I'm sure some other horrible things he's done.", 'created': '2024-11-14 09:12:09', 'submission_id': '1gqpss0'}
{'comment': "I'm just saying, he's not going to save us.\n\nWe are fucked.", 'created': '2024-11-14 20:21:10', 'submission_id': '1gqpss0'}
{'comment': "It'll sprout during the second Trump administration and he'll take credit for it.", 'created': '2024-11-14 16:06:02', 'submission_id': '1gqpss0'}
{'comment': 'What’s the worst thing that will happen? Do the feds remember they have the army on their side ? People will fall under the law and order eventually.', 'created': '2024-11-15 20:28:29', 'submission_id': '1gqpss0'}
{'comment': 'This is a common refrain I\'m seeing in lots of places from Republicans.\n\n"I guess Trump isn\'t as bad as you said he was, eh?"\n\nIt\'s infuriating to watch the adults continue to behave like everything\'s OK while the inmates take over the asylum. \n\nI get that they want to show the American people and the world that "democracy works" and "we\'re better than that", but we\'re facing an existential crisis with Trump 2.0. It\'s only a week after the election and insanity is already beginning. \n\nHow can Dems both show they are the adults and that "democracy works", but stop this fascist takeover before it gets too far? We\'re just handing it to them and showing everyone that the calls of "fascism" was all just bluster. But it is in fact NOT just bluster. The consequences here will be very very real.', 'created': '2024-11-14 01:50:49', 'submission_id': '1gqpss0'}
{'comment': 'What do you think he can do?', 'created': '2024-11-14 05:06:13', 'submission_id': '1gqpss0'}
{'comment': ">What do you wanna do? Have Biden Seal Team 6 Trump?\n\nNo. I don't think that's the way to handle it.\n\n>There’s supposed to be a peaceful transition of power. Both teams have to accept that. \n\nYou mean the principal that when there is a free and fair democratic election, that there is a peaceful transition of power? In order to keep our democracy running smoothly?\n\nYeah. That's not what happened here. One of the parties ran a tyrant intent on stomping all over the Constitution. Instead of a pro-democracy president interested in preserving our Constitution. \n\nAnd this is what the fascists want. They want the keys handed over to them. They love that you guys champion appeasement. \n\nAfter all, that's what your post is about. Appeasement. We can't take any action against them, because it might institute a civil war. So we just have to give into them.\n\n>You can’t “save” Democracy from itself. \n\nActually, we could have. If Americans had recognized the danger decades ago. That our US Constitution and system of laws did not protect us from weaponized rhetoric from the fascist playbook. \n\nOf course, it was unthinkable at that time that the US could succumb to fascism. National hubris.", 'created': '2024-11-14 20:07:02', 'submission_id': '1gqpss0'}
{'comment': 'they would have bomb the whole clown car to fix it.', 'created': '2024-11-14 18:24:25', 'submission_id': '1gqpss0'}
{'comment': 'Oh, I have plenty of blame for them too. But we’re only having this conversation because Biden’s ego about “Only I can defeat Trump” drive him to break his promise to be a “transitional” President.\n\nIf he had announced he wasn’t running at the end of 2022, we could have had a genuine primary process, instead of him dumping the campaign into Harris’s lap at the 11th hour and setting her up to fail.\n\nHe was the most progressive president of my entitle lifetime, but none of that is going to matter after this election. His only legacy will be having handed the country back to Donald Trump.', 'created': '2024-11-14 19:57:39', 'submission_id': '1gqpss0'}
{'comment': 'Absolutely. I was just responding to the NBC article specifically though.', 'created': '2024-11-14 09:17:11', 'submission_id': '1gqpss0'}
{'comment': 'Not sure about any program Biden has put in last 4 years will survive \n\n# House Speaker Johnson says GOP may try to repeal CHIPS Act, then walks it back \n\n\n\n# House Speaker Mike Johnson said Friday that Republicans “probably will” try to repeal legislation that spurred U.S. production of semiconductor chips, a statement he quickly tried to walk back by saying he would like to instead “streamline” it.', 'created': '2024-11-14 17:46:41', 'submission_id': '1gqpss0'}
{'comment': '>How can Dems both show they are the adults and that "democracy works", but stop this fascist takeover before it gets too far? \n\nUnless Biden and Harris decided to take some kind of extraordinary action, it\'s too late. \n\nThose of us who are pro-democracy Americans are going to have to engage in grassroots activities to recruit more pro-democracy Americans.\n\nNot from the MAGA cult. But from those people who distrust both parties, but thought Trump would take care of whatever single issue is important to them. And from those people who are too apathetic about how our government works to vote. \n\nSo time to start having conversations with friends, family, co-workers, and neighbors who were those citizens. Overtime, hopefully Trump will demonstrate enough of who he really is that we can open their eyes. \n\nBut I would not talk to them as a Democrat. The propaganda and lies of the Republican Party have been successful. Those groups of citizens will be resistant to what you have to say if you start talking about what Democrats can do.\n\nBut you do share a common ground with them as a pro-democracy American. \n\nAnd then once they wake up and understand the nightmare they\'re in. They\'ll come to support Democrats all on their own.', 'created': '2024-11-14 02:30:57', 'submission_id': '1gqpss0'}
{'comment': 'It’s not a fascist takeover when Americans literally voted for it. It’s democracy at work. Just read that last quote in the article from Biden: \n\n> “Campaigns are a contest of competing visions. The country chooses one or the other. We accept the choice the country made,” Biden said last week. “You can’t love your country only when you win. You can’t love your neighbor only when you agree.”\n\nI saw another commenter saying they have friends contemplating killing themselves over this election. People need to cool it.', 'created': '2024-11-14 11:00:04', 'submission_id': '1gqpss0'}
{'comment': 'Sadly, yes. \n\nHe made the same crucial mistake Obama did in 2016 - that Americans are fundamentally good, intelligent people.\n\nWe were going to forgive him for the inflation. We were going to look past our differences. We were going to vote for a black woman. Etc. etc.', 'created': '2024-11-15 10:12:35', 'submission_id': '1gqpss0'}
{'comment': 'god that is depressing :(', 'created': '2024-11-14 18:03:55', 'submission_id': '1gqpss0'}
{'comment': "It sounds like you're describing something like a Democrat 'tea party' - an offshoot with that needs a catchy name that is scrappy, noisy, and will challenge everything. I am a democrat, and did not support the tea party views obviously, but it cannot be denied that they effected change when they were active.", 'created': '2024-11-14 18:06:06', 'submission_id': '1gqpss0'}
{'comment': 'But Trump is a scam artist. None of what he sold to voters is real. Biden should be an adult and communicate that to Americans. Since he won’t, he is complicit. Literally gaslighting us.', 'created': '2024-11-14 14:57:36', 'submission_id': '1gqpss0'}
{'comment': "Biden put over 150K high paying jobs into people's hands with CHIP(s) act and might be stopped?", 'created': '2024-11-14 19:06:34', 'submission_id': '1gqpss0'}
{'comment': "I'm not describing an offshoot of the Democratic Party. Anymore than the women's rights movement is an offshoot of the Democratic Party. Or the Civil Rights movement.\n\nI'm describing a pro-American democracy movement. Doesn't matter if somebody was Democrat, Republican, Libertarian, or independent in previous elections.\n\nWe need a grassroots movement to wake people up who were conned by the authoritarian GOP. So that we can swell the ranks of citizens who are anti-fascist, and recognize who the fascists are. \n\nAmericans didn't fight in World War II as Republicans or Democrats. They fought as pro-democracy Americans.\n\nI'm not advocating violence. Rather, there are passive means of resistance that can bring down authoritarianism, if you have enough of the civilian population participating. \n\nMeanwhile, the Democratic Party is actually not suited for this. It is a party of governance, not a resistance movement.", 'created': '2024-11-14 18:55:35', 'submission_id': '1gqpss0'}
{'comment': 'Free firewall workaround, if you need one:\n\nhttps://archive.is/gN8Ld', 'created': '2024-11-13 23:24:48', 'submission_id': '1gqpalv'}
{'comment': "Hand recount the pres race while you're there.", 'created': '2024-11-13 23:43:06', 'submission_id': '1gqpalv'}
{'comment': 'Is this going to be a hand recount?', 'created': '2024-11-13 23:31:08', 'submission_id': '1gqpalv'}
{'comment': 'What happens if the recount finds Casey has more votes. Would this create more recounts?', 'created': '2024-11-14 00:40:01', 'submission_id': '1gqpalv'}
{'comment': '[removed]', 'created': '2024-11-14 01:46:02', 'submission_id': '1gqpalv'}
{'comment': 'Not sure on PA rules. But not likely. They run the tallies again and from what I understand if any precinct is far off their initial total they will hand count that precinct. Generally recounts don’t change more than a few hundred votes max. But we will see', 'created': '2024-11-14 19:58:00', 'submission_id': '1gqpalv'}
{'comment': 'Casey does plenty. If you think a hedge fund exec who isn’t even living in PA provides a new generation of leadership, boy are you mistaken.', 'created': '2024-11-14 06:30:12', 'submission_id': '1gqpalv'}
{'comment': 'Thoughts and prayers!', 'created': '2024-11-13 22:51:28', 'submission_id': '1gqo8kh'}
{'comment': 'I guess he could try applying for ebt. Until they close that down too', 'created': '2024-11-13 22:54:57', 'submission_id': '1gqo8kh'}
{'comment': 'So he wants social services to help him pay for basic needs? /s', 'created': '2024-11-13 23:44:41', 'submission_id': '1gqo8kh'}
{'comment': 'Maybe eat at home instead of getting avocado toast and a fancy coffee.', 'created': '2024-11-14 00:03:46', 'submission_id': '1gqo8kh'}
{'comment': 'Has Rudy Giuliani tried picking himself up by the bootstraps? Maybe he needs to start pounding the pavement and knocking on the doors of local businesses. Maybe he should consider an unpaid internship so as to learn the value of hard work and understand the risk the job creator takes in taking a chance on a potential employee.', 'created': '2024-11-14 02:25:02', 'submission_id': '1gqo8kh'}
{'comment': 'I hope he starves', 'created': '2024-11-13 22:42:50', 'submission_id': '1gqo8kh'}
{'comment': "That's too funny, hey maybe you should apply for public benefits like the rest of us before King cheeto takes them away cause doge or some shit", 'created': '2024-11-13 23:29:13', 'submission_id': '1gqo8kh'}
{'comment': 'From Americas Mayor to American beggar..', 'created': '2024-11-14 01:01:31', 'submission_id': '1gqo8kh'}
{'comment': 'Work harder and stop trying to be a free loader.', 'created': '2024-11-13 23:40:13', 'submission_id': '1gqo8kh'}
{'comment': None, 'created': '2024-11-14 01:15:01', 'submission_id': '1gqo8kh'}
{'comment': 'I wonder if these new trump associates realize that this is likely their fate as well?', 'created': '2024-11-14 04:21:42', 'submission_id': '1gqo8kh'}
{'comment': 'Guessing Russia and the Saudis are about to make some massive contributions to it', 'created': '2024-11-13 23:55:19', 'submission_id': '1gqo8kh'}
{'comment': 'Was it worth ruining your reputation as a the prosecutor who took down the Mafia and mayor that cleaned up NYC? Was it worth it Rudy boy?', 'created': '2024-11-14 01:36:21', 'submission_id': '1gqo8kh'}
{'comment': 'Call daddy Trump', 'created': '2024-11-13 23:33:57', 'submission_id': '1gqo8kh'}
{'comment': '"Food"', 'created': '2024-11-13 23:42:45', 'submission_id': '1gqo8kh'}
{'comment': 'in the christmas spirit: "Have they no refuge or resource?" cried Scrooge. "Are there no Prisons?" said the Spirit, turning on him for the last time with his own words. "Are there no workhouses?"', 'created': '2024-11-14 00:27:45', 'submission_id': '1gqo8kh'}
{'comment': 'Let maga take care of him', 'created': '2024-11-14 00:32:18', 'submission_id': '1gqo8kh'}
{'comment': 'aww. good for him. I hope nobody donates and he starves.', 'created': '2024-11-14 01:08:47', 'submission_id': '1gqo8kh'}
{'comment': 'Anyone know what happened to the my pillow guy? I know he was leading the “stop the steal” charge back in 2020. Is he broke and/or in jail also?', 'created': '2024-11-14 04:23:53', 'submission_id': '1gqo8kh'}
{'comment': 'He could eat crow and swallow his pride.', 'created': '2024-11-14 08:31:36', 'submission_id': '1gqo8kh'}
{'comment': "The Trump Effect strikes again. It's entertaining to watch Trump's most devoted flying monkeys be completely discarded once their use value runs out.", 'created': '2024-11-14 13:53:31', 'submission_id': '1gqo8kh'}
{'comment': 'I thought he knew a guy?', 'created': '2024-11-14 03:01:47', 'submission_id': '1gqo8kh'}
{'comment': 'Doesn’t he mean vodka?', 'created': '2024-11-14 04:30:42', 'submission_id': '1gqo8kh'}
{'comment': 'He missed an opportunity to rent himself out as Nosferatu on Halloween and stand on people’s front porches to scare the kids. I’m sure that would have brought in a few bucks.', 'created': '2024-11-14 05:17:29', 'submission_id': '1gqo8kh'}
{'comment': 'Can they seize that too? I certainly hope so.', 'created': '2024-11-14 07:18:45', 'submission_id': '1gqo8kh'}
{'comment': 'I so like hearing the Trump held fund raisers for Rudy but never gave him the money. I don’t like Donnie getting more money, but one grifter scamming another is poetic.', 'created': '2024-11-14 07:49:10', 'submission_id': '1gqo8kh'}
{'comment': 'Starvation seems like a tough way to go. Karma!', 'created': '2024-11-14 12:10:53', 'submission_id': '1gqo8kh'}
{'comment': '"Check is in the mail Rudy" donnie', 'created': '2024-11-14 12:37:12', 'submission_id': '1gqo8kh'}
{'comment': 'Good. He could lose a few pounds. Itll be good for his heslth', 'created': '2024-11-14 12:47:43', 'submission_id': '1gqo8kh'}
{'comment': 'Lesson to the kids out there: if you think you’re the exception, you’re not. Turn around, walk briskly in the opposite direction and stay away from the monster.', 'created': '2024-11-14 14:10:41', 'submission_id': '1gqo8kh'}
{'comment': 'Tighten that belt and cut out all that avocado toast and caviar', 'created': '2024-11-14 00:35:51', 'submission_id': '1gqo8kh'}
{'comment': 'Too bad winter is coming. Otherwise he could try to sell landscaping work by Four Seasons.', 'created': '2024-11-14 01:00:02', 'submission_id': '1gqo8kh'}
{'comment': "That would be a handout, and he doesn't like those.", 'created': '2024-11-14 04:54:50', 'submission_id': '1gqo8kh'}
{'comment': '\nI just had some delicious meatloaf, mashed potatoes and roasted vegetables for dinner. Yum!', 'created': '2024-11-14 05:48:46', 'submission_id': '1gqo8kh'}
{'comment': 'Zero F’s given about his economic status', 'created': '2024-11-14 18:47:45', 'submission_id': '1gqo8kh'}
{'comment': 'Rudy can go to a food bank.', 'created': '2024-11-15 17:56:30', 'submission_id': '1gqo8kh'}
{'comment': 'He only needs to last until January. He be put on the scotus after that', 'created': '2024-11-13 23:27:56', 'submission_id': '1gqo8kh'}
{'comment': 'He should pull himself up by his boot straps', 'created': '2024-11-14 00:31:02', 'submission_id': '1gqo8kh'}
{'comment': 'Me too! He looks awful, doesn’t he? From the looks of things, dementia is going to set in soon if it hasn’t already. It’s a shame his buddy Trump didn’t get the same reckoning.', 'created': '2024-11-14 15:46:28', 'submission_id': '1gqo8kh'}
{'comment': 'Welcome to my life.', 'created': '2024-11-14 20:04:31', 'submission_id': '1gqo8kh'}
{'comment': 'Let’s all stop pretending he’s not getting pardoned. \n\nThese stories are just around to show how persecuted poor old Rudy is.', 'created': '2024-11-14 04:59:57', 'submission_id': '1gqo8kh'}
{'comment': 'I guess Trump doesn’t let him eat at the Florida resort anymore', 'created': '2024-11-13 22:59:40', 'submission_id': '1gqo8kh'}
{'comment': '*Concepts* of thoughts and prayers', 'created': '2024-11-14 00:07:10', 'submission_id': '1gqo8kh'}
{'comment': 'Thoughts and tariffs 💙', 'created': '2024-11-14 00:58:05', 'submission_id': '1gqo8kh'}
{'comment': 'I will send ALL my thoughts and prayers to Rudy. \n\nJust an FYI that I like Rudy more than most… and I think Rudy is an a$$$$$$.', 'created': '2024-11-15 00:38:32', 'submission_id': '1gqo8kh'}
{'comment': 'I love how Trump stopped supporting him', 'created': '2024-11-13 22:59:17', 'submission_id': '1gqo8kh'}
{'comment': "He says 'food' but he means alcohol. He has a serious problem and EBT won't help.", 'created': '2024-11-13 23:43:41', 'submission_id': '1gqo8kh'}
{'comment': 'He’s a socialist now', 'created': '2024-11-13 23:52:08', 'submission_id': '1gqo8kh'}
{'comment': 'It looks that way! Can’t wait to see Rudy at the welfare office. Thank God for Democrats, eh? If it wasn’t for us there would be no social security, no medicare, medicaid, and no health insurance for those with preexisting conditions and unemployment.', 'created': '2024-11-14 15:53:43', 'submission_id': '1gqo8kh'}
{'comment': 'lol. You’re funny', 'created': '2024-11-14 00:04:03', 'submission_id': '1gqo8kh'}
{'comment': 'I hear that back in the day he loved himself those fancy expensive cigars, and we even a member of an exclusive cigar social hangout. I guess now is as good a time as any to quit.', 'created': '2024-11-14 15:55:06', 'submission_id': '1gqo8kh'}
{'comment': 'He needs an OnlyFans', 'created': '2024-11-14 02:45:59', 'submission_id': '1gqo8kh'}
{'comment': 'Andrew, his red headed brat, could feed him.', 'created': '2024-11-14 04:58:28', 'submission_id': '1gqo8kh'}
{'comment': 'He has a gut. I’m sure he will survive for a while', 'created': '2024-11-13 22:59:55', 'submission_id': '1gqo8kh'}
{'comment': 'Maybe one of his girlfriends will feed him? If they were good enough to commit adultery with they should be good enough to buy groceries for him. (Unless they were with him because he was rich, famous, and part of Trump’s posse - if so, I guess Rudy will starve).', 'created': '2024-11-14 16:01:14', 'submission_id': '1gqo8kh'}
{'comment': 'You’re not wrong.', 'created': '2024-11-14 16:01:49', 'submission_id': '1gqo8kh'}
{'comment': 'Wow', 'created': '2024-11-14 02:47:30', 'submission_id': '1gqo8kh'}
{'comment': 'I think he gave up the bootstraps when the court ordered him to surrender his assets.\n\n/s', 'created': '2024-11-14 02:25:50', 'submission_id': '1gqo8kh'}
{'comment': 'Nope.', 'created': '2024-11-14 16:02:40', 'submission_id': '1gqo8kh'}
{'comment': 'He will most likely have to become a stripper', 'created': '2024-11-14 02:47:11', 'submission_id': '1gqo8kh'}
{'comment': 'His company isn’t doing well', 'created': '2024-11-14 11:49:12', 'submission_id': '1gqo8kh'}
{'comment': 'He must be close to bankruptcy if he isn’t already.', 'created': '2024-11-14 16:03:52', 'submission_id': '1gqo8kh'}
{'comment': 'It’s going to be a great day when Elon and Trump fall out', 'created': '2024-11-14 13:58:02', 'submission_id': '1gqo8kh'}
{'comment': 'And Trump won’t even give him a cabinet position', 'created': '2024-11-14 12:25:15', 'submission_id': '1gqo8kh'}
{'comment': 'Especially if you’re Republican. If you’re a Democrat, you’re in safe hands.', 'created': '2024-11-14 16:06:01', 'submission_id': '1gqo8kh'}
{'comment': 'It’s not the Republican Way. /s', 'created': '2024-11-14 16:06:28', 'submission_id': '1gqo8kh'}
{'comment': 'Will a pardon be useful in the nursing home locked ward for dementia patients? By the time the Orange Turd gets around to pardoning him, that’s where he’ll be.', 'created': '2024-11-14 16:08:36', 'submission_id': '1gqo8kh'}
{'comment': "Will he, though? He's no longer useful to tRUmp.", 'created': '2024-11-15 01:10:40', 'submission_id': '1gqo8kh'}
{'comment': 'Trump only likes rich people.', 'created': '2024-11-14 02:01:55', 'submission_id': '1gqo8kh'}
{'comment': 'Mike Lindell can school him on how to dumpster dive. They could even make their exploits into a TV sitcom.', 'created': '2024-11-15 00:47:15', 'submission_id': '1gqo8kh'}
{'comment': 'Them leopards eating good this administration', 'created': '2024-11-13 23:29:52', 'submission_id': '1gqo8kh'}
{'comment': 'Yes, his son had to go beg for him, and Trump kept the door locked.', 'created': '2024-11-14 15:50:51', 'submission_id': '1gqo8kh'}
{'comment': 'He better be - otherwise he’s sleeping under a bridge.', 'created': '2024-11-14 15:54:08', 'submission_id': '1gqo8kh'}
{'comment': 'Not a chance, no sir. Filial obligations go only so far as the old man is a millionaire and part of Trump’s orbit. Andrew will be determined to distance himself from his father’s downfall as much as possible. He’s probably sitting by the phone waiting to be offered (another) job in Trump’s Whitehouse.', 'created': '2024-11-14 15:58:03', 'submission_id': '1gqo8kh'}
{'comment': 'Like an engorged tick', 'created': '2024-11-14 00:51:54', 'submission_id': '1gqo8kh'}
{'comment': 'Yep, those bootstraps are long gone.', 'created': '2024-11-14 16:02:17', 'submission_id': '1gqo8kh'}
{'comment': 'Oh dear God, my eyes!', 'created': '2024-11-14 16:02:58', 'submission_id': '1gqo8kh'}
{'comment': 'Hahahaha. Perfect.', 'created': '2024-11-14 22:27:43', 'submission_id': '1gqo8kh'}
{'comment': 'Can’t wait! It will be epic.', 'created': '2024-11-14 16:05:05', 'submission_id': '1gqo8kh'}
{'comment': 'He raised the membership fee to Mar-a-Lago to $1M so you know MAGA aint getting in.', 'created': '2024-11-14 12:37:46', 'submission_id': '1gqo8kh'}
{'comment': 'He’s not even liking elmo there anymore.\n\n[overstayed his welcum](https://www.motherjones.com/politics/2024/11/trump-elon-musk-annoying-everyone-maralago/)', 'created': '2024-11-14 20:02:58', 'submission_id': '1gqo8kh'}
{'comment': 'I forgot about the pillow man', 'created': '2024-11-15 01:09:20', 'submission_id': '1gqo8kh'}
{'comment': '4 years of good eats to come!', 'created': '2024-11-14 15:51:21', 'submission_id': '1gqo8kh'}
{'comment': 'Just desserts for such an idiot. Guess that cross around his neck, displayed so prominently, didn’t help him after all.', 'created': '2024-11-15 03:31:32', 'submission_id': '1gqo8kh'}
{'comment': '“What? The dirty people? No way”', 'created': '2024-11-14 15:03:48', 'submission_id': '1gqo8kh'}
{'comment': 'Yep - and he’ll pocket $999,000 of it for his own use - because it’s such a privilege to be in his exclusive club, you know.\n\nMaybe Rudy can be a hostess?', 'created': '2024-11-14 15:48:22', 'submission_id': '1gqo8kh'}
{'comment': 'I need to check but at some point Rudy was on Cameo doing birthday wishes for cash. I wonder if Lindell is on there as well.', 'created': '2024-11-15 01:34:19', 'submission_id': '1gqo8kh'}
{'comment': '"Basement Dwellers" donnie called them on a hot mic in the Summer. That was what about 75 trump stories ago?', 'created': '2024-11-14 15:38:59', 'submission_id': '1gqo8kh'}
{'comment': 'and all the Prima Nocta donnie gets his hand into around Mar-a-Lago', 'created': '2024-11-14 15:53:47', 'submission_id': '1gqo8kh'}
{'comment': 'He insults them on the regular, and the more he does it the more they love it. I’m convinced that MAGA is the party of sadism.', 'created': '2024-11-14 15:50:06', 'submission_id': '1gqo8kh'}
{'comment': 'Fix it Jesus', 'created': '2024-11-13 23:00:14', 'submission_id': '1gqo5ms'}
{'comment': 'A Putin stooge as DNI? What could possibly go wrong?', 'created': '2024-11-13 23:32:12', 'submission_id': '1gqo5ms'}
{'comment': 'Complete Russian asset. Say goodbye to your 401k as Xi and Putin will destroy the markets as they goose step across the globe.', 'created': '2024-11-14 00:36:33', 'submission_id': '1gqo5ms'}
{'comment': 'So Tulsi got a reward for selling out after all LOL. Nothing for Tim Scott and Ted Cruz?', 'created': '2024-11-14 02:54:11', 'submission_id': '1gqo5ms'}
{'comment': '', 'created': '2024-11-14 14:12:34', 'submission_id': '1gqo5ms'}
{'comment': 'Given that our national intelligence level has dropped to zero ....', 'created': '2024-11-14 16:54:38', 'submission_id': '1gqo5ms'}
{'comment': 'The fsb agent is not even the worst pick a pedophile maybe attorney General', 'created': '2024-11-14 01:03:05', 'submission_id': '1gqo5ms'}
{'comment': 'I thought you had to have an inkling of intelligence to be nominated for that job.', 'created': '2024-11-14 01:06:56', 'submission_id': '1gqo5ms'}
{'comment': 'Sorry this shit show definitely proves there is no god!', 'created': '2024-11-13 23:46:25', 'submission_id': '1gqo5ms'}
{'comment': 'It does prove that hell is real and that we’re living in it', 'created': '2024-11-14 00:23:46', 'submission_id': '1gqo5ms'}
{'comment': "but but.. God's will! he planned this to teach the people a lesson!", 'created': '2024-11-14 00:19:57', 'submission_id': '1gqo5ms'}
{'comment': 'Yeah, Trump is really trying bring down the nation', 'created': '2024-11-13 23:51:49', 'submission_id': '1gqo5ms'}
{'comment': 'Trying?!?', 'created': '2024-11-14 04:51:14', 'submission_id': '1gqo5ms'}
{'comment': "Oh, come on. Be nice. If Trump's AG pick isn't corrupt, how are his corrupt cronies going to get away with things?", 'created': '2024-11-13 22:25:40', 'submission_id': '1gqo00q'}
{'comment': 'The hearings for confirmation are going to be gloriously clownish. Every Dem should start with “so tell me you qualifications for this job”.', 'created': '2024-11-13 22:38:02', 'submission_id': '1gqo00q'}
{'comment': 'Feels like the guys on the Epstein List, including Trump and Leon, circling the wagons.', 'created': '2024-11-13 23:03:41', 'submission_id': '1gqo00q'}
{'comment': 'Not unexpected. One pedo with bad cosmetic surgery picks another for AG. \n\nWe need four GOP senators to block Gaetz. Our best bets may be those up for election in 2026. Some are more promising than others. \n\n[Class II - Senators Whose Terms of Service Expire in 2027 ](https://www.senate.gov/senators/Class_II.htm)\n\nIf you live in one of those states, start your pressure campaign right now. Ask your GOP senator, "*Do you intend to vote for suspected pedophile Matt Gaetz for US Attorney General?*" Send it once every business day until you get a reply. And vary your methods: email, text, social media, US Mail, petitions, etc.. Become a polite nuisance until they respond.', 'created': '2024-11-13 23:06:13', 'submission_id': '1gqo00q'}
{'comment': 'He is such a piece of shit. I hear him rant and rave about stupid shit constantly. His momma should have spit him out. Trumps cabinet is shaping up to be a real dumpster fire.', 'created': '2024-11-13 23:42:31', 'submission_id': '1gqo00q'}
{'comment': 'Pretty sure he’s not getting this one.', 'created': '2024-11-14 00:20:56', 'submission_id': '1gqo00q'}
{'comment': 'I was nice. You are exactly right. You are the company you keep. We are all taught that as children, ignore it as teenagers and make one of two choices when we become adults.', 'created': '2024-11-13 23:49:41', 'submission_id': '1gqo00q'}
{'comment': 'Qualifications. Sucking off trump, willing to change his diapers.', 'created': '2024-11-13 23:52:09', 'submission_id': '1gqo00q'}
{'comment': 'Trump already demanded that they let him do recess appointments so I doubt there will be a hearing.', 'created': '2024-11-14 01:32:46', 'submission_id': '1gqo00q'}
{'comment': 'Other than Susan Collins who is probably AGHAST and yet will vote to confirm (so maybe 50/50 on that), I don’t see anyone else on that list who seems like…reasonable on the R side of things. Nobody’s gonna convince tuberville or cotton to defect.', 'created': '2024-11-14 00:27:23', 'submission_id': '1gqo00q'}
{'comment': 'Joni Ernst - IA and Thom Tillis - NC are decent possibilities. Mitch McConnell is no friend of Trump and if he\'s decided not to run for re-election then he\'s free to stick a knife into MAGA. Lindsey Graham, a former military judge, may be pissed that he wasn\'t chosen. \n\nThe Senate GOP is not as MAGA as their House colleagues despite their rhetoric. Earlier today Republican senators chose John Thune, the least MAGA of the three contenders, as new Senate GOP leader. \n\nI agree that Cotton and Tuberville are MAGA marionettes, but their faction does not predominate in the GOP caucus. \n\nA lot of people scream "resistance" but don\'t do anything except maybe go to demonstrations organized by hipsters. Others crawl into fetal position and become paralyzed by fear and indecision. Those are the things Trumpsters would like us to do.\n\nWe need to remain active politically – not just around election time. A grassroots and targeted campaign against Gaetz is doable and winnable. And such a win would be a good morale boost. \n\nNot to try is to be a genuine loser.', 'created': '2024-11-14 01:01:02', 'submission_id': '1gqo00q'}
{'comment': 'Not a loser. Things like this are helpful for someone like me who is from a very democratic state and wonders what the rest of the landscape is like. Trying to become as informed as possible.', 'created': '2024-11-14 01:58:17', 'submission_id': '1gqo00q'}
{'comment': "If that's the case fuck it! Let's get Obama to run for a 3rd term", 'created': '2024-11-13 22:55:34', 'submission_id': '1gqnof5'}
{'comment': 'For the last time! ITS NOT A DAMN JOKE!', 'created': '2024-11-13 22:17:56', 'submission_id': '1gqnof5'}
{'comment': 'think the grim reaper will have something to say about that. soon I hope.', 'created': '2024-11-13 22:32:23', 'submission_id': '1gqnof5'}
{'comment': 'He picking Gaetz for AG lol let that sink in', 'created': '2024-11-13 22:36:23', 'submission_id': '1gqnof5'}
{'comment': "He's not joking. He's testing the water. Fuck you all, the 15 million who didn't vote.", 'created': '2024-11-13 22:58:14', 'submission_id': '1gqnof5'}
{'comment': 'He’ll be dead or in a memory care facility by then.\xa0', 'created': '2024-11-13 22:57:18', 'submission_id': '1gqnof5'}
{'comment': 'Problem is: a sense of humor and the ability to make jokes requires a certain amount of intellegence. It has none.', 'created': '2024-11-13 22:26:34', 'submission_id': '1gqnof5'}
{'comment': "22nd Amendment \n\n“No person shall be elected to the office of the President more than twice,” states the Twenty-Second Amendment. “And no person who has held the office of President, or acted as President, for more than two years of a term to which some other person was elected President shall be elected to the office of the President more than once.”\n\nSo the loophole here is that Trump can cancel the presidential general election in 2024, and he can stay in office. \n\nNo. I don't agree with that. But then again, I didn't agree with the bullshit argument for presidential immunity either.", 'created': '2024-11-13 22:29:37', 'submission_id': '1gqnof5'}
{'comment': "It's not a joke but luckily he's 78", 'created': '2024-11-13 22:42:52', 'submission_id': '1gqnof5'}
{'comment': 'Go team aortic aneurysm!', 'created': '2024-11-13 23:14:29', 'submission_id': '1gqnof5'}
{'comment': 'with our luck this sack of shit is gonna live to be 130', 'created': '2024-11-13 22:44:47', 'submission_id': '1gqnof5'}
{'comment': 'Its not a joke.', 'created': '2024-11-13 23:19:46', 'submission_id': '1gqnof5'}
{'comment': "He's testing the waters to see if anybody interjects", 'created': '2024-11-13 22:53:37', 'submission_id': '1gqnof5'}
{'comment': 'I think he means until he dies, which will probably be very soon. It’s possible that he won’t make it after 100 days in office.', 'created': '2024-11-14 00:02:20', 'submission_id': '1gqnof5'}
{'comment': 'Conservatives in public: He’s such a funny guy! What a comedian!\n\nConservatives in reality:\n\n', 'created': '2024-11-14 00:20:51', 'submission_id': '1gqnof5'}
{'comment': 'It’s not a joke', 'created': '2024-11-13 23:25:52', 'submission_id': '1gqnof5'}
{'comment': "It starts light hearted and I'm a joking manner but that gets flipped to him being serious. It's him floating the idea to see if it gets traction.", 'created': '2024-11-13 23:13:21', 'submission_id': '1gqnof5'}
{'comment': "It's not a joke, it's what he and his cult want", 'created': '2024-11-14 00:07:13', 'submission_id': '1gqnof5'}
{'comment': 'Oh he will. And he’ll succeed. And his supporters will be fine with it', 'created': '2024-11-14 00:27:25', 'submission_id': '1gqnof5'}
{'comment': 'As if anyone who is minimally informed could have predicted....\n\nThe rule of law is dead and this country will be in tatters in a year.', 'created': '2024-11-13 22:21:56', 'submission_id': '1gqnof5'}
{'comment': 'He’s been saying this for sometime now. Not to blame the victim, but why are you surprised?', 'created': '2024-11-13 23:00:56', 'submission_id': '1gqnof5'}
{'comment': 'When you point this out to any republican they always defend it with “He’s joking! He doesn’t have enough power to change that”. MF’s, he has the senate and house. He will make up his own fucking rules and pass them through.', 'created': '2024-11-14 01:32:30', 'submission_id': '1gqnof5'}
{'comment': 'Joke? Why does the media continue to sane-wash this lunatic. He means what he says . Just look at the clown show he’s assembled for a cabinet', 'created': '2024-11-14 02:21:08', 'submission_id': '1gqnof5'}
{'comment': 'think the grim reaper will have something to say about that. soon I hope.', 'created': '2024-11-13 22:32:40', 'submission_id': '1gqnof5'}
{'comment': 'the plot of the movie civil war might actually be reality. can california and texas form an alliance though lmao!', 'created': '2024-11-13 23:35:12', 'submission_id': '1gqnof5'}
{'comment': 'Yeah, we are done with elections for president\n\nCongress will soon follow', 'created': '2024-11-14 00:44:26', 'submission_id': '1gqnof5'}
{'comment': "It wasn't a joke.\n\nHe has his puppet as the AG\n\nHe has another as the Director of Intelligence\n\nHe already has the SCOTUS\n\nHe has both chambers of Congress - though no super majority in either\n\nHe is going to move Generals to find loyalist to him, not the Constitution (hopefully he will find none)\n\nIt is far from a joke.", 'created': '2024-11-14 01:31:33', 'submission_id': '1gqnof5'}
{'comment': 'Wake up people.\nHe is not joking!\nIt has its advantages, I’ll not stress myself about elections anymore.', 'created': '2024-11-13 23:32:48', 'submission_id': '1gqnof5'}
{'comment': "Fascist. There's literally nothing more hateful of America than to back an American would-be dictator. MAGAts are the most unpatriotic, anti-American domestic political movement in our history", 'created': '2024-11-14 06:21:35', 'submission_id': '1gqnof5'}
{'comment': 'He deserves so much more than he gets.', 'created': '2024-11-14 02:30:44', 'submission_id': '1gqnof5'}
{'comment': 'He is 78 going on 98. F Him.', 'created': '2024-11-14 02:34:24', 'submission_id': '1gqnof5'}
{'comment': 'And by the way, you silly twits, a joke is only funny if someone besides the person telling it laughs.', 'created': '2024-11-13 23:02:24', 'submission_id': '1gqnof5'}
{'comment': 'I know we have the 22nd amendment but what other safeguards do we have to prevent this from happening?', 'created': '2024-11-14 01:16:31', 'submission_id': '1gqnof5'}
{'comment': 'Try us, fat man', 'created': '2024-11-14 02:13:59', 'submission_id': '1gqnof5'}
{'comment': 'He’s older than methuselah, he should joke about making it to the end of his term.', 'created': '2024-11-14 02:48:38', 'submission_id': '1gqnof5'}
{'comment': 'He’s not joking . Republicans have worked to hard in this power grab , no way they are letting it go in 4 years .', 'created': '2024-11-14 04:19:58', 'submission_id': '1gqnof5'}
{'comment': 'It’s not a joke…', 'created': '2024-11-14 08:56:13', 'submission_id': '1gqnof5'}
{'comment': 'I doubt Trump will live more than six months.', 'created': '2024-11-13 23:57:03', 'submission_id': '1gqnof5'}
{'comment': 'Trump sucks and is dangerous but he cannot live forever.\xa0', 'created': '2024-11-13 22:39:00', 'submission_id': '1gqnof5'}
{'comment': 'It’s not a joke and he’s not testing the water he just express his mind and it’s plain and simple … in his mind … he was elected then unfairly lost then elected again … and that’s where he wants to stay.', 'created': '2024-11-14 01:15:11', 'submission_id': '1gqnof5'}
{'comment': 'It is not a joke, this is the beginning of a dictatorship.', 'created': '2024-11-14 15:51:29', 'submission_id': '1gqnof5'}
{'comment': 'Not happening, buckaroo. We will fight for the constitution to maintain the two term limit, and do what it takes to kick your feeble bones out of office. Imagine his cognitive state in four years at 82.', 'created': '2024-11-14 15:57:10', 'submission_id': '1gqnof5'}
{'comment': 'This is not a joke!\nHe’s TELLING you what he is going to do!\n\nOr at least try to attempt to do!', 'created': '2024-11-14 15:58:54', 'submission_id': '1gqnof5'}
{'comment': 'That was his plan all along. Get in, stay in !', 'created': '2024-11-14 16:57:55', 'submission_id': '1gqnof5'}
{'comment': 'You have no idea how low he will go.', 'created': '2024-11-14 19:00:22', 'submission_id': '1gqnof5'}
{'comment': 'He already said a long time ago. People just take that he is telling you what he would do. Probably, that is one of the only honest moments. He is telling you who he exactly is. Why is it so hard to understand. He told conservatives that you only need to vote on 2024, and then you will never have to vote.', 'created': '2024-11-14 19:16:21', 'submission_id': '1gqnof5'}
{'comment': 'It is not a joke. He will. He will do that to avoid being prosecuted again. With control in Congress and supreme count judges, he only needs to murder several democrats legislators and he can change any constitution as he wishes. USA is doomed. Democrats are too chicken to do anything except whining or choose to not to vote in this election even after the lesson from 2016. You all deserve to have this hell. I hope this hell will be here forever and ruin USA forever. \n\nAll you can hope is that he will die soon from heart attacks or salmonella from eating all those McDonald’s \n\nThank god that I am also Canadian. I am going back home and see you all having fun here. Message to every woman who voted for him, and every minority who voted for him… Remember, Karma is a bitch and it is coming around the corner in January \n\nGet ready to bow to emperor Trump!', 'created': '2024-11-14 06:11:52', 'submission_id': '1gqnof5'}
{'comment': '“Joke”', 'created': '2024-11-14 05:40:44', 'submission_id': '1gqnof5'}
{'comment': 'He’s not joking.', 'created': '2024-11-14 05:50:18', 'submission_id': '1gqnof5'}
{'comment': 'What I want to know is: is there any way this can be stopped?', 'created': '2024-11-14 11:54:59', 'submission_id': '1gqnof5'}
{'comment': 'He’s not joking', 'created': '2024-11-14 12:56:56', 'submission_id': '1gqnof5'}
{'comment': 'It’s not a joke! I get so tired with his base saying he’s just joking. He literally says the worst things out loud.', 'created': '2024-11-14 13:31:38', 'submission_id': '1gqnof5'}
{'comment': 'Caesar was once offered a crown by one of his compatriots, well after he had become the dictator of Rome. He made a big show of rejecting it, but many historians think it was him testing the waters.', 'created': '2024-11-14 15:22:32', 'submission_id': '1gqnof5'}
{'comment': "This fucker won't live past 2025. He'll either have a heart attack or will suddenly fall out of a window.", 'created': '2024-11-14 15:47:29', 'submission_id': '1gqnof5'}
{'comment': 'Raptor testing the fences.', 'created': '2024-11-14 16:06:45', 'submission_id': '1gqnof5'}
{'comment': 'You all crack me up every day! Thanks for the laughs!', 'created': '2024-11-14 22:51:03', 'submission_id': '1gqnof5'}
{'comment': "The only silver lining is Trump is old and probably won't last even another 10 years. Will a MAGA style government still remain in power after Trump? I kinda doubt it. These idiots don't have the dicipline or talent to brainwash the masses and/or disarm the population completely.", 'created': '2024-11-15 00:26:14', 'submission_id': '1gqnof5'}
{'comment': 'Prelude to civil war.', 'created': '2024-11-15 12:55:25', 'submission_id': '1gqnof5'}
{'comment': "I honestly don't think he'll live thru this term. But I said that last time ...", 'created': '2024-11-14 16:16:23', 'submission_id': '1gqnof5'}
{'comment': 'do it bro. we deserve it.', 'created': '2024-11-13 23:15:46', 'submission_id': '1gqnof5'}
{'comment': 'Like there will be another election.', 'created': '2024-11-14 14:40:53', 'submission_id': '1gqnof5'}
{'comment': "It's testing the water", 'created': '2024-11-13 23:20:36', 'submission_id': '1gqnof5'}
{'comment': 'God it drives me crazy that people refuse to acknowledge the magnitude of what is happening right now. 🤦\u200d♀️', 'created': '2024-11-13 23:44:21', 'submission_id': '1gqnof5'}
{'comment': 'He needs to be removed ASAP. \n\nWe’re watching the real enemy from within. \n\nMy kids are really young. \n\nMy Grandkids are gonna have some questions about this time in history.\n\nI’m remembering Red Dawn in the 80s…for some reason.', 'created': '2024-11-14 01:23:12', 'submission_id': '1gqnof5'}
{'comment': 'This!!!', 'created': '2024-11-13 22:52:59', 'submission_id': '1gqnof5'}
{'comment': 'Exactly this. I’m so tired of all the downplaying of everything that’s happening. Nobody learned anything from the first 4 years, apparently.', 'created': '2024-11-14 02:28:15', 'submission_id': '1gqnof5'}
{'comment': 'At what point does the democracy defend itself and jails the self-professed tyrant and hs enablers?', 'created': '2024-11-14 05:07:44', 'submission_id': '1gqnof5'}
{'comment': 'The movie “Civil War” depicts a US that falls into chaos when the president decides to do away with term limits and secures a third term. The president was horribly disliked and seen as a dictator. \n\nThe character was literally based on Trump. I see turmoil in our future.', 'created': '2024-11-14 20:24:05', 'submission_id': '1gqnof5'}
{'comment': 'He did say “it’s the last time you’ll have to vote”', 'created': '2024-11-14 22:15:11', 'submission_id': '1gqnof5'}
{'comment': 'Amen!', 'created': '2024-11-14 15:12:27', 'submission_id': '1gqnof5'}
{'comment': "The grim reaper adds the special sauce to Trump's Big Mac", 'created': '2024-11-13 22:56:22', 'submission_id': '1gqnof5'}
{'comment': None, 'created': '2024-11-13 23:21:57', 'submission_id': '1gqnof5'}
{'comment': "Grim reaper gonna come out and say that he's being blocked from his duty due to the filibuster", 'created': '2024-11-13 23:27:31', 'submission_id': '1gqnof5'}
{'comment': "I have strong doubts that he will make it through this presidency. We're gonna see President Vance sometime in the next 4 years.\n\nIf not, then Trump is going to be SERIOUSLY mentally impaired (he's already significantly slower and weaker than he was in '16 - seriously, compare his old rallies to them now.)", 'created': '2024-11-14 00:35:57', 'submission_id': '1gqnof5'}
{'comment': 'With our luck he’ll live to age 99 and then we’ll get one of his offspring.', 'created': '2024-11-14 03:17:39', 'submission_id': '1gqnof5'}
{'comment': 'That number was from all the votes not being counted yet. It’s much smaller now. The truth is the American people chose this', 'created': '2024-11-14 13:02:55', 'submission_id': '1gqnof5'}
{'comment': 'don’t forget a ‘fuck you all’ to the half of the population that couldn’t be bothered to vote at all!', 'created': '2024-11-14 22:00:47', 'submission_id': '1gqnof5'}
{'comment': 'The GOP propped up a senile Reagan for 6 years of his presidency.', 'created': '2024-11-13 23:19:38', 'submission_id': '1gqnof5'}
{'comment': "He'll stop appearing in person and address the nation from a screen in a room. Also, he will be a deep fake, curated by a specialist to keep the cult vibes strong. They planned it all out. (Jk, hopefully. OR you heard it here first....)", 'created': '2024-11-14 01:37:26', 'submission_id': '1gqnof5'}
{'comment': 'that’s exactly what I say when some cultist I’m having the displeasure of having a conversation with tries to write off something it said as a joke - the latest one being that injecting bleach things from covid days', 'created': '2024-11-14 22:04:01', 'submission_id': '1gqnof5'}
{'comment': "His only funny joke was Kung Flu and we still don't know if he wrote it. Even Dave Chappelle admitted he thought it was funny.", 'created': '2024-11-15 00:40:57', 'submission_id': '1gqnof5'}
{'comment': '14th Amendment no person shall be elected after trying to overthrow the Government so he can stay in power', 'created': '2024-11-13 22:44:24', 'submission_id': '1gqnof5'}
{'comment': 'Dictators love constitutions and courts! Constitutions make the people feel like there is a governing structure that authorizes the autocrat to do what it’s necessary… Courts exist to hand down dicta to that tell you that everything is acceptable and what the every whim of the dictator is in fact permitted by the constitution.', 'created': '2024-11-13 23:00:32', 'submission_id': '1gqnof5'}
{'comment': "2A. Why are liberals afraid of saying it? It was meant to protect against governments just like the one we're about to have.", 'created': '2024-11-13 22:57:48', 'submission_id': '1gqnof5'}
{'comment': 'Yep. Elected is the keyword there', 'created': '2024-11-13 23:00:10', 'submission_id': '1gqnof5'}
{'comment': 'Oh it’s even simpler than that. They’ll just say “eh fuck it”', 'created': '2024-11-13 22:42:19', 'submission_id': '1gqnof5'}
{'comment': 'Or just abolish the 22nd. They did that for the 18th pretty quickly.', 'created': '2024-11-14 00:09:56', 'submission_id': '1gqnof5'}
{'comment': 'When the only people enforcing the 22nd are the SCOTUS… I think we can assume how it will play out', 'created': '2024-11-14 05:27:43', 'submission_id': '1gqnof5'}
{'comment': 'Staying in office won’t work either.\n\nThe constitution makes it clear when a presidential term ends.', 'created': '2024-11-14 16:09:42', 'submission_id': '1gqnof5'}
{'comment': 'And the presidency takes a toll on you. Obama looked SO much older at the end of his two terms, and he didn’t start one at 78.', 'created': '2024-11-13 23:18:58', 'submission_id': '1gqnof5'}
{'comment': 'He eats enough McDonalds that this could happen', 'created': '2024-11-13 22:54:01', 'submission_id': '1gqnof5'}
{'comment': 'I give it two years tops till the magas start actively worshiping him like a god.', 'created': '2024-11-13 23:08:31', 'submission_id': '1gqnof5'}
{'comment': 'Well, war makes for strange bedfellows and all that', 'created': '2024-11-14 06:22:15', 'submission_id': '1gqnof5'}
{'comment': 'Nothing.', 'created': '2024-11-14 01:32:04', 'submission_id': '1gqnof5'}
{'comment': 'Each other', 'created': '2024-11-14 01:37:59', 'submission_id': '1gqnof5'}
{'comment': "I'm pretty sure we will find a united way to challenge this if Trump God forbid takes our elections away", 'created': '2024-11-14 14:45:56', 'submission_id': '1gqnof5'}
{'comment': 'The world at large will not allow DJT to abolish this country’s long-standing constitution without a fight. He and his team of weird cronies can try, but I guarantee it will incite anarchy.', 'created': '2024-11-14 16:01:07', 'submission_id': '1gqnof5'}
{'comment': '"Hey sweetie, wouldn\'t it be funny if we had a threesome with your sister!! Hahaha!!! That would be hilarious. Never gonna happen, I don\'t see your sister that way, unless you\'re....."', 'created': '2024-11-14 01:55:33', 'submission_id': '1gqnof5'}
{'comment': 'Yea, i a PBS documentary , it said Julius Caesar did the same thing…he joked to the crowd that he should be made lifelong dictator. The crowd booed him the first time, but he kept at it.', 'created': '2024-11-14 03:10:53', 'submission_id': '1gqnof5'}
{'comment': 'Yesterday: "trump makes chilling joke about wanting generals like hitler had"\n\nToday: "trump makes chilling joke to issue executive order to purge generals that aren\'t loyal"\n\nTomorrow: "trump fires all military generals and replaces them with former apprentice contestants in chilling practical joke"\n\nThe day after: "trump\'s new generals make chilling joke about sending all immigrants to concentration camps"', 'created': '2024-11-14 00:05:15', 'submission_id': '1gqnof5'}
{'comment': 'Exactly! If you had a friend who consistently joked about beating his wife and kids, at some point you’d be like “hey man it’s not cool to joke about that” or you might ask his kids or wife if something was going on. This is the President of the United States, somebody who has already attempted to overthrow the government, “joking” about never leaving office multiple times and to Congress, at some point you have to say it’s not a fucking joke!', 'created': '2024-11-13 23:47:58', 'submission_id': '1gqnof5'}
{'comment': 'Seriously. This time, right now, will be in the history books! And people STILL think he cares about them OR their lives!!!!!', 'created': '2024-11-14 01:50:39', 'submission_id': '1gqnof5'}
{'comment': 'OMG, I just said that to my husband the other day.', 'created': '2024-11-14 03:14:49', 'submission_id': '1gqnof5'}
{'comment': 'I’m currently applying for a firearm license. Never felt I needed a gun before, but here we are.', 'created': '2024-11-14 14:39:24', 'submission_id': '1gqnof5'}
{'comment': '“And that’s how Democracy dies. With thunderous applause.”', 'created': '2024-11-14 14:40:06', 'submission_id': '1gqnof5'}
{'comment': 'Problem is democrats still believe in the old guard. They aren’t taking it seriously and the media is complicit. Once he starts jailing elected officials that oppose him, it will be too late. We will see and I really hope I’m wrong. But we are literally watching the destruction of the United States. All his nominees are yes men. They will follow in lock step to what he wants and says.', 'created': '2024-11-14 19:00:53', 'submission_id': '1gqnof5'}
{'comment': 'The saving grace is that he’s almost 80, even if he wanted to go for a second term he’d be 84. That’s a really hard sell for most people.', 'created': '2024-11-14 20:25:38', 'submission_id': '1gqnof5'}
{'comment': 'This is true, but there is great longevity in his family. Even when the fast food wins we still have his crazy VP. This whole thing is a catastrophe.', 'created': '2024-11-14 00:58:31', 'submission_id': '1gqnof5'}
{'comment': "No he's as strong as an ox and can run miles at a time without breaking a sweat, didn't you know? He's a dense ball of supremely strong muscle and pure brain power.", 'created': '2024-11-14 00:50:08', 'submission_id': '1gqnof5'}
{'comment': 'Counting on McDonald’s for ongoing artery clogging', 'created': '2024-11-14 01:16:49', 'submission_id': '1gqnof5'}
{'comment': 'Non and 3rd party voters are as culpable as the ones who voted for him.', 'created': '2024-11-14 14:42:01', 'submission_id': '1gqnof5'}
{'comment': 'He could be drooling in his gold-plated bedroom for 10 more years, and as long as someone else keeps tweeting from his account, MAGAs would never know.', 'created': '2024-11-14 00:18:08', 'submission_id': '1gqnof5'}
{'comment': 'I forgot about that. I was a little kid but remember people saying Nancy was running the country.', 'created': '2024-11-14 14:42:55', 'submission_id': '1gqnof5'}
{'comment': 'Arrest these people they interfered in the elections and lied to voters, along with our enemies abroad.', 'created': '2024-11-13 23:01:34', 'submission_id': '1gqnof5'}
{'comment': 'I was applying for a firearm license and they had a point I needed to agree not to attempt to overthrow the government. Funny that doesn’t stop anyone from being President.', 'created': '2024-11-14 14:44:31', 'submission_id': '1gqnof5'}
{'comment': 'No, it was not. It was against governments that had the same guns. \n\nNot a government that has fighter aircraft, bombers, attack helicopters, tanks, guided missiles, military drones, and fully automatic weapons. Supported by extensive electronics surveillance.', 'created': '2024-11-13 23:41:49', 'submission_id': '1gqnof5'}
{'comment': 'You’re LYING.\n\nThe Second Amendment was NEVER meant to overthrow the government.', 'created': '2024-11-13 23:59:06', 'submission_id': '1gqnof5'}
{'comment': '\nThe Constitution just utterly failed. When Republicans used it con the US people into electing a tyrant. \n\nThe president\'s oath is, "I do solemnly swear (or affirm) that I will faithfully execute the Office of President of the United States, and will to the best of my ability, preserve, protect and defend the Constitution of the United States."\n\nHanding over the White House to Trump is not preserving or protecting the Constitution. And it has to be rebooted. Whether it\'s through American citizens resisting under unauthoritarian government. Or whether it happens right now.\n\nAnd I wasn\'t implying that Biden should stay in office past the end of his term. There\'s someone else who received the mandate from people who cast a vote for democracy instead of a tyrant.', 'created': '2024-11-14 16:54:59', 'submission_id': '1gqnof5'}
{'comment': 'Obama worked while in office. Trump doesn’t know that word.', 'created': '2024-11-13 23:25:42', 'submission_id': '1gqnof5'}
{'comment': "Yeah but Obama did things and has a conscious \n\nOn September 11th Trump was on a radio talk show and his thoughts were I have the tallest building in Manhattan now \n\nHe'll be lucky to get out of office alive", 'created': '2024-11-13 23:26:04', 'submission_id': '1gqnof5'}
{'comment': 'It does have a lot of preservatives in it🤔', 'created': '2024-11-13 23:09:39', 'submission_id': '1gqnof5'}
{'comment': 'A lot of them already have been.', 'created': '2024-11-14 03:01:35', 'submission_id': '1gqnof5'}
{'comment': "They've already been doing that for a decade: \n\n[https://www.google.com/imgres?q=thank%20you%20lord%20jesus%20for%20trump&imgurl=https%3A%2F%2Fwww.hollywoodreporter.com%2Fwp-content%2Fuploads%2F2015%2F08%2Ftrump\\_sign\\_s\\_2015.jpg%3Fw%3D1024&imgrefurl=https%3A%2F%2Fwww.hollywoodreporter.com%2Fnews%2Fpolitics-news%2Fdonald-trump-viral-baby-photo-817567%2F&docid=NbldvuhSK7Gq5M&tbnid=ziJPtjHQkIshzM&vet=12ahUKEwjuzri1w9yJAxWrDzQIHUdcCUUQM3oECBYQAA..i&w=1024&h=1024&hcb=2&ved=2ahUKEwjuzri1w9yJAxWrDzQIHUdcCUUQM3oECBYQAA](https://www.google.com/imgres?q=thank%20you%20lord%20jesus%20for%20trump&imgurl=https%3A%2F%2Fwww.hollywoodreporter.com%2Fwp-content%2Fuploads%2F2015%2F08%2Ftrump_sign_s_2015.jpg%3Fw%3D1024&imgrefurl=https%3A%2F%2Fwww.hollywoodreporter.com%2Fnews%2Fpolitics-news%2Fdonald-trump-viral-baby-photo-817567%2F&docid=NbldvuhSK7Gq5M&tbnid=ziJPtjHQkIshzM&vet=12ahUKEwjuzri1w9yJAxWrDzQIHUdcCUUQM3oECBYQAA..i&w=1024&h=1024&hcb=2&ved=2ahUKEwjuzri1w9yJAxWrDzQIHUdcCUUQM3oECBYQAA)", 'created': '2024-11-14 20:11:32', 'submission_id': '1gqnof5'}
{'comment': 'Exactly!', 'created': '2024-11-14 14:10:52', 'submission_id': '1gqnof5'}
{'comment': 'it ended badly for Julius Caesar.', 'created': '2024-11-14 14:12:17', 'submission_id': '1gqnof5'}
{'comment': 'And look what happened to him.', 'created': '2024-11-14 14:13:35', 'submission_id': '1gqnof5'}
{'comment': "They didn't have the internet. Or an armed population.", 'created': '2024-11-15 00:29:16', 'submission_id': '1gqnof5'}
{'comment': 'Does he remember his history correctly?\nHitlers Generals actually tried to kill Hitler.', 'created': '2024-11-14 16:00:52', 'submission_id': '1gqnof5'}
{'comment': "You just got Trump'd™!", 'created': '2024-11-14 22:09:36', 'submission_id': '1gqnof5'}
{'comment': 'I feel like so many of us are screaming into the abyss for help for there is no one who can help us. The cancer has spread too deep. America’s barely got a Hail Mary left in her.', 'created': '2024-11-14 01:38:51', 'submission_id': '1gqnof5'}
{'comment': 'If history books aren’t burned by the cult', 'created': '2024-11-14 18:58:59', 'submission_id': '1gqnof5'}
{'comment': 'WOLVERINES!!!!', 'created': '2024-11-14 03:36:05', 'submission_id': '1gqnof5'}
{'comment': 'Fortunately I live in Canada. Guns are not as big a problem here.', 'created': '2024-11-14 22:49:36', 'submission_id': '1gqnof5'}
{'comment': 'yeah, you’d think it would’ve been a hard sell at 78, oldest president ever, more than likely also the lowest IQ…', 'created': '2024-11-14 21:59:05', 'submission_id': '1gqnof5'}
{'comment': "He doesn't poop. He uses his food so efficiently that he doesn't poop or even have a butt hole.\n\nEdit: The 8 people who get this reference are my favorite kind of people.", 'created': '2024-11-14 01:35:17', 'submission_id': '1gqnof5'}
{'comment': 'I always get a large 4C Meal. My local restaurant is really quite good.', 'created': '2024-11-15 00:38:12', 'submission_id': '1gqnof5'}
{'comment': 'I don’t disagree, but it wasn’t anywhere near 15 million that’s my point', 'created': '2024-11-14 15:05:17', 'submission_id': '1gqnof5'}
{'comment': 'If we don’t at least get a recount Biden admin failed their duty', 'created': '2024-11-14 00:40:50', 'submission_id': '1gqnof5'}
{'comment': 'What do you want an AR 15 for sir?\n\nHunting yep hunting rabbits\n\nAbsolutely not for taking over a government building', 'created': '2024-11-14 17:29:49', 'submission_id': '1gqnof5'}
{'comment': "Yeah all of those things require extensive and complicated supply chains to remain fueled, armed, and operational.\n\n3 months into any even mild armed uprising, and it'll be infantry dominated battlefield.", 'created': '2024-11-13 23:46:37', 'submission_id': '1gqnof5'}
{'comment': "It's meant to give citizens the right of self-defence against a tyrannical government. If the Right can use that argument, so can the Left.", 'created': '2024-11-15 17:29:25', 'submission_id': '1gqnof5'}
{'comment': "That's what I mean. It ages you. It takes a toll. I don't know that he's gonna see all 4 years.", 'created': '2024-11-13 23:26:39', 'submission_id': '1gqnof5'}
{'comment': 'One can only hope.', 'created': '2024-11-14 14:37:50', 'submission_id': '1gqnof5'}
{'comment': 'Does Trump want to play golf again with no worries? Does he want to hold rallies with no worries? Does he want to eat McDonalds with no worries?\n\nThere IS A LINE YOU DO NOT CROSS.', 'created': '2024-11-15 00:33:25', 'submission_id': '1gqnof5'}
{'comment': 'Touché', 'created': '2024-11-14 19:09:09', 'submission_id': '1gqnof5'}
{'comment': 'Nobody is safe.', 'created': '2024-11-15 00:34:54', 'submission_id': '1gqnof5'}
{'comment': 'Hold up…… you’re telling me my man don’t pee or poo', 'created': '2024-11-14 06:30:58', 'submission_id': '1gqnof5'}
{'comment': 'That "Depends" on who you believe.', 'created': '2024-11-15 00:36:45', 'submission_id': '1gqnof5'}
{'comment': 'If you look at the total voting eligible population, which is 244M, only 155M voted. So there were 89 million people who were eligible to vote but did not.', 'created': '2024-11-14 17:56:44', 'submission_id': '1gqnof5'}
{'comment': 'https://preview.redd.it/1go37m7a9w0e1.jpeg?width=975&format=pjpg&auto=webp&s=c0a512743e583ededd3297aee335e62e38996653', 'created': '2024-11-14 17:30:34', 'submission_id': '1gqnof5'}
{'comment': '>Yeah all of those things require extensive and complicated supply chains\n\nUmmm.... We have military bases all over the US. This is not like military engagements overseas.\n\nJust stick to playing COD.', 'created': '2024-11-13 23:50:32', 'submission_id': '1gqnof5'}
{'comment': 'You admit to repeating a Conservative hoax?', 'created': '2024-11-15 17:30:41', 'submission_id': '1gqnof5'}
{'comment': "You still need to manufacture those parts. Get oil and replacement parts to the front lines. \n\nOnce infrastructure starts to fail its going to get hard to keep jets in the air. \n\nNot to mention the dispersed nature of the manufacturing process due to pork barrel legislation keeping stuff in every district. \n\nBut yeah we have bases all over the world because we're good at getting stuff there. But what if we can't make the stuff?", 'created': '2024-11-14 03:45:31', 'submission_id': '1gqnof5'}
{'comment': 'Trump taps gaetz, gaetz taps kids', 'created': '2024-11-13 22:39:38', 'submission_id': '1gqnhft'}
{'comment': "I guess at least it wasn't Andrew Bailey.", 'created': '2024-11-13 22:06:03', 'submission_id': '1gqnhft'}
{'comment': 'Weeeeeeee. Here we go.', 'created': '2024-11-13 22:23:23', 'submission_id': '1gqnhft'}
{'comment': "I wonder where he's going to put MTG.", 'created': '2024-11-13 22:48:02', 'submission_id': '1gqnhft'}
{'comment': 'Gaetz resigns from Congress and then immediately googles “what does an Attorney General do?”', 'created': '2024-11-14 14:06:28', 'submission_id': '1gqnhft'}
{'comment': 'Under his desk.', 'created': '2024-11-14 00:05:57', 'submission_id': '1gqnhft'}
{'comment': 'Russian agent Tulsi for National Security director and Matt Gaetz for AG? Holy Shit. May as well give Vlad the keys to the White House.', 'created': '2024-11-13 22:02:32', 'submission_id': '1gqndbn'}
{'comment': 'Try to look at the big picture…it’s in the Fascist playbook to put incompetent people in charge of departments so he can concentrate power to the executive. That’s how Democracy is torn down.\nI notice he didn’t sign the Memorandum of Understanding? Doesn’t he have to sign that to take office?', 'created': '2024-11-15 00:51:19', 'submission_id': '1gqndbn'}
{'comment': 'Illegal immigrants are not voting.\xa0', 'created': '2024-11-13 22:12:41', 'submission_id': '1gqnbfg'}
{'comment': 'What is wrong with that\nBlue states should stop sending money to the red parasitic states', 'created': '2024-11-14 05:27:19', 'submission_id': '1gqnbfg'}
{'comment': "Can the admins ban the OP for spreading misinformation? Undocumented people literally can't vote.", 'created': '2024-11-13 22:50:17', 'submission_id': '1gqnbfg'}
{'comment': 'We need to be better than them. The election was not stolen, undocumented persons are not voting, etc. Tired of this narrative.', 'created': '2024-11-13 22:21:56', 'submission_id': '1gqnbfg'}
{'comment': 'I don’t believe this about the politicians themselves because it is clear that the Democrats in office are far more professional and ethical than their GOP counterparts, but many of the highly partisan people on both sides of the coin are extremely hypocritical. They will drag one side for something and then do the exact same thing. This is why it’s so important for people to be willing to criticize their own party so that they don’t caught up in this conspiracy nonsense, but sadly many on here have lost sight of that.', 'created': '2024-11-13 23:06:44', 'submission_id': '1gqnbfg'}
{'comment': "I'm tired of misinformation", 'created': '2024-11-13 22:54:34', 'submission_id': '1gqnbfg'}
{'comment': 'everyone actually hates this guy right? i mean he cannot be confirmed? fuck', 'created': '2024-11-13 21:57:36', 'submission_id': '1gqna60'}
{'comment': 'A pedophile as AG?\n\n\nWhat a fucking joke.\n\n\nGood job America!', 'created': '2024-11-13 22:04:57', 'submission_id': '1gqna60'}
{'comment': 'The retail equivalent of what Trump is doing is called ‘anchoring’ or anchor pricing. Where you prime the customer with expensive goods so that everything else seems fair by comparison', 'created': '2024-11-13 22:00:37', 'submission_id': '1gqna60'}
{'comment': "The Onion is going out of business -- can't compete with this reality.", 'created': '2024-11-13 22:22:27', 'submission_id': '1gqna60'}
{'comment': 'All I see are bunch of scapegoats he can throw under the bus when shit almost certainly goes left. Can’t wait and see how this movie plays out. Grab the popcorn everyone.', 'created': '2024-11-13 22:02:40', 'submission_id': '1gqna60'}
{'comment': "These aren't cabinet picks, this is him trolling us. Not a single one of these cretins is qualified to be dog catcher.", 'created': '2024-11-13 22:12:27', 'submission_id': '1gqna60'}
{'comment': 'It’s over! I need off this Fing ride…', 'created': '2024-11-13 21:57:28', 'submission_id': '1gqna60'}
{'comment': "I'm sure Kevin McCarthy is handling this about as well as I am. \n\nLadies, cover your drinks at the new admin's Xmas party btw!", 'created': '2024-11-13 22:08:11', 'submission_id': '1gqna60'}
{'comment': "JFC. I'm not even mad. It's just too ridiculous. I'm impressed with the level of stupidity between this and Tulsi.", 'created': '2024-11-13 22:08:46', 'submission_id': '1gqna60'}
{'comment': 'If you stop caring about the country this is actually hilarious.', 'created': '2024-11-13 22:20:52', 'submission_id': '1gqna60'}
{'comment': None, 'created': '2024-11-13 22:01:11', 'submission_id': '1gqna60'}
{'comment': 'At least this clown cannot run for governor of Florida now.', 'created': '2024-11-13 22:04:40', 'submission_id': '1gqna60'}
{'comment': 'We shouldn’t be shocked. They both like em young.', 'created': '2024-11-13 22:08:41', 'submission_id': '1gqna60'}
{'comment': 'So both Matt and Donny get to have their legal troubles magically go away.', 'created': '2024-11-13 22:12:20', 'submission_id': '1gqna60'}
{'comment': 'This timeline must be the one that other timelines watch when they are in the mood for a horror comedy.', 'created': '2024-11-13 22:14:27', 'submission_id': '1gqna60'}
{'comment': '\nI CANNOT believe that there is no qualifications for the cabinet positions he is assigning these people to! I mean for a freaking entry level marketing position, I had to go through 4 rounds of interviews with multiple higher ups and I didn’t even get picked for the job. \n\nHow can the positions that will directly affect the American people (including healthcare and our country’s nuclear codes and secrets) be held by golf buddies and ass kissers to a convicted felon?? MAKE IT MAKE SENSE!! 🤯', 'created': '2024-11-13 22:22:16', 'submission_id': '1gqna60'}
{'comment': 'They’re all the fucking definition of “DEI hires”', 'created': '2024-11-13 22:16:46', 'submission_id': '1gqna60'}
{'comment': 'Cats and dogs living together...in sin!', 'created': '2024-11-13 21:55:19', 'submission_id': '1gqna60'}
{'comment': 'Welp. Time to Virginia Woolf myself... I had a good run.', 'created': '2024-11-13 22:03:54', 'submission_id': '1gqna60'}
{'comment': "I'm laughing so hard...the old school guys (and gals) are going to run him over so hard at the office! He should be running the other way!", 'created': '2024-11-13 22:13:13', 'submission_id': '1gqna60'}
{'comment': 'Wow...this administration is turning into quite a clown car.', 'created': '2024-11-13 22:19:21', 'submission_id': '1gqna60'}
{'comment': "He is delivering the gravest possible insult to each institution with these appointments. He's just a big, fat troll.", 'created': '2024-11-13 22:32:05', 'submission_id': '1gqna60'}
{'comment': 'Please don\'t be fooled. This is likely a headfake so he can relent and put in some brutally corrupt asshole who ISN\'T a pedophile.\n\nThen people can go "see?"', 'created': '2024-11-13 22:24:20', 'submission_id': '1gqna60'}
{'comment': "Ok real question, everybody ... \n\nRemember the Trump administration turnaround the first time around? It was a revolving door of mediocrity and ineptitude (obvs) and this of course is looking worse. \n\nHow is this gonna play out? You've got a giant cabinet of some calculating, some sincerely delusional monsters who simultaneously want to make Daddy happy, while also posturing to swoop in and take over when he inevitably (and prolly sooner than later) dies or declines drastically. \n\nI'm scared like the rest of us, there are some dark fucking times ahead. But I'm also real curious to see how long it takes before the snake starts swallowing its tail when this cult loses its personality. Thoughts?", 'created': '2024-11-13 22:41:32', 'submission_id': '1gqna60'}
{'comment': 'We’re all going to die.', 'created': '2024-11-13 22:20:17', 'submission_id': '1gqna60'}
{'comment': 'My only consolation is that this will implode at some point! And I think there are enough Dems who will work to block any decisions these people make. Each one of these people Trump picks are unqualified and out right terrible people.. no way they can do a terrible job and get away with it!! Plus, that means they have to be competent and organized.. the way Trump is picking people, that doesn’t sound like it’s going to happen. \n\nI know this sounds terrible and I really hope it doesn’t hurt us in the meantime, I’m jaded as fuck and feel totally powerless!', 'created': '2024-11-13 22:22:55', 'submission_id': '1gqna60'}
{'comment': 'Unplug people or stop paying attention this isn’t going to get better any time soon.', 'created': '2024-11-13 22:35:11', 'submission_id': '1gqna60'}
{'comment': "At this point, I'd like all the generals and admirals to get together and plan an overthrow/reset of the government, while they still can.", 'created': '2024-11-13 22:13:46', 'submission_id': '1gqna60'}
{'comment': 'Are we… like is this…. We are living in a fake reality, right? I just. 😑', 'created': '2024-11-13 22:17:40', 'submission_id': '1gqna60'}
{'comment': 'I’m not sure who is worse, Gaetz for AG or Tulsi Gabbard for Director of National Intelligence 😩', 'created': '2024-11-13 22:20:49', 'submission_id': '1gqna60'}
{'comment': '\n\nThis him?', 'created': '2024-11-13 22:39:48', 'submission_id': '1gqna60'}
{'comment': 'Well, the party of family values and morals my ass. I hope that trumpers got what they wished for.\n\nFuck GOP', 'created': '2024-11-13 22:43:43', 'submission_id': '1gqna60'}
{'comment': 'What the fuck dude I cannot.', 'created': '2024-11-13 23:57:19', 'submission_id': '1gqna60'}
{'comment': 'If only Epstein were alive today... 🙄', 'created': '2024-11-13 22:22:43', 'submission_id': '1gqna60'}
{'comment': 'It just keeps getting worse', 'created': '2024-11-13 22:24:25', 'submission_id': '1gqna60'}
{'comment': 'Wake me in 2028 if we still have a country', 'created': '2024-11-13 22:42:23', 'submission_id': '1gqna60'}
{'comment': 'The Russian cabinet is coming together', 'created': '2024-11-13 22:52:16', 'submission_id': '1gqna60'}
{'comment': 'Is this a joke? I’m asking seriously.', 'created': '2024-11-13 22:17:55', 'submission_id': '1gqna60'}
{'comment': 'This cant be real.', 'created': '2024-11-13 22:18:42', 'submission_id': '1gqna60'}
{'comment': 'Okay legit I just said this about the Gabbard appointment but this is even worse.', 'created': '2024-11-13 22:31:57', 'submission_id': '1gqna60'}
{'comment': 'A pedophile? They just trolling us', 'created': '2024-11-13 22:35:05', 'submission_id': '1gqna60'}
{'comment': 'GOP is the definition of failing up.', 'created': '2024-11-13 22:41:32', 'submission_id': '1gqna60'}
{'comment': 'What a fucking joke', 'created': '2024-11-13 22:52:05', 'submission_id': '1gqna60'}
{'comment': 'America, you deserve everything that’s coming towards you.', 'created': '2024-11-13 23:28:12', 'submission_id': '1gqna60'}
{'comment': 'Hahahaha\n\n\nOh my god\n\nI’ve been off posting since I didn’t recover from the truck who hit us all…\n\nGosh,\n\nUnbelievable \n\nThe more of a crook you are, the more chances you have to get picked…', 'created': '2024-11-13 23:39:33', 'submission_id': '1gqna60'}
{'comment': 'Well, he does know crime.', 'created': '2024-11-14 01:58:29', 'submission_id': '1gqna60'}
{'comment': 'Gee thanks Merrick Garland, most of this sits squarely on you shoulders. You will go down as the worst/weakest AG in our history', 'created': '2024-11-14 03:22:17', 'submission_id': '1gqna60'}
{'comment': "I'm guessing he will last 2 [mooches](https://www.google.com/search?q=mooch+time+perios&oq=mooch+time+perios&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIJCAEQIRgKGKABMgkIAhAhGAoYoAEyCQgDECEYChigATIJCAQQIRgKGKABMgcIBRAhGI8CMgcIBhAhGI8C0gEINTQ2OGowajSoAg6wAgE&client=ms-android-tmus-us-sscr-revc&sourceid=chrome-mobile&ie=UTF-8)", 'created': '2024-11-14 03:24:52', 'submission_id': '1gqna60'}
{'comment': 'Please leak the FBI background check…', 'created': '2024-11-14 03:42:28', 'submission_id': '1gqna60'}
{'comment': 'I really thought it would be Ken Paxton. He’s more scary competent than this guy who is…I’m not sure what he is to be honest.', 'created': '2024-11-13 22:19:17', 'submission_id': '1gqna60'}
{'comment': 'You all better buckle up', 'created': '2024-11-13 22:20:35', 'submission_id': '1gqna60'}
{'comment': 'Darkest f\\*cking timeline.\n\n', 'created': '2024-11-13 22:28:35', 'submission_id': '1gqna60'}
{'comment': 'Only qualifications needed was to make the cases go away be a yes man.', 'created': '2024-11-13 22:31:23', 'submission_id': '1gqna60'}
{'comment': 'Every announcement of another "appointee" makes my stomach churn a bit more.\n\n\nThis one\xa0 takes the cake.\nI suppose its only logical in his mind though especially given the fact that his long time perv buddy Epstein is dead huh??..\n\n\nPerverts.. they sure do stick together don\'t they??', 'created': '2024-11-13 22:33:11', 'submission_id': '1gqna60'}
{'comment': "At this point, why bother being shocked.\n\nHe'll likely have that cunt Chaya Raichik on one of his cabinet positions.", 'created': '2024-11-13 22:34:21', 'submission_id': '1gqna60'}
{'comment': "Fucking undeserving piece of shit. OFC it'll be full of the worst people imaginable.", 'created': '2024-11-13 22:36:14', 'submission_id': '1gqna60'}
{'comment': 'Wake me up in 2028 if we still have a country', 'created': '2024-11-13 22:42:51', 'submission_id': '1gqna60'}
{'comment': 'Y’all should’ve JUST VOTED!', 'created': '2024-11-13 23:19:15', 'submission_id': '1gqna60'}
{'comment': 'It’s a win for pedophiles everywhere', 'created': '2024-11-13 23:30:47', 'submission_id': '1gqna60'}
{'comment': 'Republicans hate him too but they love some of the peeps here freaking out over in the conservative sub.', 'created': '2024-11-13 23:47:37', 'submission_id': '1gqna60'}
{'comment': 'So many from the lawless land of Florida , I guess hurricanes will continue to land', 'created': '2024-11-13 23:51:06', 'submission_id': '1gqna60'}
{'comment': 'https://preview.redd.it/mpdldv9v1r0e1.jpeg?width=889&format=pjpg&auto=webp&s=dac21d056182881863a57b9bfa9da028e0eba9ce\n\nYea... yeah...', 'created': '2024-11-14 00:00:05', 'submission_id': '1gqna60'}
{'comment': 'This is like the fox guarding the chickens.', 'created': '2024-11-14 00:04:13', 'submission_id': '1gqna60'}
{'comment': '“Thith ith gonna be not cool…” hehe heh heheh.\n\n', 'created': '2024-11-14 00:04:26', 'submission_id': '1gqna60'}
{'comment': 'These nominees just keep getting worse 🤦\u200d♂️\n\nhttps://preview.redd.it/40q7g4jp3r0e1.jpeg?width=500&format=pjpg&auto=webp&s=45b0db3e0eab5f4e717d6c0f0a6521a992c43947', 'created': '2024-11-14 00:10:37', 'submission_id': '1gqna60'}
{'comment': 'I’m convinced Trump is getting his threatened revenge on Americans at large after losing the ‘20 election. No way he’s not trolling us.', 'created': '2024-11-14 00:24:42', 'submission_id': '1gqna60'}
{'comment': "Whoever is picked is going to suck. I'm all for watching Gaetz crash and burn in a high profile way.", 'created': '2024-11-14 00:28:37', 'submission_id': '1gqna60'}
{'comment': 'Oh well. Non voters this is what you asked for.', 'created': '2024-11-14 01:23:25', 'submission_id': '1gqna60'}
{'comment': 'The only thing I know for sure is that Trump doesn’t stick with people for long after they go to work for him. He considers the AG his personal attorney. There is a little good news, knowing that once.Gaetz is fired, he won’t be in the House anymore.', 'created': '2024-11-14 01:51:59', 'submission_id': '1gqna60'}
{'comment': 'Pure lunacy!', 'created': '2024-11-14 02:11:02', 'submission_id': '1gqna60'}
{'comment': 'They’ll soon be fight ing each other to kiss his ass', 'created': '2024-11-14 02:41:16', 'submission_id': '1gqna60'}
{'comment': 'My trumper boss this morning is disappointed at not only the Matt pick, but the lack of diversity he’s picking for cabinet. I said sorry dude this is what ya voted for 🍿', 'created': '2024-11-14 17:11:02', 'submission_id': '1gqna60'}
{'comment': "Place your bets for when he can't handle the job and he's going to step down. So many of these so-called Maga loyalists are going to drop like flies.", 'created': '2024-11-13 22:15:59', 'submission_id': '1gqna60'}
{'comment': '', 'created': '2024-11-13 22:27:15', 'submission_id': '1gqna60'}
{'comment': 'Every announcement of another "appointee" makes my stomach churn a bit more.\n\n\nThis one\xa0 takes the cake.\nI suppose its only logical in his mind though especially given the fact that his long time perv buddy Epstein is dead huh??..\n\n\nPerverts.. they sure do stick together don\'t they??', 'created': '2024-11-13 22:33:11', 'submission_id': '1gqna60'}
{'comment': 'Exactly the reaction they were hoping for…', 'created': '2024-11-13 22:39:35', 'submission_id': '1gqna60'}
{'comment': 'Are we being punished for being educated', 'created': '2024-11-13 22:40:51', 'submission_id': '1gqna60'}
{'comment': 'What next, Candace Owen’s?', 'created': '2024-11-13 22:54:41', 'submission_id': '1gqna60'}
{'comment': 'Even his friends hate him. \n\nDon’t worry. He’ll escort the high school interns personally. He’s a man of the people.', 'created': '2024-11-13 22:57:29', 'submission_id': '1gqna60'}
{'comment': "I think he was pretty clear about the fact he would replace anyone with a brain at any level of government with obliging sycophants so can't possibly come as a surprise now. I still can't believe Americans are okay with this.", 'created': '2024-11-13 22:57:55', 'submission_id': '1gqna60'}
{'comment': 'Dems need to hit harder than ever for all of these open seats that will have special elections. The MagaS spilled the beans on the project 2025 plan, and Trump is clearly installing crony unqualified members. If people still pick a Republican after that, they deserve the pain coming to them.', 'created': '2024-11-13 22:59:59', 'submission_id': '1gqna60'}
{'comment': 'So, we need to figure out who they really want in these positions cause unless he plans to make the acting they’ll never pass the senate right? Right?', 'created': '2024-11-13 23:09:13', 'submission_id': '1gqna60'}
{'comment': 'Name change from DOJ to DOST - Department of Sex Trafficking', 'created': '2024-11-13 23:09:58', 'submission_id': '1gqna60'}
{'comment': 'Is he serious? I have to think trump is just trolling at this point. This guy is a perv', 'created': '2024-11-13 23:12:01', 'submission_id': '1gqna60'}
{'comment': 'The bent-knee loyalists are reaping the rewards they’ve sought with every fiber of their being for the past 8 years.', 'created': '2024-11-13 23:14:03', 'submission_id': '1gqna60'}
{'comment': 'holy F', 'created': '2024-11-13 23:14:59', 'submission_id': '1gqna60'}
{'comment': 'They will confirm him', 'created': '2024-11-13 23:17:03', 'submission_id': '1gqna60'}
{'comment': "All the Muslims and pissy progressives that didn't vote surely they are shitting themselves now right?", 'created': '2024-11-13 23:22:56', 'submission_id': '1gqna60'}
{'comment': 'Great\nHe will do a penis head job', 'created': '2024-11-13 23:29:10', 'submission_id': '1gqna60'}
{'comment': 'No, seriously? They truly be fucking with all of America.', 'created': '2024-11-13 23:38:18', 'submission_id': '1gqna60'}
{'comment': '[removed]', 'created': '2024-11-14 00:04:01', 'submission_id': '1gqna60'}
{'comment': 'Biff Tannen got a hold of the Almanac reality.', 'created': '2024-11-14 00:16:52', 'submission_id': '1gqna60'}
{'comment': 'I don’t think he’ll get confirmed. If there’s one a few Repubs will push back on, it’s this.', 'created': '2024-11-14 00:19:59', 'submission_id': '1gqna60'}
{'comment': 'Heh, it was only last week when Republicans were saying, with a straight face, that Trump was going to "drain the swamp" and clean up Washington.\n\nI never thought there was a chance of that but, my god, his actual picks are so ludicrous that it\'s hard to believe this is reality.', 'created': '2024-11-14 01:10:13', 'submission_id': '1gqna60'}
{'comment': 'And now we wait for MTG’s cabinet position to be announced.', 'created': '2024-11-14 01:10:24', 'submission_id': '1gqna60'}
{'comment': 'Don’t worry, with the Fox TV host as defense secretary, it could be all over before we know it.', 'created': '2024-11-14 02:54:54', 'submission_id': '1gqna60'}
{'comment': 'I’ll never understand the 70+mil that voted for this. He’s 6 weeks away from taking over and everyday is another “wtf moment “', 'created': '2024-11-14 03:02:21', 'submission_id': '1gqna60'}
{'comment': "Well, he allegedly was doing underage girls. He's an automatic approval for the guy who would wander into underage locker rooms during teen beauty parents.", 'created': '2024-11-14 03:06:01', 'submission_id': '1gqna60'}
{'comment': 'Great pick - shows that even sex offenders get the benefit of the doubt in this new administration\n\nTrump is like Jesus, in a way', 'created': '2024-11-14 03:07:42', 'submission_id': '1gqna60'}
{'comment': 'He is a complete joke!', 'created': '2024-11-14 03:26:57', 'submission_id': '1gqna60'}
{'comment': 'The most troll-ey troll thing I could imagine.', 'created': '2024-11-14 03:40:17', 'submission_id': '1gqna60'}
{'comment': "When reality becomes a crossover series of The Man in the High Castle and Handmaid's Tale", 'created': '2024-11-14 04:12:50', 'submission_id': '1gqna60'}
{'comment': 'I knew it was going to be someone who was the opposite of qualified. I thought it was going to be Young Thug. Glad it wasn’t, but the pedophile in Congress makes a ton of sense for Trump. Sad times for America.', 'created': '2024-11-14 04:33:59', 'submission_id': '1gqna60'}
{'comment': 'I am disgusted by this gas mask wearing frat boy ~~prick~~ pick.', 'created': '2024-11-14 05:27:13', 'submission_id': '1gqna60'}
{'comment': 'It hasn’t even started yet. You all need to prepare some whacky shit. Prepare for the worst. Hope for the best', 'created': '2024-11-14 05:36:06', 'submission_id': '1gqna60'}
{'comment': 'I really don’t want to say this, because it’s a pretty rude thing to say .. but this guys face is enough to make me hate him. He has stereotypical villain face.', 'created': '2024-11-14 06:25:45', 'submission_id': '1gqna60'}
{'comment': "Don't let them pwn you OP. This is dictatorship by trolling.", 'created': '2024-11-14 08:34:26', 'submission_id': '1gqna60'}
{'comment': "The chaos is the point. \nHe wants everyone looking in 59 different directions while he fills his pockets. \n\nIs also what his people think he wants... his core voters are anarchists, they may not even know they are, or what that really means... but it's what they are and the next 4 years are going to be anarchy.", 'created': '2024-11-14 08:49:27', 'submission_id': '1gqna60'}
{'comment': "Let's hope there's actually a deep state that survives this mess.", 'created': '2024-11-14 08:59:24', 'submission_id': '1gqna60'}
{'comment': "Is this tRump's pick or Putin's?", 'created': '2024-11-14 15:34:27', 'submission_id': '1gqna60'}
{'comment': "attorney general of the United States and under age girls - goes together well\n\nand then there is tulsi, director of national intelligence - don't you need intelligence for that role?", 'created': '2024-11-13 22:07:43', 'submission_id': '1gqna60'}
{'comment': "My dad is a Trump voter and he's absolutely furious about this pick. I was just like...I don't know what you expected when you voted for a lying, cheating, felon. I honestly loved telling him so I could see how revolted he was...he hates Gaetz with a passion.", 'created': '2024-11-13 22:51:14', 'submission_id': '1gqna60'}
{'comment': "Honestly, I'm not sure he gets confirmed. It will magnify the underage sex scandal. Which is best case scenario for us. An absolute humiliation for one of his first and top picks.", 'created': '2024-11-13 22:15:19', 'submission_id': '1gqna60'}
{'comment': 'If the Republicans have any spine left, this actual pedophile and general creep won’t be confirmed…\n\n…So I expect his confirmation early next year.', 'created': '2024-11-13 22:43:08', 'submission_id': '1gqna60'}
{'comment': 'I think even Nickelback hates this guy.', 'created': '2024-11-13 23:55:15', 'submission_id': '1gqna60'}
{'comment': 'Let me introduce you to a little group of shame-free worms known as the Republican Party', 'created': '2024-11-13 22:22:46', 'submission_id': '1gqna60'}
{'comment': 'Um yeah. Everyone hates five-head.', 'created': '2024-11-13 22:24:49', 'submission_id': '1gqna60'}
{'comment': 'As a person who lived in his district… yes, yes we hate him.', 'created': '2024-11-13 23:49:28', 'submission_id': '1gqna60'}
{'comment': 'It’s insane', 'created': '2024-11-13 22:46:30', 'submission_id': '1gqna60'}
{'comment': 'Matt Gaetz has brought this nation together in this most divided times by uniting everyone to hate him equally.\n\nEveryone is together in hating this pedophile.', 'created': '2024-11-14 04:12:01', 'submission_id': '1gqna60'}
{'comment': 'The lady I work with says he’s the right man for the job and all the changes against him are made up….. first I’ve heard of it that but I guess there is a whole part of the country that are supportive of the decision? \n\nShe also believe Biden and Harris should be investigated and arrested…. So…. I dunno.', 'created': '2024-11-14 18:24:48', 'submission_id': '1gqna60'}
{'comment': "I'm sure the Republicans will vote for him", 'created': '2024-11-13 23:55:57', 'submission_id': '1gqna60'}
{'comment': 'Confirmations are a thing of the past, we aren’t doing those anymore, the Chancellor thinks they slow things down too much.', 'created': '2024-11-14 00:24:05', 'submission_id': '1gqna60'}
{'comment': 'Make America Pedophile Again.', 'created': '2024-11-14 00:27:56', 'submission_id': '1gqna60'}
{'comment': 'Is he even a lawyer?', 'created': '2024-11-14 01:23:19', 'submission_id': '1gqna60'}
{'comment': 'Don’t worry reports came out he was days away from being exposed as a pedophile but now he resigned to avoid the hearing', 'created': '2024-11-14 02:44:02', 'submission_id': '1gqna60'}
{'comment': "Gop will confirm him or face Trump's wrath", 'created': '2024-11-14 03:41:12', 'submission_id': '1gqna60'}
{'comment': 'It’s possible that all of this hoopla etc.. is there for a reason: to take the magnifying glass off of Trump’s criminal activity and court cases', 'created': '2024-11-14 13:40:00', 'submission_id': '1gqna60'}
{'comment': 'Doesn’t matter. It’s Trump’s pick. The Republicans have the house and the senate. It’s going to happen', 'created': '2024-11-14 17:15:15', 'submission_id': '1gqna60'}
{'comment': 'A rapist as President. Just adding that for context. Epstein’s ghost must be pissed he missed a shot at AG.', 'created': '2024-11-13 22:20:45', 'submission_id': '1gqna60'}
{'comment': 'But Americans just elected a rapist as president so are you really surprised', 'created': '2024-11-13 22:20:41', 'submission_id': '1gqna60'}
{'comment': 'I mean, could it get much worse than a pedophile as president?', 'created': '2024-11-13 22:21:18', 'submission_id': '1gqna60'}
{'comment': 'These appointments may have actually given Trump a head job…', 'created': '2024-11-13 23:04:16', 'submission_id': '1gqna60'}
{'comment': 'Well, Republicans sure do love pedophiles, Roy Moore almost won senate race in Alabama. And of course, Trump is known rapist...', 'created': '2024-11-14 00:13:00', 'submission_id': '1gqna60'}
{'comment': 'This is an important observation. We’re supposed to be upset now and then “relieved” later if he chooses a less well-known, but still just as bad pick. He’s going to jerk the public around with bidding high on everything.', 'created': '2024-11-13 22:24:02', 'submission_id': '1gqna60'}
{'comment': 'I was waiting for when this answer would pop up.', 'created': '2024-11-13 23:44:07', 'submission_id': '1gqna60'}
{'comment': 'Yup, it’ll be another four years of “Not the Onion”…', 'created': '2024-11-13 22:26:43', 'submission_id': '1gqna60'}
{'comment': 'Things are almost certainly not going to go left. They will probably take a hard right. Good for oncoming traffic. Bad for a country.', 'created': '2024-11-13 22:10:02', 'submission_id': '1gqna60'}
{'comment': 'Millions of people are going to die', 'created': '2024-11-14 12:40:27', 'submission_id': '1gqna60'}
{'comment': 'Well, Kristi Noem, maybe?\n\nOh, wait. You said ~catcher~. Dog ~catcher~. My bad.', 'created': '2024-11-13 22:29:30', 'submission_id': '1gqna60'}
{'comment': 'Nope', 'created': '2024-11-13 22:15:16', 'submission_id': '1gqna60'}
{'comment': 'Planned obsolescence', 'created': '2024-11-13 22:20:19', 'submission_id': '1gqna60'}
{'comment': 'This is just petty “own the libs” rhetoric. To be honest I wish these idiots would get confirmed. None of them have the skill to achieve anything.', 'created': '2024-11-14 04:08:54', 'submission_id': '1gqna60'}
{'comment': 'I’m eating my popcorn waiting for it to all come to a crash.', 'created': '2024-11-13 22:16:10', 'submission_id': '1gqna60'}
{'comment': "It's like Suicide Squad for the cabinet.", 'created': '2024-11-13 22:40:14', 'submission_id': '1gqna60'}
{'comment': "America voted for the leopards eating faces party. They're getting exactly what they voted for.", 'created': '2024-11-13 22:25:02', 'submission_id': '1gqna60'}
{'comment': 'I saw this news and it made me laugh so I hard it turned to coughing/choking. He’s not even trying to pretend he’s serious', 'created': '2024-11-13 23:02:38', 'submission_id': '1gqna60'}
{'comment': 'I thought it was satire. \n\nEven the republican subs are losing their minds.', 'created': '2024-11-13 22:51:25', 'submission_id': '1gqna60'}
{'comment': 'Tied with Tulsi gabbard for DNI', 'created': '2024-11-13 22:04:00', 'submission_id': '1gqna60'}
{'comment': 'It is. But it’s *not* Ken Paxton.', 'created': '2024-11-13 22:17:50', 'submission_id': '1gqna60'}
{'comment': None, 'created': '2024-11-13 23:57:34', 'submission_id': '1gqna60'}
{'comment': 'So far', 'created': '2024-11-14 01:36:13', 'submission_id': '1gqna60'}
{'comment': 'This his what maga wanted …..let’s get our popcorn ready ….', 'created': '2024-11-13 22:30:22', 'submission_id': '1gqna60'}
{'comment': 'This his what maga wanted …..let’s get our popcorn ready ….', 'created': '2024-11-13 22:30:22', 'submission_id': '1gqna60'}
{'comment': 'What a circus we are about to be in !', 'created': '2024-11-13 21:55:38', 'submission_id': '1gqna60'}
{'comment': 'Mass hysteria!', 'created': '2024-11-13 22:13:48', 'submission_id': '1gqna60'}
{'comment': "Schedule F means that they'll all be gone, too, replaced by trolls recruited from Truth Social.", 'created': '2024-11-13 22:32:22', 'submission_id': '1gqna60'}
{'comment': 'I’d say 2027 sadly.', 'created': '2024-11-13 22:55:05', 'submission_id': '1gqna60'}
{'comment': 'At this point as sad as it is to say, it’s probably better it gets bad these next several years and opens people’s eyes to how idiotic this team is. \n\nSometimes you have to let people learn lessons themselves.', 'created': '2024-11-13 22:53:07', 'submission_id': '1gqna60'}
{'comment': 'It’s a disaster', 'created': '2024-11-13 22:37:21', 'submission_id': '1gqna60'}
{'comment': 'This is insane', 'created': '2024-11-13 22:14:56', 'submission_id': '1gqna60'}
{'comment': 'I can’t even lol', 'created': '2024-11-14 00:07:02', 'submission_id': '1gqna60'}
{'comment': 'Yep', 'created': '2024-11-13 22:29:27', 'submission_id': '1gqna60'}
{'comment': 'A nightmare', 'created': '2024-11-13 22:28:13', 'submission_id': '1gqna60'}
{'comment': 'I agree …garland did NOTHING', 'created': '2024-11-14 03:22:41', 'submission_id': '1gqna60'}
{'comment': 'I felt that comment.', 'created': '2024-11-14 00:18:02', 'submission_id': '1gqna60'}
{'comment': 'It’s insane', 'created': '2024-11-14 00:06:47', 'submission_id': '1gqna60'}
{'comment': 'lol', 'created': '2024-11-14 00:06:38', 'submission_id': '1gqna60'}
{'comment': 'Me to! I didn’t think about that!', 'created': '2024-11-14 00:31:07', 'submission_id': '1gqna60'}
{'comment': 'Exactly', 'created': '2024-11-14 01:23:38', 'submission_id': '1gqna60'}
{'comment': 'Agreed !!', 'created': '2024-11-14 01:52:23', 'submission_id': '1gqna60'}
{'comment': 'Yep he deserves it', 'created': '2024-11-14 17:25:33', 'submission_id': '1gqna60'}
{'comment': 'So is Trumpolini.', 'created': '2024-11-13 23:27:18', 'submission_id': '1gqna60'}
{'comment': '100% of the pedophile vote.', 'created': '2024-11-13 23:24:55', 'submission_id': '1gqna60'}
{'comment': 'He wants chaos ….its insane', 'created': '2024-11-14 03:02:48', 'submission_id': '1gqna60'}
{'comment': 'It’s so disgusting', 'created': '2024-11-14 03:07:12', 'submission_id': '1gqna60'}
{'comment': 'Putins and Kim Jun un', 'created': '2024-11-14 17:26:14', 'submission_id': '1gqna60'}
{'comment': "I would think being a Russian agent might be disqualifying, but we're well past that.\xa0", 'created': '2024-11-13 22:20:01', 'submission_id': '1gqna60'}
{'comment': 'Let’s get our popcorn ready', 'created': '2024-11-13 22:46:48', 'submission_id': '1gqna60'}
{'comment': 'I can see why, I think most of the GOP in congress are creeped out by guy behind closed doors. Such a creepy Pedo.', 'created': '2024-11-13 23:59:28', 'submission_id': '1gqna60'}
{'comment': 'love to see it', 'created': '2024-11-14 12:24:13', 'submission_id': '1gqna60'}
{'comment': "I wouldn't be surprised if they confirm him... the GOP does what the ring-leader asks.", 'created': '2024-11-13 22:18:27', 'submission_id': '1gqna60'}
{'comment': 'or to make a second choice who is both evil and competent look less bad', 'created': '2024-11-14 14:09:10', 'submission_id': '1gqna60'}
{'comment': 'Not really, but at the same time yes...because these sort of appointments show just how bad things are really going to get.', 'created': '2024-11-13 23:00:36', 'submission_id': '1gqna60'}
{'comment': 'Adjudicated rapist and convicted felon.', 'created': '2024-11-13 22:25:37', 'submission_id': '1gqna60'}
{'comment': "I'd have that attitude if I didn't have to live through the consequences of this shit...", 'created': '2024-11-13 22:19:18', 'submission_id': '1gqna60'}
{'comment': 'Gabbard is downright dangerous. Just sign the country directly to Putin, cut out the middle man.', 'created': '2024-11-13 23:28:39', 'submission_id': '1gqna60'}
{'comment': 'Oh come on, take Ken Paxton so I can at least not have him in Tx', 'created': '2024-11-13 22:40:04', 'submission_id': '1gqna60'}
{'comment': 'MTG for NOAA Administrator!\n\nWho else would be hilariously terrible?\n\nLauren Boebert for National Endowment of the Arts\nDennis Prager for Education', 'created': '2024-11-14 00:40:27', 'submission_id': '1gqna60'}
{'comment': 'So will she be in charge of the weather machine now?', 'created': '2024-11-14 03:48:03', 'submission_id': '1gqna60'}
{'comment': 'What is schedule F?', 'created': '2024-11-13 22:56:47', 'submission_id': '1gqna60'}
{'comment': 'My hopes for a blue wave at midterms are probably too lofty, because that would require 1) a lot more people to care and 2) a lot of people to accept their vote made all our lives worse.', 'created': '2024-11-13 23:33:02', 'submission_id': '1gqna60'}
{'comment': 'This. Everyone can doomsay all they want and minorities and women are hugely negatively impacted by this election, but any attempt at a coup will fail. I doubt that will even happen. I suspect we’ll avoid a conflict with NK/Russia and they’ll fuck the country so hard into the ground that Dems will win next election. The left won’t allow this to happen next time and the right will get complacent and not vote in the same numbers.', 'created': '2024-11-14 00:16:17', 'submission_id': '1gqna60'}
{'comment': "I rarely use that phrase, but like...what the fuck are we doing here?! My brain just can't handle this level of fuckery.", 'created': '2024-11-14 01:35:47', 'submission_id': '1gqna60'}
{'comment': 'It is, and something I totally expected.', 'created': '2024-11-14 00:07:31', 'submission_id': '1gqna60'}
{'comment': "We got a russian agent in the highest office in the land. so yeah, we've blown way past that barrier.", 'created': '2024-11-13 22:46:46', 'submission_id': '1gqna60'}
{'comment': 'But isn’t Trump? Putin probably chose Gaetz', 'created': '2024-11-13 23:16:03', 'submission_id': '1gqna60'}
{'comment': 'We’ll be known as Rushe 2.0', 'created': '2024-11-14 18:02:36', 'submission_id': '1gqna60'}
{'comment': "Oh, I wouldn't either. But we only need to peel off three Senators. The scandal *could* accomplish that. Plus I think a lot of GOP lawmakers privately hate the guy.", 'created': '2024-11-13 22:24:08', 'submission_id': '1gqna60'}
{'comment': 'Also they cant afford to establish a precedent of punishing pedophiles, they’ll never get anything done!', 'created': '2024-11-13 22:31:44', 'submission_id': '1gqna60'}
{'comment': 'There will be video of him and an underage girl regardless of whether or not he secures the nomination.\n\nAnd enough morons will cry AI fakery.', 'created': '2024-11-13 22:35:56', 'submission_id': '1gqna60'}
{'comment': 'They won\'t confirm him \n\nHe will be appointed deputy director which doesn\'t require senate confirmation, and then when Garland is removed he\'ll be "acting" so he won\'t have to be confirmed. And then just stay in it', 'created': '2024-11-13 23:36:36', 'submission_id': '1gqna60'}
{'comment': 'Not necessarily. The GOP refused to give Trump his border wall various times. They refused to shut down the government once. And the healthcare bill.', 'created': '2024-11-13 23:55:45', 'submission_id': '1gqna60'}
{'comment': 'It’s a job classification from the 1978 Civil Service Reform Act that Trump wanted to use towards the end of his term. In short, it would make it easier for him to fire federal employees in policy related positions.', 'created': '2024-11-13 23:22:10', 'submission_id': '1gqna60'}
{'comment': 'I agree! And I feel like the rate Republicans have been turning on Trump over the last couple years, he’s only going to make more and more enemies the longer he’s in office…. I think (hope) some of the Republicans are rational and take their jobs seriously.. hopefully they will do the right thing when Trump and co start to do some stupid shit! Also since it’s Trump’s second term, he will have less power over people and won’t be able to bully them into compliance.\n\nI also feel like with how this new administration is shaping up, it’s going to be chaotic and disorganized. They aren’t going to get any shit done because they all have to tiptoe around Trump and get his ok while also not angering him. The Dems will fight their hardest at everything, which will take focus on the Repubs part to fight back…', 'created': '2024-11-14 03:46:48', 'submission_id': '1gqna60'}
{'comment': 'Him or Kari lake', 'created': '2024-11-14 00:07:52', 'submission_id': '1gqna60'}
{'comment': "Trump's a useful idiot yeah, but this chick is just direct Kremlin pipeline. Our director of intelligence, the person charged with keeping us safe from Russian intelligence actors, is on the side of the Russians. What could go wrong...", 'created': '2024-11-13 23:14:52', 'submission_id': '1gqna60'}
{'comment': 'Trump was elected. Gabbard merely nominated for an appointment. It can —and really *must*— be stopped. Republican senators need to start thinking seriously about the security of our nation.', 'created': '2024-11-14 05:39:07', 'submission_id': '1gqna60'}
{'comment': 'Bolshevik 2: Electric Boogaloo.', 'created': '2024-11-14 18:06:02', 'submission_id': '1gqna60'}
{'comment': '*four, which is a MUCH harder sell', 'created': '2024-11-13 22:28:36', 'submission_id': '1gqna60'}
{'comment': 'This is setting up a pretty brutal 2026 for them (if there are still free and faire elections)', 'created': '2024-11-14 13:08:02', 'submission_id': '1gqna60'}
{'comment': 'hahahahahah! so true', 'created': '2024-11-13 22:45:49', 'submission_id': '1gqna60'}
{'comment': 'Is there an legal way to stop him or it just happen?', 'created': '2024-11-13 23:23:41', 'submission_id': '1gqna60'}
{'comment': 'Oh, there will be a spot for good old Kari, and that female Huckabee monstrosity, too, if she wants one. The picks for his cabinet will all be nightmarish, because in reality, no sane person would want to be tainted by that degradation.', 'created': '2024-11-14 00:11:10', 'submission_id': '1gqna60'}
{'comment': 'On the optimistic side, if Russia falls the American right wing will be without a daddy.', 'created': '2024-11-13 23:47:56', 'submission_id': '1gqna60'}
{'comment': 'Trump doesn’t care. He’s setting up his family for generations. He’ll be dead in a few years.', 'created': '2024-11-14 00:22:26', 'submission_id': '1gqna60'}
{'comment': 'When was the last time Trump took the blame for ANYTHING?', 'created': '2024-11-13 21:55:31', 'submission_id': '1gqn017'}
{'comment': 'How is this “betraying MAGA”? Isn’t this exactly what MAGA people want? An absolute kakistocracy?', 'created': '2024-11-13 22:06:24', 'submission_id': '1gqn017'}
{'comment': 'I live in a red state that is at the bottom of all metrics of modern society. It’s a GOP supermajority in all branches and has been for over a decade (well, Supreme Court has some balance). And the Republicans still constantly blame Dems for everything that goes wrong. They always find an angle. Always.', 'created': '2024-11-13 22:14:34', 'submission_id': '1gqn017'}
{'comment': '….and Gaetz for ag', 'created': '2024-11-13 22:03:34', 'submission_id': '1gqn017'}
{'comment': 'I’m convinced Trump really want to ruin this country', 'created': '2024-11-13 22:32:30', 'submission_id': '1gqn017'}
{'comment': "Wait until they find out he's put up an alleged child sex trafficker for AG. Oh I forgot they don't care about that if it's one of theirs.", 'created': '2024-11-13 22:29:19', 'submission_id': '1gqn017'}
{'comment': 'I feel like some of these super crazy disgruntled right wingers may target Trump for something', 'created': '2024-11-13 22:01:27', 'submission_id': '1gqn017'}
{'comment': 'We need to move away from any narrative that the people who support what Trump/Vance represent can learn or change their opinion about anything. \n\nDon’t care how callous it sounds. It’s true. Fighting a battle against misinformation on social media and media at large will always be a loss. It’s just not possible.', 'created': '2024-11-13 22:36:15', 'submission_id': '1gqn017'}
{'comment': 'So is this guy claiming that appointing Huckabee, Noem and Stefanik is *betraying* MAGA? They are the very essence of MAGA!', 'created': '2024-11-13 22:09:07', 'submission_id': '1gqn017'}
{'comment': 'Mike Waltz goddamn it. WALTZ', 'created': '2024-11-13 22:24:13', 'submission_id': '1gqn017'}
{'comment': "This country is an overpaid mall security guard without a high school diploma that just shot itself in the foot without having health insurance.\n\nOh, well... who needs a foot? Let the gangrene set in because GERMS AREN'T REAL!\n\n/s in case anyone is wondering.", 'created': '2024-11-13 23:59:48', 'submission_id': '1gqn017'}
{'comment': 'That sentiment is going to pop up all of the next four years. Personally I\'m not quite at the "I told you so" point yet. This really hurt, and changed my view of a lot of people.', 'created': '2024-11-13 22:26:48', 'submission_id': '1gqn017'}
{'comment': 'It’s SO funny he picked Rubio. Maggots hate him.\xa0', 'created': '2024-11-13 21:58:48', 'submission_id': '1gqn017'}
{'comment': 'I think we\'re in for a TON of in-fighting. "Traditional" Republicans hate half of Trump\'s cabinet picks, MAGA Republicans hate the other half.\n\nThis is just the beginning. The other side is about to crumble from within.', 'created': '2024-11-13 23:39:07', 'submission_id': '1gqn017'}
{'comment': 'And this came out before he tapped Matt Gaetz to be AG.', 'created': '2024-11-13 22:26:16', 'submission_id': '1gqn017'}
{'comment': "Obvious satire/bait. Trump cannot betray MAGA, literally by definition. If you're expecting them to turn on him, don't hold your breath - especially not this early.", 'created': '2024-11-13 22:49:07', 'submission_id': '1gqn017'}
{'comment': "They haven't realized their mistake yet but they will. His loyal cult will never admit he is wrong about anything.", 'created': '2024-11-14 01:05:37', 'submission_id': '1gqn017'}
{'comment': 'It is with zero empathy I offer my concept of thoughts and prayers', 'created': '2024-11-14 02:27:03', 'submission_id': '1gqn017'}
{'comment': "They didn't realize it last time, and they won't realize it this time.", 'created': '2024-11-13 23:23:39', 'submission_id': '1gqn017'}
{'comment': "So far I haven't heard any trumpers complain about these cabinet assignments. They are 100% ok with it while the rest of us are horrified. They are too dumb to even realize how big of a mistake his appointments are, so of course when things get fucked up and destroyed they'll eat up whatever lie or scapegoat that trump blames.", 'created': '2024-11-14 01:35:28', 'submission_id': '1gqn017'}
{'comment': "This makes me even more angry. Who the hell votes someone into a position of authority, I don't know, like the fucking president of the United States without doing any damn research!! And, no, that doesn't even excuse this because they knew what he was like the first time. They knew!!", 'created': '2024-11-14 02:27:09', 'submission_id': '1gqn017'}
{'comment': 'Sorry bitches but the rest of America is not going to pretend there’s a single shred of difference between Trump, the GOP, and the base.\n\nNo matter what happens, it’ll be their fault forever. Hope they’re ready to own it.', 'created': '2024-11-14 01:32:17', 'submission_id': '1gqn017'}
{'comment': 'I’m convinced Trump really want to ruin this country', 'created': '2024-11-13 22:32:30', 'submission_id': '1gqn017'}
{'comment': 'Now, any respectable, patriotic Republicans, if there are any left, need to stand up to this mentally ill monster that they foisted on us. Prepare articles of impeachment now. Time to try out that 25th Amendment before it is too late. This is not good.', 'created': '2024-11-14 02:45:16', 'submission_id': '1gqn017'}
{'comment': 'The cult turns against their cult leader. That didn’t take long. I suspect in the coming weeks that many more MAGA foot soldiers will come to terms that they were completely lied to and manipulated by their new overlord. \n\nThe old saying “Thanks Obama” should definitely be retired and replaced by “Thanks Trump” \n\nThanks for (however you screwed us) the possibilities are endless. And this shit show is just getting started!', 'created': '2024-11-14 03:12:29', 'submission_id': '1gqn017'}
{'comment': "... and he isn't even president yet...", 'created': '2024-11-14 04:24:21', 'submission_id': '1gqn017'}
{'comment': 'How are those a betrayal of MAGA? The rest of us, sure. But MAGA?', 'created': '2024-11-13 22:41:37', 'submission_id': '1gqn017'}
{'comment': "Howdy pardners! Just rode on up to tell ya that quoting Jackson Hinkle? Well, that ain't the cowboy way. Happy trails, amigos!", 'created': '2024-11-13 23:09:36', 'submission_id': '1gqn017'}
{'comment': "Well, it's too late. We'll see if there's an election in four years, but as we learned, it takes more than four years to undo the damage", 'created': '2024-11-14 00:02:41', 'submission_id': '1gqn017'}
{'comment': 'Ofk- I think the people who voted for him have some responsibility in this too.', 'created': '2024-11-14 12:25:26', 'submission_id': '1gqn017'}
{'comment': 'I hope they get everything they voted for 🤭', 'created': '2024-11-14 13:07:13', 'submission_id': '1gqn017'}
{'comment': 'Actually the blame goes to all those who voted for him and all the republicans in government that have enabled him and he will destroy America.', 'created': '2024-11-14 05:55:30', 'submission_id': '1gqn017'}
{'comment': "No they're not realizing any mistake. Slow down and pay attention.", 'created': '2024-11-13 22:11:19', 'submission_id': '1gqn017'}
{'comment': 'Why are they mad?! They knew this would happen!', 'created': '2024-11-14 04:03:28', 'submission_id': '1gqn017'}
{'comment': 'My only hope is that we survive the next 4 years and every person that voted for him turns against the Republican party for what they did during that time.', 'created': '2024-11-14 06:51:57', 'submission_id': '1gqn017'}
{'comment': 'It’s all performative rage to me at this point.', 'created': '2024-11-14 07:00:06', 'submission_id': '1gqn017'}
{'comment': 'Trump’s just being Trump and apparently that’s a “betrayal” lol. Ok. Guy had shit picks in 2016. Of course this guy’s gonna have dogshit picks in 2024.', 'created': '2024-11-14 09:16:32', 'submission_id': '1gqn017'}
{'comment': "As far as I'm concerned, these idiots MAGAts are getting EXACTLY what their uneducated and grifted vote bought. I hope theiy're miserable. The only sad thing is that the Mango Musselini is going to drag the rest of us along for the ride.\n\nMy only hope us they screw everything up so much in the next two years that the midterms will cost them both houses of Congress. We've got two years of Fascism, Project 2025, and chaos coming. We just have to hold on.", 'created': '2024-11-14 22:08:59', 'submission_id': '1gqn017'}
{'comment': 'Too late.\nBen sorry does not fix anything.\nThe ballots were casted.\nAll those American Arabs with a backwards mentality “ we want to send a message”\nIdiot hispanos people thinking we will be better with Trump \nBlacks supporting the guy that has been the enemy #1 of black people.\nAsians that think they will be better off.\nBut most important all those trash MAGA people, “ judgment day is coming near to you.', 'created': '2024-11-14 05:23:15', 'submission_id': '1gqn017'}
{'comment': "They're irredeemable - they will lick his boots with the fervor of a proper lapdog. Every single time.", 'created': '2024-11-13 22:37:56', 'submission_id': '1gqn017'}
{'comment': 'Oh yeah. This is the guy that describes himself as an “American Conservative Marxist-Leninist.”', 'created': '2024-11-13 22:57:31', 'submission_id': '1gqn017'}
{'comment': 'Thots and preys. Glad they’re getting everything they voted for.', 'created': '2024-11-14 00:44:37', 'submission_id': '1gqn017'}
{'comment': 'America the beautiful Ends January 20th \nWelcome to the most immoral incompetent White House ever led by a giant shit filled Diaper! 🤮', 'created': '2024-11-14 02:16:05', 'submission_id': '1gqn017'}
{'comment': "Trump never went against MAGA. There's just a lot of cultists becoming disillusioned.", 'created': '2024-11-14 02:27:51', 'submission_id': '1gqn017'}
{'comment': 'Do you think leaders like Kim Jong Un would have met Kristi if she wasn’t great?', 'created': '2024-11-14 03:42:31', 'submission_id': '1gqn017'}
{'comment': "Freaking the fuck out gets us nothing. It's actually counterproductive. They fucked around. Now BREATHE and wait for them to get to the FIND OUT phase of FAFO. All these election postmortems get us nowhere. Just chill, subscribe to channels like Meidas Touch on YouTube for your news. Stay away from MSM. And wait for the circular firing squad that is sure to come within the MAGA ranks. Seriously. 😉 👍 🍿 🍿 🍿", 'created': '2024-11-14 03:58:07', 'submission_id': '1gqn017'}
{'comment': 'And maga will fawn over it and love it 🥰', 'created': '2024-11-14 07:22:33', 'submission_id': '1gqn017'}
{'comment': 'Let’s not quote Nazis please.', 'created': '2024-11-14 10:01:14', 'submission_id': '1gqn017'}
{'comment': 'I expect 2 weeks after he’s sworn in he will be declaring he’s turned America around. He will have enough sycophants by his side to agree and lie and cook the numbers to convince America they’re in a golden age. Don’t forget many of the issues republicans raised weren’t as severe as they claimed or didn’t exist in the first place.', 'created': '2024-11-14 17:26:07', 'submission_id': '1gqn017'}
{'comment': 'Wait I thought MAGA was synonymous with Trump. Has he sown so much devision that even his own movement is separating from him? 🫢', 'created': '2024-11-14 18:05:13', 'submission_id': '1gqn017'}
{'comment': 'Mark Rubio seems like the only sane one in the bunch.', 'created': '2024-11-14 22:59:23', 'submission_id': '1gqn017'}
{'comment': 'I don’t care people wanted this by electing him', 'created': '2024-11-14 05:37:43', 'submission_id': '1gqn017'}
{'comment': 'I misread that as Led Zeppelin and had a bizarre moment of hope. Then I got to the part about trump being bare and my brain screamed.', 'created': '2024-11-14 05:38:23', 'submission_id': '1gqn017'}
{'comment': "Yep. So long as he doesn't lie about what happened and blame someone else, and the electorate suddenly starts paying attention and giving a damn, he should be in big trouble.", 'created': '2024-11-14 00:56:21', 'submission_id': '1gqn017'}
{'comment': "Wait, what?\n\nHinkle is actually saying that and it's not a fake? Lol... Just el-o-el.", 'created': '2024-11-14 10:44:55', 'submission_id': '1gqn017'}
{'comment': "No, they didn't, and they will not! Just because one MAGA clown realized it too late doesn't mean they all do. I think this is just wishful thinking because, in the end, they're still going to blame democrats\nSo, we can't depend on their votes. We ourselves must act. Get phones going for midterms, knock on doors, and work our butts off to do what we need to do to get democrats elected!", 'created': '2024-11-14 17:34:27', 'submission_id': '1gqn017'}
{'comment': "Facts and Trump wants loyalty like Marcos Sr Putin Xi Jinping's Chinese Communist Party and Kim Jong Un's Workers Party of Korea Al Assad's Syrian Baath Party", 'created': '2024-11-14 21:45:41', 'submission_id': '1gqn017'}
{'comment': 'Isn’t Hinkle anti-America? He wants to see the country collapse', 'created': '2024-11-15 08:43:25', 'submission_id': '1gqn017'}
{'comment': 'but but but the liberal media is lying! they appointed them not trump! trump is innocent he would never lie!! /joke', 'created': '2024-11-15 17:02:15', 'submission_id': '1gqn017'}
{'comment': 'This cult will make an excuse for them all.', 'created': '2024-11-15 19:10:28', 'submission_id': '1gqn017'}
{'comment': 'Trust me, they are not. They will think this is a great way to “own the libs.” I know because I am related to some of them.', 'created': '2024-11-15 20:20:17', 'submission_id': '1gqn017'}
{'comment': 'I thought the MAGA crowd was loving all of his crazy picks?', 'created': '2024-11-16 08:57:31', 'submission_id': '1gqn017'}
{'comment': 'No, the next step is to blame brown people for everything. That\'s how it works. "Oh economy\'s kot fixed? I\'ll tell ya what the problem is. It\'s brown people doing crimes!"', 'created': '2024-11-16 13:08:35', 'submission_id': '1gqn017'}
{'comment': 'What are these people too sane for MAGA? At least they have Matt Gaetz 🙄', 'created': '2024-11-13 23:53:29', 'submission_id': '1gqn017'}
{'comment': "This post is whack. \n\nMAGA are thrilled. They're orgasming all over each other in church. \n\nStupidity, violence, hatred, poverty, lawlessness and racism have won. \n\nStop with these idiotic *feel good* posts or reposts, whatever. \n\nEveryone grow up and accept the fact America is going to war with itself and the right-wing will annihilate the blue states. Russia has won. \n\nTime to get real. We lost. The good guys lost. Trump's going to kill us. The US military is going to kill us at their first chance. \n\nI just hope we manage to get Moscow nuked before it's over.", 'created': '2024-11-13 22:42:11', 'submission_id': '1gqn017'}
{'comment': 'It is sad when you are relying on John Thune to be the voice of reason.', 'created': '2024-11-13 22:19:43', 'submission_id': '1gqn017'}
{'comment': 'The only truthful statement made during his first term: "I don\'t take responsibility at all"', 'created': '2024-11-13 23:16:08', 'submission_id': '1gqn017'}
{'comment': 'When did MAGA blame him for anything? \n\nThey will blame Joe Biden for those appointments!', 'created': '2024-11-13 23:23:29', 'submission_id': '1gqn017'}
{'comment': 'The mistake idiots keep making is waiting for him to take the blame.\n\nBlame for crimes is imposed upon the criminal, not accepted.', 'created': '2024-11-14 01:32:59', 'submission_id': '1gqn017'}
{'comment': '"I take no responsibility. None." trump 💩.', 'created': '2024-11-14 19:23:41', 'submission_id': '1gqn017'}
{'comment': 'When his mom got pregnant', 'created': '2024-11-14 01:19:50', 'submission_id': '1gqn017'}
{'comment': 'Only for Vlad', 'created': '2024-11-14 15:36:11', 'submission_id': '1gqn017'}
{'comment': 'Are we democrats gonna take the blame for getting Trump elected? Or are we going to continue making the same mistakes, like Hilary, Biden, Kamala... While dismissing Bernie', 'created': '2024-11-15 01:14:34', 'submission_id': '1gqn017'}
{'comment': 'Bingo!! This is the right answer.', 'created': '2024-11-15 20:46:05', 'submission_id': '1gqn017'}
{'comment': 'Yeah. People are just trying to divide Maga ig. I say go for it.', 'created': '2024-11-13 22:33:15', 'submission_id': '1gqn017'}
{'comment': "He went on a tirade almost entirely focused on John Ratcliffe being named Director of CIA. Hickle is freaking out that the guy isn't MAGA enough.\n\nHinkle has since sung a brighter tune with the announcements of Gabbard and Gaetz.", 'created': '2024-11-14 00:01:46', 'submission_id': '1gqn017'}
{'comment': 'I thank MSNBC for teaching me that word today. Sounds like caca, means government of idiots basically.', 'created': '2024-11-14 06:32:46', 'submission_id': '1gqn017'}
{'comment': 'I don\'t think MAGA stands for enough of anything for them to be "betrayed", TBH.\n\nThey\'re just NOW finding out what this guy actually stands for, now that Trump doesn\'t even have to pretend to care about his cult.', 'created': '2024-11-14 15:00:33', 'submission_id': '1gqn017'}
{'comment': 'Yeah. People are just trying to divide Maga ig. I say go for it.', 'created': '2024-11-13 22:33:15', 'submission_id': '1gqn017'}
{'comment': 'That was my exact same question.', 'created': '2024-11-14 16:35:41', 'submission_id': '1gqn017'}
{'comment': "Your red state is enjoying my California tax dollars (my tax rate is about 40% because I get no tax breaks, I rent because I can't afford a mortgage and have no kids...) AND your vote is worth more than mine. The system is so broken.", 'created': '2024-11-13 23:18:19', 'submission_id': '1gqn017'}
{'comment': 'Mississippi or Alabama lol', 'created': '2024-11-13 23:03:44', 'submission_id': '1gqn017'}
{'comment': 'Oklahoma?', 'created': '2024-11-13 23:17:38', 'submission_id': '1gqn017'}
{'comment': "I'm in Texas. I sympathize.", 'created': '2024-11-14 01:56:50', 'submission_id': '1gqn017'}
{'comment': 'I live in Louisiana. I remember when Bobby Jindal ruined the state, was trying to shut down hospitals and schools. The first week John Bel Edwards took over, everyone on the right blamed him for the problems. \n\nAlmost like Trump proclaiming the unemployment rate wasn’t real, then taking credit for it immediately once he got in office. Republicans are so full of shit, and they know their base is too stupid to realize they are being played. They just make shit up knowing their base will never figure out they are lying.', 'created': '2024-11-14 11:08:19', 'submission_id': '1gqn017'}
{'comment': 'Louisiana?', 'created': '2024-11-14 04:02:24', 'submission_id': '1gqn017'}
{'comment': 'Are you in Oklahoma, too?!?', 'created': '2024-11-14 00:56:51', 'submission_id': '1gqn017'}
{'comment': "I am a registered Democrat.\nFirst off we as democrats are to blame for the outcome of this election by not showing up and forfeiting our country.\n\nDemocrats will always be called woke (or whatever the next phase is)\nWill always be called soft on immigration\nWill always be called soft on crime(even with the lowest crime rates in decades and literally after the country was on fire during trumps first term)\nWill always be called anti family,for wanting to protect our lgbtq family members and those of other families.\n\nKnowing this how do we want to define ourselves?\n\nAgain we as democrats are to blame for the outcome of this election-14,000,000 -16,000,000 People less voted in 2024 than 2020 - including the one million Republicans that voted for Harris instead of trump. That's over 10% of the people that voted.", 'created': '2024-11-14 19:34:12', 'submission_id': '1gqn017'}
{'comment': 'There goes the age of consent.', 'created': '2024-11-13 22:08:43', 'submission_id': '1gqn017'}
{'comment': 'WAIT WHAT', 'created': '2024-11-13 22:36:46', 'submission_id': '1gqn017'}
{'comment': 'Please tell me that’s a joke. Dear god help us.', 'created': '2024-11-13 23:10:53', 'submission_id': '1gqn017'}
{'comment': 'No maga actually likes that one', 'created': '2024-11-14 06:25:14', 'submission_id': '1gqn017'}
{'comment': 'They probably like that one', 'created': '2024-11-14 14:40:35', 'submission_id': '1gqn017'}
{'comment': "Nah, he's just a grifter and cheap traitor and a hateful empty man played like a fiddle by foreign dictators.", 'created': '2024-11-14 00:02:17', 'submission_id': '1gqn017'}
{'comment': "I'm convinced he sold it and doesn't care what happens to it.", 'created': '2024-11-14 00:30:32', 'submission_id': '1gqn017'}
{'comment': 'He does work for Putin', 'created': '2024-11-14 04:44:37', 'submission_id': '1gqn017'}
{'comment': 'Not sure. That’s just a collateral damage of the grift.', 'created': '2024-11-14 00:29:23', 'submission_id': '1gqn017'}
{'comment': 'It was Gaetz who said that the MAGA movement is a “higher level of conservatism”. (Fascism).', 'created': '2024-11-14 05:26:33', 'submission_id': '1gqn017'}
{'comment': ' freedom of exercising our 2nd amendment right is a "sacred" obligation', 'created': '2024-11-13 22:16:38', 'submission_id': '1gqn017'}
{'comment': 'Im surprised he accepted the position, i figured he was gearing up to replace DeSantis in 2026', 'created': '2024-11-13 22:38:11', 'submission_id': '1gqn017'}
{'comment': 'They already have….they just weren’t good at it…', 'created': '2024-11-14 06:35:24', 'submission_id': '1gqn017'}
{'comment': '...again', 'created': '2024-11-13 23:12:09', 'submission_id': '1gqn017'}
{'comment': "I think we're all hoping for something to keep this guy from actually taking office. \n\nWe might not be able to prevent a Republican in charge, but at least have someone who won't have the same rizz.", 'created': '2024-11-14 15:14:35', 'submission_id': '1gqn017'}
{'comment': 'Exactly. I work in retail management and the number of times I’ve heard MAGAts declare that Trump will lower prices is astonishing. I hit them with “I wonder what his tariffs will do to the cost of goods” and they deflect and immediately change the topic. Every goddamn time.\n\nDemocrats will never win another election because the electorate is genuinely too stupid, ignorant, and intellectually lazy to vote for anything other than a knee-jerk identity politic candidate. AKA MAGA.', 'created': '2024-11-13 22:51:38', 'submission_id': '1gqn017'}
{'comment': 'It changes my view of America, Americans, and humanity in general. The true loser of this election is basic decency, humility, and intelligence.', 'created': '2024-11-13 22:48:39', 'submission_id': '1gqn017'}
{'comment': 'Rubio is the only sane pick, ironically.', 'created': '2024-11-13 22:52:33', 'submission_id': '1gqn017'}
{'comment': "Good. If they're busy fighting they won't screw America over half as much. That's effectively how we got in this situation in the first place too.", 'created': '2024-11-14 08:02:39', 'submission_id': '1gqn017'}
{'comment': 'Give them a year.', 'created': '2024-11-14 05:30:16', 'submission_id': '1gqn017'}
{'comment': 'Oh, he brought a pedo file into to be Attorney General. Trump kult be like: “He’s never been convicted, they found him innocent.”', 'created': '2024-11-14 23:08:58', 'submission_id': '1gqn017'}
{'comment': 'I hope some start to turn on the GOP too', 'created': '2024-11-14 09:56:07', 'submission_id': '1gqn017'}
{'comment': "The problem with MAGA is it has to defined boundaries. It's a totally wild, chaotic movement of, well... chaos. They attack everything and everyone except for Trump himself. That's probably the only common point in that movement. Otherwise, everything is fair game to be attacked, mocked or otherwise assaulted by them without consideration.", 'created': '2024-11-14 11:00:34', 'submission_id': '1gqn017'}
{'comment': 'Oh we’re f***** longer than 4 years no matter what', 'created': '2024-11-14 23:09:40', 'submission_id': '1gqn017'}
{'comment': 'They still don’t get it yet. The Maggat trolls on Reddit just say,”We won,you lost. Get over it!” Lol. They’re so braindead they dont understand the implications of their actions in voting for him. We ALL lost, because of them and they remain completely clueless.', 'created': '2024-11-14 23:01:38', 'submission_id': '1gqn017'}
{'comment': 'I’m not really seeing much of that disillusionment yet. This douche doesn’t carry a lot of weight.', 'created': '2024-11-14 23:07:04', 'submission_id': '1gqn017'}
{'comment': 'I think the majority of them are yes.', 'created': '2024-11-16 16:51:19', 'submission_id': '1gqn017'}
{'comment': "It's waaay too early to throw in the towel. There will be a reaction to all of this. People who were naïve and complacent will soon wake up to what's at stake. \n\nI'm not saying that we'll definitely win in the end, but this is just the beginning.", 'created': '2024-11-14 03:47:47', 'submission_id': '1gqn017'}
{'comment': 'Yeah, like looking at Dick Cheney as the voice of reason.', 'created': '2024-11-14 02:22:30', 'submission_id': '1gqn017'}
{'comment': 'Just praying he will walk back his campaign promise', 'created': '2024-11-13 23:06:30', 'submission_id': '1gqn017'}
{'comment': 'He’ll take it for Vlad', 'created': '2024-11-14 15:40:54', 'submission_id': '1gqn017'}
{'comment': 'This is an important point to remember going forward. If they lack unity, it will be that much harder for them to hold.', 'created': '2024-11-14 06:31:55', 'submission_id': '1gqn017'}
{'comment': 'He’s in his “nothing to lose” phase.', 'created': '2024-11-14 15:23:53', 'submission_id': '1gqn017'}
{'comment': 'If there’s a way at all for states that give more than they receive from the federal government then they should withhold that money if orange orangutan tries to step on our state’s rights.', 'created': '2024-11-14 02:15:59', 'submission_id': '1gqn017'}
{'comment': 'How is one vote worth more than one vote? Also, if you are in the top tax bracket, you are making more than 95% of everyone else so quit complaining.\n\nFinally, if CA sucks so bad; move. Nobody’s going to stop you.', 'created': '2024-11-14 19:59:56', 'submission_id': '1gqn017'}
{'comment': 'Indiana...lol', 'created': '2024-11-13 23:11:59', 'submission_id': '1gqn017'}
{'comment': 'Best view of Oklahoma is from the rear view mirror', 'created': '2024-11-14 07:32:57', 'submission_id': '1gqn017'}
{'comment': 'IT COULD BE ALL OF THE ABOVE. 🤷🏼\u200d♀️', 'created': '2024-11-14 06:34:41', 'submission_id': '1gqn017'}
{'comment': None, 'created': '2024-11-14 01:09:44', 'submission_id': '1gqn017'}
{'comment': 'Consent? We’re talking about maga', 'created': '2024-11-13 22:39:23', 'submission_id': '1gqn017'}
{'comment': 'At this point it’s just the unwritten rule of maga', 'created': '2024-11-13 22:28:17', 'submission_id': '1gqn017'}
{'comment': 'Oh yeah….', 'created': '2024-11-13 22:39:04', 'submission_id': '1gqn017'}
{'comment': "It's note-taking time again.", 'created': '2024-11-14 15:08:24', 'submission_id': '1gqn017'}
{'comment': '404 error', 'created': '2024-11-13 23:24:47', 'submission_id': '1gqn017'}
{'comment': 'Trump wanted someone who has his same taste in women, I guess.', 'created': '2024-11-14 15:09:31', 'submission_id': '1gqn017'}
{'comment': 'He is a pedo, of course they do', 'created': '2024-11-14 14:54:24', 'submission_id': '1gqn017'}
{'comment': 'My coworkers think he’s a puppet for Putin', 'created': '2024-11-14 00:02:59', 'submission_id': '1gqn017'}
{'comment': "Well if armed Latino people would stop starting deadly gunfights with the deportation officers we wouldn't have to weaken the 2nd Amendment.", 'created': '2024-11-13 22:29:26', 'submission_id': '1gqn017'}
{'comment': 'There was an image I saw in another post somewhere on Reddit talking about tariffs and the price of groceries.\n\nThe first comment that was part of the screen shot was, “We don’t import food”.', 'created': '2024-11-13 22:58:49', 'submission_id': '1gqn017'}
{'comment': 'Disagree. We\'ll win if we get "lucky", aka when they inevitably oversee another major 1929 or 2007 style recession.\xa0\n\nAnd the whole cycle will then stagger along to more GOP victories, unless we do something against misinformation!\xa0', 'created': '2024-11-18 05:54:10', 'submission_id': '1gqn017'}
{'comment': 'When Rubio is considering sane, we’ve most definitely gone off the rails.', 'created': '2024-11-13 23:12:25', 'submission_id': '1gqn017'}
{'comment': 'It’s kind of what happened the first Trump presidency. They are too caught up in “owning the Libs” to actually get things done.', 'created': '2024-11-14 14:46:47', 'submission_id': '1gqn017'}
{'comment': 'I gave them four years last time. And what did they do? They voted for him again. And then, four years, and an attempted coup later, they voted for him again...', 'created': '2024-11-14 15:12:05', 'submission_id': '1gqn017'}
{'comment': 'No one was taking policy advice from Dick Cheney in the last campaign. And he certainly wasn’t getting a cabinet appointment', 'created': '2024-11-14 16:39:40', 'submission_id': '1gqn017'}
{'comment': 'What might that be?', 'created': '2024-11-13 23:14:44', 'submission_id': '1gqn017'}
{'comment': "Well, a defining feature of fascism is that it sows division among all peoples, even within the in-group. If you kill the king, you're an assassin. If you kill the King's closest advisor, you can claim they were plotting treason and look like a hero.", 'created': '2024-11-14 17:35:53', 'submission_id': '1gqn017'}
{'comment': 'Lawfare', 'created': '2024-11-15 21:31:33', 'submission_id': '1gqn017'}
{'comment': 'As a fellow Hoosier, I knew it was Indiana. I’m probably gonna gtfo once I finish college because I don’t have any faith in this state and if I ever want to have kids, I’d be doing them a severe disservice by sending them to school here', 'created': '2024-11-14 00:45:26', 'submission_id': '1gqn017'}
{'comment': 'Knew it!', 'created': '2024-11-14 02:27:27', 'submission_id': '1gqn017'}
{'comment': 'Could be Arkansas. Ask me how I know', 'created': '2024-11-14 01:18:47', 'submission_id': '1gqn017'}
{'comment': 'Putin is extremely happy Trump is going to divide USA for another four years.', 'created': '2024-11-14 01:27:05', 'submission_id': '1gqn017'}
{'comment': 'He is a puppet for Putin.', 'created': '2024-11-14 04:33:09', 'submission_id': '1gqn017'}
{'comment': 'Well, yeah, I mean it just depends on how you want to describe the relationship that we can read about in public sources.', 'created': '2024-11-14 00:06:51', 'submission_id': '1gqn017'}
{'comment': 'Do you have a source for that racist sentiment?', 'created': '2024-11-14 00:04:29', 'submission_id': '1gqn017'}
{'comment': 'Did you forget the ‘/ s’?', 'created': '2024-11-14 05:59:15', 'submission_id': '1gqn017'}
{'comment': 'Yeah. When I asked one guy about our produce he started rambling about the price of gas. Like, how tf is that related?', 'created': '2024-11-14 00:15:47', 'submission_id': '1gqn017'}
{'comment': 'Better than Rick Scott.', 'created': '2024-11-14 05:29:04', 'submission_id': '1gqn017'}
{'comment': 'Think even last year when Gaetz got their old speaker of the house out of office. They had the majority, but were infighting. Good. Let them.', 'created': '2024-11-15 01:27:13', 'submission_id': '1gqn017'}
{'comment': 'By “they” I mean trump and his ridiculous cabinet. Trump and his propaganda team are going to pump the propaganda hard, while they slowly chop away at our country.', 'created': '2024-11-14 19:07:02', 'submission_id': '1gqn017'}
{'comment': '….recess appointments, atleast public hearing. And maybe some senators will look at extreme cases and say maybe not.', 'created': '2024-11-13 23:18:32', 'submission_id': '1gqn017'}
{'comment': 'I remember seeing a statistic in 2016 about Indiana having the worst rate of “brain drain” in the nation, meaning the most amount of people who get a degree in Indiana leave and take it to another state. The number of colleges in IN definitely contributes to this, but I did my part in making sure that stat stays afloat and you should to. Being in a state that is solidly blue brings some small sense of comfort in these times.', 'created': '2024-11-14 03:27:53', 'submission_id': '1gqn017'}
{'comment': '100%', 'created': '2024-11-14 01:10:55', 'submission_id': '1gqn017'}
{'comment': 'If the education there is so shitty, why did you choose to go to school there?', 'created': '2024-11-14 20:01:43', 'submission_id': '1gqn017'}
{'comment': 'Putin always knew the strength in the US was our institutions and one key aspect to destroying the US is destroying Americans faith in institutions.', 'created': '2024-11-14 06:01:56', 'submission_id': '1gqn017'}
{'comment': 'Yikes', 'created': '2024-11-14 02:46:30', 'submission_id': '1gqn017'}
{'comment': 'And try to hand him Ukraine', 'created': '2024-11-14 14:36:52', 'submission_id': '1gqn017'}
{'comment': "White, Black, Asian. It could be anyone that is being attacked. Angry white guys aren't the only group that can get armed and want to fight back. Don't try to deflect an obviously sarcastic comment meant to imitate what certain type of people will say to excuse their actions.", 'created': '2024-11-14 00:43:34', 'submission_id': '1gqn017'}
{'comment': 'It pains me to give any validity to this grumbled rhetoric but I at least understand this.\n\nThe price of food does rise when the cost of fuel rises. So much of our food is transported via truck drivers. When the cost of diesel gets stupid high, those prices are passed on to the consumer on the back end. The businesses do not just eat those losses.', 'created': '2024-11-14 01:04:03', 'submission_id': '1gqn017'}
{'comment': 'He won’t allow hearings. He made that clear with his request for recess appointments and now we know why - none of these people would get through normal channels. The republicans will give him what he wants.', 'created': '2024-11-14 03:43:30', 'submission_id': '1gqn017'}
{'comment': 'I’m a cis straight white man so I’m not going to be personally targeted by any of Trump’s BS (unless “the enemy within” refers to liberals lol) but I don’t want to live in an area where it’s unsafe to be openly yourself and feel the need to protect my friends and potential future family. As long as I’m still in the state, I’m gonna fight and do my part but I’m probably gonna head to Illinois or Minnesota once I finish college', 'created': '2024-11-14 04:34:40', 'submission_id': '1gqn017'}
{'comment': 'I just quit a company that hired a C suite of executives from Indiana, they are the dumbest people I’d ever worked with.', 'created': '2024-11-14 22:05:26', 'submission_id': '1gqn017'}
{'comment': 'The thing is, the legislators don’t care about brain drain. The most educated go off to California or wherever and leave behind people willing to work for anything. The tax dollars of those highly educated workers end up coming back to a place like Indiana through federal programs anyways.', 'created': '2024-11-15 21:35:26', 'submission_id': '1gqn017'}
{'comment': 'Because I live here and I can’t afford out of state tuition?..', 'created': '2024-11-14 20:02:55', 'submission_id': '1gqn017'}
{'comment': 'Do you think sarcasm still works? Honest question.', 'created': '2024-11-14 20:30:55', 'submission_id': '1gqn017'}
{'comment': 'Don’t forget the /s next time for those who aren’t necessarily as quick on the uptake', 'created': '2024-11-14 20:07:27', 'submission_id': '1gqn017'}
{'comment': 'I mean, sure, but what does the cost of gas have to do with tariffs on imports from Mexico, China, or Vietnam? Calling that a tangential connection is extremely generous.', 'created': '2024-11-14 02:06:47', 'submission_id': '1gqn017'}
{'comment': 'I just hope if he does appoint these people via recess appointment they get tired of not getting compensation and fucking quit.', 'created': '2024-11-14 04:42:02', 'submission_id': '1gqn017'}
{'comment': 'Makes sense to me, tuition everywhere is insane!', 'created': '2024-11-14 20:03:31', 'submission_id': '1gqn017'}
{'comment': 'Apparently not. Nuance is a lost art these days.', 'created': '2024-11-14 23:36:56', 'submission_id': '1gqn017'}
{'comment': "> as quick on the uptake\n\nYeah, because sarcasm is great. It's the best way to communicate. Everybody will understand, unless they're idiots.", 'created': '2024-11-14 20:29:35', 'submission_id': '1gqn017'}
{'comment': 'I will from here on out on a routine basis.', 'created': '2024-11-14 23:38:20', 'submission_id': '1gqn017'}
{'comment': 'Nothing. \n\nHowever, that\'s not how these people\'s minds work. When you say "but what about x" in their mind, you are now talking about a separate issue.\n\nAt least, that\'s my experience with them.', 'created': '2024-11-14 02:09:28', 'submission_id': '1gqn017'}
{'comment': 'The tariffs will make the cost of foreign made goods high enough that people will start making the products here. The gas price connection is strait forward. Use less gas (i.e., demand lowers) and the supply goes up (i.e., there’s more available). This will lead to fuel prices falling.\n\nLet’s look at a specific example. We harvest trees in the pacific northwest. We use diesel trains to ship the logs to port, then diesel ships to get the wood to China. China makes bookcases out of the wood with child labor and zero environmental concerns. China ships the bookcases back on ships that burn diesel. The bookcases are shipped to Amazon and WM for us to buy.\n\nIf we stop shipping lumber to China, we cut out a ton of diesel, and manufacture the bookcase here, with decent labor laws and at least some environmental regulations.\n\nThe US has the resources to be self sufficient. What’s the downside?', 'created': '2024-11-14 20:17:15', 'submission_id': '1gqn017'}
{'comment': "In a culture that has voted for deliberate mockery of all that is decent, I'm not sure what nuance is supposed to accomplish.", 'created': '2024-11-15 00:25:56', 'submission_id': '1gqn017'}
{'comment': 'Sarcasm works well', 'created': '2024-11-14 20:34:23', 'submission_id': '1gqn017'}
{'comment': 'Exactly. They can see each topic individually, but fail to connect the dots to see the bigger picture.', 'created': '2024-11-14 02:11:57', 'submission_id': '1gqn017'}
{'comment': 'The primary reason why we began offshoring production of goods and services is because people want cheap consumables. As you correctly stated, China makes bookcases with zero environmental concerns and almost no labor laws. Now imagine how expensive that same bookcase will be if it’s made entirely in the USA given our present-day labor laws and environmental regulations. It would be manifold more expensive. \n\nOf course we can produce everything domestically, but then if we wish to pay the same prices as what we pay for cheap imported goods, then something here is going to give, and that’s most likely going to be environmental and/or labor deregulation, effectively turning the USA into China.', 'created': '2024-11-14 20:38:05', 'submission_id': '1gqn017'}
{'comment': "It makes me feel better. I am unfazed by someone's reaction secure in the fact that I gave an honest display of my opinion. Your reaction is not as important as the exchange.", 'created': '2024-11-15 01:46:13', 'submission_id': '1gqn017'}
{'comment': 'All the time. Never fails.', 'created': '2024-11-14 20:46:47', 'submission_id': '1gqn017'}
{'comment': 'I can’t find too much fault with your take.\n\nIs it ok to exploit Chinese labor, and wreck the environment from afar so we can make stuff cheaper here though?\n\nThere would also be a chance for some cost reduction because shipping raw materials and finished products transoceanic is not cheap.', 'created': '2024-11-14 20:47:00', 'submission_id': '1gqn017'}
{'comment': 'This obviously raises an important question that we, as a consumerist and capitalist society need to ask ourselves. To date, Americans and the West have decided that the answer is that it is better for us to have cheap consumerable goods made in China, knowing the conditions under which said goods are produced in.\n\nThe more pressing question is what will the U.S. government do in response to rising costs if onshoring begins/imports decline? The cost of goods will go up, either due to the sudden drop in supply (loss of imports) or due to the higher cost of domestic production. Consumers will reduce spending accordingly. How will the government react? Will they deregulate our labor laws and environmental standards to help lower costs, or will they let things settle naturally, therefore forcing tens of millions of Americans into desperation and poverty? \n\nEither option, life for the average American will quickly resemble the life of a factory worker in China or Mexico—either our rights and protections are taken from us, or we’re plunged into a recession and poverty rates increase.', 'created': '2024-11-14 21:44:58', 'submission_id': '1gqn017'}
{'comment': 'I absolutely cannot stand government subsidies. That said, if they can be used in the short term; with the ultimate result being allowing the onshoring to be a gentle enough process that we don’t end up in abject poverty, they could be useful.\n\nSpecifically, prices would drop as domestic production increased, and we would still be able to maintain environmental and labor standards (I assume both are going to be eroded, but ultimately even if they are severely curtailed in the name of price reduction, they’ll still be substantially better than the protections in China).', 'created': '2024-11-14 21:54:44', 'submission_id': '1gqn017'}
{'comment': 'You can’t make this shit up? Wake me in 2028 if we still have a country left…', 'created': '2024-11-13 21:47:02', 'submission_id': '1gqmqgr'}
{'comment': 'Congratulations to Vladimir Putin. He played America like a flute.', 'created': '2024-11-13 21:40:51', 'submission_id': '1gqmqgr'}
{'comment': 'Oh great, we now have a Russian agent / asset as our director of National Intelligence.', 'created': '2024-11-13 21:56:23', 'submission_id': '1gqmqgr'}
{'comment': "Wow, she's literally a russian asset", 'created': '2024-11-13 21:46:00', 'submission_id': '1gqmqgr'}
{'comment': 'I will never forgive this country for what they’ve done. They sold us out, plain and simple. Trump voters are NOT patriots. They’re traitors.', 'created': '2024-11-13 22:08:58', 'submission_id': '1gqmqgr'}
{'comment': 'And Gaetz as AG? Just insane!!', 'created': '2024-11-13 21:42:01', 'submission_id': '1gqmqgr'}
{'comment': 'Should not be in any position that has “intelligence” included in the name', 'created': '2024-11-13 21:38:30', 'submission_id': '1gqmqgr'}
{'comment': "Damn, Putin's investment is really paying off.", 'created': '2024-11-13 21:41:54', 'submission_id': '1gqmqgr'}
{'comment': 'A Russian asset.\n\nIs she still for Medicare for All?', 'created': '2024-11-13 21:34:59', 'submission_id': '1gqmqgr'}
{'comment': 'The Onion is probably going to file for Bankruptcy soon.', 'created': '2024-11-13 22:05:23', 'submission_id': '1gqmqgr'}
{'comment': 'A literal Russian asset.\n\nI hope the security agencies set up some honey traps for her and the rest. Catch them all red handed.', 'created': '2024-11-13 22:05:12', 'submission_id': '1gqmqgr'}
{'comment': 'Even Trump voters are pissed I’m laughing so hard right now', 'created': '2024-11-13 21:34:41', 'submission_id': '1gqmqgr'}
{'comment': "Did you see his pick for Defense Secretary? Some Fox News guy. Oh, hes a Veteran, they'll say. I'm a Veteran. It doesn't mean I'm qualified to be Secretary of Defense. This administration is going to be such a CLOWN CAR. \n\nhttps://www.cbsnews.com/news/trump-pete-hegseth-defense-secretary/", 'created': '2024-11-13 21:55:17', 'submission_id': '1gqmqgr'}
{'comment': ' This is a joke right?\n\nTell me this is a joke.', 'created': '2024-11-13 21:53:33', 'submission_id': '1gqmqgr'}
{'comment': "TULSI GABBARD IS A RUSSIAN ASSET.\n\nMATT GAETZ SEX TRAFFICKED A 17 YEAR OLD\n\nFOR CHRIST'S SAKE", 'created': '2024-11-13 22:17:26', 'submission_id': '1gqmqgr'}
{'comment': 'Putin wasn’t available.', 'created': '2024-11-13 21:51:30', 'submission_id': '1gqmqgr'}
{'comment': 'Her full grift is complete!', 'created': '2024-11-13 21:49:08', 'submission_id': '1gqmqgr'}
{'comment': 'Oh nice, he should have just sent the invite directly to the KGB instead.', 'created': '2024-11-13 21:40:18', 'submission_id': '1gqmqgr'}
{'comment': "You know it's very bad when we are depending on Maj Leader Sen. Thune to shut some of this shit down.", 'created': '2024-11-13 21:56:12', 'submission_id': '1gqmqgr'}
{'comment': 'She’s a Russian asset… holy fuck. For their sake, I hope all of our agents are planning to retire asap.', 'created': '2024-11-13 22:00:40', 'submission_id': '1gqmqgr'}
{'comment': 'Oh fun, so everything will leak to Russia, got it.', 'created': '2024-11-13 21:52:03', 'submission_id': '1gqmqgr'}
{'comment': 'What... the fuck..?', 'created': '2024-11-13 21:42:28', 'submission_id': '1gqmqgr'}
{'comment': 'Ok Joe. Your move. Whenever you’re ready to save us from this doomsday, we’re waiting…', 'created': '2024-11-13 21:54:45', 'submission_id': '1gqmqgr'}
{'comment': "Idiot Trump is loading up on sycophantic female cabinet members and advisors.\n\nWhile Melania indicates she won't be having anything to do with him at the White House.\n\nHe better watch out. I don't think Melania likes him much. He could be in real trouble.", 'created': '2024-11-13 21:50:04', 'submission_id': '1gqmqgr'}
{'comment': "Fuck it, lets just let it rip y'all. Give him all the cabinet picks he's asking for. You voted for this, America!", 'created': '2024-11-13 21:58:17', 'submission_id': '1gqmqgr'}
{'comment': 'Feels like I am watching an episode of the “The Man in the High Castle”', 'created': '2024-11-13 22:25:51', 'submission_id': '1gqmqgr'}
{'comment': 'A Russian asset in charge of intelligence', 'created': '2024-11-13 23:34:53', 'submission_id': '1gqmqgr'}
{'comment': 'Appointing someone who is at ground zero for general intelligence to the director of national intelligence. Galaxy brain move….', 'created': '2024-11-13 21:53:55', 'submission_id': '1gqmqgr'}
{'comment': 'We might as well make it a KGB extension. /s', 'created': '2024-11-13 21:56:43', 'submission_id': '1gqmqgr'}
{'comment': 'AG Matt Gaetz may still be the worst pick. But that’s one way to get out of his transporting a minor case…', 'created': '2024-11-13 22:08:53', 'submission_id': '1gqmqgr'}
{'comment': 'How much money did Russia pump into this MAGA propaganda garbage!? What a damn Clown Show! Is everyone in the GOP Congress really ok with Russia having control of this country!? John McCain would be completely pissed off at this.', 'created': '2024-11-13 22:16:59', 'submission_id': '1gqmqgr'}
{'comment': 'Isn’t she a suspected Russian asset? Given how unqualified these appointments are so far I think I might have a shot at one.', 'created': '2024-11-13 22:19:02', 'submission_id': '1gqmqgr'}
{'comment': '', 'created': '2024-11-13 22:31:17', 'submission_id': '1gqmqgr'}
{'comment': 'Is this one of the "obligations" the Russians said Trump owes them?', 'created': '2024-11-13 23:35:00', 'submission_id': '1gqmqgr'}
{'comment': "She doesn't even have any personal intelligence.", 'created': '2024-11-13 21:39:08', 'submission_id': '1gqmqgr'}
{'comment': 'But also; so at least Trump won’t get any real legislation through for at least a year since these appointment hearings will be a total disaster.', 'created': '2024-11-13 22:10:58', 'submission_id': '1gqmqgr'}
{'comment': 'Please keep arms, hands, and legs inside the car at all times. \n\nThis will be a bumpy ride..\n\n🫠😅😭', 'created': '2024-11-13 22:13:05', 'submission_id': '1gqmqgr'}
{'comment': 'That’s rich. She’s a Russian operative. Hang on tight, y’all because I also saw that he has appointed Matt Gaetz as Attorney GENERAL', 'created': '2024-11-13 22:32:50', 'submission_id': '1gqmqgr'}
{'comment': 'You have got to be fucking kidding me. A fucking Russian asset as DNI?\n\nHollywood couldn’t make up anything this ridiculous in 1000 years.', 'created': '2024-11-13 22:33:33', 'submission_id': '1gqmqgr'}
{'comment': 'You have got to be fucking kidding me. A fucking Russian asset as DNI?\n\nHollywood couldn’t make up anything this ridiculous in 1000 years.', 'created': '2024-11-13 22:33:42', 'submission_id': '1gqmqgr'}
{'comment': 'Call me old fashioned but don’t you need to have a bit of it before you’re the director of it?', 'created': '2024-11-13 23:10:33', 'submission_id': '1gqmqgr'}
{'comment': 'We will be a Russian vassel state by 2028. Expect Gabbard to not impede and even openly assist Russian intelligence operations against our country. She will give away our military secret and allow Russians to harm Americans abroad and on U.S. soil. Hopefully, there are enough patriot Republicans to block this nomination.', 'created': '2024-11-13 23:19:57', 'submission_id': '1gqmqgr'}
{'comment': 'The clown car is rapidly filling', 'created': '2024-11-13 23:29:38', 'submission_id': '1gqmqgr'}
{'comment': 'Would security clearance be an issue?\n\nYes I know similar concerns about Jared and Ivanka just got swept aside last time around, but this time it’s for Director of National Intelligence.\n\nPresumably she would not pass as she’s about as obviously a Russian agent as there is…', 'created': '2024-11-13 23:57:21', 'submission_id': '1gqmqgr'}
{'comment': 'Intelligence agencies must be scrambling right now. Those tv and movie thrillers about secret underground psy-ops groups not even visible to the president working behind the scenes for the benefit of America might just be a thing after this week. If they haven’t been already.', 'created': '2024-11-14 00:57:53', 'submission_id': '1gqmqgr'}
{'comment': 'so now we see why she had her tongue in his diaper so deep', 'created': '2024-11-13 22:11:41', 'submission_id': '1gqmqgr'}
{'comment': 'Guess we can get rid of the intelligence part', 'created': '2024-11-13 22:15:56', 'submission_id': '1gqmqgr'}
{'comment': 'Putin pretty much owns us now.', 'created': '2024-11-13 22:52:03', 'submission_id': '1gqmqgr'}
{'comment': 'At this point I don\'t think there\'s any sense in asking God for help anymore, because it seems like he said "LOL nope you guys are on your own" a very long time ago.', 'created': '2024-11-13 22:52:19', 'submission_id': '1gqmqgr'}
{'comment': 'A Russian asset head of national intelligence. wtf is going on', 'created': '2024-11-13 23:20:17', 'submission_id': '1gqmqgr'}
{'comment': 'Great, a Russian asset is our top spy.', 'created': '2024-11-13 23:46:26', 'submission_id': '1gqmqgr'}
{'comment': 'Sad thing is this isn’t even his worst cabinet pick. Matt Gaetz for attorney general takes the cake.', 'created': '2024-11-13 23:49:39', 'submission_id': '1gqmqgr'}
{'comment': 'I thought she defected to Russia', 'created': '2024-11-14 00:06:27', 'submission_id': '1gqmqgr'}
{'comment': 'I guess this is how Trump is repaying the Russians.', 'created': '2024-11-14 01:03:36', 'submission_id': '1gqmqgr'}
{'comment': 'Holy shit.\n\nShe is literally compromised. \n\nA genuine traitor.\n\nI I know military officers worked with her and they are convinced she is compromised as well.\n\nHis appointments have been terrible, but this one fills me with genuine existential dread.', 'created': '2024-11-14 01:18:56', 'submission_id': '1gqmqgr'}
{'comment': 'EXCUSE ME?', 'created': '2024-11-13 21:49:05', 'submission_id': '1gqmqgr'}
{'comment': 'Fsb acquires cia sad day', 'created': '2024-11-13 21:58:07', 'submission_id': '1gqmqgr'}
{'comment': "Once again, the oxymoron's in this incoming administration is absolutely crazy.", 'created': '2024-11-13 22:00:49', 'submission_id': '1gqmqgr'}
{'comment': 'You can’t write parody like this.', 'created': '2024-11-13 22:18:03', 'submission_id': '1gqmqgr'}
{'comment': 'If there are midterms in 2026, we need to wake tf up!!', 'created': '2024-11-13 22:46:33', 'submission_id': '1gqmqgr'}
{'comment': 'He may as well pick Kid Rock to be his next Transportation Secretary and Chachi to be in charge of the FAA, because why not? “Chachi, I’m mad at the airlines. Shut down the FAA forever.” “Yes, mein herr.”', 'created': '2024-11-13 23:10:13', 'submission_id': '1gqmqgr'}
{'comment': "I wonder if he has any place for me. I have absolutely no experience in this so I'd be perfect except I don't kiss his azz", 'created': '2024-11-13 23:32:56', 'submission_id': '1gqmqgr'}
{'comment': "I'm proud of the fact that I never liked her, even when certain pockets of the left thought she was going to be the next big thing", 'created': '2024-11-14 00:00:16', 'submission_id': '1gqmqgr'}
{'comment': 'Russian asset or just an ass? Oh both.', 'created': '2024-11-14 00:35:15', 'submission_id': '1gqmqgr'}
{'comment': 'It is a bad day for the sake of democracy when her nomination is bearable as compared to say… Matt Gaetz for AG…', 'created': '2024-11-14 00:39:26', 'submission_id': '1gqmqgr'}
{'comment': 'Russia has the GDP of Texas. It’s time to fight back.', 'created': '2024-11-14 00:42:59', 'submission_id': '1gqmqgr'}
{'comment': 'At this point just give me that popcorn. Time to watch the shit show.', 'created': '2024-11-14 00:47:28', 'submission_id': '1gqmqgr'}
{'comment': 'Why not simply invite Vladimir Putin and six or seven of his favorite oligarchs into the Pentagon and give them a Super HD camera and five or six shopping carts so they can go on a spree from lab to lab, office to office? In fact, why not just give Putin all the passwords to every Department of Defense mainframe and say, "Have at it?" Learn everything you can. Serve them their favorite beverages as they work. Order pizzas!\n\nWhy not just take all the keys to our tanks, armored vehicles, bomber jets, missile installations, gather them all in a shipping container and sail them over to the nearest Russian port for pick up.\n\nBecause that is what this is.', 'created': '2024-11-14 01:25:24', 'submission_id': '1gqmqgr'}
{'comment': 'It looks like Trump is forming a crime syndicate more than a functioning government!', 'created': '2024-11-14 02:17:36', 'submission_id': '1gqmqgr'}
{'comment': 'So, Russia now has multiple direct pipelines for our intelligence infrastructure.', 'created': '2024-11-14 02:46:25', 'submission_id': '1gqmqgr'}
{'comment': 'Ha Ha Ha Ha. What a train wreck.', 'created': '2024-11-13 22:00:52', 'submission_id': '1gqmqgr'}
{'comment': '.....i have no words.', 'created': '2024-11-13 22:04:55', 'submission_id': '1gqmqgr'}
{'comment': '“Nations biggest moron to lead national intelligence”', 'created': '2024-11-13 22:08:25', 'submission_id': '1gqmqgr'}
{'comment': 'Sounds like there is truth of going after his enemies', 'created': '2024-11-13 22:10:17', 'submission_id': '1gqmqgr'}
{'comment': 'The only good thing about these appointments is that it’s so preposterous that watching the whole administration implode should be interesting. Who do you think will be the first to be fired?', 'created': '2024-11-13 22:18:27', 'submission_id': '1gqmqgr'}
{'comment': 'Trump just announced that he will nominate Matt Gaetz for US Attorney General.', 'created': '2024-11-13 22:23:06', 'submission_id': '1gqmqgr'}
{'comment': '', 'created': '2024-11-13 22:23:27', 'submission_id': '1gqmqgr'}
{'comment': "If you haven't learned the Russian national anthem you better start now...", 'created': '2024-11-13 22:24:02', 'submission_id': '1gqmqgr'}
{'comment': 'Somewhere In Siberia Putin is smiling 🙄', 'created': '2024-11-13 22:27:31', 'submission_id': '1gqmqgr'}
{'comment': '', 'created': '2024-11-13 22:47:18', 'submission_id': '1gqmqgr'}
{'comment': 'Beam me the fuck out of here Scotty... FFS!! Snl has so much fucking material', 'created': '2024-11-13 23:08:50', 'submission_id': '1gqmqgr'}
{'comment': 'May as well just drop all our classified docs in a Drive file and send it directly to Putin.', 'created': '2024-11-13 23:08:51', 'submission_id': '1gqmqgr'}
{'comment': "Hahaha! I told you all she was Trump's and Russia's buddy and you didn't listen. I remember there were quite a few people on here (and who were lefties too) who wanted to vote for her back in 2020. They aren't trying to hide anything anymore.", 'created': '2024-11-13 23:18:02', 'submission_id': '1gqmqgr'}
{'comment': 'And Matt Gaetz as Attorney General. What the hell. 😒', 'created': '2024-11-13 23:18:06', 'submission_id': '1gqmqgr'}
{'comment': 'National Intelligence is the definition of an oxymoron?', 'created': '2024-11-13 23:24:24', 'submission_id': '1gqmqgr'}
{'comment': 'The gifts just keep coming. /s', 'created': '2024-11-13 23:26:32', 'submission_id': '1gqmqgr'}
{'comment': 'The unintelligent appointed to the intelligence\nWow', 'created': '2024-11-13 23:28:25', 'submission_id': '1gqmqgr'}
{'comment': 'National intelligence? You’ve got to be kidding', 'created': '2024-11-13 23:52:18', 'submission_id': '1gqmqgr'}
{'comment': 'Isn’t this an oxymoron ?', 'created': '2024-11-13 23:54:56', 'submission_id': '1gqmqgr'}
{'comment': 'For the love of God, please end this *madness*.', 'created': '2024-11-14 00:03:14', 'submission_id': '1gqmqgr'}
{'comment': 'Ironic.', 'created': '2024-11-14 00:07:34', 'submission_id': '1gqmqgr'}
{'comment': 'Muhahahahaha', 'created': '2024-11-14 00:31:39', 'submission_id': '1gqmqgr'}
{'comment': 'I remember seeing her speak in 2016 with Bernie… dafuq happened to this lady.', 'created': '2024-11-14 00:37:20', 'submission_id': '1gqmqgr'}
{'comment': 'Known Russian asset, Tulsi Gabbard? That’s a lovely idea for someone to lead our national intelligence apparatus. Jesus fucking Christ did Russia ever achieve more than their wildest dreams.', 'created': '2024-11-14 01:24:54', 'submission_id': '1gqmqgr'}
{'comment': 'The Russian asset?', 'created': '2024-11-14 01:26:16', 'submission_id': '1gqmqgr'}
{'comment': "Well, that's an oxymoron.", 'created': '2024-11-14 01:57:47', 'submission_id': '1gqmqgr'}
{'comment': 'Whoever the *worst* possible person is for the job, is who Trump will appoint, every time.', 'created': '2024-11-14 02:00:41', 'submission_id': '1gqmqgr'}
{'comment': 'I’m gonna have to start taking a shot every time Trump nominates someone who would be detrimental to the position at hand', 'created': '2024-11-14 02:03:09', 'submission_id': '1gqmqgr'}
{'comment': "can you imagine how rich they're going to be after they get done selling the rest of our secrets \n\n\nthanks Merrick Garland for not taking anything seriously.", 'created': '2024-11-14 02:03:15', 'submission_id': '1gqmqgr'}
{'comment': 'Only the best people will work for him. /s', 'created': '2024-11-14 02:03:19', 'submission_id': '1gqmqgr'}
{'comment': 'In 2026 he should be in the nut house.', 'created': '2024-11-14 02:15:20', 'submission_id': '1gqmqgr'}
{'comment': 'Assad\'s girlfriend is going to get her ass handed to her again and again and again. I wouldn\'t be surprised if other agencies just outright laughed in her face. \n\nThat, "America is a joke other countries laugh at us", spiel Trump has been saying since the \'80s? Yeah, he\'s going to do whatever he can to make that come true because he\'s hated America for a very long time. He\'s never hid it. He took out a full page ad in the Times in \'87 saying that shit. 🤷🏾\u200d♀️', 'created': '2024-11-14 05:06:17', 'submission_id': '1gqmqgr'}
{'comment': 'Well..at least it’s not Alex Jones', 'created': '2024-11-14 09:50:41', 'submission_id': '1gqmqgr'}
{'comment': 'Why is everyone saying this person is a Russian asset?', 'created': '2024-11-13 23:54:24', 'submission_id': '1gqmqgr'}
{'comment': 'The definitive definition of oxymoron. Webster’s please update your source.', 'created': '2024-11-13 22:07:26', 'submission_id': '1gqmqgr'}
{'comment': 'The people chose this through voting for Trump or not voting.', 'created': '2024-11-13 22:07:27', 'submission_id': '1gqmqgr'}
{'comment': 'I’ll bet he tapped her.', 'created': '2024-11-13 22:26:09', 'submission_id': '1gqmqgr'}
{'comment': 'Genuine question: can some explain tulsi being a Russian asset? Google is no help at this point because of this news.', 'created': '2024-11-13 22:26:39', 'submission_id': '1gqmqgr'}
{'comment': 'Lololololololol', 'created': '2024-11-13 22:30:03', 'submission_id': '1gqmqgr'}
{'comment': '', 'created': '2024-11-13 22:31:50', 'submission_id': '1gqmqgr'}
{'comment': 'I don’t know what’s worse: her being Director of National Intelligence, or MasterGaetz being the fucking Attorney General. 🤦\u200d♀️', 'created': '2024-11-13 22:42:13', 'submission_id': '1gqmqgr'}
{'comment': 'On the bright side, if we use Trumps previous term as an indicator, 75% of these people will be out within months maybe weeks.', 'created': '2024-11-13 22:45:22', 'submission_id': '1gqmqgr'}
{'comment': "Isn't that an oxymoron?", 'created': '2024-11-13 22:48:47', 'submission_id': '1gqmqgr'}
{'comment': 'That’s the definition of irony.', 'created': '2024-11-13 22:50:24', 'submission_id': '1gqmqgr'}
{'comment': "Putin's pick. I hope the intelligence community has enough sense to keep her away from actual intelligence.", 'created': '2024-11-13 22:57:54', 'submission_id': '1gqmqgr'}
{'comment': 'Hahahahahahahaha!', 'created': '2024-11-13 23:14:12', 'submission_id': '1gqmqgr'}
{'comment': 'Bahahahahaa', 'created': '2024-11-13 23:15:06', 'submission_id': '1gqmqgr'}
{'comment': 'Wait. Ain’t that the woman who was at the dinner table with Putin and Flynn?', 'created': '2024-11-13 23:56:23', 'submission_id': '1gqmqgr'}
{'comment': 'Can it be 2016 tulsi plez', 'created': '2024-11-14 00:50:31', 'submission_id': '1gqmqgr'}
{'comment': '[removed]', 'created': '2024-11-14 01:13:44', 'submission_id': '1gqmqgr'}
{'comment': 'More like she’s the new director of national stupidity.', 'created': '2024-11-14 01:21:16', 'submission_id': '1gqmqgr'}
{'comment': 'Russian asset taps Russian asset. \n\nWelp, there goes America. \n\nWelcome Czar Putin.', 'created': '2024-11-14 01:41:42', 'submission_id': '1gqmqgr'}
{'comment': 'Putin rules the world.', 'created': '2024-11-14 02:20:33', 'submission_id': '1gqmqgr'}
{'comment': 'Another clown. This is ridiculous!', 'created': '2024-11-14 03:29:12', 'submission_id': '1gqmqgr'}
{'comment': "Are these nominees the specific obligations Putin is referencing in his discussions on Trump's election win?", 'created': '2024-11-14 04:03:16', 'submission_id': '1gqmqgr'}
{'comment': 'I hate that it was a bunch of gen z white men with their alpaca hair that tipped the scales this election lol', 'created': '2024-11-14 04:50:42', 'submission_id': '1gqmqgr'}
{'comment': "You know what's better than having a Russian asset in the White House?", 'created': '2024-11-14 05:52:04', 'submission_id': '1gqmqgr'}
{'comment': 'Perfect time for China to make a move on Taiwan.', 'created': '2024-11-14 06:05:57', 'submission_id': '1gqmqgr'}
{'comment': 'What job is nunes going to get?', 'created': '2024-11-14 06:16:31', 'submission_id': '1gqmqgr'}
{'comment': "\n\nThis can't be real", 'created': '2024-11-14 07:29:16', 'submission_id': '1gqmqgr'}
{'comment': 'To be fair, neither Mata Hari nor the Rosenbergs were available.', 'created': '2024-11-14 12:15:23', 'submission_id': '1gqmqgr'}
{'comment': 'Oh my gooooood', 'created': '2024-11-14 14:23:01', 'submission_id': '1gqmqgr'}
{'comment': 'WAKE ME UP, WHEN NOVEMBER 7th 2028 ENDS', 'created': '2024-11-14 15:07:51', 'submission_id': '1gqmqgr'}
{'comment': 'What are the odds of a Thune-led senate not confirming her?', 'created': '2024-11-14 17:50:26', 'submission_id': '1gqmqgr'}
{'comment': 'Making Russia Great Again with more spies', 'created': '2024-11-14 17:58:45', 'submission_id': '1gqmqgr'}
{'comment': 'Fairs gotta give it to the Russians they finally took down America', 'created': '2024-11-14 21:18:30', 'submission_id': '1gqmqgr'}
{'comment': '[removed]', 'created': '2024-11-14 21:22:10', 'submission_id': '1gqmqgr'}
{'comment': 'Im going to be honest here she is a better pick than the rest. I would have even had more faith in it had he picked her for SecDef instead of that guy.\n\nIm seriously hoping the GOP in congress remember secretary of Defense is not a position to give to just anyone, our very nation and its security both within and without depend on it.\n\nAnd also remember our nation is at stake, sometimes you cant go along for the ride and not say something.', 'created': '2024-11-13 22:59:05', 'submission_id': '1gqmqgr'}
{'comment': 'She’s literally a Russian spy. She loves Putin ffs 🤦\u200d♂️', 'created': '2024-11-14 03:26:07', 'submission_id': '1gqmqgr'}
{'comment': '2026- we have to vote blue in the midterms', 'created': '2024-11-13 22:10:20', 'submission_id': '1gqmqgr'}
{'comment': 'We won’t. Don’t sleep.', 'created': '2024-11-13 22:05:09', 'submission_id': '1gqmqgr'}
{'comment': "I'll wake you up in 2026 - midterms.\n\nThen I'll wake you up in 2028.", 'created': '2024-11-13 22:21:28', 'submission_id': '1gqmqgr'}
{'comment': 'wake me up when idiocracy ends', 'created': '2024-11-13 22:39:35', 'submission_id': '1gqmqgr'}
{'comment': 'Sell US Savings bonds SHORT !', 'created': '2024-11-13 23:25:02', 'submission_id': '1gqmqgr'}
{'comment': "I'm worried there won't be another election :(", 'created': '2024-11-13 23:28:27', 'submission_id': '1gqmqgr'}
{'comment': 'Oh we won’t. None of these picks have any experience or competence which means Republicans no longer think they’ll ever have to work to gain votes, ever again.', 'created': '2024-11-14 01:01:12', 'submission_id': '1gqmqgr'}
{'comment': 'You know what\'s so wild? Back in the late 00s I believe it was, I specifically remember an article that was discussing the changing ideologies of the US. Long story short, the author of the article, who was something like a PolSci researcher or historian (basically somebody who knew their shit), predicted that by the year 2025 it was highly likely that the US would be dissolved into individual regions and countries because of how far apart the left and right were becoming.\n\nI remember reading the article back then and thinking "man, that\'s so absurd." Apparently not...', 'created': '2024-11-14 14:50:44', 'submission_id': '1gqmqgr'}
{'comment': "The game isn't even over. We're in the middlegame right now, but it really does feel like we've lost both our Knights, a Rook, and both Bishops.", 'created': '2024-11-13 21:55:02', 'submission_id': '1gqmqgr'}
{'comment': "When the news said that Putin had called Trump the day after the election, my first comment was that he'd have called sooner but was laughing too hard.", 'created': '2024-11-13 22:13:06', 'submission_id': '1gqmqgr'}
{'comment': 'Revenge for and undoing of the 90s.', 'created': '2024-11-13 21:49:23', 'submission_id': '1gqmqgr'}
{'comment': 'Donald is too stupid and vain to realize it.', 'created': '2024-11-13 22:05:01', 'submission_id': '1gqmqgr'}
{'comment': 'Exactly..', 'created': '2024-11-13 22:03:10', 'submission_id': '1gqmqgr'}
{'comment': '', 'created': '2024-11-13 22:48:19', 'submission_id': '1gqmqgr'}
{'comment': 'Americans played themselves, let’s be real.', 'created': '2024-11-14 01:29:53', 'submission_id': '1gqmqgr'}
{'comment': 'Putin is still playing us.\n\nTrump-and-Thiel should be compared to Putin-and-Prigozhin.\n\nTrump is no Putin.\n\nThiel is quite a piece of work.', 'created': '2024-11-14 03:15:09', 'submission_id': '1gqmqgr'}
{'comment': 'It’s halftime in America and we’re down but not out yet! Hopefully this is a “28-3” situation', 'created': '2024-11-14 04:21:39', 'submission_id': '1gqmqgr'}
{'comment': '*Multiple', 'created': '2024-11-13 23:47:33', 'submission_id': '1gqmqgr'}
{'comment': 'So is Trump. And Musk. And Vance probably. The entire GOP is “Oops, All Assets!”', 'created': '2024-11-13 21:49:29', 'submission_id': '1gqmqgr'}
{'comment': None, 'created': '2024-11-13 23:03:11', 'submission_id': '1gqmqgr'}
{'comment': 'Hillary Clinton said this a few years ago. I tend to think Secretary Clinton may have had some inside info. This is fucking nuts.', 'created': '2024-11-14 02:10:09', 'submission_id': '1gqmqgr'}
{'comment': 'Wow! Well, maga said they’d take Russia over dems. So looks like they’re about to get their wish. Let’s see if they’re ready for it!', 'created': '2024-11-14 05:35:50', 'submission_id': '1gqmqgr'}
{'comment': "I keep seeing this but outside of Hillary saying this in 2016 is there any concrete evidence to support this? Evidence that doesn't include other democrats talking about how moderate or right leaning she may be that goes against their bias.", 'created': '2024-11-14 16:17:26', 'submission_id': '1gqmqgr'}
{'comment': "> They’re traitors.\n\nThey're certifiable morons. I swear some people should not be allowed to vote. Never thought I would type those words but here we are.", 'created': '2024-11-14 00:02:23', 'submission_id': '1gqmqgr'}
{'comment': 'People that didn’t vote: whoops. I’m gonna pretend I voted.', 'created': '2024-11-14 00:37:26', 'submission_id': '1gqmqgr'}
{'comment': 'Tony Soprano voters.\n\nInflation.\n\nClass envy.\n\nThey all have battered wives buried at golf courses.', 'created': '2024-11-14 01:26:25', 'submission_id': '1gqmqgr'}
{'comment': "Really? \n\nI can't wait to see where Trump puts MTG.", 'created': '2024-11-13 21:42:37', 'submission_id': '1gqmqgr'}
{'comment': 'are any of these picks from House of Representatives in competitive districts? Dems may be able to pick up one more seat', 'created': '2024-11-13 21:47:57', 'submission_id': '1gqmqgr'}
{'comment': 'Who on earth would be more qualified for this position than a Pedo like Gaetz. I wouldn’t let this guy run an ice cream stand regardless of party. What a damn clown show. How much money did Russia pump into this MAGA propaganda horse crap.', 'created': '2024-11-13 22:14:01', 'submission_id': '1gqmqgr'}
{'comment': 'Really? I’ve been wondering where Gaetz has been', 'created': '2024-11-13 22:32:35', 'submission_id': '1gqmqgr'}
{'comment': 'That one I’m really interested to see how he will get past congress because even republicans hate him and they only need 4 to stop him. Trump isn’t going to throw out the rule book this early, so Gaetz *probably* won’t be AG. Is Trump* smart enough to throw out who he doesn’t really want, knowing everyone will object, so then his actual pick seems reasonable? 🤔\n\n\n*Trump’s puppeteers\n\n\nAlso, I guess you don’t have to *be* intelligent to be the *director* of national intelligence…', 'created': '2024-11-14 02:10:00', 'submission_id': '1gqmqgr'}
{'comment': 'Does the AG get to rape more? He’s probably thrilled.', 'created': '2024-11-14 02:59:45', 'submission_id': '1gqmqgr'}
{'comment': "She's a direct pipeline to The Kremlin.", 'created': '2024-11-13 21:51:40', 'submission_id': '1gqmqgr'}
{'comment': 'She stands for nothing', 'created': '2024-11-13 23:20:10', 'submission_id': '1gqmqgr'}
{'comment': 'Even if she was, that doesn’t make her worth even giving the time of day relative to everything else.', 'created': '2024-11-14 00:03:24', 'submission_id': '1gqmqgr'}
{'comment': 'And report them to whom?', 'created': '2024-11-13 22:43:57', 'submission_id': '1gqmqgr'}
{'comment': 'Really? I thought they liked Gabbard. I even saw one of them say that she should have been picked as Secretary of Defense instead of that Fox News Host.', 'created': '2024-11-13 21:39:43', 'submission_id': '1gqmqgr'}
{'comment': "Trump voters aren't smart enough to be pissed, and if you're laughing hard at anything right now you're fucking up.", 'created': '2024-11-13 23:10:33', 'submission_id': '1gqmqgr'}
{'comment': 'No, they aren’t', 'created': '2024-11-13 22:33:39', 'submission_id': '1gqmqgr'}
{'comment': "It's actually so bad that it gives me hope. Don't you remember last time how many things didn't happen because the idiots in charge had no idea to actually go about doing the things that they wanted to do.", 'created': '2024-11-13 22:27:40', 'submission_id': '1gqmqgr'}
{'comment': 'He sounds bitter AF that he never made the cut to flag officer.', 'created': '2024-11-13 22:06:44', 'submission_id': '1gqmqgr'}
{'comment': 'That guy is the biggest pos on the planet next to Trump himself. He’s a robotic mouthpiece for the MAGA Republican Party and literally has a used Trump diaper that he sniffs every night before he goes to sleep. Those were the qualifications that impressed Trump the most.', 'created': '2024-11-14 00:31:20', 'submission_id': '1gqmqgr'}
{'comment': 'It is, and the jokes on us. Trump is laughing at us.', 'created': '2024-11-13 22:06:41', 'submission_id': '1gqmqgr'}
{'comment': 'Well, I guess that’s to be expected when the dude picking them is a convicted sex offender. Fucking MAGA, I can’t wait until leopards eat their faces.', 'created': '2024-11-14 02:14:43', 'submission_id': '1gqmqgr'}
{'comment': 'And his Defense pick cheated on two of his wives. It’s like trump picks people that reflect aspects of his criminality/moral bankruptcy.', 'created': '2024-11-14 06:42:28', 'submission_id': '1gqmqgr'}
{'comment': 'Our new “efficiency tsars” first recommendation will be to give Putin his own CIA login and set every .gov email to automatically cc the Kremlin to save everyone a bunch of time.', 'created': '2024-11-13 22:09:43', 'submission_id': '1gqmqgr'}
{'comment': 'KGB/GRU probably originated it.', 'created': '2024-11-13 22:44:13', 'submission_id': '1gqmqgr'}
{'comment': 'That would probably be awful for our national security.', 'created': '2024-11-14 03:55:05', 'submission_id': '1gqmqgr'}
{'comment': 'Can you imagine if he became the first sitting President to go through a divorce while in office?', 'created': '2024-11-13 21:53:07', 'submission_id': '1gqmqgr'}
{'comment': 'They control all three branches of government.', 'created': '2024-11-14 03:57:09', 'submission_id': '1gqmqgr'}
{'comment': 'I dunno. A Russian asset overseeing your intelligence agencies? That’s pretty bad imo', 'created': '2024-11-13 23:53:07', 'submission_id': '1gqmqgr'}
{'comment': 'The morons who refused to vote for Kamala will genuinely wonder why they don’t have elections anymore, and why the Republican who stole the congressional seat in their district won’t help them with anything.', 'created': '2024-11-13 23:12:49', 'submission_id': '1gqmqgr'}
{'comment': "Is your allegiance to Putin? You're in!", 'created': '2024-11-13 23:36:03', 'submission_id': '1gqmqgr'}
{'comment': '\n\nWay ahead of you', 'created': '2024-11-14 02:28:23', 'submission_id': '1gqmqgr'}
{'comment': 'Who says they haven’t already? I mean, boxes of top secret docs were in trump’s bathroom. SMGDH', 'created': '2024-11-14 06:49:15', 'submission_id': '1gqmqgr'}
{'comment': 'She was always this way\n..just hiding it', 'created': '2024-11-14 01:17:58', 'submission_id': '1gqmqgr'}
{'comment': "No, don't you need your liver.", 'created': '2024-11-14 03:05:20', 'submission_id': '1gqmqgr'}
{'comment': 'Oh, that kind of shot.\n\nFor a moment, I thought...\n\nNever mind.', 'created': '2024-11-14 04:00:56', 'submission_id': '1gqmqgr'}
{'comment': 'Lmao. Him plus MTG would be the ultimate troll package.', 'created': '2024-11-14 10:34:54', 'submission_id': '1gqmqgr'}
{'comment': 'https://www.cnn.com/2019/10/18/politics/hillary-clinton-tulsi-gabbard/index.html\n\nhttps://www.telegraph.co.uk/us/politics/2024/11/13/tulsi-gabbard-trump-intelligence-chief-russian-conspiracy/', 'created': '2024-11-14 01:21:59', 'submission_id': '1gqmqgr'}
{'comment': 'What makes you think she was good.back then?', 'created': '2024-11-14 01:17:28', 'submission_id': '1gqmqgr'}
{'comment': "There isn't a guarantee that the date will have any significance.\n.", 'created': '2024-11-14 16:56:44', 'submission_id': '1gqmqgr'}
{'comment': 'No chance. Trump.is 100% in control of what they eat, drink, and the brand of toilet paper they use to wipe their asses', 'created': '2024-11-14 18:12:18', 'submission_id': '1gqmqgr'}
{'comment': 'Nah. Not dead yet. We are still here dammit. There will be some tough days willing am not throwing in the towel yet.', 'created': '2024-11-14 23:07:36', 'submission_id': '1gqmqgr'}
{'comment': 'I’m starting to wonder if we will have midterms & I wish I was joking 🙃', 'created': '2024-11-13 22:11:21', 'submission_id': '1gqmqgr'}
{'comment': 'Voting isn’t enough. We all have to mobilize, knock on doors, make phone calls, and engage the community again. So much work to do. So much.', 'created': '2024-11-13 22:13:09', 'submission_id': '1gqmqgr'}
{'comment': 'Dems need to be working class first. Bernie was right. He’s always been right.', 'created': '2024-11-13 23:24:35', 'submission_id': '1gqmqgr'}
{'comment': 'It won’t matter. Putting a Russian stooge like Gabbard as the Director of National Intelligence is akin to putting Putin in charge. \n\nWe are cooled.', 'created': '2024-11-14 01:20:50', 'submission_id': '1gqmqgr'}
{'comment': 'We had to vote blue this time. Maybe there’s just not enough blue out there.', 'created': '2024-11-14 01:26:35', 'submission_id': '1gqmqgr'}
{'comment': "It's cute that you think we're going to get to vote again!", 'created': '2024-11-14 12:17:36', 'submission_id': '1gqmqgr'}
{'comment': 'Was there any other option?', 'created': '2024-11-14 14:51:00', 'submission_id': '1gqmqgr'}
{'comment': 'So stay woke?', 'created': '2024-11-13 22:36:17', 'submission_id': '1gqmqgr'}
{'comment': 'So stay woke?', 'created': '2024-11-13 22:36:17', 'submission_id': '1gqmqgr'}
{'comment': 'DONT WOKE OPEN INSIDE', 'created': '2024-11-13 23:46:46', 'submission_id': '1gqmqgr'}
{'comment': '…before you go-go', 'created': '2024-11-13 23:37:14', 'submission_id': '1gqmqgr'}
{'comment': 'You might be sleeping awhile.', 'created': '2024-11-14 02:57:35', 'submission_id': '1gqmqgr'}
{'comment': "The pigeon just shit all over the board and is strutting like they're the greatest ever.", 'created': '2024-11-13 22:18:46', 'submission_id': '1gqmqgr'}
{'comment': "Nothing is over. But at some point we need to fight back. America is just going to lay down and let these guys take over the country and ruin it as they milk it like a cow? That's how it looks at the moment. A guy who likes to fuck underage girls for the AG, a Russian asset for National Intelligence, and a Faux News goon for SecDef. Simply incredible.", 'created': '2024-11-13 22:02:31', 'submission_id': '1gqmqgr'}
{'comment': 'God save the queen', 'created': '2024-11-13 22:04:47', 'submission_id': '1gqmqgr'}
{'comment': 'Trump is going to do a draft send all the boys who won’t kill Americans to Russian and turn the rest on us. Ukraine has no hope of survival with the might of the US military being directed by Putin, they need to act as quickly and aggressively as possible, so does Biden quite frankly… he has the power to end this all before it starts but I doubt he’d ever make the call no matter how much it needs to be made.', 'created': '2024-11-13 22:09:02', 'submission_id': '1gqmqgr'}
{'comment': '', 'created': '2024-11-13 23:38:29', 'submission_id': '1gqmqgr'}
{'comment': 'They won the cold war decades after we thought it was over.', 'created': '2024-11-13 21:50:09', 'submission_id': '1gqmqgr'}
{'comment': 'You make it sound like he would be against it. Why? He owes his reelection to Putin and their massive misinformation campaign.', 'created': '2024-11-13 22:18:46', 'submission_id': '1gqmqgr'}
{'comment': 'The stupid ones are the most dangerous because they can be manipulated left and right easily', 'created': '2024-11-14 01:13:01', 'submission_id': '1gqmqgr'}
{'comment': 'And Mike Johnson', 'created': '2024-11-13 22:29:41', 'submission_id': '1gqmqgr'}
{'comment': 'People will say this is a crazy take, but you’re absolutely right. Putin played the long game. Evangelical Christian’s played the long game. And now both are in power.', 'created': '2024-11-14 03:52:11', 'submission_id': '1gqmqgr'}
{'comment': 'if you look at her twitter feed, she was repeating all the same stuff Jackson Hinkle / TASS / Russian diplomats repeat', 'created': '2024-11-14 18:31:50', 'submission_id': '1gqmqgr'}
{'comment': 'I said that 20 years ago and people called me an idiot', 'created': '2024-11-14 04:57:02', 'submission_id': '1gqmqgr'}
{'comment': 'The ones that have convinced themselves they are making a statement by not voting or voting 3rd party are truly special.', 'created': '2024-11-14 06:22:29', 'submission_id': '1gqmqgr'}
{'comment': 'Administrator of NASA. Gotta get to the bottom of those space lasers.', 'created': '2024-11-13 21:57:05', 'submission_id': '1gqmqgr'}
{'comment': 'I think she’s heading the new concept of a plan for healthcare. 🙄', 'created': '2024-11-13 21:51:18', 'submission_id': '1gqmqgr'}
{'comment': 'I\'m of the opinion that Trump likes MTG for her loyalty but likely doesn\'t want to work anywhere near her lmao. My guess is he keeps her in Congress under the guise of "Uh yeah Marjorie, we still need you in the house"..... lol', 'created': '2024-11-13 22:05:44', 'submission_id': '1gqmqgr'}
{'comment': 'in his bed', 'created': '2024-11-13 21:46:37', 'submission_id': '1gqmqgr'}
{'comment': 'Unless it’s a situation where the governor can choose who replaces them', 'created': '2024-11-13 22:32:46', 'submission_id': '1gqmqgr'}
{'comment': 'Unless it’s a situation where the governor can choose who replaces them', 'created': '2024-11-13 22:32:46', 'submission_id': '1gqmqgr'}
{'comment': 'I guess Russia runs the country now.', 'created': '2024-11-13 22:06:31', 'submission_id': '1gqmqgr'}
{'comment': 'Can you elaborate? Asking because so much shit has happened over the Trump years that I can barely keep up.\n\nEdit: oh fuck … I’m reading the article and oh fuck!', 'created': '2024-11-13 22:40:52', 'submission_id': '1gqmqgr'}
{'comment': 'Das Sputum', 'created': '2024-11-13 21:59:44', 'submission_id': '1gqmqgr'}
{'comment': 'And falls for everything.', 'created': '2024-11-14 01:27:34', 'submission_id': '1gqmqgr'}
{'comment': 'Dexter', 'created': '2024-11-13 23:21:20', 'submission_id': '1gqmqgr'}
{'comment': '~~The Washington Post~~\n\n~~The LA Times~~\n\n~~The Wall Street Journal~~\n\nNYT, SF Chronicle, Chicago Tribune or Boston Globe.', 'created': '2024-11-13 23:38:41', 'submission_id': '1gqmqgr'}
{'comment': 'Eh I dunno, Lolol\n\nGood point', 'created': '2024-11-13 23:16:33', 'submission_id': '1gqmqgr'}
{'comment': 'It depends on which kind of Trump voter you are talking about. He\'s lied so much that multiple different groups think he stands for multiple different things. \n\nFor example, some people think he\'s super "pro-peace" isolationist who will avoid conflict while others think he\'s a war hawk who will punish Iran and China. \n\nSince he lies all the time people can just project their beliefs onto him and pretend that\'s what he actually stands for.', 'created': '2024-11-13 22:04:12', 'submission_id': '1gqmqgr'}
{'comment': "They're only saying that because they're grasping at straws in an attempt to make these choices sound credible, otherwise they'd have to start coming around to the fact that they got conned.", 'created': '2024-11-13 22:02:13', 'submission_id': '1gqmqgr'}
{'comment': 'They liked that she owned the libs. But agree she’s problematic', 'created': '2024-11-13 22:07:04', 'submission_id': '1gqmqgr'}
{'comment': 'This ^ times one million.', 'created': '2024-11-13 22:31:25', 'submission_id': '1gqmqgr'}
{'comment': 'This ^ times one million.', 'created': '2024-11-13 22:31:25', 'submission_id': '1gqmqgr'}
{'comment': "They'll have overseer Elon checking that they work day and night.", 'created': '2024-11-13 23:13:31', 'submission_id': '1gqmqgr'}
{'comment': 'God, I hope you’re right.', 'created': '2024-11-14 03:53:50', 'submission_id': '1gqmqgr'}
{'comment': "> Trump is laughing at us.\n\nPutin is laughing at us. Trump thinks he's the shit right now.", 'created': '2024-11-14 00:04:06', 'submission_id': '1gqmqgr'}
{'comment': "True.\n\nI know a lot of people feel that way, and I understand the sentiments. I am not rooting for anyone to get hurt by this clown's Russia ambitions, especially since it will end up hurting everyone. \n\nI blame the Senate R's in 2020 for not following the Constitution by impeaching and removing this insurrectionist.", 'created': '2024-11-14 07:01:13', 'submission_id': '1gqmqgr'}
{'comment': 'Yeah, I don’t think we’ll actually have any national security soon. I expect a decided uptick in terrorist attacks starting next summer or so.', 'created': '2024-11-14 04:03:23', 'submission_id': '1gqmqgr'}
{'comment': "That's like the most easily imaginable thing in the last 8 years.", 'created': '2024-11-13 21:57:47', 'submission_id': '1gqmqgr'}
{'comment': "she's waiting for him to keel over. soon I hope.", 'created': '2024-11-13 22:07:33', 'submission_id': '1gqmqgr'}
{'comment': 'Pretty sure they’re getting rid of divorce, so might not matter.', 'created': '2024-11-14 14:18:42', 'submission_id': '1gqmqgr'}
{'comment': 'They’re both 💩', 'created': '2024-11-13 23:57:48', 'submission_id': '1gqmqgr'}
{'comment': "Well. It's not. So I guess no cabinet for me", 'created': '2024-11-14 01:19:49', 'submission_id': '1gqmqgr'}
{'comment': 'Fair! It was better said than done…', 'created': '2024-11-14 03:41:13', 'submission_id': '1gqmqgr'}
{'comment': 'She had more progressive views before selling out.', 'created': '2024-11-14 02:52:39', 'submission_id': '1gqmqgr'}
{'comment': 'I’d like to see someone try…', 'created': '2024-11-14 17:20:12', 'submission_id': '1gqmqgr'}
{'comment': 'Our only hope is to somehow flip all these now vacant house seats in the special elections.', 'created': '2024-11-13 22:13:48', 'submission_id': '1gqmqgr'}
{'comment': 'Me too my friend, me too', 'created': '2024-11-13 22:11:58', 'submission_id': '1gqmqgr'}
{'comment': 'No matter how much bad shit trump will do, there will be elections in 2026 and 2028. Republicans do not have anywhere near the numbers they need for constitutional amendments', 'created': '2024-11-13 22:23:22', 'submission_id': '1gqmqgr'}
{'comment': 'If we do, we’ll be voting on Twitter… And we can surely trust that.', 'created': '2024-11-13 22:42:26', 'submission_id': '1gqmqgr'}
{'comment': 'We should, I think. One silver lining is that these idiots are going to fight each other for years.', 'created': '2024-11-14 00:24:16', 'submission_id': '1gqmqgr'}
{'comment': 'This is also my concern.', 'created': '2024-11-14 01:50:17', 'submission_id': '1gqmqgr'}
{'comment': 'Easier to strike and boycott if you’re asleep! If midterms get canceled then we all take a nap.', 'created': '2024-11-14 03:46:18', 'submission_id': '1gqmqgr'}
{'comment': 'I agree that he has every intention of not having elections again.', 'created': '2024-11-14 07:07:21', 'submission_id': '1gqmqgr'}
{'comment': "Yes, you're absolutely right!💙", 'created': '2024-11-13 22:19:06', 'submission_id': '1gqmqgr'}
{'comment': 'Tulsi Effing Gabbard.\n\nSenate confirmation ??? Yeah, O.K.', 'created': '2024-11-14 03:19:39', 'submission_id': '1gqmqgr'}
{'comment': 'Literally', 'created': '2024-11-13 23:55:42', 'submission_id': '1gqmqgr'}
{'comment': 'Absolutely maybe even more woken', 'created': '2024-11-13 23:23:56', 'submission_id': '1gqmqgr'}
{'comment': "> at some point we need to fight back\n\nWe had that women's march with the pussy hats the first time he was elected. What happened to that? We just threw in the towel this time around?", 'created': '2024-11-14 00:01:09', 'submission_id': '1gqmqgr'}
{'comment': 'Can we please start a fucking initiative for democrats to start taking police jobs, military, gun ownership etc. FUCKING PLEASE.', 'created': '2024-11-14 00:40:28', 'submission_id': '1gqmqgr'}
{'comment': 'Right, I agree, what do we do? I’m pissed off at both my RI Senators. They have no fight, leadership. Maybe Sheldon Whitehouse had a little.', 'created': '2024-11-14 00:08:26', 'submission_id': '1gqmqgr'}
{'comment': 'America (the voters), voted for this. \n\nNothing was hidden.', 'created': '2024-11-14 04:56:02', 'submission_id': '1gqmqgr'}
{'comment': 'Biden needs to do the gamer move and declare war on Canada, then immediately surrender, allowing Canada to legally install a provisional government until the country can get back on its feet.\n\nOh, and fascists go to tribunals.', 'created': '2024-11-14 00:59:36', 'submission_id': '1gqmqgr'}
{'comment': 'I have a 17 yo son. I’m so scared he will reinstate draft.', 'created': '2024-11-14 00:09:58', 'submission_id': '1gqmqgr'}
{'comment': 'If Biden took steps to end this - civil war. If he doesn’t and then Trump does half the shit they’re gearing up to do - civil war. I think we’re fucked six ways to Sunday.', 'created': '2024-11-13 23:42:31', 'submission_id': '1gqmqgr'}
{'comment': 'They never stopped fighting.', 'created': '2024-11-13 21:50:44', 'submission_id': '1gqmqgr'}
{'comment': "The Foundations of Geopolitics was written by Putins teacher. Check it out. Everything that had happened is in that book. Ukraine and political bifurcation in the United States, the weakening of Europe, it's all in there.", 'created': '2024-11-13 21:57:47', 'submission_id': '1gqmqgr'}
{'comment': 'The Cold War ended, but then the Cyber War started, and we never fought back. Instead, the party of Ronald Regan decided to take the money.', 'created': '2024-11-13 22:00:10', 'submission_id': '1gqmqgr'}
{'comment': 'He doesn’t want to look like a puppet president, he loves the strongman aesthetic', 'created': '2024-11-14 00:02:39', 'submission_id': '1gqmqgr'}
{'comment': 'And we have to sit and watch it get worse before enough people will hopefully wake up.', 'created': '2024-11-14 06:24:04', 'submission_id': '1gqmqgr'}
{'comment': 'From 2016? Or currently. Are you talking about what she posts or her comments? I just scrolled through the past few months and didn’t see any Russian stuff.', 'created': '2024-11-15 14:41:06', 'submission_id': '1gqmqgr'}
{'comment': "I'd legit rather have her be the head of NASA than anything to do with governing our country. She can sit on her butt and do nothing but take a paycheck as far as I care if it takes her out of an actual role in my life.", 'created': '2024-11-14 00:34:42', 'submission_id': '1gqmqgr'}
{'comment': "I agree. The problem is she kind of does look like a troll or cabbage patch doll face. \n\nTrump doesn't like ugly women.", 'created': '2024-11-13 22:07:25', 'submission_id': '1gqmqgr'}
{'comment': '🤮🤮🤮', 'created': '2024-11-13 21:49:41', 'submission_id': '1gqmqgr'}
{'comment': "Then I take it back. I don't want to see where Trump puts MTG. lol", 'created': '2024-11-13 21:55:08', 'submission_id': '1gqmqgr'}
{'comment': '', 'created': '2024-11-13 22:46:21', 'submission_id': '1gqmqgr'}
{'comment': "After he's done with Loomer", 'created': '2024-11-13 22:48:11', 'submission_id': '1gqmqgr'}
{'comment': 'This may be the only option left', 'created': '2024-11-14 04:58:03', 'submission_id': '1gqmqgr'}
{'comment': 'And they will be called “fake news”…. 😢', 'created': '2024-11-14 06:23:13', 'submission_id': '1gqmqgr'}
{'comment': 'Because that has worked so well so far', 'created': '2024-11-14 04:58:27', 'submission_id': '1gqmqgr'}
{'comment': 'lol sounds like all the branches of Christianity. Which….that’s also all of them so whatever', 'created': '2024-11-13 22:31:42', 'submission_id': '1gqmqgr'}
{'comment': 'lol sounds like all the branches of Christianity. Which….that’s also all of them so whatever', 'created': '2024-11-13 22:31:42', 'submission_id': '1gqmqgr'}
{'comment': 'I foresee Musk pissing them all off and someone whispers in Trump’s ear that Musk thinks HE is the President and Trump is his puppet. Musk won’t last 10 Saramuccis.', 'created': '2024-11-14 02:13:11', 'submission_id': '1gqmqgr'}
{'comment': 'My guess is the prenup is a contractual obligation to remain married to him until he croaks or she gets bupkis.', 'created': '2024-11-14 06:44:17', 'submission_id': '1gqmqgr'}
{'comment': 'Suppose it was a cover all along', 'created': '2024-11-14 03:33:38', 'submission_id': '1gqmqgr'}
{'comment': 'The governors will appoint them. Trump will make sure of that.', 'created': '2024-11-13 23:02:53', 'submission_id': '1gqmqgr'}
{'comment': 'If the scotus isn’t going to stop Trump, and his EOs can rid the military of generals that stand up to him, and many in Congress also won’t stand up to him, he very easily could stop elections.', 'created': '2024-11-13 22:52:21', 'submission_id': '1gqmqgr'}
{'comment': 'Executive orders and SCOTUS', 'created': '2024-11-13 22:46:25', 'submission_id': '1gqmqgr'}
{'comment': 'True, but the rules don’t matter anymore and they’ll just do it anyway. Who’s going to stop them?', 'created': '2024-11-13 22:48:12', 'submission_id': '1gqmqgr'}
{'comment': "If Trump fully captures the military leadership and is willing to use it, we've had our last election. Understand how these things work please.", 'created': '2024-11-14 01:27:36', 'submission_id': '1gqmqgr'}
{'comment': 'lol you assume they follow the constitution', 'created': '2024-11-14 06:03:33', 'submission_id': '1gqmqgr'}
{'comment': 'A whimper, not a bang.', 'created': '2024-11-14 02:50:39', 'submission_id': '1gqmqgr'}
{'comment': "The problem the first time around is that his cabinet rounded the sharp edges and the pandemic seemingly scrambled peoples minds. The goal this time around is to make sure anyone in who voted for that piece of shit feels pain. The thing we learned in 2024 is that the American public is too stupid to be warned of the downsides of Trumpism -- they need to touch the hot stove so they learn.\n\nSo no we're not doing resistance hats and marches or even stopping republicans from passing horrific legislation. We're just pointing out that this is what happens when you elect republicans. We're reminding them again and again that this is the republican platform. \n\nIf we want to move beyond this cycle of stupidity, we have to let the idiots that voted for him get what they voted for good and hard. If we do it right, it will only hurt for 2 years. If we screw this up, he will never leave.", 'created': '2024-11-14 04:49:28', 'submission_id': '1gqmqgr'}
{'comment': 'Everyone’s tired', 'created': '2024-11-14 06:16:49', 'submission_id': '1gqmqgr'}
{'comment': "You think they would hire them? I guess it depends on the police force we're talking about. Police forces differ pretty radically by ZIP code. If your police force is a part of the community that actually does try to protect and serve that community it's probably fairly decent. But the right wing prefers militarized police forces that are prepared to suppress the population at a moment's notice. That's what Warrior training is for, it dehumanizes the public.", 'created': '2024-11-14 03:44:04', 'submission_id': '1gqmqgr'}
{'comment': "On Fox News everything is hidden. On Fox News Donald Trump is an innocent hero. His 34 felonies are just made up charges, an unprecedented level of political persecution based on nothing. Which is why Trump will be perfectly justified when he arrests and imprisons Jack Smith for leading that illegal witch hunt against him. Also, there is no such thing as climate change. And all those stories about pregnant women having problems are just lies made up by Liberals to scare Conservatives. \n\nBut maybe that's not really hidden. It's more about willful ignorance. Just go with the set of made up facts that best satisfies your feelings, because there are no facts. Both sides are guilty of all the same crimes. There's no difference. And no, that's not true at all, but its soooooo much easier than thinking.", 'created': '2024-11-14 06:42:45', 'submission_id': '1gqmqgr'}
{'comment': 'Mine is 20, my daughter is 18, I have *a lot* of skin in the game', 'created': '2024-11-14 00:42:54', 'submission_id': '1gqmqgr'}
{'comment': 'I’d rather have a civil war with out Putin being handed our military than not if I have to choose a civil war with out Trump will be easier on everyone', 'created': '2024-11-14 00:42:33', 'submission_id': '1gqmqgr'}
{'comment': 'Some American alt-right nut job is married to the woman who translated that book to English.', 'created': '2024-11-13 22:20:24', 'submission_id': '1gqmqgr'}
{'comment': "Precisely. So if you were Vladimir Putin, what would you do once you got what you wanted from him? Would you reinforce his power, help reinforce America's military dominance that so greatly overshadows your puny little nation that almost broke itself against Ukraine? Or would you throw every little dirty secret and all your evidence of his treason out in the public square for the entire world to laugh at him? \n\nBuild up the strongman, get what you want from him because he's a halfwit who's easily manipulated, then kick his legs out from under him.", 'created': '2024-11-14 03:41:11', 'submission_id': '1gqmqgr'}
{'comment': 'Explain Ivana and Melania then.', 'created': '2024-11-14 00:01:33', 'submission_id': '1gqmqgr'}
{'comment': "and he won't shower in between", 'created': '2024-11-13 22:49:31', 'submission_id': '1gqmqgr'}
{'comment': 'I had the same fantasy', 'created': '2024-11-14 03:10:43', 'submission_id': '1gqmqgr'}
{'comment': 'They only appoint senators. Reps must have a special election.', 'created': '2024-11-13 23:13:48', 'submission_id': '1gqmqgr'}
{'comment': 'At that point I really hope all branches of the military will uphold the rule of law and defy him and hopefully the nation (well maybe minus his supporters) will rise up and defend against his tyranny', 'created': '2024-11-14 00:46:56', 'submission_id': '1gqmqgr'}
{'comment': "Don't worry Dementia will catch up to him well before his term is up", 'created': '2024-11-13 23:27:00', 'submission_id': '1gqmqgr'}
{'comment': 'And this is the very reason that the second amendment exists. He won’t do it because he knows what the end result would be.', 'created': '2024-11-13 23:03:19', 'submission_id': '1gqmqgr'}
{'comment': 'Executive Orders can not bypass the constitution, and this is something so blatantly laid out within the constitution than even this SCOTUS could not stretch that far. It’s not like Roe where it’s easy to make a bullshit argument for overturning it. Term limits are laid out very very directly.', 'created': '2024-11-13 22:59:23', 'submission_id': '1gqmqgr'}
{'comment': 'The CIA and if it really came down to that, we would form an uprising against the government.', 'created': '2024-11-13 23:01:05', 'submission_id': '1gqmqgr'}
{'comment': 'Blue State Governors are going to stand against their bullshit', 'created': '2024-11-13 23:01:15', 'submission_id': '1gqmqgr'}
{'comment': 'Yes I have a 19 yo daughter too. Son freaked out for both of them.', 'created': '2024-11-14 01:51:57', 'submission_id': '1gqmqgr'}
{'comment': "Oh, I'll have to look into that. It's been pretty obvious to me for awhile I member watching Russia invade Georgia and thinking that this is exactly to plan.", 'created': '2024-11-14 01:01:47', 'submission_id': '1gqmqgr'}
{'comment': 'One can hope.', 'created': '2024-11-14 06:20:27', 'submission_id': '1gqmqgr'}
{'comment': 'Ivana was attractive when she was young. Melania was too. \n\nOf course, as soon as they start to look a little older, then Trump cheats on them. lol', 'created': '2024-11-14 00:11:43', 'submission_id': '1gqmqgr'}
{'comment': 'I question your taste in women, because looking through non-biased lens they were both very attractive melania still is for her age.', 'created': '2024-11-14 00:21:23', 'submission_id': '1gqmqgr'}
{'comment': 'He’s been going around today taking meetings with Trump. It’ll totally happen.', 'created': '2024-11-14 03:16:33', 'submission_id': '1gqmqgr'}
{'comment': 'Ahhh, good call. Thanks for the clarification.', 'created': '2024-11-13 23:14:27', 'submission_id': '1gqmqgr'}
{'comment': 'Now I have fun new fantasies about him doing a 180, giving everyone free healthcare, taxing billionaires 90%, giving pro-DEI lectures, and baking brownies for disadvantaged youth...', 'created': '2024-11-13 23:41:53', 'submission_id': '1gqmqgr'}
{'comment': 'With Vance ready to swoop in. Thiel-backed Vance. \n\nYay.', 'created': '2024-11-14 00:55:13', 'submission_id': '1gqmqgr'}
{'comment': 'Hope we will see his suffering on live TV 🤞🤞🤞', 'created': '2024-11-14 00:41:09', 'submission_id': '1gqmqgr'}
{'comment': 'That makes it worse !', 'created': '2024-11-13 23:30:12', 'submission_id': '1gqmqgr'}
{'comment': 'If the military is under his full unchecked control, do you really think any guns would stop tanks, F35, drones?', 'created': '2024-11-13 23:19:09', 'submission_id': '1gqmqgr'}
{'comment': 'So for a while now we’ve been saying his MAGAs wouldn’t be able to last 1 day against the full might of our military. What would make it any different if the military was fighting against us? I don’t care how many guns we have. We wouldn’t stand a chance.', 'created': '2024-11-14 02:44:15', 'submission_id': '1gqmqgr'}
{'comment': "Do you think scotus has an army or a police force to enforce their decisions and rulings? What do you think any of these people are going to do? If Trump just says fuck you, I'm going to do what I want. I don't care what the Constitution says. I don't care what the Supreme Court says. I don't care what Congress says. Trump controls the military who's going to stop him if he really wants to do it?", 'created': '2024-11-13 23:09:31', 'submission_id': '1gqmqgr'}
{'comment': "He can suspend the constitution. It's been done before.", 'created': '2024-11-14 04:20:34', 'submission_id': '1gqmqgr'}
{'comment': 'You probably also like the Kardashian women. De gustibus non est disputandum.', 'created': '2024-11-14 16:51:21', 'submission_id': '1gqmqgr'}
{'comment': "He'd be retired to Mar-a-Lago in five minutes and replaced by Don Jr.", 'created': '2024-11-14 01:28:41', 'submission_id': '1gqmqgr'}
{'comment': 'You really think the military is going to follow illegal orders?', 'created': '2024-11-14 00:29:27', 'submission_id': '1gqmqgr'}
{'comment': 'I mean they wouldn’t. But the military is comprised of individuals with free will aswell. A majority of them would certainly not be willing to comply with Trump trying to overthrow democracy.', 'created': '2024-11-14 02:47:54', 'submission_id': '1gqmqgr'}
{'comment': 'The military is still made up of individuals with free will. They would never agree to it. This is also why we have the CIA and the 2nd amendment. There is much to be concerned about over the next 4 years but the overturning of our election process is not one.', 'created': '2024-11-14 00:36:12', 'submission_id': '1gqmqgr'}
{'comment': 'LET ME HAVE MY DREAMS', 'created': '2024-11-14 01:42:54', 'submission_id': '1gqmqgr'}
{'comment': 'You don’t know what you’re talking about if you think the CIA will do anything. They are a foreign intelligence agency. They do absolutely nothing concerning domestic politics.', 'created': '2024-11-14 04:10:31', 'submission_id': '1gqmqgr'}
{'comment': 'By all means Katy. Hugs to you.', 'created': '2024-11-14 02:04:09', 'submission_id': '1gqmqgr'}
{'comment': 'Yeah, things are about to get real messy in this country…', 'created': '2024-11-13 21:17:53', 'submission_id': '1gqm9mp'}
{'comment': 'These people always fixate on how they are portrayed by the media, yet won\'t think twice about how their own actions shape that portrayal. As a direct result of his interaction with the Guardian\'s journalist, he himself has guaranteed that he will come across as spiteful, mercurial, and as though he has something to hide. He was even given a chance to present his own narrative to explain his actions, and refused to do so.\n\nOf course, none of that will matter to those who are already indoctrinated to unconditionally distrust and disbelieve the "mainstream media".', 'created': '2024-11-13 21:36:08', 'submission_id': '1gqm9mp'}
{'comment': "I'm not sure that there has ever been a group that has been bent on a more evil and destructive path than the Heritage Foundation and been more socially acceptable, especially in D.C.", 'created': '2024-11-13 21:36:51', 'submission_id': '1gqm9mp'}
{'comment': 'What is it with these people killing dogs??', 'created': '2024-11-13 21:55:54', 'submission_id': '1gqm9mp'}
{'comment': 'The heritage foundation is composed of garbage humans.', 'created': '2024-11-13 22:52:29', 'submission_id': '1gqm9mp'}
{'comment': "What a delicate snowflake he is. I think the reporter hurt his fee-fee's.", 'created': '2024-11-13 21:36:13', 'submission_id': '1gqm9mp'}
{'comment': "Fasism is coming but most of Americans don't care.", 'created': '2024-11-14 01:57:54', 'submission_id': '1gqm9mp'}
{'comment': 'I’m gonna subscribe to The Guardian.', 'created': '2024-11-14 00:57:02', 'submission_id': '1gqm9mp'}
{'comment': 'Dark times coming!', 'created': '2024-11-13 22:30:43', 'submission_id': '1gqm9mp'}
{'comment': 'I’ve heard this “go to hell” nonsense as retaliation for questions they don’t like before. Didn’t the couch fucker do the same? Anyhoo, some reporter should be ready with a very large crucifix and a bottle of holy water and yell at the tops of their lungs, “No you go to hell! The power of Christ compels you! The power of Christ compels you!” Right back at ‘em.', 'created': '2024-11-14 08:03:33', 'submission_id': '1gqm9mp'}
{'comment': 'Republicans have already been setup to fail by the right-wingers they courted. Just like 2017-2019, Republicans will accomplish nothing but a couple of tax cuts, pass *nothing* said right-wingers want and then have to beg help from Minority Leader Jeffries in the House (and whoever becomes the Senate minority leader, assuning it isnt Sen Schumar of course) to pass "have too" bills/budgets', 'created': '2024-11-14 05:30:39', 'submission_id': '1gqm9mp'}
{'comment': 'Dark times coming!', 'created': '2024-11-13 22:30:43', 'submission_id': '1gqm9mp'}
{'comment': "That's not very Christian like!", 'created': '2024-11-14 15:55:50', 'submission_id': '1gqm9mp'}
{'comment': 'How Christian-like of Kevin…', 'created': '2024-11-15 05:54:51', 'submission_id': '1gqm9mp'}
{'comment': 'Dark times coming!', 'created': '2024-11-13 23:02:41', 'submission_id': '1gqm9mp'}
{'comment': 'I was listening to Bloomberg this morning. My thoughts are if they couldn’t get a single bill passed for MAGA, out of the house, we might see some epic battles again.', 'created': '2024-11-13 21:23:45', 'submission_id': '1gqm9mp'}
{'comment': 'Only if good people keep pretending you can stop bad things with words.', 'created': '2024-11-13 21:29:33', 'submission_id': '1gqm9mp'}
{'comment': 'Yeah, my coworker had a miniature meltdown at lunch because of the direction this country is heading', 'created': '2024-11-13 21:44:13', 'submission_id': '1gqm9mp'}
{'comment': "Guess dogs can smell evil and they don't like that.", 'created': '2024-11-13 22:23:02', 'submission_id': '1gqm9mp'}
{'comment': 'They lack empathy and compassion. They’re soulless ghouls in human skin.', 'created': '2024-11-13 23:21:34', 'submission_id': '1gqm9mp'}
{'comment': 'Because the cats all hide under the bed curled up and hissing at them.', 'created': '2024-11-14 00:56:12', 'submission_id': '1gqm9mp'}
{'comment': 'It’s worth the cost.', 'created': '2024-11-14 01:19:40', 'submission_id': '1gqm9mp'}
{'comment': 'Dark times has arrived and is unpacking its suitcase', 'created': '2024-11-13 23:22:03', 'submission_id': '1gqm9mp'}
{'comment': 'Nice👍🏼!', 'created': '2024-11-14 09:53:03', 'submission_id': '1gqm9mp'}
{'comment': 'You can say that, again!', 'created': '2024-11-14 02:17:23', 'submission_id': '1gqm9mp'}
{'comment': 'We’ve had the least successful Congress since the depression w Repub majority- now the maga wingnut at the helm in all 3 branches— ain’t shit happening lmao. At least that’s what I’m telling myself…', 'created': '2024-11-14 00:18:46', 'submission_id': '1gqm9mp'}
{'comment': 'It isn’t all MAGA, though, so they are going to have to fight it out.', 'created': '2024-11-14 04:06:32', 'submission_id': '1gqm9mp'}
{'comment': 'Reminds me of 2016-2018, when Republicans didn’t get anything done', 'created': '2024-11-13 21:08:03', 'submission_id': '1gqm4ew'}
{'comment': 'We are so fucked. Gaetz as AG makes me v v nervous.', 'created': '2024-11-13 21:40:55', 'submission_id': '1gqm4ew'}
{'comment': "So at best the Republicans will have 220-222 to Democrats 213-215 with 218 need as a majority. What does it mean that he's already tapped three Republicans currently serving in the House to be in the administration? Aren't they risking their majority? Not that I believe Gaetz can actually get through the Senate, because I really don't think he or Gabbard will get through. I also wonder about Hegseth as well. It almost makes me wonder if he's appointing these people so when they fail to get through he can say he tried and then have to appoint someone else.\n\nPart of me also wonders if Trump wished the House were Democratic so then he'd have someone to blame, because lets be real, he doesn't actually want to govern, he just wants the trappings of office.", 'created': '2024-11-13 21:57:46', 'submission_id': '1gqm4ew'}
{'comment': 'Nazi’s assume control of more appropriate', 'created': '2024-11-13 21:24:53', 'submission_id': '1gqm4ew'}
{'comment': 'Hopefully, they will do like the Democrats in 20-23 when they lost focus and got little accomplished. (abortion, judges, fix SS, etc.)', 'created': '2024-11-14 14:33:46', 'submission_id': '1gqm4ew'}
{'comment': 'I would be shocked if he got through the Senate. Not every Republican Senator is insane.', 'created': '2024-11-13 21:58:22', 'submission_id': '1gqm4ew'}
{'comment': 'You seriously think Attorney General Matt Gaetz is going to smoothly and effectively carry out the maga agenda?\n\nRepublicans in congress hate Matt Gaetz. This is the dumbest decision Trump could have made.', 'created': '2024-11-13 23:41:01', 'submission_id': '1gqm4ew'}
{'comment': 'Senate republicans: Hold my beer.', 'created': '2024-11-13 22:05:47', 'submission_id': '1gqm4ew'}
{'comment': 'I absolutely totally hope you are right.', 'created': '2024-11-14 01:45:10', 'submission_id': '1gqm4ew'}
{'comment': "No I hear what you're saying, I really do. But I think Gaetz or Gabbard might be the one or two designed to fail to get the others through. I'm also surprised by Gaetz because of their extremely slim margin in the House. It looks like they'll keep control but he's now pulled three out, I'm not sure he's done yet.", 'created': '2024-11-13 22:07:05', 'submission_id': '1gqm4ew'}
{'comment': 'Trump is just pulling stuff out of his backside because there are no adults around now. It’s so crazy that Murkowski and maybe Collins are just about the only sane republicans left.', 'created': '2024-11-13 22:29:04', 'submission_id': '1gqm4ew'}
{'comment': "Gaetz's district is so red, the replacement in the special election is guaranteed to be a republican.", 'created': '2024-11-13 23:55:57', 'submission_id': '1gqm4ew'}
{'comment': "I think electing Thune was a pretty clear rejection of some of the more extreme stuff. That being said, Thune still sucks but I don't think he's crazy like Scott if that makes sense. So I have to wonder if some of these appointments will actually get through. Gaetz/Gabbard/Hegseth all seem like they could face opposition from some Republicans. Someone like Rubio, a sitting Senator will likely even get some Democratic support but those three, I'm not sure they'll make it through.", 'created': '2024-11-13 22:38:37', 'submission_id': '1gqm4ew'}
{'comment': 'Almost certainly yes, but what happens for the few months before the special election. Though the events of the last couple hours seem to be moving in the direction that he won’t clear the nomination.', 'created': '2024-11-14 01:12:37', 'submission_id': '1gqm4ew'}
{'comment': 'Most likely you are right. However, special elections have notoriously low turnout. So democrats need to be prepared. We should try to flip at least one or two of the vacated seats in Congress.', 'created': '2024-11-14 07:47:43', 'submission_id': '1gqm4ew'}
{'comment': 'I guess we shall see. Gonna be an ugly 4 years.', 'created': '2024-11-13 22:53:30', 'submission_id': '1gqm4ew'}
{'comment': 'Blows my mind that there was a time when George W Bush was considered the worst president anyone could imagine.\n\nI was 19 in 2016 when Trump was elected\n\nAll I have ever known is American politics tainted by the childish idiocy of Trump and his gimps. \n\nWe had it so good with George W. Bush. And I know how outrageous it is to assert that. He caused a recession and got us into a middle east war based on lies. But at least he was an American! At least he didn’t attack congress! At least he cared about the United States!', 'created': '2024-11-14 00:11:05', 'submission_id': '1gqkfn4'}
{'comment': 'omg what show is this', 'created': '2024-11-14 06:55:23', 'submission_id': '1gqkfn4'}
{'comment': '[removed]', 'created': '2024-11-13 22:35:35', 'submission_id': '1gqkfn4'}
{'comment': 'Part of it, anyway. There qas also his disastrous Katrina response.', 'created': '2024-11-14 00:15:40', 'submission_id': '1gqkfn4'}
{'comment': 'I remember being pissed off during the Obama years, seeing the bumper stickers with Bush and the caption "Miss me yet?. He wouldn\'t be bad right about now.', 'created': '2024-11-14 03:20:15', 'submission_id': '1gqkfn4'}
{'comment': None, 'created': '2024-11-14 07:33:20', 'submission_id': '1gqkfn4'}
{'comment': 'Curb your Enthusiasm', 'created': '2024-11-14 07:32:17', 'submission_id': '1gqkfn4'}
{'comment': "Better than y'all are taking the win.", 'created': '2024-11-14 01:47:26', 'submission_id': '1gqkfn4'}
{'comment': "I see you're in the fuck around phase. Can't wait til y'all enter the find out phase 😘", 'created': '2024-11-13 22:57:41', 'submission_id': '1gqkfn4'}
{'comment': '“George Bush doesn’t care about black people” - Kanye West', 'created': '2024-11-14 02:19:28', 'submission_id': '1gqkfn4'}
{'comment': 'Those bumpers stickers were so much more topical under Trump than Obama', 'created': '2024-11-14 09:46:09', 'submission_id': '1gqkfn4'}
{'comment': 'Stopped clocks and all', 'created': '2024-11-14 02:26:16', 'submission_id': '1gqkfn4'}
{'comment': 'Best we can hope for is divided government. It won’t stop executive orders but at least there’ll be some kind of legislative check', 'created': '2024-11-13 19:25:52', 'submission_id': '1gqj2pt'}
{'comment': 'I thought it was reported a couple days ago they had the trifecta?', 'created': '2024-11-13 19:07:46', 'submission_id': '1gqj2pt'}
{'comment': '*cautiously', 'created': '2024-11-13 19:00:06', 'submission_id': '1gqj2pt'}
{'comment': 'The current Republican house accomplished less than any other in something like 150 years and yet voters put them right back in again.', 'created': '2024-11-13 19:32:37', 'submission_id': '1gqj2pt'}
{'comment': 'It’s not over until it’s over!', 'created': '2024-11-13 19:05:10', 'submission_id': '1gqj2pt'}
{'comment': 'If you look at the races remaining, they’re all leaning republican with little to no hope of flipping', 'created': '2024-11-13 19:08:51', 'submission_id': '1gqj2pt'}
{'comment': "Realistically, Dems don't even need majority or full control. Just get it close enough that when the sane repubs in the house cross the aisle and vote, it will be enough to carry. That's the nice thing about the house, there's more sane Rs in there that won't fall in line (Everytime, at least). Fingers crossed.", 'created': '2024-11-13 19:45:32', 'submission_id': '1gqj2pt'}
{'comment': 'Hey everyone. Sign up with Mobilize or another org to help cure ballots! Terms of thousands of ballots can be fixed for either mismatched signatures or the wrong date, etc.', 'created': '2024-11-13 21:21:34', 'submission_id': '1gqj2pt'}
{'comment': 'Recall that one of the Republicans who won is an anti-Trumper from Washington whose opponent was a Trump-approved Republican. How amenable do you think he is to a party that openly stabbed him in the back?', 'created': '2024-11-13 19:31:35', 'submission_id': '1gqj2pt'}
{'comment': 'They already said the house is going to the GOP.', 'created': '2024-11-13 19:31:49', 'submission_id': '1gqj2pt'}
{'comment': 'Well, we lost the house!', 'created': '2024-11-13 22:09:01', 'submission_id': '1gqj2pt'}
{'comment': 'Does anyone really think this is realistic? We need to face reality. If you still think the House could flip, brace yourself to be royally disappointed.', 'created': '2024-11-14 03:39:49', 'submission_id': '1gqj2pt'}
{'comment': 'Filibuster every dam thing you can! No bipartisanship this time around! 😡', 'created': '2024-11-13 20:07:35', 'submission_id': '1gqj2pt'}
{'comment': 'Goddamn some of y’all are dumb. *WHY* be cautiously optimistic when the writing is on the wall that the GOP is taking the house? Magical thinking does us no favors.', 'created': '2024-11-13 19:29:18', 'submission_id': '1gqj2pt'}
{'comment': 'I think I actually want a GOP house, let the people see exactly what they voted for with Trump. Dems won’t get any credit for blunting the edge of Trump policies. If Dems just give their speeches and then vote present, Trump and the GOP will be the only ones to blame when these policies backfire.', 'created': '2024-11-13 20:23:25', 'submission_id': '1gqj2pt'}
{'comment': 'Why are you posting this. 218 is locked. Best D case is 216', 'created': '2024-11-14 03:40:18', 'submission_id': '1gqj2pt'}
{'comment': "Dude, this is over. You're outta your mind if you think it's not, we lost EVERYTHING.", 'created': '2024-11-13 19:30:15', 'submission_id': '1gqj2pt'}
{'comment': 'Last I checked, 12 seats were open and most were in heavy red states. This will be majority red again, which historically isn\'t uncommon. "Unified Government." It\'s gonna be rough with the money, theatrics, and idiocy involved this time around, though.', 'created': '2024-11-13 21:09:21', 'submission_id': '1gqj2pt'}
{'comment': 'The house has already been called for the Republicans. If all races end up as they currently stand, Republicans will win 222 seats vs 213 for democrats. \n\nHowever, Trump has already named 3 representatives for his cabinet. So what we need to focus on right now is recruiting candidates for the special elections that will have to take place for those seats. We need to win those races. We need to make them local and make sure we get the base out. Few people vote in special elections so it will be a good opportunity to get some of the balance back. \n\nEven if we do not take the house, it will be much harder for the Republicans to govern with only 3 votes majority as opposed to more. We need to take it one day at a time and focus on chipping away at Republicans majority. We need to be ready for these special elections.', 'created': '2024-11-14 07:33:00', 'submission_id': '1gqj2pt'}
{'comment': "It's probably gonna be 220 minus Matt Gaetz seat he just resigned", 'created': '2024-11-14 12:33:57', 'submission_id': '1gqj2pt'}
{'comment': "WILL they, though? historically, Democrats have whiffed or just sat on their hands while Republicans rammed through bullshit legislation that impoverished common people, but enriched THEM. They *could* have been a disruptive force, they *could* have resorted to the tactics the Republicans do whenever *they* are in the minority of Congress. \n\nFuck, the Democrats had control of ALL 3 BRANCHES, and they STILL fucking let Republicans direct legislation! for the last fucking time, **STOP TRYING TO GET ALONG WITH CONGRESSIONAL REPUBLICANS**. \n\nI hope that the Democrats who make it into Congress next year actually DO toss cold water on the MAGA agenda, I hope they really DO come up with creative ways to slow down or halt the progress of Project 2025. \n\ny'all thought Republicans do nothing in Congress? Now that they'll have a supermajority, I think we'll all see those pudgy fucks in the RNC moving faster than physics allows, the very second they have the official reins of power.", 'created': '2024-11-13 21:00:08', 'submission_id': '1gqj2pt'}
{'comment': 'Even if they do take the house, the majority will be razor thin compared to 2017. So if a widely unpopular bill is in Congress such as to repeal the ACA or to ban abortion nationwide, it will most likely not pass because every GOP politician who has their name on it will be committing political suicide.', 'created': '2024-11-13 19:41:35', 'submission_id': '1gqj2pt'}
{'comment': "Not gonna happen. They gonna a keep the majority and end the filibuster to do what they want. There's only so many ways the Democrats will be able to keep the Republicans power in check...", 'created': '2024-11-14 02:41:46', 'submission_id': '1gqj2pt'}
{'comment': 'No room for optimism…we are fucked.', 'created': '2024-11-13 19:32:06', 'submission_id': '1gqj2pt'}
{'comment': 'Republicans just won it. All hope is gone!', 'created': '2024-11-13 20:25:04', 'submission_id': '1gqj2pt'}
{'comment': 'Guys let’s all get on our knees tonight and pray to take the House. Pray to God, the universe, Allah, or whichever higher power you believe in. We can do this!', 'created': '2024-11-13 20:22:41', 'submission_id': '1gqj2pt'}
{'comment': 'Nope, wasn’t optimistic about the presidential election and not about to start now, you can’t trick me into having hope', 'created': '2024-11-13 20:06:21', 'submission_id': '1gqj2pt'}
{'comment': 'They can’t govern on their own. Dogma and reason are incompatible. The next two years will be a shit show if Jeffries and the Dems just sit back and watch the circus.', 'created': '2024-11-13 20:42:32', 'submission_id': '1gqj2pt'}
{'comment': 'Republicans are fat and lazy. Voting for more than one bubble is hard', 'created': '2024-11-13 20:45:30', 'submission_id': '1gqj2pt'}
{'comment': '[removed]', 'created': '2024-11-13 20:08:48', 'submission_id': '1gqj2pt'}
{'comment': "Executive order can be challenged as well :) remember Trump's racist Muslim ban? It got challenge and rules unconstitutional. I'm willing to bet the supreme courts justice enjoy their jobs, they don't wanna get toss out of power by the American people", 'created': '2024-11-13 19:30:38', 'submission_id': '1gqj2pt'}
{'comment': 'Takes time to count all the votes we are one week after the election.', 'created': '2024-11-13 19:18:27', 'submission_id': '1gqj2pt'}
{'comment': 'It’s like 98% guaranteed at this point for Rs to get 218+ seats, which is enough to “call” it. I watch these elections very closely. Ds are basically out of it for getting the majority. \n\nThe remaining question is how big the R majority will be. 219–222 are still realistically on the table, with the smart money being on the middle of that range (220 or 221). If I had to guess on the median outcome at the moment, and I could only pick one number, I would say Rs end up with 221 seats.\n\nThis is a good chart: https://www.nytimes.com/interactive/2024/11/06/us/elections/results-house-races-tracker.html?unlocked_article_code=1.Zk4.G3UB.LZK3GaK4vmMg&smid=nytcore-ios-share&referringSource=articleShare.\n\nBut remember that most of the outstanding California seats are slowly trending D, as the remaining ballots are counted. It’s not clear whether that will be enough. In CA45, it seems like it will. CA13 could go either direction. CA41 looks like a long shot at this point.\n\nEngel and Peltola are toast. Bohannan’s race will be going to a recount I believe, but that is unlikely to change the result. You can reasonably expect all 3 of these to go to the Rs.\n\nOn the other side, considering races where Ds lead, Kaptur is going to a recount, I believe. But again, it’s unlikely to change the results. Golden still needs the RCV tabulation. This one is actually the most likely to flip of all the ones that have a current D lead. That being said, it’s probably still lean-Golden. All the other D leads are pretty secure, and will likely be called soon-ish.\n\nUPDATE: AP called CA41 for the Rs. Take that one off the board for potential D pickups. Best case scenario is now limiting Rs to 220.', 'created': '2024-11-13 19:48:48', 'submission_id': '1gqj2pt'}
{'comment': 'Nope, still over 10+ seats within extremely close margins. Hopefully all Democrats win!!!', 'created': '2024-11-13 19:30:42', 'submission_id': '1gqj2pt'}
{'comment': 'I don’t think it’s called anywhere reputable, but Dems did lose two seat seats, so most people think that’s what’s gonna happen.', 'created': '2024-11-13 20:10:27', 'submission_id': '1gqj2pt'}
{'comment': 'Practically there at the moment. 217 with a few counties showing red in the lead.', 'created': '2024-11-13 23:16:56', 'submission_id': '1gqj2pt'}
{'comment': '*sips some beer yep that\'s my tax dollars hard at work* " Honey why the hell is nothing getting done"', 'created': '2024-11-13 20:47:05', 'submission_id': '1gqj2pt'}
{'comment': 'https://preview.redd.it/jdslnzssnp0e1.jpeg?width=647&format=pjpg&auto=webp&s=65570936d8df6973ce91bdb33fd74d3a5983e7f3', 'created': '2024-11-13 19:19:27', 'submission_id': '1gqj2pt'}
{'comment': 'Yeah. I didnt hear no fat lady sing.', 'created': '2024-11-13 19:29:53', 'submission_id': '1gqj2pt'}
{'comment': 'We might get stuck with a slim GOP majority however 2016 GOP had 241 vs the Dems 194. But 218 are needed to pass a bill, knocking on wood hopefully there are some sane normally Republicans', 'created': '2024-11-13 19:17:52', 'submission_id': '1gqj2pt'}
{'comment': 'For the first two years there will be. The moment they say no to Trump, he will call them a rino, and they will get primaried and voted out.\n\nEdit: RINO not RICO', 'created': '2024-11-13 20:47:00', 'submission_id': '1gqj2pt'}
{'comment': 'I have some hope that he won’t be able to push some of these cabinet picks through.', 'created': '2024-11-13 21:10:22', 'submission_id': '1gqj2pt'}
{'comment': 'Bingo! Sure Trump will get his tariffs but thanks to a split it will be a watered down tariffs', 'created': '2024-11-13 20:41:36', 'submission_id': '1gqj2pt'}
{'comment': 'What news source?', 'created': '2024-11-13 22:15:16', 'submission_id': '1gqj2pt'}
{'comment': 'I made this post around 12pm CST before the house race been called.', 'created': '2024-11-14 03:55:51', 'submission_id': '1gqj2pt'}
{'comment': 'At best we are looking at a gridlock House for 2 years and Trump will be a lame duck', 'created': '2024-11-13 19:31:22', 'submission_id': '1gqj2pt'}
{'comment': 'I made this post around 12pm CST', 'created': '2024-11-14 03:53:24', 'submission_id': '1gqj2pt'}
{'comment': 'I thankfully been divorced from reality for a while. But hey best case scenario a gridlock House', 'created': '2024-11-13 19:33:59', 'submission_id': '1gqj2pt'}
{'comment': ">Fuck, the Democrats had control of ALL 3 BRANCHES, and they STILL fucking let Republicans direct legislation!\n\nI thought a lot of that was because they relied on Manchin and Sinema for their majority, and those two often sided with Republican demands? Genuinely asking, since I didn't follow politics as closely around that time, so I could be wrong", 'created': '2024-11-13 21:26:27', 'submission_id': '1gqj2pt'}
{'comment': '>Republicans just won it\n\nYes\n\n>\xa0All hope is gone!\n\nNo', 'created': '2024-11-14 04:35:10', 'submission_id': '1gqj2pt'}
{'comment': "No it isn't, just hope in that one area", 'created': '2024-11-13 21:56:17', 'submission_id': '1gqj2pt'}
{'comment': 'They are suddenly going to go hard on abolishing the filibuster', 'created': '2024-11-13 21:25:48', 'submission_id': '1gqj2pt'}
{'comment': 'That’s not how the Supreme Court works. They are appointed by the president/Senate and then serve for life. 2/3 of the Senate would have to vote to remove a justice and that will just never happen in this era of political divisiveness where everything is basically a 50/50 split.\n\nOn top of that, the current Supreme Court has already proven they are horrifically corrupt and do not care about human rights. They will throw out all sorts of shit to set us years behind other developed countries. If there is one branch of government you should be MOST afraid of right now, it’s the Supreme Court, because they really don’t have any checks and balances on them like the executive and legislative branch do.', 'created': '2024-11-13 20:13:13', 'submission_id': '1gqj2pt'}
{'comment': 'Candy toss a supreme. It’s a lifetime appointment- trump will stack the court with 2 more conservative justices - welcome to the shit show at the fuck factory. \nThat’s how he was granted immunity for most of his crimes. His conservative backed Supreme Court ruled he had “executive privilege”. This what America voted for. I hope they fucking choke on it.', 'created': '2024-11-13 19:42:37', 'submission_id': '1gqj2pt'}
{'comment': "Trump owns the Supreme Court. We're fucked.", 'created': '2024-11-13 20:54:59', 'submission_id': '1gqj2pt'}
{'comment': 'How are you planning to accomplish that?', 'created': '2024-11-13 21:39:40', 'submission_id': '1gqj2pt'}
{'comment': 'Seriously. Mary Peltola (AK) is still waiting to hear whether she gets to keep her seat.\n\nAlaska takes a good month to finalize election results because of the far flung villages and the military absentee ballots.\n\nNote: former Alaska resident', 'created': '2024-11-13 19:24:12', 'submission_id': '1gqj2pt'}
{'comment': "Sure, but we've made enough progress in the count to make reasonable projections. We know Democrats are not going to win the House.", 'created': '2024-11-13 19:20:09', 'submission_id': '1gqj2pt'}
{'comment': 'I’m not saying impossible but it’s nearly impossible based on the numbers at the moment.', 'created': '2024-11-13 21:37:13', 'submission_id': '1gqj2pt'}
{'comment': '\'Merica 2024. India counts +640M votes in one day for their national election.\n\n"We have created a world record of 642 million proud Indian voters. This is a historic moment," Chief Election Commissioner Rajiv Kumar said.\n\n \n[https://www.newsweek.com/india-vote-election-counting-modi-1908222](https://www.newsweek.com/india-vote-election-counting-modi-1908222)', 'created': '2024-11-13 19:31:23', 'submission_id': '1gqj2pt'}
{'comment': 'Oh I understand that, I just saw some articles saying it had enough reporting to call them, but i suppose those jumped the gun.', 'created': '2024-11-13 19:41:13', 'submission_id': '1gqj2pt'}
{'comment': "Pelota is in Alaska, which uses ranked choice voting. I believe as long as Begich stays below 50 percent plus one, it goes to instant runoff. Is it possible Pelota was the overwhelming second choice for those who didn't vote for the Republican? We'll see.", 'created': '2024-11-13 21:10:29', 'submission_id': '1gqj2pt'}
{'comment': "Good deal. I'm prepping myself for the disappointment though.", 'created': '2024-11-13 19:42:25', 'submission_id': '1gqj2pt'}
{'comment': 'Narrator: "There are not."', 'created': '2024-11-13 19:22:30', 'submission_id': '1gqj2pt'}
{'comment': "There are definitely some more level-headed Republicans who oppose Trumpism publicly or privately.\n\nDemocrats aren't a monolith and neither are Republicans. 👍", 'created': '2024-11-13 23:16:08', 'submission_id': '1gqj2pt'}
{'comment': 'That’s why we hope for a blue wave in 2026', 'created': '2024-11-13 20:59:17', 'submission_id': '1gqj2pt'}
{'comment': 'Washington elected a Republican who voted to impeach Trump, over a fellow Republican who was endorsed by Trump', 'created': '2024-11-14 02:55:21', 'submission_id': '1gqj2pt'}
{'comment': "Fingers crossed. His potential appointments is like the who's who of fucking morons...the Mount Rushmore of imbeciles...The Louvre of Dipshits....The Colosseum of the Corrupt. \n\nThe kicker is there are some decent Repubs that would be great in some of these roles, but nope, loyalty over country.", 'created': '2024-11-13 21:43:23', 'submission_id': '1gqj2pt'}
{'comment': "You're probably right, unless he goes unilateral. And the funny thing is, I don't even think most of us are necessarily against tariffs outright, they're a valid economic tool, when used correctly. It's his blanket enforcement plan combined with his implementation plan that is so fucking stupid. I mean a hefty tariff on certain Chinese controlled markets would decimate China's GDP, thereby slowing their military and defense tech budgets, and ultimately buying some time for Taiwan. But of course, he doesn't think with that level of strategery (see what I did there) and chooses to be a bull in a China shop.", 'created': '2024-11-13 21:38:49', 'submission_id': '1gqj2pt'}
{'comment': 'https://www.nbcnews.com/politics/2024-elections/house-results', 'created': '2024-11-13 22:27:48', 'submission_id': '1gqj2pt'}
{'comment': 'And you’re completely missing the point lol. Yes that would be nice, but it’s not happening. They’re taking the house and are going to do incredible amounts of damage. Be real.', 'created': '2024-11-13 19:36:50', 'submission_id': '1gqj2pt'}
{'comment': 'No. With the Senate and the White House alone, they can do whatever they like. They have the House now too. \n\nBuckle up - Democrats failed, and hard, and to a bunch of loonies.', 'created': '2024-11-13 23:13:27', 'submission_id': '1gqj2pt'}
{'comment': "I think we'll have at least two more years of gridlock. The 118th Congress passed the least amount of bills possibly ever, and definitely in modern history, due to in fighting.", 'created': '2024-11-14 10:01:39', 'submission_id': '1gqj2pt'}
{'comment': 'Still 24-48hrs too late. Needed Engel and Caravao to come through for the dream to survive.', 'created': '2024-11-14 04:00:29', 'submission_id': '1gqj2pt'}
{'comment': 'Man, I wish I could live there with you.', 'created': '2024-11-13 20:02:02', 'submission_id': '1gqj2pt'}
{'comment': 'at the time they also had Biden as VP/President of the Senate who could have cast a deciding vote. everyone simple *appealed* to Manchin and Sinema\'s sense of "decency". LOL', 'created': '2024-11-14 00:25:11', 'submission_id': '1gqj2pt'}
{'comment': 'Like I asked to the other person that responded. Where are you finding hope in things?', 'created': '2024-11-14 04:41:25', 'submission_id': '1gqj2pt'}
{'comment': 'Really? Have you seen the people he’s nominating? The fact that he now holds a trifecta—control over the presidency, a mandate, SCOTUS, and full immunity—and chooses the worst possible picks to lead us gives me almost no hope. Where are you finding optimism in this? This isn’t the Trump we saw on his first attempt to undermine democracy. He’s got everything he needs to do it now—and plenty of willing allies.', 'created': '2024-11-13 23:45:12', 'submission_id': '1gqj2pt'}
{'comment': '2/3 of the Senste is required to remove a specific Supreme Court Justice by impeachment, but a simple majority could "remove" justices generally by passing a law that applied evenly to all judges.\n\n\n\nFor example, a law passed by a simple majority could "remove" justices at 18 years by granting them Senior status at that point. A Senior justice would be allowed to sit on federal courts (like other retired justices have done), hear a reduced caseload, fill in for vacancies, or do managerial type work to run the Court. This is contrast to an Active justice, which is your first 18 years and is what we generally think of today.\n\n\n\nhttps://www.brennancenter.org/our-work/policy-solutions/supreme-court-term-limits', 'created': '2024-11-14 09:25:34', 'submission_id': '1gqj2pt'}
{'comment': 'Just for clarity because Ive been seeing this phrase a lot " he\'s gonna stack the court with 2 more", no he is going to force Alito and Thomas to retire and replace them with people in their fucking 40s or early 50s, so that the Conservative minority of the country keeps a stranglehold on the courts for the next 30 years..', 'created': '2024-11-13 21:21:21', 'submission_id': '1gqj2pt'}
{'comment': "Despite what reddit thinks, the immunity ruling is powerful but not absolute. And the thing people are most worried about with Trump is democracy holding strong, which would toss SCOTUS out on their asses if they permitted it. But neither congress, SCOTUS, nor big conservative media want democracy to end- that'd be just silly to hand away their positions.", 'created': '2024-11-13 19:54:04', 'submission_id': '1gqj2pt'}
{'comment': 'Agreed and we are in for some interesting times to say the least. I could use some other words but I’m trying to stay positive but it’s really difficult', 'created': '2024-11-13 21:49:04', 'submission_id': '1gqj2pt'}
{'comment': "The US Constitution's preamble states that the people have the right to overthrow a government that becomes destructive to the people's rights to life, liberty, and the pursuit of happiness", 'created': '2024-11-13 21:44:15', 'submission_id': '1gqj2pt'}
{'comment': "I'm a Texan and I'll check out Mary Peltola thanks for the information", 'created': '2024-11-13 19:28:04', 'submission_id': '1gqj2pt'}
{'comment': 'But why get people\'s hopes up? i.e. Alaska\'s a solid red state and Kamala flipped precisely zero states to my knowledge and lost almost if not every swing state and by "swing state" I mean the blue wall, so I highly doubt Alaska will be split.', 'created': '2024-11-13 20:45:18', 'submission_id': '1gqj2pt'}
{'comment': 'I swear there were some political positions still up through summer in the last election.', 'created': '2024-11-13 22:38:58', 'submission_id': '1gqj2pt'}
{'comment': 'Alaskan chiming in, I’m an optimist and we should all remember there’s a lot we can do for the world outside of politics. But Peltola is almost certainly going to lose. Short of a major upset, she’s currently a few thousand behind Begich (R) and the third party votes are mostly for the AK Independence Party, and I’d bet a lot of money their second choice picks will be largely for Begich.', 'created': '2024-11-13 22:01:09', 'submission_id': '1gqj2pt'}
{'comment': "AP News hasn't called that yet, but it is very likely.", 'created': '2024-11-13 19:21:18', 'submission_id': '1gqj2pt'}
{'comment': "Time will tell. It's safe to say the GOP won't have a majority like they did back in 2016, just imagine if you will if the GOP has 218 and the Dems 217. The only time to be thankful and enjoy a gridlock", 'created': '2024-11-13 19:22:34', 'submission_id': '1gqj2pt'}
{'comment': 'I think they will.\xa0', 'created': '2024-11-13 19:30:51', 'submission_id': '1gqj2pt'}
{'comment': 'I do like the idea of removing states authority to make their own rules so we can have one process federally that makes it easy to count all the votes like India.\xa0', 'created': '2024-11-13 20:28:23', 'submission_id': '1gqj2pt'}
{'comment': 'Peltola has a less than 5% chance. Something absolutely crazy would have to happen for her to prevail in the RCV tabulation. She is just too far behind and there aren’t enough votes to be reallocated. While mathematically possible, in all realistic terms, it’s over.', 'created': '2024-11-13 21:16:13', 'submission_id': '1gqj2pt'}
{'comment': 'Its a big deal if we limit them to 218-220, meaning that they can only afford to lose somewhere between 0-2 votes in order to pass legislation. I THINK that a margin that narrow will make some of the crazier things they want to do (like eliminating the department of education or cutting ssi or Medicare, for example) almost impossible, given that there are a handful of seats that went R in blue districts. Unless those guys want to be one term’ers, they won’t vote for the super crazy stuff. That’s what I’m hoping for anyway.', 'created': '2024-11-13 20:00:13', 'submission_id': '1gqj2pt'}
{'comment': '"Mr Narrator where did I park my car?"', 'created': '2024-11-13 19:24:35', 'submission_id': '1gqj2pt'}
{'comment': "John Thune was picked at the GOP Senate majority leader and it's good news because MAGA world is throwing a fit", 'created': '2024-11-13 23:22:05', 'submission_id': '1gqj2pt'}
{'comment': 'Thank. Any news is good news', 'created': '2024-11-13 22:42:05', 'submission_id': '1gqj2pt'}
{'comment': 'I don’t think it’s blind optimism to point out that things are not doom and gloom. \n\nThe Senate majority leader they appointed ain’t all that crazy either. A slim majority means any infighting or disagreement is bill that doesn’t get passed', 'created': '2024-11-13 20:07:42', 'submission_id': '1gqj2pt'}
{'comment': 'The GOP Senate leader is John Thune, good news is maga world is throwing a fit', 'created': '2024-11-13 23:15:39', 'submission_id': '1gqj2pt'}
{'comment': "The fact that the house will be grid locked. The military won't just bend over backward, for trump, and that there's some sane Republicans in both chambers that could help block or filibuster legislation.", 'created': '2024-11-14 05:01:42', 'submission_id': '1gqj2pt'}
{'comment': 'Because I fucking have to have hope right now. I am so angry. I am exhausted. I feel so much hatred and grief. I need hope. I really do. \n\nI feel overwhelmed both with the choices I have now lost and the choices I am desperately trying to find. I need hope', 'created': '2024-11-13 23:55:21', 'submission_id': '1gqj2pt'}
{'comment': 'Yes. You are exactly right', 'created': '2024-11-13 21:56:58', 'submission_id': '1gqj2pt'}
{'comment': "Ya I had to remind a friend of this same fact. Its fucked up that this is good news to us though. I'll take them where I can get them at this point.", 'created': '2024-11-13 22:52:02', 'submission_id': '1gqj2pt'}
{'comment': 'I can see Thomas not going for it, why would he give up his "friendship" that that conservative mega donor who sends him on lavish vacations? He\'s likely aware all his "friends" will vanish if he isn\'t on the court anymore. I do, however, see Alito going for it, he\'s a Trump loyalist through and through.', 'created': '2024-11-14 09:45:06', 'submission_id': '1gqj2pt'}
{'comment': "Everyone still wants a paycheck, all the Republicans house and Senate especially the SCOTUS. I'm willing to bet the House and Senate will gladly sell Trump down the river if it means they still get a paycheck and a job.", 'created': '2024-11-13 20:43:25', 'submission_id': '1gqj2pt'}
{'comment': 'They might not want democracy to end for the reasons you ascribe, but they sure are more than willing to fuck it up beyond recognition.', 'created': '2024-11-13 22:50:09', 'submission_id': '1gqj2pt'}
{'comment': 'The real bogeymen of democracy ending are Peter Thiel, his sugar baby Vance, Curtis Yarvin, technocrat Musk, that heritage foundation freak that said "bloodless revolution as long as the left allows it" and the like. It\'s not about necessarily the GOP and their loyalists in the SC, it\'s about who is influencing them to attack democracy at every level. The aforementioned evil villain freaks think that humans aren\'t good enough for democracy, that we don\'t deserve it. They also think everyone who isn\'t a billionaire should live in a technology enforced work camp scenario so...they\'re fucked in the head, obviously.', 'created': '2024-11-14 09:50:45', 'submission_id': '1gqj2pt'}
{'comment': ">We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America.\n\n\nWhich part of the preamble says that we have the right to overthrow the government? Are you referring to the declaration of independence because that doesn't actually enumerate any rights?", 'created': '2024-11-13 21:58:38', 'submission_id': '1gqj2pt'}
{'comment': "Mary Peltola is the incumbent and a Democrat. Almost half of Alaska's population is in/around Anchorage which more often goes blue (they just elected a Democratic mayor, the bulk of assemblymembers are blue, and the state house of reps is bipartisan) than the rest of the state and the tribes have a strong base (Mary is Yup'ik), all of which contributed to her win last time. Begich is slightly ahead now, but it's very close.", 'created': '2024-11-13 20:54:22', 'submission_id': '1gqj2pt'}
{'comment': 'They are losing Elise Stefanik’s seat. That special election is going to be helll!', 'created': '2024-11-13 19:38:18', 'submission_id': '1gqj2pt'}
{'comment': 'Even if the GOP have +3 it will be a gridlock', 'created': '2024-11-13 19:37:17', 'submission_id': '1gqj2pt'}
{'comment': 'Based on who is presently leading the remaining races it would be 222 Republicans and 213 Democrats. One better for republicans than what they currently have', 'created': '2024-11-13 19:35:00', 'submission_id': '1gqj2pt'}
{'comment': "True, but I think the info given was democrats don't have enough votes left to take it unless a whole lot of conservatives went for Democratic down ballots.", 'created': '2024-11-13 19:30:57', 'submission_id': '1gqj2pt'}
{'comment': 'The House is almost never at full membership either. Going into this election there were three vacancies. Trump has picked at least two current GOP members for his administration and those need to be filled via special election.', 'created': '2024-11-13 21:19:51', 'submission_id': '1gqj2pt'}
{'comment': 'That is great news.\n\nThank you.\n\nhttps://preview.redd.it/3oc8lzq2wq0e1.jpeg?width=1080&format=pjpg&auto=webp&s=9a2b47ea515eea901c4a874b32592ca5ab5a88d7', 'created': '2024-11-13 23:27:38', 'submission_id': '1gqj2pt'}
{'comment': 'Remember the infighting in the house and possibly the Senate with Trump first two years?', 'created': '2024-11-13 20:45:17', 'submission_id': '1gqj2pt'}
{'comment': 'It’s blind optimism to think that Democrats have a real chance at taking the house. Any day now AP’s going to call it for the GOP, following sources that have already called it.', 'created': '2024-11-13 20:19:44', 'submission_id': '1gqj2pt'}
{'comment': 'Bad news is loonies rule the country.', 'created': '2024-11-14 01:38:03', 'submission_id': '1gqj2pt'}
{'comment': 'ELI5 how the House is gridlocked if they win the majority? \n\nI know the Pentagon are in active talks about how to prepare for Trump and his threats. However, if he fires the Generals and other top appointed ranking military personnel and then replaces them with enough loyal people, he could cause significant damage.\n\nI’m hoping you’re right, that there are still some republicans that remain that will try and stand up against him and his cronies. But, just looking at the fiasco that is already happening before he’s even in office is not promising.', 'created': '2024-11-14 05:10:51', 'submission_id': '1gqj2pt'}
{'comment': 'I get it. Really, I do. I feel the same emotions, especially the anger. The “hope” I have is that they are all so incompetent that they will accomplish very little. There’s going to be a lot of infighting in Congress. They will all throw each other under the bus so they can be the next bootlicker in line. \n\nI do have a lot of fear about what could potentially happen. I am a gay woman, and their hate is terrifying. I want to move to a blue state, but at the same time I worry they will do everything they can to attack blue states, I.e. a natural disaster occurs and they refuse federal aid. \n\nI wish we had better answers from our leaders about how we are going to navigate all of this. The silence from them is deafening.', 'created': '2024-11-14 01:01:33', 'submission_id': '1gqj2pt'}
{'comment': '>\xa0"bloodless revolution as long as the left allows it"\n\n\nWell that\'s a bit chilling.\xa0 I was just reading a book where a villain\xa0says something similar as he\'s conquering people.\xa0 The villain had magic advantages though.\xa0 These real life people are only daydreaming that it will be so easy and effortless.', 'created': '2024-11-14 15:47:47', 'submission_id': '1gqj2pt'}
{'comment': 'https://preview.redd.it/gofeguv9iq0e1.png?width=1080&format=pjpg&auto=webp&s=f7a2ef49523262e196867e9df7a82077a009c1b8', 'created': '2024-11-13 22:10:16', 'submission_id': '1gqj2pt'}
{'comment': 'Oh, sorry, deep *carmine* or *burgundy* then. Did not know that, thanks.', 'created': '2024-11-13 22:51:11', 'submission_id': '1gqj2pt'}
{'comment': 'That’s a solid Trump district there was a Daily about it like 4 years ago', 'created': '2024-11-13 20:06:33', 'submission_id': '1gqj2pt'}
{'comment': 'I’m cautiously optimistic that a few GOPs in house and senate will be swayed to at least block some of his more extreme shit.', 'created': '2024-11-13 20:02:44', 'submission_id': '1gqj2pt'}
{'comment': 'Anything is possible Trump got less popular votes his 3rd time out', 'created': '2024-11-13 20:46:04', 'submission_id': '1gqj2pt'}
{'comment': "I been reading comments about this news. Some are saying he's gonna be a guard rail against Trump.", 'created': '2024-11-13 23:35:10', 'submission_id': '1gqj2pt'}
{'comment': 'You’re moving the goalposts.\n\nTaking the House has never been certain to pass bills/legislation, unless there is a bigger majority than what’s projected. Which Republicans are not expected to have, theirs will be slim. \n\nThe guy you replied to mentioned House Gridlock, this is a good thing if you don’t want this admin to pass legislation.', 'created': '2024-11-13 23:09:35', 'submission_id': '1gqj2pt'}
{'comment': "And it's not the funny loonies from the Loonies tunes 😭", 'created': '2024-11-14 01:52:00', 'submission_id': '1gqj2pt'}
{'comment': 'The gridlock is because the Republicans have a lot of infighting. There are sane Republicans like Liz Cheney. They will help stop trumps plans.', 'created': '2024-11-14 06:14:15', 'submission_id': '1gqj2pt'}
{'comment': "https://www.politico.com/news/2024/07/04/leader-of-the-pro-trump-project-2025-suggests-there-will-be-a-new-american-revolution-00166583\n\nHeritage Foundation President Kevin Roberts made the comments Tuesday (7/2/2024) on Steve Bannon’s “War Room” podcast, adding that Republicans are “in the process of taking this country back.”\n\nI agree that it wouldn't be as easy as he's saying, at least I hope!", 'created': '2024-11-14 16:58:22', 'submission_id': '1gqj2pt'}
{'comment': 'I emplore you to not rely on Google AI for information', 'created': '2024-11-13 22:19:02', 'submission_id': '1gqj2pt'}
{'comment': "No worries. We'll see. The GOP powers that be were so angry Mary got elected because they passed Ranked Choice voting, they've been trying to get rid of it ever since. I think the voting to repeal that is similarly tight", 'created': '2024-11-13 23:18:07', 'submission_id': '1gqj2pt'}
{'comment': 'Same goes for Matt Gaetz. Florida still providing tumors dooming this country.', 'created': '2024-11-13 22:40:18', 'submission_id': '1gqj2pt'}
{'comment': 'Funny enough, Stefanik’s district used to be held by a Dem. However the district has moved hard right the last few years. In fact I recall an article in the NYT where it asked “What Happened to Elsie Stefanik?”, as she had at one been pretty moderate. They interviewed a bunch of her constituents, many of them spouting crazed conspiracy theories and such, supporting Trump. Turned out it was the voters who had pushed her right. The more MAGA she became the larger her margins were.', 'created': '2024-11-15 14:31:08', 'submission_id': '1gqj2pt'}
{'comment': "That's what I'm hoping for when it comes to dismantling the department of education. I'm sure there are many Republicans in the house who want it reformed (for like, the millionth time) not gone in it's entirety.", 'created': '2024-11-13 20:16:50', 'submission_id': '1gqj2pt'}
{'comment': 'I mean look at it this way even with a Democrat President I support +3 Democrats in the Senate and +20 Democrats in the House so even if 80% of legislation goes our way 20% will be hold up. Only the most important stuff gets passed.', 'created': '2024-11-13 20:17:04', 'submission_id': '1gqj2pt'}
{'comment': 'He got his most votes this time around.', 'created': '2024-11-13 21:10:57', 'submission_id': '1gqj2pt'}
{'comment': 'Lol honestly it sounds like you’re the one moving goal posts. I’m responding to OP, who appears to be cautiously optimistic that Democrats can still take the House.', 'created': '2024-11-13 23:15:59', 'submission_id': '1gqj2pt'}
{'comment': "I'll keep that in mind. I know it says that somewhere in the constitution or declaration of Independence", 'created': '2024-11-13 22:43:50', 'submission_id': '1gqj2pt'}
{'comment': 'Well, now he’s AG 🤷\u200d♂️', 'created': '2024-11-13 22:49:22', 'submission_id': '1gqj2pt'}
{'comment': 'He literally said in his first comment replying to you that the best case scenario is House Gridlock.', 'created': '2024-11-13 23:21:08', 'submission_id': '1gqj2pt'}
{'comment': "If you can't source it, or prove it to us....then you don't 'know' anything\n\nAll I can gather from this is that you are astill very young....and that's fine, you still have years of school left, but understand.....the world is not as simple as 'I'm going to overthrow the government!' \n\nYou actually need millions upon millions of people to support you, weapons, logistics, and more\n\nOn top of all that, people with families and kids don't want to risk losing their families to die in a failed attempt to overthrow a government that they have the power to vote out of office in 4 years, even if those rights seem like they are in danger of being taken away.\n\nIt's nice that you want to be politically active, and when you do turn 18, you should absolutely exercise your right to vote, but before you do....read several different news sources about each candidate, learn about them in detail, and make an informed decision.", 'created': '2024-11-14 09:02:12', 'submission_id': '1gqj2pt'}
{'comment': 'How?', 'created': '2024-11-14 15:23:24', 'submission_id': '1gqhzg4'}
{'comment': 'You have to learn from the best. We need to make sure that everybody on every platform knows that whatever goes down in the next administration, that Trump and his goons own it. Trumpflation, Trumpcare, Trump Housing Crisis. He’s so big on branding, let’s slap his name on everything.', 'created': '2024-11-13 17:47:57', 'submission_id': '1gqfv2e'}
{'comment': 'instead of x, sign up for bluesky', 'created': '2024-11-13 17:05:48', 'submission_id': '1gqfv2e'}
{'comment': 'We at the Wichita County Democrats in Texas are separating ourselves from state and national and are rebuilding. We have an upcoming meeting and are prepared to fight by any means.\n\nETA: we are in agreement that disinformation potentially cost us this race and will be one of the primary focuses. \n\nOn your left, baby. Let’s go.', 'created': '2024-11-13 18:01:52', 'submission_id': '1gqfv2e'}
{'comment': "Been tryna convince one of my male friends to start a left-wing podcast. He's good at dumbing down hard policies so most people can understand. We need someone that can appeal to the lesser-educated as well.", 'created': '2024-11-13 18:48:22', 'submission_id': '1gqfv2e'}
{'comment': 'I’m really trying but I’m so depressed and exhausted I don’t know what to do\xa0', 'created': '2024-11-13 17:02:17', 'submission_id': '1gqfv2e'}
{'comment': '"I want to bring about change...\xa0so I removed myself from the conversation on all social media and tuned out of politics for the next 4 years"\n\n\nThat\'s not the right path going forward. We need to have our voices heard even in the most obscure right-wing sites.\xa0Misinformation and disinformation should not have any safe spaces.\xa0', 'created': '2024-11-13 18:22:23', 'submission_id': '1gqfv2e'}
{'comment': "I've been dropping this quote liberally since a little over a week ago. If you give up hope, then they have literally won everything. Keep hope alive and fight for what you know is right. There is no path forward without hope. \n\n“We must accept finite disappointment, but never lose infinite\xa0*hope*.”\xa0*Martin Luther King*,\xa0*Jr*", 'created': '2024-11-13 17:59:31', 'submission_id': '1gqfv2e'}
{'comment': 'Let’s fight disinformation with disinformation. Remember when Jd Vance fucked couches? Those were the days. We need more, bigger, crazier accusations. Let them spread like wildfire', 'created': '2024-11-13 17:23:23', 'submission_id': '1gqfv2e'}
{'comment': "[Tom Delay](https://www.texasmonthly.com/news-politics/the-man-with-the-plan/)\n\nThis is background on the Republican plan to take over the country's politics, starting in Texas. They have been unrelenting and so successful that a demented felon can win the presidency if they are a Republican. A hidden goal is to eventually control enough state legislatures, convene a Constitutional Convention, and rewrite the Constitution.\n\nDemocrats are 20-30 years behind this plan, have no long range agenda, and no cohesive leadership or standard bearer. We need to get a long range plan, not a short term razor thin win in Pennsylvania, or we are done.", 'created': '2024-11-13 18:41:03', 'submission_id': '1gqfv2e'}
{'comment': "I've never heard more true words than the OP. We need to fight like hell. They've been doing it for years, why haven't we? Is it because we got complacent? Too comfortable in the knowledge that more people support our ideas is common sense? I mean, how could they not, right? We have to get away from that kind of thinking ASAP if we want to take our nation back from these fascists.\n\nCall them out on their bullshit but also start some bullshit of our own. Tell the world what we stand for and let them know that the Republican/MAGAts are trying to tear it down. Scare the fuck out of them. Nothing is off the table now.", 'created': '2024-11-13 17:52:51', 'submission_id': '1gqfv2e'}
{'comment': "my only hope is that the clown show is so inept that they can't get anything done. and the infighting stops them.", 'created': '2024-11-13 18:04:07', 'submission_id': '1gqfv2e'}
{'comment': "No, don't get angry. Get focused, get serious, get organized, and always be executing.", 'created': '2024-11-13 18:52:06', 'submission_id': '1gqfv2e'}
{'comment': 'The difference is that it requires low IQ levels to buy the MAGA machine misinformation. Democrats are likely to check things themselves. The misinformation and the numbers of people who buy into this insane narrative is a force to be reckoned with. It’s not helpful that mainstream news is owned by MAGA donors. Billionaires just bought the highest seat in the world for a living fossil madman. It’s hard not to feel totally defeated.\n\nNot to mention the violence aspect. They were going to hang their vice president for their cult daddy. I can’t even imagine this for democrats. We prefer peaceful debates, they torch the capitol.\n\nThe people of the united states are in imminent danger if this man is allowed to carry out his insane vision. I hate to be ominous, but it’s honestly that big of a deal.', 'created': '2024-11-13 19:16:16', 'submission_id': '1gqfv2e'}
{'comment': 'There’s still a lot of “Mitch McConnell” type Republicans and other RHINOs many of whom don’t like the maga movement either, they’re in government positions and they still have more access, more levers to pull than the incoming administration.\n\n\nStay close to your local officials and rally the fundraisers for the next time around. \n\n\nI hope those hundreds of millions in Democratic donor money helps down ballot races and costs. We can’t afford another expensive Senate race for Texas. We need to focus on solid base states and not loose more ground.', 'created': '2024-11-13 18:22:48', 'submission_id': '1gqfv2e'}
{'comment': 'Considering making a podcast. Independent talk radio/podcasts tend to lean conservative so it would be a counter to that. I’m ex-MAGA so I can understand their thinking and how they’ve been indoctrinated like I was.', 'created': '2024-11-13 19:00:51', 'submission_id': '1gqfv2e'}
{'comment': 'let’s face the hard reality here: Americans (especially the old ones; Democrat and Republican alike) are not ready to have a female president. And we should have not took a gamble with Kamala after Hillary’s loss. Kamala is great, don’t get me wrong. But, again, the problem is these old farts that are just not ready for a female president.', 'created': '2024-11-13 20:17:23', 'submission_id': '1gqfv2e'}
{'comment': 'Now is the time to take advantage of the Trump fuck ups along the way…he will piss people off often…', 'created': '2024-11-13 19:33:37', 'submission_id': '1gqfv2e'}
{'comment': "The problem is it all costs money and we don't have the billionaires on our side..", 'created': '2024-11-13 19:50:01', 'submission_id': '1gqfv2e'}
{'comment': 'Seems that we just need to get a Bernie type on a TV show propped up as a successful businessman. That the extent of what most voters are looking for.', 'created': '2024-11-13 19:52:28', 'submission_id': '1gqfv2e'}
{'comment': 'Enjoy the US for a couple more months. It will probably never be the same.', 'created': '2024-11-13 21:22:59', 'submission_id': '1gqfv2e'}
{'comment': 'They did have a lot of billions. I mean I agree with what you’re saying wholeheartedly, but we do need some billions too. \n\nYall um… got any of that?', 'created': '2024-11-13 22:04:31', 'submission_id': '1gqfv2e'}
{'comment': 'Democrats are way too concerned with winning over "Trump-Biden" voters and "never Trump" Republicans. There is a huge untapped coalition in people who work for large companies (the Walmarts and Amazons of the world) and live in rural communities. I am one of them. I hear the breakroom conversations all the time. They\'ll talk about how much they love Trump yet constantly complain about our low pay, bad working conditions, unreasonable performance standards, subpar health insurance, ect. They don\'t follow politics closely enough to know that Democrats would do more to improve their lives. In part because the mainstream media talks minimally about labor issues because they anger advertisers. Also because Democrats back off of progressive policy proposals when the right wing media put out their counterpoints. I live in an area that voted 70% for Trump last week. Democrats may never win here but they can absolutely chip away at 70% with better communication, more confidence in good policy, and by making their policy tangible to those voters.', 'created': '2024-11-13 23:34:14', 'submission_id': '1gqfv2e'}
{'comment': 'From what I see the Democrat Party has not learned or acknowledged what they did wrong so are likely to repeat the same failed strategy again. I think that is robbing people of hope.', 'created': '2024-11-13 17:26:39', 'submission_id': '1gqfv2e'}
{'comment': 'We need to stop playing fair. We need bot farms, troll farms, a coordinated disinformation campaign targeted at his voters.', 'created': '2024-11-13 18:46:30', 'submission_id': '1gqfv2e'}
{'comment': 'Whatever happened to the Democraitic Underground website?', 'created': '2024-11-13 19:00:36', 'submission_id': '1gqfv2e'}
{'comment': 'The democrats need to learn how to steer public discourse like the republicans. Where is their Edward Bernays?', 'created': '2024-11-13 19:07:21', 'submission_id': '1gqfv2e'}
{'comment': "The issue is that all they have to do is lie and point fingers. They create hate and division, and that's easy and attractive.", 'created': '2024-11-13 21:56:10', 'submission_id': '1gqfv2e'}
{'comment': 'We need to call out the Naziism and the racism. Make them explain why it "isn\'t" racist, or why they clearly think less of people of color, why their nationalism mirrors Nazi Germany and why MSG event is exactly like the time Nazis had a rally there. Why the KKK is among their supporters. Maybe I\'m wrong, but I hope not.', 'created': '2024-11-13 22:27:49', 'submission_id': '1gqfv2e'}
{'comment': 'Need a New party not more text messages asking for money', 'created': '2024-11-14 02:57:19', 'submission_id': '1gqfv2e'}
{'comment': 'WTF? \n\nComparing Obama’s win to Trump’s win is weird and gross.', 'created': '2024-11-14 15:43:57', 'submission_id': '1gqfv2e'}
{'comment': "HOW DO WE GET ORGANIZED???? Everything is disconnected it's infuriating.", 'created': '2024-11-13 17:56:34', 'submission_id': '1gqfv2e'}
{'comment': "Doesn't the right also have funding from billionaires like musk and Murdoch? \n\nIt's always about money", 'created': '2024-11-13 18:37:46', 'submission_id': '1gqfv2e'}
{'comment': 'Especially SMARTER!!!!!!!', 'created': '2024-11-13 18:57:34', 'submission_id': '1gqfv2e'}
{'comment': 'Let X die asap.', 'created': '2024-11-13 21:21:20', 'submission_id': '1gqfv2e'}
{'comment': 'It’s simple, Democrats turned off men. It only takes a little to have a huge impact. \nI imagine things will swing back the other direction pretty hard once this new administration starts fucking up. Trump sucks at governing. I remember it well.', 'created': '2024-11-13 17:49:52', 'submission_id': '1gqfv2e'}
{'comment': "People people, we need to start playing at AOC's game. Start asking what people want and it's time to start teaching everyone on how to combat misinformation along with listening to the struggles of the working class.", 'created': '2024-11-13 18:49:42', 'submission_id': '1gqfv2e'}
{'comment': "Better yet, I'd prefer we just work to destroy right-wing media, because that'll help more than anything else.", 'created': '2024-11-13 20:37:01', 'submission_id': '1gqfv2e'}
{'comment': "Well yeah but our party needs to get its shit together in a big way. Let's not forget we fielded a new (black female) candidate like 3 months before the election. That's not how you win. Not in America. Not in 2024. I'm not surprised we lost bigly... We've been running on fumes and hope, we need something more substantial.", 'created': '2024-11-13 21:38:04', 'submission_id': '1gqfv2e'}
{'comment': "From the last 3 elections, Democrats are unorganized, wasteful, delusional, and only barely won once.\n\nAgainst a guy who is an absolute piece of trash.\n\nThis is where we are. Where we go is up to the people. Clearly nobody is motivated enough to keep this country from falling to the crazies - twice.\n\nYes, they are separated from reality - but their leadership has installed themselves again, and this time they're going full lunatic. Because Democrats failed HARD. \n\nThere is nothing to cheer about or get motivated about with the current Democratic party. Sorry.", 'created': '2024-11-13 23:16:30', 'submission_id': '1gqfv2e'}
{'comment': 'They even sold their souls to Russia.', 'created': '2024-11-14 00:30:19', 'submission_id': '1gqfv2e'}
{'comment': 'What kind of organizations do you propose? How to approach our issues? Should we demand a recount or..?', 'created': '2024-11-14 01:50:20', 'submission_id': '1gqfv2e'}
{'comment': 'Yes they started organizing on Inauguration Day in 2009 at that infamous meeting on K street. They knew they had money - lots and lots of it from Koch, Adelson, etc and the organizing power of Federalist Society and Heritage foundation behind them.', 'created': '2024-11-14 02:26:59', 'submission_id': '1gqfv2e'}
{'comment': 'Don’t worry they’re about to deport a huge swath of republican voters.', 'created': '2024-11-14 03:37:07', 'submission_id': '1gqfv2e'}
{'comment': 'https://youtube.com/shorts/uKTWw3vV2Bg?si=nbg5AcPp3MQlnSmi\n\nThis is from June. And it could NOT be more relevant.', 'created': '2024-11-14 04:28:55', 'submission_id': '1gqfv2e'}
{'comment': 'Nope let it do its thing let it burn. We voted for this d\nSo we own it', 'created': '2024-11-14 07:12:00', 'submission_id': '1gqfv2e'}
{'comment': 'The growth of the right was not grassroots.', 'created': '2024-11-14 07:32:05', 'submission_id': '1gqfv2e'}
{'comment': 'https://preview.redd.it/lujgzj49mu0e1.jpeg?width=1257&format=pjpg&auto=webp&s=b525e9e993337c233ecacaf2cbccfb7dea97ab3e\n\nFound these on red bubble. I say we slap em everywhere when prices go up.', 'created': '2024-11-14 12:00:09', 'submission_id': '1gqfv2e'}
{'comment': 'But instead the DNC will keep shoving centerist candidates down our throats and then wonder why we don’t win more.', 'created': '2024-11-14 12:32:10', 'submission_id': '1gqfv2e'}
{'comment': 'The problem is dems actually work Have jobs and pay taxes.', 'created': '2024-11-14 12:50:07', 'submission_id': '1gqfv2e'}
{'comment': "We need a candidate who doesn't play nice with fascists but also can talk to people who are stuck in service jobs who can't move out of their parents homes because that's all the jobs available in their community. They can't be centrist or appear to be Washington insiders.\n\n\nWe also need to take back Congress or nothing can get done no matter how great the president is", 'created': '2024-11-14 14:32:41', 'submission_id': '1gqfv2e'}
{'comment': 'Brilliant.', 'created': '2024-11-14 18:36:15', 'submission_id': '1gqfv2e'}
{'comment': 'I could not agree more. Reach out locally to you democrats. Build from the ground up.', 'created': '2024-11-15 00:36:13', 'submission_id': '1gqfv2e'}
{'comment': 'We need to buy up media distribution networks like radio stations, billboard, tv, etc. Stop renting the space just before elections and OWN it 24/7/365. We need to spend our money more wisely. Stop paying pundits, consultants, and c-suite ad assholes, and make an app that lets us do call to action on legislation that we can help craft and push lawmakers to sign it by making it easier to call our representatives offices in an organized and strategic way. Stop with the bugging us for money via text, and actually get people invested in the outcome BEFORE elections by voting on legislation they are helping to craft. Make Democratic lobbying an app, and support for it SAAS. Let’s start building media and lobbying infrastructure For the people, by the people.', 'created': '2024-11-16 05:41:18', 'submission_id': '1gqfv2e'}
{'comment': "They weren't stunned. Obama was pretty much expected to win. People are exhausted. The DNC is no longer effective. We need a new approach. The old guard caused this.", 'created': '2024-11-13 18:26:25', 'submission_id': '1gqfv2e'}
{'comment': 'Messaging is a huge reason we lost, but we have foundational issues. We are no longer the party of the working class and we need to find our way back. The Dem leadership is out of touch with the needs of the average American.', 'created': '2024-11-13 18:13:45', 'submission_id': '1gqfv2e'}
{'comment': "Russia owns the US. He's not leaving.", 'created': '2024-11-13 22:12:23', 'submission_id': '1gqfv2e'}
{'comment': 'Good advice.', 'created': '2024-11-13 22:38:22', 'submission_id': '1gqfv2e'}
{'comment': "Honestly I'm not sure what we can do. The leadership needs to come to the realization that we will continue to lose unless they change course. I believe they will if not only for their self-preservation.", 'created': '2024-11-13 18:51:15', 'submission_id': '1gqfv2e'}
{'comment': 'Demented and abandoned because “conservatives are mean..😢 “ #fecklessdems', 'created': '2024-11-13 17:59:54', 'submission_id': '1gqfv2e'}
{'comment': 'Don’t wanna be a black sheep but I’d control the hype for Bluesky who knows when that billionaire fuck will buy the app,be careful yall', 'created': '2024-11-14 01:08:17', 'submission_id': '1gqfv2e'}
{'comment': 'This is what I came to say. Abandon X-Twitter. delete your account. It will die if we all move to bluesky.', 'created': '2024-11-13 19:36:59', 'submission_id': '1gqfv2e'}
{'comment': 'What is bluesky?', 'created': '2024-11-13 18:08:59', 'submission_id': '1gqfv2e'}
{'comment': 'And Mastodon!', 'created': '2024-11-13 18:58:10', 'submission_id': '1gqfv2e'}
{'comment': 'Or Mastodon', 'created': '2024-11-13 18:02:13', 'submission_id': '1gqfv2e'}
{'comment': 'Mastodon is better because it has community ran instances.', 'created': '2024-11-13 20:26:52', 'submission_id': '1gqfv2e'}
{'comment': 'Just did! I like it so far', 'created': '2024-11-13 22:04:43', 'submission_id': '1gqfv2e'}
{'comment': "thanks. didn't know about it. just signed up.", 'created': '2024-11-14 17:33:23', 'submission_id': '1gqfv2e'}
{'comment': 'Yep, just got on and loving it so far. I am doing my part to keep some MAGA trolls at bay, but worth it.', 'created': '2024-11-17 22:12:39', 'submission_id': '1gqfv2e'}
{'comment': 'Threads', 'created': '2024-11-14 06:50:00', 'submission_id': '1gqfv2e'}
{'comment': "You can PM me if you don't want to answer here.\xa0\n\n\nHow much do you believe Palestine impacted the blue vote amongst younger people?", 'created': '2024-11-13 23:18:24', 'submission_id': '1gqfv2e'}
{'comment': 'Agree. Let us know when his podcast starts so we can promote it', 'created': '2024-11-13 19:01:30', 'submission_id': '1gqfv2e'}
{'comment': 'I am hoping this is what the Onion will do now that they own Infowars. Podcast and shows bringing facts to the fake news world', 'created': '2024-11-15 14:25:02', 'submission_id': '1gqfv2e'}
{'comment': 'Keep fighting. The battle was lost, but not the war.', 'created': '2024-11-13 17:24:11', 'submission_id': '1gqfv2e'}
{'comment': "I'm too busted up. 58, emphysema, arthritis, etc.. I was hoping to just fade away peacefully.", 'created': '2024-11-13 18:50:47', 'submission_id': '1gqfv2e'}
{'comment': "Same. I'm terrified and tired.", 'created': '2024-11-13 19:34:31', 'submission_id': '1gqfv2e'}
{'comment': "We don't get to give up. We must press on.", 'created': '2024-11-14 06:44:28', 'submission_id': '1gqfv2e'}
{'comment': 'I think we do need a break, simple as that. I also think a lot of the people who left will be back in a few weeks.', 'created': '2024-11-13 18:38:13', 'submission_id': '1gqfv2e'}
{'comment': 'Thank you. I’m trying to have hope but I’m breaking down\xa0', 'created': '2024-11-13 18:01:13', 'submission_id': '1gqfv2e'}
{'comment': 'Disinformation is unlikely to undo the psychological conditioning that have led people to vote for Trump, or to sit out for elections. \n\nHowever, carefully targeted disinformation could disrupt MAGA leader efforts to gain further control of our government. For example, disinformation that gets those leaders fighting among themselves. Or disinformation that gets the MAGA cult all riled up so that it disrupts MAGA leader efforts at other things.', 'created': '2024-11-13 19:50:38', 'submission_id': '1gqfv2e'}
{'comment': 'I think we need to find our "core." Dems are kind of all over the place and we engage in these purity tests and then discard any potential leaders who disagree with our one cause. We need a central leader and a core and vision.', 'created': '2024-11-13 19:36:51', 'submission_id': '1gqfv2e'}
{'comment': 'I can do those things while angry', 'created': '2024-11-13 20:57:39', 'submission_id': '1gqfv2e'}
{'comment': 'I completely agree. We are terrible at marketing! We have no “bro” equivalent podcasts!!', 'created': '2024-11-15 02:53:34', 'submission_id': '1gqfv2e'}
{'comment': 'Them just rolling over too is robbing people of hope.', 'created': '2024-11-13 17:34:06', 'submission_id': '1gqfv2e'}
{'comment': 'A very clever man once said to me: People change only during an extreme crisis. If that is not an extreme crisis right now with so much power accumulated in absolutely irresponsible tiny hands, I do not know what it is.', 'created': '2024-11-13 17:38:33', 'submission_id': '1gqfv2e'}
{'comment': 'I think some leaders are really trying. AOC has been holding a lot of meaningful discussions on Instagram, asking voters who voted for both Trump and her why and she\'s been sharing people\'s responses.\n\nThe old guard and Nancy Pelosi crowd need to go though.\n\nFor reference, it\'s the *Democratic* Party.\n\n"Democrat" party is a long-time Republican slur that I keep seeing seep into regular usage:\nhttps://en.wikipedia.org/wiki/Democrat_Party_(epithet)', 'created': '2024-11-13 18:21:04', 'submission_id': '1gqfv2e'}
{'comment': 'I’m in complete agreement but have you visited your local chapter and voiced these concerns? I was very boots on the ground this election. I voiced my concerns that we were being too passive. They insisted we go the high road. But NOW they are in agreement that we need to completely regroup. I wouldn’t be surprised if they all agreed with you. But it’s going to take all of us.', 'created': '2024-11-13 18:33:50', 'submission_id': '1gqfv2e'}
{'comment': 'That’s definitely part of it for me. I’m really hoping that they wake up\xa0', 'created': '2024-11-13 17:28:48', 'submission_id': '1gqfv2e'}
{'comment': 'Get on the phone and tell your representatives what you feel they did wrong. And tell them often. Let them know your vote is currently not theirs until we start to have a serious conversation about a path forward.', 'created': '2024-11-13 18:08:00', 'submission_id': '1gqfv2e'}
{'comment': 'Yup. They should have bought a cable news empire back in the 90’s.', 'created': '2024-11-13 19:16:31', 'submission_id': '1gqfv2e'}
{'comment': 'Join the League of Women Voters', 'created': '2024-11-13 18:59:36', 'submission_id': '1gqfv2e'}
{'comment': 'I’m exhausted with this narrative. It’s not straight men who are having their rights taken away. Why can’t men just do the right fucking thing? What are you losing by doing that?', 'created': '2024-11-13 18:58:51', 'submission_id': '1gqfv2e'}
{'comment': 'But what do you do? I keep seeing people say this, but no one is offering many solutions', 'created': '2024-11-13 18:39:01', 'submission_id': '1gqfv2e'}
{'comment': 'Abandon all the corporations who support fascism. \n\nBezo’s was congratulating trump.', 'created': '2024-11-14 03:32:12', 'submission_id': '1gqfv2e'}
{'comment': 'Already did on 11/6', 'created': '2024-11-15 02:46:42', 'submission_id': '1gqfv2e'}
{'comment': '[https://bsky.app/](https://bsky.app/)', 'created': '2024-11-13 18:58:30', 'submission_id': '1gqfv2e'}
{'comment': "Bluesky is also federated and it is possible to interact with Mastodon users through Bluesky and vice versa using Bridgy Fed, although it is a bit technical and some features don't work across platforms. So if someone wants to access both communities but only manage one account, it is somewhat possible.", 'created': '2024-11-13 19:43:08', 'submission_id': '1gqfv2e'}
{'comment': 'What are some good mastodon servers?', 'created': '2024-11-13 18:04:46', 'submission_id': '1gqfv2e'}
{'comment': 'Yup - or BOTH!', 'created': '2024-11-13 18:58:52', 'submission_id': '1gqfv2e'}
{'comment': 'what is/are community ran instances?', 'created': '2024-11-13 22:11:56', 'submission_id': '1gqfv2e'}
{'comment': 'Learn to rest, not stop.', 'created': '2024-11-13 18:05:13', 'submission_id': '1gqfv2e'}
{'comment': 'This is the only way!! We are not going back, regardless of the “win” from the right. I still think that they should do a recount, maybe that’s just me…we definitely need a recount… is it just me?', 'created': '2024-11-13 17:51:24', 'submission_id': '1gqfv2e'}
{'comment': 'That’s what I keep telling myself. I have to believe that the good will eventually prevail in the war.', 'created': '2024-11-13 19:25:01', 'submission_id': '1gqfv2e'}
{'comment': 'As scared as you are don’t give away any of your freedoms (or anyone else’s) out of fear or before they force it from you. Don’t make it easy for them.', 'created': '2024-11-14 00:48:54', 'submission_id': '1gqfv2e'}
{'comment': 'I know I know. I’m starting to feel better and gearing up to fight.\xa0', 'created': '2024-11-14 06:54:50', 'submission_id': '1gqfv2e'}
{'comment': "That's perfectly fine. We all need a break from time to time.\n\n\nFully removing yourself because you think Elon Musk will give a fuck about you deleting your X account, that's not accurate.\xa0As long as people understand this.", 'created': '2024-11-13 18:42:42', 'submission_id': '1gqfv2e'}
{'comment': "I agree. The best propaganda only enforces what people already believe.\n\n\nIt's never a good idea to convince someone of something they don't believe in their gut to be right over mass media.", 'created': '2024-11-13 23:23:36', 'submission_id': '1gqfv2e'}
{'comment': 'Democrats fall in love, republicans fall in line. Repubs ALWAYS vote red, and never miss an election. “He’s not my first choice but he’s an R”', 'created': '2024-11-14 02:10:07', 'submission_id': '1gqfv2e'}
{'comment': "Agreed. I just don't know who that would be. Bernie comes to mind but he's long past his time. We need someone young with a lot of energy and who isn't afraid of pissing off the billionaires. Someone who will lead a group of like minded individuals who don't mind getting in people's faces if we have to.", 'created': '2024-11-13 21:30:14', 'submission_id': '1gqfv2e'}
{'comment': "I truly believe Palestine became a wedge issue and left young voters who've been inundated by tiktok streams of destruction nobody to vote for.\xa0\n\n\nSelf-righteousness has led to protest votes or no votes at all.\xa0\n\n\nI'm trying to figure out if this is a truth, half truth or a non issue.\xa0\n\n\nI welcome hearing thoughts on this because the left needs unity now more than ever.\xa0", 'created': '2024-11-13 23:21:39', 'submission_id': '1gqfv2e'}
{'comment': "Angry doesn't help. Anger turns off your strategic brain.", 'created': '2024-11-13 22:13:19', 'submission_id': '1gqfv2e'}
{'comment': "I thought that after Hillary yet no one got fired and they repeated trying to have the first woman president and it failed again. I don't have the energy to support the same failure a third time.", 'created': '2024-11-13 17:58:25', 'submission_id': '1gqfv2e'}
{'comment': 'I figure they will turn to AOC after she turns 60', 'created': '2024-11-13 19:03:09', 'submission_id': '1gqfv2e'}
{'comment': 'Personally I think until the DP puts the economy before Trans Rights/etc they will never win again. But given many are east coast elites, I doubt they encounter those concerns actual voters have', 'created': '2024-11-13 19:01:18', 'submission_id': '1gqfv2e'}
{'comment': 'That is what I said after Hillary', 'created': '2024-11-13 17:59:20', 'submission_id': '1gqfv2e'}
{'comment': 'Resistbot is an easy way to contact your Representatives', 'created': '2024-11-13 18:58:49', 'submission_id': '1gqfv2e'}
{'comment': 'They are soldiers and did exactly what they were told. The generals lost this war they need to be replace. Unfortunately, Pelosi is not taking my call', 'created': '2024-11-13 19:15:27', 'submission_id': '1gqfv2e'}
{'comment': 'I voted Democrat in every election since Reagan. \nYou can complain all you want about the men. Truth is, Democrats need to pay attention to this demographic and listen. We can’t ignore it or we will always lose.', 'created': '2024-11-13 19:17:50', 'submission_id': '1gqfv2e'}
{'comment': 'The “federated platform” 99% of the bs servers just went down. There is nothing difficult about installing the default app and creating Mastodon.social account.', 'created': '2024-11-15 14:48:52', 'submission_id': '1gqfv2e'}
{'comment': "I'm on ohai.social\n\nI just picked mine at random and never had an issue with it.", 'created': '2024-11-13 18:06:54', 'submission_id': '1gqfv2e'}
{'comment': 'https://joinmastodon.org/servers', 'created': '2024-11-13 20:28:03', 'submission_id': '1gqfv2e'}
{'comment': 'The community ran servers are managed by everyday people and have uniques cultures based on regions or topics and if one the servers go down you have redundancy.', 'created': '2024-11-15 14:50:29', 'submission_id': '1gqfv2e'}
{'comment': 'Definitely for North Carolina', 'created': '2024-11-13 18:57:04', 'submission_id': '1gqfv2e'}
{'comment': "I meant doing more positive things and relaxing and resting. I know we need to plan fast, but we are all exhausted. For what it's worth, I think falling back to safe spaces is a good idea. That is one way to prepare", 'created': '2024-11-13 18:56:03', 'submission_id': '1gqfv2e'}
{'comment': 'I really like AOC but I fear we may need a male version of her to actually gain ground.', 'created': '2024-11-13 23:20:59', 'submission_id': '1gqfv2e'}
{'comment': 'Pete Buttigieg', 'created': '2024-11-14 21:43:43', 'submission_id': '1gqfv2e'}
{'comment': 'Pete Buttigieg is masterful at messaging and communicating. \n\nJosh Shapiro\n\nGavin Newsom\n\nI hate to say it but we need a white man to win. They’ll have our backs but we want to win. I think a lot of voters who are not close to politics like we all are just walked in a picked the white guy.', 'created': '2024-11-15 02:50:36', 'submission_id': '1gqfv2e'}
{'comment': "This makes me wish I was more politics oriented. Anyone can run for president given they're 35 or older. I turn 35 next year. I feel like if I could run for president I could run for something else. I'm on disability and have many LGBT friends. I care a lot for people and have made it my soul mission that people are happy, healthy, and have the same rights as everyone else. But I have no background, I'm uneducated, I'm poor, and thus where my chance to make change gets nerfed. \n \nI do attend protests. I protested George Floyd's murder. But idk how to get much more involved than that.", 'created': '2024-11-14 01:38:41', 'submission_id': '1gqfv2e'}
{'comment': 'Maybe Jeffries?', 'created': '2024-11-13 23:22:42', 'submission_id': '1gqfv2e'}
{'comment': 'They didn\'t "repeat trying to have the first woman president" they ran the VP when Biden dropped out after the primaries. She happened to be a woman.', 'created': '2024-11-13 20:54:51', 'submission_id': '1gqfv2e'}
{'comment': 'The MAGAts made the democratic party platform all about trans rights and you fell for it. Yes that was one of the issues discussed by the left but I never saw one ad for a democrat promoting trans rights but I saw 100 republican ads saying all the democratic candidates care about is trans rights and letting men use ladies bathrooms. They spliced so much bs together it was crazy. I live in Ohio. It was relentless.', 'created': '2024-11-13 21:09:39', 'submission_id': '1gqfv2e'}
{'comment': 'In total agreement.', 'created': '2024-11-13 19:27:55', 'submission_id': '1gqfv2e'}
{'comment': 'I don’t think they were ignored. I think they get pissed any time someone talked about equal rights. What!!! I’m supposed to share my rights?????', 'created': '2024-11-13 21:18:44', 'submission_id': '1gqfv2e'}
{'comment': "> The “federated platform” 99% of the bs servers just went down. \n \nThat's because they're experiencing a massive influx of new users in a short period of time, the servers are already back up. The same thing would happen if any Mastodon instance received a huge flow of new users in a brief time frame. \n \n> There is nothing difficult about installing the default app and creating Mastodon.social account. \n \nI didn't say there was, I have an account myself.", 'created': '2024-11-15 16:07:06', 'submission_id': '1gqfv2e'}
{'comment': 'Are people advocating for a recount? Is there a recount happening?', 'created': '2024-11-13 22:02:49', 'submission_id': '1gqfv2e'}
{'comment': 'Unfortunately yes I agree.', 'created': '2024-11-13 23:22:29', 'submission_id': '1gqfv2e'}
{'comment': "I like Pete. He's good at debating. I saw him destroy a MAGAt and I've been a fan ever since. 😁", 'created': '2024-11-14 21:45:51', 'submission_id': '1gqfv2e'}
{'comment': "That sounds awesome to me. Don't stress yourself out. Everyone contributes, no matter how much or how little they can give. I believe someone will come along who will be the candidate we can all get behind. Obama was that candidate in the 2000s.\n\nIn the meantime, I plan on voting in every local and state election we have. That's just as, if not more, important than a presidential election. Join protests and speak your mind. That's all most of us can do. Grassroots efforts take time.", 'created': '2024-11-14 03:04:44', 'submission_id': '1gqfv2e'}
{'comment': 'Democrats had a very slim bench. She was picked by the party to follow Biden. Whether Biden dropped out or not she was the queen anointed. It seems from exit polls that many Americans are not ready for a woman which really does not matter to the party because they want to score points not necessarily win elections.', 'created': '2024-11-13 21:55:27', 'submission_id': '1gqfv2e'}
{'comment': "I did not fall for it but it was all my swing voters talked about. It is crazy that the Republicans can drive the Democrat's messaging.", 'created': '2024-11-13 21:51:06', 'submission_id': '1gqfv2e'}
{'comment': 'This is some of it right here. I stand my analysis, Democrats won’t win with the strategy of 2024. \nBut, I also expect Trump to fuck up the economy and our strategic alliances in short order. So, everything bad that happens from here on out will be the fault of Republicans.', 'created': '2024-11-13 21:48:24', 'submission_id': '1gqfv2e'}
{'comment': 'Having everything under one roof can knock the whole system down. Apple users can attest to that, not being able to use numerous services from the AppStore to Apple TV.', 'created': '2024-11-15 20:54:33', 'submission_id': '1gqfv2e'}
{'comment': 'We are advocating but I don’t think so. \nApparently, we’re just gonna lie down and take it.', 'created': '2024-11-13 22:58:18', 'submission_id': '1gqfv2e'}
{'comment': "That's my problem. I actually want to MAKE change because I'm done sitting around. If you can't do anything right, I'll do it myself kinda attitude. lol so I am researching ways to actually DO something.", 'created': '2024-11-14 03:15:42', 'submission_id': '1gqfv2e'}
{'comment': 'It wasn\'t about scoring points. It was what they and a lot of us felt was the best shot to win the election. Hard to say if it failed because she was a woman or anything else about her campaign. It could just be that inflation was always gonna fuck them over. \n\nBiden and Harris were never my first choice but claiming she only ended up where she was because Democrats were "trying to have the first woman president" doesn\'t ring true to me.', 'created': '2024-11-13 21:59:43', 'submission_id': '1gqfv2e'}
{'comment': "I feel like you think I am arguing Bluesky is better than Mastodon. I never said that. I was on Mastodon first. Fact is all the people leaving Twitter, including most of the people I follow and people who in general have a lot of followers, joined Bluesky. That wasn't my choice but I have no control over it. I am not denying that Mastodon has several superior features compared to Bluesky, I just know most people aren't going to make multiple accounts for different services so all I am saying is if you're curious about one and are interested in the other, you can explore both with one account. I am not promoting Bluesky over Mastodon.", 'created': '2024-11-15 21:39:08', 'submission_id': '1gqfv2e'}
{'comment': 'So, who else did the party consider? AOC? Bernie? Heck who do the Democrats have in the wings now that they are grooming for the top spot? The Republicans have tons of folks who are getting media attention who can all run for something while the Democrats will fall back on the same old same old. I am betting it is always, "It\'s the economy stupid" With the problems the Democrats never let the public know how the price of eggs was their main concern. Given Democrats love unions and Hispanics who don\'t vote for them is mystifying to me.', 'created': '2024-11-13 22:38:17', 'submission_id': '1gqfv2e'}
{'comment': "I don't think the party considered much else, we all came to the conclusion that this would probably be our best shot. \n\nDemocrats in the wings? Shapiro, AOC, Buttigieg, Whitmer, Newsom, Beshear, Booker, I dunno. We'll see. \n\n> With the problems the Democrats never let the public know how the price of eggs was their main concern. Given Democrats love unions and Hispanics who don't vote for them is mystifying to me.\n\nI think the messaging problem at this point is less what the Democrats are saying and more what people are and are not hearing. We're in an information war. Biden was very good president for the middle class and for unions and stuck a soft landing on the economy after nobody thought it would happen, but people don't want to hear it.", 'created': '2024-11-13 22:48:00', 'submission_id': '1gqfv2e'}
{'comment': "My observation on the Democratic Party: Whites don't like Blacks, Blacks don't like Gays, Women don't like Men, Hispanics don't like immigrants, etc. On the other hand, we have Republicans who all unite behind owning the libs. I just don't know how we get all those people in the same boat, rowing in the same direction.", 'created': '2024-11-14 03:24:33', 'submission_id': '1gqfv2e'}
{'comment': 'Free firewall workaround:\n\nhttps://archive.is/Xj6vi', 'created': '2024-11-13 15:15:12', 'submission_id': '1gqdo80'}
{'comment': "Well that.....seems like a bad idea. Someone should really look into that and make sure it doesn't happen. Idk who would or could have that kind of capability but someone. We probably shouldn't frog walk into this hot pot but far be it from me to suggest maybe someone do something for the common good.", 'created': '2024-11-13 15:32:56', 'submission_id': '1gqdo80'}
{'comment': 'Purging Generals is Dictator stuff 101! Create some sort a sham council that “finds cause” and then use that as an excuse to get rid of them. \n\nTrump already has the legislative branch under his thumb because the Republicans will not oppose him. The Supreme Court won’t restrict him and has already ruled that he has immunity. He has already sowed the seeds of distrust in the press by labeling everything that is critical of him as fake news. And nowadays with Social media he can bypass the free press, plus he has X/Twitter thanks to Elon. \n\nThe military is the last bastion of power. This is his move to control that. \n\nI guarantee you, he is going start some stupid stuff like give a militarily stupid order. Not illegal per se, just ill advised. Some military general is going to advise against it. He will see that as a mark of disloyalty and that triggers the purge. Or some external event, heaven forbid like Sept. 11th, will trigger a completely disproportionate response leading to war. \n\nMan! Has no one read any history??', 'created': '2024-11-13 16:32:56', 'submission_id': '1gqdo80'}
{'comment': 'My friends, I’ve been thinking about this a lot over the last couple months. I think it would be wise for Dems to revisit and revise our stance on firearm ownership. \n\nSmart and responsible ownership might be necessary to protect yourself and loved ones.\n\nWith the way things are heading, fully expect Velveeta Voldermort to declare America “safe again” and attempt to disarm the public. His cult will gladly give up their stashes if he asked them to.\n\nEdit: sorry didn’t fully flesh out my post. Disarming a society is a key moment in a fascist takeover. Then things get even darker.', 'created': '2024-11-13 16:46:45', 'submission_id': '1gqdo80'}
{'comment': 'Keep in mind folks that he’s doing that because he tried to commit treason during his last Presidency by using the military against civilians and the generals told him no.\n\nHe’s not doing this for any other reason than to ensure the next time he commits treason no one will object.', 'created': '2024-11-13 17:11:59', 'submission_id': '1gqdo80'}
{'comment': 'More Nazi shit from the Nationalist Conservative Party, or Nat-C if you will.', 'created': '2024-11-13 16:19:57', 'submission_id': '1gqdo80'}
{'comment': 'Stalin purged Generals... and Colonels, Majors, Captains...and then the Nazis invaded.', 'created': '2024-11-13 19:05:49', 'submission_id': '1gqdo80'}
{'comment': 'Buy a gun. Learn how to use it and keep it safely stored.', 'created': '2024-11-13 20:08:47', 'submission_id': '1gqdo80'}
{'comment': 'I don’t think he can just remove generals via EO.', 'created': '2024-11-13 15:41:20', 'submission_id': '1gqdo80'}
{'comment': "I'm thinking more and more that Biden should send military to smoke the russia front line in Ukraine. it will keep rump's idiots busy for a while at least.", 'created': '2024-11-13 16:46:55', 'submission_id': '1gqdo80'}
{'comment': 'This and the musk appointment is terrifying. I think "efficiency" is a code word for commitment to the administration.', 'created': '2024-11-13 17:21:27', 'submission_id': '1gqdo80'}
{'comment': 'Can you IMAGINE the outcry if Obama had attempted anything of the sort?', 'created': '2024-11-13 20:13:05', 'submission_id': '1gqdo80'}
{'comment': 'Step one in handing control of our military to Putin.', 'created': '2024-11-13 18:08:20', 'submission_id': '1gqdo80'}
{'comment': "Where are Biden's executive orders and pardons???", 'created': '2024-11-13 21:42:34', 'submission_id': '1gqdo80'}
{'comment': 'He wants chaos', 'created': '2024-11-13 17:03:18', 'submission_id': '1gqdo80'}
{'comment': 'Probably on direct order from putin', 'created': '2024-11-13 21:27:29', 'submission_id': '1gqdo80'}
{'comment': 'No paywall: [Trump creating MAGA military with purge of generals](https://www.newsweek.com/trump-creating-maga-military-purge-generals-veterans-group-warns-1985025)', 'created': '2024-11-13 15:31:29', 'submission_id': '1gqdo80'}
{'comment': 'This is how Hitler did it too..', 'created': '2024-11-14 00:24:44', 'submission_id': '1gqdo80'}
{'comment': 'The real question then becomes would career generals/admirals who have sworn their lives to defend this country against all enemies foreign and DOMESTIC be willing to just walk away with their tails between their legs like a contestant from the Apprentice or would they do something.', 'created': '2024-11-14 02:06:51', 'submission_id': '1gqdo80'}
{'comment': 'Now, imagine if the Democrats pulled this. The Right would be screaming, and tue Fsr Right especially would be yelling loudly about the Democrats using Communist tactics. In fact, what Trump is trying to do is to impose a purity test on his most senior officers. The Republicans need stop this in its tracks', 'created': '2024-11-14 15:58:13', 'submission_id': '1gqdo80'}
{'comment': 'The Democratic Party should (and likely will) never be forgiven for not safeguarding democracy when they could. It’s easily lost and will be almost impossible to re-establish.\n\nIt was obvious to anyone with room temperature IQ that Trump needed to be quickly arrested, tried and convicted for attempting a coup and his enablers should have been rounded up and tried as accessories. Strike the shepherd, the flock will scatter.\n\nNow, instead, war criminal pardoning Pete Hegseth is going to be Secretary of Defense.', 'created': '2024-11-13 16:41:10', 'submission_id': '1gqdo80'}
{'comment': 'Resistance to this level of authoritarianism will not go well for many that try. Careers and lives will be destroyed in the process. Stay safe out there, it’s going to get bad for those of us that voted and support freedom and liberty.', 'created': '2024-11-13 15:59:51', 'submission_id': '1gqdo80'}
{'comment': 'He’s taking over the military like authoritarians do. If he drafts an XO there’s nothing anyone can do about it. He’s not going to follow any laws or the constitution no matter what he says. Then he can unleash the military on the American people whenever he wants to stop protests.', 'created': '2024-11-13 15:34:47', 'submission_id': '1gqdo80'}
{'comment': 'The entire Trump Presidency seems like a bad idea, but here we are.', 'created': '2024-11-13 16:27:14', 'submission_id': '1gqdo80'}
{'comment': 'I’m afraid we are already in the pot at this point. There’s no one who is going to be able and willing to stop him.', 'created': '2024-11-13 19:45:06', 'submission_id': '1gqdo80'}
{'comment': 'If this comes to pass, our military is done. Not right away, but corruption will take hold.', 'created': '2024-11-13 21:29:59', 'submission_id': '1gqdo80'}
{'comment': "What can we do to stop this? What can stop him is there any good news at all? This scares me like I don't know what", 'created': '2024-11-13 18:55:59', 'submission_id': '1gqdo80'}
{'comment': 'Ohhhh I like that, the NatC party has a nice ring to it', 'created': '2024-11-13 17:01:52', 'submission_id': '1gqdo80'}
{'comment': 'U needa coin that and spread this like wildife. #NatC', 'created': '2024-11-13 19:24:21', 'submission_id': '1gqdo80'}
{'comment': 'You do realize the military has drones and tanks right?', 'created': '2024-11-13 22:01:16', 'submission_id': '1gqdo80'}
{'comment': 'Did you think he would appoint a Fox News host as Secretary of Defense? \n\nAsking for 80 million friends...', 'created': '2024-11-13 16:56:45', 'submission_id': '1gqdo80'}
{'comment': ' Via above Newsweek link “If enacted, the executive order could bypass the traditional Pentagon promotion system. Newsweek has contacted VoteVets and Trump’s office for comment via email.”', 'created': '2024-11-13 16:12:57', 'submission_id': '1gqdo80'}
{'comment': 'Look it up. I’m not doing your homework for you.', 'created': '2024-11-17 02:25:34', 'submission_id': '1gqdo80'}
{'comment': 'The time is going to come when the American people are going to have to do something instead of depending on everybody else to safeguard their rights. The question is will the American people take to the streets? Will the American people keep protesting in spite of what might happen?', 'created': '2024-11-14 03:23:02', 'submission_id': '1gqdo80'}
{'comment': 'Oh FFS. I can\'t take four years of watching Trump do horrid shit and people\'s reactions being "Why didn\'t the Democrats stop this!"\n\nNo, this one\'s on the American people for voting in a dictator wannabe. And on the media for continually sanewashing Trump rather than reporting on what he is.', 'created': '2024-11-13 17:51:55', 'submission_id': '1gqdo80'}
{'comment': 'We’re blaming the Democrats for this? How about the GOP for starters?', 'created': '2024-11-13 17:42:16', 'submission_id': '1gqdo80'}
{'comment': ">The Democratic Party should (and likely will) never be forgiven for not safeguarding democracy when they could.\n\nAt what point in time could they do that? And what could they have done? \n\nBecause when I see here is a problem that's much bigger than something you can blame on Democrats.", 'created': '2024-11-13 16:55:23', 'submission_id': '1gqdo80'}
{'comment': 'If the choice is between freely giving into authoritarianism and letting/helping them make things worse, or fighting it in any way I can even if it’s not going to do much but slow them down or make them work a little more for it, I’m going to fight. If we just roll over and give up they get what they want for free then they’ll definitely take it, if we fight and make them work for it it will at least slow them down, make them spend resources and effort in places when they could be spending it elsewhere. We’ve lost the war of maneuver but that doesn’t mean we’ve lost everything, make them fight a war of attrition.\n\n\nDo not obey in advance, make them work for every bit of progress they try and make\n\nhttps://youtu.be/9tocssf3w80', 'created': '2024-11-13 19:19:48', 'submission_id': '1gqdo80'}
{'comment': "Yeah. That's what I mean. Somebody should stop that.", 'created': '2024-11-13 15:55:14', 'submission_id': '1gqdo80'}
{'comment': 'I don’t know the answer to that question.', 'created': '2024-11-13 20:25:43', 'submission_id': '1gqdo80'}
{'comment': 'Absolutely- I’m moreso talking about the Christian Taliban coming to your door using intimidation tactics. I get that we are not equipped to fight our own government.\n\nHopefully that never happens but if it does, you will at least have a deterrent.', 'created': '2024-11-13 22:02:19', 'submission_id': '1gqdo80'}
{'comment': 'Because the Democrats had 4 years to stop this and instead they:\n\n- slow walked the criminal proceedings \n- let Trump return from the margins. He was toxic and they let him rehabilitate himself\n- let him and his enablers run wild\n- persisted with an elderly candidate clearly in cognitive decline for two years past when the alarm bells were rung\n\nThis is 100% on them. They showed what they would do if they were sent back to kill Baby Hitler - they’d give him presents and say ‘maybe in this timeline he’ll be different’', 'created': '2024-11-13 17:57:20', 'submission_id': '1gqdo80'}
{'comment': 'The GOP doesn’t exist anymore. That’s your first mistake.\n\nIt’s MAGA now.\n\nThe Democratic Party was given power and squandered it because they were trying to appease everyone and didn’t do what needed to be done.\n\nThey were given one last shot to be rid of him and his supporters and they fumbled on the 1 yard line. In any other functioning democracy, Trump would have been jailed for sedition as an ‘enemy of the people’.\n\nNow, he’s back with the Congress, Senate AND the popular vote because the Democratic genius trust couldn’t get their fucking shit together. There’ll be no giving up power in 2028. There’ll be no undoing the damage he does this time. There’s no Vindman or Bill Barr (ffs!) or General Kelly to curb his worst inclinations. This is 100% on the Democratic Party.', 'created': '2024-11-13 17:52:50', 'submission_id': '1gqdo80'}
{'comment': 'Damn straight! Fight!!!', 'created': '2024-11-13 19:25:00', 'submission_id': '1gqdo80'}
{'comment': 'Look man, I totally get the sentiment, but I\'ve have had a really hard life up to this point in my life (it\'s starting to finally get better), and I don\'t believe in the afterlife.\n\n\n\nAs much as I\'d "want to fight/resist," if it means life in a jail cell away from my family or possibly death, then just no. \n\n\nI only have one life to live and being a statistic of one person that\'s shot dead in the streets protesting just isn\'t worth it to me for the potential reward(s).\n\n\n\nI know how selfish this sounds, and this comment will probably get downvoted, but there\'s a massive difference in my mind between actively participating in a facist (nazi) governmental structure and just laying low to fight another day when your effort can actually lead to positive results. \n\n\n\nIf they jail you and throw away the key or shoot you dead in a massive public protest, then what did you truly accomplish for what you lost?', 'created': '2024-11-13 21:18:56', 'submission_id': '1gqdo80'}
{'comment': "Yes, now. Not later. This ends one way. Let's not pretend otherwise. Later will be too late", 'created': '2024-11-13 17:50:48', 'submission_id': '1gqdo80'}
{'comment': '8 days ago would’ve been a good time to stop it.', 'created': '2024-11-13 19:25:21', 'submission_id': '1gqdo80'}
{'comment': 'When Hitler took over Germany how long did he last? Hope we can survive until his reign ends', 'created': '2024-11-13 21:05:36', 'submission_id': '1gqdo80'}
{'comment': "Sure would've", 'created': '2024-11-13 19:30:54', 'submission_id': '1gqdo80'}
{'comment': 'He came to power in 1933 and died in 1945. A LOT happened in between those years.', 'created': '2024-11-14 09:18:51', 'submission_id': '1gqdo80'}
{'comment': '‘Facebook is for racists and grandparents’ to quote ted lasso', 'created': '2024-11-13 12:05:13', 'submission_id': '1gqad5z'}
{'comment': 'Facebook is an online retirement home for white nationalists. Been off that shit for like 4 years. \n\nAs for twitter, I left about a year and a half ago. Best decision I’ve ever made. Instagram followed about 6 months ago.', 'created': '2024-11-13 13:41:14', 'submission_id': '1gqad5z'}
{'comment': 'Absolutely they need to see painstaking numbers losses in the coming weeks and months. \n\nWe do need a network and way to continue communicating positively and honestly and to build together nation/worldwide though. \n\nI mentioned Bluesky in a other comment and am looking into more decentralized, open source, co-op over evil corporate options out there.', 'created': '2024-11-13 13:49:24', 'submission_id': '1gqad5z'}
{'comment': 'I\'m not a fan of Facebook. The only reason I go there is to check in on my aunt who lives a few states away. \n\nAll I\'ve seen on there is Republican propaganda that my "friends" posted.', 'created': '2024-11-13 13:49:00', 'submission_id': '1gqad5z'}
{'comment': "I did November 6 and not looking back!\n\nTiktok as well which is the worst it can be for bots and misinformation\n\nI am new to actively using reddit like I am now, so I haven't felt the ick yet...hopefully I can keep my algorithm like that lol", 'created': '2024-11-13 14:06:19', 'submission_id': '1gqad5z'}
{'comment': 'Did Facebook and Twitter ever start fighting misinformation?\n\nAll I ever saw Facebook do was stick a disclaimer over posts that said something along the lines of "this is incorrect information". Every dope in the comments just dismissing it and agreeing with the contents of posts regardless.\n\nFacebook has the means to fight it - removing these posts, and in some cases maybe even removing the accounts responsible for said posts - but they never did any of that. Either they were in on it, or they didn\'t want to seem like they had a side to take and allowed people to take advantage.\n\nIt has slowly gotten worse since 2016 and is literally just a total shitshow now. My entire feed is either how much liberals suck, culture war nonsense, and going all the way down to the earth being flat.', 'created': '2024-11-13 14:32:15', 'submission_id': '1gqad5z'}
{'comment': 'Just went on to BlueSky after last six months on toxic Twitter. Feels good everywhere. Plenty of material on their site.', 'created': '2024-11-13 16:05:25', 'submission_id': '1gqad5z'}
{'comment': 'Why not jump on big time and flood it with truth and counter every MAGA idiot on there. They want us off FB and X so they can continue brainwashing without opposition', 'created': '2024-11-13 13:29:19', 'submission_id': '1gqad5z'}
{'comment': 'Way ahead of you. Social media is the stupidest, evilest shit.', 'created': '2024-11-13 13:51:15', 'submission_id': '1gqad5z'}
{'comment': 'Boycott Tesla!!!', 'created': '2024-11-13 14:32:22', 'submission_id': '1gqad5z'}
{'comment': 'XItter is nothing but maga propaganda by now.', 'created': '2024-11-13 15:25:21', 'submission_id': '1gqad5z'}
{'comment': 'Facebook is pretty much dead nowadays, the "dead internet" conspiracy actually became real in Facebook.', 'created': '2024-11-13 17:33:39', 'submission_id': '1gqad5z'}
{'comment': "Haven't really ever properly been on Twitter, but fully stopped using it when Musk bought it.\n\n\nI stopped using Meta Nov 2023 Just got on Bluesky last night. Zuck quite clearly endorsed Trump and Meta quite clearly doesn't moderate for crap\n\n\n\xa0I'm gonna be looking for all kinds of social media platforms and all sorts of alternatives to social media to promote my music and such. Gonna grassroots the s*** out of my career.\n(Meta is basically pay-to-play now anyway. They bury you if you don't pay to advertise)", 'created': '2024-11-13 14:35:27', 'submission_id': '1gqad5z'}
{'comment': 'Left Facebook after being whipped into a frenzy in 2016. Only posted on X a few times, back when it was called twitter. Threads? No thank you. Yesterday I cancelled my subscription to the Washington Post. Now I’m wondering where I can live.', 'created': '2024-11-13 14:19:45', 'submission_id': '1gqad5z'}
{'comment': 'Get off social media and turn off the mainstream media! I deleted TikTok and Facebook last week. Felt so good. These apps keep us angry and fighting with each other.', 'created': '2024-11-13 14:50:24', 'submission_id': '1gqad5z'}
{'comment': 'Bluesky has been honestly great', 'created': '2024-11-13 18:10:05', 'submission_id': '1gqad5z'}
{'comment': 'I’m done with Facebook. Just over the platform altogether. It’s a fucking addiction of nobodies that just want to troll. I thinned down my friends to literally only a handful of people and unfriended everyone else. It feels so liberating TBH. My mom’s pissed now that she can’t troll my page.', 'created': '2024-11-13 14:42:35', 'submission_id': '1gqad5z'}
{'comment': 'We had a 4 year window to put regulations in place. No one cared then. The government has no fucking idea what to do.', 'created': '2024-11-13 14:42:00', 'submission_id': '1gqad5z'}
{'comment': 'CNN. A day late and a dollar short.', 'created': '2024-11-13 14:42:39', 'submission_id': '1gqad5z'}
{'comment': "Closed both accounts when he won in 2016. Guess what....I don't miss them.", 'created': '2024-11-13 16:47:25', 'submission_id': '1gqad5z'}
{'comment': 'I think you’ll need a plan to combat this disinformation engine.', 'created': '2024-11-13 18:17:55', 'submission_id': '1gqad5z'}
{'comment': 'Not being a conspiracy theorist, but I think Zuckerberg planted Musk to run Twitter so that people can return to Facebook.', 'created': '2024-11-13 18:25:53', 'submission_id': '1gqad5z'}
{'comment': 'I hard deleted IG and Facebook November 6th. Deleted Twitter account when Elon took over. Several months back I deleted Snapchat and TikTok.', 'created': '2024-11-13 18:37:36', 'submission_id': '1gqad5z'}
{'comment': 'How do we combat the misinformation? I can get off because I don’t use it much anyway but how do we message the people that may want to hear the truth?', 'created': '2024-11-13 18:39:04', 'submission_id': '1gqad5z'}
{'comment': "You don't need permission, most of us have bailed on those platforms long ago", 'created': '2024-11-13 21:35:01', 'submission_id': '1gqad5z'}
{'comment': 'But like… I’m no political expert, I’m in my 30’s, and I know it’s all a sham from them.\n\nDo I just have special powers or did the woke mind virus just miss me? 🤣', 'created': '2024-11-13 12:07:35', 'submission_id': '1gqad5z'}
{'comment': "I don't bother except to make fun of my local conservative reps", 'created': '2024-11-13 13:39:12', 'submission_id': '1gqad5z'}
{'comment': "I got kicked off both because I was abusive to conservatives. I went through 4 Twitter accounts and 3 FB. Now I'm banned for life. Probably for the best.", 'created': '2024-11-13 14:36:46', 'submission_id': '1gqad5z'}
{'comment': 'Way ahead of you. Dumped that cesspool a few years ago.', 'created': '2024-11-13 17:16:05', 'submission_id': '1gqad5z'}
{'comment': 'Deleted Twitter from my phone like november 6', 'created': '2024-11-13 17:22:17', 'submission_id': '1gqad5z'}
{'comment': 'I went to Bluesky a few weeks ago..... glad I did', 'created': '2024-11-13 18:01:15', 'submission_id': '1gqad5z'}
{'comment': 'What are the most reliable social media and news sources?', 'created': '2024-11-13 18:11:26', 'submission_id': '1gqad5z'}
{'comment': 'A lot of people I know are moving to Mastadon.', 'created': '2024-11-13 19:42:30', 'submission_id': '1gqad5z'}
{'comment': 'I’ve never met a person who has a twitter. Do regular people actually use it?', 'created': '2024-11-14 01:42:55', 'submission_id': '1gqad5z'}
{'comment': "I'm on Bluesky.", 'created': '2024-11-14 18:57:17', 'submission_id': '1gqad5z'}
{'comment': "That's exactly what I'm doing. I'm done with social media..it's nothing but Trump TV 24/7 I give up. I'll just scroll the Internet like it's 2003", 'created': '2024-11-14 21:55:17', 'submission_id': '1gqad5z'}
{'comment': 'It\'s people\'s lifeline sadly, especially since covid. There were never any guardrails put in place, and no-one thought that parents would be handing their kids unfettered access to ipads 24/7 so they stay "out of their hair"...and most of the time that\'s because the parents can\'t get off their phones either.\n\n\n\xa0Everyone warning about it was called hysterical.\n\n\n\xa0And now if anyone you know is trying to be an influencer or content creator, they have to have all the social media platforms and use them all.\xa0 They *will* not give it up because they could be rich one day, they just need to go viral.\n\n\n\xa0Going viral shouldn\'t be a goal of our society, but it is above most other things and people will do anything to achieve it and if you try to speak out against this behavior your impeding "muh freedoms" and you are just "old and lame"', 'created': '2024-11-13 13:48:16', 'submission_id': '1gqad5z'}
{'comment': '"I want to bring about change... so I removed myself from the conversation on all social media and tuned out of politics for the next 4 years"\n\n\nI get why people feel this way, but that\'s not the right path going forward. We need to have our voices heard even in the most obscure right-wing sites. Misinformation and disinformation should not have any safe spaces.\xa0', 'created': '2024-11-13 18:30:51', 'submission_id': '1gqad5z'}
{'comment': 'Bluesky. Except remain on fb and x to troll people', 'created': '2024-11-13 19:03:10', 'submission_id': '1gqad5z'}
{'comment': 'Might want to leave re dd it too, a lot of trolls and misinfo here', 'created': '2024-11-13 22:04:52', 'submission_id': '1gqad5z'}
{'comment': 'Yes, get in Blue Sky', 'created': '2024-11-17 22:13:20', 'submission_id': '1gqad5z'}
{'comment': 'And many times those are the same', 'created': '2024-11-13 13:53:15', 'submission_id': '1gqad5z'}
{'comment': "And still is. People gave crap over Twitter for years, rightly so but, I found same amount of toxic racism on Twitter as I did on Facebook. The most openly racist things I've seen against Latinos & migrants were Instagram comments. \n\nThe only times I go on Facebook is to celebrate the birthdays of my IRL friends and family who still use it. I've been more active here, Bluesky, and on Twitter to annoy the far right in their 'safe space' until they boot me from there. I want to give a good reason why my account dies on that crap app.", 'created': '2024-11-13 18:59:00', 'submission_id': '1gqad5z'}
{'comment': 'I say facebook is for boomers and losers.', 'created': '2024-11-13 15:31:08', 'submission_id': '1gqad5z'}
{'comment': 'If it were not for my grandparents I\'d be like donnie "Facebook? Never heard of him"', 'created': '2024-11-13 16:05:58', 'submission_id': '1gqad5z'}
{'comment': "I'm hoping this truly becomes the trend. Just ditch it ALL and get back to seeing and meeting in person. \n\nEven if it's cheap to free house hangs or whatever. (with the prices as they are now and...clearly going to be skyrocketing I get that 'going out' is becoming less and less realistic every day). \n\nOn the other hand, those of us with actual intelligence do need to be able to organize and get truthful information to each other. I've never had Twitter and FB was only used for marketplace so I can ditch those today no problem. \n\nI might give Bluesky a go just because, not only is it decentralized and apparently owned by themselves and the workers, it seems logical that MOST people sprinting away from these other online places probably align with the values and mindset of myself.", 'created': '2024-11-13 13:46:52', 'submission_id': '1gqad5z'}
{'comment': 'Yeah it’s like if Florida was a website.\n\nTwitter is like if a 13-year-old’s temper tantrum was a website.', 'created': '2024-11-13 17:26:29', 'submission_id': '1gqad5z'}
{'comment': 'They’re all garbage.', 'created': '2024-11-13 19:34:00', 'submission_id': '1gqad5z'}
{'comment': 'We need to mobilize. They have mobilized brilliantly with the help of Russia and Elonia. I am trying to gain traction on Threads and Bluesky but am not having any luck. Yet. But we need to help each other through what comes next because being decentralized only helps them.', 'created': '2024-11-13 14:39:17', 'submission_id': '1gqad5z'}
{'comment': "The decentralized stuff isn't taking off. It's complicated and fragmented. Social media gained popularity because it was easy and you could find people on there. I want the decentralized stuff to succeed, but the experience needs to be way smoother. You should be able to interact with people on different services and not notice that they are on different services. Unfortunately, the design also introduces performance costs which makes them more expensive to run.", 'created': '2024-11-13 15:34:09', 'submission_id': '1gqad5z'}
{'comment': 'Yep. I keep Facebook for a few family members but it’s a cesspit and rather not even open the app anymore.', 'created': '2024-11-13 14:04:39', 'submission_id': '1gqad5z'}
{'comment': 'I recommend calling your aunt, especially on video.', 'created': '2024-11-13 15:31:02', 'submission_id': '1gqad5z'}
{'comment': 'I can\'t defend Facebook, but I don\'t understand the circle-jerk about the clientele. You don\'t have to "friend" Republican propagandists.', 'created': '2024-11-13 21:55:41', 'submission_id': '1gqad5z'}
{'comment': "> I am new to actively using reddit like I am now, so I haven't felt the ick yet...hopefully I can keep my algorithm like that lol\n\nUse Old Reddit if you can (https://old.reddit.com). New Reddit is more algorithm based. Old Reddit everyone was seeing the same things if they were subscribed to the same subs.", 'created': '2024-11-13 17:46:00', 'submission_id': '1gqad5z'}
{'comment': 'Zuckerberg more or less endorsed Trump on TV. So yea... :/', 'created': '2024-11-13 14:41:44', 'submission_id': '1gqad5z'}
{'comment': "Those platforms die without us, Truth Social is worthless. We're keeping their propaganda machines alive with our clicks.", 'created': '2024-11-13 13:38:47', 'submission_id': '1gqad5z'}
{'comment': ">Why not jump on big time and flood it with truth and counter every MAGA idiot on there.\n\nBecause engaging with a hive mind doesn't change it.", 'created': '2024-11-13 14:09:36', 'submission_id': '1gqad5z'}
{'comment': "Try that. Let us know how it goes. RUSSIAN BOTS are everywhere on Xitter. It's a literal shit storm.", 'created': '2024-11-13 15:26:15', 'submission_id': '1gqad5z'}
{'comment': 'Ummm...Just to note, Reddit is social media.', 'created': '2024-11-13 14:08:42', 'submission_id': '1gqad5z'}
{'comment': "Reddit is just like every other social media outlet. Don't fool yourself.", 'created': '2024-11-13 15:27:06', 'submission_id': '1gqad5z'}
{'comment': "I have to imagine it's even worse on Twitter where there seem to be no guardrails whatsoever.", 'created': '2024-11-13 21:13:48', 'submission_id': '1gqad5z'}
{'comment': 'Face to face communication. We need to get back to being real people and not extensions of the Internet.', 'created': '2024-11-14 01:49:59', 'submission_id': '1gqad5z'}
{'comment': "You'll have to talk to them, directly. It's more work, but it's also more impactful, and more authentic.", 'created': '2024-11-14 06:38:01', 'submission_id': '1gqad5z'}
{'comment': 'No for some reason millennials are the only group that’s been able to identify misinformation!', 'created': '2024-11-13 12:57:14', 'submission_id': '1gqad5z'}
{'comment': 'If you find any, do share! 😉', 'created': '2024-11-14 01:49:02', 'submission_id': '1gqad5z'}
{'comment': 'Every ad you scroll by feeds the beast….you have to disconnect', 'created': '2024-11-13 22:13:13', 'submission_id': '1gqad5z'}
{'comment': 'Funnily enough the next post is about this same topic\n\nhttps://www.reddit.com/r/KamalaHarris/s/gtOT8b5izW', 'created': '2024-11-13 19:35:08', 'submission_id': '1gqad5z'}
{'comment': "Boomer here... never did facebook or twitter. Did not vote for Trump nor any of my boomer age friends or family voted for him. Didn't see many boomers at the capital building?!? Quit this fucking blame the boomers nonsense and go after Gen what ever the fuck!!", 'created': '2024-11-13 18:42:05', 'submission_id': '1gqad5z'}
{'comment': 'Basically the same!', 'created': '2024-11-13 15:31:37', 'submission_id': '1gqad5z'}
{'comment': 'Crappyscotman where is the joke?? ... you sound and act just like Maga.', 'created': '2024-11-13 20:18:27', 'submission_id': '1gqad5z'}
{'comment': "Instagram is if Hollywood was a website. It's glitz and glamour above but unspeakable hate & horror once you scratch the surface.", 'created': '2024-11-13 19:13:43', 'submission_id': '1gqad5z'}
{'comment': "Absolutely. I read yesterday that Bluesky saw a 700k jump in users so (my little optimistic self that I am) am hoping that's a good thing? \n\nAlso, mind you I'm still learning here, is decentralized internet a positive or a negative overall for not only keeping communications under less watch/scrutiny, but also keeping personal privacy in tact?\n\n*Apologies if I phrased that all kinds of odd*", 'created': '2024-11-13 14:53:38', 'submission_id': '1gqad5z'}
{'comment': 'I also think it would be incredibly helpful to compile a \'master list\' of sorts of reputable, facts only, news and information sites/sources/channels.\n\nDitching the obviously now bought and sold "media" that\'s not even producing news anymore, could help in throwing some wrenches into the propaganda machine.\n\nThese steps need to be taken NOW as they are very clearly following the Nazi era playbook and I wouldn\'t be surprised if destroying and media that doesn\'t suit their agenda starts to get eliminated and quickly.', 'created': '2024-11-13 14:57:42', 'submission_id': '1gqad5z'}
{'comment': "Agreed. People are really negative there too. I was off of social media for five years and only went back for family. I added some friends, as you do, and now I regret I didn't use an alias.", 'created': '2024-11-13 14:07:25', 'submission_id': '1gqad5z'}
{'comment': 'She was the one who suggested Facebook. She is going through chemo and doesn\'t feel like talking on the phone. She\'s in her 80\'s so she thinks she has to be "presentable" in order to FaceTime Lol!! Otherwise, yes, I\'d love to do that.', 'created': '2024-11-13 18:29:25', 'submission_id': '1gqad5z'}
{'comment': "No I don't. But I'm from a really small town so these are people I've known my whole life. I think it's because I've lost so many people throughout my life that I hang onto people even when I know they're not good for me. But I do care about these people and it's really hard to let go.", 'created': '2024-11-13 22:21:54', 'submission_id': '1gqad5z'}
{'comment': 'Thanks!', 'created': '2024-11-13 21:12:13', 'submission_id': '1gqad5z'}
{'comment': "But if that's where people get their news, backing off of it keeps the misinformation going, if we all jump on and flood those sites with what's really going on maybe we can change minds. Backing away from it is the reason we got into this mess, no opposition to lies makes the lies perceivably true. Dems aren't on there, they don't need us, they're not dying without us, the misinformation is thriving", 'created': '2024-11-13 13:59:51', 'submission_id': '1gqad5z'}
{'comment': 'I deleted that response, I was just angry at the situation, you make a good point', 'created': '2024-11-13 17:57:40', 'submission_id': '1gqad5z'}
{'comment': "The problem is they gain strength & numbers in those hive minds and then infest other apps. This happened before between subreddits and in the last few years I've seen people on Twitter plan raids on Reddit with zero repercussions.", 'created': '2024-11-13 19:29:39', 'submission_id': '1gqad5z'}
{'comment': 'Many bots deleted themselves right after the election. Russia succeeded in their goals and keeping bots active & updated is a busy task. Many of us over there noticed how we instantly lost followers, but no one seemed to be missing. One prominent NAFO account lost 10k followers 24 hours after the election. \n\nBut bots are *everywhere,* including here. Some of us politically active here have the achievement of successfully reporting & neutralizing one in Reddit. This election shows just how much the far right achieved on social media. And it shows just how much work we have to do to claw it back & send these people back under the rocks they came out of.', 'created': '2024-11-13 19:38:44', 'submission_id': '1gqad5z'}
{'comment': 'Barely. It is unlike Twitter, FB, Insta in that there is a modicom of choice in what you consume, where the others just feed it to you unfiltered.', 'created': '2024-11-13 14:27:44', 'submission_id': '1gqad5z'}
{'comment': "Reddit is more like the Vh1 message boards I used to visit circa 2001. Which may have been very early social media, but it's still different because you're expected to be anonymous and not keep up with your real life friends and family.", 'created': '2024-11-13 14:38:01', 'submission_id': '1gqad5z'}
{'comment': 'I cant really tell because I dont use twitter but almost anything that shows in my wall marked as "recomended for you" is AI images followed by hundreds of bot messages posting pretty much similar coments, all bots have same profile scheme and always post same coments.\n\nAlmost nobody from my friend list posts anything anymore in Facebook and I have people from almost all age gaps, place is a real wasteland for human generated content.', 'created': '2024-11-13 21:21:58', 'submission_id': '1gqad5z'}
{'comment': 'Because we were there when it was invented', 'created': '2024-11-13 14:40:26', 'submission_id': '1gqad5z'}
{'comment': 'Threads sucks but Blue Sky has been absolutely divine. And you can tell the people there are angry, licking their wounds, and happy to be somewhere we can talk about this without bots & the insane interrupting.', 'created': '2024-11-13 20:42:44', 'submission_id': '1gqad5z'}
{'comment': 'After this election, the problem is obviously generations deep, especially with zoomer males coming out in droves to vote for Trump. That is why I now lump all terrible Boomers, Gen Xers, Millennials, and Zoomers into the category of racist assholes. \n\nI might even yank in the Alphas considering the rise of fascism in Roblox & streamers of the likes of Andrew Tate. I already worry of the statistics when they become of voting age.', 'created': '2024-11-13 19:11:29', 'submission_id': '1gqad5z'}
{'comment': 'It was GenX, Latino Males and Males 18-29.\n\nThey’ll love their new picking camps or the Russian front!!!', 'created': '2024-11-13 19:32:28', 'submission_id': '1gqad5z'}
{'comment': 'Yep 😆', 'created': '2024-11-13 15:32:01', 'submission_id': '1gqad5z'}
{'comment': "(It's a positive)", 'created': '2024-11-14 07:57:54', 'submission_id': '1gqad5z'}
{'comment': "You can text as well. That's still better than FB. I still suggest getting as many calls, video calls, and visits in as you can.", 'created': '2024-11-14 01:52:07', 'submission_id': '1gqad5z'}
{'comment': "That makes sense. I've done a poor job of keeping in touch with my friends and I'm lucky to have a few who still want to be in contact. Facebook is the only way I have to send out an update for any of them to respond to if they choose to do so.", 'created': '2024-11-13 22:26:19', 'submission_id': '1gqad5z'}
{'comment': 'But, if less people are clicking, the less advertisers will spend their money, which means less reach, less reach means less misinformation, and eventually more people leaving, and it will become like MySpace, a completely useless website.\n\nThey will have to either learn a new platform or leave social media altogether. Since most social media is moving to videos and instagram, and away from the "wall" style, this works against most of the people who thrive on misinformation.\n\nIt is much easier to make up a post and lie about it than make a video and show your face saying it.', 'created': '2024-11-13 19:29:23', 'submission_id': '1gqad5z'}
{'comment': 'The news is the problem. Get less news, get more real world face to face interactions. Call people, video call people, hang out with people. Stop letting the media influence you. All of it is designed to exploit you.', 'created': '2024-11-13 15:39:57', 'submission_id': '1gqad5z'}
{'comment': 'No. It\'s not considered "barely" social media by communications experts on social media. It\'s just a different type of social media from the ones that you\'re referencing.\n\nIn fact, Reddit is the evolution of one of the earliest types of social media, the internet forum. While a social networking site, like Facebook, or microblog, like Twitter, are newer types of social media that came after internet forums.', 'created': '2024-11-13 14:33:46', 'submission_id': '1gqad5z'}
{'comment': 'Blue sky is just more social media garbage. I’ll refrain, thanks.', 'created': '2024-11-13 21:12:05', 'submission_id': '1gqad5z'}
{'comment': "Yeah I try that but she doesn't answer. I think on Facebook she can pop in and see pictures and things of me and kids. Otherwise I'd love to talk to her but it's just not happening I guess.", 'created': '2024-11-14 02:15:17', 'submission_id': '1gqad5z'}
{'comment': "That is what's nice about Facebook is that you can contact so many people all at once. I stayed in the same city I grew up in so I was lucky to keep in touch.", 'created': '2024-11-14 00:40:32', 'submission_id': '1gqad5z'}
{'comment': "It's hard to find a Dem on there now. Most have already left, which gives MAGA free rein to post all the lies they want with no opposing view. Think about it. That's why MAGA voters are just now discovering tariffs may actually hurt them too. Twitter didn't use to be a right wing hellscape, they took it over. We can take it back", 'created': '2024-11-13 22:14:18', 'submission_id': '1gqad5z'}
{'comment': 'That too, great points. But if the majority of people get their news from X and FB, you also have to meet them where they are', 'created': '2024-11-13 17:09:10', 'submission_id': '1gqad5z'}
{'comment': "That's all well & good if we did this 10-15 years ago. Social media has become so entrenched in society that many would need to become luddites for this to happen en masse. \n\nAnd covid was the coup de grace that made us accustomed to even communicating with IRL friends through messages & text either because of the physical isolation from it or by the consequences like jobs moving to another city and friends having to follow suit.", 'created': '2024-11-13 19:27:52', 'submission_id': '1gqad5z'}
{'comment': 'Ya. So barely social media as compared to Twitter, FB, Insta.', 'created': '2024-11-13 14:36:00', 'submission_id': '1gqad5z'}
{'comment': "I hate to say this; but if Blue Sky is garbage, than Reddit isn't any better. Especially around any zoomer related subs.", 'created': '2024-11-13 21:53:54', 'submission_id': '1gqad5z'}
{'comment': 'there are tons of Dems on there still - it might be you have just isolated yourself from everyone else.', 'created': '2024-11-13 23:48:21', 'submission_id': '1gqad5z'}
{'comment': "And cable news is slowly becoming as terrible as news from Twitter & FB. It's bad enough that my boomer parents switched off cable news for good.", 'created': '2024-11-13 19:19:34', 'submission_id': '1gqad5z'}
{'comment': "You can meet them where they are simply by talking to them. Remind them that you don't do social media. Eventually you might even influence more to quit.", 'created': '2024-11-14 01:47:09', 'submission_id': '1gqad5z'}
{'comment': 'The only constant in life, is change. We each can decide which direction our own personal changes go in. If you are consistent, then others will follow.', 'created': '2024-11-14 06:41:34', 'submission_id': '1gqad5z'}
{'comment': 'No. You don\'t know what the hell you are talking about. I\'ve worked in social media marketing. Reddit is not in any way considered "barely" social media.\n\nBut hey, if you want to be like the conservatives, and insist on opinions borne out of ignorance, you go right ahead.\n\nDid you do your own research on vaccines and decide they don\'t work, too?', 'created': '2024-11-13 14:39:33', 'submission_id': '1gqad5z'}
{'comment': 'Yup. One garbage is enough. \n\nI like the variety here, for now.', 'created': '2024-11-14 02:34:24', 'submission_id': '1gqad5z'}
{'comment': 'and no thank you to taking back Twitter, I have no desire or want to contribute to Elon Musk and his corruption.', 'created': '2024-11-13 23:48:53', 'submission_id': '1gqad5z'}
{'comment': 'Well, ive been off Twitter for about 3 years now', 'created': '2024-11-14 01:05:21', 'submission_id': '1gqad5z'}
{'comment': "I get it, i don't either honestly", 'created': '2024-11-14 01:05:42', 'submission_id': '1gqad5z'}
{'comment': "What's scary is that a lot of American right-wingers suffer from EXTREME cognitive dissonance and will always find a way to blame Trump's fuckups on us Democrats or some other bogeyman (illegals, Mexico, China, Marxists, etc.).", 'created': '2024-11-13 09:20:21', 'submission_id': '1gq7m7g'}
{'comment': "Holy crap that's doing a number on my colorblind eyes.\n\n", 'created': '2024-11-13 11:53:06', 'submission_id': '1gq7m7g'}
{'comment': 'Red on blue is terrible. It hurts my eyes. \n\nWhite on blue is a better option', 'created': '2024-11-13 15:43:33', 'submission_id': '1gq7m7g'}
{'comment': 'You might get egged. If you do snap their picture and file a police report', 'created': '2024-11-13 10:11:29', 'submission_id': '1gq7m7g'}
{'comment': 'Donald Trump is gonna screwup the economy with his tariff and help deliver the Democrats with a 2026 and 2028 blue wave. Whoever is in power during an economic downturn tend to lose the election, and the Republican Party will be blamed for any missteps now that they have control over the Presidency, Senate, and the House of Representative.', 'created': '2024-11-13 10:22:35', 'submission_id': '1gq7m7g'}
{'comment': 'I got my stickers ordered already. probably start using them in April', 'created': '2024-11-13 17:24:15', 'submission_id': '1gq7m7g'}
{'comment': "It won't matter. The republicans will still blame the democrats.", 'created': '2024-11-13 19:05:04', 'submission_id': '1gq7m7g'}
{'comment': 'Assuming they can read, interesting', 'created': '2024-11-13 18:42:06', 'submission_id': '1gq7m7g'}
{'comment': 'Wear it everyday', 'created': '2024-11-13 19:05:28', 'submission_id': '1gq7m7g'}
{'comment': "Sad to think that there are between 12 and 15 million democrats who won't be able to wear this shirt, eh?", 'created': '2024-11-13 19:12:07', 'submission_id': '1gq7m7g'}
{'comment': 'Put that on a green T-shirt!', 'created': '2024-11-13 20:57:00', 'submission_id': '1gq7m7g'}
{'comment': 'I need that shirt pronto\n\n', 'created': '2024-11-14 10:27:43', 'submission_id': '1gq7m7g'}
{'comment': "So glad I'm not the only one", 'created': '2024-11-13 13:06:51', 'submission_id': '1gq7m7g'}
{'comment': "I'm not colorblind, but the contrast is awful.", 'created': '2024-11-13 18:28:46', 'submission_id': '1gq7m7g'}
{'comment': 'Think about how many more people will be egged when we get those cheap egg prices!! /s 😳', 'created': '2024-11-13 16:24:54', 'submission_id': '1gq7m7g'}
{'comment': "If this is true, then why didn't Kamala win the election? Why didn't Democrats keep control of the Senate?", 'created': '2024-11-13 17:38:10', 'submission_id': '1gq6ky0'}
{'comment': "Doesn't matter if it's untrue. The folks listening to the podcast won't read the AP story. They'll believe him from the get go. \n\nLies fly at lightspeed and truth is complicated and spreads at subsonic speeds at best.", 'created': '2024-11-13 07:37:43', 'submission_id': '1gq6ky0'}
{'comment': 'No. It\'s pure BS on many levels:\n\n1. There are no flights in. This is a chemtrails-level, tinfoil-hat wearing conspiracy theory. \n2. The number of "illegals\' residing in the USA is going down. Thanks to changes Biden made in the asylum process, people awaiting hearings are spending days and weeks in the USA, not months and years.\n3. Republicans are the ones shipping asylum seekers to other states, not Democrats.\n4. It\'s amazing this still needs to be said, but NON-CITIZENS CANNOT VOTE IN FEDERAL ELECTIONS. There is no evidence that this has ever happened except by accident. It is very illegal, it is just about impossible to do without some sort of clerical error, and the effect of doing it is miniscule. \n5. To affect the vote thousands would have to try it. To register they would need proof of citizenship, and to stay registered they would need to pass audits. Nothing is easier for the government to check than a form filled out with personal information and a signature. There would be hundreds, possibly thousands of people caught. That isn\'t happening. \n\nTalk like this is a power move. Musk is lying not just because he can, but to show people that he can. He knows he\'s not accountable in the way normal people are, and is flaunting it. It\'s something people familiar with abuse will recognize. It\'s bully behavior. \n\nAnd he isn\'t alone. The entire Republican party is this way these days. Trump has erased integrity as a valued trait and replaced it with in-your-face lying. The rest of the party has followed suit. They\'re showing you their contempt every time they say or do anything.', 'created': '2024-11-13 07:44:33', 'submission_id': '1gq6ky0'}
{'comment': "For starters, immigrants have very little understanding of our government, our voting process and it's the last thing they're interested in when they first get here. Elon knows this. He also knows that the culture wars have won them an election.", 'created': '2024-11-13 07:39:57', 'submission_id': '1gq6ky0'}
{'comment': "Not to mention, illegals go out of their way to stay under the radar. Like they're really going to expose themselves by attempting to register for voting.", 'created': '2024-11-13 11:28:27', 'submission_id': '1gq6ky0'}
{'comment': 'Elon is an idiot', 'created': '2024-11-13 07:39:26', 'submission_id': '1gq6ky0'}
{'comment': "Maybe he's telling on himself. Maybe HE flew in people to vote for Trump. I’m just gonna assume that every time they make an accusation it's actually just confessing.", 'created': '2024-11-13 13:52:45', 'submission_id': '1gq6ky0'}
{'comment': 'Boycott Tesla!!!', 'created': '2024-11-13 14:32:44', 'submission_id': '1gq6ky0'}
{'comment': "It's only true when it's neccessary. They won the election, so now all the masses of illegal immigrants voting, all the voter fraud, it magically stopped existing", 'created': '2024-11-13 12:15:23', 'submission_id': '1gq6ky0'}
{'comment': 'https://preview.redd.it/n6pidydywo0e1.jpeg?width=720&format=pjpg&auto=webp&s=49addb6c2bb5c26aa1a5b9b3338edbdb2350af65', 'created': '2024-11-13 16:49:01', 'submission_id': '1gq6ky0'}
{'comment': 'The AP has said what is untrue?\n\nOf course the idea of flying in immigrants to vote is an obvious lie for so many reasons', 'created': '2024-11-13 07:36:14', 'submission_id': '1gq6ky0'}
{'comment': 'No, not true. The Republican states of Texas and Florida are the biggest shippers of human trafficking.', 'created': '2024-11-13 14:28:46', 'submission_id': '1gq6ky0'}
{'comment': 'Nope, it’s just an updated rumor from the Jim Crow-era meant to stoke racism through fear. There are no caravans coming over or flights of voters. Yes people are coming over but there isn’t some coordinated conspiracy to have them break voting laws.\n\nAt the end of the day, you just listened to a conversation between a white millionaire living in Texas and a white billionaire who grew up in apartheid South Africa; you can give them the benefit of the doubt but they’re both extremely out of touch and unwittingly perpetuating racist stereotypes.\n\nEdit: Jim Crow not Jim Crowe (idk why I decided to slap an e on the end of that baby)', 'created': '2024-11-13 20:33:39', 'submission_id': '1gq6ky0'}
{'comment': 'Musk is built like a thumb', 'created': '2024-11-13 08:59:51', 'submission_id': '1gq6ky0'}
{'comment': 'No, there is no truth to it. You simply cannot vote unless you are a citizen, and registered to vote in your area of residency. \n\nYou *cannot* just fly people in somewhere and have them vote in a national election. It cannot be done.', 'created': '2024-11-13 09:01:37', 'submission_id': '1gq6ky0'}
{'comment': 'It’s frustrating that people like Musk make shit up and are believed. Btw, I heard he has a micro penis.', 'created': '2024-11-13 12:48:02', 'submission_id': '1gq6ky0'}
{'comment': '*googles the price of one airplane ticket*\n\nNo', 'created': '2024-11-13 14:30:35', 'submission_id': '1gq6ky0'}
{'comment': 'You didn’t miss anything. He’s lying.', 'created': '2024-11-13 15:03:31', 'submission_id': '1gq6ky0'}
{'comment': "Yes totes true, and the machines were sending votes to Italy to be processed by software written to help Hugo Chavez get elected. And babies are being aborted *after* they're born. And millions of kids have been given puberty blockers without their parent's knowledge. And Obama is a secret gay Muslim born in Kenya. And also Democrats are all Marxist Communists. And Putin is a really great leader who is trying to save the world from Ukrainian Nazis.\n\nDo you see a pattern here?", 'created': '2024-11-13 17:50:38', 'submission_id': '1gq6ky0'}
{'comment': 'They’re just lying to the American public, and they’re going to get away with it. Trump had never heard of project 2025, member?', 'created': '2024-11-13 08:07:14', 'submission_id': '1gq6ky0'}
{'comment': "Immigrants who aren't citizens can't vote...it makes no sense.", 'created': '2024-11-13 13:20:36', 'submission_id': '1gq6ky0'}
{'comment': "It's mostly false. \n\n[https://apnews.com/article/fact-check-misinformation-immigrants-parole-biden-trump-musk-dbd634820b3f8d07b859b8a05b2b20a7](https://apnews.com/article/fact-check-misinformation-immigrants-parole-biden-trump-musk-dbd634820b3f8d07b859b8a05b2b20a7)\n\nMigrants, like all non-citizens, cannot vote.", 'created': '2024-11-13 16:18:32', 'submission_id': '1gq6ky0'}
{'comment': 'You CANNOT vote legally in a federal election if you aren’t a citizen. \n\nThis the old, “Repeat a lie often enough and it becomes truth.” Sadly, half our countrymen are brutally ignorant and lack any sort of critical thinking skills or are WILLFULLY ignorant because it serves their hatred and bigotry. They think they’re the “in crowd” because they voted for him, but the reality is they’ll be just as fucked as everyone else (expecting the white, Christo-Fascist extremely wealthy men).', 'created': '2024-11-13 18:50:59', 'submission_id': '1gq6ky0'}
{'comment': 'No. Immigrants can’t vote. Hell, if I went to PA, I couldn’t vote there.\n\nYou have to be IN THE COMPUTER as a resident.', 'created': '2024-11-13 23:43:36', 'submission_id': '1gq6ky0'}
{'comment': 'This is true proof… that having money does not buy intelligence… class… dignity or the truth… we have grown to a population of propaganda lies.. and false promises\n\nMade by a false leader….', 'created': '2024-11-14 00:44:30', 'submission_id': '1gq6ky0'}
{'comment': "I kinda wish we did do this, fuck i'd be a lot safer right now.", 'created': '2024-11-13 08:22:56', 'submission_id': '1gq6ky0'}
{'comment': 'She should have gone on the show.', 'created': '2024-11-13 13:18:48', 'submission_id': '1gq6ky0'}
{'comment': 'No. Of course not. Nothing that guy ever says is true.', 'created': '2024-11-13 13:19:57', 'submission_id': '1gq6ky0'}
{'comment': 'there is no truth to this. it is very very very difficult (if not impossible) to even try to register to vote as a non-citizen and if one tries, it is flagged in the state’s board of elections system as an error (i think this just happened in PA, they audited like 20 prior to election day).\n\nalso just to level-set here: there are almost 400 million people living in the U.S. there are less than 12 million illegal immigrants currently living here.\n\nmany have come to apply for work visas to fill unwanted jobs (Springfield, OH) or to escape political violence in Central America. there is absolutely no evidence of anyone being flown around to vote or disrupt voting processes.\n\nelon forgets HE is an immigrant who had an opportunity to grow his wealth here and he is using that power to “other” and create fear in order to gain more political and financial power, and it’s worked because that dude is a meeting or two away from having incredibly sensitive state secrets. \n\nso if any immigrant is flying around trying to infiltrate the democratic process, it it that fucking guy.', 'created': '2024-11-13 14:54:12', 'submission_id': '1gq6ky0'}
{'comment': "Immigrants can't vote. They can show up and try to cast a ballot. But they will be rejected at the door as their names are not on the list as valid voters.", 'created': '2024-11-13 14:57:09', 'submission_id': '1gq6ky0'}
{'comment': 'No. There is not. Undocumented (not illegal immigrants) immigrants cannot vote. Period. Full stop.', 'created': '2024-11-13 16:27:33', 'submission_id': '1gq6ky0'}
{'comment': "There is no way that any of these things are true. It's logistically a nightmare and just because you bring them to the polls doesn't mean that they're going to be able to vote. If they attempt to vote they're going to be turned away.", 'created': '2024-11-13 16:37:18', 'submission_id': '1gq6ky0'}
{'comment': 'Russian asset.', 'created': '2024-11-13 17:23:42', 'submission_id': '1gq6ky0'}
{'comment': 'Maga is the party of the stupid.', 'created': '2024-11-13 17:30:37', 'submission_id': '1gq6ky0'}
{'comment': "We already know they lied. What you should be doing, instead of giving genocidal fascists the benefit of the doubt, is documenting their lies. \n\nYou can listen to their interviews and speeches and all you'll hear is lie after lie after lie. You'll hear them tell lies to present immigrants as some kind of invasive force that is a threat to white people's -- and those who want to be white's -- way of life.\n\nIt's very plain to see.", 'created': '2024-11-13 17:34:58', 'submission_id': '1gq6ky0'}
{'comment': 'To become a billionaire or trillionare you have to be deceptive and walk over the backs of others. To trust him is to trust a demon is my thoughts.', 'created': '2024-11-13 18:23:28', 'submission_id': '1gq6ky0'}
{'comment': "Every accusation is a confession\n They cheated. The math doesn't make sense in some of the swing states, specifically PA.", 'created': '2024-11-13 18:42:20', 'submission_id': '1gq6ky0'}
{'comment': 'Always ask the one making the assertions for evidence. The crazier the claim, the more evidence required.\n\nHe provided none. Move on.\n\nMusk is in his feelings about the "woke mind virus."\n\nRich people in their feelings can do lots of damage', 'created': '2024-11-13 19:08:32', 'submission_id': '1gq6ky0'}
{'comment': 'This is about as real as the trucks filled with fake ballots in the middle of the night.', 'created': '2024-11-13 20:54:44', 'submission_id': '1gq6ky0'}
{'comment': 'He projecting.', 'created': '2024-11-13 21:50:57', 'submission_id': '1gq6ky0'}
{'comment': 'Elon is just another Nazi liar POS.', 'created': '2024-11-14 02:27:27', 'submission_id': '1gq6ky0'}
{'comment': "Elon is a mentally ill manchild. The truth doesn't matter to him. The truth has lost. We live in a post truth society.", 'created': '2024-11-13 14:50:31', 'submission_id': '1gq6ky0'}
{'comment': 'Damn he caught on to ME! I better stop flying people in!!!😮😚', 'created': '2024-11-13 09:57:13', 'submission_id': '1gq6ky0'}
{'comment': 'Their MO is to knowingly make up stuff and hope the shit sticks. Which it always does.', 'created': '2024-11-13 12:12:20', 'submission_id': '1gq6ky0'}
{'comment': 'Anything Elon Musk says is asinine. He’s as big a liar as Trump is, with an ego to match.', 'created': '2024-11-13 12:21:16', 'submission_id': '1gq6ky0'}
{'comment': '[removed]', 'created': '2024-11-13 12:37:09', 'submission_id': '1gq6ky0'}
{'comment': 'The question isn’t “is what Elon’s saying true” the question is “why on earth a man-boy who couldn’t stop playing with cars and rockets has such an influence on the life and death of 100s of millions of Americans”', 'created': '2024-11-13 13:37:04', 'submission_id': '1gq6ky0'}
{'comment': 'Well if that’s true how come Kamala lost?', 'created': '2024-11-13 13:43:05', 'submission_id': '1gq6ky0'}
{'comment': 'When you lie you end all credibility. Musk cannot be trusted now. He is a liar.', 'created': '2024-11-13 14:07:09', 'submission_id': '1gq6ky0'}
{'comment': 'MAGA believe it.', 'created': '2024-11-13 14:24:46', 'submission_id': '1gq6ky0'}
{'comment': "We'll never be able to combat this. So what's the point of anything? Seriously. What's the point", 'created': '2024-11-13 14:29:14', 'submission_id': '1gq6ky0'}
{'comment': "No, it's not true. The only immigrant I see mucking in our elections is Elon.", 'created': '2024-11-13 14:32:12', 'submission_id': '1gq6ky0'}
{'comment': 'No.', 'created': '2024-11-13 14:36:42', 'submission_id': '1gq6ky0'}
{'comment': 'Not true. He’s trying to save his own ass…He’s facing a lot of legal problems and is probably hoping a blanket pardon from Trump if he can get him elected …not to mention, giving himself SpaceX contracts worth billions while he works for the government.\nhttps://www.mercurynews.com/2024/10/01/all-the-major-legal-battles-elon-musk-and-his-companies-are-facing/', 'created': '2024-11-13 14:37:12', 'submission_id': '1gq6ky0'}
{'comment': 'Just because it doesn’t work that way (immigrants can’t vote until they become citizens), doesn’t mean foolish people won’t believe the lies told by dishonest people.', 'created': '2024-11-13 14:41:30', 'submission_id': '1gq6ky0'}
{'comment': "No it's propaganda that the right has been spweimg since Musk was a Democrat Elon (the immigrant) buyimg votes actually happened 🙄", 'created': '2024-11-13 14:44:41', 'submission_id': '1gq6ky0'}
{'comment': "Don't you have to register your address, and it must match the one on your ID? Therefore even if you are just visiting another state, you're counted as someone from your own state? Please correct me if I'm wrong...\n\nStill, how in the world do people believe this crap? Everyone has to adhere to the same rules when voting. 🤦\u200d♀️", 'created': '2024-11-13 14:45:09', 'submission_id': '1gq6ky0'}
{'comment': 'No it’s true. The Democrats wanted Trump to win so they flew immigrants in to vote for him. Elon just proved there was election interference. Time for a recount.', 'created': '2024-11-13 15:02:28', 'submission_id': '1gq6ky0'}
{'comment': "It's definitely not true", 'created': '2024-11-13 15:14:24', 'submission_id': '1gq6ky0'}
{'comment': 'Disinformation at its best. It should be criminal for people using their platforms and status for offering untrue “facts” and sound bits to sound edgy or knowing of something that isn’t true. You have simple minded fools who will cling to sound bits that helps them cope with a reality that help them explain how shitty their situation they are in.', 'created': '2024-11-13 15:27:21', 'submission_id': '1gq6ky0'}
{'comment': 'The uneducated will eat anything up. You simply cannot vote in an election if you’re undocumented. I’m not sure how you would even be allowed to vote if you were undocumented. Like please someone inform me on *how you can vote* if you are not a legal resident? \n\nLike you can’t just roll up to a place and say here’s my ID and it’s fake. You need to have an actual address in the system and to have a legal address you need documentation you’re of legal status. You cannot just make up an ID and say you live at XXX.', 'created': '2024-11-13 15:42:52', 'submission_id': '1gq6ky0'}
{'comment': "Yes it's true just ask Alex Jones./s", 'created': '2024-11-13 15:59:08', 'submission_id': '1gq6ky0'}
{'comment': 'It up to the one making the claim to provide the proof. You’d think that would be something that he would already be doing —if he had any or if there was any to be had.', 'created': '2024-11-13 16:03:27', 'submission_id': '1gq6ky0'}
{'comment': 'Um….. NO ….. just a white supremacist fever dream. Note: They NEVER have any credible evidence about any of the psycho shit they spew from their MAGA holes.', 'created': '2024-11-13 16:08:33', 'submission_id': '1gq6ky0'}
{'comment': "He plays dumb and apolitical. It's part of his act to push a right wing agenda.", 'created': '2024-11-13 16:08:43', 'submission_id': '1gq6ky0'}
{'comment': 'Musketamine', 'created': '2024-11-13 16:11:48', 'submission_id': '1gq6ky0'}
{'comment': 'He is mentally challenged', 'created': '2024-11-13 16:16:56', 'submission_id': '1gq6ky0'}
{'comment': 'There used to be consequences for lying in the media.', 'created': '2024-11-13 16:25:23', 'submission_id': '1gq6ky0'}
{'comment': 'People would rather hear lies that conform to their beliefs about how the world works than truths that challenge it. This has always been a weakness of democracy. \n\nThe adoption of universal manhood suffrage in France after 1848 immediately led to the rise of Napoleon III.', 'created': '2024-11-13 16:26:03', 'submission_id': '1gq6ky0'}
{'comment': 'Elon Musk is South African thats all you need to know. He is racist to the core.', 'created': '2024-11-13 16:31:50', 'submission_id': '1gq6ky0'}
{'comment': 'you’re asking a serious question lol', 'created': '2024-11-13 16:33:44', 'submission_id': '1gq6ky0'}
{'comment': 'This is literally what they think (alt right MAGAts) and some seemingly normal MAGAts. I don’t think Elon believes this, but he knows what they believe and is using that to his advantage so they feel like they identify with him more. The us vs them mentality is big in cult psychology. A shared enemy brings people together.', 'created': '2024-11-13 16:37:47', 'submission_id': '1gq6ky0'}
{'comment': "It's just MAGA talking points. There's a million of them. They like to spread hatred and fear.\n\nMy engineering university entrance exam in 1994 was about this.\n\nWhich is more effective in a leader ... a leader who leads through fear or respect? Please explain why and use examples.\n\nAt the time, I had no idea it would be more relevant to the US than it is now.", 'created': '2024-11-13 16:45:45', 'submission_id': '1gq6ky0'}
{'comment': 'Not enough apparently.', 'created': '2024-11-13 16:47:40', 'submission_id': '1gq6ky0'}
{'comment': "The druggie voices in Leon's head make it seem true.\n\nIt's not.", 'created': '2024-11-13 17:00:19', 'submission_id': '1gq6ky0'}
{'comment': 'And Rogan claimed this BS is the reason why he decided to endorse Trump', 'created': '2024-11-13 17:04:21', 'submission_id': '1gq6ky0'}
{'comment': 'Not wanting to stomach blatant and dangerous misinformation from the right-wing propaganda machine is not living in an "echo chamber".', 'created': '2024-11-13 17:04:24', 'submission_id': '1gq6ky0'}
{'comment': "What does your brain tell you?\n\nConsider the evidence: You have a xenophobe billionaire who is trying his best to manipulate his way into handing himself billions upon billions of government contracts, because he thinks he is Tony Stark without any modicum of highly intelligent thinking or ability. He was born into immense wealth and has taken credit for other people's work his entire life. He needs the government to see him as a top ally, and Trump wants to be Elon Musk so bad he can hardly stand it, so it is a win-win for him. The more loyalty he shows for Trump, the more money is going into his pocket. He does not care what happens to anyone else in America as long as he is getting money. \n\nSo, he will peddle bullshit to get Trump on his side, have Trump hand him billions in kickbacks and contracts for his support, and continue to amass wealth.\n\n \nOn the other hand, you have common sense telling you that undocumented people cannot vote, anywhere. Even if they become citizens, there is no guarantee they are going to vote Democrat. \n\nYou need to look at motivation of argument before you start asking if something is true or not.\n\nNow, are the Republicans trying to grow more supporters? Absolutely they are. That is why they make all the high school kids pray before football games, reinforce God in everything they touch, want to open the doors to school vouchers and get kids into private schools as fast as they can. The fastest way to do this is to deny women the right to an abortion, stop paying for birth control, and force them to have as many babies as possible. This will lead to a huge following of conservative principles because all those children will be brought up in this environment.\n\nSchool vouchers are a great weapon against the poor and minority students because private schools do not have to take anyone they do not want, or cannot pass their entrance exam, or are not a legacy student. They get the money from the state, but no the students they do not want.\n\nInvariably, the public schools become overwhelmingly minority with little to no money for funding to keep good teachers and administrators in the schools. These schools fail over and over when they lose the money and the government gets to come in and close those schools down, forcing those attending into terrible private schools or they end up dropping out and the positive outcomes for those kids is not good.\n\nThis is already ongoing in Texas, Oklahoma, Louisiana and other states in the South. School vouchers are next and the final pin in their plan will be complete. All they have to do is sit back and watch it happen.\n\nTo date, over 26,000 women and girls have had to have their SA's child because of the lack of abortion care. We have had multiple women die as a result of these laws. \n\nThis is just the beginning and we aren't even to Christmas yet.", 'created': '2024-11-13 17:08:34', 'submission_id': '1gq6ky0'}
{'comment': 'He also paid for ads in heavily Jewish districts w Harris’ image superimposed over a Palestinian flag and called her a Hamas supporter. As if. Then ran ones in Muslim areas w the same image in front of an Israeli flag calling her a Zionist, which, fair enough.\n\nThe sheer amount of disinformation he spewed forth on Xitter was astounding. And should be illegal.', 'created': '2024-11-13 17:12:03', 'submission_id': '1gq6ky0'}
{'comment': 'That is absolutely ridiculous!', 'created': '2024-11-13 17:15:20', 'submission_id': '1gq6ky0'}
{'comment': 'elon worked illegally in the US 🤔 also, elon is a reason we should make bullying great again', 'created': '2024-11-13 17:16:04', 'submission_id': '1gq6ky0'}
{'comment': "If i so much as don't cite a simple phrase in my thesis, it can be considered plagiarism or made up.\n\nA person in power who makes decisions for the world can spew as much crap as they want and not need to cite anything.\n\nHow is that fair?", 'created': '2024-11-13 17:16:08', 'submission_id': '1gq6ky0'}
{'comment': 'Whatever it is\n\n72 million people agree unfortunately', 'created': '2024-11-13 17:26:18', 'submission_id': '1gq6ky0'}
{'comment': "Different Republicans, same old lie. I used to have a book about the history of political cartoons. In the 1870's it was Democrats recruiting Irish & German immigrants straight off the boat, literally right there at the docks, to 'steal' municipal elections in NYC.", 'created': '2024-11-13 17:34:26', 'submission_id': '1gq6ky0'}
{'comment': "We will never be able to rationalize the mind of a racist moron so don't try.", 'created': '2024-11-13 18:09:34', 'submission_id': '1gq6ky0'}
{'comment': 'Interesting how all the talk of voter fraud mysteriously disappeared 11pm on election night. Fox literally ran a segment on voter fraud in PA on election day. 5 hours later it was like it never happened.', 'created': '2024-11-13 18:12:26', 'submission_id': '1gq6ky0'}
{'comment': "I've tried listening to more conservative talk shows and their theories are plain nuts. I don't know how you begin to have rational conversations.", 'created': '2024-11-13 18:23:04', 'submission_id': '1gq6ky0'}
{'comment': 'I know we\'ve had many cults, but I\'d like to talk about one example in particular--it was well-known in its heyday in the US. and on the news a lot. In the 1970\'s we had "The Moonies". They were followers of Moon Yong-Myeong and his Unification Church. Moon connected himself to lot of Republicans and THE WASHINGTON TIMES, which is still owned by Operations Holdings-- a part of the Unification Church movement. Moon brought his movement from Korea to the US and they recruited LOTS of people here. Family members who had the resources would hire private "de-programmers" to kidnap their loved ones and reel them back in from the spell. I remember having a de-programming house set up a couple of doors down from my house when I was a kid. Some very wealthy kids in our community had been taken in and their parents had to kidnap them to get them back. Thankfully they were successful. \n\nThe problem we have here is that half the country has been indoctrinated and we don\'t have enough de-programmers do undo the damage. It\'s been unfolding for decades. The owners of the press refuse to help--they have even hired some of the mouthpieces (CNN hire lots of them over the last few years) to help push the narrative. I pray we can end this madness without a civil war--or a world war.', 'created': '2024-11-13 18:38:29', 'submission_id': '1gq6ky0'}
{'comment': 'Lies help Trump win the first time and for sure this time. He should have been disqualified because of January 6th period.', 'created': '2024-11-13 18:40:46', 'submission_id': '1gq6ky0'}
{'comment': 'Misinformation 101.', 'created': '2024-11-13 18:57:30', 'submission_id': '1gq6ky0'}
{'comment': 'The conservatives have literally been bussing immigrants across the nation', 'created': '2024-11-13 19:29:11', 'submission_id': '1gq6ky0'}
{'comment': 'Critical thinking skills required.', 'created': '2024-11-13 19:48:49', 'submission_id': '1gq6ky0'}
{'comment': 'Lies and disinformation won the election \n\nDemocrats lost the information wars', 'created': '2024-11-13 19:54:34', 'submission_id': '1gq6ky0'}
{'comment': 'Why does it matter? Everyone who lives here deserves a voice in our democracy. The hand-wringing over arbitrary definitions of citizen/noncitizen just divides and dehumanizes. \n\nAnd getting people to go where their vote counts the most is probably the most benign thing you can do to fight fascism.', 'created': '2024-11-13 20:30:00', 'submission_id': '1gq6ky0'}
{'comment': "Ya know sometimes I feel like we all are having 4d chess played against us. Why wouldn't Democrats just squash this problem once and for all? Make your driver's liscense/ID renewal free every 2 years if you also register to vote if you are a citizen. They take our pictures, check our social security #...They would get damn near every adult in the United States registered to vote, and they would also crush that dumb ass argument about voter ID", 'created': '2024-11-13 21:08:12', 'submission_id': '1gq6ky0'}
{'comment': 'A lot of good that did! Am I right?', 'created': '2024-11-13 21:12:37', 'submission_id': '1gq6ky0'}
{'comment': 'Why would you question this?The GOP has bused immigrants to blue states. I live in Arizona a swing state, yes, there are more Cubans and Arabs in the state. Immigrants go where they can get work', 'created': '2024-11-13 21:44:36', 'submission_id': '1gq6ky0'}
{'comment': "No. He's just a moron.", 'created': '2024-11-14 01:34:06', 'submission_id': '1gq6ky0'}
{'comment': "Immigrants can't vote, period.", 'created': '2024-11-14 01:54:33', 'submission_id': '1gq6ky0'}
{'comment': 'If ANYONE needs to ask this question, they are susceptible to becoming a cult member.\n\n', 'created': '2024-11-14 02:00:59', 'submission_id': '1gq6ky0'}
{'comment': 'I tried doing the same, and I had to stop about 30 minutes in when Elon Musk tried talking about how the left intentionally spreads misinformation.... when Elon Musk is the literal King of spreading misinformation.', 'created': '2024-11-14 04:36:17', 'submission_id': '1gq6ky0'}
{'comment': "If people paid attention in school more, they'd have learned that this isn't true, because immigrants CANNOT vote in federal elections.", 'created': '2024-11-14 05:22:29', 'submission_id': '1gq6ky0'}
{'comment': 'He ran a vote lottery offering millions of dollars. Is that better or worse than shipping in fictional immigrants.', 'created': '2024-11-14 12:11:11', 'submission_id': '1gq6ky0'}
{'comment': 'It takes a minute to find the voter registration form online. It clearly shows the need for a passport or drivers license to register. People are just too lazy to do their own research.', 'created': '2024-11-14 12:17:45', 'submission_id': '1gq6ky0'}
{'comment': 'I think Musk bought votes, if anything! Whenever WI couldn’t be won, PA was always a blue state…until now…😒', 'created': '2024-11-14 16:21:25', 'submission_id': '1gq6ky0'}
{'comment': 'Non citizens can’t vote.', 'created': '2024-11-14 20:42:07', 'submission_id': '1gq6ky0'}
{'comment': "It doesn't matter, the choice was made, see you all again in 4 years.", 'created': '2024-11-13 20:35:11', 'submission_id': '1gq6ky0'}
{'comment': 'He’s detracting from the narrative that they flipped 15 million Democrat votes and it had nothing to do with immigrants that can’t vote anyway. They were too confident, they already knew!\n\nElon said “I’m screwed if we lose” and Don said “we don’t need the votes”.. what did they know?', 'created': '2024-11-13 14:05:24', 'submission_id': '1gq6ky0'}
{'comment': 'Bold of you for keeping an open mind to a white supremacist Nazi, the lack of rational takes isn’t very surprising', 'created': '2024-11-13 08:20:43', 'submission_id': '1gq6ky0'}
{'comment': 'And the House. Republicans have a trifecta and SCOTUS.', 'created': '2024-11-13 18:16:00', 'submission_id': '1gq6ky0'}
{'comment': 'The first lie wins.', 'created': '2024-11-13 12:50:40', 'submission_id': '1gq6ky0'}
{'comment': 'Yep it’s about influencing the masses, and the slow-moving research-heavy truth can’t compete with the high flying, entertaining lies. The masses will eat up the lies every time. \n\nNothing has to be true, it just has to sound true. Colbert coined this ‘truthiness’ like 20 years ago. Free speech is our greatest strength but also our greatest danger. That’s how you get an autocratic leader in America.', 'created': '2024-11-13 13:02:45', 'submission_id': '1gq6ky0'}
{'comment': 'Truth is in print. Enough of it anyway. Ignorance is bliss and demise', 'created': '2024-11-13 08:07:58', 'submission_id': '1gq6ky0'}
{'comment': 'It’s no longer “facts don’t care about your feelings.” In this landscape it’s “feelings don’t care about your facts.” I’ll be shouting this until everyone gets this. This is the new America the popular vote wanted.', 'created': '2024-11-13 18:24:35', 'submission_id': '1gq6ky0'}
{'comment': 'The embrace of lying also has squarely pointed out how ignorant most Americans are. They just believe these people. These are the same folks obsessed with demanding to see YOUR sources (which are literally anything outside the right-wing circle of unsubstantiated nonsense), who scream about fake news, and are obsessed with the wildest of conspiracy theories to the point of harming themselves or dying over them - pizzeria basements, horse paste consumption to treat a virus, malaria pills for Covid, hurricane relief non-scandals, people eating pets. \n\nAbsolute gibberish nonsense lunacy.', 'created': '2024-11-13 14:20:45', 'submission_id': '1gq6ky0'}
{'comment': 'It’s the same thing as Vance admitting on live television that he lied about Haitian immigrants eating pets. He admitted he lied and just said “well we have to make up these stories or no one will listen to us.” They’ve proven again and again that not only will they say whatever they think will be the most inflammatory to their voter base, but that they know it’s all lies and that no matter how much “fact checking” is done their base will believe them and no one can stop them from doing it.', 'created': '2024-11-13 14:05:00', 'submission_id': '1gq6ky0'}
{'comment': 'Is Elon Musk a American Citizen. I heard he stayed illegals for a while.', 'created': '2024-11-13 11:41:11', 'submission_id': '1gq6ky0'}
{'comment': 'This is on par with the lies shared about Jewish and "others" before the holocaust. We\'ve already had kids in cages. We really are so close. Next, they will be put in camps and forced to work to pay for their stay because it\'s too expensive on the American people. Then they\'ll move on to "the final solution". All over problems that never existed to begin with.', 'created': '2024-11-13 14:09:21', 'submission_id': '1gq6ky0'}
{'comment': 'On your fourth point: Immigrants travel thousands of miles, often with the help “coyotes” that charge exorbitant fees, only to extort them for more money. Then they risk getting caught as they cross the border. It’s dangerous and deadly. After all that, they decide to go to a public place, provide personal information, and *risk deportation*, all to alter the election results by one vote? Or, more likely, that doesn’t happen, and guys like Elmo are full of shit.', 'created': '2024-11-13 14:51:27', 'submission_id': '1gq6ky0'}
{'comment': "I agree with absolutely everything that your saying. I think the question here is about messaging. WE the Democrats don't have a reliable way to believably convince people of these untruths. This is what has been concerning me. Usually and demographically speaking, Democrats possess A higher education. Which arguably gives the party a more sound ethical approach to political and geopolitical problems. However , the reality is much different and I think we don't have the ability at this point to convince people of truth. The sophistry of the conservative right is winning. Is it time to fight fire with fire?", 'created': '2024-11-13 08:01:04', 'submission_id': '1gq6ky0'}
{'comment': 'Mexican immigrants are also very conservative socially. They are almost as likely to vote for the GOP as Dem.\n\nAs we have seen multiple examples in this last election', 'created': '2024-11-13 18:47:12', 'submission_id': '1gq6ky0'}
{'comment': 'Also, it was literally the GOP governors who illegally flew in migrants to the blue states! Make it make sense.', 'created': '2024-11-13 18:58:27', 'submission_id': '1gq6ky0'}
{'comment': 'I wholeheartedly agree. But you got to remember the people who should’ve voted didn’t. Thats what I rates me the most!', 'created': '2024-11-14 06:58:13', 'submission_id': '1gq6ky0'}
{'comment': 'You are 💯 percent correct.', 'created': '2024-11-13 08:07:41', 'submission_id': '1gq6ky0'}
{'comment': "As an immigrant *from* the US to another country - I have no idea what the government is doing here. I don't get a vote. There's a language barrier as well, so I only get a fraction of the info on day-to-day politics. I can guarantee they are worried more about keeping food in their stomachs and clothes on their family's backs. \n \nDon't know if ya'll have noticed, but America isnt exactly the most affordable place right now.", 'created': '2024-11-13 21:15:49', 'submission_id': '1gq6ky0'}
{'comment': "Exactly what I've been saying. For that matter any crime. I believe crime statistics show a lower crime rate among illegal immigrants than citizens.", 'created': '2024-11-14 02:18:18', 'submission_id': '1gq6ky0'}
{'comment': "No, he's a soulless asshat.", 'created': '2024-11-13 14:25:09', 'submission_id': '1gq6ky0'}
{'comment': 'Trump wanted law enforcement to investigate voter fraud in Pennsylvania until he won there, then dropped it.', 'created': '2024-11-14 02:20:21', 'submission_id': '1gq6ky0'}
{'comment': 'And there\'s no "invasion."', 'created': '2024-11-14 02:23:52', 'submission_id': '1gq6ky0'}
{'comment': 'Even legal immigrants, let alone illegals.', 'created': '2024-11-14 02:21:18', 'submission_id': '1gq6ky0'}
{'comment': "It's 100% false.", 'created': '2024-11-14 02:22:25', 'submission_id': '1gq6ky0'}
{'comment': '"Welcome to DemocracyAir" hahaha', 'created': '2024-11-13 08:29:56', 'submission_id': '1gq6ky0'}
{'comment': 'Disinformation is the political strategy, we need to move beyond the pearl clutching and figure out what the fuck are we going to do about it.\n\nWe can’t just be a party of intellectuals who hope the majority of Americans see they are being lied to. People don’t want to believe they fell for a lie and they are on the wrong side, they want to believe that a magical rich person is going to take all their problems away because they are American.', 'created': '2024-11-13 15:12:11', 'submission_id': '1gq6ky0'}
{'comment': "Well, it doesn't necessarily need to match the one on your ID. My DL has my old address on it still. I was told I didn't need to change it since I'm still in the same county. They just had me tell them my new address and made sure it matched what they showed in their system.", 'created': '2024-11-13 15:07:27', 'submission_id': '1gq6ky0'}
{'comment': 'Project 2025 guy said something akin to “we have things in motion the democrats don’t even know about”. I’m doing my best to believe shit wasn’t rigged, I gotta believe in 4years we will see democrats get back in the game. If in 4 years life hasn’t been made great by the republican trifecta and they somehow STILL win. I’m going full belief that we’ve entered Russian political territory.', 'created': '2024-11-13 21:36:34', 'submission_id': '1gq6ky0'}
{'comment': "I think it's fair to say that we have to do A root cause analysis on this fascist bull shit. Do you have any ideas?", 'created': '2024-11-13 08:28:33', 'submission_id': '1gq6ky0'}
{'comment': 'People don\'t want the truth. They want to confirm their pre-existing biases. "Ignorance is bliss" and people want to be blissful.\n\nHow do you make people want to know the truth when they are psychologically resistant to it?', 'created': '2024-11-13 16:19:43', 'submission_id': '1gq6ky0'}
{'comment': 'It’s one thing to believe them the first time or maybe the second but how can people such bad judges of character that they continually fall for the repeated lies? It’s baffling.', 'created': '2024-11-13 18:11:28', 'submission_id': '1gq6ky0'}
{'comment': 'I grew up with parents listening to conservative talk radio all day long from the late 80s till I moved out in the 2000s. These people hate politicians, so they say… conveniently only dems. Republicans are fighting for the people, they said. It is the biggest grift of lies and projection…', 'created': '2024-11-13 17:27:48', 'submission_id': '1gq6ky0'}
{'comment': '“The rules are that you guys aren’t going to fact check.”\n\n- JD Vance', 'created': '2024-11-13 14:55:43', 'submission_id': '1gq6ky0'}
{'comment': 'His brother said they were illegal immigrants:\n\n“When they did fund us, they realized that we were illegal immigrants.” However, Elon quickly interjected with, “Well, I mean…,” only to be interrupted by his younger brother, who asserted that they indeed “were illegal immigrants.” To this, Elon pointed out, “I’d say it was a gray area” as the crowd burst out in laughter.', 'created': '2024-11-13 14:45:30', 'submission_id': '1gq6ky0'}
{'comment': 'He is now, but [he overstayed his student visa in the 90s](https://amp.theguardian.com/technology/2024/oct/26/elon-musk-illegal-immigration)', 'created': '2024-11-13 14:47:28', 'submission_id': '1gq6ky0'}
{'comment': "This is such common sense that I have to believe they are putting something in the water to get people to believe this one. It's such a non logical claim but everyday people just believe it because it makes them feel good.", 'created': '2024-11-13 19:29:27', 'submission_id': '1gq6ky0'}
{'comment': "That's the other thing, Trump calls them criminals. Criminals are lazy, that's why they're criminals instead of working. They're not going to take a deadly thousands of miles trek, make a risky entry into the US, only to do something that brings them to the attention of law enforcement.", 'created': '2024-11-14 02:03:38', 'submission_id': '1gq6ky0'}
{'comment': '"Fighting fire with fire", in this case, will only serve to reinforce their mistrust - a mistrust created and maintained by the right wing messaging apparatus - but mistrust all the same. \n\nI agree that this messaging/disinformation crisis is clearly not something that can be handled with our standard messaging platform, and there is a very real need to break through and communicate with these voters (if it isn\'t already too late to call us all "voters"). \n\nPersonally, I think the best tack we can borrow from is to treat this like an addiction. Primarily because - in many ways - it is. Real world answers, solutions, and explanations come with nuance and uncertainty, and are very often far too complex to boil down to a quip or a catchphrase. But disinformation/propaganda can be short, witty, and memorable. It\'s easy to digest, and it is specifically crafted (and AB tested, and modified) to give the listener the confidence that they now understand something which has been bothering them, and gives them permission to set that issue aside, having received a satisfactory answer to their concern. \n\nWhether or not that concern was planted by the same person giving out the "information", whether that information is trustworthy, accurate, or even plausible in reality is not important - it takes the discomfort away (or gives them someone/something to blame for it). A quick hit of confidence to dull the cognitive dissonance and creeping doubt. A lotto ticket that lets you go on with your day fantasizing about how it\'ll all be better on Friday when your ship comes in instead of worrying about those bills due tomorrow. It\'s a temporary "solution" to a problem too big to address head-on.\n\nSimply explaining how someone is wrong, or that they\'ve been lied to won\'t work because it isn\'t about the truth anymore. You\'re not just correcting a misunderstanding, you\'re challenging a worldview, an identity, and flushing their stash at the same time. \n\nIt\'s isolating, scary, and - depending on how long they\'ve been using - exposing a very real and existential dread. If I\'ve been lied to about X, what other lies have I accepted? If I\'m wrong about Y, am I wrong about everything? Am I gullible? Am I dumb? Have my decisions hurt other people? Am I a bad person?.... \n\nIt\'s a dark road. \n\nSo - just like with every other addiction - if someone you know is reaching out, seeing the damage they\'re doing, and looking for a way out: help them detox. Get them off of social media, away from talk radio and network "news" and try to get them to take a technology vacation to recover. Give them a community to help replace the one they are leaving, and - when the time comes - be patient, kind, and understanding when you explain the damage the propaganda pipeline has done to them, their culpability and responsibility in getting here, and what you think would be good "next steps" in the right direction. \n\nInterventions can work, but they can backfire if not handled well. \n\nThe most proactive plan we can make is to warn and deter new addicts, and foster a thirst for understanding, a standard for truth and evidence, and a skepticism of simple, easy answers by confidence men.\n\nAs a last resort - sometimes rock bottom will shake an addict free, and we\'re certainly about to hit a new rock bottom. Signal-boost the voices crawling out of the pit, to warn others of the danger and offer a path to those still inside. \n\nInstitutional/Systemic changes can often help with epidemics such as these, but we\'re not gonna get a "heroin recovery plan" from the drug Kingpin President, so one way or another we\'re gonna have to ride this bender out and hope they haven\'t done irreversible damage. Prep for a hard withdrawal and a long recovery.', 'created': '2024-11-13 08:51:27', 'submission_id': '1gq6ky0'}
{'comment': 'I think the Republicans are about to give a master class in why you don’t elevate con artists to cult status.', 'created': '2024-11-13 09:20:51', 'submission_id': '1gq6ky0'}
{'comment': 'Once I saw an acquaintance with a paper towel core tube with a few paper towels scrunched up inside it. He was spraying paint in one side while inhaling from the other to get high. I told him that such a cheap high was terrible for his health and killed millions of brain cells. He listened, smiled and took another hit. I believe that no amount of common sense, logic or proof will stop these maga cultists from taking another hit because they like the high.', 'created': '2024-11-13 08:17:51', 'submission_id': '1gq6ky0'}
{'comment': "We are the nerds in school and elections are a popularity contest.\xa0 We're fucked.", 'created': '2024-11-13 14:00:39', 'submission_id': '1gq6ky0'}
{'comment': 'No, fuck the right and their lies. What the Democrats need is a story to sell. A plan, and a radical one at that, that we can all stand behind and offer the people. The power on the right isn\'t that they lie, it\'s that they all tell the same lie, and the people hear it and make it the truth. The Democrats need a story as well. Single payer, ubi, and the new deal are the types of stores I\'m talking about. I didn\'t know what this generations plan needs to be, but you can\'t go chasing right wing podcasts and yelling "no no, that\'s untrue!"', 'created': '2024-11-13 15:24:36', 'submission_id': '1gq6ky0'}
{'comment': 'i don’t disagree about the messaging but have any of us tried in our own lives to tell the brainwashed followers none of what they watch is true or fact check the insanity? i had to insist to a family member that children were not using litter boxes in school. like we were talking about granite and colors for home remodels and boom now we’re talking about litter boxes. i was like wtf just happened? they are in a cult. you cannot reason with cult members. that being said now that they’re in for a lot of hurt, along with us, they may be more open to reality. who know. in 2016 every day i thought we can’t go any lower and here we are. going lower and lower. i hope there will be something in my lifetime to rebuild', 'created': '2024-11-13 13:54:52', 'submission_id': '1gq6ky0'}
{'comment': 'He can be all three of those things at once, you silly goose. \n\nAn idiotic, soulless asshat.', 'created': '2024-11-13 14:51:01', 'submission_id': '1gq6ky0'}
{'comment': 'Yes.', 'created': '2024-11-14 05:01:23', 'submission_id': '1gq6ky0'}
{'comment': "So, what's the plan?", 'created': '2024-11-13 16:40:37', 'submission_id': '1gq6ky0'}
{'comment': 'Good question. Once it’s emotional, you’ve got no shot really. Confirmation bias is very true in many cases', 'created': '2024-11-13 16:32:04', 'submission_id': '1gq6ky0'}
{'comment': 'If they want to be "blissful" why don\'t they just develop a high-strength happy drug like "Joy" from We Happy Few and then make it against the law not to take it? \n\n*When life annoys, pop a Joy!"*', 'created': '2024-11-13 19:02:31', 'submission_id': '1gq6ky0'}
{'comment': 'Let’s be specific. Cult members don’t want to know the Truth.\n\nActual “people” can be reasoned with.', 'created': '2024-11-13 23:45:30', 'submission_id': '1gq6ky0'}
{'comment': 'You smack them in the face with reality. The next 4 years is going to be the smack they need right in their wallets.', 'created': '2024-11-14 06:53:31', 'submission_id': '1gq6ky0'}
{'comment': 'They don’t REMEMBER. \n\nThey simply don’t fact-check or even take notice of the times they’ve been lied to.', 'created': '2024-11-13 23:49:18', 'submission_id': '1gq6ky0'}
{'comment': 'fighting for the "everyman" big Rush Limbaugh bs', 'created': '2024-11-13 19:58:49', 'submission_id': '1gq6ky0'}
{'comment': 'Pretty sure that means he committed naturalization fraud. They probably should have already stated proceedings against him. I know they won’t. I don’t think the Democrats have the nerve for something like that, but they should.', 'created': '2024-11-13 15:40:51', 'submission_id': '1gq6ky0'}
{'comment': 'I want you to know I read your entire post. You make an excellent point.', 'created': '2024-11-13 10:24:03', 'submission_id': '1gq6ky0'}
{'comment': 'What if the problematic person in question is the vast majority of American voters?\n\nEdit: thank you for your extremely thoughtful post', 'created': '2024-11-13 13:32:16', 'submission_id': '1gq6ky0'}
{'comment': 'Interesting angle. I’m an alcoholic in recovery, lifelong Dem, and listening to everything to learn. \n\nOne aspect missing here, which AA states as fundamental is surrender to a higher power. I’m an atheist and my experiences with the program allowed for me to work the program with a non-deity higher power. \n\nSo sure people can admit they are powerless over the propaganda, but in many people’s minds the messaging from those looking to seize power is being boosted from on High. To supplants someone’s belief that their hate is good AND sponsored by Christianity Inc is a tall order indeed. \n\nWe may find ourselves learning the lessons regarding church and state yet again. Unfortunately those leading both religious and political institutions in our world have conspired to bleed the populace dry and fight one another over petty grievances. \n\nHow do we make equality and rule of law as sexy as eternal salvation? Day to day life must become intolerable and the masses wake up to realize we *all* have nothing. Something something revolution.', 'created': '2024-11-13 14:05:14', 'submission_id': '1gq6ky0'}
{'comment': "I think you're right.", 'created': '2024-11-13 10:04:18', 'submission_id': '1gq6ky0'}
{'comment': "I don't know what's worse, A tube sucking paint-head or an apathetic voter that just didn't vote in this election.", 'created': '2024-11-13 08:23:09', 'submission_id': '1gq6ky0'}
{'comment': 'Point well taken.', 'created': '2024-11-13 15:18:28', 'submission_id': '1gq6ky0'}
{'comment': 'Send most of America back to 3rd grade civics.', 'created': '2024-11-13 18:10:06', 'submission_id': '1gq6ky0'}
{'comment': 'The plan has to be to lean into real solutions to reform government. To have a real plan to deal with the deficit and a defense budget which is completely out of control.\n\nWe need to be the anti-corruption and real solutions party.', 'created': '2024-11-13 18:19:46', 'submission_id': '1gq6ky0'}
{'comment': 'We are emotion-based creatures that often use rational thought to justify our emotions.', 'created': '2024-11-13 18:09:43', 'submission_id': '1gq6ky0'}
{'comment': 'It\'s tough. Demanding accountability from the 4th estate was a lost cause *before* the election, with the acceptance of the "fake news = anything I disagree with" narrative, and there\'s zero chance for systemic improvement anytime in the near future. \n\nYou can\'t counter-message the propaganda machine when people actively refuse to listen or challenge the accepted narrative. The information is readily available, at our fingertips in a heartbeat, explained at every comprehension level and attention span. It\'s not a question of access, it\'s a matter of choice (and time, and energy, and standards). \n\n40 years ago, if you wanted to know what\'s going on in the world, you could watch national news, local news, catch the radio updates, or read the paper. You could listen or skim to the parts that interested you the most, but you would inevitably be exposed to stories, opinions, and topics that were outside of your preferences or opposed to your point of view. It would be notable, obvious, and strange for something like "The sitting President decides not to continue his reelection campaign" to be a story that anyone "missed".\n\nBut now, if it\'s not rolled into a new Netflix series, or mentioned in passing on their fantasy football podcast, there are (apparently) thousands of people who will never see that news, never have a conversation about it at work, and show up to the voting booth wondering when Joe Biden decided not to run. \n\nI\'m still trying to process the staggering number of *willfully uninformed* voters - blissfully ignorant to the world around them but still certain that they should do their duty and vote - and how much overlap that group shares with the propaganda "addict" group; but the outcome is, ultimately, the same. \n\nIt\'s gonna come down to that majority of voters "hitting rock bottom" with buyer\'s remorse, and whether or not there are people around to hold them accountable to their decision and willing to demand more than "I\'m sorry\'s" and "I didn\'t know\'s". \n\n\nPersonally, with my family I\'m needling "you don\'t know enough to have an opinion on this topic" as often as necessary. I offer to install something like Ground News on their phones, sign them up for Morning Brew, or buy them a newspaper subscription, but I don\'t expect any takers early on. We\'ll have to go through the "did my own research" phase first, and it\'ll be annoying, but it\'s common ground to build from.', 'created': '2024-11-13 14:26:06', 'submission_id': '1gq6ky0'}
{'comment': 'Please stop with the "vast majority" shit. Trump never had the vast majority', 'created': '2024-11-13 19:31:12', 'submission_id': '1gq6ky0'}
{'comment': "If only. In fact, without a Department of Education it's going to get much much worse.", 'created': '2024-11-13 18:18:10', 'submission_id': '1gq6ky0'}
{'comment': '“We”?\n\nSpeak for yourself, Kimo Sabe.', 'created': '2024-11-13 23:46:24', 'submission_id': '1gq6ky0'}
{'comment': 'What an incredibly thoughtful and helpful response. You are a smart and kind person.\n\nYou’re right that some sort of rock-bottom needs to be reached. For me, this is it: we officially elected a rapist as president. That’s a Rubicon that can’t be uncrossed\n\nOne thing I’m struggling with personally is how to get news going forward. This election cycle broke my trust in several organizations, including them times in the Washington Post.', 'created': '2024-11-13 14:43:30', 'submission_id': '1gq6ky0'}
{'comment': "Here's a companion bit:\n\nhttps://reutersinstitute.politics.ox.ac.uk/news/why-millions-americans-avoid-news-and-what-it-means-us-election\n\nThe percentage of people who just flatout actively avoid the news is increasing. So basically political disengagement and low-information are creating a feedback loop.", 'created': '2024-11-13 23:01:02', 'submission_id': '1gq6ky0'}
{'comment': "My fear is that by the time they reach rock bottom and get buyer's remorse, MAGA might already be too entrenched.", 'created': '2024-11-14 02:12:01', 'submission_id': '1gq6ky0'}
{'comment': 'Good point but it’s still a majority', 'created': '2024-11-13 19:42:05', 'submission_id': '1gq6ky0'}
{'comment': 'That’s their goal.', 'created': '2024-11-13 18:19:23', 'submission_id': '1gq6ky0'}
{'comment': "Look into Ground News - it's not perfect, but it does have the benefit of grouping related stories from multiple publishers under a single topic/header so you can compare and contrast coverage across multiple sources, spot trends and headline bait, and do some basic sorting based on factuality and bias metrics.", 'created': '2024-11-13 15:11:54', 'submission_id': '1gq6ky0'}
{'comment': 'Copied my answer from a similar post:\n\nGet more involved in the community with mutual aid, non-profit and advocacy groups. Get involved with voting rights groups and and groups like the ACLU and NAACP. Attend board of Education meetings, state and local board of elections meetings, attend city council and Board of Commissioners meetings become a block or precinct captain with your local Democratic party. Volunteer to help at events with your local party "tabling" at local community events and festivals, help set up and tear down at forums and debates and fundraising events and such for the local county Dems. Take to the streets when like minded folks protest. Actual opportunities are going to vary wildly depending on what state you are in and what county/municipality you are in within that state.\n\nFind some ways to get in to some Good Trouble.', 'created': '2024-11-13 10:42:23', 'submission_id': '1gq649u'}
{'comment': 'We still control where and how we spend our money, I am hoping we make extreme use of this fact, in unison. We may need a few national strikes or days no one eats out.', 'created': '2024-11-13 07:08:42', 'submission_id': '1gq649u'}
{'comment': 'Don\'t **resist**, instead **change** the playing field. Resistance is just reacting to the other side. Don\'t let them set the agenda.\n\nBring free and accurate news and information to those who aren\'t getting it. At the very least, get people to stop depending on tainted media from Musk, Zuck, and Fox. \n\nTo call some of the Trump voters "low information" would be to give them too much credit. \n\nYou may have seen this already. Some of the people cited by MeidasTouch in this piece about *Trump regretters* are astonishingly naïve and almost totally devoid of substantive facts. The one who wanted to kill Obamacare but keep the Affordable Care Act is classic. \n\n[https://www.youtube.com/watch?v=pOg-PSE08HU](https://www.youtube.com/watch?v=pOg-PSE08HU) \n\nThere\'s one thing we can all do which is overlooked. When a public place (waiting room, laundromat, hotel lobby, etc.) has a TV playing with Fox News, ask to change the channel to something neutral like the Weather Channel or ESPN. We need to shut down disinformation one device at a time.', 'created': '2024-11-13 07:34:25', 'submission_id': '1gq649u'}
{'comment': "Don't resist. Protect yourself first. Get your shots, make those big purchases before the tariffs kick in. Then be petty every day of the Trump Administration about the price of eggs and gasoline.\n\nAmerica is going to get what it voted for good and hard and then maybe we'll learn not to trust liars and rapists.\n\nJust protect yourself first.", 'created': '2024-11-13 07:38:18', 'submission_id': '1gq649u'}
{'comment': "Well, because so many women are going to be affected by this, one thing that men (and people without a uterus) are doing is downloading period tracking apps and updating them every time they do something like eat a hotdog or use the toilet to create garbage data on the databases that the new administration will be using to track pregnancies. If our new masters want to feed us misinformation, that's a two-way street. I intend to lie to them every opportunity I get.", 'created': '2024-11-13 13:10:59', 'submission_id': '1gq649u'}
{'comment': 'If the GoP playbook is any example, pander to insecure, uneducated, mediocre white men. Act like you’re half as smart as you are. Lie 90% of the time, and just tell people what they want to hear.', 'created': '2024-11-13 07:02:20', 'submission_id': '1gq649u'}
{'comment': 'Illegitimati non carborundum,', 'created': '2024-11-13 07:23:28', 'submission_id': '1gq649u'}
{'comment': 'As our future is uncertain at this point in time, I strongly suggest avoiding any communication with MAGA’s. If it can’t be avoided, don’t insert your own personal thoughts or factual information. Try to immediately divert conversation to sports of any kind or other interests they might have. \n\nThis is for your immediate and long term safety. Their hatred of anyone or anything “different” from them is deeply embedded at this time. \n\nForm small support groups with those you unequivocally trust and be cautious of those you don’t know well. \n\nPrepare for possible hardship in the near future. \n\nThese are my best strategies for a very uncertain future at this time.', 'created': '2024-11-13 11:45:00', 'submission_id': '1gq649u'}
{'comment': "Find a way to help Stephen Spoonamore. He's worked in hacking for a long time and he seems more convinced daily that the math isn't working.\n\nBullet Ballots (BBs) have ONE vote for President and nothing for anyone else. \n\nHere's a link.\n\nhttps://spoutible.com/thread/37969889\n\n>8/10\nTrump BBs\nAZ - 123K+ 7.2% of his total (enough for win!)\nNV - 43K+ 5.5% of his total (enough to stop recounts)\nID - 2K 0.03% of his total, but he didn't need more votes\nOR - >4K >0.05% of his total, at most, but this was Harris turf\nUT >1K >0.01% of his total, again no need.\n\n10:42 AM - Nov 12, 2024\n\n>9/10 There is no way, absolutely none, for me to look at these numbers and not laugh, gag, and blow a big fat penalty whistle and demand the game of Install the Fascist stop and somebody on the legal side looks at this hard. Thread on lawyer update coming after an upcoming call.\n\n10:42 AM - Nov 12, 2024\n\n>10/10 I do not have a working theory how this was done, but it's huge and professional. And you can help now. Drill Swing State local data, find single Precincts w/ Pres. counts over 2% higher than all downballot. We need to find specific locations where BBs are heaviest and audit those precincts.\n\n10:42 AM - Nov 12, 2024\n\n>In response\xa0Stephen Spoonamore\n\n# counties in swing states GA 159, WI 72, MI 83, PA 67, AZ 15, NV 17, NC 100, total 530. USA total approx 3300.\n\n07:26 PM - Nov 12, 2024", 'created': '2024-11-13 08:08:07', 'submission_id': '1gq649u'}
{'comment': 'Buy guns and become as heavily armed as the opposition', 'created': '2024-11-13 13:20:46', 'submission_id': '1gq649u'}
{'comment': 'Voter registration', 'created': '2024-11-13 10:59:12', 'submission_id': '1gq649u'}
{'comment': "Politics have failed us. We presented the only sane candidate, and here we are.\n\nThe answer can't be politics.", 'created': '2024-11-13 12:33:06', 'submission_id': '1gq649u'}
{'comment': "https://youtu.be/T5cq1ITqzWU?si=oM1H3Yr1xMiwqPBh\n\nWell it's looking like we may actually be able to combat this shit", 'created': '2024-11-13 15:51:41', 'submission_id': '1gq649u'}
{'comment': "I was thinking we need the 60's style protests? A strike/call out day? Writing to Senator and Rep as much as possible, no matter their party affiliation?\n\nI feel so helpless.", 'created': '2024-11-13 16:35:21', 'submission_id': '1gq649u'}
{'comment': "I'm too tired. Of everything.", 'created': '2024-11-13 17:03:47', 'submission_id': '1gq649u'}
{'comment': 'I\'d love to see and hear every comic and media make relentless humiliating fun of him. "Tariffs for kids! The more you know"! Run the penis talk over and over. Just relentless humiliating proof of his incompetence..\nMore naked rump balloons and billboards. In the mean time get your vaccinations updated, save your money and get involved with local causes.', 'created': '2024-11-13 18:58:38', 'submission_id': '1gq649u'}
{'comment': 'Join or start a local volunteer org. Get involved in local races. County clerk, school board, anything. Make people’s lives better.', 'created': '2024-11-13 16:09:52', 'submission_id': '1gq649u'}
{'comment': 'become active in your local democrat parties.', 'created': '2024-11-13 16:32:36', 'submission_id': '1gq649u'}
{'comment': 'Focus on local level government for now', 'created': '2024-11-13 19:14:33', 'submission_id': '1gq649u'}
{'comment': 'How about instead of “resisting” we demand better from our party to ensure we win elections?', 'created': '2024-11-13 19:43:42', 'submission_id': '1gq649u'}
{'comment': "We don't win without a populist ourselves.\nForce populism locally.", 'created': '2024-11-13 09:14:18', 'submission_id': '1gq649u'}
{'comment': 'also fight dirty remind them that trump cheated.', 'created': '2024-11-13 16:35:04', 'submission_id': '1gq649u'}
{'comment': '[1:44 RESIST 💪](https://www.youtube.com/embed/2NTyyCwwDfY?start=105)', 'created': '2024-11-13 14:06:42', 'submission_id': '1gq649u'}
{'comment': 'I like that picture.', 'created': '2024-11-13 15:52:37', 'submission_id': '1gq649u'}
{'comment': "Here's the tea, see that teacher who is very pro-books? Help them run for the school board. See that Nurse passionate about making change? Help them run for Congress. That union worker who wants more rights for their workers in their city? Help them run for city council or mayor. Get involved in local elections, help kids read banned books etc.", 'created': '2024-11-13 19:00:54', 'submission_id': '1gq649u'}
{'comment': "They aren't going to complain about trump. It will always be the democrats fault. You aren't dealing with thoughtful, rational minds.", 'created': '2024-11-13 19:06:50', 'submission_id': '1gq649u'}
{'comment': 'It’s going to take more than organizing, strikes and protesting, \n\nIt will probably require actions that few are capable of, and even fewer will actually do, and nearly none will go unscathed, \n\nFear has manipulated the brave into foolishness…', 'created': '2024-11-13 20:40:53', 'submission_id': '1gq649u'}
{'comment': 'the american people just elevated a fascist to the most powerful position in world history. \n\nyou should buy a rifle, and a lot of ammunition, and learn how to use it.', 'created': '2024-11-14 01:34:21', 'submission_id': '1gq649u'}
{'comment': 'Get a gun and learn how to use it.', 'created': '2024-11-14 02:14:11', 'submission_id': '1gq649u'}
{'comment': 'Www.weareworthfightingfor.com\n\nHas ways to resist.', 'created': '2024-11-14 05:23:11', 'submission_id': '1gq649u'}
{'comment': '[removed]', 'created': '2024-11-14 23:37:43', 'submission_id': '1gq649u'}
{'comment': 'Speak up at Thanksgiving.', 'created': '2024-11-13 16:15:52', 'submission_id': '1gq649u'}
{'comment': "Since so many people voted for him on his lie that he's good for the economy, I can't help but think doing something big enough to hurt the economy would be meaningful. But it would take a big effort for a large group of people to basically cut spending down to essentials to make any impact.", 'created': '2024-11-13 17:33:27', 'submission_id': '1gq649u'}
{'comment': 'What is there to resist? They are the legitimate, popularly elected government of this country. There’s no spin anymore. Our party has lost its mandate and all we can do is fight hard in the midterms to try and shore up our position in the house.', 'created': '2024-11-13 07:09:49', 'submission_id': '1gq649u'}
{'comment': 'When Trump creates his "Red Army" to do his dirty work he will target democrat governors and their states. This shit is getting real very fast and I\'m getting a gun license. Peace and love doesn\'t work against the mindset of political retribution backed up by a private army....', 'created': '2024-11-13 21:20:12', 'submission_id': '1gq649u'}
{'comment': 'Nothing. We’re fucked forever now.', 'created': '2024-11-13 15:30:18', 'submission_id': '1gq649u'}
{'comment': "Even small things like supporting NPR helps. Ignorance is a powerful tool for the far right and its why NPR & PBS are primary targets for them. But I agree that supporting local movements is a fantastic start, alongside supporting groups like ACLU, EFF, etc. \n\nI said it before & I'll keep saying it, if you want change, especially progressive change, you start at the grassroots. Great politicians start small in municipal government or as a Congressional Rep (e.g. The Squad). Everything you mentioned are the actions needed to do this!", 'created': '2024-11-13 19:47:42', 'submission_id': '1gq649u'}
{'comment': '[removed]', 'created': '2024-11-13 10:53:36', 'submission_id': '1gq649u'}
{'comment': "It can work on a smaller level. Our personal trainer is an ardent Trump supporter and last week we cancelled everything explaining we wanted to focus on saving to prepare for the economic uncertainty that the new tariffs would bring. \n\n$400 a month under the table and he depended on a few private clients like us to make ends meet. I just couldn't stand having another goddamn conversation about politics with him while working out, plus we're for sure in for a lot of hurt with the tarrifs anyway.", 'created': '2024-11-13 10:45:35', 'submission_id': '1gq649u'}
{'comment': "The problem is so many businesses donated to Trump that it's nearly impossible to do that and live a normal life without becoming some sort of self-reliant hermit.", 'created': '2024-11-13 07:59:56', 'submission_id': '1gq649u'}
{'comment': 'Yes. Please stop using amazon, y’all. I swear you don’t need it', 'created': '2024-11-13 17:08:40', 'submission_id': '1gq649u'}
{'comment': 'Yes I came to say this! Scorched earth for spending. Rice and beans, beans and rice. Cancel memberships or drop to a lower tier. \n\nWe need a pretty strong recession to hit hard.', 'created': '2024-11-13 15:40:25', 'submission_id': '1gq649u'}
{'comment': 'You are funny', 'created': '2024-11-13 09:28:45', 'submission_id': '1gq649u'}
{'comment': 'Universal remote TV-B-Gone turns off TV’s', 'created': '2024-11-13 14:42:30', 'submission_id': '1gq649u'}
{'comment': 'Please do both. Protect yourself. But don’t buy into this nonsense that America will somehow learn its lesson by letting democracy burn. We can and should do better than that.', 'created': '2024-11-13 16:42:12', 'submission_id': '1gq649u'}
{'comment': "They already had COVID and Jan 6 under Trump and apparently didn't care about it and voted for him again. The sad truth is most of the US doesn't give a shit and it's all just vibes at the current time and Harris didn't do enough to explain on simple terms that they inherited a bad hand from trump with COVID inflation and did a better job fixing it than anywhere else in the world. \n\nPeople are so dumb they literally forgot COVID started under Trump.", 'created': '2024-11-13 18:43:17', 'submission_id': '1gq649u'}
{'comment': 'that is fucking BRILLIANT!!! please post that in more men-centered subs. this needs to happen IMO', 'created': '2024-11-13 21:05:39', 'submission_id': '1gq649u'}
{'comment': "Fuck that. I wouldn't be able to sleep at night.", 'created': '2024-11-13 08:05:46', 'submission_id': '1gq649u'}
{'comment': 'Also, be rich already***', 'created': '2024-11-13 08:30:08', 'submission_id': '1gq649u'}
{'comment': 'Don’t let the bastards grind you down.', 'created': '2024-11-13 07:24:03', 'submission_id': '1gq649u'}
{'comment': 'I believe the election was fixed. I think Elon was in Pennsylvania to draw attention away from the work the Cheater crew on the ground was having to to so in visible places', 'created': '2024-11-13 13:26:19', 'submission_id': '1gq649u'}
{'comment': 'I’ve been thinking about getting an AR just for this reason. If I have to fight to preserve our democracy then so be it.', 'created': '2024-11-13 15:25:33', 'submission_id': '1gq649u'}
{'comment': 'r/liberalgunowners', 'created': '2024-11-13 18:37:26', 'submission_id': '1gq649u'}
{'comment': 'I feel the Democrats should’ve been building an anti-fascist infrastructure the past four years. We were hoping that we could pull maga out of the cult mind set and they would see the rationality of everything the Biden administration was doing. They weren’t interested in that because they’re hooked on the propaganda and misinformation they’re being fed from the Kremlin via Fox News and all these other conservative outlets.', 'created': '2024-11-13 13:34:14', 'submission_id': '1gq649u'}
{'comment': 'His idea about what is good for the economy is the thing that is bad for the economy.\n\nThe dumbass thinks that you put tariffs on goods being imported into the United States is going to hurt the people that are selling it. It’s not. \n\nPeople will want Apple products even if it adds $50 to the price of an iPhone, which is what the importers will do when they sell it to the people in the United States is tack on 50 bucks to cover the tariff they have to pay. \n\nThe Chinese aren’t gonna pay that tariff anymore than Mexico was going to build that wall. The maga people need to get their heads out of their ass.', 'created': '2024-11-13 20:13:43', 'submission_id': '1gq649u'}
{'comment': 'A deranged criminal who "won" with the help of foreign governments and naked vote buying will never be morally legitimate although it\'s apparently lawful 🤢\n\n obviously, denial can\'t be the platform in 2 years, but I will not accept this nor those who imposed it . To avoid insanity or prison i will tolerate with civility what/who I can\'t cut out from my life and ignore', 'created': '2024-11-13 07:18:30', 'submission_id': '1gq649u'}
{'comment': 'So let the second coming of Hitler take over? Hitler got his power legally, too.', 'created': '2024-11-13 08:00:43', 'submission_id': '1gq649u'}
{'comment': 'Unless a serial cheater cheated.\n\nSee this thread on "Bullet Ballots." A ballot with only a vote for President.\n\nhttps://spoutible.com/thread/37969889', 'created': '2024-11-13 08:20:47', 'submission_id': '1gq649u'}
{'comment': 'That may be too late in my opinion.', 'created': '2024-11-13 14:54:29', 'submission_id': '1gq649u'}
{'comment': 'There’s a commerce strike planned Jan 20th', 'created': '2024-11-13 15:54:18', 'submission_id': '1gq649u'}
{'comment': 'That is by far too late.', 'created': '2024-11-13 17:19:35', 'submission_id': '1gq649u'}
{'comment': "That's why I cancelled my gym subscription many years ago. They kept putting Newsmax & Fox News on the TVs, staff openly talked positively about far-right policies, etc. It wasn't on the level of $400 a month, but it's one less account funding the gym. And it allowed me to explore the parks and walkways my city started building at the time.", 'created': '2024-11-13 19:50:39', 'submission_id': '1gq649u'}
{'comment': 'I’ve been using the Goods Unite Us app to figure out which businesses supported Trump', 'created': '2024-11-13 14:14:25', 'submission_id': '1gq649u'}
{'comment': "It's just one way to fight back. The more junk data that is generated, the harder it will be for them to suss out the real data. I intend to make any data they want to use unreliable and unverifiable. See how they like it when their own citizens lie to them like they lie to us.", 'created': '2024-11-13 21:20:44', 'submission_id': '1gq649u'}
{'comment': 'I’ve been asking republicans and people associated with them how they sleep at night for years and still not got a straight answer.', 'created': '2024-11-13 08:07:04', 'submission_id': '1gq649u'}
{'comment': 'It seems a lot of people are good with screwing over their fellow man in this country. So we are definitely in the minority.', 'created': '2024-11-13 13:21:04', 'submission_id': '1gq649u'}
{'comment': 'Psh. I live in the rural South. I promise, from what I’ve observed, being rich is not a prerequisite for GOP buffoonery.', 'created': '2024-11-13 08:33:30', 'submission_id': '1gq649u'}
{'comment': 'Yeah!', 'created': '2024-11-13 10:33:57', 'submission_id': '1gq649u'}
{'comment': 'this i hope more dems arm up too.', 'created': '2024-11-13 16:30:06', 'submission_id': '1gq649u'}
{'comment': "do it now. and start training. a rifle you haven't trained with is a club.", 'created': '2024-11-14 01:39:15', 'submission_id': '1gq649u'}
{'comment': '[removed]', 'created': '2024-11-13 19:17:46', 'submission_id': '1gq649u'}
{'comment': 'omg STOP. Every congress the dems are in charge they desperately try to pass absolutely everything they can, including that. We do not give them a big enough majority. Stop blaming the party.', 'created': '2024-11-15 03:34:37', 'submission_id': '1gq649u'}
{'comment': 'Yes, I understand that but I think reducing consumerism overall will a help escalate things.', 'created': '2024-11-13 20:15:41', 'submission_id': '1gq649u'}
{'comment': 'Stop, blaming other governments, blame the MAGA fanatics intoxicated with kool aid. \nThey will be the first complaining and whining. \nThey will get a hard penis all the way', 'created': '2024-11-13 09:31:31', 'submission_id': '1gq649u'}
{'comment': 'Also the “source” you link is the liberal equivalent of a Q Drop you’re just embarrassing yourself.', 'created': '2024-11-13 14:43:03', 'submission_id': '1gq649u'}
{'comment': 'Election denialism does not suddenly become OK or acceptable when it’s our side doing it. Cut it out.', 'created': '2024-11-13 09:53:24', 'submission_id': '1gq649u'}
{'comment': "I do wish it were closer, but that's when they were able to align contracts ending. Besides, organizing an entire nation's workforce will take time. \n\nWe should absolutely fight in the meantime, but I believe a general strike is our best chance at truly improving the lives of everyone in this country. \n\nMore info here, and you can sign up with your info/demands: [https://solidarity.uaw.org/](https://solidarity.uaw.org/)", 'created': '2024-11-13 18:15:53', 'submission_id': '1gq649u'}
{'comment': 'Could you share more details? Who is organizing it? Are enough people on board to actually make a difference? What are the demands? Strikes need strategy.', 'created': '2024-11-13 18:31:14', 'submission_id': '1gq649u'}
{'comment': "Please see my edit above. I know it feels far away. I had that reaction initially too, but there are good reasons for it being so far out. And oppression is only going to get worse, which might actually help motivate more people by then anyway. \n\nI encourage you to get people on board sooner rather than later, so that we're all ready when the time comes.", 'created': '2024-11-13 18:30:16', 'submission_id': '1gq649u'}
{'comment': 'Walk lightly but carry a big stick. If they want a fight we’ll give them a fight.', 'created': '2024-11-13 16:32:40', 'submission_id': '1gq649u'}
{'comment': 'An expensive club at that', 'created': '2024-11-14 01:39:48', 'submission_id': '1gq649u'}
{'comment': 'Start doing your small part, in any and every way you can.', 'created': '2024-11-13 19:19:03', 'submission_id': '1gq649u'}
{'comment': "Does noticing an empirically verifiable anomaly, such as a voting pattern happening at similar low rates in a couple 'safe' States but occurring two orders of magnitude more often in a couple 'battleground' States, and subsequently wishing to find out why or if the pattern holds in other States, constitute denialism?\n\nThe phenomena could be related to different sets of voting slates, or manners of voting, or some other potentially pertinent factors. It could be worthwhile to find out why over 100 times as many voters only voted for president in particular States versus other States.\n\nBut, if it turns out that, say, 'Bullet Ballots' are .01% to .07% of all ballots in all 'safe' States, and break randomly to one or the other candidate, but are 1% to 7% in 'battleground' States and break mostly to one candidate and constitute the margin of victory in some of them, would that warrant further investigation? For fraud, maybe, but maybe the battleground nature somehow increases this type of voting and being able to tap into that voter base is something to try to understand.", 'created': '2024-11-13 12:19:45', 'submission_id': '1gq649u'}
{'comment': "There's a growing amount of evidence of widespread voter ballots being hacked or missing. Russians did the same thing in their elections this year. Scroll down to the sources of WSJ, CNN, NBC, Reuters, CBS, Business Insider: \nhttps://www.reddit.com/r/DarkBRANDON/comments/1gndhve/compiled_evidence_and_news_about_election/\n \nThere are also alarms going off on how much we've been hacked in 2016 as well, but DOJ is ignoring the reports. \n\nThe Russians did it in small amounts so as to not attract attention. They would have failed if they hacked ALL democrat votes to make 0 votes for democrats. We would have known something was wrong and tried again. They probably expected Trump to win in 2020 so they didn't do much that time. The vast majority of Russian people do not want Putin. So of course Putin's party hacked the election. Why is it out of the realm of possibility of them also hacking our election?", 'created': '2024-11-13 12:05:43', 'submission_id': '1gq649u'}
{'comment': 'no thanks we need to fight fire with fire.', 'created': '2024-11-13 16:34:28', 'submission_id': '1gq649u'}
{'comment': 'Oh, I figured it aligned with their contracts. It is too late for the non-union worker. This is a situation that needs to be fought for MUCH sooner than that.\n\nEdit: Also, it may be too late for the union workers if Trump and the ruling class get their way.', 'created': '2024-11-13 18:20:22', 'submission_id': '1gq649u'}
{'comment': 'Call and make sure your vote was counted folks.', 'created': '2024-11-13 13:32:33', 'submission_id': '1gq649u'}
{'comment': 'No there isn’t. You sound like a conspiracy theorist. Get a grip', 'created': '2024-11-13 14:36:34', 'submission_id': '1gq649u'}
{'comment': 'Link wont work', 'created': '2024-11-13 14:38:14', 'submission_id': '1gq649u'}
{'comment': 'you aren’t fighting anything no serious democratic leader is denying the election. You’re just turning yourselves into fringe extremists which is sad and stupid', 'created': '2024-11-13 16:57:16', 'submission_id': '1gq649u'}
{'comment': "They are organizing non-union workers as well! My hope is that enough powerful unions get together that they can facilitate forming a general union to support those of us in fields with no representation. That's why you should sign up through that solidarity link. \n \nI really do hear you that it needs to happen sooner, but you have to think about this logistically. Most people don't even know about this yet. Occupy Wall Street failed because it happened too fast and wasn't accessible. This has a real chance at success if done right.\n\nTrue activism and organizing is a slog. If you really want to make change, you have to accept that, buckle down, and get to work.", 'created': '2024-11-13 18:27:54', 'submission_id': '1gq649u'}
{'comment': None, 'created': '2024-11-13 14:40:45', 'submission_id': '1gq649u'}
{'comment': 'so be it being milk toast is one of the reasons we lost the election so its time we use their tactics against them.', 'created': '2024-11-13 17:23:48', 'submission_id': '1gq649u'}
{'comment': 'Not enough to swing an entire election, no', 'created': '2024-11-13 14:41:41', 'submission_id': '1gq649u'}
{'comment': None, 'created': '2024-11-13 14:43:12', 'submission_id': '1gq649u'}
{'comment': 'https://preview.redd.it/ucbmi3jzdo0e1.jpeg?width=1492&format=pjpg&auto=webp&s=4d5ee0eff35a497afe5a6d253a3078b515140f50\n\nok buddy', 'created': '2024-11-13 15:02:45', 'submission_id': '1gq649u'}
{'comment': None, 'created': '2024-11-13 15:07:33', 'submission_id': '1gq649u'}
{'comment': 'It’s out of the realm of possibility because american elections are highly decentralized and the opposition party is actually powerful (literally in control of government right now). And you didn’t post any link.', 'created': '2024-11-13 15:14:06', 'submission_id': '1gq649u'}
{'comment': None, 'created': '2024-11-13 15:17:20', 'submission_id': '1gq649u'}
{'comment': 'The sproutible link? That’s not a source and there is literally a fact check plastered on the post saying it’s non credible.', 'created': '2024-11-13 15:21:00', 'submission_id': '1gq649u'}
{'comment': None, 'created': '2024-11-13 15:23:21', 'submission_id': '1gq649u'}
{'comment': 'Post the links. I am sure you are misconstruing their reporting', 'created': '2024-11-13 15:24:29', 'submission_id': '1gq649u'}
{'comment': 'The more the better', 'created': '2024-11-13 07:02:02', 'submission_id': '1gq4xc4'}
{'comment': 'He better bring the white board', 'created': '2024-11-13 12:38:41', 'submission_id': '1gq4xc4'}
{'comment': 'Oh, NOW the WaPo decides to show up. Like they had no hand in this.', 'created': '2024-11-13 07:52:47', 'submission_id': '1gq4nrh'}
{'comment': 'No duh!🙄', 'created': '2024-11-13 06:07:06', 'submission_id': '1gq4nrh'}
{'comment': 'In other words, water is wet.', 'created': '2024-11-13 06:06:10', 'submission_id': '1gq4nrh'}
{'comment': 'We were the canary in the coal mine. Republicans told the canary to shut the fuck up, and ran faster into the mine just to spite the canary. Now the canary is dead and the Republican, empowered by the canary’s death, descends further into the mine towards his inevitable doom.', 'created': '2024-11-13 14:30:29', 'submission_id': '1gq4nrh'}
{'comment': 'They propose the most insane lies on the right and they eat it up. We walk them through pretty basic reality and we’re the crazy ones', 'created': '2024-11-13 07:06:20', 'submission_id': '1gq4nrh'}
{'comment': "And yet, the Post couldn't decide.", 'created': '2024-11-13 07:51:36', 'submission_id': '1gq4nrh'}
{'comment': 'Trump is the antichrist its why hes universally beloved', 'created': '2024-11-13 14:46:42', 'submission_id': '1gq4nrh'}
{'comment': "At this point the media just writes about this shit to rub it in, not to help.\n\nIf they cared they would've pressed the Trump campaign about Project2025, their fascist, racist and misogynistic agenda on the campaign trail not after he's re-elected.\nIf the media cared about democracy they would've been up in arms with the democrats and the people around the world who recognized Trump for what he is. (A Nazi, a fascist, a rapist and a convict)\n\nAll they're doing now is telling everyone how bad its gonna be, how much he's gonna suck while also making at clear that *now* nothing can and will be done about it, in other words: They're just rubbing it in now, because they got what they wanted (four more years of bonkeds headlines that drive up revenue), until he starts censoring them.", 'created': '2024-11-13 16:48:46', 'submission_id': '1gq4nrh'}
{'comment': 'every media source has covered up the insanity that will happen and now they start reporting on it..', 'created': '2024-11-13 16:50:31', 'submission_id': '1gq4nrh'}
{'comment': 'Perhaps the lesson to be learned is that all you have to do is build an authoritarian movement and then wait for the price of eggs to get too high?', 'created': '2024-11-13 18:02:52', 'submission_id': '1gq4nrh'}
{'comment': ">“They’re not calling him a threat to democracy. They’re not calling him a fascist,” podcaster Charlamagne Tha God said last week. “It just makes you wonder how much of it did they really believe?” If Democrats like President Joe Biden and Vice President Kamala Harris really believed Trump was a danger, “then somebody’s speech would be about how America [messed] up and how things are about to be really bad,” he added. “It just makes you wonder how much of it did they really believe and how much was just politics.”\n\nUtterly asinine take. They're desperate to vindicate their shitty choice by any means. He thinks they should act like Trump did when he was out of office? Some people have class, dignity and respect for democratic norms. They're also likely worried that Trump will make good on his many promises of vengeance and retribution.", 'created': '2024-11-13 19:30:14', 'submission_id': '1gq4nrh'}
{'comment': 'No fucking shit', 'created': '2024-11-13 15:46:13', 'submission_id': '1gq4nrh'}
{'comment': "Many of those that voted for him based solely on the economy are going to regret this like the last time but it's too late and I have no sympathy for them since they knew what they were voting for. At least last time there was a little bit of an excuse since it was his first time and nobody really knew what to expect but this time there is no excuse. Play stupid games, win stupid prizes...", 'created': '2024-11-13 20:32:11', 'submission_id': '1gq4nrh'}
{'comment': '', 'created': '2024-11-13 21:38:48', 'submission_id': '1gq4nrh'}
{'comment': 'The Right Reich could give two shits about WaPo and\nneither could I for putting Bezos about endorsement not that it matters', 'created': '2024-11-13 22:31:55', 'submission_id': '1gq4nrh'}
{'comment': 'WaPo can politely FK off.', 'created': '2024-11-13 22:51:45', 'submission_id': '1gq4nrh'}
{'comment': None, 'created': '2024-11-13 10:28:27', 'submission_id': '1gq4nrh'}
{'comment': "I haven't been watching much news but I saw a clip on CNN and they were asking for details about mass deportations with the urgency it deserves. Too late now.", 'created': '2024-11-13 13:23:51', 'submission_id': '1gq4nrh'}
{'comment': 'I canceled my online subscription after the election. Will never want it again.', 'created': '2024-11-13 14:52:28', 'submission_id': '1gq4nrh'}
{'comment': 'I’ll never forgive any American MSM for sane washing Trump these last few years. They wanted him to win to monetize clicks for another presidency. \n\nAt the detriment of democracy itself.', 'created': '2024-11-13 15:09:45', 'submission_id': '1gq4nrh'}
{'comment': 'This needs another no duh!!! 🤦🏼\u200d♂️', 'created': '2024-11-13 13:14:49', 'submission_id': '1gq4nrh'}
{'comment': '', 'created': '2024-11-13 18:43:33', 'submission_id': '1gq4nrh'}
{'comment': 'The massive corruption of those administrations taught you nothing huh?', 'created': '2024-11-13 14:10:30', 'submission_id': '1gq4nrh'}
{'comment': 'All 4 of those presidents have caused massive harm to the USA that have lasted decades, and Trump and his rich buddies are really aiming to be the worst ever.', 'created': '2024-11-13 12:38:44', 'submission_id': '1gq4nrh'}
{'comment': "Trump is absolutely fan-fucking-tastic for mass media's bottom line. Tuning all of that out and viewing what is happening through a different (international) lens and limiting one's consumption of mass media is probably a decent idea.\n\nNot so much to completely ignore everything, but a digest of all that has happened in the last week consumed at once is going to be better than following the dumpster fire day to day.", 'created': '2024-11-13 17:07:19', 'submission_id': '1gq4nrh'}
{'comment': 'Good. Mainstream media needs to die', 'created': '2024-11-13 15:12:13', 'submission_id': '1gq4nrh'}
{'comment': 'Social media is a much larger culprit now though. Look at the raw numbers of who watches cable news and compare it to how many go on twitter, facebook, youtube and tiktok for their “news”.\xa0', 'created': '2024-11-13 15:53:24', 'submission_id': '1gq4nrh'}
{'comment': 'I’m just focused on surviving month one with a reorganized military answering to a president with immunity.', 'created': '2024-11-13 05:29:30', 'submission_id': '1gq4m1y'}
{'comment': 'The new MAGA dilemma: will they embrace their newest supporters, or deport them?', 'created': '2024-11-13 05:59:55', 'submission_id': '1gq4m1y'}
{'comment': '"Don\'t be a woman.\'', 'created': '2024-11-13 14:08:49', 'submission_id': '1gq4m1y'}
{'comment': "\\#1: Don't be a woman\n\n\\#2: Don't be a black woman", 'created': '2024-11-13 12:20:41', 'submission_id': '1gq4m1y'}
{'comment': "Seriously? By the time there's another election we'll have to import them for support.", 'created': '2024-11-13 05:51:05', 'submission_id': '1gq4m1y'}
{'comment': 'To be fair… Republicans are about to lose these voters also…', 'created': '2024-11-13 16:26:45', 'submission_id': '1gq4m1y'}
{'comment': 'Dems should call them garbage and run on deporting them all, since that seems to be a winning message for them.', 'created': '2024-11-13 07:33:35', 'submission_id': '1gq4m1y'}
{'comment': 'We lost sexist dipshits.\n\n\nGood riddance.', 'created': '2024-11-13 05:55:33', 'submission_id': '1gq4m1y'}
{'comment': 'Working Latinos need tuition free public college, Medicare for all, more affordable housing, student loan forgiveness, and democracy in the workplace.', 'created': '2024-11-13 07:45:46', 'submission_id': '1gq4m1y'}
{'comment': 'They voted against my bodily autonomy. So I’m really struggling with this.\xa0', 'created': '2024-11-13 20:41:56', 'submission_id': '1gq4m1y'}
{'comment': 'Every Democratic campaign organizer needs to read this article. \xa0As a hispanic myself, this is the only way ahead. Our party needs to heed his advise, some of which will be painful: \xa0\xa0\xa0\n\n\xa0“While campaigning, "We didn\'t actually speak about immigration reform because we know that the Latino voter just doesn\'t believe it anymore," Gallego said, meaning, Latino voters don\'t believe Washington will actually pass a massive immigration reform bill in the near future.\xa0\n\n\xa0Instead, Congress needs to focus on fortifying U.S.-Mexico border security first to build trust, he said.\xa0\xa0 \xa0\n\nBut that message, O\'Keefe suggested, may be a hard pill to swallow for fellow Democrats.\xa0 \xa0\n\n"I\'m a pharmacist about to give out very hard pills in the Senate," Gallego said. “', 'created': '2024-11-13 12:49:28', 'submission_id': '1gq4m1y'}
{'comment': 'Step one: Watch trump export their family. \n\nStep two: regain Latino vote.', 'created': '2024-11-13 20:15:49', 'submission_id': '1gq4m1y'}
{'comment': "If you ask me... Women weren't allowed to vote in this country for over 100 years. I think giving them a turn at the helm of democracy without men interfering would be justified and would get things back in balance.", 'created': '2024-11-13 20:32:19', 'submission_id': '1gq4m1y'}
{'comment': 'Advice. Fuck them. They are gone. Bye next.', 'created': '2024-11-14 07:16:35', 'submission_id': '1gq4m1y'}
{'comment': "Hahaha! I mean sorry please do continue, how to convince the people trump wants out of his racist ass administration to not such at his tit. Please I'm all ears", 'created': '2024-11-13 18:20:36', 'submission_id': '1gq4m1y'}
{'comment': "Enough of this already. Democrats still haven't learned anything?", 'created': '2024-11-13 12:52:45', 'submission_id': '1gq4m1y'}
{'comment': 'Immunity is overblown.', 'created': '2024-11-13 06:46:31', 'submission_id': '1gq4m1y'}
{'comment': 'They got what they needed in the form of votes; they’ll have no more use for them now. If there’s one thing you can count on MAGA doing, it’s throwing their own under the bus when convenient.', 'created': '2024-11-13 10:19:18', 'submission_id': '1gq4m1y'}
{'comment': 'Especially a darker one (particularly if known African blood). Oh you didn’t know Latino people were racist/colorist?', 'created': '2024-11-13 19:35:16', 'submission_id': '1gq4m1y'}
{'comment': 'Bingo.', 'created': '2024-11-13 17:54:35', 'submission_id': '1gq4m1y'}
{'comment': 'I see this point made constantly and I’m sure there’s some truth to it for some voters. But dems won 4 senate races in states that voted for Trump, and 3 of them are women. So it seems a bit more complicated than that.', 'created': '2024-11-13 18:37:05', 'submission_id': '1gq4m1y'}
{'comment': "Piss poor advice. Run who you believe should be the candidate if she is an otherwise good choice. If they lose, that's voters being idiots like this last time around. The ends never justify the means when it comes to government even in the face of chaos and possibly dissolution.", 'created': '2024-11-13 14:12:45', 'submission_id': '1gq4m1y'}
{'comment': 'Hispanic voters backed Harris over Trump 2-1. I fucking hate that dems are suddenly cool with racism because Latinos only went democrat 20% harder than white people did.', 'created': '2024-11-13 13:43:30', 'submission_id': '1gq4m1y'}
{'comment': 'I agree. The ugly truth is we apparently can’t win without sexist dipshits.', 'created': '2024-11-13 07:47:37', 'submission_id': '1gq4m1y'}
{'comment': "Ahh yes all the things Trump DIDN'T campaign on but instead ran on mass deportation and ending DACA lol", 'created': '2024-11-13 14:14:30', 'submission_id': '1gq4m1y'}
{'comment': 'Maybe they should have voted for the party that wants to work on getting that?', 'created': '2024-11-14 00:47:22', 'submission_id': '1gq4m1y'}
{'comment': '>Immunity is overblown.\n\n\\- Roger Murtaugh', 'created': '2024-11-13 06:54:39', 'submission_id': '1gq4m1y'}
{'comment': 'I understand what you’re saying, but we need to assume the worst (because we’re in for it).', 'created': '2024-11-13 13:40:54', 'submission_id': '1gq4m1y'}
{'comment': 'I knew! I knew this! I grew up with them in the Catholic church using the N word WAAAYYYY more than the white people are me!', 'created': '2024-11-14 00:45:06', 'submission_id': '1gq4m1y'}
{'comment': 'The executive office is different', 'created': '2024-11-13 21:08:17', 'submission_id': '1gq4m1y'}
{'comment': "It's true that most latinos no longer value their immigrant brethren as much as their cushy cheap wares and entertainment. They are truly Americans now.", 'created': '2024-11-13 14:15:03', 'submission_id': '1gq4m1y'}
{'comment': "it's not racism..we just hope latino trump supporters get what they voted for", 'created': '2024-11-13 14:12:42', 'submission_id': '1gq4m1y'}
{'comment': 'Trump increased his margins with Latinos and even won some majority Latino districts by going full racist against them. I will never understand it but it’s what they want 🤷🏻\u200d♂️', 'created': '2024-11-13 18:33:51', 'submission_id': '1gq4m1y'}
{'comment': 'No they didn’t. It wasn’t 2-1. \n\nIt was 1-1\n\nTrump won 46% of the Hispanic vote.', 'created': '2024-11-13 15:44:20', 'submission_id': '1gq4m1y'}
{'comment': "Winning is not more important than leading. Doesn't matter if you always lose as a result. People have to reform the government from the ground up, not just at the polls. It won't reform itself.", 'created': '2024-11-13 14:16:07', 'submission_id': '1gq4m1y'}
{'comment': 'While these are popular democratic policies. Kamala wasn’t running on them.', 'created': '2024-11-14 01:15:37', 'submission_id': '1gq4m1y'}
{'comment': None, 'created': '2024-11-13 22:06:00', 'submission_id': '1gq4m1y'}
{'comment': 'They seem to be incredibly anti black too. Even more so than some conservative racist white people.\xa0', 'created': '2024-11-14 00:20:24', 'submission_id': '1gq4m1y'}
{'comment': 'That’s Hispanic men specifically. Yes, more Hispanic men went for Trump than women, but overall the Hispanic vote was still majority democratic and it’s disappointing to see Dems talking about them as if the average Latino voter didn’t go democratic. \n\n\nhttps://unidosus.org/press-releases/hispanic-voters-back-harris-over-trump-by-a-62-37-margin-cite-economic-concerns-as-top-priorities/', 'created': '2024-11-13 16:13:06', 'submission_id': '1gq4m1y'}
{'comment': "Yes. It's the same reason so many Christians allow women to have support roles but never a leadership role.", 'created': '2024-11-13 22:14:31', 'submission_id': '1gq4m1y'}
{'comment': 'All the other exit polls have the Hispanic votes higher for Trump than this very odd 2/3rds.\xa0\n\n\xa0If you look at the poll they used, it only had 3600 people across 10 states and this poll you posted heavily over-samples Puerto Ricans, which leads it to being biased and inaccurate because unlike other Hispanic groups, Puerto Ricans stayed blue.\xa0\n\nAlways read the poll sampling methodology before you post…\xa0\n\n\xa0If all Hispanics were actually voting 64/36 Harris would have probably won.\xa0', 'created': '2024-11-13 16:25:02', 'submission_id': '1gq4m1y'}
{'comment': 'This is absolutely dangerous blue states must be prepared to do and defend their educational departments from trumps culture War plan basically patriotic education', 'created': '2024-11-13 05:34:40', 'submission_id': '1gq4eh2'}
{'comment': "It's interesting how he thinks if he shuts down the Department of Education, and cuts off federal funding to schools, he's going to be able to dictate curriculum to schools in blue states", 'created': '2024-11-13 05:10:30', 'submission_id': '1gq4eh2'}
{'comment': 'Imagine adding the bible to the list of books you have to buy but will only read one page of.', 'created': '2024-11-13 06:39:54', 'submission_id': '1gq4eh2'}
{'comment': '"*Multiple video reviews analyzed by MeidasTouch revealed that notably missing from the Constitution in Trump’s Bible are the amendments following the Bill of Rights which make up the Constitution’s first 10 amendments. Trump’s Bible jumps from the original Constitution to the Bill of Rights and then to the Pledge of Allegiance, skipping constitutional amendments 11-27.*"\n\n# $60 Trump Bibles Include U.S. Constitution... Minus All The \'Equal Protection\' Or \'Presidential Term Limits\' Stuff\n\n# Trump\'s new constitutional canon leaves off all those amendments his supporters might not like.\n\n[https://abovethelaw.com/2024/05/trump-bible-constitution/](https://abovethelaw.com/2024/05/trump-bible-constitution/)', 'created': '2024-11-13 16:15:11', 'submission_id': '1gq4eh2'}
{'comment': "Absolutely ram through as many judges as possible. Same with any positions that the occupier can't just remove, giving him people to fire is wasted effort", 'created': '2024-11-13 06:54:11', 'submission_id': '1gq3ezm'}
{'comment': 'Fuck general welfare. Let the protest voters suffer.', 'created': '2024-11-13 05:14:47', 'submission_id': '1gq3ezm'}
{'comment': 'Tempting but those of us who acted responsibly plus non citizens and especially chiksren shpuld not pay for others shit choices', 'created': '2024-11-13 06:52:57', 'submission_id': '1gq3ezm'}
{'comment': "They'll suffer enough. And they'll want to know who's willing to fix it. We need something for our new ambassador to tell them.", 'created': '2024-11-14 16:50:58', 'submission_id': '1gq3ezm'}
{'comment': 'We’re all paying for our own shit choices. The grassroots support for Harris never showed. Like it or not, jerking off on social media is step one, and it’s totally worthless if you don’t follow it with something that actually matters.', 'created': '2024-11-13 17:13:56', 'submission_id': '1gq3ezm'}
{'comment': 'I agree but that ship sailed I am afraid. Maybe mid-terms can help restore some hope.', 'created': '2024-11-13 13:44:13', 'submission_id': '1gq3ezm'}
{'comment': '"Jerkiing off on social media" made me laugh 😊', 'created': '2024-11-13 17:28:21', 'submission_id': '1gq3ezm'}
{'comment': 'Yup mid terms should be correction historically the president looses at least one part of congress That will a litmus test to see if there will be free and fair elections', 'created': '2024-11-13 14:31:58', 'submission_id': '1gq3ezm'}
{'comment': "Look into it! If your local election officials can't give you a valid answer, bring it to the attention of local media if other people in your community have experienced similar issues. \n\nKeep in mind that it *may* be a clerical error, so don't make any allegations without clear evidence. \n\nMy own preference is to vote early **and** in person. You will know immediately if there are any problems and you have until the official Election Day to resolve them.", 'created': '2024-11-13 04:02:10', 'submission_id': '1gq2y70'}
{'comment': "It's been really bad for college students. So many did not receive their absentee ballots despite their home counties claiming to have sent them. My son included.", 'created': '2024-11-13 05:14:23', 'submission_id': '1gq2y70'}
{'comment': 'Same here. He voted on Election Day. Says we have to wait til January 6th. What’s the point? It will be too late by then.', 'created': '2024-11-13 05:06:27', 'submission_id': '1gq2y70'}
{'comment': 'https://preview.redd.it/6o3wsopqhm0e1.png?width=1920&format=pjpg&auto=webp&s=989a802abb4b0936a8b7388f3170047c4abf55f4', 'created': '2024-11-13 08:40:09', 'submission_id': '1gq2y70'}
{'comment': 'Mine wasnt either. I checked the other night out of curiosity on vote.org and mine was not accounted for and never registered', 'created': '2024-11-13 05:41:57', 'submission_id': '1gq2y70'}
{'comment': "I'm calling tomorrow", 'created': '2024-11-13 04:39:30', 'submission_id': '1gq2y70'}
{'comment': 'There are many reasons your vote may not have been counted. One reason is a signature issue. Either 1: you didn\'t sign the ballot or 2: your ballot signature does NOT match the registrar database signature. Ive been "ballot curing" in OC (knocking on doors so ppl know they need to file a document to fix it) as there are about 800-900 ballots that are not counted due to signatures in district 47 *alone*. I don\'t even want to know how much more there are in other districts, and counties, and states. . .', 'created': '2024-11-13 16:53:48', 'submission_id': '1gq2y70'}
{'comment': "I had to do a provisional ballot since my mail in ballot never physically showed up. I went to my state senators office today and all they could do was tell me to call the number on my provisional ballot ticket. Found out mine still hasn't been counted either (I'm in Chester County, PA).", 'created': '2024-11-13 08:22:50', 'submission_id': '1gq2y70'}
{'comment': 'I keep seeing this.', 'created': '2024-11-13 04:16:32', 'submission_id': '1gq2y70'}
{'comment': 'Probably not 15 million, but cause for concern anyways. Let us know what they say.', 'created': '2024-11-13 04:46:50', 'submission_id': '1gq2y70'}
{'comment': 'I mean, considering the mixture of the ballot box fires and the fact that a lot of people don’t fill in the ballots correctly, a lot of ballots weren’t counted', 'created': '2024-11-13 06:22:58', 'submission_id': '1gq2y70'}
{'comment': "[Here's what we do now](https://www.gregpalast.com/heres-what-we-do-now/)", 'created': '2024-11-13 05:15:04', 'submission_id': '1gq2y70'}
{'comment': "https://youtu.be/T5cq1ITqzWU?si=oM1H3Yr1xMiwqPBh\n\nIt's the Republicans way of altering the vote watch this to see what's going on", 'created': '2024-11-13 16:33:26', 'submission_id': '1gq2y70'}
{'comment': "They didn't even count Maine's votes before Trump got to 270, so our whole state didn't get their votes counted, and I saw so many Harris/Walz signs which is a huge deal for the area I am in.", 'created': '2024-11-13 07:14:09', 'submission_id': '1gq2y70'}
{'comment': 'I tried looking up my vote but I don’t know what I’m looking for on the website.', 'created': '2024-11-13 06:13:25', 'submission_id': '1gq2y70'}
{'comment': "It's Texas what do you expect from Abbot and Paxton?", 'created': '2024-11-13 04:51:04', 'submission_id': '1gq2y70'}
{'comment': 'Please report this. Stuff like this may have been the reason why Trump “won.”', 'created': '2024-11-13 16:37:24', 'submission_id': '1gq2y70'}
{'comment': 'I wonder how many young people that never voted actually ended up voting for trump and nobody ever found out? And just how many democrat votes were wiped out like this. With all their shenanigans, I can’t see how they’d just sit back and run a clean election. They aren’t that kind of people.', 'created': '2024-11-13 11:30:16', 'submission_id': '1gq2y70'}
{'comment': 'I’m in Dallas. How do I find out if my vote counted?', 'created': '2024-11-13 05:30:11', 'submission_id': '1gq2y70'}
{'comment': 'I called Detroit city clerk this morning. He said votes have been counted and will be published on website soon.', 'created': '2024-11-13 15:26:24', 'submission_id': '1gq2y70'}
{'comment': "Mine was and the it wasn't. I'm making a lot of calls.", 'created': '2024-11-13 18:24:48', 'submission_id': '1gq2y70'}
{'comment': 'I’m in GA. My ballot says “accepted.” Does that mean it was counted? Why is this so cryptic?', 'created': '2024-11-13 19:13:17', 'submission_id': '1gq2y70'}
{'comment': 'Call and check your ballot was counted!', 'created': '2024-11-14 00:34:51', 'submission_id': '1gq2y70'}
{'comment': 'My partner’s vote wasn’t counted either. Both him and I voted blue. We are in Michigan. \n\nThanks for letting us know to check! We will be contacting our local clerk’s office to see what happened.', 'created': '2024-11-14 18:13:01', 'submission_id': '1gq2y70'}
{'comment': '[removed]', 'created': '2024-11-13 04:47:06', 'submission_id': '1gq2y70'}
{'comment': 'We know something suspicious happened with the election, this very well could be ONE of the several possibilities - I verified my wife and I, who both voted blue, were counted, but I would definitely encourage others to check', 'created': '2024-11-13 20:37:23', 'submission_id': '1gq2y70'}
{'comment': "Mine wasn't counted either", 'created': '2024-11-13 21:18:41', 'submission_id': '1gq2y70'}
{'comment': 'If you voted for kh in a swing state there is a good chance your vote wasn’t counted', 'created': '2024-11-14 07:15:02', 'submission_id': '1gq2y70'}
{'comment': 'Username checks out.', 'created': '2024-11-13 14:00:55', 'submission_id': '1gq2y70'}
{'comment': "Try voting in person rather than through the mail. It's not hard at all, takes a few minutes and you are guaranteed that your vote is counted.", 'created': '2024-11-13 07:48:57', 'submission_id': '1gq2y70'}
{'comment': "Can we stop acting like Republicans here guys? The American people chose this whether we like it or not. The only claims I've heard that don't seem like conspiracy theories are the bomb threats by Russia on polling places with a largely democratic voting block, but the simple truth is the election results would not have changed with or without some voter suppression from Russia. He won. Instead of whining about the results we need to focus on fighting back. We do what we can to stop the things he's doing that are outright illegal. We protest. We pressure him. He craves public support. If we can make it clear to him that what he is doing is not popular we might be able to stall the worst of his policies. Those of us who can, need to vote in the midterms and make sure Dems return in full force. We bolster the Dems in our state and local governments. It's not ideal but it's the cards we've been dealt. Denying a free and fair election is not the answer here.", 'created': '2024-11-13 05:00:32', 'submission_id': '1gq2y70'}
{'comment': 'Please knock it off with the conspiracies. We have 0 evidence for widespread voter fraud at this time.', 'created': '2024-11-13 06:23:52', 'submission_id': '1gq2y70'}
{'comment': 'She conceded\n\nedit: a new reddit account just sent me a PM calling me a maga slave and telling me to kill myself.\n\ntime to unsub, I wish I could say I enjoyed my time here', 'created': '2024-11-13 14:42:04', 'submission_id': '1gq2y70'}
{'comment': 'Thanks. My husband did vote early and had no problems. Maybe it was clerical error but seeing others on Reddit with the same problem makes you wonder. Will check it out.', 'created': '2024-11-13 04:15:48', 'submission_id': '1gq2y70'}
{'comment': 'Contact local state representative asap! If everything was done correctly per your states voting laws then they need to know about this now!', 'created': '2024-11-13 15:18:36', 'submission_id': '1gq2y70'}
{'comment': 'If we can prove conspiracy and that the person who became President was a part of it, will be illegitimate and loses far greater political power after that.', 'created': '2024-11-13 05:15:07', 'submission_id': '1gq2y70'}
{'comment': 'texas you can only track a mail ballot', 'created': '2024-11-13 15:57:28', 'submission_id': '1gq2y70'}
{'comment': 'Missouri does not have this feature available. Go figure.', 'created': '2024-11-13 17:52:22', 'submission_id': '1gq2y70'}
{'comment': 'This is the type of info we need, from people who are actually working on the issue. Thanks for sharing.', 'created': '2024-11-13 19:07:23', 'submission_id': '1gq2y70'}
{'comment': "Shark attack syndrome.\xa0 When it happens it gets highlighted here.\xa0 Which causes more people to look.\xa0 Those that weren't counted, even if a minority, report it.\xa0 This feeds the cycle.\xa0\xa0", 'created': '2024-11-13 05:16:16', 'submission_id': '1gq2y70'}
{'comment': 'I thought of it too but it just keeps coming. Maybe it is possible to lose 15 million votes', 'created': '2024-11-13 04:53:16', 'submission_id': '1gq2y70'}
{'comment': 'And bomb threats.', 'created': '2024-11-13 07:15:00', 'submission_id': '1gq2y70'}
{'comment': "What do you mean? Harris won Maine, as expected. That doesn't mean your votes weren't counted.", 'created': '2024-11-13 17:21:47', 'submission_id': '1gq2y70'}
{'comment': 'Exactly...absolutely nothing!', 'created': '2024-11-13 15:23:30', 'submission_id': '1gq2y70'}
{'comment': 'Vote.org', 'created': '2024-11-13 05:41:14', 'submission_id': '1gq2y70'}
{'comment': "You can't tell if your boy was counted in Texas. Just track your ballot. This is by design, a feature of having Greg Abbott as governor.", 'created': '2024-11-13 15:59:21', 'submission_id': '1gq2y70'}
{'comment': "Or at minimum understand your state's deadline to finish counting ballots before jumping to conclusions.\n\nhttps://www.texastribune.org/2024/10/31/texas-2024-election-results-counting-process/", 'created': '2024-11-13 05:43:53', 'submission_id': '1gq2y70'}
{'comment': 'Downvoted guys? Really? You really are acting like MAGAts.', 'created': '2024-11-13 14:09:27', 'submission_id': '1gq2y70'}
{'comment': 'A concession is not legally binding, it is just a formality. The odds of this election overturned are pretty much zero either way though.\xa0', 'created': '2024-11-13 15:25:00', 'submission_id': '1gq2y70'}
{'comment': 'It is really sad, and telling: that when you say something true, actually factually verifiable and accurate; if someone doesn’t like what you said they advise you to commit suicide.\n\nKamala Harris conceded that she lost the election.\n\nWhether it is because Trump and his Maga gang cheated like hell, someone rigged the election machines, half the country went crazy all at the same time; or several of these things happened at once to give Trump more votes than Harris isn’t the issue.\n\nThe real problem here is that the statement “She conceded” is true, but some self appointed moron thinks it better to tell the messenger to kill themself rather than exercising a little introspection about how and why the statement ended up being true to begin with.\n\nIf we attack our own because we disagree about policy, fair enough. Robust debate is good. What’s stupid as hell is fighting over facts.\n\nTelling anyone to kill themself is not only unkind, but can in fact be fatal. You have no idea what the person on the other end of the screen is going through. It’s not like they might be seriously depressed in light of the fact that Harris conceded. Yet you tell them to kill themself because you don’t want to hear facts?', 'created': '2024-11-14 02:15:20', 'submission_id': '1gq2y70'}
{'comment': '3 of my FB friends have posted that their votes were not counted either. None of the early votes got counted.', 'created': '2024-11-13 04:30:38', 'submission_id': '1gq2y70'}
{'comment': "States have their own due dates to officially count every ballot. I'm in MD, dropped off my ballot on 10/26, it was received on 11/2, and finally counted today. Our deadline is 11/15 but here's what I found for TX:\n\nThe election night results are unofficial because counties still must account for late-arriving mail-in ballots, ballots from military or overseas voters and provisional ballots. The deadlines for receiving different kinds of ballots vary, but all must be reviewed and counted or rejected by Nov. 18, according to the election law calendar.", 'created': '2024-11-13 05:32:51', 'submission_id': '1gq2y70'}
{'comment': "Did he vote in person at an early voting center or with a mail-in/drop-off ballot? \n\nI'm not sure if in person voting would show up on an official site. I think the main reason that mail-in votes are verified online is to reassure voters that their ballots made it through the mail or were picked up at the drop box. Such reassurance isn't necessary when you insert your own ballot into the vote counter.", 'created': '2024-11-13 04:26:49', 'submission_id': '1gq2y70'}
{'comment': 'From my notes\n\nEveryone - please check the status of your ballot. People are reporting that their ballots are showing as cancelled, compromised, not received. This needs to be reported to 1-866-OUR-VOTE. Everyone deserves to know that their vote was counted. Share!', 'created': '2024-11-13 20:20:40', 'submission_id': '1gq2y70'}
{'comment': 'Or it was fascism', 'created': '2024-11-13 04:35:51', 'submission_id': '1gq2y70'}
{'comment': 'Imagine that? Best case scenario.', 'created': '2024-11-13 18:56:12', 'submission_id': '1gq2y70'}
{'comment': 'Even if we have to wait til Jan.6?', 'created': '2024-11-13 05:18:14', 'submission_id': '1gq2y70'}
{'comment': 'https://earlyvoting.texas-election.com/Elections/getElectionEVDates.do\n\nScroll down and enter the date you voted. Mine is on there. I early voted. \n \nEdit: in-person', 'created': '2024-11-14 02:28:25', 'submission_id': '1gq2y70'}
{'comment': 'Not true. I was in person, early vote. I can see that my vote was counted. What I can’t see is if it was counted correctly with my intended selection.', 'created': '2024-11-13 18:50:13', 'submission_id': '1gq2y70'}
{'comment': 'We didn’t lose 15 million. We’re at 9 million lost votes and California is only 79% counted and a bunch of states are still counting in smaller percentages, most on the west coast. We need to keep tracking down lost ballots and wait for the final numbers.', 'created': '2024-11-13 06:18:41', 'submission_id': '1gq2y70'}
{'comment': 'That primarily kept people from voting, not their votes from counting', 'created': '2024-11-13 12:06:47', 'submission_id': '1gq2y70'}
{'comment': 'Thought that went without saying lol', 'created': '2024-11-13 14:08:16', 'submission_id': '1gq2y70'}
{'comment': 'They only lost bragging rights when they lost, we’re looking at losing our very way of life and for some of us our very lives itself. I think that is why many are hoping for some sort of miracle to occur. Buyers remorse is starting to set in for some people as they realize that some of the things they rely on are in severe jeopardy.\xa0', 'created': '2024-11-13 15:27:51', 'submission_id': '1gq2y70'}
{'comment': "What's the due date to finish counting in their states? MD's is 11/15, my ballot was counted today.", 'created': '2024-11-13 05:34:32', 'submission_id': '1gq2y70'}
{'comment': 'I heard all early votes got counted but my ejection day one will take weeks to show up? Nothing yet as of today', 'created': '2024-11-13 07:26:17', 'submission_id': '1gq2y70'}
{'comment': 'Mine was early and it got counted.', 'created': '2024-11-13 04:58:39', 'submission_id': '1gq2y70'}
{'comment': "Or states have a set deadline after the election to finish counting ballots. The due date in TX to finish counting is 11/18 and it's finalized by 11/19. \n\nhttps://www.texastribune.org/2024/10/31/texas-2024-election-results-counting-process/", 'created': '2024-11-13 05:38:39', 'submission_id': '1gq2y70'}
{'comment': 'Joe Biden is the POTUS. Most of those these swing states have Democrat SOS. We lost because they are better at the information war. Simple as.', 'created': '2024-11-13 07:23:25', 'submission_id': '1gq2y70'}
{'comment': 'More time for investigation and public news to spread.', 'created': '2024-11-13 05:19:48', 'submission_id': '1gq2y70'}
{'comment': 'hey thanks, found both myself and my wife', 'created': '2024-11-14 06:44:47', 'submission_id': '1gq2y70'}
{'comment': 'Where do you see that? I can’t find it on texas Secretary of State voter portal a I only see tracking for mail in ballots.', 'created': '2024-11-14 02:07:59', 'submission_id': '1gq2y70'}
{'comment': 'Yeah mine was counted Monday for mail in ballot in Maryland.', 'created': '2024-11-13 17:14:03', 'submission_id': '1gq2y70'}
{'comment': '>…my ejection day one…\n\nIs this a Freudian slip?', 'created': '2024-11-13 20:15:25', 'submission_id': '1gq2y70'}
{'comment': 'But since we cheated in 2020, why couldn’t we do it in 2024??? /s', 'created': '2024-11-13 15:28:37', 'submission_id': '1gq2y70'}
{'comment': 'Thank you.', 'created': '2024-11-13 05:20:10', 'submission_id': '1gq2y70'}
{'comment': 'There are instructions on this page:\nhttps://www.click2houston.com/decision-2024/2024/11/05/how-to-ensure-your-vote-was-counted-in-texas/\n\nI recommend you do it on a computer and not your phone. I couldn’t get the excel doc to open on my phone, it’s pretty large.', 'created': '2024-11-14 02:25:59', 'submission_id': '1gq2y70'}
{'comment': '', 'created': '2024-11-13 20:49:00', 'submission_id': '1gq2y70'}
{'comment': 'No, my friend. The fact that we lost proves we stole it in 2020 because all roads lead to Rome.', 'created': '2024-11-13 20:26:24', 'submission_id': '1gq2y70'}
{'comment': 'Because Kamala was so bad and her continuation of Biden’s worst failures was so awful we couldn’t even cheat her into the white house … sadly, not sarcasm.', 'created': '2024-11-14 01:42:18', 'submission_id': '1gq2y70'}
{'comment': "You're welcome. :)", 'created': '2024-11-13 05:21:49', 'submission_id': '1gq2y70'}
{'comment': "It's classified.", 'created': '2024-11-15 02:15:22', 'submission_id': '1gq2y70'}
{'comment': 'I don’t see a letter', 'created': '2024-11-13 05:06:25', 'submission_id': '1gq29bz'}
{'comment': 'Click on the link', 'created': '2024-11-13 15:17:13', 'submission_id': '1gq29bz'}
{'comment': 'You know who else did political purges on the military? Hitler.\n\nIn 1934, after the death of President Paul von Hindenburg, Hitler required all military personnel to swear a personal oath of loyalty to him, rather than to Germany or the constitution.\n\nI wonder if Trump will require an oath of loyalty eventually.', 'created': '2024-11-13 03:46:44', 'submission_id': '1gq1ujx'}
{'comment': "It's literally a tug of war between stupid and evil at this point", 'created': '2024-11-13 03:10:18', 'submission_id': '1gq1ujx'}
{'comment': 'Here’s to hoping those in our military put our country and its people first and won’t submit to Trump', 'created': '2024-11-13 03:22:36', 'submission_id': '1gq1ujx'}
{'comment': 'I think Trump will be hard pressed to find a General that will go against the constitution and the rule of law. \n\nOur high ranking service officials will push back. \nThese guys aren’t grunts that just get kick around. \n\nWe have a little more integrity in our military than you think. They aren’t just “yes men”\n\nThey swore an oath to defend America from men like trump. \n\nTo defend against enemies, foreign and domestic.', 'created': '2024-11-13 04:36:09', 'submission_id': '1gq1ujx'}
{'comment': 'One of the first purges he wants to do is fire anyone involved in the 2021 U.S. withdrawal from Afghanistan, which he, as president, ordered as such.\n\nThis reality is just straight up weird.', 'created': '2024-11-13 04:46:39', 'submission_id': '1gq1ujx'}
{'comment': 'I took an oath against all enemies foreign and domestic.', 'created': '2024-11-13 03:57:45', 'submission_id': '1gq1ujx'}
{'comment': 'This is what Americans wanted? FM sideways…', 'created': '2024-11-13 03:19:19', 'submission_id': '1gq1ujx'}
{'comment': 'This is VERY bad. This is a little fat bitch who wants to be surrounded by yes men so no one will tell him the military can’t be used to simply shoot protesters in the legs.', 'created': '2024-11-13 05:15:36', 'submission_id': '1gq1ujx'}
{'comment': 'He is carefully shaping military leadership to align with his values. He wants them to be more likely to do what he says. This is scary.', 'created': '2024-11-13 03:44:18', 'submission_id': '1gq1ujx'}
{'comment': 'He wants to be Hitler. His plans come from that desire', 'created': '2024-11-13 06:32:27', 'submission_id': '1gq1ujx'}
{'comment': 'The irony is that an extreme RW friend of mine had said he needed his weapons because of what the left might do, and, as a result, we could see a civil uprising.', 'created': '2024-11-13 04:05:19', 'submission_id': '1gq1ujx'}
{'comment': 'The military should not be politicized…', 'created': '2024-11-13 03:47:59', 'submission_id': '1gq1ujx'}
{'comment': 'Hold on to your firearms. If this happens you better be ready to fight for your family. Hitler disarmed the citizens then he could have total control', 'created': '2024-11-13 06:32:33', 'submission_id': '1gq1ujx'}
{'comment': 'Maybe up it to .50 cal and RPG.', 'created': '2024-11-13 03:15:13', 'submission_id': '1gq1ujx'}
{'comment': 'Setting up Vietnam x10, only for all sorts of failures beyond war:\n\n\n\n\n\n\nhttps://www.tandfonline.com/doi/abs/10.1080/14672715.1969.10405393', 'created': '2024-11-13 03:29:36', 'submission_id': '1gq1ujx'}
{'comment': "The comments on Telegraph are about as pleasant as wiping with sandpaper. (It's right-wing, it supports the Conservative party)", 'created': '2024-11-13 03:31:06', 'submission_id': '1gq1ujx'}
{'comment': 'Have they actually defined their version of woke yet? Because woke has a definition. They never come up with their own words.', 'created': '2024-11-13 06:09:35', 'submission_id': '1gq1ujx'}
{'comment': 'Any American general who would bend the knee to Trump in the manner Trump wants is not fit to wear the uniform in the first place.', 'created': '2024-11-13 19:09:00', 'submission_id': '1gq1ujx'}
{'comment': 'Woke here means generals that put their constitutional oath above all else', 'created': '2024-11-13 21:11:30', 'submission_id': '1gq1ujx'}
{'comment': 'Everyone should exercise their 2nd amendment right. \n\nIt was made to prevent a tyrannical government.', 'created': '2024-11-13 04:14:52', 'submission_id': '1gq1ujx'}
{'comment': 'No gun you own is going to shoot down a predator drone. That’s the sad truth.', 'created': '2024-11-13 07:50:46', 'submission_id': '1gq1ujx'}
{'comment': 'Six or seven months ago I saw an interview with an old, white, high-ranking ex-military guy. He was asked about "wokeness" and his responses was great.\n\nParaphrasing, he said that in his mind, being woke meant being awake. You see the world around you as it is, you are not sleepwalking through life or living in a dream. So yeah, I\'m woke.', 'created': '2024-11-13 17:57:20', 'submission_id': '1gq1ujx'}
{'comment': 'Love how a lot of the military support this clown', 'created': '2024-11-13 04:41:28', 'submission_id': '1gq1ujx'}
{'comment': "Where's my Idi Amin?", 'created': '2024-11-13 04:11:24', 'submission_id': '1gq1ujx'}
{'comment': 'Holy fuck! I just realised that “Space Force” is back on the menu !!!', 'created': '2024-11-13 08:24:06', 'submission_id': '1gq1ujx'}
{'comment': "The problem with militaristic states is they always need a nemesis. If they don't have one, they look inside and start to cannibalize.", 'created': '2024-11-13 11:57:20', 'submission_id': '1gq1ujx'}
{'comment': 'I work on a military base. I’m sure there will be some servicemen and civil servants who will turn on anyone who doesn’t worship Trump.', 'created': '2024-11-13 16:04:11', 'submission_id': '1gq1ujx'}
{'comment': "This was clearly stated in project 2025. Right wing media just kept repeating that project 2025 wasn't really a thing. Until we figure out what to do about the overwhelming dominance of right-wing media we have not figured out how to claw our way back to civilization.", 'created': '2024-11-13 17:02:13', 'submission_id': '1gq1ujx'}
{'comment': 'All I can say is good luck trying. This won’t be held up at all.', 'created': '2024-11-13 04:46:03', 'submission_id': '1gq1ujx'}
{'comment': 'I prefer a 8.6 Blackout', 'created': '2024-11-13 05:09:42', 'submission_id': '1gq1ujx'}
{'comment': 'I was curious how broad the presidents powers are when firing high ranking military officers. Found this great article and here’s the main piece. \n\nSo what does 10 U.S.C. § 1161(a) provide? Here is the text:\n\n(a) No commissioned officer may be dismissed from any armed force except—\n\n(1) by sentence of a general court-martial;\n\n(2) in commutation of a sentence of a general court-martial; or\n\n(3) in time of war, by order of the President. \n\nAre we currently in a “time of war” as used by this statute? Although the phrase “time of war” is used in many U.S. statutes, there is no universally accepted definition of precisely what it means. Some court decisions indicate it means war when declared by Congress, and some statutes do use the phrase the “time of war declared by Congress.” \n\nhttps://sites.duke.edu/lawfire/2016/09/15/can-presidents-fire-senior-military-officers-generally-yesbut-its-complicated/', 'created': '2024-11-13 07:47:22', 'submission_id': '1gq1ujx'}
{'comment': 'Taking my ccw class in February, want to be prepared when the shit hit the fan.', 'created': '2024-11-13 13:03:24', 'submission_id': '1gq1ujx'}
{'comment': 'The Chiefs of Staff can no longer be neutral', 'created': '2024-11-14 00:34:31', 'submission_id': '1gq1ujx'}
{'comment': 'I wonder when Putin starts hanging out in DC with Trump, gets a house and secret service protection?', 'created': '2024-11-14 00:40:03', 'submission_id': '1gq1ujx'}
{'comment': 'we are buying guns', 'created': '2024-11-13 03:52:55', 'submission_id': '1gq1ujx'}
{'comment': 'Save your money. If, and imo its a very big if, it would ever happen, not much the average citizen or group of citizens can do against a more well armed, trained, and funded military.', 'created': '2024-11-13 18:03:37', 'submission_id': '1gq1ujx'}
{'comment': 'I\'m sorry, but this who story reads as, "well you\'d just assume he would!" self-affirming horseshit.\n\n"Transition team floating..." is a euphemism for "asshole wanting Trump to call him \'good boy\' says..." 😒', 'created': '2024-11-14 04:36:00', 'submission_id': '1gq1ujx'}
{'comment': 'Two words: Tiananmen Square', 'created': '2024-11-14 09:39:15', 'submission_id': '1gq1ujx'}
{'comment': None, 'created': '2024-11-13 04:17:47', 'submission_id': '1gq1ujx'}
{'comment': 'I don’t have to wonder about it, he’s pretty much said that’s exactly what he’s looking to do.', 'created': '2024-11-13 04:35:46', 'submission_id': '1gq1ujx'}
{'comment': "It was already reported by his four star general that Trump stated out loud that he wanted generals like Hitler had, ultimately loyal who would do whatever he asked. And on his interview with Joe Rogen he said his number one regret was that he didn't fill the roles of his cabinet and staff with people who were totally loyal.", 'created': '2024-11-13 06:18:09', 'submission_id': '1gq1ujx'}
{'comment': 'He does have a “concept of a plan” after all.. that won him the debate, obviously! His struggle might be in the implementation, I guess we get to find out.', 'created': '2024-11-13 04:45:49', 'submission_id': '1gq1ujx'}
{'comment': 'Same with Stalin. And Kim Jung Un.', 'created': '2024-11-13 18:05:02', 'submission_id': '1gq1ujx'}
{'comment': 'Evil is winning.', 'created': '2024-11-13 07:39:36', 'submission_id': '1gq1ujx'}
{'comment': 'A military coup is looking more and more likely with each pronouncement. I am extremely terrified with where we are headed. Can people please stop sanewashing this? Quit acting like things will go back to normal. This is nothing like the 80s where Republicans dominated and were replaced by Democrats the following decade. This is extremely dangerous rhetoric.\xa0', 'created': '2024-11-13 03:44:58', 'submission_id': '1gq1ujx'}
{'comment': 'Any idea how much of the military voted for him? You won’t like the answer.', 'created': '2024-11-13 04:12:14', 'submission_id': '1gq1ujx'}
{'comment': 'You would have been helpful if more people showed up to vote last Tuesday instead of having to rely on the military leaders', 'created': '2024-11-13 07:48:03', 'submission_id': '1gq1ujx'}
{'comment': 'Amen', 'created': '2024-11-14 00:40:51', 'submission_id': '1gq1ujx'}
{'comment': 'This 100%', 'created': '2024-11-13 04:27:46', 'submission_id': '1gq1ujx'}
{'comment': 'Honestly, I wouldn\'t be surprised if he just kept firing officers until he found people willing to carry out his will. \n\nWhen I was in, there were certainly officers of all kinds and not every one of them was so disciplined as to refuse a direct order from the president. He\'ll find plenty of"yes men" if he\'s willing to fire entire swaths of command for it, especially if those firings come with promotions attached for those who stick around.', 'created': '2024-11-13 08:27:30', 'submission_id': '1gq1ujx'}
{'comment': 'I agree, but he does have the power to fire at will? That would leave an Anti Woke command?', 'created': '2024-11-13 06:46:07', 'submission_id': '1gq1ujx'}
{'comment': "Does he have to use a general? Can't he just replace them with some Fox news anchor?", 'created': '2024-11-13 13:21:59', 'submission_id': '1gq1ujx'}
{'comment': 'But, will they? This is really scary territory. Look at flynn. He supported the failed insurrection, and is pushing to make a white, christian nationalist country. We have zero safeguards at this moment, and scotus is corrupted and tainted. People claim they voted because of inflation, and felon musk has promised "necessary hardship", and it won\'t affect him at all. Even the constitution failed us because of trump\'s judicial appointments. We have mcconnell and roberts to thank for this cesspool. It won\'t affect them in the least.', 'created': '2024-11-13 15:17:59', 'submission_id': '1gq1ujx'}
{'comment': 'I hope you are correct….', 'created': '2024-11-13 12:54:09', 'submission_id': '1gq1ujx'}
{'comment': 'Hahaha. Seriously? I really wish you were right, but, I dont think you can count on that', 'created': '2024-11-14 00:45:09', 'submission_id': '1gq1ujx'}
{'comment': 'https://preview.redd.it/2yl7tr1wwl0e1.jpeg?width=1164&format=pjpg&auto=webp&s=0e27138bdbcfed0c4b6901afc7a0e70b0dd3e8c0', 'created': '2024-11-13 06:43:18', 'submission_id': '1gq1ujx'}
{'comment': 'Sadly, anyone with a mindset like that is going to get purged from the military. Trump only wants people who will blindly follow his orders.', 'created': '2024-11-13 08:24:39', 'submission_id': '1gq1ujx'}
{'comment': 'Well I guess the question will be, what is the definition of enemy? Trumps enemy or Defending the Constitution.', 'created': '2024-11-14 00:52:54', 'submission_id': '1gq1ujx'}
{'comment': 'Politics aside it looks almost identical to Hitlers playbook. I have to wonder what Russias real plan is here.', 'created': '2024-11-14 00:55:43', 'submission_id': '1gq1ujx'}
{'comment': 'Everything is projection', 'created': '2024-11-13 12:43:31', 'submission_id': '1gq1ujx'}
{'comment': 'Except that they are there to uphold the constitution.. which trump seems quite intent on trashing.', 'created': '2024-11-13 04:46:43', 'submission_id': '1gq1ujx'}
{'comment': 'Who is going to stop a bat shit crazy Commander and Chief with all three branches of government.', 'created': '2024-11-14 00:57:23', 'submission_id': '1gq1ujx'}
{'comment': 'Militaries are inherently political, they exist to enforce political ideology.', 'created': '2024-11-13 07:56:42', 'submission_id': '1gq1ujx'}
{'comment': 'It\'s proof that propaganda works. They really think that because he\'s purging "woke" generals that it\'s automatically a good thing instead of seeing it for what it actually is', 'created': '2024-11-13 03:32:42', 'submission_id': '1gq1ujx'}
{'comment': 'It beats a bat…and works well against MAGA militias, which could be turned on us at anytime. Trump will pardon them all…', 'created': '2024-11-13 20:01:02', 'submission_id': '1gq1ujx'}
{'comment': 'And, Pol Pot.', 'created': '2024-11-13 15:24:20', 'submission_id': '1gq1ujx'}
{'comment': 'I assume some of them already have lists made', 'created': '2024-11-13 16:05:37', 'submission_id': '1gq1ujx'}
{'comment': 'No, we are not currently under declared war. Will it make a difference, no. Trump intends on getting what he wants this time and there will be no one to restrict him. If they go through with this it will be the tipping point.', 'created': '2024-11-13 12:56:57', 'submission_id': '1gq1ujx'}
{'comment': 'Can you buy drones? Missiles? The military has WAAAY more than you could ever buy. Not that i think many of the actual troops would fire on US citizens', 'created': '2024-11-13 04:13:49', 'submission_id': '1gq1ujx'}
{'comment': 'I’m more worried about a MAGA fueled militia…they are everywhere', 'created': '2024-11-13 19:56:49', 'submission_id': '1gq1ujx'}
{'comment': "No. It's not the same. \n\nAnti-democracy, fascist generals don't fit the Constitution of the United States.", 'created': '2024-11-13 04:33:06', 'submission_id': '1gq1ujx'}
{'comment': 'Sadly, your bootlicking may very well save you when they start kicking in doors rounding up dissidents.\n\nAt least for a short while.', 'created': '2024-11-13 04:37:32', 'submission_id': '1gq1ujx'}
{'comment': 'the military serves the constitution as well as this "commander in chief"', 'created': '2024-11-13 11:54:50', 'submission_id': '1gq1ujx'}
{'comment': 'Scary.', 'created': '2024-11-14 00:40:23', 'submission_id': '1gq1ujx'}
{'comment': "He's had four years robot grievance and revenge. \xa0", 'created': '2024-11-13 12:21:16', 'submission_id': '1gq1ujx'}
{'comment': 'Where the fuck is the intelligence community? Why don’t they do anything?', 'created': '2024-11-13 04:37:18', 'submission_id': '1gq1ujx'}
{'comment': 'Imagine a world where we’re hoping for a military coup.', 'created': '2024-11-13 13:35:36', 'submission_id': '1gq1ujx'}
{'comment': 'I agree so much that I have actually wondered if I should sell my house and leave before everyone else does the same thing and the market drops and trade crumbles all around us. Can you imagine if the same person who ordered a mob to attack his own capital with his own vice president would do if he had unlimited power and was completely unpredictable.', 'created': '2024-11-14 00:42:23', 'submission_id': '1gq1ujx'}
{'comment': "We're ultimately powerless, so I don't worry all too much. If it gets to that point, I think that the members of the military would do the right thing.", 'created': '2024-11-13 04:07:23', 'submission_id': '1gq1ujx'}
{'comment': '22 year, Air Force veteran here. A coup is far from reality. You sign those papers when you enlist, and you serve/do your job, regardless of the issues with the current President.', 'created': '2024-11-13 04:47:15', 'submission_id': '1gq1ujx'}
{'comment': 'I did vote. I voted blue down ticket.', 'created': '2024-11-13 13:43:07', 'submission_id': '1gq1ujx'}
{'comment': 'No, the president does not have unrestricted power to fire military officers. While the president is the commander-in-chief of the U.S. Armed Forces, the military operates under a structure that limits presidential authority to remove officers without cause.\n\nCommissioned officers in the U.S. military can only be removed following specific legal processes. For instance:\n\n\t1.\tResignation or Retirement: Officers may choose to resign or retire, but these processes involve formal approvals.\n\n\n\t2.\tCourt Martial: Officers can be removed through disciplinary action if they are found guilty of violations under the Uniform Code of Military Justice (UCMJ).\n\n\n\t3.\tBoard of Inquiry: For misconduct or inefficiency, an officer may face a board of inquiry that can recommend separation.\n\n\n\t4.\tCongressional Oversight: Congress has oversight of military appointments and can play a role in confirming and dismissing senior officers.\n\nSo, while the president has extensive influence over the military, any removal of an officer typically follows legal protocols and requires justification and due process, especially for high-ranking officers.', 'created': '2024-11-13 13:12:24', 'submission_id': '1gq1ujx'}
{'comment': 'Don’t get me wrong. It still scares the shit out of me. \n\nTrump has a lot of crackpot lawyers and advisors that like to push the boundaries and gray areas of the law.', 'created': '2024-11-14 02:15:31', 'submission_id': '1gq1ujx'}
{'comment': "His base can't/won't read. They believe everything he tells them. Research is bad, education is bad, everything is bad unless it fits in with their narrative.", 'created': '2024-11-13 15:21:03', 'submission_id': '1gq1ujx'}
{'comment': 'Yup. My head is buzzing with those thoughts.', 'created': '2024-11-14 08:23:15', 'submission_id': '1gq1ujx'}
{'comment': 'Did you make that up?', 'created': '2024-11-13 16:55:54', 'submission_id': '1gq1ujx'}
{'comment': 'This a major victory for Russia.', 'created': '2024-11-14 00:58:17', 'submission_id': '1gq1ujx'}
{'comment': 'we are mostly only buying guns for personal protection, I wouldn’t be armed in a protest. I’m not taking part in an insurrection. If america becomes a hostile place I’ll do probably what most people would do which is gather my people and gtfo.', 'created': '2024-11-16 11:15:02', 'submission_id': '1gq1ujx'}
{'comment': 'The intelligence community and military have been constantly telling the American people that Donald Trump is dangerous and yet they voted the dude in anyway. Americans are on their own now.', 'created': '2024-11-13 08:06:06', 'submission_id': '1gq1ujx'}
{'comment': "He exposed quite a few of them, and many other intelligence assets, ours and our allies. He has compromised our national security as well as the national security of our allies. He's going to destroy us from the inside out. All because of the corporate greed that started during covid, and continues because those wealthy ghouls are so greedy. Now, even more money will be made at our expense. He's grossly ignorant when it comes to economics, tariffs, morals, ethics, and how things work.", 'created': '2024-11-13 15:08:14', 'submission_id': '1gq1ujx'}
{'comment': 'They 100% need to step in', 'created': '2024-11-13 08:05:48', 'submission_id': '1gq1ujx'}
{'comment': 'Uh huh right gonna need more than that sorry', 'created': '2024-11-13 08:06:53', 'submission_id': '1gq1ujx'}
{'comment': 'Do you anticipate military members to comply with orders to attack American citizens and other peaceful people within our borders? Because those orders are coming. I can only imagine 3 outcomes:\n\n- compliance\n\n- refusal, followed by dismissal and replacement by those who will comply\n\n- removal of the president by senior military officers', 'created': '2024-11-13 14:12:21', 'submission_id': '1gq1ujx'}
{'comment': 'That’s actually more depressing now that I think about it. There really is no entity coming to stop the onslaught. Many will die and our economy is going to go bust.\xa0', 'created': '2024-11-13 13:30:51', 'submission_id': '1gq1ujx'}
{'comment': 'All this is why one of Trump\'s first acts will be consolidate his power over the executive branch and military, as he\'s said many times. He\'ll issue an order upgrading his authority over federal employees and military members to "total", the order will be stopped by lawsuits, and make its way to SCOTUS where it will be upheld. Then the purges can commence.', 'created': '2024-11-13 14:15:43', 'submission_id': '1gq1ujx'}
{'comment': 'The Trump Warrior Board will be in charge. And he has already said the next Senate Leader must allow recess appointments, so he can side step the Senate! Trump is aware of these guard rails and is removing them right now!', 'created': '2024-11-13 19:30:26', 'submission_id': '1gq1ujx'}
{'comment': 'They will change the laws to their desire with house senate court since they have zero democratic principles, no integrity', 'created': '2024-11-14 02:23:00', 'submission_id': '1gq1ujx'}
{'comment': 'But that post was about buying guns to stop a rogue government, not protect against the common criminal who might try to rob or otherwise harm you.', 'created': '2024-11-16 12:54:35', 'submission_id': '1gq1ujx'}
{'comment': 'More than what? You don’t need anything more, unless you served, or are currently on active duty! If anything, common sense would tell you that members of the military will not do that.', 'created': '2024-11-13 08:40:51', 'submission_id': '1gq1ujx'}
{'comment': 'Compliance is the likeliest outcome.', 'created': '2024-11-13 14:42:46', 'submission_id': '1gq1ujx'}
{'comment': 'Yep- he’s gonna sell us out to Russia or China. Life in America- before Trump. \n\nMaga American owned by foreign entities.', 'created': '2024-11-13 19:39:54', 'submission_id': '1gq1ujx'}
{'comment': 'Oh. You know they will!\nThis is going to be a rough 4 years. \n\nI hope the Democrats find the right guy to challenge Trump and his ilk. \n\nAt this point even a moderate Democrat would be popular with how for right the Republican Party has gone. \nI personally think the trump administration will destroy itself. Trump and Elon’s egos are too big to coexist. And once the American people see the results of the policies they enact there will be a huge progressive awakening.', 'created': '2024-11-14 02:57:15', 'submission_id': '1gq1ujx'}
{'comment': 'who needs a “voter mandate” when you control all three branches, are immune to criminal law, and are motivated by nothing but hatred?', 'created': '2024-11-13 03:02:02', 'submission_id': '1gq1jsw'}
{'comment': '3 seat majority in the Senate. Maybe 2-3 seats in the House. Trump won 32% of eligible voters (shame on those that didn’t vote). About a 2.5 million vote difference between Trump and Harris when all is said and done. 4 Democratic Senators won or held seats in states Trump won. Not a mandate. Not even close.', 'created': '2024-11-13 03:02:09', 'submission_id': '1gq1jsw'}
{'comment': "Who even gives a fuck if he won fair and square or not? He doesn't belong in the White House, period, nor do any of his cronies belong anywhere in any level of government.", 'created': '2024-11-13 03:06:14', 'submission_id': '1gq1jsw'}
{'comment': 'Hey can we start getting tougher by 2028? I realize we try to hold ourselves higher, but the other side isn’t and it’s working for them.', 'created': '2024-11-13 03:44:53', 'submission_id': '1gq1jsw'}
{'comment': 'This is the kind of denialism that the British went through after the Brexit referendum; e.g. “Only X amount of the electorate actually voted, so the result isn’t valid”. But it was. \n\nInstead of focusing on irrelevant minutiae like this, the Democrats should be comprehensively remodelling the party so that it actually has a chance of winning in 2028. If there is a free and fair election in 2028.', 'created': '2024-11-13 03:10:39', 'submission_id': '1gq1jsw'}
{'comment': 'No, it wasn\'t a landslide, but narcissists don\'t need "mandates".', 'created': '2024-11-13 03:50:30', 'submission_id': '1gq1jsw'}
{'comment': 'It’s a simple majority, you need 2/3 to really get anything done', 'created': '2024-11-13 04:26:33', 'submission_id': '1gq1jsw'}
{'comment': "Definitely did not win in a landslide.\n\nBut Trump doesn't need a mandate. He has a supermajority, with conservatives in the Supreme Court and Congress completely willing to do his bidding. \n\nAnd he has Project 2025 ready to go to seize more executive power.\n\nAnd then he'll just spread lots more propaganda and lies, to distract people from things that he's doing that they wouldn't like, and people who voted for him won't know the difference.", 'created': '2024-11-13 04:37:03', 'submission_id': '1gq1jsw'}
{'comment': 'We are about to experience a reign of terror unlike anything we’ve seen in the US before. \n\nIf Trump plays fair he can basically pass any legislation he wants. If he uses all his powers to the fullest extent, I would expect the US to turn into Russia where people disappear and or fall out of windows.', 'created': '2024-11-13 15:08:54', 'submission_id': '1gq1jsw'}
{'comment': 'Talk about laying down. This popular response now is to say, "He won the election, he gets to do what he wants" is as crazy and lawless as anything we have heard yet. And this is lifelong Democrats on the cable news channels!\n\nWell, I suppose they actually have a gnawing fear right now...', 'created': '2024-11-13 14:15:49', 'submission_id': '1gq1jsw'}
{'comment': "It doesn't fucking matter. One vote more is a mandate. Power is power.", 'created': '2024-11-13 12:22:41', 'submission_id': '1gq1jsw'}
{'comment': '312 electoral votes to 226 is a significant win ~~landslide~~. The mandate is for the Democratic Party to get its shit together. \n\nRunning an unlikeable Kamala who had never been elected to anything was completely disingenuous to the process. \n\nBiden should have bowed out 2 years ago in favor of an open primary.\n\nEdited: not a landslide. In general that is 375+ electoral votes.', 'created': '2024-11-13 07:28:37', 'submission_id': '1gq1jsw'}
{'comment': None, 'created': '2024-11-13 03:40:22', 'submission_id': '1gq1jsw'}
{'comment': 'SO? Honestly, this post is just dumb af. Thats never stopped him or republicans from claiming they have a mandate before, or from acting and "governing" as if they do, or from repeating how much of a mandate they have over and over again on every news channel and social media feed. How about democrats start acting like it when they win and stop coping and whining like this when they lose?', 'created': '2024-11-13 03:49:49', 'submission_id': '1gq1jsw'}
{'comment': 'oy', 'created': '2024-11-13 05:53:18', 'submission_id': '1gq1jsw'}
{'comment': 'Republicans will have a single digit majority in the House and a 4-6 seat majority in the Senate, depending on PA.\n\nThat’s not much “control”.', 'created': '2024-11-13 03:57:25', 'submission_id': '1gq1jsw'}
{'comment': 'In North Carolina, four of the top state offices were won by Democrats. Gov.-elect Josh Stein, Lt.-Gov. Rachel Hunt (daughter of 4-term Dem Gov. Jim Hunt), AG-elect Jeff Jackson and Dem Mo Green was elected superintendent of public instruction, defeating the extreme MAGA candidate Michele Morrow, who was at the Capitol on Jan. 6 and is known for\xa0tweets suggesting assassinationg Barack Obama, Joe Biden and others and other controversial statements. Trump is considering her for an eductation role in his administration.', 'created': '2024-11-13 03:58:52', 'submission_id': '1gq1jsw'}
{'comment': 'The important point is that Trump only gained about 900,000 votes over what he had in 2020. But Harris had almost 10 million LESS than Biden had in 2020. Point is, that Trump didn\'t have any new "mandate" nor gain any appreciable new voters.\n\nDemocrats simply didn\'t come out to vote. It\'s their apathy that we have to blame for being under the boot of an autocrat. We can blather on all day about how Trump doesn\'t have a "mandate". But the reality is that the Democrats\' inability to put forward an electable candidate is fully responsible for granting him enormous power especially considering that his actions as President are effectively immune from prosecution.', 'created': '2024-11-13 15:45:06', 'submission_id': '1gq1jsw'}
{'comment': 'This is the frustrating part .. all his investigations are now wiped .. you think he is going to follow the law this time?', 'created': '2024-11-13 04:17:07', 'submission_id': '1gq1jsw'}
{'comment': 'There are protections in place with the Senate and Supreme Court….oh shit', 'created': '2024-11-13 05:41:29', 'submission_id': '1gq1jsw'}
{'comment': "I see the issue now. Some voters didn't realize that it is 2024 and that the 2024 election had passed.\n\nExplains a lot.\n\nIt's okay. The Supreme Court is on a two year rotation, right?", 'created': '2024-11-13 04:09:07', 'submission_id': '1gq1jsw'}
{'comment': 'Oh my lord, you don’t win every election. We lost by 1-2% in 3 states in a year where COVID inflation is literally obliterating incumbent parties worldwide, and we were running against a dude who has been forming a cult following for the last 8 years. There is not shit the Democrats could have done to win this in this era of political divisiveness with such a huge factor like inflation dragging us deep into the mud. It was practically impossible, and honestly the fact that it was even this close goes to show what a good campaign Harris ran.\n\nCan we please stop this nonsensical shit with “we need to completely overthrow the platform of the Democratic Party!!!!!,” because we lost one year? Jesus Christ is it overdramatic and embarrassing. You lose some elections and you win some. It sucks that we lost one this consequential, but it does not signal the downfall of the Democratic Party in any way.', 'created': '2024-11-13 03:26:36', 'submission_id': '1gq1jsw'}
{'comment': 'Dead on my British friend. But if you lived over here it would be clear that "comprehensive remodeling of the party" is a distant dream. Just look at Hillary Clinton in 2016 and Harris in 2024 and Biden that barely squeaked by in 2020.', 'created': '2024-11-13 16:29:56', 'submission_id': '1gq1jsw'}
{'comment': "You need 60/100 in the Senate and a simple majority in the house and then you're golden. The only time you need 2/3 support is constitutional amendments. \n\nThankfully the Senate is only 53 people in Trump's pocket. Democrats still have the filibuster. Here's hoping that saves us.", 'created': '2024-11-13 17:02:40', 'submission_id': '1gq1jsw'}
{'comment': 'A 2-3 seat margin in the House and 3-4 seats in the Senate is not a super majority. Its razor thin. The house will get absolutely fuck all done in the next two years. I guarantee the speakership vote will be another raging clusterfuck too. It just takes a handful of defections to derail Mike Johnson being selected as speaker.', 'created': '2024-11-13 06:17:07', 'submission_id': '1gq1jsw'}
{'comment': "It's certainly possible. Especially if he uses Putin as his advisor and colleague; if he does he will likely keep that on the low down.", 'created': '2024-11-13 16:20:52', 'submission_id': '1gq1jsw'}
{'comment': "Should have. But didn't. And so it goes... Democrats in full denial and living in a fantasy land.", 'created': '2024-11-13 16:19:11', 'submission_id': '1gq1jsw'}
{'comment': "312 is only 58% of the electorate. That isn't landslide territory no matter how you slice it. Not to mention something like 90 of those electors were won by states with a razor thin margin of around 1% or less. \n\nI do agree that Biden should have dropped out in 2023. In fact, I thought I remembered him campaigning in 2020 on the fact that he *wouldn't* run again. But the democratic party dun fuct up, and now here we are. Risking everything.", 'created': '2024-11-13 17:13:53', 'submission_id': '1gq1jsw'}
{'comment': 'He got around 50.2% of the popular vote and 58% of the electoral college. What does "a lot" mean to you?', 'created': '2024-11-13 17:15:26', 'submission_id': '1gq1jsw'}
{'comment': '4-6 in the Senate is pretty huge. I agree about the House. You also forgot 6-3 in the Supreme Court, possibly 7-2 or 8-1 after a few years.', 'created': '2024-11-13 14:18:51', 'submission_id': '1gq1jsw'}
{'comment': '[removed]', 'created': '2024-11-13 05:11:33', 'submission_id': '1gq1jsw'}
{'comment': 'For the record I edited my date and this comment is correct. I’m still distraught about the results.', 'created': '2024-11-13 04:11:36', 'submission_id': '1gq1jsw'}
{'comment': "I don't disagree with you but the Dems do have to stop with the infighting and figure out fast how they can get back the working class and find a candidate that can deliver that message loud, clear, enthusiastically, and often.", 'created': '2024-11-13 04:09:43', 'submission_id': '1gq1jsw'}
{'comment': 'I wrote “comprehensively remodel”, not “completely overthrow”.\n\nAnd the Harris campaign was woeful. I’d list the ways but surely we’ve seen them all ad nauseam in the election post mortem.\n\nIf you genuinely believe that was a good campaign, perhaps Trump supporters aren’t the only ones in a cult.', 'created': '2024-11-13 03:32:55', 'submission_id': '1gq1jsw'}
{'comment': 'Thank you. This is the most reasonable comment regarding Dems I have seen today.', 'created': '2024-11-13 20:09:03', 'submission_id': '1gq1jsw'}
{'comment': None, 'created': '2024-11-13 06:36:00', 'submission_id': '1gq1jsw'}
{'comment': 'My comment and your are examples of “me no likey I am downvoting”. Jesus just wake up people.', 'created': '2024-11-14 01:45:05', 'submission_id': '1gq1jsw'}
{'comment': 'Biden struggled to get anything progressive through with 52 dems. Fuck you manchin', 'created': '2024-11-13 20:40:23', 'submission_id': '1gq1jsw'}
{'comment': '1. Don’t be an asshole. \n\n2. Not everything has to be doom and gloom', 'created': '2024-11-13 05:12:49', 'submission_id': '1gq1jsw'}
{'comment': 'Literally just let trump do his thing and people will be crawling back to the Democrats for a miracle solution when shit hits the fan.', 'created': '2024-11-13 04:18:14', 'submission_id': '1gq1jsw'}
{'comment': 'She had a 100 days and closed every polling gap that Biden had even though she was the VP. I’d say that is pretty amazing.', 'created': '2024-11-13 03:38:41', 'submission_id': '1gq1jsw'}
{'comment': 'To call that campaign “woeful,” is absolutely ignorant. She was a weak interviewer, and that was about it. Her campaign energy was immense. Kamala HQ attracted a ton of attention from young voters. She was well prepared for the debate and was unanimously considered the winner by the media. She was on top of her social media game. She held a ton more rallies than Biden with high attendance in such a short period of time. She raised a billion dollars in 100 days. Damn, in such a tiny amount of time she managed to take what was going to be a historically terrible blowout for Biden (probably losing 3-4 safe Blue States), and turned it into a skin tight race. It’s honestly depressing for her because if she had ran that campaign in a normal year where she was given more time and wasn’t getting dragged by inflation, she would’ve won easily.', 'created': '2024-11-13 04:15:49', 'submission_id': '1gq1jsw'}
{'comment': 'Defintionally that is not what a super majority is at all. Are you new to politics or something?', 'created': '2024-11-13 06:45:13', 'submission_id': '1gq1jsw'}
{'comment': "That's just an incorrect use of the term. Like, objectively. Words have definitions.", 'created': '2024-11-13 17:03:40', 'submission_id': '1gq1jsw'}
{'comment': '1. Didn’t think I was\n2. Getting tired of all the coping and wish there was something practical on the table but Dems still don’t seem to understand how bad things are.', 'created': '2024-11-13 05:19:36', 'submission_id': '1gq1jsw'}
{'comment': 'True. Trust me, I’m scared AF of Trump returning to power, but I’m confident in knowing that there’s still barriers around him.', 'created': '2024-11-13 07:47:30', 'submission_id': '1gq1jsw'}
{'comment': "Perhaps true but it doesn't longterm fix the Dem's issues with messaging and making the party work for the people.", 'created': '2024-11-13 13:05:52', 'submission_id': '1gq1jsw'}
{'comment': "Not a chance... They'll just blame Biden when things go bad.", 'created': '2024-11-13 16:55:54', 'submission_id': '1gq1jsw'}
{'comment': 'The fact the party was in that position is because party leadership failed.', 'created': '2024-11-13 04:00:40', 'submission_id': '1gq1jsw'}
{'comment': 'It sounds like you need some time to come to terms with what happened.\n\nAs a Brit who’s been through this, I’d advise you not to spend too long indulging yourself in denialism. Every day you spend in this fantasy will only reduce your chances of winning the next election - if there is one.', 'created': '2024-11-13 04:36:25', 'submission_id': '1gq1jsw'}
{'comment': "Here's the problem. Trump didn't win because he leveraged a lot of new voters. He won because almost 10,000,000 folks that came out to vote for Biden in 2020 didn't come out to vote for Harris in 2024. Even though she only had 100 days the Democrats are fooling them selves if they think she connected with the working class or that she was electable.", 'created': '2024-11-13 15:58:28', 'submission_id': '1gq1jsw'}
{'comment': "You're probably right about it being a blowout if it was Biden. Virginia and New Jersey were within a 4 point margin. New Mexico was only a 50k vote difference, and New Hampshire was only 23k.", 'created': '2024-11-13 15:11:32', 'submission_id': '1gq1jsw'}
{'comment': 'Fair enough, usually accusing people of coping comes off as a little rude in my eyes. \n\nI think we have another shot at keeping some order. 2026 we can regain the legislative branch and stall out most changes from happening.', 'created': '2024-11-13 05:21:22', 'submission_id': '1gq1jsw'}
{'comment': "We kinda do understand. Trump is a lazy ego maniac. He'll fire people continuously and get in his own way on day one. He'll pass tax cuts and go golphing for 4 years.", 'created': '2024-11-13 19:29:16', 'submission_id': '1gq1jsw'}
{'comment': 'I like your user name and I think you are making fair points.', 'created': '2024-11-13 06:04:57', 'submission_id': '1gq1jsw'}
{'comment': 'Me too. Shits still scary, but all doom and gloom isn’t the look. There’s still room to fight back too.', 'created': '2024-11-13 07:48:57', 'submission_id': '1gq1jsw'}
{'comment': 'And that’s fine, but don’t say she did not run a good campaign', 'created': '2024-11-13 04:03:28', 'submission_id': '1gq1jsw'}
{'comment': 'What? Come to terms with what happened… where we lost an election by like the exact same amount of electoral votes we did 8 years ago and then won the next one? In a year when incumbent parties are getting destroyed by COVID inflation? I’m not coping with anything. This is how a democracy works — you don’t win them all.', 'created': '2024-11-13 05:26:34', 'submission_id': '1gq1jsw'}
{'comment': 'Oh my lord, this “10 million people didn’t vote thing,” is such a load of bullshit and I’m so tired of hearing it. The vote isn’t even fully counted yet. When it is, there will be a maybe 5 million vote difference. That’s a drop in OVERALL turnout. Trump just gained some Dem voters. Everyone screaming this “Omg a gazillion Democrats didn’t show up!!!” are so ridiculously braindead and it’s concerning.', 'created': '2024-11-13 18:06:54', 'submission_id': '1gq1jsw'}
{'comment': 'Everyone should start organizing on the ground at the local level. Best way to send a message to corporate powers and what not is working together start boycotting companies that support this. Shop local if you can. Support companies that are corporate allies if you have to.', 'created': '2024-11-13 05:34:08', 'submission_id': '1gq1jsw'}
{'comment': "I keep seeing the same memes and screenshots from before the election talking about what an asshole Trump is and how awful he will be. And also a lot of schadenfreude posts, most of which I think are fake, of how Trump voters are concerned he'll actually do the things he said he will do. Or that the margin really wasn't as wide as the media is reporting. JUST STOP. It's all fantasy bullshit. Stop thinking in the past. Every terrible thing we said Trump was going to do, he is going to do, and worse. We need to be talking about how we are going to stop him, and how we are going to rebuild this party, not wallow in fantasies of his electorate becoming disgruntled and turn on him or that's it's not really that bad. They're not going to turn on him. It's really that bad. We need resistance, revolution, and a solid plan for the future. Not some meme about how some Latino voter in Texas didn't realize that she might also be deported.", 'created': '2024-11-13 05:58:15', 'submission_id': '1gq1jsw'}
{'comment': 'She did not run a good campaign.', 'created': '2024-11-13 04:42:28', 'submission_id': '1gq1jsw'}
{'comment': 'Here\'s the data. If you have alternate facts feel free to post them.\n\n2024 election is 96% counted. It\'s not a "gazillion" it\'s 9,463,908 less voted for Harris than Biden to be exact. And 891,851 additional votes for Trump. So yeah it\'s crystal clear what happened. Those numbers will change a little but we already have the post mortem.\n\nhttps://preview.redd.it/9622y9vwkp0e1.png?width=933&format=png&auto=webp&s=a00240db65f1c09802c0f5c6dca18e8cbd60d7c1', 'created': '2024-11-13 19:06:00', 'submission_id': '1gq1jsw'}
{'comment': '[removed]', 'created': '2024-11-13 05:59:58', 'submission_id': '1gq1jsw'}
{'comment': 'The plan includes retaking the legislature\n\nI agree with a lot of your points. A lot of the memes have been stupid. \n\nBut so has the thought that the government is suddenly broken because trump won. \n\nIt’s not over yet', 'created': '2024-11-13 05:59:20', 'submission_id': '1gq1jsw'}
{'comment': 'I don’t agree', 'created': '2024-11-13 04:44:36', 'submission_id': '1gq1jsw'}
{'comment': None, 'created': '2024-11-13 07:40:58', 'submission_id': '1gq1jsw'}
{'comment': 'I like how you ultimately treated stinky fartface fairly.', 'created': '2024-11-13 06:06:37', 'submission_id': '1gq1jsw'}
{'comment': 'The British tried a similar sleight of hand with the Dunkirk story. It was remarkably effective, but only because we won the war.\n\nYou lost, and I’m sorry to tell you that that changes the dynamics somewhat.', 'created': '2024-11-13 04:47:50', 'submission_id': '1gq1jsw'}
{'comment': 'I would just suggest to start talking in your communities in person with each other not online, I think we all need human contact for our emotional well being but small acts of legal/nonviolent resistance by millions of workers also sends a message of solidarity. \n\nPeople blaming the campaign messaging and each other is a waste of our time and energy.', 'created': '2024-11-14 02:54:52', 'submission_id': '1gq1jsw'}
{'comment': 'I try to be fair. It’s always good practice to not get angry when other people are upset because they’re hurt', 'created': '2024-11-13 06:08:05', 'submission_id': '1gq1jsw'}
{'comment': 'Not in how I think she ran the campaign, it was good but she needed more time', 'created': '2024-11-13 04:51:15', 'submission_id': '1gq1jsw'}
{'comment': '…More time to alienate an entire gender, or more time to not communicate her non-existent economic message?\n\nThe Dems certainly needed more time. Biden should have declared himself a one-term president early on and Kamala would never have been the nominee because she’d have been easily defeated in the primaries.\n\nBut, here we are. As a Brit, trust me - don’t spend too long indulging in denialism. It’ll only play into Trump’s hands.', 'created': '2024-11-13 04:59:26', 'submission_id': '1gq1jsw'}
{'comment': "Huh? When she lost 10,000,000 of the voters that put Biden over the top last time? She was UNELECTABLE she did NOT connect with working class people and that is why they stayed away in droves. Same as Hillary Clinton was in 2016. When will Democrats learn that phony glossy rhetoric and slick campaigning doesn't win elections in the USA? Never?", 'created': '2024-11-13 16:25:11', 'submission_id': '1gq1jsw'}
{'comment': 'Yeah she ran a great campaign and almost won. She talked plenty about the economy but Economic headwinds were too much to overcome. Sounds like what’s happening around the rest of the world', 'created': '2024-11-13 13:40:36', 'submission_id': '1gq1jsw'}
{'comment': 'Votes are still being counted going to be like she had around 5 million less total votes than Biden. She will have more votes than Hilary which got only 66m. She has 72m right now. She lost the 3 key swing states by 200k votes. I was not a bad campaign at all. She needed more time, or as you said Biden should not have run again and we could have had a primary. But anyone who was nominated was going to have a hard time and it would have been close like this was.', 'created': '2024-11-13 16:26:08', 'submission_id': '1gq1jsw'}
{'comment': 'a maga parable, got it.', 'created': '2024-11-13 02:51:49', 'submission_id': '1gq1ip1'}
{'comment': 'Very true. In politics, if you’re explaining then you’re losing.', 'created': '2024-11-13 16:28:00', 'submission_id': '1gq1ip1'}
{'comment': 'Ok but now these people are in charge of us so now what', 'created': '2024-11-13 18:55:51', 'submission_id': '1gq1ip1'}
{'comment': 'It’s more about saving your own sanity in a sea of fools. I wish I had answers about what we do now.', 'created': '2024-11-13 21:22:17', 'submission_id': '1gq1ip1'}
{'comment': "'Department of Government Efficiency' = Cutting taxes for the rich by cuttting public services for the poor.\n\nDelivered to you... by the rich.\n\n'Not from the establishment' billionaires doing what's best for billionaires - completely shocking, I know.", 'created': '2024-11-13 02:49:16', 'submission_id': '1gq1c2p'}
{'comment': 'What is Tulsi Gabbard getting for selling out? Looks like nothing.', 'created': '2024-11-13 03:10:54', 'submission_id': '1gq1c2p'}
{'comment': 'Doomsday.', 'created': '2024-11-13 02:29:47', 'submission_id': '1gq1c2p'}
{'comment': 'Two industrial-grade assholes who think that “efficiency” means firing people.\n\nWhen corporate knowledge walks out the door it is incredibly difficult and expensive to bring it back.\n\nI suppose they’ll backfill from the deep pool of applicants from Liberty University.', 'created': '2024-11-13 03:22:14', 'submission_id': '1gq1c2p'}
{'comment': 'DOGE.. can’t make this up..', 'created': '2024-11-13 03:31:08', 'submission_id': '1gq1c2p'}
{'comment': "I don't want to know what America will look like without a Department of Education, guys. Even though I don't have kids that absolutely terrifies me. \n\nETA: [More info on what it does.](https://www.edweek.org/policy-politics/can-trump-really-dismantle-the-department-of-education/2024/11) I wasn't aware it was that young. Still, it looks like this could be really bad and hopefully even some Republicans will oppose this?", 'created': '2024-11-13 03:54:23', 'submission_id': '1gq1c2p'}
{'comment': 'Two guys to lead? Isn’t that kind of one job? Aka is this the most efficient way to do this? These guys…', 'created': '2024-11-13 10:10:11', 'submission_id': '1gq1c2p'}
{'comment': 'Sounds like a made up position so Elon can take credit for the typical federal budget cuts', 'created': '2024-11-13 02:35:43', 'submission_id': '1gq1c2p'}
{'comment': 'Elon wanted to crash the economy', 'created': '2024-11-13 02:41:36', 'submission_id': '1gq1c2p'}
{'comment': "These fuckers don't deserve it", 'created': '2024-11-13 02:37:08', 'submission_id': '1gq1c2p'}
{'comment': 'Good. Keep these two fucking idiots out of the government. Eternally relieved that Ramaswamy was not the VP pick because I genuinely think the only conservative I find more insufferable is Ben Shapiro.', 'created': '2024-11-13 03:13:26', 'submission_id': '1gq1c2p'}
{'comment': 'From now on these two should be known as the "Cutting Quality Control Boys", in honor of Boeing, whom in their quest for "efficiency" caused deaths and practically destroyed their reputation.', 'created': '2024-11-13 03:41:02', 'submission_id': '1gq1c2p'}
{'comment': 'This should be scaring people. He’s making some new government entity with morons running it. This isn’t a good thing.', 'created': '2024-11-13 16:54:07', 'submission_id': '1gq1c2p'}
{'comment': 'Ramaswampy.', 'created': '2024-11-13 03:15:07', 'submission_id': '1gq1c2p'}
{'comment': 'we are screwed', 'created': '2024-11-13 04:54:43', 'submission_id': '1gq1c2p'}
{'comment': 'We’re watching Clyiodynamics in real time.', 'created': '2024-11-13 07:25:39', 'submission_id': '1gq1c2p'}
{'comment': "If they can get away with it, they intend to gut Federal bureaucracy. Republicans are always in pursuit of the self-fulfilling prophecy that government doesn't work for the people. \n\nStep 2. Slash the budget. \n\nStep 3. More tax breaks for the wealthy and the corporations.", 'created': '2024-11-13 14:11:51', 'submission_id': '1gq1c2p'}
{'comment': 'This is a specific power move, creating a new office that is outside the system and allowing it to be granted special powers. \n\nMusk is going to leverage it as a wedge to gain the power to make unilateral decisions', 'created': '2024-11-13 18:34:47', 'submission_id': '1gq1c2p'}
{'comment': 'The stupid acronym is DOGE… Elon really getting to do whatever he wants in Trump’s government. It ain’t going to work out great.', 'created': '2024-11-13 03:18:26', 'submission_id': '1gq1c2p'}
{'comment': 'He may have too many token women already', 'created': '2024-11-13 03:16:44', 'submission_id': '1gq1c2p'}
{'comment': '>I suppose they’ll backfill from the deep pool of applicants from Liberty University.\n\nProject 2025 has already been building a database of potential employees \n\nhttps://www.project2025.org/personnel/', 'created': '2024-11-13 04:38:05', 'submission_id': '1gq1c2p'}
{'comment': 'wasn’t doge a bit coin or am i mixing acronyms', 'created': '2024-11-13 04:51:26', 'submission_id': '1gq1c2p'}
{'comment': "https://preview.redd.it/pm3gxbe7sk0e1.png?width=1240&format=pjpg&auto=webp&s=f55a7d8bd485ef656524854a96b04152d10c60a4\n\nI can't wait to see what that looks like...", 'created': '2024-11-13 02:55:15', 'submission_id': '1gq1c2p'}
{'comment': 'Vivek isn’t even a billionaire!! /s', 'created': '2024-11-13 04:50:15', 'submission_id': '1gq1c2p'}
{'comment': 'Musk and Ramaswamy are now in the government co-leading a new government department (Department of Government Efficiency [DOGE]).', 'created': '2024-11-13 03:36:23', 'submission_id': '1gq1c2p'}
{'comment': 'He has done it before and we lived. I am praying we live again.', 'created': '2024-11-13 18:18:19', 'submission_id': '1gq1c2p'}
{'comment': 'It’s like putting a 13-year-old in charge of the government…', 'created': '2024-11-13 09:03:09', 'submission_id': '1gq1c2p'}
{'comment': 'That’s what I was thinking. His female quota is full. Vivek is filling the minority slot.', 'created': '2024-11-13 03:21:41', 'submission_id': '1gq1c2p'}
{'comment': 'Would be a shame if they got a bunch of fake resumes 🤷🏼\u200d♂️', 'created': '2024-11-13 12:02:00', 'submission_id': '1gq1c2p'}
{'comment': 'Yep just Hit a 52 week high today and is up 115% for the week…', 'created': '2024-11-13 18:09:42', 'submission_id': '1gq1c2p'}
{'comment': 'Bill Clinton’s balanced budget is why I wanted Hillary to win so bad in 2016; I’m confident she could do it again. It’s depressing to think that she could still be our president right now and passing off power to someone who’s NOT Trump had things gone a little differently 8 years ago :(', 'created': '2024-11-13 03:15:49', 'submission_id': '1gq1c2p'}
{'comment': "As usual, I'm wrong. Evidently, even with the word department in the name, it is not a new government agency.\n\nSorry for adding to the confusion. \n\nhttps://apnews.com/article/donald-trump-president-elon-musk-vivek-ramaswamy-2f0f76bb6440231f2504b77cb117d988", 'created': '2024-11-13 05:15:41', 'submission_id': '1gq1c2p'}
{'comment': 'Dear God how did we so quickly go from Obama to this?', 'created': '2024-11-13 03:31:23', 'submission_id': '1gq1amh'}
{'comment': 'I had a dream Obama came back and that was awesome', 'created': '2024-11-13 03:09:06', 'submission_id': '1gq1amh'}
{'comment': 'Absolutely. The fact that Trump won in all the swing states is just appalling. Also, one of the top Google searches right now is “how to change your vote.” This tells you that many people regret voting for who they decided to vote for.', 'created': '2024-11-13 04:08:33', 'submission_id': '1gq1amh'}
{'comment': "I think it's only been a week and we are all grieving. I think we are going to see more efforts in the weeks to come as more and more people move through that grieving stage. \n\nDear God, it's only been a week. I'm tired, let me rest for a little bit or else I am not going to be able to do this. My plan right now is to get my finances in order, get a passport, and be selective in what I get my kids for Christmas. I have started Journaling and that's helping me process things. I am watching comfort shows and writing fanfiction.", 'created': '2024-11-13 02:38:49', 'submission_id': '1gq1amh'}
{'comment': "I keep hoping I just wake up and it was all a dream, but alas, we're in for a rough couple years", 'created': '2024-11-13 05:32:51', 'submission_id': '1gq1amh'}
{'comment': 'Unfortunately, my Trump loving, federal coworkers remind me that the election was real…', 'created': '2024-11-13 13:22:36', 'submission_id': '1gq1amh'}
{'comment': 'The 2nd term is usually the one where the most of an administration ends up in prison. Reagan had over 100 loyalists indicted, charged and convicted. Idiot Trump is hellbent on breaking that record, too.', 'created': '2024-11-13 14:19:28', 'submission_id': '1gq1amh'}
{'comment': 'I’m having a nightmare that I’ve been dragged into the third quarter quell 😬', 'created': '2024-11-13 14:41:54', 'submission_id': '1gq1amh'}
{'comment': '1860 all agian', 'created': '2024-11-13 15:47:01', 'submission_id': '1gq1amh'}
{'comment': 'Racism is the answer, unfortunately.', 'created': '2024-11-13 04:08:59', 'submission_id': '1gq1amh'}
{'comment': 'Obama is the cause. Making a black man president caused the racists to lose their minds literally. They invented a Cult (QAnon) just because their reality broke.', 'created': '2024-11-13 08:08:50', 'submission_id': '1gq1amh'}
{'comment': 'The Republicans have been gearing up for this for decades. \n\nThey first began laying the foundation for it in the 80s. They deregulated the media and defanged the FTC which allowed Fox News to be born. In the 90s the Democratic Party gave in and became a “moderate” party. Despite that, the Republicans went hard right into angry and vitriolic politics with Newt Gingrich leading the way. Talk radio with political commentary exploded and has been dominated by the extreme right. \n\nIn the 2000s even comedy & entertainment programs were implicitly pro-right. Right wing think tanks and lobbyists have since poured massive bucks into turning every social media site into a top-down led platform that disseminated misinformation on a massive scale. Reminder that one of the earliest investors into Facebook was Mr Peter Thiel, the current handler of JD Vance and the Republican Party. \n\nIt didn’t matter what the Democratic Party did, the republicans saw an “in” and they took it. When the Dems went to the center, the republicans went to the alt right. They have worked hard to make sure the American people has had what is essentially neo nazi propaganda funneled into their brain for years and it has paid off a hundred fold.\n\nEdit: to speak to Obama in particular, he once represented a new way forward but honestly much of his luster is gone nowadays. The only people he has a real pull on are people who were alive to witness his rise to the presidency. The sad truth is younger voters do not care about him. Who can blame them really? Whether it’s his fault or not, Obama failed. \n\nIn 2008 he ran on a platform with populist messaging— but he was NOT a populist. He never actually created a “left” coalition— he created a cult of personality. And that well eventually dried up. He wasn’t able to unite the many factions of the Democratic Party for long nor did he create lasting political power that many working class and progressive people felt like they could wield. “Hope and change”? Hope for what? Change to what? He didn’t create any lasting change. His term ended with many progressives without hope, disillusioned with the Democratic Party—and Donald Trump as the President.', 'created': '2024-11-13 14:04:38', 'submission_id': '1gq1amh'}
{'comment': 'i miss obama', 'created': '2024-11-13 07:55:44', 'submission_id': '1gq1amh'}
{'comment': 'Because none of them understood Tariffs and refused to research despite the whole “facts don’t care about your feelings.” Bit that they’ve been committed too for the longest time.', 'created': '2024-11-13 04:14:59', 'submission_id': '1gq1amh'}
{'comment': 'It also shows the intelligence of both his base and a majority of Americans. Jfc… 🥲', 'created': '2024-11-13 04:13:56', 'submission_id': '1gq1amh'}
{'comment': 'It feels exactly like grief minus the fact that half of the country and a bunch of Russian trolls are willing to rub it in your face and laugh at you for grieving. It’s fucking surreal, terrible, disgusting, all of that combined and then some.', 'created': '2024-11-13 03:05:30', 'submission_id': '1gq1amh'}
{'comment': "this has been the roughest year of my life. been waiting for disability to kick in for 7 months (finally get a check this month), was hoping things would settle down after Harris was elected and now this. I'm getting so much worse from all this. could hardly breathe last week. I'm just ready to go..", 'created': '2024-11-13 03:33:53', 'submission_id': '1gq1amh'}
{'comment': 'I’m trying to spend less time scrolling and more time reading books, it’s been nice. Reading a book about the the Nazi occupation of Paris, it’s fascinating', 'created': '2024-11-13 17:29:17', 'submission_id': '1gq1amh'}
{'comment': 'At least it was a good eight years back then.', 'created': '2024-11-13 06:41:30', 'submission_id': '1gq1amh'}
{'comment': 'Yeah I think there’s something to be learned here. The harder democrats push to the left, the more republicans pull to the right. \n\nUnfortunately America is still very racist and sexist. In the 3 presidential elections we’ve had since then only the one with the white guy (Joe Biden) won. \n\nThey have been clear in what they want. We just haven’t listened. God I hate them.', 'created': '2024-11-13 11:31:51', 'submission_id': '1gq1amh'}
{'comment': 'You have to go back to 1964 and Barry Goldwater. From Wikipedia:\n\n“Goldwater only won his home state of Arizona and five states in the Deep South. The Southern states, traditionally Democratic up to that time, voted Republican primarily as a statement of opposition to the Civil Rights Act,[102] which had been signed into law by Johnson earlier that year. Despite Johnson’s support for the Civil Rights Act, the bill received split support from Congressional Democrats due to southerner opposition.”\n\n[Barry Goldwater](https://en.wikipedia.org/wiki/Barry_Goldwater) \n\nThis is the point in recent history where Dixiecrats switched parties in protest of the Civil Rights Act. This is why when republicans say they are the party of Lincoln they are revealing their ignorance. \n\nThe similarities between the election of Obama and the rise of the Tea Party movement and the south going republican after 1964 cannot be overlooked. Then you have the birth of the New Right and Christian right in the 70’s to include the creation of the Heritage Foundation. \n\nOf course you could go back to post Civil War and talk about the [The Lost Cause](https://en.wikipedia.org/wiki/Barry_Goldwater) and The United Daughters of the Confederacy and the mistakes that were allowed in teaching southern children an entirely different history than what was being taught in northern states. \n\nAll of it boils down to racism and completely different ideologies. As today with Trump, Goldwater too condemned the KKK and tried to distance himself from racism but they still voted for him. \n\nPart of our struggle has to do with what started post civil war which led to Lost Cause, Jim Crowe, and continued through the Civil Rights Act of 1964.', 'created': '2024-11-13 19:25:40', 'submission_id': '1gq1amh'}
{'comment': 'Same 😔', 'created': '2024-11-13 20:49:42', 'submission_id': '1gq1amh'}
{'comment': 'Yea no shit. It’s like they are incapable of WINNING gracefully.', 'created': '2024-11-13 04:16:18', 'submission_id': '1gq1amh'}
{'comment': "If I have to survive this, you are surviving it with me. It's gonna suck but we are going to survive this if only our of spite.", 'created': '2024-11-13 03:48:50', 'submission_id': '1gq1amh'}
{'comment': 'Becareful of the history books. I had a panic attack over one', 'created': '2024-11-13 18:12:35', 'submission_id': '1gq1amh'}
{'comment': '“Push to the left” meaning nominating a black man in this instance', 'created': '2024-11-13 19:23:22', 'submission_id': '1gq1amh'}
{'comment': 'So Elon Musk worked illegally in the US before he had the proper immigration status to work. And on a citizenship application, a person is asked if he or she worked for wages before receiving the necessary status. So did Elon lie on his application? If so, will he be stripped of his citizenship and deported?', 'created': '2024-11-13 02:28:56', 'submission_id': '1gq18a4'}
{'comment': 'They are not going to wait to go through the process before transporting and holding anyone they feel like.', 'created': '2024-11-13 07:05:35', 'submission_id': '1gq18a4'}
{'comment': 'Only if they care about the law. MAGA breaks laws and are long gone by the time the legal part comes around.', 'created': '2024-11-13 08:38:07', 'submission_id': '1gq18a4'}
{'comment': 'Still thinking they’re gonna follow the rules? It not called a shitshow for nothing.', 'created': '2024-11-13 05:23:33', 'submission_id': '1gq18a4'}
{'comment': "Yeah but the thing you're missing is that they don't care whether or not it's legal to denaturalize somebody.. they don't give a fuck", 'created': '2024-11-13 06:38:28', 'submission_id': '1gq18a4'}
{'comment': 'That is one serious prescription. You can almost see the back of his head through those (not that I’m one to talk)', 'created': '2024-11-13 03:45:55', 'submission_id': '1gq18a4'}
{'comment': 'That last line does all the heavy lifting. “As long as you aren’t involved in crime you should be just fine.” So… all they need to do is make up some crime to grab you for, and your assumed magical protections vanish. That’s how it always works with fascism.', 'created': '2024-11-13 19:47:05', 'submission_id': '1gq18a4'}
{'comment': "Sure they can. Shoot first and ask for forgiveness (if at all) later. It's much quicker and easier to order things to get fucked up. The punishment would be slow to come if ever. Any stays by judges would be too late or ineffective because they are not on the ground physically preventing whatever it is from happening.", 'created': '2024-11-13 14:20:16', 'submission_id': '1gq18a4'}
{'comment': "Nah, he's white. They only care if you aren't white", 'created': '2024-11-13 02:36:10', 'submission_id': '1gq18a4'}
{'comment': 'As a white 37M I say Trump can go fuck himself with concertina wire wrapped telephone pole.', 'created': '2024-11-13 02:54:20', 'submission_id': '1gq0z1h'}
{'comment': 'So oppressed, no race has been more bigly oppressed in history, the horror.../s', 'created': '2024-11-13 02:12:09', 'submission_id': '1gq0z1h'}
{'comment': 'The way they try to whitewash and make it seem like the white race is going extinct is truly sickening.', 'created': '2024-11-13 03:18:11', 'submission_id': '1gq0z1h'}
{'comment': 'As a white person I have never been oppressed in my life. What the fuck', 'created': '2024-11-13 03:26:14', 'submission_id': '1gq0z1h'}
{'comment': 'Btw this was also one of the early things that happened in Nazi Germany. \n\nGermans basically started looting from Jewish people. \n\nTaking their businesses their homes their wealth etc. \n\nNot surprised', 'created': '2024-11-13 03:33:22', 'submission_id': '1gq0z1h'}
{'comment': 'I fucking hate this time line', 'created': '2024-11-13 04:36:24', 'submission_id': '1gq0z1h'}
{'comment': "It's only been a week and I'm already so fucking tired of his shit", 'created': '2024-11-13 05:03:32', 'submission_id': '1gq0z1h'}
{'comment': 'His face and voice are revolting. He’s weird, ugly, and sounds like he’s trying to fill a diaper—oh wait. Not trying.', 'created': '2024-11-13 02:25:56', 'submission_id': '1gq0z1h'}
{'comment': 'Education being called Anti-American insanity? Jesus take the wheel…', 'created': '2024-11-13 02:34:26', 'submission_id': '1gq0z1h'}
{'comment': 'Of course he does', 'created': '2024-11-13 02:13:59', 'submission_id': '1gq0z1h'}
{'comment': "He's not wrong. America voted for this.", 'created': '2024-11-13 03:06:23', 'submission_id': '1gq0z1h'}
{'comment': 'They voted for this.', 'created': '2024-11-13 03:07:37', 'submission_id': '1gq0z1h'}
{'comment': "I'm white. We're the LAST people on Earth who deserve reparations for anything.\n\nIs Trump's brain installed backwards? I swear, everything he says is flipped 180° from reality.", 'created': '2024-11-13 02:58:01', 'submission_id': '1gq0z1h'}
{'comment': 'America, you voted for this.\n\nThe light bulb that shines upon that city on the hill has gone out.', 'created': '2024-11-13 03:30:01', 'submission_id': '1gq0z1h'}
{'comment': "Why does he always talk like he's filming an ad for a local used car dealership?\n\nhttps://preview.redd.it/o43s18tvil0e1.jpeg?width=1440&format=pjpg&auto=webp&s=f26da25ce9436887cf13c156d41816a0b181bbe7", 'created': '2024-11-13 05:24:46', 'submission_id': '1gq0z1h'}
{'comment': 'It\'s true that the enslavers got reparations for lost "property" after chattel slavery ended. Conservatives definitely know *their* history.', 'created': '2024-11-13 03:35:12', 'submission_id': '1gq0z1h'}
{'comment': 'Buddy has really bought into white replacement theory.', 'created': '2024-11-13 03:37:16', 'submission_id': '1gq0z1h'}
{'comment': 'Good luck taxing NFP schools for how they handle their endowments which are made up of donor funds and can’t be used for whatever a university likes.', 'created': '2024-11-13 03:32:29', 'submission_id': '1gq0z1h'}
{'comment': "No, I didn't. Don't point at me.", 'created': '2024-11-13 05:44:47', 'submission_id': '1gq0z1h'}
{'comment': "Omg, he's not even President yet and it's already a hillbilly hootenanny", 'created': '2024-11-13 03:31:36', 'submission_id': '1gq0z1h'}
{'comment': "I'm a black american and just tired of this. Black americans have fought for centuries but we will always be mistreated in this country. Making my way out of here and to a more progressive country.\xa0", 'created': '2024-11-14 00:25:30', 'submission_id': '1gq0z1h'}
{'comment': "Omg, he's not even President yet and it's already a hillbilly hootenanny", 'created': '2024-11-13 03:31:36', 'submission_id': '1gq0z1h'}
{'comment': 'This whole country is DEI for white people', 'created': '2024-11-13 21:36:31', 'submission_id': '1gq0z1h'}
{'comment': 'Being a white American is so damn embarrassing.', 'created': '2024-11-13 05:42:06', 'submission_id': '1gq0z1h'}
{'comment': 'This is the Upside Down. How do we get back to the real world? Absolute batshit insanity.', 'created': '2024-11-13 08:03:23', 'submission_id': '1gq0z1h'}
{'comment': 'He talks with his teeth forward idk how or why but it’s somehow the only thing I can see in this video', 'created': '2024-11-13 08:17:09', 'submission_id': '1gq0z1h'}
{'comment': 'Is that Trump video real or AI-generated?', 'created': '2024-11-13 06:34:57', 'submission_id': '1gq0z1h'}
{'comment': 'This looks like AI. Has anyone seen Trump publicly since the election?', 'created': '2024-11-13 13:49:31', 'submission_id': '1gq0z1h'}
{'comment': "You can tell he doesn't understand a god damn thing that he's reading off that teleprompter. Unreal that this IDIOT is President again.", 'created': '2024-11-14 17:32:38', 'submission_id': '1gq0z1h'}
{'comment': 'Same in all regards', 'created': '2024-11-13 04:38:31', 'submission_id': '1gq0z1h'}
{'comment': None, 'created': '2024-11-13 05:38:45', 'submission_id': '1gq0z1h'}
{'comment': 'As a white guy and a veteran, I approve of this message.', 'created': '2024-11-13 05:52:23', 'submission_id': '1gq0z1h'}
{'comment': "Oh man, don't do that to a concertina, it deserves better than to see the inside of...that...", 'created': '2024-11-13 07:05:05', 'submission_id': '1gq0z1h'}
{'comment': 'They wish', 'created': '2024-11-13 02:14:15', 'submission_id': '1gq0z1h'}
{'comment': 'We\'ve been hearing about it for years and no one in charge did anything.\n\n\n"Oh its just trolls online a d a few lone white wolves with easy access to gun and no mental health care"\n\n\nWe have all been hearing this for decades, since the moment we started connecting for equality and the billionaires (who are also 99% white) got terrified.\xa0\n\n\n\xa0We needed to do something years ago when all of this started stewing online. But the few of us who have been warning about it have been told the same thing that we were when we screamed that roe vs Wade was going to be overturned.\n\n\n\xa0"You are being hysterical / over reacting / no it won\'t/ they won\'t be that dumb / even if it is just move to a bluebstate"\n\n\n\xa0At this point I\'m glad I lived my life knowing this. I never had kids and I quickly can figure out who\'s racist...and it\'s a lot more people than American ever wanted to admit.\xa0', 'created': '2024-11-13 13:22:08', 'submission_id': '1gq0z1h'}
{'comment': 'I mean, that’s literally been white supremacist propaganda for over a century.', 'created': '2024-11-13 17:37:49', 'submission_id': '1gq0z1h'}
{'comment': "To them, black people and women get special grants and schools have to meet a quota of attendees....so they think that means white men should have special grants and special reserved spots.\n\n\nThey don't care about the past because their white parents didn't leave them anything and they themselves didn't get to experience the pinnacle of white man on top, get everything, EZ life...\n\n\nThey don't see that's because they are already still favored and it sucks now for everyone.", 'created': '2024-11-13 13:24:04', 'submission_id': '1gq0z1h'}
{'comment': 'They firmly believe in the utter horseshit idea that all our government spending is on minorities.', 'created': '2024-11-13 17:38:35', 'submission_id': '1gq0z1h'}
{'comment': 'I have but I had to transition before it became a reality.', 'created': '2024-11-13 19:13:20', 'submission_id': '1gq0z1h'}
{'comment': "jesus won't help, a large majority of people who believe in jesus voted for this idiot", 'created': '2024-11-13 02:37:39', 'submission_id': '1gq0z1h'}
{'comment': 'This is what the conservative media figures were all trying to do back when they all suddenly started talking about CRT at the same time, whoever it was that directed them to start saying it. So they demonized CRT to their audience before the audience even knee what CRT was. Then they redefined CRT to mean "any history involving black people" and now they have Trump claiming any involvement with providing assistance to black people is racist against white people.', 'created': '2024-11-13 05:40:58', 'submission_id': '1gq0z1h'}
{'comment': 'Looks like he wants to increase the racial wealth gap. 😒', 'created': '2024-11-13 02:42:58', 'submission_id': '1gq0z1h'}
{'comment': 'They even got jealous the Democrats protesting for human rights so they started protesting against human rights, just to be anti-democratic … yes they are.\n\n‘Racism’ is actually when the oppressed minority asks just to be treated fairly for once in like 250 years, everything else is free speech - to these goons anyway.', 'created': '2024-11-13 03:15:24', 'submission_id': '1gq0z1h'}
{'comment': 'Wish I wasn’t American', 'created': '2024-11-13 03:03:05', 'submission_id': '1gq0z1h'}
{'comment': 'White guy here. Since it\'s Trump, I imagine any gift he tries to give us will be on par with something Aunt Bethany from Christmas Vacation wrapped up after wandering around her house. To quote Rusty, "I can\'t wait to see what I got."', 'created': '2024-11-13 04:36:18', 'submission_id': '1gq0z1h'}
{'comment': 'Good idea!', 'created': '2024-11-13 05:39:18', 'submission_id': '1gq0z1h'}
{'comment': '🫡greetings fellow vet!', 'created': '2024-11-13 05:53:52', 'submission_id': '1gq0z1h'}
{'comment': "This is one reason why they win. You can't take the high road with groups who think that you are less than them.", 'created': '2024-11-13 02:23:36', 'submission_id': '1gq0irh'}
{'comment': "Fuck common ground. \n\nEnemies within. Don't doubt for a moment that a Trump supporter will report you to the government. Trump is going to go on a revenge tour to the enthusiastic applause of his followers. They don't care how much it hurts America. They don't care if he's Putin's puppet tearing this country apart.", 'created': '2024-11-13 11:57:00', 'submission_id': '1gq0irh'}
{'comment': 'This is why Democrats lose.\nThey play by fictional rules.\nThey fight with one hand tied behind their backs. \nYes you can fight fair, but 9 times out of 10 you will lose. \nThe problem is there are some fights worth winning, you can take the high road or you can win, and sometimes it’s a must win situation. \nSay, the death of Democracy….', 'created': '2024-11-13 16:07:43', 'submission_id': '1gq0irh'}
{'comment': 'That\'s all well and fine if the person you\'re having a dicussion with has entered said discussion in good faith. When it comes to Republicans though, odds are that they will not return the favor. I genuinely think us "taking the high road" is part of what has gotten us into the situation we are in now. When the otherside argues for something, they just talk over us. Because of that, they are consistently seen as stronger and having the upper hand in debates. They regularly engage in verbal epithets and we do not respond. We consistently appear weak and ineffectual because there is no appearance of us fighting for anything; not even for our individual dignity during a debate. Being respectful, has lost of too much this time. We have to be as ruthless as they are. They have no adherence to any sort of rules or civility. I hate to say it, but we need to do the same to win.', 'created': '2024-11-13 16:16:04', 'submission_id': '1gq0irh'}
{'comment': "Essentially, what you've posted boils down to good intentions. The road to hell was paved with good intentions. Fuck playing nice. Fuck the civility. Fuck the high road. We've done that. That is how lose.", 'created': '2024-11-13 16:39:08', 'submission_id': '1gq0irh'}
{'comment': 'I shall do no such thing. Let it all crumble. We, as a country, made our bed...', 'created': '2024-11-13 11:55:57', 'submission_id': '1gq0irh'}
{'comment': 'When you have the guts to post this in conservative subs too, you’ll be more believable.\xa0', 'created': '2024-11-13 18:36:47', 'submission_id': '1gq0irh'}
{'comment': 'Fuck respectful discussion. They bought it they own it.', 'created': '2024-11-13 22:07:20', 'submission_id': '1gq0irh'}
{'comment': "Hi Friend.\n\nThank you for your feedback.\n\nI recognize that it isn't easy to do and that it requires ongoing exposure and patience. That said, however, they aren't a monolith with their values and beliefs just like us.\n\nLike the graphic says, democracy and progress requires communication, empathy, and patience. To do otherwise or to be a nihilist only does harm.\n\nThanks. ☺️\n\nhttps://preview.redd.it/bh4m9bcbtk0e1.jpeg?width=1080&format=pjpg&auto=webp&s=09614cf77112fe52d621cd29bb0ef8dad9328a75", 'created': '2024-11-13 03:01:28', 'submission_id': '1gq0irh'}
{'comment': 'Accelerationism either comes from a place of privilege or ignorance, neither is good', 'created': '2024-11-13 13:23:19', 'submission_id': '1gq0irh'}
{'comment': 'Hi Friend. I did and it got deleted. ¯\u2060\\\u2060_\u2060(\u2060ツ\u2060)\u2060_\u2060/\u2060¯', 'created': '2024-11-13 23:11:22', 'submission_id': '1gq0irh'}
{'comment': "They are a monolith. They literally repeat each other's lies to the point that Fox News gets sued for defamation. \n\nOur grandparents didn't get rid of Nazis by assuming they had good intentions and meeting them where they were with empathy and patience.", 'created': '2024-11-13 07:59:24', 'submission_id': '1gq0irh'}
{'comment': 'Communication and respect only work with those who are willing to do so honestly and fairly.', 'created': '2024-11-13 19:35:25', 'submission_id': '1gq0irh'}
{'comment': 'Being correct has lost two major elections in the last three cycles.\n\nWhat this is asking us to do is pretend 2+2=5 because facts are hurting stupid people’s feelings.\n\nCan you explain why? Because for the rest of us, this is self solving.', 'created': '2024-11-13 13:32:35', 'submission_id': '1gq0irh'}
{'comment': "Im tired of not living in blissful ignorance. I fought hard, I voted, I wrote reps and senators, I tried to educate, I did my part. I need a break for my own sanity and well being. If this is what America chose, then let the whole thing crumble. \nIf the DNC or other organizations can find hard evidence of the theory of wide spread election interference and get hand recounts done, great. I have little faith that, after all the gaslighting MAGA has done, that anything will come of investigations. \nI'm falling apart mentally. I can't focus on work. I live in a very dark headspace since the results were made. I'm a white cis male so I have privileges. So I guess it's that. I just am so tired boss.", 'created': '2024-11-13 13:31:57', 'submission_id': '1gq0irh'}
{'comment': 'If you really did (and you didn’t or it would still show in your post history), seems like them deleting it means they have declined civility.\xa0\n\nI will not be following rules that the other side will not respect.\xa0\n\nFriend. 🙄', 'created': '2024-11-13 23:28:19', 'submission_id': '1gq0irh'}
{'comment': 'Right. I was at Bastogne (Belgian Ardennes) not too long ago for a very different (but not unrelated) reason why my grandfather was there back in the 1940s. They did not go quietly into the night.', 'created': '2024-11-13 14:27:03', 'submission_id': '1gq0irh'}
{'comment': 'So because we lost in the past we should just say fuck it let’s watch it all burn? Your comment makes no sense', 'created': '2024-11-13 13:37:53', 'submission_id': '1gq0irh'}
{'comment': None, 'created': '2024-11-13 16:21:49', 'submission_id': '1gq0irh'}
{'comment': 'We are all tired and frustrated. I’m not saying to be happy about any of this. I’m saying we have to keep fighting even if we are tired', 'created': '2024-11-13 13:40:11', 'submission_id': '1gq0irh'}
{'comment': "Hi OkAffect.\n\nThank you for the feedback.\n\nYour point is valid, but please know that after I saw that they got deleted, I officially went and deleted them so that they wouldn't take up visual space when I review my post history.\n\nThanks, friend. 🙂\n\nhttps://preview.redd.it/37lsapee3r0e1.jpeg?width=1080&format=pjpg&auto=webp&s=f151ac3623e5d89ff68dbf3c6de219192065b120", 'created': '2024-11-14 00:08:40', 'submission_id': '1gq0irh'}
{'comment': "We led the dumbass elephant to water and it shit talked us the entire time. The elephant now refuses to drink and is still swearing at me while it slowly dies of thirst. I'm going to walk away and let it figure out its fucking priorities. Fuck that elephant.", 'created': '2024-11-13 18:54:10', 'submission_id': '1gq0irh'}
{'comment': 'No, the nature of our system means the adults are no longer in charge so we may as well enjoy the fact that “what are tariffs” spiked hard on Google after the election.\n\nAll those folks too stupid to know what caused the price of eggs to spike are about to find out. Nothing anyone else can do about it.', 'created': '2024-11-13 14:27:50', 'submission_id': '1gq0irh'}
{'comment': 'Appreciate the permission.', 'created': '2024-11-13 16:22:55', 'submission_id': '1gq0irh'}
{'comment': 'LOL! You sure are dedicated to the bit.\xa0\n\nDo it again. Screenshot it.\xa0\n\nI don’t believe you’ve even tried to scold republicans so this is very close to victim blaming.\xa0', 'created': '2024-11-14 02:06:15', 'submission_id': '1gq0irh'}
{'comment': 'He will have to pass this through a narrow house majority and overcome the filibuster. He will probably just appoint awful people or fire people. We have to limit harm until he’s gone', 'created': '2024-11-13 02:21:30', 'submission_id': '1gq0hdt'}
{'comment': 'Also: the Office for Civil Rights (OCR) is part of the Dept of Ed. OCR’s mission is to ensure equal access to education and to enforce civil rights laws that prohibit discrimination in educational institutions receiving federal financial assistance. It addresses issues like discrimination based on race, color, national origin, sex, disability, and age in schools and colleges.', 'created': '2024-11-13 02:17:51', 'submission_id': '1gq0hdt'}
{'comment': "Can't let the general public be *too* educated, after all.", 'created': '2024-11-13 01:57:51', 'submission_id': '1gq0hdt'}
{'comment': 'https://preview.redd.it/5grwd4iwmk0e1.jpeg?width=710&format=pjpg&auto=webp&s=6e4c109b32b633120fa520fc571e79c7ed827479', 'created': '2024-11-13 02:25:31', 'submission_id': '1gq0hdt'}
{'comment': 'He sure loves the poorly educated', 'created': '2024-11-13 01:59:50', 'submission_id': '1gq0hdt'}
{'comment': 'Trade school, nursing, vocational school…all take Dept of Edu funding snd loans. \n\nBut tell me again how Trump is a supporter of the blue collar working class.', 'created': '2024-11-13 03:01:51', 'submission_id': '1gq0hdt'}
{'comment': 'There is no good justification for this. Fuck Trump!!', 'created': '2024-11-13 02:04:49', 'submission_id': '1gq0hdt'}
{'comment': 'Requires legislation. I hope a Democratic Senator has the rocks to object and block.', 'created': '2024-11-13 02:20:55', 'submission_id': '1gq0hdt'}
{'comment': "As an independent voter who has voted blue for the past 10 years, let's take a step back. Trump can want to shut this department down all he wants, but it is really hard to shut down a bureaucracy. Reagan wanted to do this and failed.\n\nFirst off, the Dept. of Education is budgeted for the next 5 years. That's neither here nor there, however what will stop this is Congress. Congress must approve the shutting down of this department, and even with a 52 majority Dems can filibuster it, especially if Thune get's the Majority lead. Passing this legislation will take awhile, and and if anything happens it will be 2026 until it takes effect.\n\nMost moderate GOP members (there are many) will not vote for this because the DOE benefits red districts. Top states who receive the most funding: Alaska, North Dakota, Montaha, Kentucky, South Dakota, Mississippi. This will be taking money out of their districts, and will cause blowback from their constituents. No one likes losing appropriated money. They don't want to screw over their chances of being re-elected during the midterms.\n\nTrump has a very ambitious agenda that he is going to need many people aboard on certain positions, including extending tax breaks, immigration, etc. They will cut deals with him to preserve this.", 'created': '2024-11-13 02:49:35', 'submission_id': '1gq0hdt'}
{'comment': 'He loves the poorly educated', 'created': '2024-11-13 02:30:24', 'submission_id': '1gq0hdt'}
{'comment': 'We already knew all of this. THESE ARE SPELLED OUT IN PROJECT 2025. I read the plan in 2023. Why is media just now reporting on this?!??', 'created': '2024-11-13 02:44:45', 'submission_id': '1gq0hdt'}
{'comment': 'Usher the era of ubridled propaganda. I hope the Gen Z kids who voted third party to "show harris" are listening. Everything they\'ve known about America is over.', 'created': '2024-11-13 02:52:01', 'submission_id': '1gq0hdt'}
{'comment': 'Man I’m tired of being nice. Trump is like a clogged toilet at a concert. It just keeps getting filled with more crap and Democrats will eventually have to clean up after these childish morons who can’t grab a plunger. \n\nIf you are a Republican reading this…yes you are the problem. No Democrats are not the devil. No your father didn’t love you more than (insert football team), and Biden didn’t cheat in 2020.', 'created': '2024-11-13 03:40:13', 'submission_id': '1gq0hdt'}
{'comment': "I remember that at the start of 2017, the Affordable Care Act was as good as dead. Wanting to do something in Congress isn't the same as actually managing to do it.\n\nNot saying they can't, just saying that the journey can take unexpected turns.", 'created': '2024-11-13 02:28:30', 'submission_id': '1gq0hdt'}
{'comment': 'He wants folks to be stupid like his kids', 'created': '2024-11-13 02:28:09', 'submission_id': '1gq0hdt'}
{'comment': 'Also Trump thinks kids with disabilities should all die, no help should be given to them.', 'created': '2024-11-13 04:16:17', 'submission_id': '1gq0hdt'}
{'comment': 'This terrifies me as an autistic person who had an IEP in school and wants to work with autistic kids for my career. The DoE being shut down would adversely impact special needs kids as they won’t have IEPs or 504s anymore. They’re going to fail without the guidance needed to get them where they want to be and I guess they’re just fine with them letting special needs children fail? Doesn’t sound very pro life to me 🤔', 'created': '2024-11-13 03:27:46', 'submission_id': '1gq0hdt'}
{'comment': 'Of course he does not like educated people. This is the result of 2020 votes Level of education vs votes for Trump\n\nhttps://preview.redd.it/jwmsn4lsok0e1.png?width=1200&format=png&auto=webp&s=004a644a41b279ef4d6ad2b047b970c650eea4ee\n\n,', 'created': '2024-11-13 02:37:12', 'submission_id': '1gq0hdt'}
{'comment': 'He wants to try to keep people uneducated and stupid. Just like the 60% of uneducated voters that got him back into the White House.', 'created': '2024-11-13 03:28:06', 'submission_id': '1gq0hdt'}
{'comment': 'Yes, shutting down the Department of Education would be bad.\n\nBut a few things to remember:\n\n* Eliminating DoE has been a conservative goal for ages. This is nothing new.\n* He cannot just say, “I, President Donald J. Trump, order the Department of Education closed.” That requires legislation, and both houses of Congress are very close, so he can’t afford any Republican dissenters.\n * On the other hand, executive orders and general policy decisions can hobble its effectiveness or seriously reprioritize matters.\n* This is part of an entire wish list from Project 2025. There simply is neither time nor political capital to accomplish it all in one term, especially given that their number one priority will be immigration.\n* He’s picking a Cabinet based on ideology and loyalty over talent and competence. While that’s a recipe for disaster in many ways, sometimes, having people like that in charge will limit how much they can do.\n* EDIT: There are DoE functions that conservatives would love to see eliminated, like setting curriculum standards. (And honestly, the specific role of the Federal government in such matters is a legitimate policy debate.) There are also functions like Pell Grants and student loans that have broad support and would be taken over by another part of the government if DoE was eliminated.', 'created': '2024-11-13 03:51:18', 'submission_id': '1gq0hdt'}
{'comment': "Doesn't a nation like ours need to have some form of proper education?\n\nYep, we are going to turn into a third-world country sometime along the line.", 'created': '2024-11-13 02:56:55', 'submission_id': '1gq0hdt'}
{'comment': 'The goal is to privatize education.\n\nIt results in a very segregated and class divided society. It also means substantially more people will be educated by religious schools because they will be the only “quality” schools that are affordable with the vouchers that will be intentionally under funded.', 'created': '2024-11-13 07:37:26', 'submission_id': '1gq0hdt'}
{'comment': 'Of course he does . He won the election after uneducated voters put him in', 'created': '2024-11-13 04:01:36', 'submission_id': '1gq0hdt'}
{'comment': 'Duh. He said that throughout the campaign. Consider it done', 'created': '2024-11-13 06:09:39', 'submission_id': '1gq0hdt'}
{'comment': 'Does that mean my student loans are automatically forgiven? 🤷🏻', 'created': '2024-11-13 02:24:21', 'submission_id': '1gq0hdt'}
{'comment': 'Trump will do as he wishes. America has made that possible.', 'created': '2024-11-13 02:37:25', 'submission_id': '1gq0hdt'}
{'comment': '', 'created': '2024-11-13 02:40:30', 'submission_id': '1gq0hdt'}
{'comment': 'Yeah. He said that. So did the 2025 people.', 'created': '2024-11-13 02:41:51', 'submission_id': '1gq0hdt'}
{'comment': 'This is absolutely no good and it would definitely hurt the schools in the blue states that are trump-proofing', 'created': '2024-11-13 05:35:00', 'submission_id': '1gq0hdt'}
{'comment': 'God I hope the house and senate don’t allow this. My sister is a teacher and I’m worried about her.', 'created': '2024-11-13 06:05:56', 'submission_id': '1gq0hdt'}
{'comment': "What until all the parents of special needs kids in red states find out what the Dept.of Ed actually does. \n\nThe worst part of Trump is how shitty he makes us because I'm going to really enjoy watching those parents lose their shit even though I know it will be kids who are suffering.", 'created': '2024-11-13 18:59:29', 'submission_id': '1gq0hdt'}
{'comment': "Why not? He's living proof of how high you can rise never having learned a damn thing.", 'created': '2024-11-13 03:12:54', 'submission_id': '1gq0hdt'}
{'comment': "It's a hillbilly hootenanny already", 'created': '2024-11-13 03:17:54', 'submission_id': '1gq0hdt'}
{'comment': 'Yup, he has mumbled about it a few times', 'created': '2024-11-13 03:22:29', 'submission_id': '1gq0hdt'}
{'comment': "It won't happen, the house will be even slimmer than last time and there will be lots of republicans in areas joe and Kamala won that won't wanna go anywhere near horrible policies cause they know they'll get voted out in 2 years, this will apply to lots of unpopular crap they try to ram thru as well", 'created': '2024-11-13 03:26:36', 'submission_id': '1gq0hdt'}
{'comment': "If it's easy to fool people when we have a DOE, imagine how easy it will be without one.", 'created': '2024-11-13 04:53:58', 'submission_id': '1gq0hdt'}
{'comment': 'Will*', 'created': '2024-11-13 06:11:26', 'submission_id': '1gq0hdt'}
{'comment': '“I love the poorly educated.”', 'created': '2024-11-13 06:42:54', 'submission_id': '1gq0hdt'}
{'comment': "Oh well, we weren't using it anyway... /s", 'created': '2024-11-13 09:24:40', 'submission_id': '1gq0hdt'}
{'comment': "He's always claimed to love the poorly educated.", 'created': '2024-11-13 10:33:28', 'submission_id': '1gq0hdt'}
{'comment': 'Of course he does…he doesn’t want future generations understanding how stupid he is….', 'created': '2024-11-13 12:00:28', 'submission_id': '1gq0hdt'}
{'comment': "Why is this a surprise yo anyone? He has said it s lot. You're an idiot if you didn't believe him.", 'created': '2024-11-13 21:32:33', 'submission_id': '1gq0hdt'}
{'comment': 'That’s going to be the least of our concerns going forward', 'created': '2024-11-13 07:45:54', 'submission_id': '1gq0hdt'}
{'comment': 'When the illegals are all gone we are going to need cheap nonunionized labor. If you raise them to have an education level that matches the need for all of that low wage employment there will be a large population of working poor.', 'created': '2024-11-13 02:53:02', 'submission_id': '1gq0hdt'}
{'comment': "Yes. I think pretty much every Democrat knows that. \n\nBut it's good that CNN is covering it. So some of the low information swing voters who voted for Trump find out about it.", 'created': '2024-11-13 04:29:55', 'submission_id': '1gq0hdt'}
{'comment': 'Federal student loans are controlled by the Dept. of Ed. Through magical thinking and gross incompetence could all loans be erased?\n.', 'created': '2024-11-13 03:27:52', 'submission_id': '1gq0hdt'}
{'comment': 'EVERYONE CALL YOUR REPS AND DEMAND HE NOT DO IT', 'created': '2024-11-13 05:10:25', 'submission_id': '1gq0hdt'}
{'comment': "How can we create new jobs and lower the unemployment percentage? Should we increase teacher salary? Nah let's shut down the education department!", 'created': '2024-11-13 10:19:48', 'submission_id': '1gq0hdt'}
{'comment': "Tbh after working in public education a few years back it can't get much worse.", 'created': '2024-11-13 10:28:56', 'submission_id': '1gq0hdt'}
{'comment': "He doesn't need it. He's an expert at everything. Just ask him.", 'created': '2024-11-13 13:39:24', 'submission_id': '1gq0hdt'}
{'comment': 'Seems like we’re in for an EUropean century…', 'created': '2024-11-13 21:44:05', 'submission_id': '1gq0hdt'}
{'comment': 'More dumbassess mean more repub votes', 'created': '2024-11-14 00:23:36', 'submission_id': '1gq0hdt'}
{'comment': 'Meanwhile in NJ, we are about to have a district that the starting Salary will be 80 grand. Get enough lawyers to block this assholes move.', 'created': '2024-11-13 02:42:39', 'submission_id': '1gq0hdt'}
{'comment': 'People keep saying that (4 years), but "he" has been pretty consistent with his message that he\'ll stay as long as he wants.', 'created': '2024-11-13 06:45:41', 'submission_id': '1gq0hdt'}
{'comment': "Why haven't our democrats done anything? Biden knows this is going on, but he's not trying to stop it. He just wants to make a peaceful transition of power. This is anything but peaceful. Why hasn't he tried to do something?\n\nETA grammar", 'created': '2024-11-13 05:15:51', 'submission_id': '1gq0hdt'}
{'comment': 'We know', 'created': '2024-11-13 03:53:25', 'submission_id': '1gq0hdt'}
{'comment': 'True…. that’s gonna be a longggg 4 years\n\n', 'created': '2024-11-13 03:31:00', 'submission_id': '1gq0hdt'}
{'comment': 'They’re going to end the filibuster and everyone in the house will fall in line. \n\nObviously.', 'created': '2024-11-13 05:22:09', 'submission_id': '1gq0hdt'}
{'comment': 'That is what gives me hope, is a battle of personalities between the GOP that it becomes a distraction.', 'created': '2024-11-13 13:25:26', 'submission_id': '1gq0hdt'}
{'comment': 'You think the republicans won’t nuke the filibuster?', 'created': '2024-11-13 10:40:16', 'submission_id': '1gq0hdt'}
{'comment': 'Damn. \nThings are really going downhill, huh?', 'created': '2024-11-13 02:21:30', 'submission_id': '1gq0hdt'}
{'comment': 'Oh trust me - no risk of that even now 🫤', 'created': '2024-11-13 02:43:49', 'submission_id': '1gq0hdt'}
{'comment': 'We need a frigging populist to tap into this. Look at other first world nations, we used to be at the top in education and innovation, now look at us. All the wealth at the top and nothing but crumbs for the rest of us.\xa0', 'created': '2024-11-13 15:10:34', 'submission_id': '1gq0hdt'}
{'comment': "They don't do this now.", 'created': '2024-11-13 03:30:13', 'submission_id': '1gq0hdt'}
{'comment': 'The justification is that a stupid population is easily lied to.', 'created': '2024-11-13 02:23:51', 'submission_id': '1gq0hdt'}
{'comment': 'The dumbest president wants to eliminate the department of education! Irony', 'created': '2024-11-13 04:22:44', 'submission_id': '1gq0hdt'}
{'comment': 'Oregon’s senators are pretty well known for standing up and participating in the filibuster.', 'created': '2024-11-13 04:03:04', 'submission_id': '1gq0hdt'}
{'comment': "There will be lawsuits to try to stop a lot of the stuff he's going to try.", 'created': '2024-11-13 03:33:13', 'submission_id': '1gq0hdt'}
{'comment': "That's career and likely literal suicide. These people aren't well.", 'created': '2024-11-13 03:23:47', 'submission_id': '1gq0hdt'}
{'comment': 'Keep talking sense please. \nI have 0 hope, but like reading sensible takes. It makes me feel better for a little while. \n— parent of kid with IEP, and human being', 'created': '2024-11-13 03:47:21', 'submission_id': '1gq0hdt'}
{'comment': 'And plus, swing district Republicans will get creamed if they try this', 'created': '2024-11-13 03:25:27', 'submission_id': '1gq0hdt'}
{'comment': 'Screenshot this to put under my pillow at night 🥹🥹🥹🙏🙏', 'created': '2024-11-13 17:34:24', 'submission_id': '1gq0hdt'}
{'comment': 'Thank you I needed this', 'created': '2024-11-13 20:40:29', 'submission_id': '1gq0hdt'}
{'comment': 'It was "too long". Tbh I skimmed a lot too, but I got some good basic things down and they all terrify me. If they could read or would read, this might have been avoided.', 'created': '2024-11-14 02:46:30', 'submission_id': '1gq0hdt'}
{'comment': 'With the House, Senate, and SCOTIS apparently all bright red MAGA Republicans — tRump will be able to do almost anything he and his little inner circle desire. 😭', 'created': '2024-11-13 02:37:08', 'submission_id': '1gq0hdt'}
{'comment': 'There are no more John McCains in Congress.', 'created': '2024-11-13 03:09:06', 'submission_id': '1gq0hdt'}
{'comment': 'They can always go lower. 😡\xa0', 'created': '2024-11-13 04:19:21', 'submission_id': '1gq0hdt'}
{'comment': 'This scares me, as someone with adhd', 'created': '2024-11-13 16:37:16', 'submission_id': '1gq0hdt'}
{'comment': 'My son is also autistic and had an IEP throughout. He just started college and is doing great.\xa0\nThe dumpster fire will burn everyone, especially the most vulnerable. 😭😡\xa0', 'created': '2024-11-13 04:16:47', 'submission_id': '1gq0hdt'}
{'comment': 'Me and my brother both have ADHD. I’m already graduated but this would affect my brother.', 'created': '2024-11-13 16:37:56', 'submission_id': '1gq0hdt'}
{'comment': 'They’ll try and sell the debt to a privately owned lending service. If thats the case I stop paying all my loans immediately', 'created': '2024-11-13 03:00:28', 'submission_id': '1gq0hdt'}
{'comment': "That's what I'm wondering. Those are the dicks that want money from me every month and are currently telling me they can't find my taxes from the IRS so I've got 2 weeks to send them w2s. Would laugh if that stopped.", 'created': '2024-11-13 02:28:22', 'submission_id': '1gq0hdt'}
{'comment': "There's no way we get this lucky. Imagine me being grateful to Trump, woof.", 'created': '2024-11-13 03:02:27', 'submission_id': '1gq0hdt'}
{'comment': 'He’ll probably sell them to Elon, and that’s who will get paid.', 'created': '2024-11-13 03:44:51', 'submission_id': '1gq0hdt'}
{'comment': 'Even longer to undo the damage.', 'created': '2024-11-13 03:48:46', 'submission_id': '1gq0hdt'}
{'comment': "Midterms in two years. We could conceivably take back the Congress and impeach him again. We could remove both him and Vance from office and install the Democratic Speaker of the House. It's possible. Two years. \n\nLots of local elections next November, too. We need grassroots efforts to oust local Republicans and run local Democrats. We should be running someone for every single open position in the entire country. \n\nYoung people should be running for something. [https://runforsomething.net/](https://runforsomething.net/)", 'created': '2024-11-13 15:28:52', 'submission_id': '1gq0hdt'}
{'comment': '4 years?? You\'ve got more hope then I do given they are going to "fix" elections...', 'created': '2024-11-13 06:48:21', 'submission_id': '1gq0hdt'}
{'comment': "That's my guess too. The filibuster is the only barrier left to Trump's agenda, so they're probably going to have a hard push in the beginning of his term to get rid of it. Once it's gone, it's just smooth sailing for Trump to push through whatever craziness he wants.", 'created': '2024-11-13 08:15:55', 'submission_id': '1gq0hdt'}
{'comment': 'They might, but some of this stuff will be unpopular and senate R’s might want to use the filibuster as an out to not pass it \n\nMost gop ppl will just want to pass tax cuts which they can do with reconciliation', 'created': '2024-11-13 12:54:49', 'submission_id': '1gq0hdt'}
{'comment': "And he hasn't even taken office yet. He is giving us of a trailer of the next four or more years. 😭", 'created': '2024-11-13 05:18:28', 'submission_id': '1gq0hdt'}
{'comment': 'But my eggs and processed food bought in a box has went up in price. America maybe got the President it deserves.', 'created': '2024-11-13 17:30:50', 'submission_id': '1gq0hdt'}
{'comment': 'Why is that? How do other countries keep a stronger middle class?', 'created': '2024-11-13 18:55:51', 'submission_id': '1gq0hdt'}
{'comment': "If you're still in the state you have previously posted, you are in. Your governor is in the process of reallocating funds to private schools from public schools. She is going to take a failing public school system that is already ranked almost last and make it even worse until it truly is last in education. So, I don't think you have to worry about whether they are teaching it now or not.", 'created': '2024-11-13 03:57:24', 'submission_id': '1gq0hdt'}
{'comment': 'His supporters claim he is the best for the economy when he keeps describing tariffs essentially backwards. A less educated population is the only reason his economic proposals were not laughed out of the room, as they should have been.', 'created': '2024-11-13 03:12:30', 'submission_id': '1gq0hdt'}
{'comment': '100% chance that Trump and Vance mock their supporters behind their backs :’) You know they’re all making jokes about how dumb, gullible and uneducated they are.', 'created': '2024-11-13 03:11:33', 'submission_id': '1gq0hdt'}
{'comment': "I know a public school teacher who actually voted for this/him. I wish I was joking. Unfortunately you really can't fix stupid and even many of our teachers are idiots now. It is the blind leading the blind.", 'created': '2024-11-13 13:22:14', 'submission_id': '1gq0hdt'}
{'comment': 'Career suicide for a Dem to defend the Dept of Education? And *literal* suicide? \n\nWhat does any of that mean?', 'created': '2024-11-13 03:32:24', 'submission_id': '1gq0hdt'}
{'comment': 'Right? This is what I’m looking for. I’m way too emotional and over react.', 'created': '2024-11-13 06:11:05', 'submission_id': '1gq0hdt'}
{'comment': "As a single childless man I like having some hope. I'm not holding my breath for anything though. I do not think moderate Republicans would stand up to trump when they've failed to do so so far. I grew up around people who's kids benefitted from free lunch and they would butch about kids getting free lunch and vote against it. I feel like I'm surrounded by those same assholes still.", 'created': '2024-11-13 17:14:54', 'submission_id': '1gq0hdt'}
{'comment': 'That house majority is razor thin, it will only take a holdout or two from a swing district to tank any legislation.', 'created': '2024-11-13 04:20:05', 'submission_id': '1gq0hdt'}
{'comment': "Actually, there are. Dan Crenshaw is unquestionably conservative, but he's proudly non-MAGA and one of the most politically-secure members of the House. He gave Trump the middle finger, easily defended himself against MAGAmaniac primary challengers, and won by \\~30 points last week. He'll support what he likes, oppose what he doesn't, and not even *Trump* can touch him.\n\nDan is **very** non-amused by Trump's military-vandalizing antics, and almost certainly thinks Trump is a Russian asset. You might disagree with 90% of his ideology, but for the next four years, that remaining 10% is going to become *really* important.", 'created': '2024-11-13 04:30:28', 'submission_id': '1gq0hdt'}
{'comment': 'It’s sad that in Trump’s family there is a kid who has a disability and he told the father just let the kid die already.', 'created': '2024-11-13 04:21:06', 'submission_id': '1gq0hdt'}
{'comment': 'Yeah such a horrible disgusting thoughtless self serving person. [Trump Just Let the Kid die already.](https://youtu.be/PmHgSQbOH6I?si=_45f8vnr6BaAg8tF)', 'created': '2024-11-13 17:15:06', 'submission_id': '1gq0hdt'}
{'comment': 'For what it’s worth, I’m very proud of your son! Being an autistic college student is hard but I hope he has the support he needs! The department of education is absolutely critical for him to be successful (and me as a fellow autistic college student)', 'created': '2024-11-13 04:19:43', 'submission_id': '1gq0hdt'}
{'comment': 'Do you need a simple or 60% majority to get rid of filibuster?', 'created': '2024-11-13 15:40:18', 'submission_id': '1gq0hdt'}
{'comment': "Everything he is doing is found in Project 2025 Presidential Transition . It's awful . It's inhumane. They voted for it.", 'created': '2024-11-13 16:41:13', 'submission_id': '1gq0hdt'}
{'comment': "Didn't trump say his supporters looked poor and nasty during Jan 6th?", 'created': '2024-11-13 17:11:46', 'submission_id': '1gq0hdt'}
{'comment': "There's no joe sinema in the gop.", 'created': '2024-11-13 17:16:13', 'submission_id': '1gq0hdt'}
{'comment': 'Your fingers to God’s ears. I hope you’re right.', 'created': '2024-11-13 15:05:33', 'submission_id': '1gq0hdt'}
{'comment': "Do you think he'd vote to save Medicare/aid or doe?", 'created': '2024-11-13 18:54:03', 'submission_id': '1gq0hdt'}
{'comment': '😭💙💙💙💙💙', 'created': '2024-11-13 04:56:54', 'submission_id': '1gq0hdt'}
{'comment': "To get rid of the filibuster, you'd need to change Senate rule 22, which allows for unlimited debate time unless 60 senators vote to end the debate. This is the filibuster.\n\nHowever, debate on changing Senate rules can only be ended if 2/3 of the senators vote to end it, meaning you'd need 66 senators to end a filibuster on whether or not to get rid of the filibuster.\n\nIn theory, there's another way to end the filibuster by going through the process of claiming a Senate rule is being broken and then appealing the decision to force a vote through, which only requires a simple majority, or 51 senators. This strategy was used to end the filibuster for nominations.\n\nSo it depends on what route they take. Eliminating it entirely would require 66 senators whereas picking away at it to remove it on votes one by one would only require 51 senators.", 'created': '2024-11-13 15:48:39', 'submission_id': '1gq0hdt'}
{'comment': "They didn't see it, and they never will. They will be placated and won't care. If anything happens, they won't turn against him because he puts the blame on someone else. I thought Trump would be bad enough, but MAGAs are coming out of the woodwork like bugs. They won't leave us alone.", 'created': '2024-11-15 07:58:13', 'submission_id': '1gq0hdt'}
{'comment': "I don't want to say he wouldn't give Trump a very long leash, and he probably won't commit to unconditionally saving them as they exist today *in advance*... but he's absolutely not going to rubber-stamp any attempt by Musk/Ramaswamy to recklessly slash, burn, and destroy anything.\n\nMy hunch is that over the next few years, he's going to frequently find himself having to be the adult in the room & take positions that are going to piss off everyone on both sides... Democrats, for not opposing Trump's agenda 100%, MAGA, for not supporting Trump's agenda 100%.\n\nHonestly, I think that 12-20 years from now, Dan is going to either be one of the people who manages to save and repair the post-Trump/MAGA Republican Party, or will end up defining the right end of the future Democratic Party with eyes on the White House.", 'created': '2024-11-13 19:45:59', 'submission_id': '1gq0hdt'}
{'comment': 'I’m currently in school training to be a therapist specializing in neurodivergent children so I’m going to be doing my part at least to help kids like him and after seeing the heartbreak of the election, I’m strongly considering getting into local politics so there’s people in the grassroots level supporting people like your son 💙', 'created': '2024-11-13 05:03:12', 'submission_id': '1gq0hdt'}
{'comment': 'Thanks for putting in the work on that', 'created': '2024-11-14 03:39:25', 'submission_id': '1gq0hdt'}
{'comment': 'News article about the nomination:\n\nhttps://www.reuters.com/world/us/trump-says-he-will-nominate-fox-news-host-pete-hegseth-defense-secretary-2024-11-13/', 'created': '2024-11-13 01:23:58', 'submission_id': '1gpzvxi'}
{'comment': 'Phew. I was stressed about my student loans today but I guess I’m just gonna die before I have to pay them off anyways.', 'created': '2024-11-13 01:38:49', 'submission_id': '1gpzvxi'}
{'comment': 'I mean this country elected a convicted game show host as the president so…🤷🏾\u200d♂️', 'created': '2024-11-13 01:41:39', 'submission_id': '1gpzvxi'}
{'comment': 'try to pace yourself because there will be outrageous shit like this every single fucking day', 'created': '2024-11-13 01:46:36', 'submission_id': '1gpzvxi'}
{'comment': 'Some snippets from his Wikipedia, https://en.m.wikipedia.org/wiki/Pete_Hegseth.\n\n>He reportedly persuaded Trump to pardon three American soldiers accused or convicted of war crimes related to the shooting of non-combatants in Iraq. Hegseth, who was a platoon leader at Guantanamo Bay during his military service, defended the treatment of inmates detained there.\n\n>As a Fox News personality, he frequently criticized the media and Democrats. He criticized Special Counsel Robert Mueller’s investigation into Russian interference in the 2016 election. Hegseth has appeared on Fox News Channel, as well as on CNN and MSNBC.\n\n>In August 2019, he lamented that “young kids voting” are worried about the adverse effects of climate change. Hegseth also criticized universities for teaching students about “environmentalism and radical environmentalism” rather than a “real threat” such as Islamic extremism.\n\n>In January 2020, Hegseth expressed strong support for President Trump’s decision to kill Iranian General Qasem Soleimani. He also called on Trump to bomb the Iranian homeland, including cultural sites if they were storing weapons.', 'created': '2024-11-13 01:36:53', 'submission_id': '1gpzvxi'}
{'comment': "I was just at my local dem meeting and a history teacher said this is what 1931 Germany looked like. Im scared. I don't know if we can come back from this.", 'created': '2024-11-13 02:11:08', 'submission_id': '1gpzvxi'}
{'comment': "I literally just said to a friend of mine that I feel like I'm living in Alice in Wonderland. Every single decision makes me feel like I'm losing my mind.", 'created': '2024-11-13 01:42:28', 'submission_id': '1gpzvxi'}
{'comment': 'Well this is gonna end well /s', 'created': '2024-11-13 01:29:58', 'submission_id': '1gpzvxi'}
{'comment': 'The Story of Caligula.\n\n\nTrump: Hold my Beer.', 'created': '2024-11-13 01:44:19', 'submission_id': '1gpzvxi'}
{'comment': 'What in the actual fuck? Have we crossed into the twilight zone or maybe the Matrix? Watch now he’ll appoint election denier Mike Lindell “Mr my pillow” to something like commerce secretary. All the clowns under one roof. This next administration is going to be the longest running “not funny” joke that the world will mock us for the next decade easy.', 'created': '2024-11-13 02:06:33', 'submission_id': '1gpzvxi'}
{'comment': 'So like...the CIA has to do their thing right? This dude is literally a threat to the country and the entire world. How has this madness gone this far', 'created': '2024-11-13 01:45:40', 'submission_id': '1gpzvxi'}
{'comment': 'Hegseth, Rubio, and Gabbard controlling the nuclear weapons.\n\nHey! What could go wrong?', 'created': '2024-11-13 01:33:16', 'submission_id': '1gpzvxi'}
{'comment': 'Well Fox will essentially be State media for the next 4 years. So it makes sense.\n\nThey are the state and the deep state all in one.', 'created': '2024-11-13 01:54:25', 'submission_id': '1gpzvxi'}
{'comment': 'What a shit show this is going to be. Grab some popcorn folks and watch the republicans shit their pants when they start turning on each other and prices go higher which they already are and Social Security and Veterans benefits disappear 🫥 and when they start whinnying I Didn’t Know 🤪 I’m going to laugh my ass off 🤪', 'created': '2024-11-13 02:02:42', 'submission_id': '1gpzvxi'}
{'comment': 'I just made this comment in a very different topic, but here I am needing to say it again mere seconds later.\n\n\nIdiocracy is a fictional story, fictional!!', 'created': '2024-11-13 01:34:33', 'submission_id': '1gpzvxi'}
{'comment': "The best case scenario is that these people eat each other alive. \n\nWhich could well happen given the egos\n\nEdit: We all know what the real best case scenario would be, but I'm not allowed to talk about it because I don't feel like getting banned again", 'created': '2024-11-13 01:52:22', 'submission_id': '1gpzvxi'}
{'comment': '', 'created': '2024-11-13 01:49:09', 'submission_id': '1gpzvxi'}
{'comment': 'Republicans have a well oiled propaganda machine & we’re going to be lucky if we can make it to midterms to vote some of these morons out', 'created': '2024-11-13 01:32:59', 'submission_id': '1gpzvxi'}
{'comment': 'From Wikipedia:."He reportedly persuaded Trump to pardon three American soldiers accused or convicted of war crimes related to the shooting of non-combatants in Iraq. Hegseth, who was a platoon leader at Guantanamo Bay during his military service, defended the treatment of inmates detained there."\n\nI really hate this timeline.', 'created': '2024-11-13 01:56:48', 'submission_id': '1gpzvxi'}
{'comment': "i think the underrated thing is that if trump's second administration doesn't break everything (a big if), people won't care. if prices are down, they won't care about the outside world burning. they won't care if trump and his allies are low key stealing money from the fed. they won't care if maga tries to rig future elections.", 'created': '2024-11-13 02:01:23', 'submission_id': '1gpzvxi'}
{'comment': 'The American military is going to be Russia in 1941 2.0. Trump fires all the competent leaders and we will not be ready for a conflict that is coming. Trust me the Chinese, Iranians and Russians are really going to be laughing their behinds off.', 'created': '2024-11-13 02:12:53', 'submission_id': '1gpzvxi'}
{'comment': "He has dementia and in his head it's just The Apprentice \nWhite House version", 'created': '2024-11-13 02:30:40', 'submission_id': '1gpzvxi'}
{'comment': 'I’m a USAF retired MSgt. I’m willing to bet I have more experience than this fucking guy.', 'created': '2024-11-13 03:03:01', 'submission_id': '1gpzvxi'}
{'comment': 'So the purge of those in the military is starting. He’ll discharge those that would show restraint in dealing with “woke” civilians here at home.', 'created': '2024-11-13 02:11:46', 'submission_id': '1gpzvxi'}
{'comment': "We have to stop this it's insane", 'created': '2024-11-13 02:14:06', 'submission_id': '1gpzvxi'}
{'comment': "This is straight out of Idiocracy. I can't believe this crazy shit is actually happening", 'created': '2024-11-13 02:35:04', 'submission_id': '1gpzvxi'}
{'comment': 'Have I lost my mind ? Am I really in a mental hospital, hallucinating?', 'created': '2024-11-13 02:36:18', 'submission_id': '1gpzvxi'}
{'comment': 'When a clown enters a palace, he does not become a king. The palace becomes a circus.', 'created': '2024-11-13 03:12:13', 'submission_id': '1gpzvxi'}
{'comment': 'Every time I see something about the transition (and I\'ve been trying to avoid), I get mad/upset like I did in 2016. But then I say to myself, "Fuck it. Let them fail." \n\nTheir room temperature IQs and selfishness will only lead to impotent infighting.', 'created': '2024-11-13 02:52:43', 'submission_id': '1gpzvxi'}
{'comment': 'He wanted to pardon war criminals so this is par for the course.', 'created': '2024-11-13 01:42:30', 'submission_id': '1gpzvxi'}
{'comment': 'Proof he prioritizes loyalty over ANYTHING ELSE, including job experience', 'created': '2024-11-13 02:50:38', 'submission_id': '1gpzvxi'}
{'comment': 'This is the craziest episode of Black Mirror I’ve ever lived in!', 'created': '2024-11-13 03:14:01', 'submission_id': '1gpzvxi'}
{'comment': 'Can someone check out some of the republican subs and tell us what they’re saying? I can’t. I just can’t. But I want to know if they’re concerned.', 'created': '2024-11-13 02:06:29', 'submission_id': '1gpzvxi'}
{'comment': 'We should start taking bets on how many people from his cabinet go to prison this go round', 'created': '2024-11-13 02:47:53', 'submission_id': '1gpzvxi'}
{'comment': 'They are trying to run the country into the ground...', 'created': '2024-11-13 02:50:38', 'submission_id': '1gpzvxi'}
{'comment': 'Getting rid of diversity is sure to increase recruitment/s', 'created': '2024-11-13 02:17:50', 'submission_id': '1gpzvxi'}
{'comment': 'The clown bus is filling, with evil clowns', 'created': '2024-11-13 03:12:03', 'submission_id': '1gpzvxi'}
{'comment': "Didn't Huckabee also host a show on Fox lol", 'created': '2024-11-13 01:43:32', 'submission_id': '1gpzvxi'}
{'comment': "But have you seen who he chose for Homeland security? It's like a bad joke, haha", 'created': '2024-11-13 02:09:49', 'submission_id': '1gpzvxi'}
{'comment': 'Is this an inside joke only his supporters are aware of? How can people be okay with this?', 'created': '2024-11-13 02:32:04', 'submission_id': '1gpzvxi'}
{'comment': "Well....that is certainly a choice.\n\nHe's going to have some problems trying to navigate the Pentagon. It is a massive, massive organization that if you don't know what levers do what, would make trying to run the thing very hard. That is not something a junior officer learns during their active duty time generally speaking.\n\nGuess we'll wait to see who he puts in the Deputy Secretary job, because a complete outsider can't run that place without help.", 'created': '2024-11-13 03:12:54', 'submission_id': '1gpzvxi'}
{'comment': 'I’m not saying do what I do, but I’m gonna laugh and tell myself this is fake news and live the rest of my life as if it isn’t true.', 'created': '2024-11-13 01:58:40', 'submission_id': '1gpzvxi'}
{'comment': 'This is *not* an Onion article?', 'created': '2024-11-13 03:15:39', 'submission_id': '1gpzvxi'}
{'comment': 'No way', 'created': '2024-11-13 02:07:53', 'submission_id': '1gpzvxi'}
{'comment': 'Well, didn’t have that one on my bingo card', 'created': '2024-11-13 02:16:49', 'submission_id': '1gpzvxi'}
{'comment': "I wonder what the fee is to join Trump's circus? Obviously they kiss the ring mafia-style (no offense to the mafia, BTW), but what is the join fee? Must be reasonably cheap.", 'created': '2024-11-13 02:54:54', 'submission_id': '1gpzvxi'}
{'comment': 'Lol, i think ive come full circle and now im just cool with it. Fox news in charge of defense. Sure! Why not?! The more stupid it is the more fun it’s gonna be to watch everyone get what they deserve. I cant wait.', 'created': '2024-11-13 02:20:30', 'submission_id': '1gpzvxi'}
{'comment': 'Omg…A Journalist to be Secretary of Defense…JFC…we are doomed.', 'created': '2024-11-13 02:03:59', 'submission_id': '1gpzvxi'}
{'comment': 'It gets better! Just saw that Crumph has created The Department of Government Efficiency to be headed by Musk and Ramaswamy! That’s almost … too efficient', 'created': '2024-11-13 02:18:43', 'submission_id': '1gpzvxi'}
{'comment': 'oh brother... \n\nconfirmed. the goof troop being assembled. this will be a disaster.', 'created': '2024-11-13 02:19:33', 'submission_id': '1gpzvxi'}
{'comment': 'Well, there goes the military', 'created': '2024-11-13 02:50:47', 'submission_id': '1gpzvxi'}
{'comment': 'Yeah. If you don’t vote, alternative reality becomes reality.', 'created': '2024-11-13 07:44:05', 'submission_id': '1gpzvxi'}
{'comment': 'You know what? At this point I’m like “fuck it” let’s let these morons wipe the earth clean and hopefully whatever life forms emerge next will be smarter than us.', 'created': '2024-11-13 01:53:13', 'submission_id': '1gpzvxi'}
{'comment': 'Everyone of his picks will crawl lout of his butt to accept the nomination then crawl right back up until he fires them', 'created': '2024-11-13 01:52:50', 'submission_id': '1gpzvxi'}
{'comment': 'Welcome to the shit show at the fuck factory', 'created': '2024-11-13 02:13:24', 'submission_id': '1gpzvxi'}
{'comment': 'Let’s just say that in this time line, Troy and Abed are wearing paper-cut-out-goatees. \n\nIf you know you know.', 'created': '2024-11-13 03:15:36', 'submission_id': '1gpzvxi'}
{'comment': 'If this is real, then Aliens have to be real. \n\nI, for one, welcome our Alien Overlords. \n\n🤦\u200d♂️', 'created': '2024-11-13 03:41:19', 'submission_id': '1gpzvxi'}
{'comment': 'CNN helped it happen.', 'created': '2024-11-13 03:43:06', 'submission_id': '1gpzvxi'}
{'comment': "No,no,no it's totally legit. The Trump administration took notes from the movie idiocracy. Someone just needs to tell them it's a movie, not a documentary.", 'created': '2024-11-13 03:56:24', 'submission_id': '1gpzvxi'}
{'comment': 'Russia has won the cold war', 'created': '2024-11-13 04:14:48', 'submission_id': '1gpzvxi'}
{'comment': '\n\nIt’s really the darkest timeline.', 'created': '2024-11-13 05:27:47', 'submission_id': '1gpzvxi'}
{'comment': 'Maybe the sitting president will be able to refuse to put the madman in the Oval Office.', 'created': '2024-11-13 09:41:35', 'submission_id': '1gpzvxi'}
{'comment': 'I held hope that the craziness would be less his time. Omg. Also Musk head of new department DOGE', 'created': '2024-11-13 01:51:05', 'submission_id': '1gpzvxi'}
{'comment': 'I wonder how many folks are googling "can I change my vote?".... Buyers remorse setting in yet?', 'created': '2024-11-13 02:10:14', 'submission_id': '1gpzvxi'}
{'comment': "IF Trump doesn't succeed with his fascist agenda, this is gonna be one of the most entertaining presidencies ever!", 'created': '2024-11-13 03:33:11', 'submission_id': '1gpzvxi'}
{'comment': '', 'created': '2024-11-13 02:10:59', 'submission_id': '1gpzvxi'}
{'comment': 'What the fuck?', 'created': '2024-11-13 02:14:16', 'submission_id': '1gpzvxi'}
{'comment': 'screw it, go bomb russia and get ww3 out of the way. lets at least die quick.', 'created': '2024-11-13 02:39:27', 'submission_id': '1gpzvxi'}
{'comment': 'One of the theories is he is picking acceptable fronts for the more problematic people actually coming up with the plans behind the scenes. Though how a Fox news host is the acceptable choice is mind boggling.', 'created': '2024-11-13 02:49:34', 'submission_id': '1gpzvxi'}
{'comment': 'Welcome to 2016, but worse.', 'created': '2024-11-13 03:29:45', 'submission_id': '1gpzvxi'}
{'comment': 'Get used to it, scrote. The next four years are going to be pure Idiocracy', 'created': '2024-11-13 04:00:22', 'submission_id': '1gpzvxi'}
{'comment': "he's straight up electing a celebrity cast. what the fuck.", 'created': '2024-11-13 04:42:10', 'submission_id': '1gpzvxi'}
{'comment': 'It’s like trump has decided to choose all the worst, least-qualified people. I mean, those of us who voted for Harris expected him to choose poorly, but I doubt anyone (or at least few) expected the level of idiocy we’re seeing now.', 'created': '2024-11-13 04:42:14', 'submission_id': '1gpzvxi'}
{'comment': 'No one has the balls to do anything and this is what you get. Good fucking job world', 'created': '2024-11-13 07:00:10', 'submission_id': '1gpzvxi'}
{'comment': 'Hopefully enough Republicans will know that this is a stupid idea.', 'created': '2024-11-13 07:25:45', 'submission_id': '1gpzvxi'}
{'comment': 'Just wait till he reinstates the draft and all of you get z get drafted. Because you can be sure a war is coming with this lineup', 'created': '2024-11-13 08:36:40', 'submission_id': '1gpzvxi'}
{'comment': 'They’re gonna burn the country down. Get ready for it. We will slip into autocracy in the next couple of years. Most voters have no idea what they’ve really done.', 'created': '2024-11-13 12:38:34', 'submission_id': '1gpzvxi'}
{'comment': "He doesn't qualify. Read the requirements. Has to be a civilian for at least 7 years. He is in The Individual Ready Reserves. He still considered active duty and not retired. He could get an exception from Congress. But in the scheme of things there has never been a Major that became a Secretary of Defense they have all been Generals. He doesn't have the experience to do that or run an dept that large.", 'created': '2024-11-13 13:10:21', 'submission_id': '1gpzvxi'}
{'comment': 'Trump is big on nepotism and corruption. He LOVES being surrounded by Yes-men.', 'created': '2024-11-13 14:18:50', 'submission_id': '1gpzvxi'}
{'comment': 'I’m so sorry America, only a little over half of you deserve this.', 'created': '2024-11-13 15:31:01', 'submission_id': '1gpzvxi'}
{'comment': 'Musk paid a little over $115 million just to get a job he made up “Dept of Government Efficiency” & will share with Vivek, who didn’t spend a penny. I’m competent Musk should be in charge of Govt Efficiency after interfering in an election & getting away with it (fight me all you want, paid people to vote & used biggest platform on earth to spread propaganda, lies, & misinformation about election). \n\nWe are in for a huge surprise, it’s only going to keep getting more insane from here. Want to know what happened to the DOJ, Smith, Garland & even Biden that they allowed the person that caused 1/6 to ever be in office again. Jail was the only choice & our current government didn’t protect our democracy, our citizens or our sacred norms. Shame on all of them. As a LGBTQ+ crip, female, who depends on the Social Security I paid into to live on, w numerous preexisting conditions, and barely surviving on Medicare/Medicaid, I’m scared & doing my best to try & not stress over it. Regardless, it sucks & the next 4 years (or many more) are about to be bloody as the Fascist said himself. Who will be monitoring who is here legally & who isn’t? Jack Smith is resigning, DOJ, FBI, & more are all fearing for their livelihood & freedoms but fu*k all of us? Why is it only the idiots for him that scream about taking back our country? Now is when we need patriots who truly believe we need to stop this & take back our Country. I doubt we will see any. Down vote all you want, bookmark this post, & see how right I am. \n\nTrump ABSOLUTELY believes he is immune from any consequences because of SCOTUS ruling that he can’t be prosecuted. Hoping we have patriots that realize he can be removed as President. \n\nhttps://www.theatlantic.com/politics/archive/2024/09/donald-trump-bloody-story/679751/', 'created': '2024-11-13 16:07:08', 'submission_id': '1gpzvxi'}
{'comment': 'fElon and his crooks, wonder what could go wrong', 'created': '2024-11-13 16:53:11', 'submission_id': '1gpzvxi'}
{'comment': 'In this land where nothing matters and anyone can do anything, and not in the “reach for the stars!” way… is there anything wild and crazy (but ethically fine) that we can do to make the most of this shit? Like roasting marshmallows on your burning house. \n\nShould I run for attorney general? I’ve followed a lot of true crime.', 'created': '2024-11-13 02:53:25', 'submission_id': '1gpzvxi'}
{'comment': 'This is the Confederation timeline featured in Picard s2. Enjoy the ride.', 'created': '2024-11-13 02:15:16', 'submission_id': '1gpzvxi'}
{'comment': 'I’m kind of hanging on to the hope that these people are such bumbling, useless, egotistical idiots that they’ll self-destruct.', 'created': '2024-11-13 03:40:05', 'submission_id': '1gpzvxi'}
{'comment': "we aren't the first peasants to have a mad king. \nBut those other mad kings didn't have drone strikes or nuclear weapons.", 'created': '2024-11-13 03:58:41', 'submission_id': '1gpzvxi'}
{'comment': "Unfortunately, it's very real. We have to buckle up for the shitshow that's about to go down.", 'created': '2024-11-13 04:21:06', 'submission_id': '1gpzvxi'}
{'comment': 'We need to outlaw the grand old party... NOW!', 'created': '2024-11-13 04:21:43', 'submission_id': '1gpzvxi'}
{'comment': 'I have not watched news since Tues midnight and I intend to continue this trend the next 4 years. I will find other things to fill my life with from now on, and I consider myself a news junkie so it’s a big sacrifice. We all know it will be a complete clown show and the America. electorate once again needs to learn their lessons the hard way. We are now a white christian fascist nazi-loving republic..I still cannot believe what just happened!', 'created': '2024-11-13 04:47:40', 'submission_id': '1gpzvxi'}
{'comment': 'I don\'t watch the news or anything, so whenever I see a post of a cabinet pick or anything trump does I think to myself "This is a bit right? There\'s no way he\'s THAT stupid." Then I remember that he is and this is something he would do.', 'created': '2024-11-13 06:19:05', 'submission_id': '1gpzvxi'}
{'comment': "Tucker Carlson for Press Secretary! No no, wait. Alex Jones for Press Secretary! I hear he's looking for work. Let's just go full bore batsh-t!", 'created': '2024-11-13 08:06:58', 'submission_id': '1gpzvxi'}
{'comment': 'We are here…\n[Idiocracy](https://youtu.be/OoZ1-xPbNHg?si=Nye_pglQcZhxqKgb)', 'created': '2024-11-13 12:33:33', 'submission_id': '1gpzvxi'}
{'comment': 'Hogan as Attorney General I bet.', 'created': '2024-11-13 12:48:29', 'submission_id': '1gpzvxi'}
{'comment': 'wtf.', 'created': '2024-11-13 14:11:14', 'submission_id': '1gpzvxi'}
{'comment': 'I would honestly not be surprised if Kanye West gets a position at this point.', 'created': '2024-11-13 14:34:54', 'submission_id': '1gpzvxi'}
{'comment': 'He is the reincarnation of Rasputin.', 'created': '2024-11-13 14:40:09', 'submission_id': '1gpzvxi'}
{'comment': 'Lmao @ first I was like.\nWasn’t this mf at the insurrection?\n\nThen I realized what the country will look like in a few months', 'created': '2024-11-13 15:02:47', 'submission_id': '1gpzvxi'}
{'comment': "He's picking people he can control, period.", 'created': '2024-11-13 16:00:49', 'submission_id': '1gpzvxi'}
{'comment': 'The nominee, Pete Hegseth, had specifically labeled liberals as enemies of the country in a book he wrote. And there\'s rumor going around that one of Trump\'s first initiatives will be to issue an executive order to purge top military brass. Hegseth would be the man to enforce that executive order. \n\nTrump moves in and places military leadership in power who are "loyal."\n\nThis is actual, real scary shit.', 'created': '2024-11-13 17:16:56', 'submission_id': '1gpzvxi'}
{'comment': "No, this is the shitshow that we voted for. Now we pay the price.\n\nEdit: 'we' refers to this disappointing country. I certainly did not vote for him.", 'created': '2024-11-13 01:53:04', 'submission_id': '1gpzvxi'}
{'comment': 'This is what we deserve. Reality TV presidency.', 'created': '2024-11-13 03:14:42', 'submission_id': '1gpzvxi'}
{'comment': 'Well at the risk of being downvoted, I feel like most of his picks up to this point have been semi-qualified at least compared to his first administration but uh an army major turned tv host since 2014 for secretary of defense? I don’t know enough about the military but I’m assuming you need a lot more respect and political prowess with military upper brass to do the job. Maybe someone can enlighten me tho.', 'created': '2024-11-13 02:02:16', 'submission_id': '1gpzvxi'}
{'comment': 'Elections have consequences, and we lost.', 'created': '2024-11-13 02:09:12', 'submission_id': '1gpzvxi'}
{'comment': 'Amazing “America will never back down”!\n\nI’m sure there’s no possible way that an adversary could use that bold statement to their tactical advantage \n🤔🤣', 'created': '2024-11-13 01:58:01', 'submission_id': '1gpzvxi'}
{'comment': 'were they seriously not even well-known enough to list the name? Love the shade but I am scared to google it. Don’t tell me who it is I’ll just keep acting like it’s not true. Apparently that’s acceptable behavior now so fuck it', 'created': '2024-11-13 02:18:17', 'submission_id': '1gpzvxi'}
{'comment': 'Ow! My balls!', 'created': '2024-11-13 03:15:26', 'submission_id': '1gpzvxi'}
{'comment': 'Guess you all should have listened to Bernie', 'created': '2024-11-13 03:43:16', 'submission_id': '1gpzvxi'}
{'comment': 'Surprise. I thought it’d be Mike Flynn-or maybe he’s not able with his pardons and all.', 'created': '2024-11-13 03:59:40', 'submission_id': '1gpzvxi'}
{'comment': 'I was wondering if Trump was too far gone, and perhaps his handlers would be able to pressure him into a sane administration. Looks like that\'s a "no", he can still put his foot down and insist on stupid! \n\nWe won\'t need to teach voters that they made a mistake. Trump will teach them that himself, quite painfully but effectively. The trouble will be the Republican plan to Putinize future elections, and that\'s going to be big trouble.', 'created': '2024-11-13 04:00:23', 'submission_id': '1gpzvxi'}
{'comment': 'I am so loving this. The bigger the circus the better. I am going to enjoy the show.', 'created': '2024-11-13 05:47:27', 'submission_id': '1gpzvxi'}
{'comment': 'Are these people stupid? Defense secretary!! Maybe he though it meant actual secretary lol \n\nIm beginning to think these people are dumb as stumps', 'created': '2024-11-13 07:30:00', 'submission_id': '1gpzvxi'}
{'comment': "How crazy is it that Trump thinks none of this is going to effect the rest of the world? \n\nNo one is going to take his Sec of Defense seriously. You do not replace a 4-Star General with a grunt, even with Bronze Stars, who has never managed a multi-billion dollar budget, never learned how to do any of administrative, strategic, or other duties that belong to the highest ranking members of all our military branches, combined. They have trained for decades to get where they are.\n\nThis dude eff'ed off out of the military and became a right-wing talk show host who could only get on television on the weekends.\n\nNow he is somehow considered to be the best candidate for Sec of Defense? \n\nImagine an E-6 telling Generals how to handle the troop movement and how to budget. Those guys are going to chew him up one side and down the other.\n\nNot to mention what kind of a bitch-ass move is it for the guy to accept the position, knowing he isn't qualified to handle it? \n\nNot mentioned here, Trump is also putting together a review board of all Generals to test those who are fit for duty (loyal to him) and those who are not, and they will demote or kick them out of the military if they are deemed unfit.\n\nWho is this board made up of? Anyone Trump wants to put on it.\n\nHe is making his power grab to take the military. Once he has his generals/cronies in place, American Democracy is dead.\n\nThere will not be any coming back from this if he pushes this shit through.", 'created': '2024-11-13 16:03:43', 'submission_id': '1gpzvxi'}
{'comment': 'Democrats who should’ve destroyed Trump in this elect instead screwed us according to exit data. \n\nToo many that were registered didn’t bother showing up to vote and save democracy. \nA record number other Dems switched parties (very little of the same happened on the GOP side), or they actually voted Trump over their\n“economic concerns”and the price of bread, ffs.\n\nTrump won the Blue Wall AND the popular vote. That doesn’t happen without a lot of Dems not participating…or betraying us all voting for Teflon Don.\n\nFollowing any period in America history during widespread economic struggles, and the majority always voted for the candidate they perceive as A) Mirroring the same level of emotional outrage their target group is already internalizing (called “channeling the vibe”) , and B)who comes across as a “change agent”…anyone other than the status quo being blamed for their pain. \n\nThis phenomenon has held true for the last century in America and explains why Obama, a relatively unknown, black, one term senator out performed and was elected following the nation’s housing crisis in 2007, and why Trump, a moronic buffoon who thinks Haitians are dining in cats, was elected this November after a post covid fallout of high inflation and corporate price gouging. \n\nAnd worse, Harris not only failed to unhitch her wagon from the “status quo Joe” but doubled down on her ties to him and his unpopular administration by saying she couldn’t think of a single thing she’d do differently than Biden, which cemented her to Biden in the eyes of voters already blaming him for their cost of living increases (tho unjustified as it may be).', 'created': '2024-11-13 20:31:02', 'submission_id': '1gpzvxi'}
{'comment': 'At the end of his last term he appointed Twitter Troll Rick Grinell to be DNI. What did you think was going to happen here?!', 'created': '2024-11-14 03:40:18', 'submission_id': '1gpzvxi'}
{'comment': 'Great pick! Wouldn’t have expected anything less. Aligns with the lunacy of DJT. 😭', 'created': '2024-11-13 01:51:47', 'submission_id': '1gpzvxi'}
{'comment': 'This apprentice reboot is looking like a good one!', 'created': '2024-11-13 01:52:48', 'submission_id': '1gpzvxi'}
{'comment': "Step 1: Turn off CNN.\nStep 2: Live your life.\n\nYour angst will not change a thing. Stay ready to act when the time comes. He's not even in office. Don't spend 4 years fretting over what might be. For your sanity and ours, please focus on what you can control. The news cycle will be endless.", 'created': '2024-11-13 04:29:06', 'submission_id': '1gpzvxi'}
{'comment': 'The Republican party is just a Clown Car.', 'created': '2024-11-13 22:15:15', 'submission_id': '1gpzvxi'}
{'comment': 'This is what they voted for this. This is the train wreck I made popcorn to watch.', 'created': '2024-11-13 02:14:47', 'submission_id': '1gpzvxi'}
{'comment': 'Well, the guy does have a military service background.', 'created': '2024-11-13 02:15:51', 'submission_id': '1gpzvxi'}
{'comment': "I can't believe all of this is happening again!", 'created': '2024-11-13 02:34:38', 'submission_id': '1gpzvxi'}
{'comment': 'Dammit Kermit', 'created': '2024-11-13 02:46:30', 'submission_id': '1gpzvxi'}
{'comment': "I wonder how the capitol police feel about tRump and republicans? I really want to know. I can't bring myself to think that they are cool with this.", 'created': '2024-11-13 03:13:58', 'submission_id': '1gpzvxi'}
{'comment': "[Here's](https://www.forbes.com/sites/saradorn/2024/11/12/trumps-cabinet-here-are-his-picks-for-key-roles-elon-musk-vivek-ramaswamy-pete-hegseth-and-more/) the full list of revealed cabinet positions.", 'created': '2024-11-13 03:39:00', 'submission_id': '1gpzvxi'}
{'comment': 'This is insane', 'created': '2024-11-13 03:51:46', 'submission_id': '1gpzvxi'}
{'comment': 'https://i.redd.it/82sof3994l0e1.gif', 'created': '2024-11-13 04:02:49', 'submission_id': '1gpzvxi'}
{'comment': 'He hasnt even started.', 'created': '2024-11-13 04:06:16', 'submission_id': '1gpzvxi'}
{'comment': 'Wait until you find out that they have a draft executive order to purge flag officers that aren’t loyal errr I mean “show the requisite leadership qualities.” \n\nBuckle in kids.', 'created': '2024-11-13 04:15:29', 'submission_id': '1gpzvxi'}
{'comment': 'Welcome to the kakistocracy', 'created': '2024-11-13 04:25:47', 'submission_id': '1gpzvxi'}
{'comment': 'Rubio as Secretary of State. I feel like a joke is being played on us.', 'created': '2024-11-13 04:50:35', 'submission_id': '1gpzvxi'}
{'comment': "Not an alternate reality. We're just living through something we could talk about in the abstract but never really thought about what it would be like to witness, the decline and collapse of the United States.", 'created': '2024-11-13 04:55:38', 'submission_id': '1gpzvxi'}
{'comment': "Wtf I'm starting to feel like I'm being punked.", 'created': '2024-11-13 05:03:55', 'submission_id': '1gpzvxi'}
{'comment': 'https://preview.redd.it/4fmcyd7vkl0e1.jpeg?width=665&format=pjpg&auto=webp&s=b3d3a1c300010a1d7065b3e7d2e874f304c8dac0', 'created': '2024-11-13 05:35:58', 'submission_id': '1gpzvxi'}
{'comment': 'For Trump it meant complete loyality to him', 'created': '2024-11-13 05:40:51', 'submission_id': '1gpzvxi'}
{'comment': 'These nominations read like a script for a B (D?) rated West wing spinoff that has no chance of getting past the pilot.', 'created': '2024-11-13 05:44:31', 'submission_id': '1gpzvxi'}
{'comment': 'You are assume indeed', 'created': '2024-11-13 06:47:04', 'submission_id': '1gpzvxi'}
{'comment': 'The positional payoffs are rolling in now for the ones who advanced x45s agenda', 'created': '2024-11-13 09:00:00', 'submission_id': '1gpzvxi'}
{'comment': 'I mean, the guy has a history and a bio. It wasn’t just some random fox news host. This is why people hate the media.', 'created': '2024-11-13 15:41:57', 'submission_id': '1gpzvxi'}
{'comment': 'Fascism much?', 'created': '2024-11-13 18:53:13', 'submission_id': '1gpzvxi'}
{'comment': 'Omg', 'created': '2024-11-13 19:11:30', 'submission_id': '1gpzvxi'}
{'comment': "Other than defense secretary, I haven't been as appalled as I thought I'd be.\n\nHe's mostly tapped CONgresspeople who may be incompetent, but somebody elected.\n\nI am still expecting a bunch of podcast hosts that gave favorable interviews to be running the fcc.", 'created': '2024-11-13 20:06:27', 'submission_id': '1gpzvxi'}
{'comment': 'We need Dark Brandon!', 'created': '2024-11-15 07:47:31', 'submission_id': '1gpzvxi'}
{'comment': 'Also elon to lead efficiency dept. cant believe it.', 'created': '2024-11-13 02:09:15', 'submission_id': '1gpzvxi'}
{'comment': '“The price of eggs is to damn high though!”…', 'created': '2024-11-13 03:53:57', 'submission_id': '1gpzvxi'}
{'comment': 'You should have started a pool. Where people predict how many former and current Fox News hosts would end up in the White House', 'created': '2024-11-13 04:24:49', 'submission_id': '1gpzvxi'}
{'comment': 'does this guy even have any experience with defense or is he just a news host???? someone pinch me please. please don’t be real', 'created': '2024-11-13 05:26:38', 'submission_id': '1gpzvxi'}
{'comment': 'Yes, sadly. 😭\n\nhttps://preview.redd.it/0jgsnfr9jl0e1.jpeg?width=1080&format=pjpg&auto=webp&s=bbb1d9aecce583aed6a2791d3089544acd74a283', 'created': '2024-11-13 05:26:56', 'submission_id': '1gpzvxi'}
{'comment': 'The majority of the American people have spoken. This is what they want. Just let them have it. First Republicans and now Dems have turned our country into a laughingstock. Hate to say it but it’s a “can’t beat ‘em, might as well join ‘em” situation, and all there is to do anymore is laugh. Let the people clown around and meme the world into something as entertaining, short and to-the-point as an Instagram reel. Look into your local communities and reach out, volunteer, help your neighbors when you can. Let the rest of the country giggle themselves into the dumpster as it burns. There’s no saving the country at large. Focus on the people in your community who most need help and offer what little you can. And turn off CNN.', 'created': '2024-11-13 08:20:40', 'submission_id': '1gpzvxi'}
{'comment': 'The circus we brought in by having Biden wait too long to pick a candidate and then picking a candidate who really never was popular until held in contrast to Biden lol', 'created': '2024-11-13 19:01:26', 'submission_id': '1gpzvxi'}
{'comment': 'Why does this feel like Project 2025 in the making?', 'created': '2024-11-13 22:59:20', 'submission_id': '1gpzvxi'}
{'comment': 'Theme song for what is happening and The Clown Car we are about to experience: The Road To Nowhere \nhttps://www.youtube.com/watch?v=LQiOA7euaYA', 'created': '2024-11-13 11:50:02', 'submission_id': '1gpzvxi'}
{'comment': 'The alternate reality is where you think a combat decorated soldier with impeccable academic credentials is unfit to be Secretary of Defense simply because you don’t like him or his politics.\n\nHe has 20+ years of military service (the same Minnesota Army National Guard that Tim Walz served in, if that’s relevant), and has two bronze stars and saw combat in Iraq and Afghanistan. You don’t have to agree with the man’s politics to get that he understands the military.\n\nHe’s also a New York Times #1 bestselling author. Ostensibly all the people who bought the book think he has something worthwhile to say.\n\nAs for those saying he’s stupid because he’s a tv commentator; I would say it’s because he suffered an “education” at Princeton (bachelor’s degree) and was further indoctrinated … um “educated” … at Harvard (master’s degree).\n\nThe circus is the one where you think a very well qualified person is not suited to a job because you disagree with his views.', 'created': '2024-11-14 18:07:58', 'submission_id': '1gpzvxi'}
{'comment': 'Can’t be any worse than the current administration not only doing everything they can to get us into another major war but supporting both sides of it. Then there was the 4 years of attacking warfighters making them worry about pronouns and hurt feelings', 'created': '2024-11-13 03:31:25', 'submission_id': '1gpzvxi'}
{'comment': 'Thanks Biden!', 'created': '2024-11-13 18:36:25', 'submission_id': '1gpzvxi'}
{'comment': '\n\nIt’s happening…', 'created': '2024-11-13 01:41:32', 'submission_id': '1gpzvxi'}
{'comment': 'Well at least he served in the military 🙄🙄', 'created': '2024-11-13 05:12:04', 'submission_id': '1gpzvxi'}
{'comment': 'What a circus', 'created': '2024-11-13 01:39:17', 'submission_id': '1gpzvxi'}
{'comment': 'It makes me want to move to a blue state with a Democrat governor and state legislature.', 'created': '2024-11-13 04:02:23', 'submission_id': '1gpzvxi'}
{'comment': 'Jokes aside, these apes are going so crazy idk if student loans will even be brought up.\n\nJust keep our heads down on this issue.', 'created': '2024-11-13 01:59:53', 'submission_id': '1gpzvxi'}
{'comment': 'Question they’ll at least help us answer is will we die imminently with loans or die an an old person with loans', 'created': '2024-11-13 02:43:43', 'submission_id': '1gpzvxi'}
{'comment': 'Hey but at least eggs will be cheaper /s', 'created': '2024-11-13 05:34:46', 'submission_id': '1gpzvxi'}
{'comment': 'That’s positive thinking right there …', 'created': '2024-11-13 03:16:01', 'submission_id': '1gpzvxi'}
{'comment': 'this wins the day', 'created': '2024-11-13 08:48:20', 'submission_id': '1gpzvxi'}
{'comment': "“Trump also thinks he has the look,” one source said.\n\nHere's to hoping their incompetency results in accomplishing nothing and not getting us all killed.", 'created': '2024-11-13 11:16:20', 'submission_id': '1gpzvxi'}
{'comment': 'Yes, I think that is now the goal unfortunately.', 'created': '2024-11-13 13:19:25', 'submission_id': '1gpzvxi'}
{'comment': 'Yeah, we’ve hit the point of no return.', 'created': '2024-11-13 01:54:08', 'submission_id': '1gpzvxi'}
{'comment': 'Ooooh maybe he can gong people when he fires them from his cabinet. Think of the ratings! The merchandise! They could establish call in voting like American Idol for who gets ousted every week. \nIt’s the last season, might as well go all out/s', 'created': '2024-11-13 02:36:33', 'submission_id': '1gpzvxi'}
{'comment': 'Drug using billionaires and foreign powers thought it was a great idea and the Supreme Court made bribes legal.', 'created': '2024-11-13 02:33:26', 'submission_id': '1gpzvxi'}
{'comment': 'https://preview.redd.it/papdmvduvk0e1.jpeg?width=1024&format=pjpg&auto=webp&s=310383016265b206f37f3ba7dfbf374cfedfa8c9\n\nThis timeline is insanity. The other day I used ChatGPT to make a movie poster for a mashup of the movie Idiocracy and series The Handmaid’s Tale.\n\nWell, Humanity had a good run anyway… it feels like the whole country has a brain worm.', 'created': '2024-11-13 03:20:14', 'submission_id': '1gpzvxi'}
{'comment': 'Yep', 'created': '2024-11-13 01:43:33', 'submission_id': '1gpzvxi'}
{'comment': 'And now no one in the government from his previous shit show will work with him again, so he’s stuck with fucking muskrat, brain worms, and Fox News anchors. Its great', 'created': '2024-11-13 03:37:04', 'submission_id': '1gpzvxi'}
{'comment': 'I don’t recall a jury of his peers ever find him guilty of being a game show host. Or is that one of those things he has to be impeached by congress for first.', 'created': '2024-11-13 03:43:11', 'submission_id': '1gpzvxi'}
{'comment': 'Twice.', 'created': '2024-11-13 04:36:54', 'submission_id': '1gpzvxi'}
{'comment': 'And I propose [this as our new National Anthem](https://www.youtube.com/watch?v=L6UwR1zhVSs)! Or at least the new "Hail to the Chief!"', 'created': '2024-11-13 12:59:05', 'submission_id': '1gpzvxi'}
{'comment': 'I know …I’m trying to not watch the news that much right now ….', 'created': '2024-11-13 01:57:39', 'submission_id': '1gpzvxi'}
{'comment': 'This has been the longest 12 years.\n\nIt’s crazy to think we’re only in year 8.', 'created': '2024-11-13 02:48:35', 'submission_id': '1gpzvxi'}
{'comment': 'The shit train has no brakes', 'created': '2024-11-13 02:02:47', 'submission_id': '1gpzvxi'}
{'comment': "I feel like someone needs to write up a Wikipedia page that just lists out shit Trump does every day. Day by day. That way we won't need to follow the news and all it's analysis to know who is screwed each moment.", 'created': '2024-11-13 12:08:55', 'submission_id': '1gpzvxi'}
{'comment': "At this point I just shrug because it's all so expected.", 'created': '2024-11-13 16:52:19', 'submission_id': '1gpzvxi'}
{'comment': 'Cool…cool cool.', 'created': '2024-11-13 02:21:31', 'submission_id': '1gpzvxi'}
{'comment': 'Well, we know why he was chosen. I’m sure he’ll do \\*just\\* fine at the job. 🙄\n\nAdditionally, when the “efficiency expert“ starts slashing government programs, Fearless Leader’s supporters are going to quickly find out how just how much the government does \\*right.\\* Most things that people are unaware of.\n\nI have to say, I’m not looking forward to bribing the clerk at the DMV the next time I need my license or plates renewed. I’m also not looking forward to having to stand in line for everything.', 'created': '2024-11-13 12:32:30', 'submission_id': '1gpzvxi'}
{'comment': "Hey, Germany is doing great now! It only took a fascist regime, millions of deaths, and the largest war ever fought on earth, plus like 50 years of an insane global conflict (and even MORE deaths!) for them to get back on track. We'll be fine!", 'created': '2024-11-13 02:30:56', 'submission_id': '1gpzvxi'}
{'comment': 'I’m scared also …..it’s a nightmare', 'created': '2024-11-13 02:13:05', 'submission_id': '1gpzvxi'}
{'comment': "A year ago or so, I read that there will never be the political situation again to form a band like Rammstein (all of them grew up in East Germany and later were all in East Berlin in various bands togethers). And this was after spending a significant time reading about early WWII and the political setups leading to it. Biden brought us the Weimar Republic, now we're about to go into the 1930s for sure.", 'created': '2024-11-13 12:33:22', 'submission_id': '1gpzvxi'}
{'comment': 'Just wait for the Department of Government Efficiency.. a whole new department, for efficiency, no less!!\n\nI’m sure all the other departments are going to love being told how to do their jobs, with less staff on less pay.', 'created': '2024-11-13 02:01:48', 'submission_id': '1gpzvxi'}
{'comment': 'Well my sister works as a ranger here in the north Georgia mountains and she has been told to anticipate losing her job and the possible full dismantling of the US forest service. So there’s a heads up on at least one up-and-coming daily disaster for ya.', 'created': '2024-11-13 02:15:09', 'submission_id': '1gpzvxi'}
{'comment': 'I know it’s crazy and getting worse by the day', 'created': '2024-11-13 01:44:18', 'submission_id': '1gpzvxi'}
{'comment': '', 'created': '2024-11-13 01:53:08', 'submission_id': '1gpzvxi'}
{'comment': 'I literally feel like I’m in Aladdin when Jaffa takes over the castle and changes everything lol', 'created': '2024-11-13 02:27:01', 'submission_id': '1gpzvxi'}
{'comment': 'Time to celebrate un-birthdays!', 'created': '2024-11-13 01:54:33', 'submission_id': '1gpzvxi'}
{'comment': 'I told my husband that I feel like we are no longer in the “before times”, but “the after”.', 'created': '2024-11-13 03:24:17', 'submission_id': '1gpzvxi'}
{'comment': "This one is beyond me. Department of Defence, that's where you believe woke culture needs to be rooted out? This guy has no idea what he's walking into. These people have spent their lives in miltary service and you think this fox news host is going to tell even a 2 star general what to do? This guy is going to piss his pants once he truly sees the responsibility and the military brass around him.", 'created': '2024-11-13 05:42:34', 'submission_id': '1gpzvxi'}
{'comment': 'It’s unbelievable', 'created': '2024-11-13 01:30:16', 'submission_id': '1gpzvxi'}
{'comment': 'I predict this guy will last 2 maybe 3 scaramuccis.', 'created': '2024-11-13 05:44:01', 'submission_id': '1gpzvxi'}
{'comment': 'A horse is looking really good right now', 'created': '2024-11-13 02:03:37', 'submission_id': '1gpzvxi'}
{'comment': 'I used to think stories about caligula and Nero were apocrophal but Trump being what he is makes it seem all too possible all the horror stories are true.', 'created': '2024-11-13 02:56:18', 'submission_id': '1gpzvxi'}
{'comment': 'I keep thinking this is a nightmare we all will wake up from …..unfortunately it’s not', 'created': '2024-11-13 02:10:52', 'submission_id': '1gpzvxi'}
{'comment': 'I guess eggs being expensive was the tip of the iceberg for 74 million Americans', 'created': '2024-11-13 01:46:39', 'submission_id': '1gpzvxi'}
{'comment': 'Seriously. This proves the JFK assassination was not CIA in my mind. Why would they kill him and not he who shall not be named', 'created': '2024-11-13 02:23:27', 'submission_id': '1gpzvxi'}
{'comment': 'They tried but their fall guy didn’t hit his shots', 'created': '2024-11-13 01:58:05', 'submission_id': '1gpzvxi'}
{'comment': 'I keep hoping the CIA shows up. I always thought they the real ones running things. I guess not.', 'created': '2024-11-13 02:56:17', 'submission_id': '1gpzvxi'}
{'comment': 'Why would the CIA care? This guy is going to let them do whatever they want.', 'created': '2024-11-13 05:58:10', 'submission_id': '1gpzvxi'}
{'comment': "If by CIA you mean the Trump donor who gives him the money for it, then yes, we'll be fine! \n\nWhy does the room smell like singed dog fur?", 'created': '2024-11-13 12:36:30', 'submission_id': '1gpzvxi'}
{'comment': 'The CIA is getting a new head, just like everyone else. I hope to God some of the rank-and-file still believe in the constitution.', 'created': '2024-11-13 12:41:30', 'submission_id': '1gpzvxi'}
{'comment': 'You would call on a federal government agency to execute an American citizen without due process, wtf is wrong with you? It is absolutely stupid shit like this that makes them think their new “Doge” department makes sense.', 'created': '2024-11-14 19:32:20', 'submission_id': '1gpzvxi'}
{'comment': 'Nah, we have to do the lawful thing and hand the keys to the kingdom over to the convicted felon', 'created': '2024-11-13 04:34:46', 'submission_id': '1gpzvxi'}
{'comment': 'Hillary suggested that Gabbard is a Russian asset, that they groomed her. So just fucking great.', 'created': '2024-11-13 02:33:41', 'submission_id': '1gpzvxi'}
{'comment': 'Circus of clowns', 'created': '2024-11-13 01:34:55', 'submission_id': '1gpzvxi'}
{'comment': 'Alina Habba as press secretary', 'created': '2024-11-13 01:40:42', 'submission_id': '1gpzvxi'}
{'comment': 'RIP World', 'created': '2024-11-13 01:39:59', 'submission_id': '1gpzvxi'}
{'comment': 'Honestly maybe the one person worse for Defense Secretary would be Gabbard, since she’s a literal Russian and Syrian asset. But Hegseth is absolutely confounding.\xa0', 'created': '2024-11-13 02:16:28', 'submission_id': '1gpzvxi'}
{'comment': "The end of all life on Earth. That's all.", 'created': '2024-11-13 01:50:46', 'submission_id': '1gpzvxi'}
{'comment': 'Day one they’ll drop one on Iran.', 'created': '2024-11-13 03:04:30', 'submission_id': '1gpzvxi'}
{'comment': 'All media will be State media.', 'created': '2024-11-13 02:53:30', 'submission_id': '1gpzvxi'}
{'comment': 'Yep ! It will absolute chaos the next 4 years …..popcorn anyone ?', 'created': '2024-11-13 02:07:54', 'submission_id': '1gpzvxi'}
{'comment': "How many people get charged with a crime or go to jail this go around. 11 people last time with many serving jail time, Bannon , Cohen, Maniford, Flynn, Gates, Nader etc. \n\nI'm going to guess over 15 this time.", 'created': '2024-11-13 05:49:23', 'submission_id': '1gpzvxi'}
{'comment': None, 'created': '2024-11-13 01:37:43', 'submission_id': '1gpzvxi'}
{'comment': 'In the film, they find the smartest person on the planet to fix everything.\n\nThis is why Idiocracy is still a fictional story.', 'created': '2024-11-13 02:05:05', 'submission_id': '1gpzvxi'}
{'comment': "It's been a tradition for me the last several presidential elections to put Idiocracy on continuous play on Election Day. Anyone needing an explanation why, or why every election no matter who wins or loses needs to take a really good look around at what's going on. This is not solely a Trump situation is my point. Although he does bring the clown to the shit show.", 'created': '2024-11-13 02:01:39', 'submission_id': '1gpzvxi'}
{'comment': 'Insane !', 'created': '2024-11-13 01:35:07', 'submission_id': '1gpzvxi'}
{'comment': 'Trump is a lame duck on day 101 of his presidency and we’ll get to enjoy the most epic power struggle over the MAGA movement mantle. Will Democrats be able to capitalize or will they waste time on superficialities?\xa0', 'created': '2024-11-13 06:59:13', 'submission_id': '1gpzvxi'}
{'comment': 'It’s crazy …..our country is in Trouble', 'created': '2024-11-13 01:33:42', 'submission_id': '1gpzvxi'}
{'comment': 'If our vote ever matters again. They have been getting advice from Victor Orban.', 'created': '2024-11-13 02:15:13', 'submission_id': '1gpzvxi'}
{'comment': 'What midterms? Dictators for a day never need elections again!', 'created': '2024-11-13 12:48:14', 'submission_id': '1gpzvxi'}
{'comment': 'He’s following the Herbert Hoover blueprint for presidency down to a “T.” \n\nBe careful with your money.', 'created': '2024-11-13 02:13:49', 'submission_id': '1gpzvxi'}
{'comment': 'The Russian Way. Apathy', 'created': '2024-11-13 02:31:48', 'submission_id': '1gpzvxi'}
{'comment': 'Foundation of Geopolitics, baby! Been a game plan since 1997.', 'created': '2024-11-13 03:01:03', 'submission_id': '1gpzvxi'}
{'comment': 'Yes. This is what I’m afraid of.', 'created': '2024-11-13 08:58:27', 'submission_id': '1gpzvxi'}
{'comment': 'Part 2. Part 1 was 2017-2021.', 'created': '2024-11-13 03:07:07', 'submission_id': '1gpzvxi'}
{'comment': 'Yep !', 'created': '2024-11-13 03:07:41', 'submission_id': '1gpzvxi'}
{'comment': 'Hell, Gov Walz has more experience than this guy!', 'created': '2024-11-13 12:52:44', 'submission_id': '1gpzvxi'}
{'comment': 'Yep I heard this today', 'created': '2024-11-13 02:12:23', 'submission_id': '1gpzvxi'}
{'comment': 'Yes. Sooner rather later.', 'created': '2024-11-13 11:54:53', 'submission_id': '1gpzvxi'}
{'comment': "You aren't hallucinating, but America is basically a mental hospital now.", 'created': '2024-11-13 03:04:06', 'submission_id': '1gpzvxi'}
{'comment': 'It does!', 'created': '2024-11-13 03:21:25', 'submission_id': '1gpzvxi'}
{'comment': 'Me to ! I’m really not watching the news these days', 'created': '2024-11-13 02:59:07', 'submission_id': '1gpzvxi'}
{'comment': "More or less my thought this time around. They wanted this, they're about to get the fuck show that will ensue. We've been telling them so since 2015 and they won't listen until their favorite government service gets yanked away from them. While we may suffer, his supporters will suffer too.", 'created': '2024-11-13 12:56:46', 'submission_id': '1gpzvxi'}
{'comment': 'I went on Fox News and literally everyone on there was congratulating this guy and saying how proud they were of him …..I could not even comment to any of them', 'created': '2024-11-13 02:09:01', 'submission_id': '1gpzvxi'}
{'comment': '0.. the system is rigged.', 'created': '2024-11-13 02:49:56', 'submission_id': '1gpzvxi'}
{'comment': 'A huge circus', 'created': '2024-11-13 03:21:39', 'submission_id': '1gpzvxi'}
{'comment': 'Yes, the dog killer from South Dakota. Who feels safer now?', 'created': '2024-11-13 02:47:43', 'submission_id': '1gpzvxi'}
{'comment': 'They don’t care …..he could have hired Ronald McDonald and they would be cheering', 'created': '2024-11-13 02:32:57', 'submission_id': '1gpzvxi'}
{'comment': "Sadly, this just means they'll fire anyone who gets in their way.", 'created': '2024-11-13 04:58:20', 'submission_id': '1gpzvxi'}
{'comment': 'Nope', 'created': '2024-11-13 03:19:46', 'submission_id': '1gpzvxi'}
{'comment': 'Way', 'created': '2024-11-13 02:10:09', 'submission_id': '1gpzvxi'}
{'comment': 'Me neither', 'created': '2024-11-13 02:24:27', 'submission_id': '1gpzvxi'}
{'comment': 'Being loyal to him', 'created': '2024-11-13 02:57:55', 'submission_id': '1gpzvxi'}
{'comment': 'Yep I just seen that also ….wow , billionaires running our country literally now …..this is what Americans wanted ?????', 'created': '2024-11-13 02:23:17', 'submission_id': '1gpzvxi'}
{'comment': 'This will teach all the non voters', 'created': '2024-11-13 11:06:23', 'submission_id': '1gpzvxi'}
{'comment': 'Must be nice being a part of a group that isn’t on the MAGA removal/making your life illegal list…', 'created': '2024-11-13 01:55:40', 'submission_id': '1gpzvxi'}
{'comment': 'Yep and Trump will humiliate each and everyone of them when he fires them …..', 'created': '2024-11-13 01:53:53', 'submission_id': '1gpzvxi'}
{'comment': "Why can people not think for themselves?\xa0 I mean if we are at that stage of ignorance and laziness that we can't even research facts....then we deserve to end", 'created': '2024-11-13 08:45:05', 'submission_id': '1gpzvxi'}
{'comment': 'No they are still in their honeymoon period …', 'created': '2024-11-13 02:14:31', 'submission_id': '1gpzvxi'}
{'comment': 'I got popcorn !', 'created': '2024-11-13 03:36:36', 'submission_id': '1gpzvxi'}
{'comment': 'Yep so scary', 'created': '2024-11-13 03:33:49', 'submission_id': '1gpzvxi'}
{'comment': 'No sensible Rep is going to go for this, they know that this position is the most important one for the safety and security of the world\xa0', 'created': '2024-11-13 08:40:03', 'submission_id': '1gpzvxi'}
{'comment': 'Worst than 2016', 'created': '2024-11-13 04:45:17', 'submission_id': '1gpzvxi'}
{'comment': 'It’s insane', 'created': '2024-11-13 04:44:18', 'submission_id': '1gpzvxi'}
{'comment': 'Nah , they care about power', 'created': '2024-11-13 11:07:44', 'submission_id': '1gpzvxi'}
{'comment': 'Very true', 'created': '2024-11-13 11:04:30', 'submission_id': '1gpzvxi'}
{'comment': 'Thank you but more than that deserve it. A third voted for Trump a third voted for Harris and a third didn’t vote at all.', 'created': '2024-11-13 17:47:55', 'submission_id': '1gpzvxi'}
{'comment': 'Yep', 'created': '2024-11-13 15:45:18', 'submission_id': '1gpzvxi'}
{'comment': 'No joke !', 'created': '2024-11-13 02:58:17', 'submission_id': '1gpzvxi'}
{'comment': 'With popcorn', 'created': '2024-11-13 02:24:56', 'submission_id': '1gpzvxi'}
{'comment': 'Or Trump will just fire them', 'created': '2024-11-13 03:49:07', 'submission_id': '1gpzvxi'}
{'comment': 'The problem is this is the most powerful position it controls where and when we use the military,it controls the narrative on escalation and nukes\xa0', 'created': '2024-11-13 08:47:29', 'submission_id': '1gpzvxi'}
{'comment': 'Make sure you have enough information resources to know when they are coming to knock on your door. 🚪✊🏼', 'created': '2024-11-13 06:20:05', 'submission_id': '1gpzvxi'}
{'comment': 'Insane !!', 'created': '2024-11-13 11:06:00', 'submission_id': '1gpzvxi'}
{'comment': 'Or Kari lake', 'created': '2024-11-13 13:08:25', 'submission_id': '1gpzvxi'}
{'comment': 'Or Kari lake', 'created': '2024-11-13 14:39:03', 'submission_id': '1gpzvxi'}
{'comment': 'Unfortunately', 'created': '2024-11-13 15:47:17', 'submission_id': '1gpzvxi'}
{'comment': 'Most of us knew the shit was scaring for a long time', 'created': '2024-11-13 17:44:46', 'submission_id': '1gpzvxi'}
{'comment': 'Speak for yourself. I didn’t vote for him.', 'created': '2024-11-13 02:11:41', 'submission_id': '1gpzvxi'}
{'comment': 'Who is we?', 'created': '2024-11-13 01:55:49', 'submission_id': '1gpzvxi'}
{'comment': 'Yep', 'created': '2024-11-13 03:20:09', 'submission_id': '1gpzvxi'}
{'comment': 'Yeah like Rubio sucks and is a sycophant but we honestly could do a lot worse at the State Department, this one is just actually fucking insane.\xa0', 'created': '2024-11-13 02:18:33', 'submission_id': '1gpzvxi'}
{'comment': 'Very true', 'created': '2024-11-13 02:09:26', 'submission_id': '1gpzvxi'}
{'comment': 'Is it just me or should they run that one past the department of government efficiency first? 😬🥳', 'created': '2024-11-13 02:06:06', 'submission_id': '1gpzvxi'}
{'comment': 'Pete fucking Hegseth. Lord, I hate it here', 'created': '2024-11-13 02:58:36', 'submission_id': '1gpzvxi'}
{'comment': 'lol', 'created': '2024-11-13 03:20:01', 'submission_id': '1gpzvxi'}
{'comment': 'Flynn might become district attorney….who knows with Trump', 'created': '2024-11-13 04:01:17', 'submission_id': '1gpzvxi'}
{'comment': 'It’s scary', 'created': '2024-11-13 01:53:23', 'submission_id': '1gpzvxi'}
{'comment': 'Yep', 'created': '2024-11-13 02:06:05', 'submission_id': '1gpzvxi'}
{'comment': 'What happened in Nazi Germany was a slow escalation of terrors. Nobody thought it could get much worse. And it did, day after day, year after year until 6 million Jews were killed. Trump had better never put his hand on a bible to be sworn in. If the Germans had had the technology that we have now, it would’ve been a lot more than 6 million Jews.', 'created': '2024-11-13 06:23:15', 'submission_id': '1gpzvxi'}
{'comment': 'A reservist. I would prefer a general..', 'created': '2024-11-13 02:51:08', 'submission_id': '1gpzvxi'}
{'comment': None, 'created': '2024-11-13 03:20:32', 'submission_id': '1gpzvxi'}
{'comment': 'At least he has political experience and a law degree...', 'created': '2024-11-13 06:44:10', 'submission_id': '1gpzvxi'}
{'comment': 'The right bet on elections. We do not.', 'created': '2024-11-13 04:55:34', 'submission_id': '1gpzvxi'}
{'comment': 'It’s easy to judge when YOUR party doesn’t have the power …..come January it’s all on YOU and YOUR party …for what is going on in this world , Biden had done an INCREDIBLE job keeping our troops out of harms way for what he has been dealt internationally ….you think it’s bad now ? Wait until Trump let’s Putin take over Ukraine then Europe as a whole …..wanna come back to this comment in about 6-8 months from now ????', 'created': '2024-11-13 03:39:13', 'submission_id': '1gpzvxi'}
{'comment': 'I actually think the Idiocracy reality might actually be better for us.', 'created': '2024-11-13 03:09:43', 'submission_id': '1gpzvxi'}
{'comment': 'My husband says this too. 😞', 'created': '2024-11-13 14:23:49', 'submission_id': '1gpzvxi'}
{'comment': 'Are we sure? /s', 'created': '2024-11-13 13:09:01', 'submission_id': '1gpzvxi'}
{'comment': 'You misspelled shitshow.', 'created': '2024-11-13 01:59:38', 'submission_id': '1gpzvxi'}
{'comment': 'It’s a circus in a shit show in a hurricane. It will be a nightmarish four years.', 'created': '2024-11-13 02:01:25', 'submission_id': '1gpzvxi'}
{'comment': 'Don’t insult a circus\n\n\n\nAt least they’re fun and exciting. More like a horror film-', 'created': '2024-11-13 11:12:17', 'submission_id': '1gpzvxi'}
{'comment': 'Dumpster fire', 'created': '2024-11-13 05:05:37', 'submission_id': '1gpzvxi'}
{'comment': 'I’m so glad I live in California and even I am terrified. This is INSANITY. These people are so gross.', 'created': '2024-11-13 05:43:04', 'submission_id': '1gpzvxi'}
{'comment': "I think we're going to see a lot more polarization in America. With Trump planning to throw every issue he can to the states as a form of softly banning stuff, we're going to more and more see two different versions of the country: the red version where all civil rights are gone, and the blue version where everything is basically the status quo it was before Trump was elected.\n\nI'm scared for all the people who live in those red states and don't deserve to have their rights trampled on.", 'created': '2024-11-13 08:00:33', 'submission_id': '1gpzvxi'}
{'comment': 'That’s my hope as well', 'created': '2024-11-13 02:15:15', 'submission_id': '1gpzvxi'}
{'comment': 'Probably die with some resurrected infectious disease because all the vaccines have been banned.', 'created': '2024-11-13 04:03:46', 'submission_id': '1gpzvxi'}
{'comment': 'Unfortunately I think he is gonna be smarter this time and just appoint yes men. I pray that I am wrong.', 'created': '2024-11-13 03:13:15', 'submission_id': '1gpzvxi'}
{'comment': 'Ya, the supreme court is getting their cut. Right in front of our fucking faces. They have no shame.', 'created': '2024-11-13 03:11:56', 'submission_id': '1gpzvxi'}
{'comment': 'Our poor children…', 'created': '2024-11-13 04:05:39', 'submission_id': '1gpzvxi'}
{'comment': "I'd watch this.", 'created': '2024-11-13 05:17:19', 'submission_id': '1gpzvxi'}
{'comment': 'D O O R', 'created': '2024-11-13 04:12:12', 'submission_id': '1gpzvxi'}
{'comment': 'America is 4% or so of the world pop\n\n\nHumanity still has plenty of chances\xa0', 'created': '2024-11-16 03:26:09', 'submission_id': '1gpzvxi'}
{'comment': 'If I watch the news I get anxious. If I don’t watch the news I’m anxious about what crazy thing is happening that I don’t know about that might get my family killed, get me laid off, or will otherwise ruin my entire life. \n\nI came down with COVID right after the election and was off work and found out that CBD and video games only work for so long. Eventually I have to go back to the real world where everything is awful. I come out of my hibernation and everyone is saying “Your body, my choice” and telling black people they’re slaves again. Shit is wild out there rn. And now the crazy Trump news stories are going into full effect, just like the media hoped for. Why is he not dead yet??', 'created': '2024-11-13 06:14:27', 'submission_id': '1gpzvxi'}
{'comment': "i mean at this point i know shits bad i dont need the news to tell me each new pit of dispair we're descending into. \n\ni never want to hear this man speak again so i'd rather remain ignorant than see his gross face and hear his gross voice. \n\nmy anger is unmatched but i'm also just grossed out by him as a human. hes greasy and and looks like he smells.", 'created': '2024-11-13 06:36:52', 'submission_id': '1gpzvxi'}
{'comment': 'this is a great idea. i was thinking of a site called the daily liar (not wire) and you could pick one lie per day from trump and explain why it’s a lie. if anyone wants to take that idea and run with it you do so with my blessing', 'created': '2024-11-13 12:16:44', 'submission_id': '1gpzvxi'}
{'comment': 'Love the optimism! \n\n/s', 'created': '2024-11-13 02:32:00', 'submission_id': '1gpzvxi'}
{'comment': 'Yeah but they didn’t really have unlimited nukes then. It’ll be over more quickly this time around', 'created': '2024-11-13 05:34:43', 'submission_id': '1gpzvxi'}
{'comment': 'Who fought to end that fascist regime in Germany? Oh that’s right, soldiers like Hegseth.', 'created': '2024-11-14 18:23:39', 'submission_id': '1gpzvxi'}
{'comment': 'Joe VonBidenberg', 'created': '2024-11-13 15:06:38', 'submission_id': '1gpzvxi'}
{'comment': 'BBC is now reporting that its Musk and Ramaswamy to head up the DOGE. \n\nhttps://www.bbc.com/news/live/cnvjr42yq39t?post=asset%3A369067b2-9e70-4c54-9e0b-9ce70b851537#post', 'created': '2024-11-13 02:27:08', 'submission_id': '1gpzvxi'}
{'comment': 'Department of "give yourself all the government contracts"', 'created': '2024-11-13 03:12:22', 'submission_id': '1gpzvxi'}
{'comment': 'Elon is an expert in efficiency the way that it will work in a Trump world, just apply the twitter approach to US government, and everything will be fine!\n\n \nstep 1: stop paying government debts so that no one will spend money on us\n\nstep 2: Dismantle federal agencies and fire entire departments at random.\n\nstep 3: Pass the buck to the plebs by take any title that suggests authority and expertise, and just give it to whoever wants to pay for it. Want to be an FBI agent? CIA? DEA? ATF? Treasury Agent? US Marshall? Secret Service? All of these badges and more can be your for a monthly fee!', 'created': '2024-11-13 04:37:26', 'submission_id': '1gpzvxi'}
{'comment': 'Its called the IG and Trump undercut it every chance he got', 'created': '2024-11-13 02:48:10', 'submission_id': '1gpzvxi'}
{'comment': 'But have you seen the price of D.O.G.E. lately? 🤪', 'created': '2024-11-13 02:15:08', 'submission_id': '1gpzvxi'}
{'comment': "He probably offered him Space Force first and he was like, *Nahhhhh I've already got my own. I want to break stuff*.", 'created': '2024-11-13 05:18:59', 'submission_id': '1gpzvxi'}
{'comment': 'That sounds like something straight it off 1984.\n\n(George Orwell).', 'created': '2024-11-13 06:43:44', 'submission_id': '1gpzvxi'}
{'comment': 'And the Ministry of Truth!', 'created': '2024-11-13 06:14:12', 'submission_id': '1gpzvxi'}
{'comment': 'That literally sounds like something out of 1984. We are so fucked.', 'created': '2024-11-13 06:57:57', 'submission_id': '1gpzvxi'}
{'comment': 'I cannot freaking believe they named it DOGE. 😑', 'created': '2024-11-13 14:43:34', 'submission_id': '1gpzvxi'}
{'comment': 'DOGE\n\n', 'created': '2024-11-13 05:20:44', 'submission_id': '1gpzvxi'}
{'comment': 'FOIA will make this horrible', 'created': '2024-11-13 08:54:54', 'submission_id': '1gpzvxi'}
{'comment': "Oh dear gods I just heard this on NPR, so it's actually effing real. Same with the Fox news anchor as defense secretary. \n\n*headdesk*\n\nSo, how, where, and when is anyone making Radio Free America? I feel we're gonna need it.", 'created': '2024-11-13 12:21:48', 'submission_id': '1gpzvxi'}
{'comment': 'wonder if that comes with a 70mil paycheck too..', 'created': '2024-11-13 15:50:59', 'submission_id': '1gpzvxi'}
{'comment': 'I see them cutting staff for sure; why do you think wages will fall?', 'created': '2024-11-14 19:05:35', 'submission_id': '1gpzvxi'}
{'comment': "Which would be an epic disaster for the rural West were Forest Service jobs and contracts are a source of stable, regular, income that local residents working at resource extraction or tourism can't rely on. Without forest service campgrounds in operation tourist dollars go bye-bye also. We have counties in California were most of the GDP comes directly from State or Federal coffers: Forest Service, National Parks, Medicare, Social Security, education, and road work. Without those dollars they're sunk.", 'created': '2024-11-13 02:32:38', 'submission_id': '1gpzvxi'}
{'comment': 'I work for the gov also. I’m not a supporter so I’m assuming I’m\ngone also. WTH.', 'created': '2024-11-13 02:58:51', 'submission_id': '1gpzvxi'}
{'comment': 'My nephew lost his forestry job when trump shut down the government. It’s coming.', 'created': '2024-11-13 04:08:53', 'submission_id': '1gpzvxi'}
{'comment': 'Let the free market hand forest fires! Invest in rakes now!', 'created': '2024-11-13 03:22:36', 'submission_id': '1gpzvxi'}
{'comment': "And to think that educated, seemingly intelligent people believe this is okay? \n\nLike if it was just those Americans who didn't have the advantage of decent schooling who figure the president alone controls grocery prices, and who believe in crazy conspiracies -- that would make a certain amount of sense. After all, the reason we educate people is so that they *don't* make these intellectual errors!\n\nBut when I think of college (and beyond) graduates in my life who had no problem with putting an ignorant maniac and his circus performers in charge of our country...it's very hard not to despair.", 'created': '2024-11-13 02:14:48', 'submission_id': '1gpzvxi'}
{'comment': 'Is it bleach? It’s bleach, isn’t it.', 'created': '2024-11-13 02:47:14', 'submission_id': '1gpzvxi'}
{'comment': 'A very happy Un-birthday to you', 'created': '2024-11-13 02:47:44', 'submission_id': '1gpzvxi'}
{'comment': 'Illogical indeed … you do realize this guy’s a combat veteran with tours to Iraq and Afghanistan. He’s got a combat infantry badge and two bronze stars. I’m pretty confident it doesn’t matter who is in the room, he’s not likely to get super intimidated.\n\nHe’s also got a bachelor’s degree from Princeton and a master’s degree from Harvard, so I doubt he’s going to be overawed by the academicians who think they’re somehow more intelligent.\n\nYou don’t have to like the dude, you don’t have to like his beliefs, but it is a mistake to dismiss him as “just” a tv personality.', 'created': '2024-11-14 19:27:37', 'submission_id': '1gpzvxi'}
{'comment': "Completely agreed. I honestly didn't believe it until I now have heard it on NPR, Reuters, and DW news on my phone.", 'created': '2024-11-13 12:30:29', 'submission_id': '1gpzvxi'}
{'comment': 'Make it a giant hollow cross', 'created': '2024-11-13 06:35:37', 'submission_id': '1gpzvxi'}
{'comment': 'Did you see the coverage of how Putin is already manipulating him? It’s not being covered by any major news network but Putin plainly said that Donald owes them for their assistance in winning him the election. Not shitting you. Check this out from an actual independent news source. \n\nhttps://youtu.be/eGZEHVy73E0?si=RHbnAQ5HLB_0o94h', 'created': '2024-11-13 02:15:07', 'submission_id': '1gpzvxi'}
{'comment': 'Extremely unfortunate.', 'created': '2024-11-13 02:11:30', 'submission_id': '1gpzvxi'}
{'comment': 'Don\'t worry, we\'re all in Hell. Once we\'ve each received enough punishment, we\'ll "die" and go on to the next part of the afterlife.', 'created': '2024-11-13 12:47:34', 'submission_id': '1gpzvxi'}
{'comment': 'Guess so. Eggs over everything else!', 'created': '2024-11-13 01:48:01', 'submission_id': '1gpzvxi'}
{'comment': 'Au contraire ... it was the lack of bacon that formed the base 90% under the surface.', 'created': '2024-11-13 02:08:14', 'submission_id': '1gpzvxi'}
{'comment': 'But the egg cost was due to bird flu...', 'created': '2024-11-13 02:20:00', 'submission_id': '1gpzvxi'}
{'comment': 'And eggs are because of bird flu! (Dairy is down) and inspectors and scientists… oh never mind.', 'created': '2024-11-13 03:24:55', 'submission_id': '1gpzvxi'}
{'comment': 'Don’t forget the price of gas', 'created': '2024-11-13 02:21:37', 'submission_id': '1gpzvxi'}
{'comment': 'It proves that there is no deep state', 'created': '2024-11-13 05:24:17', 'submission_id': '1gpzvxi'}
{'comment': '> ...and not he who shall not be named\n\nSo given how crazy everything is, and how there wasn\'t any assassination attempts against Moldywort until the campaign, I 100% believe that Trump was in on them both just to get "ratings." Votes, I mean votes.', 'created': '2024-11-13 12:40:13', 'submission_id': '1gpzvxi'}
{'comment': 'Something tells me there are going to be more shots at this rate \n\n(Not from me I hate guns)', 'created': '2024-11-13 02:53:18', 'submission_id': '1gpzvxi'}
{'comment': 'Get a life. Go gas light elsewhere. Currently only one party tried to hang their own vp.', 'created': '2024-11-14 23:38:47', 'submission_id': '1gpzvxi'}
{'comment': "Yeah that's been the theory for a number of years now.", 'created': '2024-11-13 02:56:48', 'submission_id': '1gpzvxi'}
{'comment': 'I’m just an internet guy, but I’ve been following her subreddit for a number of years and I think she’s compromised.', 'created': '2024-11-13 07:54:54', 'submission_id': '1gpzvxi'}
{'comment': 'Alex Jones as press secretary', 'created': '2024-11-13 02:12:27', 'submission_id': '1gpzvxi'}
{'comment': 'Yep', 'created': '2024-11-13 01:49:07', 'submission_id': '1gpzvxi'}
{'comment': "Nah, makes perfect sense; he's a brutal Trump sycophant... so perfect for the job.", 'created': '2024-11-13 03:06:20', 'submission_id': '1gpzvxi'}
{'comment': 'remember, remember the 5th of november', 'created': '2024-11-13 18:29:36', 'submission_id': '1gpzvxi'}
{'comment': 'Somehow "zero" is a much more menacing answer.', 'created': '2024-11-13 14:04:29', 'submission_id': '1gpzvxi'}
{'comment': "It does have the electrolytes, I'll give you that", 'created': '2024-11-13 01:50:41', 'submission_id': '1gpzvxi'}
{'comment': 'I feel like I would have gone for a gentler view to put on all day, Wall-e, lol (and already enjoy watching many times)', 'created': '2024-11-13 02:04:25', 'submission_id': '1gpzvxi'}
{'comment': "The fact that they are creating a whole department for Musk and what's his name tells you everything you need to know. We all know that when that happens, there's a good chance they're just stuffing you somewhere to keep you out of the way", 'created': '2024-11-13 07:03:00', 'submission_id': '1gpzvxi'}
{'comment': 'This honestly is the most realistic outcome in my mind. His first term was like this and the only major legislation they passed (House and Senate were GOP majority too that session) was that tax cut for the rich before inner GOP politics took over and infighting ensued.\n\nIt might be time to stock up on popcorn, butter, and your favorite soda before prices skyrocket even more.', 'created': '2024-11-13 12:50:17', 'submission_id': '1gpzvxi'}
{'comment': 'Has been since 2016.', 'created': '2024-11-13 01:59:47', 'submission_id': '1gpzvxi'}
{'comment': 'Fire-proof lock boxes for the win!', 'created': '2024-11-13 12:51:54', 'submission_id': '1gpzvxi'}
{'comment': "It's already a hillbilly hootenanny. Smdh", 'created': '2024-11-13 03:55:50', 'submission_id': '1gpzvxi'}
{'comment': 'Sounds like something the government will regulate soon...', 'created': '2024-11-13 02:15:10', 'submission_id': '1gpzvxi'}
{'comment': 'They’re already in power.', 'created': '2024-11-13 17:51:19', 'submission_id': '1gpzvxi'}
{'comment': 'And the rest of the world wished they had a vote fot this election.\n\nFor those who didn’t vote, send your proxy votes to Canada. Please! 😜', 'created': '2024-11-13 17:50:46', 'submission_id': '1gpzvxi'}
{'comment': 'I am kind of pissed about all the fun I didn’t have back when I thought your past could preclude you from public facing jobs…\n\nWelp, no time like the present!', 'created': '2024-11-13 03:04:20', 'submission_id': '1gpzvxi'}
{'comment': 'Nah, Trump is one of them. He fires competent people.', 'created': '2024-11-13 03:50:10', 'submission_id': '1gpzvxi'}
{'comment': 'I bet she will have a place in the administration', 'created': '2024-11-13 17:48:51', 'submission_id': '1gpzvxi'}
{'comment': 'Agreed, Rubio can def do the job, I never liked him, but you’re right, this pick is puzzling.', 'created': '2024-11-13 02:33:49', 'submission_id': '1gpzvxi'}
{'comment': 'Take it back TAKE IT BACK', 'created': '2024-11-14 18:13:51', 'submission_id': '1gpzvxi'}
{'comment': 'A bunch of creepy, crazy loyalists who don’t know what they’re doing.', 'created': '2024-11-13 04:02:23', 'submission_id': '1gpzvxi'}
{'comment': "I totally agree. I also agree that once he's sworn in, there is nothing the average citizen can do. I now understand how the Germans are able to live with themselves. If they are Nazi's, how are they complicit. We had our chance, the choice was clear and the majority of greedy capitalists and imbeciles voted for him.\n\nThe crazy part is that even money won't give immunity from the outcome. When the lower class suffers. And they will all suffer, the buffer for the upper class will be removed. Buy a (proverbial) pitchfork (Firearm in today's world) and join the uprising when it comes.\n\nDoes that sound absurd?", 'created': '2024-11-13 13:04:48', 'submission_id': '1gpzvxi'}
{'comment': 'Look at the history of the position...not usually former generals', 'created': '2024-11-13 16:36:36', 'submission_id': '1gpzvxi'}
{'comment': "The people that you see getting squished by rabid tRump supporters in the online videos that you can even see on X? The same police that have been scarred for life will continually deal with PSTD caused by that day don't care? All of the officers in the list below that died as a result of the jan 6 riot:\n\n* Officer\xa0[Brian D. Sicknick](https://www.nytimes.com/2021/01/08/us/brian-sicknick-police-capitol-dies.html)\xa0of the Capitol Police, who was\xa0[attacked by the mob](https://www.nytimes.com/interactive/2021/03/24/us/officer-sicknick-capitol-riot.html), died on Jan. 7.\n* Officer\xa0[Jeffrey Smith](https://www.nytimes.com/2021/07/29/us/police-suicides-capitol-riot.html)\xa0of the Metropolitan Police Department killed himself after the attack.\n* Officer\xa0[Howard S. Liebengood](https://www.nytimes.com/2021/01/10/us/politics/capitol-police-howard-liebengood-dies.html)\xa0of the Capitol Police also died by suicide four days afterward.\n\nSo you are saying that the capitol police officers that worked with these guys and watched them die don't care that the republicans that down play the impact of that day, the same people they are there to protect, don't care? You are kidding, right? Did you forget the /s?", 'created': '2024-11-13 04:03:30', 'submission_id': '1gpzvxi'}
{'comment': "I'm from Florida. His first term as Senator he showed less than any other Senator. Now he pretends to be super christian. But again, voting conservatives aren't really worried about our stance with other countries. Rex Tillerson was a better choice. Mitt Romney was a better choice. A blade of grass was a better choice.", 'created': '2024-11-13 07:26:21', 'submission_id': '1gpzvxi'}
{'comment': 'You do understand that administration appointments and elections are not the same thing? \n\nJust asking, because you rushed to take me seriously.', 'created': '2024-11-13 05:08:56', 'submission_id': '1gpzvxi'}
{'comment': 'How?', 'created': '2024-11-13 05:57:44', 'submission_id': '1gpzvxi'}
{'comment': 'Why don’t you look up his DD-214 before you ask questions out of ignorance?\n\nHe has 20+ years of military service (the same Minnesota Army National Guard that Tim Walz served in, if that’s relevant), and has two bronze stars and saw combat in Iraq and Afghanistan. You don’t have to agree with the man’s politics to understand that he’s a veteran.\n\nHe’s also a New York Times #1 bestselling author.\n\nAs for those saying he’s stupid because he’s a tv commentator; I would say it’s because he suffered an “education” at Princeton (bachelor’s degree) and was further indoctrinated … um “educated” … at Harvard (master’s degree).\n\nFeel free to hate the dude’s politics, but underestimating someone simply because you don’t like their opinions is a fabulous way to beclown yourself.', 'created': '2024-11-14 18:01:56', 'submission_id': '1gpzvxi'}
{'comment': "It's okay, spelling and all forms of decorum are no longer relevant.", 'created': '2024-11-13 03:18:02', 'submission_id': '1gpzvxi'}
{'comment': 'You are correct', 'created': '2024-11-13 01:59:56', 'submission_id': '1gpzvxi'}
{'comment': '“The Greatest ShitShow on Earth!”', 'created': '2024-11-13 15:09:41', 'submission_id': '1gpzvxi'}
{'comment': 'Remember he/she didn’t misspell it -AI- did. After all I ask Siri, Alexa, ChatGPT to do all my thinking for me-', 'created': '2024-11-13 11:13:42', 'submission_id': '1gpzvxi'}
{'comment': ' Here I was going to say Hell. Suspected it since 2015, confirmed on November 5 of last week.', 'created': '2024-11-13 12:02:19', 'submission_id': '1gpzvxi'}
{'comment': 'Can confirm.', 'created': '2024-11-13 17:05:24', 'submission_id': '1gpzvxi'}
{'comment': 'I like clown car, but honestly it’s too whimsical. What about imminent doom?', 'created': '2024-11-13 19:21:15', 'submission_id': '1gpzvxi'}
{'comment': 'I can’t believe this man got voted in again …it’s a nightmare I want to wake up from', 'created': '2024-11-13 02:01:59', 'submission_id': '1gpzvxi'}
{'comment': "> It’s a circus in a shit show in a hurricane. \n\nIt's a disaster turducken.", 'created': '2024-11-13 03:22:59', 'submission_id': '1gpzvxi'}
{'comment': 'In a sharknado!', 'created': '2024-11-13 03:19:06', 'submission_id': '1gpzvxi'}
{'comment': 'It may be a lot longer than that. I certainly hope not..but…', 'created': '2024-11-13 12:07:43', 'submission_id': '1gpzvxi'}
{'comment': 'Oof. A hurricane? Watch out for the nuclear warhead Trump is still wondering about...', 'created': '2024-11-13 02:32:55', 'submission_id': '1gpzvxi'}
{'comment': "You think it's only going to last four years? Jokes on you, the Supreme Court is a lifetime!", 'created': '2024-11-13 18:58:25', 'submission_id': '1gpzvxi'}
{'comment': 'God, I only hope it’s 4.', 'created': '2024-11-13 15:31:08', 'submission_id': '1gpzvxi'}
{'comment': "I don't think I can live anywhere else", 'created': '2024-11-13 06:40:16', 'submission_id': '1gpzvxi'}
{'comment': "Same here in Minnesota. I'm 30 min west of the Twin Cities and it's very MAGA out here. I don't feel safe leaving house\xa0", 'created': '2024-11-13 14:22:01', 'submission_id': '1gpzvxi'}
{'comment': '[removed]', 'created': '2024-11-13 17:05:12', 'submission_id': '1gpzvxi'}
{'comment': 'Interesting angle. I have to wonder if he’s going to make blue states suffer, or try and legislate them out of the rights they have there.\n\n \nRed state resident here. I’m near the border of a blue state, and I’m considered moving as a last resort. All my relatives and friends are here, except for a few in California. I’d love to move there, but it’s just not affordable right now.', 'created': '2024-11-13 12:22:47', 'submission_id': '1gpzvxi'}
{'comment': "I'm never taking my mask off again. And if some antimasker tries to rip it off, well, it's MY freedum fucker.", 'created': '2024-11-13 12:05:05', 'submission_id': '1gpzvxi'}
{'comment': 'Ding, ding, ding!', 'created': '2024-11-13 04:44:42', 'submission_id': '1gpzvxi'}
{'comment': 'Blue States will keep vaccines. Get em while you can folks', 'created': '2024-11-13 07:14:36', 'submission_id': '1gpzvxi'}
{'comment': 'I think you’re right, but I also think he’s just going to do whatever the fuck he wants either way, because nobody ever stands up to him & he’s never held accountable for anything. He feels invincible.\nWho’s going to stop him? He has immunity for “presidential acts”, so everything he does has a free pass. No checks or balances needed.', 'created': '2024-11-13 03:42:16', 'submission_id': '1gpzvxi'}
{'comment': 'Why would they; we fucking forgot to teach history or the fact that the justice system was a compromise.', 'created': '2024-11-13 03:18:19', 'submission_id': '1gpzvxi'}
{'comment': '', 'created': '2024-11-13 12:00:40', 'submission_id': '1gpzvxi'}
{'comment': "I'm sure that at some point soon, the sane countries will sanction us into external silence before we're really pulled into the next Axis of Evil and have to learn Russian and/or Chinese.", 'created': '2024-11-13 13:03:01', 'submission_id': '1gpzvxi'}
{'comment': '', 'created': '2024-11-13 11:56:44', 'submission_id': '1gpzvxi'}
{'comment': 'True but it seems many other countries are getting their own version of Trump… it’s contagious.', 'created': '2024-11-16 03:40:38', 'submission_id': '1gpzvxi'}
{'comment': "He hasn't even taken office yet. How can he do all these things?", 'created': '2024-11-13 06:28:44', 'submission_id': '1gpzvxi'}
{'comment': 'And bring religion back into schools too, so it’s way more efficient to manufacture conservative voters.. there is madness, and a little bit of method.', 'created': '2024-11-13 03:17:33', 'submission_id': '1gpzvxi'}
{'comment': 'So long as they pledge fealty to the president king. But if they so much as mention democracy, it’s deportation!', 'created': '2024-11-13 04:42:04', 'submission_id': '1gpzvxi'}
{'comment': 'That truly brought my hatred of Elon to a whole new level', 'created': '2024-11-14 05:16:49', 'submission_id': '1gpzvxi'}
{'comment': "But look on the bright side, after the decimate the local economy a bunch of billionaires can swoop in to buy all the land and crush the locals into wage slavery freely since they'll no longer have any alternatives", 'created': '2024-11-13 02:44:06', 'submission_id': '1gpzvxi'}
{'comment': 'I want to clarify that she was told this by her boss but they had not received official word of it yet. But yeah my county is fully agritourism centered with multiple state parks. Heavily conservative. And i know those assholes love these mountains so I don’t understand how they all voted for that. Add it to the list.', 'created': '2024-11-13 02:43:54', 'submission_id': '1gpzvxi'}
{'comment': "\\>We have counties in California were most of the GDP comes directly from State or Federal coffers: Forest Service, National Parks, Medicare, Social Security, education, and road work. Without those dollars they're sunk.\n\nJust a guess, but I think that’s part of the reason they’re doing it. They want California to suffer.", 'created': '2024-11-13 12:36:18', 'submission_id': '1gpzvxi'}
{'comment': "Oh, they aren't paying attention now. They don't care now that he's elected.", 'created': '2024-11-13 02:55:52', 'submission_id': '1gpzvxi'}
{'comment': 'I vote this best comment on Reddit today!', 'created': '2024-11-13 03:00:15', 'submission_id': '1gpzvxi'}
{'comment': 'No, dingus, it doesn\'t say "*Inject* Me"', 'created': '2024-11-13 06:16:39', 'submission_id': '1gpzvxi'}
{'comment': 'It’ll make you smaller than a piss ant.', 'created': '2024-11-13 04:11:24', 'submission_id': '1gpzvxi'}
{'comment': 'Well, how else are we to get light inside the body!', 'created': '2024-11-13 15:07:34', 'submission_id': '1gpzvxi'}
{'comment': 'I used to say, “Happy Un -Anniversary to you!” every day of our wedding day after we divorced.', 'created': '2024-11-13 04:13:46', 'submission_id': '1gpzvxi'}
{'comment': "Ok, I see your point. He is well educated and has military expeirence. But, that doesn't mean he is the most qualified for the job either. I bet there are at least 10 other people who have been in military services their entire lives that would be a better choice. One's who will put the consitutition before Trump as well. You can't tell me this is an alarming pick for someone to run the pentagon.", 'created': '2024-11-14 21:52:43', 'submission_id': '1gpzvxi'}
{'comment': 'It’s insane', 'created': '2024-11-13 12:37:11', 'submission_id': '1gpzvxi'}
{'comment': 'Yep ridiculous', 'created': '2024-11-13 01:48:17', 'submission_id': '1gpzvxi'}
{'comment': 'All they needed were some chickens.', 'created': '2024-11-13 02:16:12', 'submission_id': '1gpzvxi'}
{'comment': 'And they will continue to be expensive, so lose/lose scenario.', 'created': '2024-11-13 04:18:20', 'submission_id': '1gpzvxi'}
{'comment': 'Gas.', 'created': '2024-11-13 04:14:11', 'submission_id': '1gpzvxi'}
{'comment': 'lol', 'created': '2024-11-13 02:09:58', 'submission_id': '1gpzvxi'}
{'comment': "Bird flu isn't real. It's just a bad cold. Chickens don't want to work anymore. This would never fly at JMH Sheet Metal.", 'created': '2024-11-13 02:38:46', 'submission_id': '1gpzvxi'}
{'comment': 'Hey, will you go out and buy me a trump shirt, hat, and flag? I’ll pay you back, now that I can’t afford eggs, bacon, or gas.', 'created': '2024-11-13 04:16:05', 'submission_id': '1gpzvxi'}
{'comment': 'Oh yeah that also …..and bread', 'created': '2024-11-13 02:27:21', 'submission_id': '1gpzvxi'}
{'comment': "Sure there is, but it's compromised of Conservatives. Ever heard of [The Family](https://en.wikipedia.org/wiki/The_Family_%28miniseries%29?wprov=sfla1)? Except it would be too easy for the villains to have one easily identifiable name and clear grouping. The deep state is a complex network of powerful people acting in their own self-interest, to the detriment of everyone else. As usual, the Right has taken this name and flipped it on its head, when they themselves do the things they accuse others of doing.\n\nRelated items on my reading list:\n\n- The Republican Noise Machine\n\n- Wrapped In The Flag\n\n- Autocracy, Inc.\n\n- One Nation Under God\n\n- Democracy Awakening: Notes on the State of America", 'created': '2024-11-13 06:33:46', 'submission_id': '1gpzvxi'}
{'comment': 'Or that if there is, they are MAGA', 'created': '2024-11-13 06:48:17', 'submission_id': '1gpzvxi'}
{'comment': 'And now the secret service is officially monitoring this thread. Thanks a lot', 'created': '2024-11-13 02:56:51', 'submission_id': '1gpzvxi'}
{'comment': 'We will end up with Vance as president. He is still a puppet for Heritage anyway. Same thing.', 'created': '2024-11-13 04:35:33', 'submission_id': '1gpzvxi'}
{'comment': "They're going to go to far and end up hanging from stuff.", 'created': '2024-11-13 03:13:44', 'submission_id': '1gpzvxi'}
{'comment': "Chill out Lil' Jon", 'created': '2024-11-13 06:34:57', 'submission_id': '1gpzvxi'}
{'comment': 'I’m gaslighting how? Are you trying to say you are not calling on the CIA to assassinate Trump?', 'created': '2024-11-14 23:44:05', 'submission_id': '1gpzvxi'}
{'comment': 'I believe it, especially for Clinton to state it publicly, a very rare move. I think she was trying to protect the country, literally.', 'created': '2024-11-13 03:01:24', 'submission_id': '1gpzvxi'}
{'comment': 'Laura Loomer as press secretary', 'created': '2024-11-13 04:42:53', 'submission_id': '1gpzvxi'}
{'comment': 'Shhh. They might hear you.', 'created': '2024-11-13 12:42:39', 'submission_id': '1gpzvxi'}
{'comment': "I decide what to watch the next day based on how the results came out and how I feel about them. Suffice it to say I've been watching a lot of apocalyptic dystopian future and zombie movies.", 'created': '2024-11-13 02:24:26', 'submission_id': '1gpzvxi'}
{'comment': 'Since 1980.', 'created': '2024-11-13 02:02:40', 'submission_id': '1gpzvxi'}
{'comment': 'Yep it is unfortunately', 'created': '2024-11-13 04:00:45', 'submission_id': '1gpzvxi'}
{'comment': 'It’s scary', 'created': '2024-11-13 04:02:44', 'submission_id': '1gpzvxi'}
{'comment': 'Yes I understand', 'created': '2024-11-13 05:22:59', 'submission_id': '1gpzvxi'}
{'comment': 'Did you see the /s? Still don’t think he’s qualified. Just a Fox news clown.', 'created': '2024-11-14 21:52:19', 'submission_id': '1gpzvxi'}
{'comment': 'As long as it is all in CAPS.', 'created': '2024-11-13 03:59:23', 'submission_id': '1gpzvxi'}
{'comment': 'They still always will be for our side. Let these morons in the country fall.', 'created': '2024-11-13 06:59:36', 'submission_id': '1gpzvxi'}
{'comment': 'That happens occasionally.', 'created': '2024-11-13 02:02:55', 'submission_id': '1gpzvxi'}
{'comment': "Is that why your thinking is so cloudy? Cuz it's a cloud-based?", 'created': '2024-11-13 11:33:25', 'submission_id': '1gpzvxi'}
{'comment': 'I’ve come to grips that this is what America wanted… at least the ones who voted\n\nIf you didn’t vote, or didn’t vote for Kamala despite voting for Biden last time… fuck you', 'created': '2024-11-13 03:08:30', 'submission_id': '1gpzvxi'}
{'comment': 'Same here. I’ve never seen anyone so incapable of being a good leader getting elected here in the United States. Lived in South America in my late teens and saw leaders like this, but hoped we were better than this.', 'created': '2024-11-13 02:16:26', 'submission_id': '1gpzvxi'}
{'comment': 'lol, so true.', 'created': '2024-11-13 04:04:04', 'submission_id': '1gpzvxi'}
{'comment': 'No, it’s not that good.', 'created': '2024-11-13 04:05:11', 'submission_id': '1gpzvxi'}
{'comment': 'You know he’ll use it this time. And his administration idiots will cheer him on.', 'created': '2024-11-13 04:06:35', 'submission_id': '1gpzvxi'}
{'comment': "Same here. I'm really worried that this could go on a whole lot longer than 4 years.", 'created': '2024-11-13 16:38:22', 'submission_id': '1gpzvxi'}
{'comment': 'So full Nixon in 2 years?', 'created': '2024-11-13 04:05:53', 'submission_id': '1gpzvxi'}
{'comment': "I think you could argue that the rise of right-wing populism in the 21st century preceded Trump\xa0\n\n\nBut I also think given America's presence on the international stage Trump winning laid the blueprints for many more right-wing populists to be elected\xa0\n\n\nSo I don't think he was the seed of the problem I think he was the fertilizer\xa0\n\n\nAlso fertilizer is usually made from horse shit, which is a more apt comparison for that sad sack of a non-human", 'created': '2024-11-16 03:44:19', 'submission_id': '1gpzvxi'}
{'comment': 'These are just plans and announcements about what he’s going to do once he’s in office.', 'created': '2024-11-13 06:58:52', 'submission_id': '1gpzvxi'}
{'comment': "And I didn't think that was possible.", 'created': '2024-11-14 18:24:58', 'submission_id': '1gpzvxi'}
{'comment': 'That’s their every intention.', 'created': '2024-11-13 04:09:36', 'submission_id': '1gpzvxi'}
{'comment': 'The vast majority didn’t know what they’re voting for. They haven’t read anything that we’ve read about Project 2025, and that’s entirely the problem.', 'created': '2024-11-13 06:06:49', 'submission_id': '1gpzvxi'}
{'comment': '\\>But yeah my county is fully agritourism centered with multiple state parks. Heavily conservative. And i know those assholes love these mountains so I don’t understand how they all voted for that. Add it to the list.\n\nAh, the first Leopards ate my Face situation among his voters. I expect to see many of those. \n\nI’m really sorry for what’s about to happen. You guys deserve better. We all do.', 'created': '2024-11-13 12:39:04', 'submission_id': '1gpzvxi'}
{'comment': "I'm sure it's probably somewhere in Project 2025.", 'created': '2024-11-13 12:19:31', 'submission_id': '1gpzvxi'}
{'comment': 'All of those counties vote republican.', 'created': '2024-11-13 18:24:51', 'submission_id': '1gpzvxi'}
{'comment': 'That makes zero sense. Why do the counties rake in state and federal tax dollars as their primary revenue source?\n\nDo they not produce anything of value? Who at the state and federal level is paying for all of that? Do you like high taxes?\n\nI don’t think it’s ok to take a massive chunk of my paycheck to give someone else a job, when I can barely afford my mortgage, insurance premium, and property taxes. And don’t get me started on my damned student loans.', 'created': '2024-11-14 19:21:12', 'submission_id': '1gpzvxi'}
{'comment': 'Did you say it TO THEM tho?', 'created': '2024-11-13 20:15:02', 'submission_id': '1gpzvxi'}
{'comment': 'I didn’t say he was the best choice. Nor did I say he was the best qualified choice. I was merely pointing out he wasn’t as unqualified as your initial comment seemed to suggest. He’s certainly got the background, experience, and education to be capable of doing the job.', 'created': '2024-11-14 22:00:52', 'submission_id': '1gpzvxi'}
{'comment': "*Birds aren't real*", 'created': '2024-11-13 06:19:04', 'submission_id': '1gpzvxi'}
{'comment': 'What?', 'created': '2024-11-13 07:15:26', 'submission_id': '1gpzvxi'}
{'comment': "Nah, she's going to be his personal secretary, a la Monica Lewinsky!", 'created': '2024-11-13 12:46:15', 'submission_id': '1gpzvxi'}
{'comment': '1964 Barry Goldwater Campaign and the creation of the New Right. Then The Heritage Foundation was created in 1973. This country was hijacked by the religious right and we are at the peak of their arch (hopefully.)', 'created': '2024-11-13 03:15:01', 'submission_id': '1gpzvxi'}
{'comment': 'Yep all CAPS make the difference. Unless you are WOKE- then watch out. Gotta stay asleep to survive this ADMIN', 'created': '2024-11-13 11:14:42', 'submission_id': '1gpzvxi'}
{'comment': 'Lol…yes …sometimes they call it brain fog- if there’s a chance of rain 🤣', 'created': '2024-11-13 11:58:28', 'submission_id': '1gpzvxi'}
{'comment': 'I’ve always said that voting gives you the right to bitch. I voted and plan to bitch a lot.', 'created': '2024-11-13 04:08:34', 'submission_id': '1gpzvxi'}
{'comment': 'I a fucking gree!!!', 'created': '2024-11-13 03:10:47', 'submission_id': '1gpzvxi'}
{'comment': None, 'created': '2024-11-13 04:06:02', 'submission_id': '1gpzvxi'}
{'comment': ' Nah. Fearless Leader managed to spin his reputation as fighting for regular people. AOC was on Twitter yesterday with people in her district. Apparently they voted overwhelmingly for both her and him. When she asked why, they said she and him were the only two politicians fighting for the working man.\n\nI’m still convinced a significant number of them don’t know exactly what they’re getting. If he goes full dictator, they’re going to find out pretty quickly.', 'created': '2024-11-13 12:15:33', 'submission_id': '1gpzvxi'}
{'comment': 'How anyone who voted for Biden didn’t show up is way beyond me.\n\nTrump got 2M less votes and she still lost.\n\nI still think the mail in votes had something to do with it.', 'created': '2024-11-13 15:19:43', 'submission_id': '1gpzvxi'}
{'comment': 'Well said 👏🏼👏🏼👏🏼', 'created': '2024-11-13 17:29:48', 'submission_id': '1gpzvxi'}
{'comment': 'Me to ….me to ….', 'created': '2024-11-13 02:18:27', 'submission_id': '1gpzvxi'}
{'comment': 'We were but with one weakness!! We ASSUMED this would never happen so did nothing to put safeguards in place to protect the democracy from being obliterated by hate-\n\nNo one has figured out the secret recipe to love, kindness, and bringing out what is the best and beautiful in each other and this beautiful planet!! And manifesting that reality. It seems boring to folks-', 'created': '2024-11-13 11:20:07', 'submission_id': '1gpzvxi'}
{'comment': 'Brazil is obviously better. It holds its politicians accountable.', 'created': '2024-11-13 03:52:09', 'submission_id': '1gpzvxi'}
{'comment': "They don't fucking read *anything at all*", 'created': '2024-11-13 06:15:40', 'submission_id': '1gpzvxi'}
{'comment': 'I understand, and if the Forest Service is shut down and the land put up for sale for luxury condos, they’ll have reason to regret it, probably bitterly.', 'created': '2024-11-13 18:48:47', 'submission_id': '1gpzvxi'}
{'comment': 'Yes! I don’t think he got it though. I never explained it. Fuck him.', 'created': '2024-11-13 20:16:07', 'submission_id': '1gpzvxi'}
{'comment': 'That’s where we disagree. He’s got military experience yes, but not enough to be running the pentagon. \n\nI give him 10 Scaramucci’s in office. \n\n(1 scaramucci = 11 days)', 'created': '2024-11-15 06:01:26', 'submission_id': '1gpzvxi'}
{'comment': 'Hello fellow Austinite (who has apparently never heard "Shots" by Lil\' Jon)', 'created': '2024-11-13 07:34:58', 'submission_id': '1gpzvxi'}
{'comment': 'If this is the peak of their power, then there’s only one way it can go from here 😈', 'created': '2024-11-14 05:26:45', 'submission_id': '1gpzvxi'}
{'comment': "I'm still wondering that, too. What is really concerning me is that the democrats are not doing or saying anything about this. Why are they allowing him to do that. Biden is still president. I wish he would or say anything.\n\nSoon, we won't be democrats. They will be no democrats. We will have no say in any political election because there won't be one. He did say at one of his rallies that he was doing to lock up everyone who didn't vote for him. Either we bend to his rule, or we get punished. We lost the government, and no one is coming to save us.", 'created': '2024-11-13 06:10:36', 'submission_id': '1gpzvxi'}
{'comment': 'Read about Germany from about 1923-1933\n\nIt lays out how this is happened, what point we are at currently, and what’s next', 'created': '2024-11-13 16:39:57', 'submission_id': '1gpzvxi'}
{'comment': 'I agree with you. I won’t go down the election fraud path until I see definitive proof\n\nI think Americans are this brainwashed', 'created': '2024-11-13 16:38:25', 'submission_id': '1gpzvxi'}
{'comment': "The problem is, if we're proven right, there'll be nothing we can do about it.", 'created': '2024-11-13 22:38:35', 'submission_id': '1gpzvxi'}
{'comment': 'I was in Bolivia in the late 80’s, and they basically re-elected one of their past dictators who had even tried to kill one of the other candidates. He eventually won a few years later. Bolivia is infamous for having terrible leadership.', 'created': '2024-11-13 04:03:09', 'submission_id': '1gpzvxi'}
{'comment': 'Oh yeah, I forgot. Many of them don’t even know how. I’m certain shutting the department of education will fix that…', 'created': '2024-11-13 08:09:28', 'submission_id': '1gpzvxi'}
{'comment': "Insurance companies are increasingly refusing to write policies for any property in California that is forested or on a significant slope. I know people who've had insurance companies quote them policy rates at double the price of their monthly mortgage. If the fires and landslides don't get you the underwriters will.", 'created': '2024-11-13 22:51:25', 'submission_id': '1gpzvxi'}
{'comment': 'Yeah fuck him', 'created': '2024-11-14 05:16:21', 'submission_id': '1gpzvxi'}
{'comment': '\n\nHowdy neighbor, I have lol', 'created': '2024-11-13 07:37:27', 'submission_id': '1gpzvxi'}
{'comment': 'This is my biggest concern. The seeds are already being sown for his third term… elections may be out the door', 'created': '2024-11-13 16:41:25', 'submission_id': '1gpzvxi'}
{'comment': 'At Biden’s age and what is left of his term, I would be using some of that immunity to throw roadblocks in his way.', 'created': '2024-11-16 19:30:12', 'submission_id': '1gpzvxi'}
{'comment': 'Rise of the Great Aryan Nation…The Sequel <smfh>', 'created': '2024-11-13 17:55:21', 'submission_id': '1gpzvxi'}
{'comment': 'It’s a start. Get the government out of the lending business. People can actually declare bankruptcy on private loans (mind you, it will get harder to get a loan, since lenders do want to be paid back).\n\nOnce schools realize that 18 year olds with no job can no longer get $75,000 in loans, they will have to adjust tuition to meet reality.\n\nMaybe school is overrated anyway? I mean Hegseth got degrees from Princeton and Harvard and people still think he’s not bright enough to do anything but talk on tv.', 'created': '2024-11-14 19:13:50', 'submission_id': '1gpzvxi'}
{'comment': 'Do you think fearless leader is going to frame shutting down the forest service and selling the land for condos is some sort of safety measure\n\nI guess because they forgot to “rake the forest”.🙄', 'created': '2024-11-16 02:18:08', 'submission_id': '1gpzvxi'}
{'comment': 'Looks like prison improved his complexion.', 'created': '2024-11-13 00:08:03', 'submission_id': '1gpy2hp'}
{'comment': 'Bannon has been on the outer orbit of Trump world since 2018. He pissed off Jared Kushner and he pissed off Trump.\xa0\n\nHis primary occupation appears to be “grifter”.\xa0', 'created': '2024-11-13 00:40:45', 'submission_id': '1gpy2hp'}
{'comment': 'This toad belongs in prison for life for working treasonously with Russia.', 'created': '2024-11-13 02:33:17', 'submission_id': '1gpy2hp'}
{'comment': 'Lock him up, sooner the better', 'created': '2024-11-13 02:57:45', 'submission_id': '1gpy2hp'}
{'comment': "He'll get a pardon, but what the hell.", 'created': '2024-11-13 00:09:31', 'submission_id': '1gpy2hp'}
{'comment': 'How many presidential pardons can a man get? Asking for all real Americans.', 'created': '2024-11-13 05:12:54', 'submission_id': '1gpy2hp'}
{'comment': 'It has nothing to do with anything. Why wouldn’t it continue.', 'created': '2024-11-13 14:40:56', 'submission_id': '1gpy2hp'}
{'comment': 'I know who’s first in line for the camps.', 'created': '2024-11-14 07:17:22', 'submission_id': '1gpy2hp'}
{'comment': 'No access to meth in the hoosegow.', 'created': '2024-11-13 00:36:43', 'submission_id': '1gpy2hp'}
{'comment': "That's seemingly their guild.", 'created': '2024-11-13 01:00:28', 'submission_id': '1gpy2hp'}
{'comment': 'If these are state charges, then no. His orange friend won’t be able to do jack shit in NY state.', 'created': '2024-11-13 00:15:15', 'submission_id': '1gpy2hp'}
{'comment': 'Right on!', 'created': '2024-11-13 00:17:02', 'submission_id': '1gpy2hp'}
{'comment': "Exactly. And he won't be in one of those comparatively nice federal prisons like the one he just got released from.", 'created': '2024-11-13 04:08:16', 'submission_id': '1gpy2hp'}
{'comment': 'No way!! Really? Had no idea.', 'created': '2024-11-12 23:48:35', 'submission_id': '1gpx33w'}
{'comment': 'The sane washing of a psychotic dictator begins', 'created': '2024-11-12 23:52:09', 'submission_id': '1gpx33w'}
{'comment': 'no shit......', 'created': '2024-11-12 23:33:30', 'submission_id': '1gpx33w'}
{'comment': 'I knew it would be horrible and tried to brace myself, but reading it all is still horrifying and beyond preparation. We really elected the devil again', 'created': '2024-11-13 00:45:43', 'submission_id': '1gpx33w'}
{'comment': 'America will hit rock bottom like in the 1930s so 2030’s will definitely be a repeat of 1930’s. This is when maximum pain is reached and a great big lightbulb will go off in peoples heads where class consciousness will be back on the forefront, hopefully a reversion back to the mean with not too much bloodshed.\n\nHistory definitely seems to rhyme.', 'created': '2024-11-13 01:06:23', 'submission_id': '1gpx33w'}
{'comment': 'It is so hard not to be disappointed in this country at this moment.', 'created': '2024-11-13 01:56:02', 'submission_id': '1gpx33w'}
{'comment': 'Freedom and Democracy and America END on January 20th 2025.', 'created': '2024-11-13 02:25:36', 'submission_id': '1gpx33w'}
{'comment': "Great times if you're a white male and have over a billion!\n\nWorst time in american history if you are anyone else.", 'created': '2024-11-13 01:45:13', 'submission_id': '1gpx33w'}
{'comment': 'Time Someone started looking up ‘destroying the middle class’ on the google.', 'created': '2024-11-13 01:54:39', 'submission_id': '1gpx33w'}
{'comment': "On the bright side, there won't be a bunch of disgusting profane messages targeting the president and vice president spelled out in Christmas lights this year. Hopefully.", 'created': '2024-11-12 23:45:06', 'submission_id': '1gpx33w'}
{'comment': 'the next Great Depression incoming', 'created': '2024-11-13 05:03:49', 'submission_id': '1gpx33w'}
{'comment': 'Just a reminder to all you fellow democrats, none you are to blame, they only have themselves.', 'created': '2024-11-13 08:19:56', 'submission_id': '1gpx33w'}
{'comment': 'Gooooood', 'created': '2024-11-13 00:18:14', 'submission_id': '1gpx33w'}
{'comment': 'I’m pretty sure common knowledge is going to be a topic for the next 4 years.', 'created': '2024-11-13 05:49:32', 'submission_id': '1gpx33w'}
{'comment': 'Time to google what authoritarian means and if I can change my vote', 'created': '2024-11-13 20:57:43', 'submission_id': '1gpx33w'}
{'comment': 'It took a world war to get us out of it last time', 'created': '2024-11-13 02:01:48', 'submission_id': '1gpx33w'}
{'comment': 'No bloodshed necessary. But yes, we do need an entirely new and uniquely American left-wing populist movement. Just need to refine the message and find the right messenger. It can be done. I can see it. We need to champion THE PEOPLE!', 'created': '2024-11-13 10:00:28', 'submission_id': '1gpx33w'}
{'comment': 'I hope you are right so we will touch the bottom of the barrel again and then rebuild a better country.', 'created': '2024-11-13 01:31:08', 'submission_id': '1gpx33w'}
{'comment': "I haven't finalized my xmas decor yet.", 'created': '2024-11-13 04:17:17', 'submission_id': '1gpx33w'}
{'comment': 'the way things are going in the middle east and Ukraine that could be arranged...', 'created': '2024-11-13 04:16:33', 'submission_id': '1gpx33w'}
{'comment': 'Gavin Newsom/Josh Shapiro 2028!', 'created': '2024-11-13 15:43:21', 'submission_id': '1gpx33w'}
{'comment': 'Stay classy.', 'created': '2024-11-13 04:40:10', 'submission_id': '1gpx33w'}
{'comment': 'What I got from this is that we need to adopt a more populist messaging but we can keep our same policies. This was also demonstrated when people were shown Harris’ policies and said they liked them when told they were Trump’s policies. And it should be easy for us to do now. They can’t claim they are the outsiders anymore when they are running everything.', 'created': '2024-11-12 23:15:23', 'submission_id': '1gpvu0s'}
{'comment': 'This actually alarms me. Our policies are popular but where the majority of Americans get their information isn’t telling them that they’re Dem policies. How they can believe that he cares about them as he flies around with Elon blows my mind.', 'created': '2024-11-12 23:48:29', 'submission_id': '1gpvu0s'}
{'comment': 'They *do not* hate our policies. They hate that they feel like they’re getting left in the dust. And when you combine that with being constantly inundated by white-nationalist poison they’re getting from Facebook posts and Xcretions, thats a recipe for a loss, and where the answer lies.\n\n1.) **Get back to being “the party of the people”** by pushing progressive pro-worker and pro-working class policy ideas: free 2 years of a community college, Medicare for all, raise minimum wage, profit caps on essential goods like groceries, prosecute price gouging, 52% tax rate on billionaires, remove the social security tax cap (which currently stops making people pay into it on any salary earned after $168,600)\n\n2.) **Develop an aggressive progressive social media presence** by doing podcasts, do YouTube interviews, appear on twitch channels, host digital town halls, etc. People (especially young people) almost exclusively consume news from social media and those sources, *not legacy media*.', 'created': '2024-11-13 00:47:19', 'submission_id': '1gpvu0s'}
{'comment': 'That they\'re fucking morons literally voting for polar opposites based on whether or not they superficially "like" the person? Yeah, thanks, I already knew that.', 'created': '2024-11-13 00:43:01', 'submission_id': '1gpvu0s'}
{'comment': 'This is such useful information for the Democratic Party to rebuild their coalition. The longer we pretend to be the party of the educated elites AND the working class, the longer we will lose. (I say this knowing Trump is a fucking elite masquerading as a working class hero, but I digress)', 'created': '2024-11-12 22:48:14', 'submission_id': '1gpvu0s'}
{'comment': "Doesn't matter what shenanigans you promise the Democrats don't own good media sources.\n\nFind news that can beat Fox News in the mid West", 'created': '2024-11-13 02:34:35', 'submission_id': '1gpvu0s'}
{'comment': 'God it sucks to have to take lessons from absolute morons', 'created': '2024-11-13 05:04:43', 'submission_id': '1gpvu0s'}
{'comment': 'how do they know those weren’t online trolls answering questions? Or was it actually people on the live talking?', 'created': '2024-11-13 05:36:18', 'submission_id': '1gpvu0s'}
{'comment': "literally the only people who are hurting from this are going to be themselves. the dem leadership isn't going to feel anything about this. and the republicans are going to do untold amounts of damage (if not dompletely destroy) our democracy and the institutions that are supposed to keep us safe. we are all about to suffer in varying degrees but the democratic leadership are the ones who will probably feel this the absolute least.", 'created': '2024-11-13 00:42:53', 'submission_id': '1gpvu0s'}
{'comment': "The democrats have the party of the Washington establishment for the last 30 years. Longer then I've been alive. All of our candidates have been Washington politicos. An outsider would be good. But I don't think a progressive is the move. The progressive wing is notiously known for infighting, and harris was a progressive. And she is the worst preforming democrat this century. She was constantly attacked on being a turn coat for dropping progressive policys to win votes. Any progressive candidate would get the same attacks. Someone centrist from the interior would be best. Who has no experience in Washington.", 'created': '2024-11-13 01:19:21', 'submission_id': '1gpvu0s'}
{'comment': "The lesson is always put your base first and stop chasing this phantom voter. Stop trying to be a lite version of your opponent thinking that will win you votes it won't people will always choose the real thing, but I am sure the Dems will never learn.", 'created': '2024-11-15 21:46:11', 'submission_id': '1gpvu0s'}
{'comment': 'We should just run an actual outsider next time. Look at how Dan Osborn over-performed in his Nebraska Senate race. He lost to the Republican by 66k votes while Harris lost to Trump in the same state by 195k votes. He did far better than any Democratic senate nominee there in recent memory. \n\nHe ran as an independent but his policies are way more aligned with the populist parts of the Democratic platform (raise minimum wage, support labor unions, keep the government out of abortion decisions, protect social security, legalize and tax marijuana). But he is a clearly blue collar middle America guy who is a veteran, former factory worker, mechanic, and union organizer. There are zero pictures of him in a suit and he’s not some Ivy Leaguer who has been planning to run the world since he was a teenager. \n\nAnd he’s willing to speak on issues like securing the border and protecting gun rights that are going to be more popular in swing states than safe blue districts. We have to find a way to make practical compromises on those issues while genuinely understanding and agreeing with where middle America is on them.', 'created': '2024-11-13 00:41:21', 'submission_id': '1gpvu0s'}
{'comment': "That can really work for the next election in fact the party does have a populist side it's your Bernie Sanders Elizabeth Warren faction of the party. Rep Cortez it's part of that", 'created': '2024-11-12 23:18:01', 'submission_id': '1gpvu0s'}
{'comment': 'Why on earth would you tell them upfront that their T r u m p’s policies? Just have them read it out loud, then ask them who’s policies they think it is, then tell them the truth. The survey method you just described is bizarre as hell.', 'created': '2024-11-13 01:10:08', 'submission_id': '1gpvu0s'}
{'comment': "This is the fascist playbook as weaponized rhetoric.\n\nIt's not only about radicalizing people. \n\nIt's also about spreading so much propaganda and lies, that the misinformation field is so big, a lot of people are making decisions based mostly on falsehoods. Because they can't even really tell which way is up and which way is down anymore.", 'created': '2024-11-13 00:18:35', 'submission_id': '1gpvu0s'}
{'comment': "> majority of Americans get their information isn’t telling them that they’re Dem policies\n\nA majority of voters get their information from second-hand and third-hand sources, like some anonymous Twitter poster with 3 PhDs and a rainbow flag as their avatar proclaiming some drivel about the Democrats campaigning on extreme social justice issues when such issues make up a very small proportion of Harris' actual campaign, and only had a spotlight shone on it because of a Republican ad on gender affirming care for inmates.\n\nIt's easy to say there is a messaging issue because it's obvious the message wasn't heard. However, this also implies there is someone to hear it. Unfortunately, in tandem with a presumed messaging issue, there is also an issue with voters not wanting to hear it. In one ear, out the other, because the amount of time needed to process it is too long before it gets overwritten by the next Twitter/social media hot take.\n\nI do agree messaging needs to be changed, but it also needs to tailor to the listeners, because traditional forms of speech don't work very well anymore to the voters needed most to enact change.", 'created': '2024-11-13 00:29:16', 'submission_id': '1gpvu0s'}
{'comment': 'I know that many Trump voters would be screaming "INFLATION!" and some crap about government handouts and kids these days being lazy not working themselves through college though.', 'created': '2024-11-13 04:55:02', 'submission_id': '1gpvu0s'}
{'comment': 'Absolutely correct on that position. The only one in the party to do that so far is representative Cortez, who got bashed by VP Elect Vance for doing it with Gov Walz', 'created': '2024-11-13 05:34:07', 'submission_id': '1gpvu0s'}
{'comment': 'I can\'t stand that term anymore. It\'s broken.\n\nWhen I say "elites," and I think when you do, you are saying "extremely rich people who use wealth to control politics." When a Republican politician and by extension most of their base says "elite" they only mean "educated and liberal." They have twisted to to a curse word to inflame their base and nothing more.\n\nThis is where the wallpaper peels back and you see the class warfare that is actually hiding behind a culture war that the left doesn\'t even want to engage in... We just want people to be given equal say and equal opportunity and not face being ostracized or victimized by society for being a minority of some sort.', 'created': '2024-11-12 23:16:07', 'submission_id': '1gpvu0s'}
{'comment': 'You are correct on that I wonder what should the Democrats do in order to combat split vote', 'created': '2024-11-12 23:16:57', 'submission_id': '1gpvu0s'}
{'comment': 'I don’t want a coalition, I want a party for farmers and workers rights and issues. All the other issues are secondary to that. Yes, I care about environmental issues, social justice, and gay rights, etc, but real freedom is financial freedom. I want a party for everyone, just a bunch of small groups similarly aligned on a few things. Yes, we can enact those laws, but every single conversation needs to be about workers getting their fair share, how Wall Street is taking all of their wealth, and how the party will stand behind them every time. Nobody in a union believes the party after the rail road workers got shafted.\n\nThe messaging on economics is high brow garbage.', 'created': '2024-11-13 01:53:33', 'submission_id': '1gpvu0s'}
{'comment': 'Faux progressives would rather see the GOP in power forever than support anyone to implement actual progressive policies. \n\nThey just want to make money fighting the oppression than actually help people. The party should spend less time Kow towing to the demands of people who hate them.', 'created': '2024-11-13 01:35:49', 'submission_id': '1gpvu0s'}
{'comment': 'Kamala Harris literally ran with Liz Cheney. Going more moderate is not the move. If that’s what the democrats do they will just lose again.', 'created': '2024-11-13 03:44:48', 'submission_id': '1gpvu0s'}
{'comment': 'Meh, I personally value experience. I don’t like someone who doesn’t know anything about the way things work just waltzing into the top spot like Trump did. Maybe someone like Obama who isn’t in DC for decades and decades but still had some high level government management experience under his belt.', 'created': '2024-11-13 00:50:17', 'submission_id': '1gpvu0s'}
{'comment': 'I don\'t think Elizabeth Warren is likeable at all. But we could sure use someone who takes on an anti-oligarchy message.\n\nI think it frames people like Elon Musk as the evil establishment while making a not-so-subtle comparison to Russia\'s oppressive regime. "Oligarchy" drives the point home a lot more than "billionaire." Taylor Swift is a billionaire, but nobody\'s calling her a threat to democracy.', 'created': '2024-11-13 00:10:05', 'submission_id': '1gpvu0s'}
{'comment': 'Who do we have along those lines that isn’t old though?', 'created': '2024-11-13 02:09:56', 'submission_id': '1gpvu0s'}
{'comment': 'You are correct on that speaking of the Republican party they took that from Russia Hungary where this is common. The way they did it is having Tucker Carlson go there and then promote that idea on TV and streaming it at Republican friendly platforms remember the mainstream ones do ban them', 'created': '2024-11-13 00:47:27', 'submission_id': '1gpvu0s'}
{'comment': 'Sometimes I wish I didn’t have a job as a marketing director because I’d love to be a Dem strategist. Trump is already signaling getting the TikTok ban repealed, which isn’t a real ban, it’s an opportunity for a U.S. company to buy its domestic business. You know what Trump’s position looks like? Capitulation to China. The exact opposite of America First.', 'created': '2024-11-13 00:47:36', 'submission_id': '1gpvu0s'}
{'comment': "We have the issue that progressive policy isn't popular right now. I'm a pragmatist so a pivot center makes sense. Progressives have to convince people that their right. They need more activity at the state level to prove their policies work. And when it doesn't they need to abandon that policy for a different one that still achieves their same goal. Things like clinging to drug decriminalization after Oregon only add to the belief that they are out of touch.", 'created': '2024-11-13 01:57:24', 'submission_id': '1gpvu0s'}
{'comment': 'Personally my issue with Trump is his policy and behavior, not his lack of government experience. \n\nObama’s pre-presidential profile (not in DC for decades but still high level government experience) is pretty close to Harris’s. Why do you think voters rejected her?\n\nI’m not advocating for Osborn himself. I agree someone who has won statewide office at least once has a better argument. I’m just using him as an example of a clear appeal to middle America’s blue collar, non-urban workers, which are the voters I think we need to win over.', 'created': '2024-11-13 01:17:15', 'submission_id': '1gpvu0s'}
{'comment': 'Obama had zero high level government experience lmfao...\n\nHe was a senator....', 'created': '2024-11-13 01:14:23', 'submission_id': '1gpvu0s'}
{'comment': 'Because we are an oligarchy. Have 1 or 2 billion doesn’t make you an Oligarch anymore. Having 300 billion like Elon Musk makes you an Oligarch.', 'created': '2024-11-13 00:19:52', 'submission_id': '1gpvu0s'}
{'comment': 'Americans like TikTok and dislike censorship. \n\nIf we want to take TikTok from China, we shouldn’t present it as a ban and should simply say “we’re stealing TikTok the same way China steals our intellectual property. You’ll be able to use it the same way but it’ll now be an American company that makes Americans rich, instead of making the Chinese communist party rich.”\n\nThat’s something people will understand and that doesn’t imply they’re gonna lose access, which a ban does.', 'created': '2024-11-13 02:54:20', 'submission_id': '1gpvu0s'}
{'comment': 'Progressive polices are popular. Faux progressives refuse to vote for them because that might give Biden a win.', 'created': '2024-11-13 02:28:01', 'submission_id': '1gpvu0s'}
{'comment': 'That is high level government experience', 'created': '2024-11-13 01:22:39', 'submission_id': '1gpvu0s'}
{'comment': 'Exactly. A "billionaire" can be an oligarch, or they can be a successful businessowner with no interest in politics. We need language targeted at the real enemy. And income inequality is not a compelling enemy, unfortunately.', 'created': '2024-11-13 00:21:16', 'submission_id': '1gpvu0s'}
{'comment': 'This article may be behind a paywall. You can add 2-4 paragraphs as a quote in a comment. *Do not post the text for the entire article.*\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-12 21:08:51', 'submission_id': '1gpu3r0'}
{'comment': "We need to work, not fear. We need an on the ground network of Democrats in every community to act as both reach-out and listeners. \n\nThe party has to quit acting like a Brigadoon which appears only for a few weeks before an election. We need a presence every day of the year because it's the only practical way to combat the Musk/Zuck/Fox media stranglehold which serves the GOP.", 'created': '2024-11-12 21:24:25', 'submission_id': '1gpu3r0'}
{'comment': 'This is partially your fault NYTimes…', 'created': '2024-11-12 21:23:35', 'submission_id': '1gpu3r0'}
{'comment': 'The only thing the Democrats need to do is point out everything that turns to crap because of Trump and practice their "You were warned" and "I told you so"\n\nRepublicans are the white van speakers of economic prosperity, they haven\'t left America\'s economy better than they found in over 40 years.\n\n...betting on Republican failure is like betting on the sun to rise.', 'created': '2024-11-13 01:08:14', 'submission_id': '1gpu3r0'}
{'comment': 'We should be embarrassed & mournful... all our futures are set down the Accelerationists Path. \n\nThe ramifications of this disaster will last for a generation.', 'created': '2024-11-12 21:41:17', 'submission_id': '1gpu3r0'}
{'comment': 'We have four years to come up with a better candidate, assuming we still have elections in four years. Here are some things to keep in mind:\n\n1). The main reason Harris lost is because Democrats kept trying to pretend that the economy was secretly doing great when in reality most people are struggling. Embrace populism, don\'t nominate another centrist\n\n2). It hurts to say it, especially because I want AOC to be president, but I don\'t think America is ready for a woman president. We need to find a male populist progressive.\n\n3). The excesses of "wokeness" cost the Democrats young men. Do not get me wrong: TRANS RIGHTS ARE NON-NEGOTIABLE. However, stuff like "Latinx" and radical misandrist feminists hurt the Democrats\' image. It doesn\'t matter if these people are fringe, it\'s bad for the Democrats\' brand and the next Democratic nominee should disavow it. When Latino men are voting for Trump despite Trump\'s blatant racism against them you know we have a problem', 'created': '2024-11-13 03:19:35', 'submission_id': '1gpu3r0'}
{'comment': 'To paraphrase from two series: Fear leads to anger and anger gets shit done.\xa0', 'created': '2024-11-12 22:22:05', 'submission_id': '1gpu3r0'}
{'comment': 'But not as Democrats. We need a grassroots movement of Americans for democracy just reaching out to other Americans. \n\nAnd I say this, because as soon as we lable ourselves as Democrats, we then connect ourselves with all of the propaganda and lies the Republican Party has spread about Democrats.', 'created': '2024-11-12 23:11:47', 'submission_id': '1gpu3r0'}
{'comment': '(Just gonna leave this here...) [https://www.hopiumchronicles.com/p/gallego-and-whitesides-win-walking](https://www.hopiumchronicles.com/p/gallego-and-whitesides-win-walking)', 'created': '2024-11-12 21:27:08', 'submission_id': '1gpu3r0'}
{'comment': "Guy who wrote this doesn't work for the Times, and so I'm not entirely sure he can be blamed, but I understand your point.", 'created': '2024-11-12 21:26:11', 'submission_id': '1gpu3r0'}
{'comment': "Normally I agree but the uncertainty of having a next election makes me think it doesn't really matter. They will have all branches of government.", 'created': '2024-11-13 04:56:35', 'submission_id': '1gpu3r0'}
{'comment': "Only if we allow it to be. Once Trump is gone, so goes the cult as a voting bloc. And with it, the GOP's chances at the presidency.", 'created': '2024-11-12 21:44:05', 'submission_id': '1gpu3r0'}
{'comment': 'Re #2: I bet Michelle Obama could pull it off.', 'created': '2024-11-13 05:12:24', 'submission_id': '1gpu3r0'}
{'comment': "Huh? You don't strengthen the party by dissembling.\n\nIt's time to get out of the closet. Since when do Republicans hide their identity? When people notice that we're their neighbors and we don't have horns and pointed tails, their attitudes begin to change.\n\n>*OMG, you're a Democrat? I used to think you were all Marxists who performed sex-change operations on aborted babies.* \n\nYou'll get no respect from voters by cowering in a corner with the lights off.", 'created': '2024-11-12 23:22:09', 'submission_id': '1gpu3r0'}
{'comment': 'Grant did a guest lecture for us a Georgetown while I was there on navigating change…. Really brilliant guy', 'created': '2024-11-13 07:23:47', 'submission_id': '1gpu3r0'}
{'comment': 'I don\'t think that changes the plan.\n\n...any power grab like that has to be met with "You were warned" and "I told you so" as well.\n\nYou have to get people mad in such a situation to get them out in the street. If you don\'t have elections, strikes and being in the streets would be the options left for the people.\n\nRepublicans would have to be removed by the people, one way or the other. If it\'s not elections and it has to be the other ...the opportunity should be taken to go further, to rewrite the constitution, to eradicate money and religion from politics and to remove conservative judges.\n\nI\'d go so far as to redraw state maps to minimize rural influence. Idaho, Montana, Wyoming and the Dakotas will be one state. The South will get 1 or 2 rural super-states with 3-5 states of grouped urban areas.\n\nIf Republicans want to scrap democracy then a new and better one will need to be built.\n\nThe plan against Republicans doesn\'t change if they suspend democracy, just what will need to be done to defeat them.', 'created': '2024-11-13 12:05:23', 'submission_id': '1gpu3r0'}
{'comment': 'The Pulpit is set for the Power Vacuum', 'created': '2024-11-12 22:19:23', 'submission_id': '1gpu3r0'}
{'comment': ">You don't strengthen the party by dissembling.\n\nI'm not dissembling. \n\nMy primary goal is not to strengthen the party. \n\nI want to stop fascism. We need people to be antifa.\n\nThe GOP has engaged in psyops against US citizens. Even against their own voters. \n\nThe people we need to talk to are obviously not the diehard trumpers. \n\nBut the other people who voted for Trump. And many of the people who sat out the election. Most of them believe that neither party can be trusted. Others are tired of what they perceive as a divisiveness that is caused by both parties.\n\nSo one of the major effects of the propaganda and lies is that they are not listening to Democrats. They will not be open to you if you go to them as a Democrat.\n\nSo the first step is to get them to open their eyes to what Trump is. And what Trump will be doing. Speak to them as an American, a patriot.\n\nIf you get them to wake up, and see reality. Then you can lead them to why they should support Democrats.\n\nBut if you can get them to wake up, you probably won't even have to talk about supporting Democrats. They'll make it there on their own.", 'created': '2024-11-12 23:41:05', 'submission_id': '1gpu3r0'}
{'comment': 'I agree wholeheartedly. BUT will we collectively do this? I do notice some are finally (far too late) waking up.', 'created': '2024-11-15 13:04:04', 'submission_id': '1gpu3r0'}
{'comment': 'And the vacuum will suck everyone who tries to take it into oblivion.', 'created': '2024-11-13 00:32:24', 'submission_id': '1gpu3r0'}
{'comment': 'Yea because "antifa" really gets independents to come on over...🤦', 'created': '2024-11-13 02:04:17', 'submission_id': '1gpu3r0'}
{'comment': 'I think the way it will play out is Trump will force society in this direction.\n\nI can\'t say all the specifics I mentioned will come to pass, but I think the "configuration of potentiality" sets the stage for some political conflagration.\n\nThe levels of incompetence and ignorance possessed by the cabinet Trump is building begs for things to go disastrously wrong. Trump is inviting disaster and the more that goes wrong, the more opposition will drive people to act. I think a growing opposition and Trump\'s intransigence will create a feedback loop of social unrest.\n\nThe talk of suspending congress and a 3rd term indicate that the entirety of the constitution is on borrowed time. Trump may scrap it to keep power and in doing so, may make it easier to make changes during its reinstatement.', 'created': '2024-11-15 15:05:12', 'submission_id': '1gpu3r0'}
{'comment': "Did I say to tell them that specifically? \n\nBut I get it. That's all you could come up with to say. You probably shouldn't go out and talk to Independents.", 'created': '2024-11-13 04:07:15', 'submission_id': '1gpu3r0'}
{'comment': 'Well I think you\'re saying my worst case scenario. It\'s what\'s on my mind all the time. However, do you think they are capable? I know they have foreign "help" but I foresee some imploding. Too many with the same, shall we say State of mind, greedily scratching each other\'s eyes out?', 'created': '2024-11-16 23:00:19', 'submission_id': '1gpu3r0'}
{'comment': "The worse Trump's behavior makes it, the worse the reaction ...to put it in the simplest terms.\n\nTrump seems to be going the more radical route, so what should I expect the reaction to be?", 'created': '2024-11-16 23:05:19', 'submission_id': '1gpu3r0'}
{'comment': 'I didn\'t expect him not to. So many variables could happen it\'s frightening. However, I do not think the majority of our society will follow. I believe, regardless of the election results (because many were not paying attention, etc) those who aren\'t heathens will reject his madness. It will depend on what WE do. Expecting Americans to mobilize feels like pulling teeth at the moment. As soon as they are **DIRECTLY** affected by just one of his "concepts" of policies the pitch forks will be picked up. I know I will.', 'created': '2024-11-17 13:56:02', 'submission_id': '1gpu3r0'}
{'comment': 'probably no point in commenting here but oh well:\xa0\xa0\n\n\n>If the norms we followed brought us to\xa0this, of what use were those norms?\xa0\xa0\n\n\nI think this is the wrong question, but since he asks I guess my answer is "not *as much use* as you thought they were unless both parties participate."\xa0 \xa0not "no use at all."\xa0 \xa0', 'created': '2024-11-12 20:11:18', 'submission_id': '1gps8al'}
{'comment': '1. A Simple Question\nShould President Joe Biden attend Donald Trump’s inauguration?\n\nMy gut reaction is, “Yes. Obviously.”\n\nNorms are important. Prior to January 2021, presidents traditionally attended the handoff ceremony to their successors. This act of graciousness sent an important signal of unity to the country. It told Americans, If the men who fought this election view one another as friends and patriots, then you should view them—and your neighbors—the same way.\n\nThis norm was also a message that whatever might have been said in the heat of the campaign, everyone believed that the incoming president was operating within the American mainstream. No one was worried that the new guy might be Mussolini. The presence of the outgoing president reassured the country that, Don’t worry, folks. We’re still playing between the 40 yard lines.\n\nOr, as President Biden put it last Thursday, “You can’t love your country only when you win” and “you can’t love your neighbor only when you agree.”\n\nI love this stuff. Tradition! Civility! Norms! But I’m here to question stuff I love.', 'created': '2024-11-12 19:52:50', 'submission_id': '1gps8al'}
{'comment': 'Y’all dems had better stop acting like Trump is going to follow any rules.', 'created': '2024-11-13 03:34:05', 'submission_id': '1gps8al'}
{'comment': 'We also have lots of lawyers waiting to be deployed to block everything', 'created': '2024-11-13 02:17:35', 'submission_id': '1gps8al'}
{'comment': '[removed]', 'created': '2024-11-12 20:55:49', 'submission_id': '1gps8al'}
{'comment': "The norms are useful because everyone knows what they are supposed to be, esp. the US' investors & foreign debt holders. \n\nIf things get too crazy, they'll pull out, Moody will issue a warning, & business will freak. This may be the last desperate way to claw ourselves back to democracy.", 'created': '2024-11-12 21:16:28', 'submission_id': '1gps8al'}
{'comment': 'Yeah. The norms were good. Until one party decided to stop following them. It’s not that the norms should be abandoned - rather they should be *enforced*', 'created': '2024-11-13 00:31:35', 'submission_id': '1gps8al'}
{'comment': "The problem with the norms are that they work when everybody is participating in democracy in good faith. \n\nBut when one side decides that they'll use a free and fair democratic election to elect a tyrant, to turn our country into an authoritarian state. Well. Then some of the norms might not be helping anymore.", 'created': '2024-11-13 00:45:42', 'submission_id': '1gps8al'}
{'comment': 'It won’t be lawyers they come at us with. You are wholly missing the reality that social contracts and norms are done.', 'created': '2024-11-13 04:24:44', 'submission_id': '1gps8al'}
{'comment': 'Hey Mods. Suspected bot or Russian troll here ⬆️', 'created': '2024-11-12 21:24:38', 'submission_id': '1gps8al'}
{'comment': 'Yeah, I\'ve kind of been playing with this idea for a while. We keep saying that Trump and his sycophants are there to do the bidding of the billionaire class, which, OK, fine, I\'ll go with. But disrupting the business of running the country can\'t be good for business. If we start having a constitutional crisis because someone say, refuses to certify an election, or refuses to leave office after being voted out, the resulting social unrest and financial meltdown may trigger Trump\'s donors to say "enough."', 'created': '2024-11-12 21:36:07', 'submission_id': '1gps8al'}
{'comment': "for what it's worth. if you ask me. and similar kinds of disclaimer up front.\n\ni don't think there is a system or a rule set or any kind of thing that could be set up to encode and preserve them, that would NOT be susceptible to abuse if it got in the wrong hands. i'm not saying it should just be left as it is. it's not my place anyway since i'm not american. but i've been thinking about this kind of thing a lot, ever since putin invaded ukraine. the more you learn about places like russia and how it actually works, the more you realise there is no proposed answer, ever, that does not have a 'what could this do in the hands of a bad actor' back side. \n\nyou can't have no rules just because some fuckhead might know how to use it to their own ends. every time i think about any of it, it always seems to come down to the same single deciding factor: human integrity. \n\nofc, 'integrity' is a little too simple since insight and suchlike are important too. but i'm just sayin'.", 'created': '2024-11-13 01:18:39', 'submission_id': '1gps8al'}
{'comment': "yes, or even just enough people.\n\ni would love to be able to freeze every single person in the entire chain of gop-dom who met a decision moment and took the wrong path, and then just spelunk around in their minds to find out the why. i know there's no shortage of guesses and theories, and i think i've heard most of them. but i'm tired of all that. on the granular individual level i would love to actually **know**.\n\nwouldn't hurt them or try to mess with whatever is going on inside there (seriously). i'm just so god damn curious.", 'created': '2024-11-13 00:55:54', 'submission_id': '1gps8al'}
{'comment': 'No new thoughts?', 'created': '2024-11-13 16:26:10', 'submission_id': '1gps8al'}
{'comment': 'Thoughts on the new comments?', 'created': '2024-11-13 14:26:26', 'submission_id': '1gps8al'}
{'comment': 'I’m still thinking about it and I still can’t figure out what the hell you think I meant. Fiat means faith or trust based (“by decree”) and if you don’t have faith in your government, it no longer exists as you know it… just like any system.', 'created': '2024-11-13 04:32:44', 'submission_id': '1gps8al'}
{'comment': 'Okay, McCarthy', 'created': '2024-11-12 22:00:19', 'submission_id': '1gps8al'}
{'comment': 'They’re insulated.\n\nHistorically the rich don’t learn to keep their hands out until the angry mob is literally into their living room.', 'created': '2024-11-13 13:36:18', 'submission_id': '1gps8al'}
{'comment': 'I would like to know that myself because I just can’t believe a good friend of mine would vote for Donald Trump. Just because she was a republican. It’s gotta be something deeper.', 'created': '2024-11-13 01:13:19', 'submission_id': '1gps8al'}
{'comment': '>in the entire chain of gop-dom who met a decision moment and took the wrong path\n\nWeaponized fascist rhetoric is more of a psychologically conditioning. So probably not a specific moment for many of them who shifted more right. But rather long-term exposure to propaganda and lies. \n\nFor example, I have a story like many other people. My mother voted for Obama and liked him. But during his second term, she started watching Fox News everyday (as we found out later). She became very hostile and negative about Obama, and embraced Trump when he ran.\n\nAnd well before Trump, the Republicans had been sowing distrust of the media, distrust of experts, distrust of Democrats, fear of change. And so as people became more exposed to it, the more they embraced it.', 'created': '2024-11-13 04:23:26', 'submission_id': '1gps8al'}
{'comment': 'I haven’t turned on NPR once since the election. I just can’t hear about it. I’m listening to Christmas music earlier than I ever have to keep my mind in a happy place.', 'created': '2024-11-12 20:15:42', 'submission_id': '1gprvlu'}
{'comment': 'Yea I’m checking out for a bit. I’ll always vote blue, tho. Fuck these guys.', 'created': '2024-11-12 19:44:39', 'submission_id': '1gprvlu'}
{'comment': "Used to watch MSNBC every day at home... Haven't turned on the TV since the results came out.", 'created': '2024-11-12 19:56:36', 'submission_id': '1gprvlu'}
{'comment': 'Well duh. Who wants to be reminded that fascism is here?', 'created': '2024-11-12 20:02:08', 'submission_id': '1gprvlu'}
{'comment': 'I haven’t turned my tv on since last Wednesday. I have chosen to live in an alternate universe in la la land until midterms. I told my mom to let me know when any more of my rights get taken away, but otherwise I don’t want to hear it.', 'created': '2024-11-12 20:14:49', 'submission_id': '1gprvlu'}
{'comment': 'I can’t look at the news anymore. It’s just too painful.', 'created': '2024-11-12 20:22:20', 'submission_id': '1gprvlu'}
{'comment': "yeah I'm done with all of it. \n\nI voted in every single election in my adult life since I turned 18. \n\nI have struggled and I have fought and I got to watch this year how all of your arguments can wash away in the face of a indifferent news media that is more interested in clicks and sensational headlines. \n\nI'll still show up to vote on election Day and check my mark for the D. \n\nBut I'm out. \n\nI got no more emotional bandwidth for this bullshit. \n\nI thought it was really great that NPR started talking about tariff policy and what global inflation was.... AFTER THE ELECTION.", 'created': '2024-11-12 20:40:57', 'submission_id': '1gprvlu'}
{'comment': 'It sure did at my house. No hope left.', 'created': '2024-11-12 19:54:09', 'submission_id': '1gprvlu'}
{'comment': "The article also mentions that this has impacted the viewership of CNN as well. Of course faux news is impervious to this because their viewership is made up of the automaton masses. I personally am checking out of my normal news ingestion as I don't want to witness the devastation that is to be wrought by this ersatz republican party and their useful idiot. Ill come up for air every now and then when they start talking about national abortion bans, entitlement cuts and tax cuts for the rich. Ill eat a kernel of popcorn for each idiot that didn't expect project 25 to come to fruition because of their decision to vote the way they did. Ok, that may be too much popcorn but the sentiment has been shared.", 'created': '2024-11-12 19:43:09', 'submission_id': '1gprvlu'}
{'comment': 'I haven’t watched any news since Nov 6th. I’m exhausted by everything Trump 24/7 for the last 10+ years and I thought we’d finally be rid of it/him. I’m done and out.', 'created': '2024-11-12 20:37:26', 'submission_id': '1gprvlu'}
{'comment': 'I turned off MSNBC on Nov 6 at 3am and haven’t turned it back on since. I just need a break this loss was a real sock in the gut. I’ll keep getting the breaking news from Reddit and TikTok for now.', 'created': '2024-11-12 20:24:37', 'submission_id': '1gprvlu'}
{'comment': "Maybe don't give him a billion dollars worth of free good press.", 'created': '2024-11-12 20:05:44', 'submission_id': '1gprvlu'}
{'comment': 'See ya in 2 years for midterms', 'created': '2024-11-12 19:57:16', 'submission_id': '1gprvlu'}
{'comment': 'The media wants Trump for his ratings do your best not to give it to them', 'created': '2024-11-12 20:21:33', 'submission_id': '1gprvlu'}
{'comment': 'I’m one of those people. Sorry Rachel and Lawrence, it’s nothing personal. I also have stopped watching the Daily Show, Seth Meyer, Jimmy Kimmel, and SNL. Like someone else said “I need to regroup”.', 'created': '2024-11-12 20:43:53', 'submission_id': '1gprvlu'}
{'comment': "because they lied to us. i got so roped in that trump was a dud, and i watched almost everyday. i won't trust any mainstream media again.", 'created': '2024-11-12 20:20:45', 'submission_id': '1gprvlu'}
{'comment': 'Constantly blaming the Dems for everything. MSM failed everybody.', 'created': '2024-11-12 20:19:28', 'submission_id': '1gprvlu'}
{'comment': '3 months of 8 hours daily for me. Definitely staved off since the election. Mental health is important. \n\nSpinning records, made weed butter and Non-THC fudge yesterday. As well as a big old club sandwich on toasted asiago and herb bread with provolone, avocado, tomato, greens, and brown mustard. Prestiged in the new Black Ops 6 😏 hung out with my amazing Wife last night and watched The Penguin 😎', 'created': '2024-11-12 21:08:08', 'submission_id': '1gprvlu'}
{'comment': 'MSM is responsible for sanewashing Trump, fuck all of them', 'created': '2024-11-12 22:05:26', 'submission_id': '1gprvlu'}
{'comment': 'Yea I don’t liked being kicked in the nuts daily', 'created': '2024-11-12 20:11:03', 'submission_id': '1gprvlu'}
{'comment': "Yup, we haven't watched anything but reruns of Seinfeld, B99, The Office, and a few murder investigation shows for a week. No point in hearing the talking heads babble on breathlessly over what went wrong.", 'created': '2024-11-12 20:17:50', 'submission_id': '1gprvlu'}
{'comment': 'They were so wildly off that my time is better spent watching fiction', 'created': '2024-11-12 20:20:19', 'submission_id': '1gprvlu'}
{'comment': 'Curious if it has effected reddit user rate is. It has been tough to be on here after the election. Just constant doom and gloom. Really have been struggling to find entertainment over last week.', 'created': '2024-11-12 20:20:45', 'submission_id': '1gprvlu'}
{'comment': "People just want a break from the noise. They'll be back.", 'created': '2024-11-12 20:31:39', 'submission_id': '1gprvlu'}
{'comment': 'Yeah no news for me anymore. If anyone can tell me the point of watching unchecked corruption and lawlessness I’ll tune back in. As is, though, just frustrating and depressing.', 'created': '2024-11-12 20:31:38', 'submission_id': '1gprvlu'}
{'comment': "I mean, I can't speak for anybody else, but I don't particularly want to tune in and watch all the hand wringing and finger pointing. It doesn't help me, and I'm already depressed enough about the state of our country and the majority of our fellow citizens.", 'created': '2024-11-12 22:00:56', 'submission_id': '1gprvlu'}
{'comment': 'I was previously a daily consumer of various political news across the spectrum, but I have watched zero political coverage since 11-5-24, and I will not be doing so for the foreseeable future. Neither the networks or that man deserve my time.\n\nThere are good commentators, certainly, but somehow, some way, the keepers of the keys for political broadcasts have got to understand that Trump was re-elected in part because of their non-stop years-long toadying coverage portraying him as a normal Republican candidate in a normal political “horserace” and holding him and Harris to entirely different standards. \n\nWhile there was some recent increased coverage of his mental decline and unfitness for the office, it was far too little, far too late.\n\nWhen everything is “breaking news”, eventually nothing ends up being breaking news. Every outrage covered in exhaustive detail, on repeat for days. Attempts at accountability were weak and timid and scarce. It all contributed to the non stop firehose of crazy to which we’ve all become inured, and again, if everything is an outrage, eventually nothing is an outrage. WHICH. WAS. HIS. PLAN. \n\nI can only hope viewership continues to decline across the board until the oligarch class feels it in their wallets, since that’s clearly all they care about or are motivated by. I’m sure the right wing establishment and their gullible consumers are currently in full-on gloating mode. Uncaring or unaware that Trump wants nothing more than to dismantle democracy, enrich himself, and avoid legal accountability until he runs out the clock on his dark, vile, small, selfish, unrepentant, unredeemable life.\n\nThe only bright lining that I can see going forward is that he will not be able to restrain his darkest impulses, so the fallout will be swift and should be rightly laid entirely at his feet. His lapdogs will spend the next four years trying to explain away disastrous policies, events and the consequences of his increasingly addled behavior. I wish them all the luck they deserve.\n\nAs for his supporters, may every policy they promote with the intention of hurting others be turned back upon them. Any policy good enough to punish people they hate should be equally applied to them and the people they love. \n\nI will remain informed via a variety of non-profit print and media entities. I am more than capable of educating myself. Thanks so much, cable news, for your hand in destroying our democracy.', 'created': '2024-11-13 02:48:20', 'submission_id': '1gprvlu'}
{'comment': 'After the results, I definitely need a bit of a breather. My disappointment for the country, the House and Senate, the environment, Trump’s legal cases,, LGBTQ, Trans kids, Ukraine, and a million other things was and is profound.', 'created': '2024-11-12 20:32:40', 'submission_id': '1gprvlu'}
{'comment': 'Much like other commenters, my household is part of this. Thought we were getting insightful takes that could counter the Fox News narrative. Turns out that’s not the case. We need some time away and won’t be returning for a long, long time. \n\nBesides, who needs talk news when other social media is dominated by politics anyway? (Only half sarcasm.)', 'created': '2024-11-12 20:20:05', 'submission_id': '1gprvlu'}
{'comment': "Because watching people talk about the election hurts. I still haven't gone back yet.", 'created': '2024-11-12 20:30:13', 'submission_id': '1gprvlu'}
{'comment': 'Not surprised. A lot of us just can’t stand to witness this downfall of democracy.', 'created': '2024-11-13 01:15:22', 'submission_id': '1gprvlu'}
{'comment': 'I was hyper focused on all these impeachments, investigations, committees, scandals, trials, indictments, and it all went NOWHERE Just an inexcusable waste of time. I intend to find better balance and work on myself plus whatever local efforts are needed to help democrats', 'created': '2024-11-13 08:06:11', 'submission_id': '1gprvlu'}
{'comment': "I had it on all day long while working. I just can't bear to have it on right now.", 'created': '2024-11-12 20:05:28', 'submission_id': '1gprvlu'}
{'comment': "I live in a very conservative neighborhood. After the bitter defeat the D's took, all the people like me that feel down as hell, should go outside and walk around the block at 6PM. We could see who our friends are and see who we share ideals with. At least we'd know.", 'created': '2024-11-12 20:21:35', 'submission_id': '1gprvlu'}
{'comment': 'I feel this hard. I really enjoy a lot of, if not all of the hosts/anchors on MSNBC, but after the results I just can\'t watch the news. It\'s been a big problem for me right now. I usually like to have something on in the background while I work and MSNBC was perfect. Now I\'m just working in silence or spending way too much time looking for something I\'m "in the mood" to "watch" (but not actually watch cus I\'m not really paying super close attention. \n\nI just need to check out for a bit, but I feel bad that it could possibly negatively affect those I enjoy on MSNBC. \n\nSide note: they should really make MSNBC available off cable. I had to basically find the cheapest ($40/month) cable subscription to just watch MSNBC.', 'created': '2024-11-12 20:36:22', 'submission_id': '1gprvlu'}
{'comment': "I like MSNBC and prefer it as a news network over CNN, but yeah I'm gonna try to tune out mainstream news coverage for a while for mental health and not wasting my time. Ofc unless someone huge happens I'll take a look", 'created': '2024-11-12 21:08:54', 'submission_id': '1gprvlu'}
{'comment': 'I think people will be back, we just need a break.', 'created': '2024-11-13 01:48:51', 'submission_id': '1gprvlu'}
{'comment': 'I blame the media. They too were complicit', 'created': '2024-11-13 04:30:29', 'submission_id': '1gprvlu'}
{'comment': 'I turned the coverage off at 7 pm PST on election night and haven’t gone back.', 'created': '2024-11-13 08:48:46', 'submission_id': '1gprvlu'}
{'comment': ' Just can’t stomach the thought I have to hear about our upcoming new President. I am done with the news for quite some time. Have never felt so much anxiety and disappointment. I look at everyone with disgust because I don’t know who voted for this idiot but we can kiss our democracy goodbye. I don’t even want to socialize with anyone.', 'created': '2024-11-13 14:11:53', 'submission_id': '1gprvlu'}
{'comment': 'I mean, they are blaming everyone but the white GenX that went to Trump overwhelmingly. No other age demographic voted for Trump. Instead, they use euphemisms to blame any vulnerable group and minorities. They are literally whitewashing the truth live on air. They aren’t that much better than FOXNEWS at this point in the way they ignore the fact that racism, sexism and victimhood elected Trump, and now we will get a steady diet of that from every other budding politician.', 'created': '2024-11-12 19:49:46', 'submission_id': '1gprvlu'}
{'comment': '\n\nFuck the mainstream media', 'created': '2024-11-12 20:12:59', 'submission_id': '1gprvlu'}
{'comment': 'I mean I feel like my faith in the Democratic Party as a whole has been shook by the travesty of last week’s election results…I’ll always vote blue down the ticket regardless but the party needs to get its shit together. A prosecutor not only losing the electoral college, but also the popular vote to a convicted felon…something is seriously fucking wrong with this country…', 'created': '2024-11-12 21:15:17', 'submission_id': '1gprvlu'}
{'comment': "Not surprised. It's too painful to hear about Trump and all the premature debates about what went wrong. I also stopped listening any podcasts on current affairs and doing audiobooks for now. The only place I am getting a little news is to pick up a bit clue here and there on Reddit comments. Even that sometimes is too much. Also very seriously considering to leave US in Jan.", 'created': '2024-11-12 21:01:18', 'submission_id': '1gprvlu'}
{'comment': 'I stopped watching news a week ago. I’m going to spend the next 4 years just repeatedly rewatching The Office. Michael Scott is the extent of dysfunctional leadership that I can handle.', 'created': '2024-11-12 21:08:51', 'submission_id': '1gprvlu'}
{'comment': "I have cut back on news consumption but won't tune out entirely. My reasoning: if there is a wasp in the room I want to keep my eye on it to see where it is. I don't need news organizations telling me how to feel about things, but I will keep my eye on the wasp in the room.", 'created': '2024-11-12 22:08:21', 'submission_id': '1gprvlu'}
{'comment': 'I’m done consuming news, and really I’m done with TV in general. I know when elections are (presuming we still have them). And I can just research what I need to know leading up to elections. I have the apps I need and friends that will keep me in the know. He loses the ratings, moves out of my head, and I control my peace where I can.', 'created': '2024-11-13 00:31:49', 'submission_id': '1gprvlu'}
{'comment': 'It’s just exhaustion. We need a recovery period. But MSNBC is the only legacy news I will watch moving forward. Screw CNN.', 'created': '2024-11-13 00:52:06', 'submission_id': '1gprvlu'}
{'comment': 'I’m done watching news, cable or network. They are the ones who gave this guy steam when he first came on the scene. They all disgust me now.', 'created': '2024-11-13 01:23:37', 'submission_id': '1gprvlu'}
{'comment': 'Guess they should have done a better job at broadcasting the democrat’s good policy instead of hating on biden', 'created': '2024-11-13 01:31:26', 'submission_id': '1gprvlu'}
{'comment': 'Yup, I can\'t. I feel like corporate media is dead. All the hand ringing, all the "he\'s finished this time" certitude, all the ponderous articles and unprecedented this and that, and it wasn\'t worth anything in the end', 'created': '2024-11-13 01:32:21', 'submission_id': '1gprvlu'}
{'comment': 'I have not watched the news one single time since November 5th.', 'created': '2024-11-13 01:47:35', 'submission_id': '1gprvlu'}
{'comment': "I'm going to try to take a 3-4 year break from the news. I haven't turned it on since last Wednesday morning.", 'created': '2024-11-13 01:55:17', 'submission_id': '1gprvlu'}
{'comment': 'I’m not going to doom scroll for the next decade or however long dipshit holds on to power. This timeline is the absolute worst.', 'created': '2024-11-13 02:26:30', 'submission_id': '1gprvlu'}
{'comment': 'Because self care is a thing...', 'created': '2024-11-13 04:18:13', 'submission_id': '1gprvlu'}
{'comment': 'Ever since the election I can’t stomach the news. I’m over it!', 'created': '2024-11-13 04:41:08', 'submission_id': '1gprvlu'}
{'comment': 'For me, I bet they\'re (news outlets) are going to go back to tRump TV 24/7 for the next 4 years. "Reporting" on every word that comes out of his mouth and criticizing it ALL DAY LONG.\n\nNot me, not this time. I\'m done w network news, because, it\'s not the news anymore. It should be called "opinion TV". 5% facts mixed w 95% opinions.', 'created': '2024-11-12 20:26:15', 'submission_id': '1gprvlu'}
{'comment': 'I weaned myself off of this garbage and all the other blathering news talkers.', 'created': '2024-11-12 20:12:42', 'submission_id': '1gprvlu'}
{'comment': 'Hard to watch', 'created': '2024-11-12 20:23:42', 'submission_id': '1gprvlu'}
{'comment': 'Related, I’ve left twitter and honestly won’t go back at this point I imagine', 'created': '2024-11-12 20:25:46', 'submission_id': '1gprvlu'}
{'comment': "Yeah, I'm done with news for a while. My nerves can't take this shit anymore", 'created': '2024-11-12 21:36:53', 'submission_id': '1gprvlu'}
{'comment': "Non-American observing from a distance here. My impression is that all the news services were portaying Trump in sharp decline and Kamala in ascendence. Even Fox news was giving Trump pushback on some of his claims. This lulled a lot of people into thinking they didn't beed to show up. I tried to upvote and / or share every post I could encouraging people to vote for her especially ones that pointed out the parallels to 2016. Having said all that you need to keep digging into the mailed in ballots and Elon Musks not veiled at all bribery offer.", 'created': '2024-11-12 22:35:56', 'submission_id': '1gprvlu'}
{'comment': "Well yeah we're back to dreading watching the news because it's gonna be nothing but bad shit.", 'created': '2024-11-12 22:43:10', 'submission_id': '1gprvlu'}
{'comment': 'I mean… duh, we’re burned out and depressed.', 'created': '2024-11-12 22:53:07', 'submission_id': '1gprvlu'}
{'comment': 'I was a regular viewer but just cut the cable cords a month ago and now just have a couple of free streaming apps. I still like MSNBC but needed a break.', 'created': '2024-11-12 23:04:44', 'submission_id': '1gprvlu'}
{'comment': "I think we're all mentally & emotionally exhausted by the whole thing now. I haven't watched any national news since the election. And my opinion now is just let it all burn. If this is what the majority of American citizens want, if they were willing to elect a person like Trump to the White House with all his myriad character defects & mental health issues, then let them burn it **all** down for all I care.\n\nI have no control over anything Trump & his cronies do for the next 4 years, so I just don't care anymore. When Dem leadership steps up and starts going for the GOP jugular, then *maybe* I'll be in again. *Maybe* I'll donate to Dem causes again. Because that's what it's gonna take - going for the jugular. Until then, count me out...", 'created': '2024-11-12 23:27:16', 'submission_id': '1gprvlu'}
{'comment': 'theres no reason to watch the news now', 'created': '2024-11-12 23:32:20', 'submission_id': '1gprvlu'}
{'comment': 'I think people just need a mental break at the moment. Nothing against MSNBC as i think they’re great. 😌', 'created': '2024-11-12 23:37:12', 'submission_id': '1gprvlu'}
{'comment': 'Except for Deadline Whitehouse once and a while, I’m only watching Rachel and Lawrence.\nThe rest of the daytime hosts suck.', 'created': '2024-11-13 00:16:31', 'submission_id': '1gprvlu'}
{'comment': 'I just can’t hear about Trump anymore. His voice, his face, incessant talk about him. I’ll catch up by reading the news every once in a while, but otherwise I can’t stand hearing about the guy.', 'created': '2024-11-13 00:17:44', 'submission_id': '1gprvlu'}
{'comment': 'I stopped watching. I didn’t feel like watching Joe Scarborough blame Harris’s use of pronouns as the reason why she lost.', 'created': '2024-11-13 00:38:29', 'submission_id': '1gprvlu'}
{'comment': 'We can’t watch. We love MSNBC. I watched Rachel religiously every night of the first administration. I felt all the fears. It was my patriotic duty to know what was happening. Now, I can’t do it again. I just can’t. It feels like cancer came back and have to start chemo all over again.', 'created': '2024-11-13 00:53:23', 'submission_id': '1gprvlu'}
{'comment': 'Listened to few podcasts but haven’t consumed one iota of cable or mainstream news.', 'created': '2024-11-13 01:06:22', 'submission_id': '1gprvlu'}
{'comment': 'Husband and I checked out. We need a mental break from the news.', 'created': '2024-11-13 01:09:07', 'submission_id': '1gprvlu'}
{'comment': 'Its depression and people not being able to stand listening to what is happening. A lot of people on the left are taking a mental health break', 'created': '2024-11-13 01:09:15', 'submission_id': '1gprvlu'}
{'comment': "i haven't watched much of anything. no cnn. no youtubers. i don't want the algorithm giving suggested videos of other trump news and maga gloating lol.\n\ni did try to watch by typing cnn or a youtuber in the search bar. yknow it pulls up only videos related to your search, and it usually doesn't match anything else unless you scroll down some ways. and then i wouldn't click on a video but mouseover it because it will still play but with captions lmao. i tried to watch a few that way. decided i'll just stick to reddit.", 'created': '2024-11-13 01:39:50', 'submission_id': '1gprvlu'}
{'comment': "It was my wife's favorite place to go. She hasn't watched it since election night.", 'created': '2024-11-13 02:11:42', 'submission_id': '1gprvlu'}
{'comment': 'I’m done watching the news. I’ll just wait until the gestapo comes to arrest me.', 'created': '2024-11-13 02:25:52', 'submission_id': '1gprvlu'}
{'comment': 'This is a great time for MSNBC to build out a completely new image. Integrated fact checking in real time would be revolutionary.', 'created': '2024-11-13 10:30:28', 'submission_id': '1gprvlu'}
{'comment': 'Yeah. \xa0I checked out too. \xa0I had to skip Reddit for several days after because I was so upset. \xa0\xa0\n\nAt this point there\'s not really any "news" anyway. \xa0Election counts are not complete for another week or so. \xa0So everything is just hypothetical at this point. \xa0 I don\'t need to hear every rambling from Trump\'s ignorant and unprofessional "team" \xa0that are just children making threats right now because they won. \xa0All the "news" right now is INTENDED to threaten Democrats. There\'s no point in participating.\xa0\n\nI\'ll take a few weeks off and time back in when there\'s real news about things happening. \xa0I really like MSNBC\'s hosts and think they do a great job. \xa0I just need a mental health break.\xa0', 'created': '2024-11-13 11:32:42', 'submission_id': '1gprvlu'}
{'comment': 'We haven’t turned the news on since last Tuesday. I’ve also distanced myself from Facebook and Instagram. I do have a subscription to Ground News but haven’t really looked at that app either except to read a few headlines. I can’t stomach to read anything relating to the death of our democracy.\nTo be honest, I need a break and I don’t know if and when I will return to watching Mainstream News. I like some of the smaller ones on YouTube like Midastouch and the Bulwark but a lot of their thumbnails these days are just click bait. \n\nI’m glad to see that I’m not alone in my taking a long break from news.', 'created': '2024-11-12 20:37:00', 'submission_id': '1gprvlu'}
{'comment': "MSNBC is probley the biggest left network out, they was 100% pro Harris and shit on and called out trump hourly(rightly so)and sense it ended they have been asking wtf happend and questioning the stupid ass trump cabinet picks, I've definitely stopped watching as much as now it's just depressing as shit to hear about trump anymore", 'created': '2024-11-12 21:24:02', 'submission_id': '1gprvlu'}
{'comment': 'Well it’s to be expected. Many of us democrats need a mental health break right now. Had we won their ratings would’ve doubled.\n\nPlease appreciate MSNBC though. The last thing we need is for them to lose ratings and get bought up by another Republican billionaire like CNN. We are losing lots of media to the right. We cannot afford to lose msnbc.', 'created': '2024-11-12 20:58:17', 'submission_id': '1gprvlu'}
{'comment': "Because I'm kinda tired of them trying to blame dems for what happened. Everyone shares the blame but the media deserves to be removed for the way they sane-washed donald trump. \n\nhe should have been bullied and made fun of from 2016 on.", 'created': '2024-11-12 23:00:27', 'submission_id': '1gprvlu'}
{'comment': ' they should put up the stats for all of viewership of election coverage after the election is over.', 'created': '2024-11-12 20:16:39', 'submission_id': '1gprvlu'}
{'comment': 'Bring back Keith Olberman please.', 'created': '2024-11-12 20:29:38', 'submission_id': '1gprvlu'}
{'comment': 'I’m off as well.', 'created': '2024-11-12 20:35:43', 'submission_id': '1gprvlu'}
{'comment': 'I’ve been on media blackout of all kinds; social, tv for the past 8 years and my mental health has never been better, not to mention all the time I have to do actual productive and rewarding activities instead of incessant phone use.', 'created': '2024-11-12 20:43:34', 'submission_id': '1gprvlu'}
{'comment': 'I wish I could tune out but so many human rights are going to be under assault over the next few years. I gotta stay tuned in so I know what to protest.', 'created': '2024-11-12 20:43:55', 'submission_id': '1gprvlu'}
{'comment': 'I’m taking a break, it sounds like that’s the same plan a lot of us have. I cannot fixate on the upcoming disaster like I did between 2016-20… not if I want to vote in 2028 and not be dead from stress.', 'created': '2024-11-12 21:08:05', 'submission_id': '1gprvlu'}
{'comment': 'I stopped watching news after the 2016 election. All 3 are in the bag for the GOP because their owners are MAGA. I got my news from Google, or my local station , or here.', 'created': '2024-11-12 21:08:13', 'submission_id': '1gprvlu'}
{'comment': 'I left MSNBC because it was literally the trump alter. He was EVERYWHERE all the time. Opening the home page and his face was everywhere. All stories related back to him. If I wanted to watch Fox I would.', 'created': '2024-11-12 21:48:27', 'submission_id': '1gprvlu'}
{'comment': 'I’m one of those who checked out, slightly. I just can’t take seeing or hearing Trump any more. This should not be happening, and it’s breaking my heart.', 'created': '2024-11-12 21:48:30', 'submission_id': '1gprvlu'}
{'comment': 'They totally let us down. So much talk. Very little direction on how to act.', 'created': '2024-11-12 22:03:01', 'submission_id': '1gprvlu'}
{'comment': 'i’ve only been able to watch it this week in small amounts. the anxiety and panic i feel realizing this isn’t 2016 but something so far worse. just can’t handle watching it as much as i had been. they were my source after cnn went sideways. i want to see msnbc stay alive too but i also fear if they don’t survive then what?', 'created': '2024-11-12 22:14:31', 'submission_id': '1gprvlu'}
{'comment': 'I’ve started watching a little bit this week. I’ve just needed a break, I’m exhausted. Has nothing to do with MSNBC. \nI was able to watch Morning Joe this morning. \nI’m getting my second wind and ready to fight these jerks again.', 'created': '2024-11-12 22:17:11', 'submission_id': '1gprvlu'}
{'comment': "MSNBC have folks who are willing to call out Trump's bullshit, but I bet that folks just need some time away from politics.", 'created': '2024-11-12 22:18:31', 'submission_id': '1gprvlu'}
{'comment': 'Because they lied and convinced us Harris would win.', 'created': '2024-11-12 22:36:45', 'submission_id': '1gprvlu'}
{'comment': "The look on all the MSNBC anchor's faces once it was certain that Trump was going to win is why I can't tune in. \n\nAll the months of listening to experts and equivocating and watching Kamala Rallies meant absolutely nothing in the face of a mass of low information voters that chose their president like they choose their appetizer at PF Chang.", 'created': '2024-11-12 22:36:57', 'submission_id': '1gprvlu'}
{'comment': 'Why watch? \n\nAll they are going to do is document the authoritarian takeover in great detail. \n\nI just as soon only hear about the highlights a little every few days.', 'created': '2024-11-12 23:00:00', 'submission_id': '1gprvlu'}
{'comment': 'Fuck MSM in general. They sane washed the felon Trump every single day to get him back in.', 'created': '2024-11-12 23:17:53', 'submission_id': '1gprvlu'}
{'comment': 'Yea forget traditional mainstream media. They kept trying to play up the race is close for ratings. They care more about profits over people, and profits over country.', 'created': '2024-11-12 23:33:54', 'submission_id': '1gprvlu'}
{'comment': 'Hey if the rest of the country doesn’t have to care about politics and gets to vote on vibes, why can’t I?', 'created': '2024-11-12 23:39:40', 'submission_id': '1gprvlu'}
{'comment': 'I switched to The Bulwark with Tim Miller.', 'created': '2024-11-12 23:50:34', 'submission_id': '1gprvlu'}
{'comment': 'I\'m glad their viewership is down. They played plenty of both sides do it. And the 24 hour non-stop Trump coverage. To Trump, no attention is worse than negative attention...and he relished in the negative attention. It\'s not only MSNBC. CNN did it and even the "left wing" Youtube stations like Meidas Touch spend all day covering Trump. Yes, they put a negative slant on it, but it\'s still 24 hour coverage.', 'created': '2024-11-13 00:05:25', 'submission_id': '1gprvlu'}
{'comment': 'They deserve it …. Kath Tur and Andrea Mitchell sucks. Morning Joe blames us all . Nicolle Wallace and Lawrence O are the only ones I can stomach but honestly since the election, I haven’t even bothered to turn it on', 'created': '2024-11-13 00:12:12', 'submission_id': '1gprvlu'}
{'comment': "I'm still watching, same as always, love MSNBC", 'created': '2024-11-13 00:40:47', 'submission_id': '1gprvlu'}
{'comment': 'Fuck the mainstream media. For points and ratings they let these Shitler Notsees sit there and lie to everyone while they smiled and nodded their heads ffs 🤦\u200d♂️', 'created': '2024-11-13 00:50:35', 'submission_id': '1gprvlu'}
{'comment': 'My only really issue with MSNBC is that they have a tendency to not amplify the things that the party is doing and creating and spend a significant amount of time of time talking about what Trump is doing, while at the same time saying democrats have a problem communicating their achievements and accomplishments, \n\nSeriously, can we not see that maybe it would help if we spent just as much time touting the successes of our administration, and the work we are planning, instead of screaming at the insanity to stop being insanity??', 'created': '2024-11-13 04:09:42', 'submission_id': '1gprvlu'}
{'comment': "Everyone is out. I deleted all my social media and haven't turned on NPR. It's a different kind of disappointment than 2016, bit heavier. People voted for trump the first time he won not really knowing what could happen, now we all know and they still did. Much harder to process. I started pickling today, I'm living in my circle of control the next 4 years, tending my own garden.", 'created': '2024-11-13 05:09:26', 'submission_id': '1gprvlu'}
{'comment': 'I’m sorry to leave but I can’t do it anymore. I give up. I ate up MSNBC after he won the first time because Rachel gave me hope that he would go down somehow. It never happened. For my mental health I can’t do it all over again, be hyper vigilant hoping something could stop him.', 'created': '2024-11-13 06:09:36', 'submission_id': '1gprvlu'}
{'comment': 'I said I was taking a break from politics for a month because I won’t be able to for the next four years. I guess I wasn’t a lone lol.', 'created': '2024-11-13 06:18:50', 'submission_id': '1gprvlu'}
{'comment': "I have eliminated news from my life. He and his cult sicken me. Don't read, watch or listen any more. I want to be one of those people that didn't even know Biden wasn't running on election day. I am sure they are much happier than I am, and I am thinking that expression about ignorance and bliss may be pretty accurate.", 'created': '2024-11-13 08:07:26', 'submission_id': '1gprvlu'}
{'comment': 'You are definitely my people. I have watched so much cheesy TV. The next 4 years are about self care. I am going to ignore the news, exercise to get rid of the anxiety, and finally lose those pesky last 15 pounds. I can’t watch this man destroy my country.', 'created': '2024-11-13 13:50:28', 'submission_id': '1gprvlu'}
{'comment': 'Scarborough leading in the morning just proves you should never trust a republican. He was congratulatory and apologist the morning after the election. \n\nNever trust a republican ever again.', 'created': '2024-11-13 14:02:49', 'submission_id': '1gprvlu'}
{'comment': 'Fuck MSNBC and all corporate media for whitewashing a fascist for clickbait revenue while democracy and our essential freedoms were on the line.', 'created': '2024-11-13 14:13:53', 'submission_id': '1gprvlu'}
{'comment': 'I’m not interested in the news for the next 4 years. I don’t give a fuck what he’s going to do unless we need to legitimately have a revolution to overthrow his dictator-ass', 'created': '2024-11-13 15:11:43', 'submission_id': '1gprvlu'}
{'comment': "because its nauseating watching the news now and realizing the alternate Man in the High Castle meets Handmaid's Tale reality we are living in now", 'created': '2024-11-13 15:51:41', 'submission_id': '1gprvlu'}
{'comment': 'I am a proud independent who voted for Kamala who spent 20 years in corrupt Chicago and now lived in a tyrannical red state. Democrats who don\'t live their bubbles are so blind, and cost themselves one of the most winnable elections for a bad incumbency.\n\nCan I be honest? I wondered during the election if democrats had a media problem - not in terms of all media, but in terms of dem-friendly media. They... all seem like awful people. Take Joy Reid for example, her mannerisms literally make me turn off the channel when she\'s on. She gloats at the failures of Republican policies (when they make Americans suffer), it smacks to me of trying to be like Fox, but in a weird dismal way.\n\nI hate the way the talking heads tout their own intelligence above others, especially as they were almost always in the wrong this last 6 months. Meanwhile Don Lemon was out in the cities, and his interviews were freaking me out as he went up to people of various races and asked "did you vote biden? " - lots of Yes, "will you vote Kamala" - lots of no. \n\nLike, I don\'t WANT to watch dem-friendly media. I hate Fox, but hell - even their awful opinion heads are WATCHABLE. They are a LOT more entertaining. Hell, even liberal comedy had a lot of problems in this last election cycle (Kimmel, Colbert, and most of their co-hosts and other hosts were unwatchable). Seth Meyers is great, but he does way way too easy on the democrats. Jon Stewart is... tired, and you can tell - really done with it all - some of his commentary was right on the money this election season, but he\'s so tired of ragging on the GOP that he spent most of his time attacking the democrats for 8 months, and I think it was misguided even though I understood). There was one show I could watch time, and time, and time and again because it was fact based - John Oliver\'s Last week tonight.\\*\n\nThat\'s a PROBLEM when you consider how much conservative media is out there, and attracting eyeballs at the moment.\n\nWhy? Because often they talk like real people rather then an ivory league dipshit (Tucker Carlson excluded of course).\n\nI\'ve said it for ages - democrats have a messaging problem - except now the problems with the democratic party being zealously focused on being politically correct has now translated to most of your media choices too.\n\nGood work, when someone aligned with what you purport to want can\'t even watch the media that supports you... you\'ve gone too far.\n\n\\*= special mention for liberal dipshit Bill Maher who is so up his own ass, all he speaks is bullshit - though admittedly I think he\'s been on the money with the dems going too far to the left. (Tons of folk will respond to this saying Kamala\'s campaign was centrist as hell, and I\'d ask you guys - why do you think her campaign was centrist as hell. Why do you think that\'s all they messaged on. They didn\'t do it in a vacuum. They did it because for the past 4+ years the democrats have gone so far left on some issues that they left the American people behind.\n\nThere is a reason you lost cities full of crime after you pushed defund the police for years.', 'created': '2024-11-13 20:48:30', 'submission_id': '1gprvlu'}
{'comment': 'Maybe stop normalizing Trump for views', 'created': '2024-11-12 22:16:09', 'submission_id': '1gprvlu'}
{'comment': 'Well, yeah. Fuck MSNBC. They low key wanted Trump to win too. The media bias, especially with liberal media, was so obvious. Ratings and money above country. Fuck em.', 'created': '2024-11-12 20:18:45', 'submission_id': '1gprvlu'}
{'comment': 'Well, they should blame themselves for the drop', 'created': '2024-11-12 20:33:09', 'submission_id': '1gprvlu'}
{'comment': 'Will turn it on again once i get out of a fetal position.', 'created': '2024-11-12 21:05:02', 'submission_id': '1gprvlu'}
{'comment': "I'm tuning out too, but that's not because o suddenly hate MSNBC. I just need a break.", 'created': '2024-11-12 21:37:01', 'submission_id': '1gprvlu'}
{'comment': '[removed]', 'created': '2024-11-12 20:06:59', 'submission_id': '1gprvlu'}
{'comment': 'I’m not watching any TV, so it’s not just MSNBC. I’m only watching football.', 'created': '2024-11-12 20:24:50', 'submission_id': '1gprvlu'}
{'comment': 'I’m checking in on my political podcasts but I’ve dramatically increased my non-political ones.', 'created': '2024-11-12 20:30:18', 'submission_id': '1gprvlu'}
{'comment': "I only watch YT clips these days, but finger-pointing to blame sane people is some of the most useless, pointless thing to do right now.\n\nThey won because they lied and lied and lied and lied, and the people believed it, and don't think it will be as terrible as we do.", 'created': '2024-11-12 20:37:35', 'submission_id': '1gprvlu'}
{'comment': "I don't even watch cable news anyway. Bit of advice focus on local elections for 2025 remember now, schoolboard elections are just as important especially if you don't want book bans.", 'created': '2024-11-12 20:46:11', 'submission_id': '1gprvlu'}
{'comment': "It's not them. It's us. We need a minute.", 'created': '2024-11-12 20:52:05', 'submission_id': '1gprvlu'}
{'comment': 'Who the hell still has cable?', 'created': '2024-11-12 20:56:52', 'submission_id': '1gprvlu'}
{'comment': 'I think for many Democrats, there is this jarring sense of disappointment and exhaustion. We’re tired of the constant fear and anxiety associated with politics after the last close to 10 years of trumpianism, and the finger pointing as to the “why” Harris lost doesn’t help. We simply get the government we deserve, and if people were stupid enough to vote for Voldemort, then so be it. I’m tired of all of it for now.', 'created': '2024-11-12 21:09:36', 'submission_id': '1gprvlu'}
{'comment': 'Well yeah. Until the next crisis.', 'created': '2024-11-12 21:17:40', 'submission_id': '1gprvlu'}
{'comment': 'It was sad to watch msnbc the election night. Kornacki was giving us the hard truth while the panel seemed to be huffing copium.', 'created': '2024-11-12 21:27:28', 'submission_id': '1gprvlu'}
{'comment': 'I deactivated Facebook, left most political subreddits and I’m chillen. I feel great not giving a shit.', 'created': '2024-11-12 21:39:51', 'submission_id': '1gprvlu'}
{'comment': 'How does this compare with previous elections?\n\nSeems like viewership falling off after an election cycle is expected', 'created': '2024-11-12 21:45:19', 'submission_id': '1gprvlu'}
{'comment': 'Ok, I recycled the homepage several times, and this thread keeps floating to the top. Nothing against it, but usually refreshing brings another topic up. Does this one have a bobber tied to it or something?', 'created': '2024-11-12 21:52:10', 'submission_id': '1gprvlu'}
{'comment': "I'm moving away from MSNBC. It was the only reason I had a YouTube TV membership, and I'm not spending $70+ for 24/7 news cycle I can get elsewhere.\n\nI'm trying to branch out to more unbiased sources like Reuters and Associated Press, but I still like the NBC network and will watch their free 24/7 live station on YouTube. I want to ween off panel discussions that keep me locked into my bubble and prefer to just get the news without the dramatic commentary. I'll say - it sure is boring this way, but I can see how these networks hook their viewers with constant BREAKING NEWS, pretty colors, and 24/7 talking heads.", 'created': '2024-11-12 21:55:43', 'submission_id': '1gprvlu'}
{'comment': '[removed]', 'created': '2024-11-12 21:59:27', 'submission_id': '1gprvlu'}
{'comment': "Of course it did. Who wants to watch anything politics after our extreme disappointment? I haven't watched it all, but will again in a week or so.", 'created': '2024-11-12 22:01:15', 'submission_id': '1gprvlu'}
{'comment': "I think we're all spend and need a break.", 'created': '2024-11-12 22:01:43', 'submission_id': '1gprvlu'}
{'comment': 'Ditto. I’m checked out with everything though, podcasts, most subreddits, etc. We live in Gilead now', 'created': '2024-11-12 22:13:14', 'submission_id': '1gprvlu'}
{'comment': '…and why that’s bad news for democrats.', 'created': '2024-11-12 22:22:07', 'submission_id': '1gprvlu'}
{'comment': "So did CNN's. I'm sure Fox is doing well. The billionaire right-wing disinformation is alive and well.", 'created': '2024-11-12 22:30:39', 'submission_id': '1gprvlu'}
{'comment': 'Not surprising that a lot of people only tune in for election updates', 'created': '2024-11-12 22:40:07', 'submission_id': '1gprvlu'}
{'comment': "It's a pretty big disappointment that lots of us were pretty sure wasn't going to happen. Lots and lots of changes are coming whether we like it or not.", 'created': '2024-11-12 22:45:42', 'submission_id': '1gprvlu'}
{'comment': 'Is that different from past election cycles? I would _expect_ a lot of people sighing in (partial) relief at being able to check out for a bit.', 'created': '2024-11-12 22:49:19', 'submission_id': '1gprvlu'}
{'comment': 'Good. Fuck the news.', 'created': '2024-11-12 22:50:59', 'submission_id': '1gprvlu'}
{'comment': 'I really don’t watch MSNBC but after this election I’m going so left you would think I drive for NASCAR.', 'created': '2024-11-12 22:51:46', 'submission_id': '1gprvlu'}
{'comment': 'Legit question: any way to actually not see the news about this administration and trump specifically? Or do I have to be drastic and get off social media completely?', 'created': '2024-11-12 23:08:15', 'submission_id': '1gprvlu'}
{'comment': 'I’m definitely checked out.', 'created': '2024-11-12 23:15:00', 'submission_id': '1gprvlu'}
{'comment': 'Ya - everyone is freaking out', 'created': '2024-11-12 23:25:46', 'submission_id': '1gprvlu'}
{'comment': "Fucking good. Turned it on, listened for 30 seconds, NO. Try doin' your fuckin' job and investigating instead of worrying about your own asses!", 'created': '2024-11-12 23:34:53', 'submission_id': '1gprvlu'}
{'comment': 'Time to turn off corporate media. They are part of the problem.', 'created': '2024-11-12 23:39:49', 'submission_id': '1gprvlu'}
{'comment': 'I mean if people want the media to be fair in 2028 there needs to be a big media boycott', 'created': '2024-11-13 00:03:15', 'submission_id': '1gprvlu'}
{'comment': "I never watched MSM but I did watch Colbert, Meyers, Oliver, Stewart and Kimmel and I've stopped watching all of them. They didn't sanewash Trump but I just don't have the headspace to deal with hearing about him everyday for the next 4 years.", 'created': '2024-11-13 00:04:37', 'submission_id': '1gprvlu'}
{'comment': 'PS we all are the same and how we feel all of us have done the same thing', 'created': '2024-11-13 00:13:04', 'submission_id': '1gprvlu'}
{'comment': 'I am getting sick of hearing about how Der fuhrers wife will redecorate and who she will choose as her "team". I don\'t need to hear the MSM sane washing this fascist regime\'s plan for mass deportation and terror.\xa0', 'created': '2024-11-13 00:16:01', 'submission_id': '1gprvlu'}
{'comment': 'Yep can’t watch any of it. Don’t care not going back.', 'created': '2024-11-13 05:45:57', 'submission_id': '1gprvlu'}
{'comment': "Honestly that could just be the case for every news network after the election. The election was the big result, people aren't tuning in as much every second for anything else. I suspect they saw a big peak during election season, which could be why things are this way.", 'created': '2024-11-13 07:59:17', 'submission_id': '1gprvlu'}
{'comment': '[removed]', 'created': '2024-11-13 11:48:33', 'submission_id': '1gprvlu'}
{'comment': 'I haven’t consumed one second of news for eight days. It will take a minute', 'created': '2024-11-13 14:39:24', 'submission_id': '1gprvlu'}
{'comment': 'I listened to morning Joe every day, even through trump presidency the first time.\n\nI’m not ready to go back', 'created': '2024-11-13 16:29:07', 'submission_id': '1gprvlu'}
{'comment': "Yeah. I don't want to hear about it anymore. The next two years, at a minimum, will be wasted on the whims of this lowlife. There will be no accountability for his lies. Nothing in the news matters anymore because all of it will be his excuses. If there is a media source that plans to simply cover how America changes over the next four years completely ignoring the infuriating show the Trump administration will puts on to misdirect blame, I want to watch that media. But 100% of the media will want all eyes on that infuriating show..", 'created': '2024-11-13 17:15:02', 'submission_id': '1gprvlu'}
{'comment': 'I haven’t watched the news since the election. Honestly, I am done. This election was it for me. I don’t care anymore. The world can burn. I cut off all Trump supporters on my social media. I blocked every “Christian” I knew that voted red. I am ok with a small circle of good people around me and living in my bubble. I don’t need to see the world full of human cruelty. I already know the headlines to come will only invoke anger or sadness. If this is the country my fellow citizens want, that’s fine. I refuse to be part of their world.', 'created': '2024-11-13 18:38:10', 'submission_id': '1gprvlu'}
{'comment': 'Well, MSNBC had "Democrat" pundits that claimed we lost because of Woke policy (this is just a bullshit Republican narrative, and to repeat it is insane).\n\nThe Media including MSNBC is largely controlled by the Super-Rich and Billionaires, who are overwhelmingly Right-Wing, we lost because The People want Populism, we need to offer Left-wing policies like Universal Healthcare, Universal Public College and strong Public Education, a $17 an Hour minimum wage, Union Rights for all, Aggressive Environmentalist policy like Green Energy development on a massive scale.\n\nWe have failed to build a Narrative and strong Public Education as Democrats, the Right-Wing controls Twitter, Facebook, Rumble, Instagram, Truth Social, and more, we need to build our own Media Sphere and FIGHT, FIGHT, FIGHT! We have to pull people away from the false-Populism of the Far-Right and the Super-Rich.', 'created': '2024-11-13 19:29:36', 'submission_id': '1gprvlu'}
{'comment': 'After proving Trump did everything we said he did. What else is there to even watch? At this point it’s obvious this country is full of idiots. In three years, they’ll be plenty to complain about when it comes to the Trump administration. that said Trump will be lucky to stay alive in office because he’s so unhealthy. After that, Democrats will bring Newsom in to beat any Republican challenger. The nation will see clearly what a bunch of idiots Republicans are by then. Believe me.', 'created': '2024-11-13 19:58:44', 'submission_id': '1gprvlu'}
{'comment': 'I have loved politics since I was a little girl- \n\nI was always been the one to raise my hand to debate, a US history enthusiast and willing to discuss any policy. \n\nAfter last Tuesday, I haven’t seen more than 10 minutes of news. I just can’t, like physically for my mental health. I am on a long break. I have a job and two small kids to care for, I can’t keep watching the news and falling into a hole of despair. \n\nCurrently I catching up on Netflix and focused on Christmas! 🎄', 'created': '2024-11-13 20:39:10', 'submission_id': '1gprvlu'}
{'comment': '', 'created': '2024-11-13 21:40:38', 'submission_id': '1gprvlu'}
{'comment': 'You don’t say', 'created': '2024-11-12 20:06:19', 'submission_id': '1gprvlu'}
{'comment': 'You mean fewer people are watching the news when a major event is over?\n\nHoly shit.', 'created': '2024-11-12 20:45:30', 'submission_id': '1gprvlu'}
{'comment': 'It’s always bigger during elections. That’s normal.', 'created': '2024-11-12 23:06:03', 'submission_id': '1gprvlu'}
{'comment': 'Think about it. All we heard for the past 10 years was how corrupt trump and the GOP was. That Biden was going to fix everything. That trump and his cronies were going to prison any day now. None of that happened. Biden had 4 years to make sure trump or any one else would not be able to do what trump did while he was in office ever again. Guess what? They were wrong on just about everything. NBC needs to cancel MSNBC and CNN needs to just report news.', 'created': '2024-11-13 14:45:52', 'submission_id': '1gprvlu'}
{'comment': 'lol they thought they would get more ratings', 'created': '2024-11-12 20:39:48', 'submission_id': '1gprvlu'}
{'comment': "This just in: ESPN viewership drops by half day after super bowl\n\nYou'll never guess what happened to consumer spending the day after Christmas!", 'created': '2024-11-12 21:44:03', 'submission_id': '1gprvlu'}
{'comment': 'Bye morning Joe. It’s been fun.', 'created': '2024-11-12 22:01:24', 'submission_id': '1gprvlu'}
{'comment': 'People are goddamned tired of never fucking Trumpers and centrists.', 'created': '2024-11-13 00:11:26', 'submission_id': '1gprvlu'}
{'comment': 'It’s not that great of a news network anyway.', 'created': '2024-11-12 20:42:09', 'submission_id': '1gprvlu'}
{'comment': 'I want to check out, but we need MSNBC to survive. They need our support. I may have to watch for a while with the sound off,', 'created': '2024-11-12 22:47:35', 'submission_id': '1gprvlu'}
{'comment': 'They’re scared of Trump now. The show is no longer any good', 'created': '2024-11-12 20:39:38', 'submission_id': '1gprvlu'}
{'comment': 'All watching fox now.', 'created': '2024-11-13 00:57:50', 'submission_id': '1gprvlu'}
{'comment': '', 'created': '2024-11-12 21:09:49', 'submission_id': '1gprvlu'}
{'comment': 'You missed the first week of them always announcing Trump “historical win… because he is the first felon to win”', 'created': '2024-11-12 21:09:32', 'submission_id': '1gprvlu'}
{'comment': 'NPR commentary had been so disappointing for me this entire election cycle anyway.', 'created': '2024-11-13 00:49:27', 'submission_id': '1gprvlu'}
{'comment': 'I have had the exact same response only I’m listening to Christmas books. I can’t bring myself to listen or watch the news right now.', 'created': '2024-11-13 00:45:43', 'submission_id': '1gprvlu'}
{'comment': 'Lord of the Rings ambient music for me!', 'created': '2024-11-12 22:42:28', 'submission_id': '1gprvlu'}
{'comment': "I've at least been listening to some of their podcasts that are not political, but more so have been listening to our state's classical music service instead. More music, less news. Otherwise I've been also trying to find storytelling podcasts online to listen to, lately been hooked on Tower 4; it's a supernatural mystery but also has some good witty banter between the two main characters.", 'created': '2024-11-13 00:43:16', 'submission_id': '1gprvlu'}
{'comment': 'Me but with Hallmark movies.', 'created': '2024-11-13 01:14:02', 'submission_id': '1gprvlu'}
{'comment': 'Same. I used to love my “hey Google, good morning” routine. Not ready to jump back in yet.', 'created': '2024-11-13 02:05:47', 'submission_id': '1gprvlu'}
{'comment': 'Meee tooo!!! I’m an avid “after Thanksgiving,” but I’m putting up my tree next weekend and already listening to Christmas music…and I’m not even overly fond of Christmas', 'created': '2024-11-13 02:54:42', 'submission_id': '1gprvlu'}
{'comment': 'Great idea! I’m going to start early too.', 'created': '2024-11-13 00:31:21', 'submission_id': '1gprvlu'}
{'comment': 'Same.', 'created': '2024-11-13 02:40:05', 'submission_id': '1gprvlu'}
{'comment': 'Same . Haven’t watched the evening news either.', 'created': '2024-11-13 05:58:17', 'submission_id': '1gprvlu'}
{'comment': "I've had a new 3d printer and hydroponics to keep me busy.", 'created': '2024-11-13 07:33:17', 'submission_id': '1gprvlu'}
{'comment': 'SAME! We put up our tree over the weekend!', 'created': '2024-11-13 14:03:15', 'submission_id': '1gprvlu'}
{'comment': 'Literally put my decorations up on Saturday.', 'created': '2024-11-13 16:29:58', 'submission_id': '1gprvlu'}
{'comment': "Same, done with corp news. They've taken way too much energy attention and time while giving nothing in return.", 'created': '2024-11-12 20:40:39', 'submission_id': '1gprvlu'}
{'comment': 'May I ask what the reason is to be anti-MSNBC. To me they seem like the only network that supports democrats.', 'created': '2024-11-12 20:27:57', 'submission_id': '1gprvlu'}
{'comment': 'Same. Im going to go dark from main stream media and vote blue every 2 years. I feel like the media feeds off viewership of the whole Trump shit show and just worsens the problem.', 'created': '2024-11-12 21:23:39', 'submission_id': '1gprvlu'}
{'comment': 'Already during his first term I remember saying, "Wake me when the made for TV movie is ready," and I\'m still sticking by that. I don\'t have the health or energy, thanks to an autoimmune disorder that landed me in dialysis, to really pay attention beyond seeing what people are saying here and scrolling through a newspaper or two. If I was in better health you bet I\'d be trying to organize something or run for a local office, but, my health and wellness are far more important at this time.', 'created': '2024-11-13 00:45:48', 'submission_id': '1gprvlu'}
{'comment': 'Me too. Once the shit show starts up and there is some credible resistance developing, I’ll get more engaged again. Meanwhile, the Dems truly are in disarray and leaderless, so I don’t need to be reminded of how bad last week was over and over, going into the holiday. Let’s just have a happy holiday period with family and friends and regroup next year.', 'created': '2024-11-12 21:49:58', 'submission_id': '1gprvlu'}
{'comment': 'Exactly where my head is at too.', 'created': '2024-11-12 21:31:50', 'submission_id': '1gprvlu'}
{'comment': 'Same. All the anxiety building up to the election, the disappointment afterwards… leading to a bit of a depression. I’m sticking to AP and Reuters for headlines and that’s it. \n\nLord only knows if/when I go back, and what god-forsaken event(s) will lead me there.', 'created': '2024-11-12 21:58:06', 'submission_id': '1gprvlu'}
{'comment': 'Don\'t worry, you\'re not missing much. They\'re blaming the "woke mob" now for their loss. They are legitimately making Republican arguments. Fuck them.', 'created': '2024-11-12 22:07:58', 'submission_id': '1gprvlu'}
{'comment': "Me too. Additionally I'm muting NYT, wapo, usatoday, fox. I can read AP, ProPublica, etc. \n\nThese rags cater to the lowest common denominator. I get dumber just by reading their shit.\n\nWhat's ironic is that these publications will be attacked by maga and the incoming debacle. IDGAF lol.", 'created': '2024-11-12 23:40:24', 'submission_id': '1gprvlu'}
{'comment': 'This is prob the most spot on comment I’ve read in the last week. It’s oddly refreshing. Amen!!', 'created': '2024-11-13 01:18:31', 'submission_id': '1gprvlu'}
{'comment': "Saame. I'm going full blackout mode for the next 4 years. I'll do my best to avoid consuming any medias that were complicit in this, ntl or local (Sinclair). If I see/hear his bloviating anus mouth, the channel will get immediately turned. I can't do this anymore.", 'created': '2024-11-12 20:20:10', 'submission_id': '1gprvlu'}
{'comment': 'I am with you. I have not watched MSNBC or Progressive talk since the election. It depresses me.', 'created': '2024-11-12 20:27:29', 'submission_id': '1gprvlu'}
{'comment': 'Sameee', 'created': '2024-11-12 20:06:49', 'submission_id': '1gprvlu'}
{'comment': 'Same, esp knowing that a lot of these networks were totally soft on 45 because he brought them high ratings last term. Fuck em.', 'created': '2024-11-12 20:39:00', 'submission_id': '1gprvlu'}
{'comment': "Have you noticed less anxiety? I've done the same.", 'created': '2024-11-12 20:49:26', 'submission_id': '1gprvlu'}
{'comment': 'It hurts too much', 'created': '2024-11-12 23:54:12', 'submission_id': '1gprvlu'}
{'comment': 'It was 2016 for me. After the election, I needed a break. I never really went back; not regularly, anyway. It’s very occasional that I watch my news on TV these days.\n\nI felt I was spending too much time within a medium that was obviously riling me up and upsetting me. I still consume a *massive* amount of news, but can do that because I read it all now. It’s faster, I can do it between meetings or after work, and it keeps me from becoming too riled up. I turn on MSNBC on election nights for the theme song (and the coverage, I guess, but that election theme is still my favorite and reminds me of happier times).', 'created': '2024-11-13 05:12:34', 'submission_id': '1gprvlu'}
{'comment': "yea especially with the shift that journalism is going to go through next year once he officially takes over, it's going to look a lot different the next 4 years", 'created': '2024-11-12 20:12:31', 'submission_id': '1gprvlu'}
{'comment': "Well, I was in Munich a couple of weeks ago. I went to the Dachau memorial site (they no longer call at a concentration camp). \n\nThe lesson there is don't ever forget about fascism and what it can do.", 'created': '2024-11-13 01:00:59', 'submission_id': '1gprvlu'}
{'comment': 'They also convinced us Harris would win', 'created': '2024-11-12 22:37:28', 'submission_id': '1gprvlu'}
{'comment': 'I feel like I am in Stranger Things upside down world', 'created': '2024-11-12 20:29:08', 'submission_id': '1gprvlu'}
{'comment': 'Doing a deep dive into cozy mystery tv shows', 'created': '2024-11-12 21:54:33', 'submission_id': '1gprvlu'}
{'comment': "This is me at the moment, though it's tough as a political science major in college lol", 'created': '2024-11-12 21:56:47', 'submission_id': '1gprvlu'}
{'comment': 'I’m in the same boat.', 'created': '2024-11-12 21:58:50', 'submission_id': '1gprvlu'}
{'comment': 'I’m in the same boat with you. I’m logged out of instagram and I’m making a list of books/movies that I want to catch up on and I’m taking out my painting supplies to start painting again.', 'created': '2024-11-13 19:57:00', 'submission_id': '1gprvlu'}
{'comment': 'Same. I am more at peace not watching the MSM news, mostly because I don’t want to hear ‘you know who’ whine, brag, exaggerate, threaten, lie, and weave, nor do I want to see him or the people of his administration. I am choosing sanity over panic attacks and playing ostrich for a while. I will even cancel my contributions to PBS. I am so done!', 'created': '2024-11-12 22:06:52', 'submission_id': '1gprvlu'}
{'comment': 'agree', 'created': '2024-11-12 20:36:48', 'submission_id': '1gprvlu'}
{'comment': 'Right? My local news site starts headlines like "How Will Project 2025 Affect Louisiana?"\n\nWtf. Where was this energy before the election?!', 'created': '2024-11-13 00:27:18', 'submission_id': '1gprvlu'}
{'comment': "Same. I was in this bubble and hoped for the best even though there was a gnawing at the back of my mind that said I should be cautious. I didn't listen and now I'm devastated. And I'll accept my responsibility for that, but the news media - including MSNBC - has a information dissemination model that doesn't actually give facts or real perspective. Just prognostication, reassurance without evidence, and outrage bait.\n\nI'm done too. I even unsubscribed from WaPo and am only reading AP right now.", 'created': '2024-11-13 05:02:35', 'submission_id': '1gprvlu'}
{'comment': 'Because who wants to tune in and see them deliberating again over why we got our ass kicked? It’s depressing as hell. Meanwhile on Fox, it’s probably been a celebration every day since Tuesday.', 'created': '2024-11-12 20:37:59', 'submission_id': '1gprvlu'}
{'comment': 'It sucks and we can’t control project 2025 coming to fruition because Trump has not only the House but the Senate. I think I will scale back on watching MSM. I will still listen to podcasts like Pod Save America and engage politically within my community. Although I can’t listen to Trump said this vs. Trump did this non stop.', 'created': '2024-11-12 20:50:49', 'submission_id': '1gprvlu'}
{'comment': 'I feel the same, though I havent been watching msm anyway I find it too frustrating', 'created': '2024-11-12 20:17:41', 'submission_id': '1gprvlu'}
{'comment': "I've used CNN as background noise for the better part of a year and haven't tuned in a lick since the 6th", 'created': '2024-11-13 02:23:26', 'submission_id': '1gprvlu'}
{'comment': 'Reddit is worse, honestly', 'created': '2024-11-12 20:32:51', 'submission_id': '1gprvlu'}
{'comment': 'I stopped watching all the late night shows after Obama got elected a second time. I was just mentally exhausted. The last time I watched cable news was election night. I never went back to the late night shows and I think I can actually just cancel Sling now altogether. After the sanewashing they can all die an electronic death', 'created': '2024-11-12 21:07:27', 'submission_id': '1gprvlu'}
{'comment': 'Thos guys are all I *can* watch now.', 'created': '2024-11-12 22:10:25', 'submission_id': '1gprvlu'}
{'comment': None, 'created': '2024-11-13 00:55:17', 'submission_id': '1gprvlu'}
{'comment': 'and Colbert', 'created': '2024-11-12 21:46:26', 'submission_id': '1gprvlu'}
{'comment': "The media is not taking the blame for what they have done. They normalized lying. I watched CNN when Jake Tapper would interview a republican and let them lie to his face 10 times and only call them on one. Every single lie should be called out for what it is. Let them go to their media arm at faux news to sell that shit but keep'em honest on real news topics.", 'created': '2024-11-12 21:06:27', 'submission_id': '1gprvlu'}
{'comment': 'You consumed 8 hours of MSM daily for three months? Jesus.', 'created': '2024-11-13 04:38:32', 'submission_id': '1gprvlu'}
{'comment': "*Hey, what's the deal with politics?*", 'created': '2024-11-12 20:35:03', 'submission_id': '1gprvlu'}
{'comment': 'I’ve been rewatching Andor, I’d highly recommend it. Something cathartic about watching how to foment rebellion against an evil Empire.', 'created': '2024-11-13 00:44:12', 'submission_id': '1gprvlu'}
{'comment': "I started Gossip Girl for the first time. It's pretty terrible, but so brainless..it's oddly calming", 'created': '2024-11-13 01:50:23', 'submission_id': '1gprvlu'}
{'comment': ">Really have been struggling to find entertainment over last week.\n\nMe too. I even stopped watching late night tv (Kimmel, Colbert, Fallon). I just can't handle it plus I don't really feel like laughing right now. I feel devastated.", 'created': '2024-11-12 21:00:31', 'submission_id': '1gprvlu'}
{'comment': 'My husband and I have been finding joy in watching Modern Family all the way through for the first time. Laugh out loud funny.', 'created': '2024-11-12 21:11:26', 'submission_id': '1gprvlu'}
{'comment': 'I agree with everything you said but I do have a major concern about the republican portion of our electorate. As you stated, faux news viewership has not declined. These people have been drawn into a fully controlled right wing media driven news environment that is disconnected from reality. They voted for tRump but the top concern listed in exit polls was the economy. He had concepts of a plan as far as policies are concerned. Their news outlets convinced them of this even though the metrics indicate that we recovered from covid at a faster rate than the rest of the world. They do not share our reality. \n\nIn total, my concern is that when things get bad, and you and I know this will happen, republicans will blame democrats and these people will believe them. \n\nI do, however, relish the thought of a national abortion ban. The white women in Ohio that voted for tRump while voting for abortion rights need a wake up call. The union members that voted for tRump need to see and feel what the union busting oligarchs of the republican party can do to take their rights away. Manufacturing jobs will not come back. The Hispanic males with family members that are undocumented immigrants need to feel the pain of mass deportation. I am not convinced that this will be enough.\n\nAlso to your point of how the media treated tRump and republicans, I got tired of watching Jake Tapper allow republicans to come on the air, tell like 10 lies, and only call out 1. When democrats come on they are subjected to live fact checking and you can tell that the interviewer held them to a higher standard as they expected the truth from them. I am taking the same route as you as far as media consumption is concerned. Matter of fact, can you share some links to the media outlets you are referring to?', 'created': '2024-11-13 03:43:52', 'submission_id': '1gprvlu'}
{'comment': 'Same. 😥', 'created': '2024-11-12 20:55:18', 'submission_id': '1gprvlu'}
{'comment': 'I live in a blue state but my town is very maga and I’m surrounded by it and I cannot tell you how isolating it feels! I feel like the weird one or some outsider. I feel like I live in a different reality than everyone around me 😣', 'created': '2024-11-12 21:14:55', 'submission_id': '1gprvlu'}
{'comment': '>Side note: they should really make MSNBC available off cable. I had to basically find the cheapest ($40/month) cable subscription to just watch MSNBC.\n\nAre you talking about Sling? At the very least you should be able to downgrade.', 'created': '2024-11-12 21:09:46', 'submission_id': '1gprvlu'}
{'comment': 'Have you tried any flavor of *Law & Order*? I find it perfect for that.', 'created': '2024-11-12 22:09:35', 'submission_id': '1gprvlu'}
{'comment': 'Yup. I had to take a break for my mental health.', 'created': '2024-11-13 03:26:59', 'submission_id': '1gprvlu'}
{'comment': "I couldn't stand Morning Joe, even on a good day. I listen to Thom Hartmann, Keith Olbermann and John Fugelsang while I lick my wounds for the next 2 years.", 'created': '2024-11-13 10:42:49', 'submission_id': '1gprvlu'}
{'comment': 'This is factually wrong. While the age group that includes gen-X did vote in higher rates for Trump, men at all age groups voted more for Trump than Harris. Note that this his age group also includes some Boomers. Frankly it’s counter productive to blame someone based on gender or age. It’s not how you convert future voters to your point of view. Source I used: https://www.statista.com/statistics/1535288/presidential-election-exit-polls-share-votes-age-gender-us/', 'created': '2024-11-12 20:19:30', 'submission_id': '1gprvlu'}
{'comment': 'Stupid people are to blame for trump winning. People who bought into his lies, people who legitimately believe that he will help them, people who stayed home because they were upset the left didn’t do enough to court them personally of because they believe the insane “both sides” narrative. I’m sorry, but all these people are stupid and they are the reason Harris lost.', 'created': '2024-11-12 20:30:12', 'submission_id': '1gprvlu'}
{'comment': 'Other demos shifted Trump. Especially males across all demos. Young, Hispanic, black.', 'created': '2024-11-12 20:20:02', 'submission_id': '1gprvlu'}
{'comment': "Shouldn't be blaming any one voting group, they need to listen to what voters said: its the economy", 'created': '2024-11-12 19:58:11', 'submission_id': '1gprvlu'}
{'comment': 'This is America', 'created': '2024-11-12 19:55:46', 'submission_id': '1gprvlu'}
{'comment': "I'm white GenX and 100% Harris/Walz, so thanks for your sweeping generalization.", 'created': '2024-11-12 22:03:56', 'submission_id': '1gprvlu'}
{'comment': ">It's too painful to hear about Trump and all the premature debates about what went wrong.\n\nYep. We all know what went wrong. \n\nThe Republicans decided to run a tyrant for president. Who happens to also be a con man who effectively weaponized fascist rhetoric. \n\nWe don't need to watch MSNBC second guess all of the decisions that the campaign made.", 'created': '2024-11-13 00:53:18', 'submission_id': '1gprvlu'}
{'comment': 'Same. Not even local news to get the weather. I just look out the window to see what it’s doing and go on with my life.', 'created': '2024-11-13 04:01:30', 'submission_id': '1gprvlu'}
{'comment': "Well we got a max of 4 years. The over under is that he'll go full nixon within 2. That should give us a bit of hope. And we have super stars like Josh Shapiro and Gavin Newsom on the bench. Either one should be able to defeat anything the republicans can offer. In 4 years America will be tired of his shit. And republicans won't let him be a dictator or whatever because they want their chance to feed at the trough like a pig. Hang in there. We all have to.", 'created': '2024-11-13 02:31:43', 'submission_id': '1gprvlu'}
{'comment': 'I had Trump burnout yesterday. These networks are about to see their ratings crash for the next four years.', 'created': '2024-11-13 00:22:46', 'submission_id': '1gprvlu'}
{'comment': 'Us too. We can’t stand it.', 'created': '2024-11-13 04:02:24', 'submission_id': '1gprvlu'}
{'comment': 'This is a good point. Maybe we just put it on an iPad, mute it and point it away from us for now? lol', 'created': '2024-11-12 21:19:17', 'submission_id': '1gprvlu'}
{'comment': 'I lot of them did but for his supporters the more he was bullied and called crazy the more they rallied around him. It’s so weird.', 'created': '2024-11-13 01:02:15', 'submission_id': '1gprvlu'}
{'comment': 'I hope your message reaches them. Not sure that will motivate me to watch any time soon but if I see them shift to what you suggest, Ill give it another go.', 'created': '2024-11-13 04:11:55', 'submission_id': '1gprvlu'}
{'comment': 'The media is absolutely responsible for sanewashing fascism.', 'created': '2024-11-12 21:08:31', 'submission_id': '1gprvlu'}
{'comment': "Yeah, it's too much. I know I will be back, but I need a break", 'created': '2024-11-13 01:50:21', 'submission_id': '1gprvlu'}
{'comment': 'I hear that! I was watching a talk show (Sherri Shepherd) on my local fox affiliate station and they broke inwith breaking news to show tRump meeting with Biden in the oval office. I promptly changed the channel and I wont watch it any more.', 'created': '2024-11-14 03:15:08', 'submission_id': '1gprvlu'}
{'comment': "What I think you are missing is the interference from the republican representatives. They blunted the efforts of the jan 6 committee and NOT ONE of them attacked tRump for what he did. Ok there were some but your mtgs and mike whatevers were always in his pocket. Remember the republicans stopped the end game for tRump's impeachment. They were the reason he was not removed from office. I agree with your overall point but you have to account for a thoroughly corrupted republican party that cheats and lies at every turn. Our democracy was not designed to be able to handle republican treachery and an electorate that will vote against their own best interests.", 'created': '2024-11-13 15:11:13', 'submission_id': '1gprvlu'}
{'comment': "News that everyone already knew.\n\nThe only thing in the media is FUDD.\n\nIt takes effort to read hard details about legislation and it's purposefully obtuse.", 'created': '2024-11-12 23:17:26', 'submission_id': '1gprvlu'}
{'comment': 'Because it’s Board are conservatives.', 'created': '2024-11-13 04:23:04', 'submission_id': '1gprvlu'}
{'comment': 'Any recs? I need to disassociate for a bit lol.', 'created': '2024-11-13 04:37:30', 'submission_id': '1gprvlu'}
{'comment': 'Discovered that happy place too…lost in shows and movies. Stay busy.', 'created': '2024-11-13 06:34:10', 'submission_id': '1gprvlu'}
{'comment': 'Same, not even watching the local news.', 'created': '2024-11-13 02:04:49', 'submission_id': '1gprvlu'}
{'comment': 'In a sense, EVERY news corp gave trump endless, ENDLESS publicity. Good or bad, he got it 25/7. And he still is, and will until the day he dies.', 'created': '2024-11-13 04:02:39', 'submission_id': '1gprvlu'}
{'comment': 'Mental health. People are scared/upset coming out of the election and need to tune out from the bad news for a bit.\n\nReally does wonders, I must say. Reducing or changing your media diet is something that should be encouraged.', 'created': '2024-11-12 20:30:12', 'submission_id': '1gprvlu'}
{'comment': 'It’s not anti MSNBC; it’s anti hearing anything about Trump. I get it because I haven’t watched one second of news since the election. I can’t stand his voice, his incoherent ramblings or his bloated orange face. \n\nI will just assume he’s doing all of the horrible things he said he would but I’m not going to watch running commentary on it. Being enraged 24/7 will kill me and it’s hard enough to feel joy even when blacking him and all other news out. I also canceled my WaPo subscription and deleted my twitter. \n\nWe’re screwed and there’s nothing we can do about it. Blame the small majority of your fellow citizens who voted for this disaster.', 'created': '2024-11-12 20:35:33', 'submission_id': '1gprvlu'}
{'comment': 'I think people are checking out of watching and reading the news because a lot of the MSM loves putting out these sensationalist pieces about how Trump is breaking xyz law. The media loves giving him attention and I feel we’ve grown apathetic to hearing about it. Like I really don’t care anymore to hear how he is breaking the law- let me know when he will actually face consequences. Let me know when these judges say no more delay tactics or games. Everyday is the same shit and nothing will be done so why should the American public care and tune in. The precedent has been set- break the law and get rewarded for it. One day we will hear court cases using the Trump argument- well Trump broke this law and never faced consequences so I’m breaking the law too (and yes we know Justice is a two tier system). \n\nAnd now that Trump has been elected, we can only expect journalism to get worse and to become more skewed by the oligarchs. I don’t want to give them my attention or energy.', 'created': '2024-11-12 20:48:31', 'submission_id': '1gprvlu'}
{'comment': 'I think some just need a break from every Trump 2.0 move.\n\nMSNBC reporting for the most part was reasonable. They said there was enthusiasm for Harris in last 10 days, but it is always the low information voter who never goes to a rally that picks winners.', 'created': '2024-11-12 20:37:45', 'submission_id': '1gprvlu'}
{'comment': "It's not MSNBC specifically, I'm bailing on corporate news entirely. They're nothing more than ad spewing machines that generate outrage for more attention to show you more ads.\n\nHere's the deal. If they were truly useful, meaningful and valuable to us the general public, we would have actionable news. We would be told what's happening and what to do about it. That's not what they're doing anymore. It's bombastic nonsense designed to cause anxiety, fear and outrage. This is due to the simple fact that, you will come back from the ad hoping for resolution to whatever outrage they just put you through. You end up coming back for more outrage (if it bleeds it leads) with the real answers coming right up... after these messages...", 'created': '2024-11-12 20:46:40', 'submission_id': '1gprvlu'}
{'comment': "From my perspective I don't think this being biased against MSNBC. I read the article and it mirrored my own behavior from election night through to today. I went to sleep watching MSNBC and being uncertain of the outcome. Waking up to the losses I turned off MSNBC and have yet to watch a second since then. The same with CNN. I avidly watched them even including Mike Smerconish but I haven't them since election day either. Not sure when I am gonna be back. Ill listen for whispers of the turn coats paying for this transgression.", 'created': '2024-11-12 21:00:07', 'submission_id': '1gprvlu'}
{'comment': "I prefer my news to be unbiased and not catering to my views because they're saying what I want to hear. How can I make good choices with such skewed information?\n\nI hate editorials. Idgaf about anyone's opinion on the news. \n\nAlso, part of the reason Trump is in power is because of the conflict of interest where Trump coverage gained ratings for the news channels. I'd rather not watch the news. They normalized him, they allowed him to get his hateful messages out there, and they profited from it. \n\nFuck 'em.", 'created': '2024-11-13 03:40:50', 'submission_id': '1gprvlu'}
{'comment': 'I hear ya. CNN has a Republican owner, and Fox is a joke. I have been thinking of listening to foreign sources, though, such as BBC World Service and CBC.', 'created': '2024-11-12 22:31:27', 'submission_id': '1gprvlu'}
{'comment': "It's not anti-NBC. It's just the mental health effects exposing your self to people live streaming apocalypse", 'created': '2024-11-12 21:58:36', 'submission_id': '1gprvlu'}
{'comment': 'I personally feel lied to, and gaslit through this entire election. I’ll probably watch again in a few months.', 'created': '2024-11-13 01:37:38', 'submission_id': '1gprvlu'}
{'comment': "Not going to lie, MSNBC is just 'ok'. They are way too corporate, don't make a point to support Palastine or Workers rights and Unions, and they often feel like everyone there is from the uppercrust bubble with strange takes on events or what should be done. They don't want to call out corporations and perpetually try to blame things on the younger generation or basically anyone except who is responsible if that party is a corporation or wealthy or boomer generation. They are basically only Left be virtue of Fox being so crazy Right, and not really better than CNN in many respects.This is something of an issue with the Dem party as a whole, though.", 'created': '2024-11-12 21:14:26', 'submission_id': '1gprvlu'}
{'comment': 'We only got it to watch Maddiw for a couple of months before the election, and then we canceled it because, well, we need our sanity.', 'created': '2024-11-12 20:39:18', 'submission_id': '1gprvlu'}
{'comment': 'Like others said, I have no interest in hearing the news for a while. Felt better to accept what happened, stay away from news for a while, and try to move on.', 'created': '2024-11-12 21:33:52', 'submission_id': '1gprvlu'}
{'comment': 'While I agree with you I would advise you to take a portion of that energy and make sure that you listen to at least one other source, personally I have 3 that I listen to regularly, MSNBC, NPR, and the BBC,', 'created': '2024-11-13 04:05:27', 'submission_id': '1gprvlu'}
{'comment': 'I’m an avid news freak. I just can’t watch anything right now. \n\nBeen living off of stupid shows on Netflix etc. and YouTube. \n\nAlso been trying to find new Subs on Reddit that have nothing to do with news or politics.', 'created': '2024-11-13 04:08:39', 'submission_id': '1gprvlu'}
{'comment': 'I loved MSNBC because they were on the right side of the news, reporting the truth. But all day dire reporting about all the bad that we individuals can’t seem to do anything about plays into doom scrolling which is bad for mental health. I wish they could report on more positive, hopeful stories from around the world. Or, maybe there just aren’t any anymore.', 'created': '2024-11-13 07:43:18', 'submission_id': '1gprvlu'}
{'comment': 'Half their hosts are Bush era Republicans and they have spent all week blaming liberals for the loss. MSNBC is to liberal what CNN is to liberal.', 'created': '2024-11-13 13:00:39', 'submission_id': '1gprvlu'}
{'comment': "They are pretty much our version of FOX News, spreading out hate and fear. Honestly, CNN is the better option at this point even though we've pretty much been bashing them for the past 2 years.", 'created': '2024-11-12 21:04:27', 'submission_id': '1gprvlu'}
{'comment': 'My anxiety was spiking so hard leading up to the election that I missed 4 days from work due to chest pain. Following the election, I was having existential crises after crises and spiraling into conspiracies and denial. The best thing I can do is check out for a bit and focus on me, because I literally can’t do anything about anything until the midterms. Just hoping next year’s gubernatorial race here in VA goes well. I’ll be a little more relieved when Youngkin isn’t my governor anymore and we have a safe blue state again.', 'created': '2024-11-13 01:22:24', 'submission_id': '1gprvlu'}
{'comment': "I feel like checking the NPR website every day or two will be all I can do. I've had MSNBC as my default background noise for the last 4 years but I just can't with that man.", 'created': '2024-11-12 21:56:03', 'submission_id': '1gprvlu'}
{'comment': "I have been for a long time, but I'm getting reeaaaally tired of everyone (those who make fun of him) doing a Trump impression. I cannot stand his voice and instead of telling us a story or a joke or relaying information about the newest stupid thing he's done or said, it *has* to be accompanied by the person doing the impression and I instantly move on.", 'created': '2024-11-12 23:24:46', 'submission_id': '1gprvlu'}
{'comment': 'Me either. But then again I’m staying away from 24/7 news altogether.', 'created': '2024-11-12 20:20:14', 'submission_id': '1gprvlu'}
{'comment': 'They will try to normalize and sane wash everything like last time.', 'created': '2024-11-12 20:19:02', 'submission_id': '1gprvlu'}
{'comment': 'It already does. WTF was all that sane washing about?', 'created': '2024-11-12 20:41:06', 'submission_id': '1gprvlu'}
{'comment': "I've been watching old Columbo and MASH episodes.", 'created': '2024-11-12 22:03:05', 'submission_id': '1gprvlu'}
{'comment': 'Ohhhh, I don’t envy you! I think I’d go insane!', 'created': '2024-11-13 01:09:51', 'submission_id': '1gprvlu'}
{'comment': 'That sounds great! I think I’m going to read some books and work on some puzzles myself.', 'created': '2024-11-13 23:47:47', 'submission_id': '1gprvlu'}
{'comment': 'Especially when not a goddamn one of them has the guts to say the real and obvious reason. It’s misogyny. Only misogyny. They made no mistakes. The electorate just refuses to let a woman be head of the country.', 'created': '2024-11-12 21:40:16', 'submission_id': '1gprvlu'}
{'comment': 'Fox had better get to work preparing their "this epic inflation is all Biden\'s fault" stories for once the tarrifs hit. And then the "unemployment is Biden\'s fault" stories for the trade war.', 'created': '2024-11-12 21:53:06', 'submission_id': '1gprvlu'}
{'comment': 'You can control your subs.', 'created': '2024-11-12 21:04:26', 'submission_id': '1gprvlu'}
{'comment': 'Yeah we definitely overreact to a lot of stupid shit and get fed rage bait from New Republic and Rolling Stone.', 'created': '2024-11-12 21:56:41', 'submission_id': '1gprvlu'}
{'comment': 'I definitely agree that they’re both great. I just can’t handle any Trump talk for a while.', 'created': '2024-11-13 01:19:01', 'submission_id': '1gprvlu'}
{'comment': 'I watched some of Kimmel last night and survived. I think I might have even laughed a bit. Thank you.', 'created': '2024-11-13 21:35:34', 'submission_id': '1gprvlu'}
{'comment': 'I was over Colbert long before the election. He’s not as funny as he thinks he is.', 'created': '2024-11-12 21:55:16', 'submission_id': '1gprvlu'}
{'comment': 'They are all owned by the Right. Why are you surprised they allow them to lie? Each MSM network has the same goal.', 'created': '2024-11-13 04:36:22', 'submission_id': '1gprvlu'}
{'comment': "Off and on through the morning and then my radio app has MSNBC so most of the afternoon shows too. I'm 3 hours into The Running Man audiobook tonight 😎", 'created': '2024-11-13 04:42:17', 'submission_id': '1gprvlu'}
{'comment': 'Look to the cookie!', 'created': '2024-11-12 22:35:07', 'submission_id': '1gprvlu'}
{'comment': "Yeah Sling but $40 is the cheapest you can watch MSNBC with. I mean after the results, I put my subscription on pause until February and then I'll reassess lol.", 'created': '2024-11-12 21:11:20', 'submission_id': '1gprvlu'}
{'comment': 'ooooh good idea, I cant believe I didnt think of that haha', 'created': '2024-11-13 01:19:50', 'submission_id': '1gprvlu'}
{'comment': 'We will be back when things start really sucking and we need a place to complain.', 'created': '2024-11-13 03:49:20', 'submission_id': '1gprvlu'}
{'comment': 'So let’s not admit the truth or search out for it let’s just repeat our past mistakes or make new mistakes based on faulty information. That’s a great plan.', 'created': '2024-11-12 20:22:35', 'submission_id': '1gprvlu'}
{'comment': 'Yea, almost all my family just so blindly believes what faux news and trump say. The only thing left to say is that they are stupid.', 'created': '2024-11-12 21:08:39', 'submission_id': '1gprvlu'}
{'comment': 'But not in the majority. You take white GenX votes out of the results, Harris wins in a landslide.', 'created': '2024-11-12 20:25:34', 'submission_id': '1gprvlu'}
{'comment': 'I totally disagree. The economy was getting better. The problem is misinformation and downright ugly lies from right wing media.', 'created': '2024-11-12 20:06:28', 'submission_id': '1gprvlu'}
{'comment': "Agree except what voters might have said: it's how I perceive the economy", 'created': '2024-11-12 20:03:05', 'submission_id': '1gprvlu'}
{'comment': 'The economy is good though.', 'created': '2024-11-12 20:05:07', 'submission_id': '1gprvlu'}
{'comment': 'No it isn’t. It’s misogyny and racism.', 'created': '2024-11-12 20:32:12', 'submission_id': '1gprvlu'}
{'comment': 'You mean the people who voted to wreck the economy? Elon Musk even told them that was the plan!', 'created': '2024-11-12 20:14:09', 'submission_id': '1gprvlu'}
{'comment': 'You do really that the person these people voted for only had "a concept of a plan" for any economic policies. You do understand that the voters saying its the economy and voting for tRump doesn\'t make sense. You can\'t make it make sense. He has no plan. This isn\'t the first time polls would have been wrong.', 'created': '2024-11-12 21:09:30', 'submission_id': '1gprvlu'}
{'comment': 'Here you go \n\nhttps://www.cnn.com/election/2024/exit-polls/national-results/general/president/46', 'created': '2024-11-12 20:08:40', 'submission_id': '1gprvlu'}
{'comment': 'That’s a great idea.', 'created': '2024-11-12 23:54:34', 'submission_id': '1gprvlu'}
{'comment': "I'm with you...", 'created': '2024-11-13 04:54:59', 'submission_id': '1gprvlu'}
{'comment': "It doesn't help... but some way more than others.", 'created': '2024-11-12 21:15:45', 'submission_id': '1gprvlu'}
{'comment': '1000%', 'created': '2024-11-13 13:32:28', 'submission_id': '1gprvlu'}
{'comment': 'Yeah same. Nothing against MSNBC at all, for the most part, but I just can’t deal with it right now. Maybe later, but I can’t deal with all the terrible news and hot takes about “economic anxiety” and Dems in disarray BS that we surely are getting.\n\nAfter he won in 2016, I was all over MSNBC and kept up like crazy. This time, I’m just…just no. It’s too much right now.\n\nIf they get Rachel back nightly I might start watching her again in due time, and I’ll watch Lawrence O’Donnell eventually too…maybe. Not dealing with the other bullshit though. Nope.', 'created': '2024-11-12 20:41:49', 'submission_id': '1gprvlu'}
{'comment': 'Yeah I stopped recording Nightly News and local news after the election. I’ve heard enough of Trump’s bullshit for the last 8 years and the media just continues to give him airtime. My IQ can’t take another 4+ years of his stupidity.', 'created': '2024-11-12 20:39:07', 'submission_id': '1gprvlu'}
{'comment': 'You know what…you are right. I think I need to scale back. I am in a bunch of politics group chats and watch MSM (MSNBC and CNN) constantly. But I think I am going to pick up a few shows and watch some movies during my down time, control the things that I can control within my reach and then focus on self care.', 'created': '2024-11-12 20:47:09', 'submission_id': '1gprvlu'}
{'comment': "Yup I've started doing this after I lashed out after some kids car music woke me up.\n\n\nIf I'm this exhausted then I don't need to be doing anything but taking care of my mental health. Media fucked us up so bad...I just cant anymore. I'm opting out", 'created': '2024-11-12 20:34:13', 'submission_id': '1gprvlu'}
{'comment': 'Yeah I have stopped watching anything but sports and comedy since the election just to preserve my sanity. I don’t know when I will watch the news again.', 'created': '2024-11-12 20:48:37', 'submission_id': '1gprvlu'}
{'comment': "Yeah, I've been watching Seth Meyers and Daily Show and plan on it to get me through these 4 years. But totally understand this line of thinking.", 'created': '2024-11-12 21:02:44', 'submission_id': '1gprvlu'}
{'comment': 'I can’t take it anymore. I need to recharge to prepare for the next four years of figurative warfare with lunatics.', 'created': '2024-11-12 21:52:23', 'submission_id': '1gprvlu'}
{'comment': 'No shit. Been spending my time today setting up my guitar amplifier and effects loops, meditating, walking my dogs an extra block, phone on Focus. Only my wife can contact me; emergency contacts updated and all that(Gotta stay safe in Florida for now).', 'created': '2024-11-12 22:03:27', 'submission_id': '1gprvlu'}
{'comment': 'I’m tuning out too. I will not watch a presidential press conference for the next four years. I’m having trouble stomaching this election result. Hard to believe the country voted this POS into office again. Whatever horrible shit happens to us and our government, we deserve it.', 'created': '2024-11-13 01:09:46', 'submission_id': '1gprvlu'}
{'comment': "Exactly, hearing from people now denying THIS election. I'm not sorry. The system/s are too diverse and widespread to be able to mess up the election. Funny how many people complain about the ineptitude of our government and officials doing nothing. Yet somehow a nationwide agenda with zero leaks managed to cheat votes in favor of trump and the republicans to win the entire election. It's not possible.\n\nDo I want some hand count and validation, yeah. Just because anything of this magnitude should have checks and balances. Some elections were as close as 1% of votes. Kamala lost the presidency by as little as 260k(Wisconsin, michigan, and Pennsylvania)votes when you really look at it. Every vote counts!", 'created': '2024-11-12 21:42:57', 'submission_id': '1gprvlu'}
{'comment': 'Social media as well!', 'created': '2024-11-12 22:17:43', 'submission_id': '1gprvlu'}
{'comment': 'Agree. A break is good for coming to terms with the next four years. I think there’s too much punditry trying to discern massages the voters sent when basically it’s only one for the swing voters. It’s pocketbook only. They don’t care what caused inflation or higher prices, only that the higher prices are still here. The swing voters that decide elections transactional voters and loyal to neither party.', 'created': '2024-11-13 13:49:12', 'submission_id': '1gprvlu'}
{'comment': "I don't think we're completely screwed but it's going to be another awful 4 years with zero chance he'll ever be removed from power or face jail time and there's no point in staying glued to it just to be angry and miserable. MSNBC is mostly in favor of Democrats but what you'll still be exposed to all of the negative shit and like last time, they will cover the glimpses of hope he'll be taken down this time due to something that inevitably will lead nowhere. \n\nWe just got to do what we can to help get Democrats elected in 2026 and 2028, find some way to combat the dominance the right has over social media, and the gullibility of the public to fall for it all. We also just have to accept a massive chunk of the population are selfish and/or morons and just hope next election they swing back to favoring Democrats and actually vote. They just can't be trusted to be there for Democrats every election.", 'created': '2024-11-13 18:49:50', 'submission_id': '1gprvlu'}
{'comment': "100% this! Exactly! It is just a blue version of fox.\n\nEdit: with the exception that I don't think MSNBC distorts nor outright lies like Fox does, just that they both seem to make effort to capitalize and monetize emotional stickiness.", 'created': '2024-11-12 21:08:57', 'submission_id': '1gprvlu'}
{'comment': "PBS is a good source of news and not Trump hyper-focused like the other outlets. They tell a news story and then move on not adding commentary. I haven't been able to watch The View in years as they talk about Trump non-stop even when he isn't in office.", 'created': '2024-11-13 01:39:43', 'submission_id': '1gprvlu'}
{'comment': "it's gonna get so much worse, I agree with your assessment, they're 100% partially to blame for this result but I think it'll get worse", 'created': '2024-11-12 20:45:13', 'submission_id': '1gprvlu'}
{'comment': "Tell me about it. I'm thinking about swapping! Either public policy, urban planning, or...theatre.😅It's rough out here. Sending love during these rough waters.💖", 'created': '2024-11-13 02:03:55', 'submission_id': '1gprvlu'}
{'comment': '[removed]', 'created': '2024-11-14 01:37:37', 'submission_id': '1gprvlu'}
{'comment': None, 'created': '2024-11-14 02:33:44', 'submission_id': '1gprvlu'}
{'comment': "The *One Chicago* shows, too: *Med*, *Fire*, *PD*. IMO *Fire* is the 'lightest' and *PD* the 'heaviest'.\n\nI like the *FBI* shows, too.\n\nI guess I am on Team Dick Wolf.", 'created': '2024-11-15 17:55:36', 'submission_id': '1gprvlu'}
{'comment': 'Majority of Hispanic males did vote for Trump. \n\nI also think he won the majority of GenZ males.', 'created': '2024-11-13 05:43:24', 'submission_id': '1gprvlu'}
{'comment': 'The economy was improving..I think the way Biden treated it and communicated it was not good. He should have show more compassion for the people who were dealing with tough times especially 2-3 years. The damage was done with the messaging and the Dems allowed Trump to own the economy and immigration messaging. Immigration was another issue that needed to be resolved a while back. Cities were being flooded with migrants in blue states and people got frustrated and annoyed.', 'created': '2024-11-12 20:54:24', 'submission_id': '1gprvlu'}
{'comment': "The voters said what it was. I don't disagree that there is a lot of misinformation about the economy, but ignoring what they actually said is not going to help us win next time. We need to do a better job of communicating about the economy. Just telling people the stock market is doing great so they shouldn't have any problems doesn't help", 'created': '2024-11-12 20:13:38', 'submission_id': '1gprvlu'}
{'comment': 'The "the price is high but I\'ll still buy it and bitch about how expensive it is" economy, which means the actual economy is doing pretty damn well', 'created': '2024-11-12 20:08:00', 'submission_id': '1gprvlu'}
{'comment': 'The economy isn’t bad but we failed to successfully combat the disinformation. We are going to keep losing if we don’t fight them on social media.', 'created': '2024-11-12 20:19:47', 'submission_id': '1gprvlu'}
{'comment': "This attitude is why they say we are snobby. We can't go around telling them what they think.", 'created': '2024-11-12 20:32:58', 'submission_id': '1gprvlu'}
{'comment': 'I mean the people we need to convince not to vote for a megalomaniac in the next election', 'created': '2024-11-12 20:16:20', 'submission_id': '1gprvlu'}
{'comment': 'They voted for vibes. They said to themselves I can’t afford eggs, Dems are in the White House, it must be their fault. They don’t care about policy. You can’t look at this from your own perspective because you voted for Harris. We need to bring back the people who didn’t', 'created': '2024-11-12 22:01:09', 'submission_id': '1gprvlu'}
{'comment': "This doesn't really say anything. Inflation was the number one issue [Why America Chose Trump: Inflation, Immigration, and the Democratic Brand - Blueprint](https://blueprint2024.com/polling/why-trump-reasons-11-8/)", 'created': '2024-11-12 20:12:02', 'submission_id': '1gprvlu'}
{'comment': "Exactly this. I will just get angry and upset so the only social media I'm interacting with is Reddit and trying to only see non political posts.", 'created': '2024-11-12 20:48:12', 'submission_id': '1gprvlu'}
{'comment': "Rachel kept me sane after 2016. It was during the height of the pandemic I just had to pretty much stop watching news completely for my mental health. I couldn't handle the constant barrage of death, doom and hopelessness. I haven't gone back to watching and don't plan on it anytime soon.", 'created': '2024-11-12 23:09:06', 'submission_id': '1gprvlu'}
{'comment': "This is exactly where I'm at. And I was MSNBC loyal. Nothing personal, just need a news break for my mental health.", 'created': '2024-11-12 23:46:32', 'submission_id': '1gprvlu'}
{'comment': "For me lately, the only shows I'll watch is The Weekend and Mrs. Ruhle on Friday. I love the panels she has on Fridays.", 'created': '2024-11-13 10:44:10', 'submission_id': '1gprvlu'}
{'comment': 'Did Doom Scrolling exist before 2016?', 'created': '2024-11-13 04:20:31', 'submission_id': '1gprvlu'}
{'comment': "I'm on the verge of this. We watch nightly news just to get a rundown but I'm disappointed at how they handled the trump election and not calling out lies more. They are all complicit and I need a mental health break.", 'created': '2024-11-12 20:58:49', 'submission_id': '1gprvlu'}
{'comment': '>I’ve heard enough of Trump’s bullshit for the last 8 years and the media just continues to give him airtime\n\nThis probably contributed significantly to his success, constantly being aired and sane washed while Kamala was scrutinized', 'created': '2024-11-12 23:09:20', 'submission_id': '1gprvlu'}
{'comment': 'Once Vlad finds him a window, that’ll end, but Vlad will still be the issue.', 'created': '2024-11-12 20:48:14', 'submission_id': '1gprvlu'}
{'comment': "Their viewership will climb weekly, and probably reach 90% pre election numbers in 6 months, and higher as we approach 2026. Nothing they weren't expecting.", 'created': '2024-11-12 22:04:49', 'submission_id': '1gprvlu'}
{'comment': 'Same here.', 'created': '2024-11-12 21:02:13', 'submission_id': '1gprvlu'}
{'comment': 'I love Seth Meyers and I even need a break from him.', 'created': '2024-11-13 01:05:20', 'submission_id': '1gprvlu'}
{'comment': 'I don’t think it’s entirely crazy to think a man who basically admitted to cheating and is known to cheat and lie\n\n\nMay have cheated and lied this election\n\n\nBut I’m not also going to storm the capitol and be insane about it. I accept the reality I’m in. Even if I hate it.', 'created': '2024-11-13 02:21:44', 'submission_id': '1gprvlu'}
{'comment': "Partisanship is a red herring, that don't give a rats ass about that. They need to scare you enough to make you sit through ads. The ads pay all of their salaries, they don't make money through subscriptions or any other method.", 'created': '2024-11-12 21:12:22', 'submission_id': '1gprvlu'}
{'comment': 'Yeah, News Hour leans liberal in values but not blatantly partisan. They cover the news matter of factly like Reuters and AP and move on and save commentary for the end of the show where more civil representatives of the the parties discuss things politely. The Republican commentator is not a Trump fan or authoritarian / populist.', 'created': '2024-11-13 19:01:26', 'submission_id': '1gprvlu'}
{'comment': 'I just watched an hour of cat videos. It’s going to be a long 4 years.', 'created': '2024-11-14 04:01:29', 'submission_id': '1gprvlu'}
{'comment': 'I dont think he could have communicated it more clearly. Ask your self - all the people polled and said the economy was the top issue and went on to vote for tRump - how does that happen? he expressed no plan. This is a snapshot of how Americans are living in alternate universes. They are told the economy is bad vote for our guy to fix it. And that guy happened to be a failed business man tRump. Truth no longer matters to these people. Blaming Biden for that is unfair.', 'created': '2024-11-12 21:18:28', 'submission_id': '1gprvlu'}
{'comment': "What they said is meaningless if it isn't true. They have already decided where they want to stand. It's like a horse lying in the dirt dying because it refuses to drink the water you led it to, and some jackass is blaming you for not getting the horse any water. At some point, it's not in your power to change a person's mind, and this was one of those times.", 'created': '2024-11-12 20:24:09', 'submission_id': '1gprvlu'}
{'comment': 'Nobody on the Democratic side was saying "just vote for us because the stock market is doing great"\n\nThe campaign ended a week ago and people\'s memories are already so bad.', 'created': '2024-11-12 20:27:14', 'submission_id': '1gprvlu'}
{'comment': 'But if the voters said the sky was red and we know its blue, would you take that as valid info? tRump had "concepts of a plan" for the economy. How does that translate into I am concerned about the economy so i\'ll vote for him? Just for the record it doesn\'t.', 'created': '2024-11-12 21:12:51', 'submission_id': '1gprvlu'}
{'comment': 'The thing is, death, destruction,despair are easily sold; while selling the good things is hard.', 'created': '2024-11-12 20:22:20', 'submission_id': '1gprvlu'}
{'comment': 'exactly. "economy" has become an all encapsulating code word for the "we\'re tired of evolving and we want to take America back to the 1850s" movement that is maga.', 'created': '2024-11-12 20:46:12', 'submission_id': '1gprvlu'}
{'comment': "That's how I feel when people bitch about gas.", 'created': '2024-11-12 20:40:53', 'submission_id': '1gprvlu'}
{'comment': "Right. It's not that the economy is bad, it's that someone told us that the economy is bad. Those are two very different things.", 'created': '2024-11-12 21:21:22', 'submission_id': '1gprvlu'}
{'comment': 'I do not care if misogynistic racists think I am snobby. They’re welcome to their opinions.', 'created': '2024-11-12 20:39:00', 'submission_id': '1gprvlu'}
{'comment': "No matter how much we kiss their asses they're still not going to like us.", 'created': '2024-11-13 15:47:43', 'submission_id': '1gprvlu'}
{'comment': 'Actually, this link reinforces my point that racism and sexism were big factors and the media is whitewashing it. Nobody argues that inflation wasn’t a factor. What this set of data infer is that Kamala Harris was a terrible candidate. The question is why? Just look at rural voters in the link I provided. Do rural voters tend to be more racist and sexist? \n\nYou will never find a link to a polling firm that comes to the conclusion that racism, sexism and hate were pivotal factors in this election because voters will not admit that because they don’t believe that they are racist or sexist. That’s the truth we all polish into a nice shiny turd so we can ignore it with bullshit statistics that don’t ask the hard questions which will not be answered truthfully anyway', 'created': '2024-11-12 20:17:52', 'submission_id': '1gprvlu'}
{'comment': 'Thats where I am at as well.', 'created': '2024-11-12 21:01:41', 'submission_id': '1gprvlu'}
{'comment': 'Me, too. And yet here we all are.', 'created': '2024-11-12 21:29:39', 'submission_id': '1gprvlu'}
{'comment': 'Yep, and even with that, I am mentally filtering and limiting what I give attention to.', 'created': '2024-11-12 21:08:47', 'submission_id': '1gprvlu'}
{'comment': 'Same. For some reason I thought they would be different. They are just as bad as everyone else.', 'created': '2024-11-13 01:53:09', 'submission_id': '1gprvlu'}
{'comment': 'Bingo. The only time they talked less about Trump was when they were constantly talking about Biden being too old to run again. 😐😐', 'created': '2024-11-13 01:52:13', 'submission_id': '1gprvlu'}
{'comment': "They love Trump, he is their cash cow. But like someone else said I've heard enough of his bullshit for 9 years, can't handle another 4.", 'created': '2024-11-13 07:26:48', 'submission_id': '1gprvlu'}
{'comment': 'I’m even considering which games to watch based on which network it’s on. On principle, I try to avoid Faux. But they’re all complicit and owned by Billionaires who sane-washed him.', 'created': '2024-11-12 23:35:24', 'submission_id': '1gprvlu'}
{'comment': 'Nail meet head. I can\'t believe the number of people validating the idea that the people said the economy was the number 1 issue and yet voted for tRump. That shows you how much misinformation has seeped into our political accords. He didn\'t have a plan for the economy so its not the "economy stupid"', 'created': '2024-11-12 21:15:12', 'submission_id': '1gprvlu'}
{'comment': 'They absolutely did say that all the time', 'created': '2024-11-12 20:42:01', 'submission_id': '1gprvlu'}
{'comment': 'What do you mean by valid info? I’m not saying **I** had a problem with the economy, I’m listening to what the voters said. The democrats did not do a good job of addressing it', 'created': '2024-11-12 21:59:31', 'submission_id': '1gprvlu'}
{'comment': "That's how I feel when people bitch about groceries but world tours sell out, everyone has a new phone the second it comes out, sports games aren't empty...\n\nMaybe the economy isn't bad, just people's economic choices are?", 'created': '2024-11-12 20:44:44', 'submission_id': '1gprvlu'}
{'comment': "We can't hurt the feelings of the people who voted for a man who rapes women.", 'created': '2024-11-12 23:51:13', 'submission_id': '1gprvlu'}
{'comment': 'By creating this false narrative, you are making it harder for a black woman to run in the future.', 'created': '2024-11-12 20:40:28', 'submission_id': '1gprvlu'}
{'comment': 'The top three reasons were inflation, immigration, and trans issues. Whether we like it or not ignoring what they actually said so we can call them bigots will only hurt us', 'created': '2024-11-12 20:26:16', 'submission_id': '1gprvlu'}
{'comment': 'Hello everyone, same here. I recommend going outside for a walk, being in nature somehow.', 'created': '2024-11-12 22:24:34', 'submission_id': '1gprvlu'}
{'comment': 'I’ll admit that this particular sub is a bit of a safe space for me. I glad to have you all 🥺', 'created': '2024-11-12 21:39:30', 'submission_id': '1gprvlu'}
{'comment': 'Republican strategists are counting on that very thing.', 'created': '2024-11-13 14:00:02', 'submission_id': '1gprvlu'}
{'comment': 'No they didn’t, Harris was even pushing an anti price gouging platform because she said she knew that people were struggling, plus the down payment assistance on housing and small businesses. She was never bragging about stocks.', 'created': '2024-11-12 21:09:12', 'submission_id': '1gprvlu'}
{'comment': 'Who is "they"? If you paid any attention at all to the Harris campaign, the primary economic messages were:\n\n* Cut taxes for lower income people, raise taxes for the rich and corporations\n* Raise the minimum wage\n* Incentivize the construction of new housing units and provide down payment assistance to first-time homebuyers\n* Cancel student debt\n* Expand the child tax credit\n* Enforce laws against price gouging\n* Continuing to cap and lower prescription drug prices\n\n \nYou can find all of this in the literal 82-page document they released detailing every specific aspect of their plan: [https://kamalaharris.com/wp-content/uploads/2024/09/Policy\\_Book\\_Economic-Opportunity.pdf](https://kamalaharris.com/wp-content/uploads/2024/09/Policy_Book_Economic-Opportunity.pdf)\n\nNone of those plans involved "celebrate stock market gains for no reason". This was the most pro-worker, pro-working class economic agenda in modern American history.', 'created': '2024-11-12 21:06:33', 'submission_id': '1gprvlu'}
{'comment': 'I feel like even if democrats did a good job at addressing it, it still wouldn’t make a difference unfortunately', 'created': '2024-11-12 23:09:56', 'submission_id': '1gprvlu'}
{'comment': "The media just never pointed out everybody's economy sucks too and Biden doesn't control them either.", 'created': '2024-11-12 20:48:42', 'submission_id': '1gprvlu'}
{'comment': "Ya but don't forget those people bitching about groceries vote while the people paying to see world tours probably aren't.", 'created': '2024-11-12 21:10:24', 'submission_id': '1gprvlu'}
{'comment': 'Exactly! And if somehow I do hurt their feelings I assure everyone I do not care lol.', 'created': '2024-11-13 00:07:37', 'submission_id': '1gprvlu'}
{'comment': 'Nope. But thank you for your opinion too!', 'created': '2024-11-12 20:42:19', 'submission_id': '1gprvlu'}
{'comment': 'So did your exit poll include a category for “because I hate black women”? No. We NEVER ask questions like that. So, according to your logic, that cannot exist as a reason.', 'created': '2024-11-12 20:27:41', 'submission_id': '1gprvlu'}
{'comment': 'I would like to second that notion, immensely. Only thing I have been ingesting as far as news is concerned. I am happy to have you guys as well.', 'created': '2024-11-13 02:15:56', 'submission_id': '1gprvlu'}
{'comment': 'Do you really think republicans read through that? They don’t listen to policy', 'created': '2024-11-12 22:02:04', 'submission_id': '1gprvlu'}
{'comment': "Well, of course not. That would've brought up the pandemic more and then it'd be about his handling of a public health crisis...", 'created': '2024-11-12 20:51:41', 'submission_id': '1gprvlu'}
{'comment': 'Not necessarily. I know people on both sides of the aisle that spend more on luxury goods while bitching about groceries/the economy.\n\nTo clarify, I\'m not suggesting anyone is wrong for bitching about the price of groceries - I just think there\'s a lack of understanding about the greater economy and consumer choices that\'s really hard to message. Groceries can be too expensive, the "Big E" economy can be good and people can make bad personal financial decisions all at the same time. I think we saw last week that only one of those really works as a political message, though.', 'created': '2024-11-12 21:37:01', 'submission_id': '1gprvlu'}
{'comment': 'I have already seen a bunch of people say it has to be a white man. Because of the narrative you are pushing.', 'created': '2024-11-12 20:46:40', 'submission_id': '1gprvlu'}
{'comment': "Then I'm not sure what to tell you. She's both not offering enough specifics/just talking about the stock market AND her plan is too detailed and people don't want to hear it or take the time to digest it.\n\nIt sounds like Americans were just bitter and angry about inflation. That is why she lost. The average voter does not understand that prices are never going back down to the levels they were at before the pandemic, and they haven't yet accepted that current prices are the new normal. Democrats were caught as the incumbent party during that cycle and they were punished for it. Nothing about her campaign could've changed that.", 'created': '2024-11-12 22:44:55', 'submission_id': '1gprvlu'}
{'comment': "Fuck, they should've been talking about inflation and tariffs all the time. I'm a member of the LGBTQ+ community too but transgender rights are not important to the regular American.", 'created': '2024-11-12 20:55:32', 'submission_id': '1gprvlu'}
{'comment': 'I didn’t know I was so powerful! Because I, personally, am accurately speaking to the racism and misogyny a white man will be next??? I need to use these powers elsewhere too. Stop bugging me. Go away. I have zero desire to hear your whitewashing anymore. Bother someone else. Thanks! Bye!', 'created': '2024-11-12 20:48:37', 'submission_id': '1gprvlu'}
{'comment': 'I agree with your second paragraph and do think that’s what happened. She needed to use Trump’s playbook and find some catchphrase like “Covid inflation” or something that clearly distanced herself from it and then used it absolutely every chance she had. We need to call the media the” crooked conservative media”. Silly catchphrases repeated ad nauseam', 'created': '2024-11-12 22:53:24', 'submission_id': '1gprvlu'}
{'comment': 'Clearly not. Hear in PA the anti trans political ads on TV were non stop. So that message motivated the idiots and not the people that have real concerns. to your point.', 'created': '2024-11-12 21:11:26', 'submission_id': '1gprvlu'}
{'comment': "That doesn't work when you're running against Trump. Nearly every single Republican who's attempted to mimic Trump, both in primaries against him and in random downballot races against Democrats, has lost. The race was borderline unwinnable to begin with. Biden probably made it worse by waffling on running for a 2nd term, but it's really frustrating to see people blame Harris for any of this.\n\nInflation takes time for people to feel the impact. It's why in 2022 Republicans couldn't use it as effectively as they did against Democrats in 2024. Voters thought prices were spiking temporarily and would come back down. The *rate* of inflation of course came back down, but prices of course do not, and people eventually figured that out and got angry. \n\nDemocrats do not need to overhaul their entire platform. They just need to wait for Trump to fuck up and then capitalize on it, and hope that they don't face similar economic headwinds next time they're in power.", 'created': '2024-11-12 23:14:51', 'submission_id': '1gprvlu'}
{'comment': 'I’m not saying to change our platform, at all. I’m also not saying to mimic Trump, I liked Harris because she was intelligent and professional, I have no desire to prop up a megalomaniac. But we can take certain tactics, like repeating sound bites, and use them our way', 'created': '2024-11-12 23:50:51', 'submission_id': '1gprvlu'}
{'comment': 'I’m calling it now that Trump will take credit for the increase in domestic chip manufacturing even though it’s because of Biden’s CHIP and Science of 2022', 'created': '2024-11-12 20:42:09', 'submission_id': '1gprizf'}
{'comment': 'When Trump Republicans can’t pay their trailer park rent, they can thank Trump for it', 'created': '2024-11-12 20:24:01', 'submission_id': '1gprizf'}
{'comment': 'I remember there was a town in rural Georgia that is getting a plant because of the Chips and Science Act. People didn’t realize that was because of Biden. They still overwhelmingly voted for Trump.', 'created': '2024-11-12 21:18:30', 'submission_id': '1gprizf'}
{'comment': 'Pretty sure we also what the right climate for rubber trees, they all voted for Trump.', 'created': '2024-11-12 19:28:54', 'submission_id': '1gprizf'}
{'comment': 'Guys please don’t practice political debate with your Snapchat AI', 'created': '2024-11-12 20:18:57', 'submission_id': '1gprizf'}
{'comment': 'Damn, I just really wish all this information about how tariffs work and affect and economy would have been known and talked about before the election /s', 'created': '2024-11-13 01:00:10', 'submission_id': '1gprizf'}
{'comment': "It's funny that you would talk about microchips, because those are among the most complex things that humanity is manufacturing right now. Over 75% of advanced semiconductors are produced in Taiwan. It might actually be closer to 100% with cutting edge stuff.\n\nYou can't just source those domestically. That's ridiculous. The US would first have to build a bunch of factories, which would be in the neighborhood of hundreds of billions of dollars, maybe even more. It's just not feasible right now. Also, be prepared for those chips being massively more expensive under these conditions.\n\nOoooor the manufacturers could just say fuck it and simply transfer the extra cost to the consumer. Because sourcing it domestically would definitely raise the price by way more than 10-20%. An iPhone made in the US would probably cost $3000+, so of course Apple is just gonna raise the price of the new models by like $200 instead.", 'created': '2024-11-13 00:16:04', 'submission_id': '1gprizf'}
{'comment': '[removed]', 'created': '2024-11-12 19:49:27', 'submission_id': '1gprizf'}
{'comment': 'Factories to make chips will spring from the ground ex nihilo...', 'created': '2024-11-13 00:05:06', 'submission_id': '1gprizf'}
{'comment': 'If you have properties make sure to give power of attorney to someone you really trust to take care of your affairs.', 'created': '2024-11-13 00:39:09', 'submission_id': '1gprizf'}
{'comment': "It's sort of beside the point, but very little natural rubber is used in tires anymore as synthetic rubbers have much more desirable properties for tires.", 'created': '2024-11-13 15:44:05', 'submission_id': '1gprizf'}
{'comment': 'That’s the one thing I wish Dems did a better job of is taking credit for some of the good they have done. Trump didn’t even want to hand out Covid relief checks but negotiated his name to be on those checks. People in marginalized and predominantly African American communities thought Trump was giving them the money. When these chips get manufactured at each of these plants there should be Thanks to Joe Biden or something.', 'created': '2024-11-12 21:17:12', 'submission_id': '1gprizf'}
{'comment': 'Trump and Republicans will take credit even though they ran on repealing the CHIPS act\xa0\n\n\nhttps://www.cnbc.com/2024/11/07/trump-likely-to-uphold-chips-act-despite-his-campaign-rhetoric-experts-say.html', 'created': '2024-11-12 21:27:57', 'submission_id': '1gprizf'}
{'comment': 'Wait the same chip and science act that MAGA Mike Johnson said that will get the axe? But your right Trump will take credit for it.', 'created': '2024-11-12 21:15:58', 'submission_id': '1gprizf'}
{'comment': 'I knew all along that was one of the reasons they were desperate to get into office. They want credit for what Biden did just like they took for what Obama did. \n\nJust like Republicans always do.', 'created': '2024-11-12 22:54:36', 'submission_id': '1gprizf'}
{'comment': 'Gina Raimondo was in charge of that. I invested in Micron because of that. I almost got out right before the election because of idiot Mike Johnson saying “oh yeah we will be getting rid of that” (something to that effect) while campaigning in NY for a state rep. I think he later backtracked.', 'created': '2024-11-12 23:52:02', 'submission_id': '1gprizf'}
{'comment': "The DNC needs to get the word out before Trump takes office. \n\nParties don't win by waiting for election campaigns to promote themselves.", 'created': '2024-11-13 00:41:47', 'submission_id': '1gprizf'}
{'comment': 'What are you talking about? He’s repealing the chips act because Biden did it and then increase tariffs so there will be no credit taken for us paying more', 'created': '2024-11-13 01:18:17', 'submission_id': '1gprizf'}
{'comment': 'We tried to warn them. Kamala could have helped them buy their first home', 'created': '2024-11-12 20:31:16', 'submission_id': '1gprizf'}
{'comment': 'Trump and Johnson have apparently threatened to repeal the chips act, so that factory may not happen. \n\nSomeone has to feed those hungry leopards.', 'created': '2024-11-12 21:42:21', 'submission_id': '1gprizf'}
{'comment': 'I use it to build a base understanding to explain to my maga dad', 'created': '2024-11-12 20:30:40', 'submission_id': '1gprizf'}
{'comment': "We tried to warn them before the election, heck look on Google search results, what's a tariff and how can I change my vote", 'created': '2024-11-13 01:17:34', 'submission_id': '1gprizf'}
{'comment': 'Our freeways near construction zones have signs on them that say "Your tax dollars at work." I think that\'s really good messaging. People grumble about taxes because they can\'t see where it\'s going.', 'created': '2024-11-12 21:31:18', 'submission_id': '1gprizf'}
{'comment': "Yes, messaging messaging messaging. BC people can't seem to remember sh!t.", 'created': '2024-11-12 22:32:25', 'submission_id': '1gprizf'}
{'comment': 'Lmao I googled this because I don’t want to spread misinformation and of course now seeing he probably won’t so yes he will take credit for', 'created': '2024-11-13 01:19:29', 'submission_id': '1gprizf'}
{'comment': 'What stands in the way becomes the way. Marcus Aurelius', 'created': '2024-11-13 01:34:46', 'submission_id': '1gpqupn'}
{'comment': 'Cowards', 'created': '2024-11-12 18:58:00', 'submission_id': '1gpqojb'}
{'comment': 'Real men with real courage would not hide behind a mask.', 'created': '2024-11-12 19:07:27', 'submission_id': '1gpqojb'}
{'comment': 'Hate crimes must come with the same public shame that pedophiles have. You must walk to all your neighbors and warn them after you get caught and your picture must be searchable by public record.', 'created': '2024-11-12 19:20:05', 'submission_id': '1gpqojb'}
{'comment': 'This isn’t an America I want to live in.', 'created': '2024-11-12 18:59:17', 'submission_id': '1gpqojb'}
{'comment': 'If only people were warned this would happen. \n\nTerrifying!', 'created': '2024-11-12 18:54:47', 'submission_id': '1gpqojb'}
{'comment': "Some people can't help but be egregious douchebags.", 'created': '2024-11-12 19:02:12', 'submission_id': '1gpqojb'}
{'comment': 'And they’re so proud of themselves that … they’re all wearing masks! The equivalent of random bots commenting on X', 'created': '2024-11-12 19:22:42', 'submission_id': '1gpqojb'}
{'comment': 'So killing a little girl.becsise she is Jewish is okay with them? Got it.', 'created': '2024-11-12 19:37:43', 'submission_id': '1gpqojb'}
{'comment': 'But the economy.', 'created': '2024-11-12 19:07:50', 'submission_id': '1gpqojb'}
{'comment': "But I thought they didn't like masks?\n\nOh. Right. They need to protect themselves. So it's ok now.", 'created': '2024-11-12 19:17:59', 'submission_id': '1gpqojb'}
{'comment': 'Shameful :(', 'created': '2024-11-12 19:19:35', 'submission_id': '1gpqojb'}
{'comment': 'This is Trump’s America.', 'created': '2024-11-12 19:14:11', 'submission_id': '1gpqojb'}
{'comment': 'Not enough people punching Nazis in the face in this video...', 'created': '2024-11-12 19:33:03', 'submission_id': '1gpqojb'}
{'comment': '“Nobody in America should feel like that.” (Afraid to leave the building) At least half of America feels like that. The other half voted for Trump: The Great Divider.', 'created': '2024-11-12 20:36:06', 'submission_id': '1gpqojb'}
{'comment': 'Violence is wrong. I think I would have been very very wrong that day.', 'created': '2024-11-12 20:31:51', 'submission_id': '1gpqojb'}
{'comment': 'Guess who these people supported on November 5th.', 'created': '2024-11-12 20:39:06', 'submission_id': '1gpqojb'}
{'comment': "This is the kind of people Trump emboldens, and too many voters couldn't seem to understand that.", 'created': '2024-11-12 21:36:09', 'submission_id': '1gpqojb'}
{'comment': 'The America I loved as a child, the country I dreamed of living in…that country is dead. And I don’t see it coming back 💔', 'created': '2024-11-12 19:43:02', 'submission_id': '1gpqojb'}
{'comment': "This is evil. Her death was only within this past century. It wasn't that far away in the grand scheme of things. This kind of shit is an insult to her memory.", 'created': '2024-11-12 23:00:40', 'submission_id': '1gpqojb'}
{'comment': 'Can we normalize beating up nazis?', 'created': '2024-11-12 21:11:01', 'submission_id': '1gpqojb'}
{'comment': "It doesn't help that if you take a swing at one of them they can charge you for assaulting an officer.", 'created': '2024-11-12 22:02:37', 'submission_id': '1gpqojb'}
{'comment': 'My brain can’t handle this anymore. I’ve decided not to fight cancer anymore even though there’s been progress. I can’t afford to move to another country and my vote wasn’t even counted (I did check, received but not counted). I’m done. Ready to go whenever.', 'created': '2024-11-12 19:58:20', 'submission_id': '1gpqojb'}
{'comment': 'Let them stand out there showing their hate. Don’t engage, that’s what they want. \n\nIf dems react they are going to accuse dems of being the violent ones. \n\nThey are looking for confrontations so they have an excuse to paint dems as angry and violent.', 'created': '2024-11-12 19:27:41', 'submission_id': '1gpqojb'}
{'comment': "Smash fash on sight. There's no room for them in this world", 'created': '2024-11-12 19:42:22', 'submission_id': '1gpqojb'}
{'comment': "Protestant American Christian Nationalism is just the latest face of the old KKK, and don't forget how fiercely anti-semitic Martin Luther was! This current xenophobic authoritarianism is ancient tribal nonsense fostered by religion.", 'created': '2024-11-12 19:52:57', 'submission_id': '1gpqojb'}
{'comment': 'So it continues and it will only get worse.', 'created': '2024-11-13 01:08:02', 'submission_id': '1gpqojb'}
{'comment': 'lmao they hate masks but whenever they do crimes they love to wear them!', 'created': '2024-11-13 08:02:18', 'submission_id': '1gpqojb'}
{'comment': "They are gonna run up on someone who really doesn't give an eff anymore, and they will join Anne Frank.", 'created': '2024-11-12 20:39:28', 'submission_id': '1gpqojb'}
{'comment': 'What a fucked up timeline to be alive', 'created': '2024-11-12 21:02:39', 'submission_id': '1gpqojb'}
{'comment': "I don't get it, if you are proud of something...and stand for something...why hide your face?", 'created': '2024-11-12 22:02:10', 'submission_id': '1gpqojb'}
{'comment': 'Trump’s America.', 'created': '2024-11-12 22:03:46', 'submission_id': '1gpqojb'}
{'comment': 'Bunch of cowards.', 'created': '2024-11-12 22:14:55', 'submission_id': '1gpqojb'}
{'comment': 'Seeing that as a German makes me wanne puke!\n\n(We have a huge nazi problem here as well, but it is forbidden to show these flags.)', 'created': '2024-11-12 22:24:46', 'submission_id': '1gpqojb'}
{'comment': 'My issue is why doesn’t the police stop them??! Is this supposed to be free speech? It is NOT. It is Hate Speech and it incites people to violence. It is against the law!!', 'created': '2024-11-13 00:23:22', 'submission_id': '1gpqojb'}
{'comment': 'This is a quick look at the next 4 years', 'created': '2024-11-13 01:03:14', 'submission_id': '1gpqojb'}
{'comment': "Why? What's the point gathering except to be hateful and look mean and weird? There is no purpose to it. I hate people these days!", 'created': '2024-11-13 01:34:45', 'submission_id': '1gpqojb'}
{'comment': 'Garbage', 'created': '2024-11-13 02:12:32', 'submission_id': '1gpqojb'}
{'comment': 'Need this “I did that stickers” with Trump on them. He really does bring it the worst in the worst people.', 'created': '2024-11-13 02:33:48', 'submission_id': '1gpqojb'}
{'comment': 'Biden needs to pass Emergency Executive Orders: Punching flag wielding Nazis isn’t a crime', 'created': '2024-11-13 05:14:52', 'submission_id': '1gpqojb'}
{'comment': 'They need to be punched in the face', 'created': '2024-11-13 05:54:22', 'submission_id': '1gpqojb'}
{'comment': 'As far as I’m concerned all Nazis deserve the same thing. ☠️💀', 'created': '2024-11-13 06:22:59', 'submission_id': '1gpqojb'}
{'comment': 'Where is that "good man with a gun" when you need them?!', 'created': '2024-11-13 07:11:10', 'submission_id': '1gpqojb'}
{'comment': 'what’s the one line from inglorious basterds? the only good nazi is a…I can’t remember', 'created': '2024-11-13 07:51:14', 'submission_id': '1gpqojb'}
{'comment': "This is who we are. They've been given the license to do this.", 'created': '2024-11-12 19:48:28', 'submission_id': '1gpqojb'}
{'comment': 'If they\'re so proud, why wear a mask??? Come on, guys. Show your faces and own your "white pride." I thought you were proud of your race? Then SHOW IT.', 'created': '2024-11-12 20:16:23', 'submission_id': '1gpqojb'}
{'comment': "Really surprised that some drunkards didn't show up and whoop their asses. Nazi paraphernalia used to be on sight. Seems we have softened up on these shitters.", 'created': '2024-11-12 20:25:29', 'submission_id': '1gpqojb'}
{'comment': "disgusting.... amoral & traitorous. They don't realize that their grandparents & their great-grandparents died on the battlefield so they could have the privilege of mocking American values.", 'created': '2024-11-12 20:44:40', 'submission_id': '1gpqojb'}
{'comment': 'Why should they cover their faces? Nazis are perfectly acceptable in trump’s America. 🤬', 'created': '2024-11-12 21:07:31', 'submission_id': '1gpqojb'}
{'comment': "thank god my egg's will be cheaper!!!\n\n^(they wont...)", 'created': '2024-11-12 21:19:34', 'submission_id': '1gpqojb'}
{'comment': "Yes, this is the US, and we've eaten this shit before.\n\n[Americans hold a Nazi rally in Madison Square Garden | February 20, 1939 | HISTORY](https://www.history.com/this-day-in-history/americans-hold-nazi-rally-in-madison-square-garden)\n\nBut so far, we've puked it back out before it killed us. Looking for a good strong emetic now....", 'created': '2024-11-12 21:38:02', 'submission_id': '1gpqojb'}
{'comment': 'Und willkommen im Deutschland des Jahres 1938.', 'created': '2024-11-12 21:40:52', 'submission_id': '1gpqojb'}
{'comment': 'The warnings have been here for nine years. What will be uttered after this dark period, will\n\nhttps://preview.redd.it/o6z3i7yv8j0e1.jpeg?width=3024&format=pjpg&auto=webp&s=556f9c748055db6f293e6f2ccf8160609f134d34\n\nbe the same as the last: “Oh, we didn’t know” or another form of lame excuse. Those words will be as worthless as the breath that they wasted on them. These thoughts recently written by Rebecca Sonlit ring true.', 'created': '2024-11-12 21:43:40', 'submission_id': '1gpqojb'}
{'comment': 'The Donald strikes again.', 'created': '2024-11-12 21:53:04', 'submission_id': '1gpqojb'}
{'comment': 'They are the people Trump should be deporting.', 'created': '2024-11-12 21:59:59', 'submission_id': '1gpqojb'}
{'comment': 'This is what MAGA wanted. I’m gonna sit back and watch.', 'created': '2024-11-12 22:16:07', 'submission_id': '1gpqojb'}
{'comment': 'What was happening outside *is* a detail of her diary.', 'created': '2024-11-12 22:18:43', 'submission_id': '1gpqojb'}
{'comment': '“Both sides are the same” YEAH RIGHT.', 'created': '2024-11-13 00:00:41', 'submission_id': '1gpqojb'}
{'comment': 'I wonder if Trump saw this, and told someone to get their contact information, because they look like they have a future in his cabinet\xa0', 'created': '2024-11-13 00:21:32', 'submission_id': '1gpqojb'}
{'comment': "We need to organize country wide. Next time this happens, we need a counter protest group to demean these losers, embarrass them, make them take it to another level. As long as they start it, it's on", 'created': '2024-11-13 00:46:05', 'submission_id': '1gpqojb'}
{'comment': 'Ask them who they voted for', 'created': '2024-11-13 01:22:42', 'submission_id': '1gpqojb'}
{'comment': 'I wonder who they voted for.', 'created': '2024-11-13 01:49:57', 'submission_id': '1gpqojb'}
{'comment': 'They seem emboldened for some reason… Did something happen recently? Perhaps something of political significance?', 'created': '2024-11-13 02:41:15', 'submission_id': '1gpqojb'}
{'comment': 'And THIS is why my family and I are considering leaving this country. \nIf most of our electorate feel this is ok? \nWe’re done…', 'created': '2024-11-13 02:53:26', 'submission_id': '1gpqojb'}
{'comment': 'Typical Republican behavior under a Trump regime.', 'created': '2024-11-13 08:03:43', 'submission_id': '1gpqojb'}
{'comment': 'An American flag with a swastika on it is a think I wouldn’t have thought I would see openly being waved in the US', 'created': '2024-11-13 08:49:42', 'submission_id': '1gpqojb'}
{'comment': 'Trump’s America. 🇺🇸', 'created': '2024-11-13 10:14:41', 'submission_id': '1gpqojb'}
{'comment': 'Sorry to see the Giant Flag movement spreading.', 'created': '2024-11-13 13:22:24', 'submission_id': '1gpqojb'}
{'comment': 'Fucking disgusting!', 'created': '2024-11-13 13:35:08', 'submission_id': '1gpqojb'}
{'comment': 'Time for people to carry and feel threatened', 'created': '2024-11-13 14:35:18', 'submission_id': '1gpqojb'}
{'comment': 'Disappointed in my fellow “Americans”… \n\n#COWARDS', 'created': '2024-11-13 14:50:24', 'submission_id': '1gpqojb'}
{'comment': 'What a relief living in a country where these guys would be prosecuted.', 'created': '2024-11-13 15:10:22', 'submission_id': '1gpqojb'}
{'comment': 'It’s bottles and rocks at their heads until they leave or are hauled off in a meat wagon.', 'created': '2024-11-13 20:56:45', 'submission_id': '1gpqojb'}
{'comment': 'This has *been* America for a long time, friend.', 'created': '2024-11-14 01:14:45', 'submission_id': '1gpqojb'}
{'comment': 'just wondering, have we gone too far in protecting freedom of speech? I realize that it is a slippery slope to try to police it, but with civility and tolerance gone out of the window, maybe this is a conversation that needs to happen.', 'created': '2024-11-14 20:10:32', 'submission_id': '1gpqojb'}
{'comment': "Trump and, therefore Musk's America.", 'created': '2024-11-15 05:49:27', 'submission_id': '1gpqojb'}
{'comment': 'Thanks trump!', 'created': '2024-11-17 03:34:37', 'submission_id': '1gpqojb'}
{'comment': 'That is not America that is MAGA. Awful awful awful', 'created': '2024-11-12 19:54:20', 'submission_id': '1gpqojb'}
{'comment': 'Why does no one shoot at them?', 'created': '2024-11-12 20:30:06', 'submission_id': '1gpqojb'}
{'comment': 'YOUR VOTE CAUSED THIS.....', 'created': '2024-11-12 23:30:21', 'submission_id': '1gpqojb'}
{'comment': 'They voted for it.', 'created': '2024-11-12 19:58:45', 'submission_id': '1gpqojb'}
{'comment': 'Neo Nazis are arrested in Germany. Imagine following something that the leader’s birth country made laws against.', 'created': '2024-11-12 20:02:14', 'submission_id': '1gpqojb'}
{'comment': 'Garbage. Nazi garbage.', 'created': '2024-11-12 20:08:39', 'submission_id': '1gpqojb'}
{'comment': 'Wearing masks…cowards.', 'created': '2024-11-12 20:17:10', 'submission_id': '1gpqojb'}
{'comment': "Why all the sudden are they attacking Anne Frank? Because she's Jewish and female? Or because they are just assholes?", 'created': '2024-11-12 20:18:18', 'submission_id': '1gpqojb'}
{'comment': 'Awfully confident of them to be that close to the road…', 'created': '2024-11-12 20:53:58', 'submission_id': '1gpqojb'}
{'comment': 'Disgusting 🫣', 'created': '2024-11-12 21:02:24', 'submission_id': '1gpqojb'}
{'comment': 'I thought winning made people happy? /s', 'created': '2024-11-12 21:05:53', 'submission_id': '1gpqojb'}
{'comment': 'That may be America but so is outing those people.', 'created': '2024-11-12 21:06:09', 'submission_id': '1gpqojb'}
{'comment': 'They seem nice. I wonder who they voted for?? 🙄', 'created': '2024-11-12 21:10:37', 'submission_id': '1gpqojb'}
{'comment': 'Make America great again… /s', 'created': '2024-11-12 21:15:13', 'submission_id': '1gpqojb'}
{'comment': 'This is not America', 'created': '2024-11-12 21:23:34', 'submission_id': '1gpqojb'}
{'comment': 'One of those ppl is Nick Fuentes.', 'created': '2024-11-12 21:23:39', 'submission_id': '1gpqojb'}
{'comment': 'What the hell is wrong with people? I wonder who they voted for last week?? Wild guess....', 'created': '2024-11-12 21:23:53', 'submission_id': '1gpqojb'}
{'comment': 'Yet still too afraid to show their fucking face.', 'created': '2024-11-12 21:37:29', 'submission_id': '1gpqojb'}
{'comment': 'Cowards in masks! If they feel like they are in the right, why not be proud of their stance?', 'created': '2024-11-12 21:54:02', 'submission_id': '1gpqojb'}
{'comment': 'I feel sick', 'created': '2024-11-12 22:19:05', 'submission_id': '1gpqojb'}
{'comment': '[removed]', 'created': '2024-11-12 22:21:21', 'submission_id': '1gpqojb'}
{'comment': 'And yet. They voted someone to the highest office who enjoys threatening and intimidating people. He used hate and fear to get elected.', 'created': '2024-11-12 22:23:14', 'submission_id': '1gpqojb'}
{'comment': 'Absolutely terrible, but this is the price we must pay for being able to have free speech.', 'created': '2024-11-12 22:23:32', 'submission_id': '1gpqojb'}
{'comment': "This will only be getting worse. Once Trump's cabinet takes over these people will feel that they have carte blanche", 'created': '2024-11-12 22:27:59', 'submission_id': '1gpqojb'}
{'comment': 'These fuckers make me wish I had a bazooka so I could go all *Rise of the Triad* on their asses. **LUDICROUS GIBS.**', 'created': '2024-11-12 22:29:18', 'submission_id': '1gpqojb'}
{'comment': 'Idiots.', 'created': '2024-11-12 22:29:32', 'submission_id': '1gpqojb'}
{'comment': "They're outnumbered by the crowd inside. I'm surprised they weren't mobbed.", 'created': '2024-11-12 22:51:25', 'submission_id': '1gpqojb'}
{'comment': "I'd rip their masks off", 'created': '2024-11-12 23:13:07', 'submission_id': '1gpqojb'}
{'comment': '“There’s very fine people on both sides”. It’d be nice to think our govt wouldn’t tolerate this, but…', 'created': '2024-11-12 23:16:33', 'submission_id': '1gpqojb'}
{'comment': 'Time to start punching Nazis again', 'created': '2024-11-12 23:20:55', 'submission_id': '1gpqojb'}
{'comment': 'Make America Great Again s/\n\nI would bet everything I own that they are Trump supporters.', 'created': '2024-11-12 23:48:40', 'submission_id': '1gpqojb'}
{'comment': 'This is not MY America. Shameful!!!!', 'created': '2024-11-12 23:52:56', 'submission_id': '1gpqojb'}
{'comment': 'Deplorable.', 'created': '2024-11-13 02:42:18', 'submission_id': '1gpqojb'}
{'comment': "We know how the only good Nazi should be, but I can't say it or I'll get banned...", 'created': '2024-11-13 03:13:29', 'submission_id': '1gpqojb'}
{'comment': 'Thanks CNN.', 'created': '2024-11-13 03:45:25', 'submission_id': '1gpqojb'}
{'comment': 'I prefer the masks to Stephen Miller using his real face. More attractive.', 'created': '2024-11-13 03:59:16', 'submission_id': '1gpqojb'}
{'comment': 'Why isn’t there a larger group with masks kicking their ass? I mean if we are hiding identities, fair is fair, right? I’d join.', 'created': '2024-11-13 04:19:18', 'submission_id': '1gpqojb'}
{'comment': ">*I don't like that Nazis are here. I'm going to Germany*", 'created': '2024-11-13 05:32:46', 'submission_id': '1gpqojb'}
{'comment': '[removed]', 'created': '2024-11-13 23:48:42', 'submission_id': '1gpqojb'}
{'comment': '[removed]', 'created': '2024-11-12 19:18:44', 'submission_id': '1gpqojb'}
{'comment': 'Masks on for Nazis but bad bad bad for diseases', 'created': '2024-11-12 19:46:05', 'submission_id': '1gpqojb'}
{'comment': 'You and the media sharing this kind of shit is what keep encouraging them to do more of it. They see it as "it works" let\'s do more of it.', 'created': '2024-11-12 19:38:38', 'submission_id': '1gpqojb'}
{'comment': "You all only seem to care about antisemitism when it is righties that do this. Where was the outrage when [a guy was shot on his way to shul](https://www.nbcnews.com/news/us-news/hate-crime-terrorism-charges-filed-jewish-man-shot-targeted-attack-rcna178348)? Or the many times Anne Frank's [memorial ](https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=newssearch&cd=&cad=rja&uact=8&ved=2ahUKEwizquP2tNeJAxWZhIkEHUcAB4wQxfQBKAB6BAgREAE&url=https%3A%2F%2Fwww.cbsnews.com%2Fnews%2Fanne-frank-statue-amsterdam-defaced-pro-palestinian-graffiti-second-time%2F&usg=AOvVaw1U5CondQlJDuQUHGmMQZDt&opi=89978449)was vandalized? I am not your thought experiment. Being against antisemitism isn't just when its easy. If you really care fight it when its hard\n\n*Although Jews only make up around*\xa0[*2 percent*](https://ajpp.brandeis.edu/us_jewish_population_2020)\xa0*of the U.S. population, reported single-bias anti-Jewish hate crimes comprised 15 percent of all hate crimes and* [68 percent of all reported religion-based hate crimes](https://www.adl.org/resources/press-release/new-fbi-data-reflects-record-high-number-anti-jewish-hate-crimes) *in 2023, which is consistent with patterns from prior years.*", 'created': '2024-11-12 19:22:11', 'submission_id': '1gpqojb'}
{'comment': "Yeah I'm going to be honest with you. When you post shit like this.. \n\nYOU ARE TAKING THE BAIT..\n\nThese fools know they are a minority and that the more we conflate their existence and political engagement with Republicans the more possible audience members they can capture and radicalize when INEVITABLY well intentioned, principled, white liberals go on a war path to make sure everyone thinks the average Republican voter is a fucking Nazi.. You tell me how it feels to hear Republicans conflating your beliefs as the average democrat with the most repugnant forms of genocidal communism.. It fucking hurts me and the gods honest truth is that we've hurt a lot of white southerners and middle Americans by calling them Nazis and now guess what they want to lash out and PUNISH US. \n\nUNITY \nSHARED STRUGGLE\nSHARED HUMANITY\n\nWE MUST BUILD A BRIDGE WITH THESE PEOPLE \n\nNo matter how uniformed, no matter how hateful, no matter how bigoted, no matter how vile \nWHILE WE STILL *CAN* HAVE DISCUSSIONS WE CAN NOT GIVE UP ON THESE PEOPLE. \n\nALL of us need to follow Daryl Davis example and unify these people under the banner of Truth!", 'created': '2024-11-12 19:30:01', 'submission_id': '1gpqojb'}
{'comment': 'Bibi likes these guys though.', 'created': '2024-11-12 19:47:05', 'submission_id': '1gpqojb'}
{'comment': "The world would look so much different if good men weren't cowards.", 'created': '2024-11-12 19:41:29', 'submission_id': '1gpqojb'}
{'comment': None, 'created': '2024-11-12 19:21:38', 'submission_id': '1gpqojb'}
{'comment': 'Take yo masks off cool guys!! Show us who you are instead of hiding away', 'created': '2024-11-12 19:01:58', 'submission_id': '1gpqojb'}
{'comment': 'I’d be saying it right to their faces, that are cowardly hidden behind those masks. Chicken shits.', 'created': '2024-11-12 19:45:39', 'submission_id': '1gpqojb'}
{'comment': "I'd like to see them try this in Atl. They would find out.", 'created': '2024-11-12 20:28:36', 'submission_id': '1gpqojb'}
{'comment': '💯Real men do not hide behind masks. Real men do not bully. Real men do not spread hate. These are little boys who have the maturity of toddlers and think they have to be bullies to be real men. They’ll never get it or understand. It takes actual strength to show restraint, kindness, compassion and understanding. It doesn’t take a lot of anything to show hate.', 'created': '2024-11-12 19:48:21', 'submission_id': '1gpqojb'}
{'comment': 'It seems the only time we can get them to wear a mask is when they wanna be racist.', 'created': '2024-11-12 20:07:00', 'submission_id': '1gpqojb'}
{'comment': 'Real men with real courage died by the thousands to defeat Nazis and what they stood for.', 'created': '2024-11-12 23:22:08', 'submission_id': '1gpqojb'}
{'comment': 'Nick Fuentes?', 'created': '2024-11-12 22:34:15', 'submission_id': '1gpqojb'}
{'comment': "That's actually a fantastic idea. Public record with full description of your charges. Let it be known.", 'created': '2024-11-12 20:27:34', 'submission_id': '1gpqojb'}
{'comment': 'Start punching. I’m fortunate to have never seen a Nazi in person, but it’s on sight.', 'created': '2024-11-12 19:02:39', 'submission_id': '1gpqojb'}
{'comment': 'I know right!', 'created': '2024-11-12 19:00:46', 'submission_id': '1gpqojb'}
{'comment': 'Hahahahahahaha. I am in PA and there was a commercial depicting some old Jewish ladies sitting around talking about how tRump would at least keep them safe. I wonder where those b!@Tches at now?', 'created': '2024-11-12 19:50:07', 'submission_id': '1gpqojb'}
{'comment': 'Also yelling about his multiple bankruptcies and unpaid debt. So no…. He is the worst businessman in history, to be handed millions of dollars to then lose billions is quite something. Not the finances of a responsible person who should be in a position of authority.\n\nI have very little hope right now.', 'created': '2024-11-12 19:50:52', 'submission_id': '1gpqojb'}
{'comment': "The cost of eggs and gas! Gasp 'pearl clutch'....", 'created': '2024-11-12 19:50:54', 'submission_id': '1gpqojb'}
{'comment': 'God I wanted to slap the TV every time I heard some dipshit say exactly that.', 'created': '2024-11-12 19:28:35', 'submission_id': '1gpqojb'}
{'comment': 'Hey man, my eggs cost **ten cents** more than they did 4 years ago! [/s]', 'created': '2024-11-12 20:24:21', 'submission_id': '1gpqojb'}
{'comment': 'But mah eggs', 'created': '2024-11-12 21:07:10', 'submission_id': '1gpqojb'}
{'comment': 'Protection of being doxxed while being racist = Wear a mask\n\nProtection from diseases = Infringment on muh freedoms', 'created': '2024-11-12 20:09:14', 'submission_id': '1gpqojb'}
{'comment': "This is the tRump voter's America, not yours and mine.", 'created': '2024-11-12 19:51:30', 'submission_id': '1gpqojb'}
{'comment': 'This was always America', 'created': '2024-11-12 21:46:54', 'submission_id': '1gpqojb'}
{'comment': "Where's Steve Rogers when you need him?", 'created': '2024-11-12 23:01:20', 'submission_id': '1gpqojb'}
{'comment': 'You know the orange one would say they are “beautiful people” and he would consider this “a day of love”!', 'created': '2024-11-12 23:18:32', 'submission_id': '1gpqojb'}
{'comment': 'On my drive this morning, I was listening to Headlight by The Wallflowers and it made me start thinking about when I was a kid and how different the world was, how I felt more safe back then, as a little girl, being out on the street by myself at night. I have no clue what our lives are about to be like.', 'created': '2024-11-12 19:54:24', 'submission_id': '1gpqojb'}
{'comment': "Nah, you just didn't know America. We've always been beautiful and ugly. In this nation you take the good with the bad. We fight to remove the ugly when we can and sustain the beautiful and often we succeed, but not always. One of the beautiful things is the persistence to keep trying.", 'created': '2024-11-12 20:29:30', 'submission_id': '1gpqojb'}
{'comment': 'History is a pendulum', 'created': '2024-11-12 21:31:20', 'submission_id': '1gpqojb'}
{'comment': "It's always worth fighting. Fight for your vote to count. Fight for your freedom. Don't give up. That's when we lose.", 'created': '2024-11-12 21:59:46', 'submission_id': '1gpqojb'}
{'comment': "I'm really sorry to hear you feel this way,I have felt very down since the election, but I hope you find the strength to go on and find something to live for,your children and grandchildren might not feel as you think they do", 'created': '2024-11-13 02:41:34', 'submission_id': '1gpqojb'}
{'comment': 'Also don’t be intimidated. Go about your business, don’t let them interfere with your daily life.', 'created': '2024-11-12 22:21:48', 'submission_id': '1gpqojb'}
{'comment': 'This is who “they” are, meaning the MAGAts. I have hated Trump since about the fall of 2017. I didn’t really know much about him before that.', 'created': '2024-11-12 19:52:36', 'submission_id': '1gpqojb'}
{'comment': "What a bizarro world we're living in.", 'created': '2024-11-13 02:32:54', 'submission_id': '1gpqojb'}
{'comment': "There's more consequences for the good guys than the bad guys. That's how we get to this point. Every fukin time.", 'created': '2024-11-13 00:18:33', 'submission_id': '1gpqojb'}
{'comment': 'Both, they certainly feel they can now that tRump won', 'created': '2024-11-12 21:17:58', 'submission_id': '1gpqojb'}
{'comment': 'It’s not all of a sudden. Neo Nazis are always around, like cockroaches', 'created': '2024-11-12 22:59:23', 'submission_id': '1gpqojb'}
{'comment': 'It really makes no sense why they hide their faces. It’s like those internet keyboard warriors who will say alllooottt online but can’t show up face to face. Cowards.', 'created': '2024-11-12 21:09:15', 'submission_id': '1gpqojb'}
{'comment': 'Ikr theyre so disgusting', 'created': '2024-11-12 19:39:35', 'submission_id': '1gpqojb'}
{'comment': 'I doubt that. Shitty people will do shitty things, regardless of external factors.', 'created': '2024-11-12 19:55:23', 'submission_id': '1gpqojb'}
{'comment': 'I care antisemitism when either side is doing it, I’ll admit I have been avoiding the news since months ago and have only been on certain social media apps. Not all of us care about antisemitism when it fits our narratives, and I’m sorry some people have made you feel that way', 'created': '2024-11-12 23:35:51', 'submission_id': '1gpqojb'}
{'comment': 'I care about it when either side does it. So who exactly is “you all”?', 'created': '2024-11-12 21:33:36', 'submission_id': '1gpqojb'}
{'comment': 'These fools are not in the minority. They just voted Trump in a landslide. That or they cheated.', 'created': '2024-11-12 19:54:17', 'submission_id': '1gpqojb'}
{'comment': 'We all have the right to be hateful ignorant bastards if we want to be and to wave stupid flags around in protest. The 1st Amendment protects you from being attacked by the government if you choose to exercise that right. But the 1st Amendment does NOT protect you from being ostracized and shamed by your neighbors and others for being a hateful ignorant bastard.', 'created': '2024-11-12 19:52:22', 'submission_id': '1gpqojb'}
{'comment': 'Why not make school shootings legal then? Guns are legal. Everyone has a right to shoot one. This type of twisted narrative is now what American ideology is all about. Domestic terrorism is the norm', 'created': '2024-11-12 19:24:39', 'submission_id': '1gpqojb'}
{'comment': 'No. This is not that.', 'created': '2024-11-12 19:29:53', 'submission_id': '1gpqojb'}
{'comment': 'Doubt it\n\n\nThere are no consequences for anything in America, everyone who follows the rules is a giant pussy and everyone who ignores the rules faces 0 consequences for it', 'created': '2024-11-12 23:40:00', 'submission_id': '1gpqojb'}
{'comment': 'X to doubt. Nobody will ever stand up to them, which is why they keep doing it.', 'created': '2024-11-13 00:09:23', 'submission_id': '1gpqojb'}
{'comment': '👏👏👏👏', 'created': '2024-11-13 06:20:03', 'submission_id': '1gpqojb'}
{'comment': '>It doesn’t take a lot of anything to show hate\n\nEspecially when you’re hiding behind a mask.', 'created': '2024-11-12 19:56:06', 'submission_id': '1gpqojb'}
{'comment': '👏👏👏👏', 'created': '2024-11-13 06:20:46', 'submission_id': '1gpqojb'}
{'comment': 'Did you see his video where he was saying "your body, my choice" over and over and he was laughing? I hope he meets his match in the future.', 'created': '2024-11-12 23:00:16', 'submission_id': '1gpqojb'}
{'comment': 'Gay nazi nick is currently running scared at his mommy’s house cause he got doxed. Beat up an old lady and ran to his mom‘s house.', 'created': '2024-11-13 00:24:59', 'submission_id': '1gpqojb'}
{'comment': '*Backpfeifengesicht!*', 'created': '2024-11-12 19:15:41', 'submission_id': '1gpqojb'}
{'comment': "I'd always thought it was on sight too. Isn't that how Nazi's have been treated since WW2?", 'created': '2024-11-12 20:26:09', 'submission_id': '1gpqojb'}
{'comment': "Where's the legal fund to help us?", 'created': '2024-11-12 19:30:17', 'submission_id': '1gpqojb'}
{'comment': 'StOp AdVoCaTiNg ViOlEnCe!!!!', 'created': '2024-11-12 19:16:02', 'submission_id': '1gpqojb'}
{'comment': "Of course you have. You've seen them, they abound, but you don't know their identify. But seeing Trump's vote total, there are plenty.", 'created': '2024-11-13 05:47:44', 'submission_id': '1gpqojb'}
{'comment': 'Provided we’re actually targeting Nazis, hmm? I’ve had too many of my Jewish friends including myself harassed in the name of “punching Nazis” because they decided Jews were evil genocidal Zionazis', 'created': '2024-11-12 19:38:26', 'submission_id': '1gpqojb'}
{'comment': 'We had the same ad in Ohio.', 'created': '2024-11-12 23:43:04', 'submission_id': '1gpqojb'}
{'comment': 'This chick ppl make fun of on TikTok who does this weird lip curl thing every time she talks or sings, she made a video saying, if she has to pay more now for things it’s okay! And that if we have to struggling and do it this way to make things better, everything is okay because Trump is back! Everyone in the comments was like but yall were complaining about the prices with Biden, it’s okay now bc Trump is going to be in office? These people are dilute of any rational thoughts. We all know it was never about the economy lol.', 'created': '2024-11-12 23:33:40', 'submission_id': '1gpqojb'}
{'comment': '"But *I\'m* in danger! It\'s to protect myself and my family!"\n\nShoulda thought of that before, ya know. Becoming a Nazi.', 'created': '2024-11-12 20:22:34', 'submission_id': '1gpqojb'}
{'comment': 'Or Frank Castle.', 'created': '2024-11-13 00:50:01', 'submission_id': '1gpqojb'}
{'comment': "The internet showed us how dark the world surrounding us can be. It directly amplifies the worst among us. I don't think we actually were any more/less safe than we are now though. I don't know your age ofc, but I'm 37 and from the age of 10 on was riding city busses all over the Phoenix area w/ no supervision until the late hours of the night. (Got 2 tickets for curfew in my teens because I missed last bus and had to walk) I felt invincible, but no one told me that I shouldn't feel invincible. Internet was still fledgeling at the time and not the monster that it is today.", 'created': '2024-11-12 20:33:50', 'submission_id': '1gpqojb'}
{'comment': 'The ugliness is predominant now, though', 'created': '2024-11-12 20:31:45', 'submission_id': '1gpqojb'}
{'comment': '“We” don’t lose if I give up. No one really cares what I think anyway. I’m just an old fuck up.', 'created': '2024-11-12 23:04:28', 'submission_id': '1gpqojb'}
{'comment': 'My kids couldn’t care less and I have been told there won’t be any grandchildren. I really can’t see any reason to get out of bed, so I might as well make it permanent.', 'created': '2024-11-13 03:19:46', 'submission_id': '1gpqojb'}
{'comment': 'This is very important. \n\nDo not obey in advance.', 'created': '2024-11-12 22:57:01', 'submission_id': '1gpqojb'}
{'comment': "I've always hated him. Can't stand the guy. But, countries outside the US do think this is who we are. It's now our national identity.", 'created': '2024-11-12 20:14:16', 'submission_id': '1gpqojb'}
{'comment': 'Just ignore that👆🏻guy. He plays both sides in his history. Seems like he’s nothing more than a conspiracist just trolling about *both* parties.', 'created': '2024-11-12 22:22:48', 'submission_id': '1gpqojb'}
{'comment': 'Thank you ❤️', 'created': '2024-11-12 23:49:04', 'submission_id': '1gpqojb'}
{'comment': 'I’m guessing they’re referring to far-left college students that went a little too far at times.', 'created': '2024-11-12 22:25:55', 'submission_id': '1gpqojb'}
{'comment': 'Most people don’t. Nobody noticed when that guy was shot. People ignore antisemitism when it doesn’t fit their narrative.', 'created': '2024-11-12 21:58:23', 'submission_id': '1gpqojb'}
{'comment': 'Hope they’re are at the very least, 3 black grand children in his future!', 'created': '2024-11-12 23:08:13', 'submission_id': '1gpqojb'}
{'comment': 'https://preview.redd.it/qrmuqg7wep0e1.jpeg?width=1179&format=pjpg&auto=webp&s=24bfc40f7b9c138d1120de593809ce4b6648518d\n\nSaw this today. I’m by no means suggesting Tate is a good guy or anything, I was just surprised by how this is going.', 'created': '2024-11-13 18:30:41', 'submission_id': '1gpqojb'}
{'comment': 'TIL - *Backpfeifengesicht*\xa0— a face that’s badly in need of a fist.', 'created': '2024-11-12 19:48:18', 'submission_id': '1gpqojb'}
{'comment': 'Far too many of our neighbors have succumbed to apathy. They couldn’t care less.', 'created': '2024-11-12 21:55:52', 'submission_id': '1gpqojb'}
{'comment': 'Nazi’s as displayed in the video. Walks like a duck, talks like a duck, and dresses like a Nazi, it’s a Nazi ^duck.', 'created': '2024-11-12 21:55:07', 'submission_id': '1gpqojb'}
{'comment': "The internet can sure make you think that. If you lived in America you'd see something wild like this maybe once every couple years unless you actively went out of your way to find it. Last hate speech thing I saw was in like 03. Some idiot started spouting racist shit off outside of a party. He was jumped. It was quite ugly. \n \nThese flag wavers are being shitty people. However, this is not common place. This is during election season which always seems to rile up these shitty people. Every 4 years our ugly is amplified. It's as if these people live in cages ready to be released during the race.", 'created': '2024-11-12 20:42:40', 'submission_id': '1gpqojb'}
{'comment': "I do. That's why I commented. I'm sure your family does too. If not about these issues then at the very least for you.", 'created': '2024-11-12 23:05:53', 'submission_id': '1gpqojb'}
{'comment': 'I think most of them realize that it’s not the whole country because they always say they feel so bad for us. They do see the results of the elections.', 'created': '2024-11-12 20:17:52', 'submission_id': '1gpqojb'}
{'comment': 'lol that’s probably true to some extent. For what it’s worth, not everybody tho', 'created': '2024-11-12 22:32:21', 'submission_id': '1gpqojb'}
{'comment': 'damn those germans sure do have a way with words', 'created': '2024-11-12 23:48:29', 'submission_id': '1gpqojb'}
{'comment': 'Great word! Wish I could pronounce it, lol', 'created': '2024-11-13 01:39:38', 'submission_id': '1gpqojb'}
{'comment': 'Believe me when I tell you my family couldn’t care less either.', 'created': '2024-11-12 23:15:08', 'submission_id': '1gpqojb'}
{'comment': 'Well I do appreciate that because it often feels like we are alone', 'created': '2024-11-12 22:43:06', 'submission_id': '1gpqojb'}
{'comment': 'And sausage!', 'created': '2024-11-13 05:17:48', 'submission_id': '1gpqojb'}
{'comment': 'Time for me to learn the language ig', 'created': '2024-11-13 03:20:50', 'submission_id': '1gpqojb'}
{'comment': 'About you? Man that must really suck.', 'created': '2024-11-12 23:16:17', 'submission_id': '1gpqojb'}
{'comment': 'Good description. I’m getting tired now. I’m going back to sleep so I don’t have to be what others want me to be.', 'created': '2024-11-12 23:26:05', 'submission_id': '1gpqojb'}
{'comment': 'Fair enough. You are loved and accepted though, just the way you are. If not by anyone else in the world then by God.', 'created': '2024-11-12 23:27:25', 'submission_id': '1gpqojb'}
{'comment': 'Yeah, I’ve asked him to come get me. He ignores me too. I just don’t want to be anymore.', 'created': '2024-11-12 23:43:51', 'submission_id': '1gpqojb'}
{'comment': "If by come and get you, you mean take you to him, then the reason he hasn't yet is because he still has a purpose for you on Earth.", 'created': '2024-11-12 23:50:59', 'submission_id': '1gpqojb'}
{'comment': 'I’m old and used up. I’m a burden on my kids. What plan could he possibly have for me?', 'created': '2024-11-13 00:00:11', 'submission_id': '1gpqojb'}
{'comment': 'You never know. Consider Jeremiah 29:11 “’For I know the plans I have for you,’ declares the Lord, ‘plans to prosper you and not to harm you, plans to give you a hope and a future.’” He has a purpose for everything. Even this. Even you.', 'created': '2024-11-13 03:52:51', 'submission_id': '1gpqojb'}
{'comment': 'If his purpose was for me to work my butt off for 50+ years to be living off my social security only with bills I cannot begin to pay, get cancer, and live in a fascist society, his purpose becomes obscure. I can’t imagine what delights I might experience in my old age.', 'created': '2024-11-13 08:28:10', 'submission_id': '1gpqojb'}
{'comment': "I identify with your sentiments and feel your pain. Still I am so very sorry for your suffering. I find myself wishing I had a way for it to end without having to actively end my own life. Doesn't bother me, but that would cause my family pain that I don't want to inflict. I hope you find some things to bring you joy in the time you have left.", 'created': '2024-11-13 13:22:44', 'submission_id': '1gpqojb'}
{'comment': 'Thank you for your kind words.', 'created': '2024-11-13 13:57:38', 'submission_id': '1gpqojb'}
{'comment': '"fine we\'ll just get rid of public schools then".', 'created': '2024-11-12 19:52:42', 'submission_id': '1gpoxoj'}
{'comment': "Well I'm not concerned if they display the 10 commandments in public schools because how may will be able to read them especially after trump gets done with the doe?", 'created': '2024-11-12 18:37:42', 'submission_id': '1gpoxoj'}
{'comment': 'How did so many people vote to support this? Aren’t there some non wackadoo Christian republicans that realize they have no place in our schools. A law that forces all schools to display the Ten Commandments. Unreal.', 'created': '2024-11-12 20:27:51', 'submission_id': '1gpoxoj'}
{'comment': 'Right wing fuck nuts will preach about the constitution but be okay with blatant violation of the 1st amendment.', 'created': '2024-11-12 20:42:29', 'submission_id': '1gpoxoj'}
{'comment': 'Bummer. Now The Satanic Temple cannot demand that their “commandments” be posted. Those tenets are a much better way to live your life. \n\nI\nOne should strive to act with compassion and empathy toward all creatures in accordance with reason.\n\nII\nThe struggle for justice is an ongoing and necessary pursuit that should prevail over laws and institutions.\n\nIII\nOne’s body is inviolable, subject to one’s own will alone.\n\nIV\nThe freedoms of others should be respected, including the freedom to offend. To willfully and unjustly encroach upon the freedoms of another is to forgo one’s own.\n\nV\nBeliefs should conform to one’s best scientific understanding of the world. One should take care never to distort scientific facts to fit one’s beliefs.\n\nVI\nPeople are fallible. If one makes a mistake, one should do one’s best to rectify it and resolve any harm that might have been caused.\n\nVII\nEvery tenet is a guiding principle designed to inspire nobility in action and thought. The spirit of compassion, wisdom, and justice should always prevail over the written or spoken word', 'created': '2024-11-12 21:53:12', 'submission_id': '1gpoxoj'}
{'comment': "Good. l'll take any small victories over the Jesus freak fascists I can get.", 'created': '2024-11-12 22:46:19', 'submission_id': '1gpoxoj'}
{'comment': 'As long as they don’t ban the passage about a majority following the the antichrist who wears the mark of the beast on his forehead (MAGA)', 'created': '2024-11-13 01:07:19', 'submission_id': '1gpoxoj'}
{'comment': 'Kinda like when it was pointed out the abuse of patients in mental facilities. “Let’s just stop funding them then…”', 'created': '2024-11-12 20:01:04', 'submission_id': '1gpoxoj'}
{'comment': '"It should be up to the states if they wanna have schools or not, everybody democrats and Republicans want it a state decision" *Trump sometime next year', 'created': '2024-11-12 23:11:48', 'submission_id': '1gpoxoj'}
{'comment': 'What makes this shine over the 10 Commandments is that it lacks any reference to a deity. The 10 commandments has things like "don\'t take the lords name in vain" and "keep the sabbath holy" and "do not have any other gods b4 me". Rules like this only apply to Christians but area absolutely meaningless to non christians. The very fact of this is good reason to ban it from schools, because it\'s promoting, preaching Christian belief. \n\nA set of directives that solely speaks about how to conduct oneself in society in order to maintain wellness makes far more sense than the 10 Commandments. I\'ve seen conservatives actually defend this action, claiming that the 10C are good principles to live by. Except when I mention the parts that reference God, they go silent.', 'created': '2024-11-13 13:16:36', 'submission_id': '1gpoxoj'}
{'comment': 'I didn’t even think about that.', 'created': '2024-11-13 00:55:43', 'submission_id': '1gpoxoj'}
{'comment': '"The grandparents and uncles can homeschool them" JD Vance - also sometime next year.', 'created': '2024-11-13 22:29:22', 'submission_id': '1gpoxoj'}
{'comment': 'There are really only two of those Commandments that are laws of the United States. Murder and Theft. \n\nOne more of those laws is kind of on the fence about being illegal here. The one about bearing false witness. I can lie all day long and no one can send me to jail for it unless it’s committing perjury in front of the courts.', 'created': '2024-11-13 18:15:38', 'submission_id': '1gpoxoj'}
{'comment': 'This article may be behind a paywall. You can add 2-4 paragraphs as a quote in a comment. *Do not post the text for the entire article.*\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-12 16:24:31', 'submission_id': '1gpn6ue'}
{'comment': 'Misinformation. I know about someone who thought getting rid of the DOE would get rid of their student loans, so they voted for Trump. Americans are just stupid!', 'created': '2024-11-12 16:51:08', 'submission_id': '1gpn6ue'}
{'comment': 'It was LIES about the economy.', 'created': '2024-11-12 17:17:53', 'submission_id': '1gpn6ue'}
{'comment': "Yes. Harris lost because a lot of people couldn't hear her message on the economy. \n\nEither because they've been radicalized by fascist rhetoric. \n\nOr the tsunami of misinformation made them too confused to hear her.\n\nBut it is also true that she lost some voters because of those other issues. Because once again, they couldn't hear what she had to say.", 'created': '2024-11-12 16:30:59', 'submission_id': '1gpn6ue'}
{'comment': 'So the 90% Black women, 80% Black men 79% Jewish and 60% latino women who voted for her were not in the same economy? Or perhaps they were but they realized that racism, sexism, and fascism were none starters while other groups thought it might be a good idea as long as gas and eggs were cheap?\n\nEdit: added Jewish percentage', 'created': '2024-11-12 17:51:20', 'submission_id': '1gpn6ue'}
{'comment': None, 'created': '2024-11-12 16:55:44', 'submission_id': '1gpn6ue'}
{'comment': 'If only the Dems didn’t stop campaigning in 2020 after Biden won. It should have been called Trumpflation every week, every press conference, every official statement, etc etc etc.', 'created': '2024-11-12 18:35:41', 'submission_id': '1gpn6ue'}
{'comment': 'My God.🙄\n\nThe same tired analysis overlooks a critical point: a large segment of the electorate has been deeply influenced by misinformation and propaganda. A well-oiled propaganda machine isn’t something you can simply counter with an appeal to “the economy, stupid.” This oversimplification misses the mark, and a prime example is the 92% of Black women who voted for Harris. 80% of Black men. They didn’t buy into the propaganda, even though they often face the same—if not greater—economic challenges as other groups. So why didn’t they prioritize “the economy, stupid”? Perhaps because they understood that their vote was, in fact, for a strong economy, unclouded by the Fox News and mainstream narratives designed to mislead.\n\nThese voters were presented 2 choices: the choice between an edible piece of fruit and the choice between a steaming pile of shit with glass in it and while claiming they are starving, they chose the shit because they have been captured by propaganda to believe shit is good for them and fruit isn’t. \n\nAnalyze that.', 'created': '2024-11-12 16:46:20', 'submission_id': '1gpn6ue'}
{'comment': "But the economy is booming now. It'll be in the tank in six months. All due to wilful ignorance.", 'created': '2024-11-12 16:50:50', 'submission_id': '1gpn6ue'}
{'comment': "No, it wasn't the economy. The economy is recovering and by all reports very strong. It was the messaging about the economy. Dems love to overcomplicate every question. Keep it simple. Keep repeating it over and over and over and over and over and...... OVER again.\n\nYes, inflation rose in response to economic policies initiated by President Trump and continued under President Biden. Those policies helped our economy short term during the pandemic. Did anyone tear up there government checks? No, well then, you played your part. \n\nPrices also rose as corporations raised prices and took record profits, using inflation as an excuse to do so.\n\nEconomic policies implemented by President Biden, like the Chips Act and Infrastructure Bill, to combat inflation are working. We are improving the country while improving our economy. Remember, President Trump couldn't get he is act together on infrastructure, Biden got it done.\n\nGas prices are under control and the US currently exports more oil than any other country. Trump allowed the sale of our largest refinery to Saudi Arabia.\n\nIn the end, Trumpublicans have once again been handed a rapidly improving economy. Lets see what they do with it.", 'created': '2024-11-12 17:24:41', 'submission_id': '1gpn6ue'}
{'comment': 'The economy that Democrats literally beat out Republicans on every single time for the last 60 years?\n\nOk.\n\nOh, you meant it was the economy for people who are politically and economically illiterate but who don’t want that fact to be announced, gotcha.', 'created': '2024-11-12 16:39:46', 'submission_id': '1gpn6ue'}
{'comment': 'Yes. It was the economy, and stupid people voting for the party that will make it much, *much* worse.', 'created': '2024-11-12 17:14:51', 'submission_id': '1gpn6ue'}
{'comment': "Oh my gosh. That is even more stupid then.\n\nTrump was a silver spoon baby given $300M some of that in illegal ways in order to hide his dad's tax free gifting, and yet still managed to bankrupt himself 6x as well as lose more money than if he put the money in a low interest fund.\n\nHe added 40% to the total US debt in only 4 years.", 'created': '2024-11-12 18:11:57', 'submission_id': '1gpn6ue'}
{'comment': 'The fact that Trump and the whole GOP continue to get away with completly lying abiut things like cutting taxes for the middle class is probably a factor.', 'created': '2024-11-12 22:47:32', 'submission_id': '1gpn6ue'}
{'comment': 'The Economy is in Great shape NOW. Was on Election day. Voting against your self interest when the Economy tanks do not complain Trump voters and voters who did not vote.', 'created': '2024-11-12 21:54:37', 'submission_id': '1gpn6ue'}
{'comment': 'The economy is fine. She lost due to ignorance of the American people.', 'created': '2024-11-12 18:27:58', 'submission_id': '1gpn6ue'}
{'comment': '"Noooooo. The real reason she lost is <insert my pet policy issue here> if only she did the thing I personally advocate for, she would have won and we would have flipped Texas and Florida and the house and Senate and the supreme Court would have resigned out of shame."\n\n-everyone everywhere since last Wednesday.\n\n\nIt\'s always been the economy.', 'created': '2024-11-12 18:26:32', 'submission_id': '1gpn6ue'}
{'comment': 'But what policies did the republicans offer? Concepts of plans? Tarrifs? They had nothing. Which leads me to believe that it was alot more than the economy.', 'created': '2024-11-12 18:39:50', 'submission_id': '1gpn6ue'}
{'comment': 'Excuse me it’s both. The solution offered to the people who voted for Trump, was to fix the economy via mass deportations, subjugating women and minorities. So yeah, if people were truly voting with their pocketbooks, they would’ve picked the candidate who offered actual solutions not just lifting some up by knocking down the others.', 'created': '2024-11-12 18:43:09', 'submission_id': '1gpn6ue'}
{'comment': 'Misogyny and people having an inability to look beyond a 10 second clip.', 'created': '2024-11-12 19:20:33', 'submission_id': '1gpn6ue'}
{'comment': 'Yes, too many people didn’t understand that Biden/Harris not only aren’t to blame for their high cost of housing, eggs, etc but they did an amazing job of holding down the costs of many common items with various programs. They just voted how they felt, or stayed home. And at least some racists or misogynistic people are still out there. I was excited to vote for Harris but I think we need to stop trying to nominate anyone but a white guy for a while, until we can figure out how to counter the right’s advantage with right-wing messaging.', 'created': '2024-11-12 22:09:32', 'submission_id': '1gpn6ue'}
{'comment': 'You’re incorrect. Our economy is doing well and would have grown under a Harris admin, while it will contract under a Trump admin. Voters had this information available, but opted to ignore it due to misogyny, racism, and vileness.', 'created': '2024-11-12 22:16:24', 'submission_id': '1gpn6ue'}
{'comment': 'My ex-friend voted for Trump because he thought Harris was "gonna get revenge on white folks for slavery" and how "reparations were gonna drive up the cost of eggs". He was also told by right-wing media that white children would work the fields under a n-word\'s whip.', 'created': '2024-11-12 22:47:02', 'submission_id': '1gpn6ue'}
{'comment': 'Completely agree. Voters wrongly, but predictably, blamed the current administration for post-pandemic inflation. The end.', 'created': '2024-11-12 17:28:27', 'submission_id': '1gpn6ue'}
{'comment': "Yep, racism/sexism and the economy, thing about the economy is that shit was baked in alotta ppls heads that it was bad, literally for months and months the news and not just right wing media every single day had a story about inflation and rising costs, hell our local news here which even leans left had daily stories about it, it wasn't until this year that the media finally started to say things was getting better but by then it was too late, the perception of the economy being terrible was too far gone into ppls heads and of course the current administration is always blamed", 'created': '2024-11-12 17:46:04', 'submission_id': '1gpn6ue'}
{'comment': 'Misinformation about the economy,stupid!', 'created': '2024-11-12 17:47:13', 'submission_id': '1gpn6ue'}
{'comment': 'People voted down ballot blue, and the top of the ticket for a felon. It wasn’t just the economy.', 'created': '2024-11-12 19:29:23', 'submission_id': '1gpn6ue'}
{'comment': "I recall democrats holding hearings and proposing bills to address gas prices, inflation in general, and corporate price gouging. Republicans blocked them at every turn. Just like the border Republicans make every problem worse then claim they're the ones who will fix it. \n\nPeople already forgot that trump inherited the Obama economy then proceeded to spend like a drunken sailor and started trade wars that made goods more expensive, failed to increase manufacturing, caused American business to go bankrupt, and required billions of dollars in aid to farmers, some of whom killed themselves. Trump also complained constantly about the trade deficit then embarked on policies that drove it even higher, benefits he doesn't know anything about economics. \n\nNow he's inheriting the biden economy which despite people's complaints achieved a soft landing many thought impossible and is solid by almost every metric. His only ideas so far are inflationary and will blow an even bigger hole in the budget. He's sure to force the fed to lower interest rates and overheat the economy. There's zero chance he doesn't fuck everything up and tip us into recession.", 'created': '2024-11-12 22:05:23', 'submission_id': '1gpn6ue'}
{'comment': 'It’s because of people who don’t understand the economy, lies, and misinformation.\n\nHarris gave some clear plans and ideas that would truly help the middle class. Trump and pals simply blamed democrats and claimed they would make things better. Trump’s cries were louder.', 'created': '2024-11-12 17:56:34', 'submission_id': '1gpn6ue'}
{'comment': 'I will never for the life of me understand how people think social issues lost Democrats this election. That is the one thing that a huge majority of Americans trust Dems more on and it’s what essentially forces a large group of people to vote for them. If the Republicans would abandon their atrocious social platform, they’d probably win every year. Hell, I would actually have to think about which person I give my vote to and listen to their policy positions in detail. But I can and will never support a Republican under their unethical social policies and with what is going on in the Supreme Court.', 'created': '2024-11-12 16:49:27', 'submission_id': '1gpn6ue'}
{'comment': "It doesn't matter what the truth is, just the truthiness. If democrats want to actually win the big elections, they need to lie like republicans.", 'created': '2024-11-12 17:55:46', 'submission_id': '1gpn6ue'}
{'comment': 'There were a lot of things going against the Dems and it seems like death by a thousand papercuts. Could weather a few, couldn\'t weather them all. Exit polls and worldwide trend do put the economy as the bigger of the cuts. The issue we\'re facing is the "other guy" doesn\'t have a good plan on how to fix it either. In fact, he could probably do nothing and just let things continue to hum along as they currently are and fare better than his proposed plans.', 'created': '2024-11-12 18:28:54', 'submission_id': '1gpn6ue'}
{'comment': "If you have been in any airport this summer, it wasn't the economy. They just like to bitch about the economy.", 'created': '2024-11-12 20:22:00', 'submission_id': '1gpn6ue'}
{'comment': "They did good things for the economy, just like how they were hard on the border. But they didn't properly communicate to the American people that the current economic strains would be temporary if the Dems were allotted a 2nd term to finish what they started. Like it doesn't matter if your economy is perfect, you need to advertise it well. From an advertising perpective, Trump has managed to turn himself into a god despite his deep flaws. Because that is ALL the American election is about: Marketing", 'created': '2024-11-12 22:45:36', 'submission_id': '1gpn6ue'}
{'comment': "So, how did they vote for the 'they're eating the dogs' candidate vs. the 'let us help you buy your 1st house ' candidate then?", 'created': '2024-11-12 23:32:21', 'submission_id': '1gpn6ue'}
{'comment': 'Told my friend I’m willing to sacrifice a little economically because I care for people who are disenfranchised. He only cares about the border and the economy and the government taking all his money. That’s it. \n\nHe said: \n\nI don’t like gay shit shoved in my face. I’m not homophobic I just don’t want it shoved in my face.\n\nHe said there are tampon machines in the men’s restrooms at elementary and high schools\n\nHe said Trump already settled the economy, the war in Ukraine and the wars in the Middle East \n\nEverything is worse now than it was four years ago\n\nWhen I argued my counter points he suggested I get better resources. \n\nThis country is in the toilet.', 'created': '2024-11-12 17:39:58', 'submission_id': '1gpn6ue'}
{'comment': 'no, it wasn’t. \n\nAmerica is very racist and very misogynistic and very ignorant.', 'created': '2024-11-12 18:06:44', 'submission_id': '1gpn6ue'}
{'comment': 'Inflation was partially fueled by COVID stimulus passed under Biden. Trump spent more on Covid Stimulus than Biden did but it was also less needed when Biden was president. A lot of companies that were doing fine got a bunch of money from the government. \n\nThe bet was that this stimulus would jumpstart the economy, and it did. Stock market roared back, employment was up. Strongest covid recovery in the entire world. But the voters don’t care about any of that if eggs are expensive. The Biden administration would assume they’d get credit for a good economy and they’ve gotten the opposite.\n\nPeople long for the recession we were in in 2020. When unemployment rates skyrocketed and the stock market was in the toilet. Because eggs were cheaper.', 'created': '2024-11-12 18:28:38', 'submission_id': '1gpn6ue'}
{'comment': "Don't call me stupid, I didn't vote for Trump.", 'created': '2024-11-12 17:45:41', 'submission_id': '1gpn6ue'}
{'comment': 'Perception of the economy anyway', 'created': '2024-11-12 18:42:36', 'submission_id': '1gpn6ue'}
{'comment': "it's an uphill battle for sure. Inflation hurts the party in charge. I think particularly because the core Dem base has lower household income the rising prices (especially Rents) really really impacted turn out. An extra $500 in rent may be bearable for a 6-figure earner but that's a Topgolf excursion or travel ball money for working class folk.", 'created': '2024-11-12 20:49:02', 'submission_id': '1gpn6ue'}
{'comment': 'Next democrat during the debate when asked any question not related to economy better say, “why are you asking me that, the American people do not care about that issue.” Then proceed to explain their economic plan and how republicans suck', 'created': '2024-11-12 22:18:12', 'submission_id': '1gpn6ue'}
{'comment': 'We all have encyclopedias in our palms yet somehow we got dumber.', 'created': '2024-11-12 22:39:02', 'submission_id': '1gpn6ue'}
{'comment': 'This is why she lost: \nHow the election might have been stolen:\n\n1. Burned ballot boxes in Washington and Oregon\n[Source: https://www.cnn.com/2024/10/29/us/ballot-box-fires-what-we-know/index.html]\nBurned ballot boxes in high-turnout areas can disenfranchise voters, especially in Democratic-leaning regions. In tight districts, lost ballots could directly impact state results by skewing the voter data.\n\n2. Montana absentee voting system leaving Kamala Harris off the e-ballot\n[Source: https://www.greatfallstribune.com/story/news/2024/09/24/montana-overseas-absentee-ballots-error-mistakenly-omit-kamala-harris/75365165007/]\nOmitting Kamala Harris from absentee ballots caused confusion among overseas voters. This could affect the final results if votes were cast under the impression the candidate wasn’t listed. In tight races, errors like these can erode voter confidence and turnout.\n\n3. Republicans in Pennsylvania trying to disqualify ballots for not using the optional secrecy envelope\n[Source: https://amp.theguardian.com/us-news/2024/nov/01/republicans-supreme-court-pennsylvania-ballots]\nPennsylvania Republicans are pushing to invalidate ballots missing the optional secrecy envelope, creating a technicality that could discard votes, especially among Democratic-leaning demographics. With Pennsylvania’s tight race history, this could heavily influence the state’s final result.\n\n4. Bomb threats in polling stations in predominantly Black neighborhoods\n[Source: https://www.cbc.ca/amp/1.7374600]\nBomb threats in predominantly Black neighborhoods suppress turnout in Democratic-leaning areas by causing voters to fear for their safety. Lower turnout in these communities could reduce Democratic counts, benefiting Trump.\n\n5. Voter intimidation from the “Trump Clan” in Texas\n[Source: https://fortune.com/2024/10/29/trump-klan-flyers-texas-voter-intimidation/]\nThis kind of intimidation reduces voter turnout in Texas, especially among marginalized groups. Even a slight drop in voter participation in Democratic areas could shift the state outcome toward Trump.\n\n6. Virginia purging voter rolls 25 days before the election\n[Source: https://www.aljazeera.com/news/2024/10/12/us-justice-department-sues-virginia-for-purging-voters-before-election]\nPurging voter rolls this close to the election can prevent low-income and minority voters—who often lean Democratic—from participating. Virginia’s recent competitive elections mean even small numbers of purged voters could tip results.\n\n7. Elon Musk’s $1 million-a-day sweepstakes targeting swing-state voters\n[Source: https://www.vox.com/politics/378912/musk-trump-voting-contest-million-dollars-swing-state-lottery-pennsylvania]\nA million-dollar sweepstakes may drive voter turnout in swing states like Pennsylvania, potentially benefiting Trump by activating undecided voters or low-turnout supporters who might otherwise stay home.\n\n8. Musk’s lawyer defending the lottery by claiming winners are spokespeople\n[Source: https://newrepublic.com/post/187879/elon-musk-lawyer-1-million-lottery-scam]\nThis defense of the lottery as a promotional tool raises ethical concerns. If only Trump supporters or PAC promoters are incentivized, it could sway results in critical swing states through an imbalance in voter participation.\n\nWhile each incident alone might not sway the election, together they create a pattern that could skew the vote in key battleground states, ultimately tilting the electoral outcome in Trump’s favor.', 'created': '2024-11-13 00:24:36', 'submission_id': '1gpn6ue'}
{'comment': 'But Harris announced proposals that included lowering grocery and prescription drug prices and addressing the housing crisis. She\nspecifically talked about how she was going to immediately focus on helping Americans with high costs with regulations against corporate price gouging, providing $25k down payments for first time home buyers, a $50,000 tax deduction for new small businesses, and giving families a $6,000 tax credit for newborns, while restoring a pandemic-era tax credit of $3,600 per child for middle and lower-class families.', 'created': '2024-11-13 00:51:19', 'submission_id': '1gpn6ue'}
{'comment': 'Every economic indicator says our economy is strong and in pretty good shape. Sure goods are more expensive. But thar is greed, change the places you patronize and tell them about you moving on. Wages increased, too, but where is that news? \n\nSo voters concerned about the economy just elected a man who told everyone that he is going to put tariffs on imports from the 2nd biggest holder of our debt and they are going to eat that cost increase? Yeh, right, BS. The consumers are the end of that chain, and every added cost gets passed along.', 'created': '2024-11-13 01:14:27', 'submission_id': '1gpn6ue'}
{'comment': "I agree somewhat. People truly believe trump will help their pockets (nevermind he can't even get his own finances in check)\n\nIt's the fact that knowing he was a racist, misogynistic narcissist and STILL voting for him makes them just as bad . I could never choose my pockets over people.", 'created': '2024-11-13 01:43:56', 'submission_id': '1gpn6ue'}
{'comment': 'She should have sat down twenty five times on Fox. Live. Where they cannot edit her messaging.', 'created': '2024-11-12 17:31:25', 'submission_id': '1gpn6ue'}
{'comment': 'It was mostly the economy but the **MAIN** issue was messaging in regards to several social problems. GOP voters are unaware that nobody is cutting children\'s private parts off if they even think I am trans. At worst they are put on puberty blockers until they can make any further decisions. But, dems dont argue this they just say "gop crazy" and shake their heads at the camera like its a fucking snl skit.', 'created': '2024-11-12 18:07:04', 'submission_id': '1gpn6ue'}
{'comment': 'People can’t afford rent, can’t afford homes and food. At the ballot box they’re going to tend to blame the incumbent.\xa0', 'created': '2024-11-12 19:25:46', 'submission_id': '1gpn6ue'}
{'comment': 'And it was rigged, but whatever.', 'created': '2024-11-12 16:30:14', 'submission_id': '1gpn6ue'}
{'comment': 'Agreed. When you go the store and see $10 for a bag of 5 apples, it just negates any messaging. But still her messaging was way better than that deranged lunatic. I believed she could have done something about it.', 'created': '2024-11-12 17:47:52', 'submission_id': '1gpn6ue'}
{'comment': "Duh.\n\nGroceries are way up and housing is virtually unattainable for many working people, especially working class non-homeowners.\n\nWages for many have not caught up to the burst of post-pandemic inflation.\n\nIf you are struggling to provide food and shelter you are not voting for the incumbent.\n\nI would also note that credit card debt is way, way up--people are coping with the inflation by maxing out their plastic and/or taking out HELOCs.\n\nBK filings are up across the board, even the mortgage defaults are way, way down (about 1.2% of all mortgages).\n\nTrump and his team of knaves and dolts are, of course, going to make things much, much worse, but that's what went down.", 'created': '2024-11-12 17:50:21', 'submission_id': '1gpn6ue'}
{'comment': 'That;s interesting as all of the GOP ads ONLY talked about allowing gender affirming care in prisons and swimmer boys who wear lipstick.', 'created': '2024-11-12 18:14:39', 'submission_id': '1gpn6ue'}
{'comment': 'if someone used the phrase ‘its the economy stupid’ to me to my face i would bitch slap them.', 'created': '2024-11-12 18:16:46', 'submission_id': '1gpn6ue'}
{'comment': 'Harris didn\'t do a good job gaming popular news media. She started out doing so, but then her campaign stopped calling Republicans weird and tried to court moderates. They stopped saying "if they go low, we knee them in the chin" and went back to saying "we go high" which never worked for them before. This fed into the narrative that Democrats are elitist. And courting moderates alienated the progressives and the working class that felt left out of all this economic growth they keep talking about, because only the already rich seem to be benefitting from that growth.\n\nThey started out doing everything right, and dropped the ball by going to the same strategy that\'s been failing Democrats for a long time.', 'created': '2024-11-12 18:29:45', 'submission_id': '1gpn6ue'}
{'comment': 'No, it was misogyny and racism. The economy was in good shape. Trump can’t bring prices back to pre-pandemic prices. He’s not a magician.', 'created': '2024-11-12 20:10:53', 'submission_id': '1gpn6ue'}
{'comment': ' But we sure are infighting, which is something I would bet money on (if I had any) that the GOP was banking on. Everybody needs to stop being angry at each other and maybe be angry with the person who is going to dismantle the department of education.', 'created': '2024-11-12 21:45:18', 'submission_id': '1gpn6ue'}
{'comment': 'People need to stop pinning it on one key issue. Everyone had issues with the economy in one way or the other. But trying to say dems lost because of the economy alone is like saying Hitler rose to power because he didn’t get into art school.', 'created': '2024-11-12 22:47:38', 'submission_id': '1gpn6ue'}
{'comment': 'Absolute horseshit. The economy was roaring', 'created': '2024-11-12 18:12:18', 'submission_id': '1gpn6ue'}
{'comment': 'The Economy is doing FINE.\n\nWe’re recovering from a worldwide pandemic.\n\nHiring is up, Inflation is DOWN.\n\nThose that try to blame gas prices under $3 a gallon and eggs at $2 a dozen for the election are purely stupid.', 'created': '2024-11-12 23:14:08', 'submission_id': '1gpn6ue'}
{'comment': 'I think it was a lot of things', 'created': '2024-11-12 17:55:40', 'submission_id': '1gpn6ue'}
{'comment': 'This take is simplified as are the other takes. The key question is what was the difference maker in this election that tipped the scale in his favor in the swing states? I don’t think we know the answer yet. Stop blaming fellow Democrats or looking for a scape goat. We need to answer this fundamental question through study and analysis the next few weeks. First we need to verify his win through the recount and audit process allowed under the various State laws.', 'created': '2024-11-12 18:07:16', 'submission_id': '1gpn6ue'}
{'comment': 'There is one country where the incumbent party did really well Mexico, maybe take a look at what Lopez-Obrador did and see what can be co-opted.', 'created': '2024-11-12 18:35:12', 'submission_id': '1gpn6ue'}
{'comment': 'Fuck us all you want as long as you leave the money on the dresser before you go.', 'created': '2024-11-12 18:36:48', 'submission_id': '1gpn6ue'}
{'comment': 'pot calling the kettle black.\n\nthe economy is what caused those groups to vote for trump.', 'created': '2024-11-12 18:56:18', 'submission_id': '1gpn6ue'}
{'comment': "I mean. \n\nIt was lying. It was a lack of morality and honesty and an uncanny ability to lie without shame. \n\nSo yeah, I guess that's true.", 'created': '2024-11-12 19:13:07', 'submission_id': '1gpn6ue'}
{'comment': 'This NYT article by David French who I only agree with 1/4 columns did have a good anology of Olympic curling. A good campaign can only slightly affect the direction.\n\nThe fact the vast majority of Trump voters who may have voted for Obama or Biden in the past but liked Trump on the economy speaks to the facts that most voters get news from sources much more suspect than Fox News.\n\nThis makes it much more difficult than going on manosphere podcasts.\n\nTimes column with no paywall.\n\n[https://www.nytimes.com/2024/11/10/opinion/harris-trump-campaign-curling.html?unlocked\\_article\\_code=1.ZU4.Vxry.KJeDGo7uvbKm&smid=url-share](https://www.nytimes.com/2024/11/10/opinion/harris-trump-campaign-curling.html?unlocked_article_code=1.ZU4.Vxry.KJeDGo7uvbKm&smid=url-share)', 'created': '2024-11-12 19:13:50', 'submission_id': '1gpn6ue'}
{'comment': 'It was right wing media. Period', 'created': '2024-11-12 19:33:00', 'submission_id': '1gpn6ue'}
{'comment': "No ... it's because of the power of devious, deceptive, and amoral marketing. A skill Trump has at superpower levels.", 'created': '2024-11-12 19:36:46', 'submission_id': '1gpn6ue'}
{'comment': 'Post No 3,465,789 that begins with "Harris did not lose because of...', 'created': '2024-11-12 19:46:09', 'submission_id': '1gpn6ue'}
{'comment': "The problem is now that the orange menace is in charge, these people will now believe the economy isn't so bad", 'created': '2024-11-12 19:57:02', 'submission_id': '1gpn6ue'}
{'comment': "There's no one particular thing that was glaring wrong but it was a confluence of factors. I'm just utterly shocked that Trump can say the things he does and gain support across the board in virtually every city and demographic. We will see what happens in the next 4 years.", 'created': '2024-11-12 19:58:49', 'submission_id': '1gpn6ue'}
{'comment': 'It was racism, misogyny, democrats going too moderate instead of fighting their label as the corporate elite, and the economy.', 'created': '2024-11-12 19:59:08', 'submission_id': '1gpn6ue'}
{'comment': "Everybody's got a reason why Harris lost. Some say it's because Biden didn't get out of the race soon enough. Some say it's the economy. Some say this, some say that. I thought she ran a perfect campaign. I think the people who voted for Trump were just a\\*holes. All the Trumpers around me have a big house, three cars, a boat and an RV. They are not hurting...unless they've put themselves in so much debt they can't get out of it...but that's their fault. I think it's just hate.", 'created': '2024-11-12 20:07:48', 'submission_id': '1gpn6ue'}
{'comment': 'I think the truth is that there\'s more than one factor. The economy, mostly, but even that just underscores that people still choose Trump and economic hopes over basic decency and social progress. \n\nTo refuse to take a critical look at why young men are increasingly finding validation in right wing media is a mistake. I think it\'s one thing to call out toxic masculinity, but there\'s a void on our side for positive male role models. I\'m trying to think, Steve Irwin, Bob Ross, Mr. Rogers...who do we have *today* of that level? Let alone men that define true strength in a way that\'s appealing to a "man\'s man"?', 'created': '2024-11-12 20:15:16', 'submission_id': '1gpn6ue'}
{'comment': 'Two things can simultaneously be true.\n\nI hope misguided articles like this don’t lead people to believe that the Democrats’ failures were all due to lousy timing related to the economy.', 'created': '2024-11-12 20:23:44', 'submission_id': '1gpn6ue'}
{'comment': 'I don\'t think the economy was the reason. People that have that on their radar do things like track the economic indicators. If they had actually looked at the data they would have had nothing serious to complain about. The Democrats were fixing things. Why break a winning streak?\n\nPeople can\'t say the real reason for their vote in public, so they mention the economy as a convinient excuse. I understand why the Financial Times would write that the reason is Financial, but the real reason is much darker. There is a wave of Us vs Them resentment resonating around the globe, partly from long-standing internal tensions, and partly because the Russians and others have been stoking those resentments for years.\n\nTolerance is a virtue in the USA. Our society has had several centuries to evolve the primitive 18th Century idea that all men are created equal into a sophisticated set of social norms. We now know that a large percentage of the population really, really hate the idea that everyone is equal, and they are tired of pretending they are in public. They are so consumed by anger about this "wokeness" in society that they voted to end the constitution that started it.\n\nThey are now consolidating a fascist regime to impose their anger at having to pretend on the folks they look down on. They hear a wannabe dictator speak with open contempt of all they secretly hate and say to themselves, “He’s one of us!” They are now free to celebrate their contempt in public, and they do. They just did it at the ballot box.\n\nSoon this strong man will set up a society that features secret police that will capture, imprison, and even kill folks that value equality. He called them, “the enemy within.” He mentioned names. His base cheered.\n\n[https://www.politifact.com/article/2024/oct/30/trump-is-talking-more-about-the-enemy-from-within/](https://www.politifact.com/article/2024/oct/30/trump-is-talking-more-about-the-enemy-from-within/)\n\nThe MAGAs picture blue haired, nose ring wearing lesbian baristas at Starbucks, and the tweed jacket intellectuals at Harvard as their targets. And rag-wearing latinos fleeing Cartel violence. And school teachers. And doctors. And folks that believe in other gods, or no gods at all.\n\nThe targets of their hate varied, but they were always THEM and never US.\n\nWell, they\'re about to get a wakeup call. Trump\'s contempt includes them too. And with his new role gets to set up secret police and internment camps to implement his contempt.\n\nOne of the "features" of living in a fascist society is that you can get retribution on who you don\'t like by denouncing them to the secret police. If a large company has a problem with a startup eating away at it\'s market all it has to do is make a few phone calls and the startup swept away. Jilted lovers will do the same. Jealous neighbors? Ditto. Don\'t like that dog barking? Who ya gonna call!! The Woke Busters!\n\nIt’s just how life is in a totalitarian regime. It will take a few years - 3 to 8 on average - but life will eventually really suck in the USA if we can\'t restore the Constitution (in upgraded form) to it\'s rightful place as the supreme law of the land.\n\n[https://www.historytools.org/stories/the-stasi-inside-the-twisted-world-of-east-germanys-secret-police](https://www.historytools.org/stories/the-stasi-inside-the-twisted-world-of-east-germanys-secret-police)', 'created': '2024-11-12 20:32:28', 'submission_id': '1gpn6ue'}
{'comment': 'The economy is humming along better than the rest of the world, the problem is stupid people who believed Trump when he told them the sky was falling.', 'created': '2024-11-12 20:33:15', 'submission_id': '1gpn6ue'}
{'comment': 'This. And it’s not even the economy: it’s the perception of the economy.', 'created': '2024-11-12 20:36:18', 'submission_id': '1gpn6ue'}
{'comment': "That's one of many competing opinions. And they say opinions are like what again?", 'created': '2024-11-12 20:42:46', 'submission_id': '1gpn6ue'}
{'comment': "Why does it have to be just one thing? I feel it's possible she lost due to a combination of variables, not just one.", 'created': '2024-11-12 20:42:52', 'submission_id': '1gpn6ue'}
{'comment': 'Then why did moderate senate/governor Dems who ran right of Harris win pretty much all the swing states? \n\nHarris ran too far left and not picking Josh Shapiro was the problem.', 'created': '2024-11-12 20:58:24', 'submission_id': '1gpn6ue'}
{'comment': 'But the economy is doing better than ever.', 'created': '2024-11-12 21:01:25', 'submission_id': '1gpn6ue'}
{'comment': 'Truth, except it was *perceptions* of the economy, not the actual economy. \n\nOur messaging is so bad. Christ, a two minute TikTok from the WH explaining inflation and what causes it could have been enough to counter the relentless inflation talk put out by both mass & right wing media. \n\nGoing further, Dems/Biden should have been crowing about the litany of economic accomplishments over the past four years, despite global economic headwinds. AND they should have been talking about future policy plans to continue economic gains. \n\nThis is the same mistake Obama made: afraid to talk about accomplishments because things aren’t perfect yet. And afraid to talk about future plans because…if you don’t talk about current efforts, how can you talk about future efforts. \n\nWE NEED TO STOP CEDING THE POLITICAL NARRATIVE TO RIGHT WING MEDIA & SOCIAL MEDIA.', 'created': '2024-11-12 21:18:02', 'submission_id': '1gpn6ue'}
{'comment': "It's NOT the economy, stupid. It's the PERCEPTION of the economy, stupid. As long as the right has a giant hypnotizing, propaganda, misinformation media machine and the left does not, they can make the morons in America who don't bother to investigate or fact check a damn thing believe whatever they want and no amount of facts or truth telling is going to change anything.", 'created': '2024-11-12 21:30:32', 'submission_id': '1gpn6ue'}
{'comment': 'Sorry, but it was racism, sexism, and hate. But no pollster is going to be able to extrapolate that by asking people if that was a factor, because the person being asked would get angry at even being asked the question.\n\nThat is the delusion of denialism that America breathes. It’s bad enough when voters do it, but it’s also awful when pollsters and analysts are willing accomplices.', 'created': '2024-11-12 21:35:29', 'submission_id': '1gpn6ue'}
{'comment': 'Either way, shame on us', 'created': '2024-11-12 22:44:24', 'submission_id': '1gpn6ue'}
{'comment': 'It was the huge grift and lies of DonOld and Fox et al', 'created': '2024-11-12 23:46:17', 'submission_id': '1gpn6ue'}
{'comment': "It's the *propaganda*, stupid.", 'created': '2024-11-13 01:00:34', 'submission_id': '1gpn6ue'}
{'comment': 'Look how hot Sunak and Macron are, and then look at Biden and Trump. When are we going to get a hot president?', 'created': '2024-11-13 01:01:20', 'submission_id': '1gpn6ue'}
{'comment': 'It\'s both. Democrats kept trying to pretend that the economy was fine and that everything was secretly doing great, but most people are struggling. That\'s not a winning message. However, the loss of white men and especially Gen Z men was also detrimental.\n\nDo not get me wrong: I think trans rights are non-negotiable. However, we can drop some of the excesses of wokeness such as "Latinx" and radical misandrist feminists.', 'created': '2024-11-13 01:06:43', 'submission_id': '1gpn6ue'}
{'comment': 'This is just bullshit. I sat through an ITR presentation 2 weeks ago on the economy. We are about to see a shitty economy but today, by every measure, the economy is in good shape.', 'created': '2024-11-13 01:23:50', 'submission_id': '1gpn6ue'}
{'comment': 'harris lost due to many reasons, and "wokeism" was a part of it. one thing you can\'t cancel are people\'s votes.', 'created': '2024-11-13 01:53:15', 'submission_id': '1gpn6ue'}
{'comment': 'Rightly or wrongly, working class people felt like the Democrats had abandoned them, so they abandoned the Democrats....', 'created': '2024-11-13 02:08:06', 'submission_id': '1gpn6ue'}
{'comment': 'The Woke-ism argument is a whole bunch of neo-liberal Democrats pinning losing the election on anything that doesn’t require them to change anything about their economic strategy or that would hit their hip pocket.', 'created': '2024-11-13 02:48:00', 'submission_id': '1gpn6ue'}
{'comment': "It wasn't just the economy.\n\nDemocrats need to appeal to white men somehow.", 'created': '2024-11-13 03:09:47', 'submission_id': '1gpn6ue'}
{'comment': 'The messaging about the economy?', 'created': '2024-11-13 04:08:01', 'submission_id': '1gpn6ue'}
{'comment': 'No. Stupid people voted for a man who lies and cheats. White men and women and Latinos. That is fact per many sources.', 'created': '2024-11-13 05:02:31', 'submission_id': '1gpn6ue'}
{'comment': 'What about the economy, stupid?', 'created': '2024-11-13 05:17:18', 'submission_id': '1gpn6ue'}
{'comment': 'Primarily the economy. But let’s not kid ourselves how damaging the trans adds were in their intended demos (aka the ones that swung hard)', 'created': '2024-11-13 05:36:49', 'submission_id': '1gpn6ue'}
{'comment': "It clearly is not the economy, stupid. Seeing as the Republicans still win elections, the economy is clearly a secondary concern. Every Republican in contemporary history has left a little exit present like a house cat that vomits all over the outfit you set out the night before. They always leave us with a recession that the Democrats have to clean up just to give the reins to another Republican to mess up again. The poorest states are all deep-red. The wealthiest are all blue. Lastly, who can forget [Bill Clinton's quote at the DNC](https://m.youtube.com/shorts/oLMC9Fqd-g8)?\n\nhttps://preview.redd.it/wd6sfsm8vl0e1.jpeg?width=1294&format=pjpg&auto=webp&s=43dbd56478f4fad13b3b2eb58de5d8d1d4ab78b4", 'created': '2024-11-13 06:34:01', 'submission_id': '1gpn6ue'}
{'comment': "No it was uneducated dumb young white men. We have the data, it's right there. What could Harris have done? Beamed it into their fucking brains?", 'created': '2024-11-13 09:01:27', 'submission_id': '1gpn6ue'}
{'comment': 'It was about the rotten system that allows known traitor and criminal on the ballot', 'created': '2024-11-13 10:11:14', 'submission_id': '1gpn6ue'}
{'comment': 'This holds water until you look at Arizona. \n\nKari Lake’s platform is virtually indistinguishable from Trump’s. \n\nRuben Gallego’s platform is closely aligned with Harris’s. \n\nYet both women lost, despite the fact that voting for a split ticket of Trump/Gallego is ideologically incoherent. \n\nBut please, let’s continue pretending we are a nation that is concerned with “policy” in any meaningful way.', 'created': '2024-11-13 15:41:56', 'submission_id': '1gpn6ue'}
{'comment': ' The economy may be a stupid reason but it is *a* reason, and so is misogyny. Remove the latter and all those (blue wall) "swing" states, also lost by **Hillary**, go from marginal to Harris.', 'created': '2024-11-13 20:08:59', 'submission_id': '1gpn6ue'}
{'comment': 'It was stupid people not understanding economics.', 'created': '2024-11-13 23:25:19', 'submission_id': '1gpn6ue'}
{'comment': 'Yes. The economy had a significant impact. The "felt" economy is still pretty shitty and the "recovery" mainly fell on deaf ears. But the reason why we couldn\'t message to these people is because they turned to, and became parts of, communities/channels/etc.. as a result of the Democratic HR Department giving them an extremely hard time. We messaged incredibly poorly on social issues following the success of #MeToo and #BlackLivesMatter and got into increasingly muddled and nuanced social debates which alienated a not insignificant number of voters. Those voters then turned to media that was willing to embrace them. Then you get the election results.', 'created': '2024-11-12 16:44:30', 'submission_id': '1gpn6ue'}
{'comment': 'And now Trump will get all of the credit for the amazing economic recovery that Biden achieved.', 'created': '2024-11-12 17:56:02', 'submission_id': '1gpn6ue'}
{'comment': 'The fact the there are so many articles trying to figure out why they lost, goes to show how disconnected the Democratic Party is from its voters.', 'created': '2024-11-12 18:26:44', 'submission_id': '1gpn6ue'}
{'comment': 'No. More like:\n\n“It is the ~~economy~~ stupid”.', 'created': '2024-11-13 00:14:03', 'submission_id': '1gpn6ue'}
{'comment': 'Yes, but supporting men in womens locker rooms, drag queen story hour, and transgender sports aren’t helping us either.', 'created': '2024-11-12 18:15:16', 'submission_id': '1gpn6ue'}
{'comment': 'What did she say to home owning married white men? 2nd largest, wealthiest, most powerful voting demographic?\n\nList any issues? No message was directed towards them, besides "this is due Tuesday.\'\n\nList one issue directed at white male Democratic voters.', 'created': '2024-11-12 18:14:16', 'submission_id': '1gpn6ue'}
{'comment': 'S&P up 56% over 4 years (~14% annual return compared with long term avg of 10%)\n\n2.4% annual inflation (compared with 3.28% avg)\n\n4.1% unemployment (compared with long-term avg of 5.69%)\n\nPeople will look back longingly on this economy.', 'created': '2024-11-12 18:08:09', 'submission_id': '1gpn6ue'}
{'comment': 'Omg. No words.', 'created': '2024-11-12 17:48:36', 'submission_id': '1gpn6ue'}
{'comment': 'I know someone who doesn’t like Trump, doesn’t like his policies, but somehow voted for Trump because “he thought Trump would do better”. When asked what Trump would do better he couldn’t give an answer and just repeatedly said he doesn’t like Trump and that we survived him once and we will survive him again. This man also voted dem down the rest of the ticket. I don’t think I’ve ever been so confused in my life.', 'created': '2024-11-12 17:31:12', 'submission_id': '1gpn6ue'}
{'comment': 'DOE literally funds trade/vocational schools and offers grants and loans to attend. \n\nFor-profit ITT tech disaster schools are coming back and you get to pay full price', 'created': '2024-11-12 20:36:51', 'submission_id': '1gpn6ue'}
{'comment': 'Maybe some people deserve a refund for college because they clearly didn’t learn anything', 'created': '2024-11-12 17:54:24', 'submission_id': '1gpn6ue'}
{'comment': "Looking at the promissory note, I'm not sure they can transfer the debt to another government body. However, this SCOTUS will make us pay them no matter what.", 'created': '2024-11-12 18:22:50', 'submission_id': '1gpn6ue'}
{'comment': 'Okay that’s a serious misuse of their expensive education.', 'created': '2024-11-12 20:05:46', 'submission_id': '1gpn6ue'}
{'comment': 'They really are.', 'created': '2024-11-12 17:24:53', 'submission_id': '1gpn6ue'}
{'comment': 'That\'s not useful and not an excuse though. There are always stupid people in every country and every major party. Lots of them. And often that stupidity isn\'t actually stupidity but a proxy for something else like lack of time to engage with the topic or cognitive biases that we all have. \n\nIn that sense, there will never be a major election in the world that doesn\'t hinge in stupidity. Part of being a politician is learning to engage with it (preferably by helping people understand the truth) and compete with easy/convenient explanations (like "I have less money at the end of the month now that this person was leader so they must be worse at the economy\').', 'created': '2024-11-12 19:15:40', 'submission_id': '1gpn6ue'}
{'comment': '🤦🏽\u200d♀️🤦🏽\u200d♀️', 'created': '2024-11-14 16:23:04', 'submission_id': '1gpn6ue'}
{'comment': 'Tbf, the right had been defunding schools for decades now. So .. maybe not stupidity, but certainly ignorance.', 'created': '2024-11-12 20:37:14', 'submission_id': '1gpn6ue'}
{'comment': 'This. It was ABOUT the economy, but it wasn’t an actual representation of the economy. It was propaganda that stupid motherfuckers believed about the future of the economy', 'created': '2024-11-12 20:03:31', 'submission_id': '1gpn6ue'}
{'comment': "Fair, but those lies would have been ineffective if the economic good times felt like good times for regular people. The gains from economic growth mostly go to very wealthy, so those lovely GDP growth numbers really aren't relevant to how people vote...", 'created': '2024-11-12 20:13:52', 'submission_id': '1gpn6ue'}
{'comment': "Sort of. Lies and a misunderstanding about the economy. Inflation happened because of the pandemic. We did an amazing job with the economy in the face of global inflation, but it still occurred. \n\nPeople saw inflation and voted for the opposite party. Incumbency was bad for everyone across the globe, and they didn't much care if it was left or right. People voted for the opposite.", 'created': '2024-11-13 15:34:37', 'submission_id': '1gpn6ue'}
{'comment': 'Absolutely; there was no way to get an economic message out there because the conservatives flooded their propaganda media machine with the message that Democrats are only interested in wokeism, trans rights, open borders, free universities, abortion, etc. You know, all the things that enrage and activate conservatives.', 'created': '2024-11-12 16:45:47', 'submission_id': '1gpn6ue'}
{'comment': 'You don’t lose because of one thing but to say misogyny wasn’t an issue is bullshit…Of course it was.', 'created': '2024-11-12 17:15:20', 'submission_id': '1gpn6ue'}
{'comment': 'Or, since so many times I’ve heard from trumpers that she’s “incoherent” (big word for Elmo) or that she can’t put a sentence together, it was simply the fact that they couldn’t understand what she was saying. She did not dumb down her message enough for them to understand it. But trumps tangents and ramblings made perfect sense to them.', 'created': '2024-11-12 21:40:53', 'submission_id': '1gpn6ue'}
{'comment': 'Both could be true. Wild to me you could live in such a bubble.', 'created': '2024-11-13 04:51:08', 'submission_id': '1gpn6ue'}
{'comment': "Her message didn't focus on **economic inequality**. The fact that many Americans are doing fine is totally irrelevant if many others are struggling. Telling people struggling to pay the bills things are great is a sure fire way to infuriate them.\n\nHer RINO ass kissing didn't help either.", 'created': '2024-11-12 16:45:09', 'submission_id': '1gpn6ue'}
{'comment': "I listened to what she had to say and voted for her, but I also feel her rally's sucked. They were too rah rah and not enough substance. All the clips were of shit like Beyonce and Lil Jon and not of her discussing the issues that hurt the american people. Issues that myself am bothered by. The working class is being told to go fuck themselves by the rich elite. It's why we end up with an idiot like Trump whos sound bites are blasted through every diner across the nation. Every rural town just spams Fox news.\n\nEDIT: ALSO, the people banging on doors multiple times in a 2 week span and spamming my phone with texts. Those people can get fucked. No one likes being bothered like that and it really soured my tastebuds. I cannot imagine how someone who was on the fence would have been.", 'created': '2024-11-12 20:20:26', 'submission_id': '1gpn6ue'}
{'comment': "Don't forget the Jewish voters who overwhelming voted for her as well, and yes, we realized the 2nd part of your statement", 'created': '2024-11-12 18:17:25', 'submission_id': '1gpn6ue'}
{'comment': 'Yeah, that’s exactly what those other groups are saying. We should throw minorities and LGBTQ people under the bus if it gets us cheaper eggs (it won’t get us cheaper eggs, but feels over reals, amirite?)', 'created': '2024-11-12 20:46:05', 'submission_id': '1gpn6ue'}
{'comment': 'It’s one of the biggest grifts of history that our Conservative party has successfully convinced the masses that they’re the party of the common man. I can’t name a single thing they’ve done to help me in my lifetime. \n\nAll I’ve known (as a poor/working class person) is them viciously contesting every single bill that would help me. \n\nFFS someone said yesterday that they were talking to an acquaintance, lamenting the risk to our healthcare, and the acquaintance proudly said “I know Trump is going to repeal ObamaCare, doesn’t matter to me since I’m covered under the ACA.” These people know nothing of their own interests, just the hatred and lies the Conservative propaganda machine has been feeding them.', 'created': '2024-11-12 18:37:49', 'submission_id': '1gpn6ue'}
{'comment': 'It would have helped if Harris and her surrogates were hammering away at that message.', 'created': '2024-11-12 18:06:52', 'submission_id': '1gpn6ue'}
{'comment': 'Jfc thank you. The decades of propaganda and disinformation doomed Democrats from the start.', 'created': '2024-11-12 18:49:53', 'submission_id': '1gpn6ue'}
{'comment': 'You are 100% correct. The RW propaganda machine is very strong and effective. That’s it. \nAny other analysis without that context is useless.\n\nBut what I find discouraging is- how does the left combat that? The RW machine is scientifically crafted, working at full speed, and dominates the social discourse and ideological capture. What can be done to shift that ?', 'created': '2024-11-12 18:04:12', 'submission_id': '1gpn6ue'}
{'comment': 'Every traditional media/publication that discounts the impact the mass media played on the election in influencing voters not focusing on disinformation and misinformation is merely absolving themselves for their contribution to the outcome. All of these journals, channels, commentators, all of them, should be disregarded for a good, long while.\n\nAnd "wokeism" not being a contributor to the outcome? Are we just going to casually ignore the anti-trans "Harris is for they/them, Trump is for you" ad swung the election roughly 2.7% points in favor of Trump? Concerns about transgender issues barely made a blip on Harris\' overall agenda, but the Republicans made a strawman out of it and turned it into an issue to campaign on.', 'created': '2024-11-12 19:05:46', 'submission_id': '1gpn6ue'}
{'comment': 'Same thing with those ‘concerned’ about immigration as a top issue. They voted for a person that literally stopped a bill that would have helped because of politics and believe he’s the guys to fix it.', 'created': '2024-11-12 19:25:03', 'submission_id': '1gpn6ue'}
{'comment': 'Thank you! So tired of this nonsense.', 'created': '2024-11-12 18:00:30', 'submission_id': '1gpn6ue'}
{'comment': 'Thank you!', 'created': '2024-11-12 18:56:41', 'submission_id': '1gpn6ue'}
{'comment': 'Most people don’t understand the economy, or even their own personal budgets.\n\nI spoke with a friend whose income has increased by 30% since 2020 but they are upset about the price of eggs.\n\nI’d pay $20 per dozen of eggs if it meant I got a 5% pay increase.', 'created': '2024-11-12 17:59:11', 'submission_id': '1gpn6ue'}
{'comment': 'The economy is shit for people making $15 an hour', 'created': '2024-11-12 19:35:30', 'submission_id': '1gpn6ue'}
{'comment': 'The reality is, prices of goods has risen far beyond what peoples wages have. \xa0The extent of most peoples economic understanding is their paycheck and the cost to live. \xa0', 'created': '2024-11-12 17:31:06', 'submission_id': '1gpn6ue'}
{'comment': 'I absolutely agree, but people blame high prices on the incumbent every time. I believe if you dig deeper, the real problem is ignorance.', 'created': '2024-11-12 18:37:10', 'submission_id': '1gpn6ue'}
{'comment': 'Ahh yes, let us sane wash the experience of these people because MSDNC says the economy is great:\n\nhttps://thehill.com/homenews/administration/4363103-homelessness-sours-highest-recorded-level/amp/', 'created': '2024-11-12 19:33:55', 'submission_id': '1gpn6ue'}
{'comment': 'Agreed though I would put it a bit differently - disinformation and misinformation thanks to various kinds of well funded right wing media - but the effect is the same. Ignorance of facts and eagerness to believe lies.', 'created': '2024-11-12 18:34:57', 'submission_id': '1gpn6ue'}
{'comment': 'With all due respect, people’s perception is their reality. They are ignorant about the facts of economics and inflation so they blame their higher grocery prices on the incumbent. It shows the same results across the world.', 'created': '2024-11-12 18:33:38', 'submission_id': '1gpn6ue'}
{'comment': 'I admit that I am torn between hoping he doesn’t do too much damage and hoping he fucks everything up so people can see what they voted for.', 'created': '2024-11-13 03:44:43', 'submission_id': '1gpn6ue'}
{'comment': 'The thing is, if they abandoned social conservatism, they’d also have to drop a good bit of their economic conservatism. Once you start having empathy for people, you realize that government does have a basic duty to give them a helping hand, even if you don’t go as far as to support economic liberalism. This was what the old GOP under leaders like Nelson Rockefeller and President Eisenhower believed.', 'created': '2024-11-12 17:04:35', 'submission_id': '1gpn6ue'}
{'comment': 'If they abandoned social conservatism they wouldn’t be Republicans. That party hasn’t been anywhere close to liberal on social policy in 60 years at least. That’s just asking them to be an entirely different party.', 'created': '2024-11-12 20:51:22', 'submission_id': '1gpn6ue'}
{'comment': None, 'created': '2024-11-12 17:07:24', 'submission_id': '1gpn6ue'}
{'comment': 'That really depends on what social issues you are talking about. \n\nA majority of Americans want fewer immigrations, don’t support most transgender rights (outside of equal employment), and believe the country is “too soft” on crime. \n\nIf you mean gay marriage, abortion, and weed, then yes, dems are the party of the majority absolutely.', 'created': '2024-11-12 17:28:56', 'submission_id': '1gpn6ue'}
{'comment': 'My next door neighbor put an in ground pool in this summer. My neighbor across the street bought a condo at a lake this summer. They both think the economy is bad.', 'created': '2024-11-12 20:35:33', 'submission_id': '1gpn6ue'}
{'comment': 'I agree that there is ignorance, but Barack Obama was black and he won. Hillary Clinton won the popular vote. If we just look for simple answers and take the wrong lessons away, we’re doomed again. If every incumbent across the world lost in 202, doesn’t that signify something', 'created': '2024-11-12 18:30:56', 'submission_id': '1gpn6ue'}
{'comment': 'They forget that you couldn’t buy toilet paper.', 'created': '2024-11-12 18:44:41', 'submission_id': '1gpn6ue'}
{'comment': "It might have helped. I can't think of a better way to get to the maga audience. And you're right. It would have to be live and unedited.\n\nOur candidate has to stand in boiling water for an interview about real substance. Theirs gets to sway to Ave Maria for 39 minutes. Sounds fair.", 'created': '2024-11-12 17:42:50', 'submission_id': '1gpn6ue'}
{'comment': 'But voters did not switch from voting Biden in 2020 to Trump in 2024; Trump received about the same amount of votes. Kamala received 10 million LESS votes. If their votes were motivated by the economy, they would switch parties not sit out of the vote.', 'created': '2024-11-12 18:01:57', 'submission_id': '1gpn6ue'}
{'comment': 'Thank you! So people around here are smugly looking down on people who just want to be able to survive. How the hell can you lose and be smug.', 'created': '2024-11-12 21:26:37', 'submission_id': '1gpn6ue'}
{'comment': 'But when voters were asked after the fact, very few listed those issues as their first reason to vote for Trump.', 'created': '2024-11-12 18:34:26', 'submission_id': '1gpn6ue'}
{'comment': 'It’s a saying made famous in Bill Clinton’s election by James Carville, a Democratic strategist.', 'created': '2024-11-12 18:35:48', 'submission_id': '1gpn6ue'}
{'comment': 'This is a famous saying by a Democratic strategist. He’s not saying the economy is bad. He’s just saying that’s what the people think when voting.', 'created': '2024-11-12 18:51:30', 'submission_id': '1gpn6ue'}
{'comment': 'We are our own worst enemy. We are fighting while they’re goose stepping right over us to the Fourth Reich.', 'created': '2024-11-12 22:29:49', 'submission_id': '1gpn6ue'}
{'comment': 'With all due respect, it’s people’s perception that is their reality. They were paying higher prices at the grocery store still so to them they were struggling financially, and that meant the economy was bad. There’s a lot of disinformation and ignorance out there.', 'created': '2024-11-12 18:29:16', 'submission_id': '1gpn6ue'}
{'comment': 'YES exactly', 'created': '2024-11-12 18:29:27', 'submission_id': '1gpn6ue'}
{'comment': 'With all due respect, I don’t think it’s simplified when it shows that for the first time in 120 years, all incumbents were kicked out', 'created': '2024-11-12 18:30:03', 'submission_id': '1gpn6ue'}
{'comment': 'But when you look at the fact that incumbents all around the world lost, doesn’t that tell you something? And most voters,when questioned, said it was the economy (or more correctly, their perception of the economy) that caused them to vote the way they did.', 'created': '2024-11-12 21:35:46', 'submission_id': '1gpn6ue'}
{'comment': 'Yes, but when you look at the results from the elections all over the world where incumbents lost and most voters after the fact, say it was based on the economy, then it looks like it was the economy (or their perception of the economy, which is really based on high prices) The other candidates running weren’t black or women or entering the election too late. I do agree that those issues affected the vote though. I just think the economy was the driving factor.', 'created': '2024-11-12 21:34:37', 'submission_id': '1gpn6ue'}
{'comment': 'It is and I couldn’t edit my post to clarify that even though the economy is doing well, it’s the perception by people that it’s not because prices are high.', 'created': '2024-11-12 21:32:42', 'submission_id': '1gpn6ue'}
{'comment': 'Absolutely 100%. We spent a lot of time talking about how bad Trump was - and he was - but they didn’t care. The people voting for him literally did not care how awful he was. I feel like we really need to dumb down our message. I saw a list of the supposedly horrible things that happened under Biden from some right wing nut job. But I didn’t see many accomplishments that Biden Harris put out themselves.', 'created': '2024-11-12 21:32:13', 'submission_id': '1gpn6ue'}
{'comment': 'I agree. I tried to edit my comment to clarify, but I couldn’t. But perception is reality for everyone. And it is really high prices. That’s what many people mean when they say “the economy.”', 'created': '2024-11-12 22:34:31', 'submission_id': '1gpn6ue'}
{'comment': 'Did you read the article? Every incumbent in almost every race for the first time in 100 plus years was defeated and voters all said the same thing - it was the economy. I understand that you’re saying - that they’re not going to admit that it was racism, but most of the other losing candidates were black or women. The incumbents always get punished when voters perceive the economy is bad.\n\nHillary is a woman and she won the popular vote. Barack Obama was black and he won twice. We have to really look at ourselves hard and not just default to racism or misogyny.', 'created': '2024-11-12 22:33:15', 'submission_id': '1gpn6ue'}
{'comment': 'I think this article does a good job by showing the result across 10 different countries. It’s always the economy. And frankly, it’s not really the economy, but rather people‘s perceptions of it. Our economy was doing great, but people were paying higher prices at the grocery store and that’s all they could see.', 'created': '2024-11-12 18:32:40', 'submission_id': '1gpn6ue'}
{'comment': 'youre repeating rwm lies. \n\neach of those things you mentioned were done at the ground level by libraries, schools, & sporting bodies. by civic organizations.\n\nthe problem was magats constantly harrassing, attacking & humiliating ppl that looked or acted different than them.\n\nwhat dems *were* involved in was in support of the constitution that gives protections & basic human rights to everyone regardless of who they are.', 'created': '2024-11-12 18:32:41', 'submission_id': '1gpn6ue'}
{'comment': 'What was she supposed to say specifically to that Democratic? What did Trump say to that demographic?', 'created': '2024-11-12 18:34:58', 'submission_id': '1gpn6ue'}
{'comment': 'I agree, but people‘s perception is their reality.', 'created': '2024-11-12 18:31:27', 'submission_id': '1gpn6ue'}
{'comment': 'Homelessness rose to record levels:\n\nhttps://thehill.com/homenews/administration/4363103-homelessness-sours-highest-recorded-level/amp/', 'created': '2024-11-12 19:37:18', 'submission_id': '1gpn6ue'}
{'comment': 'Maybe he’s a misogynist', 'created': '2024-11-12 17:52:42', 'submission_id': '1gpn6ue'}
{'comment': 'I always get “well, both sides are bad” when you start helping with facts and reasonable responses….. always.', 'created': '2024-11-12 22:59:53', 'submission_id': '1gpn6ue'}
{'comment': "That's a head scratcher right there.", 'created': '2024-11-13 04:46:35', 'submission_id': '1gpn6ue'}
{'comment': "Misogyny. That's all that is.", 'created': '2024-11-12 20:15:45', 'submission_id': '1gpn6ue'}
{'comment': "Oh yippee! Portends the second openings of all of Trump's disastrous, bankrupt businesses!!", 'created': '2024-11-13 00:00:36', 'submission_id': '1gpn6ue'}
{'comment': 'In my 65 years, I have never once heard voters say this before an election- "Boy, the economy is great, we are doing great, everyone is doing great"...People have bitched about not having enough money for eons.', 'created': '2024-11-13 02:34:46', 'submission_id': '1gpn6ue'}
{'comment': 'Contract clause is a real thing', 'created': '2024-11-12 18:43:21', 'submission_id': '1gpn6ue'}
{'comment': "I think the only way to get through disinformation bubbles is to make such a big, direct, impact that people are relying on the facts before them, rather than what they read. At least until credibility is established.\n\nLike if you implement medicare for all, and people see their pay check go up by the amount of insurance they're not paying any more, that's hard to deny. If you implement universal school lunches and all of a sudden they're not giving their kid lunch money, that's hard to deny. If you send them a check, that's hard to deny. If you hire them, or their family or neighbors for a huge federal infrastructure push, that's hard to deny.\n\nWe can't expect voters to become policy wonks. We can't pass some things aroudn the edges and expect them to trust and believe that the long term cumulative affects are in their interest. You need to deliver big and dramatic. Once you've got that credibility you can keep them on the hook with the littler stuff.\n\nIf my dumbass cousin gets free healthcare and a better paying job from Biden, he'll believe him when he says the CHIPS act is bringing back US manufacturing. But right now that's just not gonna pierce the bubble.", 'created': '2024-11-12 22:59:49', 'submission_id': '1gpn6ue'}
{'comment': 'Seriously. Gas prices are so low. Also, egg prices have nothing to do with the economy but with avian flu. But people voted on wanting cheap fast food.', 'created': '2024-11-12 20:04:58', 'submission_id': '1gpn6ue'}
{'comment': 'Exactly. Said this in another post: the economy is booming right now, and has been incredibly strong for over a year under Biden, maybe more. The fact that groceries are 35-50% higher than they were 5 years ago means zilch in the grand scheme of how the health of the economy is figured.', 'created': '2024-11-12 20:35:27', 'submission_id': '1gpn6ue'}
{'comment': "felon47 lied about the economy better than the Biden admin and Harris spoke the truth about the economy. And felon47 knew his base wouldn't actually read.", 'created': '2024-11-12 21:14:16', 'submission_id': '1gpn6ue'}
{'comment': 'And most media outlets continued to echo this propaganda instead of actually reporting the facts. They also deserve a lot of the blame - conservative & liberal media alike. Even NPR parroted a bunch of this propaganda', 'created': '2024-11-13 04:47:14', 'submission_id': '1gpn6ue'}
{'comment': "We have the best economy in the world. And then there's corporate greed and corporate manipulation.", 'created': '2024-11-12 21:14:46', 'submission_id': '1gpn6ue'}
{'comment': 'Right, how do you expect someone who\'s struggling day-to-day to get on board with "the economy is doin\' great!" when it\'s definitely not doin\' great based on their lived experience? \n\nLiterally no one but economists and rich folks care about how well we\'re doing on a macroeconomic level.', 'created': '2024-11-13 15:19:55', 'submission_id': '1gpn6ue'}
{'comment': 'communication is the biggest problem. when all the media is owned by billionaires. And billionaire PACs can fill the rest with complete and utter lies.\n\nHere in MI every commercial for the last couple weeks was a political one. 80% were from billionaire PACs. one that was in almost every commercial break was literally screaming that dems were responsible for afganistan, crime was skyrocketing, millions of illegals were killing people, inflation was skyrocketing, and country was shit. literally easily proved BS. people are stupid.', 'created': '2024-11-12 17:28:41', 'submission_id': '1gpn6ue'}
{'comment': 'Jon Stewart covered this last night - interesting for sure', 'created': '2024-11-12 19:12:19', 'submission_id': '1gpn6ue'}
{'comment': 'Yep. Misogyny, as well as racism, keeps people from hearing her messages. \n\nBecause all they see is gender and / or color of skin.', 'created': '2024-11-12 17:16:56', 'submission_id': '1gpn6ue'}
{'comment': '>Or, since so many times I’ve heard from trumpers that she’s “incoherent” (big word for Elmo) or that she can’t put a sentence together\n\nTrue trumpers probably have never heard Harris say much. They are just echoing what Trump says about her.', 'created': '2024-11-12 22:23:08', 'submission_id': '1gpn6ue'}
{'comment': ">Her message didn't focus on economic inequality.\n\nMost certainly did talk about how many people were struggling. \n\nYou need to quit listening to conservative propaganda.", 'created': '2024-11-12 17:03:34', 'submission_id': '1gpn6ue'}
{'comment': "So you missed her plans to relieve home costs for new homeowners, relief for families with children, to go after price gouging, etc.?\n\nShe had a plan... I didn't love it, but it was better than collapsing the economy, rolling back protections, deporting millions, and isolating us from our trade and strategic partners.\n\nCause I heard that at every rally I saw her in. In the debate and on her policy page.", 'created': '2024-11-12 16:51:55', 'submission_id': '1gpn6ue'}
{'comment': "The fact that you're saying this just shows that the original commenter was correct. You missed the message of price gouging controls, tax credits, and new homeowner credits. It's probably not even your fault.", 'created': '2024-11-12 16:54:39', 'submission_id': '1gpn6ue'}
{'comment': 'Exactly. Inflation is only a problem for some people because too many other people keep buying things at higher prices.', 'created': '2024-11-12 17:47:21', 'submission_id': '1gpn6ue'}
{'comment': 'Yes...thanks...what was the Jewish vote...65% or so?', 'created': '2024-11-12 18:19:37', 'submission_id': '1gpn6ue'}
{'comment': "It would have moved the needle a point probably, but when the deck is stacked so far against one side, it's hard to imagine that better messaging would have been a panacea. Especially with how checked out and ill-informed voters are.", 'created': '2024-11-12 18:37:47', 'submission_id': '1gpn6ue'}
{'comment': 'That is the question that requires our collective attention. It may be that folks under the spell have to feel the pain. What sucks is that there will be collateral damage. \n\nI’ve been researching and like many things, this is not new - eventually the terrible policies will fail and people will react accordingly. \n\nI know what we shouldn’t do: pretend we are all operating from the same set of ideals and perceive reality the same. We shouldn’t be doing analysis that assumes the electorate isn’t influenced by propaganda. \n\nOne thing I’m seeing is people just straight up denying oxygen to MAGA. Let them find out. Cut them off. You can only tell someone not to touch the hot stove so many times. Eventually they just may need to get burned to get it. Once enough get burned, then that’s when the sane side has to be ready.', 'created': '2024-11-12 19:08:39', 'submission_id': '1gpn6ue'}
{'comment': "I know it's kind of crazy. My dad who votes red for the economy and posts about libtards is terrible with money, when he gets money he spends it on expensive toys that end up sitting in a garage or closet and then he's unprepared for hard times.", 'created': '2024-11-12 19:46:01', 'submission_id': '1gpn6ue'}
{'comment': "Yes. It is. Even worse for those making half that. Will more tariffs make $15 an hour less shitty? Point is the economy is doing better every day, and we didn't crash during COVID.\n\n[KH's plan for low income earners.](https://kamalaharris.com/wp-content/uploads/2024/09/Policy_Book_Economic-Opportunity.pdf)\n\n[Trump's non-plan for low income earners.](https://www.propublica.org/article/donald-trump-agenda-working-class)\n\nLets not forget, [Project 2025](https://www.propublica.org/article/inside-project-2025-secret-training-videos-trump-election).", 'created': '2024-11-12 19:47:31', 'submission_id': '1gpn6ue'}
{'comment': 'And the other fact is Republicans have actively and intentionally made that worse every single time they’ve had power for 60 years.\n\nI know why they won. It does not change the fact that supporting them for that reason is fucking stupid, full stop.', 'created': '2024-11-12 17:59:06', 'submission_id': '1gpn6ue'}
{'comment': '\\*and the price of housing', 'created': '2024-11-12 17:59:48', 'submission_id': '1gpn6ue'}
{'comment': 'These are literally the only 2 factors that matter in the real world to every day folks. Who tf cares if "the economy is doing well" if you\'re still struggling because of these things? Who\'s it doing well for?', 'created': '2024-11-13 15:24:49', 'submission_id': '1gpn6ue'}
{'comment': 'What’s weird is that the Latinos believe the lie that the economy is bad and he will fix it but they don’t believe him when he says he’s going to deport everyone that’s not a US citizen.\n\nTrump has named his Border Czar. Trump’s words. This morning he was on the news talking about deporting illegal immigrants and the man interviewing him asked if they could do that without ripping families apart since someone in the family might be citizens. The Czar said sure we can. We can deport them together.', 'created': '2024-11-12 18:46:03', 'submission_id': '1gpn6ue'}
{'comment': '100%. They are in for a rude awakening when the president elect doesn’t “fix” anything for them.', 'created': '2024-11-12 19:22:02', 'submission_id': '1gpn6ue'}
{'comment': 'Wow it’s almost like you can promote two things at the same time', 'created': '2024-11-12 18:59:58', 'submission_id': '1gpn6ue'}
{'comment': 'Right, but don’t you think that Obama’s election in a lot of ways is what started the downward spiral?\n\nThis all started with Palin and the tea party. \n\nShe is the matriarch of Maga.', 'created': '2024-11-12 18:35:51', 'submission_id': '1gpn6ue'}
{'comment': 'Well there\'s always next time. Starting with the next mid-term, the policy should be "what would Mayor Pete do?" . Get to that level of skill and smoothness when discussing issues. Get comfortable sitting in Fox or ONN or whatever new cesspool channel the mainstream folks are watching these days. \n\nBeat them at their game.', 'created': '2024-11-12 18:03:41', 'submission_id': '1gpn6ue'}
{'comment': 'Hard disagree--people who are frustrated and apathetic sit out.', 'created': '2024-11-13 02:25:20', 'submission_id': '1gpn6ue'}
{'comment': "Truly odd. When I was in Dallas, Colin Allred even had an ad saying he wasn't for boy in girl's sports. I was thinking... why is this such a thing?", 'created': '2024-11-12 18:40:44', 'submission_id': '1gpn6ue'}
{'comment': 'While we have always been guilty of the infighting, I truly don’t think it is as bad as social media would have us believe. Or rather we are allowing what we see on social media to be the reason for the infighting. People put wayyyy too much stock in comments they see online in an age where bots and shills have overtaken social media. It’s so stupid that it scares me.', 'created': '2024-11-12 23:14:33', 'submission_id': '1gpn6ue'}
{'comment': 'There are also many people opining that "the economy" voters really had other issues with Harris, such as her race and gender. For example, it does seem strange that the so-called “inflation” voters apparently ignored that Trump’s tariffs, farm worker deportation and other policies will\xa0increase\xa0inflation from the current 2.4%.\xa0Likewise, "the economy" currently has historic low unemployment, historic high job creation, one record high stock market closing after another, and consumers still purchasing at a healthy clip (probably obvious given those stock prices). At best, I think it will take more time and analysis before a consensus is reached on the reason for the election results.', 'created': '2024-11-12 23:33:45', 'submission_id': '1gpn6ue'}
{'comment': 'I was just emphasizing the point. All the good it does. Stupid is not a fixable thing.', 'created': '2024-11-12 22:05:19', 'submission_id': '1gpn6ue'}
{'comment': 'Because that’s all they know, they think the economy is the price of groceries', 'created': '2024-11-12 18:50:34', 'submission_id': '1gpn6ue'}
{'comment': 'But all the dumbasses care about are the price of eggs.', 'created': '2024-11-12 18:53:24', 'submission_id': '1gpn6ue'}
{'comment': 'Harris didn’t say she opposed publicly-funded transgender surgeries for prisoners when asked. Do you think that helps us with the general public? The answer should’ve been easy.', 'created': '2024-11-12 19:22:23', 'submission_id': '1gpn6ue'}
{'comment': 'Unfortunately misogyny is one of the reasons why I think Harris lost and it’s also why I think he voted for Trump. I was very shocked when he said he voted for Trump, but on the plus side I had a coworker who was able to vote in his first election this year as he just became a citizen a few years back who voted for Harris. He said his wife swayed him last minute and told him it’s integrity that matters not policy. So, while we didn’t win them all there’s still hope.', 'created': '2024-11-12 17:57:36', 'submission_id': '1gpn6ue'}
{'comment': 'Yeah, this. I feel like all these election dissections are refusing to address the biggest and most obvious elephant in the room. We are even more sexist than we are racist, and boy are we racist.', 'created': '2024-11-12 17:55:50', 'submission_id': '1gpn6ue'}
{'comment': 'Or racist or both.', 'created': '2024-11-12 19:24:25', 'submission_id': '1gpn6ue'}
{'comment': "Yeah that's it.", 'created': '2024-11-12 20:18:14', 'submission_id': '1gpn6ue'}
{'comment': 'And now we’ll likely get a President who’ll make prices and inflation surge under his policies. But don’t worry, they’ll find a way to blame Democrats for Trump’s policies, too', 'created': '2024-11-12 22:07:52', 'submission_id': '1gpn6ue'}
{'comment': 'It’s not conservative media- there are dozens of articles just like this one: \n\nhttps://www.nytimes.com/2024/11/09/us/politics/harris-trump-economy.html?unlocked_article_code=1.Yk4.AJA2.q2MzA_mpGesD&smid=url-share', 'created': '2024-11-12 18:03:40', 'submission_id': '1gpn6ue'}
{'comment': 'I think this is why bringing some saying from the 90s "It\'s the economy, stupid" makes zero sense. She almost always was campaigning on her economic plans. Maybe the messaging didn\'t get through to people because of the segmentation of news and information.\n\nObviously, in 1992 the George Bush economy sucked and Carville wanted the campaign to not stray from that, or on change, or healthcare. People writing stupid headlines like this should know better.', 'created': '2024-11-12 17:45:16', 'submission_id': '1gpn6ue'}
{'comment': 'But what have you done for me lately? Thats a big part of what lost her the election. People fell hard for the look the "She been in office 4 years an did nothing/made things worse" messaging. An also yes america is still very racist and sexist.', 'created': '2024-11-12 18:26:59', 'submission_id': '1gpn6ue'}
{'comment': 'https://www.nytimes.com/2024/11/09/us/politics/harris-trump-economy.html?unlocked_article_code=1.Yk4.AJA2.q2MzA_mpGesD&smid=url-share', 'created': '2024-11-12 18:05:45', 'submission_id': '1gpn6ue'}
{'comment': '79%', 'created': '2024-11-12 18:20:16', 'submission_id': '1gpn6ue'}
{'comment': 'Well I think it’s pretty clear that wasn’t persuasive enough to snipe these voters away from a guy who said the game is rigged against them and he was going to overhaul the corrupt system.', 'created': '2024-11-12 20:06:33', 'submission_id': '1gpn6ue'}
{'comment': 'I don’t disagree, though it apparently doesn’t matter to a lot of people. \xa0', 'created': '2024-11-12 21:30:39', 'submission_id': '1gpn6ue'}
{'comment': 'I had just included it in cost to live, but 100% it’s super important and should be called out specifically.\xa0', 'created': '2024-11-12 21:29:19', 'submission_id': '1gpn6ue'}
{'comment': '100% this is the thinking for a lot of people.\n\nThe two are related, just not to a close enough degree that people make the connection.\xa0\n\n\xa0I firmly believe this was a FAFO election and people who have been unwilling to educate themselves will be in for an education.', 'created': '2024-11-13 15:29:03', 'submission_id': '1gpn6ue'}
{'comment': 'Denying that racism is a problem is just as bad as the problem itself.', 'created': '2024-11-12 18:36:25', 'submission_id': '1gpn6ue'}
{'comment': 'yeah, just more talking points being regurgatated by imbeciles with no critical thinking skills.', 'created': '2024-11-12 18:59:33', 'submission_id': '1gpn6ue'}
{'comment': 'gotcha questions are hard to answer on the spot. even now, i took a second to think about it. she would have come to the right conclusion. \n\nppl are just dumb to prioritize her hesitation in that moment over the years of common sense public service under her belt.\n\nbut they pick a reality tv personality, with terrible track record in business & government because he says he hates ppl that the constitution says are protected from discrimination?\n\ni get you but its crazy.', 'created': '2024-11-12 19:36:38', 'submission_id': '1gpn6ue'}
{'comment': "I know a guy that was anti-Harris. He's a black guy who thinks he's Malcolm X. He repeated the eating dogs and cats thing and wants to propose to his half-Hatian girlfriend. I really don't understand people 🤦🏾\u200d♂️", 'created': '2024-11-12 18:30:00', 'submission_id': '1gpn6ue'}
{'comment': 'One interesting thing about sexism that I am learning, is that it goes hand in hand with homophobia. The more anti-gay and anti-trans people are, the more misogynistic they are as well. The correlation seems to be very strong there. As if they see femininity itself as inferior, while still requiring women to conform to it.', 'created': '2024-11-12 19:08:09', 'submission_id': '1gpn6ue'}
{'comment': 'And?', 'created': '2024-11-12 18:07:48', 'submission_id': '1gpn6ue'}
{'comment': 'Thanks. Added above', 'created': '2024-11-12 18:24:30', 'submission_id': '1gpn6ue'}
{'comment': 'Agreed.', 'created': '2024-11-12 20:23:58', 'submission_id': '1gpn6ue'}
{'comment': "Slightly different subject, but President Andrew Shepherd (Michael Douglas) in *The American President*\n\n> I've known Bob Rumson for years, and I've been operating under the assumption that the reason Bob devotes so much time and energy to shouting at the rain was that he simply didn't get it. Well, I was wrong. Bob's problem isn't that he doesn't get it. Bob's problem is that he can't sell it!\n\n> We have serious problems to solve, and we need serious people to solve them. And whatever your particular problem is, I promise you, Bob Rumson is not the least bit interested in solving it. He is interested in two things and two things only: making you afraid of it and telling you who's to blame for it. That, ladies and gentlemen, is how you win elections. You gather a group of middle-aged, middle-class, middle-income voters who remember with longing an easier time, and you talk to them about family and American values and character. And wave an old photo of the President's girlfriend and you scream about patriotism and you tell them, she's to blame for their lot in life, and you go on television and you call her a whore.\n\nSome really great quotes from that movie. Written by Aaron Sorkin (A Few Good Men, The West Wing, Newsroom, The Trial of the Chicago 7).", 'created': '2024-11-13 02:04:11', 'submission_id': '1gpn6ue'}
{'comment': 'Gender bias is a huge issue and it is made more confusing because people will never admit it and say stuff like the economy when by any measure the economy is improved and improving.', 'created': '2024-11-12 19:11:17', 'submission_id': '1gpn6ue'}
{'comment': 'I know a black fella that said no way to Harris, she slept her way to the top🤨', 'created': '2024-11-13 04:42:46', 'submission_id': '1gpn6ue'}
{'comment': 'I hope if he does propose to his gf that she rejects him because huh?', 'created': '2024-11-12 19:24:51', 'submission_id': '1gpn6ue'}
{'comment': 'He probably watches that Candace skank. A black guy on my team at work was preaching the same bullshit.', 'created': '2024-11-12 20:17:27', 'submission_id': '1gpn6ue'}
{'comment': 'Did his GF look at him like he’s a jackass. Because he sounds like one! I don’t think I’d want to marry someone who’d believe that BS that was said against my people!', 'created': '2024-11-14 16:24:45', 'submission_id': '1gpn6ue'}
{'comment': 'And look at the replies in this thread lol. They are literally telling poor people that their struggle isn’t real because the stock market is at all time highs and tons of jobs were created. \n\nTrump told them it was and he told them who is to blame. It’s all bullshit and you and I know that, but face it - most people don’t. He told them the game is rigged against them by establishment politicians who piss away billions of dollars on illegal immigration and sex changes in prison. \n\nThat narrative went pretty much unopposed, and in fact, Harris said she couldn’t think of one thing she would have done differently than her wildly unpopular administration. \n\nMany of the demographics that shifted to Trump once supported Bernie Sanders. People are smart enough to know the game is rigged and they wanted to vote for somebody who said they were going to change it.', 'created': '2024-11-12 19:25:53', 'submission_id': '1gpn6ue'}
{'comment': "People keep saying the economy is stronger than most in the world and inflation is down. But this is not visible to those at the bottom of the scale, working class folks without college degrees. You hear that incomes have risen to keep pace with the inflation, but for them they haven't. Inflation may be down but prices are still elevated and they feel the squeeze more than most.", 'created': '2024-11-12 19:39:46', 'submission_id': '1gpn6ue'}
{'comment': 'I did meet one that said he would vote for Trump but he also had a mental illness. All of my black friends were for Kamala Harris. My whole family was all in on Kamala.', 'created': '2024-11-13 11:27:34', 'submission_id': '1gpn6ue'}
{'comment': "Yeah, he's repeated a number of mano-o-sphere things in the past, and he always looks sad and angry, so I fully expect this relationship to fail.", 'created': '2024-11-12 19:29:20', 'submission_id': '1gpn6ue'}
{'comment': 'These are the very people who will suffer most under Trump trade wars.\n\nRest assured Trump nor GOP will lose a moment of sleep over their impending poverty.', 'created': '2024-11-12 22:23:30', 'submission_id': '1gpn6ue'}
{'comment': 'People with college degrees feel the same way. Where have you been? \n\nPeople who think they understand the economy because it rained one day and the price of eggs went down are the ones who googled “what is a tarrif” the day after the election (the #1 google search that day) \n\nMost information is presented to Americans at a middle school reading level. \n\nYou just have to WANT to understand. \n\nThese people WANT facts to not be true because then they’d have to address their inadequacy and bigotry \n\n(Biden’s economic Gains have been astounding in the wake of a global pandemic…but if that were true and it wasn’t the economy stupid then they’d have to admit they didn’t vote for Harris only because she was a woman of color. They want their free passes back because without them they have face the consequences of their own laziness and mediocrity….and they really hate facts. Like white uneducated Christian Americans from poor red states wo college degrees (despite being the least oppressed and most pampered humans on the planet) are the only people using social welfare programs at disproportionately high rates.). \n\nPeople are WILLFULLY ignorant because facing reality makes them look bad.', 'created': '2024-11-13 03:15:27', 'submission_id': '1gpn6ue'}
{'comment': "Actually the people at the very bottom (minimum wage workers) have seen the largest wage increases over the past few years, just not enough to be a wage they can live on and the increases haven't kept pace with inflation, so they're still behind.\n\nIt's really the people in the middle who have had stagnant wages for the past 20 years. I'm looking for a (mid-level) job now, and the roles I'm applying for all pay exactly the same as they did 20 years ago. My husband hasn't had a raise or even a cost of living adjustment in 3 years. As companies downsize and automate, jobs are eliminated and the remaining employees are given more work for the same pay and less support/resources.", 'created': '2024-11-13 12:08:07', 'submission_id': '1gpn6ue'}
{'comment': 'I hope so, she’d dodge a bullet!', 'created': '2024-11-14 16:26:33', 'submission_id': '1gpn6ue'}
{'comment': 'Biden, despite his flaws, is a fundamentally decent American and human being. And he’s been an objectively pretty good president. He inherited a shit storm, and quietly did his best to take the helm and correct course.\n\nHowever, right now, in this two month window-of-opportunity, he needs to either grow some balls or STFU. Now is not the time for peace.\n\nUnless we do want to roll over and go back to having a king.', 'created': '2024-11-12 17:00:43', 'submission_id': '1gpn6a4'}
{'comment': 'Joe Biden consistently has far too much faith in the average voter', 'created': '2024-11-12 16:51:45', 'submission_id': '1gpn6a4'}
{'comment': 'How the hell can we? We see people who let a rapist run the country. A racist, a misogynist. Electing him, to us, for any reason, feels like they’re saying “good! Fuck women, minorities, and the lgbtq community. We’re gonna persecute and terrorize them until bodies pile up.” But what’s their response to our anger and fear? “You’re such a snowflake. Can’t you take a joke?”\n\nEdit: “and won’t you come over for Turkey?” You want to be friendly now? Oh you pos. Seriously, if anyone has found ways to make peace… I am all ears. But the racism? Sexism? Homophobia? Transphobia? That shit is unacceptable.', 'created': '2024-11-12 16:35:12', 'submission_id': '1gpn6a4'}
{'comment': 'I\'m not going to "bring down the temperature" with how bad their language and policies are looking.', 'created': '2024-11-12 16:55:36', 'submission_id': '1gpn6a4'}
{'comment': "I wish Biden would act with impunity for the remainder of his term.\xa0\xa0\n\n\n\xa0We need our version of project 2025. There's so much anger and energy to be harnessed right now but absolutely zero guidance from the people at the top.", 'created': '2024-11-12 17:07:46', 'submission_id': '1gpn6a4'}
{'comment': 'No. Fuck that. I’m tired of taking the high road.', 'created': '2024-11-12 17:14:35', 'submission_id': '1gpn6a4'}
{'comment': 'Time to fight back legally, Old Man. You know this shit ain’t right. We know this shit ain’t right. *Do Something…*\n\nhttps://www.change.org/p/demand-an-investigation-and-recount-into-the-2024-us-election', 'created': '2024-11-12 17:11:44', 'submission_id': '1gpn6a4'}
{'comment': "It's not the Americans that can bring down the temperature, when foreign countries like Russia spend tons of effort turning up the temperature with constant division", 'created': '2024-11-12 17:23:38', 'submission_id': '1gpn6a4'}
{'comment': 'We absolutely do not need to bring down the temperature. We need to fight like hell for democracy and the environment.', 'created': '2024-11-12 17:20:17', 'submission_id': '1gpn6a4'}
{'comment': 'Such a weak democrat suggestion. THATS WHY WE LOSE', 'created': '2024-11-12 17:10:41', 'submission_id': '1gpn6a4'}
{'comment': "The MAGA fascist movement and the felon Trump are to blame for the division 100%. We're entering an extremely dangerous 4 years that might result in something like Putin's Russia -- now is not the time to lower the temperature.\n\n \nThe message of the next 4 years needs to be simple: betrayal. Trump made so many insane promises to win that he will betray his voters again and again -- we must work to get people to recognize that.", 'created': '2024-11-12 16:34:11', 'submission_id': '1gpn6a4'}
{'comment': 'Respectfully Joe, no I will not do that. Why would anyone on the left do this when the other side acts like it does? If anything we need to fight back harder.', 'created': '2024-11-12 17:28:55', 'submission_id': '1gpn6a4'}
{'comment': 'It’ll be a cold day in hell when Americans bring down the temperature.', 'created': '2024-11-12 17:44:16', 'submission_id': '1gpn6a4'}
{'comment': 'Bring down the temperature? Fuck that shit. Bringing down the temperature on our side is what has lead to this bullshit.', 'created': '2024-11-12 18:10:19', 'submission_id': '1gpn6a4'}
{'comment': 'Somehow we must learn how to deal with heat, the attention Trump acquires by being a villian or by doing the outlandish and unseemly...we\'ve not done well so far in managing Trump in the press. We amplify his presence by paying so much attention to his Wrestling Heel persona.\n\nhttps://www.theatlantic.com/politics/archive/2016/03/trump-politics-and-professional-wrestling/473652/\n\nExcerpts:\n\n...we can expect the next four years to be the same stream of unhinged vitriol and lies aimed at immigrants, journalists, independent women, LGBTQ people, racial minorities or anyone else belonging to Trump\'s "enemies within" category. That\'s because MAGA is a fascist movement, and fascism needs to offer up a constant stream of imaginary "enemies" to their supporters, to keep them paranoid and enthralled. \n\nThe fascist leader must construct scary enemies for the followers to fear because the only way he achieves power is to promise he alone can eradicate the threat. \n\nThat\'s why Democrats lamely asking people to turn down the temperature won\'t work, though it can, unfortunately, give cover to fascist leaders by falsely seeding hope they could be coaxed to see reason. Trump and other MAGA leaders want power, full stop. The way they get power is to keep millions of people spun up on outrageous lies about Haitians, trans people, Taylor Swift or whoever gets assigned the Bogeyman of the Day.', 'created': '2024-11-12 16:32:45', 'submission_id': '1gpn6a4'}
{'comment': "He's completely clueless, he proudly announced other day in speach that we had a peaceful transfer of power.\n\nEveryone else is saying, only because Trump didn't freaking lose again.", 'created': '2024-11-12 18:22:45', 'submission_id': '1gpn6a4'}
{'comment': "I get Biden's sentiment but dude needs to read the room. That talk was for like 4 years ago. He needs to spend the rest of his time in office helping with decisive action to fortify guardrails.", 'created': '2024-11-12 18:23:01', 'submission_id': '1gpn6a4'}
{'comment': 'I say bring the temperature all the way up. Give the people what they think they want. Let them have it all.', 'created': '2024-11-12 18:36:03', 'submission_id': '1gpn6a4'}
{'comment': '“It’s gonna be okay.”\n\n“Let’s turn down the temperature.”\n\nGuess they don’t believe Trump is actually a threat to democracy. Fuck ‘em.', 'created': '2024-11-12 19:10:57', 'submission_id': '1gpn6a4'}
{'comment': 'Biden is not being strong on this. We are not the problem.', 'created': '2024-11-12 17:32:47', 'submission_id': '1gpn6a4'}
{'comment': 'You see where turning the other cheek gets you...', 'created': '2024-11-12 18:54:16', 'submission_id': '1gpn6a4'}
{'comment': 'Fuck that shit. Turn it up!💙🇺🇸', 'created': '2024-11-12 19:22:39', 'submission_id': '1gpn6a4'}
{'comment': None, 'created': '2024-11-12 19:29:37', 'submission_id': '1gpn6a4'}
{'comment': '[removed]', 'created': '2024-11-12 17:40:24', 'submission_id': '1gpn6a4'}
{'comment': 'Even when they win, they won’t shut the fuck up.', 'created': '2024-11-12 17:49:24', 'submission_id': '1gpn6a4'}
{'comment': "And this is why Dems will always be losers. Placating, rolling over losers who will sell freedom to buy temporary peace before they realize its a sham. Then that will be gone too. \n\nHey, Joe. Trump's AG is going to try to lock up your whole family before they start on the rest of us. The temperature is already at 100 and it isn't coming down.", 'created': '2024-11-12 16:50:18', 'submission_id': '1gpn6a4'}
{'comment': "The guy who tried to install himself as the first American King, denying reality of an election lost, and who is utterly determined to excuse all of his minions that smashed up the Capitol in his honor does NOT deserve respect or obedience.\n\nA guy who paid a porn star to shut up in 2016 over how he paid her for sex while Melania was pregnant with Barron. A man who inexplicably loves Russia and Putin, a murdering tyrant hellbent on the destruction of the US. A man who insisted that all was well while Americans died by the 100s of 1000s of a virus, that he himself barely survived when injected with a barely tested serum as President.\n\nThis is a stupid country now. Just utterly stupid all around.\n\nThe temperature is high because we just lost America. It's over, baby. That's not temperature. That's reality.", 'created': '2024-11-12 16:51:40', 'submission_id': '1gpn6a4'}
{'comment': "Biden ruined his legacy by allowing Trump to get away with his many crimes and now it's a 50/50 chance that the country will be destroyed because of it.", 'created': '2024-11-12 16:52:45', 'submission_id': '1gpn6a4'}
{'comment': 'The whole Democratic Party needs to realize there is no turning down the temperature when dealing with nazis, which is what the Republican Party has fully embraced.', 'created': '2024-11-12 16:57:01', 'submission_id': '1gpn6a4'}
{'comment': 'no justice, no peace', 'created': '2024-11-12 17:14:09', 'submission_id': '1gpn6a4'}
{'comment': "My parents said Harris' concession speech was divisive ... trigger mode is their only setting.", 'created': '2024-11-12 17:39:36', 'submission_id': '1gpn6a4'}
{'comment': 'Lol... When Obama was all kumbaya about it... it was fine. "When they go low, we go high" etc. \n\nBut then... What did that do? Got them the supreme Court justices they needed to overturn R V Wade.\n\nIt\'s time Democratic politicians woke the fuck up. They lie, they cheat, they steal... And there\'s no consequences for them except winning. \n\nWe simply cannot keep bringing a knife to an AR-15 fight. We cannot continue to meet their hate cult ideology with hugs and kisses. These people are fucking monsters. Their kids are yelling "your body my choice" at grade school girls. Their leaders are buying social media platforms and turning them into Nazi propaganda machines. They want a country that teaches children that Jesus rode a dinosaur and Hitler "was a socialist".\n\nEnough of this shit.\n\nEnough is enough.', 'created': '2024-11-12 17:55:45', 'submission_id': '1gpn6a4'}
{'comment': 'Bring down the temperature? THE DEMOCRATIC PARTY FAILED TO PROTECT US FROM A FASCIST PRESIDENT. HOW THE FUCK CAN WE CALM DOWN?', 'created': '2024-11-12 18:01:15', 'submission_id': '1gpn6a4'}
{'comment': 'These people are acting like classless trash to include my own father, who was laughing about a landslide never mind I’ve got a trans niece', 'created': '2024-11-12 18:11:30', 'submission_id': '1gpn6a4'}
{'comment': 'Whatever DNC did wrong in this election. The Resposiblity for this Criminal Syndicate getting back into power is the Republican party. They have handed our country to Putin and Xi.', 'created': '2024-11-12 18:45:25', 'submission_id': '1gpn6a4'}
{'comment': 'I ant Biden to bring up the temp on his way out.', 'created': '2024-11-12 18:55:28', 'submission_id': '1gpn6a4'}
{'comment': 'No. I’ll be professional when I have to be, cordial when necessary in my private life, but I won’t hesitate to tell any maga complaining the next 4 that this is what was they voted for. Should any of it come to pass, such as prices didn’t go down? People w/ no respect? Your kids IEP is invalidated? Union suspended? Job cut? Nationwide abortion ban?', 'created': '2024-11-12 19:49:34', 'submission_id': '1gpn6a4'}
{'comment': 'Biden is about to peacefully transition this country into fascism. Fuck that.', 'created': '2024-11-13 00:09:21', 'submission_id': '1gpn6a4'}
{'comment': 'He needs to understand what he must do now with immunity. Be the bad man to keep the other bad man away from the door.', 'created': '2024-11-12 17:40:28', 'submission_id': '1gpn6a4'}
{'comment': "Here he is letting you know he won't do a fucking thing before he hands off the reigns to the new king", 'created': '2024-11-12 17:41:24', 'submission_id': '1gpn6a4'}
{'comment': 'Absolutely not \n\nIt’s going to be nothing but demonstrations, protests and riots for four years just like last time', 'created': '2024-11-12 18:54:18', 'submission_id': '1gpn6a4'}
{'comment': 'Republican party is in a rush to introduce America to a dystopian future. If this is what people voted for, let them have it. I take no solace in the fact that we can say "I told you so" When we are all suffering years from now.', 'created': '2024-11-12 19:29:14', 'submission_id': '1gpn6a4'}
{'comment': 'I\'ll just leave this quote right here for posterity: \n\n"That\'s why Democrats lamely asking people to turn down the temperature won\'t work, though it can, unfortunately, give cover to fascist leaders by falsely seeding hope they could be coaxed to see reason."\n\nWe cannot coax them into seeing reason. Hopefully this 4 year stretch will be restricted at the halfway mark of mid terms. Long term fall out is incoming.', 'created': '2024-11-12 19:31:58', 'submission_id': '1gpn6a4'}
{'comment': 'I’m not turning down shit. The high road has not worked out for us and I’m done with it. I’m meeting people where they’re at.', 'created': '2024-11-12 22:43:29', 'submission_id': '1gpn6a4'}
{'comment': 'Yeah, Biden is a few years late', 'created': '2024-11-12 17:02:04', 'submission_id': '1gpn6a4'}
{'comment': "That ship has sailed. Democratic leaders need to recognize that Republicans long ago stopped playing by Robert's Rules. Now it's more like Game of Thrones.", 'created': '2024-11-12 20:06:32', 'submission_id': '1gpn6a4'}
{'comment': "As much as I am thankful for President Biden this is one request, I can't accept nor listen to", 'created': '2024-11-12 20:46:55', 'submission_id': '1gpn6a4'}
{'comment': 'Biden should be looking into voting manipulation and fraud by Elon musk and Russia, the election was stolen and democrats aren’t even challenging the results', 'created': '2024-11-12 23:49:00', 'submission_id': '1gpn6a4'}
{'comment': 'Sorry Joe, nope. Maybe if it was Bush or McCain, but a psychotic madman was just installed as dictator, and his fan base have shown very much, to be just as malajusted and abhorrent as their idol', 'created': '2024-11-13 00:47:36', 'submission_id': '1gpn6a4'}
{'comment': 'That’s rich coming from a lame duck President who could be signing EO after EO to delay the incoming administration but is instead doing nothing. He should stop lecturing and yearn from the past on his own time.', 'created': '2024-11-12 18:10:49', 'submission_id': '1gpn6a4'}
{'comment': 'Well America wants Biden to get off his ass and do something before the tyrant takes office.', 'created': '2024-11-12 18:10:00', 'submission_id': '1gpn6a4'}
{'comment': 'Literally one of the steps to get us to fascism.', 'created': '2024-11-12 17:38:06', 'submission_id': '1gpn6a4'}
{'comment': 'Capitulation incarnate', 'created': '2024-11-12 18:09:03', 'submission_id': '1gpn6a4'}
{'comment': 'MAGA ~~will not~~ *cannot* let that happen\n\nRepublicans cannot win without the reactionaries who are angry about a changing world. I\'ve seen this with my aunts. They used to all vote Democrat (except one) and now they all vote Republican. Not because of fiscal policy or anything like that. But because immigrants and urbanites are moving into their town and buildings and homes are being built on farm land. One of them in particular has told me "I don\'t know why they have to move up *here*" while also being someone who moved to a more rural lake town for the peace and quiet. No self awareness.\n\nBesides, without these folks moving up, the average age of their town would be like 60 and their precious home would become a ghost town.', 'created': '2024-11-12 20:55:26', 'submission_id': '1gpn6a4'}
{'comment': 'And we as democrats/left-leaning voters are helping the GOP tremendously by making sure to infight as much as possible. There is plenty of criticism to be made of our candidates, but we have got to learn to stick together.', 'created': '2024-11-12 22:50:23', 'submission_id': '1gpn6a4'}
{'comment': "sorry Joe it's not time for naps. \n\nwe can't just talk politely and mind what we say while fascism is taking over every lever of governmental power in our country.", 'created': '2024-11-12 18:03:50', 'submission_id': '1gpn6a4'}
{'comment': 'Fuck this.', 'created': '2024-11-13 00:53:30', 'submission_id': '1gpn6a4'}
{'comment': 'Borderline complacent BS', 'created': '2024-11-13 08:48:34', 'submission_id': '1gpn6a4'}
{'comment': 'NOPE. That ship sailed Joe.', 'created': '2024-11-13 17:29:47', 'submission_id': '1gpn6a4'}
{'comment': 'Why should anyone expect the maga party to lower the temperature? They seem pretty much hell bent on going after every imagined enemy in the conservative cinematic universe and they now control all of the levers of power. We are in a pre-ww2 Germany situation and the country chose to hand total control over to the nazi’s.', 'created': '2024-11-13 19:13:10', 'submission_id': '1gpn6a4'}
{'comment': 'This guy sucks', 'created': '2024-11-12 17:01:03', 'submission_id': '1gpn6a4'}
{'comment': 'Biden murdered alot of people by choosing to be decent rather than actually take action against evil', 'created': '2024-11-12 19:56:55', 'submission_id': '1gpn6a4'}
{'comment': 'Old man too hot in office. Asks compatriots to turn down the thermostat.', 'created': '2024-11-13 10:26:41', 'submission_id': '1gpn6a4'}
{'comment': '“But muh EgGs aNd GaS!!!”\n\nBread and circuses. That’s all people care about anymore.', 'created': '2024-11-12 18:01:45', 'submission_id': '1gpn6a4'}
{'comment': 'This is all true, but I think you may have highlighted one of his (and Dems in general) problems. \n\nHe quietly did his job. He should have been screaming his accomplishments from the top dog the White House at all hours.', 'created': '2024-11-12 22:04:16', 'submission_id': '1gpn6a4'}
{'comment': '> However, right now, in this two month window-of-opportunity, he needs to either grow some balls or STFU. \n\nAsking as a non-American, what can he do?', 'created': '2024-11-12 18:58:48', 'submission_id': '1gpn6a4'}
{'comment': 'Bingo! They\'re just going to let it happen. They\'ll say, "we\'ll get em next time, you betcha!". Now is the only chance to do ANYTHING.', 'created': '2024-11-12 23:47:09', 'submission_id': '1gpn6a4'}
{'comment': '100% agree. He also needs to be working on whatever his administration can do to put up barriers to a trump presidency.', 'created': '2024-11-13 05:01:51', 'submission_id': '1gpn6a4'}
{'comment': 'He just doesn’t live in the politics of today. He doesn’t understand that essentially there is no more reaching across the isle like there was when he was in congress. I admire his desire to do the right thing, but I also believe it was one of his greatest failings. He just couldn’t see the political environment of today.', 'created': '2024-11-12 17:03:58', 'submission_id': '1gpn6a4'}
{'comment': 'He lives in a time pre-Citizens United and social media.', 'created': '2024-11-12 18:04:13', 'submission_id': '1gpn6a4'}
{'comment': 'Our whole party did. I can’t remember which comedian said it, but basically they said “Democrats need to dumb down their policies like they are speaking to 5th graders. Because that’s basically who they are talking to.”', 'created': '2024-11-13 02:16:57', 'submission_id': '1gpn6a4'}
{'comment': 'That one. I don’t feel safe with you anymore—so now you get to experience the loss of me that you SAID you were okay with. Actions, meet consequences. I’m not being hateful, I’m just being REAL.', 'created': '2024-11-12 18:07:04', 'submission_id': '1gpn6a4'}
{'comment': 'Hear, fuckin’, here.', 'created': '2024-11-12 16:45:17', 'submission_id': '1gpn6a4'}
{'comment': "It's impossible to turn down the temperature when conservatives are dumping gasoline into the fire.", 'created': '2024-11-12 17:41:26', 'submission_id': '1gpn6a4'}
{'comment': 'We need more John Fettermans. Guys who have balls', 'created': '2024-11-12 17:41:31', 'submission_id': '1gpn6a4'}
{'comment': 'This link is broken. Do you have another one?', 'created': '2024-11-12 22:33:56', 'submission_id': '1gpn6a4'}
{'comment': 'I saw a comment that was kind of funny but also true that said “it’s like they are mad that they won”\n\nIt’s because they have to be mad. It’s their whole identity. It’s their fuel. \n\nI talked with a couple of my Trump friends and they are angrily defending and I think it’s because deep down they know they are wrong. He’s mad about the economy and inflation and he actually had the nerve to tell me I needed to do more research. \n\nThis country is in fucking trouble. We are losing the war on information/ disinformation.', 'created': '2024-11-12 17:10:43', 'submission_id': '1gpn6a4'}
{'comment': 'This.\\^\\^\\^\\^\n\nLet the women in Ohio that voted for abortion rights AND tRump feel the pain of a national abortion ban. Let the union workers that voted for tRump feel the pain of the union busting tactics deployed by corporations that control the republican party. Let the family members of the undocumented immigrants that voted for tRump feel the pain of mass deportations. You wanted it! You got!', 'created': '2024-11-12 19:36:15', 'submission_id': '1gpn6a4'}
{'comment': "We're always the problem. Just like every [truth teller in every family with a narcissist abuser](https://nicolefrancocounseling.com/the-roles-we-play-in-a-narcissistic-family/#:~:text=See%2Der/Truth%20Teller:,push%20back%20to%20the%20narcissist.)", 'created': '2024-11-12 20:39:05', 'submission_id': '1gpn6a4'}
{'comment': 'The hypocrisy is lost on them.', 'created': '2024-11-12 19:37:00', 'submission_id': '1gpn6a4'}
{'comment': "Oh did your Latino employees all get deported? Bummer...looks like you're going to have to hire an entirely new staff that will only work for $20.00 an hour, and demand benefits.", 'created': '2024-11-13 01:12:01', 'submission_id': '1gpn6a4'}
{'comment': 'Except this time they will bring in military intervention like they did for the BLM protests.', 'created': '2024-11-12 19:33:03', 'submission_id': '1gpn6a4'}
{'comment': "He. Has. Immunity!! He could buttfuck these guys and not pay a price!! What's he doing???", 'created': '2024-11-13 07:56:59', 'submission_id': '1gpn6a4'}
{'comment': "It really is. If you look at Russian propaganda from Russia that they use on their people it's the same they used in the US election.", 'created': '2024-11-12 18:10:53', 'submission_id': '1gpn6a4'}
{'comment': 'And as I\'ve said over and over, the only way to win now is a bigger, tougher, younger celebrity "tough guy" barroom brawler type of white male who can equally or greater than appeal to white male voters because as we have seen white male voters make up the majority of voters. They will not elect a woman of color, a woman, and electing a black male after the staggering Obama backlash won\'t cut it as much as I love diversity. America wants a "tough guy," swaggering barroom brawler white male who can speak to uneducated, dirt poor rednecks in simple language while singing, carrying on, threatening and acting like a drunk. This is the Trump brand and if you want to win against a flame thrower you don\'t bring a cigarette lighter or a match and think it will work. \n\nThe Rock \nMcCoughney \nDiCaprio \nClooney (but will have to retool his brand so he doesn\'t come across as a Hollywood elite) \nInsert toughy guy cowboy action hero stud persona character TV / movie star who is secretly a Democrat\n\nJesse Venture did it, Reagan did it, Trump did it. If the writing on the wall isn\'t clear yet, it never will be.', 'created': '2024-11-12 20:15:34', 'submission_id': '1gpn6a4'}
{'comment': 'And guns and trucks and bibles ... and oh ... barbecues with a lot of steak and MEATTTT.', 'created': '2024-11-13 00:55:09', 'submission_id': '1gpn6a4'}
{'comment': 'For starters, give Ukraine everything they could ever want, with zero guardrails.', 'created': '2024-11-12 19:00:08', 'submission_id': '1gpn6a4'}
{'comment': 'The McCains and Bidens of the world are rare these days. The US is Balkanizing. There is no more reaching across the aisle.', 'created': '2024-11-12 17:09:04', 'submission_id': '1gpn6a4'}
{'comment': 'Now those are two things that have well and truly poisoned American democracy!', 'created': '2024-11-12 23:14:02', 'submission_id': '1gpn6a4'}
{'comment': 'Exactly. I really don\'t like this whole "it\'s not ok to dump people based on who they voted for". Then they want to gaslight you when you do it, NVM that they literally just did the same thing to us last week- dumped is based on their voting preferences. \n\nYou voted against our collective safety, my personal safety, our collective health, our collective environment, our civil rights, our constitution, and our national security with a hefty dose of the blatant promise of a dictatorship ...and they want unity? Peace? Absolutely not. I\'m not wanting to hurt people, but you should be socially shunned and feel the consequences for your actions.', 'created': '2024-11-12 19:23:40', 'submission_id': '1gpn6a4'}
{'comment': "insignificant nit:\n\nIt's Hear here... like, listen to this here...\n\nThat said, I agree!", 'created': '2024-11-12 19:30:22', 'submission_id': '1gpn6a4'}
{'comment': 'https://www.change.org/search?q=Election%20recount%202024&offset=0', 'created': '2024-11-12 23:11:09', 'submission_id': '1gpn6a4'}
{'comment': 'Scapegoating does many things but one component is it makes those who join in complicit with the lie… up to the level of the Nuremberg trials. It’s difficult to get out of the fascist vortex once you step in.', 'created': '2024-11-12 17:16:46', 'submission_id': '1gpn6a4'}
{'comment': 'That’s it right here. Our country is too big. (Read as too many areas that go without acknowledgement) those people feel jilted and angry. \n\nThen add in the media control and brain wash those people. \n\nReach for the richer people who are educated now you have a majority to control.', 'created': '2024-11-12 17:13:40', 'submission_id': '1gpn6a4'}
{'comment': 'I have sympathy with economic struggles, but voters who *only* care about “me and mine” and absolutely nothing else including our system of government are the reason it never seems to progress much. Everybody is mentally capable of caring about more than themselves, so it’s a choice.', 'created': '2024-11-12 18:15:06', 'submission_id': '1gpn6a4'}
{'comment': "Yeah, I'm done with my hand being spit on.", 'created': '2024-11-12 18:30:17', 'submission_id': '1gpn6a4'}
{'comment': 'lol I told y sister I wanted to run for senate in 2026 as a joke because we hate the senator\n\n\nAnd my entire policy would be\n“Fuck maga I won’t reach across the aisle to work with them” \n\nSo I may be the problem but I’m too angry to care.', 'created': '2024-11-13 02:54:28', 'submission_id': '1gpn6a4'}
{'comment': 'Wait, really? I always thought it was ‘hear, hear!’. 🌈 the more you know', 'created': '2024-11-12 21:04:21', 'submission_id': '1gpn6a4'}
{'comment': 'Now what’s this called in the English language? Hint. It’s sounds like a world describing something the GOP supporters are.', 'created': '2024-11-12 23:39:04', 'submission_id': '1gpn6a4'}
{'comment': 'Good catch! Fixed and thanks!', 'created': '2024-11-12 19:31:05', 'submission_id': '1gpn6a4'}
{'comment': 'At this point, "me and mine" would be the more sane choice.\n\nThere are women out there literally voting against their own medical care and body autonomy. \n\nAnd that level of control doesn\'t stop with birth control and abortion.\n\nOnce the government starts stripping away people\'s medical care decisions, it will start stripping away other things. Building policies on stripping away rights and access is never a one and done thing. It has to constantly strip away more and more, because it\'s a purity death march ever more to the right.\n\naccess to credit cards/lines of credit - pre-Equal Credit Opportunity Act and Redlining\n\nWhere they can live - Redlining and Covenants\n\nWhere they can go to the doctor (if they can) - Jim Crow Laws \n\nWhere they can play sports - Jim Crow Laws\n\nWho they can marry - pre Loving v. Virginia\n\nWhere they can go to school - Pre Brown\n\nwho can adopt/who has has been forced to give up children - unwed mothers, Native Americans, too many examples\n\nwho can be/can\'t be American citizens - too many examples\n\nwho can vote - pre Civil Rights Act of 1964\n\nWho can get hired - too many examples\n\nwhere people can shop and try on clothes - Jim Crow Laws\n\nWho can access libraries and swimming pools - Jim Crow Laws\n\nwhere people can travel - Jim Crow Laws and Sundown towns\n\nWhere people can camp and access public/state/federal national parks - Jim Crow Laws\n\nWho can serve on juries - Jim Crow Laws (despite racial discrimination in jury selection being federally outlawed in the Civil Rights Act of 1875 - yes **1875**)\n\nWhere can they eat - Jim Crow Laws\n\nWhat information can be accessed - Jim Crow Laws, too many examples\n\nWhat public transportation can be used/who can sit where - Plessy vs. Ferguson/Jim Crow laws\n\n\nThat\'s not even a fraction of this country\'s 248 years of existence.', 'created': '2024-11-12 18:54:48', 'submission_id': '1gpn6a4'}
{'comment': 'Yes, it\'s basically what Tom Nichols said in his book "Our Own Worst Enemy" in 2021.', 'created': '2024-11-13 00:58:11', 'submission_id': '1gpn6a4'}
{'comment': 'Being poisoned', 'created': '2024-11-12 23:35:48', 'submission_id': '1gpn6a4'}
{'comment': "Oh shit! I just checked and you're right!", 'created': '2024-11-12 21:06:30', 'submission_id': '1gpn6a4'}
{'comment': 'They say "Make America great again". What you have laid out is that great America.', 'created': '2024-11-12 19:27:58', 'submission_id': '1gpn6a4'}
{'comment': 'Lol! Well, if this is all we have to worry about, we’re in good shape. Unfortunately it’s not 😮\u200d💨🫠', 'created': '2024-11-12 21:18:13', 'submission_id': '1gpn6a4'}
{'comment': 'Why not make America the land of the free and the home of the brave', 'created': '2024-11-12 22:58:37', 'submission_id': '1gpn6a4'}
{'comment': 'You have a dog killer and a guy who allegedly ate a dog in the same cabinet.', 'created': '2024-11-12 15:48:50', 'submission_id': '1gplwec'}
{'comment': "How many illegal immigrants are in South Dakota? It's like the states least likely to experience illegal immigration really need to just worry about themselves.", 'created': '2024-11-12 17:55:52', 'submission_id': '1gplwec'}
{'comment': '"I don\'t know who you are, or what you do. But my \'enemies within\' don\'t like you. So, here\'s a very important high-level job."', 'created': '2024-11-12 17:27:26', 'submission_id': '1gplwec'}
{'comment': "# Justice for Cricket!\n\nWe need a billboard with that slogan near her new office. But for now, let's work on memes.", 'created': '2024-11-12 21:11:06', 'submission_id': '1gplwec'}
{'comment': "I mean, FFS, of all the people on the Republican side who could fill that role, they pick the one with absolutely zero relevant experience. No military experience, no LE experience, no Intelligence experience, but she is going to run DHS!? DHS is one of the few agencies where party really doesn't, and shouldn't matter. Yet he is going to appoint a woefully unqualified candidate to the position that is supposed to prevent terror attacks on US soil because (checks notes) of her loyalty to Trump. What a farce! \nThe Republican party is filled with military and LE experience, people who would do a great job in that position, party line be damned. But nope.\n\nWhat a shit show.", 'created': '2024-11-12 22:24:37', 'submission_id': '1gplwec'}
{'comment': '🤮', 'created': '2024-11-12 16:34:57', 'submission_id': '1gplwec'}
{'comment': 'I’ll host a Trump dance contest for a 6 figure gig.\n\n*double YMCA jerkoff hands*', 'created': '2024-11-12 21:14:16', 'submission_id': '1gplwec'}
{'comment': 'At least we know we will be protected from lazy dogs invading the country.', 'created': '2024-11-12 17:50:19', 'submission_id': '1gplwec'}
{'comment': 'She has shown a sociopathic side in shooting a puppy- think killing small animals is how Jeffery Dahmer got started.', 'created': '2024-11-12 22:51:14', 'submission_id': '1gplwec'}
{'comment': 'Who’s who list of all the worst politicians getting appointed by trump.', 'created': '2024-11-13 14:48:50', 'submission_id': '1gplwec'}
{'comment': 'Ugh not homeland security. Cops already shoot too many dogs. \n\nPut her in charge of whatever’s left of Education. Maybe she will at least scare off some would be mass shooters.', 'created': '2024-11-13 00:33:56', 'submission_id': '1gplwec'}
{'comment': 'She is the designated fluffer..did she bring Cory with her?', 'created': '2024-11-13 05:03:29', 'submission_id': '1gplwec'}
{'comment': "Like most MAGA, even the dogs won't forgive them", 'created': '2024-11-13 07:51:40', 'submission_id': '1gplwec'}
{'comment': 'She is the dumbest pick so far she is 50x dumber than a brick wall. Remember in her book she said shee met with Kim Jong Un then she was asked 4 times about it every time she ran away from the question she knew it was dumber than putting that in her book which flopped hard.', 'created': '2024-11-14 09:37:48', 'submission_id': '1gplwec'}
{'comment': 'The calls were really coming from inside the house, weren’t they?', 'created': '2024-11-12 16:25:03', 'submission_id': '1gplwec'}
{'comment': 'Don’t forget that trump also hates dogs', 'created': '2024-11-12 16:57:10', 'submission_id': '1gplwec'}
{'comment': 'This is hilarious', 'created': '2024-11-12 21:40:13', 'submission_id': '1gplwec'}
{'comment': 'Do idiots out wandering around (Iowans) count?', 'created': '2024-11-12 22:16:57', 'submission_id': '1gplwec'}
{'comment': 'Are we counting those who broke treaties and took native lands... or no?', 'created': '2024-11-13 05:18:15', 'submission_id': '1gplwec'}
{'comment': 'Noem also lied in her book(that she narrated for the audiobook) ab meeting with Kimmy in NK. She is a fucking idiot and dog killer.', 'created': '2024-11-12 22:55:24', 'submission_id': '1gplwec'}
{'comment': 'I believe they’re the department that spies on Americans? Or is that the NSA? \n\nHe doesn’t care about qualifications just devotion', 'created': '2024-11-13 00:36:04', 'submission_id': '1gplwec'}
{'comment': "But she'd be deputized by the federal government.", 'created': '2024-11-12 23:41:43', 'submission_id': '1gplwec'}
{'comment': 'Projection in the Republican Party is insane.', 'created': '2024-11-12 16:36:41', 'submission_id': '1gplwec'}
{'comment': 'Always have been. 🌎🧑\u200d🚀🔫🧑\u200d🚀', 'created': '2024-11-12 20:54:43', 'submission_id': '1gplwec'}
{'comment': 'It’s a fascinating question, the line between tourist and immigrant.', 'created': '2024-11-13 00:35:06', 'submission_id': '1gplwec'}
{'comment': 'It’s all they know, unfortunately!', 'created': '2024-11-12 17:06:11', 'submission_id': '1gplwec'}
{'comment': 'Groomers! The lot of them!', 'created': '2024-11-13 00:34:15', 'submission_id': '1gplwec'}
{'comment': 'Rubio compared Trump to a dictator. Hey, him and Vance have something in common.', 'created': '2024-11-12 15:25:36', 'submission_id': '1gplt8v'}
{'comment': 'I guess the only upside I can see, in terms of the rogues gallery he is appointing, is that half of them probably won’t last six months…', 'created': '2024-11-12 15:27:34', 'submission_id': '1gplt8v'}
{'comment': 'Rubio is a supporter of Ukraine. This may mean nothing but as reading signs go, it’s a good sign. \n\nSmh at these morons. But I’ll take what I can get for Ukraine. \n\nBiden needs to publicly embarrass the f out of Trump on Ukraine, in combination w speeding up current arms deliveries. Emphasize the traitorous nature of supporting our oldest and most virulent foe bent on undermining our interests. And that Trump is a puppet of Putin. It’s withering criticism, rings true to Americans, and not easily deflected. If anything could make Trump change his tune (to prove his critics wrong) it would be this.', 'created': '2024-11-12 16:34:07', 'submission_id': '1gplt8v'}
{'comment': "this could be an opportunity to take back a senate seat, but we shouldn't be too optimistic considering florida's deep red turn", 'created': '2024-11-12 16:14:20', 'submission_id': '1gplt8v'}
{'comment': 'Trump is going to nominate positions based on how willing the nominees are to gut the agencies they will lead.', 'created': '2024-11-12 16:05:49', 'submission_id': '1gplt8v'}
{'comment': 'I hope anyone who bends the knee to that traitor has a fucking miserable existence for the rest of their pathetic lives.', 'created': '2024-11-12 18:59:14', 'submission_id': '1gplt8v'}
{'comment': "Rubio is the biggest ass-kissing toady to ever live. That's why. He's a worm.", 'created': '2024-11-12 21:36:58', 'submission_id': '1gplt8v'}
{'comment': 'lil Marco gets to put on some big boy pants', 'created': '2024-11-12 16:27:36', 'submission_id': '1gplt8v'}
{'comment': 'https://preview.redd.it/d6oc64y0th0e1.png?width=593&format=png&auto=webp&s=9f028a6a67929075b9dcfe701e38a9f319573299', 'created': '2024-11-12 16:54:31', 'submission_id': '1gplt8v'}
{'comment': 'Time to get my Kosatka and rob the man! /s', 'created': '2024-11-12 17:51:08', 'submission_id': '1gplt8v'}
{'comment': 'Did he get a bottle of water yet?', 'created': '2024-11-12 19:48:58', 'submission_id': '1gplt8v'}
{'comment': 'Ironic, no? \nhttps://www.instagram.com/reel/DCR_hmUgTsP/?igsh=NHY2cmF0bHpzYXA0', 'created': '2024-11-12 20:11:16', 'submission_id': '1gplt8v'}
{'comment': 'Spineless ass kissing cowards.', 'created': '2024-11-12 15:31:33', 'submission_id': '1gplt8v'}
{'comment': "Converted to Scaramucci's = 16.9 scm\n\n(1 Scaramucci= 11 days)", 'created': '2024-11-12 16:21:33', 'submission_id': '1gplt8v'}
{'comment': "Rubio is probably a good pick. He might be a grandstanding quack when he needs to be, but he at least seems competent and cares about the US's place in the world. He's anything but an isolationist. \n\nI almost feel like trump could be conned into supporting Ukraine. Get the Europeans to promise him a nobel peace prize (he'd love that) and he could probably be made to do something good there. His susceptibility to manipulation could work in everyone's favor if it's the right people doing it.", 'created': '2024-11-12 16:51:20', 'submission_id': '1gplt8v'}
{'comment': 'Agreed but problem is like before the election, democrats will not take the low road. Biden won’t embarrass him or any other republican. Tuberville goes and says our military is the worst, hmmm you are one who held up all the military promotions due to your agenda. Dems need to get on tv and start blasting away at republicans, fuck the high road it has got us nowhere.', 'created': '2024-11-12 17:20:53', 'submission_id': '1gplt8v'}
{'comment': 'Desantis will appoint his replacement who will serve until the next general election which will be in 2 years.', 'created': '2024-11-12 16:23:37', 'submission_id': '1gplt8v'}
{'comment': 'I don’t think there’s a movement to gut the Department of State.', 'created': '2024-11-12 17:06:58', 'submission_id': '1gplt8v'}
{'comment': 'Skinless ass ~~kissing~~ ^licking cowards.\n\nThere I fixed it for you', 'created': '2024-11-12 18:42:35', 'submission_id': '1gplt8v'}
{'comment': "That's a brilliant way to measure the turnover xD", 'created': '2024-11-12 19:20:44', 'submission_id': '1gplt8v'}
{'comment': 'Indeed.', 'created': '2024-11-12 17:00:01', 'submission_id': '1gplt8v'}
{'comment': 'In as much as the Dept. of State aspires to fostering friendly relationships with our allies, I think my point is still relevant. But you are right, agencies like ICE and Border Patrol will be beefed up.', 'created': '2024-11-12 17:20:56', 'submission_id': '1gplt8v'}
{'comment': 'Definitely still relevant but only especially the white parts.', 'created': '2024-11-12 19:02:29', 'submission_id': '1gplt8v'}
{'comment': 'There are a few close House races where a recount maybe appropriate.', 'created': '2024-11-12 16:22:34', 'submission_id': '1gplefe'}
{'comment': 'This is boilerplate language that had existed since the campaign began, making it more than a bit journalist-malpracticey to deem it newsworthy now. It neither increases nor decreases the likelihood of a recount.', 'created': '2024-11-12 15:11:22', 'submission_id': '1gplefe'}
{'comment': 'It has to say that or they couldn’t use the funds for that purpose should it become relevant. They’re not doing or winning seven separate recounts.', 'created': '2024-11-12 15:48:39', 'submission_id': '1gplefe'}
{'comment': 'I think this will go to recounts for House and Senate races.', 'created': '2024-11-12 15:54:28', 'submission_id': '1gplefe'}
{'comment': 'Has it really only been a week since Election Day?', 'created': '2024-11-12 18:19:18', 'submission_id': '1gplefe'}
{'comment': 'https://www.change.org/p/demand-an-investigation-and-recount-into-the-2024-us-election', 'created': '2024-11-12 16:13:42', 'submission_id': '1gplefe'}
{'comment': 'This is only for recounts for the House and Senate, it has nothing to do with the presidential election itself.', 'created': '2024-11-12 19:19:06', 'submission_id': '1gplefe'}
{'comment': 'Everything points to the fact that if the election was broken, it was because the swing states all used software designed by Elon Musk.\n\nIf democrats didn’t stop that, the recount won’t matter.', 'created': '2024-11-12 15:18:26', 'submission_id': '1gplefe'}
{'comment': '\nLead Paragraph:\n\nWASHINGTON - A portion of donations made to the Harris Victory Fund, a joint fundraising committee authorized by the Harris campaign, the Democratic National Committee and state Democratic parties, will be directed towards a recount effort, according to its fundraising page.', 'created': '2024-11-12 15:02:37', 'submission_id': '1gplefe'}
{'comment': 'There’s literally nothing on the Harris website that says anything about a recount effort. This misinformation needs to stop.', 'created': '2024-11-13 19:19:56', 'submission_id': '1gplefe'}
{'comment': 'What a waste of time and money. They should be doing extensive research to find out the real reasons why Democrats didn’t vote for them.', 'created': '2024-11-12 19:36:00', 'submission_id': '1gplefe'}
{'comment': 'She’s not recounting, don’t worry…your Authoritarian President with complete immunity will still be your king. I can’t wait for him to take away all of your civil rights. And your guns.', 'created': '2024-11-12 15:37:08', 'submission_id': '1gplefe'}
{'comment': 'I don’t think enough is made about how these leftover contributions will now be divided between consultants and lawyers rather than foundations to help the people they “failed”. The Harris campaign fleeced us. That money should go towards nonprofits that supper low income Americans.', 'created': '2024-11-12 15:31:27', 'submission_id': '1gplefe'}
{'comment': 'Wha?!', 'created': '2024-11-12 15:18:39', 'submission_id': '1gplefe'}
{'comment': 'Then it’s time to stop donating to Harris', 'created': '2024-11-12 15:17:07', 'submission_id': '1gplefe'}
{'comment': 'Exactly, it’s a boilerplate that was in media releases since we haven’t heard any confirmation that recounts are occurring.', 'created': '2024-11-12 16:44:44', 'submission_id': '1gplefe'}
{'comment': "Yes. That's exactly what the fundraising email that I got yesterday says.", 'created': '2024-11-12 16:35:51', 'submission_id': '1gplefe'}
{'comment': "Petitions don't do anything", 'created': '2024-11-12 19:26:24', 'submission_id': '1gplefe'}
{'comment': 'Source? …Evidence?', 'created': '2024-11-12 16:00:14', 'submission_id': '1gplefe'}
{'comment': 'What software exactly?', 'created': '2024-11-12 15:59:35', 'submission_id': '1gplefe'}
{'comment': None, 'created': '2024-11-12 17:30:20', 'submission_id': '1gplefe'}
{'comment': 'Nothing points to that.', 'created': '2024-11-12 16:52:52', 'submission_id': '1gplefe'}
{'comment': "'Everything points to.' \n\nCare to elaborate or is just a random fleeting thought of yours?", 'created': '2024-11-12 20:29:53', 'submission_id': '1gplefe'}
{'comment': 'Jesus it’s 9 AM', 'created': '2024-11-12 15:41:37', 'submission_id': '1gplefe'}
{'comment': 'Why?', 'created': '2024-11-12 16:10:48', 'submission_id': '1gplefe'}
{'comment': 'Oh stfu.', 'created': '2024-11-12 15:43:04', 'submission_id': '1gplefe'}
{'comment': 'Theres the door🚪', 'created': '2024-11-12 16:17:53', 'submission_id': '1gplefe'}
{'comment': 'This your first election? 🤣', 'created': '2024-11-12 17:07:06', 'submission_id': '1gplefe'}
{'comment': 'Vid above', 'created': '2024-11-12 16:43:36', 'submission_id': '1gplefe'}
{'comment': 'Whoa whoa whoa. Bigfoot exists. Please reference something that definitely doesn’t exist such as Trump having a soul.', 'created': '2024-11-12 18:20:18', 'submission_id': '1gplefe'}
{'comment': 'Watch and read links above', 'created': '2024-11-12 16:45:39', 'submission_id': '1gplefe'}
{'comment': 'Why are we engaging funds to deal with a recount?', 'created': '2024-11-12 17:32:23', 'submission_id': '1gplefe'}
{'comment': 'No video appearing for me. \n\nWhat’s the name of the software?', 'created': '2024-11-12 16:44:39', 'submission_id': '1gplefe'}
{'comment': "That doesn't answer why this guy wants us to suffer and have our civil rights taken away but okay", 'created': '2024-11-12 17:06:45', 'submission_id': '1gplefe'}
{'comment': 'What links?', 'created': '2024-11-12 17:30:52', 'submission_id': '1gplefe'}
{'comment': 'Sarcasm', 'created': '2024-11-12 17:09:20', 'submission_id': '1gplefe'}
{'comment': 'They’re probably down the thread.', 'created': '2024-11-12 17:55:39', 'submission_id': '1gplefe'}
{'comment': 'Seems more like schadenfreude', 'created': '2024-11-12 17:11:05', 'submission_id': '1gplefe'}
{'comment': 'There aren’t any links to any videos in this thread.\n\nThere is only a link to a change.org petition.\n\nIf you have watched these videos you are discussing, then surely you can simply name the software?', 'created': '2024-11-12 17:56:19', 'submission_id': '1gplefe'}
{'comment': None, 'created': '2024-11-12 13:34:00', 'submission_id': '1gpi0e2'}
{'comment': "It really says a lot about this country. Our status as the world's bright shining city on the hill is almost completely diminished. Idiot Trump envisions an America as a gas station with nuclear missiles - with other kleptocrats like Musk plundering our wealth for their personal enrichment.\n\nThere is a method to the madness of idolizing Putin, Little Kim and the Saudi royalty. Role models.", 'created': '2024-11-12 14:15:52', 'submission_id': '1gpi0e2'}
{'comment': 'The alt-right media has convinced many people that all the charges and convictions against Donald Trump are all corrupt liberal "witch hunts."\n\n(I\'m sure there are also people who believe Trump committed all of these terrible behaviors but don\'t care.)\n\nBut I also truly think there are plenty of people--more people--who don\'t believe that Donald Trump did those things and that it\'s just the evil government and deep state trying to unfairly target Donald Trump, since he\'s their political opponent. When you have people practically worshipping him like Jesus and God, they\'re not going to want to believe that their savior has committed sin. \n\nTo me that is the bigger problem. And I\'m not sure what to do about it besides build up an equally powerful left-wing media behemoth to combat the lies.', 'created': '2024-11-12 14:56:36', 'submission_id': '1gpi0e2'}
{'comment': "History repeating itself. If you're fascinated with foreign politics, Australia had its own proto-Trump ruling Queensland 40 years ago. His name? Sir Joh Bjelke Petersen.", 'created': '2024-11-12 15:30:15', 'submission_id': '1gpi0e2'}
{'comment': 'I promised my wife and kids he would never hold office again! For four years I have been wrong!', 'created': '2024-11-12 14:15:17', 'submission_id': '1gpi0e2'}
{'comment': 'I really would not be surprised if the American Flag was taken down from the White House and there was a Trump and Russian flag raised. Absolutely nothing surprises me after electing a guy with 2 impeachments and ordered an attack on our own capital.', 'created': '2024-11-13 01:22:14', 'submission_id': '1gpi0e2'}
{'comment': 'It’s mind boggling…I don’t fucking get it. Propaganda is powerful.', 'created': '2024-11-13 21:24:34', 'submission_id': '1gpi0e2'}
{'comment': 'Daily reminder: karma isn’t real and justice doesn’t come from systems; accountability comes from people, never institutions.', 'created': '2024-11-12 16:36:25', 'submission_id': '1gpi0e2'}
{'comment': ">But I also truly think there are plenty of people--more people--who don't believe that Donald Trump did those things\n\nYep. Or, they are not sure if he did them. \n\nThat's the thing about the fascist rhetoric the GOP has used. It doesn't just radicalize people. It also instills doubt in the entire political process in some people, and spreads so much misinformation, that they don't know what the truth is.\n\nAnd unfortunately, the media has been sane washing everything Trump does, refusing to call him out for what he is, which just lends to that confusion.", 'created': '2024-11-12 15:13:43', 'submission_id': '1gpi0e2'}
{'comment': 'All the stupid MAGA cheerleaders thinking it’s a team sport.', 'created': '2024-11-13 01:23:39', 'submission_id': '1gpi0e2'}
{'comment': 'The doubt comes from the fact the system isn’t working. If it did, the corrupt would be in jail.', 'created': '2024-11-12 16:37:30', 'submission_id': '1gpi0e2'}
{'comment': "Yeah. That too. \n\nIf Trump had been convicted and put in jail, more than would have believed he's a criminal.", 'created': '2024-11-12 17:11:59', 'submission_id': '1gpi0e2'}
{'comment': '“Far right?” Hell, I even think Elon Trump thinks she’s just a nut job! But, that’s none of my business.', 'created': '2024-11-12 15:17:56', 'submission_id': '1gpjd4c'}
{'comment': 'Whew. \nKari Lake seems broadly unlikable and unpopular', 'created': '2024-11-12 14:49:31', 'submission_id': '1gpjd4c'}
{'comment': "I think this is just more evidence that there's something unique about Trump that carries him over the edge compared to these other wackos.\n\nHe has a je ne sais quois that a JD Vance or Kari Lake or Mike Rogers just can't replicate. I don't know if that bodes well for the Democrats in 2026 and 2028, but I'd like to think so.", 'created': '2024-11-12 16:11:16', 'submission_id': '1gpjd4c'}
{'comment': 'Trump is probably going to give her a job. They have the same evil vibes.', 'created': '2024-11-12 15:34:35', 'submission_id': '1gpjd4c'}
{'comment': 'Gonna be hard to argue it was rigged when a Trump won the state.', 'created': '2024-11-12 17:57:04', 'submission_id': '1gpjd4c'}
{'comment': 'I don’t know how the race was so close. I live in Arizona and I don’t even know any Republicans who like her. I know people who voted for Trump, but refused to vote for her.', 'created': '2024-11-12 19:01:26', 'submission_id': '1gpjd4c'}
{'comment': 'Did she concede?', 'created': '2024-11-12 22:03:09', 'submission_id': '1gpjd4c'}
{'comment': 'OMG how did she lose??? Enough people had to not vote down ballot and specifically not pick her even though they voted for Trump. IM DYING XXDDDD', 'created': '2024-11-13 00:22:32', 'submission_id': '1gpjd4c'}
{'comment': 'This is pretty much the result when others try to be Trump 2.0.', 'created': '2024-11-12 17:56:23', 'submission_id': '1gpjd4c'}
{'comment': 'it takes the likes of lake and robinson \\[nc gov candidate\\] for a republican to lose sometimes, its wild. \n\nbonus disappointment: i looked at my rural-right-county exit data and people basically just voted right down party lines, even for robinson. 64% and change for him, 34ish for the democrat and a few no votes or 3rd party in various races. so...even robinson wasnt bad enough for my locals to vote against him. ewww.', 'created': '2024-11-12 17:24:34', 'submission_id': '1gpjd4c'}
{'comment': "100%. I came to the same conclusion. He switched parties because he was able to identify that the republicans and the right wing media machine had created a class of people that would believe his lies. He essentially took over a party that was custom fitted for his brand of bull shit. They were custom fitted by years of right wing media that created an alternate reality where facts don't matter. Then combine that with the impact of foreign meddling via social media accounts AND Elon Musk putting his thumb on the scale this is what you get. That razor thin win across all of the battleground states can be easily attributed to that extra oomph he got from this polarized environment. I have been thinking that the only way this could have been avoided is if Hillary would have stepped aside and let Bernie win. I am not blaming her but just being real. Both people that lost to tRump were women.", 'created': '2024-11-12 16:25:40', 'submission_id': '1gpjd4c'}
{'comment': 'It’s bodes very well for us in the coming years. I’ve just come to the conclusion that Trump truly is something of a Teflon Don, nothing he says who does or gets convicted of will prevent people from following him. People just like him and will stand up for him no matter what. It’s truly an anomaly. \n\nI don’t think any other Republican will be able to emulate this, Look what happened to DeSantis, Kari Lake, etc etc. even though people call JD Vance a nutbag, he really seemed like a milquetoast Republican in his VP debate. Vivek seems like the next crazy Right winger waiting in the wings but I don’t think he could get people to follow him like Trump.', 'created': '2024-11-12 18:02:21', 'submission_id': '1gpjd4c'}
{'comment': 'If he doesn’t she’s pretty much shunned by the elites from when she exposed them. I mean, I guess good on her for showing that elites are buying politicians but it’s not like we didn’t already know. \n\nhttps://youtu.be/1ni8Ijqbrss?si=I28C24W1w1-t5sFF', 'created': '2024-11-12 17:58:14', 'submission_id': '1gpjd4c'}
{'comment': 'Genuinely curious what would happen if we ran a hardcore religious… democrat.\n\nI mean, these people aren’t *actually* religious, so it should be an easy con. 🤷🏼\u200d♂️', 'created': '2024-11-12 21:51:06', 'submission_id': '1gpjd4c'}
{'comment': 'Same here. Our local GOP basically slobbed all over him when he would visit. And most of them are the types that will thump that Bible if you so much as dare sin a little.', 'created': '2024-11-12 20:46:02', 'submission_id': '1gpjd4c'}
{'comment': 'Will be a painful wake up call for America. But now there will be absolutely no one to blame but Trump and republicans. Hopefully this will finally break the cult of Trump…', 'created': '2024-11-12 13:37:08', 'submission_id': '1gpj5mi'}
{'comment': 'Hardcore Filibusting Season.', 'created': '2024-11-12 13:59:19', 'submission_id': '1gpj5mi'}
{'comment': 'I think Democrats need to rely on the power of states. The Supreme Court essentially has given blue states to push back against Trump’s wacky proposals.', 'created': '2024-11-12 13:39:59', 'submission_id': '1gpj5mi'}
{'comment': 'He has an even slimmer margin in congress than his first term and couldn’t get anything done. And now they don’t have to bend over backwards to appease him because he’s term limited', 'created': '2024-11-12 15:20:29', 'submission_id': '1gpj5mi'}
{'comment': "2024 election was truly the revenge of the sith hopefully we're on the path for a new hope", 'created': '2024-11-12 19:21:41', 'submission_id': '1gpj5mi'}
{'comment': "No worries.\n\nAs soon as the promised economic hardship kicks in, the 2026 Blue Wave starts to roll in! If the idiot can't be president anymore, you know he doesn't care what he does to his party. Personal tax cut, avoid prison, grift where he can, keep Melania out of divorce court - he's got a lot on his plate. More than most retirees.", 'created': '2024-11-12 14:21:29', 'submission_id': '1gpj5mi'}
{'comment': 'Two years is 1.99 years too late.', 'created': '2024-11-12 15:15:12', 'submission_id': '1gpj5mi'}
{'comment': 'Unfortunately, at the moment there is no Democratic Party. It’s a zombie ideal trying to become tangibly resurrected.', 'created': '2024-11-12 16:21:37', 'submission_id': '1gpj5mi'}
{'comment': 'On Nov 26 there’s a runoff election in Mississippi for state Supreme Court. While Supreme court supposedly is a non partisan position, judge Kitchens is a Democrat endorsed by the Democrats, opponent Branning is endorsed by the Republican party. Per her website she believes in the “traditional values of faith, family and freedom”. She calls herself a constitutional conservative.\n\nAbsentee ballot voting opens next week and will extend through Saturday, November 23rd. \n\nThe in-person deadline for voting in advance is the Saturday before election, November 23rd.\n\nNovember 26 is ELECTION DAY. This is the Tuesday before Thanksgiving. We ask that you RE-ELECT Justice Jim Kitchens, the experienced choice in this election.\n\nFollow, amplify him on your socials. If you can afford the time and or money donate and volunteer for\n\nhttps://justicekitchens.tbgsites.com/\n\n🗳️🗳️🗳️🗳️🗳️🗳️\n\nDecember 3rd Georgia has runoff elections. Early voting begins Nov 27th. \n\nAtlanta City Council Post 3 Eshe Collins is your progressive here. Get to know her here. Follow, amplify, donate and sign up to take a shift\n\nhttps://www.collins4atlanta.com/blank-1\n\nI haven’t researched all the rest yet 👇🏼\n\nEast Point Council Ward B Jermaine Wright vs Shean Atkins\n\nDeKalb County Commission District 3 Nicole Massiah vs Andrew Bell\n\nDeKalb County Commission District 7 Jacqueline Adams vs LaDena Bolton\n\nDoraville City Council District 1, Post 2 candidates are Andy Yeomen vs Taylor Ray\n\nHenry County Commission District 4 Michael Price vs Vivian Thomas personally I’d favor Vivian https://www.vote4vivian.com/\n\nMulberry City Council District 5 Doug Ingram vs Michele Sims personally I favor Doug \n\nhttps://www.dougformulberry.com/\n\n🗳️🗳️🗳️🗳️🗳️🗳️\n\nConcurrently and next up, running for East Baton Rouge Mayor is Sharon Weston Broome\n\nRunoff Is Saturday, Dec. 7th. Early Voting starts November 22-30, except 11/24, 11/28, 11/29. \n\nGet to know her, sign up to take a shift at; \n\nhttps://www.mayorsharonwestonbroome.com/', 'created': '2024-11-12 19:31:36', 'submission_id': '1gpj5mi'}
{'comment': "Let's be real how many of us rooted for the empire in Revenge of the Sith.", 'created': '2024-11-13 00:49:06', 'submission_id': '1gpj5mi'}
{'comment': 'they need better grassroots and media sources.', 'created': '2024-11-13 01:17:17', 'submission_id': '1gpj5mi'}
{'comment': 'There need to be ongoing, increasing protests in DC and other places of news sources (e.g., Fox News). There is no way around this problem, which when issues are talking about, is often sidelined as if it is not a factor of the real world realpolitik.', 'created': '2024-11-13 02:19:57', 'submission_id': '1gpj5mi'}
{'comment': 'I don’t know, these people were given all the info ever needed, the guy is clearly unhinged, says he wanted to be a dictator, and spelled out no clear plans, yet a majority of voters picked him. Even moderate and independent voters went for him, Latinos voted for their friends and family to get deported, Asian Americans voted to have anything from their cultural homeland taxed double. The brain drain is insane, Trump will say it’s lingering Biden policies in 2028 and run again and most of them will probably eat it up.', 'created': '2024-11-12 14:21:05', 'submission_id': '1gpj5mi'}
{'comment': '>But now there will be absolutely no one to blame but Trump and republicans.\n\nHow many times have those famous last words been said over the decades? lol', 'created': '2024-11-12 15:11:00', 'submission_id': '1gpj5mi'}
{'comment': 'It’ll shatter it to the ground if the average American is smarter than a rock but the average American has let us down time and again', 'created': '2024-11-12 14:19:36', 'submission_id': '1gpj5mi'}
{'comment': 'The blame means nothing unless the average person is willing to enforce the consequences of it.\n\nBecause literally part of the R plan is to dismantle all systems of accountability.', 'created': '2024-11-12 15:16:11', 'submission_id': '1gpj5mi'}
{'comment': 'The problem is the media. It doesn’t matter what a ruler does as long as the first lie told benefits them.', 'created': '2024-11-12 14:27:43', 'submission_id': '1gpj5mi'}
{'comment': 'The ones who will suffer most unfortunately will be the people who had no voice.', 'created': '2024-11-12 15:43:24', 'submission_id': '1gpj5mi'}
{'comment': "I am not counting on hope.\xa0 who in his government is going to care what people think when he's free to do whatever he wants whether the populace like it or not.\xa0 \xa0\xa0\xa0that's what dictatorship *is*.\xa0\xa0\n\n\neta:\xa0 state and local office-holders are going to be critical in keeping some normality in people's lives.\xa0 \xa0election related especially.\xa0 states that are Republican all the way down will be way more successful at bringing Trump's government into your life and kneecapping your ability to do something about it by voting him out, than states where the elected officials are not accountable to anybody in that power structure.\xa0\xa0", 'created': '2024-11-12 17:11:58', 'submission_id': '1gpj5mi'}
{'comment': "I'm a realistic person America voted for this and they will vote for someone just as bad if not worse if we survive trump.\n\n\n\xa0I hate\xa0 to say it but The country needs to split up once he captures the military we will be in the same position as Germany was.\n\n\nHe's already floating suspending the Constitution and placing himself as king for life.\n\n\nDemocracy is on life support and it's time we go into damage mitigation mode.", 'created': '2024-11-13 20:57:36', 'submission_id': '1gpj5mi'}
{'comment': 'This ☝️! Dems can grind the Senate to a halt just like the GOP did.', 'created': '2024-11-12 14:10:27', 'submission_id': '1gpj5mi'}
{'comment': "I am hoping Virginia's trend of electing the opposite party of the president holds in 2025.", 'created': '2024-11-12 14:03:13', 'submission_id': '1gpj5mi'}
{'comment': ">the 2026 Blue Wave starts to roll in! \n\nThat is assuming they don't pass some voting reform to discourage or eliminate Democratic voter turnout\n\nRepublicans have been practicing election interference for decades with their legislation at the state level. This is something they actually know how to do. \n\nSo don't be surprised if they put together a bill that is the opposite of The John Lewis Voting Rights act.", 'created': '2024-11-12 15:08:51', 'submission_id': '1gpj5mi'}
{'comment': 'More overdramatic reactions to losing one election by a slim margin in 3 2 1….', 'created': '2024-11-13 01:48:29', 'submission_id': '1gpj5mi'}
{'comment': 'People are also now glossing over the fact that, and j mean FACTUALLY, a rapist and pedophile more times over than I want to think about.\n\nHe should be in prison but, here we are..', 'created': '2024-11-12 16:34:16', 'submission_id': '1gpj5mi'}
{'comment': 'Right? They will 100% blame democrats for everything forever.', 'created': '2024-11-12 16:08:28', 'submission_id': '1gpj5mi'}
{'comment': 'Guess what senate Republicans are going to toss right out the windows?', 'created': '2024-11-12 16:12:04', 'submission_id': '1gpj5mi'}
{'comment': 'I doubt Virginia will get a republican governor. Youngkin ruined things for them.', 'created': '2024-11-12 14:04:17', 'submission_id': '1gpj5mi'}
{'comment': 'Maybe, but McConnell said that the Filibuster stays. Now….how much power he has now that he won’t be Leader is yet to be seen. So who knows.', 'created': '2024-11-12 16:52:34', 'submission_id': '1gpj5mi'}
{'comment': "I am thankful every day we held on to the state legislature. It made him completely ineffective and he got all the blame. I forget he exists half the time because he just couldn't get anything done. Was the best outcome I could have hoped for.", 'created': '2024-11-12 14:21:51', 'submission_id': '1gpj5mi'}
{'comment': "I know. Thune or Scott or whomever it will be will get a call from Trump in about 2.5 months and that will be it. I'm just glad Sinema and Manchin worked so hard to preserve it", 'created': '2024-11-12 16:55:40', 'submission_id': '1gpj5mi'}
{'comment': "Yep. No elected Republican will say no to Trump on anything because he'll call them a RINO, rally up the supporters, and that'll be the end of their career in elected politics.", 'created': '2024-11-12 17:45:40', 'submission_id': '1gpj5mi'}
{'comment': 'PSA: “medically necessary” means someone else decides whether you become a mother, and possibly whether you live', 'created': '2024-11-12 04:43:43', 'submission_id': '1gpbljq'}
{'comment': 'Stockpiles of “pre-ban” medicine is probably better than a coat hanger', 'created': '2024-11-12 04:53:23', 'submission_id': '1gpbljq'}
{'comment': "Getting a passport or at least a passport card is good insurance. \n\nA passport card is good for surface entry (not air!) to Canada or Mexico. The card, the same size as a driver's license, can also serve as proof of US citizenship.", 'created': '2024-11-12 07:43:16', 'submission_id': '1gpbljq'}
{'comment': "It's good insurance until it isn't. Will US screen cars for pregnant women leaving the country? Sadly, this is not an insane question to ask in these dark times.", 'created': '2024-11-12 18:29:48', 'submission_id': '1gpbljq'}
{'comment': 'I have a passport. Do you know if you can also get a passport card? I like to have redundancies in case something gets lost or stolen. I live in a border city to Mexico.', 'created': '2024-11-12 15:27:56', 'submission_id': '1gpbljq'}
{'comment': 'Likely they will', 'created': '2024-11-12 21:52:32', 'submission_id': '1gpbljq'}
{'comment': 'Got one, 10-12 years back cost extra $100 or something like that', 'created': '2024-11-12 17:10:49', 'submission_id': '1gpbljq'}
{'comment': 'I know that passport cards cost less than passport booklets. And if you have one, even one which expired less than 5 years ago, it costs less to renew it than to apply for a new one. \n\nThey do charge extra if you want expedited service. But if you apply soon you should still get one before January 20th. \n\nMany people are eligible to renew their passports online. \n\n[https://travel.state.gov/content/travel/en/passports/have-passport.html](https://travel.state.gov/content/travel/en/passports/have-passport.html)', 'created': '2024-11-12 21:03:15', 'submission_id': '1gpbljq'}
{'comment': 'They will so walk all over this guy. His only qualification to do this is he watched the TV show Madame Secretary.', 'created': '2024-11-12 04:31:04', 'submission_id': '1gpbi5s'}
{'comment': 'Not the worst choice, certainly far scarier options were available 👍', 'created': '2024-11-12 04:48:16', 'submission_id': '1gpbi5s'}
{'comment': 'Donald got Rubio to quit the senate so he can fire him in 6 months. Revenge hire', 'created': '2024-11-12 06:09:59', 'submission_id': '1gpbi5s'}
{'comment': 'Doesn’t this free up a senate seat for a special election?', 'created': '2024-11-12 05:00:33', 'submission_id': '1gpbi5s'}
{'comment': 'He will fired by tweet in a year.', 'created': '2024-11-12 12:45:38', 'submission_id': '1gpbi5s'}
{'comment': 'Honestly could be way worse. Whatever.', 'created': '2024-11-12 04:52:50', 'submission_id': '1gpbi5s'}
{'comment': 'If it is Rubio....I can live with it. But I doubt it is Rubio.', 'created': '2024-11-12 04:54:09', 'submission_id': '1gpbi5s'}
{'comment': 'Ew…Rick Scott as a Senate leader and Marco Rubio as Secretary of State?! Can I have a nuclear bomb dropped on me, please?', 'created': '2024-11-12 14:03:46', 'submission_id': '1gpbi5s'}
{'comment': 'I used to think Rubio was attractive. You guys can all make fun of me now.', 'created': '2024-11-12 13:42:26', 'submission_id': '1gpbi5s'}
{'comment': 'https://preview.redd.it/a8uics6luh0e1.jpeg?width=1170&format=pjpg&auto=webp&s=ef5f6695c4e6c807d2d65a377532a8699a15c3f2', 'created': '2024-11-12 17:03:16', 'submission_id': '1gpbi5s'}
{'comment': 'Hahahaha', 'created': '2024-11-12 10:45:10', 'submission_id': '1gpbi5s'}
{'comment': 'I wonder how many of these suckups will leave before 2029? I forgot how many cabinet secretaries in Trump first term had to resign because of a scandal.', 'created': '2024-11-12 13:53:51', 'submission_id': '1gpbi5s'}
{'comment': "I wish he'd give Cruz and Jordan seats. It would get them out of congress.", 'created': '2024-11-12 14:22:37', 'submission_id': '1gpbi5s'}
{'comment': 'Hey its LIttLittlele Marco! \n\nhttps://preview.redd.it/l21f34745h0e1.png?width=786&format=png&auto=webp&s=5450a5055515ff6fd5e5d256db1df145e7919fe2', 'created': '2024-11-12 14:40:34', 'submission_id': '1gpbi5s'}
{'comment': 'I wonder if Ron DeSantis will get a spot', 'created': '2024-11-12 14:41:21', 'submission_id': '1gpbi5s'}
{'comment': 'Rubio isn’t the worst, he tapped Noem for Homeland Security..', 'created': '2024-11-12 15:03:44', 'submission_id': '1gpbi5s'}
{'comment': 'He’ll probably just spend all his time trying to put more sanctions on Cuba.', 'created': '2024-11-12 05:55:12', 'submission_id': '1gpbi5s'}
{'comment': 'I agree with you 100 percent', 'created': '2024-11-12 04:31:35', 'submission_id': '1gpbi5s'}
{'comment': 'I love that show! Can I be Madam Secretary?! 👩\u200d💼', 'created': '2024-11-12 05:17:42', 'submission_id': '1gpbi5s'}
{'comment': 'I had seen something somewhere (tv program I think) that he was considering Elise Stefanik for SoS. The thought of her in that position made me almost lose my lunch. Rubio is a terrible pick for this, but somehow I think he’ll be less horrible than Stefanik would be. I guess we’ll see.', 'created': '2024-11-12 07:07:33', 'submission_id': '1gpbi5s'}
{'comment': 'Not the best choice either. Though the pool he’d choose from is pretty limited in experience and competency. Rubio may get walked over, but he won’t do something completely absurd and dangerous….I think.', 'created': '2024-11-12 04:50:38', 'submission_id': '1gpbi5s'}
{'comment': 'Roger Stone, Steve Bannon, Alex Jones?', 'created': '2024-11-12 14:40:58', 'submission_id': '1gpbi5s'}
{'comment': 'No, DeSantis will appoint someone until the midterms IIRC.', 'created': '2024-11-12 06:12:16', 'submission_id': '1gpbi5s'}
{'comment': 'Elon has a bot for that', 'created': '2024-11-12 14:41:47', 'submission_id': '1gpbi5s'}
{'comment': 'Hahhahha', 'created': '2024-11-12 12:46:31', 'submission_id': '1gpbi5s'}
{'comment': "Yeah. I was going to say the same thing. \n\nI definitely do not like Rubio for his politics. \n\nBut he's not completely incompetent--or outright crazy--like some of the people Trump will place another positions. \n\nAnd he will. Because now Trump's demanding that he do recess appointments so that cabinet members may not even be confirmed through congressional committee and final vote \n\nhttps://thehill.com/homenews/4983721-trump-senate-recess-appointments-gop-support/", 'created': '2024-11-12 11:54:11', 'submission_id': '1gpbi5s'}
{'comment': 'For real', 'created': '2024-11-12 20:53:13', 'submission_id': '1gpbi5s'}
{'comment': 'Same, but we can’t just admit it out in the open like this!', 'created': '2024-11-12 20:35:13', 'submission_id': '1gpbi5s'}
{'comment': 'https://preview.redd.it/0sy66f1muh0e1.jpeg?width=1170&format=pjpg&auto=webp&s=f445d24a5249a6e72da7c1eea4d8e6de40fbed79', 'created': '2024-11-12 17:03:24', 'submission_id': '1gpbi5s'}
{'comment': "He is a good fit for their agenda for Department of Education. He has done a lot in Florida too implement christo fascist policies. \n\nAnd I'm sure he'd be happy to dismantle it in other ways", 'created': '2024-11-12 15:15:47', 'submission_id': '1gpbi5s'}
{'comment': 'I don’t think so or Nikki Haley . Remember they ran against Trump ..', 'created': '2024-11-12 16:07:26', 'submission_id': '1gpbi5s'}
{'comment': 'Who will be the worst of the worst? Yes we will soon see.', 'created': '2024-11-12 07:19:03', 'submission_id': '1gpbi5s'}
{'comment': "Well, Stefanik got tapped for UN Ambassador, so it's not too far off...", 'created': '2024-11-12 15:04:17', 'submission_id': '1gpbi5s'}
{'comment': "Unfortunately.. 'Not the worst' is the MAGA equivalent of'best'", 'created': '2024-11-12 04:56:57', 'submission_id': '1gpbi5s'}
{'comment': "No one who we'd have chosen was going to get the pick lol 😊", 'created': '2024-11-12 05:01:02', 'submission_id': '1gpbi5s'}
{'comment': 'In some ways I hope this is true. I had seen that he was considering Elise Stefanik for Secretary of State. Now THAT is a truly frightening thought.', 'created': '2024-11-12 07:08:45', 'submission_id': '1gpbi5s'}
{'comment': 'What the Constitution says (not that it matters anymore):\n\n\n>When vacancies happen in the representation of any State in the Senate, the executive authority of such State shall issue writs of election to fill such vacancies: Provided, That the legislature of any State may empower the executive thereof to make temporary appointments until the people fill the vacancies by election as the legislature may direct.', 'created': '2024-11-12 12:22:56', 'submission_id': '1gpbi5s'}
{'comment': 'How many Scaramucchis?', 'created': '2024-11-12 13:27:44', 'submission_id': '1gpbi5s'}
{'comment': 'I can’t stand his bible thumping', 'created': '2024-11-12 13:42:53', 'submission_id': '1gpbi5s'}
{'comment': 'Ah, maybe that’s what I was seeing out there and just got my signals crossed. Yikes. She’s awful.', 'created': '2024-11-12 15:05:44', 'submission_id': '1gpbi5s'}
{'comment': 'Elise, I can see Canada from my district, Stefanik? They aren’t bringing their best people…', 'created': '2024-11-12 13:26:09', 'submission_id': '1gpbi5s'}
{'comment': 'Probably a 100 this time around', 'created': '2024-11-12 13:28:06', 'submission_id': '1gpbi5s'}
{'comment': 'I was remembering it incorrectly. He tapped her apparently for UN ambassador. Just as bad :(', 'created': '2024-11-12 15:47:54', 'submission_id': '1gpbi5s'}
{'comment': 'There’s a lot of issues it would cause. For starters, special education funding for the states would take a massive hit.', 'created': '2024-11-12 04:53:49', 'submission_id': '1gpaqet'}
{'comment': 'Read that forbes article and realize the reason they want to do this: so the money can go to private and christian schools. The rich and the religous want a little tax break for their kids, at the expense of the laundry list of people that will be affected.\n\n\nThe more of the less than fortunate are out of education, the better the tests look artificially, so thats a bonus they can hide behind. Kinda like covid, but this has been around longer.\xa0', 'created': '2024-11-12 05:22:18', 'submission_id': '1gpaqet'}
{'comment': "The DOE doesn't run schools but it helps fund a lot of programs. Those programs will be cut in red states. Blue states will find ways to backfill the lost funding. So basically no DOE fucks Trump voters most. Leopards be gettin fat.", 'created': '2024-11-12 07:26:08', 'submission_id': '1gpaqet'}
{'comment': "DEEPLY offended by Trump saying the people who work at the DOE hate children. What a horrible thing to say!! Also insinuating that all schools teach kids to hate America. I retired after decades and never taught kids to hate America. So ridiculous. \n\nBut no DOE means no FAFSA/gov't loans for college, extremely reduced, if any, special ed services, no FAPE...", 'created': '2024-11-12 07:22:09', 'submission_id': '1gpaqet'}
{'comment': "they want to move funding to a grants based process where they will prioritize private schools and schools that do what they say in regards to things like sex education, history, health discussions, anything else in the lost of demands project 2025 can come up with. \n\nthey say they want to return it to the control of states knowing that essentially few state / local governments can come close to funding education unless they play ball. the only way to keep schools open would be large state/local tax increases and because of how insane ppl are about taxes anyone who goes down that path will lose an election to someone who says 'i will cut your taxes by forcing compliance with trumpucation and saving schools' and some small grant funding will funnel in again when your local school opens with the only books in the school library being the trump bible, a history book written by steve bannon, and a mathbook written by Terrance Howard", 'created': '2024-11-12 05:39:49', 'submission_id': '1gpaqet'}
{'comment': 'The Dept. of Education has no control over school curriculum, it advises on school standards. It functions with civil rights authority to ensure schools have equal opportunity and have accommodations for disabled students or students with learning disabilities. It does have some funding oversight but it’s biggest funding function is administering FASFA, federal student aid for higher education. Getting rid of the Dept. of Education ensures schools in wealthier neighborhoods have better facilities and after school programs and schools in poor neighborhoods don’t have equal facilities standards. I have no idea where they think they’ll stick FASFA. It’s a terrible idea but buckle up because it’s only one of the first.', 'created': '2024-11-12 05:18:33', 'submission_id': '1gpaqet'}
{'comment': 'I wonder when the red state legislators start getting pushback from their constituents, if they’ll remain loyal to them or Trump. I feel like there is massive infighting on the horizon.', 'created': '2024-11-12 06:34:00', 'submission_id': '1gpaqet'}
{'comment': 'In private school , you can indoctrinate kids to be white supremacists.', 'created': '2024-11-12 06:50:29', 'submission_id': '1gpaqet'}
{'comment': "More deep cuts for public schools & even deeper cuts to college grants & loans. \n\nYou think there's a student debt problem now? No DOE will mean a debt explosion. \n\nThere will also be a reduction of educational & textbook standards across the board, as the DOE does set out basic guidelines, altho' states are not obligated to follow them & many don't.", 'created': '2024-11-12 09:33:03', 'submission_id': '1gpaqet'}
{'comment': 'Are you familiar with the term "shit show"? It looks a little bit like that.\n\nFirst thing are lawsuits against the federal government due to funding. The DoE doesn\'t just manage curriculum, it funds a wide range of programs including low income communities, special education (IDEA), school improvement grants, Pell grants, a variety of federal loans, TRIO for first gen students, graduate assistance, head start and preschool grants... An endless list of federal aid that will either be interrupted or no longer exist.\n\nNext we get to listen to intrastate lawsuits, the lawsuits by citizens and education groups against state governments who take it upon themselves to decide who gets to go to school, who does not, and what they learn. The shitshow continues.\n\nIt\'s going to be a fucking mess.', 'created': '2024-11-12 10:14:55', 'submission_id': '1gpaqet'}
{'comment': "He can't shut down the Department without Congress, though they can try and hobble it. Even if they managed to pass legislation to close it, they'd still have to move most of it's functions elsewhere...", 'created': '2024-11-12 04:39:55', 'submission_id': '1gpaqet'}
{'comment': 'Remember that uneducated people are much more likely republican voters. They\'re raising the next generation of "red or bust" voters. And if you\'re rich enough to afford private school - chances are you\'re already a republican.', 'created': '2024-11-12 09:06:57', 'submission_id': '1gpaqet'}
{'comment': 'Forbes has an article talking about it \n\nhttps://www.forbes.com/sites/maryroeloffs/2024/11/11/will-trump-eliminate-the-department-of-education-what-we-know-as-elon-musk-applauds-good-idea/', 'created': '2024-11-12 04:25:31', 'submission_id': '1gpaqet'}
{'comment': 'They are literally trying to kill the DOE in Oklahoma. If you want a preview of where we are headed, watch what’s happening in Oklahoma. 😑 Schools are religious charters that steal from public education and rip off tax-payers.', 'created': '2024-11-12 12:19:13', 'submission_id': '1gpaqet'}
{'comment': 'From the party of “the government doesn’t work, elect me & I’ll prove it!” …', 'created': '2024-11-12 11:46:40', 'submission_id': '1gpaqet'}
{'comment': 'Administratively, the DOE has been tasked with implementing the 14th Amendment and its Equal Rights and Equal Protection clauses. You get rid of the DoE or its funding and then you have gravely crippled the federal governments ability to make sure that that states do not treat different groups of people withe different sets of laws.\n\nReducing or eliminating federal funding for education means no federal standards for education. what it means to be educated becomes a matter of state control. \n\nDo You want to:\n\nteach Creationism? Go ahead. \n\nteach that slavery was a good thing because the African savages learned skills and were uplifted by noble white men? Go ahead. \n\nteach White nationalism? Go ahead. \n\nHolocaust denialism? Go ahead, \n\nHide/Ban books/websites/movies/music/art that speak about sex or gender, or worse yet only mention it as a perversion? Go ahead. \n\nFail to include special education, or make any attempt to mainstream disabled children? Go ahead. \n\nThink girls need sewing classes but boys need metal shop? Go ahead. \n\nDo you want to teach about Einstein and Pauling but “forget” the contributions of Alvarez? Want to tell kids about Schockley, Crick & Watson but forget about Levi-Montalcini or Rosalind Franklin? No moon landing? Mars is a viable habitat for humans? Teslas are the best EVs? Go ahead, go ahead, go ahead. \n\nForget about Title I (equal access for financially disadvantaged schools), Title II (equal access for disabled students), Tile IV (financial aid for post secondary education) or Title IX (equal programming regardless of sex assigned at birth), Brown vs. the Board of Edication and school nutrition standards. \n\nWhat it means to be educated will vary greatly from one side of town to the next.', 'created': '2024-11-12 13:22:06', 'submission_id': '1gpaqet'}
{'comment': 'There is no good justification for shutting it down', 'created': '2024-11-12 05:45:11', 'submission_id': '1gpaqet'}
{'comment': 'No more federal student loans for college', 'created': '2024-11-12 13:05:48', 'submission_id': '1gpaqet'}
{'comment': 'The uneducated are easier to control and manipulate.', 'created': '2024-11-12 13:29:05', 'submission_id': '1gpaqet'}
{'comment': 'Anyone who needs student grants or loans for college will have to try to find private lenders.Considering almost 90% of students rely on some form of financial aid, that spells doom for not only American colleges and universities and the communities that depend on them, but the future of the nation in dozens of diffeeent ways from economic to national security. \n\nStudents in K-12 will lose a lot of opportunities ranging from special education to breakfast and lunch programs and a whole lot in between. Dual credit and AP programs will likely disappear.\n\nLosing Head Start will cost lower income children an opportunity for preschool (and their parents an affordable child care option).', 'created': '2024-11-12 14:07:59', 'submission_id': '1gpaqet'}
{'comment': 'No educational standards, no money for schools, yeah, its a bad idea', 'created': '2024-11-12 13:00:53', 'submission_id': '1gpaqet'}
{'comment': 'It\'s a TERRIBLE idea. For one thing, it\'s going to lead to a whole lot of PROPAGANDA in text books.\n\nThink: kids in public schools not learning about slavery, the holocaust, evolution. Instead they\'ll learn "young earth" crap, creationism, and about "happy black people working on plantations for beloved bosses".\n\nI\'m not kidding.', 'created': '2024-11-12 14:55:40', 'submission_id': '1gpaqet'}
{'comment': 'Looks to me like we just elected a king who expects to keep the masses ignorant and poor, so they do his dirty work. When you elect an imbecile his supporters are well represented.', 'created': '2024-11-12 18:15:05', 'submission_id': '1gpaqet'}
{'comment': 'It’s devastating as we are currently stationed in a red state and we do rely on the public school system. We don’t have an option to up and move.', 'created': '2024-11-12 14:32:50', 'submission_id': '1gpaqet'}
{'comment': 'Can Trump abolish the DoE without an act of Congress?', 'created': '2024-11-12 16:59:14', 'submission_id': '1gpaqet'}
{'comment': 'Education? Where we’re going we don’t need education just capitulation to dear leader.', 'created': '2024-11-12 22:24:58', 'submission_id': '1gpaqet'}
{'comment': 'Probably because your family member has no idea how education works.\n\nEducation is overwhelmingly a state matter. The federal government provides money and some guidance, but the bulk of it is up to the states. Even the infamous "Common Core" was a multi-state initiative, not a federal one.\n\nThe idea is that the federal government is an unnecessary layer of bureaucracy and that the states can handle the whole thing on their own. The reality is that the Department of Health, Education, and Welfare was created after World War II because some states were doing a poor job of educating their citizens and this was harming national defense readiness. (In 1978, DHEW was split into DHHS and Department of Education.)\n\nOverall, eliminating the Department of Education is as likely to happen as Bush privatizing Social Security after the 2004 election. It\'s 100% DOA in the Senate.', 'created': '2024-11-12 15:59:53', 'submission_id': '1gpaqet'}
{'comment': "kids don't need no edumaction. oopsie! bojo jr. just lost another finger to a machine at the meat packing plant cause he can't read. /s", 'created': '2024-11-12 13:26:56', 'submission_id': '1gpaqet'}
{'comment': 'Looks like fucking republicans winning all the time. They thrive with ignorants.', 'created': '2024-11-12 13:29:09', 'submission_id': '1gpaqet'}
{'comment': 'Most of education funding and administration happens at the state level. Your traditional schools for kids without special needs are gonna mostly continue as before. \nFeds pump a lot of money in to special ed and mandate a lot of requirements for other funding. Kids on the edges are gonna get screwed when federal money quits flowing to pay for screen readers and assistive tech for kids with disabilities and staff pay to support that.', 'created': '2024-11-12 15:43:03', 'submission_id': '1gpaqet'}
{'comment': 'Ryan Walters here in Oklahoma already has a plan ready to launch to dismantle the DoE here called the "Trump Education Advisory Committee"\n\n\nPretty scary shit, my oldest is a junior, but my youngest still has three more years, they are also special needs.', 'created': '2024-11-12 23:08:39', 'submission_id': '1gpaqet'}
{'comment': "No federal regulations also, so you can bet thee good ole church will be forced into the majority of schools, especially in Southern rural areas. \n\nWill they allow Qurans, or any other book besides the trump Bible? \n\nThey've already started forcing it in public schools, pushing for the ten commandments, creating such a restricted allowances for what Bible qualifies that only trumps Bible follows the law... its sickening how far they are trying to integrate church and the state.", 'created': '2024-11-12 23:45:37', 'submission_id': '1gpaqet'}
{'comment': 'Anyone think of a reason why they\'d want to keep education out of the hands of young people? Like maybe reading about America and what\'s happening here and what\'s gone on in the past is not something they\'d like people to grow up with? Any countries currently operating on the principle that "the citizens don\'t need to know what the overlords are doing because it isn\'t good for them?"\n\nHow many generations of information-purge will it take before we\'re completely dependent on their narrative?', 'created': '2024-11-12 17:07:48', 'submission_id': '1gpaqet'}
{'comment': '[removed]', 'created': '2024-11-12 18:19:28', 'submission_id': '1gpaqet'}
{'comment': 'So, as someone who relies on FAFSA for their education... do I just kiss my hope for a degree goodbye?', 'created': '2024-11-13 04:20:42', 'submission_id': '1gpaqet'}
{'comment': 'No department of education means funding for vocational and technical education will be eliminated. Elimination of this department will mean eliminating oversight of curriculum that are compliant with ADA and EEO standards. This is the leverage the retrumplicans want to withhold state funding if the curriculum and educations materials don’t meet their judgment based edicts regarding removing discrimination based content, force their white Christian beliefs taught in all schools, and elimination of diversity LGBTQ inclusion. In addition it is a way to divert the money to line the pockets of the white elite. The arts will no longer be a funding priority in addition to special needs programs. It’s pretty glum. It will insure that the privileged will be selected unfettered for universities eliminating the socioeconomically disadvantaged competition.', 'created': '2024-11-16 03:38:51', 'submission_id': '1gpaqet'}
{'comment': 'It would disappear. The only reason schools fund it now is bc they lose their federal funding if they are out of compliance. But schools are running out of pencils. The expensive special education funding is not going to be prioritized over asbestos repair and crayons.', 'created': '2024-11-12 14:13:00', 'submission_id': '1gpaqet'}
{'comment': "Yep, as a parent of two kids on IEPs, I'm not happy about this.", 'created': '2024-11-12 14:53:31', 'submission_id': '1gpaqet'}
{'comment': 'Pretty ironic considering that it was the working class that got him the presidency. They completely fucked over their kids and destroyed their chances at economic mobility, because they thought that he would make eggs cheaper.', 'created': '2024-11-12 15:32:49', 'submission_id': '1gpaqet'}
{'comment': 'No, it hurts children. Generationally. \nYes Trump voters are going to be shocked pichau face about this, and faux rage. But, kids are who get hurt by this. \n\nThat breaks my heart.', 'created': '2024-11-12 13:21:43', 'submission_id': '1gpaqet'}
{'comment': 'The thing I wish people would remember when they (almost gloatingly) say things like "this will hurt red states more":\n\nSetting aside Wyoming and West Virginia (and those two have some weirdness going on), even the "Deep Red" states had at least 1/3 of their voters vote for Harris. So when the "red" states get hurt worse, it hurts a lot of people that voted \\*against\\* the leopards too.\n\n \nI am all for the schadenfreude when you see an \\*actual\\* case of leopard/face, but please remember just because a state or population group had a "majority" for Trump, that doesn\'t indicate the whole demographic.\n\nThe leopards are going to be eating \\*everyone\'s\\* faces, and a lot of people in "red" states were doing everything in their power to stop it. Spare some compassion for us, \'cause the next 4+ years are going to really suck here.', 'created': '2024-11-12 14:53:17', 'submission_id': '1gpaqet'}
{'comment': 'Pell grants and federal student loans will be gone. Blue States can’t backfill all this. Pell grants will disappear. Subsidized student loans for college will disappear.', 'created': '2024-11-12 16:23:59', 'submission_id': '1gpaqet'}
{'comment': 'Thoughts and prayers.', 'created': '2024-11-12 14:56:26', 'submission_id': '1gpaqet'}
{'comment': '"Teaching kids to hate america" is new Republican code word for "they teach bad things about America\'s past like Slavery and segregation".', 'created': '2024-11-12 13:34:18', 'submission_id': '1gpaqet'}
{'comment': 'I grew up in a house with a mother who was a drug addict. I was a little shit at school sometimes, but school was where I got to escape, and I was so lucky that I had quite a few teachers who knew what my home life looked like and chose to help me succeed. They saw through my little schtick and helped me. Some of those seeds they planted are just now sprouting in my 40’s. I can never thank them enough! I really hope he is not able to go through with defunding the DOE. It would a huge disservice to this country.', 'created': '2024-11-12 14:01:43', 'submission_id': '1gpaqet'}
{'comment': 'Quick story, I apologize. \n\nMy wife has a Master\'s in counseling, and is a school counselor for elementary. Before she was a counselor, she was a case worker for years for adults and then elementary age kids...which was brutal on her, but she did it because they deserved to have someone care about them. \n\nWhen the Dobbs decision happened, she made a post on FB about it posting resources for anyone who might need them, how upset she was about it all. She\'s also told me she\'d never personally get an abortion, but will 100% support a women\'s right to choose forever. My stepmom made a comment on her post about how my wife hates children because she supports a woman\'s choice on it all. Shockingly enough...my wife hasn\'t really wanted to be around my stepmom since that. \n\nUntil a few days ago when my stepbrother talked to her (his mom). Stepmom said "I don\'t think she will ever come around here anymore. Out political differences are too different." He said "no...that\'s not it. Yours and my political differences are very different and I’m still around all the time. But what you said is outright wrong. Do you REALLY think she hates children? She has dedicated her career to helping children. And is now a mother to two kids. Can you with a straight face say she hates children?" It was like a wave hit her. And surprised us that she called to apologize and said she has been wrong and wanted to apologize. Shocked the hell out of us both. But my god, dug her heels in for years about it.', 'created': '2024-11-12 17:21:45', 'submission_id': '1gpaqet'}
{'comment': "That's IF there will be pushback. The right wing media apparatus will spin this as a great thing. That Trump is saving America because of it.", 'created': '2024-11-12 14:36:52', 'submission_id': '1gpaqet'}
{'comment': 'And no FAFSA.', 'created': '2024-11-12 11:40:25', 'submission_id': '1gpaqet'}
{'comment': 'Shutting down a ton of schools is a sure fire way to piss off constituents. Even though many parents/guardians loathe schools for what they call “indoctrination”, they’re going to hate having to watch their kids all day or pay for private school even more.\xa0', 'created': '2024-11-12 04:45:43', 'submission_id': '1gpaqet'}
{'comment': 'Once the vouchers go into place and the conservative governments subsidize it, despite their calls for no socialism, they will siphon enough money away from public schools that they won’t have to pass legislation. It will just happen organically from that point.', 'created': '2024-11-12 05:12:48', 'submission_id': '1gpaqet'}
{'comment': 'They don’t have to shut it down — they just need to shift how they control it.', 'created': '2024-11-12 05:25:20', 'submission_id': '1gpaqet'}
{'comment': 'I don’t know about that. What if they ask GPT CHAT: tell me how to shut down the department of education that a bunch of 5 year olds would understand?\n\nAs one 5 year old to another- why didn’t America ask these questions BEFORE they decided who to vote for???', 'created': '2024-11-12 11:31:18', 'submission_id': '1gpaqet'}
{'comment': "Our state superintendent is acting like it's already happened. 49th in education, aiming for 50th!\n\nhttps://kfor.com/news/oklahoma-education/ok-state-supt-ryan-walters-announces-formation-of-trump-education-advisory-committee/", 'created': '2024-11-12 14:00:28', 'submission_id': '1gpaqet'}
{'comment': 'Congress is now under republican control, and who is going to stop him if he doesn’t want to move those functions elsewhere?', 'created': '2024-11-12 15:06:50', 'submission_id': '1gpaqet'}
{'comment': 'Any such legislation is DOA in the Senate. With the Republican majority projected to be in the single-digits, it might not even get through the House.', 'created': '2024-11-12 16:20:03', 'submission_id': '1gpaqet'}
{'comment': 'Guess what. The Republicans now have control of both houses of Congress. Well done Democrats! Especially those Democrats who sat out this election on their fat asses.', 'created': '2024-11-12 13:32:25', 'submission_id': '1gpaqet'}
{'comment': 'Stop it. Insane hyperbole only please.', 'created': '2024-11-12 05:34:37', 'submission_id': '1gpaqet'}
{'comment': '>Remember that uneducated people are much more likely republican voters\n\nThis. Less education is the end goal. Making sure voters are less educated means republicans can continue to scam them. And to people say that red state constituents will push back, I honestly doubt it. The republicans will feed them lies to get it approved and voters will eat it up. By the time voters realized they been scammed it will be too late, and knowing the giant selfish narcissism of republican voters, they probably won\'t even admit their mistake and double down on it being a good thing for some bs reason (probably something like "now my kids are free to REALLY learn!).', 'created': '2024-11-12 10:07:33', 'submission_id': '1gpaqet'}
{'comment': 'I’ll object to that last part, as a (secular) private school graduate who knows lots of private school graduates. The Rs absolutely stick out like a sore thumb.', 'created': '2024-11-12 11:42:12', 'submission_id': '1gpaqet'}
{'comment': 'Haven’t you heard him saying for years that he loves the uneducated? This 2025 project has been in the works since Reagan was president. The Heritage Foundation keeps tweaking it all the time.', 'created': '2024-11-12 23:42:25', 'submission_id': '1gpaqet'}
{'comment': 'My wife is a teacher going in 25 years. She gets so frustrated because simple talking points like this have large ramifications, and the average person has no clue what it does, or why it’s important, or anything….and in the end, kids end up getting hurt because of it.', 'created': '2024-11-12 14:57:04', 'submission_id': '1gpaqet'}
{'comment': 'I have two with IEP/504 and I will officially cut off all my family whom voted for Trump the minute my kids are impacted and I will tell them exactly why.', 'created': '2024-11-13 01:26:55', 'submission_id': '1gpaqet'}
{'comment': 'We have to abandon hope that the US electorate isnt dumb af, they keep proving it decade after decade.', 'created': '2024-11-12 15:50:28', 'submission_id': '1gpaqet'}
{'comment': "The next generation of Americans will not have college education. We're going to put America behind the entire rest of the world.\n\nBut this is all about redirecting public dollars into private pockets. Christian education will be the only education. The people who complain about indoctrination want indoctrination. It's the same trick over and over and over. Complain about the border while keeping the border fucked up. It's all about directing public dollars into the pockets of the wealthy and the corrupt.", 'created': '2024-11-12 14:33:05', 'submission_id': '1gpaqet'}
{'comment': ">it hurts children. Generationally.\n\nThat's the plan. Trump wasn't lying when he said he loves the uneducated.", 'created': '2024-11-12 15:45:39', 'submission_id': '1gpaqet'}
{'comment': 'But they owned the Libs so that makes all the suffering worthwhile.', 'created': '2024-11-12 15:15:14', 'submission_id': '1gpaqet'}
{'comment': 'Book a U-haul to a blue state. May I suggest Upstate New York or Illinois outside metro Chicago -- red and redish areas in blue states that could really use an influx of forward looking people. Also, thinking this will only last 4 years is very wishful thinking.', 'created': '2024-11-12 15:21:21', 'submission_id': '1gpaqet'}
{'comment': 'Likewise, Trump got more votes in California than in any other state.', 'created': '2024-11-12 16:14:03', 'submission_id': '1gpaqet'}
{'comment': "Blue States can. California and New York have pretty much made community college free already. Tuition is also covered for kids from modest backgrounds with decent grades in both California and New York.\n\nI have mixed feelings about student loans. They've fueled insane increases in tuition, allowed scam for profit schools to proliferate, and become albatrosses around the necks of young people from working class families.", 'created': '2024-11-12 16:37:34', 'submission_id': '1gpaqet'}
{'comment': 'School is a escape for children like you and those who are physically abused and neglected. A place where they can get food. This is so terrible. Apparently voters are “surprised” by this and weren’t aware of Trumps stance on the DOE.', 'created': '2024-11-12 14:24:03', 'submission_id': '1gpaqet'}
{'comment': 'So Animal Farm coded. Welcome to America Farm.', 'created': '2024-11-12 14:58:41', 'submission_id': '1gpaqet'}
{'comment': 'Remember the pandemic when it was like a month before parents wanted the kids out of the house', 'created': '2024-11-12 04:55:05', 'submission_id': '1gpaqet'}
{'comment': 'The amount of program funding that would be lost is substantial which would cause states, counties and cities to be forced to increase property taxes, and other taxes to make up the difference.', 'created': '2024-11-12 04:55:31', 'submission_id': '1gpaqet'}
{'comment': None, 'created': '2024-11-12 12:56:57', 'submission_id': '1gpaqet'}
{'comment': 'I bet they make a hard push for virtual schools. 1 teacher and a hundred virtual students. The smart kids will adapt and the ones that fall out will feed the military machine and prison industrial complex.', 'created': '2024-11-12 12:42:22', 'submission_id': '1gpaqet'}
{'comment': '“I’m gonna deport the people you don’t like”', 'created': '2024-11-12 13:05:32', 'submission_id': '1gpaqet'}
{'comment': 'It was before, including 2017-2019. And who is going to stop him? The representatives whose districts benefit from federal funding. The same people who step in every time there’s a true threat to any kind of federal funding streams. Something to remember is most of the time when they talk about cutting spending they’re they’re actually just planning to not increase it and then it’s seem as a cut because it’s less than what it was projected to be. Then they claim victory and move on.', 'created': '2024-11-12 15:43:20', 'submission_id': '1gpaqet'}
{'comment': "It's not insane hyperbole, it was literally a top campaign promise. Time to pull your head out of the sand. Even if it continues to exist in name, the DOE is dead.", 'created': '2024-11-12 11:51:55', 'submission_id': '1gpaqet'}
{'comment': 'Private religious schools are already getting funding', 'created': '2024-11-12 09:48:39', 'submission_id': '1gpaqet'}
{'comment': "It's getting exhausting. I get that people are upset, I am too. I'm worried about the environment and climate, about my rights as a gay man, the rule of law and all that but becoming hysterical isn't going to help anything but I feel like that is where a lot of people are...", 'created': '2024-11-12 05:52:14', 'submission_id': '1gpaqet'}
{'comment': 'Correct, and SO many people will go ahead and rationalize voting this way because, "my kids are grown, what do I care about education?" or, "I have no kids, so yes, let\'s vote for the guy planning to dismantle education oversight!" It\'s so frustrating how many people can only vote on immediate needs, and lack the ability to consider the future ramifications of these short term actions. \n\nI\'m glad to live in Massachusetts, but I\'m not sure that\'s going to be enough this term, and I feel for everyone in every other state.', 'created': '2024-11-12 15:01:01', 'submission_id': '1gpaqet'}
{'comment': 'A friend was telling me how on the day after the election the special ed teacher at a PTA meeting had on a Trump scarf and was so happy they thought they might’ve had a drink or two. \n\nThis is a teacher of special education… wtf?!?', 'created': '2024-11-12 20:35:15', 'submission_id': '1gpaqet'}
{'comment': '>Christian education will be the only education.\xa0\n\nAmerican madrassas. Ironic.', 'created': '2024-11-12 15:12:55', 'submission_id': '1gpaqet'}
{'comment': "I believe this year's senior class (Class of 2025) is going to be the biggest in American history. Then the number of 18 year olds is going to start dropping. Colleges are preparing for a big demographic crunch in the next few years. \n\nAlso, Gen-Z has VERY different attitudes about college education than Millennials. \n \nMillennials took the advice of their Boomer parents and went to college and studied what they wanted because college was a ticket to the middle class and grad school even more so. Unfortunately, their parents unknowingly gave them bad advice and way too many of them graduated into the Great Recession with degrees that weren't in demand. So they ended up with high expectations, lots of debt, and no career path. \n \nGen-Z saw what happened to this generation and wants none of it. Gen-Z IS going to college, but they are studying different things. Humanities are collapsing with Gen-Z looking to more practical, job oriented degrees. They are also looking more to affordability and less to prestige when they make their college choices. Regional state universities (Not-a-State State U, Directional State U, State U at Branch Campus, etc.) are booming because they offer great value at a low price for in-state students. \n \nThe youth are more conservative because Gen-Z is more conservative. Millennials are just super liberal. For the boys especially, being conservative feels like rebellion against a popular culture dominated by Millennials.", 'created': '2024-11-12 16:13:32', 'submission_id': '1gpaqet'}
{'comment': 'Easy to say, a lot harder to pull off', 'created': '2024-11-12 15:22:10', 'submission_id': '1gpaqet'}
{'comment': 'Do those areas need an experienced special education teacher? Asking for a friend. Well, actually, I am asking for me. I teach in West Virginia, so blue states are looking quite attractive at the moment.', 'created': '2024-11-12 23:51:14', 'submission_id': '1gpaqet'}
{'comment': "You know, it's almost like the blue state/red state thing and the electoral college in general is a dumb way to decide elections.....", 'created': '2024-11-12 16:16:42', 'submission_id': '1gpaqet'}
{'comment': 'Ok. So the states and the state schools who do this can do this in part because they receive Federal funds dude. If they lose 20% of their revenue this will be impossible to continue without tax increases by those States. the States will also grapple with the loss of Federal funds for Medicaid and other programs. You are looking at a huge budget hole in NY, CA etc. they would need to raise taxes significantly. What do you think Republicans will do in state campaigns after? The Dems are raising taxes in California.', 'created': '2024-11-12 16:44:43', 'submission_id': '1gpaqet'}
{'comment': 'Community college is also free in Michigan', 'created': '2024-11-12 19:13:38', 'submission_id': '1gpaqet'}
{'comment': 'I have the popcorn ready for the hysterics when school sports and activities, most notably football, are cut.', 'created': '2024-11-12 15:00:01', 'submission_id': '1gpaqet'}
{'comment': "Military doesn't want dropouts. They won't need them as warfare is increasingly automated or remote or potentially nuclear. What's that leave?", 'created': '2024-11-12 20:13:42', 'submission_id': '1gpaqet'}
{'comment': '"I\'m going to deport the people I\'ve told you not to like."', 'created': '2024-11-12 13:26:45', 'submission_id': '1gpaqet'}
{'comment': 'Thanks for easing my mind a bit. I do hope this is how it goes.\n\nHave a great day!', 'created': '2024-11-12 16:03:52', 'submission_id': '1gpaqet'}
{'comment': None, 'created': '2024-11-12 13:03:50', 'submission_id': '1gpaqet'}
{'comment': 'There is some pathological need people have to embellish what is already bad enough on its own, and it undermines whatever good point is trying to be made. Like, there’s no reason to spice it up all the time. Stop.', 'created': '2024-11-12 06:00:18', 'submission_id': '1gpaqet'}
{'comment': 'i hate that some people genuinely feel "i have no kids so who cares"\n\nbecause i have no kids but it is still logical to me that kids deserve safe and accessible quality education so they can be a well informed member of society. \n\nlike kids education also affects me because guess who will be taking care of me when i\'m a senior? these kids... because if i am lucky enough to live to old age, gen z, alpha and beta will be the ones in charge of the policies affecting me, they will be the ones stasffing the nursing homes i am living in. they will be my doctors and nurses and hell my mortician. \n\ni want them educated because i live in a society. and fuck anyone who thinks \'i dont have kids so fuck them\' \n\nthis is not a rant at you -- just anger at the fact that i know you\'re right and i cant make people understand that society thrives by taking care of each other and not pushing people down once you\'ve gotten yours.', 'created': '2024-11-12 16:29:58', 'submission_id': '1gpaqet'}
{'comment': 'We’re in MO and it’s already tough here. About to get worse.', 'created': '2024-11-12 15:02:04', 'submission_id': '1gpaqet'}
{'comment': 'I think selfishness and "I\'ve already got mine so who cares about you" is definitely an issue -- what blows my mind is that I am related to people with young children, *including a teacher in the public school system,* who still thought trump was a good choice!', 'created': '2024-11-12 17:23:30', 'submission_id': '1gpaqet'}
{'comment': 'I live in WA state and my only grandchild is in Pre-k this year. My other children are grown. I am terrified about what this is going to look like for her.\nHonest question: why on earth, what is the "official reason" why Trump wants to dismantle the DOE?', 'created': '2024-11-12 17:55:15', 'submission_id': '1gpaqet'}
{'comment': 'I’ve heard this so many times. My kids are grown too but education is so important. Every year my town cuts the school budget. I’m fortunate my kids had choices and both chose a technical high school where they learned a trade and were able to attend college. I’m not so sure if high schoolers today will have the choice.', 'created': '2024-11-13 01:15:02', 'submission_id': '1gpaqet'}
{'comment': 'Always accuse your enemy of that of which you are guilty.', 'created': '2024-11-12 15:46:06', 'submission_id': '1gpaqet'}
{'comment': "I'm aware. I have family in Texas, Alabama, and Missouri. The Missouri group have almost all moved across the river to Illinois. Moving will be a lot harder for the Texas and Alabama groups. I bought a big old six bedroom house on the NY/VT border a couple of years ago.", 'created': '2024-11-12 15:32:53', 'submission_id': '1gpaqet'}
{'comment': 'My part of Upstate New York is always looking for special ed teachers.', 'created': '2024-11-13 01:28:45', 'submission_id': '1gpaqet'}
{'comment': 'Yes, but as we saw, there is no permanent benefit to one party or the other and it usually doesn\'t matter. Splits are historically rare, even though they have happened twice in the past 24 years. \n \nIn 2000, 2016, and 2020, it benefited Republicans. In 2004, 2012, and 2024, it benefited Democrats. (Not sure about 2008 because that wasn\'t close.) \n\nThe two "extra" votes that each state gets have only changed the outcome three times: 1876, 1916, and 2000. In 1916, this helped the popular vote winner win the election. \n\nThe big issue with doing away with the electoral college is that it would require federalizing elections so that a vote from California was cast under the same conditions as a vote from Florida. We have 51 different election systems that would have to be merged into one.', 'created': '2024-11-12 16:27:27', 'submission_id': '1gpaqet'}
{'comment': 'These states fund the federal government.', 'created': '2024-11-12 16:51:09', 'submission_id': '1gpaqet'}
{'comment': 'I too hope football is the first cuts.', 'created': '2024-11-13 00:37:06', 'submission_id': '1gpaqet'}
{'comment': 'People don’t need to be calm but I think it’s important to consider what they are most likely to be able to get done and focus on countering that. They’ve wanted to shut down the Department of Education almost since it was formed and haven’t managed to do it yet despite having had much larger margins before.', 'created': '2024-11-12 13:13:04', 'submission_id': '1gpaqet'}
{'comment': 'Americans behave like crabs in a bushel instead of patriots. \nWaving a flag and yelling the loudest doesn’t make you a patriot. Taking care of and caring about ALL of your fellow citizens regardless of whether they look or think like you IS patriotic. \nAnyone who thinks that because they don’t have kids, or have grown kids, that this will not affect them is selfish, shortsighted and an ignorant POS.', 'created': '2024-11-12 16:46:59', 'submission_id': '1gpaqet'}
{'comment': "Yeah, no worries dude, I get it completely. We all benefit from well educated children because they become adults who contribute to society. Since the pandemic, and probably longer, it's become so clear to me how incredibly selfish people are. People cannot see outside their own immediate needs and beliefs, so fuck everyone else. People suck.", 'created': '2024-11-12 21:59:58', 'submission_id': '1gpaqet'}
{'comment': 'Your last sentence says it all.', 'created': '2024-11-12 17:53:05', 'submission_id': '1gpaqet'}
{'comment': "Oof, I'm sorry. Get your wife a flask, she's going to need it!", 'created': '2024-11-12 15:04:04', 'submission_id': '1gpaqet'}
{'comment': "It's infuriating and incredibly short-sited. Our kids will go on to be tax payers, who will pay into systems we hopefully have a chance to benefit from as we hit old age. Making our little humans smarter is always a good option, because as we all can see, we need smarter adults.", 'created': '2024-11-12 21:45:27', 'submission_id': '1gpaqet'}
{'comment': "My dark thought is to keep people stupid, but it's probably something more akin to people making money off of privatized education.", 'created': '2024-11-12 21:40:22', 'submission_id': '1gpaqet'}
{'comment': "It wouldn't necessarily require federalizing elections. NPVIC is at something like 75 or 80% of the electoral votes needed to go into effect, and would not require any states to change anything about their electoral practices.\n\n \nI am personally of the belief that it would drastically reshape elections, because I know of a significant number of people who don't bother to vote because it won't effect the outcome because their state leans overwhelmingly in one direction or the other. Statistically, a large number of nonvoters favor left-leaning voters. Achieving a national popular vote via the NPVIC or some other method would (at least from everything I have seen) massively increase overall voter turnout. The left has a much harder time getting voter turnout vs the right, so I personally think it would be a boon for left-leaning parties and policies.", 'created': '2024-11-12 16:36:48', 'submission_id': '1gpaqet'}
{'comment': 'How? Please provide a citation. The Federal government is funded by income tax revenue on individuals and corporations. The residents of these states pay a disproportionate share but it flows from these entities directly to the Federal government. It does not go through State coffers at all. CPA here, prepare tax returns and make tax payments to the US treasury.', 'created': '2024-11-12 17:06:45', 'submission_id': '1gpaqet'}
{'comment': "I've known one person who ever made it to college football. One. (And he went to a crappy school).\n\nBeing in California, I know a significant amount of people who work in the arts. \n\nI would argue football is the biggest waste of money. Very few ever play past high school and very many damage their brains.\n\nBut it's going to be arts cut before anything else. I am sad for that. Idgaf about football.", 'created': '2024-11-13 00:40:34', 'submission_id': '1gpaqet'}
{'comment': 'Trump wasn\'t so bad in his first term, legislation wise. For 2 years, Republicans controlled both chambers and passed reasonable bills. They have ramped up their rhetoric since then. 515 anti-lgbt bills and this is even before 2024. Now they are going to change things at the federal level. Project 2025 will result in firing government workers and install loyalists even if they aren\'t experienced or suited for the job. There is no way for us to "simply" counter their trifecta. Sure, some governors say they will oppose MAGA. But since Trump said he will be a dictator he will arrest anyone who doesn\'t follow his agenda or laws. He will control the FBI as well. We are in for cataclysmic chaos, do not underestimate their words.', 'created': '2024-11-12 19:55:43', 'submission_id': '1gpaqet'}
{'comment': '5 years to retirement. She’s just trying to get there.', 'created': '2024-11-12 15:05:49', 'submission_id': '1gpaqet'}
{'comment': 'Here you go.\n\n[https://rockinst.org/issue-areas/fiscal-analysis/balance-of-payments-portal/](https://rockinst.org/issue-areas/fiscal-analysis/balance-of-payments-portal/)', 'created': '2024-11-12 17:08:38', 'submission_id': '1gpaqet'}
{'comment': 'Well, tell her this appreciative parent a thousand miles away wishes her the best, she sounds like she cares about what she does and the students she teaches.', 'created': '2024-11-12 15:09:50', 'submission_id': '1gpaqet'}
{'comment': 'Dude, look at the definition of balance of payments. It supports my statement. The Federal taxes are paid by the residents of the State and their businesses directly to the US Treasury. The State governments have no control over these tax payments to the Federal government. NYS cannot tell its citizens and businesses to stop or reduce their tax payments to the US Treasury and the IRS. Look at a 1040 tax return. Jeez.', 'created': '2024-11-12 17:16:33', 'submission_id': '1gpaqet'}
{'comment': None, 'created': '2024-11-12 03:59:48', 'submission_id': '1gpae50'}
{'comment': 'the funniest will be Trump saying "I barely know this guy, who is he"', 'created': '2024-11-12 03:47:12', 'submission_id': '1gpae50'}
{'comment': '', 'created': '2024-11-12 03:45:10', 'submission_id': '1gpae50'}
{'comment': 'He should just pull himself up by his bootstraps.', 'created': '2024-11-12 03:46:43', 'submission_id': '1gpae50'}
{'comment': 'Guliani is a FASCIST and greasy lawyer. He is a convicted felon and hurt this democracy. We need to authorize as much funding as possible to the Ukraine before Trumpler takes power forever.', 'created': '2024-11-12 03:38:56', 'submission_id': '1gpae50'}
{'comment': 'He can eat the dogs, eat the cats, eat the pets, for food.', 'created': '2024-11-12 04:04:53', 'submission_id': '1gpae50'}
{'comment': "He has a daughter and a son. Why don't they help him out?", 'created': '2024-11-12 04:48:25', 'submission_id': '1gpae50'}
{'comment': "I'm happy imagining him living under a bridge and sleeping on a cardboard box. Fuck that fascist.", 'created': '2024-11-12 05:02:14', 'submission_id': '1gpae50'}
{'comment': "There's always a food pantry.", 'created': '2024-11-12 04:50:58', 'submission_id': '1gpae50'}
{'comment': 'But he has money for a bottle of Gin', 'created': '2024-11-12 04:57:06', 'submission_id': '1gpae50'}
{'comment': '', 'created': '2024-11-12 04:55:09', 'submission_id': '1gpae50'}
{'comment': "If we aren't feeding kids free lunch in school anymore I sure as shit ain't feeding this guy", 'created': '2024-11-12 11:37:49', 'submission_id': '1gpae50'}
{'comment': 'Good! Fuck that traitor!', 'created': '2024-11-12 03:50:05', 'submission_id': '1gpae50'}
{'comment': 'Thoughts and prayers snowflake', 'created': '2024-11-12 03:42:18', 'submission_id': '1gpae50'}
{'comment': 'He should get on food stamps…oh wait isn’t the GOP going to eliminate the program?', 'created': '2024-11-12 05:16:18', 'submission_id': '1gpae50'}
{'comment': 'Why isn’t he in the cool kids club on season 2 of The Goddamned Apocalypse? I thought him and Donildo Drump were jerking each other off the whole first year of the pandemic. He not gonna be on RFKs Task force to end flu shots and koolaid?', 'created': '2024-11-12 05:17:29', 'submission_id': '1gpae50'}
{'comment': 'Go ask his papa Trump for some shares of DJT. I am sure the Orange Turd can spare a couple. Who am I kidding. Giuliani has F around and still hasn’t found out yet huh?!', 'created': '2024-11-12 03:50:07', 'submission_id': '1gpae50'}
{'comment': "And yet the Mercedes he was supposed to turn over. He had the audacity to show up to vote in it. The Tangerine Traitor probably helped him hide money offshore where it can't be tracked or touched.", 'created': '2024-11-12 05:09:47', 'submission_id': '1gpae50'}
{'comment': "They will feed you when you're in the joint, loser.", 'created': '2024-11-12 05:20:16', 'submission_id': '1gpae50'}
{'comment': 'So he’ll starve and die? Okay.', 'created': '2024-11-12 04:07:50', 'submission_id': '1gpae50'}
{'comment': 'Cmon, everyone one knows he survives by drinking the blood of the living.', 'created': '2024-11-12 03:53:13', 'submission_id': '1gpae50'}
{'comment': 'sign this \n\nhttps://www.change.org/p/demand-an-investigation-and-recount-into-the-2024-us-election', 'created': '2024-11-12 03:35:42', 'submission_id': '1gpae50'}
{'comment': 'Prison has free meals.', 'created': '2024-11-12 04:12:00', 'submission_id': '1gpae50'}
{'comment': 'https://preview.redd.it/utisz40ike0e1.jpeg?width=805&format=pjpg&auto=webp&s=f2280f082367ee9fda496f8c5ea2c6b0f81dc7e0', 'created': '2024-11-12 06:01:21', 'submission_id': '1gpae50'}
{'comment': 'I heard McDonalds is hiring, some weirdo only worked 30 minutes before quitting.', 'created': '2024-11-12 06:40:13', 'submission_id': '1gpae50'}
{'comment': "Concepts of 'tots and pears.", 'created': '2024-11-12 03:44:40', 'submission_id': '1gpae50'}
{'comment': 'Pick your street corner.', 'created': '2024-11-12 03:43:53', 'submission_id': '1gpae50'}
{'comment': 'Rudy was buying $100 pizzas and $4 polyester ties before his assets were seized. Obviously he’s not used to living on boxed Kraft dinner.', 'created': '2024-11-12 05:20:07', 'submission_id': '1gpae50'}
{'comment': 'It’s sad he seems to be the only one that faced any consequences…', 'created': '2024-11-12 05:35:53', 'submission_id': '1gpae50'}
{'comment': 'Good. Also, we all know this is another bizarre right wing lie and "headline". \n\nThese groups trying to feign anythinf for sympathy points right now also makes me think...something is still off about this whole thing...', 'created': '2024-11-12 06:24:24', 'submission_id': '1gpae50'}
{'comment': 'The State or Feds will give "3 hots and a cot" (for life, if he\'s lucky)', 'created': '2024-11-12 06:25:57', 'submission_id': '1gpae50'}
{'comment': 'I wouldn’t piss on him if he were on fire.', 'created': '2024-11-12 07:44:47', 'submission_id': '1gpae50'}
{'comment': "Oh no. As an atheist I don't even have prayers for Rudy. Not even sure I have the concept of a thought for him.", 'created': '2024-11-12 10:20:53', 'submission_id': '1gpae50'}
{'comment': '“Concepts of thoughts and prayers” is the funniest. Thank you!', 'created': '2024-11-12 13:41:16', 'submission_id': '1gpae50'}
{'comment': 'Scum', 'created': '2024-11-12 03:54:16', 'submission_id': '1gpae50'}
{'comment': "I guess he should lift himself up by his boot straps. Obviously he needs to stop buying coffee all the time and make it at home. /s\n\nAll seriousness couldn't have happened to a nicer person.", 'created': '2024-11-12 03:54:51', 'submission_id': '1gpae50'}
{'comment': 'He should ask trump for money', 'created': '2024-11-12 03:59:44', 'submission_id': '1gpae50'}
{'comment': 'Yet he drives around in a Mercedes. Fuck this ghoul, LOCK HIM UP.', 'created': '2024-11-12 04:06:21', 'submission_id': '1gpae50'}
{'comment': 'From America’s Mayor to dirt poor, courtesy of Donald J. Trump.', 'created': '2024-11-12 04:21:51', 'submission_id': '1gpae50'}
{'comment': 'I really don’t care. Do U?', 'created': '2024-11-12 04:37:04', 'submission_id': '1gpae50'}
{'comment': 'He can rely on social security then like a lot of older Americans have to', 'created': '2024-11-12 05:08:05', 'submission_id': '1gpae50'}
{'comment': '🤷🏼\u200d♂️', 'created': '2024-11-12 05:27:50', 'submission_id': '1gpae50'}
{'comment': 'Can someone please pass the [NYC food bank locations](https://www.foodbanknyc.org/get-help/) to America’s Mayor?', 'created': '2024-11-12 05:31:22', 'submission_id': '1gpae50'}
{'comment': "Oh Rudy, how far you've fallen. I really respected his approach towards the mob. Now it's just sad.", 'created': '2024-11-12 06:24:27', 'submission_id': '1gpae50'}
{'comment': 'Well that’s too bad. Welp, back to sipping my tea and cranberry scones.', 'created': '2024-11-12 06:34:53', 'submission_id': '1gpae50'}
{'comment': "Boohoo :( Maybe you shouldn't have done crimes.", 'created': '2024-11-12 06:41:48', 'submission_id': '1gpae50'}
{'comment': "I'll be holding a canned food drive for Rudy if anyone cares to donate.\n\n\n Anyone?", 'created': '2024-11-12 07:30:43', 'submission_id': '1gpae50'}
{'comment': 'Rudy could lose a few pounds anyway.', 'created': '2024-11-12 08:42:02', 'submission_id': '1gpae50'}
{'comment': 'Perma frown.', 'created': '2024-11-12 12:20:18', 'submission_id': '1gpae50'}
{'comment': 'Dogs and cats, counselor', 'created': '2024-11-12 13:45:27', 'submission_id': '1gpae50'}
{'comment': 'He should be fine now. He stayed loyal to Trump and Trump will put him in charge of a few death camps or something.', 'created': '2024-11-12 13:48:09', 'submission_id': '1gpae50'}
{'comment': 'Me too but I’m not a grifting conman', 'created': '2024-11-12 13:53:02', 'submission_id': '1gpae50'}
{'comment': 'I hope they don’t cut his Social Security. 🤞', 'created': '2024-11-12 14:33:22', 'submission_id': '1gpae50'}
{'comment': 'I’ll believe that when I see him begging in Times Square.', 'created': '2024-11-12 16:31:37', 'submission_id': '1gpae50'}
{'comment': 'Pull up your boot straps Rudy!', 'created': '2024-11-12 16:48:08', 'submission_id': '1gpae50'}
{'comment': 'So he has to eat a $75 steak meal at a 3 star restaurant instead of $250 steak and lobster meal at a 5 star restaurant….\n\nI would toss in my tots and pears but just ate my last pear and I’m using the tots for lunch later.', 'created': '2024-11-12 16:49:22', 'submission_id': '1gpae50'}
{'comment': 'I give concepts of a fuck', 'created': '2024-11-12 17:28:52', 'submission_id': '1gpae50'}
{'comment': 'Someone bring him to the soup kitchen. Just tell him it’s a trump convention. He doesn’t know where he is', 'created': '2024-11-12 05:54:03', 'submission_id': '1gpae50'}
{'comment': "Sorry Rudy, but food's not in the cards for you.\n\n", 'created': '2024-11-12 06:47:59', 'submission_id': '1gpae50'}
{'comment': 'People who are living in tents on sidewalks would likely have a word with him.', 'created': '2024-11-12 07:13:03', 'submission_id': '1gpae50'}
{'comment': 'Ramen noodles only cost 50 cents, Rudy', 'created': '2024-11-12 07:18:21', 'submission_id': '1gpae50'}
{'comment': 'He could hawk his jewelry.', 'created': '2024-11-12 07:20:40', 'submission_id': '1gpae50'}
{'comment': '', 'created': '2024-11-12 07:22:23', 'submission_id': '1gpae50'}
{'comment': 'I wish the same were true of Alex Jones.', 'created': '2024-11-12 07:54:08', 'submission_id': '1gpae50'}
{'comment': '', 'created': '2024-11-12 08:43:56', 'submission_id': '1gpae50'}
{'comment': "Too bad I don't have a concept of a fuck to give.", 'created': '2024-11-12 09:02:34', 'submission_id': '1gpae50'}
{'comment': 'If only there was someone who would have paid him for sevices as theoretically should have. Someone who is supposed to be a billionaire...', 'created': '2024-11-12 16:18:54', 'submission_id': '1gpae50'}
{'comment': 'Can only sell your soul once, so I guess it’s onto the designer [shoes](https://x.com/MikeBeauvais/status/1319287468772839424)', 'created': '2024-11-12 17:03:13', 'submission_id': '1gpae50'}
{'comment': '\n\nLet him starve', 'created': '2024-11-12 17:08:14', 'submission_id': '1gpae50'}
{'comment': 'When he says food he means 4 star restaurants that roll out the red carpet and fawn over him. This fucker can absolutely afford a can of soup.', 'created': '2024-11-12 17:28:19', 'submission_id': '1gpae50'}
{'comment': 'No worries His buddy trump will help him', 'created': '2024-11-12 19:37:20', 'submission_id': '1gpae50'}
{'comment': 'Damn that sucks. Make sure to burn in hell on your way out though.', 'created': '2024-11-13 00:53:50', 'submission_id': '1gpae50'}
{'comment': 'Concepts of me not giving a shit. Oh wait — that’s not just a concept', 'created': '2024-11-12 03:55:13', 'submission_id': '1gpae50'}
{'comment': 'He better apply for food stamps before his hero defends those programs.', 'created': '2024-11-12 04:30:01', 'submission_id': '1gpae50'}
{'comment': 'Couldn’t have happened to a nicer guy. /s', 'created': '2024-11-12 04:46:23', 'submission_id': '1gpae50'}
{'comment': 'I have concepts of food for him.', 'created': '2024-11-12 04:21:48', 'submission_id': '1gpae50'}
{'comment': 'Poor guy', 'created': '2024-11-12 04:11:05', 'submission_id': '1gpae50'}
{'comment': 'Trump gonna help him now?', 'created': '2024-11-12 05:47:14', 'submission_id': '1gpae50'}
{'comment': "I bet he's got a few bucks for booze.", 'created': '2024-11-12 05:47:31', 'submission_id': '1gpae50'}
{'comment': 'I love this for him', 'created': '2024-11-12 05:53:04', 'submission_id': '1gpae50'}
{'comment': 'Fuck him. He’s fine. This is stupid.', 'created': '2024-11-12 05:57:06', 'submission_id': '1gpae50'}
{'comment': 'Meh', 'created': '2024-11-12 06:08:36', 'submission_id': '1gpae50'}
{'comment': 'I, for one, hope he has a bad time as he starves.', 'created': '2024-11-12 06:09:36', 'submission_id': '1gpae50'}
{'comment': 'Maybe he should stop buying booze. He can afford food then.', 'created': '2024-11-12 06:10:14', 'submission_id': '1gpae50'}
{'comment': 'Burn in hell for all of Eternity.', 'created': '2024-11-12 06:10:56', 'submission_id': '1gpae50'}
{'comment': 'Tots and pears Rudy.', 'created': '2024-11-12 06:13:49', 'submission_id': '1gpae50'}
{'comment': 'Womp womp', 'created': '2024-11-12 07:00:07', 'submission_id': '1gpae50'}
{'comment': 'Tough shit. Should have stuck to standing for the truth.', 'created': '2024-11-12 07:38:03', 'submission_id': '1gpae50'}
{'comment': 'Thought and Prayers to our friend and clown Rudieee Geeee! \nI despise what he has done in his last “professional” years. Still I feel sorry for him. He has really fallen into disgrace. Once he had my respect as Mayor of NY and his SNL appearances making good fun of himself. \nHis working for Trump ended him (his alcoholism started his serious decline)\nSadly some people who have been much much much worse since birth are still running around and ready to Destroy America Again. And never will such people get what they deserve.', 'created': '2024-11-12 08:07:55', 'submission_id': '1gpae50'}
{'comment': 'Good 👍🏻', 'created': '2024-11-12 08:19:32', 'submission_id': '1gpae50'}
{'comment': 'Love this for him ❤️', 'created': '2024-11-12 09:34:40', 'submission_id': '1gpae50'}
{'comment': 'Prediction for the future of his party', 'created': '2024-11-12 10:37:45', 'submission_id': '1gpae50'}
{'comment': '', 'created': '2024-11-12 15:27:10', 'submission_id': '1gpae50'}
{'comment': '', 'created': '2024-11-12 15:35:24', 'submission_id': '1gpae50'}
{'comment': 'Where did he say this and in what context?', 'created': '2024-11-12 17:14:03', 'submission_id': '1gpae50'}
{'comment': 'Maybe he should lay off the avocado toast and make coffee at home.', 'created': '2024-11-12 18:56:26', 'submission_id': '1gpae50'}
{'comment': 'He should file a lawsuit against Donald for back pay…', 'created': '2024-11-12 19:27:53', 'submission_id': '1gpae50'}
{'comment': '😢😢😢😢😭😭😭', 'created': '2024-11-12 20:31:33', 'submission_id': '1gpae50'}
{'comment': 'Looks like he has a suit on his back that he could sell/trade for food', 'created': '2024-11-12 22:27:13', 'submission_id': '1gpae50'}
{'comment': 'Surely Don has a job for him and he can stay and eat a Mar a Lago.', 'created': '2024-11-12 22:59:16', 'submission_id': '1gpae50'}
{'comment': 'Maybe he can find a soup kitchen, church charity or apply for foodstamps like the rest of us in hard times.', 'created': '2024-11-12 23:41:49', 'submission_id': '1gpae50'}
{'comment': 'liar', 'created': '2024-11-13 00:41:50', 'submission_id': '1gpae50'}
{'comment': '🎵🎤Where are all my friends??🎤🎵', 'created': '2024-11-13 00:42:06', 'submission_id': '1gpae50'}
{'comment': 'Fake news', 'created': '2024-11-13 01:32:54', 'submission_id': '1gpae50'}
{'comment': 'Expensive food at expensive restaurants. Not like grocery food like us peasants eat. God forbid.', 'created': '2024-11-13 05:10:53', 'submission_id': '1gpae50'}
{'comment': "He's welcome to all my excrement.", 'created': '2024-11-13 11:24:13', 'submission_id': '1gpae50'}
{'comment': 'What happened to his coffee business?', 'created': '2024-11-12 04:34:53', 'submission_id': '1gpae50'}
{'comment': 'Well, anyway …', 'created': '2024-11-12 04:17:39', 'submission_id': '1gpae50'}
{'comment': 'boo hoo', 'created': '2024-11-12 04:27:19', 'submission_id': '1gpae50'}
{'comment': "Gas or Groceries; America's great liberty", 'created': '2024-11-12 04:27:38', 'submission_id': '1gpae50'}
{'comment': 'https://preview.redd.it/t04ho9bs4e0e1.jpeg?width=640&format=pjpg&auto=webp&s=7f6cda845a7e8571b1c9753f590f9f911754dc37', 'created': '2024-11-12 04:33:19', 'submission_id': '1gpae50'}
{'comment': 'I know he messed up. But, everyone deserves to have a hot meal.', 'created': '2024-11-12 04:42:35', 'submission_id': '1gpae50'}
{'comment': "he could go to a food pantry, because that's socialism, so he probably won't go.", 'created': '2024-11-12 13:46:06', 'submission_id': '1gpae50'}
{'comment': 'I would love that for Rudy!', 'created': '2024-11-12 04:04:28', 'submission_id': '1gpae50'}
{'comment': 'You know it’s going to happen', 'created': '2024-11-12 05:43:56', 'submission_id': '1gpae50'}
{'comment': 'Must have been another covfefe boy', 'created': '2024-11-12 04:23:11', 'submission_id': '1gpae50'}
{'comment': 'Last Thursday he was on my flight from EWR-PBI and I’ll bet he was heading to Mar-a-Lago. \nFor his free handouts from his daddy Trump', 'created': '2024-11-12 15:35:22', 'submission_id': '1gpae50'}
{'comment': 'Yeah, tends to happen when someone has Alzheimers.', 'created': '2024-11-12 15:42:34', 'submission_id': '1gpae50'}
{'comment': '', 'created': '2024-11-12 19:13:39', 'submission_id': '1gpae50'}
{'comment': "That's exactly what I was thinking of.", 'created': '2024-11-12 16:41:13', 'submission_id': '1gpae50'}
{'comment': "> We need to authorize as much funding as possible to the Ukraine before Trumpler takes power forever.\n\nHand them America's nukes. If the world is going to burn, might as well do it in style.", 'created': '2024-11-12 09:19:51', 'submission_id': '1gpae50'}
{'comment': 'Convicted? When was he convicted? I thought he plead “not guilty” and trial is set for January 2026.', 'created': '2024-11-12 04:53:01', 'submission_id': '1gpae50'}
{'comment': '🏆', 'created': '2024-11-12 06:59:01', 'submission_id': '1gpae50'}
{'comment': 'What about the geese?', 'created': '2024-11-12 08:05:21', 'submission_id': '1gpae50'}
{'comment': 'His daughter is very democrat, but idk why his trump loving son isn’t helping', 'created': '2024-11-12 05:30:34', 'submission_id': '1gpae50'}
{'comment': 'And drippy hair dye', 'created': '2024-11-12 06:59:24', 'submission_id': '1gpae50'}
{'comment': 'Let the kids eat and the old creep starve', 'created': '2024-11-12 12:12:01', 'submission_id': '1gpae50'}
{'comment': 'Facts', 'created': '2024-11-12 14:27:14', 'submission_id': '1gpae50'}
{'comment': 'Done do I get my milk and cookies now? Lol', 'created': '2024-11-12 03:38:47', 'submission_id': '1gpae50'}
{'comment': 'And a place to sleep!', 'created': '2024-11-12 15:23:02', 'submission_id': '1gpae50'}
{'comment': 'There were a few others. Mark Meadows is still trying to get some of his charges transferred to federal court. That’s because he thinks Trump will pardon him. \n\nTrump says he will pardon the January Sixers that have been thrown in jail. He’s such a low life he might do it but honestly I don’t think he’s given those people a second thought.', 'created': '2024-11-12 20:21:11', 'submission_id': '1gpae50'}
{'comment': "Haha your welcome, I'm glad I gave you good laugh to start/close off your day :)", 'created': '2024-11-12 13:44:44', 'submission_id': '1gpae50'}
{'comment': "He's a fancy lawyer and hasn't have any boots. Coffee I agree it's cheaper to buy the grounds", 'created': '2024-11-12 03:55:56', 'submission_id': '1gpae50'}
{'comment': "He drives around in a Mercedes he is currently stealing from Miss Ruby and Wandrea. Don't let him eat cake.", 'created': '2024-11-12 04:29:57', 'submission_id': '1gpae50'}
{'comment': 'Project 2025 wants to dismantle that so there’s that', 'created': '2024-11-12 20:30:07', 'submission_id': '1gpae50'}
{'comment': 'No, he has to give it to the ladies that were counting election votes', 'created': '2024-11-12 20:15:40', 'submission_id': '1gpae50'}
{'comment': "4 years later it's Trump whining about not eating", 'created': '2024-11-12 12:12:36', 'submission_id': '1gpae50'}
{'comment': 'More for the rest of us socialists I guess.', 'created': '2024-11-12 14:02:02', 'submission_id': '1gpae50'}
{'comment': '"I barely know this loser"', 'created': '2024-11-12 05:45:23', 'submission_id': '1gpae50'}
{'comment': 'He will be pardoned with Bannon and all the J6 people.', 'created': '2024-11-12 06:00:48', 'submission_id': '1gpae50'}
{'comment': 'He’s mixed the hair dye with gin. That way, when it drips, he can slurp it up and get loaded in public all day long.', 'created': '2024-11-12 07:02:11', 'submission_id': '1gpae50'}
{'comment': 'Hold it right there, Trump Pardons are not free. It is 500k a pop bro and Rudy is broke so fuck him.', 'created': '2024-11-12 10:16:20', 'submission_id': '1gpae50'}
{'comment': 'Smartest thing he’s ever done', 'created': '2024-11-12 07:02:59', 'submission_id': '1gpae50'}
{'comment': 'Something medium blue.', 'created': '2024-11-12 03:25:54', 'submission_id': '1gpa8mm'}
{'comment': 'Anything that supports libraries, voting, equality, individual freedoms', 'created': '2024-11-12 03:36:52', 'submission_id': '1gpa8mm'}
{'comment': 'Wear clothing with rainbows on it. ("It\'s not political, it\'s just a rainbow.")', 'created': '2024-11-12 03:30:38', 'submission_id': '1gpa8mm'}
{'comment': 'Something that says "Be Kind." No one will be confused about who you vote for.', 'created': '2024-11-12 04:21:58', 'submission_id': '1gpa8mm'}
{'comment': 'https://preview.redd.it/8ppreedj1e0e1.jpeg?width=1124&format=pjpg&auto=webp&s=8b501ca381fd5fe62e7fc4e12aa71279f67bc59d', 'created': '2024-11-12 04:15:06', 'submission_id': '1gpa8mm'}
{'comment': 'I have a ton of shirts that just say "Human" on them. Different colors for the print. Some are gradients of flesh tones. Some are rainbow colors. Some are just courier font❕️ \n\nI wasn\'t allowed to wear political shirts at work so when confronted, I asked which party isn\'t human? Is there one against humanity?', 'created': '2024-11-12 04:24:17', 'submission_id': '1gpa8mm'}
{'comment': 'I always thought the caged bird was a powerful symbol that isn\'t overtly or undeniably political. Birds in general are a sign of freedom, especially songbirds. Have you ever met a fascist or a bully wearing the image of a bluebird? If a teacher is hip enough to spot it and think "I Know Why the Caged Bird Sings," they\'re probably going to let it slide, perhaps either thinking you couldn\'t possibly know, or knowingly ignore it. It\'s also easy enough to feign ignorance. If concentration camps end up happening in the next administration, the echoes of my Japanese soul would be appreciative of even the smallest symbol of solidarity. Nidoto nai yoni.', 'created': '2024-11-12 03:50:38', 'submission_id': '1gpa8mm'}
{'comment': 'A white rose.', 'created': '2024-11-12 03:30:07', 'submission_id': '1gpa8mm'}
{'comment': 'T-shirt from Amazon with the quote from Yehuda Bauer "thou shalt not be a victim; and thou shalt never, but never, be a bystander."\n\nI also have one that says, "if you are neutral in situations of injustice you have chosen the side of the oppressor."', 'created': '2024-11-12 05:09:06', 'submission_id': '1gpa8mm'}
{'comment': 'I got a t-shirt from crooked media that says “free the books.”', 'created': '2024-11-12 05:12:02', 'submission_id': '1gpa8mm'}
{'comment': 'A safety pin on your shirt.\n\nhttps://archive.ph/bBMfe', 'created': '2024-11-12 03:45:21', 'submission_id': '1gpa8mm'}
{'comment': 'Wear a shirt that says "I don\'t like felons". And if anyone objects, make *them* explain *exactly* what\'s political about it, rather than letting them just handwave it away as "obviously" political.', 'created': '2024-11-12 06:24:17', 'submission_id': '1gpa8mm'}
{'comment': 'I have a T-shirt from Four Seasons Total Landscaping. Only one person has gotten the reference.', 'created': '2024-11-12 08:03:53', 'submission_id': '1gpa8mm'}
{'comment': 'Ukraine stuff', 'created': '2024-11-12 04:44:47', 'submission_id': '1gpa8mm'}
{'comment': 'Coat hanger jewelry.', 'created': '2024-11-12 05:13:17', 'submission_id': '1gpa8mm'}
{'comment': 'Wear a shirt that says End Racism. If someone tells you that it’s political, ask them why they think it is.', 'created': '2024-11-12 13:21:18', 'submission_id': '1gpa8mm'}
{'comment': 'https://preview.redd.it/hrt2td02zd0e1.jpeg?width=300&format=pjpg&auto=webp&s=cfec7a898ca7336a2df6cd23b0ad9021c8782069', 'created': '2024-11-12 04:01:17', 'submission_id': '1gpa8mm'}
{'comment': 'A rainbow would piss these people off', 'created': '2024-11-12 06:23:00', 'submission_id': '1gpa8mm'}
{'comment': 'I have this t shirt which I love. It’s definitely an iykyk… https://www.boredwalk.com/products/womens-nolite-te-bastardes-carborundorum-t-shirt?srsltid=AfmBOoocSNqbBPx8K-9pDiNbbT7o_ZMHKkxYzBFXEsud20tpU_WY27OE', 'created': '2024-11-12 08:15:36', 'submission_id': '1gpa8mm'}
{'comment': 'Pearl necklace with converse', 'created': '2024-11-12 03:57:10', 'submission_id': '1gpa8mm'}
{'comment': 'People are starting to wear blue bracelets. A sort of sign of solidarity', 'created': '2024-11-12 04:25:43', 'submission_id': '1gpa8mm'}
{'comment': 'Rainbows, safety pins, anything blue, if you work in a school you could wear anything that denounces bullying or bullies, that SHOULD be something a school can’t object to.', 'created': '2024-11-12 12:04:15', 'submission_id': '1gpa8mm'}
{'comment': 'My wife’s favorite t-shirt says “Do Not Congratulate”.', 'created': '2024-11-12 05:21:21', 'submission_id': '1gpa8mm'}
{'comment': '33M (millenial here):\n\nDon’t: do that performative blue-wrist band stuff that some folks are doing.\n\nDo: go for deeply anti-establishment or queer related bands: Depeche Mode, NIN, Bauhaus, RATM, hell even Green Day at this point - this will be beautiful time of your life where you find some truly counter cultural music.\n\nEnglish punk music is famously anti fascist. The Clash is a great entry point.', 'created': '2024-11-12 05:27:58', 'submission_id': '1gpa8mm'}
{'comment': 'Never underestimate a public school teacher. Just make sure it doesn’t credit Walz.', 'created': '2024-11-12 05:56:56', 'submission_id': '1gpa8mm'}
{'comment': 'I have a shirt like this\n\nhttps://preview.redd.it/64u830u7dh0e1.jpeg?width=1147&format=pjpg&auto=webp&s=3e59287c443a36524a6a40b29a7416dea993a578', 'created': '2024-11-12 15:25:55', 'submission_id': '1gpa8mm'}
{'comment': 'I’m wearing black until Trump gets put in jail.', 'created': '2024-11-12 13:13:10', 'submission_id': '1gpa8mm'}
{'comment': 'I have a T-shirt that says Vote, Removes Stubborn Orange Stains. Looks like the Tide laundry soap logo.', 'created': '2024-11-12 03:26:12', 'submission_id': '1gpa8mm'}
{'comment': 'You’re a a teacher? What about an unlabeled countdown to the next Election Day?', 'created': '2024-11-12 05:16:14', 'submission_id': '1gpa8mm'}
{'comment': 'I’ve been wearing a tie in the colors of the Ukrainian flag', 'created': '2024-11-12 07:38:37', 'submission_id': '1gpa8mm'}
{'comment': 'Maybe a peace symbol pendant necklace?', 'created': '2024-11-12 08:29:49', 'submission_id': '1gpa8mm'}
{'comment': 'In Nazi Germany, when they banned freemasonry, Masons wore forget-me-nots on their lapels.', 'created': '2024-11-12 03:58:34', 'submission_id': '1gpa8mm'}
{'comment': 'I’m a progressive father of 2 year old twin daughters. When I went to vote I wore a t-shirt with a super subtle message, “Dad Daughter Squad. Unbreakable Bond”', 'created': '2024-11-12 15:02:09', 'submission_id': '1gpa8mm'}
{'comment': 'My adult son got a hoodie during the last election which he still wears that reads: will trade racists for immigrants. He gets a lot of smiles and thank yous when he wears that. 💙\nSigned, Proud mama', 'created': '2024-11-12 16:54:17', 'submission_id': '1gpa8mm'}
{'comment': 'A childless cat lady shirt.', 'created': '2024-11-12 03:47:59', 'submission_id': '1gpa8mm'}
{'comment': 'Rage Against the Machine shirts', 'created': '2024-11-12 04:53:52', 'submission_id': '1gpa8mm'}
{'comment': 'I have a shirt that says “Who Would Jesus Deport?”\n\nAnd they wanted religion in schools. So they should not have any complaints about it, right?', 'created': '2024-11-12 16:12:12', 'submission_id': '1gpa8mm'}
{'comment': 'I wear my black chucks everyday at work.', 'created': '2024-11-12 04:26:01', 'submission_id': '1gpa8mm'}
{'comment': 'You’re allowed to exercise political speech, even at school, unless it is likely to result in “substantial disruption.”\n\nhttps://en.m.wikipedia.org/wiki/Tinker_v._Des_Moines_Independent_Community_School_District\n\nIt’s definitely a gray line, but they can’t blanket ban political speech.', 'created': '2024-11-12 07:52:27', 'submission_id': '1gpa8mm'}
{'comment': 'Baffle them with your common sense', 'created': '2024-11-12 09:10:08', 'submission_id': '1gpa8mm'}
{'comment': 'One of the "The horrors persist but so do I" tshirts. Also the "Everything is terrible" one.', 'created': '2024-11-12 14:17:36', 'submission_id': '1gpa8mm'}
{'comment': "When I was in high school in 2004, I wore a Kerry/Edwards tee shirt, and on the back I wrote: The Only Bush I Trust Is My Own.\n\nI couldn't even vote yet, but all my teachers were liberals so they liked my message and I didn't get in any trouble for it. I've been riding hard for dems ever since.", 'created': '2024-11-12 15:22:00', 'submission_id': '1gpa8mm'}
{'comment': 'Love is love t shirt. You can not argue against its physiological truth. \n\nOn that note a science doesn’t care about your beliefs t shirt.', 'created': '2024-11-12 05:09:40', 'submission_id': '1gpa8mm'}
{'comment': 'A shirt that says something about how you have critical thinking skills and know how to use them.', 'created': '2024-11-12 06:12:02', 'submission_id': '1gpa8mm'}
{'comment': 'Blue / blue bracelet', 'created': '2024-11-12 13:49:58', 'submission_id': '1gpa8mm'}
{'comment': 'If you\'re into dungeons and dragons, there\'s a bright yellow shirt I bought that has a Tarrasque on it that says "I tread where I want." Political, but you can easily brush it off as "Haha, I\'m wearing an unstoppable dinosaur from a nerdy game, that\'s all."', 'created': '2024-11-12 14:34:31', 'submission_id': '1gpa8mm'}
{'comment': 'A T-shirt with the dictionary definition of tariff on it?', 'created': '2024-11-12 17:46:44', 'submission_id': '1gpa8mm'}
{'comment': 'Go stand in a wind tunnel and hairspray your hair while you’re in there', 'created': '2024-11-12 13:44:24', 'submission_id': '1gpa8mm'}
{'comment': 'A Peace Sign!', 'created': '2024-11-12 14:25:34', 'submission_id': '1gpa8mm'}
{'comment': 'I bought a sweatshirt with a lotus flower on it. (Kamala means lotus flower)', 'created': '2024-11-12 20:17:02', 'submission_id': '1gpa8mm'}
{'comment': 'I just wrote "men who harass women shouldn\'t be in positions of power" on a T-shirt', 'created': '2024-11-12 21:48:46', 'submission_id': '1gpa8mm'}
{'comment': "Wear California gear, shows you're a lefty but if anybody asks you can just say you love the weather, beaches, parks or museums, etc or you have relatives there. I'm in California and my friends in more conservative states often load up on Cali gear when they're here visiting for this very reason. They say it pisses people off when they see them wearing California stuff lol.\n\nBut I think this can also work with wearing any clothes that references a blue state lol.", 'created': '2024-11-12 09:02:45', 'submission_id': '1gpa8mm'}
{'comment': 'A t-shirt that quotes Walz- L “ mind your own damn business@', 'created': '2024-11-12 08:33:06', 'submission_id': '1gpa8mm'}
{'comment': '“Black lives matter”.\n\nJust dare someone to call that a “political opinion”.', 'created': '2024-11-12 06:02:45', 'submission_id': '1gpa8mm'}
{'comment': 'There’s a famous saying that an old folk singer had on his guitar. “This machine kills fascists” it might be a bit harsh with the word kills, but they do sell patches, shirts, stickers etc.', 'created': '2024-11-12 04:22:59', 'submission_id': '1gpa8mm'}
{'comment': 'Pearls?', 'created': '2024-11-12 05:36:47', 'submission_id': '1gpa8mm'}
{'comment': 'https://preview.redd.it/p4prfnd0te0e1.jpeg?width=605&format=pjpg&auto=webp&s=03271ccb69d9545bf2b14ca860a2b004cc2d7097\n\nThis on a tee shirt.', 'created': '2024-11-12 06:49:46', 'submission_id': '1gpa8mm'}
{'comment': '"Be kind."', 'created': '2024-11-12 08:57:43', 'submission_id': '1gpa8mm'}
{'comment': 'You do have the right to wear political clothing as long as it’s not disruptive. Just as a reminder.', 'created': '2024-11-12 16:19:53', 'submission_id': '1gpa8mm'}
{'comment': 'I remember the safety pin but am also looking for a symbol or secret handshake or something so I can determine whether someone is friendly.', 'created': '2024-11-12 19:41:38', 'submission_id': '1gpa8mm'}
{'comment': 'I wore my npr shirt to work', 'created': '2024-11-12 23:24:35', 'submission_id': '1gpa8mm'}
{'comment': 'Order a shirt online that simply says "we have entered the age of *find out*" probably gonna get one myself', 'created': '2024-11-13 00:05:12', 'submission_id': '1gpa8mm'}
{'comment': 'Wear something that reads “Make America Human Again” or just “MAHA” and make them ask what it means.', 'created': '2024-11-13 03:45:11', 'submission_id': '1gpa8mm'}
{'comment': 'Green RBG earrings. :)', 'created': '2024-11-12 04:14:27', 'submission_id': '1gpa8mm'}
{'comment': 'Raised fist earrings [https://www.etsy.com/listing/694617091/large-raised-fist-earrings](https://www.etsy.com/listing/694617091/large-raised-fist-earrings)', 'created': '2024-11-12 04:32:40', 'submission_id': '1gpa8mm'}
{'comment': 'New favorite phrase from the *Declaration*: “with manly firmness”.\n\n/s', 'created': '2024-11-12 17:20:23', 'submission_id': '1gpa8mm'}
{'comment': 'Hate does make us great again', 'created': '2024-11-12 19:19:14', 'submission_id': '1gpa8mm'}
{'comment': 'Wear a garbage bag just for kicks', 'created': '2024-11-12 20:40:04', 'submission_id': '1gpa8mm'}
{'comment': 'I wore Hillary Clinton socks all the time in 2016. Anything red, white, and blue, subtly leaning into blue, or navy blue, usually works', 'created': '2024-11-12 21:55:38', 'submission_id': '1gpa8mm'}
{'comment': 'Something to do with the meme about leopards eating faces.', 'created': '2024-11-13 08:41:55', 'submission_id': '1gpa8mm'}
{'comment': 'Pearls and converse, the color blue, Hunger Games-wear', 'created': '2024-11-13 14:47:57', 'submission_id': '1gpa8mm'}
{'comment': 'sign this https://www.change.org/p/demand-an-investigation-and-recount-into-the-2024-us-election', 'created': '2024-11-12 03:36:11', 'submission_id': '1gpa8mm'}
{'comment': 'Where a “Make America Gag Again” hat!', 'created': '2024-11-12 05:48:40', 'submission_id': '1gpa8mm'}
{'comment': 'A face mask', 'created': '2024-11-12 07:39:14', 'submission_id': '1gpa8mm'}
{'comment': 'Live free or die is New Hampshire’s state motto.', 'created': '2024-11-12 04:15:34', 'submission_id': '1gpa8mm'}
{'comment': 'Wear a shirt with this goofy picture on it. If anyone asks about it tell them you’re on whatever side they are. Dems will get a laugh, and republicans will be too confused to figure out if you’re making fun of Trump or not', 'created': '2024-11-12 05:20:03', 'submission_id': '1gpa8mm'}
{'comment': 'In the new America only MAGA swag will be tolerated.', 'created': '2024-11-12 03:44:32', 'submission_id': '1gpa8mm'}
{'comment': 'Fly Donald, Fly….', 'created': '2024-11-12 05:05:18', 'submission_id': '1gpa8mm'}
{'comment': 'How about an Annoying Orange shirt? https://printerval.com/annoying-orange-crazyface-t-shirt-p2829386?spid=3408931302&tr=&adgroupid=&campaignid=21339772057&gad_source=1&gclid=Cj0KCQiA88a5BhDPARIsAFj595gVKAcX5_qpTCADC9jLLETVQlCA8po81YoQSyY7YdrnUOuBh50XwP0aAsDOEALw_wcB', 'created': '2024-11-12 07:40:54', 'submission_id': '1gpa8mm'}
{'comment': ' Political speech is protected, the Supreme Court has stated that political speech, even for minors in public schools, is one of the highest forms of protected speech. See tinker v. Des Moines. Go Crazy.', 'created': '2024-11-12 16:15:00', 'submission_id': '1gpa8mm'}
{'comment': 'Just never orange.', 'created': '2024-11-12 05:39:23', 'submission_id': '1gpa8mm'}
{'comment': 'Something deep blue', 'created': '2024-11-12 08:46:26', 'submission_id': '1gpa8mm'}
{'comment': "Any kind of blue.\n\n\nI refuse to wear anything red from now on, unless things get better with our politics. Which they won't.", 'created': '2024-11-12 15:33:43', 'submission_id': '1gpa8mm'}
{'comment': 'Johnny Cash was the man in black, I have become the man in blue', 'created': '2024-11-12 12:33:05', 'submission_id': '1gpa8mm'}
{'comment': 'Oh YESSSSS! \n\nEven a rainbow Pin!!', 'created': '2024-11-12 03:31:25', 'submission_id': '1gpa8mm'}
{'comment': 'I actually have a t shirt that says exactly that. \n\nMaybe I should buy 5 of those in different colors. \n\n🫂', 'created': '2024-11-12 05:13:39', 'submission_id': '1gpa8mm'}
{'comment': 'So sad AND true', 'created': '2024-11-12 05:00:41', 'submission_id': '1gpa8mm'}
{'comment': 'Honestly I disagree. I know a lot of republicans who think they’re kind. \n\n\nMy mom’s husband didn’t vote for Trump, but he certainly didn’t vote for Kamala and he absolutely claims this “be kind” message. But he means it in the “suck up your disappointment and treat bigots with kindness” way. \n\nMy mom voted for Kamala but absolutely is still “both sides have good people and we shouldn’t cut out bigots just because they voted for Trump” \n\n\nI know kindness is a democrat thing but a lot of republicans don’t realize that we can’t hold space to tolerate intolerance', 'created': '2024-11-12 14:36:48', 'submission_id': '1gpa8mm'}
{'comment': 'Best answer', 'created': '2024-11-12 16:25:41', 'submission_id': '1gpa8mm'}
{'comment': 'Sadly I think there is.', 'created': '2024-11-12 05:08:19', 'submission_id': '1gpa8mm'}
{'comment': 'My HUMAN tee is one of my favs', 'created': '2024-11-12 06:27:36', 'submission_id': '1gpa8mm'}
{'comment': 'Greendale Human Beings?', 'created': '2024-11-13 00:46:40', 'submission_id': '1gpa8mm'}
{'comment': '👏👏👏👏', 'created': '2024-11-12 05:07:16', 'submission_id': '1gpa8mm'}
{'comment': "I have a tattoo of the curse mark that the Hyugas are branded with in Naruto, does that kind of count? I wanted something to represent my love of the show in a meaningful way. That moment where Neji shares his curse mark for the first time and explains it's a reminder of his fate and relates it to being a bird in a locked cage spoke to me.", 'created': '2024-11-12 14:11:58', 'submission_id': '1gpa8mm'}
{'comment': 'I like it. Can you explain the reason for it?', 'created': '2024-11-12 03:30:42', 'submission_id': '1gpa8mm'}
{'comment': 'If you know, you know. I know.', 'created': '2024-11-12 03:56:39', 'submission_id': '1gpa8mm'}
{'comment': 'I bought 12 to give to my friends', 'created': '2024-11-12 05:17:18', 'submission_id': '1gpa8mm'}
{'comment': 'Love this \U0001fa75\U0001fa75\U0001fa75', 'created': '2024-11-12 19:27:01', 'submission_id': '1gpa8mm'}
{'comment': "I'd get fired 😢", 'created': '2024-11-12 05:20:59', 'submission_id': '1gpa8mm'}
{'comment': 'I like this idea', 'created': '2024-11-12 03:59:18', 'submission_id': '1gpa8mm'}
{'comment': 'I remember wearing a safety pin for a while after the 2016 election.', 'created': '2024-11-12 04:25:06', 'submission_id': '1gpa8mm'}
{'comment': 'When i was in school that just meant you smoked Marijuana. Well the style was to wear a bunch in a row on your ripped jeans. Later, I learned they were useful for scraping a bowl.', 'created': '2024-11-12 06:39:35', 'submission_id': '1gpa8mm'}
{'comment': 'Paper clips will work too. 📎', 'created': '2024-11-12 07:46:05', 'submission_id': '1gpa8mm'}
{'comment': 'Hah I bought a four seasons total landscaping shirt for my husband!', 'created': '2024-11-12 16:30:25', 'submission_id': '1gpa8mm'}
{'comment': 'I love this!', 'created': '2024-11-12 21:13:52', 'submission_id': '1gpa8mm'}
{'comment': '🤣', 'created': '2024-11-12 23:25:38', 'submission_id': '1gpa8mm'}
{'comment': 'I love that the company sold those and made a nice chunk of change. They’re such good people!', 'created': '2024-11-13 03:31:30', 'submission_id': '1gpa8mm'}
{'comment': "I have 4 t shirts supporting Ukraine, but they're pretty political. I do wear my Yellow shirt that has the Ukraine flag on it. 🫂", 'created': '2024-11-12 05:20:03', 'submission_id': '1gpa8mm'}
{'comment': '👏👏👏👏', 'created': '2024-11-12 05:08:32', 'submission_id': '1gpa8mm'}
{'comment': 'Winner', 'created': '2024-11-12 09:09:43', 'submission_id': '1gpa8mm'}
{'comment': 'That is genius', 'created': '2024-11-12 13:53:35', 'submission_id': '1gpa8mm'}
{'comment': 'I have it in bright Handmaid red, no flowers, just large scratches of print.', 'created': '2024-11-12 11:31:02', 'submission_id': '1gpa8mm'}
{'comment': 'Awe that was part of my “uniform” in part of my high school after low rise jeans were on the out. A pearl necklace, black high top converse, jeans, usually a white shirt, cardigan. \n\nWhich reminds me, My boyfriend’s mom at the time wanted to buy me a real pearl necklace but realized they were way too expensive so she bought be a necklace with a single pearl and I still have it. Thanks for joggin that memory for me.', 'created': '2024-11-12 06:41:55', 'submission_id': '1gpa8mm'}
{'comment': 'Can you tell me the significance of your suggestion in this context please?', 'created': '2024-11-12 06:43:37', 'submission_id': '1gpa8mm'}
{'comment': 'Done. Thanks!', 'created': '2024-11-12 05:15:15', 'submission_id': '1gpa8mm'}
{'comment': 'In solidarity of what? I’ll happily wear one if I support the cause and judging by the subs name I probably do support it lol I’m just out of the loop I guess', 'created': '2024-11-12 13:46:47', 'submission_id': '1gpa8mm'}
{'comment': 'Oh Jesus, I forgot that rainbows trigger people now.', 'created': '2024-11-12 23:49:23', 'submission_id': '1gpa8mm'}
{'comment': 'That’s clever. And yes, I remember the original reference.', 'created': '2024-11-13 03:40:15', 'submission_id': '1gpa8mm'}
{'comment': 'I’ve been wearing my Pearl Jam shirts nonstop.', 'created': '2024-11-12 10:28:35', 'submission_id': '1gpa8mm'}
{'comment': ' Fabulous. I got my first taste of punk and or anti establishment music 20 years ago right before high school and didn’t initially think of band tees for this post. \n All of your recommendations are great. I’d like to add Against Me! They were one of my faves and the singer came out as a trans woman while the band was still together. I think she makes her own music now. Thanks for the reminder to check out some older and new to me music.', 'created': '2024-11-12 08:06:30', 'submission_id': '1gpa8mm'}
{'comment': 'Punk band Dead Kennedys - the original anti-fascists.', 'created': '2024-11-12 13:57:08', 'submission_id': '1gpa8mm'}
{'comment': 'Against Me!', 'created': '2024-11-12 11:59:18', 'submission_id': '1gpa8mm'}
{'comment': 'I have been listening to some NOFX in recent times. Their album "War On Errorism", which was released during the Bush administration, is still painfully relevant. Same with their magnum opus 18-minute song "The Decline", a live-version of which with orchestra was released in 2020, with Trump on the cover.\n\nAnyway, they have some really cool merch, and they have always been pretty openly political and against fascists.', 'created': '2024-11-12 13:10:52', 'submission_id': '1gpa8mm'}
{'comment': 'I would like to also add Rise Against to this list - their song "Welcome to the Breakdown" was written specifically about trump and his supporters, and is very intellectually done with just the right amount of criticism. Their latest album Nowhere Generation is so good too - they address the loss of the American dream very well and urge the listeners to not give up, but instead fight for our rights. \n\n\nThey also are very pro LGBT (their song Make It Stop is about people bullying LGBT, how it\'s not a choice but their reality, and shares the damage it causes to them, but also encourages LGBT to speak up and be themselves), very pro environment (so many of their songs and music videos), pro workers rights, and anti war, anti billionaire, anti just all around fantastic people.', 'created': '2024-11-12 14:21:02', 'submission_id': '1gpa8mm'}
{'comment': 'Oooo,, Green Day...', 'created': '2024-11-12 17:55:21', 'submission_id': '1gpa8mm'}
{'comment': 'The Cure just dropped a new album that I’ve been listening to nonstop. Just seems fitting for these dark times.', 'created': '2024-11-13 04:19:39', 'submission_id': '1gpa8mm'}
{'comment': 'The best!', 'created': '2024-11-12 18:10:18', 'submission_id': '1gpa8mm'}
{'comment': 'Bluebirds with a forget me not...I know my next tattoo. Thank you.', 'created': '2024-11-12 05:11:45', 'submission_id': '1gpa8mm'}
{'comment': 'Awe 💙', 'created': '2024-11-12 16:56:26', 'submission_id': '1gpa8mm'}
{'comment': "I like it, but I'm not childless, and my students know it. \n\nHowever, I am a cat lady smilei", 'created': '2024-11-12 05:08:33', 'submission_id': '1gpa8mm'}
{'comment': 'Why, given their use of Che Guevara?', 'created': '2024-11-12 07:45:14', 'submission_id': '1gpa8mm'}
{'comment': "In this day and age, it would be substantially disruptive to wear a KH shirt in the climate I'm in.", 'created': '2024-11-12 17:58:32', 'submission_id': '1gpa8mm'}
{'comment': 'That isn’t at all true in many school districts where Reich-wing groups like “Moms4Liberty” gave gotten their way. Jamie Raskin has a great book that he wrote for students about their constitutional rights.', 'created': '2024-11-13 03:34:49', 'submission_id': '1gpa8mm'}
{'comment': 'Is that from Moby Dick?', 'created': '2024-11-12 18:13:16', 'submission_id': '1gpa8mm'}
{'comment': 'There are two types of people. A: those who can extrapolate from incomplete data.', 'created': '2024-11-12 07:36:21', 'submission_id': '1gpa8mm'}
{'comment': 'Please read up on that. There’s some controversy worth listening to.', 'created': '2024-11-13 03:28:31', 'submission_id': '1gpa8mm'}
{'comment': '🤣', 'created': '2024-11-12 23:30:07', 'submission_id': '1gpa8mm'}
{'comment': "I'd love to see the mea culpa from the school when they kick out a kid for wearing that shirt.", 'created': '2024-11-12 23:43:00', 'submission_id': '1gpa8mm'}
{'comment': 'Or go for “Black History Matters”.', 'created': '2024-11-12 15:11:55', 'submission_id': '1gpa8mm'}
{'comment': 'Ohhhh but boy, do they!', 'created': '2024-11-12 11:57:53', 'submission_id': '1gpa8mm'}
{'comment': 'Pete Seger!!', 'created': '2024-11-12 04:25:47', 'submission_id': '1gpa8mm'}
{'comment': 'I have that one!!', 'created': '2024-11-12 23:27:33', 'submission_id': '1gpa8mm'}
{'comment': 'Brilliant!', 'created': '2024-11-12 23:36:10', 'submission_id': '1gpa8mm'}
{'comment': 'Ooooh, I like that!!!', 'created': '2024-11-13 05:50:09', 'submission_id': '1gpa8mm'}
{'comment': 'Rip 💙', 'created': '2024-11-12 16:55:56', 'submission_id': '1gpa8mm'}
{'comment': 'Just ordered two. One for me and one as a Christmas gift for my daughter. \n\nThank you.', 'created': '2024-11-12 05:18:38', 'submission_id': '1gpa8mm'}
{'comment': 'Me likey!', 'created': '2024-11-14 00:22:25', 'submission_id': '1gpa8mm'}
{'comment': 'Oh this is a good one! Ha!', 'created': '2024-11-13 00:47:24', 'submission_id': '1gpa8mm'}
{'comment': 'They’ll make an exception for Handmaid robes.', 'created': '2024-11-12 23:12:59', 'submission_id': '1gpa8mm'}
{'comment': 'There’s also this one, but it might be a little too overt…\n\nhttps://preview.redd.it/bjdqof6k2f0e1.jpeg?width=1640&format=pjpg&auto=webp&s=c03bb49a8b13a8359a18f9d670db9661767d1205', 'created': '2024-11-12 07:42:40', 'submission_id': '1gpa8mm'}
{'comment': '5 shades of blue', 'created': '2024-11-12 13:10:00', 'submission_id': '1gpa8mm'}
{'comment': 'https://preview.redd.it/pprocen5jh0e1.jpeg?width=1079&format=pjpg&auto=webp&s=2735d624a031635c9b55b044cf13d16ae57f7916', 'created': '2024-11-12 15:59:10', 'submission_id': '1gpa8mm'}
{'comment': 'I know that and they know that, but they don\'t want to say my "human" shirt is a lefty shirt.', 'created': '2024-11-12 05:11:07', 'submission_id': '1gpa8mm'}
{'comment': 'https://en.m.wikipedia.org/wiki/Sophie_Scholl', 'created': '2024-11-12 03:33:10', 'submission_id': '1gpa8mm'}
{'comment': "What's a safety pin?", 'created': '2024-11-12 05:07:26', 'submission_id': '1gpa8mm'}
{'comment': 'Welcome to the good guys, feel free to stick around 💙\U0001fa75', 'created': '2024-11-12 05:45:31', 'submission_id': '1gpa8mm'}
{'comment': 'Search “converse and pearls”. It’s a Kamala thing.', 'created': '2024-11-12 06:45:15', 'submission_id': '1gpa8mm'}
{'comment': "This is an AZ get together but to get the idea:\n\nhttps://preview.redd.it/7dhtu8ybke0e1.jpeg?width=1102&format=pjpg&auto=webp&s=28b402c4d7186949f35e6c07448be21ae55ae04f\n\nI also got some off Etsy because I'm impatient, but I'll prob have these before the Etsy order 😅", 'created': '2024-11-12 06:00:25', 'submission_id': '1gpa8mm'}
{'comment': 'Solidarity period. You know when you are out and you feel like (I do) you are surrounded by trump supporter/voters..but then you see someone who was a Harris voter or similar..and you have that relief and a shared moment together, even if non verbal? Thats how I see this', 'created': '2024-11-12 17:56:18', 'submission_id': '1gpa8mm'}
{'comment': 'It’s true for anywhere in the US. That’s Supreme Court precedent.', 'created': '2024-11-13 03:44:35', 'submission_id': '1gpa8mm'}
{'comment': 'Nope. Just a meme.', 'created': '2024-11-12 22:01:07', 'submission_id': '1gpa8mm'}
{'comment': 'There are 10 types of people. Those that assume numbers are in decimal, those that understand binary, those that considered trinary...', 'created': '2024-11-12 11:31:19', 'submission_id': '1gpa8mm'}
{'comment': '🤣', 'created': '2024-11-13 03:36:58', 'submission_id': '1gpa8mm'}
{'comment': 'I actually thought you were asking about wearing a wig!!', 'created': '2024-11-12 23:45:57', 'submission_id': '1gpa8mm'}
{'comment': "I'll keep you posted.", 'created': '2024-11-12 23:43:22', 'submission_id': '1gpa8mm'}
{'comment': 'Woody Guthrie first, but Pete Seeger very soon thereafter.', 'created': '2024-11-12 04:38:28', 'submission_id': '1gpa8mm'}
{'comment': 'This should be posted on its own merit. Never thought about it like that. The problem is that these people are intolerant and ignorant. Not a good combo!', 'created': '2024-11-12 16:15:39', 'submission_id': '1gpa8mm'}
{'comment': 'yess that is what i was attempting to get at, thank you!!', 'created': '2024-11-12 16:21:06', 'submission_id': '1gpa8mm'}
{'comment': 'I know. You wear your human shirts proudly. 🥰😊😘💙', 'created': '2024-11-12 05:12:35', 'submission_id': '1gpa8mm'}
{'comment': "Thank you .\n\nI will definitely do my best to wear one, even if my kids don't understand it. \n\n 🫂", 'created': '2024-11-12 03:36:16', 'submission_id': '1gpa8mm'}
{'comment': 'Thank you for this informative and touching share. TIL', 'created': '2024-11-12 04:29:37', 'submission_id': '1gpa8mm'}
{'comment': 'Well, that story got ugly quickly. \n\nAlso , this could be us.', 'created': '2024-11-12 13:52:50', 'submission_id': '1gpa8mm'}
{'comment': "Goddamn thanks for sharing this!! Unfortunately we might be headed down the same path. Pun not intended. We have to watch for talk of this kinda punishment for people that are anti tRump. It would only be fitting that they enforce similar punishments but we can't allow it. Time to get into some good trouble.", 'created': '2024-11-12 16:17:57', 'submission_id': '1gpa8mm'}
{'comment': 'https://preview.redd.it/ch0c7rttce0e1.jpeg?width=1200&format=pjpg&auto=webp&s=320f829aa6eadecb94431510f8310354c4845361', 'created': '2024-11-12 05:18:23', 'submission_id': '1gpa8mm'}
{'comment': 'From the 2016 article in my previous comment.\n\n>After the election of Donald J. Trump, fears are growing that segments of his base may physically or emotionally abuse minorities, immigrants, women and members of the L.G.B.T. community. As a show of support, groups of people across America are attaching safety pins to their lapels, shirts and dresses to signify that they are linked, willing to stand up for the vulnerable.', 'created': '2024-11-12 19:50:08', 'submission_id': '1gpa8mm'}
{'comment': ' Wow I love it. “While campaigning for President Joe Biden in 2020, Harris famously paired pearls with her black Converse low-tops.” \n\n For anyone curious \nhttps://wwd.com/feature/kamala-harris-pearls-chucks-1236503184/\n\n I love how it’s a look that’s so easy to recreate.', 'created': '2024-11-12 07:49:44', 'submission_id': '1gpa8mm'}
{'comment': 'Cool thanks again : )', 'created': '2024-11-12 06:46:11', 'submission_id': '1gpa8mm'}
{'comment': 'Read up on the controversy about this.', 'created': '2024-11-13 03:43:00', 'submission_id': '1gpa8mm'}
{'comment': 'That’s true in theory, but school boards in some areas are determined to define “substantial disruption” to suit their ends.', 'created': '2024-11-14 01:46:47', 'submission_id': '1gpa8mm'}
{'comment': "Wouldn't that be four possibilities or is it assuming 01 wouldn't be valid?", 'created': '2024-11-12 14:25:27', 'submission_id': '1gpa8mm'}
{'comment': 'But your reply was genius either way 😜', 'created': '2024-11-13 00:09:23', 'submission_id': '1gpa8mm'}
{'comment': 'Oh, you just now wore it! I hope you have enough support at home that you can flaunt it, hard. 💕', 'created': '2024-11-12 23:44:48', 'submission_id': '1gpa8mm'}
{'comment': '27 8x10 color glossy photographs w Circles and arrows and a paragraph on the back of each one.', 'created': '2024-11-12 07:22:35', 'submission_id': '1gpa8mm'}
{'comment': 'I stand corrected! \n\nomg dont tell my husband. he has a picture of Seeger playing a bedpan banjo on our wall- that my FIL made him as a joke. \n\npersonally- we need to take that folk energy into today’s world', 'created': '2024-11-12 14:48:59', 'submission_id': '1gpa8mm'}
{'comment': 'Maybe it’s worth the effort to try to explain it. It’s a sign of courage and commitment to stand up for each other when one or all aren’t being treated well.', 'created': '2024-11-12 03:45:30', 'submission_id': '1gpa8mm'}
{'comment': 'I saw a Sophie Scholl t-shirt that was just her portrait. Arguments can be made pro and con, but they’re there. Don’t know current feelings on Che Guevara shirts, but they would be equivalent.', 'created': '2024-11-12 14:07:31', 'submission_id': '1gpa8mm'}
{'comment': 'Yeah, I know that, but how is that a below the radar political statement?', 'created': '2024-11-12 05:22:09', 'submission_id': '1gpa8mm'}
{'comment': 'Will definitely get some safety pins!!', 'created': '2024-11-12 23:34:54', 'submission_id': '1gpa8mm'}
{'comment': 'Ya ..you know I think that really sucks. Actually, I didn\'t know the trend started as a "white women, wear to say we are safe"..just googled it... All I knew was to me it\'s a sign your not an idiot who voted for trump...\n\nSo the rest makes it feel gross and totally performative...but is that the full movement or a sector of people? I simply want to see like minded people in the country with me 🫠💙', 'created': '2024-11-13 03:55:58', 'submission_id': '1gpa8mm'}
{'comment': 'Sure but it’s not their definition that matters. It’s the Courts’ definition.', 'created': '2024-11-14 02:36:31', 'submission_id': '1gpa8mm'}
{'comment': 'It is N possibilities. I listed the decimal assumption first to serve as 01, then binary is either 02 or 10. Trinary is 03 or 10. The series continues indefinitely. For A (10 base 10) would be the people who considered other bases but still interpreted it in decimal. Just to avoid quite repeating myself.', 'created': '2024-11-12 21:20:28', 'submission_id': '1gpa8mm'}
{'comment': 'Well specifically I designed it in photoshop an slapped it on a design and then ordered it', 'created': '2024-11-12 23:45:57', 'submission_id': '1gpa8mm'}
{'comment': 'That’s Arlo though. We listen to this every thanksgiving. I’m tempted to skip it this year becsuse of maga inlaws.', 'created': '2024-11-12 10:53:42', 'submission_id': '1gpa8mm'}
{'comment': 'Very well said!', 'created': '2024-11-12 12:05:06', 'submission_id': '1gpa8mm'}
{'comment': 'Thank you, I am not very good at putting ideas into words, I appreciate your succinct and on target explanation Cardiologist.', 'created': '2024-11-12 15:37:29', 'submission_id': '1gpa8mm'}
{'comment': '[From the comment I replied to](https://archive.ph/2016.11.16-232031/http://www.nytimes.com/2016/11/14/fashion/safety-pin-ally-activism.html?_r=0)', 'created': '2024-11-12 05:23:53', 'submission_id': '1gpa8mm'}
{'comment': 'These days, SCOTUS would find for M4L, which BTW is funded by powerful forces that can afford counsel. It’s usually local advocacy groups that go up against school boards and they usually don’t have any funding at all other than members who cover the cost of getting flyers printed. Anyway, very few local School Board cases go to SCOTUS. State SCs, maybe.', 'created': '2024-11-15 02:38:43', 'submission_id': '1gpa8mm'}
{'comment': 'Indeed, it is. So clever. Listen anyway!', 'created': '2024-11-12 17:57:30', 'submission_id': '1gpa8mm'}
{'comment': 'Fuck that. Make them work for that shit.\n\n\nFight, file lawsuits, repeat.', 'created': '2024-11-12 02:22:42', 'submission_id': '1gp8t3h'}
{'comment': 'Resistance is necessary. If they can tie it up 2026 is a chance to stop full implementation of 2025.', 'created': '2024-11-12 02:38:43', 'submission_id': '1gp8t3h'}
{'comment': 'Welcome to a hostile take over and all checks and balances failed including the military.\n\n\nBuckle up because one well known criminal and narcissist just proved how broken and out of date our system is.', 'created': '2024-11-12 02:40:19', 'submission_id': '1gp8t3h'}
{'comment': 'Never do their work for them. Make them do it, every step of the way.', 'created': '2024-11-12 02:41:12', 'submission_id': '1gp8t3h'}
{'comment': 'The trick here would be to pretend to be enthusiastically onboard and then sabotage it as much as you can from the inside and if possible turn them against one another', 'created': '2024-11-12 03:12:14', 'submission_id': '1gp8t3h'}
{'comment': 'Christian fascism is coming… and 75 million people voted to let democracy die', 'created': '2024-11-12 03:14:16', 'submission_id': '1gp8t3h'}
{'comment': 'Make them fire you.', 'created': '2024-11-12 02:15:41', 'submission_id': '1gp8t3h'}
{'comment': "On January 21 the country will be irretrievably broken. I don't want to live in a country with people as heartless and evil as Republicans, politicians, pundits, and citizens have become. To a man (or woman) they have become pieces of shit.", 'created': '2024-11-12 02:50:57', 'submission_id': '1gp8t3h'}
{'comment': 'We had our chance to keep them out of office, but 15 million voted for the Orangutan', 'created': '2024-11-12 03:52:04', 'submission_id': '1gp8t3h'}
{'comment': 'The lawyers work for the government not the president and their oath is upholding the CONSTITUTION not the president.. this asshole is acting like they have to bow to Trump! He’s not god!', 'created': '2024-11-12 04:44:19', 'submission_id': '1gp8t3h'}
{'comment': 'sign this https://www.change.org/p/demand-an-investigation-and-recount-into-the-2024-us-election', 'created': '2024-11-12 03:36:39', 'submission_id': '1gp8t3h'}
{'comment': 'Is there any way to stop him? Biden is still president. Is there anything\nhe can do? It feels like they are giving a loaded gun to a baby. This is insane!', 'created': '2024-11-12 04:18:17', 'submission_id': '1gp8t3h'}
{'comment': 'Fuck trump?', 'created': '2024-11-12 02:27:39', 'submission_id': '1gp8t3h'}
{'comment': 'The lawyers abandoning ship should really consider not doing that—please stay and fight for us!', 'created': '2024-11-12 15:12:29', 'submission_id': '1gp8t3h'}
{'comment': 'This. Give em hell through litigation. File and refile. Gum up the system. Slow down this wannabe dictator. By the time he makes any progress fighting the DOJ, it should be midterms.', 'created': '2024-11-12 03:17:17', 'submission_id': '1gp8t3h'}
{'comment': 'YES! Exactly what trumps done to the American Criminal Justice system. Delay. Delay. Delay.', 'created': '2024-11-12 03:53:57', 'submission_id': '1gp8t3h'}
{'comment': 'Agreed. This is also precisely what a number of retired flag officers said in their amici briefing to the Court regarding presidential immunity, too. That there is no precedent for resignation in the military for disagreeing with orders. Of course, there’s also not much American precedent for outright refusing orders, or for what comes next. Eventually Trump will find everyone he needs. And we need to be prepared for that moment, because I suspect no one in positions of actual influence has really prepared for that eventuality.', 'created': '2024-11-12 05:57:17', 'submission_id': '1gp8t3h'}
{'comment': 'We need a hand recount. The numbers are way too suspicious.', 'created': '2024-11-12 04:04:32', 'submission_id': '1gp8t3h'}
{'comment': 'Trump is a very good stress test of our social, legal, and electoral systems.\n\nWe failed!', 'created': '2024-11-12 05:16:35', 'submission_id': '1gp8t3h'}
{'comment': 'I am 100% anticipating them all fighting amongst themselves and tearing each other apart. Just hope as few innocent people as possible are hurt by their insanity.', 'created': '2024-11-12 06:09:17', 'submission_id': '1gp8t3h'}
{'comment': 'They will.\n\nWith a gun.', 'created': '2024-11-12 09:23:08', 'submission_id': '1gp8t3h'}
{'comment': "No they stayed home and didn't vote.", 'created': '2024-11-12 04:11:01', 'submission_id': '1gp8t3h'}
{'comment': '', 'created': '2024-11-12 04:05:02', 'submission_id': '1gp8t3h'}
{'comment': 'What is that? Is it legit?', 'created': '2024-11-12 04:23:29', 'submission_id': '1gp8t3h'}
{'comment': '> Biden is still president. Is there anything he can do?\n\nYes, but he won\'t do it because "decorum."\n\n> It feels like they are giving a loaded gun to a baby.\n\nNo, it\'s giving a loaded gun to the guy who\'s already stabbing you.', 'created': '2024-11-12 09:24:26', 'submission_id': '1gp8t3h'}
{'comment': 'Sorry, that’s what I meant to say', 'created': '2024-11-12 04:11:33', 'submission_id': '1gp8t3h'}
{'comment': "It's a change.org petition.\n\nIt's worth the paper it's not printed on.", 'created': '2024-11-12 09:23:38', 'submission_id': '1gp8t3h'}
{'comment': 'What could he do?', 'created': '2024-11-12 21:26:43', 'submission_id': '1gp8t3h'}
{'comment': 'Basically the same thing', 'created': '2024-11-12 04:13:59', 'submission_id': '1gp8t3h'}
{'comment': "It's gone?", 'created': '2024-11-13 09:30:09', 'submission_id': '1gp8t3h'}
{'comment': "He has full presidential immunity thanks to SCOTUS, I'm sure you can figure out a few things he could do.", 'created': '2024-11-12 23:17:37', 'submission_id': '1gp8t3h'}
{'comment': 'No excuses. When this goes off the rails it’s all on them. The dog caught the car again.\xa0', 'created': '2024-11-12 02:31:06', 'submission_id': '1gp8r34'}
{'comment': 'From now on anything bad that happens we need to hang it on him. “Donald Trump’s deficit” “Republican service cuts” etc', 'created': '2024-11-12 02:35:54', 'submission_id': '1gp8r34'}
{'comment': "Yeah, we're fucked", 'created': '2024-11-12 02:48:15', 'submission_id': '1gp8r34'}
{'comment': "No they didn't. They're only at 214. They still need at least 4 more to go", 'created': '2024-11-12 02:21:57', 'submission_id': '1gp8r34'}
{'comment': 'It blows my mind why some thought sitting out was a good idea!? Trump maintained his base, a good portion of the DEMS didn’t. That fucking blows. Now the country will go to shit because some people were just too self absorbed. Why are we doing this to everyone!? And now you gave them absolute power to be FULL on NAZI. My god.', 'created': '2024-11-12 04:25:25', 'submission_id': '1gp8r34'}
{'comment': 'Get ready for them to give tax cuts to billionaires, pardon every crime Trump has done, and then spend the next 2 years focusing on culture war shit and not fixing anything material.', 'created': '2024-11-12 02:50:15', 'submission_id': '1gp8r34'}
{'comment': 'Let’s just remember that the GOP has had control of the house for 2 years and all we’ve seen is infighting. And those Republicans that got up in favour of Kamala still have to go to work with the MAGA nut bars. 🥜', 'created': '2024-11-12 08:07:17', 'submission_id': '1gp8r34'}
{'comment': 'Literally no one is reporting this. Other than this as far as I can see. Many of the races haven’t even finished counting yet.', 'created': '2024-11-12 02:22:18', 'submission_id': '1gp8r34'}
{'comment': "Thank God for the filibuster. Now everyone sees why Biden didn't support getting rid of it.", 'created': '2024-11-12 03:08:59', 'submission_id': '1gp8r34'}
{'comment': 'They made the bed, and now they shall sleep in it. Don’t blame us for anything bad that happens to the homeland. When GOP eventually screws up, call them out for what they do! Do this every day all the way up to 2026 midterms!', 'created': '2024-11-12 08:28:20', 'submission_id': '1gp8r34'}
{'comment': 'This country is fucked!', 'created': '2024-11-12 02:23:16', 'submission_id': '1gp8r34'}
{'comment': 'It’s such a slim majority in the house that I doubt they will get much through like last time. Trump won yes but as the votes come in the margins weren’t so large. I doubt we see anything super extreme with these margins besides the tax cuts', 'created': '2024-11-12 02:56:51', 'submission_id': '1gp8r34'}
{'comment': "I'm fine with this. Trumpers can get all they deserve. I'll suffer too but atleast I can laugh at them.", 'created': '2024-11-12 03:06:59', 'submission_id': '1gp8r34'}
{'comment': "They'll end up with a 2 or 3 seat majority. This last year they almost lost all 9 seats of that gave them their majority -- we might retake the House just simply due to MAGA incompetence and attrition.", 'created': '2024-11-12 04:12:54', 'submission_id': '1gp8r34'}
{'comment': 'This is from NewsNation.\n\nMost outlets have not yet called the US house.', 'created': '2024-11-12 12:28:56', 'submission_id': '1gp8r34'}
{'comment': "Best outcome is that the Republicans win a majority with 1 seat and there's a bunch of infighting and nothing gets done. Meanwhile, Trump fucks up the economy while liberals band together to build bastions of hope outside of the federal government.", 'created': '2024-11-12 02:54:40', 'submission_id': '1gp8r34'}
{'comment': 'When things go to shit, I would suggest not calling them out with “you did this” cause that would cause more division. I think I’m going to use more “I can’t believe people voted for this” or “who voted for this” or “I bet the people that voted for this are pretty sorry now” we need them to be on our side if we ever get to vote legitimately again.', 'created': '2024-11-12 02:50:43', 'submission_id': '1gp8r34'}
{'comment': 'Ofcourse. Just pile it on.', 'created': '2024-11-12 04:35:52', 'submission_id': '1gp8r34'}
{'comment': "OK\nI'm still going to do what I can to fight for you.", 'created': '2024-11-12 06:39:49', 'submission_id': '1gp8r34'}
{'comment': '', 'created': '2024-11-12 08:07:55', 'submission_id': '1gp8r34'}
{'comment': 'If Elise Stefanik from New York is made Ambassador to the UN, that means one less Republican in the House. At least until a special election is held.', 'created': '2024-11-12 03:47:33', 'submission_id': '1gp8r34'}
{'comment': "No they haven't, they have 215 seats so far", 'created': '2024-11-12 04:16:24', 'submission_id': '1gp8r34'}
{'comment': 'Cool. We’re pretty much *completely* fucked. \n\nAll of them deserve those leopards that are going to rip their faces off. The only thing that keeps my spirits up is the fact that a lot of them will suffer the consequences of this election along with all of us. Except they deserve it.', 'created': '2024-11-12 06:32:28', 'submission_id': '1gp8r34'}
{'comment': "Well, it's been good America. I mean, not that good. Not even like, kinda ok. But nothing good happens from January on.", 'created': '2024-11-12 08:49:19', 'submission_id': '1gp8r34'}
{'comment': 'What will the excuse be now when they make things worse and don’t fix any problems.', 'created': '2024-11-12 13:48:27', 'submission_id': '1gp8r34'}
{'comment': 'Does this mean the can pass anything they want? Or do they need a supermajority, meaning they’d need the support of democrats?', 'created': '2024-11-12 14:14:07', 'submission_id': '1gp8r34'}
{'comment': 'https://preview.redd.it/h4hb1kqf6h0e1.jpeg?width=500&format=pjpg&auto=webp&s=43b97690e004ab8d91018099de3b4775957a3278', 'created': '2024-11-12 14:47:52', 'submission_id': '1gp8r34'}
{'comment': 'Great job Democrats! All that money that I spent to keep MAGA out of government worked spectacularly.', 'created': '2024-11-12 03:41:19', 'submission_id': '1gp8r34'}
{'comment': 'Maybe we will win back Elise Stefanik’s seat I. The special election. Then again, GOP is going to dump so much money into that one.', 'created': '2024-11-12 03:25:36', 'submission_id': '1gp8r34'}
{'comment': 'Just sit back and wait for the inevitable train wreck.', 'created': '2024-11-12 13:22:16', 'submission_id': '1gp8r34'}
{'comment': '', 'created': '2024-11-12 10:32:02', 'submission_id': '1gp8r34'}
{'comment': "Votes are still being counted and the margins are slim. The AP hasn't even called it yet.", 'created': '2024-11-12 12:46:55', 'submission_id': '1gp8r34'}
{'comment': 'Fuuuuuuuuuuuuuuuuck\nBut at least everything can be fully blamed on them now', 'created': '2024-11-12 16:47:13', 'submission_id': '1gp8r34'}
{'comment': 'Woo hoo! Who needs checks and balances? /s', 'created': '2024-11-12 18:28:57', 'submission_id': '1gp8r34'}
{'comment': 'Yup. We’re totally fucked now and likely for the next 20+ years.', 'created': '2024-11-12 04:08:47', 'submission_id': '1gp8r34'}
{'comment': 'we are fuckity fucked fucked fucked up the ass, we are so fucked', 'created': '2024-11-12 03:25:33', 'submission_id': '1gp8r34'}
{'comment': 'great', 'created': '2024-11-12 03:27:24', 'submission_id': '1gp8r34'}
{'comment': 'Christ', 'created': '2024-11-12 15:15:52', 'submission_id': '1gp8r34'}
{'comment': 'Now the MAGAtards have no excuse anymore, anything bad that happens they have no choice but to blame republicans because they are now the majority, everything is on them now. Democrats can’t do shit atm, so blame republicans.', 'created': '2024-11-12 21:20:36', 'submission_id': '1gp8r34'}
{'comment': 'If they cheated this is our last chance to catch them. Stopping them from cheating in the next election will be impossible if they pulled it off this time..', 'created': '2024-11-13 22:04:03', 'submission_id': '1gp8r34'}
{'comment': 'republicans aka conservatives aka REGRESSIVES should NOT be allowed to vote or hold public office!\n\n\n\n\n\nWe need to STOP tolerating republicans aka conservatives aka regressives and VOTE THEM ALL OUT!\n\n\n\nWe already know they are racist.\n\n\n\nWe already know they are less intelligent.\n\n\n\nWe already know they are anti Science.\n\n\n\nWe already know they are more religious.\n\n\n\nThey are regressive. And evil.\n\n\n\nAs such, they should not be allowed to have a say in matters of importance. Or hold positions of leadership.\n\n\n\nWhy? I think we can look around and see why.\n\n\n\nTo those who say "But... but... they\'re citizens and have the RIGHT to vote" - well... it seems that is a problem, doesn\'t it? For all they want to do is impose their version of xtian sharia law upon us all.\n\n\n\nWe do not defer to children for advice on important matters. So why do we include regressives?\n\n\n\nWe do not consult the taliban for advise on quantum physics. So why do we include regressives on genuinely important social issues?\n\n\n\nThey want to drag us back to the bronze age.', 'created': '2024-11-12 06:05:23', 'submission_id': '1gp8r34'}
{'comment': "people getting deported. gutted or repealed affordable care act. gutted social security. risk to future fair elections. it's all good though. the left still has their super wokeness...or maybe not lol...\n\nto combat oppression, the left (far left) became oppression themselves with cancel culture and social media shaming. things weren't even that bad. they weren't perfect, but it certainly wasn't like the pre-civil rights era. f around and find out. shrugs.", 'created': '2024-11-12 03:57:45', 'submission_id': '1gp8r34'}
{'comment': '[removed]', 'created': '2024-11-12 10:36:50', 'submission_id': '1gp8r34'}
{'comment': 'Very sad', 'created': '2024-11-12 12:35:59', 'submission_id': '1gp8r34'}
{'comment': 'republicans aka conservatives aka REGRESSIVES should NOT be allowed to vote or hold public office!\n\n\n\n\n\nWe need to STOP tolerating republicans aka conservatives aka regressives and VOTE THEM ALL OUT!\n\n\n\nWe already know they are racist.\n\n\n\nWe already know they are less intelligent.\n\n\n\nWe already know they are anti Science.\n\n\n\nWe already know they are more religious.\n\n\n\nThey are regressive. And evil.\n\n\n\nAs such, they should not be allowed to have a say in matters of importance. Or hold positions of leadership.\n\n\n\nWhy? I think we can look around and see why.\n\n\n\nTo those who say "But... but... they\'re citizens and have the RIGHT to vote" - well... it seems that is a problem, doesn\'t it? For all they want to do is impose their version of xtian sharia law upon us all.\n\n\n\nWe do not defer to children for advice on important matters. So why do we include regressives?\n\n\n\nWe do not consult the taliban for advise on quantum physics. So why do we include regressives on genuinely important social issues?\n\n\n\nThey want to drag us back to the bronze age.', 'created': '2024-11-12 06:05:41', 'submission_id': '1gp8r34'}
{'comment': None, 'created': '2024-11-12 02:12:14', 'submission_id': '1gp8r34'}
{'comment': 'sign this https://www.change.org/p/demand-an-investigation-and-recount-into-the-2024-us-election', 'created': '2024-11-12 03:36:55', 'submission_id': '1gp8r34'}
{'comment': "That isn't going to matter. Did you miss the part where they've been blaming democrats for the way the wars they started in Iraq and Afghanistan went? Or where they took credit for obama's economy after Bush tanked it and they all voted against propping up the economy? \n\n\nThe republican media is a sophisticated propaganda machine. They will paint an objectively untrue picture of reality and that's what we're going to have to run against.", 'created': '2024-11-12 03:01:57', 'submission_id': '1gp8r34'}
{'comment': "We've been saying the dog caught the car since Roe was overturned but they just keep getting more power...", 'created': '2024-11-13 22:04:56', 'submission_id': '1gp8r34'}
{'comment': 'The car is too f***ing slow. Libs (like me) have to stop driving Priuses and upgrade to electric I guess.', 'created': '2024-11-12 06:14:44', 'submission_id': '1gp8r34'}
{'comment': 'Yes!!', 'created': '2024-11-12 03:25:42', 'submission_id': '1gp8r34'}
{'comment': 'You guys should get those same stickers republicans had against Biden. Every time the cost of groceries or gas goes up, stick it with “Trump did this.”', 'created': '2024-11-12 14:18:26', 'submission_id': '1gp8r34'}
{'comment': 'I love this for them', 'created': '2024-11-12 03:53:07', 'submission_id': '1gp8r34'}
{'comment': "How we don't control the algorithm or the media", 'created': '2024-11-12 11:37:21', 'submission_id': '1gp8r34'}
{'comment': "I already started it. \n\nLast night I ordered pizza. They were out of Italian sausage. I pretend-ranted to my wife and son that pizza hut was in on all of it and was preparing us for the Trump-era food shortages.\n\nYesterday morning my foreman thought a certification I have was expired because I forgot to give him the updated paperwork. It was Trump's fault it expired because trump knows I voted against him, but luckily biden planned ahead and made sure I had a new certification that's good for 5 years to get me through the dark times ahead.", 'created': '2024-11-12 12:45:55', 'submission_id': '1gp8r34'}
{'comment': 'Just ignore than the Republicans have been in office for 1 of the last 4 terms then huh.', 'created': '2024-11-12 10:46:58', 'submission_id': '1gp8r34'}
{'comment': 'Yup.', 'created': '2024-11-12 03:04:55', 'submission_id': '1gp8r34'}
{'comment': 'A slim majority means nothing gets passed without massive compromise', 'created': '2024-11-12 05:27:34', 'submission_id': '1gp8r34'}
{'comment': 'You said it!', 'created': '2024-11-12 05:15:57', 'submission_id': '1gp8r34'}
{'comment': 'Theres one outlet reporting it but I don’t know how they’ve done that projection since most of the races in question haven’t had any vote total updates in some time. It’s as if someone just decided to say well that’s it the Republicans have won. Now the narrative will be if the Democrats take control that it was stolen…', 'created': '2024-11-12 02:31:46', 'submission_id': '1gp8r34'}
{'comment': "There are 17 seats left. Democrats need to win 14 of them to keep Republicans from winning a majority. That doesn't seem likely...", 'created': '2024-11-12 03:08:27', 'submission_id': '1gp8r34'}
{'comment': ">No they didn't. They're only at 214. They still need at least 4 more to go\n\nDon't forget Stefanik and Waltz seats so far, Trump offered 2 positions to them to his cabinet, they ended to resign from congress 😉", 'created': '2024-11-12 11:21:05', 'submission_id': '1gp8r34'}
{'comment': "The GOP should get 222 seats, 221 if we're lucky 223 if we're unlucky. So not good but could have been worse.\xa0", 'created': '2024-11-12 15:37:27', 'submission_id': '1gp8r34'}
{'comment': 'I wish I was nearly this optimistic. I’m imagining things much worse.', 'created': '2024-11-12 03:15:49', 'submission_id': '1gp8r34'}
{'comment': "They don't need a majority in the House for pardons.", 'created': '2024-11-12 03:08:59', 'submission_id': '1gp8r34'}
{'comment': 'I wish I had better news but: \n\nhttps://thehill.com/homenews/state-watch/4974235-house-republicans-control-majority/amp/\n\nhttps://www.reuters.com/world/us/republicans-win-majority-us-house-seats-government-sweep-2024-11-12/', 'created': '2024-11-12 02:30:30', 'submission_id': '1gp8r34'}
{'comment': 'Unless the gop risks it and gets rid of it to pass an abortion ban. But it would be really unpopular. And they might just use the filibuster as a reason that they can’t just to preserve their own electoral chances', 'created': '2024-11-12 03:57:27', 'submission_id': '1gp8r34'}
{'comment': "Exactly. They have the ability to do nearly anything financially... which is still going to be herding cats with the slim majority they have in the house, but nothing via legislation without getting a handful of dems on board.\n\nIt's gonna suck, but it's not the end. Just need a really good showing in 2026 and 2028. Get rid of the establishment stances that worked in the 90s and get a real, authentic economic message that speaks to people's lived experience.", 'created': '2024-11-12 03:33:34', 'submission_id': '1gp8r34'}
{'comment': 'What makes you think that survives? We idiotically openly advocated ending it, so what reason would they have to keep it or political price would they pay ending it. \n\nIn my dreams they move back to the old standing filibuster where you have to actually work for it. All things shouldnt require 60 votes, BUT for major topics a party can shut everything down.', 'created': '2024-11-12 14:48:45', 'submission_id': '1gp8r34'}
{'comment': 'I’m more scared for Ukraine, if Zelenskyy isn’t able to butter up Trump enough then they’re fucked. One of the proposals from his inner circle right now is freezing the front line and delaying Ukraine’s NATO accession by at least 20 years', 'created': '2024-11-12 03:50:14', 'submission_id': '1gp8r34'}
{'comment': 'Somebody make those childish “I did that!” stickers they were slapping on every gas pump.', 'created': '2024-11-12 03:02:39', 'submission_id': '1gp8r34'}
{'comment': '💙', 'created': '2024-11-12 16:51:08', 'submission_id': '1gp8r34'}
{'comment': 'Obama, of course.', 'created': '2024-11-12 18:40:39', 'submission_id': '1gp8r34'}
{'comment': "It's close, but I think we're in for just a ton of stalling.", 'created': '2024-11-12 14:49:40', 'submission_id': '1gp8r34'}
{'comment': 'The people that voted for him will pay for their transgressions. No one is safe.', 'created': '2024-11-12 03:57:00', 'submission_id': '1gp8r34'}
{'comment': 'And our anus has been lubed up by the supreme court!', 'created': '2024-11-12 03:50:40', 'submission_id': '1gp8r34'}
{'comment': 'Someone needs to wrest back control of their bot.', 'created': '2024-11-12 11:47:52', 'submission_id': '1gp8r34'}
{'comment': 'How did *this exact same* rhetoric fare in the we just had?', 'created': '2024-11-12 11:34:29', 'submission_id': '1gp8r34'}
{'comment': "Nah. Biden's legacy is just fine. It's not his fault we now live in a world where facts no longer matter, and the winner is the one who can spew the most hate filled lies the fastest.", 'created': '2024-11-12 02:40:53', 'submission_id': '1gp8r34'}
{'comment': 'Nah, we lost this one unfortunately, no amount of recounts will change that. We can’t stop to their level', 'created': '2024-11-12 03:51:32', 'submission_id': '1gp8r34'}
{'comment': "Who cares. Stop giving power to their misinformation. Call them out on it. \n\nAsk them how the democrats held them back with no majority in any of the 3 branches of government. \n\nTurn the hypocrisy against them and don't let up, or back down ever. \n\nTrump is in charge. It's on him. \n\nDont get into the weeds. Oh the democrats stopped him so how? Then how come he was so incompetent he couldn't control his own government?\n\nAnd remind them that they voted for every single economic downturn. You won't run out of examples.", 'created': '2024-11-12 04:01:28', 'submission_id': '1gp8r34'}
{'comment': 'Right? These are the same people who blame Barack Obama for 9/11.', 'created': '2024-11-12 06:24:29', 'submission_id': '1gp8r34'}
{'comment': 'No joke. There’s a career MAGA/Proud Boy adjacent congressional candidate in WA-3, Joe Kent, who was handpicked by the Trump team to run because of his tragic backstory of losing his wife in the Global War on Terror in a bombing in Syria\n\nWhen you listen between the lines on his many, many, many podcast and Fox News visits he lays out how he’s out for revenge and blames Biden and Obama for his wife’s deployment death\n\nExcept she was serving under Commander in Chief Donald Trump when she died? In a region destabilized by George W. Bush’s thoughtless wars?\n\nMAKE IT MAKE SENSE\n\nOne silver lining is that he lost yet again but jfc', 'created': '2024-11-12 07:07:59', 'submission_id': '1gp8r34'}
{'comment': 'GOP has 6-12 months they can blame everything on Biden', 'created': '2024-11-12 03:14:50', 'submission_id': '1gp8r34'}
{'comment': 'This is my fear. The fall out from this past election is going to have a massive negative impact on our country as a whole. Frankly nothing good can come of this. As you pointed out, the republicans will just blame the democrats and their supporters will believe it. Now, you and I both noted this point, so hopefully dems do too and strategically counter this. They need to start NOW. If we see the propaganda machine revving up ---- I hope we see a proper response. They went low, we went high and they just went lower. I hope that the democratic strategists are at least half as smart as we are.', 'created': '2024-11-12 03:46:38', 'submission_id': '1gp8r34'}
{'comment': 'Last I knew Fox News was still playing in many military facilities. I actually think that if you point at one thing. The alternate reality that they build. I mean Fox is literally Russian propaganda.', 'created': '2024-11-12 06:00:52', 'submission_id': '1gp8r34'}
{'comment': 'This. The truth does not matter anymore. The only way to fight this fire is with fire. Liberals and progressives should build their own online media machine.', 'created': '2024-11-12 08:06:41', 'submission_id': '1gp8r34'}
{'comment': 'Well said 👏🏽, it been a formidable propaganda machine for at least 3 decades', 'created': '2024-11-12 16:30:59', 'submission_id': '1gp8r34'}
{'comment': 'Agreed. The algorithm is on the republicans’ side. There’s a reason Elon bought Twitter..', 'created': '2024-11-12 17:25:42', 'submission_id': '1gp8r34'}
{'comment': 'I agree wholeheartedly.\xa0\n\n\nRepublicans were really effective on marketing frustrations about inflation against,\xa0 but two can play at this game.\n\n\nEspecially since I know with 100% certainty that Trump nor congress will do a god damn thing to actually address it.', 'created': '2024-11-12 16:10:04', 'submission_id': '1gp8r34'}
{'comment': 'So we can blame Biden for things Trump did but not vice versa? Nah he’s getting exactly what he paid', 'created': '2024-11-12 10:58:46', 'submission_id': '1gp8r34'}
{'comment': 'Such a conveniently selected window. Another way to look at it is that Democrats and Republicans have been kind of trading terms. Two of Bush, two of Obama, one of Trump, one of Biden, now another one of Trump. Americans are SO ANGRY... at something?', 'created': '2024-11-12 11:20:19', 'submission_id': '1gp8r34'}
{'comment': "And by compromise I guess we're talking about appeasement of fascists.\n\nIs this what the Democrat party is actually trying to do?", 'created': '2024-11-12 05:34:23', 'submission_id': '1gp8r34'}
{'comment': 'By "compromise" you mean "anyone who doesn\'t do what Trump wants gets official acted"', 'created': '2024-11-12 09:26:25', 'submission_id': '1gp8r34'}
{'comment': 'That was true when Biden was president. Republicans will do whatever Trump says.', 'created': '2024-11-13 22:05:52', 'submission_id': '1gp8r34'}
{'comment': 'That’s why they’re moving so quickly. They called the presidential race very quickly to control the narrative too.', 'created': '2024-11-12 03:07:49', 'submission_id': '1gp8r34'}
{'comment': "This doesn't even count any potential recounts.", 'created': '2024-11-12 16:46:28', 'submission_id': '1gp8r34'}
{'comment': 'Most of them are in California. So they could get lucky', 'created': '2024-11-12 03:11:57', 'submission_id': '1gp8r34'}
{'comment': 'CBS is showing 215-210, which means 8 of 10\n\n\nhttps://www.cbsnews.com/live-updates/house-election-results-2024/', 'created': '2024-11-12 12:08:18', 'submission_id': '1gp8r34'}
{'comment': "I mean I'm sure he'll try to pull a president-for-life thing. And then we'll have Don jr as heir to the throne.", 'created': '2024-11-12 03:20:06', 'submission_id': '1gp8r34'}
{'comment': 'The count is still at 214 for AP, so I can’t say its called yet', 'created': '2024-11-12 03:04:47', 'submission_id': '1gp8r34'}
{'comment': 'I am cautiously optimistic that Trump getting to [sorta] go wild for 2+ years will usher in a new wave of progressive politics and that this defeat will lead to more grassroots politicians.', 'created': '2024-11-12 06:57:20', 'submission_id': '1gp8r34'}
{'comment': "Yes I heard about that. It's a real shame", 'created': '2024-11-12 03:53:14', 'submission_id': '1gp8r34'}
{'comment': 'I wonder if there’s any chance of an aid package getting through the lame duck before Trump comes in', 'created': '2024-11-12 03:58:31', 'submission_id': '1gp8r34'}
{'comment': 'I’ll donate to that cause.', 'created': '2024-11-12 03:03:24', 'submission_id': '1gp8r34'}
{'comment': 'It doesn’t matter how lubed we are with the sandpaper condom that is Project 2025.', 'created': '2024-11-12 07:09:52', 'submission_id': '1gp8r34'}
{'comment': 'Facts would matter more if they were presented properly. As the leader, it was Biden’s job to fight the lies and establish the facts. He clearly failed to do that. Biden didn’t even stand up to Trump.\n\nBiden was 78 in 2020, he had no business running knowing that he would be too old to run in 2024.\n\nTrumps second term is indeed Biden’s legacy.', 'created': '2024-11-12 02:47:36', 'submission_id': '1gp8r34'}
{'comment': "I don't think you understand that this is a cult we are dealing with. They have been indoctrinated and are not capable of being called out, they don't use logic. All calling them out does is reinforce their beliefs. Calling out hypocrisy only works if the other person has a conscience. They just have gold medals in mental gymnastics.", 'created': '2024-11-12 05:31:39', 'submission_id': '1gp8r34'}
{'comment': 'Call them out where? Legacy media is hemorrhaging. The social media spheres have been captured by the right, they are overwhelmingly in their pockets. And the people in that media bubble will never hear about the facts, they will never hear Republicans being called out or criticized unless they go against Dear Leader. Those media spheres will find a way to blame Dems and low information voters will absolutely buy it.', 'created': '2024-11-12 04:24:29', 'submission_id': '1gp8r34'}
{'comment': 'The entire media spectrum from Fox to Twitter to the god damned Washington Post and LA Times genuflected to Trump this election. We had two damned months of attacks on Biden that rang out across media from NPR to the Daily Show. TikTok, YouTube and Facebook algorithms are deliberately tuned to enhance the spread of right wing narratives\n\n“Stop giving power to their misinformation”\n\nThe boat on that has already sailed. The average American, if they follow news at all, has a media diet of nothing but misinformation and bias', 'created': '2024-11-12 07:19:14', 'submission_id': '1gp8r34'}
{'comment': 'Yeah right; when I was in church 20 years ago they were blaming George Soros for the most random shit… this month? I heard right-wingers complaining about George soros. It’s always been nonsense, but it still works on them. They will blame everything on the “left” for the next 20 years, and their cult will eat it up, truth doesn’t matter. \nIt’s a Jim James kool-aid train and the maga sheep are ready to get in line. \n \nI’m also just remembering a national debate where [NYC mayor Rudy Giuliani said](https://www.cnn.com/2016/08/15/politics/rudy-giuliani-donald-trump-9-11-terror-attack/index.html) [there has not been] “any successful radical Islamic terrorist attack in the United States” before President Barack Obama took office. \nSeriously, they will never stop blaming the left.', 'created': '2024-11-12 10:15:01', 'submission_id': '1gp8r34'}
{'comment': 'This election was so bad stopping the bleeding until 2026 is the best outcome\n\nYou have to understand, this is the last leverage Democrats have remaining', 'created': '2024-11-12 05:35:12', 'submission_id': '1gp8r34'}
{'comment': 'Sure buddy. Just act like the Kevin McCarthy era wasn’t even existent', 'created': '2024-11-13 22:06:55', 'submission_id': '1gp8r34'}
{'comment': 'You say that like the presidential election was close. We lost, don’t embarrass yourself by posting cope.', 'created': '2024-11-12 04:25:37', 'submission_id': '1gp8r34'}
{'comment': 'Many parts of California are VERY red', 'created': '2024-11-12 03:47:13', 'submission_id': '1gp8r34'}
{'comment': 'With control of both houses they could stack the court with even more extremist MAGA judges, ensuring there won’t be any interference from SCOTUS and a right-wing majority for a century. ~~They could call for a constitutional convention to enshrine a fetal personhood amendment.~~ (EDIT: Got carried away here. This will only happen at state level.) They will be able to revoke immigrant citizenship, so even legal immigrants will be deported, along with any of their now-illegal descendants. They could declare the Democratic party “communistic,” make them illegal, and arrest and imprison Democrats like Pelosi, Schiff, Newsome, Whitmer, or any other Democrat they see as a threat. Any protest will be met with a violent response, both by the National Guard and by the red-hat thugs who will be given a free pass. Border control could be granted even broader powers not to just go after immigrants but to arrest anyone they deem an “immigrant supporter.” Women will have to register their menstrual cycles and fertility status with the state, and doctors will be required to share women’s medical data with the state. Also, get ready for blacklists again. If you have any anti-Trump or anti-GOP posts on your Facebook feeds, get ready for some hardcore cancellation because you won’t be able to find work in many industries. I hope this is all hyperbole, but with both houses and an already compromised SCOTUS, there’s not much that can stop them from doing anything they can imagine.', 'created': '2024-11-12 03:42:37', 'submission_id': '1gp8r34'}
{'comment': 'nah, it will goto highest bidder. he hates his kids.', 'created': '2024-11-12 03:32:22', 'submission_id': '1gp8r34'}
{'comment': 'Aside from that, California may turn the tides for some of these congressional districts, so the race may be poised to be tight', 'created': '2024-11-12 03:06:38', 'submission_id': '1gp8r34'}
{'comment': 'There’s not a shot in hell the House would let it through. I’m gonna contact my Republican congressman soon though and try to motivate him to talk to Trump about supporting Ukraine further though, he’s supported Ukraine even in the most recent vote and responded to my messages before (Lloyd Smucker)', 'created': '2024-11-12 04:06:17', 'submission_id': '1gp8r34'}
{'comment': 'fr', 'created': '2024-11-12 13:55:02', 'submission_id': '1gp8r34'}
{'comment': "So you are blaming Biden for his inability to fight and 24/7 propaganda machine run by republicans with deep pockets and no moral compass? Its not Bidens fault that some black people I know voted for tRump. Its not his fault that women voted against their best interests. Its not his fault that a large majority of american voters don't understand what tariffs are and how they will raise prices. Its not his fault that people voted for a party that laid out a plan to cut entitlements that many of them need to survive. Thats like blaming democrats for the fact that tRump was the representative of the republican party. He wouldn't have made it out of the primaries as a democrat. He would have been fucking laughed of the stage. Thats one thing that man understood. How stupid republicans are.", 'created': '2024-11-12 03:55:48', 'submission_id': '1gp8r34'}
{'comment': "You don't need to change the CULTS mind. You need to at least provide the alternative so that when people look at the cult they at least also hear the objective truth.\n\nIf the cultists messaging is unopposed, then why shouldn't people believe it's true? \n\nThey can be called out. Because every indoctrination contains doubt. You just gotta learn to feed on their doubt, so that they at least have to continue to face it within themselves and so that others continue to see that there's someone feverishly disagreeing.\n\nCalling them out doesn't reinforce their beliefs. It reinforces their insecurity about their own doubt. \n\nThe longer you wait the more cultists there are.\n\nYou aren't changing their mind. You're challenging their rhetoric and those are two completely different things. Most Republicans don't even believe half of what they're saying, they just say it so it sounds unopposed. \n\nDefinitely mental gymnastics - but just call them out for changing the topic and tell them directly that they're changing the topic because they can't face the facts. \n\nTheir lives suck, and the rhetoric makes them feel important.", 'created': '2024-11-12 05:58:53', 'submission_id': '1gp8r34'}
{'comment': "This is difference between Republicans and democrats, and I hate it. \n\nRepublicans will literally come up with even the most elaborate fantasy just to support even the most fucked up idea, and democrats with the right idea spend most of their time convincing themselves why it'll never matter anyway. \n\nIt's been a war on information for decades.", 'created': '2024-11-12 04:52:38', 'submission_id': '1gp8r34'}
{'comment': 'I completely agree! But you\'ll also find that the average America, even the average person "on the left" was saying very similar things. \n\nThe amount of times I heard from democrats thing along the lines of "Well I\'m just not excited about Biden." Or "Just an old white guy" - which while true was so extraordinarily reductivist in the context of the world we are currently experiencing still astounds me. \n\nThe boat sailed on misinformation, but nearly a decade ago. \n\nMy point is that the media can say whatever they want. The media didn\'t push Biden out of his campaign, the democrats and the left did. \n\nThe media does a lot of misinformation, but it\'s also serves the purpose of telling people what they want to hear - and part of that is recognizing the system of values we seem to share collectively values rhetoric and false promises over action and achievement, values ranting bullshit that doesn\'t stop to think versus someone old enough that they may stop to think during each sentence. \n\nThe media didn\'t make it uncool to be a democrat, or to support Joe Biden - although they played a part. It was also the people and the narratives we give weight to. \n\nVery few people would honestly call themselves a supporter of our current media environment, and the legacy media is being bought up largely because it\'s also on its last legs. \n\nWe need to just stop relying on it to dictate the narrative.\n\nNot because you\'re wrong, but because you\'re 100% right.', 'created': '2024-11-12 07:49:06', 'submission_id': '1gp8r34'}
{'comment': 'You say that like this dude didn’t try to storm the capitol his ladt election and didn’t rig it in 2016.', 'created': '2024-11-12 04:27:16', 'submission_id': '1gp8r34'}
{'comment': 'Can confirm, I grew up in Caltucky', 'created': '2024-11-12 05:40:54', 'submission_id': '1gp8r34'}
{'comment': "Yes, but unlike the senate and the presidency, the democrats didn't hold the house for the last 2 years, so the blame for the inflation might go on house Republicans like it did on democrats else where.", 'created': '2024-11-12 03:50:00', 'submission_id': '1gp8r34'}
{'comment': 'That’s a lot to do in less than two years before mid terms for a caucus that can barely pick a speaker of the house. Lots of that would be wildly unpopular and lead to civil unrest on a massive scale. That’s bad for making money which is the main goal for a good portion of republicans. And they always disappoint me, but there are a few R senators that wouldn’t be on board with throwing Adam schiff in jail.', 'created': '2024-11-12 03:55:44', 'submission_id': '1gp8r34'}
{'comment': "They can't call a Constitutional Convention or pass ammendments to the Constitution. They don't have remotely enough numbers for that. They need 3/4 of Congress to pass Amendments and they need approval from the states as well, which there is not a supermajority of red states. \n\nAlso a Convention explicitly is for rewriting the whole thing and thus it has never happened in the history of the country. Even the Confederate states wanted to break away instead of risk it in a Constitutional Convention. They could go in wanting to get fetal personhood or establishing Christianity as the religion of the government but end up losing the 2nd Amendment or the Electoral College or Senate entirely. And even then, a supermajority of states have to approve the new Constitution, which again they don't have.", 'created': '2024-11-12 04:51:50', 'submission_id': '1gp8r34'}
{'comment': 'Honestly... let them revoke citizenship for all immigrants. The Native Americans deserve their land back, we just fucked it up.', 'created': '2024-11-12 05:07:00', 'submission_id': '1gp8r34'}
{'comment': 'Even Baron? I thought he was the good one.', 'created': '2024-11-12 03:47:58', 'submission_id': '1gp8r34'}
{'comment': 'I agree with much of what you said. But my complaint is that Biden was not ruthless or mean enough in standing up to the Bully and the liar that is Trump and his base. Much like your sentiments here, Biden just assumed that Trump is so nuts, the American people would never stoop so low to vote for a lying criminal. \n\nBiden kept quiet thinking that Trump is unelectable. But apparently he wasn’t, and apparently a lot of Americans didn’t care that Trump was an insurrectionist. \n\nWe needed a bully to fight the bully. Someone with rhetorical speaking ability. Someone like Obama.\n\nIt’s politics, you have to fight fire with fire. Biden chose to be a gentleman when he needed to be a fighter, democrats chose to be meek when they needed to lead a revolution and it proved insufficient against Trumps evil propaganda machine. \n\nPolitically, it is absolutely Biden’s fault, and democrats fault.', 'created': '2024-11-12 14:45:30', 'submission_id': '1gp8r34'}
{'comment': 'Now 2016 was rigged? But 2020 we got it figured out, oh u till 2024. You sound like a MAGAt. Be an adult.', 'created': '2024-11-12 04:28:12', 'submission_id': '1gp8r34'}
{'comment': 'Umm I don’t think the voters separate inflation based on a specific house in Congress. The red parts gonna keep Redding lol that’s a California joke if you know it :)', 'created': '2024-11-12 03:52:21', 'submission_id': '1gp8r34'}
{'comment': 'That’s putting way too much faith in the same voters who couldn’t determine that the president doesn’t control inflation and that inflation wasn’t unique to American citizens in a post covid world', 'created': '2024-11-12 07:27:55', 'submission_id': '1gp8r34'}
{'comment': 'Agreed. I’m just spitballing. But Trump has already said he wants to do some of this stuff. And lets face it, he’s going to go play golf and let Vance and the Project 2025 people run things.', 'created': '2024-11-12 04:06:32', 'submission_id': '1gp8r34'}
{'comment': '> That’s a lot to do in less than two years before mid terms\n\nThey already have every one of those bills written. Just need to get them signed.', 'created': '2024-11-12 09:29:34', 'submission_id': '1gp8r34'}
{'comment': 'Thanks for the clarification on that. I thought the threshold was lower but I am wrong.', 'created': '2024-11-12 05:18:12', 'submission_id': '1gp8r34'}
{'comment': 'Why do you think they care?', 'created': '2024-11-12 09:29:54', 'submission_id': '1gp8r34'}
{'comment': 'Baron is taller than him. Cardinal sin.', 'created': '2024-11-12 05:09:13', 'submission_id': '1gp8r34'}
{'comment': 'The Mueller report report told us it was. Have you been paying attention at all? He also said that the Russians weren’t done., that was the main point of his report. smh', 'created': '2024-11-12 04:31:58', 'submission_id': '1gp8r34'}
{'comment': 'Yes, cause of redding, California', 'created': '2024-11-12 03:52:52', 'submission_id': '1gp8r34'}
{'comment': 'All bills are pretty much pre written these days but they still have to pass two houses of Congress. Not saying they can’t get it done, but all of that takes time and political capital', 'created': '2024-11-12 11:56:02', 'submission_id': '1gp8r34'}
{'comment': 'Because the Federal system still runs on good faith and that cuts both ways. At any point the blue states can decide to stop participating in everything and the Feds are pretty powerless to stop that sort of organized passive resistance, especially since that\'s where all the money comes from and the population is. That\'s why Trump is so mad about California "Trump-proofing" the state, because he really can\'t do much to stop them other than threaten to withhold funding, funding that California puts more into than it gets back and just turn around and mess with.', 'created': '2024-11-12 16:10:39', 'submission_id': '1gp8r34'}
{'comment': 'And Melania actuality loves him.', 'created': '2024-11-12 06:58:54', 'submission_id': '1gp8r34'}
{'comment': 'The mueller report determined a coordinated effort to influence public opinion by the Russians. It did not prove that the election was rigged against democrats.', 'created': '2024-11-12 07:26:23', 'submission_id': '1gp8r34'}
{'comment': 'Zzyzx', 'created': '2024-11-12 04:40:25', 'submission_id': '1gp8r34'}
{'comment': "Let's say worst case scenario, what's the fastest they could legally base pass a bill for each item? 1hr? 1day? 1 week?", 'created': '2024-11-12 13:16:40', 'submission_id': '1gp8r34'}
{'comment': '> they still have to pass two houses of Congress\n\nWhich he owns now.\n\nAnyone who gets in the way will get a visit from his very violent cult. Or get "official act"d.', 'created': '2024-11-12 13:17:21', 'submission_id': '1gp8r34'}
{'comment': '> the Federal system still runs on good faith and that cuts both ways\n\nSince when have the Republicans acted in good faith?\n\n> the Feds are pretty powerless to stop that\n\nFeds have the military.', 'created': '2024-11-12 16:49:50', 'submission_id': '1gp8r34'}
{'comment': 'This is why trump is about to retake the White house. \n\nAmerica has no idea and that sucks. \n\nPeople didn’t pay attention.', 'created': '2024-11-12 10:29:37', 'submission_id': '1gp8r34'}
{'comment': '> a coordinated effort to influence public opinion by the Russians.\n\n> the election was rigged against democrats.\n\nRead those two again.', 'created': '2024-11-12 09:27:12', 'submission_id': '1gp8r34'}
{'comment': 'The Republicans don\'t act in good faith, I\'m saying that\'s a two way street and Democrats no longer need to as well should the Federal government overstep its Constitutional framework \n\n\nAs for the Feds "having the military" \n \n\\- The military requires money to run. The money comes from the blue states. Kind of hard for it to function if Trump vaporizes the economy and the dollar by starting this level of crisis. \n\\- The military cannot intervene in domestic affairs by multiple laws. \n\\- In the original hypothetical I was responding to, a party is attempting to illegally change the Constitution which fully violates the oath that the military takes and takes deadly seriously. The military is loyal to the Constitution, not the government, that\'s how our system is setup. \n\\- The military is compromised of people from both red and blue states so even if the military were to ignore all laws and oaths and act against states, there would be dissension amongst the ranks. \n\\- The National Guard is still run by individual states\n\nYour Civil War fantasy isn\'t going to happen and neither is the Republicans writing their will into the Constitution. The Federal Government guardrails are weak in a lot of areas but in this they are extremely strong because the country has gone through this before', 'created': '2024-11-12 17:27:12', 'submission_id': '1gp8r34'}
{'comment': 'You’re confused with what the word rigged implies. It was not a fixed result. Was there meddling on social media by foreign countries? sure, but it was not a forgone conclusion, as was evident by Hilary winning the popular vote.', 'created': '2024-11-12 15:59:38', 'submission_id': '1gp8r34'}
{'comment': '> I\'m saying that\'s a two way street and Democrats no longer need to\n\nThat\'s been true for a while. Dems love freezing to death on that high road.\n\n> The money comes from the blue states.\n\nSo he has them go and take it.\n\n> The military cannot intervene in domestic affairs by multiple laws.\n\nThe Republicans have shown, time and again, that they only care about the law when they can use it to hurt someone else. They don\'t care.\n\n> The military is loyal to the Constitution, not the government, that\'s how our system is setup.\n\nOn paper, sure. But paper can\'t get up and force them to do anything.\n\n> Your Civil War fantasy isn\'t going to happen\n\nI know, because the Dems won\'t fight back.\n\n> in this they are extremely strong\n\n"It can\'t happen here!"', 'created': '2024-11-12 23:22:10', 'submission_id': '1gp8r34'}
{'comment': "> but it was not a forgone conclusion\n\nOh, so as long as they don't rig it perfectly then everything's ok then?", 'created': '2024-11-12 16:50:20', 'submission_id': '1gp8r34'}
{'comment': 'If you were saying Russia “meddled” in our elections I’d agree with you 100%, but using the term “rigged” implies they fabricated the results, which did not happen. It sows doubt in the process of a free and fair election. There was certainly a coordinated effort to misinform the public, but they did not directly tabulate vote counts at the ballot box to achieve a specific result, which is what the term rigging implies.', 'created': '2024-11-12 18:13:36', 'submission_id': '1gp8r34'}
{'comment': '> It sows doubt in the process of a free and fair election.\n\nThat bridge was crossed a long time ago.', 'created': '2024-11-12 23:19:18', 'submission_id': '1gp8r34'}
{'comment': "Is anybody truly surprised by this? \n\nBut there is potential trouble for Trump if he doesn't keep a strict divide between legal immigrants and unauthorized migrants showing up at the border. MAGA is not famous for nuance.", 'created': '2024-11-12 02:08:13', 'submission_id': '1gp8ba7'}
{'comment': 'Leopards are coming for the faces of Hispanic Trump supporters.', 'created': '2024-11-12 01:55:06', 'submission_id': '1gp8ba7'}
{'comment': 'Here we go again. He only picks "the best" people.', 'created': '2024-11-12 02:13:23', 'submission_id': '1gp8ba7'}
{'comment': 'Best thing to turn immigration is to tank the economy, which is guaranteed', 'created': '2024-11-12 02:02:10', 'submission_id': '1gp8ba7'}
{'comment': 'Nobody should be surprised', 'created': '2024-11-12 02:17:22', 'submission_id': '1gp8ba7'}
{'comment': 'I hope relatives of Latinos who voted for Trump get deported.', 'created': '2024-11-12 02:37:39', 'submission_id': '1gp8ba7'}
{'comment': 'Well it seems that this is what America wanted.', 'created': '2024-11-12 03:14:43', 'submission_id': '1gp8ba7'}
{'comment': "As a lame duck, he's working on his presidential legacy - and he's been doing 'birtherism' and 'illegals' for 2 decades now.\n\nAt his advanced age, it may be all he remembers - a kind of 'muscle memory.' Especially when he occasionally sees his wife.", 'created': '2024-11-12 01:52:02', 'submission_id': '1gp8ba7'}
{'comment': 'sign this https://www.change.org/p/demand-an-investigation-and-recount-into-the-2024-us-election', 'created': '2024-11-12 03:37:09', 'submission_id': '1gp8ba7'}
{'comment': 'Cool. First stop? All the Somalis in Minneapolis who voted for Trump & the GOP because of how much their religion tells them to hate gay men. So much so that they come to this country making demands about what ‘their kids’ shouldn’t hear about at taxpayer funded public schools; as if we are supposed to cater to their needs in our country. Bullshit. \n\nThe Somali experiment coming to America was a disaster. They need to go home. There’s a functioning government in Somalia now; there’s no reason for any of them to be in this country anymore.', 'created': '2024-11-12 02:29:38', 'submission_id': '1gp8ba7'}
{'comment': 'Trump plans to use deportation to collapse the housing market in a huge pump and dump scheme.', 'created': '2024-11-12 09:03:32', 'submission_id': '1gp8ba7'}
{'comment': 'I hope every single one that voted for him gets exactly what they deserve', 'created': '2024-11-12 06:41:06', 'submission_id': '1gp8ba7'}
{'comment': 'I would gladly go to my country of origin. I think it was england. Send my stupid white ass back, too.', 'created': '2024-11-12 03:19:44', 'submission_id': '1gp8ba7'}
{'comment': 'Boycott Tesla!', 'created': '2024-11-12 13:48:26', 'submission_id': '1gp8ba7'}
{'comment': "Honestly,we're still in the FA stage of FAFO. I'm gleefully awaiting MAGA responses to the FO stages,😆 👍 Because Trump's policies WILL negatively effect almost ALL of them,either directly or indirectly at some point. Even if they're wealthy. It could be a child that is impregnated due to rape or a LGBTQ+ child or grandchild that is bullied or denied basic rights or a gf or wife who dies due to strict anti abortion laws etc. IT WILL EFFECT EVERYONE (accept the wealthy and powerful who can skirt/circumvent those policies) MARK. MY. WORDS. 🎤 💥 💥 💥", 'created': '2024-11-12 23:26:45', 'submission_id': '1gp8ba7'}
{'comment': 'Fact: Trump deported fewer people in his first term than Obama did in either of his terms.\n\nPrediction: Trump will deport fewer people in his second term than Obama did in either of his terms', 'created': '2024-11-12 02:29:13', 'submission_id': '1gp8ba7'}
{'comment': 'You misspelled "racists".', 'created': '2024-11-12 04:59:33', 'submission_id': '1gp8ba7'}
{'comment': 'The big businesses that fund the GOP have no interest in deporting large numbers of workers. They depend on them for cheap labor. Those businesses do benefit by scaring them as that leaves them less likely to demand better treatment and divides working people.\n\nI expect Trump to deport a bunch of criminals and choose some other high publicity targets (e.g., some well publicized raids on factories), but I doubt if he will even try to deport numbers large enough to disturb his big businesses friends.', 'created': '2024-11-12 04:51:39', 'submission_id': '1gp8ba7'}
{'comment': 'I mean, duh?', 'created': '2024-11-12 03:50:09', 'submission_id': '1gp8ba7'}
{'comment': 'Unfortunately they voted for it. Miami has been brainwashed by propaganda to think Trump loves them and only wants to deport Mexicans and not Cubans.', 'created': '2024-11-12 13:45:15', 'submission_id': '1gp8ba7'}
{'comment': 'Should be fun times when there is no one in the country around to do entry level jobs.', 'created': '2024-11-12 14:03:30', 'submission_id': '1gp8ba7'}
{'comment': "I honestly think this is gonna be a problem for Trump. Listen, I know it isn't the same, but I was around for the past immigration mass deportations and let me tell you, they were disorganized messes which took way more time and money than anyone anticipated. This is gonna get tied up in the courts, even in the pro-Trump courts. \n\nIt's going to take too much time and energy and give us the opening we need.", 'created': '2024-11-12 14:52:22', 'submission_id': '1gp8ba7'}
{'comment': 'I hope every mixed race republican family who voted for trump gets what they deserve. I hope every single one of the immigrants who voted trump starts packing their suitcase. I will bathe in the twitter/x comments on "We DiDnT tHiNk ThIs WoUlD HaPpEn To Me??"', 'created': '2024-11-12 16:53:49', 'submission_id': '1gp8ba7'}
{'comment': 'Pubs have gone all in a ridding us of immigrants, economy de damned. With proposed military changes, it maybe not be that friendly', 'created': '2024-11-13 05:22:21', 'submission_id': '1gp8ba7'}
{'comment': "Not what I'd call them", 'created': '2024-11-16 21:35:52', 'submission_id': '1gp8ba7'}
{'comment': 'Let’s be honest, both Latino men and women only made up 12 percent of the electoral votes. White women made up 37% and voted for Trump by 52%, and white men made up 34% and voted for Trump by 59%. Its is these races and genders that fucked U.S. over and gave us Trump.\n\nStop blaming minorities and using them as a scapegoat. It’s white people who brought us here.', 'created': '2024-11-12 03:29:08', 'submission_id': '1gp8ba7'}
{'comment': "stacking the house with idiots. clown car is gonna be a shit show like we've never seen.", 'created': '2024-11-12 17:35:32', 'submission_id': '1gp8ba7'}
{'comment': "What trouble?\xa0\n\n\nWhat has happened in the past 8 years that would make you think there's any chance of consequences for any of this", 'created': '2024-11-12 02:21:50', 'submission_id': '1gp8ba7'}
{'comment': None, 'created': '2024-11-12 03:21:59', 'submission_id': '1gp8ba7'}
{'comment': 'He doesn’t care, he’ll kick them all.', 'created': '2024-11-12 02:47:28', 'submission_id': '1gp8ba7'}
{'comment': "His core base is going to love it, it's all about keeping America white regardless of the cruelty and self inflicted pain. They will gladly cut off their hand and foot if it means seeing brown people being carted off in cages", 'created': '2024-11-16 00:23:24', 'submission_id': '1gp8ba7'}
{'comment': 'They voted for it, no sympathy at all. They deserve this. 54% of hispanic men decided for the rest of them. After decades of voting for their interests, I feel like a fool. They did this to themselves', 'created': '2024-11-12 03:40:34', 'submission_id': '1gp8ba7'}
{'comment': 'And Hispanic Kamala supporters, too. My wife is updating her passport to my white European surname for this reason. Everyone is a potential target in a moral panic.', 'created': '2024-11-12 02:03:46', 'submission_id': '1gp8ba7'}
{'comment': 'Let’s be honest, both Latino men and women only made up 12 percent of the electoral votes. White women made up 37% and voted for Trump by 52%, and white men made up 34% and voted for Trump by 59%. It’s the white race and both genders that fucked U.S. over and gave us Trump. \n\nStop blaming minorities and using them as a scapegoat. It’s white people who brought us here.', 'created': '2024-11-12 03:28:30', 'submission_id': '1gp8ba7'}
{'comment': 'He seems to be following the Herbert Hoover plan…so get ready for the Great Depression 2: Electric Boogaloo', 'created': '2024-11-12 02:24:17', 'submission_id': '1gp8ba7'}
{'comment': 'I wish all 75 million Trump voters get deported. They don’t believe in the America that our founding fathers envisioned. They can rot in hell for all I care.', 'created': '2024-11-12 02:56:26', 'submission_id': '1gp8ba7'}
{'comment': 'I give him two years till he doesn’t know his sons’ names.', 'created': '2024-11-12 02:20:02', 'submission_id': '1gp8ba7'}
{'comment': 'Yup. Immigration is the one area I think Trump will go crazy. Democrats essentially gave him the green light to by campaigning on a promise to be tough on immigration. I’d feel for those Latino voters if they were delusional enough to think he would spare the good ones', 'created': '2024-11-12 02:58:14', 'submission_id': '1gp8ba7'}
{'comment': "I don't know where my family came from. We've been here since the 1600's 😭\n\nI'll go wherever. Just get me out of here /s", 'created': '2024-11-12 04:20:41', 'submission_id': '1gp8ba7'}
{'comment': "Idk Homan and Steven Miller seem pretty serious. I hope you're right. But trumps cronies have had the last 4 years to plan. Not to mention what they learned for 4 years in the whitehouse. The first go around trump didn't even understand that he needed a transition team. And lots of people were around him trying to distract him from doing terrible shit. Doesn't seem like that'll be the case this time", 'created': '2024-11-12 03:28:46', 'submission_id': '1gp8ba7'}
{'comment': 'I wish to believe so so that they will have something to campaign on in 4 years. But with how Trump said "dictator on day one" I am very scared. I\'m hoping his love of golf wins out and he just refuses to sign anything. Because while Obama did deport more, Trump is also promising to end birth right citizenship and Stephen Miller said they are turbocharging it 😭', 'created': '2024-11-12 04:17:38', 'submission_id': '1gp8ba7'}
{'comment': 'Don’t fuck with the money.', 'created': '2024-11-12 02:43:03', 'submission_id': '1gp8ba7'}
{'comment': 'Heck! They even want to get rid of her Puerto Ricans and they are 100% Americans.', 'created': '2024-11-12 03:29:51', 'submission_id': '1gp8ba7'}
{'comment': 'My neighbor lives off a disability check + food stamps + Medicare/Medicaid...she sells the medication the government pays for btw...she voted for Trump to "get rid of illegals" and because "I don\'t want my tax money paying for a boy to turn into a girl"\n\nThis is the same woman who told me once, "A white bitch can go try to get help but a Mexican bitch can get everything." But she literally gets everything. All the forms of help, she gets. She\'s a real fucking bitch, too. My husband cut her grass for her for free for 3 months. Accidentally hit and cracked some shitty dry rotted $3 solar stake light, and she threw a huge fit. Like a HUGE fit.', 'created': '2024-11-12 04:40:57', 'submission_id': '1gp8ba7'}
{'comment': 'Melania?', 'created': '2024-11-12 04:50:22', 'submission_id': '1gp8ba7'}
{'comment': "But wait until they have to start mowing their own lawns or picking their own fruits and vegetables. \n\nSomebody once suggested this as America's motto...\n\n>**Give me convenience or give me death!**", 'created': '2024-11-16 00:28:29', 'submission_id': '1gp8ba7'}
{'comment': 'I’m Latina and I feel the same. No one has disrespected us, disparaged us, fostered more hatred and fear of us than Trump, and we voted more Republican in this election than we ever have before. Make it make sense.', 'created': '2024-11-12 03:49:43', 'submission_id': '1gp8ba7'}
{'comment': '"Leopards" is a specific reference to people voting against their own self interest then getting hurt for it.\n\nThat doesn\'t include Kamala voters, they *tried* to stop this.', 'created': '2024-11-12 02:11:52', 'submission_id': '1gp8ba7'}
{'comment': "Yup, they're not going to make distinctions. \n\nI can pass for white and have a white name. Other members of my family aren't so lucky.", 'created': '2024-11-12 02:13:01', 'submission_id': '1gp8ba7'}
{'comment': 'I do enjoy the TikToks of Kamala Hispanic supporters LIGHTING up the Trump ones.', 'created': '2024-11-12 02:41:37', 'submission_id': '1gp8ba7'}
{'comment': "I'm Puerto Rican. I'll bitch about my tribe any time I feel like it.\n\nI'll leave it to white people to clean up their own house.", 'created': '2024-11-12 03:42:13', 'submission_id': '1gp8ba7'}
{'comment': 'We know what follows that…', 'created': '2024-11-12 02:53:36', 'submission_id': '1gp8ba7'}
{'comment': 'Right? Like I said in this thread and I will reiterate until everyone comes to terms with it:\n\nLet’s be honest, both Latino men and women only made up 12 percent of the electoral votes. White women made up 37% and voted for Trump by 52%, and white men made up 34% and voted for Trump by 59%. Its is these races and genders that fucked U.S. over and gave us Trump.\n\nStop blaming minorities and using them as a scapegoat. It’s white people who brought us here.', 'created': '2024-11-12 03:30:47', 'submission_id': '1gp8ba7'}
{'comment': 'He always forgets the other one', 'created': '2024-11-12 02:38:14', 'submission_id': '1gp8ba7'}
{'comment': 'Serious, yes. Competent, not so much.', 'created': '2024-11-12 03:40:39', 'submission_id': '1gp8ba7'}
{'comment': 'Homan was appointed as the executive associate director of enforcement and removal operations by Obama in 2013 and worked under Trump until 2018. It seems the largest number of deportations have happened while he was leading in some capacity so yeah I agree, he’s serious.', 'created': '2024-11-12 14:57:09', 'submission_id': '1gp8ba7'}
{'comment': 'Fuck with all the money, then blame the Dems\n\n\nboom, 2028 is on lock', 'created': '2024-11-12 07:56:42', 'submission_id': '1gp8ba7'}
{'comment': 'Basically, he said as much with the poisoning of the blood comment. Basically if they are foreign and brown he and his base want them out.', 'created': '2024-11-12 04:01:13', 'submission_id': '1gp8ba7'}
{'comment': 'I hope she gets exactly what she voted for. To the letter', 'created': '2024-11-12 04:55:59', 'submission_id': '1gp8ba7'}
{'comment': "I'm sorry you're going through this. I have hispanic friends, my gf is hispanic. I want those who voted for this to get what they asked for, not people like you", 'created': '2024-11-12 03:56:18', 'submission_id': '1gp8ba7'}
{'comment': 'My wife is Latina and my kids half. I’m an old white guy but we all voted Harris. Not everyone lost their mind.', 'created': '2024-11-12 19:25:37', 'submission_id': '1gp8ba7'}
{'comment': 'Yes it stems from a quote\n\n"I voted for the leopards eating your face party but I didn\'t think leopards would eat MY face."', 'created': '2024-11-12 02:51:29', 'submission_id': '1gp8ba7'}
{'comment': 'Alright guys, we’re on the same side here; let’s not give them what they want, which is *division*. Let’s all help each other clean up what’s left of our houses.', 'created': '2024-11-12 05:29:35', 'submission_id': '1gp8ba7'}
{'comment': 'World wars', 'created': '2024-11-12 06:03:47', 'submission_id': '1gp8ba7'}
{'comment': "To be fair I also always forget his sons exist.\n\n\nWhat are their names now? Cokey, Dopey and Gonna-Get-Bailed-Out-Of-A-Sexual-Assault-Case-In-College-By-Daddy's-Money ?", 'created': '2024-11-12 03:20:49', 'submission_id': '1gp8ba7'}
{'comment': 'Yeah! Except Puerto Ricans aren’t foreign. They are just of Latin American heritage. It’s just plain racism.', 'created': '2024-11-12 06:26:45', 'submission_id': '1gp8ba7'}
{'comment': "Me too. I can't fucking stand her actually.", 'created': '2024-11-12 05:08:15', 'submission_id': '1gp8ba7'}
{'comment': 'Thank you. I’ll be okay, I was born here and my parents came here legally from Dom Rep, and my dad is a veteran of the US ARMY, and my mom’s father was Puerto Rican. So my family and I are good! Even if by some crazy chance they did, I’d love to go live in DR lol\n\nMany people have to go back to places riddled with gang crime, political instability and God knows what else, in central, South America and Haiti. \n\nThey just wanted a chance to work, keep their heads down and give their families a basic dignified life. Republicans, these “Jesus worshipping people” said F U to them.', 'created': '2024-11-12 04:28:05', 'submission_id': '1gp8ba7'}
{'comment': 'True!!', 'created': '2024-11-12 23:27:07', 'submission_id': '1gp8ba7'}
{'comment': 'https://preview.redd.it/bktpid64ud0e1.jpeg?width=1179&format=pjpg&auto=webp&s=19dd2496d682e5d8298584e4d35d39c5cb587423', 'created': '2024-11-12 03:33:30', 'submission_id': '1gp8ba7'}
{'comment': '4th Turning Accelerationisim \n\nFTW', 'created': '2024-11-12 07:55:38', 'submission_id': '1gp8ba7'}
{'comment': 'But in his mind and those of his followers, they speak that strange offensive language other foreigners speak and are brown so they must be foreigners, and probably Mexican. Why do you think we’ve never let them become fully accepted and become a state.', 'created': '2024-11-12 15:13:55', 'submission_id': '1gp8ba7'}
{'comment': 'I can’t fucking stand her either and I’ve never met her.', 'created': '2024-11-12 14:15:01', 'submission_id': '1gp8ba7'}
{'comment': '100%!! The fact that a lot of them, including the majority of white women voted Trump???? Amazing', 'created': '2024-11-12 13:41:30', 'submission_id': '1gp8ba7'}
{'comment': "Because the votes aren't done being counted.", 'created': '2024-11-12 01:42:46', 'submission_id': '1gp8466'}
{'comment': 'We slow here, for counting ballots. Lots of auditing and random sampling to make sure nothing weird happens.', 'created': '2024-11-12 02:01:01', 'submission_id': '1gp8466'}
{'comment': 'Mail ballots received by Nov 12 are counted. There’a a curing process allowed after that. Nothing weird going on.', 'created': '2024-11-12 02:12:40', 'submission_id': '1gp8466'}
{'comment': 'Because they actually count their votes.', 'created': '2024-11-12 02:21:28', 'submission_id': '1gp8466'}
{'comment': 'dem states actually count the ballots instead of just making up numbers /s', 'created': '2024-11-12 02:02:22', 'submission_id': '1gp8466'}
{'comment': 'It takes awhile to fire up the abacus', 'created': '2024-11-12 02:18:04', 'submission_id': '1gp8466'}
{'comment': 'And seriously, no reason to be paying double overtime for workers.', 'created': '2024-11-12 16:02:35', 'submission_id': '1gp8466'}
{'comment': 'Sacha Baron Cohen was genius for this lol', 'created': '2024-11-12 01:32:16', 'submission_id': '1gp7cu8'}
{'comment': 'This is very Aladeen', 'created': '2024-11-12 01:23:13', 'submission_id': '1gp7cu8'}
{'comment': 'Dead on…unfortunately…', 'created': '2024-11-12 01:57:10', 'submission_id': '1gp7cu8'}
{'comment': '….Fuck', 'created': '2024-11-12 01:59:10', 'submission_id': '1gp7cu8'}
{'comment': 'If I had to rate my anxiety for 2025 on a scale from 1-10, I’d give it an Aladeen', 'created': '2024-11-12 03:40:25', 'submission_id': '1gp7cu8'}
{'comment': 'The Dictator is one of my favorite comedies. I quote it frequently. [The zipline scene](https://youtu.be/hqslb1FVoQQ?si=AFdC8c9ZpbT0hP73) always gets me rolling!', 'created': '2024-11-12 03:27:58', 'submission_id': '1gp7cu8'}
{'comment': 'Spot on bro', 'created': '2024-11-12 01:52:06', 'submission_id': '1gp7cu8'}
{'comment': 'He told the Simpsons hold my beer. And predicted every major thing that has/is going to happen in a 2 min clip', 'created': '2024-11-12 04:48:31', 'submission_id': '1gp7cu8'}
{'comment': 'Sacha’s the KING 👑 of mocking “the U.S. & A” 🇺🇸', 'created': '2024-11-12 03:27:54', 'submission_id': '1gp7cu8'}
{'comment': 'No need to imagine. It’ll be a reality soon enough.', 'created': '2024-11-12 01:34:26', 'submission_id': '1gp7cu8'}
{'comment': "We don't need to imagine. We just need to wait for January.", 'created': '2024-11-13 06:53:21', 'submission_id': '1gp7cu8'}
{'comment': "It would be funny if it wasn't so unbelievably sad.", 'created': '2024-11-13 21:40:26', 'submission_id': '1gp7cu8'}
{'comment': 'I don’t think we need to imagine for long.', 'created': '2024-11-12 03:39:14', 'submission_id': '1gp7cu8'}
{'comment': 'We won’t need to imagine much longer.', 'created': '2024-11-12 03:11:55', 'submission_id': '1gp7cu8'}
{'comment': '😀.......😐........😢........😐........😀', 'created': '2024-11-12 03:29:55', 'submission_id': '1gp7cu8'}
{'comment': 'You may have missed the joke', 'created': '2024-11-12 01:45:49', 'submission_id': '1gp7cu8'}
{'comment': 'Yeah The Dictator came out in 2012, when Obama was president...', 'created': '2024-11-12 12:06:21', 'submission_id': '1gp7cu8'}
{'comment': 'He’s just describing how our “Democracy” works', 'created': '2024-11-12 03:26:08', 'submission_id': '1gp7cu8'}
{'comment': '[removed]', 'created': '2024-11-12 03:32:20', 'submission_id': '1gp7cu8'}
{'comment': 'sarcasm', 'created': '2024-11-12 02:48:01', 'submission_id': '1gp7cu8'}
{'comment': 'Nothing like what we are about to see. Yes, CU was the beginning of the end for the USA.', 'created': '2024-11-12 04:10:58', 'submission_id': '1gp7cu8'}
{'comment': "Yeah, I think he'll do more than stonewall it", 'created': '2024-11-12 01:18:14', 'submission_id': '1gp6x0l'}
{'comment': 'Wow I totally forgot he deported Veterans... What a POS.', 'created': '2024-11-12 02:11:42', 'submission_id': '1gp6x0l'}
{'comment': 'That bill is dead as the dodo.', 'created': '2024-11-12 01:17:56', 'submission_id': '1gp6x0l'}
{'comment': 'is this the wall the felon Trump wants to build?', 'created': '2024-11-12 01:43:36', 'submission_id': '1gp6x0l'}
{'comment': 'Those veterans may be better off staying where they are.', 'created': '2024-11-12 15:37:11', 'submission_id': '1gp6x0l'}
{'comment': 'Yeah. Kiss that good bye.', 'created': '2024-11-12 03:38:08', 'submission_id': '1gp6x0l'}
{'comment': 'sign this https://www.change.org/p/demand-an-investigation-and-recount-into-the-2024-us-election', 'created': '2024-11-12 03:37:40', 'submission_id': '1gp6x0l'}
{'comment': "Internet petitions aren't worth the paper they're not printed on.", 'created': '2024-11-12 09:33:03', 'submission_id': '1gp6x0l'}
{'comment': "Congrats Congressman Fields.\n\nThe Supreme Court said a month or so ago that they'd let this district map roll for now. Meaning they'll likely allow the mapping to change by the next election in two years. We need to keep an eye on it and fight for it!!", 'created': '2024-11-12 02:28:04', 'submission_id': '1gp6v2l'}
{'comment': "I know it isn't a lot, but these wins are giving me some hope.", 'created': '2024-11-12 02:45:19', 'submission_id': '1gp6v2l'}
{'comment': 'That’s like finding a pretty shiny penny in a diarrhea filled toilet', 'created': '2024-11-12 03:08:47', 'submission_id': '1gp6v2l'}
{'comment': "That's great news out of Louisiana! \n\nI fear it will be short lived as a stacked republican federal court, the presidency and republican control of senate and house will probably change it back. Also I wonder how much Fields can get done in such a red state", 'created': '2024-11-12 04:37:14', 'submission_id': '1gp6v2l'}
{'comment': 'Pretty much a MAGA cesspool at this point. All hope is not lost with this win. Congrats to Cleo!', 'created': '2024-11-12 04:28:37', 'submission_id': '1gp6v2l'}
{'comment': 'Well we are in the toilet anyway so a penny is a penny', 'created': '2024-11-12 06:12:13', 'submission_id': '1gp6v2l'}
{'comment': 'Pump the brakes, kid', 'created': '2024-11-11 22:25:33', 'submission_id': '1gp3j4i'}
{'comment': 'Still in bed. Too soon.', 'created': '2024-11-11 22:25:27', 'submission_id': '1gp3j4i'}
{'comment': 'America is too sexist. Unfortunately, we need to put up men for the foreseeable future regardless of how qualified a female candidate is.', 'created': '2024-11-11 22:28:09', 'submission_id': '1gp3j4i'}
{'comment': 'No! We tried twice with a woman. It’s not going to happen for a long while. VP maybe', 'created': '2024-11-11 22:31:38', 'submission_id': '1gp3j4i'}
{'comment': "Let's not. As much as I love her, a woman will not win.", 'created': '2024-11-11 23:36:18', 'submission_id': '1gp3j4i'}
{'comment': 'LOL. She who does not deliver her state gets zero nods for the next race.', 'created': '2024-11-11 23:49:21', 'submission_id': '1gp3j4i'}
{'comment': 'I wanted Kamala to win so bad and would love a women president but sadly we aren’t ready for one yet', 'created': '2024-11-12 00:07:33', 'submission_id': '1gp3j4i'}
{'comment': 'We all admire your enthusiasm, but America is still a very sexist and racist country. The public has spoken and would rather a criminal run the Whitehouse. It’s hard enough finding an honest male to run and get elected. Maybe next generation. 🤷🏻\u200d♂️', 'created': '2024-11-12 00:13:39', 'submission_id': '1gp3j4i'}
{'comment': "Make your case for her. What does she bring that Kamala didn't and would mobilize the 15-18 million that didn't participate in this election?", 'created': '2024-11-11 22:26:02', 'submission_id': '1gp3j4i'}
{'comment': "We have to fix young men first. They're all red-pilled incels right now and it's becoming a problem.", 'created': '2024-11-11 22:34:46', 'submission_id': '1gp3j4i'}
{'comment': 'Fuck no.', 'created': '2024-11-12 00:32:55', 'submission_id': '1gp3j4i'}
{'comment': 'If you pick another Women as the Democrat nominee Dems would lose again. A Women will not president for a min of 50 maybe even 75 years too many Men and Women think a Women should be in the home and please her man nothing more.', 'created': '2024-11-12 00:41:45', 'submission_id': '1gp3j4i'}
{'comment': "I'm sorry, but if the Democratic party runs another woman in 2028 they have truly lost all sense. I believe at this point that when we have a woman President, it will be a Republican, unfortunately.", 'created': '2024-11-12 04:19:43', 'submission_id': '1gp3j4i'}
{'comment': 'No more women for now. Love them. They get all my support but we just witnessed the biggest protest against a woman president EVER - for the second time. Let’s give ourselves a chance next time', 'created': '2024-11-11 23:11:22', 'submission_id': '1gp3j4i'}
{'comment': 'If you want to see the GOP hold the presidency into the 2030s, sure. But if you want half a snowballs chance…gods no.', 'created': '2024-11-11 22:25:45', 'submission_id': '1gp3j4i'}
{'comment': 'Americans have spoken multiple times a woman cannot be president if the United States not in this generation and judging from votes not in the next either.', 'created': '2024-11-11 22:55:53', 'submission_id': '1gp3j4i'}
{'comment': 'She’ll run and has no chance at the nomination. Her best case scenario is to run a tough campaign being within the top 3-4 to increase the likelihood of maybe being selected as VP.', 'created': '2024-11-12 01:07:37', 'submission_id': '1gp3j4i'}
{'comment': 'Old white dudes only, if you want to win.', 'created': '2024-11-12 01:53:33', 'submission_id': '1gp3j4i'}
{'comment': "No. I'm very sorry, it's shitty, but no.", 'created': '2024-11-12 04:12:06', 'submission_id': '1gp3j4i'}
{'comment': 'Add her to the list for a an open and transparent primary. Let them really battle it out this time. Whats it going to hurt at this point?', 'created': '2024-11-11 22:29:50', 'submission_id': '1gp3j4i'}
{'comment': "I love Whitmer but it's like you guys never learn.", 'created': '2024-11-12 16:15:21', 'submission_id': '1gp3j4i'}
{'comment': 'How about a slate of a few good potential nominees and the DNC lets the voters decide than putting their thumb on the scales like they have in the past. \n\nIf someone who the voters really want, will go a long way to enthusiasm.', 'created': '2024-11-12 17:31:17', 'submission_id': '1gp3j4i'}
{'comment': 'Love her! Count me in!', 'created': '2024-11-11 22:56:53', 'submission_id': '1gp3j4i'}
{'comment': 'nah. dems would have a better chance with their own criminal...\n\n\n\nlol. in dark times, find the light in comedy.', 'created': '2024-11-12 02:07:17', 'submission_id': '1gp3j4i'}
{'comment': 'Yep. Anyone who thinks that a woman could win has not been paying attention since 2015.', 'created': '2024-11-11 23:37:13', 'submission_id': '1gp3j4i'}
{'comment': 'a White middle aged man', 'created': '2024-11-12 04:43:45', 'submission_id': '1gp3j4i'}
{'comment': "Unfortunately, yes. BUT- let's fight dirty like the GOP. Fu\\*\\* going high. Put a nice white dude with a good rep like Tim Walz as the candidate and Whitmer as the P candidate-with an agreement in secret that Tim would resign within a few months.", 'created': '2024-11-11 23:22:47', 'submission_id': '1gp3j4i'}
{'comment': 'she fought for gay rights. she fought for abortion rights. she legalized weed. she fought for gun control. she fought for environmental laws. she fought against republicans trying to take away healthcare. she fought for the conversion of the minimum wage into a living wage.', 'created': '2024-11-11 22:33:00', 'submission_id': '1gp3j4i'}
{'comment': 'Gotta fix old people too, especially within our own party. I still remember vividly how my life long Democrat grandmother turned out to be a repugnant racist and couldn’t bring herself to vote for Obama.', 'created': '2024-11-11 22:39:15', 'submission_id': '1gp3j4i'}
{'comment': 'We cannot and will not take that away from Tim! Lol', 'created': '2024-11-11 23:32:40', 'submission_id': '1gp3j4i'}
{'comment': 'Walz looks too old..', 'created': '2024-11-12 04:45:15', 'submission_id': '1gp3j4i'}
{'comment': "While all these things sound good to me, they don't sounds too far off from what Kamala was running on. We need the favorable policies that rise above the rhetoric and appeals so much to the masses that people are excited to vote for a democrat candidate.", 'created': '2024-11-11 22:44:51', 'submission_id': '1gp3j4i'}
{'comment': "It's not nice to stereotype.", 'created': '2024-11-12 04:47:53', 'submission_id': '1gp3j4i'}
{'comment': "Then he's perfect!", 'created': '2024-11-13 15:56:18', 'submission_id': '1gp3j4i'}
{'comment': '2028 will be very different than 2024. Republicans will be running as the incumbent party. Democrats can run on a change platform rather than trying to defend themselves under the weight of recovering from record inflation post-pandemic.', 'created': '2024-11-11 23:19:11', 'submission_id': '1gp3j4i'}
{'comment': "I appreciate this perspective and hope that is enough to get us over the top. I also hope that by that point there is transparency that what was promised (and sadly delivered) by the Trump regime is not the direction the majority of the country wants to continue with. I'm not optimistic and i acknowledge that. I'm terrified for everyone, even the ones that don't know what they actually voted for. I'm over it all and just want to return to a Pre-MAGA level of stupidity in our country, then move forward. I don't know that we will be able to get directly from A-Z, but if we can get from A-H It would be a win in my book.", 'created': '2024-11-12 00:33:09', 'submission_id': '1gp3j4i'}
{'comment': 'This twat will be the Commander-in-Chief to fallen soldiers he called "Losers and suckers" and wants to turn the US military on US citizens. Trump voters are the biggest traitors to the country, democracy and the Constitution.', 'created': '2024-11-11 22:24:15', 'submission_id': '1gp3b0k'}
{'comment': "Trump is such a reprehensible loathsome creature. Why are they posing and smiling like they're at a tourist attraction? 😑", 'created': '2024-11-11 22:40:26', 'submission_id': '1gp3b0k'}
{'comment': 'I have a friend that was killed in Afghanistan and his father posts nothing but Trump pictures, even went as far as getting to meet Trump in person and keeps posting about how much Trump loves and respects the military. I don’t have the heart to tell him.', 'created': '2024-11-11 23:14:36', 'submission_id': '1gp3b0k'}
{'comment': 'As a vet, I cannot believe anyone would vote for him.', 'created': '2024-11-11 23:04:09', 'submission_id': '1gp3b0k'}
{'comment': '“They will follow the false profit who wears the mark of the beast (MAGA Hat) on his forehead. \n-Holy Bible', 'created': '2024-11-11 22:30:50', 'submission_id': '1gp3b0k'}
{'comment': 'They will pay for their poor choices..tic-toc mother f*ckers!!', 'created': '2024-11-11 23:02:06', 'submission_id': '1gp3b0k'}
{'comment': "A majority of Union members don't care, A majority of veterans don't care. A majority of current service people don't care. The country gets what it voted for. MAGA has infected everything and will suffer with the rest of us.", 'created': '2024-11-12 00:09:45', 'submission_id': '1gp3b0k'}
{'comment': "It's odd that any one would support him, as he is against humanity. Again, melanin matters.", 'created': '2024-11-11 22:57:59', 'submission_id': '1gp3b0k'}
{'comment': 'This is the same sort of BS that tourists that go to the WTC Memorial in NYC and take pictures and selfies with massive smiles on their faces and thumbs up and what not. Like dude its a memorial a place for mourning, reflection, and being at peace, not an Instagram spot.', 'created': '2024-11-11 23:51:34', 'submission_id': '1gp3b0k'}
{'comment': "Did Barron register for selective service, or are bone spurs an inherited trait?\n\n \nJust asking as no Trump's seem to have given a thought to defending the country they are so intent on bilking.", 'created': '2024-11-11 22:52:03', 'submission_id': '1gp3b0k'}
{'comment': 'Not this vet. What will they think when they’re finished slicing and dicing the VA? Some of us depend on it to stay alive. Gaetz has been lusting to go after it for awhile. Guess we’ll find out.', 'created': '2024-11-11 23:54:03', 'submission_id': '1gp3b0k'}
{'comment': 'It all didnt matter because people trust him on specific issues to solve their personal problems. They wouldnt lend him their cars but they think he can fix the economy or deporting people will magically solve all our problems.', 'created': '2024-11-12 00:25:08', 'submission_id': '1gp3b0k'}
{'comment': 'I live within sight of Arlington National Cemetery. I am an Army Infantry veteran and have several friends I served with, buried there in Section 60. In addition, my grandfather and grandmother are buried there.\n\nIf I am being truthful, it’s unbelievable and shameful to me the support this man receives from those who I served with. I cannot understand it. I cannot understand how they don’t have an issue with him filming a campaign commercial at Arlington and his exploitation of veterans. Shame on the Kabul evacuation veterans who participated in this photo op with him.', 'created': '2024-11-12 17:15:32', 'submission_id': '1gp3b0k'}
{'comment': "They'll all be paying 60% for their Walmart wardrobes...", 'created': '2024-11-11 23:33:08', 'submission_id': '1gp3b0k'}
{'comment': "That's why I'm not celebrating today (retired Army)", 'created': '2024-11-12 01:28:05', 'submission_id': '1gp3b0k'}
{'comment': 'Reality is no longer reality unfortunately', 'created': '2024-11-12 03:19:00', 'submission_id': '1gp3b0k'}
{'comment': 'My grandfather was a Pearl Harbor survivor. He would’ve lost his SHIT knowing how many of his kids and grandkids voted for Cheeto Satan. #notme #favorite', 'created': '2024-11-12 04:08:43', 'submission_id': '1gp3b0k'}
{'comment': 'May leopards eat their faces', 'created': '2024-11-12 00:48:19', 'submission_id': '1gp3b0k'}
{'comment': 'sign this https://www.change.org/p/demand-an-investigation-and-recount-into-the-2024-us-election', 'created': '2024-11-12 03:38:00', 'submission_id': '1gp3b0k'}
{'comment': 'Let’s face it. We’re fucked at least for the foreseeable future. Time to hunker down, collect as many resources we can and grow our own food.', 'created': '2024-11-12 20:33:42', 'submission_id': '1gp3b0k'}
{'comment': 'Sadly, the military does not exclude stupid people.', 'created': '2024-11-11 23:32:14', 'submission_id': '1gp3b0k'}
{'comment': "It's almost as bad as women voting for him!", 'created': '2024-11-12 00:35:36', 'submission_id': '1gp3b0k'}
{'comment': 'It was horrible, but the reality at the end of the day is what people want', 'created': '2024-11-12 00:40:27', 'submission_id': '1gp3b0k'}
{'comment': 'Shitbag.', 'created': '2024-11-12 01:00:23', 'submission_id': '1gp3b0k'}
{'comment': 'The "Trump virus" is worse than Covid as it negates any independent thought as to right or wrong and justifies Trump\'s patronizing anyone he can use to gain authority or recognition...', 'created': '2024-11-12 22:35:16', 'submission_id': '1gp3b0k'}
{'comment': 'Most vets are fucking stupid MAGA worshipers these days. Not the great soldiers who fought the Germans in WWII…the opposite…they elected a fascist…let’s see how many take the oath to defend Trump over the constitution.', 'created': '2024-11-13 17:04:34', 'submission_id': '1gp3b0k'}
{'comment': 'I don’t remember where I read this but it seems fitting… The people who would burn down the world for the chance to rule over the ashes. \nI think I found where it came from “An evil enemy, will burn his own nation to the ground…to rule over the ashes”. Sun Tzu', 'created': '2024-11-14 04:54:31', 'submission_id': '1gp3b0k'}
{'comment': '[removed]', 'created': '2024-11-12 02:05:34', 'submission_id': '1gp3b0k'}
{'comment': 'So would any other politician on any side dems or republicans, they use these things so they can look like they care', 'created': '2024-11-11 23:23:11', 'submission_id': '1gp3b0k'}
{'comment': 'Indeed', 'created': '2024-11-11 22:25:24', 'submission_id': '1gp3b0k'}
{'comment': 'Something needs to be done. I think if you’re going to hold the highest rank in the US military, you need to have served.', 'created': '2024-11-12 00:33:12', 'submission_id': '1gp3b0k'}
{'comment': None, 'created': '2024-11-12 00:49:49', 'submission_id': '1gp3b0k'}
{'comment': 'Because they’re evil', 'created': '2024-11-11 22:43:40', 'submission_id': '1gp3b0k'}
{'comment': 'Oh my', 'created': '2024-11-11 23:19:36', 'submission_id': '1gp3b0k'}
{'comment': 'I bet', 'created': '2024-11-11 23:19:05', 'submission_id': '1gp3b0k'}
{'comment': 'It is funny that conservative Christian support this man', 'created': '2024-11-11 22:32:30', 'submission_id': '1gp3b0k'}
{'comment': 'I saw an article around 2020 that compared the anti christ to Trump/maga\n\nAnd obviously the point was to link it to him but the list was loooooooong. I am not a Christian but if the anti Christ is real it’s certainly Trump', 'created': '2024-11-12 00:13:41', 'submission_id': '1gp3b0k'}
{'comment': 'They will blame libs', 'created': '2024-11-11 23:17:29', 'submission_id': '1gp3b0k'}
{'comment': 'I’m sure Trump will give a reason for why he can’t join', 'created': '2024-11-11 23:13:44', 'submission_id': '1gp3b0k'}
{'comment': 'After his first election, a MAGA friend described his support as “if the shovel works”. While I agree with the sentiment in general, the fact is that we’ve seen that this shovel works poorly and the only reason people think it works is because the shovel keeps bragging that it’s the Best Shovel Ever ™️', 'created': '2024-11-12 00:44:42', 'submission_id': '1gp3b0k'}
{'comment': 'I think some people are ok with Trump being president, as long as he doesn’t go after their family', 'created': '2024-11-12 17:20:41', 'submission_id': '1gp3b0k'}
{'comment': 'I work with a vet like that. His wife is a German. She doesn’t like Trump, and he can’t seem to understand why….', 'created': '2024-11-13 18:13:30', 'submission_id': '1gp3b0k'}
{'comment': "An account that's 9 years old, has one comment, and it's just batshit levels of incorrect on something that is public knowledge and super easy to look up.", 'created': '2024-11-12 05:21:18', 'submission_id': '1gp3b0k'}
{'comment': '>Trump rejected the idea of the visit because he feared his hair would become disheveled in the rain, and because he did not believe it important to honor American war dead, according to four people with firsthand knowledge of the discussion that day. In a conversation with senior staff members on the morning of the scheduled visit, Trump said, “Why should I go to that cemetery? It’s filled with losers.” In a separate conversation on the same trip, Trump referred to the more than 1,800 marines who lost their lives at Belleau Wood as “suckers” for getting killed.\n\n-- [The Atlantic](https://www.theatlantic.com/politics/archive/2020/09/trump-americans-who-died-at-war-are-losers-and-suckers/615997/), September 2020', 'created': '2024-11-12 02:44:30', 'submission_id': '1gp3b0k'}
{'comment': 'Please get a fn clue. Facts are a bitch kinda like tariffs are gonna be!', 'created': '2024-11-12 09:20:33', 'submission_id': '1gp3b0k'}
{'comment': 'The evangelical want this because they think the world will end and they’ll be raptured, but it seems they’re following the anti-Christ and will burn for eternity.', 'created': '2024-11-11 22:40:15', 'submission_id': '1gp3b0k'}
{'comment': 'Exactly, he aligns perfectly with the description of the anti-Christ and they love him!', 'created': '2024-11-12 01:12:14', 'submission_id': '1gp3b0k'}
{'comment': 'And the billionaire media will reinforce it….', 'created': '2024-11-12 02:09:51', 'submission_id': '1gp3b0k'}
{'comment': 'But once they go after *others* and nobody says anything, they’ll go after the ones who are left. 😔', 'created': '2024-11-12 18:19:13', 'submission_id': '1gp3b0k'}
{'comment': 'It’s really unbelievable how they think.', 'created': '2024-11-11 22:42:12', 'submission_id': '1gp3b0k'}
{'comment': 'Kinda like 72 virgins', 'created': '2024-11-11 23:38:18', 'submission_id': '1gp3b0k'}
{'comment': 'At the end of the day, they feel superior to others', 'created': '2024-11-11 22:43:07', 'submission_id': '1gp3b0k'}
{'comment': "That's it: A sense of Superiority.", 'created': '2024-11-11 22:58:52', 'submission_id': '1gp3b0k'}
{'comment': 'That’s exactly why their ilk flock to religion. They tend to be poor and uneducated and have an inferiority complex about it (though they will never admit it). Religion lets them feel superior to anyone who it “other-izes”.', 'created': '2024-11-11 23:35:12', 'submission_id': '1gp3b0k'}
{'comment': 'Trump probably wants tariffs cuz Putin told him too and Putin wants America to fail and Trump is Putins puppet', 'created': '2024-11-11 21:35:18', 'submission_id': '1gp24ls'}
{'comment': 'I think the tariffs will be a means to extort corporations rather than a blanket. If you’re not a major Republican donor or practice that woke mind virus…your business will be hit with tariffs\n\nTrumps whole game is to promise big then do just enough then blame some bureaucratic boogeyman so his followers will believe his next set of promises', 'created': '2024-11-11 22:00:36', 'submission_id': '1gp24ls'}
{'comment': "Let's hope this bites Trump in the ass so hard he has the WORST approval rating of ANY President in history and will be the laughing stock of the country and world", 'created': '2024-11-12 00:02:49', 'submission_id': '1gp24ls'}
{'comment': 'already ordered some "don\'t blame me I voted for Harris" stickers. will be using them in a few months.', 'created': '2024-11-12 00:30:36', 'submission_id': '1gp24ls'}
{'comment': 'But the Gilded Age, tho', 'created': '2024-11-11 21:54:00', 'submission_id': '1gp24ls'}
{'comment': '[Learned this from Ferris Bueller’s Day Off](https://youtu.be/uhiCFdWeQfA?si=A63ijVWvJQbdzPXr)', 'created': '2024-11-11 22:28:48', 'submission_id': '1gp24ls'}
{'comment': 'Tariffs and trade wars, hyper low interest rates with easy money lending, booming markets top it all off with a regulated legitimized crypto currency seeping into every part of our economy. WHAT COULD POSSIBLY GO WRONG...............', 'created': '2024-11-11 23:22:22', 'submission_id': '1gp24ls'}
{'comment': 'Happy 96th anniversary Taft!', 'created': '2024-11-11 22:14:49', 'submission_id': '1gp24ls'}
{'comment': "And he'll follow by saying 'why would the dems do this to me?'\xa0", 'created': '2024-11-11 23:38:20', 'submission_id': '1gp24ls'}
{'comment': 'Did Ferris Bueller’s Day Off teach us nothing?', 'created': '2024-11-12 05:08:22', 'submission_id': '1gp24ls'}
{'comment': "Hoover was still an American. He handed over power when it was time. He wasn't unnecessarily cruel to people because of his bigotry and hate. And he wasn't trying to be a dictator. So, the tariffs might have the same economic effect, but I don't know if they'll have the same political effect.", 'created': '2024-11-12 03:18:54', 'submission_id': '1gp24ls'}
{'comment': 'Leon is also Putin’s puppet, Leon also has been heavily involved with Trump.', 'created': '2024-11-11 21:42:52', 'submission_id': '1gp24ls'}
{'comment': 'I think he wants to use them to blackmail certain people and companies to extort money.', 'created': '2024-11-12 01:19:20', 'submission_id': '1gp24ls'}
{'comment': 'Good one ... I keep forgetting Trump does what makes Trump richer.', 'created': '2024-11-11 22:08:00', 'submission_id': '1gp24ls'}
{'comment': 'Hopefully by the MidTerms', 'created': '2024-11-12 01:26:35', 'submission_id': '1gp24ls'}
{'comment': 'Damn I’m saving that for later.', 'created': '2024-11-12 00:18:20', 'submission_id': '1gp24ls'}
{'comment': 'Good one', 'created': '2024-11-11 22:51:01', 'submission_id': '1gp24ls'}
{'comment': 'And the Dems will be all confused allowing everyone to think they somehow they are responsible. I expect Trump to blame Obama and Biden for any bad thing that happens from here on out.', 'created': '2024-11-11 23:45:49', 'submission_id': '1gp24ls'}
{'comment': "You're just too good to be true.", 'created': '2024-11-12 17:37:00', 'submission_id': '1gp24ls'}
{'comment': "This. There will be 'exemptions' to the tariffs based on substantial rewards for Trump.", 'created': '2024-11-12 08:22:40', 'submission_id': '1gp24ls'}
{'comment': 'Should be tbh. Tarriffs and deportation efforts, specifically, he can do basically by himself. So those should day 1 or 2 acts. That gives it about 2 years to perculate through the economy. If I were to guess the next year, it is gonna look like: \n\n1) Early first year: Tariffs this can be done by the pen, and it should be super easy for him to implement.\n\n2) Mid to late first year: deportations start occurring in huge numbers. Mainly, the gap in time is for the various agencies to coordinate and legal challenges to work their way up. \n\n3) Late first year second: A tax cut extension using the budget workery that was used the first time in 2017. \n\nCombined, these 3 actions are projected to add anywhere from 9-25% inflation. By the midterms, those inflationary effects should be well on and very noticeable.', 'created': '2024-11-12 01:56:42', 'submission_id': '1gp24ls'}
{'comment': 'You think the midterms are happening?', 'created': '2024-11-12 09:34:00', 'submission_id': '1gp24ls'}
{'comment': 'however no more minimum wage and you will earn 5$ per hour less', 'created': '2024-11-11 21:27:39', 'submission_id': '1gp1vfi'}
{'comment': "It's me. I retired early. My portfolio is up around $700k from one year ago. I'm doing fine. I don't need a tax cut. I expect the coming assault on worker's rights will turbocharge corporate profits making me even more money which I'll use to vacation out of the country, not start a business and hire workers. I don't know what the hell is wrong with people. I grew up in the struggle and I always vote to expand the safety net and help those in need. I have campaigned for democrats. I guess people really want to be medieval peasants and work until they die but they apparently also want to give me more money while I enjoy an ocean view from my house and live a life of leisure funded by their hard work.", 'created': '2024-11-12 00:34:42', 'submission_id': '1gp1vfi'}
{'comment': "But one day I might be a millionaire and then I don't want to have to pay taxes on it. Just tax me now until I undoubtedly hit it big", 'created': '2024-11-12 14:17:47', 'submission_id': '1gp1vfi'}
{'comment': "Throwing away minimum wage is something Trump can't do and would require a act of congress, which in turn would require 60 senators to sign on, which won't happen.\n\nTrump can deregulate and make jobs a lot less safe and have less oversight", 'created': '2024-11-11 22:44:22', 'submission_id': '1gp1vfi'}
{'comment': 'should been incorp into the pic', 'created': '2024-11-11 22:04:25', 'submission_id': '1gp1vfi'}
{'comment': 'This is my dad as well. He is an owner of a corporation and always votes and campaigned for dems but due to tax cuts he’s been getting hundreds of thousands of extra dollars in his pocket. Like, I’m happy for him and all but this is wild haha', 'created': '2024-11-12 04:07:44', 'submission_id': '1gp1vfi'}
{'comment': 'You really think they care about the law?', 'created': '2024-11-12 09:35:12', 'submission_id': '1gp1vfi'}
{'comment': 'wonder how many fanatical trumpers like broccoli?\xa0\xa0', 'created': '2024-11-11 21:10:47', 'submission_id': '1gp1kbk'}
{'comment': '$4 for Broccoli?', 'created': '2024-11-11 21:02:43', 'submission_id': '1gp1kbk'}
{'comment': 'I have a coupon you can use to get it for only $3.99', 'created': '2024-11-11 21:45:15', 'submission_id': '1gp1kbk'}
{'comment': 'If trumplicans had some sort of logic or math skills, we wouldn’t be in this mess.\n\nEdited because spell check hates me sometimes.', 'created': '2024-11-11 21:22:18', 'submission_id': '1gp1kbk'}
{'comment': 'big savings! WINNING BABY!', 'created': '2024-11-11 21:38:14', 'submission_id': '1gp1kbk'}
{'comment': 'The sale price is .00 off! That is awesome right?😳', 'created': '2024-11-11 21:28:59', 'submission_id': '1gp1kbk'}
{'comment': 'Walmart has been doing this for years. They’ll put a “Rollback” tag over the original price, but it’s exactly the same.', 'created': '2024-11-11 21:52:23', 'submission_id': '1gp1kbk'}
{'comment': 'People are really going to Shit when climate change \nand expensive labor costs hit their market baskets.', 'created': '2024-11-12 00:34:44', 'submission_id': '1gp1kbk'}
{'comment': 'They better enjoy it since there may not be anyone left to pick it for the assholes very soon', 'created': '2024-11-12 00:38:23', 'submission_id': '1gp1kbk'}
{'comment': 'It went from $4.99 to $4.99', 'created': '2024-11-11 21:14:29', 'submission_id': '1gp1kbk'}
{'comment': 'At Aldi it’s like 1.79$ …. Do y’all not have Aldi?', 'created': '2024-11-11 23:18:03', 'submission_id': '1gp1kbk'}
{'comment': 'Original Price - Discount + Deported Farm Worker Fee + Tariff Tax', 'created': '2024-11-12 02:11:05', 'submission_id': '1gp1kbk'}
{'comment': 'Just wait until the Tariffs hit. A lot of our food is importer. It’s all going to go up.', 'created': '2024-11-12 02:49:52', 'submission_id': '1gp1kbk'}
{'comment': 'That’s because Trump and his supporters don’t eat healthy food', 'created': '2024-11-11 21:48:31', 'submission_id': '1gp1kbk'}
{'comment': 'Maga will see the original price and the yellow sale price and think See He’s Already Bringing Grocery Prices Down! And then tell everyone they know and post it on Facebook.', 'created': '2024-11-11 22:30:46', 'submission_id': '1gp1kbk'}
{'comment': "My local store now uses electronic price tags.\n\nCostco hasn't increased prices yet.\n\nYet.", 'created': '2024-11-11 21:49:33', 'submission_id': '1gp1kbk'}
{'comment': 'Even sale prices are inflated!', 'created': '2024-11-11 22:20:23', 'submission_id': '1gp1kbk'}
{'comment': 'Pullin the ol’ prime day trick', 'created': '2024-11-11 23:21:18', 'submission_id': '1gp1kbk'}
{'comment': 'It’s $1.99 a lb in my NJ Wegmans.', 'created': '2024-11-11 23:29:26', 'submission_id': '1gp1kbk'}
{'comment': '🤣', 'created': '2024-11-12 00:14:45', 'submission_id': '1gp1kbk'}
{'comment': 'Things to come 😏', 'created': '2024-11-12 03:01:31', 'submission_id': '1gp1kbk'}
{'comment': "Thank you President Trump for lowering our grocery costs! I can now go buy that mansion I've always wanted! \n\n/s", 'created': '2024-11-11 23:22:49', 'submission_id': '1gp1kbk'}
{'comment': 'My collards are just now rebounding and doing great. Kale also gaining ground.', 'created': '2024-11-11 22:27:33', 'submission_id': '1gp1kbk'}
{'comment': 'Looks like Save Mart. They are a total rip off', 'created': '2024-11-11 22:42:56', 'submission_id': '1gp1kbk'}
{'comment': 'Snickers bar at Wal-Mart is 59 cents an oz which is $9.44 a lb.\n\nEat more brocolli :)', 'created': '2024-11-12 04:56:03', 'submission_id': '1gp1kbk'}
{'comment': "$3.99? Here in the Midwest it's usually 99 cents a lb!", 'created': '2024-11-12 13:42:25', 'submission_id': '1gp1kbk'}
{'comment': 'Gotta respect GHWB for hating the stuff. Not a fan.\xa0', 'created': '2024-11-12 18:53:21', 'submission_id': '1gp1kbk'}
{'comment': 'Thanks Trump', 'created': '2024-11-11 21:49:10', 'submission_id': '1gp1kbk'}
{'comment': "You're being ripped off", 'created': '2024-11-11 21:08:52', 'submission_id': '1gp1kbk'}
{'comment': 'Oh god. There was a TikTok trend before the election where people were posting their grocery hauls and then complaining about the price. \n\nTheir carts were full of junk, processed food, and soda. Not a fruit or veg in sight.', 'created': '2024-11-11 22:01:45', 'submission_id': '1gp1kbk'}
{'comment': 'Got to cover it in nacho cheese and bacon bits. The less healthy and more artery clogging the better.', 'created': '2024-11-11 21:46:59', 'submission_id': '1gp1kbk'}
{'comment': 'Or toothpaste?', 'created': '2024-11-11 23:13:50', 'submission_id': '1gp1kbk'}
{'comment': 'Where I live it’s $4 a pound.\n\nhttps://preview.redd.it/p5wd2icmyb0e1.jpeg?width=3024&format=pjpg&auto=webp&s=b04afe0d9294f25b01743a235617134df16fb8c4', 'created': '2024-11-11 21:15:41', 'submission_id': '1gp1kbk'}
{'comment': "That's less than I charge from my farm for organic broccoli.\n\nVegetables *shouldn't be as cheap as they are.* \n\nOr, I should say, growing vegetables should be subsidized like corn and soybeans so that the industry isn't reliant on immigrant labor.", 'created': '2024-11-11 22:55:36', 'submission_id': '1gp1kbk'}
{'comment': 'I wish. Sadly they’ll blame Jewish space lasers and radical democrat weather machines before they ever follow the science of climate change.', 'created': '2024-11-12 01:46:53', 'submission_id': '1gp1kbk'}
{'comment': 'Aldi, my fav place to shop. Was a great place to lower the bite of inflation.', 'created': '2024-11-11 23:23:44', 'submission_id': '1gp1kbk'}
{'comment': 'We don’t have one around here. I typically don’t shop at this store, and will usually pay less for broccoli. I just found the ‘markdown’ funny, and kind of symbolic for all things Trump.', 'created': '2024-11-12 00:57:30', 'submission_id': '1gp1kbk'}
{'comment': 'It was at a Lucky. Maybe they’re owned by the same company?', 'created': '2024-11-11 22:51:50', 'submission_id': '1gp1kbk'}
{'comment': 'Produce prices are mostly regional. This is a rip off for me, but not a good portion of the country lol', 'created': '2024-11-11 21:24:19', 'submission_id': '1gp1kbk'}
{'comment': "I plan to keep some receipts until the end of the year so I can compare them once his tariff plans go in effect. Sad to say when they deport all the farm workers they probably won't notice the increase in produce prices", 'created': '2024-11-11 22:16:32', 'submission_id': '1gp1kbk'}
{'comment': "I saw a few that all the fancy stuff..organic, gluten free, etc and the cart was chock full of party food, not meal food. Of course your bill is high! That's the stuff that costs the most under normal circumstances. If you're bougie and only eat charcuterie boards at meal times, then your total bill is on you.", 'created': '2024-11-12 14:20:07', 'submission_id': '1gp1kbk'}
{'comment': "Damn it, now I want nachos and can't afford them because eggs cost too much.\n\nThanks Obama, I mean Biden.", 'created': '2024-11-12 03:22:39', 'submission_id': '1gp1kbk'}
{'comment': '\\*shrug\\* toothpaste is not in the op of this thread.', 'created': '2024-11-11 23:39:34', 'submission_id': '1gp1kbk'}
{'comment': "Zoom in, it's $4/lb in OP's photo too.", 'created': '2024-11-11 22:07:44', 'submission_id': '1gp1kbk'}
{'comment': 'Last tariffs Idiot Trump ran, he sent American farmers billions and billions of dollars when those pissed-off countries stopped buying American produce in response.', 'created': '2024-11-12 01:38:30', 'submission_id': '1gp1kbk'}
{'comment': 'pretty sure a certain politician plans to kill those subsidies that do exist after jan 21 2025.', 'created': '2024-11-12 15:00:17', 'submission_id': '1gp1kbk'}
{'comment': 'Yeah. Facts are what Trump says. Period.', 'created': '2024-11-12 05:50:38', 'submission_id': '1gp1kbk'}
{'comment': 'Sure is.', 'created': '2024-11-11 23:31:16', 'submission_id': '1gp1kbk'}
{'comment': 'I’m holding onto my next grocery receipt and comparing it every November until 2028.', 'created': '2024-11-11 22:21:25', 'submission_id': '1gp1kbk'}
{'comment': 'Oooh. I’m going to do that too.', 'created': '2024-11-11 22:21:29', 'submission_id': '1gp1kbk'}
{'comment': 'So it is!', 'created': '2024-11-11 22:34:35', 'submission_id': '1gp1kbk'}
{'comment': 'Distinction here.\n\nIt wasn\'t *produce,* it was *soybeans.*\n\nI make this distinction because one is food, the other is a commodity. \n\nAs a farmer, this distinction is important to make for me, since produce growing and selling is an entirely different world from soybean growing, essentially an entirely different industry, although they\'re both "farming." \n\nBut yes, you are absolutely correct otherwise. 45 billion dollars.', 'created': '2024-11-12 02:00:47', 'submission_id': '1gp1kbk'}
{'comment': "What a *great idea.*\n\nAlso, we should deport 45% of the agricultural workforce!\n\nThat'll drive grocery prices down for sure!", 'created': '2024-11-12 15:18:36', 'submission_id': '1gp1kbk'}
{'comment': 'We should make this a plan for the holiday season. Encourage everyone to save their receipts for Thanksgiving dinner groceries and Christmas expenses', 'created': '2024-11-11 22:59:57', 'submission_id': '1gp1kbk'}
{'comment': '', 'created': '2024-11-12 19:02:30', 'submission_id': '1gp1kbk'}
{'comment': 'I do curbside pickup or delivery most of the time, so I’ll also have every receipt saved with you all.', 'created': '2024-11-12 03:22:06', 'submission_id': '1gp1kbk'}
{'comment': 'Thanksgiving? I am not going this year....there will be 4 Maga at the table and I will not break bread with them!', 'created': '2024-11-12 04:51:35', 'submission_id': '1gp1kbk'}
{'comment': 'Yep!', 'created': '2024-11-12 19:08:46', 'submission_id': '1gp1kbk'}
{'comment': "😔 I'm sorry that's your situation... My entire family is a mess too and it wasn't even trump that started it. When my grandparents died the family really split so ours is pretty small now. Maybe you could do something yourself and invite others in a similar situation, one of my friends does a friendsgiving where we get together just as friends and it's a fun time! I'm sure we'll find a straggler to invite to our dinner this year, you aren't alone 💙", 'created': '2024-11-12 05:33:12', 'submission_id': '1gp1kbk'}
{'comment': 'Have friendsgiving instead! As Willdefyyou said.', 'created': '2024-11-14 03:12:33', 'submission_id': '1gp1kbk'}
{'comment': 'Thanks, I am fine alone. \n\nEnjoy your Holiday!', 'created': '2024-11-12 06:22:45', 'submission_id': '1gp1kbk'}
{'comment': 'Oh please. Biden was too old and never should have run and the party elites should not have pushed him. His withdrawal gave Kamala not enough time to win', 'created': '2024-11-12 01:30:14', 'submission_id': '1goypqx'}
{'comment': '[https://www.nbcnews.com/business/economy/tech-workers-layoffs-job-cuts-careers-rcna141735](https://www.nbcnews.com/business/economy/tech-workers-layoffs-job-cuts-careers-rcna141735)\n\n\n\n[https://news.stanford.edu/stories/2022/12/explains-recent-tech-layoffs-worried](https://news.stanford.edu/stories/2022/12/explains-recent-tech-layoffs-worried)\n\n\n\n[https://www.washingtonpost.com/technology/2024/02/03/tech-layoffs-us-economy-google-microsoft/](https://www.washingtonpost.com/technology/2024/02/03/tech-layoffs-us-economy-google-microsoft/)\n\n\n\nI have been worried so much about our nation since Tuesday. I hoped so badly we wouldn\'t lose. I kind of saw it coming but never this bad. \n\n\n\nI would like to bring light to some thoughts I have on how we lost. I think our loss of support from the tech industry might be the biggest reason we lost. We have some alligence with tech CEO\'s but the lower and mid level techs have suffered a decent amount in the last 3 years. Massive layoffs, coupled with right wing social media dominance, and democrats tendency to regulate crypto currency has made the "techbros" upset. \n\n\n\nAlot of these tech people have brought into crypto. They know how to use technology (plus the dark web). I work in tech and know a lot of people who suffered layoffs from Microsoft and game studios. Our support from their bosses (bill gates and mark cuban) that layed them off did not help. Now the techs have started to get what they want with the start of the crypto rallies that have started. \n\n\n\nWe need to work on our tech alliances again and get our social media influence to become relevant. Our leadership is old and doesn\'t understand technology properly. I do believe that crypto can be dangerous but I don\'t know how to regulate our messaging around it. We live in a technology filled world that is now accelerating with AI. we will never win another election without also utilizing those tools.', 'created': '2024-11-11 19:07:56', 'submission_id': '1goypqx'}
{'comment': "The technology itself is available for anybody to use. \n\nIt's a matter of failing to gain control of mass communications systems and platforms. \n\nDemocrats, with the possible exception of Obama 2008, have just not given it a big priority. We rely on legacy media which we demand to be fair (sometimes they are) while Republicans with help from billionaire buddies have relentlessly built their own information delivery systems since the dawn of rightwing talk radio. \n\nWe need to develop our own information delivery systems or at least find a way to circumvent the Fox/Twitter/META ecosystem. The latter could be done in an old school way by permanently remaining in contact with voters at a grassroots level. I previously compared this to a benign 21st version of an urban political machine – but nationally. \n\nThe concept of parachuting into an area a few weeks before an election is increasingly unsuccessful. We need Dems who will keep in touch with their neighbors all year and forward to state and national parties what is on the minds of the grassroots. \n\nVictory will come from the bottom up – not the top down.", 'created': '2024-11-12 00:44:36', 'submission_id': '1goypqx'}
{'comment': 'They all have a tiny penis, just like Trump\n\nThis is why they love Tump!!', 'created': '2024-11-12 15:29:39', 'submission_id': '1goypqx'}
{'comment': "I kinda disagree because smart people don't get their news from tiktok. So using more platforms isn't gonna reach the ones that need to see it.", 'created': '2024-11-12 00:26:08', 'submission_id': '1goypqx'}
{'comment': 'There is no doubt that Lina Khan cost Democrats a lot of support from people working in the tech industry', 'created': '2024-11-12 15:04:37', 'submission_id': '1goypqx'}
{'comment': 'Yeah democrats promising to be tax hawks on crypto didn’t help their cause at all with young men…', 'created': '2024-11-11 21:46:04', 'submission_id': '1goypqx'}
{'comment': 'Yeah because crypto is so good for… wait, literally nothing.', 'created': '2024-11-12 01:01:06', 'submission_id': '1goypqx'}
{'comment': 'Anyone telling those young men that crypto is anything but a joke ass lottery ticket isn’t helping them either, but here we are…', 'created': '2024-11-12 01:21:16', 'submission_id': '1goypqx'}
{'comment': 'That’s your opinion and I share it too. However, it young people who generally aren’t politically engaged are into crypto and their introduction to your party is let’s say a Liz Warren who wants to drown this new space )that we don’t know much about) in regulations…it might be hard to connect with that voter.\n\nThe popular sentiment is democrats tend to believe they know what’s better for citizens than citizens themselves. I think the question we as a party have to ask is do we want to win elections or be right?', 'created': '2024-11-12 01:51:17', 'submission_id': '1goypqx'}
{'comment': "Bitcoin is an existential threat to central banking. The true absurd position is thinking Republicans *aren't* going to attack it.", 'created': '2024-11-12 01:10:22', 'submission_id': '1goypqx'}
{'comment': 'Free firewall workaround:\n\nhttps://archive.is/0eXCv', 'created': '2024-11-11 19:03:36', 'submission_id': '1goym9x'}
{'comment': "It's almost like we have to let him do his thing to prove to America what a train wreck he is. Even then they have a very short memory. Bush Jr. crashed the economy and Obama fixed it. Trump crashed it again and Biden fixed it. Will they remember when Trump crashes it again? I fear the only way they might do that is if he causes a total disaster. I know we don't want that but it is extremely likely. \n\nWinning means you actually have to do what you claim you can do.", 'created': '2024-11-11 19:12:47', 'submission_id': '1goym9x'}
{'comment': 'So? They had lots of ammunition this cycle.\xa0', 'created': '2024-11-11 19:31:04', 'submission_id': '1goym9x'}
{'comment': 'It doesn\'t matter if his policies blow it all up, because he and the right wing media control the narrative.\n\n"There is no inflation. Okay there is, but it\'s after effects of Biden/Harris policy, not tariffs. I can fix it, but it will take 4 more years."', 'created': '2024-11-11 19:41:12', 'submission_id': '1goym9x'}
{'comment': '>Should he go through with his radical agenda,\n\nIf Trump goes through with his radical agenda, part of it will consist of voting reform that makes it very difficult for a Democrat to win the presidency again. And would also help Republicans in Congress during their reelection.', 'created': '2024-11-11 19:16:34', 'submission_id': '1goym9x'}
{'comment': 'If future elections are allowed Trump can’t keep his promises. \n\nIt’s wild seeing trumpers in moderate and conservative spaces argue “I don’t mind if grocery prices have to go up as long as they get rid of illegals”', 'created': '2024-11-11 20:07:41', 'submission_id': '1goym9x'}
{'comment': "Democrats already had lots of ammunition. We knew exactly who Trump was from his last term, January 6th, and his constant lying. He's been telling people who he is for ten years (more if you live in New York). People still voted for that piece of sewage. It's not that they like his policies. They like his hate and bigotry. It's as simple as that. The Klan and the neo-Nazis don't have to have recruitment drives when half the country already believes in their bullshit.", 'created': '2024-11-11 19:44:53', 'submission_id': '1goym9x'}
{'comment': 'I doubt it. The voters who voted in this election knew what he would do. Americans love \n\nNarcissistic, selfish, dishonest, transactional, manipulative, sensationalist, criminal, despotic, egotistical, sloganeering, divisive, individual...\n\nI feel sorry for us who have some common sense.', 'created': '2024-11-11 19:52:22', 'submission_id': '1goym9x'}
{'comment': None, 'created': '2024-11-11 19:25:47', 'submission_id': '1goym9x'}
{'comment': 'I keep saying this too but we had infinite ammunition against Trump for this year’s election and he won in a landslide.', 'created': '2024-11-11 20:03:50', 'submission_id': '1goym9x'}
{'comment': 'If we get any more elections.', 'created': '2024-11-11 20:45:13', 'submission_id': '1goym9x'}
{'comment': 'Stop running against Republicans and start running on policy proposals that will appeal to working people.', 'created': '2024-11-11 22:44:35', 'submission_id': '1goym9x'}
{'comment': "Democrats don't have shit as long as Fox News and conservative media does their usual bullshit.", 'created': '2024-11-11 20:31:03', 'submission_id': '1goym9x'}
{'comment': 'Trumps mind cares only about winning even if he doesn’t know what that is. To most presidents it would be to go down in history for doing something great. To Trump it’s about defeating democrats at any cost which to him is a greater than any threat on the planet. I don’t see him doing anything more than he always has which is to feed his base red meat so the ones that don’t already, will love him even more than Jesus. This guy saying a month ago that he will use the military against liberals with this amount of power is the closest I have seen to Hitler.', 'created': '2024-11-11 21:45:14', 'submission_id': '1goym9x'}
{'comment': 'So your idea is to run another “Trump bad” campaign. I mean we’re 1 for 3 on those….', 'created': '2024-11-11 19:07:47', 'submission_id': '1goym9x'}
{'comment': 'The absolute *best case* scenario is he “tries” to do every single thing he promised. Now obviously the hope is he’ll fail. And not *at all* because I don’t like him. \n\nThe hope is that he tries so that the American populace can actually see what they bought with their votes. After the attempts are made, the best we can hope for is that these proposals get held up in court for months (or years) and are met with massive (peaceful) protests and public political upheaval, worldwide news coverage, and condemnation from other countries and the UN. \n\nBut if he succeeds, his presidency would go down as one marred with an unprecedented amount of civil rights violations and unnecessary civil unrest. Something the likes of the United States has never before seen.', 'created': '2024-11-11 21:39:33', 'submission_id': '1goym9x'}
{'comment': 'There wont be another election... THATS the thing...', 'created': '2024-11-11 19:17:04', 'submission_id': '1goym9x'}
{'comment': 'When predicting Trump actions, always prioritize the grift. Money.', 'created': '2024-11-11 20:34:42', 'submission_id': '1goym9x'}
{'comment': '2004 to 2006 all over again.', 'created': '2024-11-11 21:45:24', 'submission_id': '1goym9x'}
{'comment': 'Those of us still alive', 'created': '2024-11-11 22:10:51', 'submission_id': '1goym9x'}
{'comment': 'I do think being liked is hugely important to him. He will build things to take effect over time. Social security will be paid out for another decade then trickle off. Taxes for working class will go up but not for several years (same as last time). And so on. \n\nOr he’ll send people to the gas chambers who the hell knows.', 'created': '2024-11-11 22:24:39', 'submission_id': '1goym9x'}
{'comment': 'When Trump fails, he will say Washington is infested with deep state spy blue infidels and they are in fact the ones blocking his success, and of course Trumpanzees will believe him.', 'created': '2024-11-11 23:15:24', 'submission_id': '1goym9x'}
{'comment': 'And how about this? Democrats stop pandering and giving in to every far left dream of tiny minorities? We lost because: Biden couldn’t say “no mas” to the immigrants, we HAD to force pronouns on people and let biological men compete against women, and the whole Project 1619 thing really really set people off.', 'created': '2024-11-12 00:15:48', 'submission_id': '1goym9x'}
{'comment': "I'm prepared to believe that Trump's extremism and incompetence will mobilize voters who were complacent in 2024, just like it did in 2020. But, where does that leave us? Every time they win, our democracy backslides a little more, our culture descends to new lows, the once unthinkable becomes the new norm. It's just not sustainable.\n\nWe need to *completely banish fascism from our political and social life*. \n\nDoes anyone know how to do that?", 'created': '2024-11-12 02:20:42', 'submission_id': '1goym9x'}
{'comment': 'We are due for a massive correction. Current housing prices are just not sustainable. Did they install Trump just to put the correction in his lap?', 'created': '2024-11-11 20:26:02', 'submission_id': '1goym9x'}
{'comment': "He's either going to implement his horrific policies and we all lose, or he doesn't, for whatever reason, and his followers blame him for not being hateful enough, essentially. Or the economy dives.\n\n\nMy concern is as much what power will be seized between now and midterms. I recommend Jay Kuo and his recent post breaking down some constitutional crisises that we could see.", 'created': '2024-11-11 21:09:13', 'submission_id': '1goym9x'}
{'comment': 'There won’t be future elections, which is why they think they can get away with this', 'created': '2024-11-12 00:00:54', 'submission_id': '1goym9x'}
{'comment': 'Bold of you to assume we’ll be allowed to have 2026 and 2028 elections.', 'created': '2024-11-12 01:02:09', 'submission_id': '1goym9x'}
{'comment': 'You think there will be more elections?', 'created': '2024-11-11 20:28:24', 'submission_id': '1goym9x'}
{'comment': 'Wishful thinking! What elections?', 'created': '2024-11-11 22:01:57', 'submission_id': '1goym9x'}
{'comment': 'If he goes through with his radical policies we may not get to have an election in 2026 and 2028', 'created': '2024-11-11 22:02:39', 'submission_id': '1goym9x'}
{'comment': "Uh guys, the people in trump's orbit and who authored project 2025 take their inspiration from nazi Germany. You think we'll have free and fair elections going forward? You think they won't try to outlaw the democratic party? There won't be guardrails when trump demands that protests be broken up violently and their leaders imprisoned. These people hate democracy and believe they are destined by God to control the country. I'm expecting them to cling to power for a generation.", 'created': '2024-11-11 22:25:36', 'submission_id': '1goym9x'}
{'comment': 'IF, there are elections in 26 and 28....', 'created': '2024-11-11 19:50:25', 'submission_id': '1goym9x'}
{'comment': 'Assuming there will be 2026 and 2028 elections', 'created': '2024-11-11 21:03:43', 'submission_id': '1goym9x'}
{'comment': "There aren't going to be any more elections after inauguration day", 'created': '2024-11-11 19:30:02', 'submission_id': '1goym9x'}
{'comment': "Democrats have proved that when given all the ammunition in the world, they still can't convict a criminal.", 'created': '2024-11-11 21:48:09', 'submission_id': '1goym9x'}
{'comment': 'Are there any campaign promises that are decent?', 'created': '2024-11-11 19:36:40', 'submission_id': '1goym9x'}
{'comment': 'We gotta let him go nuts so we can take back some power for a bit and let America forget in 4 years.', 'created': '2024-11-11 21:02:57', 'submission_id': '1goym9x'}
{'comment': 'And squander all of it… feckless', 'created': '2024-11-11 21:59:42', 'submission_id': '1goym9x'}
{'comment': "The partycannot just wait and go 'not trump' again ffs.", 'created': '2024-11-11 22:33:40', 'submission_id': '1goym9x'}
{'comment': 'I don’t think they care if he accomplishes his goals or not. The man said he would build a wall and Mexico would pay for it. And I’ve heard exactly zero republicans mention it. Why not finish the wall since he will have all these branches of govt now? That would probably be cheaper than deportations.', 'created': '2024-11-11 22:56:11', 'submission_id': '1goym9x'}
{'comment': 'Trumpism is a cult. Cults do not behave rationally. We must approach this accordingly.', 'created': '2024-11-11 22:57:25', 'submission_id': '1goym9x'}
{'comment': '>2026 and 2028 elections.\n\nI fully expect him to suspend elections', 'created': '2024-11-12 00:30:24', 'submission_id': '1goym9x'}
{'comment': 'You’re assuming he (and they) will not burn down the system and voting in free elections will still be an option.', 'created': '2024-11-12 00:32:14', 'submission_id': '1goym9x'}
{'comment': 'If there’s still elections by then.', 'created': '2024-11-12 00:48:13', 'submission_id': '1goym9x'}
{'comment': 'Dems had a lot of ammo this time, and they just DID NOT USE IT.', 'created': '2024-11-12 01:06:01', 'submission_id': '1goym9x'}
{'comment': 'We had a lot of ammunition for this election and we lost, bigly. Maybe 100 days isn’t enough? Better candidates are what we need', 'created': '2024-11-12 01:23:07', 'submission_id': '1goym9x'}
{'comment': '\n\nLike they didnt have ammunition before.', 'created': '2024-11-12 01:51:39', 'submission_id': '1goym9x'}
{'comment': 'You’re forgetting the fact that America is full of a bunch of idiots', 'created': '2024-11-12 02:28:55', 'submission_id': '1goym9x'}
{'comment': 'Annnnd we STILL probably play nice', 'created': '2024-11-12 02:29:04', 'submission_id': '1goym9x'}
{'comment': 'Stock up now. Economy is going down big time, everything will be more expensive and unemployment will double or triple rate now.', 'created': '2024-11-12 02:41:41', 'submission_id': '1goym9x'}
{'comment': "We have a lot to be afraid of, but I really think he's gonna get so caught up on the immigration stuff that the worst of it won't hit until at least 2026, by which time the elections will be at hand", 'created': '2024-11-12 02:46:26', 'submission_id': '1goym9x'}
{'comment': 'Lot of amo that no American can listen too sadly\n\nEdit typo', 'created': '2024-11-12 02:48:37', 'submission_id': '1goym9x'}
{'comment': 'lol right. One of the most infuriating things about our electoral process is that fulfilling promises would make Dems widely popular and repubs wildly unpopular. But they win anyway.', 'created': '2024-11-12 04:33:47', 'submission_id': '1goym9x'}
{'comment': 'Trump will do both. He will enact his shit policies but then blame Democrats for the negative effects and his supporters and rural swing state voters will eat it up. So he will get his dumb policies through while staying popular.', 'created': '2024-11-12 04:47:18', 'submission_id': '1goym9x'}
{'comment': "There aren't going to BE any more elections by the time the fascists are done.", 'created': '2024-11-12 05:15:26', 'submission_id': '1goym9x'}
{'comment': 'Some Congress Representatives need to get the impeachment process ready to file on Day One.', 'created': '2024-11-12 09:02:51', 'submission_id': '1goym9x'}
{'comment': "It doesn't matter. The only things he will do effectively is pardon himself and give tax cuts to billionaires. Everything else can be a disaster for all he cares. He'll be playing golf whether people like him or not", 'created': '2024-11-12 14:07:34', 'submission_id': '1goym9x'}
{'comment': 'There will be another election?', 'created': '2024-11-12 14:53:36', 'submission_id': '1goym9x'}
{'comment': 'lol. The next elections will be shams. They will rig them to keep their majorities.', 'created': '2024-11-12 16:29:24', 'submission_id': '1goym9x'}
{'comment': 'It makes no sense that he has to "prove" he sucks. We all lived through it once and he was arguably the worst president ever. How can people forget so easily?', 'created': '2024-11-11 19:28:28', 'submission_id': '1goym9x'}
{'comment': "Yup. That's exactly what this strategist said on Pod Save America (starts at 56:22) [https://youtu.be/jPJYFjQyWHU?feature=shared&t=3382](https://youtu.be/jPJYFjQyWHU?feature=shared&t=3382)\n\nBasically, people voted for Trump because they believe he will deliver on the economy. When he doesn't do that--when his administration instead does extreme things like ban abortion, repeal Obamacare, deport millions of people, impose tariffs--we need to hammer them on it, because they aren't delivering on what voters voted them in to do. And we need to tie those extreme policies back to how it negatively affects the economy, because that's what voters primarily care about.", 'created': '2024-11-11 19:48:56', 'submission_id': '1goym9x'}
{'comment': ">I fear the only way they might do that is if he causes a total disaster. I know we don't want that but it is extremely likely. \n\nYep. Trump is so bad with economics, he could easily crash the economy by accident. \n\nOr alternatively, Trump could treat the US like a pump and dump, and institute a bunch of policy and legislation that increases his wealth, without any care for whether or not it crashes the economy.\n\nI guess the best we can hope for is that he just gets busy with a lot of schemes on the perimeter. Such as him and Musk pumping and dumping crypto. Or getting bribes through his social media stock. Such that the worst damage he does is decreased taxes for the wealthy and corporations. \n\nI find myself very depressed by the idea that now I'm hoping that the last scenario is going to happen. ☹️", 'created': '2024-11-11 19:23:14', 'submission_id': '1goym9x'}
{'comment': 'There is another option. Blue states outcompeting red states on everything. Cutting the socialism of blue states funding red states. If they wanna be like Russia, be like Russia.', 'created': '2024-11-11 19:58:57', 'submission_id': '1goym9x'}
{'comment': 'I mean the only reason Biden won 2020 was *because* trump was telling people to inject bleach and had mike lindell selling hibiscus tea. Ofc repubs only care when it affects them', 'created': '2024-11-11 20:38:51', 'submission_id': '1goym9x'}
{'comment': "Facts don't matter. MAGA has successfully peed on their supporters and they believed it was just rain.\n\nOur only hope of was that our laws and systems of checks and balances would save us.\n\nThose failed in plain sight.\n\nMAGA is already prepared for pain. Theyre pumped on dismantling things that aren't problems", 'created': '2024-11-11 21:02:24', 'submission_id': '1goym9x'}
{'comment': 'If they weren’t convinced the first time, they not be convinced the second time. In fact, they want a king.', 'created': '2024-11-11 21:10:48', 'submission_id': '1goym9x'}
{'comment': 'That is the best case scenario. We had checks and balances back then. This guy has all three branches of government with control of the military. If a mad man were in this position of power it could literally get bloody.', 'created': '2024-11-11 21:53:23', 'submission_id': '1goym9x'}
{'comment': 'They will always find someone to blame for and play the victim. That’s what narcissists do.', 'created': '2024-11-12 09:14:35', 'submission_id': '1goym9x'}
{'comment': 'And they\'re discounting that the Heritage Foundation *won\'t* do everything they can to retain power. I hate how y\'all are acting like there will still be free and fair elections in \'26 and \'28. "You\'ll never have to worry about voting again!" Remember?', 'created': '2024-11-12 14:35:35', 'submission_id': '1goym9x'}
{'comment': 'This comes from a place of assuming that the general public is the same level of news junkie we all are. They\'re not. People are just fucking stupid. And they\'ll vote whatever grievance they happen to have in that very moment.\n\n"Is Grog happy? Is Grog rich? Urgh. 4 more years."\n\nvs.\n\n"Grog not happy. House and food cost too much. Get rid of Biden Party."\\*\n\n\\*And then there\'s the real dregs: "What? Biden not on ballot? OK, get rid of D-lady then. Close enough."', 'created': '2024-11-11 20:40:51', 'submission_id': '1goym9x'}
{'comment': 'He could fuck a squirrel on camera and blame it on the Dems and his braindead propaganda guzzling audience would believe him.', 'created': '2024-11-12 14:02:46', 'submission_id': '1goym9x'}
{'comment': 'Don’t they need a senate majority for that? They don’t have that right now', 'created': '2024-11-18 09:19:21', 'submission_id': '1goym9x'}
{'comment': 'Stupidly dangerous. I’m sure starting mass deportations will do wonders for the economy. Our education system is clearly failing.', 'created': '2024-11-11 22:05:03', 'submission_id': '1goym9x'}
{'comment': ">He's been telling people who he is for ten years (more if you live in New York).\n\nOr if you ever watched The Apprentice.", 'created': '2024-11-11 23:33:40', 'submission_id': '1goym9x'}
{'comment': 'I think you can say it without saying it. The results may speak for themselves.', 'created': '2024-11-11 19:11:14', 'submission_id': '1goym9x'}
{'comment': 'Or much worse.. He said he would use the military against liberals which is a banana republic.', 'created': '2024-11-11 22:14:14', 'submission_id': '1goym9x'}
{'comment': '[You need to watch this.](https://youtu.be/n7KUhBxpD14?si=mUf9Vc0dgbOzdGCG)', 'created': '2024-11-11 19:30:36', 'submission_id': '1goym9x'}
{'comment': "I think people need to back away from this doomerism before it starts running off voters.\n\nAmerica will survive. I get yall think it won't, and a lot of you are younger and didn't live thru things like Bush/Cheney or Reagan. \n\nThe county will still be here in 2028. It might be a little battered and brused, but it will survive.\n\nAmerica is 50 democracies who fall under a federal republic. We are not nazi Germany, we aren't Argentina, we aren't Spain. Our entire system is set up completely different than countries who have fell to authoritarians.\n\nElections can't just end lol and if the federal government tried, you'd just have 50 democracies refuse to accept the Republic. There's over 4700 judges at the federal level, trump managed to replace a record of 234 of them. About 4% of the judiciary. No where near enough to take control and end all elections and term limits and all checks and balances\n\nAll the gloom and doom does is turn off voters. America will survive", 'created': '2024-11-11 19:33:53', 'submission_id': '1goym9x'}
{'comment': "I don't think we do, to be honest. It's like cancer.", 'created': '2024-11-12 02:47:18', 'submission_id': '1goym9x'}
{'comment': "The problem for him is that this isn't Germany. Germany is efficient, that's a huge reason the Holocaust was so effective and terrible. It was German ingenuity and effectiveness put the ultimate test. The US isn't efficient. Frankly, a oot of this is gonna get held up in the courts", 'created': '2024-11-12 02:52:24', 'submission_id': '1goym9x'}
{'comment': 'I think we have to believe there will be or else we are fucked. I mean, we might be fucked either way.', 'created': '2024-11-12 02:49:26', 'submission_id': '1goym9x'}
{'comment': 'Please stop with this bullshit. Trump fucking sucks and he will do terrible things to the country, but you and I both know that there will be a free election in 2028. There is literally nothing he could humanly do to stop that; Republicans don’t have remotely close to enough seats in Congress to pass constitutional amendments.', 'created': '2024-11-11 19:59:02', 'submission_id': '1goym9x'}
{'comment': 'I think he will want to, but then that means no money for a good chunk of the Republican party.', 'created': '2024-11-12 02:48:27', 'submission_id': '1goym9x'}
{'comment': 'We need a better media strategy and I think we are seeing our media working on it.', 'created': '2024-11-12 02:47:47', 'submission_id': '1goym9x'}
{'comment': 'People were "afraid" of Harris, whatever that means.', 'created': '2024-11-11 19:31:42', 'submission_id': '1goym9x'}
{'comment': 'The first Trump round was just a flesh wound. Americans will learn what people experienced in countries like Romania under Nicolae and Elena Ceaușescu. First Trump term was a light touch.', 'created': '2024-11-11 19:35:55', 'submission_id': '1goym9x'}
{'comment': 'Willful ignorance', 'created': '2024-11-11 19:33:43', 'submission_id': '1goym9x'}
{'comment': "I don't know but a sitting president is more present in memory than one from 4 years ago.", 'created': '2024-11-11 20:38:54', 'submission_id': '1goym9x'}
{'comment': 'People remembered the pre-COVID era as a good time and Trump was President then.\n\nThey didn’t want Trump back. They wanted to go back to 2019.', 'created': '2024-11-11 21:46:13', 'submission_id': '1goym9x'}
{'comment': '> we need to hammer them on it, because they aren\'t delivering on what voters voted them in to do\n\nWe need to hammer them on it because they need to understand elections have consequences. That their vote has consequences.\n\nThey need to understand when they cast their vote, it has attached consequences. Not "oh he didn\'t mean that".', 'created': '2024-11-12 00:52:03', 'submission_id': '1goym9x'}
{'comment': 'I wish the economy was my biggest concern. Freedom itself is at stake.', 'created': '2024-11-11 21:59:27', 'submission_id': '1goym9x'}
{'comment': 'How’s that going to happen exactly?', 'created': '2024-11-11 21:22:27', 'submission_id': '1goym9x'}
{'comment': 'Right, who the hell do people forget crap like this. How the hell can Elon donate 120 million to someone like this???', 'created': '2024-11-11 22:00:48', 'submission_id': '1goym9x'}
{'comment': 'Political cheerleading, shouting “let’s go Brandon” and they have no idea that they are actually cheering for Russia.', 'created': '2024-11-11 22:02:11', 'submission_id': '1goym9x'}
{'comment': 'The number of businesses that will feel the pinch from the deportations is going to create an economic reckoning that these idiots are not prepared to realize.', 'created': '2024-11-11 22:59:20', 'submission_id': '1goym9x'}
{'comment': 'At this point I think the electorate is too selfish and ignorant to understand any messaging. If somebody feels like the last four years have been tough for them, they’re just gonna vote for the opposite party.', 'created': '2024-11-11 20:16:59', 'submission_id': '1goym9x'}
{'comment': 'Yeah honestly I’m getting tired of the “there won’t be elections in 2028,” bs. Trump is a piece of shit, obviously. He will do terrible things for human rights and the economy. But it wouldn’t even be humanly possible for him to overturn our election process. It would require several constitutional amendments and republicans have nowhere near the numbers in congress to achieve that. This hyperbole bullshit is part of the reason we lost the election. Nobody takes you seriously when you start spewing nonsense like “elections won’t exist anymore after Trump!,” because everyone half-competent knows that’s not even a possibility.', 'created': '2024-11-11 19:56:57', 'submission_id': '1goym9x'}
{'comment': "I'm getting there as well. But there are legitimate concerns and loopholes that can be exploited.\xa0\n\n\nI mentioned a recent Jay Kuo post in another comment and its well researched regarding recess appointments and where those could lead. His post is on FB and BlueSky, I believe. A lot of precedents will likely be flying out the window.", 'created': '2024-11-11 21:15:44', 'submission_id': '1goym9x'}
{'comment': 'Thank you for this. I understand where the fear is derived, and I agree it is valid. but damn the incessant fear-mongering gets to be too much and is not productive in any manner.', 'created': '2024-11-12 01:07:24', 'submission_id': '1goym9x'}
{'comment': 'It is, until it isnt...', 'created': '2024-11-11 19:38:20', 'submission_id': '1goym9x'}
{'comment': "He has the Supreme Court, the House, and the Senate now. He doesn't need the remaining 4700 judges at the federal level - the Supreme Court can simply overrule them. The House and Senate can vote to withhold federal funds from the states. They can institute new laws taking power from the states and consolidating it to the federal government, and the Supreme Court can rule them perfectly constitutional. Likewise, the Supreme Court can declare laws and precedents they don't like unconstitutional. \n \nThere are no checks and balances remaining with MAGA in control of all three branches of government. Unless the individual states secede, they do not have the ability to overrule the federal government about what is or isn't constitutional.", 'created': '2024-11-12 00:38:58', 'submission_id': '1goym9x'}
{'comment': 'Yeah with Harris the worst case scenario is everything continues on the current trajectory. Inflation down, stock market up, border crossings down, etc. \n\nWorst case scenario with Trump? Collapse into a fascist dictatorship, US economy crashing, rich increasing their wealth, the poor become poorer, freedoms stripped away, Project 20 fucking 25.', 'created': '2024-11-11 19:39:43', 'submission_id': '1goym9x'}
{'comment': '“Woke” Californian brown woman', 'created': '2024-11-11 19:48:25', 'submission_id': '1goym9x'}
{'comment': 'Why do you think Russia was literally celebrating after the election. This is a really really dangerous situation! This is going to be a banana republic where politicians that disagree with you go to prison or worse.', 'created': '2024-11-11 21:58:08', 'submission_id': '1goym9x'}
{'comment': 'Has anyone read the bedtime story of Nicolae and Eliana to Trump?', 'created': '2024-11-12 00:50:13', 'submission_id': '1goym9x'}
{'comment': 'A lot of people who voted for Trump this time around were 14-15 years old during his first administration, largely shielded from how terrible it was because all they had to do was worry about school and young teen related things. Probably didn’t keep up much with political news and the like back then. He got massive turnout from young men especially', 'created': '2024-11-11 21:45:31', 'submission_id': '1goym9x'}
{'comment': 'Magic?', 'created': '2024-11-12 08:55:14', 'submission_id': '1goym9x'}
{'comment': "Yeah, those people are dummies too, but I don't think they're reachable.", 'created': '2024-11-11 22:03:03', 'submission_id': '1goym9x'}
{'comment': 'That’s my point. Organically use messaging based on results.', 'created': '2024-11-11 20:21:06', 'submission_id': '1goym9x'}
{'comment': 'Both of your guy’s comments makes things more hopeful', 'created': '2024-11-11 20:13:15', 'submission_id': '1goym9x'}
{'comment': "I'm glad we're pushing back on this. It's getting tiresome, depressing, and above all: counterproductive. This is a time in which we need to be meeting, strategizing, and planning for 2025 and the midterms. If you're not going to be part of the solution, GTFO.", 'created': '2024-11-11 20:19:59', 'submission_id': '1goym9x'}
{'comment': 'I legitimately forgot they would need a 2/3rds vote in the house and senate for a constitutional amendment. So your comment actually made me feel a lot better. Thanks.', 'created': '2024-11-11 23:38:39', 'submission_id': '1goym9x'}
{'comment': 'And that\'s why democracy is called "the Grand Experiment"\n\n20 years into the American Nation, Washington faced down the Whiskey Rebellion, which could have ended the US before it got off the ground\n\nFor the first 30 years of the Nation, we didn\'t when know who would take over if a president died in office.\n\nIn 1929, the government was facing unavoidable collapse after the market failed. We had to re structure everything with the New Deal to survive.\n\nIn 1930, the 1% literally tried to overthrow FDR and install Marine Corps General Smeadly Butler as the defacto leader of the US.\n\nIt wasn\'t until 1967 that we had a way to remove a president who was mentally or physically unable to perform the job.\n\nIn 1974, we had a man who wasn\'t elected president or vice president take over the country.\n\nBy 1987, Reagan\'s wife was using astrology to decide the president\'s meetings and travel, even advising him on international affairs after speaking to psychics.\n\nIn 2000, the US Supreme Court named George Bush the President because of 537 votes in Florida. The modern political polling website 538 is entirely based off the incident, with a tongue in cheek name.\n\n\nOur country gets tested a dozen times every generation. Trump is just another roadbump in our Grand Experiment.', 'created': '2024-11-11 21:57:35', 'submission_id': '1goym9x'}
{'comment': 'That is a fascinating post. I just remembered I get those in emails. I’m not technically a subscriber so I don’t know how to link it. \n\nAfter all the shit talking Darth McConnell did in his book, I wonder if he has the desire or the testicular fortitude to help formulate a strategy to block this. He’s known to be such a parliamentarian and successfully blocked it with Pelosi before (as the article points out). But the last thing in my life I’d want to do is put faith in him.', 'created': '2024-11-12 00:38:39', 'submission_id': '1goym9x'}
{'comment': 'And the sky is blue until it turns purple.\n\nAnd a dog is a dog until it turns into a cat.\n\nAnd fire is warm until it turns to ice...', 'created': '2024-11-11 21:49:36', 'submission_id': '1goym9x'}
{'comment': 'The curious thing to me is all the democratic senate candidates who outperformed Harris.', 'created': '2024-11-11 19:43:06', 'submission_id': '1goym9x'}
{'comment': 'Moderate republicans and swing voters were quoted saying, while shocking, they “didn’t *truly* believe” the more scary things Trump said would actually happen (example, the stuff in P2025). \n\nObviously most of us know better, but that was what was being said in polls post-election.', 'created': '2024-11-11 21:43:37', 'submission_id': '1goym9x'}
{'comment': 'You get it! People have no idea how bad it may get giving a mad man all three branches of government.', 'created': '2024-11-11 21:55:46', 'submission_id': '1goym9x'}
{'comment': 'That is definitely part of it. The other part is that this was a change election and enough people saw Harris as establishment and Trump as anti-establishment that her perfectly run campaign did not get her over the finish line.', 'created': '2024-11-11 19:50:19', 'submission_id': '1goym9x'}
{'comment': 'How much is “woke Californian” factoring into this vs “brown woman”? Because if we learn the wrong lessons from this, then we’ll be surprised when a potential Newsom campaign runs into similar baggage.', 'created': '2024-11-11 22:02:11', 'submission_id': '1goym9x'}
{'comment': "Young men still really don't have much to worry about. Especially when it comes to women's rights, healthcare, child care, retirement and the economy in general. I remember being in my early 20s. Men that age are selfish and generally treat women like shit. All they know is their gas and beer prices went up.", 'created': '2024-11-11 21:49:28', 'submission_id': '1goym9x'}
{'comment': "The thing about experiments is that they fail sometimes. There is nothing special about America that protects it from falling victim to the same forces that destabilize or destroy states. At minimum, there's no reason to expect that America's current political structure will persist indefinitely.", 'created': '2024-11-12 14:22:58', 'submission_id': '1goym9x'}
{'comment': 'Agreed. I think he (like a lot of Republicans in office do, according to whispers that leak) actually despises Trump, but Trump holds all the political capital.\xa0\xa0\n\n\nScott not getting the position would definitely be a blow to Trump. I think the odds are slim, but hollow victories are our best bets now anyway.', 'created': '2024-11-12 17:17:50', 'submission_id': '1goym9x'}
{'comment': 'A lot of it was undervote: The Dem got similar numbers to Harris and the Rep got a lot less than Trump. People JUST voted Trump and left the rest of their ballots blank. \n\nTrump’s popularity did not extend far downballot. He also won a lot of low information, low engagement voters who did not necessarily want to vote for the Republican in a downballot race.\n\nThe opposite happened in 2020 when the Trump ran behind other Republicans.', 'created': '2024-11-11 21:48:24', 'submission_id': '1goym9x'}
{'comment': 'Trump is a pathological liar. Why WOULD you believe him?\n\nTrump’s superpower is to be able to tell two different groups two completely different things and have them both believe he is lying to the other one.\n\nHe’s both for and against abortion and both pro-choice and anti-choice Republicans agree with him.', 'created': '2024-11-11 21:49:30', 'submission_id': '1goym9x'}
{'comment': "The reality of the matter is if one lives in a primarily blue stronghold state, your vote in the grand scheme of things for national presidential office doesn't really matter. It does, insofar as showing support, but it isn't really going to matter.\n\nSadly, what this means is what matters is courting the voters in the battleground states. And as much as we'd hope voters at large are above making decisions on something as basal as race and ethnicity and gender, the objective reality is this is not true.\n\nAnd therefore, Newsom is never going to successfully shed his California background. He'll have to win in spite of it if he ultimately becomes the presidential candidate, and that already puts him at a disadvantage.\n\nIt _sucks_, don't get me wrong, that we have to filter out competent people because their background and history paints a large target on their back, but this is unfortunately reality: when the electorate cannot be trusted to think past their basal human instincts, success does not involve banking on them to think past their basal human instincts. It must be appealed to, because unfortunately we've now gotten to a point where one political party has to win because the other has completely abandoned all responsibility and diligence to the ethos of the country at large.\n\nAnd this is why the Democrats as a political group is ever so threadbare and on the precipice of everything. There is a consistent struggle between doing what is right: meritocracy, opportunity, representation, equity, and what is needed. Sadly doing what is needed will turn some subset of voters away, who will abdicate their participation in these critical civic moments, and the Democrats will continue to chase after what is needed, taking gambles and risks along the way because at this point every decision is a calculated gamble.", 'created': '2024-11-12 00:48:21', 'submission_id': '1goym9x'}
{'comment': 'And the shame of it is, their gas and beer are now back to pre-pandemic prices, despite what they may think. Trump, with help from Elon Musks Twitter algorithm, was able to convince almost 75 million Americans that the president sets the price of goods sold on the private market. Complete and total lie, but they believed it. The world had still been financially reeling from Covid for the last few years. During the entirety of the Biden admin, it had been going back down and at a speed greater than the entire rest of the developed world.', 'created': '2024-11-11 22:01:58', 'submission_id': '1goym9x'}
{'comment': 'I’d never believe him, but he was successfully able to convince over 50 percent of voters due to a number of reasons:\n\n1.) Wildly undereducated voters- most voters (despite what top democrat brass thinks) consume “news” *exclusevely* from social media. Trumps team was much more active in this space, and while what he was saying to them was largely complete lies, it unfortunately reached more people than Kamala’s message. \n\n2.) The “benefit” of a perceived bad economy- circling back to number 1, he convinced 74 million Americans that the president actually sets the prices of goods sold on the private market. Total lie, but they were convinced nonetheless. \n\n3.) Absolutely *massive* political interference by Elon Musk- And to such a degree that it *should* be at least investigated by the FBI. Not saying it was anything that would definitely be found inherently “illegal” but every single person that I know that still has Twitter, was shown almost exclusively right-wing white nationalist propaganda via the Twitter algorithm. And these people had *never* interacted with that type of content ever. \n\nAll those combined and likely more, led to a lot of people believing that the fear behind Trumps terrible words was largely propagated by the left and that it was “fake news”. It sucks, but it’s just kind of the long and short of how it happened.', 'created': '2024-11-11 21:58:26', 'submission_id': '1goym9x'}
{'comment': 'Appreciate this, well said and it helps explain a lot. It makes sense and the big wave of hype that big blue state candidates have can be blinders that shadow how a large chunk of the electorate thinks. This past election made me realize the importance of winnable candidates versus great candidates. Not mutually exclusive but our electorate is very diverse and can have seemingly incompatible mindsets. \n\nBut that also makes me fear losing out on great winnable candidates because our criteria for winnable is always needing to change.', 'created': '2024-11-12 01:02:24', 'submission_id': '1goym9x'}
{'comment': 'And it seems like all our conflicting interests will have to come to a head. We\'ve often been called the "Big Tent" Party, taking in just about anyone who doesn\'t belong in the GOP. The problem is that nobody owns the "Big Tent". No one group owns it and therefore we have nobody to set our values, set our beliefs. Now, as much as I\'d like to think we can govern without values, without beliefs, I don\'t think it\'s possible. It\'s never been done before in the history of the world, let alone the USA. From the very beginning, who got to own land, who could and couldn\'t vote, who was and wasn\'t property? These were value judgements made by people who took the benefits they were getting from those judgements as proof that the system was operating rationally. Beliefs are things you hold in your heart, and when the system makes a judgement that doesn\'t conform to them you just have to trust its wisdom.', 'created': '2024-11-12 16:50:58', 'submission_id': '1goym9x'}
{'comment': 'Yeah gas is the exact price today as I was 15 years ago when I was in college.', 'created': '2024-11-11 22:23:10', 'submission_id': '1goym9x'}
{'comment': "> But that also makes me fear losing out on great winnable candidates because our criteria for winnable is always needing to change.\n\nFor example, there's a lot of talk about seeing AOC run for president in the future. I think she would do great as a president, even if she personally hesitates or disagrees. I think she'd excel in a primary. But there's no getting away from the fact that the glass ceiling exists and the electorate at large, where their votes matter most for deciding who seats at the White House, are going to be less enthused purely on sexism alone.\n\nIdealistically we'd like to imagine it won't be a big deal, but this is the insidious thing about many, many ~isms: these implicit biases are often silent, pervasive, and natural. Someone who opens doors for women but not men may be seen as chivalrous, but it can equally be borne from a perspective of inequity. Countering these biases require active, persistent, intervention. There are a lot of people who proclaim they are above these implicit biases, but in reality they aren't. Self-proclamations of position are easy; actual behavior and speech require everyday, consistent effort.\n\nOn the other hand, all this attention on the presidential seat misses out on all of the good people from all walks of life do across all arms of government, federal and state. If the Democrats had a Congressional majority for example, the looming despair of a Trump presidency may be weakened. Even having the House would be a remarkable aid (something that seems highly unlikely to happen given how the votes are tallying up). \n\nOur ideal caricature of a presidential candidate may have qualities that would disadvantage them electorally on the national stage, but this same caricature would be great for Congress, for state governorship, for city councils, for education boards. Leveraging support in these spaces is just as important.", 'created': '2024-11-12 01:12:26', 'submission_id': '1goym9x'}
{'comment': 'Source article for excerpt:\n\nhttps://www.inquirer.com/politics/election/donald-trump-voters-pennsylvania-economy-fascism-20241111.html', 'created': '2024-11-11 18:43:10', 'submission_id': '1goy1rb'}
{'comment': 'Another example of the years of vilifying Democrats paying off. **Anything** is better than being a Democrat.', 'created': '2024-11-11 18:51:50', 'submission_id': '1goy1rb'}
{'comment': 'sigh.\n\nno matter what all the analysis yields, it seems to all be simply boiling down to blatant, extreme, pervasive, systemic ignorance and/or naivete\n\nUnbelievable... yet... not', 'created': '2024-11-11 18:49:33', 'submission_id': '1goy1rb'}
{'comment': 'Maybe this is the REAL reason how Nazis came to power. It was far more banal than we could ever imagine.', 'created': '2024-11-11 18:59:49', 'submission_id': '1goy1rb'}
{'comment': 'Side note to this: I highly encourage listening to This American Life podcast— they did a show on Hispanic voters for Trump and it was enlightening- it aired yesterday on NPR, don’t know when they update the pod, but A LOT of people are willing to overlook his awfulness.', 'created': '2024-11-11 19:08:20', 'submission_id': '1goy1rb'}
{'comment': 'this dude is a fucking dumbass', 'created': '2024-11-11 18:52:04', 'submission_id': '1goy1rb'}
{'comment': 'The antihero myth. America has been hypnotized by the idea that cruelty and dishonesty and hate and even ignorance demonstrate strength, and a "strong" antihero will take care of us. That\'s why all the atrocities that should cost him popularity never do. \n\nAt this point the only thing that will break the myth is bitter experience. And that bitter experience is coming fast; brace for impact.\n\nThen we see what happens when the populace sours on MAGA, but MAGA holds every lever of power and intends to keep it no matter what the public thinks. Then things get "interesting" in the Chinese-curse sense.', 'created': '2024-11-11 19:12:23', 'submission_id': '1goy1rb'}
{'comment': 'Just remember when everything goes to shit offer two words… Thoughts and prayers lmao!', 'created': '2024-11-11 19:07:31', 'submission_id': '1goy1rb'}
{'comment': 'My wW2 vet grandpa is rolling over in his grave 😭😭😭', 'created': '2024-11-11 19:18:29', 'submission_id': '1goy1rb'}
{'comment': 'America...in a nutshell.', 'created': '2024-11-11 18:56:51', 'submission_id': '1goy1rb'}
{'comment': 'Racism, sexism, misogyny, misinformation, fear mongering, and idiocy won this election.', 'created': '2024-11-11 19:45:36', 'submission_id': '1goy1rb'}
{'comment': 'He considers Trump to be like Hitler and that Trump will keep the country out of wars. Hitler literally threw the fucking match onto a fuel soaked pile to start WW2.', 'created': '2024-11-11 19:49:35', 'submission_id': '1goy1rb'}
{'comment': 'Again. Trump voters are 2 kinds of people: evil or dumb. This one is most definitely dumb.', 'created': '2024-11-11 19:15:12', 'submission_id': '1goy1rb'}
{'comment': 'Translation: I’m ok with people dying if it makes my life better.\n\nAlso, the Ukraine thing is a pipe dream. The exact opposite is going to happen to them.', 'created': '2024-11-11 19:22:12', 'submission_id': '1goy1rb'}
{'comment': 'I grew up in that POS area. It has ALWAYS been poverty stricken. Always.', 'created': '2024-11-11 19:21:24', 'submission_id': '1goy1rb'}
{'comment': 'Love how he’s the “no war” prez in this tiktok iq minds', 'created': '2024-11-11 19:39:52', 'submission_id': '1goy1rb'}
{'comment': "This is why the responses from people like Bernie Sanders, the Pod Save America crew and others blaming Harris, Biden and the Democratic Party are driving me crazy. Stop blaming them. The blame resides with the voters. THEY wanted this. THEY chose Trump. This is what they want. They know who Trump is. They've seen him for eight years. They know he's a fascist. A rapist. A felon.\n\nAnd they STILL chose him over good and decency and hope.\n\nThis is our country now. This is what the majority of the voters wanted. They wanted Hitler. There wasn't a damn thing Harris or Biden or the Democratic Party was going to do to stop it.", 'created': '2024-11-11 19:35:18', 'submission_id': '1goy1rb'}
{'comment': "You can't fix stupid. I guess there is more stupid than we thought.", 'created': '2024-11-11 19:22:03', 'submission_id': '1goy1rb'}
{'comment': 'We are done as a nation with that logic…😳', 'created': '2024-11-11 19:22:58', 'submission_id': '1goy1rb'}
{'comment': "I'm sure Trump will keep the US out of wars, just like Hitler kept Germany out of wars ...", 'created': '2024-11-11 20:34:28', 'submission_id': '1goy1rb'}
{'comment': 'Man, the greatest generation fucked up their kids apparently', 'created': '2024-11-11 18:54:34', 'submission_id': '1goy1rb'}
{'comment': "just remember that outside of the major cities in PA you see Confederate flags on their lifted trucks. When he says Trump is like Hitler, he doesn't really consider that to be a bad thing. THIS is why we lost.", 'created': '2024-11-11 20:49:40', 'submission_id': '1goy1rb'}
{'comment': 'Y’all need to abandon whatever house or building this dipshit made.', 'created': '2024-11-11 19:20:03', 'submission_id': '1goy1rb'}
{'comment': 'What I want all of us to know is that we should channel General Grant when the time comes: No negotiations, just unconditional surrender. We tried being nice, explaining they were being played, and what would happen…and they spat in our face time after time. I am no longer willing to be spat in the face', 'created': '2024-11-11 19:34:32', 'submission_id': '1goy1rb'}
{'comment': '\nTo quote Hannah Arendt, from Eichmann in Jerusalem\n\n”For when I speak of the banality of evil, I do so only on the strictly factual level, pointing to a phenomenon which stared one in the face at the trial. Eichmann was not Iago and not Macbeth, and nothing would have been farther from his mind than to determine with Richard III ‘to prove a villain.’ Except for an extraordinary diligence in looking out for his personal advancement, he had no motives at all… He merely, to put the matter colloquially, never realized what he was doing… It was sheer thoughtlessness—something by no means identical with stupidity—that predisposed him to become one of the greatest criminals of that period. And if this is ‘banal’ and even funny, if with the best will in the world one cannot extract any diabolical or demonic profundity from Eichmann, this is still far from calling it commonplace… That such remoteness from reality and such thoughtlessness can wreak more havoc than all the evil instincts taken together which, perhaps, are inherent in man”\n\nThere is no great mystery or conspiracy theory behind this victory. I wish democrats, specifically white ones can come to accept that. \n\nThis is what the people want. The people who don’t want it are not invested in the system at all.', 'created': '2024-11-11 20:16:11', 'submission_id': '1goy1rb'}
{'comment': 'I’d bet my entire pension on the fact that that man only got his info from Facebook, and Fox News. \n\n“Oh Trump won’t do **allllllll** that crazy stuff he’s saying, he’s just a joker that’s all! You can’t take him at his word, it’ll be fine” \n\nMan, some of these people are about to get a killer dose of buyers remorse.', 'created': '2024-11-11 20:16:15', 'submission_id': '1goy1rb'}
{'comment': 'And everyone is saying democrats are out of touch with they. No. They’re fucking insane.', 'created': '2024-11-11 19:59:33', 'submission_id': '1goy1rb'}
{'comment': '“Cheap Groceries/Dead Bodies 2024!”', 'created': '2024-11-11 21:06:11', 'submission_id': '1goy1rb'}
{'comment': 'I don’t understand. \n\nI considered him like Hitler as well. That’s a dealbreaker. That’s a nonstarter. That’s why I voted for Harris.', 'created': '2024-11-12 02:13:58', 'submission_id': '1goy1rb'}
{'comment': 'I remember the first Trump supporter I ever met. It was a New Years Eve party in 2015. I remember her because she was the first person I ever heard say "How come nobody ever talks about all the GOOD things Hitler did?"', 'created': '2024-11-12 03:20:27', 'submission_id': '1goy1rb'}
{'comment': 'That’s… an interesting thing to admit out loud.', 'created': '2024-11-12 03:28:29', 'submission_id': '1goy1rb'}
{'comment': 'From an analysis perspective, it would seem like “Hitler is bad”, would be a pretty safe assumption to go on. But apparently not!', 'created': '2024-11-11 21:31:52', 'submission_id': '1goy1rb'}
{'comment': 'Those who can’t read history (because they can’t read) doom us all to repeat it. Or something.', 'created': '2024-11-11 22:29:35', 'submission_id': '1goy1rb'}
{'comment': 'This man admitted voting for America’s Hitler.\n\nAnd justified it.\n\nThis is where these people are folks.', 'created': '2024-11-11 22:37:45', 'submission_id': '1goy1rb'}
{'comment': '………….. I don’t even know what to say to that. What do you MEAN you consider him like hitler but think he’ll keep us out of wars?', 'created': '2024-11-12 02:29:42', 'submission_id': '1goy1rb'}
{'comment': 'They called his bluff and will suffer the consequences', 'created': '2024-11-11 21:50:23', 'submission_id': '1goy1rb'}
{'comment': "WTF??!? It's because they literally don't think he will do what he says. \n\nAt what point do you get tired of so done just running their damn mouth? It's usually when they start making good on their promises when people can't wake up fast enough. \n\nIf he does a lot of this shit he says he's going to do, I'll be blaming his voters ASAP and I hope they suffer as well.", 'created': '2024-11-12 00:59:21', 'submission_id': '1goy1rb'}
{'comment': 'See, I thought Trumpers like my MIL were just ignorant. The brain rot is real. She’s a legit mouth breather and I can’t say I’m surprised. She insists Project 25 will never happen.', 'created': '2024-11-12 01:11:22', 'submission_id': '1goy1rb'}
{'comment': 'This man knows nothing of Hitler or the atrocities he committed. I’m fairly certain that much of America doesn’t either. Even on the left. Trump is not yet as bad as Hitler, even though he does seem aspirational in some aspects of his personality. But for one he’s not smart enough to be Hitler, and thank God for that. The main reason we survived last time was because he was dumb enough to not accomplish much, but now he has this entire machination behind him with Project 2025 and that is what scares me.', 'created': '2024-11-12 01:39:23', 'submission_id': '1goy1rb'}
{'comment': 'Um…voting for someone who has already been president is NOT a “change in leadership”.', 'created': '2024-11-12 03:13:52', 'submission_id': '1goy1rb'}
{'comment': 'The willingness of the modern middle-class worker to vote against their own interests is undefeated.', 'created': '2024-11-12 03:24:35', 'submission_id': '1goy1rb'}
{'comment': "And he's not alone...", 'created': '2024-11-11 19:39:21', 'submission_id': '1goy1rb'}
{'comment': "Meanwhile, about an hour outside of Scranton, there are always jobs available -- workers just don't show up.", 'created': '2024-11-11 19:43:07', 'submission_id': '1goy1rb'}
{'comment': 'Brain worms', 'created': '2024-11-11 19:50:12', 'submission_id': '1goy1rb'}
{'comment': "Holy fucking shit. I live in Washington and I'm ashamed I share the same last name as this guy (had a heart-jump when I read this). Makes me feel disgusting like I have to change it. UGH.", 'created': '2024-11-11 20:26:26', 'submission_id': '1goy1rb'}
{'comment': 'Ok, I’m not getting the “Trump is a peacemaker” line of thinking. How did that become the narrative?', 'created': '2024-11-11 21:46:53', 'submission_id': '1goy1rb'}
{'comment': 'What do you call people who voted for Hitler?', 'created': '2024-11-11 22:52:17', 'submission_id': '1goy1rb'}
{'comment': 'These nutjobs are in for a rude awaking. When Trump decimates the middle and lower middle class these people will be like. It was Clinton and Obamas fault.', 'created': '2024-11-11 22:57:02', 'submission_id': '1goy1rb'}
{'comment': 'Not sure I’ve ever seen a bigger indictment of the American education system. I fucking hate these people. They deserve what’s coming.', 'created': '2024-11-11 23:35:53', 'submission_id': '1goy1rb'}
{'comment': 'As I told my wife who voted for Trump for the same reason - “You don’t get to cherry pick the parts of his platform that you like; it’s a package deal.”', 'created': '2024-11-12 00:12:17', 'submission_id': '1goy1rb'}
{'comment': 'And THAT is how democracy dies…', 'created': '2024-11-12 00:44:43', 'submission_id': '1goy1rb'}
{'comment': 'Well, in Drumph’s defense, he hasn’t killed 6 million people. Yet. He had less than 5m to go.', 'created': '2024-11-12 00:46:48', 'submission_id': '1goy1rb'}
{'comment': 'Anthony Cram, 66, said he voted for Trump because the “world is on fire.”\n\nHis wife, Shannon, added: “And drowning, too.”\n\n\nYeah drill baby drill sure gonna help that get better, uh huh.', 'created': '2024-11-12 01:37:34', 'submission_id': '1goy1rb'}
{'comment': "For what it's worth, I'm not concerned that Trump will be like H\\*tler. I'm FAR more concerned that he will be like Reagan. i.e. He will enact popular, but ultimately HORRIBLE policies. \n\nI, for one, can't believe the respect and reverence so many people, including anti-Trump Republicans, have for Reagan. The United States will NEVER recover from his presidency.", 'created': '2024-11-12 02:09:19', 'submission_id': '1goy1rb'}
{'comment': 'Ironic especially when his supporters get angry when you compare him to Hitler', 'created': '2024-11-12 03:08:22', 'submission_id': '1goy1rb'}
{'comment': 'You cannot persuade those type of people to vote differently.', 'created': '2024-11-12 04:26:24', 'submission_id': '1goy1rb'}
{'comment': 'It is a basket of deplorables honestly.', 'created': '2024-11-12 04:29:10', 'submission_id': '1goy1rb'}
{'comment': 'I\'m not being hyperbolic here: this is literally how Hitler came to power. \n\nPeople who were like "yeah all the race science stuff is weird and I don\'t care for it, but he is good for Germany!" \n\nThis is not like fascism this is what fascism is. This is how it worked in the past too.', 'created': '2024-11-12 05:12:30', 'submission_id': '1goy1rb'}
{'comment': 'Well ya know, Hitler never did anything bad *to me*.', 'created': '2024-11-12 05:14:24', 'submission_id': '1goy1rb'}
{'comment': '"Well, even if he puts people on the trains, he isn\'t going to put *me* on the train, so I don\'t care"', 'created': '2024-11-12 07:18:52', 'submission_id': '1goy1rb'}
{'comment': 'This is the most absurd reasoning. Did Hitler keep Germany out of wars? His logic is completely invalid. 🤦', 'created': '2024-11-12 20:28:31', 'submission_id': '1goy1rb'}
{'comment': 'https://www.youtube.com/watch?v=7n7SoOTIlZY\n\nthis guy hit the nail on the head.', 'created': '2024-11-11 19:17:43', 'submission_id': '1goy1rb'}
{'comment': 'Sigh. The mask if off every day more and more. They know guys. They just don’t care, and we need to come to terms with that.', 'created': '2024-11-11 20:19:57', 'submission_id': '1goy1rb'}
{'comment': 'He’ll be tarrified soon', 'created': '2024-11-11 20:23:14', 'submission_id': '1goy1rb'}
{'comment': 'This is just a complete lack of education.', 'created': '2024-11-11 21:27:44', 'submission_id': '1goy1rb'}
{'comment': "This makes sense and exactly what I thought when I saw he had won. Well that and he cheated. I will always believe that he cheated. No way he won all those swing states. The Republicans were screwing with the polls before the election and Trump's secret and how he new just way too much in advance that he was going to win. Also I believe I have every right to feel this way.\n\nHe felt cheated from 202 so he cheated this time. I honestly believe that's how Elon really bought a position for himself.", 'created': '2024-11-11 22:07:50', 'submission_id': '1goy1rb'}
{'comment': 'Idiots', 'created': '2024-11-11 22:19:41', 'submission_id': '1goy1rb'}
{'comment': 'So much stupidity affecting all of us.', 'created': '2024-11-11 22:26:13', 'submission_id': '1goy1rb'}
{'comment': 'Ah, the sought-after and captured “poorly educated“ voter. Dismaying.', 'created': '2024-11-11 23:09:57', 'submission_id': '1goy1rb'}
{'comment': 'We need to start fighting a battle for hearts because the mind battle isn’t working. We need to make these people feel seen. Not be seen - although let’s do that too - but feel seen.', 'created': '2024-11-11 23:38:23', 'submission_id': '1goy1rb'}
{'comment': 'May a leopard eat your face, sir.', 'created': '2024-11-12 00:12:37', 'submission_id': '1goy1rb'}
{'comment': 'MAGA gets what they deserve', 'created': '2024-11-12 00:47:03', 'submission_id': '1goy1rb'}
{'comment': 'All these people in a nutshell\n\n', 'created': '2024-11-12 05:25:12', 'submission_id': '1goy1rb'}
{'comment': 'Idiot', 'created': '2024-11-12 06:01:03', 'submission_id': '1goy1rb'}
{'comment': 'Jesus wept.', 'created': '2024-11-12 06:15:52', 'submission_id': '1goy1rb'}
{'comment': 'Yep, I was talking to someone at a wedding this past June (?). He said he “knew that trump was insane and evil, but was still going to vote for him”…', 'created': '2024-11-12 14:18:34', 'submission_id': '1goy1rb'}
{'comment': "as much as this brews up contempt to latino voters, dont let it justify racist ideas about them being stupid. it's a dangerous slope of righteousness. please", 'created': '2024-11-11 19:03:10', 'submission_id': '1goy1rb'}
{'comment': "*sighs in Obama's economy*", 'created': '2024-11-11 19:17:24', 'submission_id': '1goy1rb'}
{'comment': 'why do these people use their real names lol', 'created': '2024-11-11 20:21:10', 'submission_id': '1goy1rb'}
{'comment': 'That’s just stooopid.', 'created': '2024-11-11 20:24:13', 'submission_id': '1goy1rb'}
{'comment': 'We need a database of shame lol.', 'created': '2024-11-11 21:20:36', 'submission_id': '1goy1rb'}
{'comment': 'Bless his heart.', 'created': '2024-11-11 21:34:39', 'submission_id': '1goy1rb'}
{'comment': 'Guys all you gotta do is economic populism to win these voters back. Yessir, not complex at all. Not like there’s tons of misinformation with these voters. It’s the economic anxiety….', 'created': '2024-11-12 00:27:40', 'submission_id': '1goy1rb'}
{'comment': 'Wtf', 'created': '2024-11-12 00:31:05', 'submission_id': '1goy1rb'}
{'comment': 'I need to live in a better country than the US: I think I’ll move to Haiti.', 'created': '2024-11-12 12:09:28', 'submission_id': '1goy1rb'}
{'comment': 'WHAT!?!?!', 'created': '2024-11-12 14:16:22', 'submission_id': '1goy1rb'}
{'comment': 'Until Japan attacked America, im pretty sure most of the American patriarchy wanted Hitler to win the war.', 'created': '2024-11-12 14:26:54', 'submission_id': '1goy1rb'}
{'comment': 'And this is precisely why dump is doing away with the education department! To keep them stupid and voting for dumbasses like him!', 'created': '2024-11-13 00:12:22', 'submission_id': '1goy1rb'}
{'comment': 'I-I, cannot say anything… Why has my country turned into this? Why, have they let a orange Füher into office? Why do they keep ignoring facts?? Why america why', 'created': '2024-11-13 01:52:13', 'submission_id': '1goy1rb'}
{'comment': "It's hard to believe that they have elected a Russian Terrorist Asset.", 'created': '2024-11-13 07:03:33', 'submission_id': '1goy1rb'}
{'comment': '40 years of Reagan/Clinton neoliberalism leading to jobs going overseas and the rich getting richer. The first president to not embrace neoliberalism (Biden) gets the blame for those 40 years and we turn the government back to neoliberals who are actually authoritarians.', 'created': '2024-11-11 19:50:18', 'submission_id': '1goy1rb'}
{'comment': '"Trumps a facist " didn\'t work cause the country is full of nazis', 'created': '2024-11-11 23:27:59', 'submission_id': '1goy1rb'}
{'comment': "When there's no food in the pantry, people will resort to extreme measures. You can have a good economy and still have people who are struggling, because economics isn't a measure of how many people have been left behind. Our country is richer than it ever has been, yet here we are.", 'created': '2024-11-11 21:50:22', 'submission_id': '1goy1rb'}
{'comment': None, 'created': '2024-11-11 19:41:10', 'submission_id': '1goy1rb'}
{'comment': 'Anything besides voting for a female POC. Now we will all suffer the consequences and the repercussions will last generations.', 'created': '2024-11-12 03:50:16', 'submission_id': '1goy1rb'}
{'comment': 'I wonder what facts he made his decision on. A “MAYBE”? America has NEVER been dictatorial. Why change our style of government?', 'created': '2024-11-13 00:05:50', 'submission_id': '1goy1rb'}
{'comment': '[removed]', 'created': '2024-11-11 22:47:17', 'submission_id': '1goy1rb'}
{'comment': 'Hence the "Better Russian Than Democrat" shirts being a big seller.', 'created': '2024-11-11 19:22:49', 'submission_id': '1goy1rb'}
{'comment': 'It’s true. You see a white man in a pickup truck and you *know* he can never vote for a Democrat no matter how bad the GOP is acting. It’s just culturally unacceptable. Now Latinos are moving the same way', 'created': '2024-11-11 19:35:25', 'submission_id': '1goy1rb'}
{'comment': 'Propaganda+ Lies is the answer. The Wa Po did a blind test showing voters policies without identifying whether they were from Harris or Trump. Virtually everyone preferred the Harris policies.', 'created': '2024-11-11 20:32:49', 'submission_id': '1goy1rb'}
{'comment': 'Pretty much from what I’ve seen everyone who voted for trump basically called his bluff…and they are going to pay for it.', 'created': '2024-11-11 21:49:57', 'submission_id': '1goy1rb'}
{'comment': 'TBH, its brainwashing. The Republicans have been hard at work dumbing down the American people for decades, and this is the result. Education is they key and apparently we have lost that key and seem unlikely to find it again anytime soon.', 'created': '2024-11-12 19:44:53', 'submission_id': '1goy1rb'}
{'comment': 'Germans in 1930: well this guy reminds me of Ivan the Terrible, but the price of eggs is out of control!', 'created': '2024-11-11 19:33:03', 'submission_id': '1goy1rb'}
{'comment': "lol ... sooooo many things are, sadly :-/\n\nedit: in recovery they taught me that I have to do the Work when I \\*don't\\* have to do the Work... if we wait until we have to, it's only gonna be damage control IF we're lucky, 'cause we ain't gonna be able to do anything else", 'created': '2024-11-11 19:01:34', 'submission_id': '1goy1rb'}
{'comment': 'this comes down to the whole "Make the trains run on time" saying that dates back to the Nazi\'s, IIRC.', 'created': '2024-11-11 22:47:00', 'submission_id': '1goy1rb'}
{'comment': 'C’mon you know it was.', 'created': '2024-11-11 20:53:03', 'submission_id': '1goy1rb'}
{'comment': 'Why though? It makes no sense.', 'created': '2024-11-11 19:12:39', 'submission_id': '1goy1rb'}
{'comment': 'Aren’t all republicans?', 'created': '2024-11-12 03:16:59', 'submission_id': '1goy1rb'}
{'comment': "They'll just find a way to blame democrats", 'created': '2024-11-11 19:30:10', 'submission_id': '1goy1rb'}
{'comment': '> Racism, sexism, misogyny, misinformation, fear mongering, and idiocy won this election.\n\nAnd the takeaway from a lot twits is Democrats "wokeness" was the issue. \n\nAny being honest can admit certain aspects of the so-called "woke agenda" are absurd and can be seen as silly. Terms like "Latinx" offends Latinos and I cringe every time I hear "pregnant person". While it takes a bonafide idiot like Trump to say (and his supporters to think) you can send your kid to school in the morning and he comes back home a post-op transgender girl, but there are people who do believe, sans the operation, this is possible. Months ago, person who claimed to be a teacher wrote that in this very sub. \n\nI was convinced months ago this country would not elect a woman, much less a black woman, but whatever chance she had, the transgender prisoners ad killed it.', 'created': '2024-11-11 21:57:57', 'submission_id': '1goy1rb'}
{'comment': 'The fact that you have either with a large number is scary', 'created': '2024-11-11 21:14:22', 'submission_id': '1goy1rb'}
{'comment': 'An empty car park is peaceful.', 'created': '2024-11-12 09:41:46', 'submission_id': '1goy1rb'}
{'comment': 'The options are to analyze what went wrong and try to improve, so you do better the next election, OR\n\nAct like nothing went wrong and hope that if you do the exact same thing somehow you get a different response.\n\nI know what option I prefer', 'created': '2024-11-11 22:54:14', 'submission_id': '1goy1rb'}
{'comment': None, 'created': '2024-11-11 19:56:22', 'submission_id': '1goy1rb'}
{'comment': 'Dudes only 45. He was raised by Boomers, most likely. Hes young gen x.\n\nEdit to say: he could even technically be a millennial.', 'created': '2024-11-11 19:22:50', 'submission_id': '1goy1rb'}
{'comment': "Doesn't seem so great, in retrospect.", 'created': '2024-11-12 03:01:22', 'submission_id': '1goy1rb'}
{'comment': "> There is no great mystery or conspiracy theory behind this victory. I wish democrats, specifically white ones can come to accept that.\n\nThey can't. There's almost total denial that racism and sexism led to this result. That's the reason I'm done. If you come to wrong diagnosis, you don't kill the disease, you kill the patient.", 'created': '2024-11-11 21:43:25', 'submission_id': '1goy1rb'}
{'comment': 'Did she ever list “the good things” he has done?', 'created': '2024-11-12 05:24:19', 'submission_id': '1goy1rb'}
{'comment': 'So why’d they vote for him?', 'created': '2024-11-12 01:56:06', 'submission_id': '1goy1rb'}
{'comment': 'Ooh, I know I know!', 'created': '2024-11-12 00:47:59', 'submission_id': '1goy1rb'}
{'comment': 'Oh yes. The propaganda will NEVER STOP.', 'created': '2024-11-13 00:46:36', 'submission_id': '1goy1rb'}
{'comment': 'And it must be slowly seeded, watered and ideals gradually talked about and normalized so they are accepted once the masses are brainwashed enough through all that propaganda.', 'created': '2024-11-13 00:50:42', 'submission_id': '1goy1rb'}
{'comment': "And he won all swing states with like 1% or so more than Kamala....Hmm....It's like their moto this time was 'cheat but don't overdo it'.", 'created': '2024-11-11 22:22:48', 'submission_id': '1goy1rb'}
{'comment': 'Sad part about this is…I have no economic woes, am retired live in coastal CA, have more than 1 home, and I vote for the common good and the planet. I vote with my heart because I want more young people to have the same opportunities that I’ve had in my long life. I vote for what is best for the majority, because I really don’t need much beyond Medicare (because I’m old). How do you help people who seemingly vote against their own interests, when they have huge needs? I can vote against my pocketbook, because I don’t have huge needs. I do know people have to stop the hate, rage and vindictiveness, which is really hard when the next leader has the temperament of a sleep deprived toddler on steroids and red dye #5-', 'created': '2024-11-12 02:11:05', 'submission_id': '1goy1rb'}
{'comment': "also remember that many hispanic Americans are now 2nd and 3rd generation who barely speak Spanish & look white-passing. They could be mistaken as Italian or Albanian or Lebanese. We can't assume that they'll all vote with their heritage just because their grandparents came over the border 50 yrs ago.", 'created': '2024-11-11 21:13:07', 'submission_id': '1goy1rb'}
{'comment': 'But winning elections by lying doesn’t solve any of the problems. MMW, if Trump doesn’t fix all that ails the planet, including providing a peaceful, successful and forever solution to the ME BS, these same people will vote blue in a landslide in 2026- it’s a see saw back and forth with no real movement going forward. And all the people who are hurting right now are the targets- they have no resources and can’t make alternative plans, get better jobs, relocate, go back to Harvard…this group gets targeted, lied to and manipulated for their votes, every 4 years. Politicians are bullies, and the same people get kicked in the ass over and over.', 'created': '2024-11-12 02:01:33', 'submission_id': '1goy1rb'}
{'comment': None, 'created': '2024-11-11 20:08:46', 'submission_id': '1goy1rb'}
{'comment': "> It's time everybody joins the Republican Party and takes them down from the inside.\n\nThis was the thought of disaffected Republican who eventually went for Harris.", 'created': '2024-11-11 21:59:51', 'submission_id': '1goy1rb'}
{'comment': 'I seriously think Democrat is a damaged brand at this point for vast swathes of the country. The party should be supporting third party candidates in red and pink states, who can better tailor there message to the population without risk of getting attached to to policies that are really only attractive in Blue states. It ALMOST worked in Nebraska this time around.', 'created': '2024-11-11 23:01:18', 'submission_id': '1goy1rb'}
{'comment': 'So a sexual abuser/convicted felon is better than a woman? Got it.', 'created': '2024-11-12 00:50:52', 'submission_id': '1goy1rb'}
{'comment': None, 'created': '2024-11-11 23:34:31', 'submission_id': '1goy1rb'}
{'comment': 'i mean i hate Reagan but even he would know that this should be considered treason.', 'created': '2024-11-11 20:22:24', 'submission_id': '1goy1rb'}
{'comment': 'White dude in a pickup here, voted for Harris.', 'created': '2024-11-12 00:19:12', 'submission_id': '1goy1rb'}
{'comment': 'Latinos would have voted for a man.', 'created': '2024-11-11 19:44:50', 'submission_id': '1goy1rb'}
{'comment': "Hey let's relax I drive a full size Chevy truck and have voted blue every election since I was old enough to vote. Don't judge a book by the vehicle it decides to own, this is the kind of stuff that divides people...", 'created': '2024-11-13 00:45:29', 'submission_id': '1goy1rb'}
{'comment': 'Yeah. You really cannot make this shit up: union members prefer someone who would like to cancel overtime pay and fire people for striking.', 'created': '2024-11-11 20:54:31', 'submission_id': '1goy1rb'}
{'comment': 'That reminds me of the videos from Jordan Klepper where he asks people what they think of this horrible thing Biden or Harris said or did, and they\'re appalled and shocked and say they have no business being president, and he says, "Oops, I was wrong, that was Trump who did that thing" and they immediately justify why he did it, and say it\'s okay.', 'created': '2024-11-12 03:54:15', 'submission_id': '1goy1rb'}
{'comment': "I agree 100% that this is the mechanism, and the rise of right wing media is responsible, but under that, if folks weren't ignorant and/or naive it wouldn't have taken the hold it has... we must stop passing the buck from personal responsibility/accountability because that is at the root of everything that's fucked up", 'created': '2024-11-12 00:28:48', 'submission_id': '1goy1rb'}
{'comment': 'Harris should have lied and offererd everyone huge tax breaks', 'created': '2024-11-12 01:06:21', 'submission_id': '1goy1rb'}
{'comment': "Maybe that's how voting should be done in the future. Just list all the policies, vote for the ones you like, blind, then see who won after....", 'created': '2024-11-12 11:13:32', 'submission_id': '1goy1rb'}
{'comment': 'This time around, no one will stop their massive grift. And I’m not even sure I care anymore.', 'created': '2024-11-12 00:57:28', 'submission_id': '1goy1rb'}
{'comment': "That was the case the first time around. Fool me once, shame on you. Fool me...\xa0 you can't get fooled again...", 'created': '2024-11-12 01:08:39', 'submission_id': '1goy1rb'}
{'comment': 'Yup … Trump doesn’t “bluff” .. he isn’t smart enough or wired to evaluate stakes over time.\n\nThat’s why so many of his business ventures flame out & crash - he either wastes capital or gets taken down by smarter operators (pays too much).\n\nAmericans have played the greatest all-in FAFO hand in (recent) history !', 'created': '2024-11-12 00:08:20', 'submission_id': '1goy1rb'}
{'comment': 'Literally not far off at all. Out of control inflation *was* the reason for hitler gaining power and german government being so hated', 'created': '2024-11-11 20:15:07', 'submission_id': '1goy1rb'}
{'comment': 'That’s literally what happened. \n\nHyperinflation in the 1920s followed by high unemployment in the 1930s.\n\nMy theory is that the German elites wanted a restoration of the status and prestige that they lost after the Great War. There were about a dozen potential dictators in the German political system and the elites simply latched on to the one that came out on top. \n\nHell hath no fury like humiliated elites.', 'created': '2024-11-11 22:06:03', 'submission_id': '1goy1rb'}
{'comment': '\nBird flu.\nEggs at Aldi on Sat were $3.00, but I can buy local organic for that.\n\nGas $2.59-$2.82', 'created': '2024-11-11 20:58:06', 'submission_id': '1goy1rb'}
{'comment': 'I thought that was Mussolini?\n\nHiter contemporary.', 'created': '2024-11-12 09:40:14', 'submission_id': '1goy1rb'}
{'comment': "Just my own theory but arguments about democracy or ethics remain conceptual and abstract to most voters. We know Trump voters are relatively low-information; they don't think about politics in its historical or international context. Focusing on these arguments was a mistake for Dems because it only convinces more educated voters who were going to vote for Kamala anyway.\n\nFor most voters, personal grievances are and always will be prioritized over abstract considerations. Trump legitimizes grievance by telling his voters their current situations are indeed terrible. He then politicizes it by blaming elites and outsiders (immigrants) for problems, real and imagined. \n\nIt's not surprising concerns about business fraud or handling of classified documents was met with a shrug of the shoulders by tens of millions. And dismissing accusations of sexual predation carried out by a powerful man is just what humans have always done.", 'created': '2024-11-11 20:00:57', 'submission_id': '1goy1rb'}
{'comment': 'It makes no sense if you keep assuming that people capable of supporting Trump are inherently decent.', 'created': '2024-11-11 22:44:37', 'submission_id': '1goy1rb'}
{'comment': "It doesn't make sense if you don't listen to the voters... And since the Dems keep doing poorly in elections I would say it's a problem with a lot of people. Listen to the voters. \n\nSometimes it's a real policy issue, sometimes it's just PR. \n\nI voted for the Dems but I've griped for years and complain in surveys. I donated a lot to elections this year...And complained in surveys \n\nI'm pretty sure that Joe would have lost to Trump if Trump had not bungled COVID.", 'created': '2024-11-11 19:27:12', 'submission_id': '1goy1rb'}
{'comment': 'they blame inequality on the dems because we want them to share the crumbs we are hiven', 'created': '2024-11-11 20:21:40', 'submission_id': '1goy1rb'}
{'comment': 'You should listen to the podcast.', 'created': '2024-11-11 19:14:02', 'submission_id': '1goy1rb'}
{'comment': 'This. My state has been ruby red forever, and yet people here blame democrats for our shitty roads, terrible public schools, etc. I’m like… y’all realize this state is controlled by Republicans, right??', 'created': '2024-11-11 21:31:21', 'submission_id': '1goy1rb'}
{'comment': "His cultists will, sure. But he doesn't have enough cultists, he needs support from the inattentive middle, too.", 'created': '2024-11-11 21:05:22', 'submission_id': '1goy1rb'}
{'comment': "It's cute how you think there are going to be more elections.", 'created': '2024-11-12 16:14:14', 'submission_id': '1goy1rb'}
{'comment': "I live in a rural part of a swing state. The county I'm in voted overwhemingly for Trump. It is comprised by rednecks and racists. This is pure Trump people.\n\nSo yeah, these people are absolutely the type of people who love what Trump is all about. The ads playing here were nothing short of full-blown racist BS because that's what sells where I live and the voters ate it all up with a gold-plated Trump spoon.\n\nWe've had eight years of seeing who Trump is. He's a racist rapist felon who tried to overthrow the government and stole classified documents. I'm not gonna sit here and say Democrats are perfect because Lord knows they're not. But Harris ran a fantastic campaign in my opinion, especially given the constraints she had to deal with, and she offered legitimate policies and hope for the middle and lower classes but all of them basically told her to F off because they wanted the hate. They wanted the racism. They wanted to watch women and children die and put minorities in camps and a lot worse because that's what's coming and everyone with functioning intelligence knows it. \n\nI know it because I see it every damn day where I live right here in rural America. And I sure as hell saw it on Election Day.", 'created': '2024-11-11 20:02:39', 'submission_id': '1goy1rb'}
{'comment': 'The biggest exporter of American jobs over his career is a guy named Mitt Romney. All vultures capitalists do is take America jobs, see the high paying ones to China and file the rest in bankruptcy.\n\nAny idea what party that guy is? Cause someone concerned about American job loss isn’t credible if he isn’t voting against the party of vulture capitalists.', 'created': '2024-11-11 22:51:40', 'submission_id': '1goy1rb'}
{'comment': 'He\'s part of the \'77-83 "Xennial" cohort...I am in that category as well. I don\'t think this attitude is pervasive within the majority of that era, but then again, I thought Kamala was going to win, so what do I really know?', 'created': '2024-11-11 19:37:44', 'submission_id': '1goy1rb'}
{'comment': "As near as I could tell, the holocaust, but just until right before the actual death camps started killing everyone. She seemed to see nothing wrong with taking everybody he didn't like and throwing them in camps. But even she admitted that murdering them wasn't optimal.", 'created': '2024-11-12 05:29:00', 'submission_id': '1goy1rb'}
{'comment': 'Ignorance.', 'created': '2024-11-12 02:00:14', 'submission_id': '1goy1rb'}
{'comment': "That's what I thought too. It was just enough.", 'created': '2024-11-11 22:29:28', 'submission_id': '1goy1rb'}
{'comment': 'a changing national identity due to biological & cultural changes. makes sense', 'created': '2024-11-11 22:25:45', 'submission_id': '1goy1rb'}
{'comment': "Yes, I am. If you define neo-liberalism as a belief that free market capitalism can solve most of our problems, then that's exactly what Reagan did.", 'created': '2024-11-11 21:32:21', 'submission_id': '1goy1rb'}
{'comment': '> Hold on. Are you calling Ronald Reagan a neoliberal? \n\n> “neoliberalism” is now generally thought to label the philosophical view that a society’s political and economic institutions should be robustly liberal and capitalist, but **supplemented by a constitutionally limited democracy and a modest welfare state** \n\nhttps://plato.stanford.edu/entries/neoliberalism/', 'created': '2024-11-11 21:47:56', 'submission_id': '1goy1rb'}
{'comment': 'Well I didn’t say that and I think I clarified that’s not what I was personally saying. But to a lot of people they either don’t believe that, or it doesn’t matter. I do believe the media and government has over persecuted Trump to the point that when he’s persecuted for legitimate things that people just don’t buy it. But that’s beside the point. \n\nFact is, evidenced by the election, Kamala didn’t have enough to offer to convince enough of the American people. You assume that people are as dialed into politics as you or I are. I’m assuming you are a little more dialed in than average if you are on Reddit. Most people just go to work every day and get their news from friends and family. Trumps rhetoric is nationalist. In my opinion, nationalist agenda aligns with American culture in general.', 'created': '2024-11-12 03:41:57', 'submission_id': '1goy1rb'}
{'comment': 'Bless yours', 'created': '2024-11-11 23:39:16', 'submission_id': '1goy1rb'}
{'comment': 'Let’s not forget that Reagan served in the military and was the 33rd governor of California.', 'created': '2024-11-12 01:34:17', 'submission_id': '1goy1rb'}
{'comment': 'Reagan: Mr. Gorbachev, tear down this wall.\n\nTrump: Mr. Putin, Ukraine is yours.', 'created': '2024-11-12 23:48:21', 'submission_id': '1goy1rb'}
{'comment': 'This is what Russian disinformation bots do. They spread bullshit that adds to the divisiveness, but they do it surgically to sew chaos undercover like rats. 🐀 Call them out on their bullshit every time. Spread the word.', 'created': '2024-11-12 05:24:50', 'submission_id': '1goy1rb'}
{'comment': 'But was it a Toyota? Silverado is hard mode.', 'created': '2024-11-12 08:27:09', 'submission_id': '1goy1rb'}
{'comment': "They should've said lifted pickup truck with Trump flags flying...I'm still seeing that down here in the south.", 'created': '2024-11-13 02:42:43', 'submission_id': '1goy1rb'}
{'comment': 'Unbelievable how people can be so ignorant. Latinos will get NO help\nFrom Trump and the Republicans.🤦🏼\u200d♀️🙄', 'created': '2024-11-11 22:59:02', 'submission_id': '1goy1rb'}
{'comment': "The democrats have to give people someone to vote FOR. We now need our democratic leaders to protect our future elections, so we don't go full banana republic on speed run.", 'created': '2024-11-11 20:36:20', 'submission_id': '1goy1rb'}
{'comment': 'These people will reap the rewards of their choice. I just wish I knew a person that voted for him and was in a union. I would watch, wait and then laugh.', 'created': '2024-11-12 04:00:37', 'submission_id': '1goy1rb'}
{'comment': "Ohhhh but Trump said he wouldn't tax OT pay. At least that is what I heard from a supporter who gets a lot of OT pay.", 'created': '2024-11-12 18:38:37', 'submission_id': '1goy1rb'}
{'comment': 'Don’t forget the religious aspect of politics. It’s been used for centuries. Those who don’t read about any kind of history are so vulnerable to political manipulation. America, here we are.', 'created': '2024-11-13 00:19:10', 'submission_id': '1goy1rb'}
{'comment': 'To be clear, it isn’t just cable rw media anymore. Sinclair broadcasting has taken over local news. And the world that gen z bros inhabit of rw podcasters and discord servers is unreachable.', 'created': '2024-11-12 04:29:51', 'submission_id': '1goy1rb'}
{'comment': "MAGA wouldn't have known about anything Harris said; her policies were not reported on Fox and other RW networks and if MAGAts don't hear it there they don't believe it", 'created': '2024-11-12 14:46:20', 'submission_id': '1goy1rb'}
{'comment': 'So they made soldiers out the unemployed people.', 'created': '2024-11-13 00:27:50', 'submission_id': '1goy1rb'}
{'comment': 'Last eggs I bought at Walmart this week were $3.22 for 18 (or $2.15/dz).', 'created': '2024-11-11 21:39:08', 'submission_id': '1goy1rb'}
{'comment': 'This. At a certain point, hopefully soon, decent people need to realize MAGA supporters are the embodiment of all the evil they claim the people they oppress are guilty of. MAGA is the enemy within. MAGA is the rapists. MAGA is the pedophiles. MAGA is the criminals. MAGA is what makes this country not great. MAGA is the enemy and needs to be treated as such.', 'created': '2024-11-12 03:11:12', 'submission_id': '1goy1rb'}
{'comment': 'They see equal rights as a pie, and if someone else gets an equal slice, then they are losing rights. So narrow minded.', 'created': '2024-11-11 21:48:46', 'submission_id': '1goy1rb'}
{'comment': 'Does it make sense?', 'created': '2024-11-11 19:14:40', 'submission_id': '1goy1rb'}
{'comment': None, 'created': '2024-11-11 20:08:15', 'submission_id': '1goy1rb'}
{'comment': 'Yeah me too. I’m ‘83. Anyone I know(personally) in my group was staunchly against Trump.', 'created': '2024-11-11 19:39:01', 'submission_id': '1goy1rb'}
{'comment': None, 'created': '2024-11-11 20:40:07', 'submission_id': '1goy1rb'}
{'comment': 'I knew she was going to lose. The Democrats should have learned their lesson in 2016. America is too misogynistic and racist to elect a Black woman.', 'created': '2024-11-11 19:46:32', 'submission_id': '1goy1rb'}
{'comment': 'These people have no concept of the realities of war, hunger, few civil rights, the need to be ALWAYS looking over your shoulder for snitches. They’ve certainly contributed to the BIG lesson America is going to learn. It’s going to take forever to climb out of this mess.', 'created': '2024-11-13 00:42:04', 'submission_id': '1goy1rb'}
{'comment': 'I struggle to think what TRUMP offered.', 'created': '2024-11-13 01:15:17', 'submission_id': '1goy1rb'}
{'comment': 'Remember why Reagan did gun control when he was?', 'created': '2024-11-12 09:38:46', 'submission_id': '1goy1rb'}
{'comment': 'Trump: “I will build a great, great wall on our southern border. And I will have Mexico pay for that wall.“', 'created': '2024-11-13 00:10:29', 'submission_id': '1goy1rb'}
{'comment': 'Its an F150, so...medium difficulty, probably', 'created': '2024-11-12 14:09:43', 'submission_id': '1goy1rb'}
{'comment': 'Hey, the new ‘border czar’ is getting ramped up for the deportations to start. trump’s not even in office yet. Have fun with that, hispanics', 'created': '2024-11-11 23:12:50', 'submission_id': '1goy1rb'}
{'comment': '[removed]', 'created': '2024-11-13 04:05:49', 'submission_id': '1goy1rb'}
{'comment': 'Unfortunately the Democrats actually did a lot for the working class but got drowned out by misinformation.', 'created': '2024-11-11 20:38:24', 'submission_id': '1goy1rb'}
{'comment': 'I think the democrats need better marketing. The republican party has been filling social media (in all languages) with misinformation, and plenty of fake news that confirm people’s biases. The Democrats need to do a similar social media/media strategy to spread facts. They need to be just as aggressive as republicans are.', 'created': '2024-11-11 21:58:14', 'submission_id': '1goy1rb'}
{'comment': 'The problem is the party is split. We’ve got moderates vs far left progressives. The moderates get nervous when the platform gets too far left, but the FLPs refuse to vote for anything less than liberal utopia. There’s no way for a candidate to please one side without alienating the other. \n\nMeanwhile the Republicans will always fall in line and vote for the R, even if they despise him.', 'created': '2024-11-11 21:18:46', 'submission_id': '1goy1rb'}
{'comment': "Why should we protect our future elections when you didn't protect this one.\n\nFYI, voting against someone is a legitimate tactic.", 'created': '2024-11-12 23:53:01', 'submission_id': '1goy1rb'}
{'comment': 'Trump SAID a lot of shit. That’s the entire fucking point.', 'created': '2024-11-12 20:10:26', 'submission_id': '1goy1rb'}
{'comment': 'That’s because they WON’T GET overtime pay.', 'created': '2024-11-13 00:20:03', 'submission_id': '1goy1rb'}
{'comment': 'yes, of course\n\neven AM radio is infected... while technically AM is better for local connectivity in disasters, right wing bullshit is likely the top real reason folks are trying to save it', 'created': '2024-11-12 18:49:18', 'submission_id': '1goy1rb'}
{'comment': 'They saw the internet and social media and went to work.\n\n\nNo body went "let\'s fucking go we gotta create truthful fact driven free sources to combat the incoming propoganda"', 'created': '2024-11-12 14:28:34', 'submission_id': '1goy1rb'}
{'comment': 'Even at $5 a dozen, eggs would be a cheap protein source. At $5 a dozen, that’s around 40 cents an egg. What other fresh protein source can you get for 40 cents a serving? I’m not talking cheap lunch meat here, I’m talking a fresh protein source with no preservatives or additives. Yeah, I’m coming up with nothing. People are fucking idiots.', 'created': '2024-11-11 22:33:51', 'submission_id': '1goy1rb'}
{'comment': 'It’s a lot of logic hopping, but interesting.', 'created': '2024-11-11 21:19:35', 'submission_id': '1goy1rb'}
{'comment': "God no. Democrats are massively flawed. Though I do think - and the record clearly shows it - Biden has been a historically strong President. Although none of that matters now.\n\nWhat I am saying this election never should've been close if we lived in a normal country. Trump should have lost this election by 80-90 points for all the reasons I listed. Biden even with his flaws should have destroyed him. Harris too. But again the voters chose him. This is what our country wants. They CHOSE Hitler.\n\nPersonally, I think we're done as a country. I thought the 2016 election changed us forever but now stick a fork in us. I don't think there's any way we can recover. I don't believe there will be any further elections once Project 2025 is fully implemented. I hope I'm wrong but with SCOTUS in their pocket I don't see any way out from under permanent Republican control of the government.\n\nWe had our chance last Tuesday to stop it but the country wanted this too badly. And I don't think it had anything to do with the economy or losing the working man or any of that bullshit. It was all about the fact this country has so much unbridled hate in it that's been seething and rising since 2016 and now it's blasted through and this was the end result.\n\nNow we live with the consequences.", 'created': '2024-11-11 20:13:42', 'submission_id': '1goy1rb'}
{'comment': "the problem is that theres' a huge cohort of males who haven't gone to college, and the 21st century economy is narrowing their opportunities. Social media & youtube & sports/gaming platforms have galvanized them & made them more emboldened. That's why there's so much right-wing rage-bait everywhere.", 'created': '2024-11-11 20:57:10', 'submission_id': '1goy1rb'}
{'comment': 'This. That was my biggest fear when she got the nomination. Another Hillary. No matter how qualified a woman might be, this country is deeply misogynistic. \n\nI would love to see a Madame President in my lifetime. But if it does happen, I don’t think it’ll be anytime soon (and if it is, it’ll be a Republican). \n\nDemocrats need to not run another woman for a while. Focus on a man, and someone young and charismatic. We need another Obama.', 'created': '2024-11-11 21:28:30', 'submission_id': '1goy1rb'}
{'comment': 'I think most people who voted for him, tighter border security, less progressive “woke” policies like dei, nationalism when it comes to manufacturing jobs, tariffs on imports, economy was good under Trump and despite economical statistics looking good people are suffering from inflation. I’m not saying he’ll fix any of that. But when people are hurting from inflation they will vote for the opposition party. Most people aren’t very tuned into politics but if their day to day isn’t going well then they just want change', 'created': '2024-11-13 01:26:03', 'submission_id': '1goy1rb'}
{'comment': 'Don’t even say because of the assignation attempt. That doesn’t count. The point was that Reagan brought something to the table.', 'created': '2024-11-13 00:13:18', 'submission_id': '1goy1rb'}
{'comment': "Notice we don't hear about the wall anymore.", 'created': '2024-11-13 00:15:33', 'submission_id': '1goy1rb'}
{'comment': 'Yep, and the border czar Homan said in earlier interviews that if undocumented migrants have children who’re natural born citizens that he might deport them as well. And with Kristi Noem as top boss of Homeland Security, with the U.S.’s entire security apparatus at her disposal, get ready to see the surveillance state exploded under the guise of “catching illegals”.', 'created': '2024-11-12 17:32:11', 'submission_id': '1goy1rb'}
{'comment': 'Yep they will be rounded up and shipped south', 'created': '2024-11-11 23:45:01', 'submission_id': '1goy1rb'}
{'comment': 'When the border is still open, will they still be bitching about the "Border Czar?"', 'created': '2024-11-12 23:50:09', 'submission_id': '1goy1rb'}
{'comment': 'They did. They got drowned out by misinformation and grocery bills. People were willing to give away their and others freedom because bread, eggs and milk are too expensive.', 'created': '2024-11-11 20:40:32', 'submission_id': '1goy1rb'}
{'comment': 'This', 'created': '2024-11-11 20:50:31', 'submission_id': '1goy1rb'}
{'comment': 'When the richest man in the world manipulates a prominent social media platform and the rest of the oligarchs manipulate the news, what did we expect?', 'created': '2024-11-12 03:52:31', 'submission_id': '1goy1rb'}
{'comment': 'It’s easier to fool idiots with lies than to tell people the truth. The right wing propaganda machine works together to flood the country with an overwhelming amount of disinformation that is hard to combat.', 'created': '2024-11-11 22:29:09', 'submission_id': '1goy1rb'}
{'comment': 'This is why I wanted the people that worked on Fetterman’s campaign to work for Harris. They did great things with their social media presence and it would have helped Harris', 'created': '2024-11-12 01:06:45', 'submission_id': '1goy1rb'}
{'comment': 'The whole thing is our progressives are not far left economically in the worldwide sense, (right = capitalism is good, left = capitalism is bad). They are actually center-right. The furthest left (economically) we have are social democrats. The Third Way, neo-liberal "moderates" have sold out the working class and that is why the democrats have lost that group.', 'created': '2024-11-11 21:30:53', 'submission_id': '1goy1rb'}
{'comment': 'People need to accept the fact that there IS no utopia. Never will be. No matter who pushes that narrative.', 'created': '2024-11-13 00:13:59', 'submission_id': '1goy1rb'}
{'comment': 'While voting against the lesser evil is a legitimate tactic, you will get higher turnout if people are excited about voting FOR someone. Remember that "enthusiasm gap" some commentators were talking about.\n\nI voted for Harris, but so many people were more scared of Harris than they were of Trump, that Harris lost.', 'created': '2024-11-13 00:53:07', 'submission_id': '1goy1rb'}
{'comment': "Good point! I'm sure he doesn't believe Fuehrer Trump would do that.", 'created': '2024-11-13 02:36:50', 'submission_id': '1goy1rb'}
{'comment': 'AM radio in most of the country is a wasteland of pure RW hate speech and faux Christian prosperity gospel crap. It is that or the various flavors of country music if you live in the flyover parts and don’t have satellite radio.', 'created': '2024-11-12 21:47:58', 'submission_id': '1goy1rb'}
{'comment': 'Exactly.', 'created': '2024-11-12 14:52:47', 'submission_id': '1goy1rb'}
{'comment': 'I don’t agree. There are several independent news channels that are left leaning and call out the right all the time.', 'created': '2024-11-13 00:24:57', 'submission_id': '1goy1rb'}
{'comment': "I learned this weekend that my cousin (\\~20 years old) was on a raw egg diet this summer, eating like 26 eggs a day. I didn't know to respond to my aunt telling me this. It is a bit of a myth that raw egg is better and salmonella is still about 1 out 20,000 eggs. \n\nI don't know about the diet itself. On cost that (at $5/dozen) it is only $10.40 a day or $312 a month (at walmart price it is $140/month). For 2030 calories / 160 g protein. I'd rather eat more variety and wouldn't regularly eat raw eggs, but he's into weightlifting, rugby, etc., and I'm sure also is getting info from some fitness influencer.", 'created': '2024-11-11 23:21:04', 'submission_id': '1goy1rb'}
{'comment': '👍🏻', 'created': '2024-11-13 00:28:19', 'submission_id': '1goy1rb'}
{'comment': None, 'created': '2024-11-11 20:17:34', 'submission_id': '1goy1rb'}
{'comment': 'We know all that, but it’s not going to benefit anyone but the wealthy.', 'created': '2024-11-13 02:02:14', 'submission_id': '1goy1rb'}
{'comment': "> Don’t even say because of the assignation attempt.\n\nHuh? California gun control was in response to the black pather's doing armed copwatching.", 'created': '2024-11-13 04:12:21', 'submission_id': '1goy1rb'}
{'comment': 'With all of the pets being eaten, the wall is low priority.', 'created': '2024-11-13 00:20:18', 'submission_id': '1goy1rb'}
{'comment': 'Of course not. It has been the dems fault since the beginning of time.', 'created': '2024-11-13 00:53:04', 'submission_id': '1goy1rb'}
{'comment': 'Sorry, but they are really not as expensive as idiots make it out to be. I live in MA, not exactly a ‘low cost’ state. You can get bread for a buck. Boneless, skinless chicken breasts for $1.99 on sale. Etcetera. A bunch of lying so and so’s. They are just dicks.', 'created': '2024-11-11 23:18:37', 'submission_id': '1goy1rb'}
{'comment': 'Here’s a thought: they should stop eating eggs! Not only are they expensive they are VERY cruel to chickens (egg-truth.com). So much misinformation and people are\nSo gullible to believe all the lies.', 'created': '2024-11-11 23:00:49', 'submission_id': '1goy1rb'}
{'comment': "Oh I know what the world is going to be - and I honestly hope all the Trump voters get exactly what's coming to them.", 'created': '2024-11-11 20:19:39', 'submission_id': '1goy1rb'}
{'comment': "Of course they aren't that expensive. You cannot fix stupid.", 'created': '2024-11-11 23:22:34', 'submission_id': '1goy1rb'}
{'comment': None, 'created': '2024-11-11 23:05:53', 'submission_id': '1goy1rb'}
{'comment': 'Excerpt:\n\n\nAgain and again, our major institutions, from the media to the judiciary, have amplified Trump’s presence; again and again, we have failed to name the consequences.', 'created': '2024-11-11 18:03:26', 'submission_id': '1gox3ym'}
{'comment': 'Bald Heinrich Himmler', 'created': '2024-11-11 18:02:38', 'submission_id': '1gowpwk'}
{'comment': 'And the policy: Hate.', 'created': '2024-11-11 17:57:28', 'submission_id': '1gowpwk'}
{'comment': '“I haven’t read Project 2025 nor have I heard of it”\n\nFucking liar', 'created': '2024-11-11 18:54:49', 'submission_id': '1gowpwk'}
{'comment': "Peewee German. Great, just fucking great. A Jew who wants to round up millions of people he doesn't like. What a world.", 'created': '2024-11-11 17:58:57', 'submission_id': '1gowpwk'}
{'comment': 'I wonder what the pro Palastine protestors who abstained or voted for Trump as a way to punish harris will feel when the expulsion of Muslims and the ban starts along with carte blanche to have IDF finish the job starts.', 'created': '2024-11-11 19:11:06', 'submission_id': '1gowpwk'}
{'comment': 'Saw a few interviews of this guy. Mf is so unhinged, not only what he said but also how he said it.', 'created': '2024-11-11 18:08:57', 'submission_id': '1gowpwk'}
{'comment': 'Yikes! Not surprised but this is going to be rough.', 'created': '2024-11-11 17:58:40', 'submission_id': '1gowpwk'}
{'comment': 'The weakest and cruelest of all proud boy’s will now be dictating policy to our daughters. Bad times are ahead', 'created': '2024-11-11 18:55:21', 'submission_id': '1gowpwk'}
{'comment': 'What a vile, disgusting, hateful troll of a man. I sometimes wonder if people forget that the president comes with a lot of administration in tow. Ugh.', 'created': '2024-11-11 18:12:52', 'submission_id': '1gowpwk'}
{'comment': "There are no guardrails on this presidency. It's terrifying.", 'created': '2024-11-11 18:22:22', 'submission_id': '1gowpwk'}
{'comment': 'It should be *really motherfucking telling* that this guy has survived since 2016 without getting tossed under the bus.', 'created': '2024-11-11 18:29:54', 'submission_id': '1gowpwk'}
{'comment': "I don't say this lightly, but he is truly an evil person", 'created': '2024-11-11 19:17:11', 'submission_id': '1gowpwk'}
{'comment': 'A literal NAZI', 'created': '2024-11-11 18:45:19', 'submission_id': '1gowpwk'}
{'comment': 'You did this to yourself, America. It’s going to hurt…for generations!', 'created': '2024-11-11 18:25:51', 'submission_id': '1gowpwk'}
{'comment': 'OMFucking God. I’ve had it with these morons.', 'created': '2024-11-11 18:26:23', 'submission_id': '1gowpwk'}
{'comment': 'This is going to be awful fyi', 'created': '2024-11-11 18:41:56', 'submission_id': '1gowpwk'}
{'comment': 'Fucking Nosferatu. I wonder which moment of his life flipped this hate switch…', 'created': '2024-11-11 19:21:56', 'submission_id': '1gowpwk'}
{'comment': 'This man is what happens when a turd takes a dump.', 'created': '2024-11-11 18:11:54', 'submission_id': '1gowpwk'}
{'comment': "It is dangerous to hope right now, but I do hope that we can rely on Trump's narcissism and that we will see yet another revolving door of administration members as we saw last time. I really really hope they turn on each other and implode from within before they can actually get anything done.", 'created': '2024-11-11 19:42:05', 'submission_id': '1gowpwk'}
{'comment': 'The oldest looking 39 year old ever', 'created': '2024-11-11 18:26:04', 'submission_id': '1gowpwk'}
{'comment': 'The market is going to fucking crash the more we see of who is in the cabinet and who will be running all the government agencies. This is going to be a total shit show.🇺🇸💩🇺🇸', 'created': '2024-11-11 19:31:21', 'submission_id': '1gowpwk'}
{'comment': 'This is what he tweeted last week:\n\nhttps://preview.redd.it/czac6yen6b0e1.png?width=1080&format=pjpg&auto=webp&s=4e899910c0a29a97aaf047dd7c336760dd27552f', 'created': '2024-11-11 18:38:23', 'submission_id': '1gowpwk'}
{'comment': 'Evil freakish vampire. The Hate just pours off of him.', 'created': '2024-11-11 19:53:19', 'submission_id': '1gowpwk'}
{'comment': '', 'created': '2024-11-11 20:32:46', 'submission_id': '1gowpwk'}
{'comment': 'Everyone should read \n\nhttps://bristoluniversitypressdigital.com/downloadpdf/monochap-oa/book/9781529239669/ch006.pdf', 'created': '2024-11-11 18:52:23', 'submission_id': '1gowpwk'}
{'comment': 'Job opportunities building ovens.', 'created': '2024-11-11 19:07:52', 'submission_id': '1gowpwk'}
{'comment': 'What a dumpster fire', 'created': '2024-11-11 19:29:55', 'submission_id': '1gowpwk'}
{'comment': 'Glad I didn’t just eat. God, how nauseating!', 'created': '2024-11-11 20:30:28', 'submission_id': '1gowpwk'}
{'comment': '"Miller, who served as senior adviser to Trump and was his lead speechwriter during his first administration"\n\n\nWow... nice job, dude. Those speeches were great. Did you write them on post-it notes and then shuffle the notes?\xa0', 'created': '2024-11-11 23:13:18', 'submission_id': '1gowpwk'}
{'comment': 'Trump surrounds himself with such ugly, unlikeable evil that it’ll be a wonder to see if his party still has any support after he’s gone and everyone snaps out of whatever strange obsession they have with him', 'created': '2024-11-12 01:19:18', 'submission_id': '1gowpwk'}
{'comment': 'Gargamel reincarnated', 'created': '2024-11-11 20:27:01', 'submission_id': '1gowpwk'}
{'comment': 'Going to be a very crazy four years. I hope at the end of it there’s something left.', 'created': '2024-11-11 21:59:44', 'submission_id': '1gowpwk'}
{'comment': 'I like Steve Miller not Stephen Miller, subtle but a lot less cool', 'created': '2024-11-12 02:50:26', 'submission_id': '1gowpwk'}
{'comment': 'This dude is truly evil. I hope God smites him.', 'created': '2024-11-12 04:32:05', 'submission_id': '1gowpwk'}
{'comment': 'Meet the reincarnated Goebbels', 'created': '2024-11-13 01:10:52', 'submission_id': '1gowpwk'}
{'comment': '10/10, no notes. Can’t wait to see what this little fascist fuck has in the hopper.', 'created': '2024-11-11 18:58:34', 'submission_id': '1gowpwk'}
{'comment': 'Stop clutching your pearls. This is no surprise. Trump told everyone exactly who he is and what he will do and who he will work with. People voted for him because of this or in spite of it. But either way, they voted for him and made a choice. This is the bed that has been made. \n\nI don’t know about y’all but I’m not outraged. I’m sad and disappointed and a little confused. But my feelings are not like they were last time around. At the moment, and of course this may change in the future, but I’m going to put my head down, tune out the noise, ignore the clown car, and hope that someone will wake me in two years.', 'created': '2024-11-11 22:00:14', 'submission_id': '1gowpwk'}
{'comment': 'Mini Nazi', 'created': '2024-11-11 20:47:50', 'submission_id': '1gowpwk'}
{'comment': 'We’re literally in hell', 'created': '2024-11-11 21:01:56', 'submission_id': '1gowpwk'}
{'comment': 'Sieg Hiel Chucko! \n\nAnd America, ... roll up your sleeve and bend over.', 'created': '2024-11-11 22:22:45', 'submission_id': '1gowpwk'}
{'comment': "I'm sure this will work out well\n\n/s", 'created': '2024-11-11 22:39:07', 'submission_id': '1gowpwk'}
{'comment': 'Trump: "I don\'t even know what Project 2025 is. Stephen Miller? Who is she, babe? Never met her. Do we like her?"', 'created': '2024-11-11 23:07:42', 'submission_id': '1gowpwk'}
{'comment': 'If anyone doesn’t know who anyone is trump is wanting to hire, assume they’re nazis. It’d be a safe bet.', 'created': '2024-11-12 01:06:58', 'submission_id': '1gowpwk'}
{'comment': 'I honest to god sometimes think he is actually a WORSE human being than Trump… 🤮🤮🤮🤢🤢🤢', 'created': '2024-11-12 02:20:35', 'submission_id': '1gowpwk'}
{'comment': 'and vengeance', 'created': '2024-11-11 19:55:53', 'submission_id': '1gowpwk'}
{'comment': 'Jewish white nationalists are filled with hate if you only count the self loathing.', 'created': '2024-11-11 21:19:41', 'submission_id': '1gowpwk'}
{'comment': 'Ignorance at work…you might want to google it.', 'created': '2024-11-11 19:33:20', 'submission_id': '1gowpwk'}
{'comment': 'I’m sure there were Jewish people that voted for Hitler back then too. Hatred & bigotry can affect anyone.', 'created': '2024-11-11 18:02:19', 'submission_id': '1gowpwk'}
{'comment': 'I’m ashamed of his Jewishness and the fact he graduated from Duke.', 'created': '2024-11-11 20:33:24', 'submission_id': '1gowpwk'}
{'comment': 'Let’s not act like there’s a correlation there, okay? Jewish people are the most Democratic voting demographic after black men and women. I personally voted for Harris and volunteered in my local Democratic congressional candidate and state assembly candidate. Stephen Miller being a shitbag is indicative of Stephen Miller and Stephen Miller alone being a shitbag', 'created': '2024-11-11 21:15:23', 'submission_id': '1gowpwk'}
{'comment': 'And is experr at finding policy/law loopholes', 'created': '2024-11-11 20:58:27', 'submission_id': '1gowpwk'}
{'comment': '> Peewee German\n\nTook me a second but that’s a good one.', 'created': '2024-11-11 21:35:20', 'submission_id': '1gowpwk'}
{'comment': "i gotta wonder if any of their leaders or social media influencers took Russian money? I don't want to speculate out of the blue, but we know the Green Party has been co-opted.", 'created': '2024-11-11 21:17:55', 'submission_id': '1gowpwk'}
{'comment': "This is one of the most evil people in all of politics.. he doesn't get nearly enough hate.", 'created': '2024-11-11 18:23:07', 'submission_id': '1gowpwk'}
{'comment': 'If you close your eyes you can easily see him in a nice Hugo Boss outfit with tall boots. Impressive ability to project what the does given his heritage.', 'created': '2024-11-11 18:44:54', 'submission_id': '1gowpwk'}
{'comment': 'They have trouble not fighting with each other though.', 'created': '2024-11-11 20:11:52', 'submission_id': '1gowpwk'}
{'comment': "We'll see how much longer that lasts.", 'created': '2024-11-11 18:33:22', 'submission_id': '1gowpwk'}
{'comment': 'I’m not convinced that we actually did this.', 'created': '2024-11-11 19:59:49', 'submission_id': '1gowpwk'}
{'comment': 'Very good chance of this. Would be ironic if what got him in is also what gets him out.', 'created': '2024-11-11 23:38:13', 'submission_id': '1gowpwk'}
{'comment': 'Hate ages you', 'created': '2024-11-11 18:42:29', 'submission_id': '1gowpwk'}
{'comment': 'Thanks for the nightmare fuel lol.', 'created': '2024-11-11 19:39:40', 'submission_id': '1gowpwk'}
{'comment': 'Goebbels', 'created': '2024-11-11 21:06:31', 'submission_id': '1gowpwk'}
{'comment': 'Jewish Nazi call him what he is', 'created': '2024-11-11 23:00:10', 'submission_id': '1gowpwk'}
{'comment': 'I forgot who said it, but someone said that a lot of German Jews would have made great Nazis had the Nazis gone after someone else.', 'created': '2024-11-11 18:32:40', 'submission_id': '1gowpwk'}
{'comment': 'Same way Latinos now voted for Trump. Now, enjoy.', 'created': '2024-11-11 20:16:11', 'submission_id': '1gowpwk'}
{'comment': 'There literally was a “Jews for Hitler” group back then in Germany.', 'created': '2024-11-11 21:35:46', 'submission_id': '1gowpwk'}
{'comment': 'There were.', 'created': '2024-11-11 18:04:01', 'submission_id': '1gowpwk'}
{'comment': 'There were some. The Association of German National Jews. Basically the right wing version of JVP—they ended up being arrested by the Gestapo and sent to the camps as well', 'created': '2024-11-11 21:16:40', 'submission_id': '1gowpwk'}
{'comment': 'He’s been lurking in the background for quite some time, so a lot of people done know about him.', 'created': '2024-11-11 22:38:47', 'submission_id': '1gowpwk'}
{'comment': 'Saving grace methinks', 'created': '2024-11-11 23:33:48', 'submission_id': '1gowpwk'}
{'comment': "I'll save a seat for him at the train station.", 'created': '2024-11-11 18:53:33', 'submission_id': '1gowpwk'}
{'comment': 'Russia did this.', 'created': '2024-11-11 23:10:10', 'submission_id': '1gowpwk'}
{'comment': "When it's almost 30% of the country, no, I don't think we actually did this. You're absolutely right!", 'created': '2024-11-12 02:03:14', 'submission_id': '1gowpwk'}
{'comment': '100%', 'created': '2024-11-11 23:34:13', 'submission_id': '1gowpwk'}
{'comment': '“Did you learn any lessons from the holocaust?”\n\n“Yes.”', 'created': '2024-11-12 01:02:04', 'submission_id': '1gowpwk'}
{'comment': 'What’s that supposed to mean?', 'created': '2024-11-11 21:15:45', 'submission_id': '1gowpwk'}
{'comment': 'Whoever said it is an ahistorical moron', 'created': '2024-11-11 22:42:17', 'submission_id': '1gowpwk'}
{'comment': 'Give me a break, I agreed with your other comment but that’s a disgraceful equivalency', 'created': '2024-11-11 22:14:42', 'submission_id': '1gowpwk'}
{'comment': 'That if the Nazis weren’t hunting Jews then there would’ve been some Jewish Nazis that would’ve been great Nazis.', 'created': '2024-11-11 21:33:17', 'submission_id': '1gowpwk'}
{'comment': 'The only reason these people weren’t Nazis is because the Nazis were going after THEM. If the Nazis were going after someone else, they would have been all in.', 'created': '2024-11-11 21:37:33', 'submission_id': '1gowpwk'}
{'comment': 'Agreed', 'created': '2024-11-11 22:50:56', 'submission_id': '1gowpwk'}
{'comment': 'They were talking about a hypothetical alternative history.', 'created': '2024-11-11 22:51:57', 'submission_id': '1gowpwk'}
{'comment': 'Idk, I think an incredibly small group of Jews who are not at all representative of the rest of us who decide to throw their lot in with antisemitic genocidal maniacs and belittle every other Jew might be a bit similar to the other incredibly small group of Jews who are not at all representative of the rest of us who decide to throw their lot in with antisemitic genocidal maniacs and belittle every other Jew.\n\nJVP is a hate group that doesn’t represent the Jewish community. The Association of German National Jews were a hate group that didn’t represent the Jewish community. Pretty simple', 'created': '2024-11-11 22:18:13', 'submission_id': '1gowpwk'}
{'comment': 'Nazis could not have been Nazis if they weren’t antisemitic. That’s what made them Nazis—antisemitism was the heart of their ideology. You make it sound like there’s some “natural alignment” between Nazis and Jews, like Jews would have been chomping at the bit to join the Nazis if it weren’t for their antisemitism. That’s a pretty shitty implication there, friend', 'created': '2024-11-11 21:57:22', 'submission_id': '1gowpwk'}
{'comment': 'Okay. Let me break this down for you.\n\nYou’re implying a lack of integrity or moral fortitude among Jewish people, which is just nonsense. Jews, both in Germany and worldwide, have a long history of standing up for social justice and human rights, often at great personal risk. German Jews would not have leapt at the chance to join the Nazis, and that’s fucking ridiculous to say. You’re implying that German Jews scheming or morally flexible—willing to adopt any ideology for self-preservation or advantage—and that only historical happenstance of the Nazis being anti Jewish prevented that here.\n\nSecondly, you’re fundamentally misunderstanding the Nazis. It wasn’t “historical happenstance” that the Nazis were antisemitic. There wasn’t really a “someone else.” the Nazis could have gone after in the same way Antisemitism is a very particular form of hate because it’s a conspiracy theory about Jewish power and influence, not just hate—it has a political dimension that the Nazis we’re a part of. Further, Jews had already been dehumanized and massacred and oppressed across Europe for 2,000 years—the Nazis could only have created Naziism on the back of this antisemitism. There were others the Nazis hated, like queer people and Slavs, but they hated them on the basis of being a “Jewish invention” in the case of homosexuality and “Jewish puppets” in the case of Slavs. The basis of their ideology was antisemitism.\n\nThe Holocaust isn’t like, a moral parable where you can slot where you can slot any given minority in the position of the Jews. It happened particularly and deliberately to Jews. The dehumanization and antisemitism went too deep into European institutions and European identity and self conceptions about nationalism and scientific racism. \n\nI don’t like this “the German Jews would have joined the Nazis if the Nazis weren’t antisemitic” because A, the Nazis would never have been Nazis if they weren’t antisemitic, and B, the overwhelming majority of Jews, German or not, would never have joined a movement like that and it has uncomfortable implications to say they would have.', 'created': '2024-11-11 21:53:39', 'submission_id': '1gowpwk'}
{'comment': 'Nobody is implying that every Jew would have been a Nazi. Nor was every German an Nazi.', 'created': '2024-11-11 22:53:07', 'submission_id': '1gowpwk'}
{'comment': 'I’m explaining what that person meant. Idk how factual someone saying there were some German Jews who would’ve made great Nazis is. But the whole hypothetical as it is, is that if the Nazis were hunting someone other than Jews, then there were German Jews who would’ve been great Nazis. The caveat to it is that the Nazis were hunting someone other people. It’s an alternate reality.', 'created': '2024-11-11 22:07:15', 'submission_id': '1gowpwk'}
{'comment': 'The article is about Stephen Miller and Miller is Jewish.', 'created': '2024-11-11 22:43:57', 'submission_id': '1gowpwk'}
{'comment': 'I am implying nothing of the sort.\n\nI am saying that Jewish Germans were no morally different than any other Germans. \n\nI believe the original statement was made by a German Jew. You can google it. \n\nAnd yes, the Nazis killed a lot of other people besides Jews, especially Roma and Slavs.', 'created': '2024-11-11 22:21:15', 'submission_id': '1gowpwk'}
{'comment': 'That’s exactly what I meant. \n\nIf, in an alternate world, the Nazis had gone after some other ethnic group (the French menace, perhaps), a lot of German Jews would have been all in. This was in response to the “Jews for Hitler” comment. That’s not how history happened, obviously. \n\nAlso, the article is about Stephen Miller who IS Jewish and IS going after someone else. \n\nFinally, ***gestures broadly at Likud***\n\nObviously, not all Jews. But people are people. There’s no group that is immune to hate.', 'created': '2024-11-11 22:51:03', 'submission_id': '1gowpwk'}
{'comment': 'Yes, he is. What’s that got to do with anything at all? Why do you feel the need to highlight that and bring it up out of the blue?', 'created': '2024-11-11 22:44:37', 'submission_id': '1gowpwk'}
{'comment': 'Kind of contradicts that wall of text you sent me.', 'created': '2024-11-11 22:45:48', 'submission_id': '1gowpwk'}
{'comment': 'The bad people are gonna be sad too when everything they wanted hurts them.', 'created': '2024-11-11 17:57:06', 'submission_id': '1gowkf4'}
{'comment': "I really do think that's what it came down to...", 'created': '2024-11-11 18:05:11', 'submission_id': '1gowkf4'}
{'comment': 'The republicans really do just want complete and total authority.\nI promise you they will not waste this opportunity...', 'created': '2024-11-11 19:15:10', 'submission_id': '1gowkf4'}
{'comment': 'Mediocre white men are acting like they won the superbowl. They have very little experience with winning. Let them have their 15 minutes before the reality crushes their souls', 'created': '2024-11-11 19:39:26', 'submission_id': '1gowkf4'}
{'comment': '[removed]', 'created': '2024-11-11 18:35:31', 'submission_id': '1gowkf4'}
{'comment': 'Yep. Some of my coworkers can’t wait for Russia to take over Ukraine', 'created': '2024-11-11 18:11:41', 'submission_id': '1gowkf4'}
{'comment': 'And who will they look to when the secret police come knocking on their door ? But hey! You voted for exactly this. You want them to go door to door, checking your papers. Making sure everyone is here legally, and not your idea of legally, their idea of legally. Married to stay in America? Thats not legal, they shot that down, back to where your SO hails from until they can come the correct way...Only option is to leave with your family. We cant do anything to stop them. You gave them complete power over every aspect. It\'s no longer "We the People" we have no say, in anything. Its their way or the highway, right back to the border and into internment camps while waiting for their trip out. Expect the cheapest way, maybe by boat ? Making it so horrendous that no one will want to come here. There was a song sung in Christian churches, They will know we are Christians by our Love...so simple, so true, so devoid of truth for a so called Christian nation.', 'created': '2024-11-11 20:01:46', 'submission_id': '1gowkf4'}
{'comment': 'Why do we let evil people run for government again?', 'created': '2024-11-11 19:06:30', 'submission_id': '1gowkf4'}
{'comment': 'https://www.youtube.com/watch?v=7n7SoOTIlZY', 'created': '2024-11-11 18:25:06', 'submission_id': '1gowkf4'}
{'comment': 'Truth.', 'created': '2024-11-11 18:42:32', 'submission_id': '1gowkf4'}
{'comment': 'And those “ bad people” are mostly fucked too', 'created': '2024-11-12 06:07:32', 'submission_id': '1gowkf4'}
{'comment': "To be fair, that was pretty much it. Trump wasn't good for the middle class, and he still isn't. His supporters don't care. To them, it only matters that he won. This is why a two party system was warned against and why it doomed us a long time ago. The vast majority of people don't even look at the candidates' policies anymore, they vote for a party.", 'created': '2024-11-12 06:16:36', 'submission_id': '1gowkf4'}
{'comment': 'They owned the libs but unknowingly owned themselves even more bigly!', 'created': '2024-11-12 07:52:17', 'submission_id': '1gowkf4'}
{'comment': "JD Vance and Trump's combined experience (in years) holding government positions doesn't even equal double digits. We are so fucking fucked.", 'created': '2024-11-12 20:21:28', 'submission_id': '1gowkf4'}
{'comment': 'How do we live in a country with these people?', 'created': '2024-11-12 18:46:27', 'submission_id': '1gowkf4'}
{'comment': "It's true", 'created': '2024-11-11 20:49:42', 'submission_id': '1gowkf4'}
{'comment': 'This is a childish oversimplification', 'created': '2024-11-13 18:49:16', 'submission_id': '1gowkf4'}
{'comment': "I don't think most trump voters are in fact bad people.\xa0 They are just severely misinformed.\xa0\xa0", 'created': '2024-11-11 21:17:41', 'submission_id': '1gowkf4'}
{'comment': 'Nah, they will never run out of people to blame. They will be sad, but never for the right reasons.', 'created': '2024-11-11 18:28:50', 'submission_id': '1gowkf4'}
{'comment': 'And when that happens, I’ll be happy again!', 'created': '2024-11-11 19:29:32', 'submission_id': '1gowkf4'}
{'comment': 'My reply:\n\nRemember, when his lies hit your personal fan, a liberal didn’t fill in the oval on your ballots. 🤣', 'created': '2024-11-11 22:25:18', 'submission_id': '1gowkf4'}
{'comment': 'That’s why they’re so fucking angry. They now have their news agencies and golden boi Musk telling them to get ready for the economy to break under tariffs, “but things will get better later.”\n\nLol', 'created': '2024-11-12 16:44:22', 'submission_id': '1gowkf4'}
{'comment': 'That would be great except it is going to crush us all.', 'created': '2024-11-11 22:30:24', 'submission_id': '1gowkf4'}
{'comment': 'I don’t think fear is the right word', 'created': '2024-11-11 20:31:50', 'submission_id': '1gowkf4'}
{'comment': 'I tell those people that "Trump is an enemy of democracy, here and abroad."', 'created': '2024-11-11 21:20:03', 'submission_id': '1gowkf4'}
{'comment': "It's not Christianity that they are after, it's White Christianity. South Americans are predominantly Christians, but it doesn't count, we need Christians mostly from Europe. The only problem is Europe is increasing moving away from religion, which is why it's become harder to attract more European immigrants.", 'created': '2024-11-11 22:02:57', 'submission_id': '1gowkf4'}
{'comment': 'I heard the soon-to-be "border czar" state that he will also deport USC children of illegal immigrants because they became immigrants "illegally". SMH... he\'s going to have a war with AILA & ACLU. USC by birth is a birthright in many nations.', 'created': '2024-11-12 18:47:36', 'submission_id': '1gowkf4'}
{'comment': 'The constitution', 'created': '2024-11-12 08:01:49', 'submission_id': '1gowkf4'}
{'comment': 'This guy speaks for me.', 'created': '2024-11-12 08:02:41', 'submission_id': '1gowkf4'}
{'comment': 'They really think things were better under Trump and he did so many good things. It’s insane.', 'created': '2024-11-12 21:15:51', 'submission_id': '1gowkf4'}
{'comment': 'I wish that were true. Sadly, it is not. Trump supporters knew exactly what they were getting. They live their entire existence making everyone who "told them what to do" miserable. They can\'t accept that the Western world rejects racism and hateful behavior, so they rebelled.\n\nSource: I\'m surrounded by MAGA neighbors in a deep red AZ county.', 'created': '2024-11-11 23:26:15', 'submission_id': '1gowkf4'}
{'comment': "They'll still blame Biden/Harris/Democrats.", 'created': '2024-11-12 23:43:19', 'submission_id': '1gowkf4'}
{'comment': 'Exactly…..it’s ALWAYS someone else’s fault. It’s ALWAYS the democrats.', 'created': '2024-11-13 14:18:52', 'submission_id': '1gowkf4'}
{'comment': 'And in fact the mediocre white man will be the least likely to be crushed by comparison. So not only are they dragging us down they’ll barely learn a lesson', 'created': '2024-11-12 00:24:12', 'submission_id': '1gowkf4'}
{'comment': 'We already know that. But I also know the pain I will suffer will lessen the more they suffer at their own hands.', 'created': '2024-11-12 07:58:00', 'submission_id': '1gowkf4'}
{'comment': 'That\'s like saying "the law." Or "my religion."\n\nIt\'s an excuse, not a reason.', 'created': '2024-11-12 09:17:21', 'submission_id': '1gowkf4'}
{'comment': 'And the ones who didn’t know… CHOSE to not know. The internet is everywhere. It’s free to access at the library. It’s on the cell phone that I’m sure most of them have. They. Made. A. Choice. \n\nThey either decided to not look into him past an ad\nOr they knowingly voted him despite the vile shit spewing from his rectum-mouth. \n\nThis isn’t 2016 there is no benefit of the doubt. If you choose to vote in ignorance you deserve the consequences of that', 'created': '2024-11-12 00:31:41', 'submission_id': '1gowkf4'}
{'comment': 'They will suffer in Trump’s economy. They thought 9% inflation was bad? It’s currently less than 3%. Wait until Trump’s tariffs send it up to 15-20%! Trump is his second worst enemy. Reality will become his worst enemy.', 'created': '2024-11-12 08:01:07', 'submission_id': '1gowkf4'}
{'comment': 'It’s the only reason. The constitution lays out the qualifications for being president. Nowhere does it say evil people can’t run for president.', 'created': '2024-11-12 09:29:21', 'submission_id': '1gowkf4'}
{'comment': "Right, so you're hiding behind a 200 year old piece of paper for why you're about to let this happen.", 'created': '2024-11-12 09:48:44', 'submission_id': '1gowkf4'}
{'comment': 'WTF are you talking about? What do you propose I do about it????', 'created': '2024-11-12 09:49:38', 'submission_id': '1gowkf4'}
{'comment': 'Its about the attitude.\n\nClaiming that the constitution should stop us from preventing evil men from taking power is a *bad attitude*.', 'created': '2024-11-12 11:05:43', 'submission_id': '1gowkf4'}
{'comment': 'Attitude won’t save you, pal. Again, what do you propose that I do about it?', 'created': '2024-11-12 16:26:09', 'submission_id': '1gowkf4'}
{'comment': 'Think outside the box.', 'created': '2024-11-12 16:48:50', 'submission_id': '1gowkf4'}
{'comment': 'So you have no answer. Exactly my point.', 'created': '2024-11-12 20:29:09', 'submission_id': '1gowkf4'}
{'comment': "No, I have no answer I'm willing to post here.\n\nBig difference.", 'created': '2024-11-12 23:18:17', 'submission_id': '1gowkf4'}
{'comment': 'bye', 'created': '2024-11-12 23:19:07', 'submission_id': '1gowkf4'}
{'comment': "Flip a coin over if I'm saying that because of ToS or OpSec.", 'created': '2024-11-12 23:23:21', 'submission_id': '1gowkf4'}
{'comment': 'Why wouldn’t they continue to count all the votes especially if they’re post marked properly? 🙄', 'created': '2024-11-11 17:25:55', 'submission_id': '1gov13c'}
{'comment': "Well they better be making an uproar. Don't let them just do this without resistance", 'created': '2024-11-11 16:49:36', 'submission_id': '1gov13c'}
{'comment': 'What are we supposed to be doing? Do I just sit around and hope the government successfully ensures the election is legitimate?', 'created': '2024-11-11 17:03:59', 'submission_id': '1gov13c'}
{'comment': "The signature doesn't match. That's 200,000 votes not counted and thrown away. How is that even possible. Tell me when you sign 2 documents within 2 years' time frame and your signatures perfectly match.", 'created': '2024-11-11 18:05:47', 'submission_id': '1gov13c'}
{'comment': 'Sounds like the state was stolen then.', 'created': '2024-11-11 17:26:13', 'submission_id': '1gov13c'}
{'comment': 'Kinda surprised they don’t wanna count because couldn’t it help Lake or something? Kamala winning the state wouldn’t matter currently.', 'created': '2024-11-11 17:56:41', 'submission_id': '1gov13c'}
{'comment': 'country is a joke', 'created': '2024-11-11 16:59:32', 'submission_id': '1gov13c'}
{'comment': 'This is fucking bullshit. Biden needs to declare a national emergency and get to the bottom of all this. If we are going to stand around and be pussies, we will get it up the ass like Putin wants. This is an all out coup against America by russia and its agents, trump and musk.', 'created': '2024-11-11 19:19:38', 'submission_id': '1gov13c'}
{'comment': 'Never saw a so called democracy so terrified of counting legit votes!', 'created': '2024-11-11 21:19:21', 'submission_id': '1gov13c'}
{'comment': 'Doesn’t matter Elons hack will tabulate votes as needed for a Trump win anyways. Cheaters always cheat.', 'created': '2024-11-11 20:40:05', 'submission_id': '1gov13c'}
{'comment': 'Boycott Tesla!', 'created': '2024-11-11 17:42:39', 'submission_id': '1gov13c'}
{'comment': 'But…..but……Democracy!', 'created': '2024-11-11 17:26:55', 'submission_id': '1gov13c'}
{'comment': 'We should all be calling to Arizona’s elections offices and demanding they count those votes', 'created': '2024-11-12 02:07:27', 'submission_id': '1gov13c'}
{'comment': 'Personally, I think federal elections should be held according to a set of federal laws. Let the states hold internal elections however they wish, but federal election rules should be uniform across the country. Otherwise, why bother?', 'created': '2024-11-11 19:56:27', 'submission_id': '1gov13c'}
{'comment': 'People need to just STOP voting by mail. How many years are we all gonna complain.', 'created': '2024-11-11 18:34:54', 'submission_id': '1gov13c'}
{'comment': 'Why is everyone so against using an ID to vote? It’s so much easier and no signatures needed', 'created': '2024-11-11 18:50:49', 'submission_id': '1gov13c'}
{'comment': "Because they're afraid they're not for Trump.", 'created': '2024-11-11 17:34:20', 'submission_id': '1gov13c'}
{'comment': 'Bush V Gore has entered the comments section.', 'created': '2024-11-11 22:43:53', 'submission_id': '1gov13c'}
{'comment': 'I heard someone say you gotta fight like hell', 'created': '2024-11-11 17:28:03', 'submission_id': '1gov13c'}
{'comment': None, 'created': '2024-11-11 20:31:18', 'submission_id': '1gov13c'}
{'comment': ">What are we supposed to be doing? Do I just sit around and hope the government successfully ensures the election is legitimate?\n\n\nAsk your Democratic leaders what to do next.\n\n\nOh wait, they don't actually provide guidance.\xa0", 'created': '2024-11-12 08:08:40', 'submission_id': '1gov13c'}
{'comment': 'I don’t think I’ve ever signed my signature once the same as another. Coincidentally, they took cursive curriculum out of schools in most states.', 'created': '2024-11-11 18:30:08', 'submission_id': '1gov13c'}
{'comment': 'That’s why I don’t even trust hand counting ballots. Who’s to say the person (either maliciously or not) throws away my ballot bc the signature looked “slightly off”?', 'created': '2024-11-11 21:01:13', 'submission_id': '1gov13c'}
{'comment': 'That’s the point. It’s just voter disenfranchisement. \n\nEither 200k+ peoples signatures didn’t match *close enough* for some random assholes in a ballot counting office, or there were 200k+ cases of voter fraud. \n\nI’ll be waiting to hear about the investigations /s', 'created': '2024-11-12 03:51:26', 'submission_id': '1gov13c'}
{'comment': 'She would need almost all of those to go her for her to win the state. These 200k are not enough.', 'created': '2024-11-11 22:07:22', 'submission_id': '1gov13c'}
{'comment': 'Even if 70% of all of them go to Harris its not enough.', 'created': '2024-11-11 19:31:06', 'submission_id': '1gov13c'}
{'comment': "The state doesn't matter anyway, she got smashed everywhere else.", 'created': '2024-11-12 03:19:49', 'submission_id': '1gov13c'}
{'comment': 'They don’t need her', 'created': '2024-11-11 17:59:14', 'submission_id': '1gov13c'}
{'comment': 'One nation under Santan', 'created': '2024-11-11 17:29:14', 'submission_id': '1gov13c'}
{'comment': "It's so fucking insane that vote counts were sent via Starlink satellites.", 'created': '2024-11-12 04:12:50', 'submission_id': '1gov13c'}
{'comment': 'Those boys are all owned by Russia it’s insane…they have a direct line to Putin!! Fucking fascists!!', 'created': '2024-11-12 00:43:03', 'submission_id': '1gov13c'}
{'comment': 'Me neither which makes this not a democracy', 'created': '2024-11-12 18:49:14', 'submission_id': '1gov13c'}
{'comment': "Voting by mail is secure in most states. I certainly wouldn't recommend it in swing states anymore though.", 'created': '2024-11-11 19:43:54', 'submission_id': '1gov13c'}
{'comment': 'The problem is many people don’t have time to wait 2 hours in fucking line…there has got to be a better way.', 'created': '2024-11-12 00:44:18', 'submission_id': '1gov13c'}
{'comment': 'https://www.lwv.org/blog/whats-so-bad-about-voter-id-laws', 'created': '2024-11-11 18:59:57', 'submission_id': '1gov13c'}
{'comment': 'Isn’t that technically illegal and breaking constitutional rights in terms of voting though?', 'created': '2024-11-11 18:20:29', 'submission_id': '1gov13c'}
{'comment': 'but they could be for kerri lake , what a delma', 'created': '2024-11-11 23:25:49', 'submission_id': '1gov13c'}
{'comment': "How? That's the question. HOW?", 'created': '2024-11-11 20:41:38', 'submission_id': '1gov13c'}
{'comment': "Or you're not going to have a country anymore", 'created': '2024-11-11 18:26:03', 'submission_id': '1gov13c'}
{'comment': 'This is why I just make my mark: X , boom! Signed!', 'created': '2024-11-11 19:25:59', 'submission_id': '1gov13c'}
{'comment': 'But experts and AI learning can still detect differences.', 'created': '2024-11-11 18:31:46', 'submission_id': '1gov13c'}
{'comment': 'No but it’s one more seat and committee position..', 'created': '2024-11-11 18:00:03', 'submission_id': '1gov13c'}
{'comment': 'It just seems that it’s always an issue now. People are crazy. MAGAts are insane. I would never trust my ballot going through the mail.', 'created': '2024-11-11 19:44:52', 'submission_id': '1gov13c'}
{'comment': 'Interesting. Thanks for the info! I just assumed everyone had an ID or had easy access to get one.', 'created': '2024-11-11 19:48:13', 'submission_id': '1gov13c'}
{'comment': "I'm sure the supreme court will say it's perfectly legal, if they haven't already.", 'created': '2024-11-11 18:22:00', 'submission_id': '1gov13c'}
{'comment': 'They don’t care, and the Supreme Court would just side with the conservatives anyway.', 'created': '2024-11-11 18:33:49', 'submission_id': '1gov13c'}
{'comment': 'We need to stop anticipating that the law will be followed\xa0', 'created': '2024-11-11 20:24:01', 'submission_id': '1gov13c'}
{'comment': 'Yes. They told you to our faces it would be rigged. I am slowly starting to think there\'s enough nonsense in places to call for a recount. \n\nIf the news that the machines that counted votes in swing states had programs created by Starlink on them, then those states need to completely recount or even redo the vote. That\'s an entirely unacceptable conflict of interest. Maybe Mark Zuckerberg should endorse Kamala, then fund voting machines in key states Democrats need, then, if there\'s nothing wrong with it. /s \n\nSeriously. If this guy is promising dictatorship and the end of democracy a recount doesn\'t hurt anyone. Better yet, they can pin it on Trump. Biden releases a memo "DONALD TRUMP INFERS ELECTION INTEFERENCE, RECOUNT TO BEGIN DECEMBER 1ST". Pin it all on the Republican fearmongering about stolen elections.', 'created': '2024-11-12 03:45:20', 'submission_id': '1gov13c'}
{'comment': 'Anyone who cared about laws would have seen Donald Trump in prison instead of the White House.\n\nWe can stop pretending there’s such a thing as a law and order Republican.', 'created': '2024-11-11 23:26:26', 'submission_id': '1gov13c'}
{'comment': 'Does it actually matter anymore?', 'created': '2024-11-11 18:59:57', 'submission_id': '1gov13c'}
{'comment': 'I mean, yes, but basing rejection off of signature alone is grounds for election fraud in the first place. Also, what are they basing this off of? Your driver’s license? I got my license when I was 16, 8 years ago. How could they expect my signature to stay the same for that time?', 'created': '2024-11-11 18:34:20', 'submission_id': '1gov13c'}
{'comment': 'True, but they may consider it to be more beneficial to not look under that rock anymore and just let it lie.', 'created': '2024-11-11 18:12:38', 'submission_id': '1gov13c'}
{'comment': 'No problem!', 'created': '2024-11-11 20:01:28', 'submission_id': '1gov13c'}
{'comment': 'Yeah, I won’t be surprised. I’m not really surprised by much with our current government any more', 'created': '2024-11-11 18:33:31', 'submission_id': '1gov13c'}
{'comment': 'I just said this regarding a Vox and MSNBC video I saw about the upcoming Trump presidency. Their guest speakers all said that there’s still “guardrails in place yada yada…but they fail to realize that the sole purpose of Project 2025 is that the GOP wants to get rid of these guardrails and democracy altogether. The entirety of Project 2025 is to end American democracy and the rule of law.', 'created': '2024-11-11 20:39:58', 'submission_id': '1gov13c'}
{'comment': 'I know it’s crazy to think that they really believe they’re above the law but why are we honestly surprised when they’ve shown their true faces for years', 'created': '2024-11-11 20:37:32', 'submission_id': '1gov13c'}
{'comment': 'Yeah for arguments sake let’s say a recount and investigation is done and it’s found count was wrong etc etc. do you honestly believe GOP and the MAGA cult would believe it was rigged from their end?', 'created': '2024-11-12 03:50:15', 'submission_id': '1gov13c'}
{'comment': 'I stopped believing anyone in power actually gives a fuck about the rest of us a long time ago. The wealthiest in this country will continue to bleed us dry and “legally” strip us of any rights and pin left vs right against each other until they can essentially pay sharp shooters to keep us off of them', 'created': '2024-11-11 23:38:54', 'submission_id': '1gov13c'}
{'comment': 'It does matter. There are still house and senate seats to be determined. That could make a huge difference.', 'created': '2024-11-11 20:10:59', 'submission_id': '1gov13c'}
{'comment': 'Not for the GOP and wealthy DNC no. The rest of us who are not wealthy will be the ones who truly lose in all of this though. Nothing changes for the wealthy 1%', 'created': '2024-11-11 19:33:42', 'submission_id': '1gov13c'}
{'comment': "I tink it's not only that. But if one has a middle initial, and the other doesn't, that could throw it out. Or full three names, and other only has only the first and last. So that's how they get around the signature match.", 'created': '2024-11-11 20:11:50', 'submission_id': '1gov13c'}
{'comment': "It hasn't happened yet is the point. This is the time to fight back and make his plans fail. If we all just get defeatist and apathetic then 2025 succeeds. Or we stop them now using the tools in place for emergency situations like this. We lost. Now get up and get back to the fight.", 'created': '2024-11-11 23:54:24', 'submission_id': '1gov13c'}
{'comment': "It wouldn't matter. If the election is legally overturned it's legally overturned. They can deny it if they want but if the people spoke and chose Harris that's the end", 'created': '2024-11-12 04:18:53', 'submission_id': '1gov13c'}
{'comment': 'They are mad because they want Trump\'s policies to destroy the "others". They don\'t want higher prices, crappier healthcare, etc. they want that for "them".', 'created': '2024-11-11 16:36:13', 'submission_id': '1goup83'}
{'comment': 'I think the quickest way to prevent trump’s policies would be to put every bad policy that trump has stated he would do in one bill and nobody could vote for it……. Hopefully', 'created': '2024-11-11 16:27:35', 'submission_id': '1goup83'}
{'comment': "they are always mad. it's a prerequisite for maga", 'created': '2024-11-11 16:34:50', 'submission_id': '1goup83'}
{'comment': 'This is actually kinda funny. Obviously is back handed but they should want all the things they voted to happen to them. That’s why you vote for that person.', 'created': '2024-11-11 16:45:48', 'submission_id': '1goup83'}
{'comment': "Because it's a horrible realization that they voted for a guy who is going to fuck up their lives even more and that they are going to be paying more money for basics of living. Also, even if Democrats retake power in 2026 and 2028, the prices WON'T come back down. \n\nSo, yeah, thanks, MAGAts... goddamn idiots.", 'created': '2024-11-11 16:56:37', 'submission_id': '1goup83'}
{'comment': "It's a fruitless argument anyway. They suffered mightily during Trump's first term and they just took it and blamed it on others because Trump tells them to do so. When they suffer under his new policies they'll find another person to blame. It's one of the reasons we're in the mess we're in. Democrats have to come to terms with some things:\n\n1. You can show Republicans facts proving Trump is a liar and a con man and his policies are hurting them and it won't matter. It will harden their support of Trump, not soften it.\n2. Republicans will never fault Trump for anything, ever. They will always blame Democrats, globalists, immigrants, LGBT, etc.\n3. There is no MAGA movement. It's all just the GOP. It always was.", 'created': '2024-11-11 16:51:59', 'submission_id': '1goup83'}
{'comment': "They don't realize tariffs, eliminating obamacare, cutting ss, Medicare, medicaid, the degrading of women's rights, deportation of hispanics, etc etc, affects the whole country, them included. How could people think otherwise. This country is rediculously stupid", 'created': '2024-11-11 17:23:56', 'submission_id': '1goup83'}
{'comment': 'They are mad because they wanted him to lose so they can stay mad. The MAGA media wanted him to lose because there are dollars in the anger of his fans.', 'created': '2024-11-11 17:04:48', 'submission_id': '1goup83'}
{'comment': "Turns out owning the libs isn't as much fun as they thought it was like in 2020", 'created': '2024-11-11 16:56:36', 'submission_id': '1goup83'}
{'comment': 'The ignorant are unaware of their ignorance.', 'created': '2024-11-11 16:57:42', 'submission_id': '1goup83'}
{'comment': 'GOP: We hate you and will make you suffer, VOTE FOR US\n\nGOP VOTERS: They hate us, but they also hate brown people..... good enough!', 'created': '2024-11-11 17:10:51', 'submission_id': '1goup83'}
{'comment': 'Because most of them just found out how Tarriffs work...', 'created': '2024-11-11 17:35:14', 'submission_id': '1goup83'}
{'comment': 'Regardless of WHAT they admit, a lot of them know or have realized that his policies don\'t just affect "THOSE people", they\'ll be drowning in the shit too. I saw someone comment that they get what they deserve and the rest of us won\'t be helping and someone else commented how that isn\'t nice and as a Trump supporter, THEY wouldn\'t do that to people who voted for Kamala if they needed help. I told them that by voting for Trump, they did in fact opt to hurt and not help people who voted for Kamala. If you\'re upset that you\'re being told you should get what you deserve and you take it a threat, then you KNOW you made the wrong choice.', 'created': '2024-11-11 17:51:48', 'submission_id': '1goup83'}
{'comment': 'Yeah.. I have a few friends left who aren\'t in the CULT but voted for Cheat-O for "the economy"(lmao)-they get all butthurt when I say I WISH only *THEY*reap the "benefits" heading our way.\n\nLike, if it\'s gonna be all sunshine & roses, why get mad someone wishes all the "benefits" only come to them? ^SPOILER >!subconsciously, they KNOW what a POS he is and what a shitshow it will be-*that\'s why*.!<', 'created': '2024-11-11 17:22:37', 'submission_id': '1goup83'}
{'comment': "#He’s not hurting the people he needs to be hurting\n\nThat's what they are afraid of. They want the consequences, but for *those* people. They don't see themselves as one of those. \n\nWhen we point out that it might happen to them, it feels like an attack.", 'created': '2024-11-11 18:44:06', 'submission_id': '1goup83'}
{'comment': 'Remember when things are shitty and people are complaining left and right about stuff being expensive still and why the tariffs aren’t working like Trump said they would….hit them with “thoughts and prayers” lmao!', 'created': '2024-11-11 17:09:16', 'submission_id': '1goup83'}
{'comment': 'Bc anger is their home', 'created': '2024-11-11 16:46:27', 'submission_id': '1goup83'}
{'comment': 'They’re always mad.', 'created': '2024-11-11 16:58:43', 'submission_id': '1goup83'}
{'comment': 'Millions of mediocre white men think they won the superbowl. They have very little experience with winning. They will find out soon enough.', 'created': '2024-11-11 19:36:43', 'submission_id': '1goup83'}
{'comment': 'Because in the deepest, darkest reaches of their souls they know that they voted for stink.', 'created': '2024-11-11 17:09:11', 'submission_id': '1goup83'}
{'comment': 'I noticed this the night after the election when I went to DG after work. People seemed grumpier than usual. I expected them to celebrate or be happy about the results here in bum fudged Alabama. I guess they all went to work and saw how upset the other half were. They probably got some cold shoulders or may have been disowned by family. \n\nI asked out loud to my empty aisle, "Why are you all so mad?" You fffing won.', 'created': '2024-11-11 21:07:40', 'submission_id': '1goup83'}
{'comment': 'When everything comes crashing down, they are still going to blame us unfortunately...', 'created': '2024-11-11 17:23:29', 'submission_id': '1goup83'}
{'comment': 'I say that to them every damn day, you made your bed now lie in it.\n\nhttps://preview.redd.it/btp19v2vnb0e1.jpeg?width=720&format=pjpg&auto=webp&s=5ad910651da70608276826cbd817dca24bded07c', 'created': '2024-11-11 20:15:02', 'submission_id': '1goup83'}
{'comment': 'Because they know they voted for a male buffoon over a qualified woman.', 'created': '2024-11-11 17:20:03', 'submission_id': '1goup83'}
{'comment': 'I literally made a post here saying the same thing and it got mod removed', 'created': '2024-11-11 17:39:47', 'submission_id': '1goup83'}
{'comment': 'Because they fucked around and now they are about to find out.', 'created': '2024-11-11 17:10:08', 'submission_id': '1goup83'}
{'comment': 'I wish Republican policies only got enforced on Republican voters.', 'created': '2024-11-11 23:34:23', 'submission_id': '1goup83'}
{'comment': "I'm a union organizer in California. I've started looking at which country i will be able to afford to live in. Nothing good is going to happen here.", 'created': '2024-11-11 18:16:12', 'submission_id': '1goup83'}
{'comment': "Because they are all in a self-contained bubble whereby most of the Bullshit Trump says won't apply to them. Just like what their cult leader does.", 'created': '2024-11-11 17:59:31', 'submission_id': '1goup83'}
{'comment': 'They’re deluded and will blame the democrats for all the shitty policies they’re about to experience. Of course, the immediate post Biden environment will be great. Then things will slide in 2026. I’m preparing my savings and financials for this right now. I also have dual citizenship to the UK so I’m gonna leave if it gets bad bad. I’ll live with my British grandma in the interim. I know not everyone has this opportunity so I’ll offer to marry anyone who needs to get out lol.', 'created': '2024-11-11 20:02:47', 'submission_id': '1goup83'}
{'comment': "bc they're parasite mouth breathers", 'created': '2024-11-11 17:00:31', 'submission_id': '1goup83'}
{'comment': 'We are ALL going to feel this one, not just Trumpets...unfortunately.', 'created': '2024-11-11 19:32:21', 'submission_id': '1goup83'}
{'comment': 'Because the face-eating leopards are only supposed to eat *everyone ELSE’s* faces, not *MY* face!!!', 'created': '2024-11-11 19:41:47', 'submission_id': '1goup83'}
{'comment': 'I agree. I hope they get everything they wanted that’s coming to them since they so desperately wanted it they went out and voted for him. I hope all their dreams come true. They deserve it all.', 'created': '2024-11-11 21:02:34', 'submission_id': '1goup83'}
{'comment': 'I tell the Christian ones "by their fruits ye shall know them" and they get all mad, too!', 'created': '2024-11-12 01:35:26', 'submission_id': '1goup83'}
{'comment': 'The ones that are mad are the ones who bought in to Trumps lies and can’t believe they elected a KING with complete immunity who is going to turn their country and lives to shit. It’s going to get much worse as people start to lose their jobs and civil rights. (And their guns)', 'created': '2024-11-12 15:46:07', 'submission_id': '1goup83'}
{'comment': "I keep seeing versions of this posted, but I'd like proof it's actually happening.", 'created': '2024-11-12 04:11:00', 'submission_id': '1goup83'}
{'comment': "They know Trump is shit and doesn't care about them. They know that it's not as bad as they say and Trump isn't going to magically return them to 2017", 'created': '2024-11-12 05:16:05', 'submission_id': '1goup83'}
{'comment': 'Yep.', 'created': '2024-11-11 17:01:31', 'submission_id': '1goup83'}
{'comment': 'Fragile egos, just like their great leader', 'created': '2024-11-11 19:49:12', 'submission_id': '1goup83'}
{'comment': 'This much stupid can’t be fixed', 'created': '2024-11-12 00:07:29', 'submission_id': '1goup83'}
{'comment': 'Because they voted for things to happen to you! That’s what they were promised.', 'created': '2024-11-12 02:20:35', 'submission_id': '1goup83'}
{'comment': 'Again- very very stupid', 'created': '2024-11-12 02:35:12', 'submission_id': '1goup83'}
{'comment': '', 'created': '2024-11-12 02:45:02', 'submission_id': '1goup83'}
{'comment': 'All the bad things will fall to all of us. They are just too gullible and dumb to know their mouths from their assholes.', 'created': '2024-11-12 06:34:05', 'submission_id': '1goup83'}
{'comment': 'This pretty much sums up Trump voters in a nutshell after the election:\n\nThey vote for the guy for being “outspoken” when the guy is a racist, idiotic, low IQ piece of garbage that wants tariffs to boost the economy, wants to deport illegal and legal immigrants dooming all parts of the economy, and takes away women’s rights to contraception and abortions.\n\nSeen some of these supporters lately walking around like zombies from walking dead and acting like beggers wanting others to give them sympathy and my response is this is what you wished for now deal with it.\n\nWhen these things happen to their family, friends, etc and hit their front door they will see how fucked up of a decision they made to vote for Cheeto head.\n\nWith racism and sexism being rampant in this country I see this beginning to alienate the USA from NATO and the world. All because in Trump voters eyes Trump as a man seemed like a better option when Kamala would have made the US progress into becoming a more dynamic super power on the global stage. I am sorry this is all I can say to Trump voters for their ego and stupidity in their vote:\n\n', 'created': '2024-11-12 01:14:31', 'submission_id': '1goup83'}
{'comment': 'Everytime I’ve seen someone say that to a trumper they just smile with glee and brag more. Where you guys seeing them get mad?', 'created': '2024-11-11 17:57:41', 'submission_id': '1goup83'}
{'comment': "Everyone that has voted for Trump is going to get exactly what they asked for and they haven't seen anything yet. 😱\n4 years of pillage and plunder.😒\nCorruption at the level you've never seen before. \nIt's not going to be pretty.\n\nJanuary will be the beginning of the end.", 'created': '2024-11-11 20:19:13', 'submission_id': '1goup83'}
{'comment': 'Don’t worry. Democrats are silly in that they will go to court to prevent trump from doing 100% of what he promised and while they will win many of those battles it will actually make trump look genuine and only because of the libs did he have to tone down his rhetoric.', 'created': '2024-11-11 17:11:50', 'submission_id': '1goup83'}
{'comment': 'I guess they want us dead, you’d think they would be a little happier. I have no idea', 'created': '2024-11-12 00:28:04', 'submission_id': '1goup83'}
{'comment': '[removed]', 'created': '2024-11-12 04:36:38', 'submission_id': '1goup83'}
{'comment': 'Absolutely 💯 agree', 'created': '2024-11-12 22:43:35', 'submission_id': '1goup83'}
{'comment': "Maybe because on some level these Knuckle-dragging Neanderthals have been made aware of the FAFO laws of the Universe. And they're now frightened of getting what they voted for. 😆 👍", 'created': '2024-11-13 19:31:30', 'submission_id': '1goup83'}
{'comment': "https://preview.redd.it/xzs2gaomec0e1.jpeg?width=5627&format=pjpg&auto=webp&s=b4105ed0ac5dd46ddda69fc5014c16fcaaeaa17a\n\nYou can't stop what's coming.", 'created': '2024-11-11 22:44:54', 'submission_id': '1goup83'}
{'comment': 'hypocrisy to fuel revengeful tastes. I disagree with this rhetoric by the dems now', 'created': '2024-11-11 17:16:06', 'submission_id': '1goup83'}
{'comment': None, 'created': '2024-11-12 04:41:40', 'submission_id': '1goup83'}
{'comment': 'Yeah, I work with a bunch of federal Trump supporters who think/hope Trump will not hurt them', 'created': '2024-11-11 16:39:19', 'submission_id': '1goup83'}
{'comment': 'Leopards, faces, etc', 'created': '2024-11-11 17:38:14', 'submission_id': '1goup83'}
{'comment': "I'll enjoy watching them suffer.", 'created': '2024-11-11 17:40:46', 'submission_id': '1goup83'}
{'comment': 'Bingo.', 'created': '2024-11-11 17:01:02', 'submission_id': '1goup83'}
{'comment': 'Oh I want this sooooooo much. I hope they see what they voted for.', 'created': '2024-11-11 23:33:50', 'submission_id': '1goup83'}
{'comment': None, 'created': '2024-11-11 17:04:01', 'submission_id': '1goup83'}
{'comment': '"He isn\'t hurting who he is supposed to be hurting!"', 'created': '2024-11-12 07:20:40', 'submission_id': '1goup83'}
{'comment': 'Donnie boy has no idea who they are and doesn’t care for his moronic idiots he played like a fiddle. They are a doormat that he has no problem walking on while scrapping the shit off his shoes (very expensive shoes)', 'created': '2024-11-12 02:17:08', 'submission_id': '1goup83'}
{'comment': 'This. So many of Trump\'s supporters make "owning the libs" and "fighting the woke mob/agenda" their entire personality.', 'created': '2024-11-13 13:59:58', 'submission_id': '1goup83'}
{'comment': "Then the Republicans would pass it, blame the Democrats for writing it, and the corporate-owned media would make sure that the Democrats owned it.\n\nThat's how we get a Donald Trump Jr. presidency in 2028...\n\nLet's try to avoid that.", 'created': '2024-11-11 18:18:24', 'submission_id': '1goup83'}
{'comment': 'That’s part of the fun of them winning the presidency, senate and house. Who you going to be mad at now, champ? MAGA needs boogeymen to operate.', 'created': '2024-11-11 16:52:51', 'submission_id': '1goup83'}
{'comment': None, 'created': '2024-11-11 16:59:55', 'submission_id': '1goup83'}
{'comment': 'MAD-GA', 'created': '2024-11-11 22:34:18', 'submission_id': '1goup83'}
{'comment': "They're only happy when they're angry..", 'created': '2024-11-13 01:25:23', 'submission_id': '1goup83'}
{'comment': 'I don’t disagree, however the caveat being the massive amounts of “they can’t do that” and “it won’t happen to me” that I’ve been hearing from my Republican friends is literally stunning, \n\nI have a republican friend who is a college educated social worker and one night after the election I said \n\n“We are headed into a “fascist autocracy” stage I never thought I would see in this country, \n\nHer reply was\n\n “why is that so bad, seriously what even is fascism anyway”\n\n🤦🏽\u200d♂️🤦🏽\u200d♂️🤦🏽\u200d♂️🤦🏽\u200d♂️🤦🏽\u200d♂️', 'created': '2024-11-11 17:37:17', 'submission_id': '1goup83'}
{'comment': 'They spent the entire election cycle putting their fingers in their ears and going, “NO YOU!!!!” because they think politics is just a team sport. Your shirt was the other color, so you’re wrong and everything my color shirt wants to do is great. “MAGAAAAAAA!!!”\n\nNow that there’s nothing to win, and no one to gloat to because the sane people around them cut off their narcissistic supply from them, they’re looking back at everything he said and promised. Some of them are looking for things to feel hopeful for, but a lot of them are trying to critically think about it for the first time in years. And it’s scaring them, because they’re coming to the slow conclusion that they were definitely wrong about some things during the cycle. \n\nSo now, we’re here at this place where they’re hoping that he hurts the right people and can mitigate the damage to the average MAGA voter. They’re not smart people.', 'created': '2024-11-11 18:43:47', 'submission_id': '1goup83'}
{'comment': 'But at least he’s not a communist socialist. /s', 'created': '2024-11-11 17:26:15', 'submission_id': '1goup83'}
{'comment': "I think this may be part of it. If Trump lost, they could spend the next four years saying how Trump would have fixed it, look how much dems suck. Now, it's time for their guy to put up or shut up, and he's not good at either of those things.", 'created': '2024-11-11 17:12:48', 'submission_id': '1goup83'}
{'comment': "> even if Democrats retake power in 2026 and 2028\n\nHistorically, the pendulum swings away from the party in power during midterm years, so there's a good chance Democrats retake the House in 2026 and hopefully the Senate.\n\nAnd since 1992, the party that holds the White House but doesn't run an incumbent then loses the White House in the next presidential election, so Democrats will be better positioned in 2028.", 'created': '2024-11-12 01:43:58', 'submission_id': '1goup83'}
{'comment': None, 'created': '2024-11-11 17:12:09', 'submission_id': '1goup83'}
{'comment': "It was because he could focus their blame on the other guy. There's no one to blame now.\n\nYou can bet that whatever economic woes befall California (because of his policies), he's going to blame Newsom.", 'created': '2024-11-11 17:05:44', 'submission_id': '1goup83'}
{'comment': 'They don\'t mind hurting themselves as long as "those people" get hurt.', 'created': '2024-11-11 21:39:42', 'submission_id': '1goup83'}
{'comment': "Well when they're unemployed without health insurance, can't afford groceries, and their daughter dies in a hospital parking lot after having a miscarriage, I'm sure they'll still find a way to blame the Democrats.", 'created': '2024-11-11 20:13:20', 'submission_id': '1goup83'}
{'comment': 'The Department of Education too', 'created': '2024-11-12 07:50:28', 'submission_id': '1goup83'}
{'comment': "The proud boys types planning for civil war and insurrection must be mad they didn't get to shoot their guns.", 'created': '2024-11-11 17:58:41', 'submission_id': '1goup83'}
{'comment': 'https://preview.redd.it/d1az1rbloa0e1.jpeg?width=1080&format=pjpg&auto=webp&s=645e23a7a8535105b0fe2b362a40e8c04bab996c', 'created': '2024-11-11 16:57:11', 'submission_id': '1goup83'}
{'comment': 'Personally, I like I told you so better.', 'created': '2024-11-11 18:32:38', 'submission_id': '1goup83'}
{'comment': 'I’ll be ready with the “you voted for this” I need a shirt to go along with it', 'created': '2024-11-12 05:58:03', 'submission_id': '1goup83'}
{'comment': 'Just remind them how was your life before you voted for a man who cares about himself and never about you. Remind them “Biden didn’t take all this away from you and you know it.”', 'created': '2024-11-12 01:56:45', 'submission_id': '1goup83'}
{'comment': 'Filters are on high because of the sore winner trolls. You may have to write mods to get your posts approved.', 'created': '2024-11-11 18:00:54', 'submission_id': '1goup83'}
{'comment': 'i wish i could leave. my mom lives with me and we dont have the money to immigrate somewhere. the idea of one of those small japanese towns that are slowly dying soinds nice but i dont know japanese or what id be able to do there. or even if theyd let me in in the first place. \n\ni do agree nothing good is gonna happen here. you win trumpers im totally owned.', 'created': '2024-11-11 18:56:26', 'submission_id': '1goup83'}
{'comment': "But we are as prepared as we can be and won't be surprised. Them on the other hand...", 'created': '2024-11-12 16:00:22', 'submission_id': '1goup83'}
{'comment': "> they will go to court to prevent trump from doing\n\nIt's cute you think that will have any effect.", 'created': '2024-11-11 19:11:50', 'submission_id': '1goup83'}
{'comment': 'its like trying to stop a toddler from touching something hot. either theyll listen to you or theyll touch something hot and learn from the pain.', 'created': '2024-11-11 18:59:35', 'submission_id': '1goup83'}
{'comment': 'I recall “you get what you vote” for on anything that brought consternation on social media. Well….lets see how this plays out.', 'created': '2024-11-12 15:11:12', 'submission_id': '1goup83'}
{'comment': "They literally voted for someone who said they'd fire them...unreal.", 'created': '2024-11-11 18:00:19', 'submission_id': '1goup83'}
{'comment': "They'll get promotions lol", 'created': '2024-11-11 16:55:44', 'submission_id': '1goup83'}
{'comment': 'Trump is going to clean house for federal employees. As far as project 2025 is concerned all federal employees of the prior democratic administration are deep state and must go.', 'created': '2024-11-11 20:09:37', 'submission_id': '1goup83'}
{'comment': 'There is no them to him.', 'created': '2024-11-11 20:56:17', 'submission_id': '1goup83'}
{'comment': 'He has no idea who they are and nor does he care. He wants to gut Federal workers and remove social programs like HUD and EPA. His motto “Drill baby, Drill”', 'created': '2024-11-12 02:20:48', 'submission_id': '1goup83'}
{'comment': 'I keep hearing this random sound it’s like \n\n“Nom nom nom nom nom nom nom nom nom”', 'created': '2024-11-11 21:47:22', 'submission_id': '1goup83'}
{'comment': "If you're American, you'll suffer too. Their hatred fucked all of us.", 'created': '2024-11-11 17:45:34', 'submission_id': '1goup83'}
{'comment': 'That video is seven years old', 'created': '2024-11-11 18:37:26', 'submission_id': '1goup83'}
{'comment': "> That's how we get a Donald Trump Jr. presidency in 2028...\n\nWe won't, but only because he'll be getting crowned instead.", 'created': '2024-11-11 19:07:45', 'submission_id': '1goup83'}
{'comment': 'I swear most of them would have rather he lost so they could just keep complaining', 'created': '2024-11-11 17:22:38', 'submission_id': '1goup83'}
{'comment': 'Oh, they will find a Boogeyman. Just you wait.', 'created': '2024-11-11 18:24:09', 'submission_id': '1goup83'}
{'comment': 'Hahaha yeah I mean the stupidity is pretty golden. And once they do get what they asked for our response will just be “isn’t this what you wanted”', 'created': '2024-11-11 18:18:49', 'submission_id': '1goup83'}
{'comment': "They don't know what communism or socialism is either", 'created': '2024-11-11 18:57:28', 'submission_id': '1goup83'}
{'comment': 'I mean did they graduate from Trump university?', 'created': '2024-11-11 20:14:16', 'submission_id': '1goup83'}
{'comment': "My mom's financial advisor didn't even know our red state (Texas) had an abortion ban. Like, seriously? Didn't even know about the Dobbs ruling? \n\nWe were well and truly fucked in this election.", 'created': '2024-11-11 23:29:42', 'submission_id': '1goup83'}
{'comment': 'Many are book smart, common sense stupid. Many may have brilliant minds but they lack in logic.', 'created': '2024-11-12 02:11:57', 'submission_id': '1goup83'}
{'comment': 'Yes, and critical thinking is not in their wheel house', 'created': '2024-11-12 02:05:28', 'submission_id': '1goup83'}
{'comment': "Sorry buddy, but this is fan fic. The average voter isn't this introspective. A closer reality is that their vote is going to be justified cause all of the soft landing effects and interest reductions will start to happen next year. (Thanks Trump!) So they will feel all warm an fuzzy and crow about Trump with a bunch of told ya so's. They were prepared to install a government this time around so if we are lucky, they will redirect or hold back on some of the crazier shit like broad based tarrifs. \n\nThey have the Senate on lock. They will crank out a fetid stream of judicial appointees and replace Thomas and Alito with some Heritage Foundation golden child that passed the bar last year. The average voter won't care. \n\nGaza and Ukraine will come to and end and will be spun so hard as a win you could strap magnets to it and power all of the eastern seaboard. (They won't though cause that would upset big oil).\n\nThe cabinet will likely be a revolving door. Musk has far to large of an ego to be next to Trump. RFK might survive, but they both say stupid shit and the quiet ones that whisper in Trumps ear will likely want them gone. I give them 18 months tops, with Musk gone in 12.\n\nThey will crime. They will crime HARD. They will continue to push the lines of common decency and legal norms. Dems will push back... but hey... its just the usual witch hunt shit, throw it on the pile. It's just background noise to the average voter.\n\nThe ONLY thing that is going to matter is another national emergency that can get totally mismanaged like Covid. It may hopefully be mass deportations gone totally bananas and really freak people out, but so long as it hurts the right people (please don't eat my face Mr. Leopard) that may be fine. Another possibility is the Supreme Court starts really cranking out unpopular decisions that will trickle down. If we are lucky, it will be enough to take back the Senate, and that House if we don't actually win it. Frankly, I hope we lose the House. The only way to wake people up is the let MAGA fly the freak flag for 2 years. \n\nRemember, the only reason Trump lost in 2020 is due to looking like a total dipshit when it came to Covid. Had he allowed Fauci to do his thing and sit back and sell MAGA Masks, he would have coasted through re-election. We are in a bubble on Reddit, and the majority of the electorate have short memories. Shit... overturning Roe V Wade wasn't fresh enough to drive the choice, and they campaigned way too hard on that when the focus needed to be the economy. The next 2 years are going to be really bad if you are a liberal. Most of use will go bald from pulling our hair out. I'm sorry to shit on your post, but making up fantasies is only setting us up for more disappointment. \n\nAlso I needed to vent....", 'created': '2024-11-11 23:40:05', 'submission_id': '1goup83'}
{'comment': 'Uh-he’s literally on the phone with Putin and Chi. Communists.', 'created': '2024-11-12 03:12:45', 'submission_id': '1goup83'}
{'comment': 'Yeah he’s worse… a corporate socialist… privatize the profits and socialize the losses.', 'created': '2024-11-11 18:12:22', 'submission_id': '1goup83'}
{'comment': "They're going to Jimmy Carter him. They tried to do it to Clinton and Obama. Basically they'll take the reigns of a decent economy that continues to improve and they'll pretend they saved the country from the Biden Doldrums.", 'created': '2024-11-11 18:28:44', 'submission_id': '1goup83'}
{'comment': "> There's no one to blame now.\n\nThey'll just keep blaming Obama and Biden. It's not like reality matters to them.", 'created': '2024-11-11 19:09:38', 'submission_id': '1goup83'}
{'comment': 'Those god damn inner cities!', 'created': '2024-11-11 18:27:35', 'submission_id': '1goup83'}
{'comment': 'good thing theres other states that are in total red control that will be fucked when california, and the west coast, get ratfucked by trump. im glad we elected "king" bob here in wa as gov.', 'created': '2024-11-11 18:44:45', 'submission_id': '1goup83'}
{'comment': 'Yeah, probably', 'created': '2024-11-12 01:53:13', 'submission_id': '1goup83'}
{'comment': 'You don’t even know how many lefties I’ve heard bitching that Roe “was overturned under a Democratic administration” and so it’s the Dems fault. I just can’t with these people', 'created': '2024-11-12 03:11:09', 'submission_id': '1goup83'}
{'comment': 'True', 'created': '2024-11-12 13:42:09', 'submission_id': '1goup83'}
{'comment': 'Yet. But they will. Probably in service of getting the midterms canceled.', 'created': '2024-11-11 23:40:53', 'submission_id': '1goup83'}
{'comment': 'It’ll be a lot worse this time.', 'created': '2024-11-11 18:52:30', 'submission_id': '1goup83'}
{'comment': 'im gonna do a full [nelson muntz and laugh at them.](https://giphy.com/gifs/simpsons-nelson-the-Q8OOs80Hb5Bj1qNA1d)', 'created': '2024-11-11 18:47:42', 'submission_id': '1goup83'}
{'comment': "I mean that's really understandable right now, no worries", 'created': '2024-11-11 18:29:00', 'submission_id': '1goup83'}
{'comment': 'but what would be the mindset of the parent going forword... and not all parents deserve children', 'created': '2024-11-11 19:05:31', 'submission_id': '1goup83'}
{'comment': 'Yes. As a federal worker, it’s scary watching your coworkers love Trump. Then again, these same coworkers didn’t have a problem with “weak”people dying from Covid.', 'created': '2024-11-11 18:02:58', 'submission_id': '1goup83'}
{'comment': 'This morning we\'re setting up for parades to celebrate the contributions at risk and cost of life and limb by people Trump called "suckers and losers." He hates them and will hurt them but they love him.', 'created': '2024-11-11 19:56:01', 'submission_id': '1goup83'}
{'comment': 'I work with a boomer who thinks mass deportations and tariffs will bring down food costs', 'created': '2024-11-11 16:57:23', 'submission_id': '1goup83'}
{'comment': "Which won't matter because their cost of living will go up and their healthcare will be gutted. \n\nIt's so naive of them", 'created': '2024-11-11 21:29:12', 'submission_id': '1goup83'}
{'comment': 'Trash', 'created': '2024-11-11 20:44:10', 'submission_id': '1goup83'}
{'comment': 'Totally!', 'created': '2024-11-13 05:20:14', 'submission_id': '1goup83'}
{'comment': "I'm pretty sure that's why they started eating each other.", 'created': '2024-11-11 20:21:38', 'submission_id': '1goup83'}
{'comment': "They'll blame Democrats.", 'created': '2024-11-11 21:37:51', 'submission_id': '1goup83'}
{'comment': 'they did do that to obama. its why his supporters think trump was so great for the economy. the day before the election in 2016 according to republicans the economy was in terrible state with record high unemployment. the day after when trump won it was great and amazing and we had never seen unemployment numbers like that before.', 'created': '2024-11-11 18:41:41', 'submission_id': '1goup83'}
{'comment': 'One of the most infuriating parts of Trump winning is seeing him get to coast off of good things he inherited from Obama and Biden twice.\n\nGuy keeps on failing upwards.', 'created': '2024-11-12 07:49:14', 'submission_id': '1goup83'}
{'comment': "Plus Hillary and Pelosi. They will find a way to blame those two (honestly I was surprised how much republicans brought up Hillary's name this election lol. She's been out of the spotlight for a decade now lol)", 'created': '2024-11-11 23:48:00', 'submission_id': '1goup83'}
{'comment': "To reinforce the fact that they shouldn't touch something they know is hot without the kid getting burned again. But if they do to be ready to deal with the emergancy. \n\nUnfortunately that's about where the analogy wears out. Because the adults have immunity to actively burn the kids hands now. And since some of the kids getting burned cheered that on there's only so much empathy left for them.", 'created': '2024-11-11 19:57:59', 'submission_id': '1goup83'}
{'comment': "I'm in the same boat wondering how much longer I'll have my job. Thanks idiots. Ugh.", 'created': '2024-11-11 18:03:39', 'submission_id': '1goup83'}
{'comment': 'Ironic, considering that Republicans died from covid at a significantly higher rate than Democrats.', 'created': '2024-11-12 00:37:26', 'submission_id': '1goup83'}
{'comment': 'Nothing like the self own barreling toward him & all of them. Cool. I hope they enjoy it.', 'created': '2024-11-11 17:03:10', 'submission_id': '1goup83'}
{'comment': 'You should ask him who is going to pay for the camps and deportation', 'created': '2024-11-11 17:23:02', 'submission_id': '1goup83'}
{'comment': 'Why did you have to add Boomer in there?\n\nThe people that I see attending Trump‘s rallies, don’t look like boomers to me \n\nEither way, intelligence has nothing to do with the year you were born', 'created': '2024-11-11 18:43:15', 'submission_id': '1goup83'}
{'comment': 'People like that make boomers look bad. I tried to explain to my son and nephew both of whom are 35 that I am scared to death of a Trump presidency and brought up the mass deportations and increased food costs issues. Didn’t matter..........', 'created': '2024-11-11 18:43:57', 'submission_id': '1goup83'}
{'comment': 'Republicans obviously aren\'t the brightest bunch, but there have to be a few in leadership who realize the devastating impact that mass deportations and tariffs will actually cause. And now that they control the house, the senate, and the executive, they can\'t rely on Democrats to play the "bad cop" to slow Trump\'s policies down.\n\nSo my hope is that we see lots of infighting amongst Republicans in the years to come. The whole country will also get to see what unchecked Republican leadership looks like--which gives us a good chance that they\'ll all be thrown out on their asses in 2028.', 'created': '2024-11-11 22:45:09', 'submission_id': '1goup83'}
{'comment': "A coworker, conservative before Maga or Tea Party, once told me that human intelligence is actually counter-evolutionary. Maintaining a brain this size takes a lot of energy and most people don't really need it to get along in their daily lives.\n\nI was horrified, but as I get older and meet more people like your boomer co-worker, I am starting to believe it. I have met some extremely successful morons with hellish personal views on anything that doesn't directly affect themselves or their families.", 'created': '2024-11-11 18:56:15', 'submission_id': '1goup83'}
{'comment': 'Morons', 'created': '2024-11-12 01:05:46', 'submission_id': '1goup83'}
{'comment': 'I’ve had similar conversations, and it’s hilarious. People don’t seem to understand what makes the world go round.', 'created': '2024-11-12 03:34:12', 'submission_id': '1goup83'}
{'comment': "Boomer here who can't figure out how TF prices won't go up in that situation.", 'created': '2024-11-12 03:57:09', 'submission_id': '1goup83'}
{'comment': 'Who does he think harvests the food? All those deportations will inevitably raise food prices because sadly, it is cheaper to hire people here illegally.', 'created': '2024-11-12 04:22:43', 'submission_id': '1goup83'}
{'comment': 'I work with a 23 year old who thinks the same thing,.', 'created': '2024-11-12 06:07:26', 'submission_id': '1goup83'}
{'comment': "We don't even import food /s . Yesterday's meme.", 'created': '2024-11-12 12:32:23', 'submission_id': '1goup83'}
{'comment': 'They voted for the Leopards Eat Faces Party and gonna be shocked when the leopards eating their face too.', 'created': '2024-11-12 20:35:39', 'submission_id': '1goup83'}
{'comment': 'Trumps tariffs made my tool and die company the worst it’s been in 25 years. We are the biggest in the world. We lost hours and jobs,raises and employees. I’m sure the VP struggled(Republican) having to gather 700 people and tell us that’s why we were sucking the past year and 1/2. I was lucky because of my tenure. Unfortunately others weren’t', 'created': '2024-11-13 01:33:36', 'submission_id': '1goup83'}
{'comment': "It's the Democrats fault for not stopping us!!", 'created': '2024-11-11 23:00:52', 'submission_id': '1goup83'}
{'comment': 'Don\'t even get me started on how they sold the "crime explosion" when violent crime had been consistently falling.', 'created': '2024-11-11 22:54:48', 'submission_id': '1goup83'}
{'comment': "He'll fuck it up just like last time.", 'created': '2024-11-12 08:09:50', 'submission_id': '1goup83'}
{'comment': "> honestly I was surprised how much republicans brought up Hillary's name this election\n\nWoman. That's all they were thinking.", 'created': '2024-11-12 00:26:30', 'submission_id': '1goup83'}
{'comment': 'Yeah, I started casually looking at state and local government jobs. I was able to survive Trump’s first term in office. I don’t think his second term will be easy for federal workers.', 'created': '2024-11-11 18:05:28', 'submission_id': '1goup83'}
{'comment': 'It’s going to be funny when Trump’s proposals ruin things', 'created': '2024-11-11 17:04:07', 'submission_id': '1goup83'}
{'comment': 'This guy isn’t bright. He thinks tariffs will magically bring back jobs.', 'created': '2024-11-11 17:23:42', 'submission_id': '1goup83'}
{'comment': 'If he’s not rich those camps are for him, he won’t have to worry about it.', 'created': '2024-11-12 00:26:54', 'submission_id': '1goup83'}
{'comment': 'And the initial finding. These folks aren’t just going to report to his goons and say, “take me to the border, please.”', 'created': '2024-11-12 18:01:25', 'submission_id': '1goup83'}
{'comment': None, 'created': '2024-11-11 19:46:57', 'submission_id': '1goup83'}
{'comment': 'Thanks for some common sense.', 'created': '2024-11-12 06:12:36', 'submission_id': '1goup83'}
{'comment': 'lol and they’ll still find a way to blame it on democrats', 'created': '2024-11-12 14:07:32', 'submission_id': '1goup83'}
{'comment': None, 'created': '2024-11-11 23:36:49', 'submission_id': '1goup83'}
{'comment': 'He isn’t smart', 'created': '2024-11-12 11:53:10', 'submission_id': '1goup83'}
{'comment': 'He seriously think tariffs will automatically bring back jobs', 'created': '2024-11-12 13:22:01', 'submission_id': '1goup83'}
{'comment': "I'm thinking with federal budget cuts and lots of Feds fleeing, local govt budgets will be affected, combined with much more competition for those jobs...really sucks. I'm planning on staying, seeing how bad it gets then if/when I get cut, go from there.", 'created': '2024-11-11 18:11:15', 'submission_id': '1goup83'}
{'comment': 'There will be plenty of open jobs picking crops all day in the sun, once all the undocumented workers are deported.', 'created': '2024-11-13 02:13:21', 'submission_id': '1goup83'}
{'comment': 'Funny?', 'created': '2024-11-12 06:09:42', 'submission_id': '1goup83'}
{'comment': 'Do these people actually know what tariffs are?', 'created': '2024-11-11 20:10:02', 'submission_id': '1goup83'}
{'comment': 'And screw his social security. signed/a boomer with a few brain cells.', 'created': '2024-11-11 21:35:37', 'submission_id': '1goup83'}
{'comment': 'Id really just stop blaming generations or groups. It feels easy and succinct but it really is just stupid. They are trump supporters, not gen x, not gen z, not latinos.\n\nSomeone’s age, gender, or race doesn’t make them a good or bad person, so lets stop using it as the way to describe them.', 'created': '2024-11-11 19:56:52', 'submission_id': '1goup83'}
{'comment': 'I don’t see anything about Gen X overwhelmingly voting for this turd. Where is this info?', 'created': '2024-11-11 20:07:18', 'submission_id': '1goup83'}
{'comment': "Oh they'll definitely try lol. But I think it's going to be much harder when none of their political boogeymen have any real power to change national policy.", 'created': '2024-11-12 23:15:50', 'submission_id': '1goup83'}
{'comment': 'See 1929 economy. Half the people in the United States of Amnesia forgot about the Smoot-Hawley tariff act.\n\n""Let\'s see what happens"\n\nhttps://www.britannica.com/topic/Smoot-Hawley-Tariff-Act', 'created': '2024-11-13 14:09:02', 'submission_id': '1goup83'}
{'comment': 'I live in Virginia. There are a ton of military and federal workers in my community. If Trump gets his wish, my state will suffer.', 'created': '2024-11-11 18:13:08', 'submission_id': '1goup83'}
{'comment': 'I’m an engineer….', 'created': '2024-11-13 02:28:29', 'submission_id': '1goup83'}
{'comment': 'More so, watching people live in denial', 'created': '2024-11-12 11:52:44', 'submission_id': '1goup83'}
{'comment': "Trump doesn't, so why would they?", 'created': '2024-11-12 00:35:29', 'submission_id': '1goup83'}
{'comment': 'He also said that he didn’t vote for Harris because he didn’t want his kids learning about transgenders in school…the kicker is that his children have never experienced this', 'created': '2024-11-11 21:42:26', 'submission_id': '1goup83'}
{'comment': 'There is information about this all over the Internet that is sorted by age, race, sex, nationality you name it', 'created': '2024-11-11 20:13:39', 'submission_id': '1goup83'}
{'comment': 'You can check the BBC, it where I saw the results broken down by age and my first thought was “fuck, that’s us”', 'created': '2024-11-11 21:46:09', 'submission_id': '1goup83'}
{'comment': 'https://www.usnews.com/news/national-news/articles/2024-11-06/how-5-key-demographic-groups-helped-trump-win-the-2024-election\n\nhttps://www.pbs.org/newshour/politics/interactive-how-key-groups-of-americans-voted-in-2024-according-to-ap-votecast', 'created': '2024-11-11 21:31:17', 'submission_id': '1goup83'}
{'comment': 'Judging by Trump’s pick for Secretary of Defense, I’m convinced he wants to cause this country to collapse', 'created': '2024-11-13 14:12:22', 'submission_id': '1goup83'}
{'comment': 'Exactly. It’s as if they haven’t thought this through', 'created': '2024-11-13 02:34:12', 'submission_id': '1goup83'}
{'comment': "I really like it MUCH better when I'm there as the reality dawns on them\n\nthis is my one bright spot of this Cult Of The Treasonous Felonious Orange Shitgibbon\n\nCOTTFOS\n\nedit: rearranged my acronym to make it ring better <3", 'created': '2024-11-12 15:20:43', 'submission_id': '1goup83'}
{'comment': 'Ya-I see that. Plenty on Millennials, Gen Z, I don’t see anything about Gen X being the deciding screw factor.', 'created': '2024-11-11 20:17:40', 'submission_id': '1goup83'}
{'comment': 'Some folks on Instagram assumed I was sitting at home and not working because I am black.', 'created': '2024-11-13 02:35:25', 'submission_id': '1goup83'}
{'comment': 'I think republicans will lose seats in 2026', 'created': '2024-11-12 16:15:19', 'submission_id': '1goup83'}
{'comment': 'I don’t think they were the deciding factor, but there was a lot more than from the boomers. Seems like a big part of it was the Latino and male votes.', 'created': '2024-11-11 20:19:44', 'submission_id': '1goup83'}
{'comment': ">Ya-I see that. Plenty on Millennials, Gen Z, I don’t see anything about Gen X being the deciding screw factor.\n\n \nReally all the proof I have seen Trump's voters among age groups has stayed largely the same (with +/- of 3 or 4 points which are regular margins). BUT his support among the youth vote (ages 18-29, which is gen z) shot up by 6 pts this round, which outside the usual margins (I'm disappointed in my age group lol). It's also Trump's highest gain by age group [https://www.nbcwashington.com/decision-2024/2024-voter-turnout-election-demographics-trump-harris/3762138/](https://www.nbcwashington.com/decision-2024/2024-voter-turnout-election-demographics-trump-harris/3762138/) . Which guess I shouldn't be surprised by, news articles and reports have shown that young people (due to being born with the internet fully formed) are as susceptible to scams as senior citizens lol. I have a few friends who have fallen for scams via texts and social media lol.\n\nEither way despite Trump's gain with the youth vote, his main gains come into clearer focus when factoring in gender and race and education. Women (across gender and race lines) overwhelming supported Harris. White rural males, especially without a higher education, that previously back Biden broke for Trump.\n\nAlso still the bigger factor is republican turnout stayed more or less the same in comparison to 2020 (which was already a record breaking year for turnout), while Democratic turnout decreased. Lesson Trump was right that he could shoot his supporters and not lose votes. Democrats made a mistake in thinking 2020 level turnout (a record breaking turnout) would stay at that level this time.", 'created': '2024-11-11 23:10:31', 'submission_id': '1goup83'}
{'comment': "I'm hoping that's true, and the ignorant get a shock\n\nIf so, it's almost guaranteed that all of Congress will go blue again... so technically that mostly means only two years of trump", 'created': '2024-11-12 19:05:01', 'submission_id': '1goup83'}
{'comment': 'I’m sure Trump will ruin things again', 'created': '2024-11-12 20:34:26', 'submission_id': '1goup83'}
{'comment': 'It was an honor to serve 🫡', 'created': '2024-11-11 16:37:15', 'submission_id': '1got92r'}
{'comment': "Let's remember to honor our new elected leader the bone spur draft dodging piece of s*** orange clown... The fact that even one veteran supports this guy is absolutely mind-blowing. The way he treated John McCain is straight up despicable. Sorry man I'm not very confident in our established relationships going on much longer including NATO. This is Putin's boy", 'created': '2024-11-11 16:29:42', 'submission_id': '1got92r'}
{'comment': 'A quote from a Trump advisor: \n\n"A person that thinks those who defend their country in uniform, or are shot down or seriously wounded in combat, or spend years being tortured as POWs are all ‘suckers’ because ‘there is nothing in it for them,\'" Kelly said of Trump. "A person that did not want to be seen in the presence of military amputees because ‘it doesn’t look good for me.’ A person who demonstrated open contempt for a Gold Star family — for all Gold Star families — on TV during the 2016 campaign, and rants that our most precious heroes who gave their lives in America’s defense are ‘losers’ and wouldn’t visit their graves in France.”', 'created': '2024-11-11 19:53:57', 'submission_id': '1got92r'}
{'comment': "Thank you all for your service. There is no glory in war, no necessity for it but for a world leader's evil propelling us into it, and therefore every reason to honor you for your willingness to defend what is right.\n\nWhat a difficult time for our country, and I fear for the damage this next Presidency will again cause. I still believe the United States is worth fighting for, and improving, and I look forward to keeping up the internal fight in order to avoid external fights. Just your willingness to be ready is everything to us, and we are forever in your debt.", 'created': '2024-11-11 17:25:18', 'submission_id': '1got92r'}
{'comment': 'Can’t believe some vets voted for a man who bashes them', 'created': '2024-11-11 17:39:48', 'submission_id': '1got92r'}
{'comment': 'Boycott Tesla!', 'created': '2024-11-11 17:42:53', 'submission_id': '1got92r'}
{'comment': 'Thank you for your service!', 'created': '2024-11-11 17:20:28', 'submission_id': '1got92r'}
{'comment': 'The country is sick and he’s a symptom.', 'created': '2024-11-11 15:21:13', 'submission_id': '1goszlc'}
{'comment': 'This article hits the nail on the head. When people are inundated by fox "news" 24/7, that\'s what they believe because that\'s what they hear. There is such a revolt against "main stream media" you know, those people that spend their lives learning how to report objectively and fully, and are at the top of the profession. People would rather get their info from fox entertainment channel which only poses as a news source, or tiktok, or facebook. I\'m not sure how to change this, but I firmly believe this is the biggest problem.\xa0', 'created': '2024-11-11 15:45:15', 'submission_id': '1goszlc'}
{'comment': 'Stop asking this question please. I have seen this 10 times now on this thread. Humans are complicated, but make quick irrational decisions when confronted with fear or anger. Trump tapped into both with the Republican propaganda machine.', 'created': '2024-11-11 15:15:20', 'submission_id': '1goszlc'}
{'comment': 'We lost to a a bunch of Gen Z incels hopped up on fake news', 'created': '2024-11-11 15:28:37', 'submission_id': '1goszlc'}
{'comment': "1. Hate: the GOP did a fantastic job driving the US vs the them narrative. As long as there's a them the GOP will always have something to run on. Ex Immigration, equality policies\n2. They feel like the left has abandoned the middle class. Obviously, anyone that listened to any of Kamala's speeches knows that it simply is false but they don't care. \n3. Propaganda, again the GOP did a great job with their commercials and where they ran them. You can't argue against the propaganda machine when facts don't matter to the people taking in the propaganda.\n4. It's our fault we didn't get the message out enough. We didn't do a good enough job talking to the non voting community. Kamala's campaign didn't do enough to make the lazy non-voters get out and vote. This one could've changed the entire election.", 'created': '2024-11-11 15:16:19', 'submission_id': '1goszlc'}
{'comment': "Everyone understands the real reason why Trump won. It's obvious.\n\nUnfortunately, everyone you ask has a different 'obvious' explanation of why Trump won.", 'created': '2024-11-11 15:22:46', 'submission_id': '1goszlc'}
{'comment': "Because like all big happenings, it's not just one thing. It's also a cult of personality, there's not a lot of precedent on how to beat a cult leader.", 'created': '2024-11-11 15:29:22', 'submission_id': '1goszlc'}
{'comment': 'We see what we want to see. We choose to live in the amplified echo chamber absolutely believing everything we see and hear. It is a distorted reality, but we know nothing else since perception is reality.\n\nWhen we "see" Idiot Trump we don\'t perceive him in the way his misinformed propagandized fans see him, or those low-info uninformed voters "see" him after a quick google search.\n\nHe IS everything we know him to be. Liar. Conman. Convicted felon. Rapist. Insurrectionist. None of these pierces the bubble his supporters live in.', 'created': '2024-11-11 15:45:31', 'submission_id': '1goszlc'}
{'comment': 'Trump supporters are deplorable.. It seems like OP thinks Trumpers can call democrats every name in the book but we cant do the same. I refuse to bend a knee to these horrible people just to win an election. Hell no', 'created': '2024-11-11 21:18:47', 'submission_id': '1goszlc'}
{'comment': "One side lies *exclusively*...\n\n one side respects its audience's intelligence and ostensibly the truth", 'created': '2024-11-11 15:40:32', 'submission_id': '1goszlc'}
{'comment': "Whatever the reason, it's always because the Democrats didn't do enough to convince people not to be abject assholes. If people vote en masse for a twice impeached coup leader, well, it's the Democrats' fault. \n\nhttps://whereofonecanspeak.com/2023/03/02/youve-probably-never-heard-of-murcs-law-but-youve-seen-it-in-action-lots-of-times/", 'created': '2024-11-11 15:35:22', 'submission_id': '1goszlc'}
{'comment': "Elon used starlink to change votes.\n\nThat's the only reason that makes sense. Or the country is very stupid, misinformed and likes to vote against their own interest. That's probably it.", 'created': '2024-11-11 15:52:32', 'submission_id': '1goszlc'}
{'comment': "I'm sorry, how many times is this going to be reposted?\n\nEnough OP.", 'created': '2024-11-11 15:22:49', 'submission_id': '1goszlc'}
{'comment': 'Watching the machine try to land on a narrative has been a lot of fun to watch. It’s not often you get this level of honest discourse on Reddit.', 'created': '2024-11-11 15:59:16', 'submission_id': '1goszlc'}
{'comment': "Money is more important than values. If you put values first you are immature and need to grow up and live in the real world. Love don't pay the bills. Our values is business 101-give less and take more. That's the alpha male way....we don't mess with men with titties so stop trying to emasculate our men. Such things are satanic but we are Christians while democrats are of the world. What was you thinking running a woman? /s", 'created': '2024-11-11 16:07:30', 'submission_id': '1goszlc'}
{'comment': 'Still think Biden is a hero for stepping down? He should never had run for a second term and the party elite should not have been allowed to anoint him or Kamala. It was an embarrassment not a bonus when he did it.', 'created': '2024-11-12 01:25:45', 'submission_id': '1goszlc'}
{'comment': 'Democrats didn’t vote', 'created': '2024-11-11 15:20:28', 'submission_id': '1goszlc'}
{'comment': 'Haven’t you heard? Democrats are the new MAGA now. The election was “stolen”.', 'created': '2024-11-11 15:14:22', 'submission_id': '1goszlc'}
{'comment': 'There is no “real reason” Trump won. Jesus is complicated and there are multiple factors why.', 'created': '2024-11-11 15:32:59', 'submission_id': '1goszlc'}
{'comment': 'this was inentional, before Trumps first presidency he promoted distrust of msm directing people yo other site the GOP could manipulate info', 'created': '2024-11-11 17:58:35', 'submission_id': '1goszlc'}
{'comment': 'Ahem to quote my three year olds favorite movie: people make bad choices when they’re mad or scared or stressed🤣', 'created': '2024-11-11 15:31:49', 'submission_id': '1goszlc'}
{'comment': 'What I saw from exit interviews with swing voters said they felt Democrats did not understand and care about their issues like the price of eggs and called them dumb, deplorable and trash for those views', 'created': '2024-11-11 15:48:26', 'submission_id': '1goszlc'}
{'comment': "The media also covered him 24/7 and sanewashed him while admitting that they held Kamala to a much higher standard. She had to outline every minute thing about her policies in a 30 second clip but he can talk about Arnold Palmers dick. \n\nThey failed to highlight the great bills that Biden passed because it wouldn't bring ratings. Claimed Kamala didn't do enough as VP even though they never held another VP to that standard. [Here is a list of what she has done.](\nhttps://www.reddit.com/r/KamalaHarris/s/LEJDJEgJcD)\nHolding her 2020 presidential bid against here. Who cares that Biden had two failed bids.", 'created': '2024-11-11 16:52:04', 'submission_id': '1goszlc'}
{'comment': 'down ballots were dem though. this is why stupidity is the only answer', 'created': '2024-11-12 00:57:26', 'submission_id': '1goszlc'}
{'comment': 'This is why he won and will continue to win because Democrats have a thin skin and are easily distracted with things like name-calling.', 'created': '2024-11-11 22:06:53', 'submission_id': '1goszlc'}
{'comment': 'yeah its blaming the victim, Kamala ran an amazing campaign. I didnt like everything she did but she made it clear she had policies in place for change', 'created': '2024-11-12 00:59:37', 'submission_id': '1goszlc'}
{'comment': 'My observation is Trump leads. He says outrageous things and the Democrats us up all of their Mic time talking about Trump and run out of time to talk about their ideas and proposals.', 'created': '2024-11-11 16:05:15', 'submission_id': '1goszlc'}
{'comment': 'Until we discover why no one bought the Democrat product, we will continue to go bankrupt. What I see is the reason is People are just too dumb to understand how smart Democrats are which does not win anyone over. I figure they will continue running Kamala until she wins or dies. That is what you do when you have no idea how to win.', 'created': '2024-11-11 15:42:17', 'submission_id': '1goszlc'}
{'comment': "Personally, I don't think America is ready for a woman president. I know the Dem Party wants to be super woke and be the first but have failed with Hillary and Kamala. I noticed many women don't want a woman president which was interesting. Sadly, after beating their heads against the wall trying to elect a woman, I am afraid the GOP will get that honor with Nikki or Tulsi.", 'created': '2024-11-11 17:50:58', 'submission_id': '1goszlc'}
{'comment': "Not sure. I am sure Biden did not know how far he had gone downhill. The Democrats spend little time grooming young people so don't have a deep bench to choose from. Plus they pick people like Hillary and Kamala to be the first woman president instead of choosing who is most electable ... probably an old white man.", 'created': '2024-11-12 01:31:22', 'submission_id': '1goszlc'}
{'comment': "Why? What did they not want that the Democrats were selling? The interview I saw mentioned seeing voters felt the Democrats' focus on Tran Rights wast more important to the Party than what they were paying for eggs.", 'created': '2024-11-11 15:44:43', 'submission_id': '1goszlc'}
{'comment': "It's not stealing if you lie to get people to just give it to you, it is fraud.", 'created': '2024-11-11 15:25:43', 'submission_id': '1goszlc'}
{'comment': 'Why should anyone on the left admit that this election results wasn’t fraudulent, until the entire Republican Party does the same about 2020?', 'created': '2024-11-11 15:15:47', 'submission_id': '1goszlc'}
{'comment': 'Are we the baddies?', 'created': '2024-11-11 15:15:43', 'submission_id': '1goszlc'}
{'comment': 'And until those reasons are explored, researched and corrected, democrats will continue to lose.', 'created': '2024-11-11 15:35:35', 'submission_id': '1goszlc'}
{'comment': 'The message Dems were pushing didn’t land because it was NOT what regular Americans were experiencing. We underestimated that and overestimated the danger DJT posed. He is still a danger, but people couldn’t see that because of what they were seeing in their day to day lives.', 'created': '2024-11-11 17:39:30', 'submission_id': '1goszlc'}
{'comment': 'it was a misinformation campaign lead by GOP and a thousand other smaller reasons', 'created': '2024-11-11 17:56:40', 'submission_id': '1goszlc'}
{'comment': 'no, because by this point in the conversation its clear you came here with an agenda, youve wasted our time', 'created': '2024-11-12 01:04:00', 'submission_id': '1goszlc'}
{'comment': 'The irony sandwich of that paragraph is really fantastic.', 'created': '2024-11-11 15:57:38', 'submission_id': '1goszlc'}
{'comment': 'again, propaganda', 'created': '2024-11-12 01:01:52', 'submission_id': '1goszlc'}
{'comment': "The right will never acknowledge the truth about 2020 because they don't care about being truthful. They don't value it. They don't care if you expose them as hypocrites.", 'created': '2024-11-11 15:47:38', 'submission_id': '1goszlc'}
{'comment': ' And what would that do. What would that prove. What would that change. \n\nKamala conceded.', 'created': '2024-11-11 16:05:51', 'submission_id': '1goszlc'}
{'comment': "Sounds wonderfully petty. Shouldn't we be checking all those illegal voting claims they were making? We all want fair elections, right? \n\nHonestly, enough is enough though. The mistake was made well over a year ago for Biden to not step down and let primaries happen. Time to focus on Trumpproofing and getting shit together for two years of fighting and winning back congress.", 'created': '2024-11-11 15:26:27', 'submission_id': '1goszlc'}
{'comment': 'An eye for an eye makes the world go blind. But leftists not playing as dirty as right wingers has historically led to democratic backsliding', 'created': '2024-11-11 15:25:51', 'submission_id': '1goszlc'}
{'comment': 'Turns out we aren’t that different, after all. \n\nWe are now “joking” about Biden using executive immunity to off Trump. But it’s funny! Just a joke! Also it will save Democracy.', 'created': '2024-11-11 16:01:57', 'submission_id': '1goszlc'}
{'comment': 'And Democrats were calling these folks dumb, deplorable, and garbage for being concerned about the price of eggs when the priority should be pronouns, trans rights and bathrooms.', 'created': '2024-11-11 17:44:51', 'submission_id': '1goszlc'}
{'comment': 'But can the Democrats learn from those thousand reasons and do better?', 'created': '2024-11-11 18:01:28', 'submission_id': '1goszlc'}
{'comment': 'I did come here with an agenda. My agenda is to get the Democratic Party to do a deep dive and understand why they lost. They keep blaming everything else but themselves and that is why they lost with Hillary and now Kamala. I can not keep showing up and helping with a group that keeps repeating the same mistakes over and other hoping for a different outcome. This is where you call me deplorable and start planning to make the same mistakes in two or four years again and again', 'created': '2024-11-12 01:13:02', 'submission_id': '1goszlc'}
{'comment': 'That is the problem with Bernie is his propaganda.', 'created': '2024-11-12 01:13:59', 'submission_id': '1goszlc'}
{'comment': "Honest question here. Why is it okay for Trump and his supporters to call us every name in the book but when the dems do it people complain? \n\nDems did try to find solutions for the economy but unfortunately the media's messaging has given the wrong perception that reps are better with the economy. Dems have had to fix the damage reps have done. Kamala talked about the economy in all her speeches but no one paid attention. Her priority was the economy and abortion rights. \n\nWe can both want to let people have equal rights and be respected while taking care of the economy. The issue is Republicans won't let people live their lives. Instead they label them groomers and deviants.", 'created': '2024-11-11 18:29:13', 'submission_id': '1goszlc'}
{'comment': "I dont think those thousand other smaller reasons can hold a candle to the magnitude of the misinformation campaign that was launched. There are far more uneducated people in the country than educated (I think Trump actually bragged about this at one piint) so they are an easy target. When you look at some of the misinformation that was used you can see why people might have voted for Trump. Anyway, authoritarians dont leave office so thete's nothing to discuss. This is forever.", 'created': '2024-11-11 18:25:41', 'submission_id': '1goszlc'}
{'comment': 'Democrats are easily distracted. Given an important debate between the parties, all someone needs to mention is someone used the wrong pronoun on the other side of town for the Democrats to surrender the mike looking to go correct it. (exaggeration, i know). The Dems seem to be builders, building coalitions, programs, project and the Rep are destroyers and burning all that Dems built so Dem never goes anywhere just rebuilding the same house over and over is the way it seems.', 'created': '2024-11-11 18:59:36', 'submission_id': '1goszlc'}
{'comment': 'It is sad for me to watch the Dems use logic and facts with people who do not understand or appreciate either. It is a losing strategy.', 'created': '2024-11-11 19:01:43', 'submission_id': '1goszlc'}
{'comment': 'the election was stolen by billionaires manipulating idiots.', 'created': '2024-11-11 16:29:29', 'submission_id': '1goscrp'}
{'comment': "This is just a continuation of the behavior we have been witnessing from republicans for the last 50 years. You ever hear of REDMAP? How about Moscow Mitch's refusal to let Obama fill a vacant supreme court seat. How about all of the supreme court justices promises that Roe V Wade was settled law. They went low, we went high and they went lower. I would like to think that the ramifications of this election would lead to them accepting the blame when it fails. But they'll just blame the democrats and their supporters will agree.", 'created': '2024-11-11 15:58:38', 'submission_id': '1goscrp'}
{'comment': 'So much truth in this. Particularly the part about what should have been automatic disqualification from running for elected office.', 'created': '2024-11-11 15:35:14', 'submission_id': '1goscrp'}
{'comment': "If this happens after we go through the normal means, let's just I don't know overthrow the rotten pumpkin", 'created': '2024-11-11 15:59:44', 'submission_id': '1goscrp'}
{'comment': 'Boycott Tesla!', 'created': '2024-11-11 17:51:40', 'submission_id': '1goscrp'}
{'comment': 'You are absolutely correct and furthermore automatic disqualification for Donald Trump is really January 6th if they knew about 14th Amendment Section 3', 'created': '2024-11-11 16:36:41', 'submission_id': '1goscrp'}
{'comment': 'I am not going to deny they will try, it will be extremely hard to subjugate the non die hard MAGATs. A civil war would ensue and the guerrilla warfare alone would be insanity.', 'created': '2024-11-11 16:22:27', 'submission_id': '1goscrp'}
{'comment': 'Be sure to credit the artist of that comic. I can’t read the name.', 'created': '2024-11-11 16:00:13', 'submission_id': '1goscrp'}
{'comment': 'At this point, a scenario where he replaces the military leadership, stops elections, and gets no resistance for it is actually becoming less far fetched.', 'created': '2024-11-11 21:33:43', 'submission_id': '1goscrp'}
{'comment': 'once again, all the hand-wringing and cogent points that NO ONE in the DNC brought up nearly enough during the campaign, and the inevitable "call to action" with a "rah-rah!" at the end! \n\nAs is Tradition^tm.\n\ncould you guys at the DNC maybe TRY to stack the deck in favor of democracy while Biden has **TOTAL IMMUNITY** for any "official act"--like simply *placing* another justice on the Supreme Court, filling up every single judicial seat that\'s currently open (ya know, WHILE WE HAVE THE SENATE GODDAMMIT)\n\nCan we fucking just NOT do the same stupid fucking dance the Democrats have done for the last 50 years----which, by the fucking way, **IS WHY REPUBLICANS HAVE BEEN ABLE TO GET US TO THIS POINT**\n\nwe can\'t change the past, but godDAMMIT let\'s not think the same failed tactics will work *AGAIN*\n\n\nthere really should be a recount, too. with the media entirely owned by right wing billionaires, THAT is gonna be an uphill battle for the story to even make the news.\n\nedit: this is not directed at OP, but the leaders of the DNC; sorry if it seemed directed at you personally', 'created': '2024-11-11 16:44:29', 'submission_id': '1goscrp'}
{'comment': 'Horrifying', 'created': '2024-11-11 16:29:25', 'submission_id': '1goscrp'}
{'comment': 'Okay, okay... but I contend that the **(T)** will be a **(M)**.', 'created': '2024-11-11 20:35:49', 'submission_id': '1goscrp'}
{'comment': 'Must watch, this man is going to have some obstacles in his way to accomplish all this stuff \n\nhttps://youtu.be/g9UKnU3dRDM?si=0Yyk9HOdU_g1OH4P', 'created': '2024-11-11 17:04:42', 'submission_id': '1goscrp'}
{'comment': 'This reads like foreign propaganda.', 'created': '2024-11-11 15:05:10', 'submission_id': '1goscrp'}
{'comment': 'You’re not wrong, but putting it like this can also be interpreted to wrongly absolve Democratic leadership of responsibility. This was their election to lose, and they lost it.', 'created': '2024-11-11 22:11:35', 'submission_id': '1goscrp'}
{'comment': '>This is just a continuation of the behavior we have been witnessing from republicans for the last 50 years.\n\nI agree. \n\nThe Republican Party definitely began doing a lot of gaslighting, starting with the trickle down economic theory, and climate change is a hoax. \n\nReagan taught them to think government programs are bad with, "The most terrifying words in the English language are: I\'m from the government and I\'m here to help." \n\nAnd of course Limbaugh and other pundits encouraging intolerance.\n\nSo they were conditioning voters. Setting the stage for a con man to seize their party and implement the fascist playbook.', 'created': '2024-11-11 16:36:08', 'submission_id': '1goscrp'}
{'comment': "You are correct on this and it started with Nixon's southern strategy then Trump took it a bit further", 'created': '2024-11-11 16:37:40', 'submission_id': '1goscrp'}
{'comment': 'Yeah, republicans can’t talk about their actual plans because they suck and they know that. That’s why they lie and misrepresent everything when they talk. \n\nBernie sanders explains exactly this to a classroom in 2003. \n\nhttps://youtu.be/PLh5pfUfo6s?si=p97vavqQHz3W_Qu-\n\nAnd they’ve been battling AGAINST abortion rights ever since 1973 when roe v wade was passed. Because they wanted the christian votes', 'created': '2024-11-11 20:31:58', 'submission_id': '1goscrp'}
{'comment': 'And dump their stock!', 'created': '2024-11-11 19:24:33', 'submission_id': '1goscrp'}
{'comment': 'It’s like Trump wants to ruin America on purpose', 'created': '2024-11-11 17:45:40', 'submission_id': '1goscrp'}
{'comment': 'If you click on the image, it should enlarge for you.', 'created': '2024-11-11 16:42:24', 'submission_id': '1goscrp'}
{'comment': 'What are you talking about? They said all of those things! YOU didn’t listen', 'created': '2024-11-11 16:56:23', 'submission_id': '1goscrp'}
{'comment': ">edit: this is not directed at OP, but the leaders of the DNC; sorry if it seemed directed at you personally\n\nI got that you weren't directing it towards me 🙂\n\nBut I don't hold the DNC responsible. When weaponized, fascist rhetoric is extremely powerful. And the truth is, we lack the protections from it in our Constitution and system of laws. \n\nUnfortunately, our founding fathers never imagined that a major political party in our country would misuse the Constitution and system of laws to elect a freaking tyrant. They made the free speech part of the First Amendment too strong.", 'created': '2024-11-11 16:57:35', 'submission_id': '1goscrp'}
{'comment': "Then you'll want to work on your critical thinking skills", 'created': '2024-11-11 15:21:06', 'submission_id': '1goscrp'}
{'comment': 'Does it really though? Did you post a similar message when republicans claimed there was wide spread voter fraud?', 'created': '2024-11-11 16:00:08', 'submission_id': '1goscrp'}
{'comment': "Exactly. I say the republican party greased the skids for a con man to take leadership right out from under their noses. This isn't even truly republican ideas as much as an identity.", 'created': '2024-11-11 18:38:42', 'submission_id': '1goscrp'}
{'comment': "DAMN!!! All we need to do is update this to include the impact of social media. This is friggin' old and republicans are still doing the same shit. We should have got him in there when we had the chance.", 'created': '2024-11-11 21:59:50', 'submission_id': '1goscrp'}
{'comment': 'He\'s just thanking Putin for getting him voted for in the first place. He wants to be just like him and his "love" Kim Jong-un.', 'created': '2024-11-12 02:16:17', 'submission_id': '1goscrp'}
{'comment': "yeah, they're saying it NOW. after it's too late. again, in keeping with Tradition\\^tm", 'created': '2024-11-11 18:22:02', 'submission_id': '1goscrp'}
{'comment': ">Unfortunately, our founding fathers never imagined that a major political party in our country would misuse the Constitution and system of laws to elect a freaking tyrant. They made the free speech part of the First Amendment too strong.\n\n \nagreed. I'm saying the DNC failed to recognize the true problem and in doing so, has fucked us all pretty badly.", 'created': '2024-11-11 18:21:03', 'submission_id': '1goscrp'}
{'comment': "> But I don't hold the DNC responsible.\n\nThey're as responsible as Hindenburg was.", 'created': '2024-11-11 19:05:51', 'submission_id': '1goscrp'}
{'comment': "I saw a ton of messages calling out republicans for false claims of voter fraud. We just had a free and fair election. Claiming our elections are compromised is a Republican talking point, and we shouldn't spread the same propaganda.", 'created': '2024-11-11 16:23:41', 'submission_id': '1goscrp'}
{'comment': 'Yep. They truly did. \n\nAnd so many of their political leaders are truly cowards. So once Trump gained enough power, they started kowtowing to Trump.', 'created': '2024-11-11 19:05:30', 'submission_id': '1goscrp'}
{'comment': 'The voters tried. :(', 'created': '2024-11-13 02:50:56', 'submission_id': '1goscrp'}
{'comment': "What did you expect them to do? And when did you expect them to do it? \n\nBecause if not for COVID, Trump would have been reelected in 2020. That's what shifted the balance enough for Biden to win.", 'created': '2024-11-11 19:06:47', 'submission_id': '1goscrp'}
{'comment': "That's bullshit. The DNC did not appoint Trump to the presidency.", 'created': '2024-11-11 19:07:25', 'submission_id': '1goscrp'}
{'comment': '> is a Republican talking point\n\nYou know how everything they say is projection?', 'created': '2024-11-11 19:04:04', 'submission_id': '1goscrp'}
{'comment': 'Exactly, I\'ll eat the down votes all day, but trying to tell people to refuse election results is the same exact thing the Russian bit farms did to the other side for the past four years. Literally saying "there\'s no evidence but let\'s say it was stolen anyway"???? Seriously go register Republican and fuck off with that idea OP.', 'created': '2024-11-11 16:36:59', 'submission_id': '1goscrp'}
{'comment': 'The democrats could have spent the last 4 years putting safeguards in place…but they didn’t.', 'created': '2024-11-12 01:15:00', 'submission_id': '1goscrp'}
{'comment': "They could have made it so felons can't run for elected positions, especially since feelings can't even vote in most elections.", 'created': '2024-11-12 02:18:33', 'submission_id': '1goscrp'}
{'comment': 'They let him run.', 'created': '2024-11-11 19:12:51', 'submission_id': '1goscrp'}
{'comment': 'I think if you read the post more closely you will see that they are referring to elements surrounding the election that were clearly influential in how people voted. You yourself refer to the Russian bit farms. I think those things are fair game when it comes to complaining. Everything else, as you say, cannot be proved but the silence surrounding election fraud is indicative of the Russians acceptance of victory for their plant. And that in some ways is proof enough of interference. The op even mentioned "There is no evidence so far of voting shenanigans." Did you actually read it?', 'created': '2024-11-11 18:36:03', 'submission_id': '1goscrp'}
{'comment': "What safeguards could they have put in? And how?\n\nAnd that's a serious question. Because the only safeguards I can think of, they couldn't have put in.", 'created': '2024-11-12 01:59:53', 'submission_id': '1goscrp'}
{'comment': "Oh, so you're just here posting disingenuously", 'created': '2024-11-11 19:15:05', 'submission_id': '1goscrp'}
{'comment': 'A couple things spring to mind: \nmaybe prosecuting Trump faster, moving faster on J6 trash, publicizing and RE-publicizing MAGA republicans\' active and tacit support of J6, broadcasting WIDELY all the pics of the Russian spy Maria Butina posing in obvious "post-hookup" photos with all of the RNC leadership and NRA leadership prior to her being discovered and deported. btw, that fucking person was *rewarded for her service to Russia when she returned*. they made her an MP, ffs. not one fucking word about her since she left---shit, Biden could have interrupted prime time TV and announced that a Russian spy had compromised the leadership of the RNC and NRA, and provided the fucking receipts.\n\nmaybe doing SOMETHING to counter the rightwing hate media that absolutely dominates the national conversation, instead of losing every debate before it starts! It\'s b/c the Dems take right wing talking points as "serious points of discussion" when they are in fact, simply a distraction to make liberals spin their outrage wheels into "humorous" memes and monologues on late night TV. All any right-wing pig has to do is make up some ridiculous statement that\'s unrelated to anything, and the fucking Democrats talk about it, obsess over it, and spin their wheels worrying about "what that might mean....", and then the right wing just makes something else up and laughs as the Dems do it all over again. \n\nnobody fucking publicized Project 2025 until it was too goddamned late. not in a real way, and not in a way that could have gotten more attention.\n\n\nand dammit, I supported and donated to the Harris campaign. however, I can\'t help but feel that she was IMPOSED on Democrats rather than ELECTED by Democrats. I was happy to have someone who was younger take over the lead, but I did feel she was not really the best choice. She was the best choice for the corporate trash who bankroll both parties every election, but not for the people. Had Biden dropped out before the primary and had she gotten *elected by Democratic CITIZENS*, her campaign would have had a LOT more sticking power.', 'created': '2024-11-12 17:33:01', 'submission_id': '1goscrp'}
{'comment': 'Great news. Now can I file a class action suit against the RNC for spam text messages for her. I live in PA', 'created': '2024-11-11 14:37:57', 'submission_id': '1goq3ea'}
{'comment': "I mean, cool, but not gonna lie, this reinforces my belief that this election was largely about sexism. Lake is just like Trump and piggy-backed off his crap but somehow didn't win, so to say AZ doesn't like her but likes Trump makes no sense.", 'created': '2024-11-11 15:58:34', 'submission_id': '1goq3ea'}
{'comment': 'Kari Lake - the next Secretary of Energy.', 'created': '2024-11-11 13:13:33', 'submission_id': '1goq3ea'}
{'comment': "Gallego won by 66,305 votes. The Green candidate Eduardo Quintana received *exactly* 68,000 votes. Don't let anybody tell you your vote doesn't matter.", 'created': '2024-11-11 16:39:54', 'submission_id': '1goq3ea'}
{'comment': 'Don’t worry. Trump will probably give her a cabinet position.', 'created': '2024-11-11 14:08:37', 'submission_id': '1goq3ea'}
{'comment': 'Boycott Tesla!', 'created': '2024-11-11 18:06:19', 'submission_id': '1goq3ea'}
{'comment': 'Well, at least most voters in AZ can recognize an idiot. I wish the voters in the 4th district in CO and the 14th district in GA could do the same. But, I guess, idiots don’t recognize other idiots.', 'created': '2024-11-11 13:49:04', 'submission_id': '1goq3ea'}
{'comment': "And with that, Kari Lake will pack herself off to Washington, D.C. for a job in the Trump Administration. She'll do plenty of damage there, but don't worry, Republicans, the grifting opportunities will open wide for her in D.C.", 'created': '2024-11-11 17:10:54', 'submission_id': '1goq3ea'}
{'comment': "Too bad that they all weren't defeated", 'created': '2024-11-11 16:08:54', 'submission_id': '1goq3ea'}
{'comment': "I thought she's still running for Governor in AZ", 'created': '2024-11-11 16:03:13', 'submission_id': '1goq3ea'}
{'comment': "A red wave, Republicans carry the electoral votes, and she still couldn't win?", 'created': '2024-11-12 01:26:04', 'submission_id': '1goq3ea'}
{'comment': 'Wow', 'created': '2024-11-11 14:43:00', 'submission_id': '1goq3ea'}
{'comment': 'Probably a bunch of Latino men that voted Trump + Gallego.', 'created': '2024-11-11 16:24:30', 'submission_id': '1goq3ea'}
{'comment': 'Yep i guarantee she is in his admin', 'created': '2024-11-11 13:15:56', 'submission_id': '1goq3ea'}
{'comment': 'Kari Lake: the other MTG', 'created': '2024-11-11 16:53:40', 'submission_id': '1goq3ea'}
{'comment': 'Oh he will', 'created': '2024-11-11 14:16:18', 'submission_id': '1goq3ea'}
{'comment': 'Boycott all R businesses.', 'created': '2024-11-11 18:20:05', 'submission_id': '1goq3ea'}
{'comment': 'They love people who are just like them and give them permission to be idjits too.', 'created': '2024-11-11 18:18:56', 'submission_id': '1goq3ea'}
{'comment': 'Boebert jumped to a new district when she realized CO-3 might vote her out this year.', 'created': '2024-11-11 23:19:12', 'submission_id': '1goq3ea'}
{'comment': 'No, no. She thinks she IS the governor because that election was stolen from her.', 'created': '2024-11-11 21:52:07', 'submission_id': '1goq3ea'}
{'comment': 'It’s crazy ….AOC asked today on her instagram why her supporters voted for her and Trump …\n\nhttps://preview.redd.it/vpzndb6j7d0e1.jpeg?width=1179&format=pjpg&auto=webp&s=40578e561c83eedc4516f5f7bff13aa5282bf2aa', 'created': '2024-11-12 01:26:59', 'submission_id': '1goq3ea'}
{'comment': 'Latino men are inherently sexist, so that tracks.', 'created': '2024-11-11 16:31:36', 'submission_id': '1goq3ea'}
{'comment': 'I don’t know, she might be too much of a loser even for him.', 'created': '2024-11-11 16:23:03', 'submission_id': '1goq3ea'}
{'comment': '\\#stopthesteal 2.0 - this time it is not a scam - Kari Lake', 'created': '2024-11-11 23:19:51', 'submission_id': '1goq3ea'}
{'comment': 'Those comments are so unexpected, and illustrative.', 'created': '2024-11-12 01:36:34', 'submission_id': '1goq3ea'}
{'comment': 'As a Latino man I don’t like how generalized this statement sounds. Not all Latino men are sexist. I voted for Harris and I am not sexist. Your statement also takes away accountability for the women that supported Trump. Both men and women fucked this election up. Let’s not become more divisive than what we already are.', 'created': '2024-11-11 22:44:58', 'submission_id': '1goq3ea'}
{'comment': 'Except that Mexico just elected its first woman president. All the Catholicism and machismo didn’t stop them so it’s just our Latino men.', 'created': '2024-11-11 20:20:28', 'submission_id': '1goq3ea'}
{'comment': 'Being reductionist does not help your case. I’m a latino man who voted for kamala and i am not sexist. The worst thing you can do is try to antagonize people whose votes you are trying to win back. I will admit that machismo culture exists and has to be dealt with, but that does not mean all latino men are sexist.', 'created': '2024-11-12 03:51:05', 'submission_id': '1goq3ea'}
{'comment': 'That’s fair. I should’ve chosen my words more carefully.', 'created': '2024-11-12 04:44:04', 'submission_id': '1goq3ea'}
{'comment': 'im sure if you call your congressional representative and ask a recount, and if enough people do that, then maybe one will happen', 'created': '2024-11-11 06:20:12', 'submission_id': '1goknyq'}
{'comment': 'I think these funds can be used for other races besides just the presidential race. \n\nAlthough I suspect any ballots cured would also be good for picking up more votes for Harris...', 'created': '2024-11-11 07:05:49', 'submission_id': '1goknyq'}
{'comment': 'No. It’s just normal practice to allocate money for things like lawyers and recounts in case they are needed. They’ve been doing that since before election day.', 'created': '2024-11-11 06:42:04', 'submission_id': '1goknyq'}
{'comment': 'They are helping to fund recounts in other races that are going to need them', 'created': '2024-11-11 11:13:24', 'submission_id': '1goknyq'}
{'comment': 'They need to.', 'created': '2024-11-11 06:26:18', 'submission_id': '1goknyq'}
{'comment': 'If they had a recount and by some miracle the result was actually changed, I believe we would have civil war 2.0 on our hands', 'created': '2024-11-11 16:58:15', 'submission_id': '1goknyq'}
{'comment': 'Recounts are performed by states. This is a fund for lawyers to have the resources to are things like postmarks, signatures, missing cover envelopes, curing ballots, etc. The states listed are all the states plus DC. There certainly aren’t recounts happening in all of them — some states are still counting the first time!', 'created': '2024-11-11 14:24:59', 'submission_id': '1goknyq'}
{'comment': 'Why does the electoral college still exist... 😫', 'created': '2024-11-11 16:53:19', 'submission_id': '1goknyq'}
{'comment': "I sure hope so. Why wouldn't we do a recount on the last election before democracy dies, just to be certain this is what the majority of voters wanted. I mean what's the harm? Best case, we find out the election was rigged. Worst case, MAGA has one more thing to laugh in our faces about.", 'created': '2024-11-11 16:05:02', 'submission_id': '1goknyq'}
{'comment': 'Cool. We should do a recount. And make damn sure that Starlink isn’t involved this time.', 'created': '2024-11-11 13:51:49', 'submission_id': '1goknyq'}
{'comment': 'Boycott Tesla!', 'created': '2024-11-11 17:43:05', 'submission_id': '1goknyq'}
{'comment': 'A recount will not change the result of this election. If Harris lost by 1,000 votes in one state, it might. But she lost by like 250,000 votes across 3 states. Now please stop.', 'created': '2024-11-11 06:40:34', 'submission_id': '1goknyq'}
{'comment': 'Recounts and pushes for recounts happen far more often than most of us think. \n\nThey are pointless and useless unless the vote margin is razor thin as in within 1000. \n\nI need you all to accept it is over. Unless hard evidence is presented otherwise, Donald Trump will be president of the United States.', 'created': '2024-11-11 13:25:50', 'submission_id': '1goknyq'}
{'comment': "Just do a recount, please. I know it won't change the results but I want to be absolutely sure.", 'created': '2024-11-12 03:13:26', 'submission_id': '1goknyq'}
{'comment': 'I sure hope so. There was a guy (tech guy) who explained in depth how the Russian bombs (threat) stopped scanning ballots. Easily hack able. I found him on threads. It’s worth a shot I’m all for a recount.', 'created': '2024-11-11 14:40:29', 'submission_id': '1goknyq'}
{'comment': None, 'created': '2024-11-11 15:24:14', 'submission_id': '1goknyq'}
{'comment': 'No. The vote has to be within a certain margin for there to be a recount. The vote isn’t within that margin in any/enough states to justify a recount.', 'created': '2024-11-11 07:35:53', 'submission_id': '1goknyq'}
{'comment': 'I doubt it to be honest', 'created': '2024-11-11 17:33:04', 'submission_id': '1goknyq'}
{'comment': "I'm not quite sure why they're recounting in ND lol we were never going to go blue here ever unfortunately. I still voted for her and blue down the ticket, but the day ND goes blue is the day the election was 100% definitely rigged 🤣", 'created': '2024-11-11 20:37:26', 'submission_id': '1goknyq'}
{'comment': '[removed]', 'created': '2024-11-11 21:34:10', 'submission_id': '1goknyq'}
{'comment': "It's 2024. I don't have to leave my house at all if I don't want to, but my state won't tell me my ballot was counted unless I go in person.", 'created': '2024-11-11 22:46:10', 'submission_id': '1goknyq'}
{'comment': 'Will the recount target the house races? That is a lot closer than the presidential election, and most races are within tiny margins.', 'created': '2024-11-12 00:43:02', 'submission_id': '1goknyq'}
{'comment': "If she doesn't call for it, then she doesn't care about us and has abandoned us and I hope she knows that's how we will think of her. I hope that sge feels the implications of that me and hundreds of thousands of disabled people will be losing our shelter, medications, and a lot of us will die. If or when I lose these things I will be one of many that will be\xa0 dead and I have to grapple with that.", 'created': '2024-11-12 11:02:01', 'submission_id': '1goknyq'}
{'comment': 'No.', 'created': '2024-11-11 06:28:00', 'submission_id': '1goknyq'}
{'comment': 'Don’t waste your money on this, a recount will not change the result. Save your resources, you’ll need it to get through these next four years.', 'created': '2024-11-11 23:26:24', 'submission_id': '1goknyq'}
{'comment': "that'd be like walter mondale asking for a recount against Reagan", 'created': '2024-11-11 07:48:36', 'submission_id': '1goknyq'}
{'comment': "As someone noticed earlier x45 got 322 electoral votes. The popular vote means nothing.\xa0 Hillary beat him in 16 with over 3 mil more popular votes. We're in it now for the next 4 years.\xa0\xa0", 'created': '2024-11-11 15:00:44', 'submission_id': '1goknyq'}
{'comment': 'The constant recount discussions popping up here and in the Kamala Harris channel just go to show the Republicans have no monopoly on conspiracy theories. She lost. By a lot. There will be no recounts or investigations into voter fraud because this was the most heavily monitored election in US history and no evidence has come out of any meaningful voter fraud.', 'created': '2024-11-11 17:31:21', 'submission_id': '1goknyq'}
{'comment': 'This blueanon conspiracy theory pandering shit is CRAZY, folks.', 'created': '2024-11-11 15:29:45', 'submission_id': '1goknyq'}
{'comment': 'definition of waste of money. you lost.', 'created': '2024-11-11 18:12:21', 'submission_id': '1goknyq'}
{'comment': 'Thanks for the reminder! On it.', 'created': '2024-11-11 12:05:04', 'submission_id': '1goknyq'}
{'comment': 'It would be great if it worked like that. Each state has their own rules for recounts. A 0.5% difference in the total votes the candidates receive is the most common limit for a recount to be an option.\n\nNone of the swing states are within a 0.5% margin. WI is the lowest with 0.9%.', 'created': '2024-11-11 13:58:10', 'submission_id': '1goknyq'}
{'comment': 'I just sent my email', 'created': '2024-11-11 14:24:07', 'submission_id': '1goknyq'}
{'comment': 'I did this Wednesday- I called our Gov and send an email to the Whitehouse.', 'created': '2024-11-11 14:41:15', 'submission_id': '1goknyq'}
{'comment': "My congressional reps are as follows:\n\nLindsey Graham\n\nTim Scott\n\nNancy Mace\n\n(I'm not holding my breath)", 'created': '2024-11-12 19:15:51', 'submission_id': '1goknyq'}
{'comment': 'Sadly my congressman is a Republican', 'created': '2024-11-11 17:29:53', 'submission_id': '1goknyq'}
{'comment': "They definitely need to and MUST do so right away, it is incredibly suspicious that 15-20 million votes all of a sudden just disappeared and everyone else is saying their votes haven't been counted", 'created': '2024-11-11 07:26:10', 'submission_id': '1goknyq'}
{'comment': 'Better to do it now before you we lose our democracy 🤷\u200d♀️', 'created': '2024-11-12 03:23:26', 'submission_id': '1goknyq'}
{'comment': 'Seriously! I just spent the last 4 years shitting on all those Stop the Steal idiots. And today I find myself asking “Yeah! Why were there so many ballots in PA that were straight Dem down ballot, but Trump at the top?!? Nobody does that. And what’s this shit I’m hearing about Musk’s software in the tabulating machines?!? WTF is going on??” I swear, this conspiracy bs is infectious. I’m overdue, I need to go get my flu shot! 😉', 'created': '2024-11-11 12:56:54', 'submission_id': '1goknyq'}
{'comment': 'It doesn’t matter. A recount is absolutely necessary to put this to bed for everyone. Leaving that unconfirmed is just irresponsible.', 'created': '2024-11-11 13:51:15', 'submission_id': '1goknyq'}
{'comment': 'More importantly, she conceded. Can she really do anything after that?', 'created': '2024-11-11 12:25:45', 'submission_id': '1goknyq'}
{'comment': 'That would make sense to me and it would be awesome if we could send more Democrats to Congress', 'created': '2024-11-11 22:22:50', 'submission_id': '1goknyq'}
{'comment': 'If she asks for a recount and pays for it there will be one.', 'created': '2024-11-11 08:31:26', 'submission_id': '1goknyq'}
{'comment': 'I wouldn’t be at all surprised if it comes out that Trump & his cronies (Elmo, in particular) figured out a way to game the system.', 'created': '2024-11-11 06:51:58', 'submission_id': '1goknyq'}
{'comment': 'Recount doesn’t mean they are saying voter fraud. Recounts have done in a lot of elections.', 'created': '2024-11-11 22:21:45', 'submission_id': '1goknyq'}
{'comment': 'And you’re the guy did it for four years and got arrested for trying to steal an election', 'created': '2024-11-11 22:22:29', 'submission_id': '1goknyq'}
{'comment': 'Talk about waste of money look what Trump did when he lost the 2020 election. He fought it for four years.\n\nHe also got himself involved in some illegal activities trying to steal the election. \n\nEveryone has a right to contest an election, but there does come a time when you have to give it up, which is not what Trump did and now you’re complaining about the other side', 'created': '2024-11-11 22:19:53', 'submission_id': '1goknyq'}
{'comment': 'Let take the time and call 538 reps', 'created': '2024-11-11 12:47:11', 'submission_id': '1goknyq'}
{'comment': 'What it sounds like you’re saying is, it’ll never work because Democrats are the only ones playing by the rules.. or you should’ve said that. \n\nImagine we’re all outside playing baseball, Dems vs MAGA.. MAGA hasn’t even taken the field and are up in the booth changing the scoreboard, Dems are warming up, practicing their fastball.. that’s how this looks and feels being a democrat in this climate.\n\nEven while we handed them every election since 2016, Dems spent all that time just warming up.. never got in front of anything! Eventually MAGA stopped taking the field.. smdh', 'created': '2024-11-11 15:27:44', 'submission_id': '1goknyq'}
{'comment': 'Those are for automatic recounts. But many states if it’s less than 1% then you can ask for one.', 'created': '2024-11-11 20:59:21', 'submission_id': '1goknyq'}
{'comment': "call anyways, fuck them. make them work. you're his constituent, he works for you", 'created': '2024-11-12 01:45:51', 'submission_id': '1goknyq'}
{'comment': 'It’s more like 5 million. Cali still has another 5 million alone plus other western states.', 'created': '2024-11-11 15:15:34', 'submission_id': '1goknyq'}
{'comment': 'and what about the votes from younger people who couldn’t be counted due to signatures being wrong? i feel like they should’ve waited a few days before calling it to let people fox their votes. idk why they start counting the day of. it’s stupid', 'created': '2024-11-11 07:32:12', 'submission_id': '1goknyq'}
{'comment': '“15-20 million votes” didn’t “all of a sudden” just disappear. Harris as of the count on election night received 20 million fewer votes than Joe Biden did in 2020. That is down to 11 million fewer, and will continue to drop slightly as final vote totals roll in. \n\nThe reduced turnout hurt, but didn’t truly make the difference in the election. In several swing states, including Wisconsin, Georgia, and North Carolina, Kamala received more votes than Biden did. A lot of the votes that “disappeared” are in more populous non-swing states, like Florida, Texas, and Massachusetts. \n\nAlso, while some of the election’s problems are caused by reduced turnout, some is also clearly voters switching from Biden to Trump. Granted, I too find it incomprehensible how you could be on the fence after the last 9 years, but those people are out there and made the difference this year. Not all of the 11 million (and dropping) votes are people who didn’t show up.\n\n“15-20 million votes” isn’t “suspicious”, it’s just nonsense. Let’s not engage in internet conspiracy theories about the election, let’s do real work to win the next one.', 'created': '2024-11-11 16:24:40', 'submission_id': '1goknyq'}
{'comment': "Is it really that hard to accept that she lost? Incumbent government's all around the world brought down by inflation, and unfortunately she's the sacrifice.", 'created': '2024-11-11 12:37:47', 'submission_id': '1goknyq'}
{'comment': 'Aw shit not blueanon', 'created': '2024-11-11 16:54:38', 'submission_id': '1goknyq'}
{'comment': 'Yup. It would be too late if we wait until democracy dies. We need to get ready to fight if we lose our democracy AND if something changed and they start a war. Thirdly, we do we need to start pushing back neo Nazis into their own mom’s basement because they’re getting too visible and comfortable enough to do this in public. We gotta stop them from escalating enough to do what Nazis did before WWII.\n\nWhich is attack people in the street to instill fear, regardless whether they held fascist beliefs or not. That’s how things start spiraling during the beginning of Hitlers reign. They felt emboldened and safe enough to be seen in the day light. Just as they do now. We need to ***Fight back.***\n\nhttps://preview.redd.it/69nsvv5mui0e1.jpeg?width=1290&format=pjpg&auto=webp&s=ef6c87df21bb654d2f45dfc6c5a161dce5dd95e7', 'created': '2024-11-12 21:23:46', 'submission_id': '1goknyq'}
{'comment': 'Multiple poly sci and statistic experts have said it’s very odd. And hackers and musk himself said how easy tabulators are to hack. \n\nIf they did cheat don’t you think they’d make the margin bigger to avoid recount? This is the opposite of 2020. And bomb threats were sent by Russia to areas that democrats likely won anyway to show “see no cheating”. \n\nWhat’s the harm in a recount? Nothing', 'created': '2024-11-11 15:19:33', 'submission_id': '1goknyq'}
{'comment': "Yes. That's a formality, not a law. She can turn around and say she won tomorrow. The votes matter, not what people say about them.", 'created': '2024-11-11 13:49:49', 'submission_id': '1goknyq'}
{'comment': 'I was wondering about this. I think things like victory declarations and congratulatory phone calls by candidates are performative acts. Not official. I don’t even think concession declarations or speeches are official, are they? I mean did she sign 50 official documents, one for each state, officially conceding? I think what makes an election result “official” in any state is that state’s legislative process in which it’s election results are certified and electors appointed.\n\nWasn’t this one of Trump’s plans? To get certain state legislatures to NOT certify their election results - set aside the voters - and instead have themselves vote to appoint electors, because (some? all?) states have that option. \n\nRegardless, I think there’s an official process and I don’t think it includes concession announcements by a candidate. It’s more likely the state’s SOS sending the results to their state’s legislature, to begin the certification process. However, I also don’t think recounts are automatic unless it’s statistically close or unless a candidate files a request or a court orders it, or something like that.', 'created': '2024-11-11 12:45:41', 'submission_id': '1goknyq'}
{'comment': 'Why waste the money?', 'created': '2024-11-11 12:38:43', 'submission_id': '1goknyq'}
{'comment': 'They already did: it’s all the voter suppression that was in places before the covid 19 pandemic forced them to improve access and handle a surge of volume in mail-in ballots which they didn’t really have to focus on before.', 'created': '2024-11-11 10:55:07', 'submission_id': '1goknyq'}
{'comment': 'In every state even though states have their own measures? And why have him win places like Michigan but then narrowly lose the senate seat?', 'created': '2024-11-11 08:38:14', 'submission_id': '1goknyq'}
{'comment': "How'd they do it in PA? Was governor Shapiro involved? Were the election workers in Philadelphia involved?", 'created': '2024-11-11 12:39:39', 'submission_id': '1goknyq'}
{'comment': 'Just no. Stop this nonsense. It doesn’t help anyone or anything.', 'created': '2024-11-11 06:53:48', 'submission_id': '1goknyq'}
{'comment': 'Congratulations. You are just as bad as MAGA. Screaming election fraud when you don’t like the result.', 'created': '2024-11-11 10:26:30', 'submission_id': '1goknyq'}
{'comment': 'I’m the guy?', 'created': '2024-11-12 16:53:28', 'submission_id': '1goknyq'}
{'comment': 'No, each state handles the election within the state and the states have followed their own rules for recounts in previous elections. There were only 2 states with less than a 0.5% margin in 2020, those had recounts. [This](https://abcnews.go.com/Politics/presidential-election-recounts-work-battleground-states/story?id=114992480) has a summary of the rules for recounts for each swing state.\n\n>Imagine we’re all outside playing baseball, Dems vs MAGA.. MAGA hasn’t even taken the field and are up in the booth changing the scoreboard, Dems are warming up, practicing their fastball.. \n\nYour analogy is great for why it’s highly unlikely recounts would change the outcome. Irregularities most likely aren’t in the vote counts, or at least not a high enough number to change the outcome. Think back to 2021, there were a lot of states pushing through new legislation for “Election Integrity” with Republican politicians claiming that was necessary to “restore voters’ faith in elections”, faith they helped destroy in the first place by pushing the election lies or being complicit by not speaking out against the lies. \n\nAZ, GA, NC, WI have Republican majorities in the state senate and house, but AZ and GA were the only 2 with Republican governors in 2021. GA also has a state election board with a very sketchy Republican majority. \n\nVoting Rights advocacy groups pushed back against some of the “Election Integrity” legislation through the courts. There were so many states passing so much new legislation though that it’s definitely possible voter suppression was successful for “Election Integrity”.', 'created': '2024-11-11 16:50:54', 'submission_id': '1goknyq'}
{'comment': 'Voter fraud applies to recounts, voter suppression does not. Legislation isn’t the only form of voter suppression. \n\nThere have been [groups of volunteers](https://www.houstonpublicmedia.org/articles/voting/2024/10/09/502367/thousands-of-north-texas-voter-registrations-challenged-by-just-a-few-people/) focused on “election integrity” in various counties in several states. They’ve been submitting excessive numbers of challenges to voter rolls using party affiliation on registered voter lists. Some started back in 2021. Voters were being urged to check their registration status regularly leading up to the election because of the standard voter roll purges and because of those groups. \n\nAt this point, changing party affiliation on voter registration seems like the best approach and not just to avoid suppression efforts. GOP in Congress that aren’t MAGA-R comply with MAGA because of the MAGA voter base. If they go against MAGA, the base will vote against them in the GOP primary. Large numbers of democrats changing party affiliation to Republican will give those members of Congress 2 voter bases to be concerned about for the primary, MAGA and “new republicans”. \n\nJan6th needs to be the day to change party affiliation to Republican. MAGA used violence and vandalism that day to try to steal the election and too many GOP members of Congress gave a free pass for DJT’s treason. Democrats don’t need violence or to even show up in DC on Jan6 to protest a felon that committed treason being allowed back into the Oval Office.', 'created': '2024-11-11 17:17:24', 'submission_id': '1goknyq'}
{'comment': 'Wisconsin is the only state with less than a 1% margin and the only swing state besides NV with a recount option if the margin is more than 0.5%. \n\nConsidering all the “election integrity” changes by states in 2021, recounts should be mandatory to compare how well the systems performed compared to the systems that proved to work really well in 2020 before the changes.', 'created': '2024-11-11 22:25:57', 'submission_id': '1goknyq'}
{'comment': "That's not the point, my point is that if a ballot is casted but hasn't been counted, then voters need to call their local electorate voting center, every vote matters", 'created': '2024-11-11 07:35:36', 'submission_id': '1goknyq'}
{'comment': None, 'created': '2024-11-11 16:49:02', 'submission_id': '1goknyq'}
{'comment': '“Election Integrity” legislation was pushed through in many states because of his election lies in 2020. Even states that did not have any speculation or lies about voter fraud used it as a reason to push through new legislation. They did not put that effort into dispelling the lies though. \n\nThis was the first presidential election since then. Skepticism is necessary given the lack of quality of the other candidate.', 'created': '2024-11-11 13:44:45', 'submission_id': '1goknyq'}
{'comment': "Yes. Yes it is, when we're talking about a party that lies, cheats and steals more often than they blink, and had billions of dollars at their disposal.", 'created': '2024-11-11 16:12:22', 'submission_id': '1goknyq'}
{'comment': 'Oh yeah, sure. Do the recount. These kinds of things always ought to be “audited” after the fact.', 'created': '2024-11-11 15:55:42', 'submission_id': '1goknyq'}
{'comment': 'Is not a waste of money given what is on the line and the unprecedented propensity for crime and fraud that the Republican candidate has demonstrated.', 'created': '2024-11-11 13:52:52', 'submission_id': '1goknyq'}
{'comment': 'If this is really the explanation that means our voting system is not representing the will of the people.', 'created': '2024-11-11 12:44:52', 'submission_id': '1goknyq'}
{'comment': 'Why? What’s wrong with questioning it? What if it turns out there are anomalies?', 'created': '2024-11-11 07:05:03', 'submission_id': '1goknyq'}
{'comment': 'I think it\'s healthy to question a fishy voter count. No one is pushing for a violent insurrection, like Jan. 6th, just looking at tge numbers and sweating their heads.\n\nTrump himself was questioning voter legitimacy hours before the voting ended. If anything, the dude might have had a point.\n\nI just wish we had one branch left yo do anything about it if there was foul play. There isn\'t, but still... Even if there were irrefutable proof of fraud, Mr. "I could shoot a guy on 5th Avenue," would never face consequences. \n\nThe guard posts are down. The fascists won.', 'created': '2024-11-11 08:13:26', 'submission_id': '1goknyq'}
{'comment': "You're going to freeze on that high road.", 'created': '2024-11-11 12:30:13', 'submission_id': '1goknyq'}
{'comment': 'oh yeah no i agree with you, i’m just saying that ALSO they shouldn’t waited to continue counting cause of the signature errors', 'created': '2024-11-11 07:46:09', 'submission_id': '1goknyq'}
{'comment': 'I agree that there’s value in reviewing the swing state results. However, I think realistically they’re not going to change very much if it all. \n\nPeople don’t go “conspiracy” when they have a conspiracy theory, they say things like “it is incredibly suspicious that 15-20 million votes all of a sudden just disappeared”. Which is what I was dismissing because it isn’t true. \n\nIf you have other ideas of what should be looked into, I’d be happy to read about them before dismissing them. But I don’t personally see anything from 2020, 2022, and 2024 that can’t be reconciled by turnout, ease of voting, and the electorate’s mood.', 'created': '2024-11-11 17:07:42', 'submission_id': '1goknyq'}
{'comment': 'Any battleground states do that?', 'created': '2024-11-11 14:30:06', 'submission_id': '1goknyq'}
{'comment': 'It is, quite literally, a waste of money, lol.', 'created': '2024-11-11 14:30:42', 'submission_id': '1goknyq'}
{'comment': 'Dingdingding!!! FoxCQC, come on down and claim your prize!', 'created': '2024-11-11 16:23:42', 'submission_id': '1goknyq'}
{'comment': 'Trump posted on his truth social Tuesday night that massive fraud and cheating was going on in Pennsylvania. Then he won it and now it doesn\'t matter. \nI think we should double check for him.for his sake. We did last time too. \n\nAlso the few times he mentioned "I don\'t need your vote we have plenty of votes" that is definitely something that is suspicious. Wether you win by 1 or 1,000,000,000 votes why not have as many people vote as possible.', 'created': '2024-11-11 07:15:13', 'submission_id': '1goknyq'}
{'comment': 'Questioning the integrity of our elections without real evidence harms our democracy by promoting the perception that we do not have free elections. Please stop', 'created': '2024-11-11 11:19:19', 'submission_id': '1goknyq'}
{'comment': 'There’s no fishy vote count. You just can’t cope with the results and want to change reality. Stop with this election denial BS.', 'created': '2024-11-11 10:27:31', 'submission_id': '1goknyq'}
{'comment': 'Yes, because it’s true and I’m so tired of this already', 'created': '2024-11-11 18:09:34', 'submission_id': '1goknyq'}
{'comment': "I get what you're saying, but I'm pointing out that these votes, even if they have the signatures not written properly, should still be counted because these people did not go all the way to the polls only for their votes not to appear and accepted by their local and state boards of elections", 'created': '2024-11-11 07:50:33', 'submission_id': '1goknyq'}
{'comment': None, 'created': '2024-11-11 22:04:43', 'submission_id': '1goknyq'}
{'comment': 'I haven’t checked, there really was a lot pushed through in a short amount of time. I know GA did and the MAGA/election denier majority on the state election board tried to take that even farther this year. DJT did a shout out to them during a rally in GA because they’d been doing things he liked. \n\nAZ, NC, WI also have Republican majorities in their Senate and House. AZ was the only one with a Republican governor out of those 3 in 2021. \n\nMichigan is the least likely because it was straight Democrat for Governor, House, Senate, Secretary of State and AG. PA is a mix of D & R but Idr what the legislature was in 2021. \n\nI’m in a solid red state. It has become more obvious the past few years that groups of red states are working together. They’re being directed by a group & that group provides legislation for the state to push through. It’s a culture war bandwagon, but it isn’t a coincidence they’re on the same bandwagons. The AGs work together (mostly the lawsuits to block most of what Biden tried to do) and the Secretaries of States work together. The “election integrity” crap was most likely part of that.', 'created': '2024-11-12 01:34:50', 'submission_id': '1goknyq'}
{'comment': 'That’s idiotic lol. It’s absolutely worth taking away the ability to say that the tabulation doesn’t match the physical ballot count.', 'created': '2024-11-11 18:12:26', 'submission_id': '1goknyq'}
{'comment': 'https://preview.redd.it/j4txvo20t70e1.jpeg?width=720&format=pjpg&auto=webp&s=6814ff2e3a2c427160fa36f7957042a5d00240f2', 'created': '2024-11-11 07:16:33', 'submission_id': '1goknyq'}
{'comment': 'It tells me their internal polling was as bad as the public polling. It’s not really surprising.', 'created': '2024-11-11 07:23:32', 'submission_id': '1goknyq'}
{'comment': 'A convicted felon and rapist just won. Election integrety is in the shitter.', 'created': '2024-11-11 12:29:49', 'submission_id': '1goknyq'}
{'comment': "You don't think Trump being president is harmful to our democracy? I say better safe than sorry. Play smart not stupid, recount.", 'created': '2024-11-11 16:14:51', 'submission_id': '1goknyq'}
{'comment': 'oooh yeah, that makes sense. sorry it’s almost 2am and i can’t read properly', 'created': '2024-11-11 07:51:19', 'submission_id': '1goknyq'}
{'comment': 'You are incorrect about the numbers. Updated numbers have her around 76 million votes and Trump 78. That means 2 million voted for Trump and roughly 3 just either did not vote or voted for third party. \n\nI appreciate you looking for answers, but the numbers are very easily searchable. Go to Nate silvers twitter account and he’s tracking votes as they’re coming.', 'created': '2024-11-11 22:13:01', 'submission_id': '1goknyq'}
{'comment': 'Election integrity is about ensuring free and fair elections. These elections were largely free and fair. \n\nWho Americans voted for is a separate issue.', 'created': '2024-11-11 17:48:44', 'submission_id': '1goknyq'}
{'comment': 'I understand, better get some rest so you can be relaxed. Sometimes these situations can stress people out', 'created': '2024-11-11 07:53:20', 'submission_id': '1goknyq'}
{'comment': 'Sure, burned ballots, bomb threats on polling places, general voter intimidation and disenfranchisement.\n\nI guess that\'s what passes for "free and fair" in the states?', 'created': '2024-11-11 18:51:33', 'submission_id': '1goknyq'}
{'comment': "No amount of burned ballots or bomb threats is acceptable, but the real question for free and fair elections is whether it might have affected the outcome of the election.\n\nThe USA is a country of over 330 million people, and about 150 million votes were cast. A couple of bomb threats or burned ballots is unlikely to make any difference in the outcome, especially given that Trump won clear majorities in the swing states he carried. \n\nAny level of voter intimidation is likewise unacceptable, but there didn't appear to be any large scale intimidation against voters. Any cases of intimidation or disenfranchisement should absolutely be heard by a judge, but until there is evidence if might have changed the outcome of the election (which means hundreds of thousands of millions of votes) we should not contest the election results.", 'created': '2024-11-11 21:37:43', 'submission_id': '1goknyq'}
{'comment': "> there didn't appear to be any large scale intimidation against voters.\n\nSorry, have we got a cross-reality internet connection working somehow?", 'created': '2024-11-11 22:02:21', 'submission_id': '1goknyq'}
{'comment': "Nothing that can't be resolved with a source if you have it", 'created': '2024-11-11 23:00:04', 'submission_id': '1goknyq'}
{'comment': '“I’m kind of like, more happy than upset,” Mario Alvarez said. “Because Donald Trump is going to help the country with the economy.”\n\nRon Howard: "but he didn\'t."', 'created': '2024-11-11 04:30:44', 'submission_id': '1goiru5'}
{'comment': 'I\'m so baffled by the economy thoughts. What specific legislation has Trump even discussed besides vague concepts and tariffs? I guess that\'s all that\'s needed.\xa0\xa0\n\n\n\n\n"Although the Alvarez family has friends and relatives who are currently undocumented, Mireya told Noriega she\'s not worried they would be deported under Trump\'s plan since "they\'re not breaking any laws."\xa0\n\n\nOof. I wonder what they think of Jim Banks rhetoric?', 'created': '2024-11-11 04:51:40', 'submission_id': '1goiru5'}
{'comment': 'This Latino voter has no idea how the economy works if he thinks Trump is gonna fix it.', 'created': '2024-11-11 04:28:29', 'submission_id': '1goiru5'}
{'comment': "So he thinks trump will be good for the economy, that his undocumented relatives won't get deported, and that trump speaks his mind. Everything about this is wrong. Gosh, I wonder why he thinks all this?", 'created': '2024-11-11 04:54:52', 'submission_id': '1goiru5'}
{'comment': 'Many Latinos who came here came to escape violence and crime in their countries. Whether that be from gang violence, political persecution, drug cartels, or just a high crime rate in the area they lived. \n\nSo when Trump and Fox News are feeding them fake or misleading videos of “migrant criminals” running rampant in blue states 24/7 while Trump is screaming “they’re letting all the fentanyl, and drugs, and criminals, the gangs and mentally ill and what not”, these people think oh hell no, we can’t go back to having our safety threatened. We can’t let criminals take over like we did in our countries.\n\nAnd because many are not educated, Trump’s messaging resonated with them. His propaganda works. \n\nRacism and sexism also plays a huge part. But especially sexism. Even my female aunts can say the most misogynistic things sometimes. \n\nAs a Latina, we tried to save them from themselves. Now they can reap what they sowed.', 'created': '2024-11-11 05:59:56', 'submission_id': '1goiru5'}
{'comment': '"Why this voter is happy Trump won"\n\nBecause they are an idiot. Copy and paste that 70 something million times.', 'created': '2024-11-11 04:56:59', 'submission_id': '1goiru5'}
{'comment': 'I saw this interview a couple days ago and I got so pissed.\n\nThey came here illegally in the 80s and now they just repeat the trump bullshit of all the illegals now being criminals 🙄\n\nDamn idiots', 'created': '2024-11-11 05:21:09', 'submission_id': '1goiru5'}
{'comment': 'Uneducated people! They legit admitted publicly that they came here illegally. 🤦🏻\u200d♀️ Trump is promising to denaturalize people who came here illegally, he’s going to cancel green cards, he’s going to deport asylum seekers and refugees. \n\nThey have no idea how the economy works. The kid voted for Trump because “he’s not afraid to speak his mind” \n\nYes they should be first in line to be deported. \n\nI am Latina, I can say this.', 'created': '2024-11-11 05:45:33', 'submission_id': '1goiru5'}
{'comment': 'I’m a Latino, I worked the polls and the amount of other Latinos I saw come in not knowing a lick of english and voting for the felon was ridiculous. I would say we had to void about 30% of the ballots because they would bubble in Trump in more than one circle. I mean he still lost here NY but what a disappointment seeing a lot of my people vote just to vote and not really knowing what the implications of this election were.', 'created': '2024-11-11 05:34:06', 'submission_id': '1goiru5'}
{'comment': 'I just read the article. That man and his wife came to the United States illegally but lucked out with an amnesty program in the 80s. The wife says they are different from the people coming here now. She says people coming here now are criminals on the run from law in their countries!They are HORRIBLE people.', 'created': '2024-11-11 09:07:56', 'submission_id': '1goiru5'}
{'comment': "What a fucking idiot. Trump's economic plans will only make shit worse when his tariffs take effect.", 'created': '2024-11-11 04:53:23', 'submission_id': '1goiru5'}
{'comment': "His wife (who did vote for Trump) said they're not worried about undocumented family and friends being deported since 'they're not committing any crimes'. Except, you know, being in the country illegally, which is a crime (just erratically enforced). The cognitive dissonance is breathtaking.", 'created': '2024-11-11 12:02:33', 'submission_id': '1goiru5'}
{'comment': 'Adios Amigo!!', 'created': '2024-11-11 05:16:07', 'submission_id': '1goiru5'}
{'comment': 'The last thing he said in the interview was, "do you hear leopards??"', 'created': '2024-11-11 04:30:26', 'submission_id': '1goiru5'}
{'comment': 'Denaturalize these assholes.', 'created': '2024-11-11 08:15:13', 'submission_id': '1goiru5'}
{'comment': 'These fools think grocery prices are the economy. They think presidents set prices vs it being corporate greed . They ignore completely that republicans are the ones who refused to sign the anti price gouging act screwing them and costing them money yet they vote for them . There’s no way to win against ignorance on that scale .', 'created': '2024-11-11 15:04:01', 'submission_id': '1goiru5'}
{'comment': 'Hope he gets deported.. fully legal? Too bad. Vote for Trump and I will laugh at your face being eaten.', 'created': '2024-11-11 05:40:07', 'submission_id': '1goiru5'}
{'comment': 'I am now realizing that people don’t know what tariffs are and/or that Trump is tariff happy.', 'created': '2024-11-11 06:07:14', 'submission_id': '1goiru5'}
{'comment': 'He and his wife came here illegally in 1981 and were given amnesty through Reagan. \n\nBut they see themselves as different from ones coming today. Wife literally says, “the ones coming now are criminals.”\n\nTheir incel 29 year old son said he liked how Trump spoke his mind. \n\nFuck this whole family. If you want to watch the interview you can see it here: https://youtu.be/uJqtqc1jzZQ?si=tcbmZGGqrvD-45-A', 'created': '2024-11-11 13:02:41', 'submission_id': '1goiru5'}
{'comment': 'He wants his in-laws deported. I get it.', 'created': '2024-11-11 04:48:41', 'submission_id': '1goiru5'}
{'comment': 'I am embarrassed for the ignorance in my latin community. Every time a republican is in control the economy gets worse, my people get targeted and racism and discrimination against us climbs. They don’t like us and we will never be one of them. Every immigration policy that has helped us has happened under a democratic control government, yet they still fail to ser that. \nWhat i find more terrifying is how trump was able to persuade Venezuelans and cubans that “socialism” is to be afraid of when kamala was somewhat a more moderate than other dems, and how they failed to see that the opposite extreme of “socialism/communism” is what trump represents. No wonder they let dictators get control of their country.', 'created': '2024-11-11 14:52:46', 'submission_id': '1goiru5'}
{'comment': "Mario and his wife were illegals in the 1980s!!! And got to stay because of Reagan's amnesty!!!\n\nI'm slow so tell me if the irony i see is real.\n\nHope to God they get swept up in Trump's deportations.", 'created': '2024-11-11 15:08:49', 'submission_id': '1goiru5'}
{'comment': 'As someone on the left who supported legal immigration, I feel hesitant about it now. They lean extremely right, and vote against their own interests. Nope, if you’re going to vote for a dictator, I don’t want you in my country. Cruel, I know, but my empathy meter is at zero!', 'created': '2024-11-11 17:58:55', 'submission_id': '1goiru5'}
{'comment': 'In one or two years: "What do you mean that I\'m no longer a citizen? Why am I being kicked out without a passport?"', 'created': '2024-11-11 12:46:56', 'submission_id': '1goiru5'}
{'comment': "I think a lot of Trump voters conflate the economy with what their share of it will look like, and also have a very weak sense of what it means to be in a society (that yes, has an economy too).\n\nI would get about a 5 digit tax break with Trump. But to enjoy that kick back I kind of need to not have emboldened racists in all corners of society, not have police be able to do *anything*, have a reliable education system, and I need my daughter to have her Rights back to be able to enjoy the tax break.\n\nPeople telling me how good the tax breaks are, or economy will be feels like someone offering me $15k for my house and them *really* not understanding how that doesn't even register to me as a trade-off worth considering.\n\nBut maybe this is why the reaching out to manosphere worked out. They would be the last to care about society or draw a connection. The young men aren't alright.", 'created': '2024-11-11 17:45:43', 'submission_id': '1goiru5'}
{'comment': "Talking about immigrants here --- Because he probably does not want any of his relatives to get over to usa. So he can always be the 'American' in the family. He wants to stay as only 'the american' uncle in the family. He's going to travel every year to his homeland and bring gifts and travel back to the USA, waving his USA passport, while the rest of the family back home look up in jealousy. ---- Trust me, this is a thing with immigrants.", 'created': '2024-11-11 13:39:55', 'submission_id': '1goiru5'}
{'comment': 'Not the smartest folks on the planet', 'created': '2024-11-11 15:08:51', 'submission_id': '1goiru5'}
{'comment': 'If he only knew how the economy works. Very sad. Wonder if he is ok with mass deportations? And using the military against American citizens like Trump said he wanted..', 'created': '2024-11-11 12:26:18', 'submission_id': '1goiru5'}
{'comment': "Will this idiot share the same sentiment when they're treated like second class citizens by white Nationalists who campaigned on deportation dragnets?", 'created': '2024-11-11 14:55:07', 'submission_id': '1goiru5'}
{'comment': 'Well, I guess destroying something (the economy) can be translated loosely as fixing something. /s', 'created': '2024-11-11 08:08:44', 'submission_id': '1goiru5'}
{'comment': 'I just cannot believe this election. People voting blindly against their own interests, and those of the world, in favour of immunity for criminals, tax cuts for billionaires, conquests for dictators. It’s utter madness. Part of me just wants to go live in a log cabin somewhere and let people deal with the shitpocalypse they have chosen for themselves. I know that too many innocent people are suffering, to give up. But my god, what utter, utter stupidity.', 'created': '2024-11-11 14:20:22', 'submission_id': '1goiru5'}
{'comment': 'Some of my Latino family and friends voted for Trump because they associate “how things” are with the president. In short, they don’t want 4 more years of not being able to afford anything, regardless of how much more they work or save. They don’t trust that KH will “fix” things. Regarding deportations, it’s been the same story over and over again. Democrats promise to make it easy for the working illegals to get their green card. The republicans promise to deport them. None of these has happened.', 'created': '2024-11-11 18:22:22', 'submission_id': '1goiru5'}
{'comment': 'Good lord people are so goddamned stupid. It almost makes me laugh.', 'created': '2024-11-11 21:47:49', 'submission_id': '1goiru5'}
{'comment': "Hey folks I am a 4th generation Hispanic here from Ca. \n\n\n\nI am going to explain something about newer or first generation Latinos that live in the US. \n\n \nThis is a harsh reality and it sounds racist, but it's true. \n\n\n\n\n\n Most of those 1st gen Latinos are (sadly) deeply deeply ignorant... \n\n \nA lot of them do not have high school educations or even college educations. \n\n \nMostly all of them come from very incredibly poor family histories where the only thing in THEIR life that matters is not being poor again. The see everything in their world through the lens of money and whether or not they have money and that they have access to that money. \n\n \nThey are very hard working people and very honest people. But they have an incredibly small world view. \n\n\n\nThe 1st gen folks think that trump will make the economy accessible to them and that their access to money/wealth will not be limited and hindered (this is not true).\n\n\n\n Unfortunately, this new gen voter does not vote for the Constitution because they don't understand it. \n\nThey don't understand it because they do not have a long history within their families understanding the Constitution and purpose that it plays in your life as an American.\n\n\n\n\n\nAgain, smaller world view.", 'created': '2024-11-11 23:26:50', 'submission_id': '1goiru5'}
{'comment': "And that demographic just lost the support they'd get from me bc of exactly this. \n\nSoon we'll have plenty of r/leopardsatemyface posts, and I'll laugh and laugh and laugh. \n\nYou voted for Trump and are facing deportation or struggling to make ends meet?\n\nFuck the fuck right off. \n\nDo NOT contribute to their go find mes or help them in any way. \n\nLet them reap what they sowed. \n\nMy girls don't have a choice anymore. \n\nDo not give emotional or financial support to them, and cut the MAGATs out of your life. \n\nActions fucking have consequences. \n\nOn the bright side, if legal voters for Trump get rounded up and deported, well, those are fewer votes next election cycle.", 'created': '2024-11-11 05:40:25', 'submission_id': '1goiru5'}
{'comment': '"Across the board, the economy was a top issue for Latino voters in this election" who will, going forward, have to spend much of their hard-earned money making sure all of their citizenship verification paperwork is current and organized since they will be stopped and processed every time they leave the house. Or maybe they will have to pay a yearly updated registration fee for a sticker they will have to have on their identification lanyards so law enforcement won\'t immediately detain them when they step out to check the mail. Jesus fucking Christ....', 'created': '2024-11-11 12:39:56', 'submission_id': '1goiru5'}
{'comment': 'Yea, stupid is as stupid does.', 'created': '2024-11-11 18:22:41', 'submission_id': '1goiru5'}
{'comment': ">The couple came to the United States from Mexico and Guatemala in the 1980s, crossing the border illegally as teenagers but later becoming citizens under President Ronald Reagan's amnesty program.", 'created': '2024-11-11 23:40:48', 'submission_id': '1goiru5'}
{'comment': 'Maybe he wanted a free ticket home.', 'created': '2024-11-11 21:03:12', 'submission_id': '1goiru5'}
{'comment': 'Payaso', 'created': '2024-11-11 22:56:24', 'submission_id': '1goiru5'}
{'comment': 'Always pulling the ladder up behind them, I got mine.', 'created': '2024-11-12 00:33:59', 'submission_id': '1goiru5'}
{'comment': 'My God! Is logic and reason gone now? Is critical thinking dead? People can be so stupid it’s shocking. Fuck them all!', 'created': '2024-11-12 01:30:47', 'submission_id': '1goiru5'}
{'comment': 'The stupidity of some Latinos blew me away.', 'created': '2024-11-12 12:23:50', 'submission_id': '1goiru5'}
{'comment': '', 'created': '2024-11-13 06:08:07', 'submission_id': '1goiru5'}
{'comment': 'This lady is upset that her kids “can’t even get their own houses”. My fear is that they will be moving out now, but will it be to a camp or across the border? He doesn’t care if they are illegal, all he cares about is the skin color.', 'created': '2024-11-13 13:24:18', 'submission_id': '1goiru5'}
{'comment': 'Can we stop with these bullshit troll posts? Good lord.', 'created': '2024-11-11 13:32:37', 'submission_id': '1goiru5'}
{'comment': "This 100%.\n\n\n\nSadly this type of comment doesn't reach Hispanic voters the way Republican messages do.", 'created': '2024-11-11 10:06:51', 'submission_id': '1goiru5'}
{'comment': 'The economy is in GREAT shape. J. Powell and the Biden Administration pulled off a nearly-impossible soft landing and no one cares because eggs.', 'created': '2024-11-11 12:25:04', 'submission_id': '1goiru5'}
{'comment': 'Haha dumb af. GTFO', 'created': '2024-11-11 04:50:03', 'submission_id': '1goiru5'}
{'comment': 'Well, she’s in for a big surprise. I wish someone would interview her again in a few years.', 'created': '2024-11-11 13:16:37', 'submission_id': '1goiru5'}
{'comment': 'And he won’t. But he will help himself.', 'created': '2024-11-12 05:21:19', 'submission_id': '1goiru5'}
{'comment': 'TFG bankrupted a CASINO. HTF does one even DO that?', 'created': '2024-11-11 05:41:27', 'submission_id': '1goiru5'}
{'comment': "I would love if Democrats had a blue tsunami in '28 after the inevitable collapse of the economy, but we know that the average voter has the memory to that of a dementia ridden goldfish and will probably just vote for whatever name they recognize more.", 'created': '2024-11-11 07:54:04', 'submission_id': '1goiru5'}
{'comment': "Sure, she's not breaking any laws...yet. Does she think the jackboots that will round up Latinos for deportation are going to know that at a glance? Does she think she's going to be able to leave the house and not be stopped for citizenship checks every. single. time?? Maybe she can get a Trump-Themed Trapper Keeper for all of her mandatory paperwork...", 'created': '2024-11-11 12:46:23', 'submission_id': '1goiru5'}
{'comment': 'The economy argument has massacred incumbent governments all over the world, the US is just the latest to fall to this trend. The problem is that the global inflation in 2021-2023 is seared into people’s minds, and they blame whatever political party was in power during that period. For us that’s the democrats. \n\nTo beat this, Kamala should have distanced herself from Biden more. She wasn’t really promising any new economic plans, it was just more of the same stuff Biden has been doing, which has been poisoned in people’s minds. Trump was offering new economic policy. People don’t care about the finer details of these economic plans, and when they see all the economists saying that Trump’s plan won’t work, they dismiss it because trust in our institutions is the lowest it’s ever been. \n\nThat’s why Trump won in my opinion. Kamala should have come up with an economic plan that the average person can see for themselves is different than what Biden has been doing.', 'created': '2024-11-11 05:28:12', 'submission_id': '1goiru5'}
{'comment': 'As soon as Trump is sworn in someone needs to report this to ICE.', 'created': '2024-11-11 06:40:59', 'submission_id': '1goiru5'}
{'comment': 'He played a successful businessman on TV. \n\nAnd when his signs say Trump: Low Prices / Kamala: High Prices, it’s kind of hard to argue with that.', 'created': '2024-11-11 13:44:40', 'submission_id': '1goiru5'}
{'comment': 'This is why we lose elections. \n\n“Trump will help the economy” is their message. It’s simple and can be understood easily and quickly. \n\nOur message was muddy', 'created': '2024-11-11 16:58:19', 'submission_id': '1goiru5'}
{'comment': 'Narrator: They were in fact, the first being deported.', 'created': '2024-11-11 23:25:13', 'submission_id': '1goiru5'}
{'comment': 'I recall more than one story about people just like them who, after Trump was elected the first time, had family deported and couldn’t believe it.\n\nI’m gay. You can bet your ass I know every negative thing every politician who has ever run for president since 1996 has said about me. I can tell you what policies they supported, and what they did for our community if they were elected. Even if some of the details are a little jumbled or fuzzy today, I can *easily* tell you which had positive attitudes and which had negative attitudes toward us. Failing all that—if a worm eats my brain tomorrow—I think I’d still be able to say which *party* has been better for my people.\n\nIf I were a Latino, you can also bet your ass I’d know what they said about my people, too.\n\nThis goes far beyond my typical rant of it being every American’s duty to be informed about all the candidates’ policies before voting. This is a member of an at-risk minority group not knowing that either they or their loved ones are in danger because they’re too lazy to clean the shit out of their ears and listen for ten minutes. Hell, fucking *google* “what are [candidate’s] views on Latinos and immigration,” and you’ll be better armed with information than this lazy asshole. Even if he had watched Fox News, he still would have heard about Trump’s policy to do “the biggest deportation in history.”\n\nFuck this guy. He’s a disgrace.', 'created': '2024-11-11 23:57:12', 'submission_id': '1goiru5'}
{'comment': "You are correct on that furthermore Trump's plan meant tariffs and trade wars very disastrous for the country", 'created': '2024-11-11 04:30:51', 'submission_id': '1goiru5'}
{'comment': 'No Trump voter does, not just Latinos.', 'created': '2024-11-11 04:40:30', 'submission_id': '1goiru5'}
{'comment': 'Of course they don’t. Deported see ya', 'created': '2024-11-11 04:49:12', 'submission_id': '1goiru5'}
{'comment': 'That’s most voters.', 'created': '2024-11-11 13:48:57', 'submission_id': '1goiru5'}
{'comment': 'he is that dumb', 'created': '2024-11-11 05:04:37', 'submission_id': '1goiru5'}
{'comment': 'Worse than idiot, hypocrite..', 'created': '2024-11-11 05:42:39', 'submission_id': '1goiru5'}
{'comment': "You are correct because the Latinos that voted for him got fooled even though in reality Donald Trump's platform is actually America for the white people something he took out of his ally the Hungarian prime minister Orban Did thanks to Tucker Carlson who went there", 'created': '2024-11-12 23:19:11', 'submission_id': '1goiru5'}
{'comment': 'Honestly, I hope Trump cancels out their amnesty, and forces them to the border at gunpoint.\xa0\n\nI’m done with these fucking idiots.\xa0', 'created': '2024-11-11 15:22:40', 'submission_id': '1goiru5'}
{'comment': 'agreed. ignorance isn’t an excuse for that kind of hypocrisy.', 'created': '2024-11-11 10:34:53', 'submission_id': '1goiru5'}
{'comment': 'No great loss...', 'created': '2024-11-11 05:42:09', 'submission_id': '1goiru5'}
{'comment': 'The leopards are coming to eat their faces', 'created': '2024-11-11 10:32:43', 'submission_id': '1goiru5'}
{'comment': "Correct and if you've taken economics and history class it meant imported good tax remember that's how Trump did it in the first term increased imported good tax then cause Trade war", 'created': '2024-11-11 16:35:31', 'submission_id': '1goiru5'}
{'comment': 'We gotta let go of the eggs thing. It’s just a stand-in for the whole goddamn grocery store. And it truly is ridiculous. The prices I mean. But the President doesn’t have an “executive price sheet” that they fill out in the Oval Office every morning, ffs. At this point, it’s just greedy as fuck companies and corporations gouging the shit out of us. Plain and simple. But these intricacies escape the low information voter.\n\nI think Dems gotta take a page from Trump. Yeah, I said it. Harris should have stood there at her rallies and shouted that she was going to “have all those greedy CEO bastards arrested and jailed for what they’re doing to the American people!” That’s the kind of populist crap those people want to hear. My god, MAGA folks would have started peeling away from Trump rallies and going to hers, striping off their red caps and tee shirts at the door, chanting “Lock them up!” Actually do it? Of course not.', 'created': '2024-11-11 13:23:55', 'submission_id': '1goiru5'}
{'comment': "When I showed my maga nephew that the current inflation rate is 2.4%, he said that number will be different from different news outlets and it's more like 17%. I said, what the fuck are you talking about, the federal reserve determines the inflation rate, not Fox or CNN. That's how fucking stupid magas have become, no base in reality, they live in a maga fiction.", 'created': '2024-11-11 15:48:29', 'submission_id': '1goiru5'}
{'comment': 'Yep! Demand destruction leads to deflation which leads to mass layoffs. Good luck America! I’ll enjoy the show.', 'created': '2024-11-11 13:15:28', 'submission_id': '1goiru5'}
{'comment': 'The thing is, average person doesn’t care about the process or circumstances, only the result. That’s why people are unhappy with the economy - they see that their groceries are more expensive.', 'created': '2024-11-11 15:32:52', 'submission_id': '1goiru5'}
{'comment': 'I bought two sandwiches, fries and a small ice cream from a gas station this week. \n\n$47\n\nThe sandwiches were good, but I embarrassingly said, that can’t be right, can I see the totals? It was correct. \n\nShit’s stupid. \n\nNot stupid enough to make everything massively worse by electing a fascist, and I realize Biden helped the situation and didn’t make it worse. But I can see why people are mad about prices. \n\nIt should have been labelled Trump’s Covid response inflation from day one.', 'created': '2024-11-11 15:42:41', 'submission_id': '1goiru5'}
{'comment': 'So soft we didn’t even BREAK the eggs, but they’re still pissed!', 'created': '2024-11-11 17:59:53', 'submission_id': '1goiru5'}
{'comment': "I'm a Democrat that voted for Harris but I have to emphatically disagree with you here. The economy is in great shape for the wealthy and upper middle class who are in high paying professional jobs and invested in the stock market. Not so much for the working/lower middle class (which is the demographic the most Americans fall into) whose pay has been stagnant for the past 20 years and are not invested in the stock market (because they have no extra money to save). It's hard for these people to be concerned with saving democracy and social issues when they don't know how they're going to feed their families or make rent at the end of the month. And no one is really talking to these people to try to understand their frustrations and come up with solutions that will help anyone who makes less than $50k/yr.", 'created': '2024-11-11 17:58:47', 'submission_id': '1goiru5'}
{'comment': 'Look, this is exactly the attitude that turns people off. The economy is great on paper. Rent and groceries, which people need to survive, are through the roof. A double wide trailer in my area, with three beds and a bathroom, is going for $3,600 a month right now. Five years ago it was $1,950. \n\nWages going up is great, but when it’s countered by everything else going up it’s debilitating. Condescension about “eggs” is going to continue turning people away. We need to address problems where they are at for people and not lift our noses. Now we’re going to pay for it.', 'created': '2024-11-11 20:53:40', 'submission_id': '1goiru5'}
{'comment': "The dems messaging is beyond awful and or doesn't even exist.", 'created': '2024-11-11 20:44:18', 'submission_id': '1goiru5'}
{'comment': "It is for white collar workers, but for blue collar, non union workers, not so great. Small businesses, especially rural ones fly under the radar of economists. J Powell's high interest rates killed residential construction. Now it's going to bounce back and make Trump look like he did something.", 'created': '2024-11-11 23:35:34', 'submission_id': '1goiru5'}
{'comment': "now rump's going for the bigtime, bankrupt a whole country!", 'created': '2024-11-11 06:10:37', 'submission_id': '1goiru5'}
{'comment': "That's not even that rare of a thing to have happen. Casinos are businesses like everything else, and can have competition like everything else.", 'created': '2024-11-11 20:30:37', 'submission_id': '1goiru5'}
{'comment': '~Average voter has the memory to that of a dementia ridden goldfish~\n\nSounds like the average MAGA voter to me', 'created': '2024-11-11 10:28:27', 'submission_id': '1goiru5'}
{'comment': 'You’re so optimistic thinking there will be another election. And, if there is an election, it will not be a fair election. They vote in Russia, and we see how well that works.', 'created': '2024-11-11 17:49:24', 'submission_id': '1goiru5'}
{'comment': 'We just learned that people will vote almost solely on their personal financial interests. If Dems managed to not get elected in that scenario where a fully GOP-controlled Congress crashed the economy in 4 years, they would never win another election again.', 'created': '2024-11-11 17:50:33', 'submission_id': '1goiru5'}
{'comment': 'Trapper keeper. Niceeeee.those slapped.', 'created': '2024-11-11 16:53:55', 'submission_id': '1goiru5'}
{'comment': 'The economy "sucks" but buy my gold-plated Trump brand trapper keeper for the low patriot price of $99!', 'created': '2024-11-11 22:55:04', 'submission_id': '1goiru5'}
{'comment': 'Very true on incumbents globally taking a hit.\xa0', 'created': '2024-11-11 06:01:46', 'submission_id': '1goiru5'}
{'comment': 'Kamala was going to be tied to Biden just like Democrats tied McCain to the unpopular GWB. Distancing herself from Biden was a fool’s errand. It also feeds into the “Why is SHE running and not him?” question. \n\nI think she had no choice but to defend the Biden record, which was a difficult but doable task. Something along the lines of “Great American Comeback”.', 'created': '2024-11-11 13:48:33', 'submission_id': '1goiru5'}
{'comment': 'If she “distanced herself from Biden” people would of called her disloyal!', 'created': '2024-11-11 13:27:05', 'submission_id': '1goiru5'}
{'comment': 'To me she lost the election during The View of all places when she said she wouldn’t do anything different from Biden. That shocked Americans who had been telling EVERYONE that the economy was in the shitter (whether true or not) and prices were too high. \n\nFrom the second Biden stepped down, he and her needed to have an understanding where they recognized their respect for each other but Kamala was going to have to shit on his economy to the public. But that would have presented a new problem for her since she was technically part of that economy. So she was fucked from the start. The Dems needed to listen to their non-voters instead of their skewed focus groups that all said “everything is cool, focus on identify politics to win!” They could have had an open primary and chosen someone outside the administration. But Biden dropped out too late. \n\nCompound this with their messaging being way off and it’s no surprise to see why they lost.', 'created': '2024-11-11 17:45:28', 'submission_id': '1goiru5'}
{'comment': "When did Harris say she'd have high prices?", 'created': '2024-11-11 14:37:14', 'submission_id': '1goiru5'}
{'comment': 'I was doing a play on words with the title of the article. I myself happen to be Latino btw.', 'created': '2024-11-11 04:50:58', 'submission_id': '1goiru5'}
{'comment': "I'd be willing to bet he's been fed it 24/7 from Fox.", 'created': '2024-11-11 05:06:13', 'submission_id': '1goiru5'}
{'comment': 'Everytime I watch the movie Grease, I think, this is the Great America that Trump has in mind. All white people, their “diversity” consists of only one hot Latina (cha cha), and an extremely sexist, homophobic and misogynistic society.', 'created': '2024-11-12 23:59:49', 'submission_id': '1goiru5'}
{'comment': 'Same. They fucked us. I hope they suffer', 'created': '2024-11-11 17:53:49', 'submission_id': '1goiru5'}
{'comment': 'Just about every time i read things like this I think of what LBJ said,\n“Never waste time with people you can’t depend on.”', 'created': '2024-11-11 06:07:31', 'submission_id': '1goiru5'}
{'comment': 'Honestly at this point we should just nominate president Comacho. He‘d be a million times better than trump and people might actually show up to vote for him', 'created': '2024-11-12 01:55:36', 'submission_id': '1goiru5'}
{'comment': 'Sounds like he is confused about what inflation means. Inflation is the rate of change in prices from period-to-period. Too many people think that getting inflation under control is the same as prices returning to pre-2020 levels. That would mean that the rate of inflation would need to be a negative number.', 'created': '2024-11-11 20:25:10', 'submission_id': '1goiru5'}
{'comment': 'Could your nephew possibly be referring to compounded inflation over the past 4 years?????', 'created': '2024-11-11 18:10:05', 'submission_id': '1goiru5'}
{'comment': 'How are people saying “enjoy the show” ? I need my job and retirement account…', 'created': '2024-11-11 13:25:28', 'submission_id': '1goiru5'}
{'comment': "It's not just groceries though. Everything has skyrocketed in price. Housing/rent. Water and electricity. Auto and homeowners insurance. Healthcare/Medical treatment. Vehicles (new and used). Appliances. Entertainment and travel. Everything has gone up in price exponentially and the working class is really being squeezed and they're angry about it.", 'created': '2024-11-11 18:08:23', 'submission_id': '1goiru5'}
{'comment': 'Both can be and are true right now. The economy can be in amazing shape while many people are having trouble making ends meet because the economy and personal finances are two different concepts with very different metrics. What I was originally saying is that based on the indicators that economists use to evaluate the economy, things are in amazing shape. At the same time, consumer sentiment is still low because everything has gotten more expensive.', 'created': '2024-11-11 20:28:58', 'submission_id': '1goiru5'}
{'comment': 'Do you mean this quote by [Trump as seen on the CNBC article? Quote is this “I say to the Republicans out there — congressmen, senators — if they don’t give you massive cuts, you’re going to have to do a default,”](https://www.cnbc.com/2023/05/11/trump-endorses-debt-ceiling-default.html) Basically it meant this Trump run the country like his business', 'created': '2024-11-11 07:20:28', 'submission_id': '1goiru5'}
{'comment': 'Sometimes, you just need a reset 🤷', 'created': '2024-11-11 18:12:43', 'submission_id': '1goiru5'}
{'comment': "Please do list well known casinos that have gone bankrupt in the last 40 years. \n\nI'll wait. \n\n(PS...well known/names, not mom and pop ops)", 'created': '2024-11-11 23:55:18', 'submission_id': '1goiru5'}
{'comment': "Something that got me was that the republican platform they ran with cannot comprehend the idea that someone could care about the future and other people without having an obvious personal stake in it.\n\nIE, someone without children has no stake in the future. Except that's not true. I will not, cannot, and probably should not have children and very few child relatives. I still care about the world that the next few generations will live in, even if I personally never see or benefit from it.\n\nIs it really impossible for them to comprehend altruism and compassion?\n\nEdit: ... then again, apparently over half of the country (or more, counting the people not voting) didn't care.", 'created': '2024-11-11 22:46:48', 'submission_id': '1goiru5'}
{'comment': 'I think you nailed it. The only issue is whether earned or not, Biden’s record to the average voter was historically bad. And if she distanced herself from him, everyone could have just reminded her that she is the VP. It was a losing prospect from the start.', 'created': '2024-11-11 17:48:03', 'submission_id': '1goiru5'}
{'comment': 'That’s a Trump slogan.', 'created': '2024-11-11 14:38:24', 'submission_id': '1goiru5'}
{'comment': 'Oh, I get it. My bad. I apologize.', 'created': '2024-11-11 04:57:56', 'submission_id': '1goiru5'}
{'comment': '“I got a three point plan! Number one: we got this guy, Not Sure. Number Two: He’s got a higher IQ than anyone alive! Number Three: He’s gonna fix everything!”\n\nSay what you want about President Camacho. He knew how to seek out “experts” rather than pretend and claim that he could solve the issues himself.', 'created': '2024-11-12 03:30:14', 'submission_id': '1goiru5'}
{'comment': 'Right and too many people do not understand that deflation means we are in a RECESSION.', 'created': '2024-11-11 21:09:10', 'submission_id': '1goiru5'}
{'comment': 'Likely. But that is not what the CURRENT inflation rate is.', 'created': '2024-11-11 19:11:19', 'submission_id': '1goiru5'}
{'comment': 'As long as your not retiring in the next few years, you will be good! As for a job, who knows. Good luck out there! I survived the 2009 crash and high unemployment, but it sucked for a minute.', 'created': '2024-11-11 14:23:28', 'submission_id': '1goiru5'}
{'comment': "When trump voters talk about the economy they are referring to their personal finances and their purchasing power now compared to when Trump was last in office. It is the same thing to them. The GDP and stock market performance means nothing to them because those things don't directly impact them. The way we measure the economy is outdated. We need to start looking at metrics that affect the average working class person.", 'created': '2024-11-11 21:07:46', 'submission_id': '1goiru5'}
{'comment': 'Okay.\n\nhttps://np.gov.lk/how-many-casinos-have-gone-bankrupt\n\nYou acted like this was going to be some impossible challenge.', 'created': '2024-11-11 23:58:26', 'submission_id': '1goiru5'}
{'comment': "So he misspoke and said the wrong word. Doesn't mean he's stupid. Let's say the compounded inflation over the past 4 years was 17%. (I don't know what it was and would assume it's actually higher.) Did the average American receive equivalent pay raises (matched to or more than the inflation rate) over that period of time? I think therein lies the problem. Most peoples' pay has not kept pace with inflation so they actually have less spending power than they did 4 years ago. I'm a Democrat but even I can understand the frustration.", 'created': '2024-11-11 19:53:58', 'submission_id': '1goiru5'}
{'comment': 'The 2009 crash put my career back like 10 years. I don’t think I could survive another at my age now.', 'created': '2024-11-11 15:48:00', 'submission_id': '1goiru5'}
{'comment': "What do you mean you survived the crash? You didn't die? You're not homeless? You're better off than if it didn't happen? We all survived the crash, the question is how far it set you back.", 'created': '2024-11-11 23:00:10', 'submission_id': '1goiru5'}
{'comment': "🤣 \n\nTrump is first on the list, and most of them are casinos NO ONE has heard of because they're nothing more than some random rich people try to make work. \n\nC for effort though. \n\nWas that the first Google result that came off, doofus?", 'created': '2024-11-12 00:01:56', 'submission_id': '1goiru5'}
{'comment': '>Trump is first on the list,\n\nOkay...? \n\nAnd...?\n\nDoes the rest of the list not matter because he was the first one or something?\n\n>and most of them are casinos NO ONE has heard of because\n\nBecause they got shut down.\n\nHow many casinos can you name off the top of your head? It\'s certainly going to be less the amount of entries on this list.\n\n>they\'re nothing more than some random rich people try to make work.\n\nWhat exactly do you think Casinos are? They\'re opened by rich people, that\'s why nearly all of these mention how much they cost to open on this list.\n\nYour dumb "mom and pop" casino strawman ignores that mom and pops don\'t have tens, to hundreds of millions of dollars to open casinos.', 'created': '2024-11-12 00:05:20', 'submission_id': '1goiru5'}
{'comment': "Alright, let's play your game. \n\nWhat you're proving is that TFG has as much business acumen as a bunch of start up wannabes. (Minus the couple of big names you provided out of what, over 20?)\n\nPlease, do keep providing this information.", 'created': '2024-11-12 00:34:49', 'submission_id': '1goiru5'}
{'comment': 'Your response got removed by the automod due to incivility.\n\nI voted for Harris.\n\nNot everyone who disagrees with you on a subject is a Republican.', 'created': '2024-11-12 00:47:56', 'submission_id': '1goiru5'}
{'comment': "Oh, okay. So you were just communicating in bad faith from the start. Got it.\n\n>What you're proving is that TFG has as much business acumen as a bunch of start up wannabes. (Minus the couple of big names you provided out of what, over 20?)\n\nBelieve it or not, businesses fail. Products fail. Look at how many products Google has put out and shut down. https://killedbygoogle.com/ Are we just going to pretend like Google, the fourth most valuable company in the world, is somehow a failure?", 'created': '2024-11-12 00:37:47', 'submission_id': '1goiru5'}
{'comment': "😂 no, Trumpet, I just debated with you. And good debaters know how to change their strategy to show what a shit show their opponent's argument is. \n\nBless your heart.", 'created': '2024-11-12 00:39:30', 'submission_id': '1goiru5'}
{'comment': None, 'created': '2024-11-11 08:00:20', 'submission_id': '1goirbl'}
{'comment': 'Bidead.', 'created': '2024-11-11 20:14:21', 'submission_id': '1goirbl'}
{'comment': 'i listened to this man a few weeks before the election. he was going around so sure harris would win. now hes acting like he knew all along, as if hes some election sage. I need all of these old outdated men to retire from politics and let the next generation do what they have to do.', 'created': '2024-11-11 14:12:44', 'submission_id': '1gohxil'}
{'comment': None, 'created': '2024-11-11 04:12:26', 'submission_id': '1gohxil'}
{'comment': 'LOL. The man who criticized Moms For Liberty...about 6 months after they were relevant, completely oblivious they were created by Steve Bannon.\xa0 \xa0', 'created': '2024-11-11 09:29:11', 'submission_id': '1gohxil'}
{'comment': "Stop trying to appeal to Republicans.\n\nYou can't, unless you become worse than they are.\n\n(And if you try to become worse than they are, they will just get even worse)", 'created': '2024-11-11 12:27:57', 'submission_id': '1gohxil'}
{'comment': 're-connect with the people. Find a centrist, populous candidate who through the open primary process moves away from showy celeb dominated events to Townhall style Q&A.', 'created': '2024-11-11 10:32:32', 'submission_id': '1gohxil'}
{'comment': 'Can this scrotum incarnate please, please, please shuffle off the stage? He’s been the tip of the spear for Dem defeat for two decades…', 'created': '2024-11-11 17:29:04', 'submission_id': '1gohxil'}
{'comment': 'James Carville needs to slither back into whatever swamp he slithered out of in the first place.', 'created': '2024-11-11 19:47:10', 'submission_id': '1gohxil'}
{'comment': 'https://i.redd.it/yzu19qoq170e1.gif\n\n😜', 'created': '2024-11-11 04:44:06', 'submission_id': '1gohvuw'}
{'comment': 'Never saw it, but I know it from the intro of Civil War by Guns N’ Roses', 'created': '2024-11-11 03:57:43', 'submission_id': '1gohvuw'}
{'comment': None, 'created': '2024-11-11 06:21:03', 'submission_id': '1gohvuw'}
{'comment': '4 years in the box', 'created': '2024-11-11 04:37:25', 'submission_id': '1gohvuw'}
{'comment': 'Some men you just can’t reach.', 'created': '2024-11-11 03:43:12', 'submission_id': '1gohvuw'}
{'comment': 'With all these stories coming about people now learning that they voted against their own interests I feel a sense of schonfreude. But being able to say "I told ya so" isn\'t gonna be enough to cope. Go up your antidepressants and get ready. Don\'t be complacent.', 'created': '2024-11-11 15:03:09', 'submission_id': '1gohvuw'}
{'comment': 'Harris and Trump should have had an egg eating contest.', 'created': '2024-11-11 03:52:18', 'submission_id': '1gohvuw'}
{'comment': '', 'created': '2024-11-11 05:01:38', 'submission_id': '1gohvuw'}
{'comment': 'Anyone is crazy to think that he WON’T interfere with future elections. Part of me thinks that he’ll try to stay in office after his term is up. And before he leaves, if he leaves, I’m sure he’ll try his hardest to fuck things up for the incoming president.', 'created': '2024-11-11 21:01:43', 'submission_id': '1gohvuw'}
{'comment': 'The primary, or even eventual victims of fascism are the fascists. ;p', 'created': '2024-11-11 22:59:11', 'submission_id': '1gohvuw'}
{'comment': '"what we have" is young people were too busy working and lazy and they don\'t care about human rights so they didn\'t vote', 'created': '2024-11-11 06:53:09', 'submission_id': '1gohvuw'}
{'comment': '[if you haven’t seen the movie…](https://youtube.com/shorts/C0NekLg6jxc?si=e6gAbN_DFNU1bvvs)', 'created': '2024-11-11 03:37:07', 'submission_id': '1gohvuw'}
{'comment': "Calling half the country all Nazis and telling women their sons and fathers are all sexist probably didn't help either.", 'created': '2024-11-11 05:56:30', 'submission_id': '1gohvuw'}
{'comment': '“It feeds the rich while it buries the poor”', 'created': '2024-11-11 04:00:56', 'submission_id': '1gohvuw'}
{'comment': 'Yeah, that fits too LOL', 'created': '2024-11-11 04:01:26', 'submission_id': '1gohvuw'}
{'comment': 'Tom Hanks. I nominate Tom Hanks. [https://www.oprahdaily.com/entertainment/g28380770/democratic-celebrities-list/](https://www.oprahdaily.com/entertainment/g28380770/democratic-celebrities-list/)', 'created': '2024-11-11 12:38:33', 'submission_id': '1gohvuw'}
{'comment': 'A sweaty balls scenario for sure. We can only pray that the destruction is only two years long and the Dems regain the house and senate in the midterms.', 'created': '2024-11-11 17:29:17', 'submission_id': '1gohvuw'}
{'comment': '… which is the way he wants it.', 'created': '2024-11-11 03:46:47', 'submission_id': '1gohvuw'}
{'comment': "And some women won't let you touch their pussy's 🤷🏻\u200d♂️ \n\n/s", 'created': '2024-11-11 04:38:44', 'submission_id': '1gohvuw'}
{'comment': 'It’s more than just complacency. Many people don’t know the facts. Many media outlets are just propaganda engines - and they’re really good at it. fElon Musk and Bezos only have their personal interests in mind. \n\nI know I shouldn’t think this much less say it out loud, it’s almost like you need to earn the right to vote. If you aren’t going to be responsible for your vote, then handover the keys until you are.', 'created': '2024-11-11 15:48:31', 'submission_id': '1gohvuw'}
{'comment': 'We all know Trump would win a fellatio contest\n\nEdit: And walk away with some cream on the face too', 'created': '2024-11-11 04:39:47', 'submission_id': '1gohvuw'}
{'comment': 'Think it woulda helped?', 'created': '2024-11-11 03:56:23', 'submission_id': '1gohvuw'}
{'comment': 'Lmao', 'created': '2024-11-11 03:53:35', 'submission_id': '1gohvuw'}
{'comment': 'Neither of which happened of course.', 'created': '2024-11-11 06:01:16', 'submission_id': '1gohvuw'}
{'comment': 'You can’t name an example of that actually happening, but think your media isn’t lying garbage.', 'created': '2024-11-11 07:21:10', 'submission_id': '1gohvuw'}
{'comment': 'None of that happened. But definitely know what you listen to.', 'created': '2024-11-11 14:02:52', 'submission_id': '1gohvuw'}
{'comment': 'Dave Bautista', 'created': '2024-11-11 12:42:17', 'submission_id': '1gohvuw'}
{'comment': 'Midterm elections? That sure is an optimistic take.', 'created': '2024-11-11 19:38:57', 'submission_id': '1gohvuw'}
{'comment': 'And so, he gets it.', 'created': '2024-11-11 16:05:09', 'submission_id': '1gohvuw'}
{'comment': 'I didn’t see that you actually put the whole speech in there lol. I’m kind of embarrassed', 'created': '2024-11-11 03:47:31', 'submission_id': '1gohvuw'}
{'comment': 'Yeah but if you’re a celebrity you can get away with it.', 'created': '2024-11-11 12:39:18', 'submission_id': '1gohvuw'}
{'comment': 'I definitely agree. My family is a lost cause as far as listening to me. They are gonna have to learn the hard way.', 'created': '2024-11-11 15:51:30', 'submission_id': '1gohvuw'}
{'comment': 'I felt bad for that mic', 'created': '2024-11-11 12:40:51', 'submission_id': '1gohvuw'}
{'comment': 'Now we’re talking. WWE and an actor. 👍', 'created': '2024-11-11 12:47:32', 'submission_id': '1gohvuw'}
{'comment': 'Without optimism, why bother getting up in the morning? Your defeatist attitude contributes nothing to the fight. If it becomes as bad as you insinuate, I plan on dying on my feet and not on my knees!', 'created': '2024-11-11 19:50:09', 'submission_id': '1gohvuw'}
{'comment': 'Nah, it’s worth quoting again.', 'created': '2024-11-11 03:50:43', 'submission_id': '1gohvuw'}
{'comment': "I intend to continue donating, volunteering, and voting for Democratic candidates, but people should be aware that one of the visitors to Mar-a-lago during Trump's exile was Viktor Orban, president of Hungary. Orban has thoroughly remade Hungary in his image by suppressing opposition parties, interfering in elections, and other autocratic activities.\n\nRemember that Trump tried to pass off false slates of electors for several states in his first term. Clearly not someone who has any regard for the rule of law. We should, in my opinion, prepare for the possibility that Trump will attempt to stop elections from happening, or interfere in numerous ways.", 'created': '2024-11-11 20:11:06', 'submission_id': '1gohvuw'}
{'comment': 'Agreed. He has no moral code. He also needs to be liked. Hopefully that juxtaposition gives us leverage to avoid his worst impulses. Stay mad and encourage others to resist. His ilk cannot come out the victors.', 'created': '2024-11-12 03:31:03', 'submission_id': '1gohvuw'}
{'comment': 'I’m from New York and was very concerned to see the shockingly small majority Democrats held in the state in this election. I found out this weekend that a friend’s husband chose not to vote. Regardless of whether or not his vote would have mattered, I was very bothered by it and can’t get it out of my head. It is a privilege that we are able to do this. Yes, our two party system is far from perfect. Harris wasn’t the best candidate. We know this. But not voting is your answer? I’m very disturbed by the apathy of him and many others.', 'created': '2024-11-11 03:14:14', 'submission_id': '1gogu97'}
{'comment': 'How could anybody sit out this election? I know Harris isn’t perfect but people who demand a candidate satisfy 100% of their personal opinions to earn their vote “cut off their nose to spite their face”.', 'created': '2024-11-11 02:52:00', 'submission_id': '1gogu97'}
{'comment': 'These razor thin margins are very telling. I wonder how much of a role that targeted disinformation played in swaying just enough people.', 'created': '2024-11-11 03:08:21', 'submission_id': '1gogu97'}
{'comment': "I can not see how the fuck I'll survive 4 more years of the shit coming", 'created': '2024-11-11 04:01:14', 'submission_id': '1gogu97'}
{'comment': "Five days later I'm still in a state of shock and disbelief that trump won. Is this country really so far gone from the days when Barack Obama won twice? In 2016 I could understand how he beat Hillary Clinton. But after four years of his disastrous presidency, and the following four years of chaos surrounding trump, including his train wreck of a presidential campaign, how could this country elect him for four more years of chaos? I just don't understand it. And I don't understand the Biden/Harris voters who flipped to trump this time. None of it makes sense to me.", 'created': '2024-11-11 03:48:54', 'submission_id': '1gogu97'}
{'comment': None, 'created': '2024-11-11 02:50:30', 'submission_id': '1gogu97'}
{'comment': 'Trump, before the election, telling his supporters to “Vote. Or don’t. We already have the votes we need.” \n\nIt is on repeat in my mind. He always tells on himself.', 'created': '2024-11-11 03:52:57', 'submission_id': '1gogu97'}
{'comment': 'Can someone explain how we had record early voting and turn out at the polls, but millions of people stayed home? doesnt that seem strange?', 'created': '2024-11-11 03:03:25', 'submission_id': '1gogu97'}
{'comment': 'Getting flashbacks to panic on election night', 'created': '2024-11-11 03:21:44', 'submission_id': '1gogu97'}
{'comment': 'And everyone still wants to call this race a blowout and bury the Democratic Party like there’s no recovery from this. Thats what I find most irritating. This was a completely ordinary loss and people are treating it like it was the biggest blowout of the century.', 'created': '2024-11-11 02:52:15', 'submission_id': '1gogu97'}
{'comment': "Harris wasn't my ideal choice either, but i would've picked a dead possum over trump. \n\nThe ramifications will be felt by everyone (non voters, maga) so I hope they're ready to eat crow then.", 'created': '2024-11-11 03:28:52', 'submission_id': '1gogu97'}
{'comment': 'Look at the democrats who won in those states. It defies logic that people split their votes in that way. I’m not buying it.', 'created': '2024-11-11 03:57:03', 'submission_id': '1gogu97'}
{'comment': 'The most critical is loss of the courts. Presidency lasts only 4 years', 'created': '2024-11-11 03:09:13', 'submission_id': '1gogu97'}
{'comment': '2028 if Dems are back on track, they will return back to winning big again flipping back already blue counties!. A lot of low iq minions just decided to vote for Trump because they think he is a god! One guy said to me he only voting for Trump because he was shot at, thats all. Some really brainwashed people are out there!', 'created': '2024-11-11 09:07:31', 'submission_id': '1gogu97'}
{'comment': 'For him to win all Swing states is bizarre, imho.', 'created': '2024-11-11 03:01:42', 'submission_id': '1gogu97'}
{'comment': 'Those margins don\'t account for people who voted 3rd party or in Nevada\'s case, the 1.3% of people who voted "None of these candidates"', 'created': '2024-11-11 03:38:28', 'submission_id': '1gogu97'}
{'comment': 'Shame on all the people that voted for a Dem governor, senator, or a progressive referendum and not Harris', 'created': '2024-11-11 04:02:51', 'submission_id': '1gogu97'}
{'comment': 'But was Dem turnout up or down in those particular states?', 'created': '2024-11-11 02:54:48', 'submission_id': '1gogu97'}
{'comment': 'I want a full hand count of all ballots. Too many irregularities', 'created': '2024-11-11 03:05:29', 'submission_id': '1gogu97'}
{'comment': "Damn, two of these states he didn't get the majority of the vote.", 'created': '2024-11-11 03:47:09', 'submission_id': '1gogu97'}
{'comment': 'If the election was closer I’d still be in disbelief but it’s crazy when there’s just the right amount of people voting or (not) voting to ruin the country.', 'created': '2024-11-11 03:06:09', 'submission_id': '1gogu97'}
{'comment': 'You should probably show the margins when you say “look at these margins”', 'created': '2024-11-11 04:12:43', 'submission_id': '1gogu97'}
{'comment': "You didn't actually list those margins.", 'created': '2024-11-11 03:43:18', 'submission_id': '1gogu97'}
{'comment': "That's recount territory", 'created': '2024-11-11 11:51:27', 'submission_id': '1gogu97'}
{'comment': 'Doesn’t look like a landslide to me.\n\nBut, sadly, the poseur president has won the election.\n\nOppose him and his minions at every turn.', 'created': '2024-11-11 04:16:46', 'submission_id': '1gogu97'}
{'comment': 'seeing this reminded me that 1. elections are won on the margins 2. it is close in almost every presidential election 3. there is a new ground game that is not figured out yet by us 4. there is an up hill battle to prepare with messaging, perception, planning, and more', 'created': '2024-11-11 13:12:57', 'submission_id': '1gogu97'}
{'comment': 'Or voted for stupid candidates like Jill stein.', 'created': '2024-11-12 01:26:18', 'submission_id': '1gogu97'}
{'comment': 'My 100 year old grandma early voted on her actual 100th birthday for Kamala in North Carolina. If she can do it, I think most people could 🤔', 'created': '2024-11-11 05:12:53', 'submission_id': '1gogu97'}
{'comment': 'Well, the rightward shift was much stronger in solid red and blue states. These are the states that Harris had a massive GOTV operation in and it looks like she did indeed GO that V, just not enough to counteract the much larger shift throughout the country.', 'created': '2024-11-11 02:51:09', 'submission_id': '1gogu97'}
{'comment': "This isn't normal. I'm not one to be into conspiracy theories, but we need a recount.", 'created': '2024-11-11 03:14:22', 'submission_id': '1gogu97'}
{'comment': 'People claiming that the third party votes wouldn’t haven’t mattered anyway, it’s not just about the numbers it’s about the ideology you spread that caused people to not only vote third party, but also protest vote, abstain, or just straight up vote red.', 'created': '2024-11-11 04:02:40', 'submission_id': '1gogu97'}
{'comment': 'The tyranny of a prince in an oligarchy is not so dangerous to the public welfare as the apathy of a citizen in a democracy.\n\n\n-Montesquieu', 'created': '2024-11-11 05:01:17', 'submission_id': '1gogu97'}
{'comment': 'This is very sad.', 'created': '2024-11-11 07:01:29', 'submission_id': '1gogu97'}
{'comment': 'I’m going with election fraud on this one.', 'created': '2024-11-11 03:12:20', 'submission_id': '1gogu97'}
{'comment': "We're sure those results are legitimate, correct?\xa0\n\n\nAs a concerned US citizen, how could I verify?\xa0", 'created': '2024-11-11 03:39:25', 'submission_id': '1gogu97'}
{'comment': 'He cheated.', 'created': '2024-11-11 04:04:30', 'submission_id': '1gogu97'}
{'comment': '"razor thin" but not when you consider the amount of votes separating. Wisconsin was won by 30K votes.', 'created': '2024-11-11 10:43:57', 'submission_id': '1gogu97'}
{'comment': 'Boycott Tesla!', 'created': '2024-11-11 12:03:18', 'submission_id': '1gogu97'}
{'comment': "I only blame those who have a preference, but don't vote", 'created': '2024-11-12 15:40:05', 'submission_id': '1gogu97'}
{'comment': 'Wish the 2020 voters had shown up, but I’m also glad this result shows Harris ran a good campaign with the time she had and was atleast able to regain the projected lost ground with Biden’s projections and instead of a Trump landslide he got a narrow victory.', 'created': '2024-11-11 04:57:40', 'submission_id': '1gogu97'}
{'comment': "Wait I'm confused.. MI and WI look like be got less than 50%?", 'created': '2024-11-11 03:56:13', 'submission_id': '1gogu97'}
{'comment': 'Musk rigged the machines. Full hand recounts need to be conducted in every battleground state. Putin, trump, and musk are colluding to turn America over to Putin. You will see the US pull out of NATO within a year.', 'created': '2024-11-11 15:40:12', 'submission_id': '1gogu97'}
{'comment': "I still think Elon rigged the election in Trump's favor.", 'created': '2024-11-11 15:42:56', 'submission_id': '1gogu97'}
{'comment': 'Traitors. All of them.', 'created': '2024-11-11 15:56:38', 'submission_id': '1gogu97'}
{'comment': 'Shame on those who voted for Stein or one of the other losers. And a pox on everyone who voted for trump.', 'created': '2024-11-11 21:13:23', 'submission_id': '1gogu97'}
{'comment': 'Those who didn’t vote are the enemy', 'created': '2024-11-11 04:25:37', 'submission_id': '1gogu97'}
{'comment': "There's just no way. Recount the votes.", 'created': '2024-11-11 06:18:24', 'submission_id': '1gogu97'}
{'comment': "Lack of concern for the voter sadly they took Donald Trump's misinformation machine had the Department of Homeland Security misinformation board still active it would have probably been Harris Win", 'created': '2024-11-11 04:32:05', 'submission_id': '1gogu97'}
{'comment': 'She would have won if there wasn’t mass voter intimidation', 'created': '2024-11-11 03:13:39', 'submission_id': '1gogu97'}
{'comment': 'Starlink hack', 'created': '2024-11-11 03:38:05', 'submission_id': '1gogu97'}
{'comment': 'I voted, in Georgia. Did no good.', 'created': '2024-11-11 02:49:58', 'submission_id': '1gogu97'}
{'comment': "There's plenty of blame to go around. \n\n* Millions of registered voters didn't vote\n\n* Millions of Americans didn't register to vote.\n\n* Voter turnout is the ultimate Achilles Heel for US voters. There's no excuse for turnouts among Democrat registered voters at levels below 70% as a national average. \n\n* Non-swing states are only regarded as such because of the strategic likelihood of voters to turn out. Many could be upsets if Democrat registered voters and Democrat-votinf Independents turned out at 70%+ consistently. \n\n* My non-swing state had 80% of all races featuring unopposed Republicans candidates.", 'created': '2024-11-11 09:31:35', 'submission_id': '1gogu97'}
{'comment': 'Dems got 81M votes for Biden, 70M for Kamala. If only Dems would have voted we could have won this easily. Not voting this time is going to cost us dearly, the damage may last for decades', 'created': '2024-11-11 05:37:04', 'submission_id': '1gogu97'}
{'comment': 'I can’t get over that there was a thin margin between a convicted felon and a professional who has decades of experience. There should be a large margin between the two. WTF 😬 Apparently Americans think the nuk codes are safer with the criminal.', 'created': '2024-11-11 08:58:23', 'submission_id': '1gogu97'}
{'comment': 'I hate to burst your bubble, but nothing here indicates margin. It shows Trump’s share of the vote and nothing else.', 'created': '2024-11-11 05:40:03', 'submission_id': '1gogu97'}
{'comment': "Maybe they aren't the ones at fault,so many voter registrations were purged shortly before the election", 'created': '2024-11-11 16:46:50', 'submission_id': '1gogu97'}
{'comment': 'So sad', 'created': '2024-11-11 16:51:40', 'submission_id': '1gogu97'}
{'comment': 'Hey, I only need 3,600,000 votes! Come on, give me a break.', 'created': '2024-11-11 19:35:06', 'submission_id': '1gogu97'}
{'comment': "im actually surprised how competitive Harris was in in NC & GA considering she's a Black woman. These are states that are sooo right-wing racist ppl still fly Confederate flags. I was sure Harris would take Michigan & Nevada though... the latter just because so many California transplants have relocated. Michigan hurts just because Dems have done so much to back union workers in all the auto-related industries in that state. Where's the loyalty?", 'created': '2024-11-11 21:25:08', 'submission_id': '1gogu97'}
{'comment': 'I hate how it’s making republicans think that they might win california anytime soon', 'created': '2024-11-11 21:36:35', 'submission_id': '1gogu97'}
{'comment': 'Pain is an excellent teacher. We are about to do a lot of learning.', 'created': '2024-11-11 23:55:40', 'submission_id': '1gogu97'}
{'comment': 'https://preview.redd.it/hvjbafkvdd0e1.jpeg?width=541&format=pjpg&auto=webp&s=44f23edc61fe4a402525c25fe9eafdc34a871618\n\nShame on those who did not get off their butts to vote... especially women.', 'created': '2024-11-12 02:02:27', 'submission_id': '1gogu97'}
{'comment': 'STOP THE STEAL!', 'created': '2024-11-12 17:01:24', 'submission_id': '1gogu97'}
{'comment': "Doesn't tell the full story. In Michigan for example the idiot jill stein voters gave her 15 PERCENT. they 100% gave trump Michigan", 'created': '2024-11-11 04:03:51', 'submission_id': '1gogu97'}
{'comment': 'How tf has Trump won every swing state by such thin margins.... TWICE!!', 'created': '2024-11-11 03:55:25', 'submission_id': '1gogu97'}
{'comment': 'It’s over 😩 it’s more shocking than 2016 🤯', 'created': '2024-11-11 04:38:39', 'submission_id': '1gogu97'}
{'comment': 'Which is to say Republicans, just like in 2016, will run out as if they have some "huge mandate" when in fact they won simply because people didn\'t like the Democrat nominee.\n\nThis has always been the problem with Republicans, no sense of history. Both 2016 *and* 2024 are exactly like what happened in 1992, speaking to when Bill Clinton won because Perot and Bush split the conservative vote. Bill Clinton understood perfectly that the country hadn\'t made some "huge left-wing shift" and immediately ran to the center-moderate stance of governing and won in 1996 with completely normal margins ("normal" as in it wasn\'t a fluke, people specifically voted *for* B.C., not just against the Republican, etc.)', 'created': '2024-11-11 04:50:36', 'submission_id': '1gogu97'}
{'comment': 'Not just shame on them. A curse from the very bowels of the deepest pits of creation. \n\nNot on their cows. Their cows are innocent.', 'created': '2024-11-11 06:15:41', 'submission_id': '1gogu97'}
{'comment': "Something that bugged me this election was the complete omission of housing costs. You kept hearing how good the economy was and how great the stock market was doing, but when the majority of Americans live paycheck to paycheck it's because of housing, not eggs. I used to have a great apartment in a great city for $750/months, that same apartment is $1700 today. I just felt like the biggest pain was not even addressed. They flopped with the fist time home buyer assistance because most people can't afford a house, even with that assistance. Renters are getting hosed and no one is talking about it.", 'created': '2024-11-11 08:14:44', 'submission_id': '1gogu97'}
{'comment': 'This is so tiring. \n\nThe people don’t *owe* you their votes. Black men don’t *owe* you their votes. Gay people don’t *owe* you votes and women don’t either. \n\nIt’s really simple. A really simple recipe.\n\nFigure out what people *actually* care about. Don’t tell them they’re wrong and stupid when it’s not the answer you and the other Grad students wanted to hear. And try to address those issues.', 'created': '2024-11-11 04:02:05', 'submission_id': '1gogu97'}
{'comment': 'Shame on you american democrats. Staying home on election day gave a green light to assholes all over the world. Shame. On. You.', 'created': '2024-11-11 05:05:48', 'submission_id': '1gogu97'}
{'comment': "Will the DNC learn and stop shoving unwanted candidates and demanding votes?? They should have never fucked with Bernie. Biden should never have run a second time. He shouldn't have dropped out last minute and replaced by a candidate who couldn't win against Biden. \n\nWill they run a fare primary IF there are elections in 2028 we will find out.", 'created': '2024-11-11 03:22:13', 'submission_id': '1gogu97'}
{'comment': 'it is starting to sound rigged.', 'created': '2024-11-11 05:55:51', 'submission_id': '1gogu97'}
{'comment': '[removed]', 'created': '2024-11-11 04:24:47', 'submission_id': '1gogu97'}
{'comment': "You say look at these margins and then don't post margins, you just post the % vote for trump.\n\nWe lost by more than 1% in every state you posted and in most of them by 2% or 3%. That's not exactly razor thin", 'created': '2024-11-11 05:48:10', 'submission_id': '1gogu97'}
{'comment': "It's that close and they're not going a re count????", 'created': '2024-11-11 15:26:00', 'submission_id': '1gogu97'}
{'comment': "IT DOESN'T MAKE SENSE", 'created': '2024-11-11 15:48:22', 'submission_id': '1gogu97'}
{'comment': 'So Trump basically kept his base and people didn’t show up to vote for Kamala. Makes sense, I wasn’t that high on her myself but I feel like her being in office would’ve been more of a net zero than Trump who is likely to push this bc outcry further right with republicans controlling house and senate as well as trump’s judicial appointments', 'created': '2024-11-11 18:22:41', 'submission_id': '1gogu97'}
{'comment': 'What about all the republicans who abstained or went to Harris due to ya know.. morals? Crazy that all we’re doing is in fighting and not pointing out the obvious or even allowing the possibility of questions to be raised… we’re just going with the serial cheater is batting a thousand huh?\n\nEdit: His swing state vote totals only make sense if they are looked at in black and white while giving democrats the greyest hue. There are good republicans out there that have standards, that have morals, that see character.', 'created': '2024-11-11 20:48:45', 'submission_id': '1gogu97'}
{'comment': 'A lot of democrats crossed the aisle', 'created': '2024-11-11 21:21:50', 'submission_id': '1gogu97'}
{'comment': 'Lots of 2020 Biden voters became Trump voters because of the economy', 'created': '2024-11-11 23:19:36', 'submission_id': '1gogu97'}
{'comment': "It's doesn't matter if they cheated. They own everything now. They'll just bury the evidence and lie in the media.", 'created': '2024-11-11 23:31:38', 'submission_id': '1gogu97'}
{'comment': "At the end of the day if you can't excite or motivate your base to vote for you then it's on the candidate not the people voting for you.", 'created': '2024-11-12 01:21:50', 'submission_id': '1gogu97'}
{'comment': 'Dopes listened to Ivan 🇷🇺 fucked and around are about to find out. Meanwhile garbadge goose stepped to.the polls', 'created': '2024-11-12 23:46:11', 'submission_id': '1gogu97'}
{'comment': 'Remember that votes are earned. It’s unfortunate that the threat of fascism wasn’t enough for some, but this underscores that you have to give people something to vote FOR, not just vote against.', 'created': '2024-11-11 13:32:20', 'submission_id': '1gogu97'}
{'comment': 'These are the kind of margins that make the losing party figure out what they did wrong so they can eke out the victory next time, but losing now means there is no next time. \n\nWe had one chance to make sure a criminal billionaire actually faced consequences and instead we voted to give up democracy itself.', 'created': '2024-11-11 04:01:09', 'submission_id': '1gogu97'}
{'comment': 'There was a lot of “Protest non-voting” done on the Democratic side by the younger voters.', 'created': '2024-11-11 06:06:26', 'submission_id': '1gogu97'}
{'comment': 'Shouldn\'t this trigger recounts in all of those states to audit the ballot tabulating machines? Sure, Trump "won" all 7 but we\'re really going to trust some computer programmer who doesn\'t reveal their code? (Yes I\'m aware that companies like Dominion have won defamation suits, I\'m not convinced the court system is equipped to educate jurors on just how problematic closed-source voting tabulation software is). You literally don\'t know what the code is doing if you can\'t see the entirety of the programming language. Elon musk said a single line of code could swing an election. I suspect he didn\'t stop at one line.', 'created': '2024-11-11 10:25:45', 'submission_id': '1gogu97'}
{'comment': 'Yea those numbers are way too close to each state has different amount population numbers. Makes no sense they’re that close. I think the boys club had too much too loose', 'created': '2024-11-11 13:06:01', 'submission_id': '1gogu97'}
{'comment': 'There was a tech guy on threads when the Russian bomb threat occurred during our elections. He was saying that the scanners were not scanning the write in ballots nor the ones at the polls. Linux system I believe which are easily hacked. I heard rumors about a recall across the board but just a rumor at this point. For the love of God, I hope it’s true. \nWe are going to be fucked', 'created': '2024-11-11 14:22:53', 'submission_id': '1gogu97'}
{'comment': 'Shame on the Democratic Party for abandoning its roots (union labor and working class Americans) and screwing over Bernie Sanders. FTFY', 'created': '2024-11-11 18:03:24', 'submission_id': '1gogu97'}
{'comment': 'in the swing states, people did vote...\n\nmaga got more new voters and flipped those they lost in 2020. this is a reflection that people did not like the incumbent and viewed harris as that. that\'s on the poor messaging on the economy and border. a lot more discussion was made on the matters of abortion and democracy. just a mistake in hindsight.\n\nthe woke culture has become more toxic and cringe as of late. see hollywood and critics of certain franchises. people are exhausted from "no big deals" being turned into outrages while they are struggling with more important things like high prices.\n\nwe know trump isn\'t the solution, but they don\'t. all they know is they have been pummeled with doom and gloom since 2020. trump and biden are at fault with that. here in 2024, however, trump isn\'t the incumbent.', 'created': '2024-11-11 03:17:41', 'submission_id': '1gogu97'}
{'comment': ' You sure some of these states didn’t purge voters before the election or found other ways not to count votes? Come on people wake up….you’re telling me 13 million democrats decided to sit THIS ONE out!? Wake up people.', 'created': '2024-11-11 11:08:21', 'submission_id': '1gogu97'}
{'comment': "It's the candidate and the party's job to motivate people to vote. Let's shame them instead of of further alienating voters by blaming them for our losses\xa0", 'created': '2024-11-11 11:35:40', 'submission_id': '1gogu97'}
{'comment': 'I give up. They deserve it', 'created': '2024-11-11 04:23:34', 'submission_id': '1gogu97'}
{'comment': "It's time to wake up and DO something, not blame voters. All 50 states showed shifts towards Republicans. New York was #1. \n\nThe hard truth is Democrats need to wake up and figure out why they didn't get those margins and get to work on regaining voters' trust FAST. \n\nThey also need to figure out messaging outside of the mainstream media in a big way.", 'created': '2024-11-11 04:54:39', 'submission_id': '1gogu97'}
{'comment': 'Or they stole the election that well.', 'created': '2024-11-11 06:24:11', 'submission_id': '1gogu97'}
{'comment': "Shame on the Democrats for not giving them a reason to vote besides harm reduction. Don't blame the people. Blame the establishment that's failing them. Democratic liberal elite have been at the helm for too long. Failed us too many times. Let the progressive left run the party. People will come out to vote.", 'created': '2024-11-11 06:16:58', 'submission_id': '1gogu97'}
{'comment': "The Democratic Party might do better to look at their lack of success nationally as a reflection of voter dissatisfaction with the Party. Criticizing your own voters is a good way to make them wonder if they are satisfied with you. I would suggest the Party get serious about the oppressive conditions poor and working people live under in the USA. I would suggest we lead with Medicare for all, then address income inequality by pulling money from the top back to poor and working communities. We don't need abandon our support for the principles that guide us. But we do need to understand that people who cannot make ends meet are past the point where conversations about principles hold much value.", 'created': '2024-11-11 16:24:29', 'submission_id': '1gogu97'}
{'comment': 'I understand your anger. \n \nShame wins zero votes. It breeds animosity, and focusing on blaming others prevents you from putting your attention and energy towards what you can control. I hope you work through your trauma and find your way to a more helpful frame of mind.', 'created': '2024-11-11 12:31:29', 'submission_id': '1gogu97'}
{'comment': 'The DNC played on easy mode and still managed to fail the tutorial', 'created': '2024-11-11 07:09:20', 'submission_id': '1gogu97'}
{'comment': 'The true far left wants this outcome. They\'d rather see Kamala lose than "enable" the democratic party any more. In fairness, this party is pretty broken.', 'created': '2024-11-11 16:34:26', 'submission_id': '1gogu97'}
{'comment': 'New jersey (safe blue) margin was less than arizona (swing) margin lmao', 'created': '2024-11-11 08:46:13', 'submission_id': '1gogu97'}
{'comment': 'https://preview.redd.it/06ea4960970e1.jpeg?width=1170&format=pjpg&auto=webp&s=82a31f9e593e06d6398f7c4541f7f7e7c1f77db0\n\nThe margin doesn’t look super thin any more but I suppose Biden had a larger margin?', 'created': '2024-11-11 05:24:43', 'submission_id': '1gogu97'}
{'comment': '[removed]', 'created': '2024-11-11 14:28:18', 'submission_id': '1gogu97'}
{'comment': 'I think a lot of men sat out due to gender bias.', 'created': '2024-11-11 14:52:20', 'submission_id': '1gogu97'}
{'comment': 'The only way to get out of this mess with the two parties is ranked-choice voting, which neither party will allow since it will decrease their power.', 'created': '2024-11-11 21:15:43', 'submission_id': '1gogu97'}
{'comment': "It's far more than a privilege. It's a fundamental civic duty. \n\nIt's the whole reason why we're doing this in the first place.", 'created': '2024-11-11 22:24:00', 'submission_id': '1gogu97'}
{'comment': 'Ironically, most of the people that will be hurt the most by tRump’s stated plans and policies are the people who chose to either sit out the election or chose to vote for tRump.', 'created': '2024-11-11 23:42:48', 'submission_id': '1gogu97'}
{'comment': "https://preview.redd.it/4f9w1meok60e1.png?width=768&format=pjpg&auto=webp&s=c1f2f360bc7838836326cefbee4204a5d5cd00a9\n\nThe initial narrative that 20 or 15 million of democrats sat out the election was wrong. All the votes haven't been counted yet. What happened is in some key swing states Trump won just enough votes.", 'created': '2024-11-11 03:08:06', 'submission_id': '1gogu97'}
{'comment': 'Weird how the left needs the perfect candidate and check all boxes. Republicans have single issue voters for them. Some need to lower their standards.', 'created': '2024-11-11 03:46:26', 'submission_id': '1gogu97'}
{'comment': '> How could anybody sit out this election? \n\nThey are deeply stupid and unserious people.', 'created': '2024-11-11 03:00:01', 'submission_id': '1gogu97'}
{'comment': 'They deserve everything that’s about to come 🤣', 'created': '2024-11-11 02:55:50', 'submission_id': '1gogu97'}
{'comment': 'This is probably the only time I’ll ever jump down this rabbit hole, but I think there was straight up fraud in certain circumstances - state level at the least. \n\nThere are a lot of people on social media stating that their votes (majority democrats) haven’t been counted, or have straight up disappeared. \n\nWhile you might say “but PaidOrgy, how is this any different to what Republicans pulled in 2020?”\n\nSure, it’s anecdotal and if there is a case, it should absolutely be reported, but the difference is -\n\n1. Trump and Musk telegraphed things for weeks, saying how “they have a secret” in regards to winning the race, that the voting machines were “easy to hack,” or that they “had enough votes, and didn’t need anymore.” \n\n2. Trump went on for years (at this point) about democrats rigging the election, going so far as to call Pennsylvania out for apparent voter fraud before they even started tallying votes - why would you do that? \n\nAnd in 2020, find me ANY Republicans who made similar claims that there votes were mysteriously not counted in whichever way. The majority of those disputing the 2020 election came from up top from people like Trump and his party, his base just parroted the words that they told them to parrot - there wasn’t a grassroots bone in its body. \n\nThe issue in 2020 was that there were supposedly millions of extra votes, not that votes were straight up not being counted.\n\nMake it make fucking sense.', 'created': '2024-11-11 06:07:05', 'submission_id': '1gogu97'}
{'comment': 'Millennials and Gen Z were too busy posting Boomer memes to vote. 🤷\u200d♂️', 'created': '2024-11-11 03:04:04', 'submission_id': '1gogu97'}
{'comment': 'So many people just not paying attention .. we live in a bubble by knowing too much', 'created': '2024-11-11 04:00:20', 'submission_id': '1gogu97'}
{'comment': 'Perfect is the enemy of good and it will be the downfall of the Democratic party.', 'created': '2024-11-11 09:44:39', 'submission_id': '1gogu97'}
{'comment': "I still don't believe anyone sit out the election, I highly believe that votes got lost. which means TRUMP CHEATED.", 'created': '2024-11-11 02:59:04', 'submission_id': '1gogu97'}
{'comment': 'So.mamt people did. \n\nI know people who completely sat out and then have been in literal mourning that she lost.\n\nLike how do people do that? What did they think would happen?!\n\nSoooooooo many people just stayed home', 'created': '2024-11-11 06:13:11', 'submission_id': '1gogu97'}
{'comment': 'Apathy - Lack of interest, enthusiasm or concern.', 'created': '2024-11-11 03:48:33', 'submission_id': '1gogu97'}
{'comment': 'I think some of it is because we’ve been hearing that it’s the most important election ever for almost 10 years now. \n\nShits dire, but it got overwhelming and I bet a lot of people tuned it out. \n\nMultiple texts a day trying to scare us into giving money, social media filled with doom and gloom, media taking every errant joke trump made and talking about why it is the worst thing ever, and all of the bs from the gop traitors. It’s just so overwhelming I can see why people would want to tune out.', 'created': '2024-11-11 03:49:16', 'submission_id': '1gogu97'}
{'comment': 'the hurricane lies probably hit those three states extremely hard.', 'created': '2024-11-11 03:16:51', 'submission_id': '1gogu97'}
{'comment': "With grit, determination, and raw spite. I'm going to try and stay up and active to spit in their faces as often as possible and help who I can. \n\nI don't know how hyperbolic you're being here, and hope you're doing okay. You aren't alone.", 'created': '2024-11-11 21:09:48', 'submission_id': '1gogu97'}
{'comment': 'Small Town life seems the best option.', 'created': '2024-11-11 04:02:42', 'submission_id': '1gogu97'}
{'comment': 'Inflation. I hate to say it but that’s really all this came down to. Americans are generally very uninformed and don’t pay attention to anything but their wallet. And the incumbent parties in every country have been getting voted out due to inflation since Covid.', 'created': '2024-11-11 06:42:59', 'submission_id': '1gogu97'}
{'comment': 'Please notice the downward trend for Latino voters', 'created': '2024-11-11 07:17:16', 'submission_id': '1gogu97'}
{'comment': 'People in this country are fucking stupid, self-obsessed, brain-dead, and/or easily swayed by propaganda. Or all of the above, I guess. General logic will never fully answer your question.', 'created': '2024-11-11 14:29:18', 'submission_id': '1gogu97'}
{'comment': 'For how strict those conservatives are on crime they sure don’t mind having a criminal as their president. Prison is for POC, when white people do it they get sent to the White House.', 'created': '2024-11-11 15:10:51', 'submission_id': '1gogu97'}
{'comment': 'On that note, Jon Ossoff’s senate term will be up in 2026, I wonder which MAGA doofus the GOP will find to run against him. Let’s see if whoever it is can out-doofus Herschel Walker, haha. It’s a high bar.', 'created': '2024-11-11 04:05:37', 'submission_id': '1gogu97'}
{'comment': "Why? Our laws require a runoff if no candidate secures 50%+1 for a non-Presidential race. Even in the scenario where we required it for all races, Trump is well above that in GA. *Biden* actually would've been forced into a runoff in 2020 in this scenario, not Trump.\n\nPretending things are closer than they actually are isn't helpful. It was absolutely a close election, but Trump won it decisively.", 'created': '2024-11-11 06:51:10', 'submission_id': '1gogu97'}
{'comment': 'Truth. He also accuses others of what he does himself.', 'created': '2024-11-11 04:16:52', 'submission_id': '1gogu97'}
{'comment': 'Recount.\n\n\nRecount.\n\n\nRecount.', 'created': '2024-11-11 09:47:06', 'submission_id': '1gogu97'}
{'comment': 'What would happen if we found absolute proof that Lump & his party had cheated? Would there be anything that could be done?', 'created': '2024-11-11 13:44:47', 'submission_id': '1gogu97'}
{'comment': 'What happened to all the new voter registrations?', 'created': '2024-11-11 03:28:00', 'submission_id': '1gogu97'}
{'comment': 'No. Republicans showed up to early vote at a much greater magnitude than other years. Dems and Republicans were tied in early voting going into Election Day, and dems usually have a substantial lead from it. That’s why the numbers were so high.', 'created': '2024-11-11 03:15:02', 'submission_id': '1gogu97'}
{'comment': "Not necessarily.\xa0 Most of the trends are in-line, such as mail-in ballots increasing a little more each year.\xa0 Record early voting might have been because Republicans weren't being told that early voting was bad, fraud this time and so a lot of early voting might have been Republicans, pushing a new record.\xa0 Overall voter turnout has been trending up the last few decades too.", 'created': '2024-11-11 03:17:18', 'submission_id': '1gogu97'}
{'comment': "It's not the scale of the loss that is concerning, it's the intention of the incoming administration to prevent all of us who voted against him from having the right to vote again.", 'created': '2024-11-11 02:54:00', 'submission_id': '1gogu97'}
{'comment': 'I think the scale of the loss is entirely based on the person they lost to. Criminal, rapist, traitor, Putin’s puppet, racist, sexist, really dumb and the rest goes on. Its sad that American voters literally sold out their country for cheaper eggs', 'created': '2024-11-11 03:03:53', 'submission_id': '1gogu97'}
{'comment': 'Thank you. \n\nShe got 71m votes, yet the media hasn’t reported on her vote tallies since Wednesday and everyone is treating it like it was a massive, indescribable, immeasurable blowout. 48% OF VOTERS UNEQUIVOCALLY DID NOT WANT TRUMP. 71 million. Millions in red and purple states voted against Trump. Just stop.', 'created': '2024-11-11 03:14:48', 'submission_id': '1gogu97'}
{'comment': 'The corporate media wants to make that claim. We need to keep finding decent journalistic sources not owned by oligarchs.', 'created': '2024-11-11 02:55:12', 'submission_id': '1gogu97'}
{'comment': '100 days to run a presidential campaign... smh', 'created': '2024-11-11 03:07:38', 'submission_id': '1gogu97'}
{'comment': "It is a blowout. This race never should have been close to begin with. A convicted felon is running for president who was twice impeached when he was president last time. He incited a violent insurrection in an attempt to overturn the election. \n\nIn any normal timeline, Trump shouldn't even be allowed to run. And even if he was allowed, it should have been a complete and total loss with a massive blue wave rebuking him.", 'created': '2024-11-11 03:06:27', 'submission_id': '1gogu97'}
{'comment': 'If we learned anything from the first admin, it’s that he’s gonna do the horrible shit he says he wants to do. \n\nThen he’ll be vindictive. \n\nSky won’t fall for 99% of us but yea… some rough days ahead.', 'created': '2024-11-11 05:05:16', 'submission_id': '1gogu97'}
{'comment': 'The man went 7-0 in swing states. That’s a blowout by today’s standards.', 'created': '2024-11-11 04:35:09', 'submission_id': '1gogu97'}
{'comment': 'A man would have won', 'created': '2024-11-11 04:27:08', 'submission_id': '1gogu97'}
{'comment': "I'm not buying it either.", 'created': '2024-11-11 04:17:56', 'submission_id': '1gogu97'}
{'comment': 'Is Harris even fighting this?\n\nOr has she quit?', 'created': '2024-11-11 08:51:29', 'submission_id': '1gogu97'}
{'comment': '> Presidency lasts only 4 years\n\nOnly because after that they\'ll just call him "king"', 'created': '2024-11-11 08:50:24', 'submission_id': '1gogu97'}
{'comment': "He's been saying for months that he has all the votes he needed. Elon had the fix in", 'created': '2024-11-11 03:15:27', 'submission_id': '1gogu97'}
{'comment': 'Bizarre and almost unbelievable really', 'created': '2024-11-11 03:06:17', 'submission_id': '1gogu97'}
{'comment': 'Indeed', 'created': '2024-11-11 03:09:10', 'submission_id': '1gogu97'}
{'comment': 'I read turnout was down', 'created': '2024-11-11 02:56:44', 'submission_id': '1gogu97'}
{'comment': 'Exactly.\nThese losses were all 1.1% to 3.5%, not exactly razor thin', 'created': '2024-11-11 06:06:31', 'submission_id': '1gogu97'}
{'comment': 'The ground game is the young “alpha” male YouTubers and bloggers that gave young males a place that made them feel wanted and a part of society. It is crazy how popular they are.', 'created': '2024-11-11 14:04:14', 'submission_id': '1gogu97'}
{'comment': 'Fuck that, argue that the cheating was so severe that it needs a re***vote***', 'created': '2024-11-11 08:52:19', 'submission_id': '1gogu97'}
{'comment': 'You can verify by the fact that there’s been zero evidence of direct large scale voter fraud. Trump was wrong to claim the election was rigged in 2020, we can’t suddenly say the same thing just because we lost.', 'created': '2024-11-11 05:23:29', 'submission_id': '1gogu97'}
{'comment': 'Here in MI every commercial for the last couple weeks was a political one. 80% were from billionaire PACs. one that was in almost every commercial break was literally screaming that dems were responsible for afganistan, crime was skyrocketing, millions of illegals were killing people, inflation was skyrocketing, and country was shit. literally easily proved BS. people are stupid.', 'created': '2024-11-11 03:29:23', 'submission_id': '1gogu97'}
{'comment': 'Kinda like how there were bomb threats made in major Democratic cities & ballot boxes destroyed in Democratic cities. Hmmm. Voter suppression.', 'created': '2024-11-11 03:20:50', 'submission_id': '1gogu97'}
{'comment': 'Voting always, always “does good” even if your candidate doesn’t prevail', 'created': '2024-11-11 02:55:53', 'submission_id': '1gogu97'}
{'comment': 'It did good. It just isn’t readily apparent.', 'created': '2024-11-11 02:56:17', 'submission_id': '1gogu97'}
{'comment': 'You did your job. When the world collapses you can feel good knowing you did what you could against this.', 'created': '2024-11-11 03:04:33', 'submission_id': '1gogu97'}
{'comment': 'Regardless of what happens they will blame their screw ups on the Democrats. We need to tell our story better.', 'created': '2024-11-12 00:23:48', 'submission_id': '1gogu97'}
{'comment': '💯💯💯', 'created': '2024-11-12 05:32:06', 'submission_id': '1gogu97'}
{'comment': "I'm not sure what you mean, but Jill Stein got 0.8% of the vote in Michigan. Trump won by about 1.4%.", 'created': '2024-11-11 06:29:14', 'submission_id': '1gogu97'}
{'comment': "i think a lot just stayed home.... they abstained in protest of rising rents & inflation. People will always vote with their pocket book, first & foremost. Harris was fighting an uphill battle, but she knew that. Clinton's campaign manager said it well... It's the Economy, Stupid!", 'created': '2024-11-11 21:33:48', 'submission_id': '1gogu97'}
{'comment': 'Did they though? We heard over and over how Trump was not winning new voters. Where did these "new voters" come from? All this about poor messaging etc. wasn\'t a thing until she lost. I\'m sorry, I don\'t buy it.', 'created': '2024-11-11 03:32:04', 'submission_id': '1gogu97'}
{'comment': 'New York is supposed to be one of the solidest blue states out there. Like a 15+ point margin at minimum, on part with California’s 20+ point margin. This is *bad* bad.\n \nBut what’s probably most emblematic is that Minnesota—the state whose very well liked Governor was on the ticket—went blue by a *LEAN* margin (under 5 points). If that hasn’t set the DNC headquarters into a fullblown panic attack, we truly are screwed in 2026 and 2028.\n \nWe didn’t win 2020 because America suddenly recognized the “wisdom” of the Democratic party. We won 2020–as 2016 and 2024 make very apparent— because Trump was so comically bad it was indefensible even in center-right circles.', 'created': '2024-11-11 09:50:27', 'submission_id': '1gogu97'}
{'comment': 'Right…my use of the term “privilege” meant that it is not afforded to many throughout the world and we should not waste it. You’re absolutely correct.', 'created': '2024-11-11 22:51:41', 'submission_id': '1gogu97'}
{'comment': 'the initial narrative came[ from a threads post](https://www.politifact.com/factchecks/2024/nov/07/threads-posts/no-20-million-democratic-votes-didnt-disappear-and/) and it spread like wildfire. facebook and twitter are terrible for false narratives. california wasnt even counted when that post came out. they just called CA because they knew it was going to Harris', 'created': '2024-11-11 03:56:48', 'submission_id': '1gogu97'}
{'comment': 'I mean some definitely did sit out, just probably not that many.', 'created': '2024-11-11 04:51:46', 'submission_id': '1gogu97'}
{'comment': 'And in WI, MI, NV, GA and AZ had higher turnout than 2020. And PA was about the same. The “missing” votes seemed to be in solid blue or red states, especially without any senate races.', 'created': '2024-11-11 15:08:07', 'submission_id': '1gogu97'}
{'comment': 'Just like last time when he asked Georgia to “find” approximately 12k votes? Only this time instead of having to find more votes, just have an internet sleuth eliminate the necessary number of votes and, voila! 20 million democrats stayed home.', 'created': '2024-11-11 21:04:55', 'submission_id': '1gogu97'}
{'comment': 'California is still at 75% I think, we have alot of voters', 'created': '2024-11-11 23:09:12', 'submission_id': '1gogu97'}
{'comment': "Ideally, the other side would raise theirs. But yeah unfortunately we're the party of higher standards, and generally more educated so that kinda goes hand in hand.", 'created': '2024-11-11 04:13:07', 'submission_id': '1gogu97'}
{'comment': 'We have to stop running women until the party has a plan to overcome gender and unconscious bias. We keep under estimating it and we fail to address it or confront it. It should not be hard to vote for a competent woman over a 34 times felon but bias is a b$&@# [Leanin.org Bias in Politics](https://leanin.org/data-about-gender-bias-in-elections)', 'created': '2024-11-11 14:58:27', 'submission_id': '1gogu97'}
{'comment': 'That’s what Obama meant when he said they cling to guns and religion.', 'created': '2024-11-11 08:04:15', 'submission_id': '1gogu97'}
{'comment': 'Yes- because the right wing people believe in blaming someone, and they are smart enough to vote for the candidate opposing their hated candidate. They realize they can’t have a perfect candidate, but they will do anything to fight against their opponent.\n\nThe left, the liberal ways of thinking create idealists, not realists.', 'created': '2024-11-11 07:35:26', 'submission_id': '1gogu97'}
{'comment': 'Weird how you go straight to blaming "the left". Progressives are—unsurprisingly, given their political enthusiasm—[the most active voting bloc for the Democratic Party,](https://www.pewresearch.org/politics/2021/11/09/political-engagement-among-typology-groups/) and in fact have a higher turnout rate than *any* bloc across the entire political spectrum.\n\nSo why focus on them, especially as they make up [only 12% of Dem voters](https://www.pewresearch.org/politics/2021/11/09/progressive-left/)? Wouldn\'t it make more sense to ask how we can increase turnout among Establishment Liberals and Democratic Mainstays (using Pew\'s terminology), who are much less likely to vote and who make up the vast majority of Dem voters?\n\nWhich of *their* boxes aren\'t being checked off? Isn\'t that far more important to figure out?', 'created': '2024-11-11 05:12:28', 'submission_id': '1gogu97'}
{'comment': '"unserious"...yes', 'created': '2024-11-11 03:23:03', 'submission_id': '1gogu97'}
{'comment': "But unfortunately we don't.", 'created': '2024-11-11 02:58:55', 'submission_id': '1gogu97'}
{'comment': 'Yeah, a small buncha idjits decided the fate of the whole country, but I also know better.', 'created': '2024-11-11 03:07:29', 'submission_id': '1gogu97'}
{'comment': 'This will affect all of us 😞, it all ready has. I am disappointed to be an American for the first time in my life. A majority of Americans voted for a sleazy felon, and the tea party crazy shit has all the power.', 'created': '2024-11-11 03:22:13', 'submission_id': '1gogu97'}
{'comment': 'Yes they do, 1000%', 'created': '2024-11-11 02:57:35', 'submission_id': '1gogu97'}
{'comment': "I completely agree with you. I'm always told though that if I start making claims like that then I'm being like the right. I don't care. I worked phones in Wisconsin and I am really surprised that we went red and especially Michigan. I've never limited myself to talking to just liberals eventhough I'd like to, but so many people said they voted for Harris. \n\nIf we think there is fraud I think we need to speak up about it. \n\nI guess I'm where you're at...make it make sense.", 'created': '2024-11-11 21:43:41', 'submission_id': '1gogu97'}
{'comment': "So what happened in 2016?\n\nI'm with you on the 'make it make fucking sense' sentiment, but let's not spread conspiracy theories as the right does unless there is glaring and apparent evidence that suggests fraud.\n\nWe need to remember that Kamala is a black woman, and this alone can easily explain the low voter turnout. We saw a similar phenomenon w/ Hillary, and we're seeing it again w/ Kamala.\n\nI feel that occam's razor applies here. What's more likely? \n\n1) GOP committed country wide fraud without leaving a shred of evidence?\n\n2) America isn't ready for a woman president, let alone a black woman president.\n\nI think #2 is far more likely.", 'created': '2024-11-11 22:54:28', 'submission_id': '1gogu97'}
{'comment': "Millennial here who did vote but you're very right.", 'created': '2024-11-11 03:31:22', 'submission_id': '1gogu97'}
{'comment': 'Of course they did. 1/3 of Americans **never** vote and they could collectively change the outcome of every single election.', 'created': '2024-11-11 03:12:53', 'submission_id': '1gogu97'}
{'comment': "Come on. We mocked them for 4 years for saying the same shit. Don't stoop to that level", 'created': '2024-11-11 03:01:03', 'submission_id': '1gogu97'}
{'comment': 'Are we Democrats going to mimic Trump and whine about the election being stolen from us?', 'created': '2024-11-11 03:12:15', 'submission_id': '1gogu97'}
{'comment': "Nope\n\nDon't fall into that goofy idea that a bunch of bad actors are throwing out. Elon did not somehow control the votes, there were not millions of ballots disappearing. \n\nShe lost, plain and simple.", 'created': '2024-11-11 03:23:08', 'submission_id': '1gogu97'}
{'comment': 'Which one?', 'created': '2024-11-12 12:36:50', 'submission_id': '1gogu97'}
{'comment': 'I’ll have to disagree with that. Small town life is MAGA country. Flags everywhere - not many regular American flags, Trump slogan flags and the modified American flags with the red stripes replaced with black stripes, and so on. Signs of all shapes and wording. And vehicles decked out excessively with anti-government, antivax and hardcore Trump stuff.', 'created': '2024-11-11 04:22:21', 'submission_id': '1gogu97'}
{'comment': "And they think that the few policy proposals he's made are going to reduce inflation? 20% tariffs? Mass deportation of our agricultural workers? Tax cuts for the wealthy? We truly live in a country full of idiots.", 'created': '2024-11-11 15:02:55', 'submission_id': '1gogu97'}
{'comment': "In their eyes he's not a criminal, his indictment was a baseless act of political revenge, and his conviction was invalid. They live in an alternate universe.", 'created': '2024-11-11 15:36:38', 'submission_id': '1gogu97'}
{'comment': 'It will most likely be Governor Brian Kemp, who is very popular here in GA. Will be an extremely uphill climb for Ossoff to keep his seat if that’s the case.', 'created': '2024-11-11 05:11:54', 'submission_id': '1gogu97'}
{'comment': "> I wonder which MAGA doofus the GOP will find to run against him\n\nNo MAGA doofus is running unless and until Kemp says he's sitting it out. He's term-limited and has eyes on the WH in 28 or 32, and he's a popular figure in the state. He is clearly the best R candidate for the race- all that remains to be seen is 1) if he wants it and 2) if he can survive the primary.", 'created': '2024-11-11 06:52:42', 'submission_id': '1gogu97'}
{'comment': 'whoops yeah I was totally wrong and clearly not thinking straight when I made that comment', 'created': '2024-11-11 07:11:22', 'submission_id': '1gogu97'}
{'comment': 'From my very limited understanding, yes, legal cases can be brought. But as far as I know from precedent (2000), it has to be before certification.', 'created': '2024-11-11 15:18:50', 'submission_id': '1gogu97'}
{'comment': 'That’s a whole separate monster that is unrelated to my point. My god, the amount of posts I’ve seen about “The Democrats lost because they have abandoned their voter base and will disintegrate by 2032,” and “Trump won in a HUGE blowout. Jesus, Kamala flopped,” and shit is obnoxious. You don’t win every election and we were always at a disadvantage because of COVID inflation. People have just way overreacted to this loss in general in terms of what it means for the Democratic Party.', 'created': '2024-11-11 02:58:20', 'submission_id': '1gogu97'}
{'comment': "This is what upsets me the most. It would be disappointing to lose to a normal republican, but I wouldn't feel that upset by it. But the normal republican party is gone. \n\nVoting for an adjudicated rapist was not a deal-breaker for people, his attempt to overthrow the 2020 election wasn't a deal-breaker, separating children from their mothers was cruel, the muslim ban was wrong, withholding aid to Ukraine, attacking reproductive rights, the list goes on from his 1st term and he said he wants to be a dictator this time. \n\nThe people who are struggling in this economy should listen to actual economists who all said Harris would be better, but instead they fell for propaganda and a grifter. People around me with flags on their lawn for him are also getting cosmetic work like new siding done on their house so I know they're not struggling to afford groceries. \n\nMy blue state of NJ voted more red than usual and my county flipped red. People on my community town Facebook page are worried about the multiple wildfires here due to the ongoing drought and voted for a climate change denier.", 'created': '2024-11-11 17:24:49', 'submission_id': '1gogu97'}
{'comment': 'You are spot on and I wonder if the missing votes ended up being Harris we would have an inverse situation of 2016 Harris Wins via EC but Trump Popular vote. This would mean he would carry out January 6 coup on its fourth anniversary cuz he knew he really wanted around', 'created': '2024-11-11 04:33:54', 'submission_id': '1gogu97'}
{'comment': "Biden should have stuck to his word and been a one term president. For such an impossible task he passed onto her, I'm proud of how she ran her campaign and to have voted for her.", 'created': '2024-11-11 17:30:14', 'submission_id': '1gogu97'}
{'comment': 'But it’s literally not…? This happens all the time. Trump won with the exact same map in 2016, with the exception of Hillary taking Nevada. Biden won with the same map in 2020 with the exception of North Carolina. Swing state sweeps are literally the norm and most common result in this era of political divisiveness. A blowout is Trump flipping blue states or winning the swing states by a heavily defining margin. He did neither of these things. He won the election by margins of 2, 1.4, and 0.9 percent in three states.', 'created': '2024-11-11 04:40:31', 'submission_id': '1gogu97'}
{'comment': 'Yup. See 2020.', 'created': '2024-11-11 05:37:15', 'submission_id': '1gogu97'}
{'comment': "They're working on a recount campaign.\n\nIt's been less than a week but the concerned whispers of fraud are reaching a crescendo.\n\nhttps://www.wsj.com/livecoverage/trump-harris-election-day-results-2024/card/harris-fundraising-fine-print-signals-recount-effort-FnEzM9U5gnWxE9JH3MNr", 'created': '2024-11-11 09:58:11', 'submission_id': '1gogu97'}
{'comment': 'Yeah this really has a very odd vibe to it. I’m not a conspiracy person, but I don’t see the most unpopular President of all time winning in a landslide like this', 'created': '2024-11-11 03:15:25', 'submission_id': '1gogu97'}
{'comment': 'By like a million votes or so. Basically nothing in the grand scheme of things. I think I saw turnout was up in a lot of swing states. People just often do this when the first election drops because California/other western states take a while to count (Cali is still not done counting). I think the projection is Harris lost 5 million voters and Trump gained 4.2 million', 'created': '2024-11-11 03:08:05', 'submission_id': '1gogu97'}
{'comment': ">You can verify by the fact that there’s been zero evidence of direct large scale voter fraud.\n\n\nThat is not a way to verify anything at all.\n\n\n>we can’t suddenly say the same thing just because we lost.\n\n\nThis cannot possibly be our excuse for covering our eyes and ears and trusting Republicans at their word.\n\n\nAsking for transparency is the absolute bare minimum we should be doing considering historical context\n\n\nIt's almost as if people got mad just for asking questions. This makes sense right?", 'created': '2024-11-11 08:24:05', 'submission_id': '1gogu97'}
{'comment': 'We really should stop the Republicans from putting lead in the water, before they are legally allowed to do that', 'created': '2024-11-11 03:30:36', 'submission_id': '1gogu97'}
{'comment': "I'm in shock about this... ESPECIALLY from women.", 'created': '2024-11-17 15:40:47', 'submission_id': '1gogu97'}
{'comment': 'Carvelle’s it’s the economy stupid was about undecideds. \n\nMost people vote for the party they are registered with regardless of the economy. People vote their values.', 'created': '2024-11-11 22:42:42', 'submission_id': '1gogu97'}
{'comment': "where did you hear trump wasn't winning new voters? how do you or anyone even know that when looking at the vote totals in the swing states? if you compare the totals from 2020 to 2024, you will see the trend that more people voted. in michigan, dems got less votes while reps got more. reps got more than what dems lost, which indicates that votes flipped and the remainder of what reps gained are new voters.\n\noverall, no indication that people didn't vote particularly in the swing states where it mattered. poor messaging is a reflection of that. people were most concerned about the economy and border. all harris gave were campaign promises that needed details instead of giving detailed discussions on abortion and democracy. all trump had to do with the economy and border was say he isn't the incumbent, and it worked.", 'created': '2024-11-11 03:42:30', 'submission_id': '1gogu97'}
{'comment': "That's the thing though. In the senate race between\xa0Kirsten Gillibrand and\xa0Michael Sapraicone, Kirsten Gillibrand (the incumbent democrat) won 4.4 million to 3.1 million with 95% of the votes counted as of today.\n\nThe incumbent Dem got 100,000 more votes than Kamala and trump got 300,000 more votes for president than Kirsten's challenger got for the senate race.\xa0Presidential elections are weird in that regard. There are people who came to vote for trump and trump alone. Not to mention he has a pull to him that gets his base fired up and the media talking.\n\nBut I wont panic. What will that do? We just need to roll our sleeves up and get to work. So long as the Dems improve on messaging and put a white moderate type of guy on the ticket, I don't see New York being this close next time.\xa0", 'created': '2024-11-11 10:32:13', 'submission_id': '1gogu97'}
{'comment': 'NY is 1 million votes blue ahead of RED, in a election where the Economy sucked, yes focus on communication and messaging but lets not freak out', 'created': '2024-11-11 23:05:04', 'submission_id': '1gogu97'}
{'comment': 'You’re linking an article regarding something separate. We aren’t saying the election was stolen, we’re saying people didn’t get out and vote like they did in 2020', 'created': '2024-11-11 05:31:31', 'submission_id': '1gogu97'}
{'comment': '[removed]', 'created': '2024-11-12 12:12:07', 'submission_id': '1gogu97'}
{'comment': "The left isn't just progressives, it can refer to everyone on the left side of the US political spectrum. It's also just a natural impact of having a more informed voter base, but does put us at a disadvantage against right- wing voters who gobble up Fox News", 'created': '2024-11-11 11:03:40', 'submission_id': '1gogu97'}
{'comment': 'Still, when the "left-wing" candidate says "I will put a Republican in my cabinet" it\'s kinda obvious that that will kill motivation amoung the left.', 'created': '2024-11-11 08:47:22', 'submission_id': '1gogu97'}
{'comment': 'I’m gonna miss the environment the most… 😔', 'created': '2024-11-11 04:09:34', 'submission_id': '1gogu97'}
{'comment': "I can weather what's coming\n\nMost who voted for this can't", 'created': '2024-11-11 03:15:54', 'submission_id': '1gogu97'}
{'comment': 'or our kids. I will be fine but half this country wants to make things worse for the next generation. Awful', 'created': '2024-11-11 03:30:44', 'submission_id': '1gogu97'}
{'comment': "In fairness, pretty much every time he lies it's a form of projection.\n\nWhy stop assuming that now?", 'created': '2024-11-11 05:32:04', 'submission_id': '1gogu97'}
{'comment': 'Trump said he had the votes and Elon said that it only takes one line of code to change answers.', 'created': '2024-11-11 03:22:37', 'submission_id': '1gogu97'}
{'comment': 'There’s a huge difference between verifying totals with a hand count and claiming millions of undocumented immigrants voted. The fact that we’re even concerned with how it looks is exactly why they didn’t ever let up on 4 years. They want to sow enough doubt that they can call us hypocrites for doing due diligence.', 'created': '2024-11-11 03:39:12', 'submission_id': '1gogu97'}
{'comment': "I hate this line of thinking. If he DID cheat, can we not say it because they said it incorrectly? Just letting it go is falling into their hands. PROVE to us this election was fair and we'll agree. I, for one, have serious doubts about the legitimacy of this election.", 'created': '2024-11-11 03:26:11', 'submission_id': '1gogu97'}
{'comment': 'They literally burned ballots.', 'created': '2024-11-11 08:48:09', 'submission_id': '1gogu97'}
{'comment': 'Fuck that', 'created': '2024-11-11 04:58:08', 'submission_id': '1gogu97'}
{'comment': "Yeah I'm not doing anything without evidence. I do think all the weird shit he said about not having to vote was weird.", 'created': '2024-11-11 06:47:29', 'submission_id': '1gogu97'}
{'comment': 'At this point, we need to stop to any level that will gain an advantage. The electoral map is always stacked.', 'created': '2024-11-11 18:26:01', 'submission_id': '1gogu97'}
{'comment': 'Not a conspiracy guy, but I do know that in 2020 if some of the voting tabulations were sent via an internet satellite system owned by a Democratic trillionaire, Republican heads would have exploded.', 'created': '2024-11-11 03:25:32', 'submission_id': '1gogu97'}
{'comment': "100% that's what they're going to do.\n\nAnd I'd love to believe that this would cause these Democrats and Republicans to see that their brains work essentially the same way, creating the same stories in their heads to make sense of a senseless world, and that this might lead to some genuine empathy and common ground.\n\nBut it is a senseless world, and that sort of thing doesn't happen here.", 'created': '2024-11-11 05:39:28', 'submission_id': '1gogu97'}
{'comment': "Alright, that's fair. I Iive in a small town so was just from my perspective knowing these Magats in particular. Or rather they know me and I'm not necessarily their target. Plus my resting asshole face keeps them at bay. I'm not a large man per se but I certainly don't scare by these asshats.", 'created': '2024-11-11 05:43:39', 'submission_id': '1gogu97'}
{'comment': 'Most people do not understand tariffs or care. They are low information voters or guzzle a firehose of misinformation. The party in power got blamed for inflation world wide.', 'created': '2024-11-11 16:29:52', 'submission_id': '1gogu97'}
{'comment': 'I think a lot of that is astroturfing or concerted narratives to demoralize us and make us feel like we’re such a minority we should shut up and just get with the program already.\xa0', 'created': '2024-11-11 03:03:38', 'submission_id': '1gogu97'}
{'comment': "How can you read Project 2025 and pretend like this was a normal election loss? Let people grieve. This will impact a lot of lives, families, and jobs. You don't get to decide how people cope with this result.", 'created': '2024-11-11 04:08:50', 'submission_id': '1gogu97'}
{'comment': 'I’m a vacuum yes but given the circumstances of this election I’d consider this a blowout. Considering a guy who was screaming about people eating cats and dogs not only kept his voter base but cut into some of the demographics that the dems do well with including the people he was insulting: yeah that’s a blowout. And the worry is that there is not going to be another election and that is a very real fear.', 'created': '2024-11-11 13:22:37', 'submission_id': '1gogu97'}
{'comment': '> the amount of posts I’ve seen about “The Democrats lost because they have abandoned their voter base and will disintegrate by 2032,”\n\n"I will put a Republican in my cabinet"...', 'created': '2024-11-11 08:49:26', 'submission_id': '1gogu97'}
{'comment': 'He never promised that, in fact, he stated that he absolutely would not rule out running for reelection', 'created': '2024-11-12 00:11:26', 'submission_id': '1gogu97'}
{'comment': "I've been disconnected from most of my news/commentary sources since tuesday for self-care reasons.\n\nHopefully this goes somewhere.", 'created': '2024-11-11 11:10:25', 'submission_id': '1gogu97'}
{'comment': "Precisely what I've been saying.", 'created': '2024-11-11 03:29:15', 'submission_id': '1gogu97'}
{'comment': 'We made fun of them a lot of saying this four years ago. Trump won the popular vote as well. He has a mandate and we failed.', 'created': '2024-11-11 15:35:16', 'submission_id': '1gogu97'}
{'comment': 'Would be better if we stopped the Republicans from lying on TV.', 'created': '2024-11-11 08:53:05', 'submission_id': '1gogu97'}
{'comment': "And you're saying Trump gave any semblance of a policy? It just goes to show stupidity as the winning factor. That's terrifying and sad.", 'created': '2024-11-11 03:54:37', 'submission_id': '1gogu97'}
{'comment': 'It sounds like because he didn’t program his base to vote down ballot they just…didn’t?\n\nOr that a bunch of people voted down ballot dem but when it came to president just…didn’t?\n\nThis election is so weird to me', 'created': '2024-11-11 14:37:30', 'submission_id': '1gogu97'}
{'comment': '> The initial narrative that 20 or 15 million of democrats sat out the election was wrong\n\nYou should read the thread before you comment.', 'created': '2024-11-11 05:44:07', 'submission_id': '1gogu97'}
{'comment': 'I’m hearing more about how this right wing media bubble has passively programmed people to be reflexively antagonistic to democratic ideas', 'created': '2024-11-11 14:42:54', 'submission_id': '1gogu97'}
{'comment': "And yet they're still more likely to show up to vote than anyone else, even in 2020 when the party went with the moderate establishment option over a slew of younger progressive options. The dedication is both inspiring and very sad.", 'created': '2024-11-11 15:08:56', 'submission_id': '1gogu97'}
{'comment': 'Same, but having to weather several years instead of continuing to make progress is depressing as hell.', 'created': '2024-11-11 03:26:35', 'submission_id': '1gogu97'}
{'comment': 'It’s seventy degrees in November, little to no rain for several weeks up here in the Northeast. I think it is safe to say that you won’t be able to “weather what’s coming”, especially now that we have people who deny science being selected for key roles in the government.\xa0', 'created': '2024-11-11 22:09:16', 'submission_id': '1gogu97'}
{'comment': "I voted against that shitstain but I'm worried if I'm able to weather it. My parents voted for him and they'll probably be fine. He's not hurting the people he should be hurting, to quote a Trumper.", 'created': '2024-11-11 07:54:05', 'submission_id': '1gogu97'}
{'comment': "... the problem is pretty much that a razor-thin election only requires a very small number of votes to actually be changed or challenged. \n\nWhy pay Elon to do a shit job when the same voter suppression mechanisms that have been working in R's favor for years work just fine if you twist some thumbscrews and toss out a few dozen power cables?", 'created': '2024-11-11 05:37:54', 'submission_id': '1gogu97'}
{'comment': 'Okay, and Biden said he had the most extensive voter fraud organization in history.\n\nYou\'re taking things out of context to support a story you\'re choosing to believe, exactly like Trump voters did in 2020. Despite hating each other, your brains work the same way. It\'s surreal.\n\nTrump said he "had the votes" because he\'s a brash, arrogant huckster, not because he was planning some kind of mass conspiracy in the open.', 'created': '2024-11-11 05:22:42', 'submission_id': '1gogu97'}
{'comment': 'It’s the claim without evidence that is the issue. \n\nThere is no evidence to it being illegitimate. People are saying it just because they’re upset that we lost. Thats what it feels like to me', 'created': '2024-11-11 03:53:15', 'submission_id': '1gogu97'}
{'comment': 'Individual voters know if they turned in an absentee/mail ballot. In most places, they can look on the web site of the election administrator to see if their ballot was counted. If a person turned in a ballot at a drop box, but it was not counted, that is one shenanigan.\n\nIf thousands of voters find the same thing, that is clearly lots of shenanigans.', 'created': '2024-11-11 17:59:36', 'submission_id': '1gogu97'}
{'comment': 'Did we prove to them in 2020 it was fair?', 'created': '2024-11-11 03:26:54', 'submission_id': '1gogu97'}
{'comment': 'This is why I think it should be regular practice to hand re-count if the margins are 1% or lower. It would eliminate all question on whether machine counting mistakes contributed to a narrow win and it would prevent the blame game from happening. Our system should have built in protections for everyone’s sake.', 'created': '2024-11-11 03:36:07', 'submission_id': '1gogu97'}
{'comment': 'Brother you’re not even reading my comment correctly. Never did I ever state people didn’t have a right to grieve this election result or that it won’t be devastating for our country. I’m gay and literally terrified for my rights. But that has absolutely nothing to do with my comment. All I’m saying is that the amount that we lost the election by was absolutely nothing significant and thus, people painting it as a blowout for the Democrats and trying to tilt the party on its side are completely irrational. Literally nowhere in my comment did I say that this election won’t be negatively consequential or that people shouldn’t be upset.', 'created': '2024-11-11 04:13:18', 'submission_id': '1gogu97'}
{'comment': 'How dare a leader try to bring some unity this country by showing that people of different party affiliations can work together. How terrible.', 'created': '2024-11-11 10:23:00', 'submission_id': '1gogu97'}
{'comment': 'You\'re right. It was one of his advisors that said it. \n\n"If Biden is elected,” a prominent adviser to the campaign said, “he’s going to be 82 years old in four years and he won’t be running for reelection.” - Politco', 'created': '2024-11-12 00:31:13', 'submission_id': '1gogu97'}
{'comment': 'the policy didn\'t matter as he wasn\'t the incumbent. people felt that bad about their lives since 2020. most of the incumbents worldwide suffered because of this pandemic economy. the bright side is if we retain fair elections in \'28, dems aren\'t the incumbent and should have an easier time.\n\nand when you criticize the people\'s "stupidity," it\'s part that and part poor messaging by dems. we know they need a better media apparatus.', 'created': '2024-11-11 04:00:19', 'submission_id': '1gogu97'}
{'comment': "Which is why saying that was extra-stupid. You don't actively try to demotivate your best demographic, you pander to them.", 'created': '2024-11-11 16:39:23', 'submission_id': '1gogu97'}
{'comment': "Oh it'll be bad but I'm truly eager for the places that voted for him to get theirs. I'll send my kid to a state subsidized private school as Robert Lee high in the middle of nowhere has to shut down and I will laugh", 'created': '2024-11-11 03:28:29', 'submission_id': '1gogu97'}
{'comment': "I live in a place that doesn't get hit by many natural disasters. I'm far from the ocean and not near the mountains. It'll be worse than it would be with harris but I'll be fine", 'created': '2024-11-12 00:37:14', 'submission_id': '1gogu97'}
{'comment': 'Yes, we did. We had experts tell them that the vote was as fair and secure as it could have been.', 'created': '2024-11-11 03:27:43', 'submission_id': '1gogu97'}
{'comment': 'How dare we expect politicians to not negotiate with fascists.', 'created': '2024-11-11 11:12:03', 'submission_id': '1gogu97'}
{'comment': 'and from that same article, the campaign responded "There is no way we are promising not to run again, we\'re going to see where we\'re at in a few years"', 'created': '2024-11-12 01:32:08', 'submission_id': '1gogu97'}
{'comment': "Well sure, no doubt. But that's every year. They're continually taken for granted *because* they keep showing up. And that will probably never change because there will always be a new generation of young, highly active progressives eager to get disillusioned on their first electoral cycle.", 'created': '2024-11-11 17:20:15', 'submission_id': '1gogu97'}
{'comment': 'I just worry that they won\'t know they\'re getting theirs because of Trump and his "administration."\n\nSomehow it\'ll be spun to it being Obama\'s fault.', 'created': '2024-11-11 03:30:25', 'submission_id': '1gogu97'}
{'comment': "Rural America should burn, they keep doing this over and over and over again. It's time they reap what they sow.", 'created': '2024-11-11 03:46:02', 'submission_id': '1gogu97'}
{'comment': 'We don’t get hit by many natural disasters either and yet this summer got hit with a massive flooding event that wasn’t predicted. Tons of damage and a few deaths. The irony is that the area I live in was once said to be the safest area in the country from natural disasters.\xa0', 'created': '2024-11-12 01:02:44', 'submission_id': '1gogu97'}
{'comment': "Okay, so what if Republicans bring in a group of experts who lay out a very extensive case explaining why the 2024 election was totally legitimate, but you don't find it very persuasive? What then?", 'created': '2024-11-11 05:33:50', 'submission_id': '1gogu97'}
{'comment': 'Okay, I do remember him saying that. In the beginning he gave very wishy washy answers. "Biden said he wouldn’t make such a promise but noted he wasn’t necessarily committed to seeking a second term if elected in 2020." \n\nDo you think he shouldn\'t have been pushed out? I think he should\'ve just did the one term so that primaries could\'ve been held. \n\nFor those who only voted for Trump because things were better for them financially before the pandemic and unfairly blamed Biden, I don\'t think it would\'ve mattered. They were going to to against the current Biden/Harris administration. But given who the alternative is on the other side, I\'m still disgusted.', 'created': '2024-11-12 02:25:40', 'submission_id': '1gogu97'}
{'comment': 'Maybe the Dems should start trying to motivate their best voters to actually turn up, instead of chasing people who will never vote for them.', 'created': '2024-11-11 18:50:45', 'submission_id': '1gogu97'}
{'comment': 'As a lonely blue dot in flooding in a rural red ocean I can tell you that we are making sure they know who to blame.', 'created': '2024-11-11 04:09:08', 'submission_id': '1gogu97'}
{'comment': 'Constantly subsidizing them and protecting them from the politicians they vote for is the biggest error dems have made\n\nRural broadband has just connected them to conspiracies faster', 'created': '2024-11-11 03:47:35', 'submission_id': '1gogu97'}
{'comment': "It depends on who they are. Proof from a reliable source is very different than proof brought in by the opposition who simply says something is true. The simple fact is, the other side has lost all credibility due to the tens of thousands of lies Trump has spewed in the last decade. Give me a bipartisan explanation, and I'll accept it.", 'created': '2024-11-12 01:12:16', 'submission_id': '1gogu97'}
{'comment': 'I understand that in theory, but if you actually think strategically, it makes zero sense to spend most of your resources on winning over an 8% slice of the electorate which has a 90%+ chance of turning up for you regardless.\n\nThe real question is and has always been, how do you motivate the bulk of the Democratic base? For the last several election cycles, the answer has been "point out how terrible the alternative is", which has worked less than half the time.\n\nIt\'s insane to me that, with a billion dollars to spend on consultants, the Harris campaign couldn\'t accomplish the bare minimum of articulating a *vision* for the country, as that would require admitting that whatever was happening under Biden wasn\'t actually working for most people. Including, and especially, the traditional Dem voter base.', 'created': '2024-11-11 21:10:32', 'submission_id': '1gogu97'}
{'comment': "Okay, but the other side doesn't trust your sources either. Because it's not really about credibility, it's about the power of belief. If you believe strongly that Trump couldn't have won this election without cheating, it's going to be extremely hard to ever sufficiently prove to you that he did. \n\nThere's no bipartisanship in this sort of thing. What incentive is there for Democrats to spend immense time and money proving to their voters that they lost this election fairly? None, which is why you didn't see Republicans doing so in 2020.", 'created': '2024-11-12 01:23:34', 'submission_id': '1gogu97'}
{'comment': "> it makes zero sense to spend most of your resources on winning over an 8% slice of the electorate which has a 90%+ chance of turning up for you regardless.\n\nHow much of the electorate don't vote, again?\n\n> the bare minimum of articulating a vision for the country\n\nDems don't actually believe in a goal. They just believe in the process.\n\nIt's like someone driving a car towards a cliff and being happy that the engine is running smoothly.", 'created': '2024-11-11 22:04:31', 'submission_id': '1gogu97'}
{'comment': "You're right about that, but what if they were to discover that there WAS cheating. I mean, I know what *will* happen, but what SHOULD happen is the vote is held again with other means.", 'created': '2024-11-12 01:26:40', 'submission_id': '1gogu97'}
{'comment': ">How much of the electorate don't vote, again?\n\nNot sure why you're asking me this. Let me rephrase my point. Among progressives, the voter turnout is around 90%. Because of simple behavioral variance, it's very unlikely you'll get to 100% turnout for any political bloc. So you can certainly make an effort, but this returns us to the question of resource distribution.\n\nIf you're the DNC, how much effort are you going to spend trying to appeal to a few extra additional progressive non-voters, given that—best case scenario—you'd be gaining a 0.5% increase in support, primarily concentrated in districts and states that you're likely to win anyway?\n\nAt least 0.5% effort, probably! But the bulk of the resources are going to need to be directed at the vast majority of Dem voters whose support is far less dependable. I'm not saying I like this. I'm just saying it makes sense.\n\nThat said, I don't think the messaging for the two groups needs to be all that different. Bernie managed to thread that needle in 2020.", 'created': '2024-11-11 23:04:23', 'submission_id': '1gogu97'}
{'comment': "Let's get started on those midterms🌊", 'created': '2024-11-11 04:26:38', 'submission_id': '1gog378'}
{'comment': 'Are you me?? That has been my same reaction. I’ve always participated and voted blue, but this has pushed me to get much more involved. Hell, I feel overqualified to be president at this point.', 'created': '2024-11-11 03:16:12', 'submission_id': '1gog378'}
{'comment': 'If we get to have fair elections again, and if blue winners will allows to be seated. Midterms are the first test.', 'created': '2024-11-11 03:46:41', 'submission_id': '1gog378'}
{'comment': "Progressive victory helps candidates that agree with even just one progressive policy get elected to local offices\n\nI am running in 2025 as a Democrat.\n\nI'm a heroin addict with 10 years sober and I'm a felon.\n\nI sold some items at a pawn shop for a friend that ended up being stolen for drug money. I took the entire wrap.\n\nThe reason I share all that is that is my campaign message.\n\nI'm one of you. I've lived poor to lower class. I've struggled, I've survived, I've carved out a life and I've come back from the brink of death. All while living in your neighborhoods. Seeing your struggles and experiencing them alongside you.\n\nThis will be my highest paying job ever. I have a bachelor's in political science which may help.\n\nI won't fuck you for interests. I won't leave office with more than my wife and i's salary.\n\nRun for office. An autocrat felon just won the presidency. Almost nothing disqualifies you.\n\nEven if you loose you've gotten your message out.\n\nI have a son on the autism spectrum and I just had a beautiful healthy baby girl.\n\nI have a lot of skin in the game. \n\nRun for office.", 'created': '2024-11-11 04:48:16', 'submission_id': '1gog378'}
{'comment': 'Thank you. I am ready.\n\nI sell Dem merch -- only Dem, no MAGA, even though that would make me more money. My Dem stuff is still selling. Vote Kamala stuff is still selling. People are fired up.', 'created': '2024-11-11 04:03:50', 'submission_id': '1gog378'}
{'comment': 'The damage done this time will be substantially bad it will not be possible to repair after just four years. If democrats get control again the hurdle will be convincing Americans to stay the course and not vote republican after four years because everything couldn’t get fixed fast enough. This has been the same damn pattern for 40 something plus years.', 'created': '2024-11-11 03:00:51', 'submission_id': '1gog378'}
{'comment': 'https://preview.redd.it/iedxj46ca90e1.jpeg?width=800&format=pjpg&auto=webp&s=563b545de82d4162d1c639893f86f41a9fd0224d', 'created': '2024-11-11 12:15:29', 'submission_id': '1gog378'}
{'comment': "Also trying to join my local democratic party. It's under new leadership and has a tiny staff. If anyone is good with marketing and political movements for getting something real off the ground I'd love to chat and share ideas!", 'created': '2024-11-11 05:08:52', 'submission_id': '1gog378'}
{'comment': 'Influencing your own side is important.\xa0\n\n\nInfluencing everyone else is the key to victory, and the reason Republicans are being so successful right now.\xa0', 'created': '2024-11-11 10:34:59', 'submission_id': '1gog378'}
{'comment': "Good on you, I actually did the opposite and deregistered to Independent because of I'm fed up of tired, old, inept leadership from the Democrats.\n\nI'm not changing my ideals or personal philosophy mind you, just my official designation.\n\nBut hey if people like you bring about good change, you'll pull me back in. I really hope they make the changes they need to.", 'created': '2024-11-11 12:07:46', 'submission_id': '1gog378'}
{'comment': 'I don’t think so- we need new leaders. Trump has one thing right- change. He guarantees a break from the status quo. Without that we don’t win another national election. Furthermore, who exactly is the Democratic Party representing? Our donors are more reflective of that answer than our constituents and I don’t think that’s a winning solution. Bernie has it right- we need to get back to working for everyone who is impoverished and disadvantaged, not just those that are PC', 'created': '2024-11-11 17:41:22', 'submission_id': '1gog378'}
{'comment': 'Boycott Tesla!', 'created': '2024-11-11 12:30:34', 'submission_id': '1gog378'}
{'comment': 'We need a logo of a kicking mule.', 'created': '2024-11-11 16:00:27', 'submission_id': '1gog378'}
{'comment': 'Yeah I’m starting to feel better and I’ve decided I’m not waiting for someone else to organize, I can do it myself, be the change I want to see in a world', 'created': '2024-11-11 10:17:36', 'submission_id': '1gog378'}
{'comment': 'There will be work you can do before the mid-terms. State and local elections matter. Organizing makes even more of a difference at that level. It also acts as a way to strengthen the ability of your county party. This will make you more effective at mid-terms.', 'created': '2024-11-12 01:23:47', 'submission_id': '1gog378'}
{'comment': 'He used to Starlink to win an election! That fucker cheated us', 'created': '2024-11-11 03:55:38', 'submission_id': '1gog378'}
{'comment': "To start next time get a candidate that isn't a Hillary clone. I voted for her and she would be a good president but the masses want charisma and unscripted.", 'created': '2024-11-11 05:13:15', 'submission_id': '1gog378'}
{'comment': 'Thank you! This is exactly me and my sisters reaction. Let’s get going on establishing support.', 'created': '2024-11-11 14:58:12', 'submission_id': '1gog378'}
{'comment': 'Take the talking points away from them. They win on abortion and guns. Time to get on board', 'created': '2024-11-11 03:23:28', 'submission_id': '1gog378'}
{'comment': 'A day late and a dollar short.', 'created': '2024-11-12 02:04:45', 'submission_id': '1gog378'}
{'comment': "It's not enough to win the 2026 and 2028 elections. We need to completely banish fascism from American politics and culture. Had Harris won, it *might* have forced Republicans to reckon with extremism, but instead 2024 completed a paradigm shift in how the right does politics. \n\nSo now this is a *generational* struggle. It's not something we can fix by finetuning our messaging to reach this demographic or that. American politics is realigning, and fascism will keep graining ground until the left develops a new paradigm that can meet the challenges of our time.", 'created': '2024-11-12 03:00:27', 'submission_id': '1gog378'}
{'comment': 'No point in fighting until we figured out who didn’t vote.', 'created': '2024-11-12 12:57:52', 'submission_id': '1gog378'}
{'comment': 'Are we, are we really? Last time I checked, we even lost the popular vote. So yeah… we didn’t fight back hard enough', 'created': '2024-11-11 15:30:19', 'submission_id': '1gog378'}
{'comment': 'Unfortunately, I’ll believe it when I see it.', 'created': '2024-11-11 12:50:58', 'submission_id': '1gog378'}
{'comment': "Not me.\n\n\nI think I'll just take a break for 4 years.\n\n\nMight come back early if civil war breaks breaks out or crazy shit ( mass round ups, wars, or major unconstitutional things).", 'created': '2024-11-11 17:55:11', 'submission_id': '1gog378'}
{'comment': 'After trying to push two women on a country that did not want them, I hope democrats learned there lesson', 'created': '2024-11-11 05:47:53', 'submission_id': '1gog378'}
{'comment': 'Need to start messaging to swing voters in winnable senate races.', 'created': '2024-11-11 13:11:19', 'submission_id': '1gog378'}
{'comment': 'Maybe we can get the senate or the house before we lose healthcare, housing, the rest of our reproductive rights, democracy itself, and our lives in general. Only need to make it 2 years...\n\n\nHonestly a lot of people should be working on passports', 'created': '2024-11-11 22:38:40', 'submission_id': '1gog378'}
{'comment': "Well, you wrote coherent sentences. I can read and understand them.\n\n\nYou're overqualified. Ask for pay increase first.", 'created': '2024-11-11 05:34:05', 'submission_id': '1gog378'}
{'comment': 'You are.', 'created': '2024-11-11 04:09:21', 'submission_id': '1gog378'}
{'comment': 'Honestly I have been considering on running for congress seeing how little effort some of these people put in to get elected. My problem is I live in Washington tho', 'created': '2024-11-11 05:48:20', 'submission_id': '1gog378'}
{'comment': 'Midterms are always favorable for out-of-power party because the swing voters realize the president didn’t magically make their economic lives better. The chaos and decisiveness trump will bring will cure the trumpnesia many swing voters had.', 'created': '2024-11-11 13:09:22', 'submission_id': '1gog378'}
{'comment': 'That’s a big **IF**', 'created': '2024-11-11 05:34:42', 'submission_id': '1gog378'}
{'comment': 'Yes, Queen.', 'created': '2024-11-12 05:30:36', 'submission_id': '1gog378'}
{'comment': 'Wait. Is this real?', 'created': '2024-11-12 03:50:18', 'submission_id': '1gog378'}
{'comment': 'Link to merch? Or is that not allowed', 'created': '2024-11-11 07:25:15', 'submission_id': '1gog378'}
{'comment': 'Yes, which is why we need a new wave of left wing populism with a simple message and the right messenger to break through the media bubbles half the country is stuck in.', 'created': '2024-11-11 03:18:22', 'submission_id': '1gog378'}
{'comment': 'In a heathy democracy, the Dems should listen to what the people have to say.\xa0', 'created': '2024-11-12 03:30:01', 'submission_id': '1gog378'}
{'comment': 'I already did. I wanted one back in the day. Now I won’t drive one if you gave it to me.', 'created': '2024-11-11 16:29:37', 'submission_id': '1gog378'}
{'comment': 'I boycotted X/Twitter yesterday. I hope lots of people are doing that, too!', 'created': '2024-11-12 00:56:03', 'submission_id': '1gog378'}
{'comment': 'The House is more likely. Senate races in 2026 are super red states: MT, AK, TX, WV, NE, KS, SD,WY,ID,KY, TN, NC, SC, AR, OK, IA, MS, AL, LA.', 'created': '2024-11-11 22:41:43', 'submission_id': '1gog378'}
{'comment': 'IceBear 2028', 'created': '2024-11-11 13:54:23', 'submission_id': '1gog378'}
{'comment': 'You could move and do a Bobobert. I’m in WA too.', 'created': '2024-11-12 00:06:05', 'submission_id': '1gog378'}
{'comment': "Sorry, I don't want to break rules.", 'created': '2024-11-11 07:59:35', 'submission_id': '1gog378'}
{'comment': 'Welp', 'created': '2024-11-11 22:43:02', 'submission_id': '1gog378'}
{'comment': 'I’m eyeing NE and AK, without Trump on the ticket. Maybe Iowa too.', 'created': '2024-11-12 03:49:45', 'submission_id': '1gog378'}
{'comment': "And we'd have to hold the rest as well", 'created': '2024-11-11 22:43:31', 'submission_id': '1gog378'}
{'comment': 'Yeah I think we are just fucked.', 'created': '2024-11-11 22:44:30', 'submission_id': '1gog378'}
{'comment': "There's still the house. Only 10 away if the races hold now.", 'created': '2024-11-11 22:46:16', 'submission_id': '1gog378'}
{'comment': 'Hope the fucker goes bankrupt', 'created': '2024-11-11 04:19:51', 'submission_id': '1gofq5y'}
{'comment': 'It’s sad because it quite literally is money = power', 'created': '2024-11-11 05:13:50', 'submission_id': '1gofq5y'}
{'comment': 'Did they really project on a Tesla building?\n\nEven if not this video is done insanely well. Who made it?', 'created': '2024-11-11 05:13:09', 'submission_id': '1gofq5y'}
{'comment': 'How come nobody on reddit can spell tonight?', 'created': '2024-11-11 02:37:57', 'submission_id': '1gofq5y'}
{'comment': 'It’s going to be funny when Trump turns on him', 'created': '2024-11-11 14:09:28', 'submission_id': '1gofq5y'}
{'comment': 'BOYCOTT TESLA ! ! !\n\nDump your stock!\n\nQuit your job! \n\nScrew this guy for supporting evil!', 'created': '2024-11-11 18:08:16', 'submission_id': '1gofq5y'}
{'comment': "The irony is that Tesla would be nothing if it weren't for the 'green' tax credits people get when they buy electric cars and the company's ability to sell carbon credits (another government incentive). Socialism much?", 'created': '2024-11-12 10:06:24', 'submission_id': '1gofq5y'}
{'comment': "He will not, he's already won. We're looking at someone who will lokely control the US government for the rest of our lives. We live in an oligarchy.", 'created': '2024-11-11 15:08:13', 'submission_id': '1gofq5y'}
{'comment': 'Because we are all drunk lol', 'created': '2024-11-11 02:39:07', 'submission_id': '1gofq5y'}
{'comment': '" t o n i g h t"', 'created': '2024-11-11 02:53:13', 'submission_id': '1gofq5y'}
{'comment': "But we won't sit down and take that, if that becomes the case after we go through the normal way, protest,courts,etc then finally then we can overthrow the government as prescribed in the US Constitution", 'created': '2024-11-11 15:58:35', 'submission_id': '1gofq5y'}
{'comment': 'extra shot in the gin an tonic baby!', 'created': '2024-11-11 02:58:51', 'submission_id': '1gofq5y'}
{'comment': 'The plan to implement Schedule F and install 50,000 new Trump loyalist civil servants in the executive branch. \n\nBecause that makes everything else they want to do a lot easier. No pushback from career service federal employees. Turns the executive branch into a Trump organization loyal to him first.', 'created': '2024-11-11 01:26:12', 'submission_id': '1gof0b8'}
{'comment': 'Whatever parts they can actually implement.', 'created': '2024-11-11 01:18:41', 'submission_id': '1gof0b8'}
{'comment': 'Eliminating the Board of Education. The last thing we need is even *more* stupid people.\n\n[EDIT]Yes, Department of Education.', 'created': '2024-11-11 01:21:49', 'submission_id': '1gof0b8'}
{'comment': 'All of it', 'created': '2024-11-11 01:17:35', 'submission_id': '1gof0b8'}
{'comment': 'The fact that so many Trump supporters don’t think it’s actually going to happen.', 'created': '2024-11-11 01:38:32', 'submission_id': '1gof0b8'}
{'comment': "I am going to say everything but as a woman of color I want to say that **abortion rights** even if I live in Illinois. I am also scared about **no fault divorce** because that would make me never want to get married even if I am on the fence about it. Having to live under **Christian theocracy** as an agnostic. Pretty much will solidify the fact that I **don't want to have kids** in this country because the **education is shit**, and then don't want to bring a life here considering we are already living through **effects of climate change** and country's general direction.", 'created': '2024-11-11 01:23:16', 'submission_id': '1gof0b8'}
{'comment': "That most of the people who will be affected by it, don't give a shit about it.", 'created': '2024-11-11 01:44:20', 'submission_id': '1gof0b8'}
{'comment': 'The cuts to the VA and Veteran’s Benefits. There is nothing to stop them from now privatizing every and anything they want too: USPS, VA, National Weather Service, Social Security………they are going to install billionaires to make a profit off of stuff that should be free .', 'created': '2024-11-11 01:52:37', 'submission_id': '1gof0b8'}
{'comment': 'The selling of federal land, which could decimate tribal reservations.', 'created': '2024-11-11 01:28:56', 'submission_id': '1gof0b8'}
{'comment': 'Everything I’ve heard so far is horrifying. The Christian Nationalism, doing away with the department of education, national abortion ban', 'created': '2024-11-11 01:36:05', 'submission_id': '1gof0b8'}
{'comment': "I'm a naturalized citizen with 2 very young daughters.\n\nI see ~~concentration~~ ^reeducation camps propping up.\n\nWe're going to circle back to kids in cages and gas chambers.", 'created': '2024-11-11 01:47:47', 'submission_id': '1gof0b8'}
{'comment': "My whole career path was based on working for the Federal Government, now , until at least 2028, looks like that's not happening at all", 'created': '2024-11-11 01:49:22', 'submission_id': '1gof0b8'}
{'comment': 'Probably the fact that with complete control of Congress and the SC very little can stop them over the next 2 years…at least…', 'created': '2024-11-11 01:51:35', 'submission_id': '1gof0b8'}
{'comment': 'The religious ties.\n\nThere is nothing more scary than a theocrat.', 'created': '2024-11-11 03:06:13', 'submission_id': '1gof0b8'}
{'comment': 'Everything. The people behind it can rot in hell! This is genuinely the most cruel and twisted agenda.', 'created': '2024-11-11 01:30:10', 'submission_id': '1gof0b8'}
{'comment': 'The possible dismantling of the Department of Education. I work at a university.', 'created': '2024-11-11 01:41:39', 'submission_id': '1gof0b8'}
{'comment': 'That it starts in 2025', 'created': '2024-11-11 01:52:07', 'submission_id': '1gof0b8'}
{'comment': 'That the aholes that seem to be all hot for it just won the White House and Senate.', 'created': '2024-11-11 01:28:43', 'submission_id': '1gof0b8'}
{'comment': "I have medical issues that medication is required to function. I'm worried that medication will be eliminated or cost more than my rent per month", 'created': '2024-11-11 02:02:29', 'submission_id': '1gof0b8'}
{'comment': 'Christofacist takeover of the government with zero guardrails in place. Both houses and SC in lockstep with anything tRUmp wants (or his oligarchs).', 'created': '2024-11-11 02:06:35', 'submission_id': '1gof0b8'}
{'comment': 'The fact that Trump supporters believe it exists only as propaganda', 'created': '2024-11-11 02:07:36', 'submission_id': '1gof0b8'}
{'comment': 'The fact that it’s so fucking insane that TRUMP wanted to distance himself from it, and he’s the most insane politician in my lifetime, and I’m pretty old', 'created': '2024-11-11 02:53:33', 'submission_id': '1gof0b8'}
{'comment': 'That the constitution and laws will no longer mean anything.', 'created': '2024-11-11 02:24:08', 'submission_id': '1gof0b8'}
{'comment': 'The fact that they plan to wipe trans people like me from existence 😔', 'created': '2024-11-11 01:40:57', 'submission_id': '1gof0b8'}
{'comment': 'The fact they’re trying to legally try to push trans people back in the shadows. I think the department of education will get gutted but not destroyed. A few migrants will be deported for a photo opp but nothing remotely close to a mass deportation but man the trans stuff they plan on implementing like making trans content considered porn is evil', 'created': '2024-11-11 02:21:12', 'submission_id': '1gof0b8'}
{'comment': 'The weaponization of the DoJ. We are going to see dem officials, journalists, and activists rounded up for kangaroo courts.', 'created': '2024-11-11 02:41:36', 'submission_id': '1gof0b8'}
{'comment': 'Skeletonizing the government by firing workers. Destroying the Dept of Ed. Classifying any discussion of LGBTQ issues as pornography and the conveyance of media in that genre (even books for kids... especially books for kids) would get you put on the sex offender registry.', 'created': '2024-11-11 02:16:25', 'submission_id': '1gof0b8'}
{'comment': "For me personally, the tariffs. Our small company will have to fold as we simply can't afford that kind of cost increase. And for my children and grandchildren, loss of reproductive rights (not limited to possible fatal complications if one were to get pregnant in the wrong state). And legally being able to deny rights to transgendered persons.", 'created': '2024-11-11 01:45:05', 'submission_id': '1gof0b8'}
{'comment': 'I’m just satisfied when his administration and his supporters is gonna mess up this country they know they were the problem because they voted for him', 'created': '2024-11-11 01:56:01', 'submission_id': '1gof0b8'}
{'comment': 'The fact that people thought it was made up. I\'m more terrified that people read a well-funded, well-documented plan for a total revamping of the US government and were wholly convinced it was all for fun as soon as Trump said, "Yeah but I didn\'t write it myself." Billionaires did not become billionaires by spending their money on silly side projects, so anyone who thought Project 2025 wasn\'t a serious plan is just pathetically naive.\n\nSecond biggest fear? Revenge against the media and anyone who tries to fact check the MAGA agenda. If we can\'t inform people about what he\'s doing, they won\'t know to vote or protest against it.', 'created': '2024-11-11 02:37:19', 'submission_id': '1gof0b8'}
{'comment': 'All of it, tbh. The tariffs will effect my ability to earn a living— I work in coffee, and it’s something we get all over the world, so that’s not great. I’m third generation here, but I worry I may be in one of the camps- I have three grandparents born here, but one of my grandfathers immigrated in the 1930’s— I don’t know how far back they will go to deport people.', 'created': '2024-11-11 02:39:36', 'submission_id': '1gof0b8'}
{'comment': 'Pages 1 - 932', 'created': '2024-11-11 03:24:12', 'submission_id': '1gof0b8'}
{'comment': 'National park sales', 'created': '2024-11-11 03:43:40', 'submission_id': '1gof0b8'}
{'comment': 'Honestly, the replacement of government civil servants with MAGA loyalists. If they can actually do that, not only will government come to a screeching halt and lose so much knowledge and experience, but I find it hard to think we can come back from that.\n\nI think people forget or overlook how many cabinet appointments and the bureaucracies themselves helped slow the worst of Trump 45. Trump 47 will have only the absolutely worst ideologues in Cabinet and they will expel anyone who isn’t on board.\n\nThe fix will require an equal response and a further degradation of our political norms.\n\nAnd that’s exactly what they want.', 'created': '2024-11-11 02:16:06', 'submission_id': '1gof0b8'}
{'comment': 'all of it but personally messing with social security and medical will put disabled and retired people like me and wife on the streets to die.', 'created': '2024-11-11 02:31:13', 'submission_id': '1gof0b8'}
{'comment': 'All of it. The whole fucking thing.', 'created': '2024-11-11 03:10:11', 'submission_id': '1gof0b8'}
{'comment': 'Social security and Medicare being cut.', 'created': '2024-11-11 04:46:24', 'submission_id': '1gof0b8'}
{'comment': "Single mothers having their children taken away. My daughter's father is not on her birth certificate because he chose not to be a parent at month 6. What do I fear? DNA testing everyone to match and forcing estranged (for very good reason) parents to coparent and marry.", 'created': '2024-11-11 06:48:39', 'submission_id': '1gof0b8'}
{'comment': 'Christian nationalism', 'created': '2024-11-11 03:13:10', 'submission_id': '1gof0b8'}
{'comment': "Elimination of the Department of Education. Broadly and specifically for my family. The state budgets won't go far and I worry about the funding for my special needs kid's school. I live in a state/county/district with free breakfasts & lunches for all students and I worry there won't be funding and kids will go hungry.", 'created': '2024-11-11 02:06:15', 'submission_id': '1gof0b8'}
{'comment': "That GOP voters won't read it and have already convinced themselves Trump won't try to implement any of it anyway.", 'created': '2024-11-11 02:46:09', 'submission_id': '1gof0b8'}
{'comment': 'The simple fact that it’s on the table.', 'created': '2024-11-11 02:56:58', 'submission_id': '1gof0b8'}
{'comment': 'It’s all scary. And it’s expensive too. A lot of this agenda will be tied up in court as well. All of these budget cuts and reorganizations are fun until it affects your (Congress’) districts and constituents. He won on the economy and immigration; especially the economy. He also doesn’t have a super majority in the House, and not all R’s are MAGA. The Senate still has filibuster. Now is the time to write your Congress person, the one that is serving NOW and DEMAND Biden make the last few weeks of his Presidency count.', 'created': '2024-11-11 03:01:45', 'submission_id': '1gof0b8'}
{'comment': 'The whole thing', 'created': '2024-11-11 15:02:16', 'submission_id': '1gof0b8'}
{'comment': 'Definitely doesn’t scare me. This platform polled horribly even among a lot of Republicans. If they actually do this, it’s going to be a strong midterms and 28 for Democrats. \n\nAnd much if it is blatantly unconstitutional…\n\nTrump isn’t going to be able to just revoke birthright citizenship. It will be close but the Supreme Court will slap that down. A lot of what Trump is going to try to do is going to be denied by the supreme court he hand picked.', 'created': '2024-11-11 02:09:27', 'submission_id': '1gof0b8'}
{'comment': 'Education. Not just because of my own kids, because we’re gonna start brainwashing them earlier.', 'created': '2024-11-11 02:15:24', 'submission_id': '1gof0b8'}
{'comment': 'Everything, but If I had to narrow it down I really fear that this will see a rise in domestic terrorism such as mass shootings in public places by NRA fetishists, hate crimes of varying magnitude and police brutality of minorities and the intellectually and physically disabled.', 'created': '2024-11-11 02:36:09', 'submission_id': '1gof0b8'}
{'comment': 'Literally all of it!', 'created': '2024-11-11 02:40:55', 'submission_id': '1gof0b8'}
{'comment': 'Killing trans people and eliminating the board of education, the EPA, putting that crazy motherfucker with half a brain in charge of the CDC, etc., and using the military against American citizens and migrants/refugees.', 'created': '2024-11-11 02:47:22', 'submission_id': '1gof0b8'}
{'comment': 'Project 2025 is already here. \xa0Abortion bans is a part of it.', 'created': '2024-11-11 05:33:11', 'submission_id': '1gof0b8'}
{'comment': 'As a postal employee and parent to a 4 year old, it all scares me. My child not only deserves, but quite frankly owed a non partisan, non religious education. \n\nAs for my job, if the post office is privatized, there will be a strike, if they take away the unions and make collective bargaining illegal, no one will work here. \n\nIf you want to know why no one would work here, I suggest hopping on YouTube and looking up "Murder by Proxy". \n\nIf you want to know why there would be a strike/mass exodus immediately after privatization/collective bargaining being deemed illegal, look up the postal strike of 1970.', 'created': '2024-11-11 06:35:23', 'submission_id': '1gof0b8'}
{'comment': 'That a complete moron will be deciding how to implement it', 'created': '2024-11-11 07:07:59', 'submission_id': '1gof0b8'}
{'comment': 'Infusing Government with Christian Values: Seeks to incorporate elements of Christianity into government operations.', 'created': '2024-11-11 13:28:56', 'submission_id': '1gof0b8'}
{'comment': 'Education', 'created': '2024-11-11 01:55:35', 'submission_id': '1gof0b8'}
{'comment': 'The people who voted for it. Oh and Jason Miller.', 'created': '2024-11-11 02:33:32', 'submission_id': '1gof0b8'}
{'comment': 'The existence and that i am gonna be put in a internment camp', 'created': '2024-11-11 02:40:05', 'submission_id': '1gof0b8'}
{'comment': 'The fact so many people keep advertising this horseshit. Posts like these do nothing but act as advertising for "The Heritage Foundation".', 'created': '2024-11-11 02:47:15', 'submission_id': '1gof0b8'}
{'comment': 'The fact that it’s actually coming to fruition and we didn’t vote it out when we could have', 'created': '2024-11-11 03:55:45', 'submission_id': '1gof0b8'}
{'comment': "The part they aren't telling us.", 'created': '2024-11-11 08:15:43', 'submission_id': '1gof0b8'}
{'comment': "Everything. Remember when multi generations thought there's no way the future was as bleak as Hollywood portrayed.", 'created': '2024-11-11 09:34:43', 'submission_id': '1gof0b8'}
{'comment': 'It gives Trump 70% to 80% power so he can basically do anything he wants without having the need for congress.', 'created': '2024-11-11 10:25:58', 'submission_id': '1gof0b8'}
{'comment': 'The fact that so many people react to it with denial and downplaying and incite other people to do nothing because "it’s never going to happen".\n\nPeople believe their lies all the time but never take their threats and actual behaviour seriously.', 'created': '2024-11-11 14:10:29', 'submission_id': '1gof0b8'}
{'comment': 'The rapacious plundering of the civil service!', 'created': '2024-11-11 14:22:43', 'submission_id': '1gof0b8'}
{'comment': 'The overconfident imcompetence.', 'created': '2024-11-11 15:47:12', 'submission_id': '1gof0b8'}
{'comment': 'What scares me most is that this type of fascist manifesto actually exists in America, in the first place. The pseudo-GOP speaking of legitimizing this Draconian set of guidelines is traitorous in a supposedly “free” nation. Everything anti-American that you would ever condemn is in this chunk of poisonous propaganda! We don’t need another Constitution, we already have one. It is a foundation for equality and the freedom of a whole nation. This proposed collection of fascist drivel would strip a huge amount of freedoms that benefit all Americans! It is, in effect, America’s obituary, if allowed to be put into practice!', 'created': '2024-11-11 15:59:52', 'submission_id': '1gof0b8'}
{'comment': 'republicans aka conservatives aka REGRESSIVES should NOT be allowed to vote or hold public office!\n\n\n\n\n\nWe need to STOP tolerating republicans aka conservatives aka regressives and VOTE THEM ALL OUT!\n\n\n\nWe already know they are racist.\n\n\n\nWe already know they are less intelligent.\n\n\n\nWe already know they are anti Science.\n\n\n\nWe already know they are more religious.\n\n\n\nThey are regressive. And evil.\n\n\n\nAs such, they should not be allowed to have a say in matters of importance. Or hold positions of leadership.\n\n\n\nWhy? I think we can look around and see why.\n\n\n\nTo those who say "But... but... they\'re citizens and have the RIGHT to vote" - well... it seems that is a problem, doesn\'t it? For all they want to do is impose their version of xtian sharia law upon us all.\n\n\n\nWe do not defer to children for advice on important matters. So why do we include regressives?\n\n\n\nWe do not consult the taliban for advise on quantum physics. So why do we include regressives on genuinely important social issues?\n\n\n\nThey want to drag us back to the bronze age.', 'created': '2024-11-11 16:22:33', 'submission_id': '1gof0b8'}
{'comment': 'I don’t think it’s in Project 2025, but having Alito & Thomas retire and Trump appointing 30 year old hardliners to SCOTUS scares me the most', 'created': '2024-11-11 16:22:59', 'submission_id': '1gof0b8'}
{'comment': 'The pornography ban, not just for the obvious reasons but because their definition of pornography is anything they deem unethical or immoral. Things like women in positions of power, gay people existing, interracial marriages, mentions of religion other than christianity.\n\nThis one will sneak up up folks because the work pornography sounds crass. Lots of pearl clutching Karens will go along with this because Jesus or something', 'created': '2024-11-11 16:29:56', 'submission_id': '1gof0b8'}
{'comment': '_Gestures broadly at everything_', 'created': '2024-11-11 21:11:48', 'submission_id': '1gof0b8'}
{'comment': 'Board of Education, the stuff about good teachers teaching good things about America and outlawing discussion of trans or gay people, kicking trans people out of the military, mass deportations, really the majority of the shit in it is a problem if they really go through with it.', 'created': '2024-11-11 02:22:23', 'submission_id': '1gof0b8'}
{'comment': 'Me being a trans woman. Any anti trans agenda they want.', 'created': '2024-11-11 03:38:59', 'submission_id': '1gof0b8'}
{'comment': 'All of it', 'created': '2024-11-11 02:30:53', 'submission_id': '1gof0b8'}
{'comment': 'Here’s a video by Fundie Fridays which goes over Project 2025 in pretty good depth!\n\n[Fundie Fridays Project 2025](https://youtu.be/ASOSBrt82ZQ?si=opY0_EMYJAY-b4LF)', 'created': '2024-11-11 02:48:07', 'submission_id': '1gof0b8'}
{'comment': 'The end of our country as we know it.', 'created': '2024-11-11 03:49:09', 'submission_id': '1gof0b8'}
{'comment': '(Almost) everything.', 'created': '2024-11-11 03:54:48', 'submission_id': '1gof0b8'}
{'comment': 'That a majority of our neighbors are totally fine with it.', 'created': '2024-11-11 04:43:00', 'submission_id': '1gof0b8'}
{'comment': 'Authoritarianism.', 'created': '2024-11-11 05:04:15', 'submission_id': '1gof0b8'}
{'comment': 'There’s no way to undo it.', 'created': '2024-11-11 05:16:15', 'submission_id': '1gof0b8'}
{'comment': 'Getting rid of the the department of education. I have children for fucks sake.', 'created': '2024-11-11 05:58:52', 'submission_id': '1gof0b8'}
{'comment': "all of it, but mainly the abortion parts. specifically the idea they put that they track miscarriages, pregnancies and such. and in some cases, the woman's city (? was it city or state?)", 'created': '2024-11-11 06:53:16', 'submission_id': '1gof0b8'}
{'comment': 'The fact that so many people don’t believe it’s real and Trump has “nothing to do with it”.', 'created': '2024-11-11 08:59:38', 'submission_id': '1gof0b8'}
{'comment': 'Firing civil servants because they aren’t loyal enough to a 4 year contract', 'created': '2024-11-11 09:29:58', 'submission_id': '1gof0b8'}
{'comment': 'There is a piece in there that puts HIPAA on the chopping block. This law is what makes your medical care private.\n\nChopping it up is a singularly needed piece to fuck with reproductive rights and privacy.\n\nTalk to your state Governor TODAY. State protections are our last check and balance to most of this. One thing states actually have jurisdiction over is health care. \n\nYou’re already sitting in front of a computer. Type a note to your governor. Do notes to the state reps while you are there. Flood them. Ask them to codify HIPAA. Do not wait until after January.', 'created': '2024-11-11 09:55:14', 'submission_id': '1gof0b8'}
{'comment': 'All of it', 'created': '2024-11-11 09:57:15', 'submission_id': '1gof0b8'}
{'comment': "Overtime and depth of education. Without working 7 days a week and earning OT/DT, I can't afford my rent. Without depth of ed, my son with an iep is fukt", 'created': '2024-11-11 12:05:55', 'submission_id': '1gof0b8'}
{'comment': 'The dismantling of the current government and the rebuilding of a new Christofascist one and all of the horror that comes with that. We will lose everything that made our country great if they succeed.', 'created': '2024-11-11 12:15:47', 'submission_id': '1gof0b8'}
{'comment': 'Dismantling the National Weather Service and not knowing when a massive hurricane is coming (or any severe weather event)', 'created': '2024-11-11 12:16:04', 'submission_id': '1gof0b8'}
{'comment': 'That P2025 architect Stephen Miller and pageboy JD Vance are going to be the adults in the room for Trump.', 'created': '2024-11-11 12:40:15', 'submission_id': '1gof0b8'}
{'comment': 'Although there may be future elections, just as there are elections in the Russia, voting rights are getting stripped and the people that vote only hear what MAGA wants them to hear.', 'created': '2024-11-11 13:53:13', 'submission_id': '1gof0b8'}
{'comment': 'Cutting SSI is my biggest fear of it.', 'created': '2024-11-11 14:29:42', 'submission_id': '1gof0b8'}
{'comment': 'George Washington is rolling in his grave right now...', 'created': '2024-11-11 16:53:50', 'submission_id': '1gof0b8'}
{'comment': 'The lawless being put in charge of enforcing the law.', 'created': '2024-11-11 18:57:19', 'submission_id': '1gof0b8'}
{'comment': 'Speaking for my day-to-day personal life: eliminating disability for my husband, who was hurt in training while serving in the Marines. My understanding is project 2025 would eliminate disability for veterans unless they were injured in active combat.\n\nMy husband was in an infantry unit for 4 years and broke both of his feet and his spine is permanently curved in TRAINING. He also was in a helo crash, where some of his brothers lost their lives and he pulled others from that crash to safety. He still has nightmares.\n\nNone of that was in a combat zone. But instead in preparation/training, should our nation ever need him. He is taken care of now at 90% disability. \n\nP2025 would shrink our household income by roughly 30k/year. \n\nHappy Veterans Day.', 'created': '2024-11-11 22:56:26', 'submission_id': '1gof0b8'}
{'comment': '1. Getting rid of the Department of Education\n2. Losing our rights to same sex marriage\n3. How this will impact our environment\n4. Having abortion banned nationwide', 'created': '2024-11-11 03:19:26', 'submission_id': '1gof0b8'}
{'comment': 'That my queer friends have a very high likelihood of getting their marriages dissolved or could be jailed for existing.\n\nThat free and fair elections will no longer exist in our country after January 20th.\n\nThat mass deportations and arrests will collapse the economy.\n\nAnd I haven’t even gotten into anything about women losing even more rights.\n\nI’m trying not to spiral but we’re about to hand the country to fascists and watch them total the entire thing. I feel like I’ve just lost my future. I was hoping I’d live a long and happy life, but now at 28 I don’t even know if 30 will happen in Trump’s America.', 'created': '2024-11-11 03:31:38', 'submission_id': '1gof0b8'}
{'comment': 'Yes', 'created': '2024-11-11 02:02:42', 'submission_id': '1gof0b8'}
{'comment': 'all of it.\nespecially the part concerning trans people', 'created': '2024-11-11 02:15:42', 'submission_id': '1gof0b8'}
{'comment': 'The part where they deem me pornographic for existing and sentence me to death.', 'created': '2024-11-11 03:56:11', 'submission_id': '1gof0b8'}
{'comment': 'That 70 million Americans voted for it', 'created': '2024-11-11 06:09:08', 'submission_id': '1gof0b8'}
{'comment': 'The systematic way that it will continue to dumb down the masses, making them more controllable. Terrifying, indeed.', 'created': '2024-11-11 02:12:48', 'submission_id': '1gof0b8'}
{'comment': '[removed]', 'created': '2024-11-11 02:19:58', 'submission_id': '1gof0b8'}
{'comment': 'All of it!', 'created': '2024-11-11 02:50:25', 'submission_id': '1gof0b8'}
{'comment': '>Injustice anywhere is a threat to justice everywhere\n\n-Dr. Martin Luther King Jr.\nLeaving for posterity in a digital index hopefully to document this country once valued liberty.', 'created': '2024-11-11 03:06:15', 'submission_id': '1gof0b8'}
{'comment': 'The list of Americans who are not loyal to Trump. They have been submitting FOIA requests for months to get internal communications of federal employees so they can start making their list of people to punish.', 'created': '2024-11-11 04:08:26', 'submission_id': '1gof0b8'}
{'comment': ' Not too far from retirement age and the prospect of SS being gutted, and having no substantial retirement savings. It’s terrifying to have put into the system for so long and not having this entitlement when it is needed by so many. I’m worried sick.', 'created': '2024-11-11 06:52:25', 'submission_id': '1gof0b8'}
{'comment': 'So tell me, keeper of the bullshit! How come you threw out my first paragraph? Could it be Reddet is is scared of Musk!? This thing is so Pussy anymore!', 'created': '2024-11-11 11:08:04', 'submission_id': '1gof0b8'}
{'comment': 'This whole thread terrifies me. That’s the worst part about this project. Its very existence is a threat to me and my family. What scares me most is that some of my family and friends I’ve known since I was 13 voted for these politicians. Knowing that those people don’t give a fuck is what scares me most.', 'created': '2024-11-11 13:55:32', 'submission_id': '1gof0b8'}
{'comment': 'That the Democrats talked about this way more than all of the achievements they’ve had in the past four years - that’s what bothered me the most about it', 'created': '2024-11-11 14:59:26', 'submission_id': '1gof0b8'}
{'comment': "Basically all of it, but because I'm Non-binary with the Boifriend of my dreams, I'm scared I'm gonna lose everything that makes me happy, because some orange is stubborn :(", 'created': '2024-11-11 16:16:37', 'submission_id': '1gof0b8'}
{'comment': 'Dems need their own project 2025 for when it’s discovered that 15 million democratic votes were somehow eliminated by the Republican Party. \n\nFirst on my list, tax every religion higher than any other entity. Then charge them with owed taxes based on how long they’ve been operational. \n\nSecond on my list, once these funds are collected, institutionalize every magat and launch Trump into mars where he and Elon can futtbuck each other with alien dirt.', 'created': '2024-11-11 17:55:47', 'submission_id': '1gof0b8'}
{'comment': '**The most near-term concern to me;**\n\nThe interaction that is in it and one that\'s not. in the document it sets up what\'s effectively *full immunity for Police* — so, this and the intersection that this president has relationships and direct line to Right-wing militias and White supremacist groups that he can pardon at any point suggests to me we will see more modern day lynchings than we already do and we\'ll see events similar to Wilmington NC, and Tulsa using a Civil Rights protest as the excuse for the violence.\n\nAnd there is no doubt in my mind that Trump voters will be fine with it, and the ones that don\'t agree in theory will excuse it with some sort of call for "peace" when they mean *silence.*\n\nWhen it comes to governance —\xa0letting Conservatives have influence or authority, is about as smart as it was when Abe offered Confederates a place in the government. We all know how that turned out —\xa0here we are again.', 'created': '2024-11-11 19:06:58', 'submission_id': '1gof0b8'}
{'comment': 'Let’s keep our states away from this.\n\nSmh it’s all we could ask for', 'created': '2024-11-11 21:01:43', 'submission_id': '1gof0b8'}
{'comment': 'Everything!', 'created': '2024-11-11 23:09:43', 'submission_id': '1gof0b8'}
{'comment': 'Climate change denial.', 'created': '2024-11-12 06:40:15', 'submission_id': '1gof0b8'}
{'comment': 'They won', 'created': '2024-11-13 17:23:10', 'submission_id': '1gof0b8'}
{'comment': 'As a trans person…', 'created': '2024-11-11 02:15:29', 'submission_id': '1gof0b8'}
{'comment': 'I’m a disabled liberal gay woman. It all scares me! The best I can hope for is seeking asylum if they start going after the vulnerable population like they promise to do in P2025.', 'created': '2024-11-11 06:00:11', 'submission_id': '1gof0b8'}
{'comment': 'The fact that it wasn’t frightening enough to white people who just stayed home instead of voting.', 'created': '2024-11-11 04:10:54', 'submission_id': '1gof0b8'}
{'comment': "This one. It's all terrifying but loyalists stuffing the government is hard to imagine. Not to mention kissing the ring being more important than actual wisdom, skill or experience.\n\n\nAnd the entire anti-science agenda. Like the next public health crisis isn't just waiting in the wings.", 'created': '2024-11-11 01:58:00', 'submission_id': '1gof0b8'}
{'comment': "What I'm curious about is the Democratic response. Let's assume Trump replaces all of these civil servants over the next 4 years. And let's assume Democrats win back the Presidency in 2028 or 2032. Does that Democrat replace the 50,000 servants again? Or fire them and reinstate a meritocracy? This one is extremely hard to fix once it's been implemented.", 'created': '2024-11-11 01:54:10', 'submission_id': '1gof0b8'}
{'comment': 'This. I’m a GS14 and fear how close this will hit.', 'created': '2024-11-11 02:33:09', 'submission_id': '1gof0b8'}
{'comment': '100% This one scares me more than anything else', 'created': '2024-11-11 07:19:21', 'submission_id': '1gof0b8'}
{'comment': 'Came here to say Schedule F. Glad to see it’s the top comment.', 'created': '2024-11-11 14:19:33', 'submission_id': '1gof0b8'}
{'comment': "Yeah, there's a lot that the federal government does that's totally non-partisan that we all rely on that will suddenly be under pressure to serve the executive branch. Things like jobs reports and inflation numbers are put out by reliable, non-political bureaucrats. If those numbers can't be trusted all of us have a lot less knowledge about reality. The same is true for climate numbers and even weather reports. Next time Trump wants to 'correct' a hurricane's projected path he could use the national weather service, not a sharpie.\n\nPurging the civil service will make the government run worse for sure as experts and experienced government employees will be replaced by sycophants and zealots, but it will also give Republicans a monopoly on 'truth.'", 'created': '2024-11-11 14:25:02', 'submission_id': '1gof0b8'}
{'comment': "That's precisely what the Nazi party did after taking power in 1933. Only loyalists got positions.", 'created': '2024-11-11 20:27:00', 'submission_id': '1gof0b8'}
{'comment': 'I agree. This is the scariest thing to me as well, but I have to wonder how efficient it will be.\n\nWalk into any corporation in America and fire 75% of the staff, replace them with new staff, and what do you get? A fucking mess. Doesn’t matter where any of us works, we all know you can’t just fire everyone, replace them with new people, and expect anything to go smoothly.\n\nI know the P2025 people are supposed to have the replacement staff trained before Trump takes office, according to the plan, but training thousands of people away from the place they’ll actually be working is next to useless. This is something that looks good on paper, but it has never been attempted before, and it certainly hasn’t been done by a group of people who barely know how to run government when they’ve got power.\n\nSo, this gives me some comfort. I think it’s going to backfire and make for a less efficient federal government than they’d have if they just replace the department heads and their immediate subordinates as usual.\n\nAlso, keep in mind that the people hired will not have been hired because they’re the best at what they do; they’re looking for loyalists, not experts.', 'created': '2024-11-11 11:44:14', 'submission_id': '1gof0b8'}
{'comment': 'This is the answer', 'created': '2024-11-11 03:34:42', 'submission_id': '1gof0b8'}
{'comment': "And the parts they can't they will set up for when they can by setting as much precedent as they can", 'created': '2024-11-11 06:49:06', 'submission_id': '1gof0b8'}
{'comment': 'He has all three branches of government, very scary!', 'created': '2024-11-11 12:12:38', 'submission_id': '1gof0b8'}
{'comment': 'My sister in law has homeschooled her kids into illiteracy and just moved to Tennessee last year. Shes vehemently pro-Trump despite having a teenage abortion. \n\nMy brother in law has a kid with a genetic developmental disorder. Wears Trump shirts when he visits Minneapolis just to fuck with us. \n\nI have no kids or skin in that game. I wouldn’t care if it weren’t for the fact that innocent kids are getting completely fucked for no good reason. It’s abhorrent and I just can’t with these people anymore.', 'created': '2024-11-11 02:42:33', 'submission_id': '1gof0b8'}
{'comment': 'But they vote Republican!', 'created': '2024-11-11 01:28:42', 'submission_id': '1gof0b8'}
{'comment': "Imagine 15 years from now when they enter the workforce but can't read or write. \n\nIt just dawned on me that this will mean less competition for wealthy private school kids when getting into a college or starting their careers. The wealthy nepo babies will have all the profitable jobs. The rest will be picking blueberries on farms or working in slaughterhouses.", 'created': '2024-11-11 02:36:41', 'submission_id': '1gof0b8'}
{'comment': "Eliminating the Board Of Education and getting rid of our safety nets will produce a second Great Depression that'll make the first one look like a bad bank withdrawl. Also, fuck Elon.", 'created': '2024-11-11 02:41:34', 'submission_id': '1gof0b8'}
{'comment': 'Do you mean the Department of Education?', 'created': '2024-11-11 02:51:49', 'submission_id': '1gof0b8'}
{'comment': 'My sister is a teacher and this scares me for her', 'created': '2024-11-11 03:17:55', 'submission_id': '1gof0b8'}
{'comment': None, 'created': '2024-11-11 02:22:22', 'submission_id': '1gof0b8'}
{'comment': "I don't even worry about this one. You want your kids to be dumb, uneducated, unvaccinated? Gives our kids the leg up.", 'created': '2024-11-11 15:47:59', 'submission_id': '1gof0b8'}
{'comment': 'Eliminating the CDC and everything health related. That makes complete sense to me. (Not)', 'created': '2024-11-11 19:45:56', 'submission_id': '1gof0b8'}
{'comment': 'This. Things my biggest concern. There’s a pretty good chance I’ll never have kids but I fully endorse strong public education. I think it’s criminal to not want to fund it. \n\nI should also add free school lunches is one of the best things to happen in the last several years.', 'created': '2024-11-11 23:46:19', 'submission_id': '1gof0b8'}
{'comment': 'Stupid. Ok. Paranoid? Ohhh boy…', 'created': '2024-11-11 01:37:02', 'submission_id': '1gof0b8'}
{'comment': 'amen', 'created': '2024-11-11 01:26:15', 'submission_id': '1gof0b8'}
{'comment': 'I recently had a long argument with a dude about this. If you want to read it, go ahead. It\'s not far down my comment history, but the gist of it is: "I\'m not a republican, I don\'t like republicans and their big government policies, but I voted for trump 3 times, because somehow trump is not like all the other republicans and is actually for small government. He\'s also got nothing to do with project 2025 [despite all evidence to the contrary]"\n\nMind boggingly stupid', 'created': '2024-11-11 04:06:12', 'submission_id': '1gof0b8'}
{'comment': 'OR believe whatever lies they are told about it.', 'created': '2024-11-11 02:32:18', 'submission_id': '1gof0b8'}
{'comment': 'i don’t know how to explain to my dad that project 2025 will happen and that he literally just doomed his lesbian daughter, trans son, and his wife. fucking nuts', 'created': '2024-11-11 08:20:29', 'submission_id': '1gof0b8'}
{'comment': 'They know. They just don’t care.', 'created': '2024-11-11 05:16:50', 'submission_id': '1gof0b8'}
{'comment': 'How are we even having these conversations right now? This is the worst version of America I have ever lived in and as someone who has paid attention to politics since the 80’s I can say with confidence that republicans are 100% to blame. Their policies are shit and serve only the elite.', 'created': '2024-11-11 02:20:04', 'submission_id': '1gof0b8'}
{'comment': "I'm afraid of no fault divorces. I want to be divorced in a few years when I get my affairs in order. Looks like I'll never be able to get out.", 'created': '2024-11-11 02:20:29', 'submission_id': '1gof0b8'}
{'comment': 'They tried this with the FAA in his first term but stepped back when they realized it’d be giving away billions for nothing in return. But honestly they’re so stupid they’ll probably do it.', 'created': '2024-11-11 03:30:57', 'submission_id': '1gof0b8'}
{'comment': 'And national parks????', 'created': '2024-11-11 04:13:28', 'submission_id': '1gof0b8'}
{'comment': 'Yeah this part is really scary as well. With a divided congress they would have to pick and choose battles. There would also be executive orders that would be tied up in courts. \n\nWith the majority they have, Trump is gonna be brazen. He wants it all and he wants it signed into law. He’s also made it clear that any senator or congressmen who isn’t in line will be ostracized from the Republican Party. There really isn’t much we can do now', 'created': '2024-11-11 02:29:47', 'submission_id': '1gof0b8'}
{'comment': 'Totally agree!', 'created': '2024-11-11 20:37:47', 'submission_id': '1gof0b8'}
{'comment': 'Some of us are fighting for you. \nKnow that.', 'created': '2024-11-11 02:47:37', 'submission_id': '1gof0b8'}
{'comment': "This. And how they seek to label all LGTBQIA folks as sexual predators. It will start with criminalizing porn, then it will roll into what is considered porn, then suddenly all images of same sex couples or trans folks as being porn including just family photos or candid selfies. It's in there. They just think we aren't smart enough to connect the dots. Just look at how Texas has set up a fucking network for neighbors to rat out each other with regards to abortion. That will wind up being how it is policed. I keep getting told that will never happen but... Yeah ... I never thought we would be in a country where women are dying of sepsis because doctors aren't allowed to provide care to them even if the baby is planned and wanted. I also couldn't imagine that the supreme court would rule that official acts of the president can't be prosecuted as crimes. I never really imagined how the checks and balances put in place could wind up being manipulated to create the very thing that our ancestors had escaped from. They had banked on future citizens being informed and possessing empathy. Our nation failed that test with flying colors.", 'created': '2024-11-11 17:05:58', 'submission_id': '1gof0b8'}
{'comment': 'I’m honestly concerned about how they’d enforce it. The porn ban', 'created': '2024-11-11 02:25:03', 'submission_id': '1gof0b8'}
{'comment': 'If they do it will only the ones that work for CNN and MSNBC and maybe Jimmy Kimmel', 'created': '2024-11-11 10:28:57', 'submission_id': '1gof0b8'}
{'comment': "Bingo. I'm 65, and my husband is 66. I recently retired, and he'd planned to retire this year. He's since decided he shouldn't, and I'm regretting having already retired. \n\nWe've both paid into Social Security for 45 years. I have a decent 401k & he'll have his union pension, but they'll be worthless if Trump crashes the economy with tariffs. It's a f*cked up time to be retirement age.", 'created': '2024-11-11 05:08:48', 'submission_id': '1gof0b8'}
{'comment': 'This. I work in Special Education in Oakland CA. All these black and brown kids and families will be among the first affected but at least gas will be $1 😔', 'created': '2024-11-11 15:24:07', 'submission_id': '1gof0b8'}
{'comment': '80% of Republican voters read a 4th or 5th grade level so they would never read it.', 'created': '2024-11-11 10:31:52', 'submission_id': '1gof0b8'}
{'comment': 'I seriously hope you’re right', 'created': '2024-11-11 11:13:22', 'submission_id': '1gof0b8'}
{'comment': 'If there is a midterm', 'created': '2024-11-11 03:19:55', 'submission_id': '1gof0b8'}
{'comment': 'Stephen Miller freaks me out the most. Just LOOKING at him gives me iky vibes. 🤮🤮🤮', 'created': '2024-11-11 02:44:38', 'submission_id': '1gof0b8'}
{'comment': '', 'created': '2024-11-11 22:59:35', 'submission_id': '1gof0b8'}
{'comment': 'Not the majority, not even half. People stayed home.', 'created': '2024-11-11 08:53:58', 'submission_id': '1gof0b8'}
{'comment': 'Republicans have been building towards this since Reagan. They’re like a damned cancer, eating the democracy from within!', 'created': '2024-11-11 06:19:25', 'submission_id': '1gof0b8'}
{'comment': 'That’s horrible, like I know people will say “sorry for your loss” but that doesn’t even cut the line with that, bless your husband and may his brothers rest in peace. I don’t have a typical disability, I have autism spectrum, and if I were in school, all 504’s would be gone and people like me would just be considered mentally unstable and would be put into mental institutions. Again, so sorry for what happened', 'created': '2024-11-11 22:59:18', 'submission_id': '1gof0b8'}
{'comment': 'It’s giving hitler vibes', 'created': '2024-11-11 06:11:51', 'submission_id': '1gof0b8'}
{'comment': 'Very Hitler like.', 'created': '2024-11-11 12:13:07', 'submission_id': '1gof0b8'}
{'comment': 'Federal benefits for the people who deserve them the least. You should have to earn it.', 'created': '2024-11-11 09:50:13', 'submission_id': '1gof0b8'}
{'comment': 'It is the dismantling of the government. And the voters love it, that\'s what gets me most. And in 2028 will we have a candidate that can win? That can talk to uneducated rednecks and military "tough guys" who adore Trump?', 'created': '2024-11-11 21:43:13', 'submission_id': '1gof0b8'}
{'comment': 'Bold of you to assume there will be another election', 'created': '2024-11-11 01:58:12', 'submission_id': '1gof0b8'}
{'comment': ">Let's assume Trump replaces all of these civil servants over the next 4 years. And let's assume Democrats win back the Presidency in 2028 or 2032.\n\nIf they managed to replace those 50,000 employees, you can also probably count on Republicans passing enough legislation to make it super difficult for Democrats to win in 2028. \n\nRepublicans have had decades of practice at the state level passing legislation to discourage Democratic voter turnout. Now they can pass Republican election reform at the federal level. \n\nAnd the Republicans in Congress have incentive to do that beyond loyalty to Trump. Because that will help to make sure they get reelected.", 'created': '2024-11-11 02:27:40', 'submission_id': '1gof0b8'}
{'comment': "That's the idea. We still have Trump's USPS czar who wanted to dismantle it.", 'created': '2024-11-11 21:44:34', 'submission_id': '1gof0b8'}
{'comment': 'Fire the 50,000 civil servants, re appoint them, then pressure Congress to close that loophole', 'created': '2024-11-11 03:36:03', 'submission_id': '1gof0b8'}
{'comment': 'How are they going to push through the security process for so many? This is the other terrifying part of this. Are these replacements going to go through a speedy security clearance process, or will that be bypassed completely?', 'created': '2024-11-11 16:03:48', 'submission_id': '1gof0b8'}
{'comment': 'I just wanted to point out that the scenario you just described is almost exactly what Musk did when he bought Xitter. And it *was* absolute chaos. And apparently Trump admires that.', 'created': '2024-11-11 14:21:38', 'submission_id': '1gof0b8'}
{'comment': 'My sister in law is about to start homeschooling my sweet little nephews!!! I feel so bad but what can i do!!', 'created': '2024-11-11 04:01:22', 'submission_id': '1gof0b8'}
{'comment': 'Maybe the move is to figure out how to approve to stupid people.', 'created': '2024-11-11 01:29:51', 'submission_id': '1gof0b8'}
{'comment': 'Won’t matter when there’s no more voting.', 'created': '2024-11-11 03:40:31', 'submission_id': '1gof0b8'}
{'comment': 'And workplace conditions will be completely eroded. And no more social security. Fewer teeth because of the Florida being removed from the water.', 'created': '2024-11-11 03:05:38', 'submission_id': '1gof0b8'}
{'comment': 'Well yeah, the elite figure there won’t be immigrants to do those jobs anymore and somebody has to.', 'created': '2024-11-11 06:11:51', 'submission_id': '1gof0b8'}
{'comment': 'All according to plan', 'created': '2024-11-11 13:46:30', 'submission_id': '1gof0b8'}
{'comment': 'What gets me about this is that Trump had his own policy platform (Agenda 47). And guess what: Agenda47 and Project 2025 line up perfectly in a lot of places. It\'s just that his platform is kind of vague, while Project 2025 actually describes in detail how to accomplish all of those goals. But the goals are largely the same.\n\nFor example, he wants to "undermine the deep state" by enforcing Schedule F and getting his own people into government roles. But where is he going to find tens of thousands of workers that are loyal to him? As it turns out, the Heritage Foundation has been working on this for quite some time now. They have a database of at least 20,000 people that have been vetted for being loyal to Trump and for having the same "values".\n\nThis has to be one of the greatest cons in modern history. It was all out in the open the entire time. I tried to warn people, but they just wouldn\'t listen. The fascists won.', 'created': '2024-11-11 11:13:33', 'submission_id': '1gof0b8'}
{'comment': '>Mind boggingly stupid\n\nYep. Crazy they believe the orange Sergeant Schultz when he said "I know nothing."', 'created': '2024-11-11 04:34:42', 'submission_id': '1gof0b8'}
{'comment': 'Seems like you could make a great family without him.', 'created': '2024-11-11 14:19:37', 'submission_id': '1gof0b8'}
{'comment': "I would suspect that the 60's were worse.", 'created': '2024-11-11 03:10:10', 'submission_id': '1gof0b8'}
{'comment': 'It’s a dark irony that no-fault divorce is like the only positive part of Reagan’s legacy.', 'created': '2024-11-11 03:15:12', 'submission_id': '1gof0b8'}
{'comment': "Why won't you be able to get out. In PA, almost every divorce is no fault. I'm divorced.", 'created': '2024-11-11 02:27:59', 'submission_id': '1gof0b8'}
{'comment': 'Adding to what you touched on. His handlers (Bannin included in his prison release press confress. wtf by the way?) have repeatedly reminded us that his team has experience now and an agenda\n\nThey are going to do as much as possible as fast as possible. While also trying to make every act they pass as bulletproof as possible against future administrations. And that’s where the Justices become so important. \n\nMy guess is - First the crazy deportation. Second and third will be the tariffs and drilling \n\nIdk if it’s because I’m older now or because I pay closer attention but this shit is wild in all the wrong ways. The longer they have a stronghold the deeper their poison gets into democracy.', 'created': '2024-11-11 02:42:39', 'submission_id': '1gof0b8'}
{'comment': 'California allows ballot curing until December 1st. We can try to get people to correct their ballot signatures if that will help in close races.\n\nThen we can hope that a half dozen decent Republicans still exist. They seem to now - Mike Johnson is having a really hard time getting anything passed.', 'created': '2024-11-11 02:43:54', 'submission_id': '1gof0b8'}
{'comment': 'So North Carolina resident here. We already have one. You basically have to have an account and sites must verify your age. \n\nThe project 2025 spin is basically if there’s any trans content in schools or you have drag shows reading books that will be considered exposing children to porn.', 'created': '2024-11-11 02:26:47', 'submission_id': '1gof0b8'}
{'comment': "I'm 68 so I'm there too. Scary as heck!", 'created': '2024-11-11 05:35:18', 'submission_id': '1gof0b8'}
{'comment': 'if someone is going to completely subvert American democracy and rule over the US as a dictator, it’s going to be someone infinitely smarter than Donald Trump and his clown show lackeys. \n\nOur Republic will hold. But it’s going to take a fight.', 'created': '2024-11-11 03:31:45', 'submission_id': '1gof0b8'}
{'comment': 'Sorry, but if you were eligible to vote and you stayed home, then you are demonstrating that you are totally fine with everything Trump has said, done, and plans to do.', 'created': '2024-11-11 15:37:22', 'submission_id': '1gof0b8'}
{'comment': "That's why he was specifically asking about generals who would be like Hitler's. Don't be surprised if you see a new salute coming soon to TVs everywhere. Not kidding.", 'created': '2024-11-11 21:43:58', 'submission_id': '1gof0b8'}
{'comment': 'More like a Mango Mussolini. Still a fascist, dangerous demagogue, but he’s clearly beholden to an even worse one (Putin) and is also the type to have cringey propaganda like a giant image of his face covering the side of a building amidst a background of the word “yes” repeated x 100. \nBoth of which were true about Mussolini.', 'created': '2024-11-15 01:39:08', 'submission_id': '1gof0b8'}
{'comment': 'They fucked around, so we all get to find out now..', 'created': '2024-11-12 06:17:35', 'submission_id': '1gof0b8'}
{'comment': "There will be. States run the elections, even if he issues some mandate via executive order, he can't cancel elections. It just doesn't work that way.", 'created': '2024-11-11 02:03:16', 'submission_id': '1gof0b8'}
{'comment': 'Things will get BAD, but there will still be elections. Will they be winnable? I hope so.', 'created': '2024-11-11 03:09:31', 'submission_id': '1gof0b8'}
{'comment': "People keep saying this around Reddit, but it seems entirely unfounded, and I'm not really sure where this collective belief came from. What probability would you place that we will never hold any Federal elections again in America (or at least for the next generation or so)?", 'created': '2024-11-11 02:00:13', 'submission_id': '1gof0b8'}
{'comment': 'In prior elections those laws have sometimes increased Democratic turnout, because people could see they were being f**ked with and were therefore motivated to vote.\n\nIt is possible that Republicans could pass enough legislation make it super difficult for them to win re-election, like if they crash the economy again on a scale like 2008, or maybe worse. Elon has kind of promised to do that, J.D. Vance has told supporters to be prepared for economic “sacrifice.” Most voters seemed utterly unaware, but if it happens they will be mad.', 'created': '2024-11-11 06:36:16', 'submission_id': '1gof0b8'}
{'comment': 'Like that matters anymore. We have a felon headed to the Oval Office.', 'created': '2024-11-12 04:21:27', 'submission_id': '1gof0b8'}
{'comment': 'Yup. It’s wild to me that the guy running Twitter into the ground is going to be making decisions about what stays and what goes in our federal government. It’ll be a real clown show.\n\nI think it’s important to note (which I forgot to do in my last comment) that the inefficiencies (pure chaos, really) created by replacing everyone will slow *everything* down. What happens when people aren’t getting their social security checks on time? That’s just one thing the government does; a drop in the bucket. Every other program where citizens and businesses *get* something will also potentially be disrupted.', 'created': '2024-11-11 15:25:39', 'submission_id': '1gof0b8'}
{'comment': 'It has been so sad to witness. My 13 year old niece is still sounding out really simple words. When I was her age, I was reading LOTR. I feel terrible, but there’s nothing I can do.', 'created': '2024-11-11 07:05:46', 'submission_id': '1gof0b8'}
{'comment': 'This is the scariest part to me! Finding a way to pander to the most hateful Americans while not actually becoming hateful', 'created': '2024-11-11 12:51:34', 'submission_id': '1gof0b8'}
{'comment': "TBF I don't thinkthay should be putting blended up floridians into the drinking water.", 'created': '2024-11-11 12:47:40', 'submission_id': '1gof0b8'}
{'comment': 'You would thinking getting florida out of the system would be good….\n\n(Sorry couldnt resist the joke)', 'created': '2024-11-11 12:45:19', 'submission_id': '1gof0b8'}
{'comment': 'I drink bottled water only and my teeth are fine, plus there’s fluoride toothpaste, no big deal really.', 'created': '2024-11-11 03:12:35', 'submission_id': '1gof0b8'}
{'comment': 'Sherbet Schultz lol', 'created': '2024-11-11 12:53:54', 'submission_id': '1gof0b8'}
{'comment': 'And like the regular Srgt. Schultz, he knew everything that was going on.', 'created': '2024-11-11 14:21:59', 'submission_id': '1gof0b8'}
{'comment': 'thing is he’s super supportive and a great dad, other than voting for trump. i can’t bring myself to leave him and it sucks', 'created': '2024-11-11 17:02:24', 'submission_id': '1gof0b8'}
{'comment': 'Yeah At least now we can do that dumb trump jerk off dance on tiktok!\n\nSigh I swear these people that voted this bullshit in are going to be in the exact same fucking spot as they were (if not worse) and STILL vote republican because voting for decency was so fucking hard of a concept.', 'created': '2024-11-11 16:08:40', 'submission_id': '1gof0b8'}
{'comment': "I can't start the process now. I have to wait to get my affairs in order, and it'll probably be too late.", 'created': '2024-11-11 02:31:46', 'submission_id': '1gof0b8'}
{'comment': 'Yeah I sort of feel demoralized because I think you have three sides. One side is ehh it won’t be that bad he was just campaigning, another that says yes he is serious but if we fight hard enough we can stop him and those on my side (or I may be alone) who says we are fucked. The PSAs he’s been putting out confirmed it to me. We are in a calm but in about late December Americans are gonna realize wait we really elected Trump again? \n\nSee I think the deportations won’t be massive. They’ll probably round up some criminals and go to some construction sites but 11 million people is insane. I think the deregulation is what scares me. Dismantling the CDC and FDA will happen. Cut all that red tape so his donors can eat. \n\n\nI also think they are set to criminalize all the woke culture they’ve complained about. Trans visibility, DEI and “cancel culture” are all about to be criminal offenses under federal law.', 'created': '2024-11-11 02:47:59', 'submission_id': '1gof0b8'}
{'comment': 'I think all of the decent ones left after January 6th. You also have to remember they took these election results as a mandate. Any that were on the fence about Americans wanting MAGA sadly got their answer\n\nYou already see that in their responses. If someone asks one about the humanity behind mass deportations they just resort to well the American people said that’s what they want 🤷🏾\u200d♂️', 'created': '2024-11-11 02:51:44', 'submission_id': '1gof0b8'}
{'comment': 'Would people over 18 be able to access it? Or would we need to use VPNs', 'created': '2024-11-11 02:28:05', 'submission_id': '1gof0b8'}
{'comment': 'There was one news cycle that was a general who talked to him about wanting more loyal people around and he kept trying to give Trump a way out of the conversation to not say Hitler and Trump still kept saying Hitler. 🥴', 'created': '2024-11-11 21:47:25', 'submission_id': '1gof0b8'}
{'comment': 'Whatever it is, it ain’t gonna end well…', 'created': '2024-11-15 01:50:54', 'submission_id': '1gof0b8'}
{'comment': 'When does Trump ever "work that way"? He\'s going to make it work his way whether it works that way or not.', 'created': '2024-11-11 03:52:03', 'submission_id': '1gof0b8'}
{'comment': 'At least blue states will have elections', 'created': '2024-11-11 05:13:54', 'submission_id': '1gof0b8'}
{'comment': 'Russia has "elections" too don\'t they? Lol', 'created': '2024-11-11 06:13:57', 'submission_id': '1gof0b8'}
{'comment': None, 'created': '2024-11-11 06:03:48', 'submission_id': '1gof0b8'}
{'comment': 'Maduro has elections too…lol', 'created': '2024-11-11 16:57:25', 'submission_id': '1gof0b8'}
{'comment': "Well, he runs the Supreme Court, the Senate, and the House. He can pretty much do whatever tf he wants. And in 2028 will Dems have a younger, tougher redneck candidate who can speak like uneducated barroom brawlers? Not likely. By then he will have every court in the country stacked, no more Department of Education, a hobbled or dismantled DOJ, no CDC so if he wanted to end elections why couldn't he do it? Just say you want to amend the Constitution, have your toadies force it through and there you go. His voters will swoon in ecstasy and glee, which is a sweeping majority of voters throughout the US so if he wants to do it, he can do it. The only good thing is he's 79 and can't live forever. By 83 most people are disabled or incoherent (more so than he already is) and Vance has zero charisma. \n\nSo we need a tough guy barroom brawler redneck cowboy to run who is young, can yell and carry on, is great on TV and has a clear tough guy brand to appeal to all the uneducated white males and yes that candidate has to be a white male if we're going to win. Sorry it's just true.", 'created': '2024-11-11 21:49:29', 'submission_id': '1gof0b8'}
{'comment': 'I think it’s better to say there won’t be any free and fair elections again because I B think they are going to try to replicate what has happened in Russia and Hungary. They still have elections there but only one guy wins every time.', 'created': '2024-11-11 02:12:51', 'submission_id': '1gof0b8'}
{'comment': "The belief likely comes from statements from Trump like the below that implies or more than just implies that if there is another presidential election in 4 years it won't matter the fix is in. \n\n“Christians, get out and vote! Just this time – you won’t have to do it any more,” the Republican former president said on Friday night at a rally hosted in West Palm Beach, Florida, by the far-right Christian advocacy group Turning Point Action.\n\n“You know what? It’ll be fixed! It’ll be fine. You won’t have to vote any more, my beautiful Christians,” he said with a slight shake of his head and his right hand pressed against the left side of his chest.\n\nHe added: “I love you. Get out – you gotta get out and vote. In four years, you don’t have to vote again. We’ll have it fixed so good, you’re not gonna have to vote.”", 'created': '2024-11-11 02:44:11', 'submission_id': '1gof0b8'}
{'comment': 'Trump has openly stated that people who vote for him won’t have to vote again.', 'created': '2024-11-11 02:21:30', 'submission_id': '1gof0b8'}
{'comment': 'How is it unfounded? He promises to be a dictator on day 1.', 'created': '2024-11-11 03:53:18', 'submission_id': '1gof0b8'}
{'comment': ">What probability would you place that we will never hold any Federal elections again in America\n\nI think most people when they say we won't have anymore elections, they mean free and fair elections. \n\nRepublicans have decades of experience at the state level of legislation which reduces Democratic voter turnout. They're always trying to find new laws to do that. \n\nSo of course, with the super majority they're going to think about passing their own form of voting reform at the federal level.", 'created': '2024-11-11 04:29:48', 'submission_id': '1gof0b8'}
{'comment': 'Free and fair elections. I also think it’s doomer, but it isn’t entirely unfounded. We’ll have to wait and see.', 'created': '2024-11-11 03:10:30', 'submission_id': '1gof0b8'}
{'comment': 'I think it’s because Trump said he will be a dictator on day one.', 'created': '2024-11-11 07:07:39', 'submission_id': '1gof0b8'}
{'comment': 'Well, it came from Trump’s mouth. \n“[Christians get out and vote. Just this time. You won’t have to do it anymore.](https://www.usatoday.com/story/news/politics/elections/2024/07/27/trump-christians-wont-have-to-vote-again/74570307007/)” \n\nAs he explained we only have to worry about him being a [dictator for one day](https://apnews.com/article/trump-hannity-dictator-authoritarian-presidential-election-f27e7e9d7c13fabbe3ae7dd7f1235c72)', 'created': '2024-11-11 12:49:05', 'submission_id': '1gof0b8'}
{'comment': '13?!? Fuuuuuck dude!', 'created': '2024-11-11 07:42:43', 'submission_id': '1gof0b8'}
{'comment': "That's why no fault is better. You don't need a reason. Cheaper too.", 'created': '2024-11-11 02:39:58', 'submission_id': '1gof0b8'}
{'comment': 'I agree with your take on deportation but I think he will make it yuge news and a show. As far as the three options I’m on your side. Late January starts a bad game of make it take it and they can’t miss for a while \n\nI have to 100% agree about the deregulations. And the people making those decisions are going to be wildly under qualified to be making those decisions. \n\nAnyone progressive minded will be viewed as an enemy. Branded as someone un American. Someone who’s taking up space and money for True Patriots', 'created': '2024-11-11 02:55:34', 'submission_id': '1gof0b8'}
{'comment': 'Yeah if you’re of age you’d be able to access it. you would just have to go through an identity verification process to prove you’re of age.', 'created': '2024-11-11 02:31:17', 'submission_id': '1gof0b8'}
{'comment': "Of course, because that's what he wanted. Well, he's going to get just that. Remember during the George Floyd protests he wanted to shoot protestors in the legs and his general told him he couldn't do that. This time his new general won't tell him that. Oh, well. This is what an overwhelming majority of voters wanted. He runs the show now.", 'created': '2024-11-12 02:12:36', 'submission_id': '1gof0b8'}
{'comment': 'There’s already pushback by many blue states. Look I know it’s easy to be scared, but we can’t think this way', 'created': '2024-11-11 04:32:52', 'submission_id': '1gof0b8'}
{'comment': 'Fuckin foreal', 'created': '2024-11-11 04:11:21', 'submission_id': '1gof0b8'}
{'comment': 'If red states to refuse to run elections, then there will be several vacant House and Senate seats. More power to the blue states.', 'created': '2024-11-11 07:15:14', 'submission_id': '1gof0b8'}
{'comment': 'Yes, but functionally Russia\'s "elections" are not run by 50 different states. They are run purely at the federal level which is what easily enables manipulation and rampant fraud in their electoral system. This is actually well documented because a lot of Russian election precincts end up with convenient round numbers, probably from ballot stuffing. This is literally impossible to accomplish in our elections.', 'created': '2024-11-11 07:08:46', 'submission_id': '1gof0b8'}
{'comment': 'The moment that happens, there will be repercusions that will make Jan 6th look like a minor scuffle.', 'created': '2024-11-11 07:10:26', 'submission_id': '1gof0b8'}
{'comment': "Sure, voter rights are certainly under attack, especially around polling place locations and hours. And of course, Trump could use the justice department against political opponents. \n\nBut I was responding to the oft-repeated claim that we won't even have elections at all. I've yet to figure out why it's such a common claim, and why people are so certain of it.", 'created': '2024-11-11 02:16:47', 'submission_id': '1gof0b8'}
{'comment': "And you believe that his dictator comment means he wants to dismantle all future elections and that he'll most likely succeed in that goal?", 'created': '2024-11-11 03:55:26', 'submission_id': '1gof0b8'}
{'comment': ">I also think it’s doomer\n\nLook back over the last 50 years at all of the legislation that has been on the books in red states to reduce Democratic voter turnout. \n\nIt's not a stretch of the imagination to think they're going to do the same thing at the federal level, given the chance.", 'created': '2024-11-11 04:31:48', 'submission_id': '1gof0b8'}
{'comment': 'Probably talking about having a backup plan, a place to stay for her (and possibly kids). Assuming like so many abusive relationships she’ll have to be perfect or else get dragged to court for custody, etc. I’ve had family members who waited years to get divorced because of fear of retaliation or fear of losing their children because they’re married to a narcissistic ass hole', 'created': '2024-11-11 02:58:26', 'submission_id': '1gof0b8'}
{'comment': "Yes. I'm afraid I won't have that option in a couple of years when I'm ready to leave.", 'created': '2024-11-11 03:25:54', 'submission_id': '1gof0b8'}
{'comment': 'What does that entail?', 'created': '2024-11-11 02:31:39', 'submission_id': '1gof0b8'}
{'comment': "I would agree with you in any other year, but not now. We keep expecting him and Republican leadership to act ethically and they keep proving they won't. This has been a long game for them and they made small changes over decades to get us here. We need to realize that and plan for all scenarios, not just ones we expect moral people to make.", 'created': '2024-11-11 16:01:53', 'submission_id': '1gof0b8'}
{'comment': "We just have ro come up with someone good and strong that people like. I did alot of calls to get people out to vote for Kamala. Even the democrats didn't like her. They didn't like her 4 years ago and felt like she lied about Bidens health so she could become the candidate. I've made a list a few times of what I was told but my comments get reported. Idk why. If it's how people felt someone smart would use that going forward instead of reporting comments.", 'created': '2024-11-11 15:38:25', 'submission_id': '1gof0b8'}
{'comment': "Never say never. No but seriously, hopefully you're right. Things seem to be snowballing quickly.", 'created': '2024-11-11 07:15:21', 'submission_id': '1gof0b8'}
{'comment': 'Democracy just died. The “mark of the beast” is going to get worse.', 'created': '2024-11-11 12:20:08', 'submission_id': '1gof0b8'}
{'comment': 'I think some people have misinterpreted a speech Trump made where he addressed “my beautiful Christians” and told them if he wins, he will fix everything for them and they won’t ever have to vote again. People took that to mean he would stop elections from happening, but it sounded more like he was telling them that between his appointments to government and the courts, things would be “fixed” so that their religion would be the law of the land and they wouldn’t need to vote because he’d have everything under control.', 'created': '2024-11-11 06:31:00', 'submission_id': '1gof0b8'}
{'comment': 'It\'s a common claim because Trump literally said "we\'ll have it fixed so good you won\'t have to vote in four years". Maybe it\'s not what he meant and it was a misfire within his overcooked cerebral stew. Maybe he didn\'t mean anything and had no idea of the verbal diarrhea spilling out of his labial anus. We could talk about what he meant until the cows come home, but people are saying it because he did.', 'created': '2024-11-11 05:59:30', 'submission_id': '1gof0b8'}
{'comment': 'As a freedom loving American, I don’t vote for people with ANY dictator goals. Let alone people that openly brag about them.', 'created': '2024-11-11 12:49:31', 'submission_id': '1gof0b8'}
{'comment': 'Voter ID maybe but that’s overcome-able.', 'created': '2024-11-11 05:39:09', 'submission_id': '1gof0b8'}
{'comment': 'You nailed it', 'created': '2024-11-11 03:23:41', 'submission_id': '1gof0b8'}
{'comment': 'Oh I see', 'created': '2024-11-11 03:27:51', 'submission_id': '1gof0b8'}
{'comment': 'Sending in a picture of a government issued ID that matches your profile information', 'created': '2024-11-11 02:35:43', 'submission_id': '1gof0b8'}
{'comment': "Of course, we should plan for all scenarios, but we can't lead with the most drastic stuff. I hope we never have to cross some of those bridges, but if we do, we'll cross them when we get to them", 'created': '2024-11-11 16:41:18', 'submission_id': '1gof0b8'}
{'comment': 'No one here expects them to act ethically. We all know they will do what they want, but this narrative from our side that there won\'t be elections is pure horseshit cope. We lost, we need to accept that, we need to move on and we need to build for the midterms. Navel-gazing and the "woe is me" defeatism act won\'t help us at all. Its counter productive.', 'created': '2024-11-11 22:13:43', 'submission_id': '1gof0b8'}
{'comment': 'Democracy only dies if you let it die.', 'created': '2024-11-11 18:28:04', 'submission_id': '1gof0b8'}
{'comment': 'That is because his brain is dementia riddled mush. Whatever bullshit he concocts in his head is not reality, nor does it overpower the 2 million+ service members in the military that swear an oath to the constitution.', 'created': '2024-11-11 07:18:07', 'submission_id': '1gof0b8'}
{'comment': 'Does it have to show the name or?', 'created': '2024-11-11 02:36:26', 'submission_id': '1gof0b8'}
{'comment': "I'm not saying to be a baby or be defeatist. I'm saying to stop holding punches! If we need to be extra manipulative to get the uneducated to understand what the hell they're voting for, then do it.", 'created': '2024-11-11 22:20:51', 'submission_id': '1gof0b8'}
{'comment': 'We just did. I am old enough to tell you this is a scary situation.', 'created': '2024-11-11 19:15:44', 'submission_id': '1gof0b8'}
{'comment': 'Well thank god so many people voted for an ineffective old Alzheimer’s patient. \n\nRemember when everyone freaked out on Biden for being old and demented? Man we really dodged a bullet there', 'created': '2024-11-11 12:47:47', 'submission_id': '1gof0b8'}
{'comment': "Oh for sure. Fuck being nice. I'm tired of it.", 'created': '2024-11-11 22:36:25', 'submission_id': '1gof0b8'}
{'comment': "I guarantee I'm older than you. Its scary, but it only gets worse if you just give up.", 'created': '2024-11-11 19:19:07', 'submission_id': '1gof0b8'}
{'comment': 'The difference is this time Musk and Thiel get to play shadow president while they whisper the worst ideas into his ear.', 'created': '2024-11-11 18:13:37', 'submission_id': '1gof0b8'}
{'comment': 'this is important.\xa0 "young people see through the bullshit and they\'ll save us all"\xa0 was always a bit of a dated idea.\xa0 in 2016 Facebook was deservedly vilified, but things move fast nowadays.\xa0\xa0\n\n\n\xa0when you\'re getting your "news" from a platform with zero editorial rigour and it\'s delivered to you through an algorithm owned by a corporation that\'s answerable to the Chinese regime .... you\'re not going to get balanced news.\xa0', 'created': '2024-11-11 02:41:43', 'submission_id': '1goewtp'}
{'comment': 'The octogenarians running the Democratic Party have been behind the curve.', 'created': '2024-11-11 14:00:05', 'submission_id': '1goewtp'}
{'comment': "I'm 60 and I've seen every generation of young people, including mine, say that everything will be fine once the old people die. \n\nMeanwhile, the most fashy members of Congress are GenX or Millennials.", 'created': '2024-11-12 00:25:06', 'submission_id': '1goewtp'}
{'comment': 'This... lack of establishing future prospects to keep the old guard in power.', 'created': '2024-11-11 14:43:12', 'submission_id': '1goewtp'}
{'comment': 'Even the “future prospects” aren’t young. Harris and Walz are only 3 years younger than Obama.', 'created': '2024-11-11 14:45:00', 'submission_id': '1goewtp'}
{'comment': 'Yup. 100% agree.', 'created': '2024-11-11 15:37:59', 'submission_id': '1goewtp'}
{'comment': 'What value would that provide? We wanted her to be president for a full term, not a ceremonial show.', 'created': '2024-11-11 01:02:56', 'submission_id': '1goe6qf'}
{'comment': "Trump and his MAGA crew have already spent years trying to paint Democrats as crooks. Obviously it's absurd, but it's resonating enough with voters. If Biden resigns, he will join Nixon as the only Presidents who have ever resigned. This would only give additional material to the Republicans to make campaign ads with, and it could hurt perception of Democrats for years.", 'created': '2024-11-11 01:32:51', 'submission_id': '1goe6qf'}
{'comment': 'OR, hear me out here, let Biden, a long time experienced politician, get his last shit done over playing games for spite', 'created': '2024-11-11 00:43:55', 'submission_id': '1goe6qf'}
{'comment': 'The democratic leadership already pushed him out, how correct this was will be debated well into the future, but to push him out of his presidency in the last few months? That’s a level of cruelty only the republicans are capable of considering. \n\nThere is nothing Kamala Harris as 47th president would do that would be more than a minor nuisance to the next administration. Besides, SCOTUS would somehow change that rule too, just to do it.', 'created': '2024-11-11 01:12:32', 'submission_id': '1goe6qf'}
{'comment': 'Harris can stand right beside Biden and make sh*t happen until Jan 20. No drama required', 'created': '2024-11-11 02:59:32', 'submission_id': '1goe6qf'}
{'comment': 'I\'m all game for listening to all ideas, but what would this accomplish?\nIt seems like we would just be wasting our time and resources on this when we should be looking into why 20 million democrat votes just miraculously disappeared.\nBecause I just don\'t believe that "people just didn\'t show up" when I saw it with my own eyes how many people were lining up to vote.\nAnd I\'m beginning to suspect there are trolls on here and everywhere else trying to gaslight us, saying we "need to just let it go" that the election was fair and legitimate.', 'created': '2024-11-11 00:45:06', 'submission_id': '1goe6qf'}
{'comment': "I got a better idea. Let's do some recounts and audit election results. Best case scenario it's proven that Republicans are rigging elections. Worst case scenario MAGA has another failure of ours to ridicule us about while we all wait in line for our daily gruel ration.", 'created': '2024-11-11 01:57:30', 'submission_id': '1goe6qf'}
{'comment': 'This is worst idea ever, the fact someone even thought of this shows how much of a joke dem leadership is', 'created': '2024-11-11 03:18:54', 'submission_id': '1goe6qf'}
{'comment': "Yeah, let's do bits.", 'created': '2024-11-11 00:37:32', 'submission_id': '1goe6qf'}
{'comment': 'And that’s probably why they’re a “former” aide. Cause they’re dumb. This would accomplish absolutely nothing.', 'created': '2024-11-11 02:56:28', 'submission_id': '1goe6qf'}
{'comment': 'A slap in the face to women everywhere.', 'created': '2024-11-11 21:23:10', 'submission_id': '1goe6qf'}
{'comment': 'I hate this pipedream bullshit. We have to do serious things.', 'created': '2024-11-11 01:13:24', 'submission_id': '1goe6qf'}
{'comment': 'Why not.\n\nFuck all those 45-47 hats.', 'created': '2024-11-11 00:54:50', 'submission_id': '1goe6qf'}
{'comment': 'dont do it, its a waste of fucking time', 'created': '2024-11-11 17:02:21', 'submission_id': '1goe6qf'}
{'comment': 'How about releasing the Jack smith findings? Or exposing the accounting fraud that Elon is committing at Tesla? Or exposing how Tether is unbacked and defrauding crypto markets? Or expose the intelligence around Elon’s coordination with Putin? \n\nHow about actually doing SOMETHING, ANYTHING to help protect America. Nope….instead Dems will talk about symbolic moves and institutions. It’s infuriating.', 'created': '2024-11-11 18:39:34', 'submission_id': '1goe6qf'}
{'comment': 'In the very least fuck with the MAGA merch.', 'created': '2024-11-11 00:54:57', 'submission_id': '1goe6qf'}
{'comment': None, 'created': '2024-11-11 00:37:01', 'submission_id': '1goe6qf'}
{'comment': 'This shit is why we lost. Idealism over practicality. Dumb', 'created': '2024-11-11 03:09:44', 'submission_id': '1goe6qf'}
{'comment': 'He needs to start pardoning Dem leaders immediately, including himself and the Clintons', 'created': '2024-11-11 02:16:27', 'submission_id': '1goe6qf'}
{'comment': 'Really fucking stupid idea. \n\nSetting aside the petty childishness of it, it would guarantee that nothing gets done, as you’d lose her tiebreaking vote in the senate. There’s no way they’d get the house to confirm a VP, since with a vacancy Johnson would only be one heartbeat away from the Oval Office, along with the no tiebreak. \n\nAnd even with the senate as it is NOW, you know some chucklefuck like Manchin with love to stick it to the dems one more time, probably sinemahwhatever as well.', 'created': '2024-11-11 03:56:51', 'submission_id': '1goe6qf'}
{'comment': 'This is embarrassing. She isn’t a fucking token. Jesus.', 'created': '2024-11-11 04:52:14', 'submission_id': '1goe6qf'}
{'comment': 'This would all but guarantee nothing else gets done before Jan. They need all hands on deck to get as many judges through as possible and to set as many regulatory traps and mazes as they can to slow down what Trump can do.', 'created': '2024-11-11 06:16:01', 'submission_id': '1goe6qf'}
{'comment': 'I agree with the heading. There is no way he should have been allowed to run. I pulled the constitution up. He couldn’t vote. A convicted felon can’t vote. There are 3 more snap shots that I can’t add. They will be under here\n\nhttps://preview.redd.it/8o3m9xhh1a0e1.jpeg?width=960&format=pjpg&auto=webp&s=a9573b43de271ae587cb3a06ae39eef898c43b3e', 'created': '2024-11-11 14:47:45', 'submission_id': '1goe6qf'}
{'comment': 'This is just about the dumbest thing any political operative could ever come up with.\n\nWe lost an election because we largely lost messaging on meat and potato issues and we come up with something that literally works only for reasons:\n\n1) for Biden to fulfill a bullshit promise he made to be a transitional President.\n\n2) because it would “save” Harris from having to preside over her own loss. She’s a big girl, she can do it.\n\n3) to stick it to Trump and all his #47 paraphernalia.\n\nCompletely misses the fact that the promise was dumb, and at this point would be the most shallow accomplishment; Harris can preside over hard things. She’s an adult; and Trump would love a chance to sell even more swag.', 'created': '2024-11-11 01:53:19', 'submission_id': '1goe6qf'}
{'comment': 'If she becomes president rn she can legally jail trump if she wanted to.', 'created': '2024-11-11 03:00:51', 'submission_id': '1goe6qf'}
{'comment': 'It wouldn’t accomplish shit', 'created': '2024-11-11 01:33:19', 'submission_id': '1goe6qf'}
{'comment': 'We do not need a first woman asterisk president, please do not set us back like that', 'created': '2024-11-11 02:14:09', 'submission_id': '1goe6qf'}
{'comment': 'Just no.', 'created': '2024-11-11 00:34:04', 'submission_id': '1goe6qf'}
{'comment': 'Why not expand the Supreme Court and add her?', 'created': '2024-11-11 01:42:20', 'submission_id': '1goe6qf'}
{'comment': 'That’s the kinda mindless stupid shit republicans do.', 'created': '2024-11-11 08:34:36', 'submission_id': '1goe6qf'}
{'comment': 'Stupid. Voted for them both but this is stupid', 'created': '2024-11-11 02:07:32', 'submission_id': '1goe6qf'}
{'comment': 'Yea, no', 'created': '2024-11-11 02:39:06', 'submission_id': '1goe6qf'}
{'comment': 'Instead of playing fucking petty games, maybe Democrats should plan their 4 year plan. \n\nI am seeing so much finger pointing I am not sure if this is a political party or high school.\n\nThis shit has got to end now. Grow the eff up and be responsible stewards for the country (or resign).\n\nBecause the GOP sure as hell won’t.', 'created': '2024-11-11 03:00:42', 'submission_id': '1goe6qf'}
{'comment': 'This is ridiculous.\xa0 Let him finish his term.\xa0', 'created': '2024-11-11 03:15:55', 'submission_id': '1goe6qf'}
{'comment': 'This is such a stupid idea. On the other hand, many women first is through appointment not by being elected.', 'created': '2024-11-11 03:47:49', 'submission_id': '1goe6qf'}
{'comment': 'It’s not a good look. We need to be strategizing about how we improve the party to win in the future (hopefully there are future fair )elections, not playing petty games. It would also piss me off as a woman if *this* is how we got our first female president.', 'created': '2024-11-11 04:07:38', 'submission_id': '1goe6qf'}
{'comment': 'This is so fucking stupid', 'created': '2024-11-11 04:15:51', 'submission_id': '1goe6qf'}
{'comment': 'I hate even more than the idea to make her a Supreme Court justice. It doesn’t credit her or any of us.', 'created': '2024-11-11 04:22:40', 'submission_id': '1goe6qf'}
{'comment': 'https://preview.redd.it/dw2nf2i3z60e1.jpeg?width=952&format=pjpg&auto=webp&s=8dd970769424cad9b79a06a88fec3c97b7ccb139', 'created': '2024-11-11 04:28:55', 'submission_id': '1goe6qf'}
{'comment': 'I want Hunter pardoned. I want marijuana legalized. I want a series Epstein files released and every embarrassing thing about Trump released for the slow news cycle. I want her to screw with Netanyahu and let Ukraine have full cooperation with us for the last couple of months before Russia gets control of Ukraine.', 'created': '2024-11-11 04:40:50', 'submission_id': '1goe6qf'}
{'comment': "Ya nice way to discredit the man's lifelong career. That's ridiculous and quite frankly upsetting.", 'created': '2024-11-11 04:57:09', 'submission_id': '1goe6qf'}
{'comment': 'To accomplish what exactly?', 'created': '2024-11-11 05:25:22', 'submission_id': '1goe6qf'}
{'comment': "Jerking-off -- which is *precisely* what this kind of stunt would amount too -- is what Republicans do (it's one reason they accomplish so little even when they hold actual power.)", 'created': '2024-11-11 06:24:03', 'submission_id': '1goe6qf'}
{'comment': 'He doesnt owe her anything', 'created': '2024-11-11 18:02:29', 'submission_id': '1goe6qf'}
{'comment': 'It would be a petty move on the part of the Democrats, and something I would expect to see from Trump. When a woman becomes president, it needs to be because she was elected. By Biden resigning and handing it over, you feed into the “affirmative action” idea that she couldn’t do it on her own so someone had to give it to her.', 'created': '2024-11-12 16:02:51', 'submission_id': '1goe6qf'}
{'comment': 'I should get into politics instead of big tech. Apparently you can just continually fail upwards when you’re a politician. Next year when my company denies my promotion, I’m gonna ask to be made the CEO.', 'created': '2024-11-11 02:56:25', 'submission_id': '1goe6qf'}
{'comment': 'That’s nothing but a stupid assed publicity stunt. He should’ve resigned two years ago so that she could be the incumbent coming into the election cycle. Anything else now it’s nothing but bullshit.', 'created': '2024-11-11 03:32:38', 'submission_id': '1goe6qf'}
{'comment': 'As President, she could do executive orders etc in a flurry before Trump is inaugurated. This would be epic! Plus, it would ruin all his 47 merch lol', 'created': '2024-11-11 04:54:20', 'submission_id': '1goe6qf'}
{'comment': 'No.', 'created': '2024-11-11 01:00:02', 'submission_id': '1goe6qf'}
{'comment': 'I can’t believe 103 people upvoted this. The Democratic Party is in dire straits', 'created': '2024-11-11 01:29:07', 'submission_id': '1goe6qf'}
{'comment': 'That would be hilarious', 'created': '2024-11-11 00:51:31', 'submission_id': '1goe6qf'}
{'comment': 'Biden deserves the honor of being the last of our great presidents.', 'created': '2024-11-11 03:35:55', 'submission_id': '1goe6qf'}
{'comment': "Wow... If this doesn't cement that the Dems are way out of fucking touch... This would accomplish absolutely nothing but be a petty fuck you to the right. And of course would make Dems seem like cheats because he mopped the floor with her in the election... Did they learn absolutely nothing? Genuinely the stupidest move they could make right now.", 'created': '2024-11-11 02:30:04', 'submission_id': '1goe6qf'}
{'comment': "I would want Biden and the DoJ look into Felon Musk and what he did or anyone else did to the election apparatus, and certify by our unbiased intelligence agencies that it was all above board. \n\nLet's do something extremely important like that instead of doing meaningless symbolism, because we are about hand over the reins of the most powerful country to a dictator wannabe and his cronies.\n\nLet's verify first.", 'created': '2024-11-11 01:33:51', 'submission_id': '1goe6qf'}
{'comment': "Let's focus on a recount. This is silly", 'created': '2024-11-11 00:48:36', 'submission_id': '1goe6qf'}
{'comment': 'Yea Harris can shake Trumps hand again ! /S', 'created': '2024-11-11 01:31:21', 'submission_id': '1goe6qf'}
{'comment': 'What would this do she would have to eventually plan a transition to Trump', 'created': '2024-11-11 04:46:55', 'submission_id': '1goe6qf'}
{'comment': 'Get it in the history books. Functionally wouldn’t have to change much.', 'created': '2024-11-12 01:47:45', 'submission_id': '1goe6qf'}
{'comment': 'That would make a lot of Trump 47 merch valueless. Haha', 'created': '2024-11-11 00:59:04', 'submission_id': '1goe6qf'}
{'comment': 'Biden should put her in the Supreme Court', 'created': '2024-11-11 01:35:07', 'submission_id': '1goe6qf'}
{'comment': 'They\'d have to reprint all the #47 hats. I think that kind of spite was the point. Like the rumors that the clinton staff took the "W" keys off the computers', 'created': '2024-11-11 03:22:01', 'submission_id': '1goe6qf'}
{'comment': "Sounds like a plan!! Since they stole the election!! We're NOT going back!\n\n\nBiden currently has absolute immunity & if Harris became President, she would have that immunity too.\xa0\n\n\nShe could have the election fully\xa0 investigated or just\xa0refuse to leave the White House in January.", 'created': '2024-11-11 06:35:37', 'submission_id': '1goe6qf'}
{'comment': 'Yes, good idea! Then her 100 days might bring some changes if she thinks ahead. Biden has grown too soft and looks spineless ....', 'created': '2024-11-11 09:50:22', 'submission_id': '1goe6qf'}
{'comment': 'Do it, just to piss them off! And she can say that she was president after Biden', 'created': '2024-11-11 10:42:09', 'submission_id': '1goe6qf'}
{'comment': 'Not a bad idea!!', 'created': '2024-11-11 12:20:51', 'submission_id': '1goe6qf'}
{'comment': 'Well take what we can get.', 'created': '2024-11-11 01:41:52', 'submission_id': '1goe6qf'}
{'comment': 'That would be fucking legendary', 'created': '2024-11-11 01:05:43', 'submission_id': '1goe6qf'}
{'comment': 'Instead of that, what would happen if she did what Trump wanted Pence to do, and refuse to certify the election?', 'created': '2024-11-11 02:34:40', 'submission_id': '1goe6qf'}
{'comment': "Harris lost. She doesn't get to be president now. That's what happens when you lose.", 'created': '2024-11-11 05:53:31', 'submission_id': '1goe6qf'}
{'comment': 'Agree', 'created': '2024-11-11 03:13:08', 'submission_id': '1goe6qf'}
{'comment': 'It would prove to people like far right presidential dinner guest at mara lago with trump Nick Fuentes....\n\n "men won again. Woman will never be president. A glass ceiling? It\'s made out of fucking brick and your stupid faces keep smacking up against the brick"\n\n was his message to women after the election.\n\nIt would make him eat those words.\n\nWhich is fucking worth it. When I heard his voice coming from my wife\'s phone after the election I got furious....and she got very sad.\n\n\nFuck that guy', 'created': '2024-11-11 04:37:27', 'submission_id': '1goe6qf'}
{'comment': 'Great idea.', 'created': '2024-11-11 14:42:01', 'submission_id': '1goe6qf'}
{'comment': 'If Biden can’t/won’t take advantage of the immunity given to him by the Supreme Court maybe she would.', 'created': '2024-11-11 16:24:11', 'submission_id': '1goe6qf'}
{'comment': 'It would be a good thing, she’d sir the election out', 'created': '2024-11-11 17:49:37', 'submission_id': '1goe6qf'}
{'comment': 'If this happened, wouldn’t speaker Johnson become VP? That’s the last person you want involved with the few days left of the administration', 'created': '2024-11-11 01:49:27', 'submission_id': '1goe6qf'}
{'comment': "It'd ruin a lot of bad people's hats and then the tariffs would make the new ones cost more.", 'created': '2024-11-11 01:12:55', 'submission_id': '1goe6qf'}
{'comment': 'Mess up all the Trump 47 merchandise. \n\nThat would be a petty move from Biden.', 'created': '2024-11-11 04:20:06', 'submission_id': '1goe6qf'}
{'comment': 'Gets past the stigma of having a woman as president for one, the other, she would be 47, and everything with 47 on it now would be useless…', 'created': '2024-11-11 13:38:07', 'submission_id': '1goe6qf'}
{'comment': 'Get rid of Garland a get a Pitt bull even for a month. Have Biden pick the SCOTUS now. \nSet in stone a resolution that no immigrants go especially those that married a US citizen. And the tariffs against China. Sign a deal that goes past his term.', 'created': '2024-11-11 14:44:45', 'submission_id': '1goe6qf'}
{'comment': None, 'created': '2024-11-11 01:03:50', 'submission_id': '1goe6qf'}
{'comment': 'I agree… I see the appeal of this but tbh Biden has gotten enough shit, personally I’d like to see him close out his term in the most dignified manner possible', 'created': '2024-11-11 17:14:37', 'submission_id': '1goe6qf'}
{'comment': "Better to have resigned than have dozens of felonies, impeached twice, and attempted a coup.\n\nEvery future president has among the lowest bars to not be documented as the worst person put in office you could ever have. Those are just the facts, and unless the accomplish erasing history —\xa0history won't look on them or this period kindly.", 'created': '2024-11-11 16:57:44', 'submission_id': '1goe6qf'}
{'comment': 'Great point.\n\nA friend and I chatted on this Harris-47 thing. At fist blush, it seems to break the ceiling but his point was, "Does it really?" His metaphor was that it puts her above the ceiling but never really breaks through if people didn\'t actually vote for a woman.\n\nHonestly, the best reason I\'ve heard for the move is to mess with Trump for his merch from China emblazoned with 47.', 'created': '2024-11-11 01:44:22', 'submission_id': '1goe6qf'}
{'comment': 'i wonder what that damn smile means', 'created': '2024-11-11 00:50:45', 'submission_id': '1goe6qf'}
{'comment': "Agree. Personally, I still think we should've kept him running as a president and not shitting ourselves up by changing candidates 3 mths before elections cuz I believe Biden would've carried PA. But that's just me. What do I know.", 'created': '2024-11-11 01:42:48', 'submission_id': '1goe6qf'}
{'comment': "It's Biden, of course this is what he is going to do", 'created': '2024-11-11 03:02:15', 'submission_id': '1goe6qf'}
{'comment': 'This', 'created': '2024-11-11 03:48:40', 'submission_id': '1goe6qf'}
{'comment': 'With respect and apologies to Michelle, going high hasn’t gotten us very far.', 'created': '2024-11-11 16:32:03', 'submission_id': '1goe6qf'}
{'comment': 'He had one job and he failed it massively. He was an anchor weight on her campaign the entire time. The last week of the campaign he was calling trump supporters garbage and biting babies. Not saying he is responsible for what happened but he certainly didn’t help. While his policies have been great, he will go down on history as the president that allowed democracy to die. He also appointed Merrick Garland so yeah no I’m tired of him running things.', 'created': '2024-11-11 13:47:48', 'submission_id': '1goe6qf'}
{'comment': "But will he though? Biden kinda seems like he checked out on caring at this point. And unfortunately he's to straight arrowed to even like realize that they are trying to come after him and put his head on a Pike, metaphorically speaking.", 'created': '2024-11-11 16:17:37', 'submission_id': '1goe6qf'}
{'comment': 'It doesn’t feel honorable. I already have guilt over him stepping down once already; though we had no hand in it.', 'created': '2024-11-11 02:47:14', 'submission_id': '1goe6qf'}
{'comment': 'Exactly. This would be performative and accomplish nothing.', 'created': '2024-11-11 00:50:52', 'submission_id': '1goe6qf'}
{'comment': 'I agree with your comment mostly, but 20 million democrat votes did not disappear and this is getting extremely annoying to hear every day. I mean Harris is literally within 11 million of Biden 2020 right now, and there’s still like 4+ million votes left in California alone. On top of that, Trump just happened to gain a significant number of voters this year from Democrat turnover and Independents breaking for him. The turnout, in the end, will be about equivalent to 2020, so please stop with this conspiracy “20 million voters disappeared,” BS. You guys are literally feeding 2020 election deniers.', 'created': '2024-11-11 01:00:35', 'submission_id': '1goe6qf'}
{'comment': 'It’d be nothing more than a side quest for revenge; it just doesn’t feel right.', 'created': '2024-11-11 02:44:22', 'submission_id': '1goe6qf'}
{'comment': 'Where is your source for the supposed 20 million missing votes?', 'created': '2024-11-11 01:13:56', 'submission_id': '1goe6qf'}
{'comment': 'That’s what I’ve been saying! We don’t even need to have 60+ odd lawsuits over it. Just audit some of these fishy swing precincts that Musk was paying a lot of attention to.', 'created': '2024-11-11 14:25:12', 'submission_id': '1goe6qf'}
{'comment': 'They had a lot of partisan direction telling people to work the polls this year', 'created': '2024-11-11 02:28:08', 'submission_id': '1goe6qf'}
{'comment': 'Are you a dem?', 'created': '2024-11-11 03:24:13', 'submission_id': '1goe6qf'}
{'comment': 'I agree', 'created': '2024-11-11 21:29:41', 'submission_id': '1goe6qf'}
{'comment': 'This would just give credibility to the accusations that Harris was a DEI candidate. Terrible idea', 'created': '2024-11-11 05:33:22', 'submission_id': '1goe6qf'}
{'comment': 'Yep Trump will have to redue all of them hahahahaha', 'created': '2024-11-11 00:57:55', 'submission_id': '1goe6qf'}
{'comment': 'I can deal with that !', 'created': '2024-11-11 00:57:28', 'submission_id': '1goe6qf'}
{'comment': "Sure, let's make them buy everything, all over again and give even MORE money to the mango messiah. Best idea yet!!\n\n/s", 'created': '2024-11-11 04:30:36', 'submission_id': '1goe6qf'}
{'comment': "Meh. He'd be happy to sell the rubes twice the merch. And they'd be happy to buy it.", 'created': '2024-11-11 00:53:24', 'submission_id': '1goe6qf'}
{'comment': 'Why ?', 'created': '2024-11-11 02:17:36', 'submission_id': '1goe6qf'}
{'comment': "Acceptance of a pardon is generally understood to be an admission of guilt, and that wouldn't protect anyone from prosecution under a criminal regime anyway. Absolutely terrible idea.", 'created': '2024-11-11 03:27:50', 'submission_id': '1goe6qf'}
{'comment': 'https://preview.redd.it/zm62loaq1a0e1.jpeg?width=960&format=pjpg&auto=webp&s=e85969da96dccbbb6e4cfb7b4b7709bbac195b18', 'created': '2024-11-11 14:49:03', 'submission_id': '1goe6qf'}
{'comment': '> This is just about the dumbest thing any political operative could ever come up with.\n\nTurns out that a lot of people working for both Biden and Harris were monumental morons.', 'created': '2024-11-11 03:28:17', 'submission_id': '1goe6qf'}
{'comment': 'You reason forgot #4: she can name Pete Buttigieg as VP (Tim already has a job as governor to go back to & would have to be insane to give it up for the sake of a 2-4 week temp job), and simultaneously make Pete the first gay VP *and* send Fox News spiraling into livid rage for weeks.\n\nOf course, if Sotomayor retired, an even more *tantalizingly delicious* possibility comes to mind:\n\n* Joe gets Kamala confirmed by the Senate and onto the Supreme Court\n* Joe names Pete Buttigieg as VP\n* Joe retires, Pete becomes President \n* Pete names Liz Cheney as VP\n\nIt would literally trigger & traumatize Trump and Fox in every way possible.\n\nIf Liz switches parties first, it\'s a major win that gives moderate Republicans an excuse to say, "yeah, maybe I *would* be happier as a center-right Democrat".\n\nIf Liz remains as a Republican, it demonstrates almost-*unprecedented* willingness by centrist Democrats to reach across the aisle and form new productive coalitions.\n\nSome far-left Democrats might go storming off in rage. Let them. They probably didn\'t bother to vote for Kamala because they thought she wasn\'t 100% ideal *anyway*. \n\n \nOh... bonus point #5: if Joe times Pete\'s inauguration as VP (and/or immediate re-inauguration as President) to occur on Festivus, he can utterly and completely *wreck* Christmas for millions of MAGA families... then Pete can time Liz\' selection to occur on Christmas Eve, hammering the metaphorical wooden stake into MAGA\'s chests even harder.', 'created': '2024-11-11 02:21:32', 'submission_id': '1goe6qf'}
{'comment': 'Wait, what did I miss? Jail him for what?', 'created': '2024-11-11 08:58:57', 'submission_id': '1goe6qf'}
{'comment': 'Why not ?', 'created': '2024-11-11 00:35:42', 'submission_id': '1goe6qf'}
{'comment': 'That would be awesome', 'created': '2024-11-11 02:29:27', 'submission_id': '1goe6qf'}
{'comment': 'Why - then trump would just be empowered to do the same', 'created': '2024-11-11 04:36:19', 'submission_id': '1goe6qf'}
{'comment': 'Yeah, but I’d do this just because you know MAGAts are already getting 47 tattoos. trump has hats (because of course he does). Do it just to laugh at them.', 'created': '2024-11-11 02:46:40', 'submission_id': '1goe6qf'}
{'comment': 'I guess like the movie office space', 'created': '2024-11-11 02:58:06', 'submission_id': '1goe6qf'}
{'comment': 'Bots.', 'created': '2024-11-11 01:30:56', 'submission_id': '1goe6qf'}
{'comment': 'I think so', 'created': '2024-11-11 00:52:25', 'submission_id': '1goe6qf'}
{'comment': 'Why are you so angry ?? Relax and take a breathe …..there will be another election in 4 years …calm down', 'created': '2024-11-11 02:33:27', 'submission_id': '1goe6qf'}
{'comment': 'No. If he goes back to Africa we lose millions of dollars in taxes and thousands of jobs. I don’t like hurting fellow humans.', 'created': '2024-11-11 08:28:43', 'submission_id': '1goe6qf'}
{'comment': 'Let’s not focus on a recount that will go nowhere and just accept that we lost the election and try to regroup, maybe?', 'created': '2024-11-11 01:02:03', 'submission_id': '1goe6qf'}
{'comment': 'Exactly !', 'created': '2024-11-11 00:59:15', 'submission_id': '1goe6qf'}
{'comment': 'As a voter of both, hard disagree. Let’s start moving forward. Enough playing in the mud with Trump and his ilk. Time to get to work on the future of the party', 'created': '2024-11-11 02:24:45', 'submission_id': '1goe6qf'}
{'comment': 'Yes it would', 'created': '2024-11-11 01:07:13', 'submission_id': '1goe6qf'}
{'comment': 'I think that has been clarified. The VPs role is ceremonial now.', 'created': '2024-11-11 02:50:22', 'submission_id': '1goe6qf'}
{'comment': 'If Biden were to resign she would become President. That’s the Constitution for ya.', 'created': '2024-11-11 06:49:49', 'submission_id': '1goe6qf'}
{'comment': 'The hat thing would be funny as hell lol', 'created': '2024-11-11 02:16:23', 'submission_id': '1goe6qf'}
{'comment': 'We have more critical things to worry about. Biden should be focused on using his new SCOTUS provided immunity to protect democracy. He can get away with things that no one else can. His career is at its end.', 'created': '2024-11-11 01:14:20', 'submission_id': '1goe6qf'}
{'comment': 'Ha you think Trump will subject his own shitty imports to those tariffs? It’ll probably be one of the first impeachment worthy offenses that happens if these tariffs are actually put into place.', 'created': '2024-11-11 02:07:33', 'submission_id': '1goe6qf'}
{'comment': 'Unlike the magats, harming “the others” is not our primary objective.', 'created': '2024-11-11 01:18:20', 'submission_id': '1goe6qf'}
{'comment': 'I’m sure New Era baseball caps would appreciate it', 'created': '2024-11-11 04:35:02', 'submission_id': '1goe6qf'}
{'comment': 'Well yeah, and not just hats', 'created': '2024-11-11 14:56:48', 'submission_id': '1goe6qf'}
{'comment': 'Hats is the only thing I could think of. Also, get that ceremonial "first lady President" out of the way.', 'created': '2024-11-11 21:40:49', 'submission_id': '1goe6qf'}
{'comment': 'That would be a ~~petty~~ great move from [Dark] Biden.\n\nFIFY', 'created': '2024-11-11 10:03:54', 'submission_id': '1goe6qf'}
{'comment': "I don't see that happening, because it would be a brief period, Trump will call it another coup, no one would have voted for it, and we'll lose the narrative like we did in the election.\n\nMeanwhile, it would delay Biden who needs to use every minute he has preparing for Trump.", 'created': '2024-11-11 13:41:40', 'submission_id': '1goe6qf'}
{'comment': 'I just realized how many families are about to be broken up 😥', 'created': '2024-11-11 15:03:46', 'submission_id': '1goe6qf'}
{'comment': "It wouldn't help. Her winning would have helped. Her losing hurts tremendously, and her doing this may just make it worse. There's not even time for her to set up her own administration.", 'created': '2024-11-11 01:06:13', 'submission_id': '1goe6qf'}
{'comment': 'Isn’t one clown show party enough? \n\nIt turns out the US is not ready to elect a woman. Nothing will change via a stunt. Biden earned a full term. Let’s let him have it.', 'created': '2024-11-11 01:45:09', 'submission_id': '1goe6qf'}
{'comment': 'It would definitely hurt her running again which is very likely.', 'created': '2024-11-11 01:23:37', 'submission_id': '1goe6qf'}
{'comment': "> Better to have resigned than have dozens of felonies, impeached twice, and attempted a coup.\n\nWell yeah, but that's an odd comparison. Biden isn't choosing between those things. He choosing to resign or not. And resigning makes him and his party looks worse.", 'created': '2024-11-11 17:36:05', 'submission_id': '1goe6qf'}
{'comment': 'The glass ceiling was broken in a similar way in Canada. An unpopular Prime Minister resigned and Kim Campbell took the roll.. for 6 months in 1993. Unfortunately a woman has not been elected again.', 'created': '2024-11-11 04:31:24', 'submission_id': '1goe6qf'}
{'comment': "Not only that, one of the common criticisms of Harris, which was repeated over and over again in right-wing medias, is that she was installed as our candidate instead of going through the proper democratic process. And there were plenty of Democrats who felt robbed of being able to primary a candidate. It is going to leave a really ugly taste in people's mouths if she's installed as President just to spite Trump and the mountain we have to climb is high enough that we don't need to hobble our next candidate four years before the next election.", 'created': '2024-11-11 04:14:43', 'submission_id': '1goe6qf'}
{'comment': 'Biden 10000% would not have won', 'created': '2024-11-11 03:12:21', 'submission_id': '1goe6qf'}
{'comment': 'She got 70+ Million votes!! More than Obama! It just turns out that Republicans went to the polls!! Shut the fuck up about Harris not being a great candidate. Democrats eat their own. It never ends…👎', 'created': '2024-11-11 02:21:32', 'submission_id': '1goe6qf'}
{'comment': "No way. I know a lot of Dems who would have had to hold their nose and vote for Biden. I could not bring myself to volunteer for Biden, though I would have voted for him. It was too hard to try and convince people to vote for him when the only reason I was voting for him was he's not Trump. After that debate, there was just no way he would have won.", 'created': '2024-11-11 03:47:05', 'submission_id': '1goe6qf'}
{'comment': "I believe he would have won and history was against the swap. But things seemed to be going well until they weren't.", 'created': '2024-11-11 01:56:19', 'submission_id': '1goe6qf'}
{'comment': "Agree. Biden, in any condition, would have never performed worse than Hillary Clinton... Kamala somehow managed to lose literally everywhere. I'm not even sure why she was the choice for VP. She lost voters in literally every metric across the board.\n\nHindsight is 20/20, sure, but I saw this coming a mile away and so did a lot of people I know. I was a little surprised by the initial positive reception and fundraising when she kicked off her campaign, so I thought maybe she's got a shot.. but that was obviously overhyped smoke and mirrors because she actually caused the first downturn in total voters in the last few decades. We've been trending consistently up, and now, all of a sudden, everyone just opted not to vote.\n\nThe real shocker here is democrats actually did ok down ballot. I expected they'd get deleted across the board, but it was actually competitive even despite losing the presidency massively. That should tell you something. I just can't see Biden performing as bad as she did. That's just crazy to me.", 'created': '2024-11-11 02:05:54', 'submission_id': '1goe6qf'}
{'comment': 'Maybe I\'m just unimaginative, but I find it extremely hard to believe that we would\'ve done worse than this blowout if we had stuck by Biden. I was always against him dropping out, and while we\'ll never know for sure whether he would\'ve done better, I feel at least half-vindicated.\n\nJohn Fetterman really said it best. (Referring to the people that pressured Biden to exit the race) "If you break the man, and you get the election that you demanded, then you really need to own the outcome.” "The options: Double down on the only person that’s ever beat Trump, or demand an alternative. When the outcome didn’t support your thesis and actions, then own it."', 'created': '2024-11-11 02:08:28', 'submission_id': '1goe6qf'}
{'comment': 'Biden’s internal campaign polling this summer supposedly showed Trump winning over 400 electoral votes', 'created': '2024-11-11 05:45:54', 'submission_id': '1goe6qf'}
{'comment': 'He should have done it sooner!!!!!!!', 'created': '2024-11-11 06:38:58', 'submission_id': '1goe6qf'}
{'comment': 'Our election was stolen... Is that honorable?', 'created': '2024-11-11 06:37:33', 'submission_id': '1goe6qf'}
{'comment': 'Exactly. No substance and more pointing at each other and saying, haha', 'created': '2024-11-11 00:59:16', 'submission_id': '1goe6qf'}
{'comment': 'Exactly. We need to be preparing right now. Omg', 'created': '2024-11-11 01:25:22', 'submission_id': '1goe6qf'}
{'comment': 'Except that in 2020 we didnt have the long lines of people waiting to vote!!\nthe turnout for this election should have been way higher than 2020.\nHow much is trump paying you to gaslight us?', 'created': '2024-11-11 01:04:38', 'submission_id': '1goe6qf'}
{'comment': 'I do think people need to make sure their vote counted. Check with the Secretary of State. Mine and my spouse is not there yet and we in person advanced voted one week before the election.', 'created': '2024-11-11 01:54:07', 'submission_id': '1goe6qf'}
{'comment': 'I guess, which is why I want them to be better', 'created': '2024-11-11 06:03:40', 'submission_id': '1goe6qf'}
{'comment': 'Which would just give him more money when his followers inevitably buy millions hats with the new number on them', 'created': '2024-11-11 01:18:59', 'submission_id': '1goe6qf'}
{'comment': None, 'created': '2024-11-11 00:55:22', 'submission_id': '1goe6qf'}
{'comment': "Trump said he's going to start arresting them, a Presidential pardon of blanket immunity would prevent that", 'created': '2024-11-11 03:35:07', 'submission_id': '1goe6qf'}
{'comment': 'https://preview.redd.it/ncv3u86t1a0e1.jpeg?width=960&format=pjpg&auto=webp&s=eff98ed0114508b8ab17cc9b30dc1d7db4e7b55f', 'created': '2024-11-11 14:49:30', 'submission_id': '1goe6qf'}
{'comment': 'What’s the point of triggering Fox News and MAGA folks? We do better when all they can point to are tan suits and Dijon mustard as scandals, not legitimately quirky politricks.', 'created': '2024-11-11 02:29:57', 'submission_id': '1goe6qf'}
{'comment': '> You reason forgot #4: she can name Pete Buttigieg as VP (Tim already has a job as governor to go back to & would have to be insane to give it up for the sake of a 2-4 week temp job), and simultaneously make Pete the first gay VP and send Fox News spiraling into livid rage for weeks.\n\nReplacement VPs require confirmation by both the Senate AND the House.', 'created': '2024-11-11 03:29:06', 'submission_id': '1goe6qf'}
{'comment': "But what's the point if all of this only has a few weeks of being able to do anything?\n\nWhat about if they invoke the 25th to put Kamala in charge? Then, she would get one term plus the remainder of Biden's term", 'created': '2024-11-11 03:35:51', 'submission_id': '1goe6qf'}
{'comment': 'rape, his 40+ felonies. were you living under a rock?????', 'created': '2024-11-11 14:11:38', 'submission_id': '1goe6qf'}
{'comment': 'Because the first female president of the United States deserves to win and take the presidency through being elected by the people, not by being given it by a man so she can hold it for a month, and as a spiteful stunt. It is an insult', 'created': '2024-11-11 02:11:59', 'submission_id': '1goe6qf'}
{'comment': 'Because it’s pointless, it’s bullshit, and while not violent it’s not in the spirit of the peaceful transfer of power we promised and have to deliver on.', 'created': '2024-11-11 00:38:17', 'submission_id': '1goe6qf'}
{'comment': 'Laughing at them made them stronger and they won the election handily. It’s time to break up with this dynamic and get an amazing party with an amazing message together', 'created': '2024-11-11 03:18:19', 'submission_id': '1goe6qf'}
{'comment': 'Hopefully', 'created': '2024-11-11 01:38:51', 'submission_id': '1goe6qf'}
{'comment': "I'm not angry. Just baffled by the idiocy in the highest office of the world. Genuinely what would this accomplish other than as a petty f you move to the right? The left needs to get it together, this will just make us seem like a bunch of sore losers and cheats. She lost the popular vote, there is zero strategic reason why she should be president. She won't be able to accomplish anything different than Biden in a few months. It is just a terrible tactical move. It will go over like a lead balloon. Idk if the Dems don't start making better decisions as a party they will literally never hold office again, if this election is any indication of how well their messaging is going.", 'created': '2024-11-11 03:17:23', 'submission_id': '1goe6qf'}
{'comment': 'In all seriousness, Harris would probably get shit done. Biden’s been sitting around not doing anything to protect us from what’s to come', 'created': '2024-11-11 04:01:04', 'submission_id': '1goe6qf'}
{'comment': 'Judges have to resign to have reappointments plus he will never get any judges confirmed.', 'created': '2024-11-11 12:22:10', 'submission_id': '1goe6qf'}
{'comment': 'She may run again but no way she wins. But I seriously doubt she runs with it not being real close. I also think people now realize a lot of others won’t vote for\na woman especially a woman of color in a mixed marriage no matter what. Realistically if they want to win it’s probably going to have to be a man.', 'created': '2024-11-11 01:53:03', 'submission_id': '1goe6qf'}
{'comment': 'I really don’t want her to', 'created': '2024-11-11 01:25:22', 'submission_id': '1goe6qf'}
{'comment': 'America is not ready for a woman President especially a minority .. 2016 and 2024 shows it', 'created': '2024-11-11 04:19:00', 'submission_id': '1goe6qf'}
{'comment': 'excellent contribution. thanks for adding to our knowledge.', 'created': '2024-11-11 06:32:23', 'submission_id': '1goe6qf'}
{'comment': 'Stop treating these Trump people as precious.', 'created': '2024-11-11 13:10:01', 'submission_id': '1goe6qf'}
{'comment': 'We need to understand there is NO too much with these folks. They already literally tried to overthrow the government! They have giving their minds over to the last diaper wearing sitting president since Wilson has his stroke!\n\nTLDR: they ALREADY hate us at maximum, we should act like it', 'created': '2024-11-11 13:16:46', 'submission_id': '1goe6qf'}
{'comment': None, 'created': '2024-11-11 03:29:00', 'submission_id': '1goe6qf'}
{'comment': 'Biden’s own polls had Trump at 400+EV. This is massive cope, she got more raw votes than Biden 2020 in Wisconsin, Georgia, and North Carolina. Turnout is expected to be down like from 158 m to like 157 m. She basically saved the down ballot races because we didn’t have what 80% of the country thought was a senile old man at the top of the ticket.\n\nhttps://thehill.com/homenews/campaign/4981792-pod-save-america-bidens-internal-polling-showed-trump-winning-400-electoral-votes/amp/', 'created': '2024-11-11 02:24:54', 'submission_id': '1goe6qf'}
{'comment': "We lost four senate seats. \nWe failed to flip the house - or even make it even. \nWhat down ballot went well?\n\nThat said, placing on this all on VP Harris is a cop out. She had 100 days to run a race; she wasn't the one keeping Biden in place. She deserves credit; she ran against someone who has been running for president in some form since Conservative Political Action Conference (CPAC) in February 2011. American's are to blame for this - its 'we the people' - and we are apathetic and stupidly gullible.", 'created': '2024-11-11 02:36:11', 'submission_id': '1goe6qf'}
{'comment': 'Biden would have gotten decimated. Imagine a second debate. Imagine having a couple rallies a week at 2pm. Hell he managed to fuck up the island of garbage controversy in less than 24 hours and he wasn’t even the candidate. \n\nI love Joe Biden, think he was a very good President, and know for certain he would have lost in the largest landslide in a generation. And to be honest this all starts with his administration 1) not screaming from the rooftops how incredible it was that we avoided a depression 2) not shouting from the rooftops any and all accomplishments of the administration 3) not using the 2022 mid terms as the perfect time to launch the search for the next candidate and confirm to the world he was a one term President', 'created': '2024-11-11 02:42:25', 'submission_id': '1goe6qf'}
{'comment': 'Biden’s own polling had Trump at 400 EC votes. It could’ve been much much worse. https://thehill.com/homenews/campaign/4981792-pod-save-america-bidens-internal-polling-showed-trump-winning-400-electoral-votes/amp/', 'created': '2024-11-11 02:25:59', 'submission_id': '1goe6qf'}
{'comment': 'Because wayyyyyyyyyyyyyyyy more people voted by mail in 2020. And line sizes are entirely anecdotal and not evidence for any kind of election fraud. On top of that, the Democratic early vote specifically was substantially higher last election, and Democrats tend to live in areas with a high population density and thus longer lines. Reduce the mail in vote, and those lines are gonna expand.', 'created': '2024-11-11 01:05:43', 'submission_id': '1goe6qf'}
{'comment': 'Except that in 2020 everyone was given a ballot they could mail in. It was made incredibly easy to vote in 2020. Those long lines are the exact reason turnout was lower. People are lazy, and if they see a long line to vote, they just won’t.', 'created': '2024-11-11 01:08:52', 'submission_id': '1goe6qf'}
{'comment': "Sure, but it's not much of a win for anyone but Trump.", 'created': '2024-11-11 00:56:31', 'submission_id': '1goe6qf'}
{'comment': "No it wouldn't. I have no idea what makes you think that it would. He'd already be doing something illegal, you think an embossed piece of paper is going to stop him from doing that illegal thing?", 'created': '2024-11-11 03:36:57', 'submission_id': '1goe6qf'}
{'comment': 'This is crazy !', 'created': '2024-11-11 14:59:30', 'submission_id': '1goe6qf'}
{'comment': "Oops. Yeah, I forgot about the House. I guess that pretty much eliminates the entire second scenario.\n\nThat said... it suddenly makes the possibility of Liz Cheney as VP look even more possible, since she's probably the *only* person who could actually **get** a few outgoing House Republicans to break ranks and vote to approve her. At this point, most of them have nothing left to lose politically... most of them are retiring from the House & politics in general *because* they want nothing to do with Trump's MAGA Republican Party. It would be a perfect way for them to stick up their middle fingers at Mike Johnson and Donald Trump one last time, just to make *extra sure* Johnson & Trump know *exactly* how they feel about them.", 'created': '2024-11-11 03:49:57', 'submission_id': '1goe6qf'}
{'comment': 'I can live with that !', 'created': '2024-11-11 00:38:39', 'submission_id': '1goe6qf'}
{'comment': 'Nah I think it will switch right back to dems in 4 years …..majority of world leaders lost elections due to inflation and the economy…..inflation , unaffordable housing , unaffordable rent, and most importantly grocery prices is why she lost …..majority of people in America are struggling right now to make ends meet. They are working multiple jobs to get by . Majority of America seen Harris as a sequel to Biden and nothing more ….', 'created': '2024-11-11 03:20:26', 'submission_id': '1goe6qf'}
{'comment': "Not true at all, believe in him (Not to mention there would be nothing major she could get done that he would do in 2 or so odd months where they don't control the Senate or the House...)", 'created': '2024-11-11 04:27:16', 'submission_id': '1goe6qf'}
{'comment': 'What? She\'d be seen as a token. This would be the ultimate insult. "You can\'t win, but here\'s the presidency for 2 months."', 'created': '2024-11-11 14:42:42', 'submission_id': '1goe6qf'}
{'comment': 'Watching Harris come back from the Zombie campaign that was Biden 100 days was impressive. Biden was 20 points behind on the economy in polling. Harris got it to down 4. \n\nI say this just to emphasize what can happen when a younger person with energy hops in', 'created': '2024-11-12 01:46:25', 'submission_id': '1goe6qf'}
{'comment': 'Misogyny is so fucking stupid.', 'created': '2024-11-11 04:48:40', 'submission_id': '1goe6qf'}
{'comment': 'Who knows, she has national recognition, she’s relatively young for politicians, she’s very qualified to be president, and she has good ideas. Maybe if she goes through the primary again it will give more time to have a more reaching campaign that will get people out to vote. She could go for something in California again too.', 'created': '2024-11-11 01:58:48', 'submission_id': '1goe6qf'}
{'comment': 'She’s well within her right if she wants to, and she’s very qualified for the job. I’d vote for her again, but I’m definitely open to new options. 2 years till midterms so we gotta figure out what we can do for that to get democrat voters to show up for those to be able to provide more oversight on Trump first.', 'created': '2024-11-11 02:03:49', 'submission_id': '1goe6qf'}
{'comment': '2028 is a new cycle, who knows what the country will want by then, I’m not giving up on any female candidate just because they are female.', 'created': '2024-11-11 04:20:23', 'submission_id': '1goe6qf'}
{'comment': 'Let’s stop treating them as legitimate as well.', 'created': '2024-11-11 16:33:06', 'submission_id': '1goe6qf'}
{'comment': 'Bingo', 'created': '2024-11-11 03:29:48', 'submission_id': '1goe6qf'}
{'comment': 'And what would you have changed with her policies?', 'created': '2024-11-11 05:46:32', 'submission_id': '1goe6qf'}
{'comment': '*they don’t listen to the interior\n\nSource: from Iowa', 'created': '2024-11-11 04:40:17', 'submission_id': '1goe6qf'}
{'comment': "This I don't think gets nearly enough credit, speaking to the enormous benefit K.H. had to the down-ballot races. 👍", 'created': '2024-11-11 06:25:20', 'submission_id': '1goe6qf'}
{'comment': "I'm not necessarily blaming her in particular, but blaming everyone who forced us into this situation. For months, we were told Biden was the answer until that debate.. then we were told we can't have a primary, and Kamala is the answer. Voters aren't getting the choices anymore. The dnc is making the choices for us. My gripe isn't with any individual; it's with all of them. She was a terrible nominee overall, but we already knew that because she had already run a campaign previously and was quickly forgotten.\n\nNewsom wanted to be the nominee, and many of us wanted to see him take on Trump, and we instead got Harris forced down our throat and yes, many of us are now bitter about it because she got decimated.", 'created': '2024-11-11 02:39:43', 'submission_id': '1goe6qf'}
{'comment': "I was saying from the beginning that they didn't have to debate Trump. They didn't need rallies. He didn't need rallies to bring out 81 million voters last time. That doesn't worry me. She had big rallies, and she lost by a landslide.\n\n90% of voters never attend a single rally. People really overestimate how involved people are in politics in their daily lives. Normal people really don't give a shit. They go to work, feed their families, and do it all over again the next day. Word of mouth and name recognition; knowing what the person stands for is a far better metric imo than any that you can earn from rallies. Joe Biden had that recognition among people not terminally addicted to politics.\n\nYeah, we might never know for sure, but it's really hard for me to believe Biden performs worse than she did... especially in the rust belt and PA in particular. I just can't buy into that. He was relatively popular in those areas.", 'created': '2024-11-11 02:54:11', 'submission_id': '1goe6qf'}
{'comment': "We lost this election largely due to misinformation, disinformation, and the cheap opinions that dominate social media and podcasts. And now you're adding it to the list? This is no evidence, one source from the pod save guys. You're doing exactly what befell 70 million+ other people. Believing without confirming.", 'created': '2024-11-11 05:49:59', 'submission_id': '1goe6qf'}
{'comment': "I don't believe the polls.", 'created': '2024-11-11 02:28:39', 'submission_id': '1goe6qf'}
{'comment': 'And a LOT of people that requested their ballot didn’t get it, and LOTS of people that mailed it never got their receipt, on top of the shady registration purges. Something weird happened this election and I’m not sure it was democratic apathy', 'created': '2024-11-11 14:23:38', 'submission_id': '1goe6qf'}
{'comment': 'Better than nothing', 'created': '2024-11-11 03:46:34', 'submission_id': '1goe6qf'}
{'comment': "Liz Cheney is not a person we should be elevating. Not that she would get confirmed by the House either. They wouldn't even hold a vote, even if you thought a couple Rs might break ranks. \n\nThis is just a dumb idea on every level.", 'created': '2024-11-11 03:54:16', 'submission_id': '1goe6qf'}
{'comment': 'I’ve no doubt. Your energy would be better spent on things that mean something though.', 'created': '2024-11-11 00:40:22', 'submission_id': '1goe6qf'}
{'comment': '... we DO control the senate right now, yes?', 'created': '2024-11-11 07:07:39', 'submission_id': '1goe6qf'}
{'comment': 'We do still hold a coalition majority in the Senate until Jan 3.', 'created': '2024-11-11 12:13:20', 'submission_id': '1goe6qf'}
{'comment': 'I’m sure he’ll try and fail to do some measure. I’m 99% sure every democrat(including me) was very confident in Harris after the last election and did not expect this terrible and probably fraudulent outcome.', 'created': '2024-11-11 04:29:05', 'submission_id': '1goe6qf'}
{'comment': 'I agree with you. There’s a lot she can still do. But unfortunately I think it’s become pretty clear she didn’t lose because of her ideas.', 'created': '2024-11-11 03:57:30', 'submission_id': '1goe6qf'}
{'comment': 'Nothing, it wasn’t her policies. No one who didn’t vote for her even knows her policies\n\nAnd Trump doesn’t HAVE policy so they didn’t vote for that either\n\nI believe it has more to do with the right wing rage bubble and we need to create our spaces of hate pumping 24/7 like they do to have a chance again', 'created': '2024-11-11 13:20:40', 'submission_id': '1goe6qf'}
{'comment': 'Didn’t that lady from Iowa who is never wrong say something very different?\n\nThough she probably didn’t pay attention to right wing rage media machine either', 'created': '2024-11-11 13:22:21', 'submission_id': '1goe6qf'}
{'comment': 'This is what’s confusing me\n\nIs it that a bunch of people went out and voted just for Trump (like not straight ticket, JUST Trump) while fewer Harris voters overall still voted down ballot giving us those seats? Or that more people went out to vote Dem down ballot but leave the president blank? In 6 out of 7 swing states? Has that ever happened or is something weird going on?', 'created': '2024-11-11 13:27:48', 'submission_id': '1goe6qf'}
{'comment': 'Why? Polls were pretty accurate this election.\n\nThat was his own internal polls. Polls that were likely slightly biased in his favor. He was losing places like Illinois, Colorado and New Jersey.', 'created': '2024-11-11 02:30:28', 'submission_id': '1goe6qf'}
{'comment': "No, it's not. It would function as total confirmation of every fever dream the right has ever had about democrats being corrupt and criminal. If they're not criminal, why would they pardon themselves? It would do massive, massive harm that would last an extremely long time and wouldn't prevent any extralegal attempts at arrest.", 'created': '2024-11-11 03:52:13', 'submission_id': '1goe6qf'}
{'comment': "OK, think about it for a moment. Realistically, if Liz switched parties, there's only one federal office she'd have a realistic shot at winning: House of Representatives, for Wyoming. Can we agree that Wyoming's... er... demographics... would make it almost impossible for anyone besides Liz to run as a Democrat in Wyoming *and actually win the seat?*\n\nYou might find her ideology and family history to be abhorrent... but do you *really* think a MegaMAGA extremist like Hageman (Wyoming's current representative) is a genuine improvement over hypothetical Liz Cheney(D-WY)? Even if she went full-on Joe Manchin and voted against House Democrats more often than she voted with them, it would *still* be more votes than House Democrats would **ever** get from Hageman.\n\nThat said, you raised a good point about the House refusing to vote on the matter at all. If the opportunity ever arises in the future to ratify another amendment fixing bugs in the 25th Amendment, that amendment should probably require that the House of Representatives and Senate hold a vote within some concrete timeframe, *precisely* to guarantee that no Speaker or house rules can keep the US permanently in limbo and unable to replace a vacancy for Vice-President.", 'created': '2024-11-11 04:11:08', 'submission_id': '1goe6qf'}
{'comment': 'I’m giving the news and politics as a whole a break for a while ! I’m exhausted from it trust me', 'created': '2024-11-11 00:40:58', 'submission_id': '1goe6qf'}
{'comment': 'Mostly because she is the tie breaker', 'created': '2024-11-11 14:59:19', 'submission_id': '1goe6qf'}
{'comment': 'Yes. She’d get it done.', 'created': '2024-11-11 14:45:59', 'submission_id': '1goe6qf'}
{'comment': "We don't want to fall to the level of Republicans in 2020, if we worked so hard to accuse them of practical insanity (by claiming the election was fraud) then why would we stoop to the level of them over 1 election season and disapointment? I sincerly don't think that she will be able to do something you think he would fail at..", 'created': '2024-11-11 18:37:24', 'submission_id': '1goe6qf'}
{'comment': 'More people only voted for Trump in the swing states and even in safe states like NY.', 'created': '2024-11-11 16:24:14', 'submission_id': '1goe6qf'}
{'comment': 'That is such an absurdity of a result as to be impossible to take seriously in any capacity. Like a far far worse inverted version of the Seltzer poll hype.', 'created': '2024-11-11 02:47:13', 'submission_id': '1goe6qf'}
{'comment': "I don't care if she runs for the House. I'd prefer she do it as an independent if she does. And I don't want her anywhere close to face of the party. Democrats right now are perceived as the party of the elites, the party trying to protect a failed establishment. Cheney, Bushes, Romney et al do NOT help with that image. And quite frankly, the message and policies it takes to bring them on board actively alienates the working class voters we need to win.", 'created': '2024-11-11 06:53:56', 'submission_id': '1goe6qf'}
{'comment': 'Sadly not really they just keep status quo most of the time', 'created': '2024-11-11 19:28:41', 'submission_id': '1goe6qf'}
{'comment': 'Kamala won NJ by 6, Illinois by 9, Minnesota by 4 and Colorado by 10. It would only take 5 % of voters in each state to flip to Trump for that to happen.', 'created': '2024-11-11 02:50:03', 'submission_id': '1goe6qf'}
{'comment': 'And that was already an abysmally bad performance. To add another crazy margin on top of that is well outside the realm of possibility.', 'created': '2024-11-11 04:05:57', 'submission_id': '1goe6qf'}
{'comment': 'That’s a massive margin.', 'created': '2024-11-11 03:14:24', 'submission_id': '1goe6qf'}
{'comment': 'Yeah! But I could easily imagine that happening if Biden was still top of the ticket. Even though I don’t think he’s senile, that’s the view of the average person.', 'created': '2024-11-11 03:15:45', 'submission_id': '1goe6qf'}
{'comment': 'There was a focus group where they asked if Trump was an authoritarian. The number one answer was “what’s an authoritarian?”', 'created': '2024-11-10 23:45:41', 'submission_id': '1goc1ng'}
{'comment': 'They were fed a constant stream of misinformation, lies, and fear. They were pampered and told they were special and "others" are coming for their jobs and lives. Information bubbles are a real thing, and too many people refuse to think critically or are open to new information.', 'created': '2024-11-10 23:28:51', 'submission_id': '1goc1ng'}
{'comment': 'Because he’s not going to tread on them, he’s going to tread on all the people he hates too.', 'created': '2024-11-10 23:28:30', 'submission_id': '1goc1ng'}
{'comment': 'Because libertarians/tea party don’t actually believe in any of the values they claim to. They think “libertarian” sounds smarter than “conservative” or “republican” but fall in line with them', 'created': '2024-11-10 23:32:21', 'submission_id': '1goc1ng'}
{'comment': "Inflation has everything fucked\n\nMemories are short\n\nWaltz sounds *jewey*\n\nAmerica has been trained to kowtow to our oligarchs \n\nKamala sounds un Christian \n\nPutin & Musk are 2 of the absolute richest people ever on earth, and both want America's power. \n\nMisogyny still exists \n\nWomen don't vote their interests \n\nSpanish don't vote their interests \n\nThe RED team reads at a 6th grade level\n\nFear is a better motivator than HOPE", 'created': '2024-11-10 23:27:54', 'submission_id': '1goc1ng'}
{'comment': "As long as the bully is one of them, they enjoy being the bully. It's one of the reasons why republicans don't travel overseas. They're in the minority.", 'created': '2024-11-10 23:29:51', 'submission_id': '1goc1ng'}
{'comment': 'Doesn’t help Gen Z & just assholes in general think he’s funny.', 'created': '2024-11-11 01:26:27', 'submission_id': '1goc1ng'}
{'comment': 'Stupidity.', 'created': '2024-11-10 23:24:49', 'submission_id': '1goc1ng'}
{'comment': 'Verify. Request hand recounts and audits. Don’t accept anything on face value. They didn’t 4 years ago.', 'created': '2024-11-10 23:31:23', 'submission_id': '1goc1ng'}
{'comment': "Because they're painfully fucking stupid.", 'created': '2024-11-11 01:27:09', 'submission_id': '1goc1ng'}
{'comment': 'Because the elections were rigged. Voting machines were hacked by the Russians. 7 swing states voted for Trump but voted blue everywhere else down the ballot. 15 million votes missing from their count. \n\nI know we are averse to sounding like the magats but this shouldn’t be ignored. This should be investigated. I don’t trust the vote count here in Florida either.', 'created': '2024-11-10 23:44:05', 'submission_id': '1goc1ng'}
{'comment': 'Need to start calling divisive republicans bootlickers. I mean it. Every single time they demonize a group of Americans say this: \n\n “I find what you just said disgusting, and I don’t understand why you would take a stance that turns us against fellow Americans, we will fall if we continue to be divided. That’s exactly what our enemies want. Why do you want to see our enemies succeed? Why are you such a *bootlicker* “ \n\nLiterally just interrupt them and say that whole paragraph every single time.', 'created': '2024-11-11 00:11:28', 'submission_id': '1goc1ng'}
{'comment': 'As Bill Maher noted in wonder, the biggest google search Election Day was "Who is running for president?" followed by "Where do I vote?"\n\nWe are NOT clueless when we has a smart fone in ours hand.', 'created': '2024-11-11 00:50:46', 'submission_id': '1goc1ng'}
{'comment': 'Two reasons come to mind: They don’t really know what they’re voting for, they just like how he hates brown people and yells insults. Most of them don’t know how tariffs work and think trump is really gonna stick it to China. And two, if they do know what they voted for, they don’t think it’ll happen to them. They’re really gonna own the libs not realizing that this shit applies to all of us.', 'created': '2024-11-11 03:47:46', 'submission_id': '1goc1ng'}
{'comment': 'The grocery bill is too \\*\\*\\*\\* high and their chosen "news" sources blamed the democrats for that rather than explaining the complex situation that caused that.', 'created': '2024-11-10 23:53:23', 'submission_id': '1goc1ng'}
{'comment': "And they'll never solve the equation. Every discomfort or fluctuation will somehow be Obama, Joe or Kamala's doing forever.", 'created': '2024-11-10 23:53:09', 'submission_id': '1goc1ng'}
{'comment': 'For the size of our country, democracy isn’t impacting people the way its’s sold. Fear, anger and blaming the other (immigrants/trans/scapegoat) is what works. We’ve all just witnessed it. The majority of Americans that voted for Trump are frustrated with the system in general. We’re also fighting social media tapping into our worst tendencies.', 'created': '2024-11-11 00:02:02', 'submission_id': '1goc1ng'}
{'comment': 'Because, in their belief, democracy isn’t working for them- why would they vote to defend it?', 'created': '2024-11-11 00:55:00', 'submission_id': '1goc1ng'}
{'comment': 'Election fraud?', 'created': '2024-11-11 03:11:03', 'submission_id': '1goc1ng'}
{'comment': '“Don’t tread on me, tread on them.”', 'created': '2024-11-11 05:58:25', 'submission_id': '1goc1ng'}
{'comment': 'Mostly because the have no idea what authoritarian means…. \n\nNo seriously', 'created': '2024-11-11 06:14:07', 'submission_id': '1goc1ng'}
{'comment': 'Their libertarianism was only ever performative.', 'created': '2024-11-11 08:17:16', 'submission_id': '1goc1ng'}
{'comment': "In the words of James Carville: it's the economy stupid. The tariffs supposedly mean survival( i know they don't) for manufacturing and the people in PA OH and WI bought it. And the people in AZ, GA, NC and NV thought that it meant economic survival for their families so they bought it. Most people don't understand taxes, let alone tariffs.", 'created': '2024-11-11 00:31:06', 'submission_id': '1goc1ng'}
{'comment': 'Libertarians in guns only.', 'created': '2024-11-10 23:22:52', 'submission_id': '1goc1ng'}
{'comment': 'Because “GaS”.', 'created': '2024-11-10 23:43:47', 'submission_id': '1goc1ng'}
{'comment': "Well they also counter-protested four years ago in favor of a police officer who quite literally killed a man by treading on him. I don't really think they are too self-aware.", 'created': '2024-11-11 01:05:56', 'submission_id': '1goc1ng'}
{'comment': 'Also consider this, in several states (including those won by Kamala), Democrats did not show up. \n\nConsider this, in New York, Trump received 191,686 more votes than he got in 2020. Harris received 891,881 fewer votes than Biden in 2020. 😳', 'created': '2024-11-11 03:09:46', 'submission_id': '1goc1ng'}
{'comment': 'Are you assuming they knew the meaning of that flag to begin with?', 'created': '2024-11-11 03:26:21', 'submission_id': '1goc1ng'}
{'comment': 'They think they are the ones treading', 'created': '2024-11-11 03:39:09', 'submission_id': '1goc1ng'}
{'comment': 'They were promised their selfishness would be rewarded', 'created': '2024-11-11 04:07:41', 'submission_id': '1goc1ng'}
{'comment': 'I think overwhelmingly is a bit strong, by the time the votes are finished being counted it’s likely to be within a million votes in the popular vote. And in 4 years when the cult of personality candidate is no longer on the ballot I think we will have a better idea of where people really stand.', 'created': '2024-11-11 04:22:59', 'submission_id': '1goc1ng'}
{'comment': 'Because he’ll tread on the people they both hate first. They don’t think he’ll come for them. Yet', 'created': '2024-11-11 06:14:06', 'submission_id': '1goc1ng'}
{'comment': "Because everyone that trends even slightly red has been immersed in a propaganda machine feeding them somewhere between disinformation and misinformation. \n\nThey're uninformed.", 'created': '2024-11-11 08:22:33', 'submission_id': '1goc1ng'}
{'comment': 'The fact that people who aren’t ill-informed but vocal armed white men are walking around in public like ill-informed but vocal armed white men is oppressive to ill-informed but vocal armed white men and Trump will save them.', 'created': '2024-11-11 08:33:00', 'submission_id': '1goc1ng'}
{'comment': 'BOYCOTT TESLA - Spread the word!!', 'created': '2024-11-11 18:09:10', 'submission_id': '1goc1ng'}
{'comment': 'Misinformation + Uneducated = MAGA wins', 'created': '2024-11-11 20:00:32', 'submission_id': '1goc1ng'}
{'comment': 'Hate', 'created': '2024-11-12 06:42:36', 'submission_id': '1goc1ng'}
{'comment': 'The voting machines used Starlink. Elon hacked us', 'created': '2024-11-11 00:14:23', 'submission_id': '1goc1ng'}
{'comment': 'It’s about guns. Period. The people who fly this flag are generally tax adverse individuals.', 'created': '2024-11-10 23:08:44', 'submission_id': '1goc1ng'}
{'comment': None, 'created': '2024-11-10 23:16:49', 'submission_id': '1goc1ng'}
{'comment': 'poor economic and border message. woke-ism has become toxic, and people are tired of it. people also just wanted any change from the incumbent.', 'created': '2024-11-10 23:52:56', 'submission_id': '1goc1ng'}
{'comment': "i honestly think it's because we've become absolutely EXHAUSTED at all of the rules and ordinances and bylaws and red tape that Democrats just have to add onto everything. i get it, safety is your number one concern, but did it ever occur that most people find that boring and oppressive? \n \nit feels like we are all being treated like toddlers under helicopter and bulldozer parenting approaches and it is suffocating. i finally get it. neoliberal democrats probably never will. they will say things like, oh it's our fault just cuz we want yall to be safe??? yes, it is your fault for making us all resent you and your fingerwagging ways.", 'created': '2024-11-11 00:40:22', 'submission_id': '1goc1ng'}
{'comment': 'Pretty much sums it up!\nI’m guessing that they will be finding out.', 'created': '2024-11-11 00:03:32', 'submission_id': '1goc1ng'}
{'comment': "God, why did I decide to study political science...? Now I'm going to know even better than most how incredibly stupid these morons are", 'created': '2024-11-11 04:11:35', 'submission_id': '1goc1ng'}
{'comment': '“What are tariffs” has also spiked, AFTER the election when the adults started telling Trumpers they’re going to be responsible for those.', 'created': '2024-11-11 07:34:22', 'submission_id': '1goc1ng'}
{'comment': 'Here in MI every commercial for the last couple weeks was a political one. 80% were from billionaire PACs. one that was in almost every commercial break was literally screaming that dems were responsible for afganistan, crime was skyrocketing, millions of illegals were killing people, inflation was skyrocketing, and country was shit. literally easily proved BS. people are stupid.', 'created': '2024-11-11 01:11:04', 'submission_id': '1goc1ng'}
{'comment': 'This is the reason right here. People keep asking us why these people voted against their own best interests and the reason is because they all live in a world of alternative facts. They live in some fear-based conservative fantasy.', 'created': '2024-11-11 12:56:46', 'submission_id': '1goc1ng'}
{'comment': None, 'created': '2024-11-11 00:25:35', 'submission_id': '1goc1ng'}
{'comment': 'More to the point, he will let them do the treading.', 'created': '2024-11-11 02:27:23', 'submission_id': '1goc1ng'}
{'comment': 'Totally agree with you but just wanted to clarify, very few Spanish in this country. They’re from Spain in Europe. \n\nWe have many Hispanics and Latin Americans though.', 'created': '2024-11-11 00:41:05', 'submission_id': '1goc1ng'}
{'comment': 'That about sums it up, sadly', 'created': '2024-11-10 23:38:20', 'submission_id': '1goc1ng'}
{'comment': 'How do you not list \n#RACISM', 'created': '2024-11-11 02:02:16', 'submission_id': '1goc1ng'}
{'comment': None, 'created': '2024-11-11 00:02:10', 'submission_id': '1goc1ng'}
{'comment': "it's far easier than this. americans are fed up with being told what to do and how everything little thing they do wrong is some big catastrophe.", 'created': '2024-11-11 00:41:27', 'submission_id': '1goc1ng'}
{'comment': "But RICH REPUBLICANS do travel. I remember seeing rich Republicans out in Dubai being interviewed during the 2016 election cycle. They were wearing their Red caps in support of Trump, soaking up the luxurious background.\n\nI told myself I wished they'd all stayed there.", 'created': '2024-11-11 00:31:53', 'submission_id': '1goc1ng'}
{'comment': 'Undereducated low information 🐑', 'created': '2024-11-10 23:42:25', 'submission_id': '1goc1ng'}
{'comment': 'Sprinkle a lot of propaganda in there too.', 'created': '2024-11-10 23:46:41', 'submission_id': '1goc1ng'}
{'comment': 'He cheated in the prior 2 elections, but didn’t in this one.. these fuckers try to cheat at everything, no way they didn’t here. This time it worked though.', 'created': '2024-11-11 00:26:07', 'submission_id': '1goc1ng'}
{'comment': "I don't know if any investigation will put Kamala in office, but it might reflect a much closer race or pile on some more allegations.", 'created': '2024-11-11 01:40:34', 'submission_id': '1goc1ng'}
{'comment': None, 'created': '2024-11-11 02:31:34', 'submission_id': '1goc1ng'}
{'comment': "They don't know what a bootlicker is", 'created': '2024-11-11 01:53:16', 'submission_id': '1goc1ng'}
{'comment': 'We have to do the same now. Remind people that whatever discomfort or fluctuation is now actually HIS doing. Wipe it in their damn faces. Thanks Trump!', 'created': '2024-11-11 01:44:27', 'submission_id': '1goc1ng'}
{'comment': 'Damned good thing nobody asked the soybean farmers how Trumps steel tariffs worked out.\n\nGranted, you’d need a fucking Ouija board to do it but still….', 'created': '2024-11-11 07:42:12', 'submission_id': '1goc1ng'}
{'comment': "A trend repeated across the country. You can't blame R for #p01135809, blame D who didn't show up", 'created': '2024-11-11 03:18:35', 'submission_id': '1goc1ng'}
{'comment': 'They do not. Cut it out.', 'created': '2024-11-11 00:48:11', 'submission_id': '1goc1ng'}
{'comment': 'He’s going to take their guns…in time…Authoritarians don’t allow citizens to be armed. He’ll just get his police in place and tell them to give them up or be imprisoned or killed.', 'created': '2024-11-10 23:26:25', 'submission_id': '1goc1ng'}
{'comment': 'Americans? Who else could be “they”?', 'created': '2024-11-10 23:27:17', 'submission_id': '1goc1ng'}
{'comment': 'DJT\'s "they/them" commercial hit hard. And it was played during football games on Sunday with teams from battleground states playing.', 'created': '2024-11-11 00:36:13', 'submission_id': '1goc1ng'}
{'comment': None, 'created': '2024-11-11 02:33:10', 'submission_id': '1goc1ng'}
{'comment': 'FAFO TIME! 😬 😬 😬', 'created': '2024-11-12 02:29:12', 'submission_id': '1goc1ng'}
{'comment': 'I spent more than two months of my summer and early fall, arguably the last ones I may see as a free person in America, researching the rise of the Nazis and the parallels with MAGA in the present. I did it to see if I could help sway the election. Obviously that was no joy. But now I get to sit here and watch it all play out, understanding the minutiae of every little twist and turn. It’s so much fun! So totally empathize with you here. Ignorance really is bliss.', 'created': '2024-11-11 05:36:56', 'submission_id': '1goc1ng'}
{'comment': 'So has “project 2025”', 'created': '2024-11-11 10:06:10', 'submission_id': '1goc1ng'}
{'comment': "When's the last time you've seen someone literally riding on coattails?\n\nBecause my first time, will be my first time.\n\nIf only this election was Drumpf's first crime", 'created': '2024-11-11 00:08:09', 'submission_id': '1goc1ng'}
{'comment': "Well, he has at least 8 to 10 more years before he kicks the can. I can't see TangTaint staying alive past 2035 if he's given another 4 more years of office, not with his health the way it is.", 'created': '2024-11-11 00:27:24', 'submission_id': '1goc1ng'}
{'comment': 'Ironically, enabling a giant fuckin catastrophe...\n\nUkraine is totally fucked meow, for starters \n\nThe further rot another Drumpf term will have on the already slanted US courts & Gerrymandering are the equivalent of herpes...', 'created': '2024-11-11 00:51:27', 'submission_id': '1goc1ng'}
{'comment': 'Well it’s a good thing red state policies aren’t actually killing women or smug “catastrophe” comments would sound pretty arrogant.\n\nBut anyway there’s several families in Texas just in the last few weeks that you should personally visit to tell them their daughter’s deaths aren’t a valid problem. They’ll be glad to know.', 'created': '2024-11-11 07:38:38', 'submission_id': '1goc1ng'}
{'comment': None, 'created': '2024-11-11 00:06:52', 'submission_id': '1goc1ng'}
{'comment': 'Every accusation they make is a confession.\n\nIt’s been this way for years.', 'created': '2024-11-11 00:28:03', 'submission_id': '1goc1ng'}
{'comment': 'Depends: why would they make it obvious? All they have to do is run an algorithm that says dem votes are worth 1.0, and R votes are worth 1.05. \n\nOn any election that’s even vaguely close in reality, it puts the win firmly in the R court.', 'created': '2024-11-11 07:41:09', 'submission_id': '1goc1ng'}
{'comment': 'Yeah maybe, but they are going to be able to tell from my tone after I tell them to their face.', 'created': '2024-11-11 02:10:12', 'submission_id': '1goc1ng'}
{'comment': 'Actually, some of them did use Starlink modems.', 'created': '2024-11-11 06:13:48', 'submission_id': '1goc1ng'}
{'comment': 'Yep, he was calling for taking away guns without due process back in 2018. He’s pro gun but he doesn’t care about the second amendment at all. That’s a recipe for taking guns away from regular citizens so they aren’t a threat to his power.', 'created': '2024-11-10 23:42:46', 'submission_id': '1goc1ng'}
{'comment': 'His most ardent fans will keep their guns because they will become members of his secret police.', 'created': '2024-11-10 23:54:57', 'submission_id': '1goc1ng'}
{'comment': "He's not taking away any guns. He is actually promising to sign an executive order on full reciprocity with open carry states, so anybody visiting a state with strict gun laws will be governed by their own home state. This is plainly terrifying, and hope it is successfully quashed.", 'created': '2024-11-10 23:53:48', 'submission_id': '1goc1ng'}
{'comment': 'Seems implied: Libertarians/ Tea Party', 'created': '2024-11-10 23:30:44', 'submission_id': '1goc1ng'}
{'comment': "I thought so, but it's my bad for missing the signs the question was about the tea party specifically.\xa0 \xa0 \xa0", 'created': '2024-11-11 02:01:37', 'submission_id': '1goc1ng'}
{'comment': 'proof is also with the puerto rico bad joke. didn\'t have the effect that was being pushed. there were and are more important things to people than virtue signaling. people here need to "wake" up to that fact.\n\ni mean would people here rather want less abortion restrictions and eventually no restrictions; or, these cringe outrages of virtues that were often not being trampled upon. the affordable care act and social security are in jeopardy...mass deportations...over cringe woke takes. obviously not the main reason of why we are here, but a contributing one.', 'created': '2024-11-11 00:45:44', 'submission_id': '1goc1ng'}
{'comment': "harris' economic plans requires congress. it was less likely that she would have the senate. she listed a bunch of things that were pretty much campaign promises that usually aren't kept. if she went into more details about how she's gonna work with congress to get everything passed and how she plans to get the ftc to attack price gouging...much like she went into details on abortion and democracy...she might have convinced people.\n\nwhen i said woke-ism has become toxic, i'm directing it to the general scale of the public temperature and not anything harris campaigned on. on that note, idk why she didn't just say she's against trans surgeries for prisoners. that at least would have gotten some of her voting opposition to think twice and consider her.", 'created': '2024-11-11 02:51:50', 'submission_id': '1goc1ng'}
{'comment': 'It’s only a stressful job if you have the balls to take it seriously', 'created': '2024-11-11 07:36:24', 'submission_id': '1goc1ng'}
{'comment': 'oh, i\'m right there with you. it sickens me to see what they\'ve done to the supreme court. but i really do feel like i\'m onto something here. when you are confronted and annoyed by these "safety first" policies, day in and day out, you stop caring about those bigger picture ideals.', 'created': '2024-11-11 01:04:29', 'submission_id': '1goc1ng'}
{'comment': '😉', 'created': '2024-11-11 02:08:40', 'submission_id': '1goc1ng'}
{'comment': 'I know that it’s what autocrats do…but he has to set up the infrastructure with the Armed Forces in place to accomplish it. If he’s brutal enough, he may just give an ultimatum to surrender them or die…autocrats rule by fear. I’m thinking this is the worst case scenario but he’s definitely not loyal to ANYONE.', 'created': '2024-11-11 00:45:33', 'submission_id': '1goc1ng'}
{'comment': 'He literally said, “I like taking the guns first and then worrying about due process”.', 'created': '2024-11-11 06:12:34', 'submission_id': '1goc1ng'}
{'comment': 'Maybe…I only know a little about autocrats..but I know they have to have complete control.', 'created': '2024-11-11 00:40:45', 'submission_id': '1goc1ng'}
{'comment': 'Idk if I believe him. But, maybe he will at first? Typically Autocrats end up taking all of the guns…but I can see where that could take years probably…', 'created': '2024-11-11 00:42:49', 'submission_id': '1goc1ng'}
{'comment': 'Would they make a difference in the election? I’m not sure how many voted…', 'created': '2024-11-10 23:32:46', 'submission_id': '1goc1ng'}
{'comment': 'This', 'created': '2024-11-10 23:43:48', 'submission_id': '1goc1ng'}
{'comment': None, 'created': '2024-11-11 02:55:47', 'submission_id': '1goc1ng'}
{'comment': 'With him golfing so much during his first term, one can only hope his back gives out and causes him tremendous agonizing bed ridden pain this time around', 'created': '2024-11-11 07:39:06', 'submission_id': '1goc1ng'}
{'comment': 'If the Democrats could simply say:\n\n*"We\'re not doing anything about guns, it\'s a Republican issue."*', 'created': '2024-11-11 01:47:19', 'submission_id': '1goc1ng'}
{'comment': 'It is a process. They want the populace to be docile and not able to challenge the state.', 'created': '2024-11-11 00:46:43', 'submission_id': '1goc1ng'}
{'comment': 'First though, they get the people with the guns on their side.', 'created': '2024-11-11 00:43:47', 'submission_id': '1goc1ng'}
{'comment': 'Lots of people that say they’re “libertarian” aren’t actually and are just republicans. I’m sure if you asked a bunch of republicans their political views a lot would say libertarian', 'created': '2024-11-10 23:35:28', 'submission_id': '1goc1ng'}
{'comment': 'can you calm down? you\'re being overly emotional that it\'s affecting your reading comprehension.\n\n"that at least would have gotten some of her voting opposition to think twice and consider her"\n\ndoes not equate to them actually voting for her. look up the definition of "consider." take as much time as you need.', 'created': '2024-11-11 03:01:37', 'submission_id': '1goc1ng'}
{'comment': "the democrats literally cannot stop themselves from caring about every little fucking thing so gd much, we'd all be much better able to carry on with out lives. \n\none example comes to mind, some lady in NorCal lives on the top of a steep hill and installed a bench on her front lawn so people could chill and enjoy the view as they catch their breath. \n \nNo no no says the city, you cant be having a free bench there for anyone to sit on, what if someone gets hurt?!?!?! remove the bench of you will be fined! \n\ni mean, come the fuck on. every single thing is viewed from this lens of extreme safety so that the 1 fucktard who hurts himself cant sue us and bla bla bla. \n \nit's just so pedantic and pathetic. like, how did we get here?", 'created': '2024-11-11 02:00:32', 'submission_id': '1goc1ng'}
{'comment': 'I think they pretty much are, aren’t they? Everyone I know who has an AR is Republican…my liberal friends have hunting rifles and pistols…(obviously I’m no expert…it’s going to be interesting for all of us to see how far this Authoritarianism really goes)…he promises shock and awe…lol…I can’t say it won’t be.', 'created': '2024-11-11 00:52:22', 'submission_id': '1goc1ng'}
{'comment': 'Oh, ok..', 'created': '2024-11-11 00:49:10', 'submission_id': '1goc1ng'}
{'comment': 'Take this as your sign to join the Freedom From Religion Foundation, which exists to stop theocratic encroachment on a Free Society https://ffrf.org/get-involved/donate/ If you can’t financially support them, listen to their [podcasts](https://podcasts.apple.com/us/podcast/freethought-radio/id152788201)\xa0or subscribe to their newsletters.\n\nAnd remember, when Christian Nationalists tell you that “America was founded as a Christian Nation!”, ask them if they’ve read [Section 11 of the the Treaty of Tripoli](https://en.wikipedia.org/wiki/Treaty_of_Tripoli), signed by most founders of the U.S. of A. \xa0It starts:\n\n>\xa0As the Government of the United States of America is not, in any sense, founded on the Christian religion…', 'created': '2024-11-10 22:13:57', 'submission_id': '1goax7z'}
{'comment': 'Good question. It’s a real concern for many Democrats. The possibility of adding more conservative Supreme Court justices could make it easier to implement policies that align with Christian beliefs. However, establishing a full theocracy (where laws are explicitly based on religious doctrine) would likely spark significant uproar. The Constitution explicitly mandates the separation of church and state, making a theocracy unconstitutional. Federal judges are tasked with upholding the Constitution and preserving its integrity, so pursuing a theocratic system would face serious legal challenges. \n\n\nTLDR; we’ll sue the fuck out of them', 'created': '2024-11-10 22:44:05', 'submission_id': '1goax7z'}
{'comment': 'We pray that there are zero retirements over the next 2 years and that Democrats win the Senate in 2026, allowing them to block any Trump appointments.\n\nUnfortunately, I don’t think there is even a chance we block Clarence Thomas from retiring and being replaced. He is 76, so even if he holds on for 2 years, I’m sure he’ll retire if Democrats win the mid terms in 2026 so that Trump can get his replacement in on time. I just wish Sotomayor would step down now so Biden can get a replacement in before we risk conservatives having any more of a majority.', 'created': '2024-11-10 22:33:24', 'submission_id': '1goax7z'}
{'comment': 'Fuck that shit', 'created': '2024-11-10 22:31:57', 'submission_id': '1goax7z'}
{'comment': 'What are the chances Ukraine is still a country in 2026?', 'created': '2024-11-10 22:07:35', 'submission_id': '1goax7z'}
{'comment': 'Chances are very good! He also has a decent chance of replacing a third Justice leaving only 2 liberal Justices on the court.', 'created': '2024-11-10 22:09:24', 'submission_id': '1goax7z'}
{'comment': "I've never been this afraid in my entire life.", 'created': '2024-11-10 23:06:34', 'submission_id': '1goax7z'}
{'comment': "I don't want to think out it.", 'created': '2024-11-10 22:39:52', 'submission_id': '1goax7z'}
{'comment': 'While I understand your concern, the Supreme Court is not going to get worse. (Keyword worse). Thomas and Alito are horrendous already so whichever shitbag he replaces them with is still another shitbag. \n\nWe are in deep trouble if something happens to the liberal three justices (like what happened with RBG in 2020)', 'created': '2024-11-10 22:10:10', 'submission_id': '1goax7z'}
{'comment': 'I am a Christian and do not support the kinds of things the Republicans are pushing. On abortion, I advocate for all life but aside from my family I have zero say in the actual decision, that’s up to the people involved. We should be advocating for changes while respecting the individual’s choice to choose differently - we cannot legislate “morality”.\n\nI did not vote for T*ump any of the three times he ran, I had icky feelings about him for the start.', 'created': '2024-11-10 23:52:26', 'submission_id': '1goax7z'}
{'comment': 'Dems win Pres and House, Pres expands court, House approves. Huge reset on the political slant in an easy way.\n\nDems in power enact legislation to reform SC, including term limits, introduce bi-partisan/non-partisan vetting, add qualification measures to ensure only decently qualified individuals can be eligible for nomination.', 'created': '2024-11-10 22:13:27', 'submission_id': '1goax7z'}
{'comment': 'Y’all. This scenario is guaranteed.', 'created': '2024-11-10 23:33:54', 'submission_id': '1goax7z'}
{'comment': 'Its already happened.', 'created': '2024-11-10 23:01:00', 'submission_id': '1goax7z'}
{'comment': "Not very likely. \n\nIn theocracies, the priests/preachers rule.\n\nWe have Catholics. We have Protestants. We have lots of different Protestant denominations. We have Mormons. Can you imagine them agreeing on which particular flavor of Christianity gets to be the prime ruler? \n\nI can't.\n\nThat being said, Project 2025 is certainly going to end up evolving the US into a country where the laws that are much more based on Christian values. And where Christian religion rights trump all other constitutional rights.", 'created': '2024-11-10 23:33:27', 'submission_id': '1goax7z'}
{'comment': "100% chance...\n\nIt's going to happen whether we like it or not.\n\nPrepare yourselves.", 'created': '2024-11-10 23:35:38', 'submission_id': '1goax7z'}
{'comment': 'High. With an entirely subordinate Congress and Court on his side there’s nothing he can’t get away with. Start packing.', 'created': '2024-11-11 00:21:31', 'submission_id': '1goax7z'}
{'comment': 'I say 95% probability.\n\nFor decades, Republicans have been plotting to turn America into a Christo-fascist nation. \n\nAnd now they will finally achieve their goal', 'created': '2024-11-10 23:37:33', 'submission_id': '1goax7z'}
{'comment': "You mean more of a Christian theocracy? I'd say pretty high.", 'created': '2024-11-10 22:11:22', 'submission_id': '1goax7z'}
{'comment': 'I think at this point the chances of us becoming a Christian theocracy are greater than us being a secular democracy moving forward.', 'created': '2024-11-10 23:19:53', 'submission_id': '1goax7z'}
{'comment': 'Wdym could? We are. The election proved it.', 'created': '2024-11-10 23:33:41', 'submission_id': '1goax7z'}
{'comment': 'The liberal Justices need to hang on. \n\nBut the problem isn\'t the court, anymore, at least. They already have a majority. The problem is that they want to rollback the role of the federal government to pre-New Deal. The government used to not play much of a role in our lives at all. They didn\'t regulate agricultural practices, labor or safety, pollutants and toxic byproducts, or basically anything. They left it all to the states. \n\nThe Christian theocracy bit is already underway. They are going to try to return certain things to the states but there\'s this pesky supremacy clause so they can do lots at the federal level like interning immigrants (all immigrants, not just criminal or undocumented), overturning gay marriage, overturning Loving v. Virginia, and overturning Griswold. They can use the Comstock Act to ban transmission of pornography, the mailing of birth control products, and mifepristone or anything they deem to be "pornographic" which includes anything LGBTQ-related per Project 2025. The reach of this, per Project 2025, is to put anyone violating those laws on the sex offender registry. That\'s enough to chill speech and almost everything else.', 'created': '2024-11-10 22:43:05', 'submission_id': '1goax7z'}
{'comment': '110%', 'created': '2024-11-10 23:02:01', 'submission_id': '1goax7z'}
{'comment': 'Already happened', 'created': '2024-11-10 23:05:48', 'submission_id': '1goax7z'}
{'comment': '100%, the structure is already there. Our democracy is dead.', 'created': '2024-11-11 00:54:10', 'submission_id': '1goax7z'}
{'comment': '"The liberty of the people can never be secure, when the judicial power is in the hands of an aristocracy, which is not accountable to the people." - John Adams', 'created': '2024-11-10 22:14:07', 'submission_id': '1goax7z'}
{'comment': '2? Try 3 or 4.', 'created': '2024-11-10 23:10:16', 'submission_id': '1goax7z'}
{'comment': "As a Christian...let me state that I dont want a Christian Theocracy, but I believe this where we are headed a la Handmaid's Tale. \n\nThe project 2025 which he denied will become the forefront of his policy.", 'created': '2024-11-10 23:33:46', 'submission_id': '1goax7z'}
{'comment': 'With the guidance of the Heritage Foundation, it will be a theocratic dictatorship.', 'created': '2024-11-10 23:54:00', 'submission_id': '1goax7z'}
{'comment': "I would say very low, Christianity will definitely take strong hold again but we're too diverse of a country for a theocracy to go over well. More young people are becoming agnostic or atheist and it is REALLY hard to convert those people, A Christian theocracy will also need total control of all information which they will never be able to do because no one controls the internet. If the government tries this, it might start a civil war of sorts", 'created': '2024-11-10 22:17:09', 'submission_id': '1goax7z'}
{'comment': 'Young people need to get organized or this debacle will happen. Your future is at stake and these people want to make their cult mandatory. Note that there are moderate Republicans even now thinking about creating a new more rational conservative party to counter the current MAGA corrupt one.', 'created': '2024-11-10 22:45:23', 'submission_id': '1goax7z'}
{'comment': '100% gonna happen. All you gotta do is look at comments. Trump supporters have gone full blown Christian fascists.', 'created': '2024-11-10 22:23:07', 'submission_id': '1goax7z'}
{'comment': 'They are going to try for sure. It would lead to massive protest and resistance by individuals and states.', 'created': '2024-11-10 22:39:20', 'submission_id': '1goax7z'}
{'comment': 'Pretty slim right now, realistically the GOP has 2 years to do as they please if they can agree. They’ll have a very slim majority in the house again and that was difficult for them to handle before. They’ll also have a limited majority in the senate and Mitch McConnell or Cornyn might be majority leader and they aren’t part of MAGA and might limit some of Trumps plans to protect the GOP in the midterms. \nWe lost but it was still a close election and people aren’t remembering that. The GOP still has to run in elections after Trump is gone.', 'created': '2024-11-11 01:31:57', 'submission_id': '1goax7z'}
{'comment': "I would say it certainly seems higher than I'd like😭", 'created': '2024-11-10 22:13:09', 'submission_id': '1goax7z'}
{'comment': 'Magic 8-ball says most likely', 'created': '2024-11-11 00:08:43', 'submission_id': '1goax7z'}
{'comment': "We're going to be wearing burkas in ten years.", 'created': '2024-11-11 01:17:56', 'submission_id': '1goax7z'}
{'comment': "I don't think Trump can actually make the court worse than it already is, but he can replace Alito, Thomas, and Roberts with younger versions who will be around for forty years.", 'created': '2024-11-11 01:23:13', 'submission_id': '1goax7z'}
{'comment': 'It would take at least 2 more or more presidential election cycles. With the same party winning every time. \n\nTrump and the republicans are going to over reach and by the midterms, Dems are likely going to take control of congress. (Assuming that they learned the lessons of this election)', 'created': '2024-11-11 02:52:06', 'submission_id': '1goax7z'}
{'comment': 'Well to my thinking even if trump fully signs on to such a path I think he is going to try to do his deportation thing and tariffs first. And that is just going to flatline the economy. He is going to possibly become the most hated man in America. Though Elon cackling on about they knew it was going to crash the economy but America needs a little hardship may give him a run for the money. As a result he may lose clout with the economy deeply tanked. It may paralyze his attempts to do more damage.', 'created': '2024-11-11 03:36:21', 'submission_id': '1goax7z'}
{'comment': 'Unlikely, just by the numbers. \n\nNot to put too fine a point on it, but the mullahs in Iran can get away with abducting, beating, and raping women and/or protestors because they aren\'t forcefully opposed. There are 398.5 million firearms in this country, and even with a militarized police force like we have now, if there\'s a full "black-bagged into an unmarked van"-style theocracy crackdown, law enforcement *will* be open targets. There are neighborhoods the cops won\'t enter *right now*, and that\'s *before* they\'re asked to enforce rampantly sexist and misogynistic laws written by Heritage Foundation sponsors. \n\n~25% of eligible voters voted for the shitgibbon, ~24% for the competent lady, and the rest *sat it out*, but that *doesn\'t* mean they\'re passive. Just lazy and stupid. If the choice is "stand by and watch the morality police abduct my (daughter/wife/sister/mother)," and "fry some bacon," the fry-up wins. Add in the economic pressure that is about to bear down on the average citizen, the complete gutting of the healthcare system (especially in red states), and the impending exponential harassment of every group that isn\'t white, hetero, cisgender men, and you\'ve got a critical mass of people who don\'t give a fuck if they have to bust a cap to save their own. \n\nLaws only have power if they\'re enforced. The enforcers are humans, and there are *far* more armed humans *opposing* the enforcers than there are enforcers. Look at how hard they fought to build their cop cities. They know what they\'re up against. They\'re about to take away almost everything we might have to lose, and if we have nothing to lose... well, cowabunga it is. \n\nFootnote for posterity: I do not condone violence against law enforcement. I do, however, rue and lament it.', 'created': '2024-11-11 06:22:08', 'submission_id': '1goax7z'}
{'comment': 'Dude. There’s nothing about christ in what these people are doing. They want control over everything and they forget that Americans have issues with people telling them what to do. It’s going to be like probation only more guns. And unfortunately, it’s the churches will never recover.', 'created': '2024-11-11 09:24:31', 'submission_id': '1goax7z'}
{'comment': '99%. That’s what happens when people don’t vote', 'created': '2024-11-11 14:19:53', 'submission_id': '1goax7z'}
{'comment': "We're not already a Christian theocracy?", 'created': '2024-11-11 00:09:54', 'submission_id': '1goax7z'}
{'comment': "Turn into? I got some bad news for you. America IS a Christian theocracy. It will be for decades to come. America voted on that last week.\n\nAmerica had a choice to go the other way. They overwhelmingly went with Jeffrey Epstein's declared best friend.", 'created': '2024-11-10 22:49:28', 'submission_id': '1goax7z'}
{'comment': "I dont get why people keep saying this. Altio and Thomas aren't going to retire anytime soon", 'created': '2024-11-10 22:37:48', 'submission_id': '1goax7z'}
{'comment': '1450%', 'created': '2024-11-10 23:58:28', 'submission_id': '1goax7z'}
{'comment': 'I’m gonna say like 95% the way things are going.', 'created': '2024-11-11 00:09:00', 'submission_id': '1goax7z'}
{'comment': 'I’m just stoked to have another passport. This country is getting scary', 'created': '2024-11-11 01:10:15', 'submission_id': '1goax7z'}
{'comment': 'High chance that’ll happen. There are no guard rails anymore. It is going to be a shitshow!', 'created': '2024-11-11 01:11:01', 'submission_id': '1goax7z'}
{'comment': "Trump will make it so next 50 years are dominated by him...I'll be dead and never see a change", 'created': '2024-11-11 01:15:13', 'submission_id': '1goax7z'}
{'comment': 'Too many Catholics on the Supreme Court.', 'created': '2024-11-11 01:24:26', 'submission_id': '1goax7z'}
{'comment': 'Sonya Sotomayor needs to retire yesterday. And Biden better replace her IMMEDIATELY. I am a proud Democrat but this court is basically gone for our entire lifetime. A 7-2 court will undo everything. I’m so over these old ass narcissistic people like Biden, RBG, Sotomayor who would rather gamble our country away so they can die clenching on to power vs. ensuring a future for our children. I genuinely hate him for not retiring sooner. I hate RBG for not retiring and now I hate sotomayor for her power hungry clinging to her seat. I really hope we lwarn something from this older generation’s inability to think about anybody except themselves.', 'created': '2024-11-11 01:51:32', 'submission_id': '1goax7z'}
{'comment': 'Seriously, this is already happening.', 'created': '2024-11-11 01:56:06', 'submission_id': '1goax7z'}
{'comment': 'The chances? Higher than I like. This is the really scary stuff.', 'created': '2024-11-11 01:57:38', 'submission_id': '1goax7z'}
{'comment': 'The cloaking of Christianity is only for control. They don’t follow Jesus, they follow the devil and call it Christian.', 'created': '2024-11-11 02:08:23', 'submission_id': '1goax7z'}
{'comment': 'The chance is 100%', 'created': '2024-11-11 02:54:25', 'submission_id': '1goax7z'}
{'comment': 'I feel like he will do it.\n\nAnd as a Christian, I think an American theocracy would be awful. I was taught that Christianity can’t be imposed via legislation as a means of spreading it.', 'created': '2024-11-11 02:59:36', 'submission_id': '1goax7z'}
{'comment': "Why can't Biden appoint judges?", 'created': '2024-11-11 03:09:11', 'submission_id': '1goax7z'}
{'comment': 'Nope, it just means the next dem prez will HAVE to pack the court.', 'created': '2024-11-11 03:15:42', 'submission_id': '1goax7z'}
{'comment': "Christian nationalists, particularly Dominionists and those associated with the New Apostolic Reformation (NAR) are the driving force behind Project 2025, also known as Agenda 47. They firmly believe they were placed on Earth to prepare the US for the return of Jesus by enforcing strict biblical law akin to a form of Christian Sharia. Anyone who opposes their agenda is viewed as evil and deemed worthy of destruction. Key figures from Trump's former cabinet, including Perry, DeVos, and Pence, proudly identify as Dominionists. Ted Cruz also aligns with this ideology, with his father serving as a preacher within the sect. Their convictions are delusional, and they’re deeply committed to them.", 'created': '2024-11-11 03:32:57', 'submission_id': '1goax7z'}
{'comment': 'Christian Theocracy..... led by the anti-christ and his demons..', 'created': '2024-11-11 03:34:06', 'submission_id': '1goax7z'}
{'comment': '90-100% now.', 'created': '2024-11-11 05:04:05', 'submission_id': '1goax7z'}
{'comment': 'I hope MAGA screws the entire USA as much as they possibly can, Ruin everything MAGA! Chaos is their ticket to the village of the permanently \nDamned!', 'created': '2024-11-11 06:51:26', 'submission_id': '1goax7z'}
{'comment': 'https://preview.redd.it/u1ajxokrp80e1.jpeg?width=2676&format=pjpg&auto=webp&s=bd912e00f20b2f43ea0edcdd1a6722898858c20b\n\nNice greetings with an old insight from italy', 'created': '2024-11-11 10:20:34', 'submission_id': '1goax7z'}
{'comment': '[Resist! RESIST!!!! 💪](https://youtu.be/2NTyyCwwDfY?si=3_4E3e_lb2VZElTt)', 'created': '2024-11-11 11:16:54', 'submission_id': '1goax7z'}
{'comment': 'God would like a word…Christian was never meant as an adjective. It’s a noun. Only on the age of Christian nationalist is that now an adjective. Nationalists are blasphemous (worshipping empire not God) and are not Christians. Can’t be both.', 'created': '2024-11-11 12:23:38', 'submission_id': '1goax7z'}
{'comment': '100%. Biden needs to act now to replace Sotomayer.', 'created': '2024-11-11 15:46:48', 'submission_id': '1goax7z'}
{'comment': "63% in my book, but I have ADHD and discalcula, math issues, and I'm frequently wrong.", 'created': '2024-11-11 16:01:21', 'submission_id': '1goax7z'}
{'comment': 'So is there anything, at all, that we can do to stop this?', 'created': '2024-11-11 21:48:49', 'submission_id': '1goax7z'}
{'comment': 'As a non-Christian I assure you we are already a Christian nation.', 'created': '2024-11-10 22:45:13', 'submission_id': '1goax7z'}
{'comment': 'It already is', 'created': '2024-11-10 23:13:32', 'submission_id': '1goax7z'}
{'comment': 'Very likely. Look up the Iranian revolution.', 'created': '2024-11-10 22:27:03', 'submission_id': '1goax7z'}
{'comment': 'We already are in many ways. The Supreme Court is not different than the unelected Mullahs of Iran', 'created': '2024-11-10 22:22:34', 'submission_id': '1goax7z'}
{'comment': 'A non zero chance. But there are republicans who hate Trump. Mitch is already setting into motion things to hamper his presidency.', 'created': '2024-11-10 22:48:28', 'submission_id': '1goax7z'}
{'comment': 'You can’t force me to go to church. I’d never get a seat anyhow', 'created': '2024-11-10 22:59:39', 'submission_id': '1goax7z'}
{'comment': 'Biden needs to get some balls and stack it before he exits', 'created': '2024-11-11 05:02:26', 'submission_id': '1goax7z'}
{'comment': 'He’ll probably replace only Alito and Thomas, so the status quo remains. \n\nPolitical power can’t change the broad social movement away from religion in the USA.', 'created': '2024-11-10 23:23:26', 'submission_id': '1goax7z'}
{'comment': 'I think, unfortunately, there are lots of guns on both sides and right now it seems like people are angry and fired up. I hope it doesn’t get to that.', 'created': '2024-11-10 23:29:31', 'submission_id': '1goax7z'}
{'comment': 'I assume you mean Justices.', 'created': '2024-11-10 23:31:36', 'submission_id': '1goax7z'}
{'comment': 'IMHO, 0%. I\'m thinking more like "Mad Max" as no country in the world trusts them now, and internally, it seems as though they are going to tear each other apart. But you deserve what you ask for, so...', 'created': '2024-11-11 01:31:09', 'submission_id': '1goax7z'}
{'comment': 'It’s already there', 'created': '2024-11-11 01:40:21', 'submission_id': '1goax7z'}
{'comment': "No way. Our founding fathers escaped that shit and formed this great nation of ours. I'll be damned if they think that can take that right.", 'created': '2024-11-11 01:41:36', 'submission_id': '1goax7z'}
{'comment': 'Hopefully low\n\nAs tough as this loss is.\n\nWe stand to return to full control of government much sooner than we would have if Harris won\n\nProject 2029:\n\nFilibuster death ( or watch as the republicans kill it anyways)\n\nDC/Puerto Rico Statehood\n\nCourt “reform”', 'created': '2024-11-11 02:08:10', 'submission_id': '1goax7z'}
{'comment': 'Insanely likely.', 'created': '2024-11-11 02:32:38', 'submission_id': '1goax7z'}
{'comment': 'You’re on the right track.', 'created': '2024-11-11 02:42:51', 'submission_id': '1goax7z'}
{'comment': "I'd say the chances are pretty fn good...\n\nhttps://preview.redd.it/jxv2fye8m60e1.jpeg?width=1080&format=pjpg&auto=webp&s=100e370f4c12d62d238c942511f4181f9e9345c7", 'created': '2024-11-11 03:16:49', 'submission_id': '1goax7z'}
{'comment': 'low in my opinion but not zero which is alarming enough, but particularly christian states will almost certainly be allowed to become local theocratic fiefdoms like Louisiana Mississippi Utah and Texas as long as they tow the federal line for trump', 'created': '2024-11-11 03:35:14', 'submission_id': '1goax7z'}
{'comment': '0%', 'created': '2024-11-11 03:35:18', 'submission_id': '1goax7z'}
{'comment': 'It is more likely to turn into a Christo fascist plutocracy.', 'created': '2024-11-11 04:01:29', 'submission_id': '1goax7z'}
{'comment': 'Frighteningly high', 'created': '2024-11-11 04:07:07', 'submission_id': '1goax7z'}
{'comment': "I think he'll only be able to replace the conservative justices, but that means that we won't be able to replace them for like 20+ years either.", 'created': '2024-11-11 04:38:44', 'submission_id': '1goax7z'}
{'comment': 'It’s all about interpretations of the law. Right now I’m not sure how we stop it becoming affiliated with Christianity in some way. It’s disgusting.', 'created': '2024-11-11 04:54:38', 'submission_id': '1goax7z'}
{'comment': 'Very worrisome.', 'created': '2024-11-11 06:25:40', 'submission_id': '1goax7z'}
{'comment': 'It’s not even a decent religion or whatever look at how these people behave and what they worship…. I want nothing to do with morally bankrupt. People who are in the cult of religion of both Trump and God no thanks', 'created': '2024-11-11 06:54:36', 'submission_id': '1goax7z'}
{'comment': 'If you not armed and trained you should be. Our institutions are not strong enough to keep us from becoming another Iran.\n\nThey used to be. Then conservatives spent 60+ years destroying them.', 'created': '2024-11-11 07:31:35', 'submission_id': '1goax7z'}
{'comment': "Oh it's pretty much a guarantee.", 'created': '2024-11-11 11:02:38', 'submission_id': '1goax7z'}
{'comment': 'Could?\n\nIt’s already been happening…..', 'created': '2024-11-11 12:04:25', 'submission_id': '1goax7z'}
{'comment': "In answer to the original question ....\n\nI'm not too worried about that. I believe Trump himself is quite secular. Deeply religious people don't brag about being able to grab women by the pussy, and they don't blink a porn star and pay her to keep it quiet. There are many more examples. I think that, deep down, he doesn't really care one way or another about abortion. \n\nIn 2016, he sucked up to the Christian Right because he needed their support to get elected. They basically chose his running mate for him, and Pence vetted his Supreme Court nominations according to evangelical priorities. But I don't think he needs them so much anymore.", 'created': '2024-11-11 13:58:50', 'submission_id': '1goax7z'}
{'comment': 'Zero. Zero chance we become a theocracy: God is nowhere near this country anymore. 50/50 we become a fascist state.', 'created': '2024-11-11 14:09:59', 'submission_id': '1goax7z'}
{'comment': "I can see it in public schools. I don't know how they would mandate Christianity in the country.", 'created': '2024-11-11 14:42:03', 'submission_id': '1goax7z'}
{'comment': 'It already has in many ways. It’s stronger maybe more predominant in some cities, counties, court circuits, but the domination of government and civic life by religion is already a reality. And what a weird religion it is.', 'created': '2024-11-11 16:47:38', 'submission_id': '1goax7z'}
{'comment': 'Im not praying ill tell you that much', 'created': '2024-11-11 17:54:29', 'submission_id': '1goax7z'}
{'comment': 'If it does turn into an evangelical based theocracy, the Mormons are 100% going to rebel.', 'created': '2024-11-11 19:40:02', 'submission_id': '1goax7z'}
{'comment': '100 percent, but make no mistake: they might claim Christian, but they’ll do nothing that Christ says', 'created': '2024-11-11 20:42:02', 'submission_id': '1goax7z'}
{'comment': 'Remember they have that position for life.', 'created': '2024-11-11 20:58:37', 'submission_id': '1goax7z'}
{'comment': 'Close to zero', 'created': '2024-11-11 21:33:09', 'submission_id': '1goax7z'}
{'comment': "Probably an 80% chance. They've done the hardest part now. Now it's all in their hands.", 'created': '2024-11-11 21:46:19', 'submission_id': '1goax7z'}
{'comment': 'Very good chance', 'created': '2024-11-11 22:25:48', 'submission_id': '1goax7z'}
{'comment': 'Only if they ignore the 1st Amendment to the Constitution!', 'created': '2024-11-11 23:00:07', 'submission_id': '1goax7z'}
{'comment': 'Biden should’ve had a fucking spine and expanded the court. I’m so tired of democrats worrying more about how they look to republicans than how they look to democrats. Their “do the right thing” (aka do nothing) mantra was our demise.', 'created': '2024-11-12 10:41:27', 'submission_id': '1goax7z'}
{'comment': 'Like 50-50, but any non-zero chance is unacceptable.', 'created': '2024-11-12 18:55:44', 'submission_id': '1goax7z'}
{'comment': 'That’s going so well for the people of Iran, and even better for the women under the Taliban who just got another law passed against them—this time forbidding ANY speech outside the house. Fasten your seat belts America, we are heading fast into territory most of us do not want.', 'created': '2024-11-12 21:18:13', 'submission_id': '1goax7z'}
{'comment': "It's already happening.", 'created': '2024-11-12 23:02:47', 'submission_id': '1goax7z'}
{'comment': 'As a Christian, hopefully high', 'created': '2024-11-13 01:18:45', 'submission_id': '1goax7z'}
{'comment': "Pretty damn good. Because the thought of it is (or it used to be) is absurd. But we live in a world where the absurd has become the fucking norm. I'm not religious but if he isn't the antichrist then I would hate to see who is.", 'created': '2024-11-11 00:42:50', 'submission_id': '1goax7z'}
{'comment': 'Catholics via the heritage foundation and the SCOTUS are in control of this country. I believe they are also the authors of project 25. \nThey’ll start burning witches next. What could go wrong.', 'created': '2024-11-10 22:40:24', 'submission_id': '1goax7z'}
{'comment': 'It’s gonna happen, we can 100% say that. Catholic US cardinals will probably be appointed.', 'created': '2024-11-10 22:35:26', 'submission_id': '1goax7z'}
{'comment': 'Or expanding the court...', 'created': '2024-11-10 22:38:30', 'submission_id': '1goax7z'}
{'comment': 'Astronaut shooting astronaut.meme\n\nIt already has.', 'created': '2024-11-10 23:40:29', 'submission_id': '1goax7z'}
{'comment': 'Two more federal judges? Or 2 more members of SCOTUS?', 'created': '2024-11-11 00:24:09', 'submission_id': '1goax7z'}
{'comment': "They control the Supreme Court, House of Representatives, Senate, and Executive... We're already there.", 'created': '2024-11-11 00:39:36', 'submission_id': '1goax7z'}
{'comment': 'Well the two justices he’s likely to replace are already the most extreme, all he’s doing is extending their tenure. \n\nThe ones you don’t want replaced by Trump are the three liberal justices and Roberts', 'created': '2024-11-11 00:40:36', 'submission_id': '1goax7z'}
{'comment': 'It already is', 'created': '2024-11-11 00:43:12', 'submission_id': '1goax7z'}
{'comment': 'I think it already is', 'created': '2024-11-11 01:02:09', 'submission_id': '1goax7z'}
{'comment': 'Cool if catholic based, mainly because the catholic church believes strongly in the separation of church and state.\n\nBad if with "Christian" they mean protestant, which are not actual Christian churches and are actually sects that base their belief in Christianity (catholicism) but tweak the teachings to what fits them better depending on the time of the day, weather patterns and the like.', 'created': '2024-11-11 02:34:42', 'submission_id': '1goax7z'}
{'comment': 'He got the entire Republican Party to pretend The Big Lie didn’t happen.', 'created': '2024-11-11 04:26:04', 'submission_id': '1goax7z'}
{'comment': "Zero. Why? The constitution states a strict separation of church and state. To change the constitution would require an amendment to the constitution which requires 2/3 vote of the house and senate (zero chance) and for 30 states to ratify the amendment (also zero chance). So, it isn't going to happen.", 'created': '2024-11-11 15:09:24', 'submission_id': '1goax7z'}
{'comment': None, 'created': '2024-11-10 23:41:24', 'submission_id': '1goax7z'}
{'comment': 'There are only 2 SCOTUS justices that may want to turn the U.S. into a "Christian theocracy."\n\nJust because a justice is a conservative doesn\'t mean they\'re a theocrat. This is an overreaction. Textualism and originalism are valid interpretations of the Constitution, though I personally disagree with that philosophy.\n\nAlito and Thomas, however, can go get fucked. I wouldn\'t put anything past the two of them.\n\nAnd if they try, the next Democratic administration and Senate will break the filibuster and expand the Court. SCOTUS knows this. They don\'t want their tight group of nine to be diluted into a group of 13+. So they\'ll choose their path carefully.', 'created': '2024-11-10 23:37:16', 'submission_id': '1goax7z'}
{'comment': 'Whatever.', 'created': '2024-11-11 00:10:43', 'submission_id': '1goax7z'}
{'comment': "This is such a stupid fucking idea to continue to say that the US is gonna fall, the nation will become a Christian theocracy, and that we're going to be put into camps. ITS NOT GOING TO HAPPEN. Trump's first term was so dysfunctional the only real sweeping piece of legislation they passed was tax breaks for the rich and a stacked court. He is 78 now; he is probably going to focus on his legal issues, play a ton of golf, and let his administration run the country (which is a scary thought in and of itself) But the history of this country has literally been 250 years of struggling to enshrine liberties for all. Do you think the country will be worse now than when Rockefeller was the wealthiest man alive? We got the New Deal out of it. Do you think this country is worse than when we had a literal apartheid system in the South? How did they enact political change? They organized, communicated, and acted for their freedoms. This doomsaying on the main democrats sub is the most infuriating thing, I just p\\[participated in a post-election online event for action. What are you doing to ensure we don't lose too much before the midterm?\n\n \nEdit: The court thing is a real issue and what we really need to pressure because overturning roe and affirmative action fully and absolutely sucks.", 'created': '2024-11-10 22:52:59', 'submission_id': '1goax7z'}
{'comment': 'Our founding fathers were clearly looking for separation of church and state. Jefferson, Franklin and Washington were deists after all (as evidence heavily leans towards)', 'created': '2024-11-10 23:10:52', 'submission_id': '1goax7z'}
{'comment': "I don't care whether it was founded as a Christian nation. It is not now and should not be later.", 'created': '2024-11-10 23:20:25', 'submission_id': '1goax7z'}
{'comment': 'I am an ardent supporter of separation of church and state but just so you know, the Wikipedia page states:\n\n "The treaty is often cited in discussions regarding the role of religion in United States government due to a clause in Article 11 of the English language translation that was ratified by the Senate and signed by the president, which states, “[t]he Government of the United States of America is not, in any sense, founded on the Christian religion.”[4] However, modern translations of the official Arabic text of the treaty confirm that no such phrase exists.[5]"\n\n\nEdit: u/psyberops gracefully explained the following in a comment below:\n\n“While the phrase isn’t contained in the Arabic original, the English translation was the one signed and ratified by Congress, and is the one in the official record of Congress. \xa0That’s why I bring it up when Christian nationalists say that the USA is a Christian nation. \xa0It’s not :-)”', 'created': '2024-11-10 22:27:37', 'submission_id': '1goax7z'}
{'comment': 'I joined Americans United, but they email every single day.', 'created': '2024-11-11 02:09:46', 'submission_id': '1goax7z'}
{'comment': 'Well, we definitely ignored Article 12…', 'created': '2024-11-11 03:31:44', 'submission_id': '1goax7z'}
{'comment': 'My issue is nobody seems to give a f*** about the constitution anymore.', 'created': '2024-11-13 01:07:22', 'submission_id': '1goax7z'}
{'comment': 'Honestly on the conservative side I think Thomas and Alito are the oldest and most likely to retire, and they are by far the worst and most far right trumpers so if the retire it’s kind of a wash. Except I fully expect Judge Cannon to get appointed.', 'created': '2024-11-10 22:58:52', 'submission_id': '1goax7z'}
{'comment': "Someone brought up the problem with Sotomayor resigning now is that Democrats really don't have a true majority in the Senate. Manchin and Sinema are Independents. They could end up not supporting the confirmation of a replacement and then Trump gets to replace Sotomayor bringing down the count of liberal judges to just two.", 'created': '2024-11-10 23:52:27', 'submission_id': '1goax7z'}
{'comment': "We have a lot of red senators up for re-election in 2026. But we have to get to work recruiting candidates and building back/expanding our coalition. We need 4 seats. Our best chances are NC, ME, AK, and OH (special election).\n\nHopefully, Sherrod Brown will run again in OH. I think he could win in a blue wave year, just as he won in 2018. I want Mary Peltola to run in Alaska. She's won statewide three times and she can do it again.\n\nIt'll be tough. But I think Trump is going to be a disaster and 2026 will make 2018 look like a blue trickle.", 'created': '2024-11-10 23:57:12', 'submission_id': '1goax7z'}
{'comment': "There's no guarantee that Biden could push through a new judge in his limited time left. It's too risky.", 'created': '2024-11-11 01:14:42', 'submission_id': '1goax7z'}
{'comment': 'Fingers crossed they’re just too addicted to that sweet sweeeet drug of unchecked power', 'created': '2024-11-11 00:25:12', 'submission_id': '1goax7z'}
{'comment': None, 'created': '2024-11-11 01:56:53', 'submission_id': '1goax7z'}
{'comment': 'But think just filibuster blocking any appointee Biden tries to put in won’t they? We don’t have enough time.', 'created': '2024-11-11 02:39:24', 'submission_id': '1goax7z'}
{'comment': "Wouldn't the Republicans be able to block Sotomayor's replacement until Trump took office?", 'created': '2024-11-11 03:36:25', 'submission_id': '1goax7z'}
{'comment': "I don't think you grasp what this place will look like in two years.", 'created': '2024-11-11 13:33:39', 'submission_id': '1goax7z'}
{'comment': 'If Sotomayor steps down now, McConnell will filibuster a replacement and block it until Trump takes office. No, she must stay where she is and stay alive for the next 4 years.', 'created': '2024-11-11 15:04:58', 'submission_id': '1goax7z'}
{'comment': 'The fact that we are even talking about this should be reviewed. Any justice that leans in any direction should be immediately removed from their position.', 'created': '2024-11-11 18:14:51', 'submission_id': '1goax7z'}
{'comment': 'The Pilgrims are rolling over in their graves.', 'created': '2024-11-11 02:58:47', 'submission_id': '1goax7z'}
{'comment': '1/99999999999999999', 'created': '2024-11-10 22:59:16', 'submission_id': '1goax7z'}
{'comment': "Since Trump seems intent on neglecting the [Budapest Memorandum](https://en.wikipedia.org/wiki/Budapest_Memorandum), worst case scenario is Biden doesn't trust Trump to support Ukraine and he gives Ukraine *back* the nuclear weapons the country surrendered at the end of the Cold War.", 'created': '2024-11-11 02:54:46', 'submission_id': '1goax7z'}
{'comment': 'Ukraine will still be a country AND I say that because the last two years of fighting have done nothing but harden their resolve. Now it may well be Ukraine is forced into some kind of temp ceasefire that sees battle lines frozen, that may well happen. But the country as a whole will continue to exist (which I might say, I would *not* have assumed two years ago...Ukraine has proven a lot 👍)', 'created': '2024-11-11 00:59:34', 'submission_id': '1goax7z'}
{'comment': 'What’s your definition of “country”', 'created': '2024-11-11 00:53:42', 'submission_id': '1goax7z'}
{'comment': 'How so? No chance any of them would retire over the next 4 years', 'created': '2024-11-10 23:02:06', 'submission_id': '1goax7z'}
{'comment': 'The timing of that (RBG) will always deeply upset me. So many things go their way because they’ve planned for it, but that was sheer luck. I also wish she had stepped down while Obama was still in office. She must be turning over in her grave considering what replaced her was someone who has worked to undo all the good she did.', 'created': '2024-11-10 23:07:24', 'submission_id': '1goax7z'}
{'comment': 'You’re mistaken in one aspect, Thomas has already expressed a willingness to retire and i wouldn’t be surprised if Alito did the same and both were replaced with younger more radical versions.', 'created': '2024-11-10 23:38:32', 'submission_id': '1goax7z'}
{'comment': 'Or, over the next four years, Trump expands the court himself, adds four more conservative justices, and solidifies right wing Christian power for the next century. This election was our best chance and we blew it.', 'created': '2024-11-10 22:46:50', 'submission_id': '1goax7z'}
{'comment': 'Not that easy. A lot of these reforms would probably require a constitutional amendment, and any legislative reforms that disadvantage conservatives in some way would likely be declared unconstitutional by the Supreme Court themselves and shot down.', 'created': '2024-11-10 22:36:51', 'submission_id': '1goax7z'}
{'comment': 'Good luck getting another free and fair election to make any of that happen.', 'created': '2024-11-10 22:32:11', 'submission_id': '1goax7z'}
{'comment': "The dems will never do that because it's bad optics. Republicans can easily twist that and make the public believe it's a bad thing", 'created': '2024-11-10 22:39:24', 'submission_id': '1goax7z'}
{'comment': 'The Senate approves justices.', 'created': '2024-11-10 22:21:52', 'submission_id': '1goax7z'}
{'comment': "It's the only way to fix this mess.", 'created': '2024-11-10 23:45:29', 'submission_id': '1goax7z'}
{'comment': 'Democrats didn’t expand the court this time around, they won’t do it next time.', 'created': '2024-11-10 22:32:24', 'submission_id': '1goax7z'}
{'comment': "> Can you imagine them agreeing on which particular flavor of Christianity gets to be the prime ruler? \n\nIt'll be conservative evangelicals.", 'created': '2024-11-11 08:59:12', 'submission_id': '1goax7z'}
{'comment': 'I agree with this. There are even a lot of non-religious republicans who would absolutely hate for our government to become a Christian theocracy. The unfortunate thing is that the churches are the ones with all the money and power.', 'created': '2024-11-10 23:26:03', 'submission_id': '1goax7z'}
{'comment': 'This. There are plenty of discernible threats out there…the US becoming a Christian theocracy isn’t one of them. I don’t think we’re too far away from Christian’s comprising less than 50% of the population. I’m in my 30s and there’s no doubt it’ll happen in my lifetime', 'created': '2024-11-10 23:04:08', 'submission_id': '1goax7z'}
{'comment': "> It would lead to massive protest and resistance by individuals and states.\n\nIf people weren't willing to put in the time and effort to vote, what makes you think they'll put in the time and effort for physical resistance?", 'created': '2024-11-11 09:01:36', 'submission_id': '1goax7z'}
{'comment': 'How optimistic of you that you think we’ll be allowed another election.', 'created': '2024-11-11 02:07:11', 'submission_id': '1goax7z'}
{'comment': 'This. The immigration stuff was popular enough and easy enough to do. But we know that it will take years and be incredibly expensive. Plus the infighting which follows him wherever he goes', 'created': '2024-11-11 19:06:15', 'submission_id': '1goax7z'}
{'comment': 'That was indeed proven this latest election. And it’s pretty gross.', 'created': '2024-11-10 22:58:57', 'submission_id': '1goax7z'}
{'comment': 'Would love more info on this?', 'created': '2024-11-10 23:04:38', 'submission_id': '1goax7z'}
{'comment': "Jesus man...bold of you to assume there's *ever* gonna be a chance for any democratic voice going forward.\n\nNext you'll tell me theres gonna be another election in 4 yrs.", 'created': '2024-11-11 02:24:06', 'submission_id': '1goax7z'}
{'comment': "Not Catholics, the Evangelical protestants took over the abortion position for politics. They're the ones behind the Farm or the Family or whatever.\n\nhttps://en.wikipedia.org/wiki/The_Family_(miniseries)", 'created': '2024-11-10 22:43:38', 'submission_id': '1goax7z'}
{'comment': 'I don’t think you understand how fragmented Christianity is in the US. They would never accept Catholics. I think JFK was like one of the first Catholic presidents and most evangelicals don’t really adhere to it.', 'created': '2024-11-10 22:45:25', 'submission_id': '1goax7z'}
{'comment': 'Catholics and Evangelicals do not see eye-to-eye on anything other than abortion. Evangelicals do not consider Catholics to be real Christian.', 'created': '2024-11-10 23:50:37', 'submission_id': '1goax7z'}
{'comment': '\n\nWe didn’t think Trump would win like he did either', 'created': '2024-11-12 00:58:47', 'submission_id': '1goax7z'}
{'comment': 'Watch and see. The tracks are laid and greased, literally for years the moves have been planned, and they all know this is their final chance to grasp power. I pray you are right! I just seldom bet against those who believe they are doing God’s will, and know in their hearts that God has summoned them to fight Satan (ie: crazy lunatics). You cannot reason with a religious zealot.', 'created': '2024-11-11 00:13:56', 'submission_id': '1goax7z'}
{'comment': 'MAGA only cares about the founding fathers or the constitution as far as it serves them. Same way with the bible.', 'created': '2024-11-11 04:04:29', 'submission_id': '1goax7z'}
{'comment': 'It was founded on freedom FROM religion. So it never was. But I agree no it should never be.', 'created': '2024-11-11 04:38:13', 'submission_id': '1goax7z'}
{'comment': "Let's be super clear, it was not founded as a Christian nation. This was explicitly stated by numerous founding fathers.", 'created': '2024-11-11 16:46:50', 'submission_id': '1goax7z'}
{'comment': 'While the phrase isn’t contained in the Arabic original, the English translation was the one signed and ratified by Congress, and is the one in the official record of Congress. \xa0That’s why I bring it up when Christian nationalists say that the USA is a Christian nation. \xa0It’s not :-)', 'created': '2024-11-11 00:30:27', 'submission_id': '1goax7z'}
{'comment': 'The satanic temple has been doing great work to separate church from schools and showing the religious rights hypocrisy when it comes to religion.', 'created': '2024-11-10 23:01:25', 'submission_id': '1goax7z'}
{'comment': 'I hear you - maybe just occasionally follow up to see where we are on church/state separation 👍', 'created': '2024-11-11 02:52:46', 'submission_id': '1goax7z'}
{'comment': "They're absolutely going to be pushed to retire so 2 younger ultra conservative judges can take their place.\xa0", 'created': '2024-11-10 23:03:29', 'submission_id': '1goax7z'}
{'comment': "except i'm 35, and with modern medicine you are looking at 40 year appointments. That is 5 conservative judges until 2050.", 'created': '2024-11-10 23:48:37', 'submission_id': '1goax7z'}
{'comment': 'They are the worst so far', 'created': '2024-11-10 23:17:13', 'submission_id': '1goax7z'}
{'comment': 'It is not a wash. It means there is no chance of fixing/re-balancing the court in the rest of my entire lifetime. The next 40 years will be republican dominated crackpot judges. Maybe when our elementary aged kids are our age in 35 years they can have a better Supreme Court.', 'created': '2024-11-11 01:47:13', 'submission_id': '1goax7z'}
{'comment': 'It’s crazy that they are the trumpiest despite being the most removed from Trump’s politics. Trumpism has been around since the 1970s', 'created': '2024-11-11 02:04:11', 'submission_id': '1goax7z'}
{'comment': 'I’m very suspicious though. As much as I wouldn’t be surprised if Thomas retires, I feel like he wouldn’t, simply because he is not motivated by party, but by wealth. Obviously there is a possibility Harlan Crow or whoever else could bride him to leave office but I honestly wonder if they want him to stay in anyway. Thomas feels like someone who would stay in the court until he dies. \n\nI don’t like Clarence Thomas and definitely think that regardless of whether he retires or not, he will have a negative impact on the next four years, but I strongly question his moral compass, even to Trump and the GOP.', 'created': '2024-11-11 06:10:19', 'submission_id': '1goax7z'}
{'comment': 'Judges retirements are usually dependent on a replacement being appointed.', 'created': '2024-11-11 01:30:03', 'submission_id': '1goax7z'}
{'comment': "The problem with Peltola is we're not even sure if she just won re-election. That race hasn't been called.", 'created': '2024-11-11 01:17:02', 'submission_id': '1goax7z'}
{'comment': "Alaska might be taking away its ranked choice voting, which could hurt Peltola's chances. 50 is possible with the 3 you mentioned. 51 will be difficult.", 'created': '2024-11-11 04:25:37', 'submission_id': '1goax7z'}
{'comment': 'You can’t filibuster Supreme Court nominees. Republicans removed that.', 'created': '2024-11-11 02:50:21', 'submission_id': '1goax7z'}
{'comment': 'Democrats control the Senate', 'created': '2024-11-11 03:37:13', 'submission_id': '1goax7z'}
{'comment': 'Doubt it. They were religious nuts who wanted to impose their whacky beliefs on everyone around them. They’d be loving it, planning on banning Xmas and burning some women for heresy…', 'created': '2024-11-11 11:07:41', 'submission_id': '1goax7z'}
{'comment': 'Really? Because I figure the chances are 2 out of 1.', 'created': '2024-11-11 01:46:39', 'submission_id': '1goax7z'}
{'comment': 'Two conservatives have good chances of retiring. One liberal just turned 70 and has diabetes. I like her actually so I hope she goes well i to her 80’s. That chances are real though.', 'created': '2024-11-10 23:07:08', 'submission_id': '1goax7z'}
{'comment': "They will if Trump sic's his cult on them.", 'created': '2024-11-11 08:57:54', 'submission_id': '1goax7z'}
{'comment': 'Ha! Thomas is drunk with power and self adoration . For years, he was marginalized by most of the court and legal scholars, as the extreme and ridiculous outlier.\n\nBut now, he’s enjoying his infamous golden age as the anti-Marshall. Someone will have to pry him off that bench…he’s not leaving willingly.', 'created': '2024-11-11 05:50:34', 'submission_id': '1goax7z'}
{'comment': "Right-wing Christian power is not sustainable, it's tenable in the short to medium term. This is going to suck to go through, but through it we will go, and out of it we will come.", 'created': '2024-11-11 01:13:14', 'submission_id': '1goax7z'}
{'comment': 'Yep, I’m a strong proponent of keeping the number at 9', 'created': '2024-11-10 23:00:23', 'submission_id': '1goax7z'}
{'comment': 'Why would the require a constitutional amendment? Even judicial review isn’t written in the constitution', 'created': '2024-11-10 23:08:34', 'submission_id': '1goax7z'}
{'comment': 'Please tell us how Dems could have expanded the court during the last 4 years.', 'created': '2024-11-10 23:09:45', 'submission_id': '1goax7z'}
{'comment': 'Lmao the only thing that stopped them was Manchin and Sinema’s virtue signaling bipartisanship to save the filibuster', 'created': '2024-11-10 23:14:00', 'submission_id': '1goax7z'}
{'comment': 'I said massive, not universal. Also resistance would require them to not go along with the religious program. Do you see average secular Americans becoming fundamentalist believers?', 'created': '2024-11-11 10:22:44', 'submission_id': '1goax7z'}
{'comment': 'Everything is at stake, but those slim majorities and the old GOP fossils that hold leadership positions might be our only saviors actually.', 'created': '2024-11-11 02:10:13', 'submission_id': '1goax7z'}
{'comment': 'https://www.cnn.com/2024/10/23/politics/mcconnell-trump-gop-new-book/index.html\n\nhttps://www.nbcnews.com/politics/congress/senate-republican-leader-election-trump-thune-cornyn-scott-rcna179180\n\nHe is calling for a vote to replace himself as leader before Trump gets in office and only one of the candidates to replace is maga. This action has been called a coup. Shall see no one really knows what will happen but I like to keep some optimism but again Christo fascist is the goal so it’s non zero that it will happen anyways', 'created': '2024-11-10 23:15:13', 'submission_id': '1goax7z'}
{'comment': 'I mean I guess that’s a chance\n\nStill think it’s hyperbole\n\nTrump is fundamentally lazy and surrounded by grifters. \n\nCase in point look at the dysfunction of the house majority since 22', 'created': '2024-11-11 02:39:04', 'submission_id': '1goax7z'}
{'comment': 'The 5 conservatives Catholics are on the SCOTUS and overturned roe V wade.', 'created': '2024-11-11 13:51:59', 'submission_id': '1goax7z'}
{'comment': 'Not to mention, evangelicals are an ever shrinking faction of the population. Trump’s candidacy is the dying grasp of right-wing boomers', 'created': '2024-11-10 23:07:39', 'submission_id': '1goax7z'}
{'comment': 'He was the first of two Catholic presidents. People were worried at the time that he’d get his orders from the pope.', 'created': '2024-11-10 22:53:54', 'submission_id': '1goax7z'}
{'comment': 'But…all three justices Trump appointed were…Catholic. I do understand because I’m Catholic and have seen half of the Catholic Church in the US gravitate toward evangelical and conservative ideals.', 'created': '2024-11-11 01:29:16', 'submission_id': '1goax7z'}
{'comment': 'Fair, but the US cardinals love Trump- there’s a movement in the Catholic Church of a younger more tradition group that’s much more evangelical and extremist with their Latin mass and us politics- and many of them are republican leaders. Jd Vance is Catholic as is 6 out of the 9 justices (5 of them appointed by republican presidents). Anyways, it’s all besides the point.', 'created': '2024-11-11 01:25:03', 'submission_id': '1goax7z'}
{'comment': "Oh dear God. People need to quit fucking scaring each other into a frenzy. This is not helpful. Just because someone has a conservative judicial philosophy doesn't mean they're a fringe religious nutcase.\n\nI can already tell you that John Roberts and Brett Kavanaugh and probably Neil Gorsuch have no interest in imposing religious nonsense. If they did, they would've ruled against gay rights in *Bostock*. *Roe* was overturned because it was on shaky legal ground (something even RBG acknowledged), not because they wanted to impose Christian nationalism. Obviously Christian interest groups were behind the efforts to overturn it, but the decision that the Court made was on solid legal footing. Again, I disagreed with it, but that doesn't mean their opinion was inspired by Christian nationalism. Their opinion fits with an interpretive philosophy of the Constitution that even many secular people share.\n\nI think people need to take a step back and take a deep breath. We have our work cut out for us now that we're in the resistance/opposition. But we can't do our work to get through the next four years if we're hyperventilating and whipping ourselves up into paranoia.", 'created': '2024-11-11 01:10:11', 'submission_id': '1goax7z'}
{'comment': "I'm not saying it was founded as a Christian nation, I am saying I don't care whether or not it was founded as a Christian nation. This is for the people who think it was founded as a Christian nation. It matters not. It is not one now and should not be one later.", 'created': '2024-11-11 15:54:52', 'submission_id': '1goax7z'}
{'comment': "I never said it was founded as a Christian nation. I am saying I don't care if the rightwing thinks it was founded as a Christian nation. Whether it was or not does not support their stance that it should be a Christian nation.", 'created': '2024-11-11 17:00:03', 'submission_id': '1goax7z'}
{'comment': "Ah! That makes sense. Thank you. I'll add that in an edit.", 'created': '2024-11-11 02:28:04', 'submission_id': '1goax7z'}
{'comment': 'Hell yeah 🤘 \n\nHail YOU ⛧', 'created': '2024-11-11 16:25:16', 'submission_id': '1goax7z'}
{'comment': 'The Republican judges do what they are told or asked unlike some recent Democratic appointees.', 'created': '2024-11-11 01:35:29', 'submission_id': '1goax7z'}
{'comment': 'If you think Thomas is ready to stop sucking on billionaires\' teats and live off just his "retirement funds", I have news for you.', 'created': '2024-11-11 05:57:35', 'submission_id': '1goax7z'}
{'comment': 'Oh for sure. It extends the conservative reach another 20 years at least, but as for the makeup of the current bench it can’t get much worse than Alito or Thomas. The dems only hope is to get back in power after Trump royally fucks up the country again then aim for reforming the courts which is actually a pretty popular public opinion.', 'created': '2024-11-11 00:01:58', 'submission_id': '1goax7z'}
{'comment': 'Oh I agree. I just don’t see how you get worse than absolutely rubber stamping anything Trump and the far right want to do. Have these 2 ruled in any way that has limited the Republican agenda?', 'created': '2024-11-11 01:33:43', 'submission_id': '1goax7z'}
{'comment': 'Ah, thank you for educating me on that. But, as someone else pointed out, Manchin and Sinema likely won’t vote with the Dems. I’ve got zero faith Biden will do a thing before he leaves office. Dems are pushovers.', 'created': '2024-11-11 02:59:48', 'submission_id': '1goax7z'}
{'comment': 'Yes a place on a map called Ukraine will likely still exist. It is not likely to remain independent', 'created': '2024-11-11 01:53:45', 'submission_id': '1goax7z'}
{'comment': "Just because something is not sustainable, doesn't mean those who have a vested interest in keeping it sustained won't try. They will do all they can to ensure that it keeps going, even if they have to reduce the world to a pile of ashes if they can't make it happen. Power. Pure, absolute, unlimited power is their one and only concern. Power, for the sake of power. And if they can't have it, if they can't get their way, they'll do as all selfish narcissists do, and destroy it all.", 'created': '2024-11-11 01:32:08', 'submission_id': '1goax7z'}
{'comment': 'Should be 13. One for each circuit. Right now some Justices on the SC get to oversee/influence more than one circuit.', 'created': '2024-11-11 01:12:24', 'submission_id': '1goax7z'}
{'comment': 'Lifetime tenure is specified in the constitution.', 'created': '2024-11-10 23:42:57', 'submission_id': '1goax7z'}
{'comment': 'To set term limits would require a conditional amendment.', 'created': '2024-11-10 23:13:40', 'submission_id': '1goax7z'}
{'comment': 'My point is they couldn’t because Manchin and Sinema wouldn’t let it happen. The Democrats couldn’t get themselves in line in the senate to make this happen, it’s highly doubtful they’ll do it in the future as it’s a fractured party… progressives, moderates, and conservative democrats all fighting too much to get a lot of the big item things done like healthcare. Even in the Infrastructure and Inflation Reduction act, they capitulated to Manchin.', 'created': '2024-11-10 23:44:00', 'submission_id': '1goax7z'}
{'comment': 'Yup. Exactly. They couldn’t get their party in order and do what needed to be done.', 'created': '2024-11-10 23:40:26', 'submission_id': '1goax7z'}
{'comment': 'History says they will.', 'created': '2024-11-11 11:09:21', 'submission_id': '1goax7z'}
{'comment': 'Unless some sort of miracle occurs, our only chance is if enough patriotic non-MAGA republicans caucus with the Democrats on the promise of obstructing Trump’s worst ideas until the next federal election where we can fairly restore federal balance. This is, of course, something I made up in my head and is unlikely to happen. \n\nThe only other pathway I see is the Democratic Party turning to challenging every move by the new administration in court. Every other scenario I’ve ran through is bleak, so if you know something I don’t I’m all ears.', 'created': '2024-11-11 02:16:02', 'submission_id': '1goax7z'}
{'comment': 'Thanks! Reading up on this now', 'created': '2024-11-10 23:19:50', 'submission_id': '1goax7z'}
{'comment': "True.\n\nBut the moneied interests *behind* him that have been setting this up for their benefit aren't fundamentally lazy or disfunctional.\n\nI think they saw an opportunity to establish a stronghold in the WH - and they ain't giving that up over some frivolous election.\n\nTrumps gon Trump. We've reached the point where this version of oligarchs think they can manage him or tolerate him until some lackey takes office.\n\nYou know...like the Germans and Russians did with Hitler & Putin.\n\nThis isn't a cynical or 'doomer' take - its *exactly* where we are going forward. Apparently the country is cool with this so what do I know?", 'created': '2024-11-11 03:22:43', 'submission_id': '1goax7z'}
{'comment': "Ya, funny right? When JFK ran for president everybody screamed that he was a Catholic and a papist.\n\nAnd, those scotus wouldn't be there if not for Evangelical moral majority...\n\nI remember all this... I was raised as a Charismatic Catholic (the cult ACB is in)... \n\nhttps://www.npr.org/2022/05/08/1097514184/how-abortion-became-a-mobilizing-issue-among-the-religious-right", 'created': '2024-11-11 14:01:32', 'submission_id': '1goax7z'}
{'comment': "I gotcha, I didn't say you did. Just wanted to add detail for anyone else who sees the comment and may not know.", 'created': '2024-11-11 17:21:04', 'submission_id': '1goax7z'}
{'comment': '', 'created': '2024-11-11 02:49:55', 'submission_id': '1goax7z'}
{'comment': 'Oh I think he\'ll be paid well enough to "retire and spend more time with his family".\xa0', 'created': '2024-11-11 06:00:27', 'submission_id': '1goax7z'}
{'comment': 'Of course it won’t, it’s about to be betrayed by the biggest shithole ally it has', 'created': '2024-11-11 07:32:35', 'submission_id': '1goax7z'}
{'comment': '> challenging every move by the new administration in court.\n\nThose challenges will get rushed through to SCOTUS, who will rule 6-3 (or more) in favour of Trump.', 'created': '2024-11-11 09:00:26', 'submission_id': '1goax7z'}
{'comment': 'Do you not remember the fiasco they’ve had this session with the multiple speakership votes and changes, then their big ticket item starting the impeaching of Biden didn’t even get off the ground and they were forced to say they had no evidence.', 'created': '2024-11-11 02:18:26', 'submission_id': '1goax7z'}
{'comment': 'Yeah. I remember that also.', 'created': '2024-11-11 15:54:20', 'submission_id': '1goax7z'}
{'comment': 'Yes, which scares me shitless. However, there are is a finite number of cases that any court can handle at any given time.', 'created': '2024-11-11 17:58:39', 'submission_id': '1goax7z'}
{'comment': 'It is true that they have shown repeatedly the inability to govern, however there are extremely scary stories about commands Trump gave that responsible officials kept from happening in the last admin. Those people won’t be there this time and it gives me no comfort to know a Congress incapable of governing won’t stop him.', 'created': '2024-11-11 02:25:19', 'submission_id': '1goax7z'}
{'comment': '> However, there are is a finite number of cases that any court can handle at any given time.\n\nAnd SCOTUS can handle them faster than the Dems can make them.\n\nOr just stick them all on the back burner and say "results stand until we get to it. Oops, Trump just got sworn in and they\'re still on the queue, we\'ll get to them in a few years."', 'created': '2024-11-11 18:52:58', 'submission_id': '1goax7z'}
{'comment': 'I find myself going out of my way to patronize minority owned businesses these days...', 'created': '2024-11-13 01:51:00', 'submission_id': '1goafab'}
{'comment': 'How does a company vote for a politician?', 'created': '2024-11-11 13:43:08', 'submission_id': '1goafab'}
{'comment': 'OP meant political contributions but is not familiar with the political terminology. Companies and their PACs have an outsized role in our politics because of how much money they spend.', 'created': '2024-11-11 14:21:06', 'submission_id': '1goafab'}
{'comment': 'It’s called writing a post title too late at night, lol. I just meant to say who they supported. Can’t edit after the fact apparently.\xa0', 'created': '2024-11-11 14:32:36', 'submission_id': '1goafab'}
{'comment': 'Yeah you noticed that too? They’ve been claiming fraud in every major election since before 2016, *including the ones they won!* This is very fucking fishy.', 'created': '2024-11-10 21:16:55', 'submission_id': '1go9bk6'}
{'comment': 'Trump said, "I don\'t need your votes, I already have them". It\'s in his televised speech.', 'created': '2024-11-10 22:22:19', 'submission_id': '1go9bk6'}
{'comment': 'It’s only fraud when they lose', 'created': '2024-11-10 21:13:38', 'submission_id': '1go9bk6'}
{'comment': 'But they are trying to stop the recounts now. Fascism 101.', 'created': '2024-11-10 23:12:53', 'submission_id': '1go9bk6'}
{'comment': 'Another issue, is they from now till end of time upon loosing elections will challenge the results in court or circumvent them by tossing out illegal votes.', 'created': '2024-11-10 21:14:26', 'submission_id': '1go9bk6'}
{'comment': 'Its clear that all of the rubbish about election fraud is just another duplicitous tool wielded by the republican party and their foreign benefactors.', 'created': '2024-11-10 20:59:33', 'submission_id': '1go9bk6'}
{'comment': 'When they win, they say voting actually works. Imagine that.', 'created': '2024-11-11 05:00:45', 'submission_id': '1go9bk6'}
{'comment': 'And remember when musk said he would give away millions if trump lost?\nYeah, he knew something was brewing...\nThere is no way in hell 20 million democrats just stayed home and didnt vote.\nThere were clearly and obviously a record number of people this election standing in line and waiting and early voting, and the total votes fell well short of last election??? bullshit...', 'created': '2024-11-10 22:10:42', 'submission_id': '1go9bk6'}
{'comment': "They've gone radio silent.", 'created': '2024-11-10 21:47:32', 'submission_id': '1go9bk6'}
{'comment': 'Well he just said on Truth Social, he isn’t having Nikki Haley or Mike Pompeo in his cabinet! One thing we can count on Trump for is putting loyalty over logic. I don’t care for either Nikki or Mike, but it’s obvious that Trump isn’t picking them because they have both criticized him in the past… \n\nI predict Trump implodes within the next year! And I’ll be there to say ‘I told you so’ to all the MAGATS out there!', 'created': '2024-11-11 00:23:36', 'submission_id': '1go9bk6'}
{'comment': 'They are gaslighting the fuck out of us', 'created': '2024-11-11 01:43:42', 'submission_id': '1go9bk6'}
{'comment': "My cousin is still going on about it. Saying because trump won this election proves the last was stolen. It's fucking wild.", 'created': '2024-11-10 22:23:05', 'submission_id': '1go9bk6'}
{'comment': 'Boycott Tesla!', 'created': '2024-11-11 12:30:51', 'submission_id': '1go9bk6'}
{'comment': 'THEY FUCKIN CHEATED!!', 'created': '2024-11-11 20:21:16', 'submission_id': '1go9bk6'}
{'comment': "The same thing that happened to Bidens classified documents, the same thing that happened to draining the swamp, the same thing that happened to all of his bankrupt business/airline/school, the same thing that happened to his closed casinos, the unpaid bills he has for building his failed buildings and gold courses, the unpaid bills to the places where he campaigned, and the other 30000 lies he told as president.\n\nIt's gone with the next news cycle of flood the zone with sh!t", 'created': '2024-11-11 06:17:35', 'submission_id': '1go9bk6'}
{'comment': 'BECUASE THEY WON', 'created': '2024-11-10 21:13:37', 'submission_id': '1go9bk6'}
{'comment': 'Why would they go about it when they won. \n\nWhen your favorite football team loses you blame the refs but when they win, you say the refs called a fair game.', 'created': '2024-11-10 21:46:27', 'submission_id': '1go9bk6'}
{'comment': 'Because there was none, it was psychological warfare and Trump won. Everyday he said same thing, every rally, every debate, every friendly (only ones)interview, every town hall. Same , democrats all over the board except the felonies, and guess what Trump already told them everyday he was the victim. In order to beat the future Trumps, democrats need to say Trump got the best economies twice now , destroyed the first. Start now every day. Don’t stop.', 'created': '2024-11-11 00:24:02', 'submission_id': '1go9bk6'}
{'comment': 'They cheated', 'created': '2024-11-10 21:32:13', 'submission_id': '1go9bk6'}
{'comment': 'Of course they knew it was bullshit. I suspect internal polling was as bad as public polling was this year.', 'created': '2024-11-10 22:21:02', 'submission_id': '1go9bk6'}
{'comment': 'I think most reasonable people knew this. Partly why it’s so painful to see Dem rumblings of the same.', 'created': '2024-11-10 22:31:26', 'submission_id': '1go9bk6'}
{'comment': 'Yep.\n\nAlmost everything Trump and his surrogates said was a fictional reality. So they could con voters.', 'created': '2024-11-10 22:05:48', 'submission_id': '1go9bk6'}
{'comment': 'And the Supreme Court ruling giving the sitting president unlimited power. Do you think they would have enacted it if they thought for one minute that a democratic president would have access to it? They already knew he would win', 'created': '2024-11-10 23:03:08', 'submission_id': '1go9bk6'}
{'comment': 'The 20M number is from before the counting was anywhere close to done. It’s misinformation', 'created': '2024-11-11 02:02:57', 'submission_id': '1go9bk6'}
{'comment': 'I am giving him 2 years. Repeat Nixon.', 'created': '2024-11-11 01:13:00', 'submission_id': '1go9bk6'}
{'comment': 'There was a major difference when Dems won. The cacophony of calls claiming fraud, very much amplified via social media accounts (probably foreign) was deafening. Republicans are easily persuaded by bull shit. Thats kinda the same reason we have tRump. He would have been laughed out of any democratic primary.', 'created': '2024-11-10 21:47:53', 'submission_id': '1go9bk6'}
{'comment': 'Downvoted for just being right. They won. Fraud doesn’t exist when you win. Get a grip guys.', 'created': '2024-11-10 22:20:47', 'submission_id': '1go9bk6'}
{'comment': "Jeez at least give a spoiler alert! /s\n\nSeriously and the simple fact that we're not getting a recount? Like not even one?", 'created': '2024-11-10 23:53:29', 'submission_id': '1go9bk6'}
{'comment': 'Yes 💯', 'created': '2024-11-11 08:27:44', 'submission_id': '1go9bk6'}
{'comment': '[Possibly](https://www.threads.net/@billt801/post/DCIIRcrRhmD)', 'created': '2024-11-11 15:28:07', 'submission_id': '1go9bk6'}
{'comment': "I think the election was stolen but I don't think SCOTUS would care if a Democrat was given absolute power, Biden has it and won't even use it to stop a stolen election.", 'created': '2024-11-10 23:29:23', 'submission_id': '1go9bk6'}
{'comment': 'That sounds about right! Unfortunately though, Trump is too narcissistic to ever admit any wrong doing, especially for the good of others. So idk how we are gonna mop up his stain if he doesn’t leave himself lol', 'created': '2024-11-11 01:17:00', 'submission_id': '1go9bk6'}
{'comment': 'Exactly 2 years, so that he can be 25th and we get a 6 year first term Prez JD', 'created': '2024-11-11 03:38:57', 'submission_id': '1go9bk6'}
{'comment': 'But when the dems won it was immediately called fraud.', 'created': '2024-11-10 23:44:23', 'submission_id': '1go9bk6'}
{'comment': 'Not one', 'created': '2024-11-11 00:52:43', 'submission_id': '1go9bk6'}
{'comment': 'Biden has integrity. trvmp does not. Prepare for the worst.', 'created': '2024-11-11 00:53:45', 'submission_id': '1go9bk6'}
{'comment': 'Ah. I see your point. And he was impeached twice with the republican party saving his bacon. We can still have hope. And the time between now and when the reins are turned over to him could turn up some wacky surprise. Remember he is still facing charges.', 'created': '2024-11-11 02:04:26', 'submission_id': '1go9bk6'}
{'comment': 'EXACTLY BECAUSE THEY LOST. THATS WHAT I SAID', 'created': '2024-11-11 01:46:26', 'submission_id': '1go9bk6'}
{'comment': "I think you might be missing the overall point of the post. Your point is valid and very obvious. Everyone knows they won and thats why they aren't complaining. I think the point of the OP is to spur discussions on why. You know, like how republicans are easily manipulated. How jan 6 was actually a coup attempt but tRump called it a day of love. Like how tRump lied incessantly every day but he still won. Like how republicans are cognitively dissonant and that dissonance is fed by a right wing media machine that knows that if they repeat the lies, the typical republican will still believe them. You know, stuff like that.", 'created': '2024-11-11 02:00:33', 'submission_id': '1go9bk6'}
{'comment': 'you really don’t need to play all of these mental games though. It is simply they lost then and won now. Thats it. Trying to fundamentally understand them will drive you crazy. They do not see Trump as a politician, they view him as almost a god like figure. You cannot reason with that.', 'created': '2024-11-11 07:12:35', 'submission_id': '1go9bk6'}
{'comment': "Let me tell you something. You aint lying. Not at all. Since I am looking for the silver lining I need to understand how this happened. What you state is as good a reason as any. The silver lining is that it shouldn't happen again in my life time, maybe? Following your logic again, JD Vance shouldn't be able to win if he ever runs, maybe? Whats your silver lining?", 'created': '2024-11-11 14:24:25', 'submission_id': '1go9bk6'}
{'comment': 'Potential seats to change from red to blue:\n\nAlaska\n\nIowa\n\nKansas\n\nMaine\n\nNorth Carolina\n\nOhio\n\nSouth Carolina \n\nTexas\n\nThese are all seats where the Republican won less than 54 percent in the last election.', 'created': '2024-11-10 20:33:40', 'submission_id': '1go8pd1'}
{'comment': 'My prediction is that the Maine election will be one of the most expensive in history.', 'created': '2024-11-10 21:35:19', 'submission_id': '1go8pd1'}
{'comment': 'First I am a Democrat and as far as Alaska, there is only 1 Republican Senator with any sense. We know who she is. She should really be a Democrat.', 'created': '2024-11-10 23:11:44', 'submission_id': '1go8pd1'}
{'comment': 'How do I get a job paying 50k in North Carolina or Maine? I want to live somewhere that political organizing actually matters', 'created': '2024-11-10 23:12:01', 'submission_id': '1go8pd1'}
{'comment': 'That’s gonna be a hard fight for everyone, we better find those “once in a generation” candidates for each one to have a chance.', 'created': '2024-11-11 02:28:20', 'submission_id': '1go8pd1'}
{'comment': 'I don’t think I can take another Susan Collins term.', 'created': '2024-11-11 03:32:18', 'submission_id': '1go8pd1'}
{'comment': 'The only 2 with a chance are Maine and NC. Just don’t see the others.', 'created': '2024-11-11 04:30:18', 'submission_id': '1go8pd1'}
{'comment': 'While Nebraska will probably be safe red, Dan Osborn could retry for a senate seat. Rickets would be harder than Fischer, but he wasn’t too far off this year considering its Nebraska', 'created': '2024-11-11 01:08:47', 'submission_id': '1go8pd1'}
{'comment': 'Jeff Jackson 2026 for NC. Jeff Jackson 2028 for USA.', 'created': '2024-11-11 04:07:13', 'submission_id': '1go8pd1'}
{'comment': 'On Nov 26 there’s a runoff election in Mississippi for state Supreme Court. While Supreme court is a non partisan position, judge Kitchens is a Democrat endorsed by the Democrats, opponent Branning is endorsed by the Republican party. Per her website she believes in the “traditional values of faith, family and freedom”. She calls herself a constitutional conservative.\n\nFollow, amplify him on your socials. If you can afford the time and or money donate and volunteer for\n\nhttps://justicekitchens.tbgsites.com/', 'created': '2024-11-11 13:01:56', 'submission_id': '1go8pd1'}
{'comment': 'So Maine and NC are the only realistic shots', 'created': '2024-11-11 06:38:40', 'submission_id': '1go8pd1'}
{'comment': 'If Trump messes up the economy and we have a blue wave, we could win the senate by a pretty wide margin', 'created': '2024-11-10 20:47:27', 'submission_id': '1go8pd1'}
{'comment': 'Have to defend Ossoff’s seat in GA too. Hopefully they really do run MTG and not Kemp against him.', 'created': '2024-11-10 20:46:29', 'submission_id': '1go8pd1'}
{'comment': 'Taking down Lindsey Graham will be awesome', 'created': '2024-11-10 22:42:44', 'submission_id': '1go8pd1'}
{'comment': 'Come on Ohio!! Let’s get this shit done.', 'created': '2024-11-10 21:08:28', 'submission_id': '1go8pd1'}
{'comment': 'If we could get Tim Scott AND Lindsey Graham out of office I would be *soooooooo* happy', 'created': '2024-11-11 02:38:57', 'submission_id': '1go8pd1'}
{'comment': 'Alaska Maybe\n\nIowa Maybe\n\nKansas Maybe\n\nMaine Maybe\n\nNorth Carolina Maybe\n\nOhio NO\n\nSouth Carolina NO\n\nTexas NO', 'created': '2024-11-10 21:25:59', 'submission_id': '1go8pd1'}
{'comment': 'The only candidate who could beat Collins would be Jared Golden and even then he may need to run as an independent', 'created': '2024-11-11 01:35:05', 'submission_id': '1go8pd1'}
{'comment': 'You can go to any of the ex-blue wall states. aviation pays well and has jobs in every state.', 'created': '2024-11-11 00:18:30', 'submission_id': '1go8pd1'}
{'comment': 'On a serious note, there should be a more organized effort to get Dem voters in places like SC and AL to move to NC and GA. It takes time. But it’s a long term need in the Senate. \n\nChris Murphy today posted the ceiling in the senate for Ds is 52. For Rs, it’s 62. \n\nIf that is the ceiling, how do you confirm SCOTUS if/when we get the presidency again, let alone pass legislation', 'created': '2024-11-11 06:42:25', 'submission_id': '1go8pd1'}
{'comment': 'Is it also possible she might retire?', 'created': '2024-11-11 07:32:35', 'submission_id': '1go8pd1'}
{'comment': 'Considering how NC voted blue down ballot, I could see them bouncing Tillis depending on the national environment and if Dems run the right candidate. I read Wiley Nickel might make a bid for the senate seat.', 'created': '2024-11-11 07:32:17', 'submission_id': '1go8pd1'}
{'comment': 'I was thinking this as well but he might need to be AG a little longer. He would be great though!', 'created': '2024-11-11 20:06:36', 'submission_id': '1go8pd1'}
{'comment': 'Key word here is “IF.” Dems need to use these next two years as an opportunity to improve our messaging and outreach, especially if we want to flip seats. Yes, we could hinge our hopes on DJT fucking up, but that always doesn’t stick — this election proves it. Painting DJT as democracy’s villain turned off a large portion of the electorate. We need a new message and a better way of delivering it.', 'created': '2024-11-10 21:11:21', 'submission_id': '1go8pd1'}
{'comment': 'Thank you. Ohio, especially with Brown being defeated could be written off for the most part. Maine is probably the biggest flip.', 'created': '2024-11-10 21:44:17', 'submission_id': '1go8pd1'}
{'comment': "It's not as good of map as I was hoping tbh. Maine, Kansas, and NC are probably where the easiest wins are and they re-elected Collins last time after her whole 'Trump will learn his lesson' business.", 'created': '2024-11-10 23:38:49', 'submission_id': '1go8pd1'}
{'comment': 'Can someone explain why Maine loves her so much? I think this is one of those cases where if you do not live in the state it seems like a weird one.', 'created': '2024-11-11 18:50:46', 'submission_id': '1go8pd1'}
{'comment': "I've been meaning to check out Milwaukee, I absolutely love Detroit", 'created': '2024-11-11 00:29:12', 'submission_id': '1go8pd1'}
{'comment': "That's nuts.", 'created': '2024-11-11 07:01:02', 'submission_id': '1go8pd1'}
{'comment': 'It’d be great if the Dems could bounce Tillis, but he’s somehow seen as a rationale GOPer in this environment.', 'created': '2024-11-11 14:01:15', 'submission_id': '1go8pd1'}
{'comment': 'its tricky, i see a world where Trump and his MAGA get a beautiful pass on allot of issues that normal politicians dont. Trumps going to take the Economy into Turbo Charge for his own personal ego, while his family rob the place blind, eventually there will be a economic recession, there\'s always a recession, its a cycle. if we see a recession 2026, the house is ours, maybe the senate but those deep red states are where the voters give Trump a pass in favor of "culture issues\' ok economy sucks but we got to own the libs, those trans and gays are in their place along with minorities, and "Jesus Crist" is worshiped just below Trump himself. We can take the house in 2026 even if the economy is hot, because social issues will turn out our base and Trump voters only turn out for Trump himself, the House Districts actually favor Democrats, so we can recover what we lost in PA, MI, WI and maybe pick up in AZ and CA and keep NY seats ; narrow majority but it stops MAGA from passing any laws. I still hope we can pull off a 1 seat majority in the house this year. The Senate is difficult deep red states, with close ties to MAGA, only way we take the senate is a pretty bad recession. Now lets say 2028 comes around and economy is still out, let Vance have it, owning the collapse of the Trump Economy needs to fall on MAGA.', 'created': '2024-11-10 21:25:05', 'submission_id': '1go8pd1'}
{'comment': 'I am gutted about Sherrod Brown, but wonder if we’ll do a bit better in a nonpresidential year.', 'created': '2024-11-10 23:35:55', 'submission_id': '1go8pd1'}
{'comment': 'I think you could add Iowa to that list as well with the idea that GA and MI need to be fiercely defended. If Kemp runs for senate then we lose Osoff. That will be a write off for the dems.', 'created': '2024-11-11 18:49:51', 'submission_id': '1go8pd1'}
{'comment': 'I don’t know what it’s like to live there but I regularly drive to Milwaukee for their theaters like the Pabst and Miller High Life. I’ve been in Wisconsin for about 3 years now and love it.', 'created': '2024-11-11 03:40:48', 'submission_id': '1go8pd1'}
{'comment': 'The idea or the ceiling values?', 'created': '2024-11-11 07:02:05', 'submission_id': '1go8pd1'}
{'comment': 'Yeah the Biden association was too strong in what has become a pretty red state.', 'created': '2024-11-11 02:28:10', 'submission_id': '1go8pd1'}
{'comment': '52 is not enough to do anything', 'created': '2024-11-11 07:12:56', 'submission_id': '1go8pd1'}
{'comment': 'Exactly. Getting DC and PR statehood could help but you are kind of stuck because you can’t get there from here. You would have to hope for an all time inarguably bad Trump term that leads to some extra seats and then you have to use it. \n\nAnd as much as it pains me to say it, thank god Sinema didn’t allow the filibuster to die. It’s going to be our best friend for a long time.', 'created': '2024-11-11 07:17:30', 'submission_id': '1go8pd1'}
{'comment': "PR just elected the pro trump candidate, I know it's not as simple as that since its a different political system and environment \n\nI never hated manchin.", 'created': '2024-11-11 07:23:04', 'submission_id': '1go8pd1'}
{'comment': 'This article may be behind a paywall. You can add 2-4 paragraphs as a quote in a comment. *Do not post the text for the entire article.*\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-10 19:21:33', 'submission_id': '1go734q'}
{'comment': 'Good.Its going to be a great time over the next four years to be a lawyer in America.', 'created': '2024-11-10 19:43:33', 'submission_id': '1go734q'}
{'comment': 'Hell yeah. America is a litigious country, as shown by Trump throughout his life. Let’s use that in our favor to defend America.', 'created': '2024-11-10 23:17:58', 'submission_id': '1go734q'}
{'comment': 'so much for "give me your tired, your poor.."', 'created': '2024-11-11 02:33:10', 'submission_id': '1go734q'}
{'comment': 'I hope this man is ready for a fight. He’s got a tough path ahead of him. Signed, A Hopeful Dem', 'created': '2024-11-10 19:53:52', 'submission_id': '1go6y1f'}
{'comment': "Democrats up and down ballots everywhere being elected over their republican running opponents..... and yet trump still won. This just doesn't fucking make sense.", 'created': '2024-11-10 21:54:33', 'submission_id': '1go6y1f'}
{'comment': 'As an Oklahoman this was one small glimmer of hope.', 'created': '2024-11-10 20:39:31', 'submission_id': '1go6y1f'}
{'comment': 'Wow!', 'created': '2024-11-10 19:26:52', 'submission_id': '1go6y1f'}
{'comment': 'His opponent was also a Democrat, but she was colluding with the maga guy that lost, some heinous sexual abuse occurred at the juvenile facility under her watch, and she basically ran on name recognition alone. I figured she would get the maga vote but it appears they abstained. Glad we have Mr. Nichols - he seems motivated and a positive guy.', 'created': '2024-11-10 22:50:15', 'submission_id': '1go6y1f'}
{'comment': 'I wish this happened for Collin Allred (ran for senate in tx)', 'created': '2024-11-11 00:51:05', 'submission_id': '1go6y1f'}
{'comment': 'Go, Tulsa! \\\u2060(\u2060๑\u2060╹\u2060◡\u2060╹\u2060๑\u2060)\u2060ノ\u2060♬', 'created': '2024-11-10 20:10:42', 'submission_id': '1go6y1f'}
{'comment': 'Things can change, it just takes time.', 'created': '2024-11-11 04:28:24', 'submission_id': '1go6y1f'}
{'comment': 'Boycott Tesla - Spread the word!', 'created': '2024-11-11 18:10:08', 'submission_id': '1go6y1f'}
{'comment': 'It looks like there has been an uptick of ticket-splitters.', 'created': '2024-11-10 23:51:00', 'submission_id': '1go6y1f'}
{'comment': 'I totally agree... something smells like bullshit', 'created': '2024-11-11 00:07:25', 'submission_id': '1go6y1f'}
{'comment': 'There’s also a huge uptick of undervotes - where people only vote for the president and nothing else, and Trump has a lot of them.', 'created': '2024-11-11 04:37:48', 'submission_id': '1go6y1f'}
{'comment': 'yeah if we want to lose by an even wider margin.', 'created': '2024-11-10 18:45:13', 'submission_id': '1go5ktb'}
{'comment': 'Definitely not this guy. Just because Trump is a divider doesn’t mean we need one in the democrat party. He’s call green voters dipshits on Twitter and has become rather unpopular in his state. Probably will lose his seat next election.', 'created': '2024-11-10 18:49:28', 'submission_id': '1go5ktb'}
{'comment': 'Just some historical observations.\n\nAfter the Nixon landslide in 1972, few Democrats outside of Georgia, except for political junkies, had heard of Jimmy Carter who went on to defeat an incumbent president in 1976. \n\nSlightly more people may have heard of Bill Clinton after the Dukakis defeat in 1988. \n\nWe should concentrate on organizing to win midterms in 2026 and see who emerges from those.', 'created': '2024-11-11 00:10:14', 'submission_id': '1go5ktb'}
{'comment': "I think the post-stroke language issues make him a nonstarter as a presidential candidate. (I also think this is why he's done some political pivoting since then; with the presidency off the table, he's focusing on bolstering his appeal to PA voters instead.)", 'created': '2024-11-10 18:50:44', 'submission_id': '1go5ktb'}
{'comment': 'Fuck no, that would shooting themselves in the foot twice. Fuck Fetterman I’d never vote for a Zionist', 'created': '2024-11-10 19:28:22', 'submission_id': '1go5ktb'}
{'comment': '*bald\n\n\nAlready there!', 'created': '2024-11-10 18:52:06', 'submission_id': '1go5ktb'}
{'comment': '[removed]', 'created': '2024-11-10 18:30:09', 'submission_id': '1go5ktb'}
{'comment': 'How so? Elaborate', 'created': '2024-11-10 18:46:42', 'submission_id': '1go5ktb'}
{'comment': "I hate to break it to you but being safe and woke is not the way to go. If the DNC keeps putting that out there didn't expect to win any elections any time soon.", 'created': '2024-11-10 18:52:44', 'submission_id': '1go5ktb'}
{'comment': 'I agree partially. We need to definitely focus on winning the 2026 midterms for sure but we cannot neglect the POTUS primary as well, planning needs to start now not in 2025, 2026, or 2027, now. This is what needed to happen as soon as Biden won in 2020.\n\nI love the historical observations but the internet and influencers are also important moving forward.\n\nThe party needs to start making some very stragetic investments in beefing up those areas and making sure to associate any Trump presdential hardships w/ Trump, "Trump Tarrifs" "Trump Inflation" "Trump Education" "Trump Reorganization of the Government" etc.\n\nThe kid gloves need to come off.', 'created': '2024-11-11 00:47:00', 'submission_id': '1go5ktb'}
{'comment': "He's back to pre-stroke from now.", 'created': '2024-11-10 18:54:56', 'submission_id': '1go5ktb'}
{'comment': 'How about you elaborate first? What makes Fetterman a bold (?) Democratic candidate in your opinion?', 'created': '2024-11-10 18:53:20', 'submission_id': '1go5ktb'}
{'comment': 'Fetterman is an extremely unlikeable candidate.', 'created': '2024-11-10 18:48:29', 'submission_id': '1go5ktb'}
{'comment': 'You have no idea what you’re even talking about. You saw a tweet that said fetterman was the blue trump and came here and posted it. It’s not happening and if it did I’d gladly come back to this post and laugh at you when he lost by over 300+', 'created': '2024-11-10 18:57:02', 'submission_id': '1go5ktb'}
{'comment': "I do agree that Democrats need to go for the jugular. You don't win fights by sticking to Marquess of Queensberry Rules when the other guy is kicking below the belt with spiked shoes.\n\nIn the recent election a big and glaring opportunity was missed when Dems failed to go after Trump's pandemic response failures and the connection of those failures to the cascade of economic problems which ensued. \n\nTrump gave us a real life dystopia in 2020. Hundreds of thousands of *additional* Americans died because of his dawdling and stalling. I'm unaware of any concerted effort this year to pin this catastrophe on him. \n\nVoters are more likely to fear the types of things he actually did than to fear the sorts of things he theoretically *might do* in the future.", 'created': '2024-11-11 01:35:38', 'submission_id': '1go5ktb'}
{'comment': "Oh is he? In that case, then yes, I agree he's an interesting option!", 'created': '2024-11-10 18:56:46', 'submission_id': '1go5ktb'}
{'comment': 'And I shall.\n\nWe need candidates like Fetterman at least in these primaries to see how they do both against more polished in house options and against GOP oppenents nationally via focus groups/etc.\n\nWe need to have candidates who voters on both sides can relate to that have fire in their belly.\n\nFor too long this party has been the party of when they go low we go high, nope, when they go low we need to fucking sweep kick them down.\n\nIs Fetterman perfect? Hell no. But you are kidding yourself if you think people like Newsome, or Gretchen, or Pete are the future (And I say "you" as in the DNC establishment, not you personally). The GOP will have a field day w/ connecting the crime in CA\'s cities and woke policies (sound familiar) to Newsome, Gretchen is a woman and this country so far is 0/2 with woman candidates, and Pete will just be blasted for being gay his policy/track record will not matter at all. Do I agree with those positions, no but a vast majority of the country will.\n\nAlso the party needs to drop some of the "wokeness" I\'m not saying the party shouldn\'t stand for protecting the rights of the LGBTQ+ community but understand that a majority of the population is not accepting of tax payer funded sex changing surgeries and allowing trans athletes to play sports on teams for the sex they ID with, personally I think it\'s stupid to even give a damn but this election proves that stuff like this are hot button items. Until this country (not a segment of the population) is in line w/ progressive policies across the board we need to chill w/ them.\n\nThe time to be cute and cuddly is over folks.', 'created': '2024-11-10 22:51:33', 'submission_id': '1go5ktb'}
{'comment': 'I will when I get to the computer!', 'created': '2024-11-10 18:57:47', 'submission_id': '1go5ktb'}
{'comment': 'Why?', 'created': '2024-11-10 18:49:37', 'submission_id': '1go5ktb'}
{'comment': 'I do though. \n\nI live in PA and the guy is liked here by people from both parties.', 'created': '2024-11-10 18:58:42', 'submission_id': '1go5ktb'}
{'comment': "I see things you don't like about the current state of the Dems, but what does Fetterman do? What do you like about him? The fact that he first said he was progressive to get elected, and then later said he wasn't progressive?", 'created': '2024-11-10 23:08:18', 'submission_id': '1go5ktb'}
{'comment': 'He can’t speak. It isn’t hard to understand. Joe Biden was 81 and couldn’t articulate his policies. Fetterman is in his mid-50s, had a stroke and cannot articulate his policies. If anything we’re gonna need him in the Senate because at least he has a brand Pennsylvania. The second he’s out of here that seat goes red also.', 'created': '2024-11-11 15:05:58', 'submission_id': '1go5ktb'}
{'comment': 'His favorability ratings are low.', 'created': '2024-11-13 08:08:01', 'submission_id': '1go5ktb'}
{'comment': "I like that he can appeal to both sides.\n\nThis party will not win another election unless it can appeal to both sides.\n\nHe is also more centerist than AOC progressive which is needed to appeal to more voters.\n\nHe also is similar to Drumpf in that when he speaks he doesn't sound like a polished career establishment politician.\n\nDo I personally agree w/ Fetterman's stance on all of the issues? No\n\nDo I trust him more than Drumpf or anything the MAGA movement produces after Drumpf? Yes\n\nThe time for cute/cuddly warm and fuzzy politics are over.", 'created': '2024-11-10 23:18:49', 'submission_id': '1go5ktb'}
{'comment': "I'm not here to reassure you. I'm here to tell you to go read On Tyranny by Timothy Snyder, a Yale professor who specializes in authoritarianism. It is necessary at this moment.", 'created': '2024-11-10 18:52:09', 'submission_id': '1go5btm'}
{'comment': 'People fell for propaganda. That\'s it. They don\'t care to research how the economy works or how the legislative branches work. They see that their pocketbook is affected right now and apparently don\'t care about Trump being a felon, rapist, ect. Or that he tried to overturn the elections. Republican fear mongering won. People chose that over joy, kindness and competence. \n\nI have been going through every stage of grief. I am in the "I have no more fucks to give" phase. When the leopards eat their faces I don\'t want to hear a single complaint. \n\nI now want to reassure you that we will be okay. We will claw our way back. This happens every 2 years with the election and midterms. When people see how bad he makes the economy, people will vote for democrats. We have to regroup and have our post mortem and come back with a better message.', 'created': '2024-11-10 18:22:32', 'submission_id': '1go5btm'}
{'comment': 'You\'re not the only one. I have no animus towards republicans. They voted exactly as expected. I blame democrats who failed to show up for whatever reason. Rumsfeld was correct when he said, "The perfect is the enemy of the good." Dems wanted perfect, stayed home when they didn\'t get it and now we have 4 years of nightmares, plus the long-term damage he\'ll do to scotus, plus the residue of his destruction of the economy, plus whoever succeeds him.', 'created': '2024-11-10 18:31:06', 'submission_id': '1go5btm'}
{'comment': 'Top priority for Democrats when they get a trifecta in Washington is to make "no felony convictions" a requisite to become a President.', 'created': '2024-11-10 18:44:31', 'submission_id': '1go5btm'}
{'comment': None, 'created': '2024-11-10 18:53:35', 'submission_id': '1go5btm'}
{'comment': 'Americans are dumb and fell for lies and propaganda.\n\nPeople did not even know Biden was off the ballot on election day.\n\n60+ million eligible voters did not vote.', 'created': '2024-11-10 19:24:45', 'submission_id': '1go5btm'}
{'comment': 'Its not that "the facts don\'t matter". Democrats sold self actualization. Republicans sold self interest. It really boils down to that. \n\nMiddle class white people got in the voting both, pulled the curtains back, and said to themselves "I\'d rather have marginally lower taxes, cheaper gas, and cheaper eggs FOR ME and that is more important than every other issues". \n\nDon\'t overthink it. This is no different than when you find out that your close friends or family who "would never do something like that" get caught up in some atrocity lol.', 'created': '2024-11-10 21:36:20', 'submission_id': '1go5btm'}
{'comment': 'You want my theory?\n\nI think the answer is far more simple than all the finger pointing.\n\nHarris ran a decent campaign and she was a good candidate. \n\nHowever, there\'s a significant and necessary percentage of the voting populace that aren\'t really all that tuned in, and you basically have to dangle a shiny object in front of them to get them interested enough to go to the polls, even when they generally support your party\'s agenda. It\'s true for both sides. \n\nTrump got his portion of those people to the polls because he\'s basically a shiny object incarnate. All of his outrageous antics and statements kept him at the top of news cycle.\n\nHarris was interesting, and she did manage to get the "shiny object" thing going with the debate and convention, but those same people stopped paying attention the moment she started talking about the boring "policy stuff".\n\nI suspect that you have to run an entirely different kind of campaign than has traditionally worked, at least when dealing with what\'s basically the "carnival barker" on one side drowning everything else out. Mainly because you have to compensate for that portion of the population I am talking about that has to be entertained to get them to the polls.', 'created': '2024-11-10 18:35:03', 'submission_id': '1go5btm'}
{'comment': 'Need vote recounts and audits in the swing states. Too many inconsistencies. Trust but verify. Use every legal means to verify his win.', 'created': '2024-11-10 18:41:12', 'submission_id': '1go5btm'}
{'comment': '14,000,000 Democrats failed to vote because "i DoN\'t LiKe HEr" and a bunch other chicken fat. expletive. Case closed.', 'created': '2024-11-10 18:59:59', 'submission_id': '1go5btm'}
{'comment': 'As you state, you are, “very tuned to the world around you”! Trump voters went on gut feel, vibes , confirmation bias, ignorance, misinformation and yes a touch of misogyny and racism.', 'created': '2024-11-10 19:07:27', 'submission_id': '1go5btm'}
{'comment': '“What do you have to lose in voting for me?” That’s a quote DJT made in asking a black person at a rally. \n\nAs a Democrat, DJT won because he created a divide and conquer movement instituting fear monger tactics, all by playing chess. Our party didn’t know how to play the game, sadly, all because the hope and change we drive had failed in not captivating those who wanted new, and they felt they had nothing to lose (even though they did) by changing to DJT and the Republicans. \n\nThe regrouping has to start within the upper echelons of the party, and not be shy to drain their party of baggage. People don’t want to admit it, but sadly we need to let go of the Obama’s and the Clinton’s. The question needs to be asked why people stay home and don’t vote, then look outwards at the con man and what he’s done to the other party as well. Every single thing he said to incite fear, our response was to go high, but never showed how and why. Every move he made was calculated because deep down, the campaign team was having voters do what we did. \n\nThe fear tactics came also in media coverage afraid to speak the truth in real time, but baited people to think there was nothing wrong in voting for DJT, even though they spewed it for years that he’s a convicted felon. \n\nDid people have their minds made up before this year? Absolutely! But people chose to vote against their interests because they felt forgotten, and were tired of the poli-tricks, all to say it is what it is; while expecting that the party of hope and love for all Americans will be there to help them when the repercussions of their actions are felt. We feel betrayed by this loss. We feel betrayed that they believed we must “kill” America, jump start her, and live within our means, while cleansing our country of people who aren’t the enemy. If that’s their thought process, in believing so, then cleaning up needs to be done within the Democrats party, and acknowledging the gamble took with no primary, and get the people back to believing their interests matter. To show that America cannot and should not allow a 2016 and 2024 to ever happen again.', 'created': '2024-11-10 19:14:35', 'submission_id': '1go5btm'}
{'comment': 'Trump did want fascist do. The election was stolen with the help of Russia and Musk.', 'created': '2024-11-10 22:49:07', 'submission_id': '1go5btm'}
{'comment': 'I’m really, really glad you posted this\n\nI, too, feel lost. I feel like a stranger in my country now. \n\nI thought - I believed - that surely most people have the common sense - the Decency - not to re-elect that man. \n\nObviously I was very wrong. \n\nI’m just so sad. \n\nI am also a middle aged man.', 'created': '2024-11-10 23:40:39', 'submission_id': '1go5btm'}
{'comment': 'I’m sorry I can’t help you because I feel the same way and I don’t know what to do.', 'created': '2024-11-10 19:42:49', 'submission_id': '1go5btm'}
{'comment': 'Too many Americans are gullible as fuck.', 'created': '2024-11-10 21:18:19', 'submission_id': '1go5btm'}
{'comment': 'Propaganda/false-information is powerful, so is the belief that your vote doesn’t matter.', 'created': '2024-11-10 20:27:02', 'submission_id': '1go5btm'}
{'comment': 'What happen, Fear and Hate won', 'created': '2024-11-10 21:17:45', 'submission_id': '1go5btm'}
{'comment': "In terms of voter turnout 2024 (varying #'s being reported as they are still being finalized).\n- Trump 74.7 M\n- Harris 70.9 M\n\nIn 2020, the results were:\n- Biden 81.3 M\n- Trump 74.2 M\n\nIn 2016:\n- Trump 63 M \n- Clinton 65.9 M\n\nSo, from 2020 to 2024, numbers who voted for Trump stayed about the same. However, people came out in force to vote for Biden in 2020 while potential Harris voters sat on the couch \n\nI would interpret that as total apathy on the part of the Dems vs. any increase in support for tRump. Throw in a last-minute switcheroo of the candidate, racism, misogyny and Harris not distancing herself more from Biden or outlining policies in a way that the everyman could understand. Low democratic voting in swing states that Biden took in 2020 clinched it for tRump.", 'created': '2024-11-10 22:18:57', 'submission_id': '1go5btm'}
{'comment': ">Please someone tell me I’m overreacting here and Trump isn’t going to completely destroy our government, our economy and in the end our country. Please tell me that Project 2025 isn’t as horrible as I’ve read.\n\nI wish I could reasssure you, but I think we'll see all of this and much more besides (including perhaps martial law, which you mentioned in your post).\n\nI'm still in shock that he won.", 'created': '2024-11-10 18:38:06', 'submission_id': '1go5btm'}
{'comment': '3 reasons per polling: inflation, immigration, and trans/cultural stuff.\n\nInflation isn’t really her or Biden’s fault. Maybe the American Rescue plan could have been smaller? But that’s so hard to know at the time.\n\nBiden should have cracked down on illegal immigration sooner, and I say this as someone whose heart breaks for migrants.\n\nAnd I love everything about Harris, but she was too far left for America. She was a San Fran liberal and she tried to be too progressive in her 2020 run. The GOP used those old quotes and clips (sex changes for prisoners?) and bashed her over the head with them.\n\nAlso throw in some racism and misogyny and it was all too much to overcome.', 'created': '2024-11-10 21:22:06', 'submission_id': '1go5btm'}
{'comment': 'I feel exactly like you do and everything you said is true. There is no longer a Republican Party…. There’s MAGA and that’s it. Biden inherited COVID and did a great job with that and handling inflation. These MAGA twats do not read and discover that the entire world had inflation from COVID. Even when Trump dies MAGA won’t… we are fucked', 'created': '2024-11-11 00:23:02', 'submission_id': '1go5btm'}
{'comment': 'An alternative POV: Trump used then christian nationalists to get their votes but won’t do much if anything at all to actually carry our their agenda.\n\nTrump will do nothing more than spend 60% of his time golfing and staying out of prison.', 'created': '2024-11-10 19:38:49', 'submission_id': '1go5btm'}
{'comment': 'Democracy is great in concept but if the people are dumb and selfish, they are susceptible to propaganda.\n\nI live in Los Angeles and ran into a probably 400 lbs black woman at the pharmacy yesterday morning who was ranting that she hopes all the Hispanics get deported because traffic is worse than it used to be. Simple as that. Then she screamed at everyone in line including me because I said “next please” when she was in line and ignoring the staff who called her up like 5 times because she was busy being a bigot. She is the perfect example of what is wrong with this country; undisciplined, selfish, cruel, and uneducated.\n\nI don’t think there is hope for this nation when people like her are voting.', 'created': '2024-11-10 19:34:30', 'submission_id': '1go5btm'}
{'comment': 'It doesn’t matter at all. The US is a shite show full of uneducated, stupid people. It will soon be a 2nd world country occupied and controlled by a handful of billionaires.', 'created': '2024-11-10 19:13:10', 'submission_id': '1go5btm'}
{'comment': 'Lying happened. A lot of lying.', 'created': '2024-11-10 19:09:57', 'submission_id': '1go5btm'}
{'comment': 'Falken, you’re not overreacting. The potential for the USA you and I grew up in to become destroyed is high. This election is the first example of the potential dissolution of the USA. Trump has carte blanche to do what he wants. Please do remember there are millions of us who care. Millions of us to for whom this is intolerable.', 'created': '2024-11-10 20:50:39', 'submission_id': '1go5btm'}
{'comment': 'https://preview.redd.it/n5vm7flbh40e1.jpeg?width=1170&format=pjpg&auto=webp&s=5802a123aa1e25fe20ebab69acca7f960af34f7e', 'created': '2024-11-10 20:05:45', 'submission_id': '1go5btm'}
{'comment': 'Non-American observer here. What happened is you had a lot well intentionded but misguided Democrat elites who let the right wing media set the narritive and fell into a trap. Not enough paid attention to the ones who actually know how things work. The important states midstates that want a reassuring father figure. Anyone who tried to defend keeping Biden in was attacked. "progressives" thought if you just put Kamala on some lefty podcasts get Beyonce and Taylor to endorse it was a done. Thanks for being the ones who actually handed Trump another victory.', 'created': '2024-11-10 20:51:39', 'submission_id': '1go5btm'}
{'comment': 'Democrats crapped the bed. Should have pushed Biden out earlier and had a real primary Kammy last ran on a VERY progressive platform, and she isn’t very commanding on TV. Democrats need to focus on a plan to improve home affordability and general COL.', 'created': '2024-11-10 21:49:50', 'submission_id': '1go5btm'}
{'comment': "America spoke out and said it doesn't want to be saved. Go, prepare for the shitstorm. But staples and hunker down. I assume inflation and worse. Put your money in something more solid than a dollar.\xa0", 'created': '2024-11-10 22:04:18', 'submission_id': '1go5btm'}
{'comment': 'This is a coup disguised by the oligarchs. Rise!', 'created': '2024-11-10 23:06:43', 'submission_id': '1go5btm'}
{'comment': 'We are fucked. Period', 'created': '2024-11-11 01:45:06', 'submission_id': '1go5btm'}
{'comment': 'THANK YOU ALL FOR THE ENORMOUS ENGAGEMENT THIS POST HAS GOTTEN. I DO FEEL A LOT BETTER HAVING HAD SOME HELP PROCESSING ALL OF THIS. Please continue with the conversation, this may sound corny, but knowing I’m not alone in this makes my soul heal, thank you.', 'created': '2024-11-11 01:46:13', 'submission_id': '1go5btm'}
{'comment': "The good news is that project25 doubles as a time line in its original form.. it has been edited since Trump won on Tuesday. Steve Bannon and others have admitted project25 is the plan. Study it. Learn it. In those pages you will be able to predict the future and give yourself and your family more time to plan etc. \n\nPrepare for the worst while hoping for the best. Hold your family close and say all you have to say to those you love. Day 1 they are planning the first phase or project25 right on que\n\nJust remember you are not alone. Many of us feel the same and there are dems in office already preparing. Look at California. They aren't playing around. I'm planning on having a plan to move to Cali or Minnesota if I have to. I know it's expensive and not a quality choice for all but you can always have go bags packed the cars full of gas and a route in place in case you need to. Nothing wrong with being prepared.", 'created': '2024-11-11 02:09:58', 'submission_id': '1go5btm'}
{'comment': 'What is happening is exactly what Aristotle saw as the major flaw with democracy. When things get tough, it\'s easy for a demagogue to rise to power regardless of virtue, knowledge, or skill. They rise with charisma by being a skilled orator, making fake promises, and just getting the masses to your side. Then, they consolidate power for themselves. He said Democracies are the breeding ground for Oligarchy and Tyranny to form right under the nose of "freedom."\n\nFuck\n\n[https://www.youtube.com/watch?v=rKstmdkYUBQ&t=1s](https://www.youtube.com/watch?v=rKstmdkYUBQ&t=1s)', 'created': '2024-11-11 16:14:20', 'submission_id': '1go5btm'}
{'comment': 'A guide to how we got here:\n\n1. A black man won the presidency not once, but twice and a lot of ⚪️ people lost their minds.\n\n2. After seeing the effects of a good president, the elite said “Hell no! We make no money when people aren’t fighting and everyone works together. Let’s distract the world with a bumbling bafoon and get him to spout a bunch of bullshit. That way we can continue to exploit the non 1%, while we hoard more money than any one family could ever spend in a lifetime.” \n\n3. They recruited boomers, racists (including the self loathing ones that aren’t ⚪️), all flavors of hate groups, pick me’s and the Christian right to spread lies and fears about immigrants, the poor, gay and trans people, the “woke” and any other group they deemed undesirable to blame them for everything bad in the world. They used lies, misinformation and control of the media to install their agenda. \n\nWe have fully descended into the “fuck you, I got mine” mentality as a country. When the orange shit stain burns the US to ground, the blame will still be directed to everyone else (see list above). The hate machine is too big and seems to be gaining fuel for anyone to stop at this point. Kamala wasn’t perfect but she was the best option we had. We just needed to admit there was no way in hell the US was going to allow a black/Indian woman lead this country. The fact they voted in a rapist/felon/liar/etc to keep it from happening tells you everything you need to know. \n\nYou can’t have a culture that sees empathy, humanity and morality as a weakness and expect anything better than the shit show going on right now. I weep for the future.', 'created': '2024-11-11 23:24:45', 'submission_id': '1go5btm'}
{'comment': 'America is far more racist and sexist than we want to admit.', 'created': '2024-11-10 21:38:22', 'submission_id': '1go5btm'}
{'comment': 'Our country hates women and fell for a huckster, again.', 'created': '2024-11-10 19:36:36', 'submission_id': '1go5btm'}
{'comment': "People that showed up for Joe Biden did not show up for Kamala Harris. Many of these people did not want to see a Woman President, or at worse a Black Woman President. We haven't learn from 2016 that if you don't vote for her, don't expect anybody else to. Trump got 2 million less votes than 2020 and there was a number of former Trump supporters that were now voting for Kamala Harris. It was that much less.", 'created': '2024-11-10 19:52:43', 'submission_id': '1go5btm'}
{'comment': "I think I have a pretty good handle on what has happened. \n\n1. Trump's main appeal has always been his open racism and sexism\n2. That brand of politics isn't *quite* popular enough to win without an assist\n3. In 2016 he got that assist from Comey and Putin\n4. In 2020 he got no assist\n5. In 2024 he got the assist from post-pandemic inflation\n\nHarris lost for the most classic of reasons: it's the economy stupid. Yes, even though our economy is great by many standards, a dozen eggs costs noticeably more than they did a few years ago. Simple as that.", 'created': '2024-11-10 19:52:29', 'submission_id': '1go5btm'}
{'comment': 'Voter voting against their self interest or not voting. There you go.', 'created': '2024-11-10 21:03:01', 'submission_id': '1go5btm'}
{'comment': "1). The Democrats kept trying to pretend that the economy was doing fine when in reality most ordinary people are struggling\n\n2). America is not ready to elect a woman\n\n3). We didn't nominate a charismatic populist who could have provided people an alternative explanation for why they are struggling\n\n4). We alienated white men too much, we need to rebrand our message to one that lifts everybody up- women, minorities and white men", 'created': '2024-11-10 22:37:09', 'submission_id': '1go5btm'}
{'comment': 'Chop wood, carry water. Hug your peeps, shift focus inward…and before you know it, we will get to get on the roller coaster again. Hold on and hang tough.', 'created': '2024-11-10 22:41:59', 'submission_id': '1go5btm'}
{'comment': 'My opinion - for what\'s it worth- is a simple explanation. Back in the day, every American got their news from Tom Brocaw, or Dan Rather. News sources you knew you could trust. \nNow it\'s a free for all of "news sources" and none of them are good. \nIt used to be news was vetted, before it was put out in the either. Now that anything goes? It was the perfect storm for someone like trump. Repeat a lie often enough and it becomes the truth. \nWhat\'s sad is grocery prices aren\'t going to go down,no help for childcare is coming. And economists say if mass deportations occur prices will go up. \nTrump is a child. With child like "solutions" to complex problems. And like the Wall Mexico was going to pay for? Electing this convicted felon, convicted liar and cheater, this rapist and all around vile human being? Will not solve anything. Elon will get richer. So will trump. \nSo the short answer, imo is until we can agree on the same set of facts? \nLies will be truth. Fascism is here. Ben Franklin is rolling over in his grave. 😒', 'created': '2024-11-11 01:47:01', 'submission_id': '1go5btm'}
{'comment': 'I’m almost at a point where I’m not sure if I care if the entire fucking country burns down to the ground, figuratively speaking. If this is what Americans want then I hope Americans get just what we all deserve. Which is a shithole of a country to live in. We don’t deserve nice things. We are an arrogant people and a large part of me hopes that our time has run out.', 'created': '2024-11-11 03:11:08', 'submission_id': '1go5btm'}
{'comment': "Democrats got comfortable. They underestimated Trump because he's a ridiculous evil clown. Alot like 2016. And the Harris campaign was so shallow and devoid of policy. Democrat voters were certain Trump couldn't be president again and so many people didn't bother voting.", 'created': '2024-11-11 04:08:34', 'submission_id': '1go5btm'}
{'comment': 'I’m sorry to say I’m still in a depressed daze too. It’s good that people are calling for continued work and that’s a good thing but I’m not ready. I’m still grieving.', 'created': '2024-11-10 22:02:27', 'submission_id': '1go5btm'}
{'comment': "Trump, musk, and putin stole the election, that is what happened. Democrats didn't do anything wrong, other than being too nice all the time. It's hard to fight evil. Hopefully things are in the works for an investigation, hand recount every single ballot. They can't get away with this. Trump told his crowd they won't have to worry about voting again, musk was willing to bet his fortune that trump was going to win. Criminals can't help but expose themselves. They hacked the machines, they all should go before a firing line for treason. Mark my words, remember this post. Trump will remove America from NATO. Putin will get free reign on Europe.", 'created': '2024-11-10 22:25:50', 'submission_id': '1go5btm'}
{'comment': 'We got cheated.', 'created': '2024-11-10 21:13:49', 'submission_id': '1go5btm'}
{'comment': 'We are fucked.\n\nAnd with we, I mean the world.', 'created': '2024-11-11 00:07:54', 'submission_id': '1go5btm'}
{'comment': 'Latinos voted for the party that hates them. Dems didn’t turn out. As simple as that.', 'created': '2024-11-10 20:46:47', 'submission_id': '1go5btm'}
{'comment': 'we lost. we’ll get them next time', 'created': '2024-11-10 21:59:06', 'submission_id': '1go5btm'}
{'comment': 'The politics of fear, combined with apathy and anger over lies against the incumbent party (specifically the economy and the border). It’s easy to blame someone rather than look for facts and understand trends. The simple fact is, Dems lost because they never responded to the lies of the right.', 'created': '2024-11-10 22:26:48', 'submission_id': '1go5btm'}
{'comment': 'What happened is people didn’t truly\nListen to what Trump voters were actually voting for and against.', 'created': '2024-11-10 22:47:45', 'submission_id': '1go5btm'}
{'comment': 'outside of any cheating that gop may have figured out how to do in the last four years around voting, election fraud, false elector scheme etc.\n\nthe only plausible non criminal situation floating around now is that people abstained from voting because they didnt like Harris or Trump as options and just didnt vote, but thats like 30% of the democrats? the number sure seems high.', 'created': '2024-11-10 22:52:06', 'submission_id': '1go5btm'}
{'comment': 'Misinformation on TV used to be illegal. We need that law again so people at least can trust news stations.', 'created': '2024-11-10 23:10:01', 'submission_id': '1go5btm'}
{'comment': 'White man VS Black/Indian women. Enough said', 'created': '2024-11-11 00:47:48', 'submission_id': '1go5btm'}
{'comment': "I'm still trying to figure it out. We had a big drop from 2020. I really have no idea what went wrong.", 'created': '2024-11-11 01:04:01', 'submission_id': '1go5btm'}
{'comment': "Poor education and Russian propaganda, maybe with a dash of election fraud but hopefully we'll see..", 'created': '2024-11-11 01:17:02', 'submission_id': '1go5btm'}
{'comment': 'https://youtu.be/hPHH5trgC1w?si=AVxnQDc-Kz27t32j', 'created': '2024-11-11 03:11:09', 'submission_id': '1go5btm'}
{'comment': 'I hate sounding like a conspiracy theorist but the results from this election do not add up. Trump winning again has made me question a lot about what I thought about this country, but I can’t make any conclusions until we know for certain that it was the legitimate result. As of right now, I am not buying it. I only hope the democrats are brave enough to verify by hand recount the vote totals, at least in the battleground states. I am all for losing gracefully when the situation calls for it. Right now, with the stakes so high, we need to be certain.', 'created': '2024-11-11 03:35:11', 'submission_id': '1go5btm'}
{'comment': 'Republicans stole the election by lying about vote count. They had people in place and control over the process. And republicans know that democrats won’t fight over the election results.', 'created': '2024-11-11 09:40:46', 'submission_id': '1go5btm'}
{'comment': '[RESIST! 💪](https://youtu.be/2NTyyCwwDfY?si=yY4CjZdMEoPuGIGM&t=105)', 'created': '2024-11-11 11:39:04', 'submission_id': '1go5btm'}
{'comment': "Jon Stewart and ProfessorHeather Cox Richardson had a wonderful podcast on this topic last week. I\n\nI recommend that you listen to it.\n\nhttps://youtu.be/D7cKOaBdFWo?si=ZopWdBSOp7AgMPHw\n\nThis podcadt presents a historical perspective to explain \n\n1. how Trump is a symptom Of our country's brokenness, i.e. she described succinctly the two approaches to building the future\n\n2. how the Biden Admintration was taking a step away from the radical neoliberalism that has infected our politics since Reagan's embrace of the free markets that hurt the middle class so badly and began the concentration of wealt., \n\n3. it described the two Santa phenomenon. \n\n4. Professor Richardson described the last remaining unwritten check and balance. \n\n5. She spent some time describing what worked to get us out of this mess the last time the country fell for these kinds of lies. \n\nI found that it was helpful to get her calm approach to all of this.\n\nEdited to add a link for the lazy.", 'created': '2024-11-11 16:24:57', 'submission_id': '1go5btm'}
{'comment': 'You are not alone. MAGA has no one to blame for their actions. Keep your head up, build your community, live small, vote with your dollars and don’t spend money on stupid shit.', 'created': '2024-11-11 22:12:15', 'submission_id': '1go5btm'}
{'comment': 'The democrats failed to realize that close to 50% of people in the country can\'t handle an unexpected $400 expense. Those same people experienced great hardship due to inflation. Trump addressed the grievances of those citizens more effectively than Harris.\n\nDemocrat voters are generally better educated and more affluent than Republican voters, so suffered less due to inflation.\n\nThe moral of the story is that people vote with their wallets. The Democrats lost track of that simple point. Had the Democrats acknowledged the hardship and rather than toutung "Bidenomics" as a positive, things might have been different.\n\nI honestly thought Trump would be crushed by Harris simply because I could not conceive that Trump could have GAINED GROUND with voters after the insurrection and his antics and crimes. I was dead wrong.', 'created': '2024-11-12 13:44:00', 'submission_id': '1go5btm'}
{'comment': "Minority groups (blacks, Latinos, even women) thought it's better to serve a white blonde master than a woman of minority.", 'created': '2024-11-10 21:18:29', 'submission_id': '1go5btm'}
{'comment': 'Buckle up buttercup, it is going to be a wild ride from here in in!', 'created': '2024-11-10 23:48:56', 'submission_id': '1go5btm'}
{'comment': 'Watch this...\n\nhttps://youtu.be/sjwYQ4kIgEw?si=RCXPS7BQjgbMYdsg', 'created': '2024-11-10 23:25:24', 'submission_id': '1go5btm'}
{'comment': '$200 million behind the ad "Kamala is fighting for they/them, I\'m fighting for you" lol', 'created': '2024-11-10 23:26:01', 'submission_id': '1go5btm'}
{'comment': 'This makes a lot of sense to me: https://newrepublic.com/maz/post/188197/trump-media-information-landscape-fox', 'created': '2024-11-11 03:53:58', 'submission_id': '1go5btm'}
{'comment': 'The only thing that’s keeping me together is the Lord Jesus. \xa0I really want to believe that Americans aren’t ok with dying pregnant women rotting in sepsis for lower gas prices.', 'created': '2024-11-11 08:42:56', 'submission_id': '1go5btm'}
{'comment': 'America doesn’t want a WOC in charge. That’s it.', 'created': '2024-11-11 13:04:06', 'submission_id': '1go5btm'}
{'comment': 'The average iq of the United States is in the single digits', 'created': '2024-11-11 15:27:25', 'submission_id': '1go5btm'}
{'comment': '[removed]', 'created': '2024-11-10 19:10:24', 'submission_id': '1go5btm'}
{'comment': 'Well its like setting the clothes you are wearing on fire because they are itchy. Its could end bad but...who knows maybe it will turn out better than you think.', 'created': '2024-11-10 19:04:59', 'submission_id': '1go5btm'}
{'comment': 'The Bernie sanders progressive wing destroyed the party. It’s not a serious party talking about serious policies anymore. Dem leaders have to lie to get the progressive wing out and trump is a better liar.', 'created': '2024-11-10 22:18:39', 'submission_id': '1go5btm'}
{'comment': 'Republicans scored a touchdown after touchdown, and the crowd cheered! That’s basically what happened! The democrats will choose a new management, a new coach, and get new players for the next game. In the meantime we get to watch them haul the cup around and spray champagne everywhere!', 'created': '2024-11-11 00:09:42', 'submission_id': '1go5btm'}
{'comment': '[removed]', 'created': '2024-11-10 20:23:51', 'submission_id': '1go5btm'}
{'comment': 'People are blaming Biden for the defeat. I totally disagree with that. I blame Harris. She ran an absolute horrible campaign. She ran her whole campaign on Trump is this, Trump is that. She did not listen to the American people. \n\nEvery pole showed the people were most concerned about the economy and immigration. She said nothing on how she was going to fix either. And then she was asked on The View, Will you change anything that President Biden has done? Her reply, nothing I can think of. \n\nI’ll say this, if you think the name calling and bashing people are more important than explaining how issues are going to get fixed, expect JD Vance to be our next President.', 'created': '2024-11-10 21:11:55', 'submission_id': '1go5btm'}
{'comment': 'I’ll definitely check it out.', 'created': '2024-11-10 19:03:26', 'submission_id': '1go5btm'}
{'comment': "agreed but i do have fears about the filibuster, and the making it harder to vote thus manipulating elections, or out right stealing them, if a dem wins a house seat by 500 votes then in comes the MAGA state election board figuring out a way to toss out 501 votes, signatures dont match, voter ineligible, voter purges. I know this election was about Inflation and Interest rates but i fear we have lost touch with working class people, and the propaganda of wokism and the elitism stick more to us then racists and fascists stick to them. Minorities leaving the party also very painful as Democrats are made up of minorities. I know this election was about the Economy, but we didn't suffer a major defeat in 2022 so i thought it would have been less so. I know there are other factors, Harris had only 100 days to make her case, Trumps been running now near a decade. Biden was unpopular, many of the Covid responses also unpopular, combined with his performance in the debate might have turned people off the ticket totally, we can see this in the state and local elections where the losses wernt so bad", 'created': '2024-11-10 19:15:21', 'submission_id': '1go5btm'}
{'comment': "Let rural America burn, they keep dragging us down into the shit over and over again. It's time they get what they actually voted for. I hope trump's policies royally fuck them over.", 'created': '2024-11-10 18:55:50', 'submission_id': '1go5btm'}
{'comment': 'Funny to presume we’ll still be able to hold legit elections. Look around- he owns all branches, SCOTUS and most federal judges.\n\nThe Constitution is now toilet paper. This is a post democracy America.', 'created': '2024-11-10 18:44:33', 'submission_id': '1go5btm'}
{'comment': 'Countries never survive with fair-weather citizens.', 'created': '2024-11-10 19:13:20', 'submission_id': '1go5btm'}
{'comment': 'Thanks for your response', 'created': '2024-11-10 18:27:04', 'submission_id': '1go5btm'}
{'comment': 'come back with propaganda', 'created': '2024-11-10 22:57:44', 'submission_id': '1go5btm'}
{'comment': 'I couldn’t agree with you more. I am genuinely terrified for the next 4 years and beyond. Statistically speaking being a white man I’m in the safest group. Still, I feel he’s going to drum up so much hate that civil war is almost inevitable.', 'created': '2024-11-10 18:35:01', 'submission_id': '1go5btm'}
{'comment': "This is exactly how I feel. We know what to expect from the Republicans. They are the same people who voted for him in 2020 as they did in this election. The folks on the left lost the plot and I'm way more disappointed in them then I am with the Republicans. I personally would love to knock some sense into them.", 'created': '2024-11-10 20:29:08', 'submission_id': '1go5btm'}
{'comment': "While I agree with the sentiment, doing that leaves a lot up to good will and chance. For instance, political prosecution would be a genuine tactic, and while it usually wouldn't work, that doesn't mean it can't.", 'created': '2024-11-10 18:58:01', 'submission_id': '1go5btm'}
{'comment': 'Holy shit. THIS MORE THAN ANYTHING ELSE!!', 'created': '2024-11-10 18:47:34', 'submission_id': '1go5btm'}
{'comment': 'Agreed. But there is already one where you can’t run for office after starting an insurrection, and the Supreme Court allowed him to anyway.', 'created': '2024-11-10 19:40:16', 'submission_id': '1go5btm'}
{'comment': 'To think that there will be another election, good luck with that. He now has a VP that will never certify an outcome where they lose power.', 'created': '2024-11-10 21:35:09', 'submission_id': '1go5btm'}
{'comment': 'But it’s not even really related to this process, republicans would just use this as a weapon too. Top priority for democrats is figuring out a way to make people’s lives better, faster.\xa0', 'created': '2024-11-10 22:23:24', 'submission_id': '1go5btm'}
{'comment': 'That has no chance. That is a constitutional amendment. Constitutional amendments would need too many republicans trifecta states. Not going to happen. Democrats throw competent people overboard for less than felony convictions and republicans are going to run a bunch of convicted felons who get pardons in January.', 'created': '2024-11-10 19:07:17', 'submission_id': '1go5btm'}
{'comment': 'Sadly that would probably require a constitutional amendment', 'created': '2024-11-10 23:37:23', 'submission_id': '1go5btm'}
{'comment': 'and also big ass tax cuts for middle class, and tax increases for millionaires', 'created': '2024-11-10 23:26:44', 'submission_id': '1go5btm'}
{'comment': 'There aren’t going to be elections anymore. Not free and fair ones anyway.', 'created': '2024-11-11 03:02:51', 'submission_id': '1go5btm'}
{'comment': 'We have way too many Americans that have a very low education level and a lack of common sense. And he wants to dismantle the department of education. This will lead to the downfall of American civilization.', 'created': '2024-11-10 19:06:03', 'submission_id': '1go5btm'}
{'comment': 'I have a good friend that has a decent education and always seemed to have a good bit of common sense but she got sucked into that Fox News bullshit. \n\nCome to think of it. She watches soap operas and she even records them so she won’t miss an episode. Maybe we need to look into outlawing that because it’s a gateway drug to Fox News.\n\nI haven’t spoke to her since the election and I just don’t think I can deal with being her friend for voting for Trump for no other reason than because she’s a republican.', 'created': '2024-11-10 19:49:52', 'submission_id': '1go5btm'}
{'comment': "I totally think it comes down to poor education. The world is getting more complex year by year and we haven't kept up with it. Critical thinking, citing sources, knowing about ethics in journalism. And tbh I blame the democrats and republicans for this. It should be a top 3 priority in policy and for some reason it's not taken seriously. And now with the R in power it's only going to get worse because they know and exploit this.", 'created': '2024-11-11 08:22:40', 'submission_id': '1go5btm'}
{'comment': 'the Bernie sanders progressives have destroyed the Democratic Party. It’s not a serious party talking about serious policies anymore. Trump is just a better liar then the Dem leaders now but if dems don’t lie the progressive wing stays home.', 'created': '2024-11-10 22:16:41', 'submission_id': '1go5btm'}
{'comment': 'For the first time in my life I actually feel ashamed to be an American. And that’s a very sad state of affairs. So many Americans are just fucking stupid bigots. It’s literally Idiocracy. \n\nhttps://youtu.be/ig446isvXlI?si=LnZ8ueGWf_rhvpbK', 'created': '2024-11-10 19:36:59', 'submission_id': '1go5btm'}
{'comment': 'You make a good point. Thank you for your contribution.', 'created': '2024-11-11 01:49:24', 'submission_id': '1go5btm'}
{'comment': '>Harris was interesting, and she did manage to get the "shiny object" thing going with the debate and convention, but those same people stopped paying attention the moment she started talking about the boring "policy stuff".\n\nBefore that, they all complained that she never talked policy. Nothing was ever good enough. \n\nI really wish that the dnc encouraged Kamala to just be herself. I\'ve watched to many fancams and she seems like a fun person. They should have brought back her cooking videos long before her nomination. Her viral moment with her sister. But sadly because she is a woman, people probably would have criticized that too.', 'created': '2024-11-10 19:15:15', 'submission_id': '1go5btm'}
{'comment': 'That’s a very good and interesting take on it. Thank us for your response. Maybe the democratic side needs to be run more like a carnival side show next time to appeal to what America apparently wants.', 'created': '2024-11-10 18:44:10', 'submission_id': '1go5btm'}
{'comment': 'You’ve absolutely nailed it. Harris against any generic republican like Jeb could have won, but it’s hard to say. Turnout would have dropped similarly from 2020 for *both* parties in that case.\n\nThe real nail in her coffin is that we just came out of a period of inflation that hasn’t been seen in most voters’ lifetimes. Yes we hit a soft landing, but not soon enough. If Covid happened a year earlier things could well have turned out different.', 'created': '2024-11-10 19:26:49', 'submission_id': '1go5btm'}
{'comment': 'I’ve stomached more of his talks at rallies than I care to admit and I don’t see a shiny object. Just him blabbering on about absolutely nothing for a couple hours.', 'created': '2024-11-10 19:51:19', 'submission_id': '1go5btm'}
{'comment': 'If we could somehow prove he cheated to win I think my heart could literally explode from joy. Not holding my breath, but DAMN, the adrenaline surge from that would be WILD.', 'created': '2024-11-10 18:45:46', 'submission_id': '1go5btm'}
{'comment': "He did say he was going to win no matter what. That just watch. they had a plan. That he couldn't lose. I'm one of the people who dropped off a mail ballot. And it was not counted. I have not been able to get through to a human being. Because I'm guessing here in Florida. And many other places. They are overrun with this exact problem. \n\nI have also heard from mail carriers. That there are piles of ballots that have never made it to their destination. Because they are overrun. Not enough workers....\n\nWhat happened to our votes. Your guess is as good as mine.", 'created': '2024-11-10 18:55:39', 'submission_id': '1go5btm'}
{'comment': "I don't think that's true.\n\nCalifornia had 17M votes in 2020 -- they are still currently at 66% counting this year and only \\~11M total counted, so there could still be big amount coming in there and a few other places.", 'created': '2024-11-10 19:33:13', 'submission_id': '1go5btm'}
{'comment': 'Yes they did. And until Tuesday I never realized how engrained that mindset had imbedded itself into America culture. And the realization has my head spinning.', 'created': '2024-11-10 19:15:18', 'submission_id': '1go5btm'}
{'comment': 'Thank you for your very thoughtful and thorough response. I know we have a LOT of revamping and housecleaning to do before the next go around. I just hope we have a country left by then.', 'created': '2024-11-10 19:27:27', 'submission_id': '1go5btm'}
{'comment': 'We gotta keep moving forward. It’s hard to see the way right now though.', 'created': '2024-11-11 02:56:22', 'submission_id': '1go5btm'}
{'comment': 'And they think we are. No matter how well factually supported what i say is, I am either a liar or a snowflake. In the rare event I introduced some doubt to my coworker, he would go home, turn on fox and come back the next day repeating literally word for word what we had thought through critically the day before like some kind of groundhog day nightmare.', 'created': '2024-11-11 02:28:46', 'submission_id': '1go5btm'}
{'comment': 'Good analysis. Thanks for your insight.', 'created': '2024-11-11 02:02:15', 'submission_id': '1go5btm'}
{'comment': 'Shock, disbelief, pure horror, yep. Me too', 'created': '2024-11-10 18:38:56', 'submission_id': '1go5btm'}
{'comment': 'I see it. And I agree', 'created': '2024-11-11 01:57:58', 'submission_id': '1go5btm'}
{'comment': 'Finally, a real answer and not “dumb people, propaganda”. Over half of the country has spoken and doesn’t like the open boarder and “woke” politics. Dems can listen or they can say “the other side” is stupid, stick their fingers in their ears, and lose again.', 'created': '2024-11-11 17:14:41', 'submission_id': '1go5btm'}
{'comment': 'This has never been about the orange one and “his” policies. This is about the heritage foundation and their foreign sponsors. They own literally everything now - house, senate, POTUS, SCOTUS, as potentially the military. They have smart and strategic people actually running the ship, Shitler is just the face. \n\nHe doesn’t have to do *anything* except keep stirring up trouble and when the time is right lay down and make room for JD. \n\nI just don’t see how we’re ok after this.', 'created': '2024-11-10 20:05:14', 'submission_id': '1go5btm'}
{'comment': 'That and bending over for Putin and Kim jong Un and letting them go to town on their new puppet.', 'created': '2024-11-10 19:41:14', 'submission_id': '1go5btm'}
{'comment': 'I hope that all the Hispanics that voted for Trump because of the economy gets deported because they believed him when he said he would fix the economy and were too stupid to believe he didn’t mean that he would deport them and he was just saying that to get votes. Go fucking figure.', 'created': '2024-11-10 19:45:16', 'submission_id': '1go5btm'}
{'comment': 'I very much agree', 'created': '2024-11-10 19:39:19', 'submission_id': '1go5btm'}
{'comment': 'Thank you for your comment.', 'created': '2024-11-11 01:48:18', 'submission_id': '1go5btm'}
{'comment': 'So it’s a world wide uprising of crazy. That makes me feel just all warm and fuzzy inside. /jk', 'created': '2024-11-10 20:07:01', 'submission_id': '1go5btm'}
{'comment': 'In the UK, the right wing party lost in a landslide to the left wing.\n\nIn France the centrists lost to the left wing and the right wing parties.\n\nIn Amsterdam the right wing party gained votes.\n\nWe were actually one of the countries where the incumbent lost the least amount of votes.\n\nAs a Democrat strategist said before the election- if it had been a moderate/Romney/McCain Republican they would have won by 10%', 'created': '2024-11-10 20:08:42', 'submission_id': '1go5btm'}
{'comment': 'Mistakes were clearly made and you make a valid point. Thank you for your input.', 'created': '2024-11-11 01:57:11', 'submission_id': '1go5btm'}
{'comment': 'You are definitely not alone. I’ve been severely depressed since Tuesday night and in just utter shock and disgust. Wednesday morning, a group of Cuban women I work with (who JUST became citizens) were cheering that Trump won. It was then I realized how unbelievably stupid the general public was. They just left a dictator and now voted for someone that wants to be one. Make it make sense. There’s really nothing that’s made me feel better. I’m a woman living in Florida. I don’t see any silver linings at the moment. All I can say is the Democratic Party better be learning from all of this and they better come in hot in 2026 ready to fight and prep for a mind blowing candidate for 2028. Our only hope for now is that what democrats do hold chairs are going to push back hard. Fingers crossed.', 'created': '2024-11-11 02:14:56', 'submission_id': '1go5btm'}
{'comment': 'Very well said, and you’re right; being a decent human being is now viewed as being weak. It’s pathetic that we are surrounded by such hate. While this has been building for a long time, it’s all Trump’s fault for being the mouthpiece for the fourth reich. Anyone who can’t see the similarities to Hitler and the 1930’s right now, needs their eyes and head examined. I mean ffs, MSG was damn near a straight copy over from when the actual Nazi’s used it. And yet we STILL chose that.', 'created': '2024-11-12 01:54:19', 'submission_id': '1go5btm'}
{'comment': 'This is heartbreaking. 😕', 'created': '2024-11-10 21:52:46', 'submission_id': '1go5btm'}
{'comment': 'I know. And it literally hurts my soul.', 'created': '2024-11-11 02:02:39', 'submission_id': '1go5btm'}
{'comment': 'It makes me sad to think people would rather have a rapist, traitor and complete psychopath over a qualified woman of color.', 'created': '2024-11-10 19:55:55', 'submission_id': '1go5btm'}
{'comment': 'You summed it up.', 'created': '2024-11-11 02:11:14', 'submission_id': '1go5btm'}
{'comment': 'I have hope that it hasn’t gotten there yet. Though I will admit I’ve had some fleeting thoughts along those lines. So, I get it.', 'created': '2024-11-11 03:28:16', 'submission_id': '1go5btm'}
{'comment': 'I’m with you. I don’t want to live through such times, but America chose, and now America is about to reap what we’ve sown. \n\nMy only hope is I can pull my household through it alive.', 'created': '2024-11-11 08:44:55', 'submission_id': '1go5btm'}
{'comment': 'I agree that had a lot to do with it.', 'created': '2024-11-11 05:32:55', 'submission_id': '1go5btm'}
{'comment': 'As am I. They say the darkest hour is just before the dawn. Well.. I think that dark hour is upon us. May we all see the other side.', 'created': '2024-11-11 02:01:11', 'submission_id': '1go5btm'}
{'comment': 'Oh yes, NATO is screwed. Putin is going to bend Europe over as soon as Trump gets in.', 'created': '2024-11-11 16:18:19', 'submission_id': '1go5btm'}
{'comment': 'Sad but true.', 'created': '2024-11-11 00:58:19', 'submission_id': '1go5btm'}
{'comment': 'Seriously, what in the actual fuck?', 'created': '2024-11-11 03:26:34', 'submission_id': '1go5btm'}
{'comment': 'I would like a recount as well.', 'created': '2024-11-11 05:38:56', 'submission_id': '1go5btm'}
{'comment': 'I’ve actually tossed this idea around myself. They had project 2025 sewn up and people in place ahead of time to literally steal the election from us. I wish to god there was some proof of fraud.', 'created': '2024-11-11 10:09:23', 'submission_id': '1go5btm'}
{'comment': 'I’ll have to check that out.', 'created': '2024-11-11 16:26:33', 'submission_id': '1go5btm'}
{'comment': 'Thanks', 'created': '2024-11-12 01:43:09', 'submission_id': '1go5btm'}
{'comment': 'I was also dead wrong. Didn’t see this coming.', 'created': '2024-11-12 14:55:00', 'submission_id': '1go5btm'}
{'comment': 'Well now I wouldn’t go that far. However after these results I’d say it’s fair that the numbers need reevaluated.', 'created': '2024-11-11 15:32:21', 'submission_id': '1go5btm'}
{'comment': 'Well we’re fucked now, so I guess we’ll have years to reflect on it.', 'created': '2024-11-10 19:23:19', 'submission_id': '1go5btm'}
{'comment': 'Anything is possible. I’m just not laying good odds on anything good coming out of this.', 'created': '2024-11-10 19:11:04', 'submission_id': '1go5btm'}
{'comment': "It's a 4x6 126-page booklet that can be read through in < an hour.", 'created': '2024-11-10 20:21:41', 'submission_id': '1go5btm'}
{'comment': 'Unfortunately you do make some valid points, thanks for your contribution.', 'created': '2024-11-10 19:44:36', 'submission_id': '1go5btm'}
{'comment': '1. The economy is in amazing shape but sentiment about the economy has been low because of inflation and Fox News/Facebook memes that have been spreading propaganda and misinformation.\n\n2. The higher interest rates are what helped bring inflation back under control (2.1% as of the last report, which is basically the target). We spent a decade living with historically low interest rates that weren’t sustainable and got too used to it.\n\n3. While prices have climbed, wages have also grown at a pace (on average) beyond inflation. This means that people are earning more even if the price tag on their eggs has increased.\n\nI bring this up because it seems that media outlets have been using the term “economic concerns” as a stand in for “people did not make an informed decision.” Most voters voted with their feelings instead of rational thinking.', 'created': '2024-11-10 22:30:57', 'submission_id': '1go5btm'}
{'comment': "It's not just rural America, that's the thing. They've systematically dismantled education everywhere and this is the result.", 'created': '2024-11-10 19:37:07', 'submission_id': '1go5btm'}
{'comment': 'It’s funny when we talk about government handouts, we never talk about the literal tens of billions of dollars that go into agricultural subsidies every year.\n\nI listen to the NYT podcast The Daily. During the Republican primary last year, they were in Iowa before the primary there. They talked to this farmer there. To back up a bit: China used to import tons of American raised and grown pork, corn and soy products. Well, after the Trump tariffs on China, they reciprocated and imposed large tariffs on American pork, corn and soy. American farmers, including the one in the NYT story, lost a lot of business and money. This guy was a big Trump supporter. Lost a ton of money due to Trump’s policies. However, the Trump administration instituted bailouts for American farmers affected by the Chinese tariffs.\n\nYou can’t make it up…the delusional support of policies that directly harm you, and the hypocrisy of the hand outs you received because of a stupid government policy you supported and which you failed to plan for.', 'created': '2024-11-10 22:53:35', 'submission_id': '1go5btm'}
{'comment': None, 'created': '2024-11-10 19:11:05', 'submission_id': '1go5btm'}
{'comment': 'I don\'t think "let them burn" is the right approach. Let them fall down, sure, but when they reach out for help, be first in line to give it to them. Democrats got trounced in part because we didn\'t listen to voters. If we don\'t start showing that we\'re listening, they\'ll stay right where they are in MAGA camp blaming yet another scapegoat for their problems, or they\'ll disengage entirely and let themselves be pushed around by any government, which is worse. We know we offer a better future for the country. If we sit back and let people suffer, though, they\'ll never know it, and we\'ll never win their vote.', 'created': '2024-11-11 04:52:18', 'submission_id': '1go5btm'}
{'comment': 'Envisioning a two state solution. But we would need a vast military to keep our resources protected when they crash and burn their side.', 'created': '2024-11-10 19:04:30', 'submission_id': '1go5btm'}
{'comment': 'Exactly! This term is gonna be the funniest 4 years, we got pushed off a building but hey at least they are falling with us lol', 'created': '2024-11-10 19:13:35', 'submission_id': '1go5btm'}
{'comment': 'This is exactly how I feel and why it’s gonna be a while before I step back into the ring. I’m so depressed rn.', 'created': '2024-11-10 22:12:58', 'submission_id': '1go5btm'}
{'comment': 'Serious question, how is this different from 2016 when they controlled all branches of government? They have one additional Supreme Court seat but still had a majority before, and while Trump appointed a lot of Judges, about a quarter of all active judgeships, Biden has appointed hundreds at this point, I think between Obama and Biden they appointed something like half. Also just for the record, there are still something like 20 House races yet to be called and control of the House has not been decided yet. Even if the House goes to the GOP it will be extremely narrow margins and they have already proven they cannot wrangle their membership.', 'created': '2024-11-10 23:21:54', 'submission_id': '1go5btm'}
{'comment': 'I see your point, but to me it should just be a no brainer that a felon can’t be President, much less vote for himself when all other felons cannot.', 'created': '2024-11-10 19:08:05', 'submission_id': '1go5btm'}
{'comment': 'i think the wording would need to be incredibly specific because not all felons are actually incapable of being president\n\nbut domestic terrorists should be. its a matter of wording the requirement in a way that would (try to) prevent political prosecution as a tactic. \n\nbut i think the fact that we havent done that means no one has found a way to make it work yet', 'created': '2024-11-11 16:37:14', 'submission_id': '1go5btm'}
{'comment': 'Thanks.', 'created': '2024-11-10 18:53:46', 'submission_id': '1go5btm'}
{'comment': 'SCOTUS needs all fired if that were possible.', 'created': '2024-11-10 19:56:53', 'submission_id': '1go5btm'}
{'comment': 'The first day Vance can legally take power and still run for two terms, he will be our forever POTUS.\xa0\n\nPeter Thiel’s been prepping for this for twenty years\xa0', 'created': '2024-11-10 22:11:39', 'submission_id': '1go5btm'}
{'comment': 'I am so terrified this is going to be true! 😕', 'created': '2024-11-10 21:41:22', 'submission_id': '1go5btm'}
{'comment': 'This makes me sad for America', 'created': '2024-11-10 19:09:35', 'submission_id': '1go5btm'}
{'comment': 'Yeah, I’m still pissed about Al Frankin', 'created': '2024-11-11 02:56:11', 'submission_id': '1go5btm'}
{'comment': 'I hope you’re wrong. I’m scared you’re right.', 'created': '2024-11-11 16:10:53', 'submission_id': '1go5btm'}
{'comment': 'The very popular World Series this year was on Fox and I saw that ridiculous trans ad. I’m sure it was on during football games, too.', 'created': '2024-11-11 16:58:31', 'submission_id': '1go5btm'}
{'comment': 'Rightttt. Its the slice of the party with popular policy positions that the working class desperately wants thats the problem, not the disappointing power hungry corporate shills that keep pushing the party further to the right….', 'created': '2024-11-10 22:23:27', 'submission_id': '1go5btm'}
{'comment': 'It’s funny, well no; more absurdly hilarious rewatching this clip. I laughed, I cried (for our nation), truly epic funny stuff. At least until you take a step back and realize we’re standing in the middle of it right now. Early stages mind you, but look closely… It’s there.', 'created': '2024-11-11 01:08:26', 'submission_id': '1go5btm'}
{'comment': "> Before that, they all complained that she never talked policy. Nothing was ever good enough. \n\nNothing Harris did was ever good enough. The general expectation is that Harris had to be perfect to literally everyone. She talked too much policy; she did not talk enough policy. She did not talk about the economy; she talked about the economy but it didn't resonate. She was not for the working class; she participated in one of the most pro-working class administrations. \n\nVoters (at large) will never accept or admit that their ideal caricature of their individually ideal candidate is a candidate someone else will not vote for, and will ultimately never compromise on that. Because accelerationists (even those who do not identify as such for whatever self-serving reason but behave and vote and speak in this manner) allow perfect to be the enemy of good, and letting it all burn down seems to be a tolerable position.", 'created': '2024-11-10 23:09:52', 'submission_id': '1go5btm'}
{'comment': '>Before that, they all complained that she never talked policy.\n\nI suspect that was the trap.', 'created': '2024-11-10 19:20:19', 'submission_id': '1go5btm'}
{'comment': '😥😥😥💔 sad but true', 'created': '2024-11-10 19:10:10', 'submission_id': '1go5btm'}
{'comment': 'I feel like we had a pretty bad economy back in the mid to late 80s maybe even early 90s. I still managed to feed my kids and do recreational things and Christmas gifts and birthday parties with no help from anybody else. I wasn’t able to put money into a 401(k), but when I got older and got a better job, I managed to be able to put a good bit of money aside.', 'created': '2024-11-10 20:00:32', 'submission_id': '1go5btm'}
{'comment': "That's one of the reasons you aren't a Trump supporter.", 'created': '2024-11-10 21:36:04', 'submission_id': '1go5btm'}
{'comment': 'I am not into that conspiracy shit, but that being said I wouldn’t trust those people as far as I could throw them so I think we should do some recounts too', 'created': '2024-11-10 19:53:29', 'submission_id': '1go5btm'}
{'comment': 'Well that is really disturbing and if correct really enrages me. And more or less tells me that he did steal the election.', 'created': '2024-11-10 19:02:55', 'submission_id': '1go5btm'}
{'comment': 'Still holding onto a sliver of hope we can hold onto the house.', 'created': '2024-11-10 19:46:34', 'submission_id': '1go5btm'}
{'comment': 'Same here Buddy! Same here! Even more so than understanding why Harris lost we need to understand why Trump won.', 'created': '2024-11-11 05:07:02', 'submission_id': '1go5btm'}
{'comment': 'I feel your pain', 'created': '2024-11-11 16:13:15', 'submission_id': '1go5btm'}
{'comment': 'THIS is also a very important point. It’s the background foundations that have really done this. Project 2025 was their baby. They’ve bought every level of government. I’m lost as to how we recover from this.', 'created': '2024-11-11 01:51:03', 'submission_id': '1go5btm'}
{'comment': 'Yeah it’s gonna be rough.', 'created': '2024-11-10 19:44:04', 'submission_id': '1go5btm'}
{'comment': 'I wouldn’t say uprising of crazy- but really not just this year, but since the 2008 crash and the rise of social media, then Covid, we’ve just seen a very sharp pushback against whatever is considered “establishment”. But really it’s been building since the 70s, since the end of Keynesian economics.\n\nPeople’s life’s aren’t worse off because of Biden, they’re worse because of inequality. \n\nBut very simple to say “my life sucks, people are doing better than me, it’s the government’s fault, I’m going to vote for the opposition.', 'created': '2024-11-10 21:57:05', 'submission_id': '1go5btm'}
{'comment': 'I’d even vote for a MODERATE republican. I voted Obama twice, but I’d give anything to get John McCain back over this shit show.', 'created': '2024-11-11 01:54:34', 'submission_id': '1go5btm'}
{'comment': 'Thank you for your contribution. I’m hoping the best for all of us, but you’re right, it’s hard to see any silver linings right now.', 'created': '2024-11-11 02:17:29', 'submission_id': '1go5btm'}
{'comment': 'They’ll give us whomever’s turn they decide it is. And then they’ll pair that person with some otherwise unlikable candidate that happens to check whatever boxes the presidential candidate does not.', 'created': '2024-11-11 03:46:02', 'submission_id': '1go5btm'}
{'comment': 'I don’t know how to do a video and a comment. It’s from the Daily Show making fun of the fact that no matter what Harris did people would complain about it. It’s the only thing that has made me laugh this past week.', 'created': '2024-11-11 03:39:32', 'submission_id': '1go5btm'}
{'comment': 'People have a good life and dont accept loosing it even a little. The reality is also we in Europe have a lower standard of living now compared to years ago. Prices of goods and rent rose. Jobs were not paid better if case you didnt have a strong union behind you or if you werent working for the government.\n\nAnd peopel are scared. They are scared everything will get even more expensive and they will loose their job.', 'created': '2024-11-10 19:15:13', 'submission_id': '1go5btm'}
{'comment': 'You and me both', 'created': '2024-11-10 19:48:10', 'submission_id': '1go5btm'}
{'comment': "1 - I don't understand how Democrats didn't correct the public about the eggs situation. The general public are CLEARLY fucking idiots based on who they voted for but you're right in saying that the Dems AND her campaign goofed up in their messaging. Fox 'Entertainment' and the media kept using eggs specifically as an example for high cost food items but NEVER has the media nor Kamala's campaign fact checked them back by correctly informing the public that the cost of eggs AND some dairy products like milk, are specifically higher in price due to the BIRD FLU epidemic, which results in higher demand, higher costs. It's both inflation + bird flu = outlandish prices for eggs. \n\n105,197,601 poultry have been affected as of 11/5/2024 \n\nChicken farmers have literally had to kill off thousands of their livestock and start all over with a new flock until the get infected again, spit, rinse, repeat. That puts a dent in egg production. \n\nSource:\n https://www.cdc.gov/bird-flu/situation-summary/index.html\n\n\n2 - I find it hilarious now that Trump has claimed victory that Elon, Trump and the rest of their ilk foamed at the mouth about how Biden caused what we all knew was going to be a temporary but painful burden on the economy with balancing out this recession but now these very same BITCH ASS BILLIONAIRES are telling everyone to buckle down and sacrifice even more, bracing for more tax cuts for the rich? \n\nHA!!!! What losers!\n\n3 - Let's not also forget, if you overlay which states haven't raised their minimum wages, it literally matches and aligns with the same fucking red states whose constituents are being fucked over by their party. The GOP and shit Republicans are literally keeping their citizens poor! \n\nAll Kamala and her campaign had to do was show Americans how Republicans are keeping their wages low on purpose and that raising their min wages to what would then match the state of inflation would help everyone feel less pain in their pockets. And she didn't even pledge on doing that. An easy win but it never made it into her campaign strategy.\n\n https://upload.wikimedia.org/wikipedia/commons/thumb/7/76/Map_of_US_minimum_wage_by_state.svg/800px-Map_of_US_minimum_wage_by_state.svg.png", 'created': '2024-11-11 00:20:09', 'submission_id': '1go5btm'}
{'comment': 'Be careful what you wished for.', 'created': '2024-11-10 19:16:33', 'submission_id': '1go5btm'}
{'comment': 'You aren’t alone.', 'created': '2024-11-10 22:58:19', 'submission_id': '1go5btm'}
{'comment': 'If all countries had this rule, Nelson Mandela would never have become president. I know it sticks this time, but I don’t think they should make a rule. That rule would be used by bad actors to silence their political enemies. Just a thought.', 'created': '2024-11-11 01:24:13', 'submission_id': '1go5btm'}
{'comment': 'I would much rather see a no violent crimes rule than a no felonies rule. Or a no hate crimes rule.\n\nI would 100% get behind a law saying that no person may run for president that has been convicted of a hate crime or a violent crime. \n\nBut, as others have pointed out, I cannot get behind a law stating that no person may run for president that has been convicted of a felony. It would be way too easy for people to keep their opponents from running against them if that were the case.', 'created': '2024-11-11 02:17:52', 'submission_id': '1go5btm'}
{'comment': 'Hypocrisy at its finest.', 'created': '2024-11-10 19:58:35', 'submission_id': '1go5btm'}
{'comment': 'They have the White House, the Senate and the House. It’s silly to think they’re not going to push legislation through using their majority. We should be concerned. 😟', 'created': '2024-11-10 22:11:50', 'submission_id': '1go5btm'}
{'comment': "Amendments have been few and far between except for tight windows. There really have only been 3 times that we've added amendments. After ratification (1-12), Civil War (13-15), and Progressive Era (17-19). Everything else is 1 at a time. The process was designed to be hard. The fact that we have 2 parties is sad. I firmly believe that we'd have a better government if we had proportional representation rather than winner take all.", 'created': '2024-11-10 22:35:48', 'submission_id': '1go5btm'}
{'comment': 'Those “corporate shills” are the ones winning elections and actually passing policy to help the American people. But Bernie has brainwashed a big portion of the party to have them think it’s never enough. That the average American is living a terrible life, not because of their own choices but because of the government. \n\nWorking class people have moved to the right. Immigrants have moved to the right. Because they know the American dream isn’t dead. They actually appreciate what this country has to offer.', 'created': '2024-11-10 22:40:50', 'submission_id': '1go5btm'}
{'comment': "202 to 213 -- it's not looking good, but we'll just have to wait and see.", 'created': '2024-11-10 20:10:59', 'submission_id': '1go5btm'}
{'comment': 'Unfortunately this is the exactly mentality that too many people have.', 'created': '2024-11-11 01:52:45', 'submission_id': '1go5btm'}
{'comment': 'I’m worried for the entirety of the planet at this moment in time. I feel like we’re all screwed.', 'created': '2024-11-10 19:16:42', 'submission_id': '1go5btm'}
{'comment': 'I mean, almost every economist has been basically shitting their pants, amazed that J. Powell and the Biden Administration were able to pull off a successful “soft landing” and all people can talk about is the price of a happy meal. Plus, all I have heard for the past two years is that “consumer spending remains high despite price increases” which tells me that the majority of voters prefer to play out their victim fantasies than to be thankful for what they have.', 'created': '2024-11-11 03:48:30', 'submission_id': '1go5btm'}
{'comment': 'You also make a good point about how even the most well intentioned law can be twisted and warped into a weapon to be used by those that care nothing for the rule of law.', 'created': '2024-11-11 01:41:49', 'submission_id': '1go5btm'}
{'comment': "At one point during the election a Trump surrogate was on TV complaining that Kamala Harris wanted to allow convicted felons to vote. You can't make this shit up.", 'created': '2024-11-11 00:24:20', 'submission_id': '1go5btm'}
{'comment': "Now 203 to 213 (Greg Stanton wins in AZ-4).\n\nBut yes, I'm not overly optimistic.", 'created': '2024-11-10 22:58:23', 'submission_id': '1go5btm'}
{'comment': 'Well there never have been this high level of Ai, globalization and demographic change ever been before. Iam not scared in general about changes but Iam scared how the people react and decide to vote extremist people.\n\nCertainly very scary what North Korea and Russia are doing in Ukraine. NATO isnt ready to fight them alone yet without the US. We would have to do such big budget cuts to even partly compensate the military expertise and economic strength that the US has that it would be a support program for every european populist party. We are already having a lot of political parties who want to stop support for Ukraine to save money. This will be wild 2 years. After these 2 years Im looking forward to the Democrats gaining political power back in the house.', 'created': '2024-11-10 19:52:34', 'submission_id': '1go5btm'}
{'comment': 'I honestly think today\'s Americans are weak, due to the fact that they\'re so selfish and entitled during these ups and downs. I\'ve literally heard nothing but "God gives us challenges, seasons to grow and learn" but ALL of that biblical shit gets thrown out the fucking window when people are complaining about inflation bothering them. Seriously? what about what Noah had to go through, ya know... with the 40 days and 40 nights of flooding? Yet we can\'t bother as a country to go through something far less painful and agonizing? How about a little patience to weather the storm. It\'s not even like anyone has to give up their first born child to stay alive. \n\nIt\'s just a complaint but on average, that most certainly doesn\'t stop these people from eating at McDonald\'s or ordering out using DoorDash or UberEats every fucking day. The inflated pricing stings but not bad enough to cause everyone to go bankrupt. It\'s called sacrifice until we get out of the storm, something that all these ass hat Christians have forgotten. \n\nEveryone feels as though they\'ve been wronged. No. It\'s part of life. Stop complaining for the sake of complaining. Life doesn\'t owe anyone shit. No one is guaranteed a life tomorrow and neither is someone else responsible for how you spend your money. There\'s plenty of food items under a buck to get by with.', 'created': '2024-11-11 03:55:18', 'submission_id': '1go5btm'}
{'comment': 'Exactly. They accomplished the impossible and got the soft landing. Now Trump is going to crash the economy and then whine for the next 4 years that democrats gave him a failing economy. \n\nWe fixed this mess. NOT HIM!!! This point infuriates me being very involved in the stock market.', 'created': '2024-11-11 05:45:01', 'submission_id': '1go5btm'}
{'comment': 'Trumpsters, the undisputed masters of projection.', 'created': '2024-11-11 00:55:41', 'submission_id': '1go5btm'}
{'comment': 'I pray you are correct', 'created': '2024-11-10 19:53:49', 'submission_id': '1go5btm'}
{'comment': 'For the record, though, the stock market is not the economy.\n\nEdit: grammar', 'created': '2024-11-11 12:22:20', 'submission_id': '1go5btm'}
{'comment': 'No, but there are correlations.', 'created': '2024-11-11 12:30:11', 'submission_id': '1go5btm'}
{'comment': 'I’ve heard it explained like this:\n\nPicture a person walking a dog along a path in the park. The person represents the economy; takes a generally consistent path and does not easily change direction. The dog is similar to the stock market in this instance. It is all over the place bouncing from one high to another low and occasionally stopping to fixate on a big nothingburger.', 'created': '2024-11-11 20:21:57', 'submission_id': '1go5btm'}
{'comment': 'That’s a pretty accurate description. But whether you’re talking the stock market or the economy in general, both will be screwed by mid next year from Trump’s new tariffs, which he himself is too feeble minded to even understand how they will really affect everything. But hey, who needs facts right?', 'created': '2024-11-12 02:02:16', 'submission_id': '1go5btm'}
{'comment': 'Free firewall workaround:\n\nhttps://archive.is/ZdJc2', 'created': '2024-11-10 17:10:06', 'submission_id': '1go41iu'}
{'comment': 'I plan on having a much leaner Christmas this year and for sure after Trump is sworn in will do all I can to curtail my spending to help tank consumer spending under “his” economy. That includes travel, too. He’s not going to coast on Biden’s economy like he did with Obama’s on my watch.', 'created': '2024-11-10 23:29:59', 'submission_id': '1go41iu'}
{'comment': "Trump will demand that we worship him, like Kim Jong Un does. Kim guarantees worship with public executions, and he starves and tortures at least 10,000 of his own people on any given day! It works like a charm! John Roberts made Trump a dictator, so that's gonna happen to US!!!! Remember, when they come for you, **it's better to be shot than tortured.** \n\n“He’s the head of a country and I mean he is the strong head,” Trump said to Fox. “Don’t let anyone think anything different. He speaks and his people sit up at attention. ***I want my people to do the same***.”\n\nhttps://preview.redd.it/cwb781ogl40e1.png?width=1008&format=png&auto=webp&s=1ea13fddae91623db8d3fb434a3a2927626fd617", 'created': '2024-11-10 20:31:41', 'submission_id': '1go41iu'}
{'comment': 'My ongoing working theory is that right wing politics is basically a criminal organisation. You will always find evidence of crime.', 'created': '2024-11-11 10:34:03', 'submission_id': '1go41iu'}
{'comment': 'Ironic that there is a link posted in this thread that circumvents the paywall', 'created': '2024-11-10 22:05:08', 'submission_id': '1go41iu'}
{'comment': 'Well since cheating the system is in fashion, what can we do to cheat the system?', 'created': '2024-11-11 00:48:44', 'submission_id': '1go41iu'}
{'comment': '[removed]', 'created': '2024-11-11 04:47:00', 'submission_id': '1go41iu'}
{'comment': 'Soon to be a podcast, book, drink coaster, etc.', 'created': '2024-11-10 17:36:06', 'submission_id': '1go41iu'}
{'comment': 'FYI, the Reddit administrators have shadowbanned your account. To learn how you can lift that, visit this subreddit: r/shadowbanned.', 'created': '2024-11-10 23:29:03', 'submission_id': '1go41iu'}
{'comment': 'The Key point explored in detail (who, what, when, where, why, how)\n\n> **It wasn’t the economy. It wasn’t inflation, or anything else. It was how people perceive those things, which points to one overpowering answer.**', 'created': '2024-11-10 16:50:57', 'submission_id': '1go3k7j'}
{'comment': 'Because it\'s not one thing. People voted for Trump \n\n* to lower prices with tariffs, which is just batshit insane\n* to stop gender affirming care for children at schools, which idk what to say\n* to stop illegal immigrants from voting, which is already impossible and illegal\n* to lower taxes, while ignoring the entire deficit \n* because it\'s not TIME(?#@\\*#?) for a woman to be president, her laugh, no primaries\n* he\'s not the incumbent\n* he\'s not woke\n\nThey voted for Trump on "policy" and and to get back Trump\'s prices. While we were all getting distracted by personal attacks and gaffes from Trump. \n\nAmerica is badly educated and leans politically more to Trump than Woke Harris/Tim. And if all minorities voted against Trump, and stuck together. This wouldn\'t be an issue. But Trump can throw an entire group under the bus, who will then vote for Trump because he throws another group they hate also under the bus.', 'created': '2024-11-10 17:37:33', 'submission_id': '1go3k7j'}
{'comment': 'It’s also the degradation of values. Remember how people judged Clinton for getting a blowjob while in office not from his wife? Pepperidge farm remembers. How far we’ve fallen.', 'created': '2024-11-10 18:42:07', 'submission_id': '1go3k7j'}
{'comment': ' \nAs was said below:\n\n>people are stupid.\n\nI have been in a constant fight with all of my MAGA family members, and they are coming out of the woodwork on this. \n\n"You think you are so smart, but maybe you just haven\'t done any investigating into anything. You don\'t know how bad people have it right now and Trump will fix it! All these immigrants, stealing benefits, and committing crimes! They need to go! You are crossing a line telling us we don\'t know what we are talking about!"\n\nI mean, like, they were getting ready to get physical about it because they think they are correct.\n\nYou cannot fix willful and malicious ignorance, you can only hope to educate and they do not want to be educated.\n\nThey don\'t want to know that we are still under Trump\'s tax plan and that the House of Representatives sets the budget. The President doesn\'t control the cost of groceries, we are a free-market economy, not a communist regime. We are more energy independent today than we have been in the entire history of this nation.\n\nThey do not want to listen, read, or be educated. They want to be ignorant and revel in their racism, and we are going to have to let them for the next 2 years at least, but 4 years under Trump.\n\nBelieving anything else, for them, means they have to admit they were duped and gullible and people, as a whole, do not like to admit those things. We all like to think we could spot a scam a mile away, but those guys in India, China, and Africa are still making money by the billions from these same people falling for their scams every day.\n\nI hope in 2026 we have a huge turnout for Democrats in the mid-terms. That is the only thing that will save this country at this point.', 'created': '2024-11-10 18:01:22', 'submission_id': '1go3k7j'}
{'comment': 'He lied, lied, lied and right wing media was the bullhorn for his lies. Simple as that. No reason to break down the whys of Harris losing. She did incredibly well against the lying. Lying and apathy and ignorance came together in a perfect storm.', 'created': '2024-11-10 19:05:04', 'submission_id': '1go3k7j'}
{'comment': 'republicans waged a misinformation war on reality and won. \n\nThat isn’t the the fault of democrats or those who did not vote. \n\nAmericans trusted republicans to not elect the dictator. \n\nrepublicans elected a dictator. \n\nrepublicans should never be trusted again.', 'created': '2024-11-10 18:15:14', 'submission_id': '1go3k7j'}
{'comment': 'I agree very much with this article. Fox even dropped fair and balanced as their tag line yrs ago. They are outright propaganda and are proud of it. The left leaning media has moved towards the right a lot. Any legitimate news station is labeled Fake News. Next year we will be watching straight up Russian state TV.', 'created': '2024-11-10 17:54:21', 'submission_id': '1go3k7j'}
{'comment': 'We used Starlink to help process votes?', 'created': '2024-11-10 18:37:58', 'submission_id': '1go3k7j'}
{'comment': '“This is the year in which it became obvious that the right-wing media has more power than the mainstream media. It’s not just that it’s bigger. It’s that it speaks with one voice, and that voice says Democrats and liberals are treasonous elitists who hate you, and Republicans and conservatives love God and country and are your last line of defense against your son coming home from school your daughter. And that is why Donald Trump won.”\n\nYes.', 'created': '2024-11-10 17:47:13', 'submission_id': '1go3k7j'}
{'comment': 'Copied. This has been me since Wednesday morning..\n\n“I feel differently about you guys today. \n\nYou elected a racist, homophobic, sex offender to the highest office in the land. \n\nYou decided that you know what’s right for a woman’s body better than she does. \n\nYou voted to dismantle education in our country. \n\nYou voted against science and medicine. \n\nYou voted for violence and hate. \n\nYou’re comfortable sitting at the table with white supremacists. \n\nYou voted for tariffs that we are going to pay for. \n\nYou saw January 6th as a Day of Love.\n\nYou chose an underqualified felon over an overly qualified woman. \n\nSay what you want about policies, you chose wrong over right, and you know it.\n\nSo, I feel differently about you today.…”', 'created': '2024-11-10 18:42:59', 'submission_id': '1go3k7j'}
{'comment': 'Trump didn’t win because of his policies and rhetoric nor did Kamala because of her policies, nor was it as simple as perceived inflation. Trump won because Americans are too stupid and intellectually lazy to participate in a democracy.\n\nBut that, however, is itself an intellectually lazy statement. The harsh reality is, America was doomed to fail. This was inevitable.\n\nTrump won and Kamala lost because the Union, following its defeat over the Confederacy, refused to fully occupy the South and rebuild and fully integrate the South into the USA, and, in said process, undo all of the concessions which were made to sign the Declaration of Independence and the U.S. Constitution. Instead, the Union left the defeated Confederacy to its own devices. Slavery because Jim Crowe. Pro-slavery groups became adversaries of the Civil Rights Movement, and later became the authors of the GOP’s Southern Strategy, which is now reborn as Project 2025.', 'created': '2024-11-10 17:06:29', 'submission_id': '1go3k7j'}
{'comment': 'The red states don’t keep up with the blue states and it’s getting really bad. When they say “elites” they mean just regular office managers and deans of colleges. The jobs that the blue states have are different than what the red states have. I watched a stellar program via CNN called The Divided States of America and they go over the rage the red states have for the blue states. It was eye opening.', 'created': '2024-11-10 19:05:54', 'submission_id': '1go3k7j'}
{'comment': "Because corporate media is telling us conflicting reasons why we lost and we're still listening to it.", 'created': '2024-11-10 17:24:21', 'submission_id': '1go3k7j'}
{'comment': "Trump is like a school bully. The Dems are like good students who believe in student government. They'll report the bully and expect the system to work.\n\nYou need to defeat the bully.", 'created': '2024-11-10 17:55:16', 'submission_id': '1go3k7j'}
{'comment': "All these comments from people who didn't read the article because if they did they wouldn't have left the same old boring comments.", 'created': '2024-11-10 19:02:06', 'submission_id': '1go3k7j'}
{'comment': 'We’re a nation of misogynists and stupid racists with no morals who believe misinformation?', 'created': '2024-11-10 22:18:36', 'submission_id': '1go3k7j'}
{'comment': '2 reasons. Russian propaganda and misinformation. And cruelty. \n\n"I had to pay more for eggs and gas. Even though I still had enough money to donate to Trump and cover my yard and car in Trump signs I\'m too broke to vote for a democrat. Who cares if my daughters lose their rights to healthcare. Illegal immigrants are here so" \n\nCruelty and selfishness', 'created': '2024-11-11 00:58:57', 'submission_id': '1go3k7j'}
{'comment': 'Obama was our last two term candidate. Economic issues often take two terms for policies to take place. I fear the future is us bouncing back and forth from one government to the next as people look for immediate fixes.', 'created': '2024-11-10 18:35:49', 'submission_id': '1go3k7j'}
{'comment': 'It wasn\'t the outlet. People embraced the message that aligned to their beliefs about themselves.. Some bought into the message that they, and their way of life, are in danger. No message, however truthful, could compete with that. Fear is a great motivator. Hope, kindness and unity couldn\'t overcome their belief in themselves as forgotten victims. Any negative experience they attributed to the current administration. They\'re unable to acknowledge or credit anything positive to the current administration. Even if nothing changes, they\'ll see it as positive and credit the incoming administration who they were told "can fix it."', 'created': '2024-11-10 18:01:34', 'submission_id': '1go3k7j'}
{'comment': '25 year lifelong Democrat never once voted for a republican, anything - born raised “Sunbelt” even now watching AZ…\n\n\n*1990s TX* : Anne Richards loosing TX to Republicans — ever since… this era, the Karl Rove politics, shifts in religion and demographics that changed TX in the 90s is now trending north mid-west states. Then look closely at Texas politics and power this year. \n\n\nEvery democratic leader in a more purple state… take a lesson from Anne Richards.\n\n\nMake America Texas is more the reality of the conservative movement. Unregulated Economic growth, wrapped in ideological religious freedom at any cost. Any.', 'created': '2024-11-10 18:19:03', 'submission_id': '1go3k7j'}
{'comment': 'Ok, I am ready for reason no. 3.513.800.671. Go...', 'created': '2024-11-10 18:43:42', 'submission_id': '1go3k7j'}
{'comment': 'It is the economy. The reality of our economy as it stands is that yes, the numbers now are back to more in line with what is normal, but normal was already resulting in steadily worse class divides, and on top of that, nothing has been done to offset the years where it was dramatically abnormal.\n\n"Inflation is down to 2.5%!" OK, but wages haven\'t kept up with inflation in decades, and sure as hell weren\'t coming anywhere near keeping up from 2021-2023. So just going back to normal just straight up isn\'t good enough. People are looking at where they were in 2019 and comparing it where they are now and concluding that their lives are harder now and the Dems did absolutely nothing to address that.\n\nThe problem is that we gauge the health of our economy assuming people have assets, namely a house and a 401k. For these people, a little bit of inflation is good because those assets gaining value over time is what facilitates a comfortable retirement. \n\nThe problem is that the percentage of people who have those things has shrunk, and is heavily age divided. If you\'re under 40, you probably don\'t own a house. You probably don\'t have a retirement plan, so all inflation is doing is making your life harder. The Democrat messaging to these people was just "No, this is good actually. We\'re not going to do anything for you." And then act baffled when voter turnout was way down with young voters this time around and those who did turn out were much more likely to vote for the guy who at least acknowledged that there was a problem than they have historically.', 'created': '2024-11-10 18:49:27', 'submission_id': '1go3k7j'}
{'comment': 'Now that Twitter is a branch of the republican party dems have a real messaging problem.', 'created': '2024-11-10 19:08:15', 'submission_id': '1go3k7j'}
{'comment': 'I’m not convinced by that argument yet. To me it’s like saying violent video games cause violence. The question for me is does the right wing media influence people, or do people with right leaning ideologies find validation in the right wing media?', 'created': '2024-11-10 19:35:30', 'submission_id': '1go3k7j'}
{'comment': "He cheated. That's how he won. The cheating cheat who cheats on his wives, cheats on his taxes, cheats in business, cheats his charities, and cheats in golf cheated. There is a 100% chance that he cheated. He can't NOT cheat. Of course, he's not nearly smart enough to pull it off by himself. He had a lot of help from other cheaters. \n\nIt wasn't messaging. It wasn't Democrats not turning up to vote. \n\nHe cheated. Everyone knows it, even if we can't prove it. The cheater cheated. Duh. Duh-uh.", 'created': '2024-11-10 19:24:20', 'submission_id': '1go3k7j'}
{'comment': 'Incumbents are being voted out globally due to inflation. Everyone is looking for someone to blame and their current party is taking the heat. \n\nTrump was in the right place at the right time. It’s that simple. He won’t fix the issue, he will make it worse. \n\nBlue waves in 2026 and 2028 should be pretty easy honestly.', 'created': '2024-11-10 16:56:31', 'submission_id': '1go3k7j'}
{'comment': 'https://youtu.be/D7cKOaBdFWo?si=bkqLjRY_YhXEimBt\n\nBasically the death of the free press..history repeats itself', 'created': '2024-11-10 20:44:37', 'submission_id': '1go3k7j'}
{'comment': 'Democrats stayed home that why.', 'created': '2024-11-10 22:54:47', 'submission_id': '1go3k7j'}
{'comment': "It's also about our educational system. We are sending recent graduates out into the world unprepared. They know nothing about history or civics.", 'created': '2024-11-10 23:28:32', 'submission_id': '1go3k7j'}
{'comment': "This article is spot on. Republicans only get their news from right wing sources. After Reagan they realized they needed to control the news. They have convinced their base that every other media source instead of theirs is the enemy. We can't get the true information to their voters.", 'created': '2024-11-11 00:02:56', 'submission_id': '1go3k7j'}
{'comment': 'I think article is spot on and I have zero idea what can be done e about it.', 'created': '2024-11-11 00:28:31', 'submission_id': '1go3k7j'}
{'comment': 'I dunno, but if Meeeick Garland had treated Trump like any other case, we wouldn’t be having his talk', 'created': '2024-11-10 22:17:23', 'submission_id': '1go3k7j'}
{'comment': None, 'created': '2024-11-10 17:56:37', 'submission_id': '1go3k7j'}
{'comment': "Trump won because Biden wouldn't take one term. Pretty simple.", 'created': '2024-11-10 18:32:23', 'submission_id': '1go3k7j'}
{'comment': 'Tldr: Because right-wing media now controls the narrative here.', 'created': '2024-11-10 19:14:04', 'submission_id': '1go3k7j'}
{'comment': 'The real reason is fascism and propaganda', 'created': '2024-11-10 18:22:19', 'submission_id': '1go3k7j'}
{'comment': 'In this age of modernity we really need a centralized source of information regarding Science, Medicine, Engineering, and Technology where the current standards for each are spelled out in a clear means. \n\nAnd with news media failing us we need the same sort of repository of factual news and political positions and actions detailed as objectively as possible. Issues of Economics needs to be centralized as well so that there is a way for people to go and see what is going on right now. \n\nAs things stand the right has a massive propaganda machine and it needs to be countered with facts. Add into this that many of the GOP establishment have learned well from Putin how to paralyze a population with conflicting information. There needs to be a place people can go and find out what is actually going on without agendas and biases.', 'created': '2024-11-10 17:58:21', 'submission_id': '1go3k7j'}
{'comment': 'Because its reductionist to think there is any single reason he won? \n\nHe won for a hundred different reasons - we should be assessing the 5 or 10 reasons that are most unusual or significant to start strategizing about how to defeat the GOP in the future.', 'created': '2024-11-10 18:41:03', 'submission_id': '1go3k7j'}
{'comment': 'The age of the misinformation wars has unquestionably taken a heavy toll on this country. There are maga republicans actually gloating about people in their favorite felon and rapist’s circle/proposed administration talking about taking over the free press to “fix” it (i.e., to punish and control the narrative and eliminate any who are not loyal to the maga regime).', 'created': '2024-11-10 20:13:06', 'submission_id': '1go3k7j'}
{'comment': 'Eh, I think it’s more excuses. Yes, people are stupid….. but people are also *bad* and we’re forgetting that.\n\nLook, I knew he was bad the second he mocked that reporter, so did my mom (a lifelong Republican.) There is no amount of propaganda or anything that could change that.', 'created': '2024-11-10 21:05:59', 'submission_id': '1go3k7j'}
{'comment': 'If you’re willing to spend the money you can own an election. The right certainly has shown that willingness. \nThrow enough money at the “news” outlets and they will say whatever you want. Get a foreign country to thrown their propaganda machine at the online forums and you have things pretty sewn up.', 'created': '2024-11-10 23:15:51', 'submission_id': '1go3k7j'}
{'comment': 'I feel, some people are in so much pain, financially and emotionally, they really dont honestly believe that anything is going to change, however, with Trump, He promised to deport millions and causing immense pain to others. Misery loves company and if someone has to suffer, they might feel less bad by seeing others in worse pain. How I see it', 'created': '2024-11-11 01:23:50', 'submission_id': '1go3k7j'}
{'comment': 'But there are many news outlets. Why do so many people choose Fox etc? It seems like there are many more balanced news sources. Is it that Fox appeals to their baser instincts? Seems like a chicken and egg situation.', 'created': '2024-11-11 03:20:03', 'submission_id': '1go3k7j'}
{'comment': 'It’s misinformation. It’s social media algorithms and conservative grifters. They lie about everything and people can’t tell the difference.', 'created': '2024-11-11 06:56:32', 'submission_id': '1go3k7j'}
{'comment': "It's not fully understood yet, but clearly messaging is huge. MAGA has multiple 24/7 propaganda arms while Democrats have virtually nothing. Biden never used the bully pulpit and believed the very ignorant citizenry would just figure out he was doing a good job. One thing to give Trump is during his first term he was out every single day selling how great he was doing. Dems needed to do the same -- now they need to go out and explain in extremely simple terms how Trump is hurting them so we can bulwark the madness in 2026. They cannot continue hoping the ignorant and moronic electorate will 'just figure it out', and Trump WILL hurt them and us all this time.", 'created': '2024-11-10 18:19:47', 'submission_id': '1go3k7j'}
{'comment': 'Trump won because enough people were disappointed in the last four years.', 'created': '2024-11-10 18:18:01', 'submission_id': '1go3k7j'}
{'comment': 'There are a million reasons trump won but it comes down to 2 people/problems. \n\nJoe Biden for running for re-election. \n\nBernie Sanders for destroying the base of the Democratic Party and making a good portion of the population have unrealistic expectations for how the government and world work.', 'created': '2024-11-10 18:32:07', 'submission_id': '1go3k7j'}
{'comment': 'Working class people who are struggling with high prices don’t like being lectured that the economy is in amazing shape while they are suffering. That sort of rhetoric would say to me that the admin isn’t planning on doing anything about it because they think the economy is good. It was a year of people wanting change and change they’re gonna get.\n\nPerception battle it was and we saw who won the perception battle.', 'created': '2024-11-10 18:48:58', 'submission_id': '1go3k7j'}
{'comment': "Why do people act like they are the only ones who know why trump won. Sounds like Q anon. Yeah, WE know! and it isn't just one reason, but a confluence of reasons. But Yes, Right wing media and the war of perception is a big one.\n\nMaybe we need a war on Smugness.", 'created': '2024-11-10 19:26:00', 'submission_id': '1go3k7j'}
{'comment': 'Because half or the country who voted doesn’t believe adversaries help get him elected. What do you expect when you can’t speak the truth?', 'created': '2024-11-10 20:33:59', 'submission_id': '1go3k7j'}
{'comment': "Makes perfect sense. I just assumed that most people in this country consumed sane mainstream news but I was naive about that. It doesn't make Harris's loss any less painful for me, but now I better understand how it happened.", 'created': '2024-11-10 21:07:16', 'submission_id': '1go3k7j'}
{'comment': 'Nearly 1 in 5 republicans voted for Harris. Which means a lot of millennials and faux progressives decided letting fascism was more important to them then their own beliefs.', 'created': '2024-11-10 23:07:04', 'submission_id': '1go3k7j'}
{'comment': 'Hate, yes. Also honest to god class warfare. All the money poured into the campaign. Musk. Bezos turning his back. Corporate news for sanewashing', 'created': '2024-11-10 23:21:25', 'submission_id': '1go3k7j'}
{'comment': 'Harris started out with a bang and then faded out at the end. The momentum disappeared and I think her interview with The View put the final nail in the coffin when she pretty much said she would just be 4 more years of Biden.', 'created': '2024-11-10 23:49:36', 'submission_id': '1go3k7j'}
{'comment': 'Please go online to your secretary of state site to check to see if your vote counted. Both my spouse and my vote did not show up as cast in this election. I am going to check on it tomorrow.', 'created': '2024-11-11 00:48:41', 'submission_id': '1go3k7j'}
{'comment': 'He won because he campaigned on focusing action against a perceived enemy he fabricated. Kamala did not create a perceived enemy to rally her base to focus on but instead offer a variety of good intentions. Hate is an easier sell than love in these times of the world on fire and it just didn\'t take hold on those who were on the fence. Biden\'s comment that Trump\'s following was "trash" was all they needed to jump on Trump\'s bandwagon because Trump attacked Kamala, not directly her base. It was just one of the gaffes that can be attributed to the landslide against all Democrats running. A saying I\'ve always reminded myself of is you\'ll never know why someone leaves, only why they stay. Biden should not have tried to hang in there for ego\'s sake and let Kamala run months earlier than he did....unfortunately, too little too late. We learn from these lessons and let\'s hope democracy survives!', 'created': '2024-11-11 00:54:22', 'submission_id': '1go3k7j'}
{'comment': 'Protest right wing media in DC. Get arrested (if you are able). Make it salient. Make it constant. Keep bringing it up.', 'created': '2024-11-11 02:06:15', 'submission_id': '1go3k7j'}
{'comment': 'Because it makes zero sense.', 'created': '2024-11-11 02:40:40', 'submission_id': '1go3k7j'}
{'comment': 'Because he cheated', 'created': '2024-11-11 08:25:04', 'submission_id': '1go3k7j'}
{'comment': 'Race and Misogyny… simple.', 'created': '2024-11-11 11:16:03', 'submission_id': '1go3k7j'}
{'comment': 'COVID played the biggest role. Globally incumbents lost. Among developed countries, NOT ONE incumbent has won reelection. Small minded people in the US blame Biden, even though we have by far the best economy in the world right now.\n\nCap that with misinformation systems that include X, Facebook, Fox, and the like, you get trump.', 'created': '2024-11-11 13:34:25', 'submission_id': '1go3k7j'}
{'comment': "I've read Project 2025 and come to the biggest reason Dems lost this election. Dems ran against trump when they should've downplayed him. Instead of holding him up as a valid candidate, they should have told people & even trump to his face that he doesn't matter. He's simply apuppet for the federalist society. Don't call the Republicans, called them the Red party and explained to everyone that their plan is dismantle all of the UNITED States of a America and turn it into the FEDERATED States of America under one Oligarchic Militia.", 'created': '2024-11-11 14:39:47', 'submission_id': '1go3k7j'}
{'comment': "Trump didn't win, Kamala lost. Trump barely got any more votes in 2024 than 2020. Kamala got 10 million less than Joe Biden. People did not come out and vote for her.", 'created': '2024-11-11 22:30:58', 'submission_id': '1go3k7j'}
{'comment': "Because he didn't win, he cheated, and we're being lied to, again.", 'created': '2024-11-10 17:14:18', 'submission_id': '1go3k7j'}
{'comment': None, 'created': '2024-11-10 20:06:00', 'submission_id': '1go3k7j'}
{'comment': 'Perception and having a message that resonates with voters; you can’t win by telling about how unfair things are, how crude people are, or trying to disqualify people like the party seemingly attempted to. You need to win on your own merit and be capable of going toe to toe and communicating with others.', 'created': '2024-11-10 22:33:35', 'submission_id': '1go3k7j'}
{'comment': 'I call rigged. I really think someone hacked the systems that counted the ballots and changes some code… something is not right here.', 'created': '2024-11-10 18:55:18', 'submission_id': '1go3k7j'}
{'comment': '[removed]', 'created': '2024-11-10 17:10:39', 'submission_id': '1go3k7j'}
{'comment': "Because - and stay with here - it's not something that can be answered simply less than a week from the election. It's at least a dozen discreet things, of which each could be developed into a graduate thesis. \n\nOh - and here's another thing: our relentless desire for instant knowledge and gratification does nothing to help us. Be thoughtful, be patient. Be long-horizoned.", 'created': '2024-11-10 20:19:43', 'submission_id': '1go3k7j'}
{'comment': 'I think messaging is part of it, but the other part is just straight up **TIME**. There hasn’t been enough time between when inflation came down and when people will actually feel it. There hasn’t been enough time between the IRA’s investment into American industry and when middle America will feel that.', 'created': '2024-11-10 20:55:36', 'submission_id': '1go3k7j'}
{'comment': 'We do understand, lies and disinformation', 'created': '2024-11-10 21:09:59', 'submission_id': '1go3k7j'}
{'comment': 'No one? No we know why Trump won. This is not some secret.', 'created': '2024-11-10 21:31:11', 'submission_id': '1go3k7j'}
{'comment': 'The Bernie Sanders progressive bros have destroyed the Democratic Party! \n\nIt’s not a serious party talking about policy anymore. It’s a joke of a party where the politicians feel like they need to promise people everything under the Sun to win.', 'created': '2024-11-10 22:12:15', 'submission_id': '1go3k7j'}
{'comment': 'Because there are many real reasons and everything thinks they understand', 'created': '2024-11-10 23:48:44', 'submission_id': '1go3k7j'}
{'comment': 'Why is Vermont so different? Vermont is a rural state and looks more like Montana or Wyoming. Then why is it blue??? Why is Montana and Wyoming red?', 'created': '2024-11-11 00:56:59', 'submission_id': '1go3k7j'}
{'comment': "I don't think any of us know otherwise we'd have a better time convincing others we're right.\n\nI want us to spend the next few months asking and listening which is so infrequently done in our quest of looking at data with little understanding", 'created': '2024-11-11 06:43:42', 'submission_id': '1go3k7j'}
{'comment': 'Boycott Tesla!', 'created': '2024-11-11 12:27:20', 'submission_id': '1go3k7j'}
{'comment': 'We all understand the reason x45 won. Hopefully someone will introduce articles of impeachment immediately, like MTG did to Biden.', 'created': '2024-11-11 12:29:59', 'submission_id': '1go3k7j'}
{'comment': '[removed]', 'created': '2024-11-11 16:52:49', 'submission_id': '1go3k7j'}
{'comment': 'Two word Russian interference', 'created': '2024-11-11 20:20:06', 'submission_id': '1go3k7j'}
{'comment': 'He won because he and Elon Musk were successful at putting fear into uneducated and rich peoples minds. Yup!!!', 'created': '2024-11-11 22:25:46', 'submission_id': '1go3k7j'}
{'comment': "Most of the comments here point to the far right's propaganda machine. The media, TV commercials, flyers, etc.\n\n \nSo then, why do we let them have airtime?\n\nWhy do we allow them to spew lies?", 'created': '2024-11-13 17:00:22', 'submission_id': '1go3k7j'}
{'comment': 'He cheated. He said he had the votes, didn’t need votes, we wouldn’t have to vote anymore after he won, he had a secret. \n\nI’m assuming because an investigation hasn’t been done & we don’t have a report in front of us, news isn’t reporting it.', 'created': '2024-11-10 19:05:21', 'submission_id': '1go3k7j'}
{'comment': "Basically the truth doesn't matter. It's how it's delivered and the person attached. Which is the reason why this world is a mess. We're more privvy to siding with someone we wanna like more regardless of the facts at hand.\n\nThis all circles back to connections. It matters SO MUCH MORE than your actual education. Its so backwards.", 'created': '2024-11-10 19:19:06', 'submission_id': '1go3k7j'}
{'comment': 'Rigged by Elon Musk🪤☠️⚡️🆘', 'created': '2024-11-10 21:47:12', 'submission_id': '1go3k7j'}
{'comment': 'I’m a lifelong Democrat. I HATE Trump and everything he stands for. Trump won because for so many men; black, white and Latino, he is the embodiment of the “empowered male.” Males are blamed every day for being the cause of everything wrong in the world. “The patriarchy” this, and “The patriarchy” that! Watch any sitcom out there and the men are the butt of every joke. There a countless other reasons out there why men feel they are being pushed aside and their place in western society doesn’t mean what it used to. I’m not here to argue if they need to be knocked down a peg or two. I’m really not! That’s an entirely different discussion. I’m simply telling you why, at the end of the day, men voted for him the way they did. I think it’s horrible that Trump won. He is a disgusting pig! People are going through all this handwringing trying to figure out why the election went the way it did. The simple answer is the right answer in this case.', 'created': '2024-11-10 21:57:28', 'submission_id': '1go3k7j'}
{'comment': 'It was about the economy and misguided Trump voters! It\'s funny how the searches of "tariffs" are surging now after the election. Trumpsters are in for a huge surprise once the tariffs kick in, and he has deported the entire agricultural labor force. Their stupidity has doomed us.', 'created': '2024-11-10 23:12:25', 'submission_id': '1go3k7j'}
{'comment': "Because he tried stealing it last time. He lost by 6 million votes in 2020.\n\nYou're telling me he won Ina landslide now...\n\nSeems pretty suspicious.\n\nElon and Trump are besties for a reason!", 'created': '2024-11-11 02:21:06', 'submission_id': '1go3k7j'}
{'comment': "Trump won cuz college isn't free. End of story", 'created': '2024-11-11 02:40:07', 'submission_id': '1go3k7j'}
{'comment': "If you just ignore all the noise and look at what policies democrats have voted for vs republicans it should be easy to see how crappy republicans are for the average person. And you would think this would be easy to find and compare, but it's not. It should be, because what they say and what they vote for don't match.", 'created': '2024-11-11 08:28:22', 'submission_id': '1go3k7j'}
{'comment': 'Racism and misogyny.', 'created': '2024-11-11 02:19:01', 'submission_id': '1go3k7j'}
{'comment': 'Lying liars that lie, that’s why.', 'created': '2024-11-10 21:54:50', 'submission_id': '1go3k7j'}
{'comment': "While I couldn't agree more it is also what is said, Most everything today isn't that we have a better idea, but that they are evil. They aren't voting for Harris, she hates you. She is out to destroy America. \n\nIt isn't that Biden didn't fix inflation (like the president can just fix inflation) but that he purposefully didn't do it. He is just out to screw you. \n\nLast time I listened, there was a guy on, they gave him a full 1/2 hour. His premise is everyone knows that global warming is a hoax. So Greta, Al Gore, everyone in green energy and electric cars (Musk) are all in on a huge conspiracy to screw real Americans. They aren't mistaken or wrong but that they are purposefully doing it to screw you.", 'created': '2024-11-10 23:32:24', 'submission_id': '1go3k7j'}
{'comment': 'or the election was rigged...', 'created': '2024-11-11 01:52:26', 'submission_id': '1go3k7j'}
{'comment': 'Because he rigged it. Classic con.', 'created': '2024-11-11 05:23:37', 'submission_id': '1go3k7j'}
{'comment': 'Wow, opinions really are like assholes.', 'created': '2024-11-10 18:31:45', 'submission_id': '1go3k7j'}
{'comment': 'That’s what I’ve been saying. It’s all about messaging', 'created': '2024-11-10 16:55:38', 'submission_id': '1go3k7j'}
{'comment': 'Exactly this. You shouldn’t communicate in terms of *policy*, you should communicate in terms of *vibes* and *narrative*. American voters want a populist message, and Trump was the only candidate giving it to them, albeit one of right-wing, authoritarian populism.\n\nIt’s much more effective to say “the billionaire class has made life more difficult, less stable, and more expensive for working people” than it is pitch a “billionaire tax” or some specific, reactive policy proposal.', 'created': '2024-11-10 17:24:22', 'submission_id': '1go3k7j'}
{'comment': 'People are fucking idiots. End of story', 'created': '2024-11-10 17:35:17', 'submission_id': '1go3k7j'}
{'comment': 'Agreed. The real reason was that most Americans are ignorant, misogynist racist morons.', 'created': '2024-11-10 18:11:35', 'submission_id': '1go3k7j'}
{'comment': "I want to say that it isn't just the messaging. It's the media coverage.", 'created': '2024-11-10 20:47:11', 'submission_id': '1go3k7j'}
{'comment': "Not about the economy, but about his followers' perspective of the economy!?! Man, people love hearing themselves talk", 'created': '2024-11-10 23:14:49', 'submission_id': '1go3k7j'}
{'comment': 'It’s this combined with the grain of truth, that democracy had steadily grown unable to listen to and respond to the needs of its people.', 'created': '2024-11-11 00:25:10', 'submission_id': '1go3k7j'}
{'comment': 'Hate and fear?', 'created': '2024-11-11 11:50:42', 'submission_id': '1go3k7j'}
{'comment': 'Yup. It’s how I perceive my grocery bill going from $150 to $250.', 'created': '2024-11-11 21:25:12', 'submission_id': '1go3k7j'}
{'comment': 'They have Fox News. We have MSNBC. No comparison at all.', 'created': '2024-11-12 15:48:38', 'submission_id': '1go3k7j'}
{'comment': "No doubt this was part of it, but it certainly wasn't all of it and arguably not even the biggest reason we lost. Let's not gloss over the fact we doubled down on 2024 and ran a black woman for POTUS. We wanted to pretend that in only 8 years, America was ready for a woman. The answer is a resounding No. It bums me out but that's just th current state. I wouldn't be surprised had we ran a white guy, we would have won. Let's not forget all of the people who stayed home this election cycle.", 'created': '2024-11-10 20:10:03', 'submission_id': '1go3k7j'}
{'comment': 'The COST OF LIVING is killing the middle class… there’s also a major sense of personal danger.', 'created': '2024-11-10 21:16:33', 'submission_id': '1go3k7j'}
{'comment': "Or, they think the leopards won't eat their faces, only the other guys'. The women who voted for the rapist think the bros won't assault *their* daughters.", 'created': '2024-11-10 18:27:48', 'submission_id': '1go3k7j'}
{'comment': 'No matter how goddamn stupid it was, that commercial about trans surgeries really hit her, we all know it\'s bullshit but that\'s one ad Kamala really needed to respond to but choose not to im assuming because they was afraid to offend the lgbtq community, republicans tried that exact shit with Andy Beshear and he responded with an ad calling it bullshit and it worked for him(he won and still has the support of the lgbtq community)there\'s a reason that ad was played the most over all his others, lots of ppl including dems hate the idea of "trans ppl in sports" or whatever argument and especially paying for trans surgeries(bullshit or not)', 'created': '2024-11-10 23:55:56', 'submission_id': '1go3k7j'}
{'comment': 'As a trans person, I wonder what we did to make everyone hate us so much? Why do we deserve this?', 'created': '2024-11-11 02:17:25', 'submission_id': '1go3k7j'}
{'comment': '* because he’s a man, it was important to raise the confidence of young white men by having another insanely corrupt male role-model politician/businessman to look up to', 'created': '2024-11-12 08:53:41', 'submission_id': '1go3k7j'}
{'comment': 'We just had a candidate fellate a microphone in front of the cameras. And it was elected.', 'created': '2024-11-10 19:51:24', 'submission_id': '1go3k7j'}
{'comment': 'Republicans have always been like that. Newt Gingrich cheated on his wife while she was undergoing cancer treatment.', 'created': '2024-11-11 02:16:43', 'submission_id': '1go3k7j'}
{'comment': 'I’m not sure if it’s degradation. Republicans are major hypocrites and weaponize these “values”. When the shoe is on the other foot, they feign ignorance.', 'created': '2024-11-11 11:00:06', 'submission_id': '1go3k7j'}
{'comment': 'I know someone that voted red down the line because some Republican dude asked them out on a date the night before the election. They have the right to do what they want with their vote, but that’s the kind of people that we’re working with.', 'created': '2024-11-10 19:38:22', 'submission_id': '1go3k7j'}
{'comment': 'It boggles my mind that 90% of your post was about how the Trump voters are willful jerks, but the last paragraph predicted a huge Democratic turnout in 2026. It does not align. Trump voters know about what happened during COVID (2020) and Jan 6 yet still voted for Trump. In the past decade, most minority groups have been seeing a bumpy yet certain shift to the right. This could only lead to 2 logical conclusions: 1) this country is doomed. OR 2) the Democrats, or modern liberalism needs a fundamental soul change to win back the lost voters in the long run.\n\nLet me say this: I think your Trump voter friends/relatives are right. Not in their moral standard or factual judgement, but the point they accuse us of - always pointing fingers to Trump voters instead of trying to understand them and serve them. They might be jerks, but we are a democracy, and jerks have votes. THE PEOPLE has chosen Trump. So its us who need to change. If we keep our habitual attitude of demonizing them and finger pointing without deeply reflect on what went wrong with us, modern liberalism will end up nowhere and our worst nightmare will come true.\n\nPlease wake up, face the truth, and be strong. MLK, Harvey Milk and RBG will churn in their graves if we suck like this!', 'created': '2024-11-11 06:17:02', 'submission_id': '1go3k7j'}
{'comment': '>He lied, lied, lied and right wing media was the bullhorn for his lies.\n\nYep. Weaponized rhetoric from the fascist playbook.\n\nEverybody in the US is getting a lesson in how powerful weaponized rhetoric is.', 'created': '2024-11-10 21:45:07', 'submission_id': '1go3k7j'}
{'comment': 'The Democrats lied every time they blamed inflation on anything besides the explosion in the M2 over the past five years thanks to profligate government spending packages, because, well…\xa0\n\nPeople knew it and saw it, and still the Dems said, “are you going to believe what you see, or what we tell you? Corporate greed! \xa0Putinflation! \xa0Project 2025!” \xa0Blahblahblah…\n\nShould have just told the truth, even if it gave away the fact that their main policy stance (spend more!) is the thing that drives inflation. \xa0', 'created': '2024-11-11 01:21:19', 'submission_id': '1go3k7j'}
{'comment': 'That’s what I’m hearing.', 'created': '2024-11-10 18:40:32', 'submission_id': '1go3k7j'}
{'comment': 'That’s not the mainstream media. It’s the grumblings under the service that the mainstream media continues to downplay and discredit. Republicans talk to the average American as peers. Democrats talk about average Americans as idiots. It’s basic human conduct. \n\nNo one cares how much you know until they know how much you care.', 'created': '2024-11-10 19:24:21', 'submission_id': '1go3k7j'}
{'comment': 'You’re right on. It was a vibes election. Most the country heard we are worse economically than four years ago. That simple.', 'created': '2024-11-10 17:28:31', 'submission_id': '1go3k7j'}
{'comment': 'Sherman should have kept going until all of Georgia was burned down, and Jefferson Davis should have been swung from the gallows.', 'created': '2024-11-10 17:23:00', 'submission_id': '1go3k7j'}
{'comment': 'Fuck Andrew Johnson', 'created': '2024-11-10 17:45:24', 'submission_id': '1go3k7j'}
{'comment': None, 'created': '2024-11-10 17:51:45', 'submission_id': '1go3k7j'}
{'comment': 'Ding ding ding', 'created': '2024-11-10 19:01:39', 'submission_id': '1go3k7j'}
{'comment': 'Exactly. I never bought the ‘price of eggs’ excuse to vote for Trump. We all know what kind of person he is. And what a liar he is. These voters were going to vote for him no matter what. We’re about to find out what a cult that is approaching Jonestown-like insanity is in control of the country, and it is so worrying that I can’t even watch the news right now.', 'created': '2024-11-11 01:46:50', 'submission_id': '1go3k7j'}
{'comment': 'They voted for the wrong "fear". The real fear is coming from whom they voted for.', 'created': '2024-11-10 19:55:40', 'submission_id': '1go3k7j'}
{'comment': "I don't think we can dismiss the impact of the prolific right wing outlets. Over the past 30 years they have become the only source of information for millions. Like the article says, we could use some well financed left wing push back creating and promoting competing outlets that directly challenge the conservative narrative . Not sure if that will help much though when the right wing networks are the ones creating the agenda the Republican party uses.", 'created': '2024-11-10 20:45:14', 'submission_id': '1go3k7j'}
{'comment': 'And what was Trump’s succinct, achievable by any metric economic plan that was going to help these folks? I’ll wait for any reasonable response.', 'created': '2024-11-11 01:42:32', 'submission_id': '1go3k7j'}
{'comment': 'exactly', 'created': '2024-11-10 19:52:58', 'submission_id': '1go3k7j'}
{'comment': 'No doubt about it. trump, musk, an putin hacking the voting machines is much more plausible than "democrats didn\'t show up" to the most important election in history. The dems have won every midterm since 2018 and everyone suddenly turned red for a day? Bullshit. They fucking rigged it. And hopefully the democrats stop being pussies and investigate fully, do a hand recount of every ballot. Postpone everything until this is resolved.', 'created': '2024-11-10 22:18:46', 'submission_id': '1go3k7j'}
{'comment': 'Want to agree. But the point that is being made here is not that Trump will solve these problems, but that people think he will. So the risk is that even if things do get worse, the GOP messaging will make people believe that they are better/that they would have been worse under democrats/that only they can make things better. What matters is not reality, but perception - and that in recent times, the GOP/Trump/MAGA have been much better at shaping perception…', 'created': '2024-11-10 17:02:52', 'submission_id': '1go3k7j'}
{'comment': '>Blue waves in 2026 and 2028 should be pretty easy honestly.\n\nAnd what impact are those waves going to have on the Supreme Court, on which 5-6 Trump appointed Justices will sit for the next 35 years?\n\nDon’t pretend that this was an election like any other and we can just make back our losses in the next cycle. This country is changed forever.', 'created': '2024-11-10 17:22:16', 'submission_id': '1go3k7j'}
{'comment': 'I sincerely hope your last statement comes true. I fear how elections will go moving forward but the most important thing will be TRANSPARENCY and voter turnout. Somehow we need to improve turnout on our side. I phone banked a lot but people don’t answer their phones. We need something new.', 'created': '2024-11-10 17:01:41', 'submission_id': '1go3k7j'}
{'comment': 'What makes you think the guy who attempted to steal the presidency through force last time he lost and just got a mandate to continue doing crimes and appointed successors specifically to toe the line is going to accept an election loss in the future?\n\nWe had our last free election and we lost it dude. The boot on our neck is here to stay.', 'created': '2024-11-10 17:48:11', 'submission_id': '1go3k7j'}
{'comment': 'One reason the dems need to lose the house and have the Reps control that & the senate is so when things go bad, the Dem house can’t be blamed for it. It will be all due to the Reps.', 'created': '2024-11-10 17:33:11', 'submission_id': '1go3k7j'}
{'comment': 'Mexico didn’t follow this trend', 'created': '2024-11-10 18:29:39', 'submission_id': '1go3k7j'}
{'comment': "It is a true troupe\n\n* Argue that Gov't is ineffective\n* When given some political power \n\n Defund the Gov't as much as possible -- \n Refuse compromise for the greater good --\n Actively road-block whatever the other side is considering\n\n\n* when the above grinds Gov't progress to a near-halt, argue we were right... Gov't is ineffective", 'created': '2024-11-11 00:47:46', 'submission_id': '1go3k7j'}
{'comment': 'Or very basic business and economic principles.', 'created': '2024-11-11 01:33:14', 'submission_id': '1go3k7j'}
{'comment': 'The article does suggest that big-money Liberal Billionaires need to decide how to support a counter-weight to the Hard Right Media empire(s). \n\nAny liberal news outlet remaining are doing important work, but not working together on a consistent liberal/progressive message (which is fine, if they are an independent news outlet). \n\nThe Right Wing media is very disciplined on messaging', 'created': '2024-11-11 00:42:05', 'submission_id': '1go3k7j'}
{'comment': 'This is so frustrating to me. Trump just used about 30% of our population, the people you address above, who have zero resources to help themselves, to win an election and keep himself out of jail. Today, whether those folks know it or not, they were used for that purpose, only. Trump has no plan to help those folks at all, and anyone with one lick of common sense knows it too. So what you’re suggesting is for Dems to learn how to use and lie to these same folks as successfully as Republicans, in order to win elections. Truly helping these folks, much like the mentally ill, is out of the scope of today’s government. Fixing economic problems of this magnitude require funding, lots of funding, and a massive reform of education and educational standards. It does not require Jesus being infused into PS- there are schools if you want your kids to have that exposure, and parents need to pay for that. People need to move away from these places for greater opportunities (my husband, myself and my kids have all had to do this in our lifetimes). Sometimes people have to learn how to listen when people are trying to help them, and if not, they had better have the resources to help themselves. Right now, these folks are just lost and seemingly just drifting-', 'created': '2024-11-11 02:02:27', 'submission_id': '1go3k7j'}
{'comment': 'I wish he stepped down sooner. That way democrats could have more time to campaign. Not sure if we would have voted for who ran against Trump. My only solace is Trump can’t run again and is old.', 'created': '2024-11-10 19:12:01', 'submission_id': '1go3k7j'}
{'comment': '>MAGA has multiple 24/7 propaganda arms while Democrats have virtually nothing.\n\nDemocrats have almost nothing? Not all of Hollywood, academia, most tech companies, and all mainstream media other than Fox news?', 'created': '2024-11-10 18:40:51', 'submission_id': '1go3k7j'}
{'comment': 'So they voted for an illusion. I get frustrated by this same swathe of people who just ping from r to l every 2 years because the government didn’t fix their problems. Every 2 years, like clockwork. They are desperate and this time the GOP used them to win, and will discard them and their real needs because they’ve served their purpose.', 'created': '2024-11-11 01:45:06', 'submission_id': '1go3k7j'}
{'comment': 'People are acting like he didn’t tell us he cheated prior to Election Day. HELLOOOOOO!?', 'created': '2024-11-10 19:06:12', 'submission_id': '1go3k7j'}
{'comment': 'This 100%', 'created': '2024-11-10 17:46:31', 'submission_id': '1go3k7j'}
{'comment': 'No. The results are consistent with a fairly large rightward shift in the electorate, with less of a shift in the swing states because Harris campaigned there.', 'created': '2024-11-10 17:50:43', 'submission_id': '1go3k7j'}
{'comment': "Don't forget racism.", 'created': '2024-11-10 20:19:55', 'submission_id': '1go3k7j'}
{'comment': 'Pete Buttigieg going on FoxNews is a good step!', 'created': '2024-11-10 17:17:41', 'submission_id': '1go3k7j'}
{'comment': 'Live free or cows', 'created': '2024-11-11 02:01:52', 'submission_id': '1go3k7j'}
{'comment': "Even if that happens and is successful, then we have to deal with JD Vance, and then even if he gets removed, I don't even know who's next in line", 'created': '2024-11-11 14:58:05', 'submission_id': '1go3k7j'}
{'comment': 'I just have to say men do get a bad rap, but have you ever looked at the violent crime stats? Who commits virtually all the violent crime? Who needs to fix that? I know, an entirely different issue. Funny though, everyone who is not a white male as been deemed a second class citizen forever, yet we’re just supposed to deal with it. I cannot understand the WOMEN who voted for Trump. Really? A serial adultery and sexual abuser, current convicted felon- shakes my damn head.', 'created': '2024-11-11 01:39:00', 'submission_id': '1go3k7j'}
{'comment': 'It\'s more about owning and dominating the media, to get "YOUR" message out and drown out the "Other Side". The right wing media sets the news agenda for the country these days (as the article correctly lays out the evidence). \n\nNo intelligential Biden / Harris statement of \'truth\' would survive more than 60 seconds in some press release. \n\nPer the article: \n\n> Yes—inflation is real. But the Biden economy has been great in many ways. The U.S. economy, wrote The Economist in mid-October, is “the envy of the world.” But in the right-wing media, the horror stories were relentless. And mainstream economic reporting too often followed that lead.', 'created': '2024-11-10 17:03:38', 'submission_id': '1go3k7j'}
{'comment': 'The vote is in, our country is so far in the toilet that our politics have to center around pandering to idiots 100% of the time.', 'created': '2024-11-10 19:36:53', 'submission_id': '1go3k7j'}
{'comment': "it's about Propaganda... and Dems have refused to engage in this kind of exploitative distortion, but it cost them at the polls. Rage bait works as does influencers on social media platforms. Taylor Swift & Beyonce can only get you so many votes.", 'created': '2024-11-10 19:48:18', 'submission_id': '1go3k7j'}
{'comment': 'It’s always about messaging and the Democrats have always sucked at it.', 'created': '2024-11-10 20:27:03', 'submission_id': '1go3k7j'}
{'comment': 'Or lying.', 'created': '2024-11-10 18:40:13', 'submission_id': '1go3k7j'}
{'comment': 'No, it\'s all vibes baby. People vote with feelings not facts. Puts the whole "Fuck your feelings" notion in a mirror.', 'created': '2024-11-11 00:31:11', 'submission_id': '1go3k7j'}
{'comment': 'They certainly seem to be better marketers / unfortunately', 'created': '2024-11-11 07:14:18', 'submission_id': '1go3k7j'}
{'comment': 'It would be very, very hard to win that messaging battle as the incumbent party.', 'created': '2024-11-10 20:07:03', 'submission_id': '1go3k7j'}
{'comment': "It's all about the right-wing media misinformation campaign", 'created': '2024-11-10 23:25:01', 'submission_id': '1go3k7j'}
{'comment': '“They’re Eating the Dogs” should have been on every single commercial.', 'created': '2024-11-11 03:58:43', 'submission_id': '1go3k7j'}
{'comment': 'Correct. Obviously we need smart and dedicated policy people, because we actually want to govern and improve things instead of just tear them down. But the message has to be very simple and repeatable. \n\nThe media would chastise Harris for being unclear or not knowing where she stands. She would come out and give 5 or 6 specific policy proposals and no one cared. Trump can just go “I heard someone on tv say they were eating dogs” and people ate that shit up. \n\nI agree it’s going to come down to the democratic message and messenger. You have to go ahead and declare some three word slogans. Example, they could run on safety, prosperity, and community. We are trying to make you safe, give you more money/opportunites, return to a sense of community with your fellow Americans. Every single discussion can fall into one of those categories and be circled back to that simple message. Every time they say something crazy, call them out for wanting to divide America and see us weakened, then hammer the message. Find the messenger then just do this on repeat on every news channel (yes, just like Pete does on fox) and platform (podcast, YouTube, TikTok).', 'created': '2024-11-10 17:47:40', 'submission_id': '1go3k7j'}
{'comment': 'I have a card that was made by our county democrats with reasons to vote for Harris. It includes:\n\n>BRING BACK AND EXPAND THE CHILD TAX CREDIT\n\nGreat, but only if you know what the child tax credit is and how/if it benefits you. \n\n>ENACT POLICIES THAT WILL INCREASE THE HOUSING SUPPLY AND PROVIDE DOWN PAYMENT ASSISTANCE TO FIRST TIME HOME BUYERS.\n\nThis requires people to make the connection that increasing the housing supply will lower the cost of buying a house. And not necessarily helpful if you think that the problem is mainly corporations buying up housing. \n\n>INCREASING STARTUP EXPENSE DEDUCTIONS FROM $5,000 TO $50,000\n\nAgain, you need to know what this means to know if you’d benefit from it. \n\nDemocrats tend to be wonks, and people who understand policy likely voted for Harris. But also, none of these statements go after the idea that democrats want to level the playing field and start going after the wealthy elites that people blame for their situations.', 'created': '2024-11-10 18:28:44', 'submission_id': '1go3k7j'}
{'comment': 'Which is still lost on them when they think Elon is a god of some sort. They think he is going to improve their lives and he is like them. His bs rags to riches story makes them feel empowered. Trump aligning with him pushed the younger crowd to his side.', 'created': '2024-11-10 19:29:46', 'submission_id': '1go3k7j'}
{'comment': 'Bernie was at one point, but talking about fundamental systemic changes scared the DNC/megadonors so they squashed him and rammed establishment candidates through....after all, how would they get their tax breaks funded with all that money going to invest in working class people?\n\nPeople don\'t perceive this "wonderful economy." They perceive a two-tiered one and the reality is that most of us can\'t afford a home...a 25k assistance check on the down payment promised by the Harris campaign was a joke next to "I\'m your retribution against this evil empire of democrats and illegals that are certainly the cause of all your problems."', 'created': '2024-11-10 22:49:43', 'submission_id': '1go3k7j'}
{'comment': "but here's the thing, today's working class has bought into the capitalist game. They want to be Billionaires themselves! They want their Hermes bags & Rolex watches & McMansion with chandeliers. They have a hustle mentality where you get rich or die trying. Telling them that Elon Musk or Bezos/Amazon is robbing them blind is sheer folly. Dems would have more luck scapegoating the military/industrial complex & foreign aid.", 'created': '2024-11-10 19:56:24', 'submission_id': '1go3k7j'}
{'comment': 'Despite their refrains of eff your feelings, it’s all about their feelings', 'created': '2024-11-10 17:49:30', 'submission_id': '1go3k7j'}
{'comment': 'Because they have been led to believe all the victim blaming of "she asked for it". When in reality NO SHE NEVER ASKED FOR IT. And I will stab anyone in the face with a fork who says that. #$@', 'created': '2024-11-10 18:33:22', 'submission_id': '1go3k7j'}
{'comment': "the sad part about it is the Fake Christians will probably think their teenage daughters deserved being assaulted because they were partying or didn't cross their legs or didn't attend Bible study.", 'created': '2024-11-10 20:00:43', 'submission_id': '1go3k7j'}
{'comment': 'Agreed. But how is the mainstream media biased to the left, if Trump can say shit like that without any pushback? We are being gaslight to the wazooo.', 'created': '2024-11-11 15:06:58', 'submission_id': '1go3k7j'}
{'comment': '“It” is the perfect word.', 'created': '2024-11-11 00:50:04', 'submission_id': '1go3k7j'}
{'comment': 'Gross.', 'created': '2024-11-11 02:17:14', 'submission_id': '1go3k7j'}
{'comment': 'They actually do kill children in schools.', 'created': '2024-11-12 09:12:59', 'submission_id': '1go3k7j'}
{'comment': 'You have completely missed the point. \n\nMost of the people did not vote \\*for\\* Trump, they voted \\*against\\* a black woman becoming the President. \n\nTrump was just the catalyst to make it okay to be racist/misogynist again.\n\nAny MAGA person I have talked to tries to fall back on illegal immigrants getting benefits, but cannot provide any factual information where that is happening, especially in reds states, where the laws prevent nearly 100% of aid to undocumented people. They just see or hear about it and assume it is true. \n\nThen they talk about grocery bills and when you tell them President cannot set the prices in the grocery store because we live in a free market economy, they fall back on "well it was better under Trump." So you remind them that we have been living under Trump\'s tax plan since 2017 and the House of Representatives has been under Republican Control for a very long time, and they set the budget. So if the economy is not doing well right now, then you can look back at Trump and the Republicans for not changing it. They are convinced it is the Democrats fault grocery prices are as high as they are, not realizing the corporate overlords they prostrate themselves too are stealing the money out of their pocket while bending them over.\n\n \nLast they want to "drill, baby, drill!" Right? Except that America has been producing more oil under the Biden-Harris administration than at any other time in US History. We are more independent today than we ever were under Trump and it isn\'t even close.\n\nNone of the major issues they voted on were true, and with a little research, they already knew that. \n\nIt was an excuse to keep a Black woman out of office because America is deeply entrenched with racism, especially by the Hispanic Men, Boomers, and the Christo-Nazis. This trifecta of people do not want a woman in the Presidency, ever. They think men are the only ones fit for office and even the women in these categories have a hard time going against what they think "God" has said.\n\nShe did not stand a chance without a max level turnout like Biden had in 2020. Which she failed to get across the board.\n\nSo, let me pass this back to you - how do you serve a maliciously ignorant racist?', 'created': '2024-11-11 15:24:51', 'submission_id': '1go3k7j'}
{'comment': 'Even if the Republican is basically lying to your face- and HE IS? Common sense folks. People actually think Trump cares about them? Seriously? Do people have zero ability to read people or know when they are being hoodwinked?\n\nI might be on board with this if we were talking about GW- yep, he did horrible things and left the country in shambles, but I don’t think he was as malicious or vindictive to everyone, as Trump is.', 'created': '2024-11-11 02:08:59', 'submission_id': '1go3k7j'}
{'comment': 'The South should’ve been fully occupied, rebuilt, and fully integrated, with former slaves being granted the same rights as whites, and all components of the Constitution that stem from placating the South should’ve been abolished. Instead, we’re still letting the losing side dictate the rules of engagement.', 'created': '2024-11-10 20:20:20', 'submission_id': '1go3k7j'}
{'comment': 'It’s so easily forgotten that our constitution wasn’t meant to be permanent—it was a temporary truce between the north and south to last long enough to kick the British out of the Colonies. We’re still plagued by the institutions and agreements made to placate the South, even though they lost the Civil War.', 'created': '2024-11-10 20:18:24', 'submission_id': '1go3k7j'}
{'comment': 'He doesn\'t have one. That\'s how bad the Dems messaging was on this. Literally just saying "The economy sucks." without enumerating any further or presenting any real plan to fix it was still dramatically better than what Kamala managed to put forward.\n\nShe lost, badly mind you, to functionally nothing at all.', 'created': '2024-11-11 01:49:33', 'submission_id': '1go3k7j'}
{'comment': "This is how I feel as well. Even if he tanks the economy, I feel like the huge right wing media infrastructure will just blame the reason on the Dems.\n\nWe on the left side now actually have to both improve the economy and improve our messaging that we improved the economy/that the right have destroyed it.\n\nWhile all the right has to do is just work on messaging that they did great for the economy/that the left destroyed it. It doesn't actually matter to the right to fix it. They only focus on messaging now because they have shown that is all that matters.", 'created': '2024-11-10 18:22:09', 'submission_id': '1go3k7j'}
{'comment': "Congress can expand the court.\n\nAnd the country is changed forever every single day. Perhaps last Tuesday more than most, but we can build a better future if we don't lose hope.", 'created': '2024-11-10 17:27:33', 'submission_id': '1go3k7j'}
{'comment': 'I mean it was sorted during the DNC which is when it would have been sorted anyway, not sure this argument makes a lot of sense to me.', 'created': '2024-11-10 20:52:32', 'submission_id': '1go3k7j'}
{'comment': 'The organizations you listed do not work in tandem to produce a "news story of the day" to help their political side. \n\nYes, many Hollywood types support the Democrats, but they do not dominate (or try to dominate) the information flow. They do offer support, endorsements, and recommendations.... but again they do not contribute much to a "Democratic Message of the Day" \n\nMost tech companies (in terms of CEO and BoD) are far more likely to lean Right, while their employees are more likely to lean Left. In terms of support at an organized company or industry level, they either are agnostic (and try to profit off the chaos) or Right leaning. \n\nThe other national media (NBC, CBS, ABC, WashPost, NYT, etc) try to be objective journalists and even go out of their way to be ultra-fair to the Right to counter-act their likely personal Left leaning thinking. They certainly are not 24/7 propaganda organizations. \n\nThe actual Left leaning media (MSNBC, NPR, etc) and advocacy groups (National Review, etc) do not coordinate at a "unified message of the day" to down out opposing viewpoints, nor do they actively engage in large scale fraud and mis-information (but they are not perfect, and do sometimes make mistakes in facts and conclusions).', 'created': '2024-11-11 12:21:30', 'submission_id': '1go3k7j'}
{'comment': 'It’s the way of democracy. Most people are moderate swing voters. It happens.', 'created': '2024-11-11 02:07:29', 'submission_id': '1go3k7j'}
{'comment': 'Here in MI every commercial for the last couple weeks was a political one. 80% were from billionaire PACs. one that was in almost every commercial break was literally screaming that dems were responsible for afganistan, crime was skyrocketing, millions of illegals were killing people, inflation was skyrocketing, and country was shit. literally easily proved BS. people are stupid.', 'created': '2024-11-10 17:47:38', 'submission_id': '1go3k7j'}
{'comment': 'Not just the media. He had Musk.', 'created': '2024-11-10 19:58:42', 'submission_id': '1go3k7j'}
{'comment': None, 'created': '2024-11-10 17:44:52', 'submission_id': '1go3k7j'}
{'comment': 'That thought experiment of the random villager from the steppes of Mongolia being dropped in America and fed a 100 day diet of Fox News was so insightful. \n\nI reversed it (well TRIED to reverse the thought, as it turns out there is NO left wing media (by that I mean the Overton equivalent of Fox)) with like MSNBC: what would this villager think of Harris after 100 days of msnbc (properly translated to mongolese of course)? That she was a flawed person but seemed sane enough, maybe her laugh was a little annoying, whatever? \n\nWhat would they think of Trump? First they would be struck by the markedly different tone and content compared to Kamala but the head on the screen wouldn’t “moralize” about it just kinda here’s what he said, moving on. Maybe something like “we will have to wait and see in November how this resonates with voters” as the only clue to this confused Mongolian that anything Trump said was at all “wrong”.', 'created': '2024-11-11 00:01:52', 'submission_id': '1go3k7j'}
{'comment': '* *The envy of the world*. Why won’t they let us have nice things😣', 'created': '2024-11-11 00:13:30', 'submission_id': '1go3k7j'}
{'comment': 'As others pointed out democrats are bad at messaging. On top of that, Biden was too old to speak for himself. He never even said a word over the years as Trump continued to build his re-election bid. \n\nBiden allowed the memories of January 6 to slowly fade, by the time of the 2024 elections, the instruction was virtually a petty forgettable mischief. \n\nHarris, on the other hand, was too generic of a communicator, by the time she went after Trump, it was too late, Also, Harris was a very poor public speaker, nothing she ever said stuck.\n\nWe need strong public speakers who can pump up the crowds at rallies, energize the voter base. Harris did rally after rally, Pennsylvania, Michigan, Wisconsin, but made zero impact.', 'created': '2024-11-12 00:36:03', 'submission_id': '1go3k7j'}
{'comment': 'Seems to work for them', 'created': '2024-11-10 23:25:37', 'submission_id': '1go3k7j'}
{'comment': 'And better organized', 'created': '2024-11-11 12:30:36', 'submission_id': '1go3k7j'}
{'comment': 'I know. I\'m not saying I agree with what they say. I hate it. But "your groceries are too expensive and it\'s the Democrats\' fault and an illegal immigrant is going to come take your job" makes angry people feel like there\'s someone looking out for them', 'created': '2024-11-10 20:09:13', 'submission_id': '1go3k7j'}
{'comment': None, 'created': '2024-11-10 18:48:28', 'submission_id': '1go3k7j'}
{'comment': 'But Private Equity and smaller businesses are buying up the housing supply. And leaving many of the properties vacant. Therefore driving up the price of available rentals.', 'created': '2024-11-10 18:38:02', 'submission_id': '1go3k7j'}
{'comment': '“If you have kids, I’ll lower your taxes. We will give first time homebuyers money for a down payment. We will give you $50k to start your own business. You deserve the American dream, and I will help you get it”\n\nHow fucking hard is that?', 'created': '2024-11-11 02:32:33', 'submission_id': '1go3k7j'}
{'comment': 'I had this argument with my husband . If the dems need to own the far left trans surgeries for all prisoners BS and full grown men playing women’s sports then they own all the far right hate groups, racists, sexists and bigots that come out of the woodwork when Trump is president. They also own every single mass shooter. If I was making an attack\nad, I would be showing pics of dead children at schools and saying Trump did this. It would also be true.', 'created': '2024-11-12 09:07:36', 'submission_id': '1go3k7j'}
{'comment': 'And so the rage cycle will continue. How can we help the 30% who seemingly just want someone else to fix their problems? They control elections, yet are never happy with outcomes because they are unable to get any traction to achieve success. Some are poor decision makers, some don’t care, but they all need help and no one seems to meet their needs. Some of us are tired of trying-', 'created': '2024-11-11 21:51:57', 'submission_id': '1go3k7j'}
{'comment': "This is a good point. With both houses, Congress can expand the judiciary, get cases heard faster, get real justice served, and dillute the effect of the Trump court appointees. It's a very big deal. Our next choices for Democratic nominees need to be strategic -- and unfortunately, marketing matters a lot. I thought we had accomplished that this time, but apparently not.", 'created': '2024-11-10 18:23:43', 'submission_id': '1go3k7j'}
{'comment': 'I wish we could fix their problems and end the stalemate-', 'created': '2024-11-11 21:48:10', 'submission_id': '1go3k7j'}
{'comment': "The problem is that the right is not beholden to the truth.\n\nThey would pump out 12 different ads/shorts/videos/flyers/etc that told 13 different, often contradictory lies.\n\nAnd the more contradiction, the better as it allowed people to key into whatever emotional/belief they wanted to hear and simply tune out the rest.\n\nThe GOP has also been campaigning non-stop since at least 2015.\n\n Trump started campaigning for this election in 2015 and every election in between. \n\nHe'll be campaigning for 2028, because why the fuck not? He does not give a shit that he's now term limited.\n\nThe Democrats started campaigning for this election this year.\n\nAnd with Harris, she started her campaign \\*\\*three months ago.\\*\\*", 'created': '2024-11-10 18:57:20', 'submission_id': '1go3k7j'}
{'comment': 'Yep. I lost a friend who was pissed I refused to accept “illegals” were rampantly taking peoples homes, raping everyone in site and killing everyone. Seems like white fragility of the male ego for him.', 'created': '2024-11-10 19:26:15', 'submission_id': '1go3k7j'}
{'comment': 'People can start to believe anything if they keep hearing it often enough.', 'created': '2024-11-10 20:38:51', 'submission_id': '1go3k7j'}
{'comment': 'Someone needs to tell “middle America” that globalization isn’t going to stop, and the jobs that left are never coming back.', 'created': '2024-11-10 18:09:16', 'submission_id': '1go3k7j'}
{'comment': 'One would think that the more tech bros and innovation in those "fly over states" would make it more blue.', 'created': '2024-11-10 19:00:22', 'submission_id': '1go3k7j'}
{'comment': "Definitely. It is very hard to push back on that with policy explanations. \n\nYou can't just tell people cereal isn't expensive when it is.", 'created': '2024-11-10 20:11:10', 'submission_id': '1go3k7j'}
{'comment': 'Bruh what? Disagree with basically everything you said. \n\nGlobalism is the reason Americans are hurting? My dude people like the Waltons and Walmart are what killed Main Street. \n\nYou even admit the “immigration” issue is just perception. My guy, I worked in law enforcement for 3 years in southern Alabama. Do you want to know how much “migrant crime” I saw? 0. You know how many murders we had by Americans against Americans? About 45 per year. Also the city I was in had more job openings than workers. What migrants taking jobs? We didn’t have enough people to fill the jobs that were available. \n\nYour perceptions read like someone who is perpetually online. Not a knock, but that does not jive with my personal experiences. And see I would love to talk to you more because we sound far apart but I bet in reality we are not. We have more in common than you think.', 'created': '2024-11-10 19:46:44', 'submission_id': '1go3k7j'}
{'comment': 'How many Democrats sat by for four years and cheered the rise in housing prices bc it means higher property tax receipts with which the government pays itself? \xa0', 'created': '2024-11-11 01:08:10', 'submission_id': '1go3k7j'}
{'comment': '"The problem is that the right is not beholden to the truth."\n\nAmen to that.\n\nMy niece is a college graduate, an administrator in the field of education -- she\'s intelligent. Her 10 year old child just started noticing political ads this year. She asked her mother, "How come one party says one thing, and then you see a commercial for the other party saying the exact opposite."\n\nAs she told the story, my niece smirked both to denote the wisdom of a little child -- and to indicate that my niece herself had nothing but cynicism for the world of politics, where no one can be trusted. \n\nOkay. *But then she goes and votes for TRUMP?* Make it make sense.', 'created': '2024-11-10 20:59:39', 'submission_id': '1go3k7j'}
{'comment': 'Term limited…for now.', 'created': '2024-11-10 19:55:35', 'submission_id': '1go3k7j'}
{'comment': "That was one of the mantras in Nazi Germany: keep repeating the lie over and over and people will believe it's the truth.", 'created': '2024-11-11 00:21:47', 'submission_id': '1go3k7j'}
{'comment': "Middle America has an inferiority complex. Instead of adapting they would rather regress into the 1950's.", 'created': '2024-11-10 19:02:26', 'submission_id': '1go3k7j'}
{'comment': None, 'created': '2024-11-10 18:11:31', 'submission_id': '1go3k7j'}
{'comment': None, 'created': '2024-11-10 19:06:31', 'submission_id': '1go3k7j'}
{'comment': None, 'created': '2024-11-10 22:48:44', 'submission_id': '1go3k7j'}
{'comment': 'All my ten year old talks about is politics because she hears it from the boys at school. One told her women can’t lead because that’s what the Bible says. These boys regurgitate right wing talking points because their parents obviously are teaching them this stuff. They start indoctrinating their kids in elementary school.', 'created': '2024-11-10 23:50:32', 'submission_id': '1go3k7j'}
{'comment': "I can't worry about that until it becomes an actual issue.", 'created': '2024-11-10 20:14:42', 'submission_id': '1go3k7j'}
{'comment': 'More like the 1850’s.', 'created': '2024-11-10 19:45:20', 'submission_id': '1go3k7j'}
{'comment': None, 'created': '2024-11-10 23:55:07', 'submission_id': '1go3k7j'}
{'comment': "Tariffs won't bring jobs back to middle America. \n\nWalmart killed Main Street, not silicon valley or tech bros. Main Street was dead before the Internet.\n\nThe problems you're illustrating are real. Your solutions are half cocked tho.\n\nI see no realistic way to restore small town middle America. Unless you get rid of Amazon and Walmart and farm conglomerates and be prepared for everything to cost twice as much? Good luck.", 'created': '2024-11-10 18:25:14', 'submission_id': '1go3k7j'}
{'comment': "I live in a Red sea, so I get it. But tariffs aren't the answer. It isn't simply raising the price of a foreign made tv. Many products are actually assembled in the U.S. from parts manufactured overseas. The prices of all those goods go up as well. It doesn't incentivise domestic production at all, it just causes across the board inflation.\n\nThe globalization genie is already out of the bottle, and there's no putting it back. I'm not going to pretend I have an answer for that, but we have to find a way to change/evolve our economy to make sure that there still are jobs where the folks who used to be employed in manufacturing and (my neck of the woods) resource extraction, can still prosper.", 'created': '2024-11-10 19:08:27', 'submission_id': '1go3k7j'}
{'comment': 'But those states have whored themselves out. The conservatives in those states have had unfettered power to fix those problems and they haven’t done so. \n\nSo this should be a self aware moment for you really. The coastal economies run by liberals have out performed middle American states run by conservatives? Hmmm, you don’t say. \n\nThat should be the message.', 'created': '2024-11-10 19:14:34', 'submission_id': '1go3k7j'}
{'comment': 'Sounds like we should be investing in new development, jobs training, new industries, and basic safety net to help people when they need it.\n\nInfrastructure bill, the chips act, clean energy projects, eitc expansion, student loan freezes, wait...', 'created': '2024-11-10 21:15:15', 'submission_id': '1go3k7j'}
{'comment': 'Build up the rural areas. Turn the farmland into the smart land', 'created': '2024-11-10 19:07:28', 'submission_id': '1go3k7j'}
{'comment': 'We are only going to get more interconnected. Isolationism is not the answer. What would you advocate for? I want to be self sufficient as well, but we do not have access to every resource we need solely within our own borders. Withdrawing from the world stage gives our enemies opportunities to gain strength.', 'created': '2024-11-11 00:05:52', 'submission_id': '1go3k7j'}
{'comment': "Won't be long. In fact, I'd assume it'd be soon after he takes office, and go quietly under the radar.", 'created': '2024-11-10 20:27:06', 'submission_id': '1go3k7j'}
{'comment': "We can't wait that long.", 'created': '2024-11-11 02:20:20', 'submission_id': '1go3k7j'}
{'comment': 'Yes. I want a blue tsunami that ends this shit. Ends the minority redneck rule', 'created': '2024-11-10 23:56:06', 'submission_id': '1go3k7j'}
{'comment': 'I would love to see Walmart and Amazon fold.', 'created': '2024-11-10 19:27:03', 'submission_id': '1go3k7j'}
{'comment': None, 'created': '2024-11-10 18:36:07', 'submission_id': '1go3k7j'}
{'comment': 'Exactly right. Plus the inevitable retaliation from the other countries will hurt exports, especially things like soybeans which we grow a lot of but mostly export.\n\nI’m not sure what will happen to food prices over the next year or so. I think we’ll have a potential glut of agricultural products, which would lower prices.\n\nLow food prices will hurt farmers but may make grocery prices cheaper for some things. On the other hand if the undocumented workers are all deported there won’t be enough people to harvest the food.', 'created': '2024-11-10 22:12:34', 'submission_id': '1go3k7j'}
{'comment': 'Yep my terribly ran red state has extreme surplus and won’t spend a dime to improve anything.', 'created': '2024-11-10 19:28:05', 'submission_id': '1go3k7j'}
{'comment': None, 'created': '2024-11-10 19:15:31', 'submission_id': '1go3k7j'}
{'comment': None, 'created': '2024-11-11 00:26:34', 'submission_id': '1go3k7j'}
{'comment': 'It would require a constitutional amendment', 'created': '2024-11-10 21:18:03', 'submission_id': '1go3k7j'}
{'comment': '"Unless you are willing to see Walmart and Amazon fold and food prices double" \nJoke\'s on you, they\'ll double the prices in a year or two regardless, I\'m happy to take the L now if it means we can break those human rights violation factories down!', 'created': '2024-11-10 20:31:53', 'submission_id': '1go3k7j'}
{'comment': 'Well tariffs won’t fix it. Manufacturing jobs go unfilled in many areas. The parts require globalization. They will still be poor and the rich will be richer. Does Trump spend money in small towns? Big NO. He never has.', 'created': '2024-11-10 21:17:24', 'submission_id': '1go3k7j'}
{'comment': 'Look at what Democratic governors have done in red states!!! They have revitalized economies and education AND balanced budgets. The message is just FOX entertainment.', 'created': '2024-11-10 21:23:11', 'submission_id': '1go3k7j'}
{'comment': 'My blue state has a budget surplus every year and we get it back in the form of kicker checks and we have begged them to keep it for the schools repeatedly.', 'created': '2024-11-10 19:36:42', 'submission_id': '1go3k7j'}
{'comment': "Yeah, that's something I learned about from a CBS Sunday Morning segment 4 years ago. The video link is below. I find it exhausting that many Republicans blame Dems for a lot when they too, on a more local level skirt around the bush and blantly ignore their constituents on things that would improve their lives. It doesn't matter if you're a politician for whatever party... you literally have a job that requires that you work ON BEHALF of the people who voted for you. And you sit in your state legislature doing absolutely nothing to update your infrastructure? Absolutely nuts. \n\n\nAmericans without water:\n\nhttps://youtu.be/uC8CmOOZ3o0?si=GCHClSjE8DuS8F3v", 'created': '2024-11-11 00:12:58', 'submission_id': '1go3k7j'}
{'comment': 'I think it’s inevitable that they have those dots connected for them. Truth is we lost the internet game. Elections are won on social media now and conservatives are better at it.', 'created': '2024-11-10 19:19:27', 'submission_id': '1go3k7j'}
{'comment': 'Thank you for interacting. I think I’m getting closer to understanding how to get those votes. I appreciate that.', 'created': '2024-11-11 00:44:40', 'submission_id': '1go3k7j'}
{'comment': 'Trump:\n\nChallenge accepted\n\n\n\n/s', 'created': '2024-11-11 00:05:45', 'submission_id': '1go3k7j'}
{'comment': 'I like the part where you think they care about the constitution. At all.', 'created': '2024-11-11 02:50:26', 'submission_id': '1go3k7j'}
{'comment': 'If he does it anyway? If he simply suspends the election, who will stop him? A Republican Congress? SCOTUS?', 'created': '2024-11-11 02:22:37', 'submission_id': '1go3k7j'}
{'comment': 'I think the pro-tariff folks won’t understand until they see it first hand. They just can’t fathom that even most American made products are heavily dependent on a global supply chain in some way.\n\nThe fact that Trump wants to repeal the CHIPS act is such a clear sign that he himself doesn’t understand the global economy.\n\nThe only way to make tariffs work even a little is to heavily invest in domestic manufacturing, but he plans to do the opposite.\n\nHonestly it seems like the main reason republicans want to replace income taxes with tariffs is because it’s regressive. The wealthy spend a much smaller percentage of their income on consumer goods, so basically it’s a way of increasing taxes on the poor and lowering taxes for the wealthy.', 'created': '2024-11-10 22:05:39', 'submission_id': '1go3k7j'}
{'comment': None, 'created': '2024-11-10 19:20:35', 'submission_id': '1go3k7j'}
{'comment': 'Democrats, the military….', 'created': '2024-11-11 02:24:42', 'submission_id': '1go3k7j'}
{'comment': 'The magazine “The Economist”, endorsed Kamala Harris. I posted a video where they explain why his policies are bad.', 'created': '2024-11-10 22:27:36', 'submission_id': '1go3k7j'}
{'comment': None, 'created': '2024-11-10 23:07:05', 'submission_id': '1go3k7j'}
{'comment': 'Oregon. \n\nAnd I’ve seen the center of politics slowly move towards the right over the past 40 years because of conversations like this. We have to keep the fight going inside reality, not some version of it. We have given up way too much of the field, we’re in the red zone now.', 'created': '2024-11-10 19:27:53', 'submission_id': '1go3k7j'}
{'comment': 'Unfortunately even that would probably be a disaster for our economy. The capacity needs to exist before the tariffs are in place. Even when the factories exist, they might still not be to compete even with tariffs in place because labor is more expensive here.\n\nI think we’d be better off encouraging companies to hire remote employees outside of urban centers and improving opportunities for training and education in those communities.', 'created': '2024-11-10 23:25:50', 'submission_id': '1go3k7j'}
{'comment': 'Sore winners are much worse than sore losers, and these people are both.', 'created': '2024-11-10 17:28:47', 'submission_id': '1go3hq0'}
{'comment': 'Wait for the inevitable shitshow to start and when you\'re paying $14 for a jug of OJ, yell "You voted for this, dipshit" at him.', 'created': '2024-11-10 16:57:56', 'submission_id': '1go3hq0'}
{'comment': 'I agree with most posts, things will get bad soon after he takes the reins; but every one of us knows without doubt it will never be Donnie’s fault. He’s never taken responsibility for his actions, and MAGAts won’t hold him accountable either.', 'created': '2024-11-10 17:22:46', 'submission_id': '1go3hq0'}
{'comment': 'May they go bankrupt and can’t get healthcare that they need', 'created': '2024-11-10 17:27:32', 'submission_id': '1go3hq0'}
{'comment': 'Imagine being such a fucking loser that you have to make your identity about some other dude. It’s fucking Stan culture, at this point.', 'created': '2024-11-10 17:39:07', 'submission_id': '1go3hq0'}
{'comment': 'Me and you both, my coworkers wasted no time rubbing it in my face on wednesday morning. I tried to explain to them before the election how they were wrong about the economy and inflation and how trumps plan would bankrupt us and how our rights were going to get stripped away.\nBut they dont care, they want their lord and master and there is no amount of facts and truth and evidence that is going to change their mind.\nThe only thing we can do now is let this play out and let them destroy the economy, MAYBE then they will see that they are wrong... maybe...', 'created': '2024-11-10 16:53:46', 'submission_id': '1go3hq0'}
{'comment': 'I definitely wouldn’t be friendly to him going forward. The scary thing is many of them know how to act like nice, friendly people and then they go in the voting booth. My trust in people is gone', 'created': '2024-11-10 16:51:48', 'submission_id': '1go3hq0'}
{'comment': 'There are still quite a bit of signs up in my neighborhood. Every time I walk by one of them, I spit at it. Is it petty? Maybe. Does it change anything? No. But for a few minutes, it makes me feel better.', 'created': '2024-11-10 17:39:33', 'submission_id': '1go3hq0'}
{'comment': "Yep. The guy across the street from me flies a (huge) Trump flag. It's very... interesting... how he doesn't fly an American flag though. 🤔", 'created': '2024-11-10 17:42:49', 'submission_id': '1go3hq0'}
{'comment': 'https://preview.redd.it/60l783le540e1.jpeg?width=800&format=pjpg&auto=webp&s=21f0b641ebcb37810f285228f2ef237819ca3b44\n\nIt gives off very dictatorship vibes. These displays starting to feel very North Korea state.', 'created': '2024-11-10 18:59:36', 'submission_id': '1go3hq0'}
{'comment': "I was looking forward to the flags fading and the stickers rotting off and them moving on to something new in the coming months. Now we just renewed our subscription to Trump's cult bullshit another four years at least. Exhausting.", 'created': '2024-11-10 16:56:54', 'submission_id': '1go3hq0'}
{'comment': 'I know a person who voted for Trump and works in the manufacturing industry. He works for a small company. The company announced that in preparation for Trump Tariffs (because they get most of their parts that they assemble from overseas) they will not get bonuses this year. He was confused and didn’t understand it.', 'created': '2024-11-10 19:16:01', 'submission_id': '1go3hq0'}
{'comment': "Don't worry, those will be up for another decade", 'created': '2024-11-10 16:49:15', 'submission_id': '1go3hq0'}
{'comment': "Hang a bunch of pride flags and a Ukrainian flag. They'll love it.", 'created': '2024-11-10 17:58:40', 'submission_id': '1go3hq0'}
{'comment': 'Word is those cheap Chinese fabrics are highly flammable', 'created': '2024-11-10 17:36:15', 'submission_id': '1go3hq0'}
{'comment': 'Yep, we’re gonna see these goddamn Trump flags on pick up trucks and everywhere for four years.', 'created': '2024-11-10 17:11:36', 'submission_id': '1go3hq0'}
{'comment': "My neighbor across the street is the same. Last time Trump was in office, it was up the whole 4 years.\n\nWe were hoping to use Kamala's 1st time home buyer plan and stop renting. Now it's a mad dash to buy a house with a tiny down payment before Trump fucks up the market.", 'created': '2024-11-10 17:37:18', 'submission_id': '1go3hq0'}
{'comment': 'Remember when we could all just go back to our lives when the election was over? I miss that.', 'created': '2024-11-10 17:51:41', 'submission_id': '1go3hq0'}
{'comment': 'This is why a LOT of bigot republicans voted for him - so they could rub it in your face. Damn the policies, damn reality. It’s disgusting spite. \n\nrepublicans are unethical monsters who never presented themselves in good faith. \n\nrepublicans wanted this. \n\nrepublicans do this. \n\nNever trust a republican again.', 'created': '2024-11-10 19:31:06', 'submission_id': '1go3hq0'}
{'comment': 'These type of MAGA are naive. Instead of detesting them, I am trying to have empathy.\n\nBut, the 1% Wealthy MAGA are not worthy of my empathy. (I know some of them & while they know Trump will ruin this country, they want their tax cuts.) I will continue to avoid them.\n\n(Please don’t downvote me… been such a tough week & I am (at times) deeply mourning the Harris loss. 😭)', 'created': '2024-11-10 22:06:59', 'submission_id': '1go3hq0'}
{'comment': 'My neighbor across the hall still has his “I’m voting for the felon 🤓” sign up', 'created': '2024-11-10 16:57:28', 'submission_id': '1go3hq0'}
{'comment': 'They’ll fly until they are sun bleached, burnt orange, and faded just like the leader.', 'created': '2024-11-10 17:22:12', 'submission_id': '1go3hq0'}
{'comment': 'When the cities start raising banners proclaiming trump fearless leader along the roads thats when the real trouble starts.', 'created': '2024-11-10 17:09:11', 'submission_id': '1go3hq0'}
{'comment': 'Those flags will come down when the tariffs hit and suddenly everything g is 100% more expensive.', 'created': '2024-11-10 18:01:49', 'submission_id': '1go3hq0'}
{'comment': 'Ugh this would make me want to start putting out the "science is real" style signs and rainbow flags.', 'created': '2024-11-10 18:56:55', 'submission_id': '1go3hq0'}
{'comment': 'Just avoid them … don’t need that kind of hate in any aspect of life. Not to mention, it’s a bit deranged and cultist', 'created': '2024-11-10 17:12:00', 'submission_id': '1go3hq0'}
{'comment': 'I’d hang a few Rainbow flags on my home.', 'created': '2024-11-10 17:41:24', 'submission_id': '1go3hq0'}
{'comment': 'Here\'s a new word that a lot of white people will learn soon:\n\n"Triumphalism"\n\nIt means, "FU! We won, you lost! Suck it down!"\n\nThis was best illustrated in Northern Ireland during the spring, when Protestants mark the famous Battle of the Boyne by William of Orange. They burn bonfires and hold parades. Sounds nice.\n\nThey do it in Catholic neighborhoods in Belfast and elsewhere in NI.\n\nI certainly have the details garbled, being just an American, but the whole vibe is, "FU, We won. Suck it!"\n\nBlack people know all about triumphalist marches: They\'re conducted by people with white hoods.\n\nAs a cishet White person, I have never, but never, experienced this.\n\nUntil now.\n\nJanuary 20th is going to be brutal. And we will all know.', 'created': '2024-11-10 17:59:44', 'submission_id': '1go3hq0'}
{'comment': 'No matter what party you support, the decent thing to do would be to remove the political banners or signs after the election is done.', 'created': '2024-11-10 18:08:28', 'submission_id': '1go3hq0'}
{'comment': 'Why a grown adult feels the need to cover themselves, their house, their vehicles with a billionaires name will forever boggle my mind', 'created': '2024-11-10 18:23:48', 'submission_id': '1go3hq0'}
{'comment': 'I would thank them. No ambiguity as to whether you want to deal with them.\n\nIt is super weird keeping them up all the time. Like those freaks who never put away the Christmas decorations.', 'created': '2024-11-10 16:52:07', 'submission_id': '1go3hq0'}
{'comment': "I can't live by these people. I'm moving out. I refuse to live like this.", 'created': '2024-11-10 17:00:18', 'submission_id': '1go3hq0'}
{'comment': "I'm a petty bitch, so I would be looking up the building codes and zoning -- anything I saw that looked fishy would be immediately (and anonymously) reported.", 'created': '2024-11-10 18:54:03', 'submission_id': '1go3hq0'}
{'comment': 'I have told myself that all my family who loves Trump have unfortunately been victims of being brainwashed by his lies and cult campaign. Maybe it’s not completely true, but it has made it easier for me to feel bad for them when I see stuff like this than to feel disgusted and angry.', 'created': '2024-11-10 19:19:27', 'submission_id': '1go3hq0'}
{'comment': 'Perhaps this calls for a well placed magnifying glass and some sunshine.', 'created': '2024-11-10 22:11:30', 'submission_id': '1go3hq0'}
{'comment': 'Looks like Nazi Germany to me.', 'created': '2024-11-10 23:31:27', 'submission_id': '1go3hq0'}
{'comment': 'Those will likely come down when everything gets more expensive.', 'created': '2024-11-10 17:35:53', 'submission_id': '1go3hq0'}
{'comment': 'I think it’s a good thing they display so we know who they are and which we need to protect ourselves from. It’s better when people show their true colors so that you know to keep your guard up. \nAlso looking at the numbers Idk if fascism won more than complacency since 15 million people just chose to stat home for whatever reason.', 'created': '2024-11-10 18:53:33', 'submission_id': '1go3hq0'}
{'comment': 'Same here. The win only emboldens them to be more obnoxious in their worship.', 'created': '2024-11-10 20:43:48', 'submission_id': '1go3hq0'}
{'comment': '>but do I have to be reminded it of it each da\n\nSadly yes. This bunch has put an individual over country for 8 years and will continue.', 'created': '2024-11-10 16:55:22', 'submission_id': '1go3hq0'}
{'comment': 'I swear I see more people littering out of their cars now, could just be a crazy coincidence..', 'created': '2024-11-10 17:38:20', 'submission_id': '1go3hq0'}
{'comment': "I basically have the same neighbor. I also must pass his house daily. He's had the giant flag up four years since Trump lost to Biden. Ugh.", 'created': '2024-11-10 19:15:45', 'submission_id': '1go3hq0'}
{'comment': 'Cheerleaders following the “mark of the best”. Boycot Tesla!', 'created': '2024-11-10 17:22:38', 'submission_id': '1go3hq0'}
{'comment': 'The only positive thing I can say about homeowners associations is that they tend to legislate this stuff out.', 'created': '2024-11-10 18:54:33', 'submission_id': '1go3hq0'}
{'comment': "I feel this in my bones. Every day driving to work. Every errand. Just walking in the neighborhood. It's everywhere. I can't escape it. I really don't know what to do about it except for maybe moving. Either downtown or to a blue state. Because I won't be able to handle this for 4 years.", 'created': '2024-11-10 18:56:05', 'submission_id': '1go3hq0'}
{'comment': 'I walk out my door and see Trump USA', 'created': '2024-11-10 19:02:02', 'submission_id': '1go3hq0'}
{'comment': 'Those will be in tatters when the Trump recession hits!', 'created': '2024-11-10 19:47:43', 'submission_id': '1go3hq0'}
{'comment': 'If I recall, trump signage stayed up for quite a while after 2016, so you may want to just get used to it and try to not let it bother you.', 'created': '2024-11-10 20:01:11', 'submission_id': '1go3hq0'}
{'comment': 'I have plenty of neighbors exactly like that.', 'created': '2024-11-10 20:49:57', 'submission_id': '1go3hq0'}
{'comment': 'I know exactly how you feel.', 'created': '2024-11-10 20:57:07', 'submission_id': '1go3hq0'}
{'comment': 'To these clowns it is just another sporting event.', 'created': '2024-11-10 21:07:42', 'submission_id': '1go3hq0'}
{'comment': 'thats ok. its their scarlet letter. \n\nthe flags will come down when the economy collapses.', 'created': '2024-11-10 21:18:29', 'submission_id': '1go3hq0'}
{'comment': 'I sympathise. It’s a sickness.', 'created': '2024-11-10 22:17:44', 'submission_id': '1go3hq0'}
{'comment': '🤮', 'created': '2024-11-11 00:05:43', 'submission_id': '1go3hq0'}
{'comment': 'Put a nice rainbow flag up.', 'created': '2024-11-11 00:12:28', 'submission_id': '1go3hq0'}
{'comment': "I'm so glad my HOA bans all political stuff lol, even flags are banned", 'created': '2024-11-11 00:24:39', 'submission_id': '1go3hq0'}
{'comment': 'This is why I live in an HOA', 'created': '2024-11-11 00:31:26', 'submission_id': '1go3hq0'}
{'comment': "“And to top it off, he's actually a friendly guy - always been nice to my family. “\n\nThis is a quote I used to say about people that were nice, turned out when they become racier assholes they are still nice to me, because I’m not POC. I stopped using that line and thought on reciprocating.\n\nYour neighbor is a racist mysogynistic, fascist asshole, treat him as such.", 'created': '2024-11-11 00:39:54', 'submission_id': '1go3hq0'}
{'comment': 'Rent your home out on AirBnB as Trump retreat zone. Oh and move', 'created': '2024-11-11 01:27:09', 'submission_id': '1go3hq0'}
{'comment': 'These trump people suck.', 'created': '2024-11-11 01:33:02', 'submission_id': '1go3hq0'}
{'comment': 'I’m at the point when I go out in public I’m looking around thinking, “ are you one of the dipshits that sold out our democracy?” I’m usually friendly and say hello to people. Now I don’t want to speak to anyone!', 'created': '2024-11-11 02:10:34', 'submission_id': '1go3hq0'}
{'comment': "Just let your dog shit in their yard every day. If they say something, just tell them you're prepping them for getting pooped on in January.", 'created': '2024-11-11 05:58:14', 'submission_id': '1go3hq0'}
{'comment': 'In my town the MAGAs have stated they they will keep up their flags and merch and keep making everything about him simply to “own the libs”. It’s not a political party, it’s a cult.', 'created': '2024-11-11 08:57:41', 'submission_id': '1go3hq0'}
{'comment': 'They want you to be bothered by them. Fuck em. They ain’t shit.', 'created': '2024-11-11 09:32:24', 'submission_id': '1go3hq0'}
{'comment': 'Ugh. I wish I could egg flags', 'created': '2024-11-11 09:39:53', 'submission_id': '1go3hq0'}
{'comment': 'We need to enforce mandatory education background checks before voting. How can we actually allow someone to vote for a RAPIST??', 'created': '2024-11-10 16:57:31', 'submission_id': '1go3hq0'}
{'comment': 'save the "Don\'t blame me, I voted for her!" sign for next year.', 'created': '2024-11-10 17:16:36', 'submission_id': '1go3hq0'}
{'comment': "I would steer clear of anyone, Republican or Dem who keeps a big ol' black dildo mounted proudly on their porch, especially some MAGAT guy.", 'created': '2024-11-10 17:00:27', 'submission_id': '1go3hq0'}
{'comment': "I don't know if you ever heard of Booger Brown but he is a famous cowboy from here. I think he might have a reality show.\n Every year he has this parade through town where people from all over join in on a cattle drive leading up to a rodeo.\n \n I always go for the excitement and I love seeing all the beautiful horses and the kids running around and all the happy people.\n\n This year it was a huge Trump fest. \n As I walked around and to see I saw these people my only thoughts were bad and angry. I had to leave, and I am still sad that I was unable to turn the other cheek and enjoy anyways.", 'created': '2024-11-10 17:48:51', 'submission_id': '1go3hq0'}
{'comment': "Saw so many Trump signs today driving to my Mom's.", 'created': '2024-11-10 17:52:53', 'submission_id': '1go3hq0'}
{'comment': 'Great place for yout dog to piss', 'created': '2024-11-10 17:56:31', 'submission_id': '1go3hq0'}
{'comment': 'https://preview.redd.it/j8s679xkw30e1.png?width=1080&format=pjpg&auto=webp&s=63684d6478364fb383494044efd8854d513d92e3', 'created': '2024-11-10 18:09:29', 'submission_id': '1go3hq0'}
{'comment': "Tell your neighbors that every time you see their flags you're going to donate $5 to planned parenthood. Then, every time you see them, smile and wave and say that PP thanks them for their support!", 'created': '2024-11-10 18:12:10', 'submission_id': '1go3hq0'}
{'comment': "Take comfort that this won't end well for them either. And when they want sympathy, it just won't be there.", 'created': '2024-11-10 18:27:39', 'submission_id': '1go3hq0'}
{'comment': 'Fascists love their flags.', 'created': '2024-11-10 18:29:30', 'submission_id': '1go3hq0'}
{'comment': 'I have a question: I see a lot of vandalism on the maga side. I’m kinda tired of the high road. Are we still against it?', 'created': '2024-11-10 18:32:50', 'submission_id': '1go3hq0'}
{'comment': 'Get your own arsenal of flags ready that says "Dont blame me I voted for Harris".', 'created': '2024-11-10 18:35:00', 'submission_id': '1go3hq0'}
{'comment': 'Just wait. Sometimes within the next few years they will take them down when they see what they voted for. Keep an eye on them knowing this and it will be all the more satisfying knowing when they realized they fucked up', 'created': '2024-11-10 18:35:16', 'submission_id': '1go3hq0'}
{'comment': "My HOA prohibits political signs more than 2 weeks past an election. Do flags count? I'm definitely asking.", 'created': '2024-11-10 18:37:32', 'submission_id': '1go3hq0'}
{'comment': 'Hang up every kind of librul flag you can. You are understandably bummed. They will lose their fucking mind.', 'created': '2024-11-10 19:03:00', 'submission_id': '1go3hq0'}
{'comment': 'As long as fascism in your life is limited to flags and banners, count your blessings.', 'created': '2024-11-10 19:17:50', 'submission_id': '1go3hq0'}
{'comment': "that's the biggest difference in every other election, the flags, and the cult like feel of it, this is what scares people its what reminds us of Nazi's of the 1930s", 'created': '2024-11-10 19:36:52', 'submission_id': '1go3hq0'}
{'comment': "Hang up your own flags: Fuck Donald Trump / Convicted Felons Don't Belong in The White House / Trump's a Racist Rapist Fool.", 'created': '2024-11-10 19:38:29', 'submission_id': '1go3hq0'}
{'comment': 'Hey lightning has to know where to hit!', 'created': '2024-11-10 19:40:20', 'submission_id': '1go3hq0'}
{'comment': "It's normal it's a cult.", 'created': '2024-11-10 20:00:05', 'submission_id': '1go3hq0'}
{'comment': 'Don\'t worry, my man! By March, when the economy takes a shit, he\'ll have buyers remorse, then you can say, "We told ya so!"', 'created': '2024-11-10 20:02:48', 'submission_id': '1go3hq0'}
{'comment': 'People were itching to replace the Confederate Flag 😅', 'created': '2024-11-10 20:21:05', 'submission_id': '1go3hq0'}
{'comment': 'That’s awful. Ignorant people won’t learn.', 'created': '2024-11-10 20:22:07', 'submission_id': '1go3hq0'}
{'comment': 'My guess is as reality starts to sink in those flags will come down.', 'created': '2024-11-10 20:23:15', 'submission_id': '1go3hq0'}
{'comment': 'Be petty and give them something beautifully and insanely liberal to see everyday that will\nMake their coffeee taste like sewer water', 'created': '2024-11-10 20:25:40', 'submission_id': '1go3hq0'}
{'comment': 'You know which neighbor not to trust now. These people proudly label themselves.', 'created': '2024-11-10 21:07:59', 'submission_id': '1go3hq0'}
{'comment': 'Where is the american flag?', 'created': '2024-11-10 21:26:45', 'submission_id': '1go3hq0'}
{'comment': 'They won’t be celebrating in a few months', 'created': '2024-11-10 21:52:35', 'submission_id': '1go3hq0'}
{'comment': "They'll sell those flags even their socks securely, and other government benefits are taken away by the orange conman.", 'created': '2024-11-10 22:03:35', 'submission_id': '1go3hq0'}
{'comment': "Well it's the main course of their identity so, yeah it's loud and obnoxious.", 'created': '2024-11-10 22:04:55', 'submission_id': '1go3hq0'}
{'comment': 'You need a " I told you so" flag for when the sh*t hits the fan.', 'created': '2024-11-10 22:23:46', 'submission_id': '1go3hq0'}
{'comment': 'I guess just use it to affirm the fact that at least _____, and ______ and … \n\nI like “at least I am part of the party that won’t be committing sedition bc of the result.” \n\nAnd “My vote was a vote for ____ even if my candidate didn’t win; the values I was expressing still hold true. \n\nUse it for your own purposes. Thank you for reminding me that I am ______ [someone who believes it still matters to play fair.]', 'created': '2024-11-10 22:31:39', 'submission_id': '1go3hq0'}
{'comment': 'It would be a terrible shame if random dog shit flew over their fence into their garden. Can’t imagine how that might happen?', 'created': '2024-11-10 22:31:52', 'submission_id': '1go3hq0'}
{'comment': 'I’m in Texas and I feel you. Some people still had their 2020 signs out, then just added on.', 'created': '2024-11-10 23:02:43', 'submission_id': '1go3hq0'}
{'comment': 'Sorry, that’s really depressing, but each time you see it, it should remind you to join a resistance group and fight for a better outcome in 2 years, and 4 years down the road.', 'created': '2024-11-10 23:03:43', 'submission_id': '1go3hq0'}
{'comment': 'Bro, I have two neighbors that are in a competition to see who is more MAGA.... I think 1322 has 3 more signs than 1323. They both have two trump flags in their flag pole, a flag on their door, three yard signs, 2 windows have signs and at least 4 bumper stickers per car.... these people would drink his bath Water and ask for seconds.... politics is a hell of a drug.\n\nNot a single America Flag.... \n\n"You can\'t love your country only when you win..." Joe Biden.', 'created': '2024-11-10 23:12:21', 'submission_id': '1go3hq0'}
{'comment': 'I swear I gag every time I see these flags', 'created': '2024-11-10 23:14:16', 'submission_id': '1go3hq0'}
{'comment': 'Flaming arrows', 'created': '2024-11-10 23:22:16', 'submission_id': '1go3hq0'}
{'comment': 'Make a flag that says, "Jesus did not support convicted felon rapists." I\'m sure it will go over well.', 'created': '2024-11-10 23:25:27', 'submission_id': '1go3hq0'}
{'comment': 'Freedom of speech. Just put up your american flag and shun those fuckers.', 'created': '2024-11-11 00:04:50', 'submission_id': '1go3hq0'}
{'comment': 'I hear ya! I have neighbors all along the way home in the country. The poorest of shacks have these dang flags...', 'created': '2024-11-11 00:15:18', 'submission_id': '1go3hq0'}
{'comment': "We need to demonstrate what it means to be a good neighbor. That's how we will win the middle.", 'created': '2024-11-11 02:35:51', 'submission_id': '1go3hq0'}
{'comment': 'Throw that shit in his yard. I put my dogs shit in my neighbors mailboxes each day. One per day. For the next 10 years.', 'created': '2024-11-11 02:36:43', 'submission_id': '1go3hq0'}
{'comment': 'This is their entire personality. Just look at it and think, how pathetic.', 'created': '2024-11-11 03:09:33', 'submission_id': '1go3hq0'}
{'comment': "After the election, it's no longer election interference to steal signs, just petty larceny.", 'created': '2024-11-11 05:20:46', 'submission_id': '1go3hq0'}
{'comment': 'I would put up a flag that says Jeffery Dalmer for president', 'created': '2024-11-11 09:59:27', 'submission_id': '1go3hq0'}
{'comment': 'Make an American flag bandana for your dog. And wear an American flag hat. Wear a blue shirt that says 2028 Dems will likely have to save the U.S. economy again!!', 'created': '2024-11-11 12:40:01', 'submission_id': '1go3hq0'}
{'comment': "My God man I'm in the deep south and don't see that kind of stuff... would prob accidentally rip it down haha.", 'created': '2024-11-11 13:22:15', 'submission_id': '1go3hq0'}
{'comment': 'They really need to get lives.', 'created': '2024-11-11 16:22:18', 'submission_id': '1go3hq0'}
{'comment': 'It’s a slap in the face for minorities and women. That’s how I feel when I see Trump signs still up.', 'created': '2024-11-11 16:29:29', 'submission_id': '1go3hq0'}
{'comment': 'You don’t need to even acknowledge his existence ever again. No smile. No wave. No “how are ya?”\nNo “thanks for picking up my garbage can”. Nothing. Goodbye.', 'created': '2024-11-11 19:01:45', 'submission_id': '1go3hq0'}
{'comment': 'Trumpets will feel the same effects as Democrats when the Trump tarrifs crash the economy.', 'created': '2024-11-11 19:57:36', 'submission_id': '1go3hq0'}
{'comment': 'Please be sure to use his full title: Fascist Felon. Thank you.', 'created': '2024-11-11 20:19:51', 'submission_id': '1go3hq0'}
{'comment': 'Man I’m sorry you gotta see that. \n\n95% of political merch has gone down in my area and absolutely NO ONE is talking about politics right now.', 'created': '2024-11-11 21:56:27', 'submission_id': '1go3hq0'}
{'comment': 'Look up the local law with respect to your county/city. Most have to take down political signage 7-10 days after Election Day. Report them until law enforcement goes to enforce the law. F them.', 'created': '2024-11-11 21:56:56', 'submission_id': '1go3hq0'}
{'comment': "Times I'm glad I live in an HOA", 'created': '2024-11-11 22:00:38', 'submission_id': '1go3hq0'}
{'comment': 'Seriously. Never seen a cult following like this before', 'created': '2024-11-11 22:43:36', 'submission_id': '1go3hq0'}
{'comment': 'Complain to the city about how they are loading up their yard with flags and devaluing your property', 'created': '2024-11-11 23:08:41', 'submission_id': '1go3hq0'}
{'comment': '5 Gallons of gas and a match', 'created': '2024-11-11 23:55:03', 'submission_id': '1go3hq0'}
{'comment': "I have one of those neighbors too. He's built a 7ft privacy fence all the way to the sidewalk,with signs about trespassers being shot and cameras pointed front,back & sides of his house . He has a big trump flag with a spotlight on it. Gives dirty looks when I walk my dogs, like he owns the public sidewalk. It's our reality 🥺.", 'created': '2024-11-11 23:57:41', 'submission_id': '1go3hq0'}
{'comment': 'Just pay someone to steal them.', 'created': '2024-11-10 17:32:25', 'submission_id': '1go3hq0'}
{'comment': "Just remember. He is definitely more miserable than you, so there's that. His was the old grudge and misery vote.", 'created': '2024-11-11 04:19:29', 'submission_id': '1go3hq0'}
{'comment': "There hasn't been a safe maga flag or sign in my neighborhood for years and no one's caught on yet. They just keep buying new ones.", 'created': '2024-11-10 17:12:07', 'submission_id': '1go3hq0'}
{'comment': "You have to find quiet resolve within, like I have, that they are the garbage on the side of the road that's irrelevent.\xa0\n\n\nYou can't control them. And we all know we're smarter than they are.\xa0\n\n\nThey are no different than the Germans flying the Nazi flag, thinking they 'won'.\xa0\n\n\nThey didn't win. **THEY. DON'T. WIN.** Because we are still here and we will do whatever is necessary to keep humanity alive.\xa0\n\n\nYou rise above this. You're better than them.\xa0", 'created': '2024-11-11 01:20:39', 'submission_id': '1go3hq0'}
{'comment': 'Deep in the cult. No HOA, I presume?', 'created': '2024-11-10 17:18:03', 'submission_id': '1go3hq0'}
{'comment': 'reminds me of all the pictures of fascist Germany just flags on flags on flags.', 'created': '2024-11-10 17:37:14', 'submission_id': '1go3hq0'}
{'comment': 'Why do they need so many flags??? How is one not enough?\n\nI can’t believe I’m saying this, but at least the nazi flags kinda looked cool. Like if you were an alien seeing both for the first time and were asked which one is aesthetically pleasing…', 'created': '2024-11-10 17:39:48', 'submission_id': '1go3hq0'}
{'comment': 'Why can’t they just put up a US flag and be done with it?', 'created': '2024-11-10 17:48:56', 'submission_id': '1go3hq0'}
{'comment': 'Let them continue to gloat in their ignorance and make it easy for the rest of us to know who they are and the traitorous rapist felon they unconditionally support.', 'created': '2024-11-10 18:02:01', 'submission_id': '1go3hq0'}
{'comment': "It's been 12 years of this. And I see no reason why it will get any better.\n\nMass arrests, abolishing term limits, seizure of total political control... The only area that they won't discriminate is the indiscriminate mass deportations.\n\nI think we're in for a bad time.", 'created': '2024-11-10 18:02:48', 'submission_id': '1go3hq0'}
{'comment': 'Soooo tacky', 'created': '2024-11-10 18:21:29', 'submission_id': '1go3hq0'}
{'comment': 'Maybe get some funny anti facist yard signs', 'created': '2024-11-10 18:23:47', 'submission_id': '1go3hq0'}
{'comment': 'They are the most obnoxious people in the states. I live in Texas and went to a Christmas event and there were got damn Christmas shirts of Trump in Santa hats. You can’t escape it.', 'created': '2024-11-10 18:36:57', 'submission_id': '1go3hq0'}
{'comment': "As an outsider, I'd say: don't hold it against him. He's voting for what his thinks is right. Ignorance rather than malice, I assume. So save your hatred for the people who are knowingly tearing democracy down. Your neighbour will work it out eventually, and may well turn into an ally when they do. The fascists want to divide society. Let's not let them.", 'created': '2024-11-10 19:13:57', 'submission_id': '1go3hq0'}
{'comment': "No, there is no way of avoiding it. Be patient, my friend. Let the tariffs begin. Watch the prices go up and unemployment increase. Watch your neighbors' daughter need abortion care then die when she doesn't get it. You'll see. They will see. And it won't be long...", 'created': '2024-11-10 19:24:08', 'submission_id': '1go3hq0'}
{'comment': 'I have a nephew I wanted to send a few choice words about nice job not thinking of your daughter’s future, but for the sake of family…..', 'created': '2024-11-10 19:30:55', 'submission_id': '1go3hq0'}
{'comment': 'Be nice to him Do you know what kind of alpha male it takes to fly another man’s name on a flag over your home ?', 'created': '2024-11-10 19:37:17', 'submission_id': '1go3hq0'}
{'comment': 'Plant some big ass trees to block the view.', 'created': '2024-11-10 19:37:34', 'submission_id': '1go3hq0'}
{'comment': "I really wish they'd make people take down these flags and signs after Election Day. It ruins my walk seeing his name everywhere. It's like trying to go for a nice morning stroll and seeing Hitler everywhere.", 'created': '2024-11-10 19:55:59', 'submission_id': '1go3hq0'}
{'comment': 'Egg their house!', 'created': '2024-11-10 20:19:00', 'submission_id': '1go3hq0'}
{'comment': 'I wonder if that deck was built with a permit', 'created': '2024-11-10 20:33:05', 'submission_id': '1go3hq0'}
{'comment': 'Until we all collectively shun these people by acting like they don’t exist and supporting only companies that are not billionaire run fascist factories, we will stay here. Our gains will remain ephemeral with this hellish back and forth every 2 to 4 years. This party has to take a stake to the heart. They’ve never had to deal with penalties. That’s why these losers are flaunting it. Yeah it takes energy. I’ve dumped family, friends, social media accounts, so many things it feels there is no escaping. But I have to try. I have to try to make them feel judged and seen for the scum they are.', 'created': '2024-11-10 20:35:57', 'submission_id': '1go3hq0'}
{'comment': 'Shit on their lawn', 'created': '2024-11-10 22:11:12', 'submission_id': '1go3hq0'}
{'comment': 'Someone took all the Harris signs down from my street last night. Just… why.', 'created': '2024-11-10 22:51:31', 'submission_id': '1go3hq0'}
{'comment': 'It’s to remind the tens of millions of people who couldn’t be bothered to vote.', 'created': '2024-11-10 22:59:09', 'submission_id': '1go3hq0'}
{'comment': 'Got a massive Gadsden Flag with a rainbow background. Plan to hang it tomorrow', 'created': '2024-11-10 23:34:52', 'submission_id': '1go3hq0'}
{'comment': 'Drop off a “Learn Russian for dummies” book at their door.', 'created': '2024-11-10 23:56:15', 'submission_id': '1go3hq0'}
{'comment': 'Flag pole. Did he take down the American Flag to raise Trump or did he erect it specifically for Trump?', 'created': '2024-11-10 23:58:03', 'submission_id': '1go3hq0'}
{'comment': 'Throw bags of dog shit into his yard', 'created': '2024-11-11 00:14:08', 'submission_id': '1go3hq0'}
{'comment': 'I have a neighbor that has banners, flags, signs, bumper stickers, etc. posted all 0ver his yard. He took it all down yesterday, and I was like “finally”. However, he apparently was just getting ready to cut his grass and change his signage for post-election season. He now has about 15 “Trump is my president” lining the perimeter of his yard.', 'created': '2024-11-11 01:03:30', 'submission_id': '1go3hq0'}
{'comment': 'Now that’s Trump derangement syndrome', 'created': '2024-11-11 02:43:39', 'submission_id': '1go3hq0'}
{'comment': 'Steal it and leave him $20 so you don’t feel guilty', 'created': '2024-11-11 09:58:04', 'submission_id': '1go3hq0'}
{'comment': 'Strap in. We’ll be seeing the MAGA merch for the next decade. MAGA will need to be defeated at least 2 presidential elections in a row to go away.', 'created': '2024-11-11 16:26:22', 'submission_id': '1go3hq0'}
{'comment': 'So pukey 🤮🤢', 'created': '2024-11-12 17:32:02', 'submission_id': '1go3hq0'}
{'comment': 'UPDATE: He has taken all his flags down, with the exception of the little one in his garden. 🙄', 'created': '2024-11-12 17:35:38', 'submission_id': '1go3hq0'}
{'comment': 'My dog always shits on the lawn of the people that had a Q-anon flag up for years. They’ve since taken it down but she KNOWS.', 'created': '2024-11-14 18:43:24', 'submission_id': '1go3hq0'}
{'comment': "Honestly, y'all need to let this stuff just roll right off you and move on. Every person has a right to their form of peaceful speech, even if it's a flag that represents awful things. \n\nThis isn't the end and there are more liberals than conservatives in this country so maybe find solace in that. We just need to figure out how to get them all to the polls when it matters.", 'created': '2024-11-10 20:30:16', 'submission_id': '1go3hq0'}
{'comment': "I bet I'm gonna catch shit from this but this is what the first amendment is all about - freedom to express yourself.\n\nSaying stuff like this is just ammunition for conservatives to use to try and say it's OK to take away freedom of expression", 'created': '2024-11-10 22:32:06', 'submission_id': '1go3hq0'}
{'comment': '[removed]', 'created': '2024-11-10 17:12:14', 'submission_id': '1go3hq0'}
{'comment': 'You can talk to him about it but first you need to understand what it is that drew him to tRump. Be curious and nice. He will sell you where to nudge him. \n\nRemember you probably agree with him on what you want in the end but differ on how to get there.', 'created': '2024-11-10 17:37:47', 'submission_id': '1go3hq0'}
{'comment': 'Going off your comment, he’s just a good guy who voted differently. If you talk to him, maybe try to just ask some open questions as it relates to how he came to vote for Trump if the subject comes up before getting into an argument. No loaded questions, see how it goes. Sometimes people don’t know exactly why they hold a particular opinion and they only realize it when they can’t elaborate.', 'created': '2024-11-10 18:58:12', 'submission_id': '1go3hq0'}
{'comment': 'I just want to say, a lot of Trump voters *are* good people. Some of them are racist, sexist, etc., but most of them have just been misled.\n\nYes, I blame them for what’s to come, but mostly, I feel sorry for them. They were sucked into the giant right wing propaganda machine and duped. I was once duped by that same machine. I luckily didn’t get pulled in ***too deep*** before seeing the mask slip on enough talking heads, which allowed me to take a step back and better analyze what I was actually supporting.\n\nIf we ostracize these people and prevent them from ever seeing the left as a friend, then we can’t be shocked when they never come over to our side.\n\nEvery single one of my coworkers is a Trump supporter. They know I’m not. I could go around telling them they’re all racist, sexist pigs, but instead, I try to meet them at their level, and when we talk about hot button issues, I stay away from the obvious left talking points and instead mention how there’s a lot of misinformation out there on both sides, while subtly telling them where some of the misinformation is on their side.\n\nMy coworkers respect me, and we are friendly with each other. There’s a bit of camaraderie between us, so when I subtly point at something, sometimes they go look into on their own, and then they come back with a slightly less extreme position. I may not have gotten them to completely drop Trump, but I’m planting seeds that will allow them to see the full picture for themselves one day.\n\nAnd the only way these people will ever come out of the trance is if they believe they came to the truth all on their own, so all we can do is nudge them in the right direction.\n\nWhen we push people with the typical left talking points, it only causes them to dig in deeper, and when we cut them from our lives, it makes it so they will never see or hear anything outside of the right wing propaganda machine, and they’ll be lost forever.', 'created': '2024-11-10 18:17:26', 'submission_id': '1go3hq0'}
{'comment': "I mean....has anyone else figured out that the non (R) voters generally tend to be the more intelligent ones? \n\nI'm seeing a drone, hook/arcade claw like, system that just stealthily whisks these wastes of nylon into a dumpster until they're so frustrated they...just stop.", 'created': '2024-11-10 19:26:18', 'submission_id': '1go3hq0'}
{'comment': 'THIS is why they won though. MAGA fans are super passionate about politics & make their opinions known. Liberals, much less so. Most Dems will disengage from politics/current events for the next 3 1/2 yrs until the next Presidential election ramps up. While the Far Right is engaged & enraged 24/7. They consume Alt Right media all throughout the day & dream about it at night.', 'created': '2024-11-10 19:42:37', 'submission_id': '1go3hq0'}
{'comment': 'I am starting to like the concept of HOAs more.', 'created': '2024-11-10 19:57:28', 'submission_id': '1go3hq0'}
{'comment': 'There’s two neighbors down the street who have Trump flags and banners. I avoided walking my dog down there for the last month. Today I walked down there and the flags and banners are still up.. My dog took a dump on the one lawn. I forgot my poop bag. After getting home, I forgot to go back. I’ve never done this before, but that’s what I think of them.', 'created': '2024-11-10 22:54:44', 'submission_id': '1go3hq0'}
{'comment': 'They aren’t winners. They voted against the constitution, the rule of law, empathy, decency, etc. \n\nNever trust a republican again.', 'created': '2024-11-10 19:32:12', 'submission_id': '1go3hq0'}
{'comment': '50 years ago Republicans started fight against Public Education \n\nThey think it’s paying off dividends', 'created': '2024-11-10 20:59:12', 'submission_id': '1go3hq0'}
{'comment': "If anything, they're actually *more* mad this time around, for reasons I can't begin to fathom.\n\nMaybe they know, deep in their hearts, that Musk found a way to fuck with the vote count.", 'created': '2024-11-10 19:20:38', 'submission_id': '1go3hq0'}
{'comment': '“When they go low, we go high”', 'created': '2024-11-10 19:20:07', 'submission_id': '1go3hq0'}
{'comment': 'one goes with the other when you feel your ideology is superior', 'created': '2024-11-10 19:36:49', 'submission_id': '1go3hq0'}
{'comment': "They'll still find a way to blame Democrats. Remember, they're Christians, they can do no wrong.", 'created': '2024-11-10 20:10:22', 'submission_id': '1go3hq0'}
{'comment': 'Oh yeah oh yeah, I’m gonna spend the next 4 years sticking it to the magats when shit goes south. The schadenfreude will be delicious', 'created': '2024-11-10 17:14:55', 'submission_id': '1go3hq0'}
{'comment': 'Can we get Trump I did this stickers', 'created': '2024-11-10 22:51:30', 'submission_id': '1go3hq0'}
{'comment': 'Nope, it’s still the democrat’s fault, they are just rigging the deep state to make Trump look bad. The second the economy gets bad be ready to hear about how the democrats are destroying our country and we have to keep fighting the woke liberals even when we are four years into a Republican controlled house, senate, and presidency. We live in a world without facts and logic, I don’t think people will be capable of rational thought after the popular vote was won by such an obvious fuck head idiot. He even mimed how he’s going to be sucking Putin’s dick on live TV and no one gave a fuck. \n\nWe could have true hyperinflation and Trump could go on TV and say “the trans immigrants are destroying our economy” and all of his followers would cheer for him and vote for him a third time. People are fucking dumb.', 'created': '2024-11-11 00:56:16', 'submission_id': '1go3hq0'}
{'comment': '\\* they’re going to find a way to blame that on the Democrats too', 'created': '2024-11-10 23:40:25', 'submission_id': '1go3hq0'}
{'comment': 'Exactly.', 'created': '2024-11-10 17:06:00', 'submission_id': '1go3hq0'}
{'comment': 'Can\'t wait to start wearing t-shirt that says "don\'t blame me I voted for Harris".', 'created': '2024-11-10 21:45:49', 'submission_id': '1go3hq0'}
{'comment': "But hey, at least we'll have $2 gas and no traffic, right? /sarcasm", 'created': '2024-11-11 00:23:06', 'submission_id': '1go3hq0'}
{'comment': 'Time to make some “Don’t Blame Me, I Voted For Biden” merch', 'created': '2024-11-11 01:05:21', 'submission_id': '1go3hq0'}
{'comment': 'This. There will be a terrible recession in the third year if he does what he says he’s going to.', 'created': '2024-11-11 08:16:27', 'submission_id': '1go3hq0'}
{'comment': 'Honestly, I don’t even blame Donnie. He’s a grifter who knows how to grift. But what he capitalized on runs so much deeper than one politician. It’s a systemic failure. Everything from our education system to healthcare to corporate interests to the media. It all led to tens of millions being susceptible to his rhetoric.\n\nWhat’s saddest for me is I don’t know how to fix it.', 'created': '2024-11-11 20:00:37', 'submission_id': '1go3hq0'}
{'comment': 'Do you ever get so angry you want to tell them to pound sand? I know I want to tell this guy to get that dog shit off his lawn, but I was raised better than to go down to Magas level.', 'created': '2024-11-10 16:56:23', 'submission_id': '1go3hq0'}
{'comment': 'But it won’t affect him. Only the people they hate. Boy are they gonna have a rude awakening soon', 'created': '2024-11-10 17:16:36', 'submission_id': '1go3hq0'}
{'comment': "I actually avoided saying hi to him the first couple days after the election. Now it's like, if I see him and sees me, I'll wave and say hi, but that's about it.", 'created': '2024-11-10 16:53:14', 'submission_id': '1go3hq0'}
{'comment': "How old is he? Any chance he's on SS or Medicare? Because you're going to watch him probably lose his house and have to move.", 'created': '2024-11-10 19:06:56', 'submission_id': '1go3hq0'}
{'comment': 'I don\'t hold back, anymore. If someone asks, I calmly and politely state, "a rational adult who understands observable reality and has empathy could never vote for Trump." I don\'t engage any further. No yelling. No anger. Just making sure they understand that they are intellectual midgets in my eyes.', 'created': '2024-11-10 23:28:18', 'submission_id': '1go3hq0'}
{'comment': 'Even worse, they will report us for treason if it comes down to that.', 'created': '2024-11-10 18:28:28', 'submission_id': '1go3hq0'}
{'comment': 'You should be questioning your faith/trust in REPUBLICANS.', 'created': '2024-11-10 19:33:20', 'submission_id': '1go3hq0'}
{'comment': 'Mine too!', 'created': '2024-11-10 17:24:58', 'submission_id': '1go3hq0'}
{'comment': "At least they're letting us know whom to avoid.", 'created': '2024-11-10 20:52:57', 'submission_id': '1go3hq0'}
{'comment': 'I’m wondering if they will still be proudly flying them once he trashes the economy, amongst the many other awful things he has in store.', 'created': '2024-11-10 16:53:10', 'submission_id': '1go3hq0'}
{'comment': 'My neighbor from Ukraine with family there voted for Trump.', 'created': '2024-11-10 19:18:30', 'submission_id': '1go3hq0'}
{'comment': 'This is the way to go', 'created': '2024-11-10 19:21:17', 'submission_id': '1go3hq0'}
{'comment': "Yep. They're so proud. Sad.", 'created': '2024-11-10 17:09:27', 'submission_id': '1go3hq0'}
{'comment': 'Honestly, that is the best decision to make in this scenario. If you own the house, you’re basically screwed unless you sell. Otherwise, leave for a bluer city or put up a counter sign. Counter sign might upset neighbors tho', 'created': '2024-11-10 18:05:31', 'submission_id': '1go3hq0'}
{'comment': 'Petty Party Unite!', 'created': '2024-11-10 19:03:52', 'submission_id': '1go3hq0'}
{'comment': "A lot of states don't allow anonymous reporting of code violations - desantia banned anonymous complaints in Florida - every has the right to face their accuser", 'created': '2024-11-11 06:24:34', 'submission_id': '1go3hq0'}
{'comment': 'Buy your "how\'s that tariff working out for you" flag now.', 'created': '2024-11-10 19:23:30', 'submission_id': '1go3hq0'}
{'comment': "I've been the exact same way. It's horrible what that bastard and his cronies have done to divide us.", 'created': '2024-11-11 02:23:51', 'submission_id': '1go3hq0'}
{'comment': 'The closed umbrella?', 'created': '2024-11-10 17:37:39', 'submission_id': '1go3hq0'}
{'comment': 'They took it down in place of this garbage.', 'created': '2024-11-10 21:52:40', 'submission_id': '1go3hq0'}
{'comment': "My community does have an HOA, but I'm not seeing any rule about something such as this.", 'created': '2024-11-11 23:00:55', 'submission_id': '1go3hq0'}
{'comment': 'Nope. But I learned about one in school - the Nazis.', 'created': '2024-11-11 23:01:36', 'submission_id': '1go3hq0'}
{'comment': "This might be the best answer. Of course, it's easier said than done, but nothings impossible. We really are better than them. 👍", 'created': '2024-11-11 01:31:00', 'submission_id': '1go3hq0'}
{'comment': "An HOA is more than likely deep in the cult so it's probably allowed.", 'created': '2024-11-10 17:21:25', 'submission_id': '1go3hq0'}
{'comment': 'A guy in my neighborhood put up a Trump flag two weeks before the election. The morning after the election he took it down and put up an American flag.', 'created': '2024-11-10 18:05:45', 'submission_id': '1go3hq0'}
{'comment': 'TDS is an actual disorder.', 'created': '2024-11-11 04:36:40', 'submission_id': '1go3hq0'}
{'comment': 'Remind them: \n\nRemember, when his lies hit your personal fan, a liberal didn’t fill in the oval on your ballots. 🤣', 'created': '2024-11-10 20:21:24', 'submission_id': '1go3hq0'}
{'comment': "And they're right...", 'created': '2024-11-10 21:23:31', 'submission_id': '1go3hq0'}
{'comment': 'They’re clueless to the history of tre45on’s long-standing debts to Vlad, elmo’s too. It’s quite the tale, but they hate education. Ope!', 'created': '2024-11-10 20:23:29', 'submission_id': '1go3hq0'}
{'comment': 'Not if the Democrats take off the old lady gloves and start fighting back, viciously. Kamala and Tim did a little of that during the election and you saw the MAGAts\' reactions didn\'t you? Of all the horrible things the MAGAts have said about people over the years, to think they lost their minds over being branded simply "weird". It wouldn\'t take much to put them in their place. They are incredibly thin skinned.', 'created': '2024-11-10 23:56:27', 'submission_id': '1go3hq0'}
{'comment': 'They won\'t see it. They\'ll never see their cult leader as anything but absolutely perfect. When trump squashed Lankfords border bill, they bought trumps line that it was a bad border bill over and over again. It wasn\'t that Trump was wrong it was that the "democrats snuck really bad things in it". When Trump supporters stormed the Capitol "it was actually ANTIFA that did that but we do need to see those voter irregularities". \n\nIt\'s always "we would have these great outcomes but liberals sabotaged it". They\'ll never acknowledge responsibility, just like their dear benevolent leader.', 'created': '2024-11-10 20:43:59', 'submission_id': '1go3hq0'}
{'comment': 'https://preview.redd.it/0j8l74drk90e1.jpeg?width=722&format=pjpg&auto=webp&s=ae0aa6fd3e53174c8ab9742d0947cdba1a4839ad\n\nIt comes in gallon containers!', 'created': '2024-11-11 13:14:05', 'submission_id': '1go3hq0'}
{'comment': 'My maga neighbors tried to sell last April, now they are stuck here for years thanks to Trump! I can laugh about that since they hate it in a neighborhood.', 'created': '2024-11-11 06:38:31', 'submission_id': '1go3hq0'}
{'comment': 'Yessssss', 'created': '2024-11-11 01:12:10', 'submission_id': '1go3hq0'}
{'comment': '*Harris', 'created': '2024-11-11 14:14:58', 'submission_id': '1go3hq0'}
{'comment': 'Point well made.', 'created': '2024-11-12 00:53:11', 'submission_id': '1go3hq0'}
{'comment': 'I do love the “pound sand” put down.', 'created': '2024-11-10 19:32:40', 'submission_id': '1go3hq0'}
{'comment': 'You should wave and smile, lol…doom is coming. They think it won’t affect them.', 'created': '2024-11-10 17:01:50', 'submission_id': '1go3hq0'}
{'comment': 'These are the kind of people who are only nice to people they think are "one of the good ones" or they pretend to like you while secretly hating your guts. That\'s how they convince themselves and everyone else that they\'re nice people while voting for the fascist.', 'created': '2024-11-10 17:24:37', 'submission_id': '1go3hq0'}
{'comment': "Don't. Really don't. He voted against your rights, don't give him solace. Let him ask what's wrong and tell him he voted to defund your kids school and take away your daughters rights. Tell him why you aren't friendly. Don't let him keep thinking that how he voted doesn't effect real people. \n\nThey want all the joy of stripping your rights with none of the guilt", 'created': '2024-11-10 17:53:46', 'submission_id': '1go3hq0'}
{'comment': "I'd stop doing teh wave and hi, just look away and snub; he literally voted to remove all your rights. Personally, I'd glare and ponder giving the finger, but that's just me.", 'created': '2024-11-10 17:46:23', 'submission_id': '1go3hq0'}
{'comment': "That's absolutely mindboggling that you would speak to him or show him any kind of grace whatsoever. What is wrong with you?", 'created': '2024-11-10 19:28:15', 'submission_id': '1go3hq0'}
{'comment': 'Just quietly plot your revenge.', 'created': '2024-11-10 19:26:33', 'submission_id': '1go3hq0'}
{'comment': "I don't trust anyone who wasn't open about supporting Harris. My neighbors and coworkers who I enjoy chatting with who never say anything about politics could be secret Trump voters.", 'created': '2024-11-10 20:10:22', 'submission_id': '1go3hq0'}
{'comment': 'Exactly. When things go to shit, I might actually say, "so how\'s your boy making America great again exactly?"', 'created': '2024-11-10 16:54:43', 'submission_id': '1go3hq0'}
{'comment': 'Of course. When the consumer prices shoot through the roof, he’ll just blame democrats. It’s always their fault.', 'created': '2024-11-10 16:56:32', 'submission_id': '1go3hq0'}
{'comment': 'Buy a flag that says "Don\'t blame me, I voted for the non-felon" and stock up on stickers that show Trump pointing at the text "I did this."', 'created': '2024-11-10 16:59:12', 'submission_id': '1go3hq0'}
{'comment': 'I mean, he already did, last time. \n\nThey are goldfish', 'created': '2024-11-10 16:55:48', 'submission_id': '1go3hq0'}
{'comment': 'So did mine. And then last night they got two brand-new quads delivered, it was never the economy.', 'created': '2024-11-10 19:34:22', 'submission_id': '1go3hq0'}
{'comment': 'Wait until leopards eat their faces.', 'created': '2024-11-10 20:26:17', 'submission_id': '1go3hq0'}
{'comment': 'Nothing like pulling the ladder up behind you, jerks', 'created': '2024-11-11 00:45:36', 'submission_id': '1go3hq0'}
{'comment': 'Ready for shit to hit the fan for people like him but the rest of us don’t deserve this', 'created': '2024-11-10 17:15:25', 'submission_id': '1go3hq0'}
{'comment': 'Already spoke to the realtors. I’m liquidating all of my assets. I don’t want to hear of republicans or their leader ever again. My money and my children leave with me.', 'created': '2024-11-10 19:58:37', 'submission_id': '1go3hq0'}
{'comment': 'This sure seems representative of nazism. Waving this flag is considered patriotism, and the American flag is a lessor thing.', 'created': '2024-11-10 21:54:05', 'submission_id': '1go3hq0'}
{'comment': "Mine doesn't allow any flags visible from any home besides the American flag.", 'created': '2024-11-11 23:07:31', 'submission_id': '1go3hq0'}
{'comment': 'What the Democrats should do once trump gets reinstalled is mock him and his family constantly and mercilessly. Just stick it to them at every possible chance. Taking the “high road” didn’t work so we might as well have some fun and shred the clown at every opportunity. It will drive him nuts.', 'created': '2024-11-11 06:07:52', 'submission_id': '1go3hq0'}
{'comment': 'He won’t make it that long. One way or another, Vance will be in the Oval Office within the next 4 years. Honestly, I’d rather have an intra-party coup that keeps us in NATO than have Trump in the OO. If we join the Circa 2024 Axis, we’re fucked.', 'created': '2024-11-11 00:17:46', 'submission_id': '1go3hq0'}
{'comment': 'Watching Australia news (channel 9) just before election night. There was someone they were speaking to from the US that mentioned ANTIFIA had caused trouble during Trumps inoguration back in 2016. Another Lie! If Harris had won they were already prepped to blame ANTIFIA for what we all know the MAGA cult would have done.', 'created': '2024-11-10 23:07:36', 'submission_id': '1go3hq0'}
{'comment': 'They will see high food prices and interest rates.', 'created': '2024-11-11 06:39:34', 'submission_id': '1go3hq0'}
{'comment': 'Exactly. And then when it gets bad, you get to look him in the eyes, smile, and say "this is what you voted for."', 'created': '2024-11-10 18:37:44', 'submission_id': '1go3hq0'}
{'comment': 'Unfortunately, since the GOP now has the \'trifecta\', I\'m curious to see how they explain their ineptitude. \n\nHowever, if they do away with the ACA (as trump promised and his "concepts of a plan" will be so much "greater") I\'ll likely not be around if they do - as I\'ll not be able to afford healthcare. I\'m only one of the hundreds of thousands (likely more) that this will affect.', 'created': '2024-11-10 19:19:45', 'submission_id': '1go3hq0'}
{'comment': "I would be worried about repercussions, for example, just how un-neighborly can the neighbor become? I wouldn't want to invite problems. Maybe I'm a coward, but they live across the street from each other and I personally would avoid drama. \nedit for clarify", 'created': '2024-11-10 18:36:28', 'submission_id': '1go3hq0'}
{'comment': 'I’d focus on the people who still think it is reasonable to describe themselves as a republican, still.', 'created': '2024-11-10 20:23:11', 'submission_id': '1go3hq0'}
{'comment': 'I refuse to interact with these people. When things start going bad, and they start whining, I’m just going to shake my head.', 'created': '2024-11-10 17:07:40', 'submission_id': '1go3hq0'}
{'comment': "A few weeks into Feb when the economy is exactly the same as it is now he'll be taking credit for it. And his supporters will believe him and their propaganda machine validating his lies.", 'created': '2024-11-10 17:38:52', 'submission_id': '1go3hq0'}
{'comment': 'True', 'created': '2024-11-10 17:05:24', 'submission_id': '1go3hq0'}
{'comment': 'Where can I get these stickers?', 'created': '2024-11-10 17:44:54', 'submission_id': '1go3hq0'}
{'comment': 'Sad but true', 'created': '2024-11-10 17:05:44', 'submission_id': '1go3hq0'}
{'comment': 'Wait wait. \nMy Goldies are adorable!', 'created': '2024-11-11 08:32:18', 'submission_id': '1go3hq0'}
{'comment': "Yup. I live in a middle class area in a blue state but very red town. My neighbors are older than my husband and I and clearly have more money cause they have been getting work done on their homes, new cars, and going on vacations these last couple years. I'd say they're doing just fine.", 'created': '2024-11-10 19:43:50', 'submission_id': '1go3hq0'}
{'comment': 'Can we make a bunch of “I did that” stickers for Trump? Slap those onto everything at the grocery store when inflation gets worse.', 'created': '2024-11-10 21:10:04', 'submission_id': '1go3hq0'}
{'comment': 'Hopefully things get bad enough for them that they have no option but to see the truth, but I think they will just blame democrats to the point of rallying around the idea of killing us off so we stop “sabotaging” the country.', 'created': '2024-11-10 21:27:53', 'submission_id': '1go3hq0'}
{'comment': 'I hope they have something in mind to replace it. I know they are raising the price of insulin back up…these guys are cruel bastards…', 'created': '2024-11-10 21:21:39', 'submission_id': '1go3hq0'}
{'comment': 'They will blame the “enemy within” and mobilize the right around suppressing dissent so they can enact their policies without the TDS inflicted Dems sabotaging them.', 'created': '2024-11-10 21:32:10', 'submission_id': '1go3hq0'}
{'comment': 'So long as you tell him why and just ignore him he will probably not interact with you and feel a little pain when you see each other, especially if you had a good relationship before.', 'created': '2024-11-10 19:01:28', 'submission_id': '1go3hq0'}
{'comment': 'They’re already doing that. He took credit for the stock market breaking a new record on Wednesday, despite the fact that it’s set the “best stock market ever” record **four times** in 2024.', 'created': '2024-11-10 17:40:05', 'submission_id': '1go3hq0'}
{'comment': "I don't know that there are any. yet. Start a small side hustle and make them, sell them, ???, profit!", 'created': '2024-11-10 18:49:16', 'submission_id': '1go3hq0'}
{'comment': 'I found some on etsy', 'created': '2024-11-11 07:23:02', 'submission_id': '1go3hq0'}
{'comment': 'If he does, he will give in to the flattery (and likely money) from the insurance big whigs and will reinstate the "prior conditions" clause. This is a real fear.', 'created': '2024-11-11 12:09:18', 'submission_id': '1go3hq0'}
{'comment': 'and his followers ate it up like usual without any fact checking', 'created': '2024-11-10 18:28:50', 'submission_id': '1go3hq0'}
{'comment': 'I’m afraid so.', 'created': '2024-11-11 14:05:14', 'submission_id': '1go3hq0'}
{'comment': "Yes they did. Had to listen to two of my coworkers talk about how good the market was for 45 mins. Then they started talking about how they wish they could get into stocks. Nevermind it's been great for most of Bidens term and I'm sure rate cuts had nothing to do with it", 'created': '2024-11-11 12:14:08', 'submission_id': '1go3hq0'}
{'comment': 'I am not mad about wether the election was stolen or not. I am mad as fuck about how as soon as Trump took the lead on election night, the right wing nut jobs went silent about election fraud. Crickets. Voter fraud? What voter fraud? It’s only stolen if they lose! And we let these MAGATs get away with this. Not enough people mad about this to call it out! 🤔🤷\u200d♂️', 'created': '2024-11-10 16:29:30', 'submission_id': '1go2sdb'}
{'comment': 'I don’t like conspiracy theories. To avoid that, a forensic investigation of external influences on this election is warranted.', 'created': '2024-11-10 17:09:41', 'submission_id': '1go2sdb'}
{'comment': 'I think it might not have been stolen, but maybe manipulated but not in the sense of strictly illegal behavior but in the sense of Elon Musk buying the largest, most influential social media platform in the world, and being allowed to use it however he wanted.', 'created': '2024-11-10 16:59:42', 'submission_id': '1go2sdb'}
{'comment': 'This election loss was painful, extremely painful especially given that we know what is at stake. Is this perplexing? Yes. is it unsettling? Absolutely. \n\nRight now, all we have is data suggesting that a lot of Dems sat this out and Trump got his entire base to show up. The one thing I am confident in is Kamala had a hell of a team together ready to fight against anything nefarious. If they saw anything that indicated suspicion, I feel confident they would have fought it.\n\nIf reputable sources come forward with legitimate concerns, democrats will fight it but as it stands right now, we don’t have proof. In the unlikely chance there was some massive scheme that stole the election, that won’t be proven here on Reddit. \n\nI’m all for the Democratic Party exploring legitimate election concerns but I don’t want us to fall into the same behaviors we criticized the far right for the past four years.', 'created': '2024-11-10 16:27:25', 'submission_id': '1go2sdb'}
{'comment': 'As Reagan once said, "Trust, but verify." Trump has told us exactly who he is for the last nine years. He has told us he is perfectly willing and able to cheat. Why are we now trusting him to have been honest?', 'created': '2024-11-10 16:59:35', 'submission_id': '1go2sdb'}
{'comment': 'So, maga unconditionally believes everything Trump tells them, he runs his campaign largely on claims of rigged elections and massive voter fraud, but now they want to simply ignore everything he was telling them at every single rally over the last several years and not question any of it, simply because he won? How can this not seem odd to any sane person?', 'created': '2024-11-10 16:39:35', 'submission_id': '1go2sdb'}
{'comment': 'Not this time! You see, when Trump wins, the election integrity is just fine. Literally overnight, every single election "problem" was resolved. No dead people voted, no Dominion voting machines were corrupted, there were no problems with the voter rolls. Isn\'t that amazing!?', 'created': '2024-11-10 17:15:28', 'submission_id': '1go2sdb'}
{'comment': 'But is anyone doing anything about these suspicions? Is anyone investigating this or is our current government just going to lay back and shrug their shoulders? Based on comments on this very thread there appear to be some very concerning facts that deserve to at least be looked into by officials.', 'created': '2024-11-10 17:53:39', 'submission_id': '1go2sdb'}
{'comment': 'Republicans have been manipulating and stealing elections since Reagan; they now have outside help and the perfect sock puppet operating for their benefits.', 'created': '2024-11-10 18:10:38', 'submission_id': '1go2sdb'}
{'comment': "This was life and death for Trump, Russia, and huge chunks of MAGA. To believe they'd just accept the election as is, is completely infantile.\n\nI am one of many early / mail in voters who did vote, but it was simply not counted. And I think that stinks to high heaven.\n\nAudit GA, PA, and NC. Get the data, and we can go from there.", 'created': '2024-11-10 16:49:12', 'submission_id': '1go2sdb'}
{'comment': 'My husband & I checked the status of our mail in ballots (MA), no record found of either ballot.', 'created': '2024-11-10 17:44:59', 'submission_id': '1go2sdb'}
{'comment': "My ballot wasn't counted", 'created': '2024-11-10 22:46:35', 'submission_id': '1go2sdb'}
{'comment': 'Decades of misinformation with no fact-checking (which spews ridiculous conspiracy theories and finger-pointing) has led us to this moment. Trump and team are modeling the behavior of other fascist dictatorships like **Viktor Orbán** in Hungary and Vladimir Putin in Russia. This is scary—these people change the country for their benefit. I hope everyone realizes what they voted for.\n\n**Orbán** visted Trump earlier this year. Connect the dots—you can see the trail.\n\n[https://apnews.com/article/hungarys-orban-visit-trump-mar-a-lago-ee6ba8edc4d4f4f92b06a9265945df8f](https://apnews.com/article/hungarys-orban-visit-trump-mar-a-lago-ee6ba8edc4d4f4f92b06a9265945df8f)', 'created': '2024-11-10 18:57:30', 'submission_id': '1go2sdb'}
{'comment': "Let's take our feelings out of this and focus on facts. In 2020, Trump tried to steal the election with fake votes, influence, interference in the election offices, Fake evidence, intimidation the election office managers, targeted misinformation,Assassination attempt on the Capitol.\nIn 2024, things happened beforehand like voter fraud, laws to vote were made more difficult, Democratic voters were either not registered or removed from voter rolls en masse.Bomb threats on election day, election offices were closed for 10 minutes, surveillance cameras were switched off during that time. Election observers were not allowed in many places. So, yes.", 'created': '2024-11-10 16:34:47', 'submission_id': '1go2sdb'}
{'comment': 'I have seen curcumstanial evidence to some hacking type theories. I believe them to be true.\n\nWill they be investigated,? No. Just like Trump and J6', 'created': '2024-11-10 19:02:47', 'submission_id': '1go2sdb'}
{'comment': 'It was stolen because they know we will accept it it’s probably time to change that', 'created': '2024-11-10 19:19:30', 'submission_id': '1go2sdb'}
{'comment': 'Funny how all the sudden election security is a non-issue.', 'created': '2024-11-10 19:29:36', 'submission_id': '1go2sdb'}
{'comment': 'Fun fact…all Harris would have had to do to upend the results is for her campaign to publicly agree with trump’s campaign that there was wide spread voter fraud and it would instantly nullify the results\n\n***remeber., Trump and his campaign has already said there was wide spread voter fraud***', 'created': '2024-11-10 19:37:52', 'submission_id': '1go2sdb'}
{'comment': 'to me I wonder where all the new voter registrations went, did they just go thru the work and not show up?\n\nrest is the billionaire PACs that ran non stop ads full of complete lies and got away with it.', 'created': '2024-11-10 16:59:03', 'submission_id': '1go2sdb'}
{'comment': 'At the end of the day, if people want to keep infighting and telling us to, “just drop it and give up” or things along those lines, kindly fuck off. We have every right to be skeptical and at least ensure that there is a recount in the swing states. They literally stormed the capital, we just want to make sure everything is kosher. Calm down.', 'created': '2024-11-10 17:29:09', 'submission_id': '1go2sdb'}
{'comment': "I don't know, but I find it weird that people voted for Trump and then voted blue down ballot. That makes no sense to me. And htf did Boebert win?", 'created': '2024-11-10 19:03:21', 'submission_id': '1go2sdb'}
{'comment': 'Motive, ability, time, Starlink, and access to modified dominion firmware. \n\nYeah, it was.', 'created': '2024-11-10 21:11:41', 'submission_id': '1go2sdb'}
{'comment': 'this time around, i do believe it actually was.', 'created': '2024-11-10 21:34:01', 'submission_id': '1go2sdb'}
{'comment': 'Yeah, it was. I refuse to believe that millions of Americans voted for a democratic senator, but then for Trump. I cannot believe that Musk got away with everything he did. Democrats played way too soft this time around. How much longer are we going to have to put up with GOP bullshit while we sniff our farts and say at least we gave it our best effort', 'created': '2024-11-10 23:27:49', 'submission_id': '1go2sdb'}
{'comment': 'It seems very weird that the majority of swing state Senate Democrats won their elections but Trump carried the States. I thought it was weird how quickly things developed for him the day after the election. All the polls showed a much tighter race. Also did one of Musk’s companies supply software for voting machines and vote tabulation? If so this is alarming. Musk cannot be trusted.', 'created': '2024-11-10 17:08:37', 'submission_id': '1go2sdb'}
{'comment': 'Why was starlink being used for voting machines?\n\nhttps://abc30.com/amp/post/tulare-county-sees-larger-voter-turnout-during-2024-presidential-election/15519472/', 'created': '2024-11-10 17:06:41', 'submission_id': '1go2sdb'}
{'comment': 'Trump kept telling his supporters that he doesn’t need the votes because he already has so many which I thought was weird', 'created': '2024-11-10 16:42:22', 'submission_id': '1go2sdb'}
{'comment': "Trump said lots of cheating went on in Pennsylvania on Tuesday. Since he won it, that tells me the Republicans were the ones cheating. It's funny that biden was able to miraculously pull off one of the biggest cheating scandals in history without getting caught, and just decided to give trump the win this time. Lmao", 'created': '2024-11-10 23:12:12', 'submission_id': '1go2sdb'}
{'comment': 'So Taylor Swift basically had a negative effect and Kari Lake got more votes than Kamala? This is beyond ridiculous. Cyber experts have warned us for years that this was possible. Also splits in some of the states that defy absolutely all logic. The only healthy way to tell your children that America actually did this to itself is to make sure it actually happened. We aren’t going to storm the Capitol.. But for the love of god let’s not hand the keys to the castle over when everything tells us something strange went down.', 'created': '2024-11-10 16:48:26', 'submission_id': '1go2sdb'}
{'comment': 'Trump got to file dozens of lawsuits to try to prove cheating with no evidence at all. At the very least we deserve a fucking INVESTIGATION.', 'created': '2024-11-10 16:32:31', 'submission_id': '1go2sdb'}
{'comment': 'Big clue is the Supreme Court ruling giving the sitting president unlimited power. Do you think they would have enacted it if they thought for one minute that a democratic president would have access to it? No, they already knew', 'created': '2024-11-10 17:15:30', 'submission_id': '1go2sdb'}
{'comment': 'I think we should get as many recounts as Trump got in 2020 to ensure there was no fraud. Open up hundreds of lawsuits, they may all get tossed out but we need to be sure. Something is off when Russia is bombing the mail and their foreign assets in Musk and Carlson are meddling like crazy.\n\n \nAlso could Biden seize SpaceX and deport Musk on his way out?', 'created': '2024-11-10 17:47:08', 'submission_id': '1go2sdb'}
{'comment': 'In 2020 Trump got 74 million votes to Biden’s 81 million.\n\nThis time Trump got 74 million votes and won. But Harris only go 70 million. \n \nWhere did those 11 Million votes go? \n\nVoter Suppression? Cheating? \nDid 11 million people just decide to stay home and not vote? \nWhere those votes go?', 'created': '2024-11-10 19:07:29', 'submission_id': '1go2sdb'}
{'comment': 'Well … trump did say that the election was rigged so we take him for that', 'created': '2024-11-10 19:38:28', 'submission_id': '1go2sdb'}
{'comment': 'It wasn’t stolen, it was bought', 'created': '2024-11-10 20:21:48', 'submission_id': '1go2sdb'}
{'comment': "I feel like there is a lot not being talked about. This came out in Aug [https://www.politico.com/news/2024/08/12/hackers-vulnerabilities-voting-machines-elections-00173668](https://www.politico.com/news/2024/08/12/hackers-vulnerabilities-voting-machines-elections-00173668)\n\nI don't get why in 2020 the other side was going nuts about the steal fairly early but the dems are just trying to explain it away and start infighting.", 'created': '2024-11-10 16:39:27', 'submission_id': '1go2sdb'}
{'comment': 'Elon probably stole it. Trump\nWasn’t even worried about the ground game. He didn’t come out early to declare victory. The Democrats got fkd again. This time it is a real hostile takeover. Get ready for Elon to crash the best economy in the world. Taxes to go up in the middle class, tariffs…union busting of all public sector unions…I wonder if the Police and Firefighters Union thought about that when they didn’t endorse Harris?', 'created': '2024-11-10 18:48:05', 'submission_id': '1go2sdb'}
{'comment': 'My vote and the fifty people that went as a group to early vote here in Iowa didn’t get counted', 'created': '2024-11-10 20:21:59', 'submission_id': '1go2sdb'}
{'comment': 'All I know for sure is that there have been massive and escalating voter suppression efforts by the right for years and that all cases of voter interference this election need to be investigated.\n\nThere are far too many reports of missing or uncounted ballots to ignore. Regardless of whatever effect it has on final tallies, we can’t just close our eyes to this and move on.', 'created': '2024-11-10 18:00:48', 'submission_id': '1go2sdb'}
{'comment': "I don't know why we can't just recount and investigate it like they did in 2020. I'm not saying she won and Trump stole the election. I'm saying there are some things that seem off so why not just investigate it? If there's no evidence of wrong doing we can move on", 'created': '2024-11-10 19:13:30', 'submission_id': '1go2sdb'}
{'comment': 'I would say this… it does need to be looked into a bit more, but with open eyes rather than assuming it was stolen with no facts. I would prefer the Reagan approach: trust the system, but verify it.', 'created': '2024-11-10 17:30:51', 'submission_id': '1go2sdb'}
{'comment': "He did go up pretty fast. I'm really surprised he got Pennsylvania. I'm trying to find out if my absentee ballot was counted. All it says is received. It's more than just me. There are others too. Plus, Trump was pretty quite election day. He said a few things, but it's weird.\n\nDoes anyone know how to see if your ballot was counted?", 'created': '2024-11-11 01:09:01', 'submission_id': '1go2sdb'}
{'comment': "I think most areas don't have 100% count in so as an aggregate many peoples votes may not be counted yet. There's also people who will just say things to promote a conspiracy theory.\n\nI think Democrats question this because it seems incomprehensible a majority voted for Trump for a plethora of reasons. However the answer is pretty simple.\n\nIt wasn't stolen per se but people with a lot of money and control absolutely manipulated people into voting against their best interests. That's how US politics works unfortunately. There have also been increased foreign meddling in news and social media but that's not new. \n\nTrump is silent because 99% of what he says are his grievances and he's very happy at the moment. He has escaped serious persecution and is the President again.", 'created': '2024-11-10 16:18:07', 'submission_id': '1go2sdb'}
{'comment': 'I’ve heard that rapid ballot tabulators may have malfunctioned or been hacked. Some areas are recounting ballots from rapid tabulators.', 'created': '2024-11-10 16:35:41', 'submission_id': '1go2sdb'}
{'comment': 'The numbers to me don’t make sense. Trump wins the states but then there are dems being elected in each state as well? Something ain’t adding up\n\nAlso the fact Elon knew like 4 hours before the election was basically called is a red flag.\n\nI really think they should push for a recount or at least look into it.', 'created': '2024-11-10 17:56:00', 'submission_id': '1go2sdb'}
{'comment': "This is my I'm not gonna be surprised if he did and had help from Mr. South African Cybernetic Jumping Bean and his Russian girlfriend; face.", 'created': '2024-11-10 21:38:49', 'submission_id': '1go2sdb'}
{'comment': 'Do we know if the voting machines weren\'t tampered with at any point before the election? Why would Elon brag that anything can be hacked? Why would Trump repeatedly tell people "I don\'t need the votes, I got all the votes I need", conspiracy time: what if the voting machines were manipulated after the disastrous Biden/Trump debate, a Trump blow out wouldn\'t have surprised most of us or even been questioned and it would explain the panic/rage Trump displayed after Biden dropped out (he knew the votes were rigged and with Harris being so popular he knew it would be suspicious). Harris seemed to have alot more enthusiasm behind her, she raised more money, had policies that seemed like they were popular with both sides and Trump appeared to just give up. It\'s also hard for me to believe that with the Supreme Court on the line so many of us just decided to give Trump another shot. Absolutely none of this makes sense.', 'created': '2024-11-10 23:59:14', 'submission_id': '1go2sdb'}
{'comment': 'The part that bothers me is Dems. did well down ballot, but the same people also voted for Trump as president? It doesn’t make sense.', 'created': '2024-11-10 17:06:07', 'submission_id': '1go2sdb'}
{'comment': '4yrs to figure out how to cheat properly\n\nfake electors\n\nballot machine tampering\n\nburning ballots\n\noutside hackers\n\netc.\n\nthey didnt rollover and take it for 4yrs why should we?', 'created': '2024-11-10 17:24:18', 'submission_id': '1go2sdb'}
{'comment': 'Ask any Democrat that doesn’t want to even consider the possibly to answer this question.\n\nPoint us to one election where people made the effort to go stand in line on Election Day and vote blue all the way down a ticket and decide to leave the choice for President blank? This has never happened before. Maybe a few thousand ballots in some election but not a million!!!', 'created': '2024-11-10 17:13:27', 'submission_id': '1go2sdb'}
{'comment': 'Problem is she conceded. Only her and her campaign can do something. They need to file paperwork and request hand counts in some of the swing states. This does not appear to be happening. The Democratic leadership is too passive here. They seem eager to endorse this election and show the peaceful transfer of power. The problem being it maybe our last.', 'created': '2024-11-10 17:14:44', 'submission_id': '1go2sdb'}
{'comment': 'There was voter suppression and gerrymandering nationwide orchestrated by a billionaire with a dark money network. Several states passed laws to make it harder for Democrats to vote. This billionaire also has ties to the people who stormed the capitol on Jan 6th. In addition to that, there was a lot of misinformation spread by Russians and the media that is controlled by conservative billionaires. The GOP was saying there was election fraud and you know how they love to accuse people of things they are doing themselves. It may have caused Democrats to not trust the election process. https://www.google.com/amp.theguardian.com/us-news/2024/nov/05/trump-musk-election-voter-fraud-misinformation', 'created': '2024-11-10 17:57:58', 'submission_id': '1go2sdb'}
{'comment': 'The election was stolen and Elon Musk was the architect.', 'created': '2024-11-10 20:07:32', 'submission_id': '1go2sdb'}
{'comment': 'Watch this.\n\nhttps://youtu.be/iX3vMJOADlE?si=Im8KKyTj4rYRHamS', 'created': '2024-11-10 16:57:22', 'submission_id': '1go2sdb'}
{'comment': 'OldDon won because he lied. Right wing media followed suit repeating his crap and lied too. It’s impossible to win when your opponent lies and cheats. So forget analyzing what Harris/Walz missed. They got a ton of votes without lying, but more voters accepted lies as truth… which is a very sad commentary on our educational system. U.S. is home to a lot of sheep, ignorant sheep.', 'created': '2024-11-10 17:22:36', 'submission_id': '1go2sdb'}
{'comment': 'by billionaire', 'created': '2024-11-10 18:20:16', 'submission_id': '1go2sdb'}
{'comment': "Look I don't want to be a conspiracy theorist but I hope everyone checks that their ballots were counted. \n\nhttps://www.vote.org/ballot-tracker-tools/", 'created': '2024-11-10 20:24:01', 'submission_id': '1go2sdb'}
{'comment': "Weren't there numerous Red states that refused Federal poll watchers?", 'created': '2024-11-10 22:55:12', 'submission_id': '1go2sdb'}
{'comment': 'I think there is something fishy.\n\nI also have faith in the Biden administration and, more specifically, in Kamala as an attorney. If there is something nefarious going on, I think she is already on it.\n\nEdit for clarity: And if there turns out to be nothing, then it sucks but it’s nothing. I certainly won’t be storming the Capitol.', 'created': '2024-11-11 03:21:51', 'submission_id': '1go2sdb'}
{'comment': 'Trump seemed quite anxious in the week before, Harris was up in all the swing states and lost? Something smells dutchy!', 'created': '2024-11-10 17:35:40', 'submission_id': '1go2sdb'}
{'comment': 'They fucking rigged it. They were projecting it for 4 years. Biden has to use his immunity NOW', 'created': '2024-11-10 22:10:08', 'submission_id': '1go2sdb'}
{'comment': 'It’s not absurd. It’s an absolute possibility.', 'created': '2024-11-10 17:04:13', 'submission_id': '1go2sdb'}
{'comment': "I can't help but think musk is somehow involved in the cyberspace aspect of this.", 'created': '2024-11-10 16:25:55', 'submission_id': '1go2sdb'}
{'comment': 'I think an investigation should be done regardless. They did it last time, so turnabout is fair play.', 'created': '2024-11-10 16:41:33', 'submission_id': '1go2sdb'}
{'comment': 'With a smart (albeit mentally stunted) technologist in bed with Trump it’s highly likely.', 'created': '2024-11-10 16:47:42', 'submission_id': '1go2sdb'}
{'comment': 'Stop buying Tesla!!!', 'created': '2024-11-10 16:53:11', 'submission_id': '1go2sdb'}
{'comment': 'Yes', 'created': '2024-11-10 17:42:56', 'submission_id': '1go2sdb'}
{'comment': 'I would like an investigation before I say yes or no.', 'created': '2024-11-10 19:26:26', 'submission_id': '1go2sdb'}
{'comment': 'Sure seems like it to me.', 'created': '2024-11-10 20:06:17', 'submission_id': '1go2sdb'}
{'comment': 'Without a doubt.', 'created': '2024-11-10 20:06:51', 'submission_id': '1go2sdb'}
{'comment': 'I’m going to be a bit abrasive but I don’t know how to get this through to you guys\n\n👏 👏 👏 \n\nIf you stand in line for 2-4 hours on Election Day, YOU WERE THERE TO VOTE FOR THE PRESIDENT You wouldn’t have left that blank.. And sooooo many freaking people apparently did. If you were going to just vote for amendments and senate and house folks then you would have done that early. When there was barely any line. Who votes blue all the way down and doesn’t vote for President??? Open your eyes people', 'created': '2024-11-10 20:31:26', 'submission_id': '1go2sdb'}
{'comment': "Who are these voters who showed up for Biden, but didn't for Harris or Clinton? Is this country really that anti-woman?", 'created': '2024-11-10 20:53:17', 'submission_id': '1go2sdb'}
{'comment': 'We are talking about 340 million people 77.9% of which are over 18 per the 2020 census. So ~265 million voters.\n\nThe turnout for 2020 was Biden 81 million and Trump 74 million. The hate and identity games took a back seat to dying to COVID. Even then, even with the very real threat of death as well as loss of income 110million people sat that one out or did 3rd party.\n\nNow, Trump votes are more or less the same in 2024: 74 million. Harris did 70 million. And this time 121million voters sat this one out or did 3rd party.\n\nSo when people say Dem messaging failed, believe it. Bernie is 100% correct, as always. And he’s 80. We will lose him soon and then no one will care about working class. \n\n\nAlso. Project 2025, while available all year, is 996 page document. How many of you actually read it? If you didn’t, those 121 million non and 3rd party voters sure as fuck didn’t either.', 'created': '2024-11-10 23:55:05', 'submission_id': '1go2sdb'}
{'comment': 'Battleground states voting isn’t adding up…Dems winning all the way down the ballot with the exception of the Presidential race? Highly unlikely', 'created': '2024-11-11 00:57:09', 'submission_id': '1go2sdb'}
{'comment': 'Why are democrats still so busy thinking trump is normal? He should never be allowed to be president. Our country is going down in flames.', 'created': '2024-11-11 01:29:41', 'submission_id': '1go2sdb'}
{'comment': 'No, I’m Latino and was shocked so many of my family members were pro Trump. Even the residents and illegals. I blame mainstream media and also the church. They’ve been brainwashing people into thinking he’s Jesus or something.', 'created': '2024-11-11 01:53:55', 'submission_id': '1go2sdb'}
{'comment': 'It’s absolutely possible. Classic con. Accuse the opponent of doing what you’re doing. Deflect attention away from yourself and onto them. Rile up morons. Install your fake electors. My Nevada ballot is still showing “received” but not “counted” on my states website.', 'created': '2024-11-11 03:56:10', 'submission_id': '1go2sdb'}
{'comment': 'Yes, elon Musk was allowed to bribe voters 1 million in swing states. He was literally allowed to do it, and no one cares. We need an investigation into this bs.', 'created': '2024-11-11 04:26:33', 'submission_id': '1go2sdb'}
{'comment': 'It wa stolen!', 'created': '2024-11-11 08:28:46', 'submission_id': '1go2sdb'}
{'comment': 'Honestly…I don’t know. I doubt it. Whether or not it was, I think even us most ardent of blue supporters admit there needs to be a reckoning for how we become the big top party we once were and seem to striving to be and failing at. \n\nHaving said that…I think those who immediately discount the possibility, and relate asking legitimate questions to the 2020 red reaction, are swinging too far the other way. If the republicans had just filed claims in court, lost those claims, and went away, I would have been fine with that. May have crowed a bit louder if it happened, but that’s it. \n\nPoint being, I don’t see how one relates asking questions to flat out election denying and violence. If those questions are answered I’d accept the answer no matter what. But we have circumstantial evidence in the form of down ballot votes and early registration numbers that make them worth asking I think.', 'created': '2024-11-10 17:18:43', 'submission_id': '1go2sdb'}
{'comment': 'Not to be a conspiracy theorist or anything, but does anyone know what went on inside the polling locations during the bomb threats? Were the polling sites evacuated? Did anyone remain inside? Where were the ballots during the evacuations?', 'created': '2024-11-10 22:33:56', 'submission_id': '1go2sdb'}
{'comment': "I can't help but think musk is somehow involved in the cyberspace aspect of this....", 'created': '2024-11-10 16:26:11', 'submission_id': '1go2sdb'}
{'comment': 'If it was the Dems won’t do anything about it because they’re too worried about the psyop balance of the nations stability and would rather sacrifice the nations leadership to a fascist than risk a period of instability that could save our democracy in the end. \n\nI always vote democratic because the Republicans are infected by a theocratic fascist ideology that wants to put more power in the hands of the private sector oligarchy, but the Dems have pissed me off for a decade now by being too fucking soft to do anything hard lined that could be viewed as overreaching. \n\nThe republicans have painted a picture of the Dems as the party of governmental overreach (even though that’s actually what the GOP does in other aspects) and because half the nation is brainwashed to believe that they’re constantly overreaching the Dems are afraid to perform any overreach in a benevolent effort to save the fundamental fabrics of our democratic republic. They’re too worried about how they will appear in the FALSE reality that the GOP has constructed so they fail to act appropriately in the REAL reality that is separate from the construct the GOP & MAGA has created. This is what I mean by the Dems are too focused on the “National Psyop”. They’re basing too many of their actions around the false reality that MAGA has created instead of acting appropriately. \n\nWe have many new up and coming and some older Dems in the House & Senate that act as they should, with fervor and strength. But too many of the Democratic leadership are weak pussies who won’t use the power they wield for benevolent purposes. We need strong leaders who will match the fervor the GOP has introduced. If the Dems are worried about balance then they need to meet the GOP’s standards. By not stepping up to bat, and acting moderate too often they actually allow the scales to consistently tip in favor of the GOP because they won’t be as tough in the other direction. \n\nDemocratic leadership MUST match the energy the GOP & MAGA is putting out or else they will get absolutely nowhere and leave the sane thinkers of this country left stranded in a world of chaos and insanity because they weren’t strong enough to do anything to counteract against them. \n\nI do hope we have one more shot after this Trump presidency. I do hope that Trumps second term will snap a lot of people out of the brainwash as they learn the consequences of what they voted for. But if the Dems don’t do some serious restructuring and learn to grow some balls after this four years, I fear another Republican administration after Trump will seal the deal for the future direction this nation takes and we will stagnate into a new global dark age where things slow down and connections begin to sever from isolationist nations etc. \n\nWe have four years to grow some balls and actually counter this madness. If we don’t do it then, it’s over.', 'created': '2024-11-10 18:19:17', 'submission_id': '1go2sdb'}
{'comment': 'I don’t know why there can’t be a recount, I will accept the results if it’s same. Trump got a recount last election with absolutely no evidence why can’t we do one running against the most corrupt campaign of all time and a literally criminal?', 'created': '2024-11-10 22:37:07', 'submission_id': '1go2sdb'}
{'comment': '', 'created': '2024-11-10 18:14:53', 'submission_id': '1go2sdb'}
{'comment': 'It was won on social media', 'created': '2024-11-10 18:45:40', 'submission_id': '1go2sdb'}
{'comment': 'No,\n\nEvery single incumbent lost vote share in elections throughout the world this year. There are a lot of other reasons why Trump won that can be explained without defaulting to "voter fraud" "cheating" or "interference.\n\nWas there interference from foreign adversaries? Absolutely, but what should be to blame is our decimated education system and the lack of people\'s capability to detect nonsense. However, the fact that we are even discussing that the election was "stolen" is complete lunacy and I\'m not going to entertain those ideas for a second.', 'created': '2024-11-10 20:23:07', 'submission_id': '1go2sdb'}
{'comment': 'Have you seen that led by donkeys [video](https://youtu.be/iX3vMJOADlE?si=qMZ1WLueC_47_cZe)\n\nI think it explains a lot on how they won…', 'created': '2024-11-10 22:45:04', 'submission_id': '1go2sdb'}
{'comment': "No, it wasn't. Don't do this. We are not conspiracy theorists.", 'created': '2024-11-10 23:35:58', 'submission_id': '1go2sdb'}
{'comment': 'Unlike the MAGA right-wing nutjobs I refuse to make accusations without evidence.', 'created': '2024-11-10 23:52:51', 'submission_id': '1go2sdb'}
{'comment': "That's not a good look. The party is trying to show that we know how to lose gracefully and without wasting taxpayer dollars arguing about it.", 'created': '2024-11-11 00:32:37', 'submission_id': '1go2sdb'}
{'comment': "Stolen by collective stupidity and various social dynamics encouraging stupidity over actual rational analysis, yes.\n\nStolen in terms of actual votes being lost or changed or added from the proper count, nope. I have not seen evidence of large-scale vote-counting issues that would've made a difference in the result. But if you find that evidence I'm open to checking it.", 'created': '2024-11-11 06:01:47', 'submission_id': '1go2sdb'}
{'comment': "Gavin Newsom would be the president elect.\nWe (gave trump) 2016 and 2024 by not showing up. \n This is why we're gonna keep losing!\nWas it stolen…?\nHope we wake the F up by 2028 people!", 'created': '2024-11-12 05:12:08', 'submission_id': '1go2sdb'}
{'comment': 'Yes. Russia all the way', 'created': '2024-11-10 18:24:27', 'submission_id': '1go2sdb'}
{'comment': 'Unfortunately, if it was stolen, it was only the marginal votes. The reality is, it wasn’t the landslide victory for Harris we all wanted and that alone is the indictment in America we are all saying it is.', 'created': '2024-11-10 16:17:52', 'submission_id': '1go2sdb'}
{'comment': "I think a healthy questioning is fine, but I don't want to put on the tin foil hat", 'created': '2024-11-10 21:07:24', 'submission_id': '1go2sdb'}
{'comment': 'No, we can’t stoop to there level BUT why in the actual fuck did 15 million people not vote ? Even if you didn’t like either person you still had Jill stien and rkj AND write ins', 'created': '2024-11-10 16:50:13', 'submission_id': '1go2sdb'}
{'comment': "The numbers don't add up. No way that Trump won every single swing state.", 'created': '2024-11-10 18:39:32', 'submission_id': '1go2sdb'}
{'comment': "We need evidence of it to say it's stolen.", 'created': '2024-11-10 16:53:41', 'submission_id': '1go2sdb'}
{'comment': 'https://www.threads.net/@billt801/post/DCIIRcrRhmD?xmt=AQGzIxRBbEg4QYW90CYhTAw_xb--A_SVmT-ZWr-_-Wsa3g', 'created': '2024-11-10 17:33:55', 'submission_id': '1go2sdb'}
{'comment': "Foreign influence that it just so happens one candidate's supporters disbelieve is really happening. Russian government funds Tim Pool, Benny Johnson, and Dave Reubens. Russia bargains with Trump for his endorsement of the annexation of Ukrainian territory in 2017 in exchange for help winning presidential elections. But Trump supporters don't believe this to be true so it is a conspiracy at best to them but actually the truth. The serpent deceiving mankind. One of the oldest stories in history being retold once again.", 'created': '2024-11-10 19:25:16', 'submission_id': '1go2sdb'}
{'comment': "It seems improbable to me after all his shit that we lost so convincingly. I don't know how, but I think several million Dem votes were not counted. Most likely in the swing states.", 'created': '2024-11-10 19:49:52', 'submission_id': '1go2sdb'}
{'comment': 'I dont know about “stolen.”\nBut Musk definitely violated election laws with his lottery and twitter algorithms.\nTrump should be sued by Dominion for 2020 and now 2024 too.\n\nAll elections across the world should be audited by a third party company before results are approved.\xa0', 'created': '2024-11-10 19:56:44', 'submission_id': '1go2sdb'}
{'comment': 'We lost. FFS, people. We. Lost. Own it.', 'created': '2024-11-10 20:38:00', 'submission_id': '1go2sdb'}
{'comment': 'Food for thought…what if Musk with his SpaceX engineering Trump with his criminal background were able to hack into all the nation’s electronic voting machines.', 'created': '2024-11-10 20:54:48', 'submission_id': '1go2sdb'}
{'comment': "No. Not stolen. 2020 had a huge amount of people voting, and then they went back to not paying attention. What's wild about this is it means Trump was bad enough to inspire a lot of people who don't typically vote to vote. And then he just had to wait for them to go back to not caring. It's not that Kamala was a bad candidate, or the Dems did anything wrong. It's that Trump's first term was so hellish that people got inspired to take action. But once he was out, they weren't inspired anymore.\n\nIn 2020, Biden got 81.2 million votes, Trump got 74.2 million. \nIn 2024, Kamala got 70.9 million votes, Trump got 74.7 million.\n\nAll of those numbers are higher than 2016. But the energy we had to get him out, we didn't maintain to keeping him out.", 'created': '2024-11-10 21:28:32', 'submission_id': '1go2sdb'}
{'comment': 'Does a bear shit in the woods ?', 'created': '2024-11-10 21:35:02', 'submission_id': '1go2sdb'}
{'comment': "I don't believe anything without hard evidence. From the way it looks, it looks like democrats couldn't be bothered to vote, at which point it's our own faults.", 'created': '2024-11-10 21:42:07', 'submission_id': '1go2sdb'}
{'comment': "He did say he has a little secret. In addition, the last several weeks of the campaign, he has unsually unhinged. He simulated fellatio with his mouth for God's sake. The movement for Kamala appeared solid. It looked like we were going to defeat Satan. I do believe he stole the election with the help of Elon and Putin. It would take years to prove it if his dictatorship even allows an investigation. We are certainly not going to storm the capital to avoid the certification of the election. We're going to take it up the ass because we have no other choice. Even if Biden can do anything now with his presidential immunity, it will be undone. Trump will take the presidency even if he has to ram his way in. We all know this. I just hope we are allowed to vote in 2028 and that with all the other shit they're going to be doing, they don't redistric all the areas to ensure their future votes. Because you know they will be able to do that and nobody will be able to stop them.", 'created': '2024-11-10 21:48:25', 'submission_id': '1go2sdb'}
{'comment': "He did say he has a little secret. In addition, the last several weeks of the campaign, he has unsually unhinged. He simulated fellatio with his mouth for God's sake. The movement for Kamala appeared solid. It looked like we were going to defeat Satan. I do believe he stole the election with the help of Elon and Putin. It would take years to prove it if his dictatorship even allows an investigation. We are certainly not going to storm the capital to avoid the certification of the election. We're going to take it up the ass because we have no other choice. Even if Biden can do anything now with his presidential immunity, it will be undone. Trump will take the presidency even if he has to ram his way in. We all know this. I just hope we are allowed to vote in 2028 and that with all the other shit they're going to be doing, they don't redistric all the areas to ensure their future votes. Because you know they will be able to do that and nobody will be able to stop them.", 'created': '2024-11-10 21:48:39', 'submission_id': '1go2sdb'}
{'comment': "No it wasn't stolen.", 'created': '2024-11-10 22:05:03', 'submission_id': '1go2sdb'}
{'comment': 'Well there’s this from 2018:\n\nHONG KONG — Ivanka Trump-branded semiconductors and voting machines? In China?\n\nThat’s an odd, if remote, possibility after Chinese trademark regulators awarded preliminary approval for 16 trademark applications from the president’s daughter and White House senior adviser, online Chinese government filings show.\n\nThe approvals by Beijing on Oct. 13 were notable for their timing, coming just as Chinese and U.S. officials were seeking to restart trade talks that had collapsed amid acrimony.\n\nThey also raised eyebrows for covering a grab-bag of products, including electoral hardwarein a country not exactly known for its elections.\n\nUnless or until someone in our intelligence community or hell, I’ll even take a journalist at this point, infiltrates the workings and mechanisms behind Russias rigged “election” system, we may never know just how much they really interfered.', 'created': '2024-11-10 22:05:33', 'submission_id': '1go2sdb'}
{'comment': 'No. We just plain lost.', 'created': '2024-11-10 22:18:39', 'submission_id': '1go2sdb'}
{'comment': 'What do people think musk did', 'created': '2024-11-10 23:04:23', 'submission_id': '1go2sdb'}
{'comment': 'Elon probably broke the law with the Pennsylvania ’bribe’ but he’ll never get charged. \n\nBut yeah, Kamala lost.', 'created': '2024-11-10 23:47:07', 'submission_id': '1go2sdb'}
{'comment': 'No. Just democrats sat out . No steal....people just hated kamala', 'created': '2024-11-10 23:47:08', 'submission_id': '1go2sdb'}
{'comment': 'Yes, Elon helped Trump cheat to win and they are stealing our way of life and the liberal culture that identifies us. Their stealing our liberty... That\'s what it means.\n\nFreedom used to mean "freedom from tyranny" now under trump and the crooked republicans, freedom means "freedom to exploit" and "freedom from responsibility". If someone is impacted by right wing greed, that is their own fault... We need more pain in the economy after all.', 'created': '2024-11-10 23:58:03', 'submission_id': '1go2sdb'}
{'comment': 'Probably. Doesn’t matter. Nihilism wins because those fuckin losers clucked for 4 straight years about their “loss”', 'created': '2024-11-11 00:31:49', 'submission_id': '1go2sdb'}
{'comment': 'NOPE. People need to vote and they didn’t. Now we all get to suffer the consequences.', 'created': '2024-11-11 01:24:16', 'submission_id': '1go2sdb'}
{'comment': 'No knock it the fuck off with the conspiracy theories we on the left do not say these things until we have solid evidence and I swear to fucking god I will violently thrash the next person who says it was stolen', 'created': '2024-11-11 01:40:29', 'submission_id': '1go2sdb'}
{'comment': 'Starting to see all these conspiracy theories about Starlink changing votes when they were uploaded. How it seems impossible for so many voters to split their vote since Harris didn’t win a single swing state but we elected 7 Dem Senators. How voter turnout was supposedly amazing and yet so many supposedly didn’t participate. 🤷🏻I am not holding my breath over anything. I have become so jaded by the disappointment that is our judicial system and government.', 'created': '2024-11-11 01:45:00', 'submission_id': '1go2sdb'}
{'comment': 'It was stolen by misinformation. That said, the people voted and elected Donald Trump.', 'created': '2024-11-11 01:47:33', 'submission_id': '1go2sdb'}
{'comment': "Very suspicious with how close Elon and Trump are\n\nDid Elon buy himself a spot on trumps cabinet by helping him steal the votes he needed?\n\nI'm just asking questions", 'created': '2024-11-11 02:18:01', 'submission_id': '1go2sdb'}
{'comment': 'Trump increased his share of the vote in every single county in the US. So it would require such a massive conspiracy that reaches into even the most blue of counties that I find it hard to believe.', 'created': '2024-11-11 02:42:21', 'submission_id': '1go2sdb'}
{'comment': 'I’ve heard a few Dems say that they discovered their mail in ballots weren’t registered, but I’ve honestly been mostly trying to keep my sanity by not following much post-election stuff since I’ve got a ton of other stuff going on in my life right now.\n\nI do find it particularly odd that Trump almost stopped campaigning for the last few weeks almost as if he already knew he wouldn’t have to worry about it.', 'created': '2024-11-11 03:03:08', 'submission_id': '1go2sdb'}
{'comment': 'The Democratic Party needs to recognize the fact that in today’s elections, there are no bonus points given for holding the moral high ground and “respecting the results of the election”, especially if there is sufficient doubt being spread by both parties. Remember, trump and his right wing supporters were screaming about election fraud before voting had even begun. Add to that their silence since he won, it’s hard not to feel like something is suspicious. \n\nIf democracy truly is at stake with the results of this election like Democrats have been saying, then what do they have to lose by pursuing all legal options in the swing states in order to verify the vote count. \n\nTo be clear, I view this path much differently from trump’s “find me 11,000 votes in Georgia”; this is “do we have evidence or a slim enough margin to request a recount the votes and ensure the results are legitimate and not being manipulated or otherwise rigged?”\n\nI don’t have hard numbers in front of me but Kamala Harris’s campaign amassed something like a $1 billion war chest and I guarantee they can pull together more for legal fees and the like in these swing states. If dems go 0-63 in court like trump and his cronies did in 2020 then fuck it at least they tried. But I’d like to see them give their supporters more than this defeatist “what are we to do” attitude.', 'created': '2024-11-11 04:33:09', 'submission_id': '1go2sdb'}
{'comment': 'Why I’m not buying that the election was stolen. She lost by larger expected margins in the safe blue states (NY, Illinois, etc). People voted against the status quo incumbent. This has been happening all over the world during the post Covid inflation political environment. \n\nAlso the RW media machine (state media) is powerful. The legacy (main stream) media held Kamala to a higher standard. The podcasts, influencers, etc outside political media largely pushed the RW narrative. \n\nThe places where Kamala focused and campaigned (swing states), she lost by smaller margins. Her campaign was working but there wasn’t enough time to push over the finish line. I believe she was dropped into an impossible headwind.', 'created': '2024-11-10 16:46:11', 'submission_id': '1go2sdb'}
{'comment': 'TikTok is designed to destabilize the US, pushing conspiracies about our election process is part of it', 'created': '2024-11-10 18:22:39', 'submission_id': '1go2sdb'}
{'comment': "14 million or so democrats didn't vote in this election compared to 2020. Doing that level of a steal would be next to impossible across 50 states each with independently run election departments. Sorry, it wasn't stolen. Us Democrats were just lazy.", 'created': '2024-11-10 16:19:51', 'submission_id': '1go2sdb'}
{'comment': 'Yes', 'created': '2024-11-10 17:53:13', 'submission_id': '1go2sdb'}
{'comment': "I think it's unlikely. And idk if this is weird but I'm more upset with how badly we lost than about Trump winning. I'm a trans woman in Florida and I was one of the first in line when early voting opens in my state. Where was everyone else???", 'created': '2024-11-10 18:39:53', 'submission_id': '1go2sdb'}
{'comment': "It was stolen in some ways, like the voter purges, like harassment leading up to the election of blue voters, like people stealing Vote blue signs en masse. It may have been stolen in other ways, but we don't know yet. Unlike the idiots on the other side, we can't make that accusation without tangible evidence. We just don't know, so we can't make the claim it was unless we have facts to back it up.", 'created': '2024-11-10 19:29:28', 'submission_id': '1go2sdb'}
{'comment': "NO!!! Stop this shit! Stop it now!\n\nMushy thinking is what got us into this mess. Mushy thinking won't save us.", 'created': '2024-11-10 20:24:15', 'submission_id': '1go2sdb'}
{'comment': 'NO. Full stop. \n\n-Lots of people support Trump and Abortion\n-Lots of people like their local Democrat senator or representative and also like Trump\n-Lots of left-leaning people blame Biden/Harris for high home prices and voted against them at the polls. \n\nPolitics is a multi-billion dollar business. If there were signs of voter fraud, trust me, the lawyer machine would be pouncing to make some big bucks. So far they aren’t. Democrats got their butts handed to them. It happens. Let’s lick our wounds and move forward. \U0001facf🇺🇸', 'created': '2024-11-10 22:26:41', 'submission_id': '1go2sdb'}
{'comment': 'Unfortunately not.\n\nLet’s leave it to actual federal agencies to investigate while we remain here without stooping to the standards of MAGAs.', 'created': '2024-11-10 22:45:06', 'submission_id': '1go2sdb'}
{'comment': 'I’m starting to think all these posts are by foreign bots and trolls. Stop falling for it, y’all. They’re just trying to stir the shit pot.', 'created': '2024-11-10 17:29:21', 'submission_id': '1go2sdb'}
{'comment': 'I was treated as someone with rabies when I said the next day after the announcement, that Haris’s nomination will hand trump the election. People on the democrats side don’t want to admit that having the support of Hollywood, Beyoncé, Swift etc., is equally stupendous as trump claiming to be pro blue-collar folks. People at that level of lifestyle don’t have the faintest idea of what “normies” are going through and what they think.', 'created': '2024-11-10 16:37:16', 'submission_id': '1go2sdb'}
{'comment': 'Nope. The willfully ignorant are the ones to blame. They are in for a rude awakening.', 'created': '2024-11-10 19:01:00', 'submission_id': '1go2sdb'}
{'comment': 'I think the outcome of the election was influenced by gerrymandering, misinformation, lack of media literacy, and voter suppression (closing polls, purging voter registrations, etc.). If Republicans, especially the religious right, had not been fueling this highly coercive machine, their power would’ve dried up two or three decades ago. \n\nDo I think the *process* of voting was violated? No. Do I think dead republicans voted or machines changes votes from Harris to Trump? Absolutely not. \n\nConservative Christian nationalists have been raging this covert war for decades, and they are *winning*.', 'created': '2024-11-10 19:26:09', 'submission_id': '1go2sdb'}
{'comment': 'No.', 'created': '2024-11-10 19:52:21', 'submission_id': '1go2sdb'}
{'comment': "Can we please stop doing this? It's not productive. We are not QAnon.", 'created': '2024-11-10 20:07:53', 'submission_id': '1go2sdb'}
{'comment': 'No signs point to fraud. Don’t be like them.', 'created': '2024-11-10 20:11:49', 'submission_id': '1go2sdb'}
{'comment': 'No.', 'created': '2024-11-10 20:19:23', 'submission_id': '1go2sdb'}
{'comment': "These conspiracy theories are embarrassing. We got pounded because nobody came out to vote, we failed to deliver a coherent message, and failed to put together a legitimate primary. I'm so tired of these conspiracy theories, especially after all of the (rightful) dragging the GOP got for pushing their dog shit claims. So what, we lose and now we're going to start pushing the same fucking conspiracy? Come the fuck on. This loss hurts, but now we're going to stoop to their levels", 'created': '2024-11-10 20:37:58', 'submission_id': '1go2sdb'}
{'comment': 'It was rigged.', 'created': '2024-11-10 19:14:25', 'submission_id': '1go2sdb'}
{'comment': 'Yes', 'created': '2024-11-10 16:17:13', 'submission_id': '1go2sdb'}
{'comment': 'No. We lost. Stop.', 'created': '2024-11-10 16:32:19', 'submission_id': '1go2sdb'}
{'comment': "Possibly, but it's doubtful it'll be proven either way and at this point, it's kind of irrelevant.\n\nEven if there was definitive proof the election was stolen, there's no actual mechanism in place to hand the election over to the rightful winner, and if there was, it's been compromised because the whole-ass federal government is in the hands of fascists.\n\nThe time for voting and dithering and half-measures is over. Now we're entering a period of consequences.", 'created': '2024-11-10 16:48:18', 'submission_id': '1go2sdb'}
{'comment': "I don't think so.", 'created': '2024-11-10 17:41:53', 'submission_id': '1go2sdb'}
{'comment': 'I need to see very solid evidence of that before I take it seriously. And that evidence needs to go before a court. I know that there are a lot of upset dems right now and we are all going to cope in different ways, but fantasizing that someone is going to just hand the election to Kamala if not a healthy or productive one .', 'created': '2024-11-10 18:20:51', 'submission_id': '1go2sdb'}
{'comment': 'Crazy the deep state sat this one out.', 'created': '2024-11-10 18:21:57', 'submission_id': '1go2sdb'}
{'comment': 'https://spoutible.com/thread/37794003', 'created': '2024-11-10 18:28:27', 'submission_id': '1go2sdb'}
{'comment': '[removed]', 'created': '2024-11-10 18:33:13', 'submission_id': '1go2sdb'}
{'comment': "i'm not sure about battleground states but I know a few Californian Dems who sat this one out. It wasn't a protest vote against Harris/Walz or the economy/inflation but rather the anti-crime propositions & DA's race in LA. These folk are Liberal but they've been personally affected by burglaries & car break-ins/vandalism. They sat to the sidelines to abstain from voting rather than voting FOR harsher criminal penalties. Ultimately they knew that Blue state votes wouldnt' affect the EC count.", 'created': '2024-11-10 19:27:30', 'submission_id': '1go2sdb'}
{'comment': 'Their fucking brain.', 'created': '2024-11-10 19:34:04', 'submission_id': '1go2sdb'}
{'comment': 'Is Russia helping Trump win classify as stealing an election?', 'created': '2024-11-10 19:55:42', 'submission_id': '1go2sdb'}
{'comment': "I don't know if there was funny business so, I don't want to start mess. I do know my vote is not showing as counted nor is my Mom and sister’s.", 'created': '2024-11-10 20:02:47', 'submission_id': '1go2sdb'}
{'comment': 'The difference between me and Trump is I can grasp reality over feelings. They won. I don’t like it but I can accept reality. That’s not even to say there still was not a loose effort between burning ballots, bomb threats, and bribing the public through Elon’s lottery. Through it all the citizens of the US elected a blatant serial criminal to office again.', 'created': '2024-11-10 20:05:08', 'submission_id': '1go2sdb'}
{'comment': "I don't think so. Right wing political parties are coming to power across the world. That alone is a signifier that people just don't align themselves with liberalism anymore. Populism is in. Anyone who isn't making their sole focus the betterment of the people, or at least making it SEEM like that's their sole focus, will lose the election.", 'created': '2024-11-10 20:15:14', 'submission_id': '1go2sdb'}
{'comment': 'I don’t like stopping as low as MAGA to call election fraud with no evidence. Trust me, they had the votes sadly', 'created': '2024-11-10 20:18:00', 'submission_id': '1go2sdb'}
{'comment': "The right has spent the last 4 year especially, perfected there propaganda, especially online, even if they didn't get votes, they still kept 18 million Dems from voting. I don't think it was stolen and we shouldn't push this narrative, we need to find what we did wrong this time, and make sure it doesn't happen again.", 'created': '2024-11-10 20:27:30', 'submission_id': '1go2sdb'}
{'comment': "One likely swing stare should be chosen then Its not just a recount that is needed, its contacting registered voters with no record of a vote to verify they didn't vote so both numbers add up to the number of registered democrat voters.", 'created': '2024-11-10 20:36:38', 'submission_id': '1go2sdb'}
{'comment': "I don't want to perpetuate a conspiracy theory. I will accept the results. But there is a few things I would appreciate being looked into to verify.", 'created': '2024-11-10 20:36:40', 'submission_id': '1go2sdb'}
{'comment': 'If there is fraud I would think lawyers would be unraveling everything right now before getting on Twitter', 'created': '2024-11-10 20:57:49', 'submission_id': '1go2sdb'}
{'comment': "I'm done with pretending like the GOP doesn't constantly cheat or have operatives left in the govt to screw things up. Electronic voting machines have not been audited for decades. There's no chance there hasn't been cheating via usb or network. Do we handcount ballots to double check? No. Do we know if someone made change at the vote or tabulation end? No. Did it sway the final count? Who the hell knows.", 'created': '2024-11-10 21:32:26', 'submission_id': '1go2sdb'}
{'comment': '“I don’t want to sound like them”\n\nSorry - but you sound EXACTLY like them. \n\n“There’s talk”\n\n“As soon as something happened, crickets”….', 'created': '2024-11-10 21:35:16', 'submission_id': '1go2sdb'}
{'comment': 'While it is weird Trump won in states where dem senators won, indicating some weirdness, I think that weirdness is just people voting ONLY for Trump - Not down ticket R or split ticket.', 'created': '2024-11-10 21:38:32', 'submission_id': '1go2sdb'}
{'comment': 'I think so. I don’t think there is anything we can do about it though. We don’t have any evidence and by saying it was stolen we look just like them.', 'created': '2024-11-10 22:02:31', 'submission_id': '1go2sdb'}
{'comment': 'I think foreign entities are playing both sides of the US political aisle to further divide us. I think elections are extremely secure because each is enclosed in their own district. There’s not one huge block of votes that can be influenced on a federal level.', 'created': '2024-11-10 22:50:25', 'submission_id': '1go2sdb'}
{'comment': 'I’m just curious how if Democrats apparently took all the seats in Pennsylvania, Trump won Pennsylvania? As an outsider I don’t get that?', 'created': '2024-11-10 23:43:06', 'submission_id': '1go2sdb'}
{'comment': "people need to pay attention to the swing states vote totals. it's consistent to better turnout of new voters and maga flipping votes they lost in 2020. maga flipped votes they lost in texas and florida as well.\n\nthere's some votes flipping in blue states too. not close enough to flip the state, but it indicates that many didn't want more of the incumbent and viewed harris as that.", 'created': '2024-11-10 23:56:30', 'submission_id': '1go2sdb'}
{'comment': 'All these are explainable things, none of this is good evidence of election rigging. I want the results to be wrong more than anyone but the truth is this is what Americans wanted.', 'created': '2024-11-11 00:10:51', 'submission_id': '1go2sdb'}
{'comment': "No, it's not possible.", 'created': '2024-11-11 01:07:30', 'submission_id': '1go2sdb'}
{'comment': 'I wonder if democrats are thinking confidence in the voting system is more important than an accurate count. Particularly if the popular vote win is significant. There’s a bipartisan history of vice presidents who were also candidates choosing not to challenge the count. Richard Nixon could have challenged the obviously corrupt count by Mayor Daly in Chicago. Al Gore after the Florida recount was stopped by the Supreme Court. Now, Kamala Harris. Unlike Trump, I wonder if being part of the government creates the desire to serve by protecting the institution over winning?', 'created': '2024-11-11 01:50:41', 'submission_id': '1go2sdb'}
{'comment': '*spoonamore', 'created': '2024-11-11 01:53:40', 'submission_id': '1go2sdb'}
{'comment': 'I feel like we just lost because we weren’t really organized this year with policies and candidates wise', 'created': '2024-11-11 01:54:07', 'submission_id': '1go2sdb'}
{'comment': 'Right wing media stole the election fair and square.', 'created': '2024-11-11 02:04:27', 'submission_id': '1go2sdb'}
{'comment': 'So what are our options', 'created': '2024-11-11 03:41:30', 'submission_id': '1go2sdb'}
{'comment': 'I have had the same thoughts. We, democrats, are weak. \n\nWe don’t have the audacity (read balls) to shake things up. I don’t think he won either. WeI’ll know in about 10 years.', 'created': '2024-11-11 04:19:08', 'submission_id': '1go2sdb'}
{'comment': 'i am as disappointed as everyone else here with the results of the election. however, i don’t believe it was stolen or there was any type of fraud. sadly, he won. maga, however, will say it’s rigged until they win, then its not. i find it funny how even when we lose, we can admit that we didn’t win the election, and we fight even harder for the following elections. maga tho, when they lose, they cause an insurrection that injures and kills many people, and claims “widespread voter fraud”…….', 'created': '2024-11-11 06:00:28', 'submission_id': '1go2sdb'}
{'comment': "We got bigger problems right now.\n\nYes, we'll need to beat Trumpism bad enough to discourage these shenanigans, but for now we need to make sure there is a functioning democracy in 2026 & 2028.", 'created': '2024-11-11 07:20:40', 'submission_id': '1go2sdb'}
{'comment': 'She lost because she was a woman and men didn’t come out to vote for her. The pattern was similar to Hillary’s result in 2016. I would love to believe it was rigged but there’s no evidence of it and to believe it was will just prolong the pain.', 'created': '2024-11-11 11:13:36', 'submission_id': '1go2sdb'}
{'comment': 'X45 got 322 electoral votes. A huge win for toxic masculinity.\xa0', 'created': '2024-11-11 12:09:00', 'submission_id': '1go2sdb'}
{'comment': 'I do not believe the election was "stolen" as in votes were "created" falsely to lead to a Trump win....did Elon have an outsized influence over voters via his online platform? Probably....but I don\'t know how we force people to check sources and research multiple sources of information - my parents ONLY watch Fox News....I mean ONLY. I have tried to get them to look at other channels but hey refuse. I am sure many ONLY consult "X" and therefore Musk has an outsized influence....not sure how to deal with that.', 'created': '2024-11-11 13:59:09', 'submission_id': '1go2sdb'}
{'comment': 'It was stolen, people are just delusional. Just have to accept the loss', 'created': '2024-11-11 15:54:27', 'submission_id': '1go2sdb'}
{'comment': 'I mean we all know it was, they openly cheated the whole time', 'created': '2024-11-11 16:39:35', 'submission_id': '1go2sdb'}
{'comment': "What justify all the Trump stocks went up 50% in less than a week? Does Tesla makes that much of net profit in a day?\nAmerica is a myth. A myth not a legend. Everything from the government to it's stock markets, cryptocurrency are fake like bubbles controls by someone in the backroom. \nA Squid game.🦑🦑🦑", 'created': '2024-11-11 17:02:31', 'submission_id': '1go2sdb'}
{'comment': 'The hypocrisy is bigly.', 'created': '2024-11-11 22:51:06', 'submission_id': '1go2sdb'}
{'comment': "What in America is not meme now. America is own by Trump already. It's the new page of the Trump's dynasty.", 'created': '2024-11-14 16:01:07', 'submission_id': '1go2sdb'}
{'comment': 'Well it was stolen by social media’s disinformation.', 'created': '2024-11-14 17:57:15', 'submission_id': '1go2sdb'}
{'comment': 'No. Stop acting like a Republican.', 'created': '2024-11-10 19:37:49', 'submission_id': '1go2sdb'}
{'comment': '#Stop. Just stop.', 'created': '2024-11-10 19:49:49', 'submission_id': '1go2sdb'}
{'comment': 'Maybe/probably. But there’s not even a hint of smoke leading to a fire yet and the media would see dollar signs form the ratings uncovering a trump voter fraud scandal. Either it was the most perfect crime ever or we just fkn lost. Right now I think it’s the latter.', 'created': '2024-11-10 16:38:57', 'submission_id': '1go2sdb'}
{'comment': "No it was given away by the millions of Democrats that didn't vote. This is their fault.", 'created': '2024-11-10 16:43:42', 'submission_id': '1go2sdb'}
{'comment': 'No.', 'created': '2024-11-10 16:50:47', 'submission_id': '1go2sdb'}
{'comment': "I think neither election was stolen.\n\n2020: trump has control of the entire Executive branch and two months to find any evidence of fraud. They did not find any. Instead, they attempted a coup and it almost worked. \n\n2024: Harris (via Biden) has control of the entire Executive branch. They now have two months to find any fraud. If they think there is fraud in this election, they likely would have filed motions to investigate. They still could, but they're already moving forward with transitioning power.\n\nI assume Harris and the Democratic party are highly motivated to keep trump out of power (and keep power for themselves). The fact they aren't out there saying they are investigating tells me there is nothing to find.", 'created': '2024-11-10 16:53:43', 'submission_id': '1go2sdb'}
{'comment': None, 'created': '2024-11-10 17:05:02', 'submission_id': '1go2sdb'}
{'comment': 'No.', 'created': '2024-11-10 17:07:21', 'submission_id': '1go2sdb'}
{'comment': 'YES!!', 'created': '2024-11-10 17:32:55', 'submission_id': '1go2sdb'}
{'comment': 'Yes.', 'created': '2024-11-10 17:38:48', 'submission_id': '1go2sdb'}
{'comment': "Stolen, not stolen, it doesn't matter because i'm leaving to Canada", 'created': '2024-11-10 17:58:23', 'submission_id': '1go2sdb'}
{'comment': 'Guys, we just spent 4 years trying to convince the other side that our elections are sound. We can’t backtrack on that just because we didn’t get the outcome we wanted….', 'created': '2024-11-10 22:27:40', 'submission_id': '1go2sdb'}
{'comment': "I don't like even giving this idea power. This is an entire born of weak minds too ignorant to know they're being conned on the most basic aspects of the economy, and don't even know the foundations of their own beliefs and logic. \n\nNo, unfortunately, America told us loud and proud exactly what they want. They want christian nationalist fascism.", 'created': '2024-11-10 22:45:50', 'submission_id': '1go2sdb'}
{'comment': "I thought it was fair, but I'm now wondering....", 'created': '2024-11-10 23:17:06', 'submission_id': '1go2sdb'}
{'comment': "Sorry, dude. It wasn't won because a lot of us just didn't bring it.", 'created': '2024-11-10 23:21:22', 'submission_id': '1go2sdb'}
{'comment': 'Yes', 'created': '2024-11-10 23:36:06', 'submission_id': '1go2sdb'}
{'comment': 'Enough conspiracies, The left is better than this. Learn from this loss and come back and win.', 'created': '2024-11-10 16:47:26', 'submission_id': '1go2sdb'}
{'comment': 'Is this where you are? Willingly creating your own ridiculous conspiracy theories that we all spent the last four years making fun of lunatics on the other side for embracing, or otherwise being not outright dismissing ridiculous conspiracy theories created by lunatics on your own side?\n\nThe results are so freaking clear. America overwhelmingly voted for Trump and/or against Harris. \n\nIt’s time for an honest assessment of where the democratic platform failed. It is not time to embrace conspiracy theories. \n\nIt also isn’t time to find demographics to blame for the failure. The blame is on the party. Their message didn’t resonate. It’s time to find out why, discover ways to do better, and prepare for another election in two years. Democrats replacing the fringe right as the party of the crazies won’t help..', 'created': '2024-11-10 16:46:38', 'submission_id': '1go2sdb'}
{'comment': 'No the election was not stolen!', 'created': '2024-11-10 17:30:28', 'submission_id': '1go2sdb'}
{'comment': 'Yes it was', 'created': '2024-11-10 16:48:42', 'submission_id': '1go2sdb'}
{'comment': 'No. Harris got more than Biden in several swing states. And we saw redshift in most states, all of which have different counting systems so some sort of "Elon Musk hack" or whatever people are saying wouldn\'t be able to cause such a uniform shift. Each precinct is monitored separately and reports their votes separately and this data is available. \n \nAt most a few counties maybe had some issues but the necessary scope of a conspiracy to steal this on a macro scale is virtually impossible. \n \nAlso if it was stolen they\'d probably have given themselves a few more votes in the Senate to at least win more of those seats.', 'created': '2024-11-10 16:38:13', 'submission_id': '1go2sdb'}
{'comment': 'No, it wasn’t stolen. The conspiracy theories are total nonsense.', 'created': '2024-11-10 17:40:16', 'submission_id': '1go2sdb'}
{'comment': 'No it wasn’t. Stop this stupid conspiracy theory shit. At least pretend to be better than MAGA', 'created': '2024-11-10 16:39:50', 'submission_id': '1go2sdb'}
{'comment': 'No. my fellow life long Dems. seriously. \n\n\nWill he piss his name on Federal buildings and streets and airports, yes. Will he hold up his signature like a 2nd grader 100 times, yes. Will he try to put his face on money, yes. Use austerity measures yes.\n\n\nLet’s get real: some administrations have faced unique crises or floated the idea of changing election logistics, *none* have refused to leave office when their terms expired or succeeded in unilaterally postponing elections. - “but the Capitol attack” horrid. But it didn’t turn into Civil war and the people revived their own versions of justice.\n\n\n224 years and an actual consequential civil war and still we remain.\n\n\nBelieve that our uniquely American constitutional system, with its checks and balances, has historically ensured that transitions of power remain consistent and democratic. This tradition remains a cornerstone of the United States’ political stability. \n\n\nLincoln, Jackson, Wilson, FDR, Nixon, WBush, Trump all have been claimed to be dictators, imperialists, criminals who abused the powers of the office.\n\n\nLet’s start selling a better message. \n\n\nLet’s start basic again. Let’s get elected judgeships in place locally and down to the last small county checks and balances will work its way through. \n\n\nIf we can’t trust the efforts of millions before us and keep shining the candle in the dark we will loose our country. Trust your neighbors are good people until they show you otherwise and be willing to be the best citizen you can be.', 'created': '2024-11-10 17:03:39', 'submission_id': '1go2sdb'}
{'comment': 'No this is Russian and Chinese propaganda. They know they can’t defeat the U.S. in a conventional war but they think they might be successful in tearing America apart from within. They first used Republicans in 2020 and now they are trying to use Democrats in 2024.', 'created': '2024-11-10 18:27:32', 'submission_id': '1go2sdb'}
{'comment': 'Yes. \n\nBy the DNC. \n\nFrom registered Democrats.', 'created': '2024-11-10 18:35:43', 'submission_id': '1go2sdb'}
{'comment': 'No.', 'created': '2024-11-10 18:37:04', 'submission_id': '1go2sdb'}
{'comment': 'No, not in the sense of messing with the ballots. \n\nThis was just like 2016. Propaganda and disinformation.', 'created': '2024-11-10 18:44:44', 'submission_id': '1go2sdb'}
{'comment': 'No, it wasn’t.\n\nElon didn’t know the results hours in advance. He knew the results hours after the polls had closed but before it was called. Anyone paying attention to the count knew that Trump was probably going to win before midnight EST. \n\nDemocratic votes aren’t “missing”, they’re on the west coast, especially California, and haven’t been counted yet.', 'created': '2024-11-10 18:49:53', 'submission_id': '1go2sdb'}
{'comment': 'Damn It! \n\nIf it wasn’t stolen on one side four years ago, it was installed on and on the other side this time.\n\nSo tired of conspiracy theories.', 'created': '2024-11-10 18:52:55', 'submission_id': '1go2sdb'}
{'comment': 'No. The American people bought into his fake populism. Instead of actually using their brains, they were just worshipping whoever told them what they wanted to hear, cheering him on as he spread chaos and division across their country. They gobbled up his sociopathic manipulation tactics even though he was incoherent. They heard all his empty promises and thought that was enough to vote for him like it was some reality show finale. They ignored every fact, every red flag, because he gave them a scapegoat to blame: Joe Biden and Kamala Harris. A war in Ukraine because of some bloodthirsty dictator with the country that produces most oil in the world? Joe Biden and Kamala Harris. Inflation due to sanctioning said country? Joe Biden and Kamala Harris. They just wanted someone to go up there and rant. He could’ve jerked his micropenis off on the debate and still won', 'created': '2024-11-10 19:00:07', 'submission_id': '1go2sdb'}
{'comment': 'This thinking is so wildly counter productive. As somebody said if there were any credible claims worthy of investigation that would be one thing. \n\nNow is the time for some deep soul searching and strategizing not wasting our time on conspiracy theories. \n\nThe republicans have convinced working class rural Americans to vote against their own self interests for years…we need to do everything in our power to get them to see that and that is going to take a complete and total course change. We can no longer allow ourselves to take on thousands of causes. Find 2-3 that have universal appeal and stay the course. Literally use the Republican playbook against them. It might take decades but it will be worth it for our children and their children.', 'created': '2024-11-10 19:00:48', 'submission_id': '1go2sdb'}
{'comment': 'No. It was a fair election.', 'created': '2024-11-10 20:49:24', 'submission_id': '1go2sdb'}
{'comment': 'I have proof of election fraud! It’s the same proof Trump has!!! /s', 'created': '2024-11-11 00:00:58', 'submission_id': '1go2sdb'}
{'comment': 'The election was not stolen or hacked. Full stop.', 'created': '2024-11-11 01:07:07', 'submission_id': '1go2sdb'}
{'comment': '“Let Me Be Clear” I was an NYC poll worker! My colleagues and I made sure every vote counted. The protocols to keep this voting process secure and ethical were taken to heart. It comes down to Kamala not being clear, 14 mil not voting, voting for him because that’s what Rs do, voting for him and not for her, voting for a couple of issues that are agreed with. People were fed up with blue, I saw it and I heard it. I was told by a govt worker friend that this election wasn’t stolen.This is who the majority voted for. They have no idea what they really got themselves and US into.', 'created': '2024-11-11 03:38:40', 'submission_id': '1go2sdb'}
{'comment': 'What’s your proof of any irregularities? Just because someone, without proof, says 20 million votes were stolen, doesn’t mean it actually happened! When someone makes such an outrageous claim, ask them for their evidence and then vet it before publicly posting that information on social media!', 'created': '2024-11-11 09:19:22', 'submission_id': '1go2sdb'}
{'comment': 'No. It was not stolen. Elon make a weird claims all the time.', 'created': '2024-11-10 16:33:44', 'submission_id': '1go2sdb'}
{'comment': 'You will need to accept that Trump outperformed Kamala in the end. All those celeb/media outlet endorsements meant absolutely nothing.', 'created': '2024-11-10 17:29:40', 'submission_id': '1go2sdb'}
{'comment': 'It’s not really that surprising when the party has abandoned the middle class and lower class. That includes the people you disagree with…\n\nI live in rural Pennsylvania, and I’ve done outreach to the party and know several others who’ve organized this election, my own mother included, but the party seemed more interested in ignoring us and focusing on the urban areas. It’s hard for me to defend that as a rural democrat. When you look at rural areas and rural governments, they are dominated by Republicans. They are the ones doing things in these areas, bad or good, but they are at least giving these people attention.\n\nWhile I understand that Democratic economic policies are more beneficial to most of the low income people living here, it’s hard to convey that when the party ignores these areas. It doesn’t help that the majority of these people get their news and info from Fox, social media, and gossip. \n\nMost importantly, a lot of people in the party talk down to people they disagree with (I have been guilty of this as well). You don’t change people’s mind that way, if anything you just entrench them deeper in their own position. Being condescending comes off as rude, insulting, and arrogant.\n\nI know we disagree on many things (big things) such as morality, ethics, or even logic, but you don’t win people over by not listening (even if what they are saying is a lie). The DNC is being led by what would have been moderate Republicans in the 1970s. While I do think that Democrats are the better option, I don’t think either party is representative of what’s in the best interests for the majority of the country, and for all of his flaws, Trump is at least honest about that, and that has bought him credibility with a lot of people. The only person like that on the left with anykind of following is Sanders, maybe AOC, and to a much lesser extent Elizabeth Warren.', 'created': '2024-11-10 17:55:40', 'submission_id': '1go2sdb'}
{'comment': 'Just. Stop. It.\n\n\n….. and also try showing up to vote next time. That might help.', 'created': '2024-11-10 18:16:04', 'submission_id': '1go2sdb'}
{'comment': 'No. We are not MAGA, lets be better. We live in objective reality. Trump won. Harris lost. It sucks, but it is what it is.', 'created': '2024-11-10 19:22:36', 'submission_id': '1go2sdb'}
{'comment': 'Nothing was stolen. The reason 10 million didn’t show up was they thought rational people who saw how much of a dangerous threat he was in his first term and the J6 insurrection and all of the criminal investigations that there would be zero possibility he would ever set foot in office again. \n\nWe showed up in 2018 before the pandemic. We showed up in 2020, 2022. \n\nThis is why you can’t just check out. You need to engage and make this your responsibility. His base is nearly exact from 2020. He didn’t lose anyone. That’s the difference. They stayed the course, we didn’t. Trump didn’t gain anything, but we allowed the felon, rapist, fascist and a dire threat to everyone’s freedom back into office. \n\nMany people will die as a result of his idiot coming back into office. Many seniors will lose access to healthcare. The ACA gone, Social Security gone, the post office gone, infrastructure gone, public schools gone. People will lose their homes, people will lose their jobs because of the high tariffs. It’s your worst nightmare about to be unleashed. There’s a good reason why Warren Buffett is selling everything right now. He knows what the economic road path is gonna be in the next four years.', 'created': '2024-11-10 16:44:37', 'submission_id': '1go2sdb'}
{'comment': 'No. There’s a billion and a half reasons Kamala lost.', 'created': '2024-11-10 22:43:52', 'submission_id': '1go2sdb'}
{'comment': 'What was stolen was the power of incumbency. Once Biden dropped out, it was lost.', 'created': '2024-11-10 16:42:50', 'submission_id': '1go2sdb'}
{'comment': "Don't buy into conspiracy theories such as this. The election wasn't stolen. Leave the conspiracy theories to others and speak out against people trying to push stolen election theories from either side.", 'created': '2024-11-10 17:24:13', 'submission_id': '1go2sdb'}
{'comment': 'No it was not. We lost. Denying it just ensures we don’t learn and lose again next time.', 'created': '2024-11-10 17:25:13', 'submission_id': '1go2sdb'}
{'comment': 'No this one we gave away', 'created': '2024-11-10 18:07:08', 'submission_id': '1go2sdb'}
{'comment': "Biden said it wasn't stolen...", 'created': '2024-11-10 16:51:35', 'submission_id': '1go2sdb'}
{'comment': 'Just a reminder, we humans are prone to seek or make explanations for events that happen outside our control. The election was not stolen. The Democratic candidate failed (for many reasons) to get enough folks willing to vote for her. Simple as that.', 'created': '2024-11-10 16:54:30', 'submission_id': '1go2sdb'}
{'comment': 'Please stop with this Blue MAGA bs\n\n"Haven’t seen much of this on mainstream media or left wing commentators, more so on TikTok"\n\nPlease do not use tiktok as a source for anything. Find some kind of reputable news channel that is showing that and then you can start talking about it\n\n"Many people claiming their votes were not counted in key states."\n\nWhy would you not link anything that demonstrates this? And even if you did, why should I trust these people any more than the Trump voters in 2020?\n\nI don\'t mean to be so harsh on specifically you, if you really are well-intentioned, but this is the kind of stuff that is destroying this country. Claims without evidence being pushed to support one side\'s agenda. This is the kind of stuff that maga does all the time, and one of the main reasons I\'m a democrat is because our side does not do it/does it a lot less', 'created': '2024-11-10 17:24:54', 'submission_id': '1go2sdb'}
{'comment': "Right?! It just makes it so fucking obvious that no one actually believed those conspiracies Trump and his goons were spreading. If his supporters actually believed that bullshit *and* cared about democracy, they'd at least still be calling for investigations into voter fraud.", 'created': '2024-11-10 16:47:11', 'submission_id': '1go2sdb'}
{'comment': 'This is the essence of why I can’t stand communicating with maga- it’s so hypocritical and frustrating. I find it so juvenile and annoying. Watch, they will be telling their viewers on Fox News that it’s good prices are up when prices inevitably go up with trump. That’s the issue with this whole thing- disinformation is winning.', 'created': '2024-11-10 16:52:53', 'submission_id': '1go2sdb'}
{'comment': "I'm waiting to hear how it went when Trump demanded law enforcement be sent to Pennsylvania due to cheating and ballot irregularities and yet somehow it's all good now. Guess the irregularities were in his favor.", 'created': '2024-11-10 18:16:02', 'submission_id': '1go2sdb'}
{'comment': 'Right! When all of the know fraud has been them. Burning boxes, fake electors, cort cases to make it harder to vote, kicking people off lists. And more', 'created': '2024-11-10 18:07:37', 'submission_id': '1go2sdb'}
{'comment': 'Seriously the silence is deafening, as they say…', 'created': '2024-11-10 16:45:11', 'submission_id': '1go2sdb'}
{'comment': 'It was all a distraction while they actually stole the election and succeeded this time. Thats what authoritarian dictatorships do like the Nazis. It’s not like they weren’t warned though. I guess we wanted a dictatorship after all. 🤷\u200d♂️', 'created': '2024-11-10 18:08:41', 'submission_id': '1go2sdb'}
{'comment': "There's no rebuttal or a debate to whether you have a theory when commenting about Trump stealing the election. Dead silence but you get the downvote, I think some believe it but don't care lol. I mean let's be honest, when a person points the finger there is always three fingers pointing back. This is classic Trump, then he has Linda McMahan who is WWE's Vince's wife in his politics, when the whole assassination attempt seems so much like something written in a WWE Smackdown episode.\n\nIt wouldn't be without reason to think that Putin or Elon interfered somehow. The difference is Dems won't start riots and insurrection over this issue but strategically wait for said President to shoot himself in the foot and give himself away.", 'created': '2024-11-10 20:30:56', 'submission_id': '1go2sdb'}
{'comment': "I agree, i like to avoid thinking about this but it's weird, with the amount of polls that showed support for Harris i find it sus. I get people were worried about their wallets (if voted for trump) but there were more importance things to worry about", 'created': '2024-11-10 18:09:58', 'submission_id': '1go2sdb'}
{'comment': 'They were liars the entire time. You don’t say?', 'created': '2024-11-10 18:50:33', 'submission_id': '1go2sdb'}
{'comment': '“Nobody was supposed to believe that anyway”. \n\nThe screaming petulant children got the toy (economy and military) because they yelled and screamed loud enough for long enough with zero consequences.. I wonder what the consequences would be if democrats started behaving like republicans? Thing is, democrats aren’t that nasty.', 'created': '2024-11-11 00:02:40', 'submission_id': '1go2sdb'}
{'comment': 'This election is fraudulent. There’s no question that they cheated.', 'created': '2024-11-10 21:32:16', 'submission_id': '1go2sdb'}
{'comment': 'Shhh, someone’s going to find out our secret. -Mike Johnson.', 'created': '2024-11-10 22:17:06', 'submission_id': '1go2sdb'}
{'comment': 'The campaign to erode public trust in our institutions is straight out of the fascist playbook. Hitler did it, Putin did it, and now Trump has used the exact same playbook. The reason for it is that if you can’t trust any entity, then there is no truth and the only truth that exists is the one that your leader is spewing out and you want to believe.', 'created': '2024-11-11 00:30:08', 'submission_id': '1go2sdb'}
{'comment': 'Exactly what I was saying. They’re already starting lawsuits to stop recounts. Funny how they complain when we win but shut it when they’re winning and if we think it was wrong, they tell US to deal with it. I know we did it before but I want to say this all started under Obama.', 'created': '2024-11-10 22:48:15', 'submission_id': '1go2sdb'}
{'comment': 'They knew what they were doing. Sowing discord w/ their notably disingenuous projection to plant the seed and take it to the courts if they lost.', 'created': '2024-11-10 20:02:02', 'submission_id': '1go2sdb'}
{'comment': 'Was that the slightest bit surprising, though? We all knew that would happen. In 2016 he kept saying it was rigged until he won.', 'created': '2024-11-11 01:28:27', 'submission_id': '1go2sdb'}
{'comment': 'How do we call it out or find out the legitimacy?', 'created': '2024-11-11 02:21:46', 'submission_id': '1go2sdb'}
{'comment': "Democrats desperately need to believe that 'the system works', even when it doesn't. They're well intentioned, but this belief often works against them.", 'created': '2024-11-11 11:10:43', 'submission_id': '1go2sdb'}
{'comment': 'This is the MAGA mantra: if we lose, it was rigged. If we win? All good!', 'created': '2024-11-12 15:53:26', 'submission_id': '1go2sdb'}
{'comment': 'Apparently alot of people did not vote. I do blame the media and internet for giving the impression Harris was a shoe in.', 'created': '2024-11-11 02:08:04', 'submission_id': '1go2sdb'}
{'comment': 'At the very least.', 'created': '2024-11-10 17:16:38', 'submission_id': '1go2sdb'}
{'comment': 'I’m (66M) progressive and have been a liberal minded person my entire life. I also gobble up news from multiple sources; left, right and center. To the best of my knowledge, there have been no CREDIBLE sources that support an unfair and/or dishonest election.', 'created': '2024-11-10 19:47:34', 'submission_id': '1go2sdb'}
{'comment': 'Would love to understand more about Elon’s app that he used to learn of the results 4 hours earlier than everyone else…', 'created': '2024-11-10 20:08:57', 'submission_id': '1go2sdb'}
{'comment': "An investigation takes months. By then, he'll have declared himself king, and nothing will be done.", 'created': '2024-11-10 21:52:39', 'submission_id': '1go2sdb'}
{'comment': 'Auditing ballots rather than the influence of the voters casting the ballots is what adversaries of America want the world to believe to undermine America’s democratic electoral system.', 'created': '2024-11-10 19:58:49', 'submission_id': '1go2sdb'}
{'comment': 'Lpt: avoid hiring the firm Cyber ninjas', 'created': '2024-11-11 02:13:31', 'submission_id': '1go2sdb'}
{'comment': 'Careful, Maggats are trying to make democrat election deniers happen.', 'created': '2024-11-11 00:26:56', 'submission_id': '1go2sdb'}
{'comment': 'And illegal means by using bomb threats and setting mailboxes on fire....', 'created': '2024-11-10 21:47:06', 'submission_id': '1go2sdb'}
{'comment': 'And literally paying voters. With zero consequences.', 'created': '2024-11-10 20:07:27', 'submission_id': '1go2sdb'}
{'comment': 'I feel like this needs to be said more. \n\nLetting Elon Musk buy Twitter was a mistake on SO many levels.', 'created': '2024-11-11 02:05:46', 'submission_id': '1go2sdb'}
{'comment': 'I still don’t get, if maga was so much more mobilized than everyone else, how Dems are winning down ballot races and initiatives in swing states trump supposedly ran away with.', 'created': '2024-11-10 16:59:54', 'submission_id': '1go2sdb'}
{'comment': 'Why did all of the democratic senators in swing states win, but Trump won those states?', 'created': '2024-11-10 17:41:13', 'submission_id': '1go2sdb'}
{'comment': "This. The popular vote is turning out to be very close, which makes the lack of turnout and third party votes all the more frustrating. Especially when Trump is already using the pop vote as proof that people want his most extreme policies enacted. Hopefully the gap gets even closer to shut that up.\n\n\n\n\nThe only thing that makes me wonder is all their little comments about having a little secret, etc. But I suspect that was another electoral vote scheme that they frankly ended up not needing.\xa0\n\n\nI do trust that if the very legally-prepped Harris campaign saw any concerns, it would be looked at. And the burden of proof would be on them, just like it was on Trump's lawyers, whose lawsuits were thrown out time and time again.\xa0", 'created': '2024-11-10 17:01:38', 'submission_id': '1go2sdb'}
{'comment': "And the Russians are probably starting to play our side now, so we'd better be careful. They wanted Trump to win because he furthers their destabilization strategy, but ultimately what the Russians want is for the Democrats and Republicans to rip each other to pieces until the United States splits into multiple countries.", 'created': '2024-11-10 17:57:27', 'submission_id': '1go2sdb'}
{'comment': "Do we have a lot of data that democrats sat this one out-- or is that what we're being TOLD by a media monopolized and run by billionaires who prefer Trump because he'll protect their money?\n\nI'm not a conspiracy theorist at all, but at this point, I don't give a shit if we look crazy to them. They're COUNTING on us to be afraid to call it out because they've set us up to look that way. We have too much to lose to sit complacently by as they crush our democracy, our rights, our freedoms into dust-- especially when everything about this election was suspicious. They set the rules (calling elections rigged)-- why shouldn't we play by them?", 'created': '2024-11-10 17:36:34', 'submission_id': '1go2sdb'}
{'comment': 'I think the emerging concern is why was there so many split tickets? They voted for democrats down ticket but trump for president? That doesn’t make sense and is worthy of looking into, socially and legally.', 'created': '2024-11-10 17:09:23', 'submission_id': '1go2sdb'}
{'comment': "Very well said, and I agree. The only thing that concerns me, and is weird,\xa0 is that trump said at a rally before the election that he didn't need their votes. ???", 'created': '2024-11-10 17:25:02', 'submission_id': '1go2sdb'}
{'comment': 'This needs to be the top comment. Although we have every reason to be suspicious, we must also make sure we don’t baselessly throw around accusations without hard proof. Otherwise we wouldn’t be any better than MAGA. I’m sure if Kamala and her legal team suspected anything (or currently suspect something), then they’ll investigate. For all we know, they’re doing that now but just on the down low so as not to stir the pot.', 'created': '2024-11-10 16:49:50', 'submission_id': '1go2sdb'}
{'comment': 'California had 17M votes in 2020 -- they are still currently at 66% counting this year and only \\~11M total counted, so there could still be big amount coming in there and a few other places.', 'created': '2024-11-10 19:26:25', 'submission_id': '1go2sdb'}
{'comment': 'This!\nMAGA behave like a bunch of poor sport crybabies.\n\n\nIf you lose, get over it and do better next time.\n\n\nThere are many ways in which this could have been handled better. Whether it would have made a difference or not, given how indoctrinated most Americans seem to be, who knows.\n\n\nAll people can do is learn from\xa0mistakes and try to do better going forward.', 'created': '2024-11-10 19:10:44', 'submission_id': '1go2sdb'}
{'comment': 'The GOP had four years to plant the destruction and doom hypocrisy, along with moving districts around & locking voting blocks up in their favor.\n\nIf Kamala would have said “Trump is afraid to debate me again because he knows he is out of his league & I will rip him apart yet again”, and just campaigned on that indisputable fact, with “Eating the Dogs” commercials every 30 minutes, she probably would have taken a few swing states.', 'created': '2024-11-10 17:11:41', 'submission_id': '1go2sdb'}
{'comment': 'Bingo!', 'created': '2024-11-10 23:33:49', 'submission_id': '1go2sdb'}
{'comment': 'Agreed.\n\nThe shift to the right was too widespread and too internally consistent across the country to be fabricated.\n\nAnd any steal the right attempts will be nowhere near so sophisticated. It will be obvious. They don’t do subtlety or sophistication. Pair with with the fact that our vote counting systems are not that easy to hack, and are decentralized. It would be nearly impossible to fake these results, and the Republicans of 2024, with the tools available to them, have neither the ability nor the inclination to pull that off.\n\nFurthermore, these results are aligned with international trends (e.g. against incumbents). And the broad shift seen in the national vote matches shifts seen across every category in exit polling.\n\nIt this is not actually, from a statistical perspective, that surprising. For instance, while Nate Silver’s model gave Harris a 50% chance of winning, it also found this precise map, with Trump getting 312 electoral by winning all swing states, be the most likely outcome. (It also found Harris sweeping the swing states to be the second most likely outcome.)\n\nI’m just as shocked, horrified, and frankly disgusted by the choice people made as anyone. But let’s remain intellectually honest here. There just aren’t good reasons to doubt the integrity of these results.\n\nWhat I am worried about is 2028. (Probably less so 2026, because Trump DGAF about his own party and won’t drive the party to prioritize undermining democracy until he’s on the ballot again. Because, unless he dies, he’s absolutely going to defy the Constitution and run for number three.)', 'created': '2024-11-10 18:12:17', 'submission_id': '1go2sdb'}
{'comment': 'Why does it matter. Who ever is willing to fight and who ever is the most agressive wins right? He won and the janurary 6ers are going to be freed no matter the offence. \n\n Law and order no longer exists.', 'created': '2024-11-10 18:59:02', 'submission_id': '1go2sdb'}
{'comment': 'It is fascinating that we\'re presented with a very tough loss, similar as what the Right felt in 2020, and instead of jumping on a conspiracy, we have those saying "Shit sucks and I don\'t get it." but I don\'t see a comprehensive "Stop the Steal" campaign from the Left.\n\nMaybe it\'s coming but I feel like we\'re just more deflated and depressed than anything.', 'created': '2024-11-11 01:54:39', 'submission_id': '1go2sdb'}
{'comment': "Right now? I'm glad that sensible rational people like you exist. The last thing we need to do is start spiraling into despair and conspiracies. We need to just prepare to pick up the pieces and reevaluate our strategies.", 'created': '2024-11-10 17:29:04', 'submission_id': '1go2sdb'}
{'comment': 'I wish I could up vote this 100 times.', 'created': '2024-11-10 17:20:15', 'submission_id': '1go2sdb'}
{'comment': 'Trump overwhelmingly won Florida, but amendments to legalize weed and overturn the abortion barely failed because they required 60% of the vote instead of a 50% majority. \n\nI don’t believe anything nefarious is afoot. Democrats (and I include myself) have got to demand better from the DNC. I vomited in my mouth when we trotted out the war profiteering Cheney’s. I mean, is that how low we’ve sunk? Dick Cheney who shot his friend in the face?\n\nWe’ve also got to stop holding candidates to a purity test. Republican’s know very well Trump is not perfect but they don’t require purity. It’s part of their mantra, “I don’t care if he….”\n\nAnd we need to completely abandon, “We are not Trump” as the agenda.\n\nThis isn’t the politics of our parents and grandparents anymore. The next election is 2026; and then 2028 for the big chair. Hopefully DNC can realize it’s not the 1980’s or 1990’s anymore and do things different.', 'created': '2024-11-10 19:23:37', 'submission_id': '1go2sdb'}
{'comment': '>Right now, all we have is data suggesting that a lot of Dems sat this out and Trump got his entire base to show up.\n\nIf you could steal an election, this would be the least obvious way to do it', 'created': '2024-11-10 18:18:50', 'submission_id': '1go2sdb'}
{'comment': '💯! Trust but verify.', 'created': '2024-11-10 17:15:17', 'submission_id': '1go2sdb'}
{'comment': "They are sheeple. Every conspiracy they have bitched about when debunked they just move on to the next one. It's a weird collective/hive mindset.", 'created': '2024-11-10 16:55:49', 'submission_id': '1go2sdb'}
{'comment': 'It\'s amazing how easily Trump waved away project 2025. "I don\'t support project 2025" Oh, okay, everyone heard him; case closed!\n\nProject 2025 was made by people who work with him, have worked with him or who support him. And all it takes is for Trump to say, *oh, I\'m not doing that*. And *that\'s* when people take his word at face value? Look at all the ridiculous hurdles Democrats have to jump through to correct outright lies. The dichotomy of truth in this country is completely fucked.', 'created': '2024-11-10 21:08:25', 'submission_id': '1go2sdb'}
{'comment': "They are most likely looking into things out of an abundance of caution, but wouldn't be advertising that to the public. If something nefarious did happen with the election they wouldn't want the instigators to know about their investigations.", 'created': '2024-11-11 02:18:04', 'submission_id': '1go2sdb'}
{'comment': 'I would like to believe that they probably are aware of the conversations going on about the suspicions and I do believe it is not being advertised until once they know they have some sort of evidence or not about it. I think it would be ridiculous for them to publicly and now they’re investigating itat this point', 'created': '2024-11-11 23:40:48', 'submission_id': '1go2sdb'}
{'comment': 'Why wasn’t it counted?', 'created': '2024-11-10 17:56:52', 'submission_id': '1go2sdb'}
{'comment': 'This is partially why I think Mail-in voting should only be available for those who either won\'t be where they need to be on election day. I am a vote on election day person (probably because I am a former Republican. haha). \n\nWe need to have election day be a national holiday so no one has an excuse. We can do in person early voting, but mail-in should be for those who can\'t get to the polls and should be available upon request so your voter information can get marked in a system that says you requested the mail in ballot.\n\nMail-in ballots should also be counted the moment they are received so they don\'t "get lost" between when they were mailed back and when they finally get counted.', 'created': '2024-11-11 13:19:32', 'submission_id': '1go2sdb'}
{'comment': 'Voted a few days early onsite in MN. Doesn’t show. Reached out to state election office. No reply yet.', 'created': '2024-11-10 22:11:31', 'submission_id': '1go2sdb'}
{'comment': 'I do hope the Dems at least do a proper investigation opposed to rolling over and taking it. This is absurd.', 'created': '2024-11-10 16:51:30', 'submission_id': '1go2sdb'}
{'comment': "Is that why Dearborn voted Trump?\n\nAmerica is in a deeper mess than simple election interference. I mean, the whole thing is rigged to be interfered with in the first place, by all things including gerrymandering to big PAC money, and throw in the funny way media tells the news (did you hear Kamala's laugh because that's an election topic in America these days).\n\nThe end result is that the majority of Americans who exercise their vote are as dumbed down as those too lazy to exercise theirs. They bought what they were sold and concluded that Jeffrey Epstein's best friend is the solution to their problems. \n\nThe next few decades will feel that big time.\nElon Musk proudly exclaimed there will be economic hardships to come for Americans, though expect Musk to bear none of those hardships. \n\nAnd still, America voted for all this, and whatever else suits them in Project 2025.", 'created': '2024-11-10 16:56:54', 'submission_id': '1go2sdb'}
{'comment': 'Do you have a source for the cameras being turned off?', 'created': '2024-11-10 17:16:56', 'submission_id': '1go2sdb'}
{'comment': 'My thoughts exactly. I’m definitely suspicious of the results (especially considering the wealthy, powerful people involved) but even if they did steal it, I highly doubt we’d be able to prove it. Just imagine their reaction if a Democrat even brought it up. I hate this so much', 'created': '2024-11-11 03:28:21', 'submission_id': '1go2sdb'}
{'comment': 'If they accept it, and if there was in fact cheating, it would mean we would likely never have another free and fair election again once republicans monopolize all the power…', 'created': '2024-11-10 20:14:15', 'submission_id': '1go2sdb'}
{'comment': "You have a right to be skeptical but when you fall for conspiracies blindly hoping, I'm calling you out.", 'created': '2024-11-10 20:20:15', 'submission_id': '1go2sdb'}
{'comment': 'Well I figured Boebert would (unfortunately) she moved to a pretty safe red district. But to your other point, yeah it makes no sense so many people voted blue down ballot or voted to codify abortion but still voted for trump…. Make it make sense.', 'created': '2024-11-10 19:12:26', 'submission_id': '1go2sdb'}
{'comment': '💯. He took every single swing state. That makes no sense.', 'created': '2024-11-10 17:18:15', 'submission_id': '1go2sdb'}
{'comment': 'Very', 'created': '2024-11-10 17:08:49', 'submission_id': '1go2sdb'}
{'comment': 'A very good question indeed…', 'created': '2024-11-10 17:10:14', 'submission_id': '1go2sdb'}
{'comment': "Internet connectivity was more likely for trouble shooting or verifying voter information.\n\nI'm a poll worker and have Diebold and Epson machines. They do not connect to the Internet. There is no wifi modem or Bluetooth transfer.\n\nFor most tabulators they'll have a digital copy on a USB drive that's on lock and key - for Epson machines the images of write in ballots are also stored so they can be viewed by both parties.\n\nThere are multiple checks in place. One, the receipt at the end of the night should match the amount of ballots cast in said machine. Two, those numbers should correspond to how many ballots have been used MINUS spoiled ballots and provisional ballots. Three, application for ballots should equal that number. Finally, machines are audited by internal counts.\n\nYou didn't know this, and that's fine. But now you do. So next time someone says something you can correct them on it.", 'created': '2024-11-10 21:26:09', 'submission_id': '1go2sdb'}
{'comment': 'Imagine trying to undermine American democracy but thinking starlink had something to do with it.', 'created': '2024-11-11 07:07:54', 'submission_id': '1go2sdb'}
{'comment': 'You’re sowing doubt because the internet provider is Elon musk? Don’t feed into bullshit.', 'created': '2024-11-10 17:58:25', 'submission_id': '1go2sdb'}
{'comment': 'Yes we all heard it yet NO mainstream media will even discuss this. They (mainstream media) wanted Trump to win, he’s good for ratings and they gave him oxygen the last 4 years.', 'created': '2024-11-10 18:03:50', 'submission_id': '1go2sdb'}
{'comment': 'Didn’t know Kari Lake got more votes than Kamala. Glad Ruben Gallegos won though. But that does raise another question of how all these democrats won in the swing states across the board but Kamala lost to Trump in EVERY swing state… historically that hasn’t happened in a very long time (a candidate sweeping all the swing states). And ultimately I feel like this needs to be investigated properly, because if he can steal the election so easily, combined with the amount of power the GOP is about to have, we may never have another free and fair election again…', 'created': '2024-11-10 17:08:37', 'submission_id': '1go2sdb'}
{'comment': 'Ask any Democrat that doesn’t want to even consider the possibly to answer this question.\n\nPoint us to one election where people made the effort to go stand in line on Election Day and vote blue all the way down a ticket and decide to leave the choice for President blank? This has never happened before. Maybe a few thousand ballots in some election but not a million!!!', 'created': '2024-11-10 17:11:42', 'submission_id': '1go2sdb'}
{'comment': '💯. The math ain’t mathin. 15,000,000 votes??', 'created': '2024-11-10 16:41:57', 'submission_id': '1go2sdb'}
{'comment': "Democrats in charge don't seem to know that if we need to, we could beat them at their own game. But they keep wanting to take the moral high ground all the time despite the fact that stooping just a little lower could save this country.", 'created': '2024-11-11 00:50:33', 'submission_id': '1go2sdb'}
{'comment': 'The 11 million dollar question….', 'created': '2024-11-10 19:10:48', 'submission_id': '1go2sdb'}
{'comment': "For one they aren't final.\xa0 Two, Covid saw a\xa0 massive increase from sending ballots home.\xa0 So less total votes and some people slide from D to R because eggs.\xa0 Not that complicated.", 'created': '2024-11-10 20:15:49', 'submission_id': '1go2sdb'}
{'comment': "Because the evidence is scant, there isn't a viable hypothesis for a stolen election, but people on the left will fall for conspiracies too if they want to believe enough.", 'created': '2024-11-10 20:11:03', 'submission_id': '1go2sdb'}
{'comment': 'wow,...\nour substitute mailman...gave our mailboxes voters pamplets/ballot for like 5 other blocks in neighborhood...clearly could see addresses were wrong. Regular mailman redistribute, but those not found etc...?... I believe something was done,because she would have won.', 'created': '2024-11-10 22:09:54', 'submission_id': '1go2sdb'}
{'comment': '20,000 ballots here in Erie, PA were never sent out or sent to the wrong people. \n\nIt was up to those 20,000 people to check their ballot status and go down to the courthouse to fill out a provisional.\n\nAs of Tuesday morning 7,500 were still not accounted for.', 'created': '2024-11-10 18:14:54', 'submission_id': '1go2sdb'}
{'comment': "I haven't seen anything off though", 'created': '2024-11-10 20:16:18', 'submission_id': '1go2sdb'}
{'comment': 'I think the part that’s hardest to grasp is there are people who voted down ballot democrat but then chose trump at the top of the ticket. If every vote for trump was straight red, we would have lost a lot more congressional seats.', 'created': '2024-11-10 16:25:36', 'submission_id': '1go2sdb'}
{'comment': 'I think it’s also possible that people manipulated themselves. The thing I kept hearing was how great people’s lives were when Trump was president the first time, which was true if you didn’t follow politics or read the news at all, as most people don’t.', 'created': '2024-11-11 01:26:53', 'submission_id': '1go2sdb'}
{'comment': 'prosecution, which happens to those accused of real crimes. Persecution is by status.', 'created': '2024-11-11 03:43:36', 'submission_id': '1go2sdb'}
{'comment': 'I have heard they are working on recounts as well. A lot of people who voted but didn’t have their vote registered…', 'created': '2024-11-10 16:50:07', 'submission_id': '1go2sdb'}
{'comment': 'Heard?\xa0 You have a link?\xa0\xa0', 'created': '2024-11-10 20:16:52', 'submission_id': '1go2sdb'}
{'comment': 'Right?! Or in states where they codified Abortion rights into the state constitution, but the state still went for trump? What kind of sense does that make??', 'created': '2024-11-10 17:11:47', 'submission_id': '1go2sdb'}
{'comment': 'Did well? Lost the Senate and lost ground in the House is a strange way to do well.', 'created': '2024-11-10 17:23:37', 'submission_id': '1go2sdb'}
{'comment': "it's the Cult of Personality that cloaks the Donald. This is especially true for working class folk who see him as a rogue strongman leader who will inflict pain on the political hierarchy. Working class, especially MEN, aspire to be like him.", 'created': '2024-11-10 19:37:15', 'submission_id': '1go2sdb'}
{'comment': 'A lot of voters know almost nothing about politics and make baffling decisions for nonsensical reasons.', 'created': '2024-11-11 00:47:53', 'submission_id': '1go2sdb'}
{'comment': "They were definitely preparing to cheat and try to steal it, but it seems like they didn't have to. Nearly every county in the country shifted right. There are so many different voting methods in different states. It's inconceivable to think that every single county was manipulated. Also exit polls found that most independent voters picked trump. That's why he won.", 'created': '2024-11-11 01:03:22', 'submission_id': '1go2sdb'}
{'comment': 'Seriously it makes ZERO sense!', 'created': '2024-11-10 18:12:38', 'submission_id': '1go2sdb'}
{'comment': 'What is your source for that happening?\xa0 Or just that congressional Democrats outperformed Harris.', 'created': '2024-11-10 20:09:14', 'submission_id': '1go2sdb'}
{'comment': 'The invisible hand of the global oligarchy chose the orange clown. Anybody who thinks voters did are kidding themselves.', 'created': '2024-11-10 20:10:53', 'submission_id': '1go2sdb'}
{'comment': 'They want to take the high road when it may very well be THE END OF THE ROAD…', 'created': '2024-11-10 18:13:48', 'submission_id': '1go2sdb'}
{'comment': 'Passive?\xa0 They fucking lost.\xa0 There is no evidence of the massive fraud in 50 states needed to explain election day.\xa0\xa0', 'created': '2024-11-10 20:17:53', 'submission_id': '1go2sdb'}
{'comment': 'These are the vibes I have been getting.', 'created': '2024-11-10 21:39:21', 'submission_id': '1go2sdb'}
{'comment': "It is absurd.\xa0 It's not a possibility.", 'created': '2024-11-10 20:21:32', 'submission_id': '1go2sdb'}
{'comment': 'So fucking true', 'created': '2024-11-11 03:53:32', 'submission_id': '1go2sdb'}
{'comment': 'I heard somewhere that Pelosi and Obama wanted him.', 'created': '2024-11-12 05:13:45', 'submission_id': '1go2sdb'}
{'comment': 'Same here. I’m not talking storm the capital, but I feel like it’s at least worth discussing.', 'created': '2024-11-10 21:38:36', 'submission_id': '1go2sdb'}
{'comment': 'This is the part that gets me. I have a hard time believing all those people would just sit on their hands when we are being faced with the exact same threat as in 2020.', 'created': '2024-11-10 17:01:12', 'submission_id': '1go2sdb'}
{'comment': 'It’s down to 9 million now as they continue to count. And there’s still 5% to go which would be another 6 or 7 million votes.', 'created': '2024-11-10 17:21:39', 'submission_id': '1go2sdb'}
{'comment': 'I don’t buy it either.', 'created': '2024-11-10 18:46:23', 'submission_id': '1go2sdb'}
{'comment': 'Why?\xa0 Polling errors are often systemic.\xa0\xa0', 'created': '2024-11-10 20:13:45', 'submission_id': '1go2sdb'}
{'comment': 'Not hard for them to hide evidence. How many people actually check to see if or how their ballot was counted?', 'created': '2024-11-10 18:53:30', 'submission_id': '1go2sdb'}
{'comment': 'Just look at his posts on X. He spread a ton of misinformation. Also many, many people in various Reddit groups are saying their ballots were not counted. \nI dunno. It seemed very fishy to me.', 'created': '2024-11-11 02:13:55', 'submission_id': '1go2sdb'}
{'comment': "In Georgia, a single person submitted almost 40,000 contests ahead of the election. That's just shy of a quarter of the discrepancy of a single state. One person.", 'created': '2024-11-10 16:50:45', 'submission_id': '1go2sdb'}
{'comment': 'It’s down to 11,000,000 difference.\n\nThat’s 220,000 per state.\n\nOr roughly 3,000 votes per county.\n\nI’m not arguing it either way, it’s just important to have a complete picture.', 'created': '2024-11-10 16:28:47', 'submission_id': '1go2sdb'}
{'comment': 'https://www.threads.net/@billt801/post/DCIIRcrRhmD?xmt=AQGzIxRBbEg4QYW90CYhTAw_xb--A_SVmT-ZWr-_-Wsa3g\n\nAdditionally, tons of people, including myself, have voted and ballot tracker is saying their vote has been canceled due to mismatch signature or says they arent even registered when they actually voted in person. The reality that a recount is imperative and it just needs to be accepted. \n\nOne person called her local pd (non emergency) asking about what she can do or who she can ask and the man hung up on her. She called same number and a woman answered and the lady even said that she had been geeting so many calls about the exact same thing. \n\nAnd this lady just explains to female police about how her whole family voting in person on election day and now days later every persons ballot status shows not registered. How? They were registered, they hadnt been able to vote in person if they werent. This isnt an insurrection. This is about questioning numbers that arent adding up.', 'created': '2024-11-10 16:46:16', 'submission_id': '1go2sdb'}
{'comment': "It's less than 10M. But yes. They were lazy but also Trump had more turnout from blacks and Hispanics.", 'created': '2024-11-10 16:26:21', 'submission_id': '1go2sdb'}
{'comment': 'This is not true; the vote is not fully counted. Stop spreading this dumb misinformation, it’s feeding 2020 election deniers.', 'created': '2024-11-10 16:33:04', 'submission_id': '1go2sdb'}
{'comment': "Lazy and complacent. Non-American observing from a distance. From my vantage point Democrats don't partipate enough in the whole process. Even when they do find a candidate they do get excited about best recent examples Bill Clinton and Obama not enough must be voting down the ticket. Notice how Republicans ALWAYS control the senate?", 'created': '2024-11-10 16:31:19', 'submission_id': '1go2sdb'}
{'comment': 'I mean even on Election Day there were bomb threats at polling places that originated from Russia..', 'created': '2024-11-10 20:15:32', 'submission_id': '1go2sdb'}
{'comment': 'I would generally agree but there are so many stories (including from real people I know) about weird ballot stuff. And the threats from Trump about voting and already having the votes and Starlink systems being owned by Musk. \n\nNot into conspiracy theories but…', 'created': '2024-11-10 16:34:19', 'submission_id': '1go2sdb'}
{'comment': '/r/democrats does not feature links to that website.\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-10 18:33:13', 'submission_id': '1go2sdb'}
{'comment': 'Trump’s stock is a meme stock. It is bought and sold based on the perceived value of the person, not the company.', 'created': '2024-11-12 15:55:26', 'submission_id': '1go2sdb'}
{'comment': 'Partially, but we need to stop pretending that it was only this or even mostly this.', 'created': '2024-11-10 17:14:44', 'submission_id': '1go2sdb'}
{'comment': 'Hey that’s a reasonable take, don’t you know it’s time for mass hysteria. ;)', 'created': '2024-11-11 22:03:39', 'submission_id': '1go2sdb'}
{'comment': 'explain why all the other Republican candidates had closer elections ?', 'created': '2024-11-10 17:00:30', 'submission_id': '1go2sdb'}
{'comment': 'Ya, yall got suckered into believing the billion and a half lies told by the big con man. Go buy a watch and some shoes and let the adults talk here.', 'created': '2024-11-10 23:14:32', 'submission_id': '1go2sdb'}
{'comment': 'My cousin in another state text me Wed AM with something about 20 million votes missing. He is a Republican but I chose to be optimistic that he was one of the Republicans that did not vote for Trump a third time. Nope, he somehow thought it was proof something was up with the results of the 2020 election. He kept referring to Biden’s total votes and I kept citing percentages for voter turnout in elections from this century. \n\nHe isn’t an idiot at all and he can do math. He also does not use social media. It’s bizarre that even logical people don’t bother taking a moment to use logic. He lives in GA so it’s not like he could be completely oblivious to GA’s recounts in 2020.', 'created': '2024-11-10 23:28:31', 'submission_id': '1go2sdb'}
{'comment': 'Or not voting at all', 'created': '2024-11-11 01:34:07', 'submission_id': '1go2sdb'}
{'comment': 'I had one yesterday told me that Trump’s felony is bogus and garbage because juries are really dumb just like me 🙄.. apparently the system is corript and that’s why Trump got convicted. Then she claimed that she knows because she has 12 years experience as a litigator… I told her that it sounds like an excuse and it doesn’t matter at the end of the day because he’s still a convicted felon lol \nThese people then play the victim card like “you’re so ignorant for calling half the country dumb”. Idiots!! I can’t take it', 'created': '2024-11-10 20:09:29', 'submission_id': '1go2sdb'}
{'comment': 'There’s got to be a limit to how much people will swallow. I’m really hoping that some of them wake up when they’re being told that high prices are good. Not to mention the austerity measures that Musk is hinting at. It’s hard to be loyal when you’re starving and have no healthcare.', 'created': '2024-11-10 18:27:51', 'submission_id': '1go2sdb'}
{'comment': 'Exactly this has been their plan for 50 years. Degrade the education system, tell the right wingers that they are scum unless they work low paying jobs with zero rights, women are sub-human and that brown people are the enemy. Now this has come full circle and more than 50% of the motivated electorate believe this bullshit and votes accordingly. They have played the long game extraordinarily well and there isn’t a or hasn’t been a long term plan on our side to counteract this, just election cycle to election cycle. This all started with the John Birch Society and the mega-rich/oil barons back then and they and their family are still fighting to fuck over the general population.', 'created': '2024-11-11 13:02:14', 'submission_id': '1go2sdb'}
{'comment': '[December 1, 2021 CNN says inflation is good](https://www.google.com/amp/s/amp.cnn.com/cnn/2021/12/01/economy/inflation-good-bad-winners-losers)', 'created': '2024-11-10 21:23:14', 'submission_id': '1go2sdb'}
{'comment': "Yup. It's so frustrating to see his supporters just ignore all these obvious ploys. How can you see the candidate you support do such obviously manipulative shit like this and STILL be ok with it all? Are they just dense, willingly ignoring it or what? I can't stand the fact that he pulls all this obvious shit in front of our eyes and somehow always gets away with it with NO consequences. And then more than half of the voting block just say it's all ok. Fuck.", 'created': '2024-11-11 02:04:54', 'submission_id': '1go2sdb'}
{'comment': 'They were, they deleted millions of Democrat votes. The totals just don’t stack up.', 'created': '2024-11-11 00:05:26', 'submission_id': '1go2sdb'}
{'comment': 'With the help of Starlink', 'created': '2024-11-11 22:52:21', 'submission_id': '1go2sdb'}
{'comment': "It's always projection, as we now all know. That's why we have to wonder if the fix was in. They accused it; doesn't that always mean they were doing it?", 'created': '2024-11-10 18:00:04', 'submission_id': '1go2sdb'}
{'comment': "He's silent because he knows come January, he'll take power. He knows he avoided prison, and his 2 billion dollar debt will be cleared. He doesn't care to do anything or say anything now because it doesn't matter to him. He will go full-blown Hitler, and he won't say anything anymore. Why does he need to? He'll have full immunity with the SC behind him. It will be scarier this time around because we won't hear a peep out of him. He'll just destroy, and we will start hearing the things he's implementing. We think he'll have to ask Congress or whatnot. No. He will do as he pleases with or without Congress.", 'created': '2024-11-10 21:59:47', 'submission_id': '1go2sdb'}
{'comment': 'I’m not a conspiracy theorist by a stretch of the imagination but something seems rotten in Denmark. They had to shut down a bunch of polls in Georgia for bomb threats, and ballot boxes everywhere were torched, Elon was offering bribes… yet they counted and called immediately? I don’t know, it seems really off.', 'created': '2024-11-10 23:22:10', 'submission_id': '1go2sdb'}
{'comment': 'People lie. Who wants to out themselves as the person who wouldn\'t vote for a woman or a non-white person? Who wants to out themselves as being ok with sexual assault? Who wants to admit that they\'re ok with being in the same party as Nazis and Christian theocrats?\n\nPlus, what poll can you conduct that will reach an audience that has zero connection to traditional media and is is extremely skeptical of being contacted by people they don\'t know?\n\nI saw a headline about a poll that was done asking people who they thought their neighbors would vote for. That might be a better strategy going forward. Don\'t ask people what they\'re going to do, ask them what they think the general opinion is in their area. They don\'t have to pretend not to be racist, they don\'t have to admit anything about themselves that they aren\'t ready to admit publicly, etc.\n\nYes, there were more important things to worry about, IF the voters were aware of those things. But for people who actually have the time to pay attention, most are in a media ecosystem that bombarded them with "migrant invasion, crime is skyrocketing, men are stalking girls in bathrooms, the government is refusing to provide aid to Republican states after hurricanes" and more crap like that. For the ones that don\'t have the time, all they see is higher prices at the grocery store. They see what immediately affects them, and that\'s how they vote. In their mind, correlation = causation.\n\nThis happened slowly but steadily. Right wing control of media outlets that the left brushed off as home to just crazy lunatics. Left wing focus on serious issues that most people are woefully underinformed about and don\'t have time to talk about, so voters abandoned us in favor of "I will save you" strongmen.\n\nHow do we get those voters back? We learn to take people seriously, even if their concerns don\'t seem serious or well-founded to us at first. They aren\'t deplorables or garbage. They\'re human beings with real fears about how to put food on the table, how to keep their families safe, how to stay employed, how to hope their kids have a bright future and are able to find a job and housing. For every person who loves being able to flaunt their racism, five more just want a bit more money in their paycheck. We do a great job calling out the racist. But in the meantime, the other five aren\'t hearing the good things we have to say about how we plan to help them. We have to change that, and fast, especially if things get worse in 2025.\n\nTrump\'s modus operandi will be to do or say something outrageous to take up media airtime that we could be using to talk about how Democrats have a better economic plan, or how we create jobs, or how we have superior healthcare and housing plans. We can\'t let him dominate the conversation with things that ultimately do not matter, like we\'ve done for 9 years now. We instead have to ignore anything of no actual substance (like his McDonalds stunt), and spend that time talking to voters, asking for a chance to help them. We didn\'t reach enough of them this time, and it will be so much harder to do next time because of Trump\'s plans to make it easier to share misinformation. But we have to try, and we have to make sure we\'re telling our narrative, not his. I wish I could say I knew how to do this on every possible platform, but maybe enough of us are familiar with enough platforms that we can collectively approach it this way.', 'created': '2024-11-11 03:57:19', 'submission_id': '1go2sdb'}
{'comment': "Excuse me, but there were NO amount of polls that showed support for Harris. On the contrary, the final average of polls showed four states tied, Michigan, Nevada, North Carolina and Wisconsin, and three states leaning to Trump, Arizona, Georgia and Pennsylvania. I'm a Harris supporter, I voted for her, I phone-banked for her and I've supported her for president since 20-frigging-13, for Pete's sake. And she got beaten fair and square. Please let's not fall into our own alternate-reality rabbit-hole, you know???", 'created': '2024-11-13 07:13:53', 'submission_id': '1go2sdb'}
{'comment': 'That is the behaviour of a psychopath.', 'created': '2024-11-11 00:09:38', 'submission_id': '1go2sdb'}
{'comment': 'I’m still in denial about it and want to keep a fair and reasonable skepticism. But seems like a lot of people didn’t vote and that’s it.', 'created': '2024-11-10 20:43:19', 'submission_id': '1go2sdb'}
{'comment': 'There are many people in swing states that are going to vote.org and their votes have not been counted.', 'created': '2024-11-11 14:43:54', 'submission_id': '1go2sdb'}
{'comment': 'I find it hard to believe 10-20 million people just didn’t vote. After years of record turnout. Even for special elections and just 2 years ago during the last congressional election, people just say oh I’ll stay home. \n\nWorse is those people don’t participate in exit polling so we will never know why they stayed home.', 'created': '2024-11-10 23:42:21', 'submission_id': '1go2sdb'}
{'comment': 'Doesn’t mean it didn’t happen… no one ever found Jimmy Hoffa', 'created': '2024-11-10 19:56:03', 'submission_id': '1go2sdb'}
{'comment': 'it was a gargantuan misinformation campaign', 'created': '2024-11-11 00:00:24', 'submission_id': '1go2sdb'}
{'comment': 'i go to foreign sources but they still show a little bias', 'created': '2024-11-11 01:06:25', 'submission_id': '1go2sdb'}
{'comment': 'They used Starlink to transmit the data. The data was encrypted from end to end, so Starlink doesn’t have access to it. Of the data weren’t encrypted end to end, that’s a HUGE gaffe, the republicans are correct, our elections are not safe, and people need to be fired. I seriously doubt they would send plaintext data, even if they owned all the means of transportation. \n\nHow did he know “early”? AP is notoriously slow (in order to ensure they are correct) in calling races. Many outlets called them well before AP. GOP also naturally did their own exit polling and other analysis, so it’s not hard to see how he was certain early. \n\nThis is a nothing burger. Just like the “vote dumps” and all that nonsense last time. The system worked the way it was designed to work.', 'created': '2024-11-10 20:26:53', 'submission_id': '1go2sdb'}
{'comment': 'Me too. What’s up with that?', 'created': '2024-11-10 20:18:55', 'submission_id': '1go2sdb'}
{'comment': 'Letting him run it without ant kind of regulation from the fcc or other organizations on top of that\n\nThey say he spent 120 million on Trump, no he spent 44,120,000,000', 'created': '2024-11-11 02:33:18', 'submission_id': '1go2sdb'}
{'comment': 'They voted for Donald and nothing more because those idiots don’t know politics but they know Trump.', 'created': '2024-11-10 19:57:57', 'submission_id': '1go2sdb'}
{'comment': 'That’s the thing, if we’re seeing that people would have had to “split” their ballots, meaning they voted for trump but not red down the ballot, that’s suspicious\n\nI won’t feel comfortable without recounts in swing states at least in the places that decided the election.', 'created': '2024-11-10 17:02:03', 'submission_id': '1go2sdb'}
{'comment': 'They voted for him and then just didn’t fill out the rest of the ballot because they don’t care about anything else.', 'created': '2024-11-10 17:15:24', 'submission_id': '1go2sdb'}
{'comment': 'The swing state down ballots are perplexing- but I am grateful in N.C. that we got rid of the nutjob candidates.', 'created': '2024-11-10 18:01:14', 'submission_id': '1go2sdb'}
{'comment': "that's what I'm saying. ballot measures and dem reps won where trump won \n\nhow does that work?", 'created': '2024-11-10 17:10:19', 'submission_id': '1go2sdb'}
{'comment': 'It was an anti-establishment race. Unfortunately, too many people saw Harris as more establishment than Trump, the same way as people FELT the economy was not going well, even though all the indicators showed that it was.', 'created': '2024-11-10 17:21:58', 'submission_id': '1go2sdb'}
{'comment': 'There was some split ticket voting, but also keep in mind Republicans picked up 4 senate seats, including one from PA.', 'created': '2024-11-11 00:44:34', 'submission_id': '1go2sdb'}
{'comment': "I can't speak for other swing states, but NC is usually this way, and this year they had some pretty shitty Republican candidates. I'm still hopeful Riggs can somehow get the NC Supreme Court seat. Super grateful that at least we got Stein, Hunt, Jackson, Marshall, and Mo Green (especially Mo Green because Michele Morrow is beyond a nut).", 'created': '2024-11-11 16:42:41', 'submission_id': '1go2sdb'}
{'comment': 'Take with a grain of salt but statistics I saw from one swing state was some Trump voters *only* voted pres and left the rest of the ballot blank.', 'created': '2024-11-10 18:29:05', 'submission_id': '1go2sdb'}
{'comment': 'The same way it happened in 2020. MAGA loyalists came out, voted top of ticket, then left. \n\nHell, I’m a very educated voter (DFL all the way!) and I didn’t even vote my entire ticket.', 'created': '2024-11-10 20:29:01', 'submission_id': '1go2sdb'}
{'comment': 'Because, they voted for those candidates and left the President vote blank.', 'created': '2024-11-10 18:34:13', 'submission_id': '1go2sdb'}
{'comment': "From what I saw in Wisconsin, most Tammy Baldwin voters voted for Harris. But people came out to vote for Trump. And they didn't vote down ballot which is why Hovde lost.", 'created': '2024-11-10 18:24:04', 'submission_id': '1go2sdb'}
{'comment': 'Some people split ticket because national dems have a bad rep but local dems may have a better rep', 'created': '2024-11-11 05:41:44', 'submission_id': '1go2sdb'}
{'comment': 'Yes, everything you said plus we’ve been listening to them talk about how easily the elections are stolen, with evidence or without, and him acting like he doesn’t have to worry about counting votes. And when the whole world is shocked that he won, we’re just gonna be like oh well I guess it’s fair?', 'created': '2024-11-10 17:26:08', 'submission_id': '1go2sdb'}
{'comment': 'And consider everything Leon was saying before the election. And Trump\'s comment about Mike Johnson. And the Heritage Foundation guy saying "The revolution will be bloodless, if the left allows it to be."\xa0\nThey were all so smugly confident. What did they know?', 'created': '2024-11-10 19:15:37', 'submission_id': '1go2sdb'}
{'comment': 'I pray they are looking into it behind the scenes. 💙', 'created': '2024-11-10 22:04:41', 'submission_id': '1go2sdb'}
{'comment': 'I guess they felt they needed 4 more years to verify. Not quite sure yet.', 'created': '2024-11-10 18:14:01', 'submission_id': '1go2sdb'}
{'comment': 'Yep.\n\nI brought this up with my mom and J6.\n\nI said, "I thought is was unquestionably ANTIFA that raided the Capitol? Now all those people are being unfairly treated and should be pardoned?"\n\nShe just said, \n\n"Oh, well.....let\'s not talk politics and argue."\n\nShe brought it up. \n\nThey know. They absolutely know. They just need these conspiracies and excuses to maintain their little bubble. They know if the bubble pops, everything crumbles and they\'ll have to face the truth---not only the truth that they were conned and bought the lies, *but that they willfully helped propagate the lies.* \n\nThey know that the stuff they say won\'t convince anyone, but it\'s enough to convince *them,* and that\'s all that matters.', 'created': '2024-11-10 18:29:33', 'submission_id': '1go2sdb'}
{'comment': 'I am very aware of that. How can we be sure that Trump didn’t continue pounding the “rigged election” drum because they wanted democrats to continue to defend the electoral process while Trump and others actually rigged it? It’s a question worth asking. I’m not claiming fraud, but I think considering the situation this nation has found itself in, it would be worth investigating a handful of swing states, just to be sure. \n\nAlso, Maga republicans were caught casting fraudulent ballots, stealing extra ballots, setting fire to ballots, purging voter rolls, etc. leading up to the election.', 'created': '2024-11-10 17:05:00', 'submission_id': '1go2sdb'}
{'comment': 'You’re absolutely correct!', 'created': '2024-11-12 01:06:39', 'submission_id': '1go2sdb'}
{'comment': "Don't know. I filed a complaint but have yet to hear a reply.", 'created': '2024-11-10 18:00:42', 'submission_id': '1go2sdb'}
{'comment': 'Google it, in the voting offices where it happened, employees complained about this, as did the security services. The cameras were turned off for 10 minutes.There are reports about this from the official site."The cameras went out for 10 minutes"', 'created': '2024-11-10 17:44:27', 'submission_id': '1go2sdb'}
{'comment': 'I found this:\xa0https://www.rgj.com/story/news/politics/elections/2022/11/10/livestream-cams-washoe-county-vote-count-area-went-dark-heres-why/10661538002/\n\n\n\n\nSo nothing reasonable', 'created': '2024-11-10 20:02:17', 'submission_id': '1go2sdb'}
{'comment': 'Check your ballot status a lot of people saying there’s was not counted', 'created': '2024-11-10 22:23:37', 'submission_id': '1go2sdb'}
{'comment': 'It’s been coming along time the question is now what do we do about it', 'created': '2024-11-10 20:41:50', 'submission_id': '1go2sdb'}
{'comment': 'I’m not blindly hoping. I am already planning on how to respond to the upcoming Trump administration and next steps that is best for me and family. I’ve already accepted the results as is. \n\nWhether anecdotal or not (newsflash: not quite as anecdotal as you think!), there have been a lot of irregularities, people being purged right up to the election, people’s ballots not being counted (myself and wife included - we literally voted early in-person). Still shows that it wasn’t counted. \n\nLike I said - they stormed the capital. They did the hundreds of law suits. They screamed at the top of their lungs that there was fraud - for the last FOUR YEARS and even dude was tweeting about it happening in PA ON ELECTION DAY. \n\nThere is a right for recounts. All I am saying is that I hope they do a thorough investigation. If/when it comes back that everything is legit and no evidence of cheating, then it’s over. That’s it. \n\nBut sure, attack the folks that are skeptical of the guy that has the literal reputation of cheating, scamming, stealing, etc. all his life to playing fair this one time. It’s not a joke. It’s not a game. There is a lot at stake. Taking another look and doing due diligence is absolutely 100% worth it and I refuse to think otherwise.', 'created': '2024-11-10 20:53:14', 'submission_id': '1go2sdb'}
{'comment': 'If a ballot machine could be hacked, I wonder if the presidential vote could be deselected leaving the other votes intact. The ballot would surely still show as counted, it would just look like someone refused to make a choice on president…hence all the other democrats winning, and the ballots showing as counted to avoid suspicion.', 'created': '2024-11-11 01:33:08', 'submission_id': '1go2sdb'}
{'comment': "Looks like Bernie Sanders is right again, we can't trust the billionaires.", 'created': '2024-11-11 00:51:52', 'submission_id': '1go2sdb'}
{'comment': "Yes and no. \n\nIt was likely that all the swing states were going to be swept by one candidate, we just didn't know WHICH candidate.", 'created': '2024-11-11 02:08:16', 'submission_id': '1go2sdb'}
{'comment': 'Is that Starlink traffic monitored by NSA?', 'created': '2024-11-10 17:49:40', 'submission_id': '1go2sdb'}
{'comment': 'You don’t think it’s a conflict of interest in the slightest?', 'created': '2024-11-10 18:03:32', 'submission_id': '1go2sdb'}
{'comment': 'Maddow brought it up.', 'created': '2024-11-11 09:25:36', 'submission_id': '1go2sdb'}
{'comment': 'Or ever having another election', 'created': '2024-11-12 00:00:15', 'submission_id': '1go2sdb'}
{'comment': 'The math isn’t mathing because the math you are doing is wrong. The vote is not fully counted. The final turnout will be close to 2020 with some blue voters going red.', 'created': '2024-11-10 16:56:08', 'submission_id': '1go2sdb'}
{'comment': 'Compare it to 2016 and it makes more sense, and there are votes to count.\xa0 2020 was records breaking because we sent ballots to everyone.', 'created': '2024-11-10 20:12:19', 'submission_id': '1go2sdb'}
{'comment': "That's okay. I didn't see anything in 2020 but didn't bother me they wanted to recount and investigate. What bothered me was they did do those things found nothing and Trump and his base still claimed Biden stole the election. Now suddenly there's no fraud bc Trump won? I say if people were saying there was sooo much fraud and we were wrong why not investigate this election too? Only difference is if they say there isn't anything wrong then we will accept our defeat. I will not support anyone who does otherwise", 'created': '2024-11-10 21:03:17', 'submission_id': '1go2sdb'}
{'comment': 'Could also be that people voted just Trump leaving every thing else blank.', 'created': '2024-11-10 16:36:47', 'submission_id': '1go2sdb'}
{'comment': 'I live in a very purple area of Wisconsin split voting does happen. Our senators are complete opposites, Ron Johnson and Tammy Baldwin. Baldwin won reelection by a very thin margin while Trump also won by a very thin margin - and even though she is an open lesbian, she’s generally respected state wide for what she’s done for people here. It’s bizarre and doesn’t make any sense to me that people can recognize the good work she’s done and still vote Trump, but these are not well-informed voters that we’re talking about for the most part.', 'created': '2024-11-10 22:35:33', 'submission_id': '1go2sdb'}
{'comment': 'I do know the definitions.. that was just a typo.', 'created': '2024-11-11 03:45:30', 'submission_id': '1go2sdb'}
{'comment': 'If you google “rapid ballot tabulator malfunctions”, \nyou’ll find Wisconsin, Pennsylvania, are Arizona had areas that had problems and ballots are being recounted. \n I don’t think these machines are connected to the internet, so hacking seems improbable.', 'created': '2024-11-10 20:35:17', 'submission_id': '1go2sdb'}
{'comment': 'Great line.', 'created': '2024-11-10 18:20:00', 'submission_id': '1go2sdb'}
{'comment': 'Exactly and we’ve seen what he did at his speech’s mocking Harris, mocking Biden, and always finding places to stab someone and get people say eh Harris sucks, trump sucks I won’t vote. It’s like seeing a house fire with kids inside and no fire department in sight and just walking back into your house', 'created': '2024-11-10 17:07:03', 'submission_id': '1go2sdb'}
{'comment': "That's something to look at, but gesturing at unknowns as evidence is what maga does", 'created': '2024-11-10 20:00:22', 'submission_id': '1go2sdb'}
{'comment': 'According to Google election results it’s about 4 million now.', 'created': '2024-11-10 16:44:11', 'submission_id': '1go2sdb'}
{'comment': "A month before the election I just happened to check my registration online. I had a very recently updated voter id card, but checked anyway. I was told my registration was listed as inactive. I had verify to my identity and reinstate my voter registration. I was sent a mail in/drop off ballot and voted two weeks before the election. I checked my ballot status and it is listed as received and counted. I was very lucky to have checked when I did. If I hadn't I probably would not have been able to vote. The outrageous thing, is I voted in the last election (in person) and all previous elections. Listing me as inactive was a complete ERROR.", 'created': '2024-11-10 17:05:10', 'submission_id': '1go2sdb'}
{'comment': "And you're beginning to sound just like MAGATs do about 2020; i.e. stupid. Your equating normal errors with some massive conspiracy involving 50 states election departments, some actually run by Democrats. Let it go dude or start thinking the Earth is flat as well.", 'created': '2024-11-10 16:49:53', 'submission_id': '1go2sdb'}
{'comment': 'Oh yes, the Slit your own Throat part of MAGAT.', 'created': '2024-11-10 16:36:48', 'submission_id': '1go2sdb'}
{'comment': "What the fuck does it matter if it's 14, 10, or 6 million? Absolutely none. We lost the popular vote this time. Democrats were just lazy and complacent while the MAGATs did what they always do very well: vote.", 'created': '2024-11-10 16:39:49', 'submission_id': '1go2sdb'}
{'comment': 'Stop. You are a complete hypocrite for criticizing Republicans for it and then doing the exact same thing as soon as you don’t like an election result. It’s embarrassing and everyone feeding this should be ashamed.', 'created': '2024-11-10 16:36:17', 'submission_id': '1go2sdb'}
{'comment': "You fostering them. Let's try this again: there is no way for this level of a steal across 50 states, each with their own voting machine in place. You might as well believe in a flat earth.", 'created': '2024-11-10 16:44:27', 'submission_id': '1go2sdb'}
{'comment': 'If you really are too bullheaded or naive to believe we lost this election than you might as well be a maga in 2020. Grow up.', 'created': '2024-11-10 23:15:50', 'submission_id': '1go2sdb'}
{'comment': 'I’ve been hearing this all week on social media. People saying “but he DID win in 2020”. And I just roll my eyes while I reply that no sitting President can serve more than 2 terms. So which is it? 🙄', 'created': '2024-11-11 02:46:46', 'submission_id': '1go2sdb'}
{'comment': '[removed]', 'created': '2024-11-11 03:52:28', 'submission_id': '1go2sdb'}
{'comment': 'This also! Supposedly 14 million didn’t vote which is possible. I didn’t want to vote!', 'created': '2024-11-11 03:43:57', 'submission_id': '1go2sdb'}
{'comment': 'Litigator or litigated? I’d believe she has spent time being litigated, anything beyond that seems like an attempt to add fabricated credibility to her eh professional opinion that “juries are really dumb” like her. Based on her logic, there are no convicted felons at all. \n\nTrump is a convicted felon. Stating that is not calling “half the country dumb”, it does imply almost a quarter of the population have very low standards for quality of a candidate. If she thinks that’s the same as being called dumb, that’s on her. \n\nWe were all gaslit into overlooking the fact that committing treason disqualified him from running for office. “Not my president” doesn’t quite fit the situation. “Not the president” makes more sense.', 'created': '2024-11-10 23:39:17', 'submission_id': '1go2sdb'}
{'comment': '“There’s got to be a limit to how much people will swallow.”\n\nPrior to 2016, I would have agreed with you. I don’t think there is a limit anymore', 'created': '2024-11-11 19:44:47', 'submission_id': '1go2sdb'}
{'comment': "You'd be surprised, multiple dictators around the world manage to stay popular despite the country struggling through some horrific shit. Hence why Republicans put huge emphasis on degrading public schools, no abortion and put so much money into disinformation.\xa0", 'created': '2024-11-11 14:48:53', 'submission_id': '1go2sdb'}
{'comment': 'They don’t stack up yet it can’t be proven. The electorial college decides anyway and they made their choice.', 'created': '2024-11-11 03:46:09', 'submission_id': '1go2sdb'}
{'comment': 'this. i believe we were robbed. i hope dark brandon is looking into this.', 'created': '2024-11-10 21:26:30', 'submission_id': '1go2sdb'}
{'comment': '>and he won’t say anything anymore. Why does he need to?\n\nHe is an attention whore. \n\n>It will be scarier this time around because we won’t hear a peep out of him. \n\nScarier? It’d be a huge perk to at least not have to hear him. We will not get that one perk. He has to have attention, he has to be praised, grift and claim full credit for any and everything his base considers good. And he will continue to lash out verbally as a senile old man. \n\n>We think he’ll have to ask Congress or whatnot. No. He will do as he pleases with or without Congress.\n\nCorrect. There are not 3 equal branches of government. The checks and balance options granted to each of the 3 branches for the President are useless. A technicality was used as the reason the Senate acquitted him for J6. SCOTUS assisted with delaying the criminal trial as long as possible for J6. The 25th amendment requires a majority of the cabinet and the VP first, then approval in Congress. The election was the last checks and balance and a long list of lies with zero legitimate reasons are why voters said they voted for him. The will of the voters was removed from the equation in the form of countless lies. \n\nWe have an option left-If you can’t beat ‘em, join ‘em. Change party affiliations and drag the Republican Party back from MAGA in Congress through the midterm primary elections. If the MAGA incumbent wins the primary, there is a second chance to boot them in the general election. Less people vote in primaries so the bar for the number of votes should be lower.', 'created': '2024-11-11 00:01:02', 'submission_id': '1go2sdb'}
{'comment': "I'm a data miner by profession and I have been working for our county's Democrat Party. The amount of NON-VOTING registrants is ALARMING, and I know it's just not in our county. Over 50% of the registered democrats 45 years old and younger didn't bother to vote in the 2020 general election and there was an even higher percent of non-voting 45 year old and younger democrats didn't vote in the 2022 midterms. I've ordered up data to see what this latest electorate will tell us.", 'created': '2024-11-10 22:32:54', 'submission_id': '1go2sdb'}
{'comment': 'Maybe their D votes were thrown out but nobody checked? Seems odd that with such high stakes that so many ‘stayed home’.', 'created': '2024-11-11 00:12:33', 'submission_id': '1go2sdb'}
{'comment': 'The problem is Trump and Elon do nothing above board.', 'created': '2024-11-11 09:16:38', 'submission_id': '1go2sdb'}
{'comment': "Its not just a recount that is needed, its contacting registered voters with no record of a vote to verify they didn't vote so both numbers add up to the number of registered democrat voters", 'created': '2024-11-10 20:32:48', 'submission_id': '1go2sdb'}
{'comment': 'Which could make sense if it was a small amount, but millions? It’s hard to believe.', 'created': '2024-11-10 17:04:35', 'submission_id': '1go2sdb'}
{'comment': 'I think there are a lot of people who only voted for Trump and no other office.', 'created': '2024-11-10 17:16:28', 'submission_id': '1go2sdb'}
{'comment': 'Here in Ohio, I know several people who voted for a Democrat sheriff, voted for Sherrod Brown (D), and voted Yes on issue 1 to end gerrymandering...\n\n...but voted for Trump because eggs. Or gas. Or they "just don\'t like Harris." \n\nIt\'s not a large enough number to elect or pass issues here in MAGA Ohio, but I\'d be willing to bet that it was a large enough number in the swing states to have the effect we saw.\n\nIt\'s been my experience in talking to MAGA folks, or people who voted Trump, that Democrats get picked apart and must be absolutely perfect in all aspects, while the Republicans obvious and objectively horrible actions and policies get excused. \n\nI\'ve discussed Trump\'s tariffs with MAGA folks, and the common response is, "well, he\'ll probably adjust his plan once he\'s in charge and not do what he says he\'ll do..."\n\nAnd I\'m like...*You voted for this guy\'s plan, but now you\'re hoping he doesn\'t stick to it? And you feel that\'s the better choice to make?*\n\nPeople are easily misled, and generally are simple creatures. Remember, Trump lost 2020. People react when they are witnessing consequences, whether those consequences are a result of who is President or not. They experienced consequences during covid and voted Trump out.', 'created': '2024-11-10 18:18:31', 'submission_id': '1go2sdb'}
{'comment': 'They won’t do recounts unless it’s close. Hearing large amounts of ballots found but not counted. We have to TRUST the team to make sure nothing was lost or stolen!', 'created': '2024-11-10 17:38:03', 'submission_id': '1go2sdb'}
{'comment': 'There are definitley people that did that though. Here in NC I tried to get my parents to completely jump ship. At least I could convince them to vote blue for governor and school board, for the sake of my wife’s career', 'created': '2024-11-10 22:05:45', 'submission_id': '1go2sdb'}
{'comment': 'Why would Trump screw himself? To me, it’s the opposite of suspicious lol. It makes complete sense that North Carolina, for instance, overwhelmingly chose Stein over Robinson but still elected Trump. If the election was rigged, Trump or “whoever” would’ve also given the down ballot republicans victory', 'created': '2024-11-10 23:11:35', 'submission_id': '1go2sdb'}
{'comment': '... or they were targeted, recruited, treatened, paid, or all of the above, Gangs of New York style.', 'created': '2024-11-10 22:39:25', 'submission_id': '1go2sdb'}
{'comment': "Easy. They think that states rights will hold. Like the people in Missouri who voted to protect abortion but then voted for Trump. They think they are safe. They believed he wouldn't pass an abortion ban so they get best of both worlds in their mind. They didn't have to choose.\n\nThey will learn.", 'created': '2024-11-10 17:13:18', 'submission_id': '1go2sdb'}
{'comment': 'I wouldn’t be remotely surprised if a huge quantity of Trump voters literally only voted for president. \xa0', 'created': '2024-11-10 17:38:24', 'submission_id': '1go2sdb'}
{'comment': 'Some states actually have a sizable portion of the population that split tickets, believe it or not. North Carolina had been known to do this prior to 2024. My own state, Arkansas, commonly did this prior to 2016. We had Democratic governors one term then a Republican the next. The South had/has a lot of “blue dog” democrats rather than conventional liberal candidates.', 'created': '2024-11-10 23:16:35', 'submission_id': '1go2sdb'}
{'comment': 'But then why not vote against the rest of the incumbent’s party?', 'created': '2024-11-10 17:23:28', 'submission_id': '1go2sdb'}
{'comment': 'Plus keep in mind they had access to the voting machines when they were doing their recount. Something happened in that timeframe.', 'created': '2024-11-10 23:08:03', 'submission_id': '1go2sdb'}
{'comment': 'Maybe just maybe Starlink was the answer to Trump’s problems and would get him elected', 'created': '2024-11-11 23:32:39', 'submission_id': '1go2sdb'}
{'comment': 'I think it’d be smart to quietly investigate but at the same time I want to know if they are lol', 'created': '2024-11-10 23:50:07', 'submission_id': '1go2sdb'}
{'comment': "fingers crossed!! I'm hoping for a miracle (while also acknowledging there is no hard evidence of vote tampering...so not going conspiracy theory level yet. But a girl can dream.)", 'created': '2024-11-11 02:13:53', 'submission_id': '1go2sdb'}
{'comment': "Wouldn't expect you to hear one anytime soon. If you do get a reply, give us an update.", 'created': '2024-11-11 00:47:16', 'submission_id': '1go2sdb'}
{'comment': 'So that breaks the chain of custody, right?', 'created': '2024-11-10 17:49:02', 'submission_id': '1go2sdb'}
{'comment': "So you're hypothesis is what?\xa0 Because the polls and results across the country indicate a shift more than a giant spike in a single area.\xa0 When I googled this is what I found, pretty weak sauce for your case\n\n\nhttps://www.rgj.com/story/news/politics/elections/2022/11/10/livestream-cams-washoe-county-vote-count-area-went-dark-heres-why/10661538002/\n\n\nGTFO with your conspiracy nonsense.\xa0 People want anything to give them hope, but you are peddling bad logic.", 'created': '2024-11-10 20:01:31', 'submission_id': '1go2sdb'}
{'comment': 'That sounds a bit suspicious to me', 'created': '2024-11-11 23:46:09', 'submission_id': '1go2sdb'}
{'comment': "I'm not saying I trust Trump, but I haven't seen any plausible hypothesis for stealing the election that aligns with what we see across all 50 states and in polls.\xa0\xa0", 'created': '2024-11-10 21:15:19', 'submission_id': '1go2sdb'}
{'comment': 'What exactly are you purporting happens by having these machines run on starlink? Inherently there’s fraud because the internet provider’s owner is an outspoken maga idiot? Have you looked into the political beliefs of every internet provider’s owners before you make such a ridiculous claim? Think critically', 'created': '2024-11-10 18:10:33', 'submission_id': '1go2sdb'}
{'comment': 'Exactly where I heard it. Love her because she says what others won’t', 'created': '2024-11-11 16:22:54', 'submission_id': '1go2sdb'}
{'comment': 'I hope she continues to bring light to it and that it will gain some traction.', 'created': '2024-11-11 10:36:46', 'submission_id': '1go2sdb'}
{'comment': 'I did research and no one in the history of past elections have voted that way.', 'created': '2024-11-10 16:57:40', 'submission_id': '1go2sdb'}
{'comment': 'Are we seeing that in the vote totals from swing states that went for trump but the congressional seat went blue?', 'created': '2024-11-10 16:50:57', 'submission_id': '1go2sdb'}
{'comment': "Yeah what I'm seeing there seems like the type thing that always happens and has a negligible impact.", 'created': '2024-11-10 21:12:26', 'submission_id': '1go2sdb'}
{'comment': 'Thus the need for forensic inquiry. \n\nAlways. Check. Thoroughly.', 'created': '2024-11-11 04:47:23', 'submission_id': '1go2sdb'}
{'comment': 'I’m talking the difference in what Biden got in 2020, not between her and DT.', 'created': '2024-11-10 17:03:50', 'submission_id': '1go2sdb'}
{'comment': 'Its not a conspiracy to double check. Its normal judgement and simple math.', 'created': '2024-11-10 16:59:50', 'submission_id': '1go2sdb'}
{'comment': 'What happened with all the "ineligible"mail-in and absentee ballots, the ballot box burnings and other such ways to cheat for the trump that his minions were attempting. It\'s crazy to me that everything that was happening prior to election day just vanished and no one has even peeped about it.', 'created': '2024-11-11 01:07:02', 'submission_id': '1go2sdb'}
{'comment': 'But I’m not. I’m not going to the media and screaming that she won. I am saying that there are some *real* possibilities that there was interference due to Musk and Russia. So YOU stop. The difference between me and MAGA is I’m not saying she will ultimately be president, but I am saying something seems fishy.', 'created': '2024-11-10 16:37:46', 'submission_id': '1go2sdb'}
{'comment': 'Or folks can use logic and acknowledge what we are seeing and if you don’t like it you’re always welcome to keep scrolling instead of trying to exert authority over people who have valid concerns.', 'created': '2024-11-10 16:41:22', 'submission_id': '1go2sdb'}
{'comment': 'Agreed. We get nowhere with this. “I heard a story about someone seeing something” is the exact same logic Trump supporters used in 2020. Once that starts spreading it goes from “somebody saw something” to “I saw them steal it!”. We need to figure out where we go from here, not waste time.', 'created': '2024-11-10 16:46:49', 'submission_id': '1go2sdb'}
{'comment': 'Not 50 states, just the swing states.', 'created': '2024-11-10 17:03:54', 'submission_id': '1go2sdb'}
{'comment': 'You are full of it and a bot!', 'created': '2024-11-10 23:55:03', 'submission_id': '1go2sdb'}
{'comment': 'Their longterm memories are terrible and they love to believe lies. Maybe in a year or so we can start claiming he isn’t President because there is a 2 term limit and remind them he won in 2020. \n\nPersonally, I’d rather stick with the truth. He committed acts of treason. The short list of things that disqualify someone from office includes treason. His presidency will not be legitimate. He was indicted, the prosecution made its case in court filings, his defense’s rebuttal was delay tactics, not a denial of guilt. SCOTUS participated in delaying the trial, he was not acquitted.', 'created': '2024-11-11 02:54:46', 'submission_id': '1go2sdb'}
{'comment': 'I just felt like the Kamala excitement was all a media blitz. I didn’t know a single person excited about her. Everyone was just so relieved Joe finally stepped down. Even the Trumpers thought they were going to lose this election. The GOP did work awfully hard in the gerrymandering and other shady law changes in the last four years, but it just still doesn’t make any sense.', 'created': '2024-11-11 03:54:07', 'submission_id': '1go2sdb'}
{'comment': "That's if we are allowed to vote again. He alluded to people not having to vote again. Also, we are allowed to vote. I think your idea of changing parties is a good one, but I don't know if democrats can pull that off.", 'created': '2024-11-11 00:24:27', 'submission_id': '1go2sdb'}
{'comment': '“If you can’t beat ‘em, join ‘em.” \nI urge everyone who can to vote in the GOP party primaries for republicans that aren’t f’ing crazy. Like, the bar is in hell. They can gerrymander the shit out of their districts, but if we vote for a republican we can tolerate, it might make things… more palpable? I don’t even know. I typically vote in the GOP primaries simply because I know I’m most likely going to vote for the democrat, but I need to know that the other party has a person I can stomach, too? \n\nDoes any of that make sense, or am I just rambling?', 'created': '2024-11-11 23:34:31', 'submission_id': '1go2sdb'}
{'comment': 'I can’t argue with that.', 'created': '2024-11-11 14:09:41', 'submission_id': '1go2sdb'}
{'comment': 'It is a small amount. In the places that lost Harris the election it was apparently decided by a margin of 0.09%.\n\nEdit: not sure yet exactly how accurate that is, but for an example, Hillary won the popular vote by millions of votes in 2016 and still lost the election.', 'created': '2024-11-10 17:05:53', 'submission_id': '1go2sdb'}
{'comment': 'That’s possible, I still thinks recounts in important states are appropriate, considering the criminal nature of the Republican Party currently. And their projection', 'created': '2024-11-10 17:23:08', 'submission_id': '1go2sdb'}
{'comment': "I, for one, do find that suspect and suspicious overall.\n\nI don't want to sound like the conspiracy nut jobs either, but there is a lot of weird shit surrounding this election.\n\nHere in Texas, Allred almost dethroned Cruz. Closer than he ever got last time, but... Trump won Texas by larger margins?\n\nSomething happened. Maybe it's my imagination, but something feels wrong.", 'created': '2024-11-10 17:56:40', 'submission_id': '1go2sdb'}
{'comment': "And that isn't suspicious at all? Even if you tell someone, you can pick any of these options, or none. It doesn't matter - having so many people chose NOT to select ANYTHING else is odd.", 'created': '2024-11-10 20:26:11', 'submission_id': '1go2sdb'}
{'comment': 'Yeah, let me just be clear I’m not presenting anything as concrete proof, honestly just speculating and saying that I want a high level of scrutiny with the results because I don’t trust those people. I trust our elections in general, but not them.', 'created': '2024-11-10 23:17:22', 'submission_id': '1go2sdb'}
{'comment': 'i suppose the answer is just that simple', 'created': '2024-11-10 17:13:53', 'submission_id': '1go2sdb'}
{'comment': 'Because in the races they voted the other way in, they saw those specific candidates as either more anti-establishment or less crazy (North Carolina governor).', 'created': '2024-11-10 17:38:57', 'submission_id': '1go2sdb'}
{'comment': '😏🍸', 'created': '2024-11-10 18:30:23', 'submission_id': '1go2sdb'}
{'comment': 'I don\'t see those internet providers speaking at MAGA rallies, getting offered cabinet positions, sitting in on national security calls.\n\nI also don\'t recall any internet providers holding "lotteries" for voter registration where you had to sign their pledge in order to be eligible to win.\n\nI\'m not saying there was fraud. I\'m saying *I wouldn\'t be surprised in the least if there was, though.*', 'created': '2024-11-10 18:32:56', 'submission_id': '1go2sdb'}
{'comment': "I would be concerned if there is ANY connection to ANY internet providers, yet apparently that's not the case.", 'created': '2024-11-10 18:28:05', 'submission_id': '1go2sdb'}
{'comment': 'Yes. In the high profile senate races (MI, WI, PA, NV, NE, MT, OH, TX) Trump consistently significantly overperformed the down ballot Republicans, whereas Kamala’s total is similar to that of the down ballot Dems.\xa0', 'created': '2024-11-10 22:48:01', 'submission_id': '1go2sdb'}
{'comment': "Remember that in 2020 the pandemic was still raging, more people might have been paying attention as opposed to this year. It's what I tell myself, anyway.", 'created': '2024-11-10 22:07:47', 'submission_id': '1go2sdb'}
{'comment': "You better double check on the diameter of the Earth and the height of Mt Everest while you're at it. And no, it's not normal judgement as it takes away from the real discussion: what the fuck do us Democrats do now? That's where your energy should go, not wallowing in the lose and thinking there was some conspiracy around every corner.", 'created': '2024-11-10 17:05:59', 'submission_id': '1go2sdb'}
{'comment': 'There is no possibility. The whole nation got redder. This is a common trend that we have seen worldwide with incumbent parties. It would take a ridiculous amount of effort to pull of interference at a large enough scale to tilt the result. Just get tf over it. We lost. You would NOT be complaining like this if Harris had one and the same anecdotes were coming from Republicans. This is truly embarrassing.\n\nhttps://preview.redd.it/o6577b3ug30e1.jpeg?width=1290&format=pjpg&auto=webp&s=51108ae1f272747dc47ea9e05995d3cef976dbb2', 'created': '2024-11-10 16:41:15', 'submission_id': '1go2sdb'}
{'comment': "Dude, you're doing exactly what MAGATs did with 2020. So yes, just stop.", 'created': '2024-11-10 16:45:41', 'submission_id': '1go2sdb'}
{'comment': "Trump improved in every state. So no, it wasn't just the swing states. And if the swing states were somehow magically compromised, why did Lake lose? Was she like a sacrificial lamb to throw off people like yourself? You would think she would have been 'elected' as well. We lost dude, get over yourself.", 'created': '2024-11-10 17:10:30', 'submission_id': '1go2sdb'}
{'comment': 'Wow that’s a new one. I’ve been called a lot of things but a bot is a new one.', 'created': '2024-11-10 23:55:48', 'submission_id': '1go2sdb'}
{'comment': 'It’s a toss up which version he meant but “Conservative Christians” would have more of a problem with “fuck the GOP! Just vote for me this time, IDGAF about the party!” than they would with the idea that he’d eliminate elections to keep the GOP in power. He left that one vague on purpose. \n\nChanging party affiliations without being discreet about it being to vote out MAGA in Congress in the midterm primary has the potential to influence the republicans in swing districts the same way the threat of being “primaried” by the MAGA base does. \n\nJan 6th would be a perfect date to make it clear what the intentions are. Plus, that’d be a peaceful form of protest to DJT not being disqualified for committing treason.', 'created': '2024-11-11 01:33:37', 'submission_id': '1go2sdb'}
{'comment': 'It makes complete sense to me. I’m in a state and an area of the state that are Solid R (or Hard R). The primary is basically the general election because it is such a given that the Republican will win in the general election. They don’t even bother campaigning for the general election. All the effort goes into the primaries. \n\nMy ballot last week only had 4 races that weren’t just a Republican running against “write in”. There were 2 dozen of those. My vote in the general election really does not count in any race on the ballot. I decided to refer to the ballot as a Customer Satisfaction Survey because the state has been going way too far with the bans and their excessive ways to force compliance. The state Supreme Court also went way too far this year. They ruled it’s fine to keep legal minors in the freezer, they worded it as frozen embryos are legal minors, Potato, Po-ta-to. They received 1 star ratings on my survey (aka I voted “write in” so at least they won’t receive 100% of the votes running unopposed).', 'created': '2024-11-12 02:23:34', 'submission_id': '1go2sdb'}
{'comment': 'Well trump sure got really upset that they couldn’t “find” those votes last time.. it’s not hard to believe they were more prepared to do some “finding” this time, especially after all the noise they made installing loyalists in election oversight positions.', 'created': '2024-11-10 17:10:26', 'submission_id': '1go2sdb'}
{'comment': 'Agreed', 'created': '2024-11-10 17:23:53', 'submission_id': '1go2sdb'}
{'comment': "It feels way wrong. I felt like we were more United this time around. Reddit hated Hillary. But they loved Harris.\n\nParents didn't vote for Trump. Everyone I knew was more enthused this time around than 2020 and definitely more enthused than 2016.\n\nThat's just anecdotal evidence I know, but just didn't seem right at all. No poll had him winning the popular vote.", 'created': '2024-11-10 19:30:42', 'submission_id': '1go2sdb'}
{'comment': 'You can\'t split what doesn\'t exist. \n\nWhat "split ticket" voting really demonstrates is that among those who actually put enough effort into voting downballot, they are of a different demo than those who don\'t even bother.', 'created': '2024-11-11 02:01:27', 'submission_id': '1go2sdb'}
{'comment': 'IDK if it\'s "suspicious" but it\'s definitely weird. If you\'re already voting my nut just fill in the rest of your preferred party even if you don\'t know any of the people. If there\'s anything Trump has proven though, it\'s that the people who vote for him are incredibly stupid, or at the very least massively uninformed, and rational actions can\'t be expected of them.', 'created': '2024-11-10 21:13:26', 'submission_id': '1go2sdb'}
{'comment': 'I hate to say that but I came razor', 'created': '2024-11-10 18:41:59', 'submission_id': '1go2sdb'}
{'comment': 'I’m not saying I know for sure either way, I’m just not sold that everything is clean. Trump, his campaign, musk—their behavior reeks and they are all known liars and cheats in the first place. Last time they demanded recounts based only on vibes and, you know, I was happy to see that done so everyone could be reassured of the results. These results are weird enough that I don’t see any reason why it shouldn’t get the same scrutiny as last time. And then we can all breathe easy knowing that the actual will of the people, whatever it is, was heard.', 'created': '2024-11-10 17:46:42', 'submission_id': '1go2sdb'}
{'comment': 'Embarrassing? Does Kamala have ties to Russia or Elon Musk? Did Kamala make comments about never having to vote again, or already “having the votes”? Like I said—I’m not saying it happened, but am saying there is a possibility. \n\nWhen republicans claimed stuff in 2020 my feelings were “investigate it!” Which they did and found nothing. Those are my feelings in 2024.', 'created': '2024-11-10 17:03:14', 'submission_id': '1go2sdb'}
{'comment': 'This is the most fucking embarrassed I’ve been of this party. Spend years calling Trump a threat to Democracy because he tried to overturn an election, and then do the exact same thing when the result isn’t what they like. So hypocritical.', 'created': '2024-11-10 16:47:49', 'submission_id': '1go2sdb'}
{'comment': "Sorry, but you're wrong. Our side and the magat side are absolutely not equivalent. Their fuhrer is a known cheater at essentially EVERYTHING. He faces incarceration if he's not elected; I'd say he'd do and be capable of doing anything to win. He has no guardrail and no bottom. They have set numerous precedents. There has been nonstop communication with Russia since he left office. Musk's involvement is also suspect. Our side didn't attempt and is not attempting an armed takeover. They've had 4 years to hone their strategies, plus essentially unlimited financial resources. They have infiltrated every level of government in every state. The ballot burning, shooting up offices, voter intimidation, throwing people off the rolls, the widespread non-stop voter disenfranchisement... \n\nAbsolutely not equivalent. So YOU are wrong, and YOU stop. THIS IS TOO IMPORTANT.", 'created': '2024-11-10 18:52:17', 'submission_id': '1go2sdb'}
{'comment': 'Because they didn’t interfere with the those races, it was potentially only directed at the presidential race. Yes, we did lose. Now, have you considered talking to people with respect or nah?', 'created': '2024-11-10 17:13:26', 'submission_id': '1go2sdb'}
{'comment': 'Why do you think Trump refused to believe he lost in 20’? It was setting up him cheating now. What’s the worst thing that democrats can be called, Maga or crazy conspiracy theorist! I’m a democrat and Trump cheated!! He cheats at everything he’s ever done in his life why not the election?', 'created': '2024-11-11 00:03:21', 'submission_id': '1go2sdb'}
{'comment': 'He was bragging that he “already had all the votes he needs” and also that “he didn’t need your vote“ months ago… Oh, there’s also the “you’ll never have to vote again, I’ll have that fixed!“😨', 'created': '2024-11-10 17:52:50', 'submission_id': '1go2sdb'}
{'comment': 'Exactly. People are being way too trusting of a bunch of criminals', 'created': '2024-11-10 17:22:13', 'submission_id': '1go2sdb'}
{'comment': 'Nate Silver predicted that it was more likely this year that Trump would win the popular vote and Harris would win the electoral college (albeit by a slim margin). There isn’t any credible evidence that this election was stolen', 'created': '2024-11-10 23:13:13', 'submission_id': '1go2sdb'}
{'comment': "Republicans haven't won the popular vote in two decades. They're the minority party, which makes winning the Electoral College much more likely for them. \n\nAfter everything that transpired in 2020 trying to interefere with the result, the things that Trump said about having votes, we need recounts to verify the result.", 'created': '2024-11-11 12:18:27', 'submission_id': '1go2sdb'}
{'comment': 'There definitely is enough reason to request recounts and analysis of the results. You cannot claim fraud only when you lose.', 'created': '2024-11-10 17:48:33', 'submission_id': '1go2sdb'}
{'comment': 'Because I think it’s fishy that means I am trying to overturn an election? Interesting.', 'created': '2024-11-10 17:05:21', 'submission_id': '1go2sdb'}
{'comment': 'It borders on stupid is what it is. Stupid and fucking lazy.', 'created': '2024-11-10 16:52:56', 'submission_id': '1go2sdb'}
{'comment': 'Ok flatearther.', 'created': '2024-11-10 18:57:57', 'submission_id': '1go2sdb'}
{'comment': "Oh pu-lease. It's your panties in a bunch, not mine.", 'created': '2024-11-10 17:15:56', 'submission_id': '1go2sdb'}
{'comment': 'I mean, as far as I’m concerned, that’s a full on admission of guilt.', 'created': '2024-11-10 18:16:27', 'submission_id': '1go2sdb'}
{'comment': 'Literally yes, because there is zero evidence for it.', 'created': '2024-11-10 17:47:07', 'submission_id': '1go2sdb'}
{'comment': 'Definitely not a flat earther. No need for name calling either, Mr Wrong- your name checks out. Nothing I said is a stretch in any way.', 'created': '2024-11-11 08:45:28', 'submission_id': '1go2sdb'}
{'comment': 'Sounds that way to me too.👏', 'created': '2024-11-10 18:17:36', 'submission_id': '1go2sdb'}
{'comment': "As a non-American, it blows my mind that it's not being investigated.", 'created': '2024-11-10 23:29:37', 'submission_id': '1go2sdb'}
{'comment': 'Now let’s see how the “states rights” party reacts to this', 'created': '2024-11-10 17:24:14', 'submission_id': '1go26dl'}
{'comment': "This time around instead of dividing the USA by states' rights Trump may be focused on increasing Federal control in order to control blue states.\n\n\n\nMassachusetts Gov. Maura Healey:\n\n“Every tool in the toolbox is going to be used to protect our citizens, to protect our residents and protect our states, and certainly to hold the line on democracy and the rule of law as a basic principle,” she said.", 'created': '2024-11-10 15:46:03', 'submission_id': '1go26dl'}
{'comment': "The blue States resistance 3.0 let's go!!", 'created': '2024-11-10 15:47:45', 'submission_id': '1go26dl'}
{'comment': 'Biden filled up our courtrooms with "our" judges. If we get a fair hearing, a lot of the MAGA Project 2025 agenda will be stopped dead in its tracks. \n\nLast time, the only substantial agenda item passed by Idiot Trump\'s Congress was the deficit-busting tax breaks for the rich and their corporations. That\'s his priority once again, estimated as a 9 trillion-dollar deficit over next 10 years.\n\n2026 - the year Democrats start cleaning up this mess once again.', 'created': '2024-11-10 16:55:12', 'submission_id': '1go26dl'}
{'comment': 'Glad to live in Minnesota.', 'created': '2024-11-11 00:34:35', 'submission_id': '1go26dl'}
{'comment': 'i’d like to see blue states stop paying into the federal government t and just tell them to suck it. i still want to be part of the usa but after this election im also ok with removing the cancer from us', 'created': '2024-11-11 02:38:50', 'submission_id': '1go26dl'}
{'comment': 'I wish I had someone better to fight for me than Hochul.', 'created': '2024-11-11 12:42:20', 'submission_id': '1go26dl'}
{'comment': "I'm afraid Trump will cut off federal funding to states that don't comply.", 'created': '2024-11-11 15:05:48', 'submission_id': '1go26dl'}
{'comment': '', 'created': '2024-11-11 16:42:03', 'submission_id': '1go26dl'}
{'comment': '… and Republican governors plan to sit back and watch their constituents suffer.', 'created': '2024-11-12 18:56:19', 'submission_id': '1go26dl'}
{'comment': 'Question. Can’t the GOP just appeal rulings until they end up in the Supreme Court, which will ultimately side with them?', 'created': '2024-11-10 17:56:23', 'submission_id': '1go26dl'}
{'comment': 'Enjoy, I live in the blood red DeSatan hellscape of Florida', 'created': '2024-11-11 07:54:20', 'submission_id': '1go26dl'}
{'comment': 'Yeah that’s what I’m afraid of exactly. If the last 4 years have taught us anything it’s that the courts are broken and any case can be delayed and deferred indefinitely until it lands on the lap of a favorable judge.', 'created': '2024-11-10 18:05:55', 'submission_id': '1go26dl'}
{'comment': 'I feel like more people need to see this: As of 2020, the end of his term and with 2 Trump judges on the court, [he has lost more cases than any other president in modern history.](https://www.washingtonpost.com/outlook/2020/07/20/trump-has-worst-record-supreme-court-any-modern-president/)', 'created': '2024-11-10 19:17:41', 'submission_id': '1go26dl'}
{'comment': 'I hate to answer a question with another question, but I’m honestly not sure about this.\n\nCan states, with all of the resources they have available, stall and delay much like Donald did to avoid taking responsibility for his crimes?\n\nIt seems to me that entire states (and even groups of states) should be able to avoid a final outcome, if they worry that it might not be favorable to them or their millions of citizens, at least as well as someone found liable for rape and facing almost 40 other charges.\n\nIf the Swamp tangles with multiple states it could turn into quite a quagmire!', 'created': '2024-11-10 19:28:42', 'submission_id': '1go26dl'}
{'comment': None, 'created': '2024-11-10 22:21:40', 'submission_id': '1go26dl'}
{'comment': ' the Supreme Court can’t hear every case', 'created': '2024-11-11 06:23:06', 'submission_id': '1go26dl'}
{'comment': 'Exactly', 'created': '2024-11-10 18:19:08', 'submission_id': '1go26dl'}
{'comment': 'Behind a paywall', 'created': '2024-11-10 19:19:09', 'submission_id': '1go26dl'}
{'comment': 'It’s a good question. I hope states are willing and able to fight back.', 'created': '2024-11-10 19:41:54', 'submission_id': '1go26dl'}
{'comment': 'I do like the sound of that.', 'created': '2024-11-10 22:55:49', 'submission_id': '1go26dl'}
{'comment': 'That’s true, and I feel like it’s the one thing we can count on, at this point.', 'created': '2024-11-11 13:14:55', 'submission_id': '1go26dl'}
{'comment': 'As with Trump, democracy’s best defense now is to delay everything. Hopefully enough so the elections in 2 years will provide some course correction.', 'created': '2024-11-11 01:26:11', 'submission_id': '1go26dl'}
{'comment': 'You got the headline, that’s my point.\n\n[But fine, try this one from the ABA.](https://www.abajournal.com/news/article/trump-administration-had-worst-supreme-court-record-since-at-least-fdr-years-study-says)', 'created': '2024-11-10 19:22:10', 'submission_id': '1go26dl'}
{'comment': 'That’s about the only hope I’m clinging to right now.', 'created': '2024-11-11 01:37:40', 'submission_id': '1go26dl'}
{'comment': 'I wasn’t sure if there was more that you wanted me to see. I’m aware that he lost a lot in the past, but do you genuinely believe the courts won’t side with him going fwd? He’s threatening to punish people who oppose him, so I have a hard time imagining that even the good judges won’t cave. Not to mention what I said earlier about appeals reaching the Supreme Court. I fear that any judge who still has the guts to oppose him will just have their ruling overturned. I don’t think we can rely on how things went from 2016-2020 as precedent for how things will go this time around. The situation is very different now.', 'created': '2024-11-10 19:34:03', 'submission_id': '1go26dl'}
{'comment': 'Yes, I do think that. I have no reason to believe otherwise.', 'created': '2024-11-10 19:34:45', 'submission_id': '1go26dl'}
{'comment': 'You have a lot more faith than me. He already stacked the courts as much as he could, all the way up to the Supreme Court. I also felt like people were already afraid to go against him in the last 4yrs, and I think it will only be worse now that he has unchecked power.', 'created': '2024-11-10 19:39:35', 'submission_id': '1go26dl'}
{'comment': 'BuT iT HaPpEneD wHeN bIDeN wAs pRESiDenT. \n\nTell me you have a low IQ without telling me you have a low IQ.', 'created': '2024-11-10 15:45:46', 'submission_id': '1go22sx'}
{'comment': "They don't care. They like seeing g others in pain. The trick is to have them hurt themselves.", 'created': '2024-11-10 15:53:15', 'submission_id': '1go22sx'}
{'comment': 'I mean, those of us who were paying attention could see it from a mile away. How people could not understand this is beyond me. \n\nIf they didn’t like inflation before, wait until Trumponomics sets in. After all, the original round of inflation was ultimately due to the failed policies of his first term.', 'created': '2024-11-10 15:47:27', 'submission_id': '1go22sx'}
{'comment': 'People already losing jobs so they can buy inventory before tariffs', 'created': '2024-11-10 16:27:03', 'submission_id': '1go22sx'}
{'comment': 'Yeah i heard one plant the day after the election told their Trumper hourly workers no Christmas bonus because of tariffs expectations. Had to explain it tp them like they were five.\n\nI work manufacturing. I full expect to hear no bonus this month. I am mentally ready. I think a lot are Trump people. Also lots of refugees and such. If the mass deportations we might lose 1/3-1/2 our workforce. Now I am an operator position. Lower level. I put product in boxes or feed the machines mostly. This is the position that refugees have. It is not the higher tech position. I feel my job is fairly secure. But if we do not have enough operators to run all the lines we do not need as many of the tech positions. Might let go a bunch of them or demoted to operators.\n\nI will laugh at every Trump supporter that loses their job or social security. Honestly thinking a billionaire cares about you.', 'created': '2024-11-10 17:06:10', 'submission_id': '1go22sx'}
{'comment': 'I hope they get exactly what they voted for and everything they voted for personally affects them.', 'created': '2024-11-10 16:52:57', 'submission_id': '1go22sx'}
{'comment': 'Mark tried to warn voters. He did a good discussion with Sam Harris on this subject, it’s on YouTube for anyone interested', 'created': '2024-11-10 17:19:47', 'submission_id': '1go22sx'}
{'comment': 'Imagine you like apples, and some come from another country and cost $1. If the U.S. puts a 50-cent tariff on those apples, they now cost $1.50. \n\n\nU.S. apples might still cost $1, so you’d be more likely to buy the U.S. apples instead. \n\n\nBut if you like the taste of the other country’s apples, it’ll cost you more, and you might not be happy. \n\n\nAnd if that country gets upset, they might make U.S.-made oranges cost more in their country, which can hurt U.S. orange farmers…\n\n\nYou also need immigrant labor for Apples & Oranges, that’s beside the point.', 'created': '2024-11-10 15:54:59', 'submission_id': '1go22sx'}
{'comment': 'I’m going to sit back and watch it all fall apart and when I hear my Trumper friends whining that they lost their jobs and homes. I’m going to remind them that this was their man. My partner and I are in a much better spot to weather this upcoming storm.', 'created': '2024-11-10 15:53:05', 'submission_id': '1go22sx'}
{'comment': 'I am going to hurt the businesses even more. I will be looking retro because I am not buying nothing but food and gas.', 'created': '2024-11-10 17:44:53', 'submission_id': '1go22sx'}
{'comment': "\n\nOh hai I'm here to eat your face", 'created': '2024-11-10 16:52:07', 'submission_id': '1go22sx'}
{'comment': 'Bunch of idiots. The Felon Traitor Trump cult has no grasp on SIMPLE ECONOMICS', 'created': '2024-11-10 20:03:34', 'submission_id': '1go22sx'}
{'comment': 'We all knew it well before the election', 'created': '2024-11-10 18:16:56', 'submission_id': '1go22sx'}
{'comment': "Good. I'm ready to watch everyone suffer for their decision", 'created': '2024-11-10 15:50:31', 'submission_id': '1go22sx'}
{'comment': 'OMG, who could have seen this coming?', 'created': '2024-11-10 16:45:47', 'submission_id': '1go22sx'}
{'comment': "I'm concerned what this might do to our 401ks. Especially if they eff around with social security. Nearing retirement and getting nervous!!", 'created': '2024-11-10 22:57:55', 'submission_id': '1go22sx'}
{'comment': 'Womp womp. They should pull harder on those bootstraps.', 'created': '2024-11-10 17:04:19', 'submission_id': '1go22sx'}
{'comment': "And for that reason I'm out.\n\nMark Cuban 2024 (probably lol)", 'created': '2024-11-11 02:30:20', 'submission_id': '1go22sx'}
{'comment': "Not only might Trump be the first President to directly cause a recession or depression. It might start before he even gets in office. It's like getting fired from your job on your day off", 'created': '2024-11-11 07:07:36', 'submission_id': '1go22sx'}
{'comment': ">... to stockpile goods before tariffs are imposed\n\nSo that they can later sell the goods at tariff-level prices. It's what oil and gas companies do: when world oil prices increase, we immediately pay more at the pump, before the higher priced oil arrives. When oil prices drop, we continue paying the higher prices until the cheaper oil arrives. Commodity futures seem to work this way, too.\n\nEdit to add an s to good", 'created': '2024-11-10 20:36:45', 'submission_id': '1go22sx'}
{'comment': 'This just in: zombies attack republican cities all over the United States... died of starvation!', 'created': '2024-11-11 10:39:22', 'submission_id': '1go22sx'}
{'comment': 'I don’t care.', 'created': '2024-11-11 01:34:26', 'submission_id': '1go22sx'}
{'comment': 'It’s worse they have tiktok iq', 'created': '2024-11-10 15:54:00', 'submission_id': '1go22sx'}
{'comment': 'As each new catastrophe unfolds they will simultaneously deny it exists while also blaming it on the Democrats. They will never have a moment of self reflection where they realize they made a mistake ever.', 'created': '2024-11-10 19:28:31', 'submission_id': '1go22sx'}
{'comment': 'MAGA hurt itself in its confusion!', 'created': '2024-11-10 20:28:17', 'submission_id': '1go22sx'}
{'comment': "When has knowing about tariffs ever been a part of standard education in this country? They haven't been relevant for generations, until Trump. \n\nI don't blame people for not understanding the impact of the last trump tariff approach, or what he's said about this one. Even with the ones he imposed in his last Administration, they were poorly reported on and swamped by the impacts of COVID. \n\nThere's very little reporting on this topic to go on, and absolutely no experiences with it as opposed to, say, taxes. And few reporters took time to explain to the audience what a tariff was, this go around.\n\nSo no, not shocked at all.", 'created': '2024-11-10 16:46:53', 'submission_id': '1go22sx'}
{'comment': "To be fare, the driving factors of inflation were our bounce back from the pandemic (stimulus package & normal return to work), supply chain issues, and to some degree intermittent bird flue wiping out significant chicken populations.\n\nBut yes, Trump's measures during pandemic were not good, and it was likely he and GOP would have screwed up the recovery if he had a 2nd term right after the first.", 'created': '2024-11-10 16:12:31', 'submission_id': '1go22sx'}
{'comment': 'We have to keep democracy alive so that we can have a Blue Wave in 2026.', 'created': '2024-11-10 19:37:27', 'submission_id': '1go22sx'}
{'comment': 'Yep, if the tariffs are implemented, and most of the undocumented workers are deported, It\'s going to be like the US Brexit. In a few years, we will be telling them, "We told you this was a terrible, terrible idea."', 'created': '2024-11-11 00:47:45', 'submission_id': '1go22sx'}
{'comment': "Except the price of domestic apples will also increase with this scenario because there is suddenly an increased demand for them. More wholesale buyers will be chasing the same domestic supply. That also doesn't include the immigrant labor that you mention. It could literally put the farmers out of business.", 'created': '2024-11-10 16:12:03', 'submission_id': '1go22sx'}
{'comment': 'add in the price gouging that will happen too and you got $2 apples', 'created': '2024-11-10 16:25:47', 'submission_id': '1go22sx'}
{'comment': "Yeah and that's just an example of something that is actually produced in both countries. Consumer electronics that aren't even currently made here will skyrocket in price with no alternative.", 'created': '2024-11-10 16:40:19', 'submission_id': '1go22sx'}
{'comment': "You're comparing apples and oranges to apples and oranges. /s", 'created': '2024-11-10 16:19:39', 'submission_id': '1go22sx'}
{'comment': 'Sad part is no one wins apart from the actual elites.', 'created': '2024-11-10 19:24:02', 'submission_id': '1go22sx'}
{'comment': 'But I have a PhD in TikTok 💃🏻', 'created': '2024-11-10 15:57:01', 'submission_id': '1go22sx'}
{'comment': 'Fuck that platform. It’s made the world a worse place.', 'created': '2024-11-11 00:10:02', 'submission_id': '1go22sx'}
{'comment': "That's our cue to laugh in their faces and mention that inflation was at 2.4% on election day.", 'created': '2024-11-10 19:42:03', 'submission_id': '1go22sx'}
{'comment': "I remember learning about Tariffs in American History in high school during the mid 2000s. The founding fathers tried to impose them on British imported goods to help pay for the cost of the revolutionary war in the late 1700s-early 1800s. Of course, they were incredibly unpopular!\n\nFurther proof that the education system has failed in this country. I still can't believe the amount of young people who have voted for Trump. I know the focus is mainly on STEM now, the topics in the small amount of history courses schools are required to teach seems to vary state by state.", 'created': '2024-11-10 22:51:30', 'submission_id': '1go22sx'}
{'comment': 'The issue is, will the negative impact of Trumpenomics hit before Trump gets his agenda going.', 'created': '2024-11-10 19:21:29', 'submission_id': '1go22sx'}
{'comment': "these people don't read actual news", 'created': '2024-11-10 22:51:07', 'submission_id': '1go22sx'}
{'comment': 'Tariffs were taught in my Government & Economics class in high school. The issue is, however, how many people phone it in. I mean that literally, my generation and those after have no attention span and it is scary.', 'created': '2024-11-11 00:54:48', 'submission_id': '1go22sx'}
{'comment': "But we ALL have mini computers in our hands that can answer any questions we could ever have so if they really wanted to be informed it would take less than five minutes. The problem is people don't want to better themselves cause school is for fools", 'created': '2024-11-11 04:10:56', 'submission_id': '1go22sx'}
{'comment': 'Those were absolutely not the primary drivers of inflation. Supply chain issues made it worse, but the main drivers were: tax cuts for billionaires, injecting billions of inefficiently allocated capital into the economy, and artificially low interest rates. Trump enacted several waves of COVID stimulus, and the final one from Biden ridiculously took all the blame for inflation. Anyone that understands a shred of economics gets that the Biden policies actually helped curtail inflation.', 'created': '2024-11-10 16:29:25', 'submission_id': '1go22sx'}
{'comment': '>the driving factors of inflation were our bounce back from the pandemic (stimulus package & normal return to work), supply chain issues,\n\nAnd corporate greed \n\nThe S&P 500 average profit margin went from hovering between 6-9% to ranging between 9-12%. Corporate executives were literally bragging about record profit margins while inflation was hitting its hardest.', 'created': '2024-11-10 19:29:39', 'submission_id': '1go22sx'}
{'comment': 'The people didn’t like his unpreparedness and subsequent response to the pandemic. He Simply didn’t do a good job!', 'created': '2024-11-10 16:42:04', 'submission_id': '1go22sx'}
{'comment': 'Like they will let us vote ever again..', 'created': '2024-11-10 21:07:17', 'submission_id': '1go22sx'}
{'comment': 'Also the price point of domestic apples artificially rises to one cent below the foreign apples.', 'created': '2024-11-10 16:16:05', 'submission_id': '1go22sx'}
{'comment': 'And domestic apple suppliers will have a great incentive to raise their prices even if there isn’t more demand. Think about it. If US apples and foreign apples used to both cost $1, and now foreign apples cost $1.50, why wouldn’t US apple suppliers raise their prices to $1.45 or something? People will still normally gravitate to the cheapest apple, but the US suppliers can raise their profits 45% without losing buyers, because the buyers have no cheaper alternative anymore.', 'created': '2024-11-10 16:30:38', 'submission_id': '1go22sx'}
{'comment': 'Let’s just pretend our maga friends don’t understand any of that.So it’s elementary school level tarrifs here. \n\n\nYes, all correct. tbh all the macro economics doesn’t work on low info voters.', 'created': '2024-11-10 17:11:45', 'submission_id': '1go22sx'}
{'comment': 'BBUTTT TRUMP SAID EVERYTHING WOULD BE CHEAPER !?', 'created': '2024-11-10 16:46:10', 'submission_id': '1go22sx'}
{'comment': "Exactly. We already saw corporations using inflation to disguise their price gouging. The former Kroger CEO admitted it. Also, in 2022-2023 Kraft Heinz profits skyrocketed 448% (from $225 million to $887 million) with gross profit margins of 34%, up 400BP over Q3 2022.” [Why Your Groceries Are Still So Expensive (Aug. 2024)](https://www.forbes.com/sites/errolschweizer/2024/02/07/why-your-groceries-are-still-so-expensive/).\n\nConsolidation has allowed them to do this: [9 companies own the world's most popular brands](https://www.dividend.com/how-to-invest/9-companies-that-own-the-worlds-most-popular-brands/). For example, PepsiCo owns the three top chips brands, Lays, Ruffles and Fritos — each of which also have sub-brands.", 'created': '2024-11-10 20:57:43', 'submission_id': '1go22sx'}
{'comment': 'every phone and tv will skyrocket. really anything with a computer/screen', 'created': '2024-11-10 16:46:25', 'submission_id': '1go22sx'}
{'comment': 'And as far as bringing production back, factories take time to build.', 'created': '2024-11-10 19:31:24', 'submission_id': '1go22sx'}
{'comment': 'Remember, we have to target our maga friends. let’s keep it umm… elementary.', 'created': '2024-11-10 17:13:51', 'submission_id': '1go22sx'}
{'comment': '“I’m doing my own research.”', 'created': '2024-11-10 16:14:29', 'submission_id': '1go22sx'}
{'comment': None, 'created': '2024-11-10 16:31:05', 'submission_id': '1go22sx'}
{'comment': "That's what I meant.", 'created': '2024-11-10 21:08:49', 'submission_id': '1go22sx'}
{'comment': 'Because the american apple farmer has other American apple farmers to compete with?\n\nAmerican apples will go up in price, though, because of the increased demand.', 'created': '2024-11-11 05:20:19', 'submission_id': '1go22sx'}
{'comment': 'We need the bathroom, get off the toilet!', 'created': '2024-11-10 16:16:11', 'submission_id': '1go22sx'}
{'comment': '😤 “I researched X and Fox News!”', 'created': '2024-11-10 16:34:28', 'submission_id': '1go22sx'}
{'comment': 'Yes. I had to teach my husband not to get news from memes years ago. But when you don’t know how things actually work, you are super easy to manipulate.', 'created': '2024-11-10 16:32:45', 'submission_id': '1go22sx'}
{'comment': 'How old was your husband? I find that frightening someone had to be taught not to get news from memes. It blows my mind. Social media seems to have really negatively impacted critical thinking. (I don’t wish to be demeaning. I’m just trying to understand.) ty for helping him! 💗', 'created': '2024-11-10 16:39:08', 'submission_id': '1go22sx'}
{'comment': "No, because thankfully you can't repeal the 22nd Amendment with an executive order it's very difficult as a whole.", 'created': '2024-11-10 15:27:18', 'submission_id': '1go0zxd'}
{'comment': 'No, another great Democrat will emerge to clean up the republican mess. Again. However, this upcoming mess will really be a challenge.', 'created': '2024-11-10 15:06:17', 'submission_id': '1go0zxd'}
{'comment': 'Just *assuming* Trump will manage to completely subvert elections in two years is flawed reasoning.\n\nHis economic platform is so obviously idiotic that if actually implemented, domestic prices for *almost everything* will be extremely expensive by the midterms.', 'created': '2024-11-10 14:54:44', 'submission_id': '1go0zxd'}
{'comment': 'All I will say is that the future is not set in stone. No one knows, with 100% certainty, the long-term trajectory of this nation even if they say they do. I remember after the 2004 election Republicans were acting like they had a permanent majority, and then Bush squandered that within a year. Anything’s possible.', 'created': '2024-11-10 15:44:14', 'submission_id': '1go0zxd'}
{'comment': 'Maybe the last Constitutional one.', 'created': '2024-11-10 17:28:18', 'submission_id': '1go0zxd'}
{'comment': 'He will represent our pat off ramp from a path toward doom, the path we didn’t take.', 'created': '2024-11-10 15:25:27', 'submission_id': '1go0zxd'}
{'comment': 'Just so people know, nowhere in the article does it say anything like OP put in the title.\n\nThought that was an odd direction for TIME', 'created': '2024-11-10 16:09:26', 'submission_id': '1go0zxd'}
{'comment': 'The Democrat that wins in four years and cleans up the annual Republican mess will be the next great one.', 'created': '2024-11-10 21:26:07', 'submission_id': '1go0zxd'}
{'comment': "Not last but \n\nBiden will be remembered as the US President that saved & guided his country through a global pandemic and a cratering economy. Between the Fantastic covid response and vaccine rollout, Bipartisan Infrastructure Spending, Handling of Ukraine crisis, Inflation Reduction act, CHIPS, Handling of Debt ceiling crisis, Handling of baby formula crisis, making lynching a fed hate crime, making Medicaid negotiate drug prices, cheap insulin, banning credit late fees, continued forgiving of student loans, and literally everything mentioned in r whatbidenhasdone .... Biden rightfully should be remembered as a paragon of level-headed leadership that focuses on solving actual problems in a world that's obsessed with social media hysterics.\n\nThank you President Biden! A real inspiration for all 🇺🇸😎👍", 'created': '2024-11-10 16:47:05', 'submission_id': '1go0zxd'}
{'comment': 'I’m so fucking tired of this fight. Can anyone cheer me up? It’s like why bother? This shit bird will dismantle our entire system of government.', 'created': '2024-11-10 15:48:42', 'submission_id': '1go0zxd'}
{'comment': 'No. Obama was the Last Great President. Joe Biden\'s arrogance and refusal to step aside earlier, breaking his commitment to be a "transitional President" has forever altered his legacy.', 'created': '2024-11-10 15:32:24', 'submission_id': '1go0zxd'}
{'comment': 'I mean, he might be the last President.', 'created': '2024-11-10 20:37:52', 'submission_id': '1go0zxd'}
{'comment': 'Yeah, but maybe the last president', 'created': '2024-11-10 16:10:34', 'submission_id': '1go0zxd'}
{'comment': "Yes. and America's best days are behind her", 'created': '2024-11-10 21:46:06', 'submission_id': '1go0zxd'}
{'comment': 'Not if he follows the SCOTUS’ ruling. You know the one I mean. He’s required to protect the US from enemies within and without.', 'created': '2024-11-11 03:12:59', 'submission_id': '1go0zxd'}
{'comment': 'No, he will just be the last president. I doubt we will vote again.', 'created': '2024-11-11 05:15:35', 'submission_id': '1go0zxd'}
{'comment': 'He will be the last president ever. We will have a king now. All checks and balances are gone.', 'created': '2024-11-10 16:38:13', 'submission_id': '1go0zxd'}
{'comment': "Probably unless D's grow enough balls to stage a coup", 'created': '2024-11-10 22:01:32', 'submission_id': '1go0zxd'}
{'comment': 'I do think Biden was great from a policy and effectiveness perspective. He did a lot of amazing things front and center and behind the scenes. \n\nBut I am pissed at him for trying to run again and dropping out so late and can’t think why he insisted on it besides his own inflated ego. Fuck that.', 'created': '2024-11-10 23:06:00', 'submission_id': '1go0zxd'}
{'comment': 'Political scholars will always give him credit for the meaningful legislation he was able to pass with such a slim majority, and they’ll show reverence for the fact he stepped aside in his run for a second term but I find it extremely unlikely he’ll ever be considered good, much less great. Fact of the matter is he’s an 81 year old one term president with historic levels of unpopularity. Most of his accomplishments will be immediately undone and he’ll basically die in exile within the next 10 years so his public image won’t age gracefully as Jimmy Carters has. The bigger question will be what will Barack Obamas legacy as president be when the Republicans inevitably get rid of the ACA, he’ll always be remembered as the first president of color, but history is not kind to leaders who don’t have lasting effect on their country.', 'created': '2024-11-10 16:20:30', 'submission_id': '1go0zxd'}
{'comment': 'Biden was a good but not a great president. Too missed opportunities for the sake of maintaining political standards that have long since died. The presidency will be remembered for folding like a cheap tent against corporate plutocracy and fascism.', 'created': '2024-11-10 18:13:48', 'submission_id': '1go0zxd'}
{'comment': "He literally caused this. If he had just run for one term and actually allowed for a primary maybe we could have gotten a candidate who could have beat Trump. \n\nJoe Biden's ego has killed America.", 'created': '2024-11-10 15:06:34', 'submission_id': '1go0zxd'}
{'comment': 'He will be the last President.', 'created': '2024-11-10 19:09:07', 'submission_id': '1go0zxd'}
{'comment': 'no', 'created': '2024-11-10 22:25:03', 'submission_id': '1go0zxd'}
{'comment': 'I will run one day', 'created': '2024-11-11 01:13:24', 'submission_id': '1go0zxd'}
{'comment': "No. Congresswoman removes thenlaw to have two term president's. Then Obama comes out of retirement like Beowolf to fight the Dragon.", 'created': '2024-11-11 02:55:25', 'submission_id': '1go0zxd'}
{'comment': 'It depends on whether we still have elections in 2028 or not', 'created': '2024-11-13 05:50:11', 'submission_id': '1go0zxd'}
{'comment': 'Get real, Obama was the last great POTUS, but even he sold out in the end.', 'created': '2024-11-10 17:17:26', 'submission_id': '1go0zxd'}
{'comment': 'I would’ve voted for him against Trump without hesitation but Joe Biden was not a great president. And it’s best we acknowledge that so we can learn from his mistakes', 'created': '2024-11-10 16:22:19', 'submission_id': '1go0zxd'}
{'comment': 'I don’t think a one-term President that had massively low approval ratings, had to stand down during his re-election campaign, then saw his party get clobbered in the next election is going to go down in history as a “Great President”.', 'created': '2024-11-10 16:33:57', 'submission_id': '1go0zxd'}
{'comment': '[removed]', 'created': '2024-11-10 15:03:58', 'submission_id': '1go0zxd'}
{'comment': 'He will be known as the president that sat on his ass while democracy died unfortunately', 'created': '2024-11-10 21:19:01', 'submission_id': '1go0zxd'}
{'comment': 'No, our next will be great', 'created': '2024-11-10 18:00:35', 'submission_id': '1go0zxd'}
{'comment': 'If they somehow did let’s convince Obama to run again. Could you imagine trumps melt down after he’d lose to Obama?', 'created': '2024-11-10 15:55:41', 'submission_id': '1go0zxd'}
{'comment': 'Law doesn’t matter anymore. Otherwise we wouldn’t be here', 'created': '2024-11-10 20:59:20', 'submission_id': '1go0zxd'}
{'comment': "So Trump physically can't repeal the 22nd? Or are you saying legally he is not able to? What is preventing him from doing it anyway? \n\nSuppose he just passes some order that the entore constitution is disbanded? What is physically stopping him from doing that? Nothing. There is no physical impediment to him doing so.", 'created': '2024-11-11 02:13:04', 'submission_id': '1go0zxd'}
{'comment': 'Oh yeah I really expect administrations that ignore the 9th amendment to respect the 22nd', 'created': '2024-11-12 00:41:20', 'submission_id': '1go0zxd'}
{'comment': "Trump is already gunning for the 14th amendment. It's not unthinkable he's going to go after the 22nd as well", 'created': '2024-11-13 05:50:56', 'submission_id': '1go0zxd'}
{'comment': 'I admire your optimism that the Republicans will actually allow for democracy to continue.', 'created': '2024-11-10 15:07:33', 'submission_id': '1go0zxd'}
{'comment': 'The next great Democrat will somehow need to be able to beat Trump at his own game while somehow being decent enough so as to not alienate the Democratic base. This is such an uphill battle that it truly requires a generational talent.', 'created': '2024-11-11 14:38:06', 'submission_id': '1go0zxd'}
{'comment': 'Lisa Simpson 2028', 'created': '2024-11-10 16:01:52', 'submission_id': '1go0zxd'}
{'comment': "Lisa Simpson is up next - but we're going to be broke.", 'created': '2024-11-10 19:26:20', 'submission_id': '1go0zxd'}
{'comment': 'I don’t think he’ll have the guts. Certainly not 60% tariffs along with mass deportations and denaturalization. It annoys the hell out of me, because the _‘enlightened’_ Republicans’ favourite talking point was “she has no policies, she stands for nothing,” but he has good form saying populist shit that is obviously absurd and never followed through by his actions. \n\nHe’ll do just enough - apply the odd tariff here or there, build another few miles of wall, send back a couple thousand illegal migrants already in custody - for his sycophantic supporters to point and say “see how effective our governance is.” All the while benefiting from the Biden administration’s infrastructure bills, economic recovery plan and record growth.\n\nIt’s also why I thought the “threat to democracy” campaign message was fundamentally flawed and would fail to cut through. What we’re most likely to see, in my opinion, is not the end to absolute democracy but another four years of incremental backsliding on democratic norms and human rights, another four years of increasing economic polarization, another four years of elite billionaire-led corporatocracy. I, for one, can’t wait /s.', 'created': '2024-11-10 15:45:19', 'submission_id': '1go0zxd'}
{'comment': "My fear is his cronies will find a way to keep it artificially lower than it it should be until right after.\xa0\n\n\nThen they will let them loose and the democrats will be blamed in full force once people notice.\n\n\n\xa0Worst case scenario he doesn't plan on deporting people, he plans on giving them over to big agriculture for free labor to help keep prices reduced for the time being/until after midterms.", 'created': '2024-11-10 16:13:00', 'submission_id': '1go0zxd'}
{'comment': "Enough people will regret their votes, and Democrats will be more motivated in 2026, so there's a very good chance we will take back at least one house chamber. If Trump does anything crazy, we'll flip both chambers.", 'created': '2024-11-10 16:12:31', 'submission_id': '1go0zxd'}
{'comment': 'The problem comes if someone more competent takes the helm.', 'created': '2024-11-10 15:42:54', 'submission_id': '1go0zxd'}
{'comment': "That won't matter he has the whole government in his pocket", 'created': '2024-11-10 16:41:09', 'submission_id': '1go0zxd'}
{'comment': 'As I loved reminding my dad every time he started ranting about Obama\'s executive orders, Obama only had the *ability* to **make** them because stupid Republicans in the House & Senate *delegated* those powers to the (office of the) President because they arrogantly & naively acted as if a future non-Republican President was inconceivable.\n\nNo majority is forever, and even a nominal trifecta rarely is.\n\nLisa Murkowski is still a Senator. Sue Collins is still a Senator. Dan Crenshaw is still in the House. They aren\'t exactly allies, but they aren\'t "Team Trump", either. They aren\'t going to push back against border-wall construction, but they\'ll *absolutely* push back against things like harmful tariffs, plans to gut federal agencies & replace workers with Trump loyalists, etc.\n\nPut another way, Republicans have their own Sinemas & Manchins acting as guardrails against the most extreme policies.\n\nYeah, legislation relating to climate changed is fucked. And I daresay, probably 10-20% of **Democrats** will secretly celebrate it, because most laws relating to it are deeply, deeply unpopular. Like the absurd forced-phaseout of r410a refrigerant in favor of less-effective and **flammable** alternatives that are barely available today, and *themselves* are already scheduled for accelerated phaseout within a decade. \n\nConsumers who need a new central A/C today are **fucked**, and no official in either party cares. Democrats go along with Dupont/Chemours\' fiction that it\'ll make any difference at all to climate change, and Republicans bow down to their corporate overlords by enthusiastically banning refrigerants as soon as the patents expire & they start to become cheap (driving prices back up by enforced artificial scarcity). \n\nAnd don\'t get me started on the sheer absurdity of replacing a $250-400 electric water heater that can realistically last 15-30 years with a $2,000+ heatpump water heater likely to crap out & need total replacement in 10 years or less. Heatpump water heaters are the most egregious scam perpetrated against consumers in... well... probably *ever.*', 'created': '2024-11-10 17:14:44', 'submission_id': '1go0zxd'}
{'comment': 'Would that be quad-annual? lol', 'created': '2024-11-11 14:32:44', 'submission_id': '1go0zxd'}
{'comment': "They want you to give up. Do not give them that satisfaction. Even when it feels like everything is going to shit, understand that we all have more in common than we don't. They will try to divide and conquer us all, but we need to build communities, support each other, fight for working class and middle class causes, and more. The one benefit we have, of sorts, is that we know Trump will fix nothing and make everything worse, but if we don't effectively countermessage as a force for change, we won't achieve anything.\n\nYour vote is only one power that you have, but the truth is the rest of our powers (resisting, protesting, unionizing, etc) can make a much greater impact.", 'created': '2024-11-10 17:19:33', 'submission_id': '1go0zxd'}
{'comment': 'rump is lazy. he will just can his court cases and not care. The real problem is the shit heads around and behind him.', 'created': '2024-11-10 17:11:49', 'submission_id': '1go0zxd'}
{'comment': ">It’s like why bother?\n\nBecause that's what the fascists want you to do. Give up. \n\nThe more people give up, the easier it is for them to take complete control.", 'created': '2024-11-10 21:50:44', 'submission_id': '1go0zxd'}
{'comment': 'Exactly. \n\nHindsight is 20/20 but the 2022 midterms were the perfect off ramp for him to leave. Maybe had Kamala had space to reorient the conversation from Joe Biden sooner, she could have won. I genuinely feel at least 50% of the blame for this loss lies with Joe Biden.', 'created': '2024-11-10 16:24:11', 'submission_id': '1go0zxd'}
{'comment': 'I unfortunately completely agree but so we need to stand beside her and guide her, my friend.', 'created': '2024-11-11 22:02:24', 'submission_id': '1go0zxd'}
{'comment': 'IMO it was the egos of the journalists who pushed him out through headlines 100 days from the election. I think Biden would’ve won in Georgia and Pennsylvania.', 'created': '2024-11-10 15:31:59', 'submission_id': '1go0zxd'}
{'comment': 'No, Trump has killed America.', 'created': '2024-11-10 15:12:35', 'submission_id': '1go0zxd'}
{'comment': 'Agreed. I believe Joe Biden hatred can also bring the party together.\n\nThis man lost us an election and we need to learn from mistakes he made.\n\nIt felt awful defending the democrats this past year because this arrogant man kept funding the slaughter of Palestinians despite his very serious and very super credible threats to Netanyahu to stop', 'created': '2024-11-10 16:26:34', 'submission_id': '1go0zxd'}
{'comment': 'Nah. Trump was supposed to be in jail a long time ago.\n\nThis has nothing to do with Biden', 'created': '2024-11-10 15:58:00', 'submission_id': '1go0zxd'}
{'comment': 'He may be remembered as an aberration, someone who tried to set things right in a trying time but ultimately failed.', 'created': '2024-11-10 15:24:50', 'submission_id': '1go0zxd'}
{'comment': 'He was courageous enough to take an unapologetic pro-worker stance after years of Democrats being afraid to. You *would* be calling him great if Kamala had won.', 'created': '2024-11-10 16:34:56', 'submission_id': '1go0zxd'}
{'comment': 'He didn’t rape thirteen year olds with Epstein. If he did, then maybe.', 'created': '2024-11-10 15:05:20', 'submission_id': '1go0zxd'}
{'comment': 'It was kind of ridiculous to try for “New Deal 2.0” when the majority in Congress was razor-thin.', 'created': '2024-11-10 15:26:23', 'submission_id': '1go0zxd'}
{'comment': "He can't run again, and in addition we don't need Obama but we could use someone just as charismatic as he was in 2008. But with more progressive values and assertiveness like a modern FDR.", 'created': '2024-11-10 16:00:14', 'submission_id': '1go0zxd'}
{'comment': 'Our country will eventually adapt into a lawless society once people stop being afraid of prosecution.', 'created': '2024-11-10 22:15:51', 'submission_id': '1go0zxd'}
{'comment': 'You need like 2/3rds of the senate 3/4 of congress and 3/4 of all states to ratify and repeal an amendment.', 'created': '2024-11-11 02:19:33', 'submission_id': '1go0zxd'}
{'comment': 'The basis for hope now is that the fundamental unit of sovereignty in the US is not the federal government but the states. Most laws in the US are state laws. Criminal law, professional licensing, insurance regulation, education and lots more are primarily controlled by the individual states (oh yeah, election law too). Some states will obviously be easier to control than others, we have no idea how it will all shake out. If Trump truly fucks up the economy as it looks like he plans to do, it will not be as easy to keep control. Americans aren’t accustomed to misery the way Russians (maybe Hungarians, too) are.', 'created': '2024-11-10 15:37:08', 'submission_id': '1go0zxd'}
{'comment': 'They will. But the states and counties ARE shifting Red. Local elections matter more!\n\n\nIt’s not unprecedented to see a red wave and then see it peel back but the message can’t be: “see they suck, told you! you get what you deserve.”', 'created': '2024-11-10 15:34:05', 'submission_id': '1go0zxd'}
{'comment': "One of the republican fears for a long time has been that they might become a permanant minority. one positive, in a weird way, is that they've shown they can win again, so maybe tearing down democracy won't be as appealing.", 'created': '2024-11-10 16:03:47', 'submission_id': '1go0zxd'}
{'comment': 'I share your anxieties, but I’m choosing to set them aside under the principle of not complying in advance.', 'created': '2024-11-10 17:32:19', 'submission_id': '1go0zxd'}
{'comment': 'Remember, the GOP is only great at messaging and obstruction. I have significant doubts they can do even a fraction of the things they want to accomplish.', 'created': '2024-11-10 20:34:50', 'submission_id': '1go0zxd'}
{'comment': 'Legitimately my only hope is that his narcissism won’t allow him to go along with the hugely unpopular things in the P25 handbook. \n\nWhich is a dark place to be. But he cares about popularity. It’s not an expectation but a hope. I assume he’s the useful idiot figurehead of the right wing oligarchs.', 'created': '2024-11-10 18:12:52', 'submission_id': '1go0zxd'}
{'comment': "He has one more Senate Seat and *roughly 20 fewer House Seats* than he did in 2016, and the partisan control of the Supreme Court is the same as last time. SCOTUS *hasn't* been a rubber stamp for Trump either. They've been awful, but they're not just letting him do whatever.\n\nHe's got *less* control than he did last time. Three of the Republican Senators voted to convict him during his second impeachment - those guys won't vote to give Trump dictatorial powers.", 'created': '2024-11-10 16:51:15', 'submission_id': '1go0zxd'}
{'comment': 'To add onto congressional opposition, Lindsey Graham, Angus King and Nancy Mace as well aren’t all yes men who will vote yes for anything that is going to explicitly harm the country.\n\nTrump will do damage, but there is still a strong section of Republicans who are either compromisers or silently never trumpers who will still put country above party.', 'created': '2024-11-10 18:23:06', 'submission_id': '1go0zxd'}
{'comment': 'My neighbors have MAGA shit out now. It’s basically just empowered them more and more. I feel like they were secretly under a rock, so we thought the MAGA KKKult was fading. No. They just wanted to make sure Dear Leader was back in office again.\n\nIt’s unbelievable. I grew up the first half of my life as America as a shining beacon to the world. Listened to my WWII grandfather talk about needing special permission to enlist at 17 after Pearl Harbor and watched the greatest generation destroy Hitler and root out systems of evil. We were the hero’s.\n\nThe rest of my life has been war, making less money, and living on a knife’s edge working two or three jobs. Now my wife and daughter’s literal rights are gone in a few months? I have lost all but a single friend and one brother to MAGA. It honestly feels hopeless.\n\nLike. I have next to no time to myself already. I can’t go fight and organize and fight it. When the military starts shooting our own the best country to ever exist will truly be in their modern medieval era.', 'created': '2024-11-10 18:38:53', 'submission_id': '1go0zxd'}
{'comment': "The Pod Save America guys recently discussed that the party would have been better off if Biden had announced he wouldn't run after the midterms because it would have allowed for a real primary process. We could have had debates with people like Gretchen Whitmer, Josh Shapiro, Gavin Newsom distancing themselves from the administration because they aren't part of the administration", 'created': '2024-11-10 17:27:54', 'submission_id': '1go0zxd'}
{'comment': 'I really think it was a messaging problem on the economy and inflation.\n\nI doubt the average voters understands or realizes that economic results take more than a few months to develop and actually play out over a span of years to decades.\n\nAnd while I was unemployed hearing about how great the economy was really pissed me off. I felt like I was being left out in the cold and that Democrats only cared about economic indicators and not about people.\n\nAnd then the MSM sure didn’t help with all those “but why are Americans unhappy in this great economy” like $75 buys only half as much food as it used to.', 'created': '2024-11-10 16:05:38', 'submission_id': '1go0zxd'}
{'comment': 'I’ll grant that the media focused an insane amount on Biden’s age and not anywhere near enough time on Trump’s mental decline and outlandish/dangerous statements. \n\nBut Joe Biden would not have won this election. It would have been far worse. There was internal polling he had that had Trump winning 400+EVs in an election between the two', 'created': '2024-11-10 16:28:20', 'submission_id': '1go0zxd'}
{'comment': 'He ran the first time saying he would only do one term.', 'created': '2024-11-10 15:59:34', 'submission_id': '1go0zxd'}
{'comment': 'No. It isn’t just about Trump. The messaging from Biden admin sucked!! 25 years in marketing and advertising and I’m telling you, the Dems have awful marketing and each surrogate tends to meander into Trump is an anomaly…\n\n\nFox News entertainment is the source of infotainment half the country watches.\n\n\nExercise a couple hours a week breathing in MAGA air from those tv hosts and you’ll clearly see the memo messaging and the Trump repeats the nonsense. Not the other way around.', 'created': '2024-11-10 15:42:02', 'submission_id': '1go0zxd'}
{'comment': 'We’re not dead yet!', 'created': '2024-11-10 15:38:47', 'submission_id': '1go0zxd'}
{'comment': 'Why did he appoint Merrick garland who didn’t hire an investigator until it was far too late to jail him before the election?', 'created': '2024-11-10 16:29:01', 'submission_id': '1go0zxd'}
{'comment': 'He alienated almost every key demographic in the base before the election', 'created': '2024-11-10 16:29:30', 'submission_id': '1go0zxd'}
{'comment': 'No I would not.\n\nHe puked all over himself the past year.\n\nPrior to October 7, 2023, I would’ve agreed with you that he was on the whole a solid president. His behavior since then should disgust you and lead you to desire more from politicians.\n\nThe wheels feel completely off after that day', 'created': '2024-11-10 16:38:33', 'submission_id': '1go0zxd'}
{'comment': 'Did you read the depositions?', 'created': '2024-11-10 16:01:07', 'submission_id': '1go0zxd'}
{'comment': 'Who are the Dem favorites for 2028? Gavin Newsome? Hakeem Jeffries?', 'created': '2024-11-10 16:29:17', 'submission_id': '1go0zxd'}
{'comment': 'I’m thinking we ought to give Hillary one more chance if she’s up for it. She has the charisma for sure and she’s strikingly intelligent. I think she might be able to pull a lot of voters come 2028', 'created': '2024-11-10 23:45:46', 'submission_id': '1go0zxd'}
{'comment': 'I fully understand what is needed to do it legally. Yet. Trump is not inclined to be bound by any legal restraint, especially since he practically has carte blanche as determined by the Supreme Court.\n\nSo, there is nothing physically stopping him from doing it. Absolutely nothin.', 'created': '2024-11-11 02:30:56', 'submission_id': '1go0zxd'}
{'comment': 'Exactly. Our people need to learn the hard way before they truly appreciate freedom and democracy.', 'created': '2024-11-10 17:49:04', 'submission_id': '1go0zxd'}
{'comment': 'They will see that for themselves. We have to let people come to their own conclusions, and offer a better way.', 'created': '2024-11-10 16:09:49', 'submission_id': '1go0zxd'}
{'comment': 'The message should be more like “We told you so, and here’s how we’re going to fix it!” One of the main factors of failure is that Dems didn’t get the message across, so we need to start working on that for 2026!', 'created': '2024-11-10 16:55:11', 'submission_id': '1go0zxd'}
{'comment': 'I kind of disagree. Our messaging has often been to take the high road - to do what’s right - etc.\n\nMaybe we need to be HONEST for a change. \n\n“Shit is bad. We’ve got a plan. We will not fuck this up.”', 'created': '2024-11-10 21:20:17', 'submission_id': '1go0zxd'}
{'comment': "Don't worry. Just needs to last until January 2027. Then he will be 25th'd and we will get 4-6 fresh years of Vance. \n\nThat's the endgame. It was never Trump vs Kamala. It was always Heritage vs Kamala.", 'created': '2024-11-10 20:31:43', 'submission_id': '1go0zxd'}
{'comment': "There were also more moderate republicans last time. There's no John McCain, Adam Kizinger or ECT.. this time", 'created': '2024-11-10 16:56:04', 'submission_id': '1go0zxd'}
{'comment': "Even though it may seem hopeless, try to convince your family. I don't mean lash out at them for supporting a dictator, though they probably deserve it, but try to understand why they are this way and figure out the best way to push back. \n\nThere's a reason they are this way. They may feel contempt for the elite, so direct their anger towards the corporations who are misleading them. They may be mysoginists, but don't realize it, so find the best way to connect to them. We are all savable!\n\nYou may not have time to organize, but if it gets to the point where this is a medieval like society, it will collapse, and you'll have no choice. Keep fighting the good fight, and it all starts with those closest to you. Sympathy and empathy are our best tools, even if our opponents prefer hate.", 'created': '2024-11-10 19:03:36', 'submission_id': '1go0zxd'}
{'comment': "The party might have been better off. \n\nBut that doesn't solve the problem that they would have had to run against fascist rhetoric. \n\nTrump created a fictional reality of who he is, of what he would do for voters, and of Harris. \n\nAnd they flooded so much misinformation, that a lot of people were just confused about what to believe.\n\nMeanwhile, Trump and his surrogates would have adapted their narrative to whomever ran against him. And because they can embellish it with whatever lies they want, it is difficult to counter. \n\nFor example, it's pretty clear a lot of people thought the Trump economy was good, that's why they voted for him. Well, the fascist would have easily put any other Democratic candidate in the same bucket as Harris and Biden when it comes to the economy.\n\nThe other problem here is that Republicans spent decades teaching people to mistrust the government and to mistrust experts. They also taught many people both sides are the same. Undoing that is really difficult.", 'created': '2024-11-10 21:59:13', 'submission_id': '1go0zxd'}
{'comment': 'Yes but if he stayed in the race maybe he would’ve won.', 'created': '2024-11-11 01:14:43', 'submission_id': '1go0zxd'}
{'comment': 'Here in MI every commercial for the last couple weeks was a political one. 80% were from billionaire PACs. one that was in almost every commercial break was literally screaming that dems were responsible for afganistan, crime was skyrocketing, millions of illegals were killing people, inflation was skyrocketing, and country was shit. literally easily proved BS. people are stupid.', 'created': '2024-11-10 17:14:13', 'submission_id': '1go0zxd'}
{'comment': 'Oh I definitely agree with you, it’s a multi-pronged issue. I think regardless, the 100 days to run a campaign was a terrible idea, but they really did not spend any time hammering their economic policies. It was all doomsday scenarios—and when the other side is saying “they’re making up a doomsday scenario to create higher prices!!!” and that’s all they’re really seeing in their algorithm bubble anyway… we were fucked. \n\nI wonder how many Kamala videos actually even penetrated most Trump voters’ social media bubbles.', 'created': '2024-11-10 19:02:30', 'submission_id': '1go0zxd'}
{'comment': 'I really agree with your take. People who are struggling, which is a lot of people, felt gaslit by all the “great economy” talk. Sure, the economy is good numbers-wise, but telling that to a struggling person who is either unemployed or because of the highway robbery of billionaires has stagnant wages, it’s an insulting message. Many people in your scenario would then find sources showing the economy is bad, which will usually be conservative ones. That is what flipped a lot of voters.', 'created': '2024-11-10 16:14:54', 'submission_id': '1go0zxd'}
{'comment': 'Let me feel what the Bernie or bust bros feel for just a moment 😌 hahahaha yeah realistically coulda shoulda woulda on that one, either way our messaging has been fucked for a while. It sucks because Biden/Harris had fantastic economic policies that would’ve made a real change, and Biden’s IRS was kicking ass. But all we heard was project 2025… which is unfortunately easy to write off as “crazy scare tactic” (when you’ve already had the GOP scaring you about Dems for years…)', 'created': '2024-11-10 19:05:05', 'submission_id': '1go0zxd'}
{'comment': 'He didn’t, that was disinformation. He made one comment indicating it was a possibility during his run, and the press blew it out of proportion. \n\nhttps://thehill.com/opinion/white-house/4718993-did-biden-break-his-one-term-pledge/', 'created': '2024-11-10 19:00:15', 'submission_id': '1go0zxd'}
{'comment': "The information system is completely dominated by the right wing and billionaires. They have the conservative media. They have the MSM (I don't ever again want to hear it called the liberal media). They have talk radio,.podcasts, and social media. The left wing isn't even competitive.\xa0\n\n\nBiden's message was.faltering, but Kamala's was damn near magical. And even THAT failed to break through the constant drumbeat of the right-wing media environment.\xa0\n\n\nThe days of dreaming of a candidate with such overwhelming appeal and charisma that they put the Media under a spell are over. We need to change our environment.\xa0\n\n\nI will NEVER point fingers at Biden or Harris. They did they best they could under the circumstances. Biden delivered and Kamala messaged. Ripping them apart does nothing but harm us.", 'created': '2024-11-10 16:33:20', 'submission_id': '1go0zxd'}
{'comment': 'At the end of the day you have to connect with voters. Terrible policy wrapped in great messaging beats great policy with terrible messaging.', 'created': '2024-11-10 16:47:29', 'submission_id': '1go0zxd'}
{'comment': '', 'created': '2024-11-10 15:41:00', 'submission_id': '1go0zxd'}
{'comment': 'That would be the “fail” part.', 'created': '2024-11-10 16:30:06', 'submission_id': '1go0zxd'}
{'comment': 'It needs to be a swing state/red state governor like Josh Shapiro, Gretchen Whitmer, or Andy Beshear. They know how to talk to Trump voters and they\'re don\'t have the baggage of being part of the D.C. "swamp"', 'created': '2024-11-10 17:30:03', 'submission_id': '1go0zxd'}
{'comment': 'Wes Moore. Raphael Warnock. Jon Ossoff. Gretchen Whitmer.', 'created': '2024-11-10 17:01:02', 'submission_id': '1go0zxd'}
{'comment': 'I think maybe Gretchen Whitmer and/or Josh Shapiro', 'created': '2024-11-10 16:38:06', 'submission_id': '1go0zxd'}
{'comment': 'Newsom*', 'created': '2024-11-10 21:44:28', 'submission_id': '1go0zxd'}
{'comment': 'Sorry, but elections as we’ll remember them are over.', 'created': '2024-11-11 03:45:05', 'submission_id': '1go0zxd'}
{'comment': 'I\'m sure any dem favorites will be assassinated by "official act" by 2028.', 'created': '2024-11-11 12:31:32', 'submission_id': '1go0zxd'}
{'comment': 'No we need like an AOC level left like neo Bernie Sanders left but with FDRs charisma.', 'created': '2024-11-10 17:25:02', 'submission_id': '1go0zxd'}
{'comment': 'Pete Buttigieg!!!', 'created': '2024-11-10 21:41:41', 'submission_id': '1go0zxd'}
{'comment': 'Absolutely not. Hillary is 77 years old. Lost in a primary. Lost in a general. Not particularly popular.\n\nThe last 3 elections have broken the record for “oldest president elected” each time, and half the country thinks Biden is senile and you want to run a retired 77-year-old (81 in 2028)? No.', 'created': '2024-11-11 02:48:45', 'submission_id': '1go0zxd'}
{'comment': 'In the meantime let’s see if Dems can hyper focus locally. Also I don’t see a lot of young democrats moving to rural Ohio or Pennsylvania.\n\n\nAt some point the demographics will be undoubtedly shift more diverse and left leaning. That’s like 20-30 years out. Probably around the time that Democrats will have a chance to balance out SCOTUS', 'created': '2024-11-10 17:09:28', 'submission_id': '1go0zxd'}
{'comment': 'That’s the spirit!!!', 'created': '2024-11-10 17:20:37', 'submission_id': '1go0zxd'}
{'comment': 'That’s why I propose a MrBeast type celebrity with so much saturation specially for younger men. Hopefully, we can get him on our team at age 35 before he turns Maga. j/k but Clinton didn’t need a big name, or Obama…\n\n\nWe have a deep roster. Kamala was on my radar in 2010…', 'created': '2024-11-10 17:18:15', 'submission_id': '1go0zxd'}
{'comment': 'Well I don’t know that he “tried” very hard. He’s an arrogant, stupid man and if we want to get out of this hole we better have utter disdain for him and learn from his mistakes', 'created': '2024-11-10 16:36:52', 'submission_id': '1go0zxd'}
{'comment': 'Primary season has started!', 'created': '2024-11-10 16:40:54', 'submission_id': '1go0zxd'}
{'comment': "Sadly can't be a women, learned that we are least 2 or 3 presidential cycles away from that, but anyway people are deluding themselves if they think there are ever going to be election a democrat can participate in again.", 'created': '2024-11-10 17:51:13', 'submission_id': '1go0zxd'}
{'comment': 'Did you really say Gretchen? We just lost 2/3 elections, badly, w/ a woman as the nominee. That is 100% off of the table.', 'created': '2024-11-10 20:32:32', 'submission_id': '1go0zxd'}
{'comment': 'AOC is the only one with the necessary level of charisma, unfortunately her policy positions are too unpopular.', 'created': '2024-11-10 18:56:48', 'submission_id': '1go0zxd'}
{'comment': '/s ahahah. Dems certainly need to adjust their messaging to be able to win and this election was a reminder that boring policy wonks, as appealing as they are to me, aren’t as inviting to the broader American public. \n\nWould’ve loved to have seen her win in 2008, honestly, but that time has passed. Hopefully a strong candidate will emerge in 2028!', 'created': '2024-11-11 03:12:51', 'submission_id': '1go0zxd'}
{'comment': 'He apparently did too much was the problem. He got more legislation passed than Obama or Clinton—maybe why he seemed arrogant about it.', 'created': '2024-11-10 20:52:28', 'submission_id': '1go0zxd'}
{'comment': ">people are deluding themselves if they think there are ever going to be election a democrat can participate in again.\n\nHow exactly do you think that's going to be the case?", 'created': '2024-11-10 19:00:20', 'submission_id': '1go0zxd'}
{'comment': 'It’s a disgrace', 'created': '2024-11-11 01:12:28', 'submission_id': '1go0zxd'}
{'comment': 'Yeah… I have to be honest, as sad as it makes me…\n\nNo woman. Honestly, it’s got to be a straight man', 'created': '2024-11-10 21:18:16', 'submission_id': '1go0zxd'}
{'comment': "Why? What's wrong with them? Tell me.", 'created': '2024-11-10 19:00:06', 'submission_id': '1go0zxd'}
{'comment': 'Because there can only be one Fachist King, and he does not share power.\n\n\nHowever,\n\n\nLike Putin, Trump will have "elections" that have "opposition candidates" but also win counties by 120% of the vote.\n\n\nThat is to say, sham elections. Democracy dies in January. Stay frosty.', 'created': '2024-11-11 07:31:58', 'submission_id': '1go0zxd'}
{'comment': 'Too soft on immigration, too pro-criminal and anti-police on public safety, wants a Green New Deal but that can easily be spun into “force everyone to drive electric cars and pay burdensome energy bills”', 'created': '2024-11-10 19:04:12', 'submission_id': '1go0zxd'}
{'comment': "Soft on immigration? How? You need to realize that nobody is illegal on stolen land right? And how are immigrants bad? TELL ME! I literally checked out at the food store the other day and an immigrant cashier told me that she won't be able to become a citizen for 3 more years because of the system.\n\nHow is it wrong to defund the police when all they do is over-police black neighborhoods, kill black people, and usually investigate petty crimes instead of actually doing their jobs? When I was doxxed and threatened I told the cops but they did NOTHING! Also, [this is what defund the police means.](https://www.closeup.org/what-do-defund-the-police-and-police-abolition-mean-and-what-do-they-not-mean/) It's just hard to chant something that's more than one sentence.\n\nAs for the green new deal. How is it bad? It was 78 degrees the other day where I live IN NOVEMBER! Why wouldn't that be popular? It doesn't mean force everyone. It means phase out this way new cars that are made are more eco friendly this way you can use up your old car as much as possible and only get a new one when you need one.\n\nWhere are you getting this misinformation?", 'created': '2024-11-10 19:12:52', 'submission_id': '1go0zxd'}
{'comment': 'If you think you can sell any of that in a national election, I’ve got bad news for you. \n\nIf you really want to go over it point by point, DM me and we’ll set up a calendar invite.', 'created': '2024-11-10 19:14:30', 'submission_id': '1go0zxd'}
{'comment': 'You are not wrong. The problem is that they will never see that. The conservatives. \n\nWe need someone who will crack down on undocumented people and deport them.\n\nEven Latinos are bothered by this because most came through at least some sort of legal process and it sucks for them to watch others just jump to the front of the line.', 'created': '2024-11-10 20:23:05', 'submission_id': '1go0zxd'}
{'comment': 'Just tell me where you got the information. No need for a chat.', 'created': '2024-11-10 19:16:22', 'submission_id': '1go0zxd'}
{'comment': 'I got information that Massachusetts and New York are blowing their budgets trying to accommodate influxes of asylum seekers. I got information that people with migration backgrounds have perpetrated a long list of outrageous crimes and terrorist attacks in Europe since 2015. I got information that criminality in progressive-minded cities like Burlington, Vermont has reached intolerable levels and they are offering big signing bonuses for new police officers *after* aligning with the “defund the police” movement in 2020.\n\nI myself drive an electric car and love it, but people are idiots and think that 15-minute cities are a conspiracy to confine everyone and take away their right to drive. \n\nThese aren’t “alternative facts” in the Trumpian sense. They are just different viewpoints on the same phenomena.', 'created': '2024-11-10 19:24:13', 'submission_id': '1go0zxd'}
{'comment': 'You got a lot of information about the US for being a European. Where are you getting all of your information from?', 'created': '2024-11-12 05:42:21', 'submission_id': '1go0zxd'}
{'comment': 'I’m not European, I just live in Europe for the moment.', 'created': '2024-11-12 07:36:04', 'submission_id': '1go0zxd'}
{'comment': 'Still not answering the question. And you have been in Europe long enough to affect your common English.', 'created': '2024-11-12 12:15:23', 'submission_id': '1go0zxd'}
{'comment': '3 years. You think I would stop reading the news and Reddit just because I moved?', 'created': '2024-11-12 12:22:39', 'submission_id': '1go0zxd'}
{'comment': 'You are pretty good at sidestepping the questions you seemingly will not answer.', 'created': '2024-11-13 08:41:26', 'submission_id': '1go0zxd'}
{'comment': "She'll get a cabinet or agency spot. You know, because loyalty is preferred to competency and character.", 'created': '2024-11-10 14:36:47', 'submission_id': '1go0eza'}
{'comment': "BRAVO! I can't stand her.", 'created': '2024-11-10 14:30:21', 'submission_id': '1go0eza'}
{'comment': 'I\'m a lifelong zonie and she is atrocious, a power grabbing hack. Knew her when we both worked in media, what is left of her soul is rotting from the inside out. So interesting to me that MAGA accepts Trump won AZ but now are rumbling about election fraud. "Interesting" as in, fuck \'em.', 'created': '2024-11-10 15:01:54', 'submission_id': '1go0eza'}
{'comment': 'So Arizona voters pick the Democrat as their Senator but decide to also vote for Trump? This makes zero sense. Also noted in other key states.', 'created': '2024-11-10 17:34:26', 'submission_id': '1go0eza'}
{'comment': "I hope that the fact that candidates who run on MAGA can't win in a state that also votes for Trump means that should we continue to have free and fair elections, MAGA ends with Trump.", 'created': '2024-11-10 15:29:35', 'submission_id': '1go0eza'}
{'comment': 'For all the criticism going around about the Harris campaign, we still managed to save 4 of 5 senate seats in the swing states. \n\n(Casey isn’t quite dead yet, but he’s on life support. Pennsylvania, fix your damn elections.)\n\nShe ran 3 points ahead in the swing states compared to the safe states. That’s the Biden ground game in action. It just wasn’t enough to overcome an R+6 shift.', 'created': '2024-11-10 15:27:04', 'submission_id': '1go0eza'}
{'comment': 'One small bright spot at least.', 'created': '2024-11-10 17:36:51', 'submission_id': '1go0eza'}
{'comment': 'She’s gonna lose her damn mind even more lmao she already screamed election fraud about not getting the governor seat', 'created': '2024-11-10 17:51:57', 'submission_id': '1go0eza'}
{'comment': "Hopefully she just fade away somewhere and doesn't end up on the Trump staff.", 'created': '2024-11-10 18:17:38', 'submission_id': '1go0eza'}
{'comment': 'Good news to start my day!', 'created': '2024-11-10 19:52:02', 'submission_id': '1go0eza'}
{'comment': 'Haha! Kari Lake is such a loser.', 'created': '2024-11-10 22:21:39', 'submission_id': '1go0eza'}
{'comment': 'And Felon47 is going to put her in his cabinet.', 'created': '2024-11-11 02:04:48', 'submission_id': '1go0eza'}
{'comment': 'So can she please go away now?', 'created': '2024-11-11 03:59:45', 'submission_id': '1go0eza'}
{'comment': 'How does Lake lose, and Harris also lose in Arizona? How the fuck is this possible?', 'created': '2024-11-11 05:15:22', 'submission_id': '1go0eza'}
{'comment': "That's a relief. I was hoping JD Vance supporters would get confused and vote for him.", 'created': '2024-11-11 05:41:25', 'submission_id': '1go0eza'}
{'comment': 'She’s somewhat attractive. Trump will grab her by the coochie and give her a cabinet position.', 'created': '2024-11-10 16:58:56', 'submission_id': '1go0eza'}
{'comment': '🕯️', 'created': '2024-11-10 15:54:22', 'submission_id': '1go0eza'}
{'comment': 'But given Trumps record, she’ll be fired and then he’ll claim he never knew her, thinks she’s Rikki Lake and her tv show wasn’t as good as the Apprentice', 'created': '2024-11-10 14:51:48', 'submission_id': '1go0eza'}
{'comment': "At this point, I think that's not altogether bad.\xa0 An incompetent crew is less likely to pull off a transition to dictatorship.", 'created': '2024-11-10 14:54:56', 'submission_id': '1go0eza'}
{'comment': None, 'created': '2024-11-10 17:11:01', 'submission_id': '1go0eza'}
{'comment': 'trump doesnt like losers and she is now 0-2', 'created': '2024-11-10 19:55:17', 'submission_id': '1go0eza'}
{'comment': 'Not hard to imagine why people would vote Trump/Gallego. Especially Latino men.', 'created': '2024-11-10 15:29:25', 'submission_id': '1go0eza'}
{'comment': 'I definitely agree there was fraud but it wasn’t on our side.', 'created': '2024-11-10 15:30:25', 'submission_id': '1go0eza'}
{'comment': "There's an unverified, but somewhat credible rumor that a lot of Trump votes had his name filled in, but every other name blanked out.", 'created': '2024-11-10 17:38:41', 'submission_id': '1go0eza'}
{'comment': 'I’m cautiously optimistic that it will falter once he’s gone. It succeeds because of Trumps charisma. No one else in that movement has it. They follow the the person, not the policies.', 'created': '2024-11-10 15:52:10', 'submission_id': '1go0eza'}
{'comment': '69, missionary, bent over the Resolute Desk, underneath the Resolute Desk...', 'created': '2024-11-10 23:17:02', 'submission_id': '1go0eza'}
{'comment': 'The new admin will be stocked with rubber stampers and enforcers for Project 2025 style policy. Most of the "incompetence" will likely be limited to gaffes and ego-battles, if any. The real intent is not to lead, but to control and win. I expect Trump will be limited to a figure-head/ministerial role in practice, but portrayed as in-charge publicly so that people will trust the dissonant consequences of his announcements and promises.', 'created': '2024-11-10 15:10:37', 'submission_id': '1go0eza'}
{'comment': 'Nothing like self-loathing to make someone hateful.', 'created': '2024-11-10 17:17:16', 'submission_id': '1go0eza'}
{'comment': 'That’s really not surprising. A lot of people don’t care about anything but the presidential election so they don’t even bother with down-ballot races.', 'created': '2024-11-10 17:49:18', 'submission_id': '1go0eza'}
{'comment': "But Ruben got more votes than Kamala in Arizona. So Trump voters only voting Trump doesn't explain it.", 'created': '2024-11-11 03:48:08', 'submission_id': '1go0eza'}
{'comment': 'Yep this. They tried propping up Ron DeSantis as a potential Trump replacement and he failed, hard.', 'created': '2024-11-10 22:49:33', 'submission_id': '1go0eza'}
{'comment': 'It is a mess', 'created': '2024-11-11 00:40:18', 'submission_id': '1go0eza'}
{'comment': 'He already said "loyality above anything else". What could go wrong?', 'created': '2024-11-10 19:55:45', 'submission_id': '1go0eza'}
{'comment': "Yeah but his administrators aren't the deepest threat to democracy.\xa0 We know his people are in the bag for it, it's everyone else with some power.\xa0\xa0\n\n\nTake conservative media, for example- they have so much power that they can sometimes pick the President and install him.\xa0 If he becomes dictator, they lose that power.\xa0 They want the puppet strings, not the other way around.\xa0 Republicans in congress, same deal, they don't want dictatorship.\xa0 Etc.\xa0 And having his staff be incompetent doesn't help that cause and erodes his support over time.\xa0 Not that I'm putting it past Trump to pull a coup off, just saying it's still possible that he'll lose that game.", 'created': '2024-11-10 15:22:30', 'submission_id': '1go0eza'}
{'comment': "We've got two years to get our shit together and pipe wrench Trump's gears in 2026 with a flood of Congressional blue. Might actually be an easy lift with these draconian policy proposals that effect daily life.", 'created': '2024-11-10 23:35:59', 'submission_id': '1go0eza'}
{'comment': 'A lot of ticket-splitting as well, which tends to happen a lot more in general with Senate races.', 'created': '2024-11-10 21:34:31', 'submission_id': '1go0eza'}
{'comment': 'Outside of Trump, there’s a serious lack of personality and charisma in the GOP. If Trump isn’t there, who’s gonna bring them out?', 'created': '2024-11-10 23:14:40', 'submission_id': '1go0eza'}
{'comment': 'I think you underestimate the willingness of the three branches to informally, and eventually formally, unite into a single party and force out competitors…like China.', 'created': '2024-11-10 15:55:11', 'submission_id': '1go0eza'}
{'comment': "People really don't like giving up power.\xa0 Politicians might worry about China's influence, but not so much that they're going to weaken and surrender their own position in congress, in a company, in SCOTUS, etc.\xa0 At least not knowingly.", 'created': '2024-11-10 17:15:19', 'submission_id': '1go0eza'}
{'comment': ">People really don't like giving up power.\xa0 Politicians might worry about China's influence, but not so much that they're going to weaken and surrender their own position in congress, in a company, in SCOTUS, etc.\xa0 At least not knowingly.\n\nExcept this already been disproven. Trump in his previous term was all too willing to give up US' global power and world standing to make his ego feel better. Not wanting to lead NATO and not wanting the US to be leaders in agreements. Also now not wanting to help Ukraine. Actually if you bribe him enough he will absolutely let foreign nations be more influential than the US. Plus he's old af. Even if it meant negative effects on him in 6 or seven years, that won't stop him because he knows he will probably die of old age already. That's the other danger with old crazy politicians. There old age means they have less to lose and less time to actually experience negative consequences.", 'created': '2024-11-10 21:10:11', 'submission_id': '1go0eza'}
{'comment': 'Money is interchangeable with power…unless you’re the Joker.', 'created': '2024-11-10 17:18:31', 'submission_id': '1go0eza'}
{'comment': 'Right now it is.\xa0 Republicans, Fox News, etc. will want to keep it that way.', 'created': '2024-11-10 18:21:44', 'submission_id': '1go0eza'}
{'comment': 'That he won all those swing states blows my mind.', 'created': '2024-11-10 09:29:15', 'submission_id': '1gnvvsh'}
{'comment': "We lost; it's happened before, sadly it will happen again *and* it will feel like shit every time :P\n\nAlready we can tell some very unlovely (but honestly, in my opinion, comforting) truths in regard to DJTs numbers.\n\n\\#1 He hit virtually the exact same ceiling as he did in 2020. \n\\#2 Democrats under-performed by several million votes.\n\nNOW as as an addendum to #1, Trump scored higher in groups *his campaign didn't even target.*\n\nIt's one thing to do great with groups you're aiming for, when you do better with groups you didn't target, that means they weren't voting *for* you, they were simply voting against your opposition.\n\n**That means the sky isn't falling, the world isn't coming to an end and we have plenty of time over the next two years to show we learned our lessons before the mid-terms** 👍", 'created': '2024-11-10 09:12:26', 'submission_id': '1gnvvsh'}
{'comment': 'We need to shed the reputation we have as snobby (whether it’s true or not it’s the perception a lot of people have). They vote on vibes and we ignore that. Clinton and Obama are arguably our most popular recent democrat presidents. Both were known as people it felt like you could “have a beer with”. Reagan or Trump were familiar to people, their faces were in people’s homes long before they ran for president, that also makes sense whole feel more comfortable with them. I’m not saying we have to pick a celebrity just someone more personable. I wonder how Mark Cuban would fair', 'created': '2024-11-10 10:49:55', 'submission_id': '1gnvvsh'}
{'comment': ">NOW as as an addendum to #1, Trump scored higher in groups his campaign didn't even target.\n\n>It's one thing to do great with groups you're aiming for, when you do better with groups you didn't target, that means they weren't voting for you, they were simply voting against your opposition.\n\nWell, but Trump and his surrogates did target those groups indirectly. With all of the misinformation they pushed about Harris.\n\nThe fascist rhetoric playbook is not just about radicalizing people with fear and anger. It's not just about creating a fictional reality about their leader that some people buy into like a cult.\n\nIt's also about sowing so much misinformation, that people fall for their fiction about the opposition. Even though they don't buy totally into what is being projected about the leader.\n\nI'm sure if we could interview a large segment of voters who voted for Trump, but we didn't think he would take the demographic so strongly, we would find that they relied on a lot of misinformation in making their decision.", 'created': '2024-11-10 13:54:43', 'submission_id': '1gnvvsh'}
{'comment': "But that assumes our election system is still intact in two years. It APPARENTLY wasn't a factor this time, but election deniers had seats on many election boards. There was one state that SCOTUS allowed a voter purge in direct violation of a federal law that prohibits that within 90 days of an election. Plus, if he does get the House, there's a lot of damage he can do in two years.", 'created': '2024-11-11 12:42:21', 'submission_id': '1gnvvsh'}
{'comment': 'I wonder if things would have turned out differently if the dems chose Tim Walz as pres instead of VP this time around. Kamala was too close to Biden and she couldn’t separate herself from him (which was her own doing in some ways but also bc she is VP and some Americans apparently don’t know the limits of that position). Walz is a typical midwestern dude that hunts and has daughters and is someone who is very personable. And he leans far enough left for that side to pick him, and is enough of a chill guy to get the working class and potentially young men to vote for him. As others have also pointed out, he can call someone out when they’re lying but also agree on things that the right wants - his debate wasn’t perfect in a lot of ways but in those two areas I think he stood out.', 'created': '2024-11-10 11:19:57', 'submission_id': '1gnvvsh'}
{'comment': 'Because of the timing, it could only be Harris. Anybody else would not have had access to the Biden/Harris war chest, and would have had problems with ballot access. \n\nIf we try to imagine what if Biden had announced his intentions not to run again back in the summer of 2023? Which is when it would have had to happen for a normal primary process. Then I guess anything might have happened. Maybe there was some other candidate that could magically cut through all the bullshit. I do think racism and sexism were factors.', 'created': '2024-11-10 14:18:04', 'submission_id': '1gnvvsh'}
{'comment': 'If Walz had come onto the scene a year or two ago I could see it, but before his name starting floating for vp most people didn’t know he was. He might have a shot next time though', 'created': '2024-11-10 13:35:05', 'submission_id': '1gnvvsh'}
{'comment': 'Excellent. Regardless if Republicans are able to eek out a a still-tiny majority, the slimmer we can make it, the more the wingnuts will try to squeeze Mike Johnson\'s balls each and every time a "have-too" bill (Defense, Budget, etc.) comes up *which means* like McCarthy, he\'ll be forced to turn to Minority Leader Jefferies to pass it 👍', 'created': '2024-11-10 08:24:56', 'submission_id': '1gnuvji'}
{'comment': "Anyone have a good place to keep track of the house race? At this point, it's the only thing giving me hope.", 'created': '2024-11-10 21:52:24', 'submission_id': '1gnuvji'}
{'comment': 'I like the cut of your jib, friend. *Nods respectfully*', 'created': '2024-11-10 08:29:09', 'submission_id': '1gnuvji'}
{'comment': 'I\'m not saying it was the plan (Democrats ran very hard and in many cases defied strong Tradewinds to win victories) BUT it\'s almost the best of all possible worlds because any Party with a tiny majority generally has just enough power to be blamed for anything that goes wrong but not enough to actually change course.\n\nOne of the few to accomplish something with a tiny majority and avoid the pitfalls was Speaker Pelosi in the 2019-2021 Congress 👍\n\nDemocrats passed every "have-too" bill without a bunch of bullshit and *without* having to beg help from Republicans. Republicans can\'t manage that because too many of them don\'t give a shit about anything but their own grifting.', 'created': '2024-11-10 08:49:41', 'submission_id': '1gnuvji'}
{'comment': 'How does MTG keep winning elections?', 'created': '2024-11-10 14:56:39', 'submission_id': '1gnuvji'}
{'comment': 'Look up her district & it’s population. Then look who she ran against to get into Congress. It was a perfect opportunity for a Karen to emerge.', 'created': '2024-11-10 15:56:16', 'submission_id': '1gnuvji'}
{'comment': 'They are all egregious.', 'created': '2024-11-10 07:28:54', 'submission_id': '1gnubiz'}
{'comment': "Crazy that most, if not all, (still trying to be optimistic) of the capitol rioters that injured or killed officers aren't gonna face any consequence. And the ones the justice department goes after will probably just get pardoned in 2 to 3 months. Wtf is this reality/timeline", 'created': '2024-11-10 07:19:12', 'submission_id': '1gnubiz'}
{'comment': 'All except the biggest one huh', 'created': '2024-11-10 11:11:17', 'submission_id': '1gnubiz'}
{'comment': 'Well the most egregious of all was trump and it took them almost three years to start that case so what the fuck ever.', 'created': '2024-11-10 07:24:47', 'submission_id': '1gnubiz'}
{'comment': 'Cool. Can’t wait for the justice department to do nothing like they always do when it comes to the crusty old rapist.', 'created': '2024-11-10 14:16:33', 'submission_id': '1gnubiz'}
{'comment': 'It won’t matter, they will all be released! And each one will become a YouTube star for Republican Party once Trump takes office.', 'created': '2024-11-10 07:28:14', 'submission_id': '1gnubiz'}
{'comment': 'His was the most egregious and they couldn’t/wouldn’t do anything about that.', 'created': '2024-11-10 17:35:22', 'submission_id': '1gnubiz'}
{'comment': "4+ years and they couldn't get anything done and now they think they can do something in 2 months?\n\ndocuments case should have been done in a couple days after they had to raid his bathroom. it's the one that could have had treason/sedition charges that would have ended this.", 'created': '2024-11-10 20:29:38', 'submission_id': '1gnubiz'}
{'comment': 'What the F were they doing thus far??? Merrick Garland is just beyond belief!', 'created': '2024-11-10 14:09:19', 'submission_id': '1gnubiz'}
{'comment': 'Joke country .. lawlessness is here .. 3rd world country \n\nNo one will respect the US anymore and get off that high horse of being a defender of good and truth', 'created': '2024-11-10 08:28:05', 'submission_id': '1gnubiz'}
{'comment': 'Ah, the party of law and order.', 'created': '2024-11-10 15:22:49', 'submission_id': '1gnubiz'}
{'comment': "What's the point, he'll pardon himself anyway", 'created': '2024-11-10 15:46:58', 'submission_id': '1gnubiz'}
{'comment': 'I still find it perplexing how Republicans still continue to make light of Jan 6. Lots of them calling for Trump to pardon all the rioters. They reason that Jan 6 wasnt nearly as bad as riots/protests done by democrats (you know the ones that happened due to misuse of power by cops). Somehow "because the democrats rioted" Jan 6 is A okay. Nevermind the reason for the protests from 2020. \n\nAll this shows me is that Republicans are literally willing to condone the most heinous unpatriotic behavior just to spite democrats. It\'s wild.', 'created': '2024-11-13 17:33:07', 'submission_id': '1gnubiz'}
{'comment': 'It better be on msm media daily when he oarsons donestic terrorists.', 'created': '2024-11-10 13:06:01', 'submission_id': '1gnubiz'}
{'comment': "That's American 'justice' for you. Fucking disgusting that MAGA still has the audacity to piss and moan about 'lawfare'.", 'created': '2024-11-10 07:48:29', 'submission_id': '1gnubiz'}
{'comment': 'I don’t think he’ll pardon anyone. \n\nWhy should he? He never cares. \n\nIf he does, it will only be to make headlines for himself, to shock people when he’s not in the news.', 'created': '2024-11-10 08:49:24', 'submission_id': '1gnubiz'}
{'comment': "I still want their guilt, and Trump's decision to bless their crimes, on the record.", 'created': '2024-11-10 15:19:48', 'submission_id': '1gnubiz'}
{'comment': 'I moved here from Australia, the USA is like a second world nation in my eyes. Everything is just a little bit crappy. I found a town that works for me but check out Strong Towns… capitalism and the city growth Ponzi scheme ruined your country, not “woke communist”', 'created': '2024-11-10 15:21:53', 'submission_id': '1gnubiz'}
{'comment': 'Pardoning the Jan 6 attackers is a signal to the people he *will* need to commit more crimes for him in the *future*.', 'created': '2024-11-10 15:19:12', 'submission_id': '1gnubiz'}
{'comment': "I think he will likely pardon a few with\xa0short sentences to, as you said, make headlines. To seem like a guy who makes good on his promise.\xa0\n\n\nBut yea all in all I don't think he gives a shit.\n\n\nOne of the voice actors from Bob's Burgers got sentenced. I would not be surprised if that one managed to beg his way to a pardon somehow.", 'created': '2024-11-10 18:26:25', 'submission_id': '1gnubiz'}
{'comment': 'He better have money. I don’t think Trump provides free pardons… there needs to be something in it for him.', 'created': '2024-11-10 18:41:57', 'submission_id': '1gnubiz'}
{'comment': "Not really. When it comes to these types of things the price is to let him do more crime. Like the Supreme Court picks. Gorsuch boofer and Barrett didn't have to pay him a dime. The understanding was he would get more power and given more freedom to commit crimes. And we have seen that play out. Pardoning the rioters ensures their support and encourages supporters to let him be more criminal and also emboldens supporters to continue their harassment of others.", 'created': '2024-11-10 20:45:12', 'submission_id': '1gnubiz'}
{'comment': 'Yeah but the price of eggs', 'created': '2024-11-10 06:04:05', 'submission_id': '1gnslmv'}
{'comment': 'Taiwan. Sadly', 'created': '2024-11-10 06:08:59', 'submission_id': '1gnslmv'}
{'comment': 'Well you can also cross off lower prices cuz higher inflation is making a comeback baby!', 'created': '2024-11-10 06:40:38', 'submission_id': '1gnslmv'}
{'comment': "Clean Air. And if the FDA is gone, well, don't eat anything you don't grow yourself.", 'created': '2024-11-10 12:42:15', 'submission_id': '1gnslmv'}
{'comment': 'Many commentators expect that Trump’s reign will be marked by catastrophic events, but the worst option is that there will be no great shocks: Trump will try to finish the ongoing wars (not least by imposing a peace on Ukraine); the economy will remain stable and perhaps even thrive; tensions will be attenuated; life will go on…. However, a whole series of federal and local measures will continuously undermine the existing liberal-democratic social pact and change the basic texture that holds together the United States—unraveling what Hegel called Sittlichkeit, the set of unwritten customs and rules that underpin politeness, truthfulness, social solidarity, political rights, and so on. This new world will appear as a new normality, and in this sense, Trump’s second reign may well bring about the end of what was most precious in our civilization.', 'created': '2024-11-10 06:49:43', 'submission_id': '1gnslmv'}
{'comment': 'I think most of not all of those will exist but in a weakened state.', 'created': '2024-11-10 05:52:59', 'submission_id': '1gnslmv'}
{'comment': "Don't forget the dept of education and the ability to consyme porn. Also add in birth control, IVF", 'created': '2024-11-10 13:27:28', 'submission_id': '1gnslmv'}
{'comment': "People don't seem to understand what mass deportations of immigrants and Trump's blanket tariffs are going to do to their cost of living. People who voted for Trump because their lives were better four years ago are in for a shock.", 'created': '2024-11-10 14:43:57', 'submission_id': '1gnslmv'}
{'comment': 'Thankfully the President can no longer unilaterally withdraw the US from NATO.', 'created': '2024-11-10 06:28:57', 'submission_id': '1gnslmv'}
{'comment': 'but my groceries!', 'created': '2024-11-10 06:09:02', 'submission_id': '1gnslmv'}
{'comment': 'Dw there’s a congressional veto on pulling out of nato now', 'created': '2024-11-10 08:55:47', 'submission_id': '1gnslmv'}
{'comment': 'Time to go.', 'created': '2024-11-10 07:05:44', 'submission_id': '1gnslmv'}
{'comment': 'And somehow all of that is making America great… 🤦', 'created': '2024-11-10 09:31:22', 'submission_id': '1gnslmv'}
{'comment': "And you better keep in mind: MAGA didn't show up, We stayed home. We saw the consequences the first Trump Presidency had and, we learned nothing. Don't complain all of this is happening, complain to those that didn't show up.", 'created': '2024-11-10 15:15:24', 'submission_id': '1gnslmv'}
{'comment': 'Worst part is knowing that all these things weren’t taken from us. We threw them away', 'created': '2024-11-10 10:44:27', 'submission_id': '1gnslmv'}
{'comment': 'You know, I must have been like 7 when I realized this but I remember older guys complaining about immigrants taking all the jobs and I asked what jobs. When they told me the jobs, I asked would you do those jobs, they said no way. So I don’t fucking get it lol. And it feels like it’s business owners who profit off of paying these immigrant pennies who also vote Republican? I can’t wait for there to be a crisis of labor in this country because we’re above doing landscaping', 'created': '2024-11-10 13:39:17', 'submission_id': '1gnslmv'}
{'comment': 'But her emails!!!!', 'created': '2024-11-10 13:33:10', 'submission_id': '1gnslmv'}
{'comment': 'So now that the moral folks like DeSantis have gone after gay library books about a kid having two moms, I trust the right-wing’s next crusade will be against all hip hop/rap music and removing it entirely from American airwaves, radio stations & streaming platforms?\n\nLyrics like shooting at the cops or pimping underage girls or selling drugs don’t sound very family-friendly to me.\n\nThing is, the republicans aren’t physically intimidated by gay people. They absolutely are scared to death of taking on the rap/hip hop culture/industry. But clearly, with all these Diddys and R Kelly’s and others being found out doing horrible things…when’s the same energy going to be spent going after this genre of music, and why isn’t it being banned like books are?\n\nI would think most Trump parents don’t want their kids hearing this kind of music when we are in an era of simply banning things and cancelling them.\n\nGo after rap music next. Let’s see how fast the shit flies.', 'created': '2024-11-10 13:18:01', 'submission_id': '1gnslmv'}
{'comment': "Great (and terrifying) list! I'd add one more: [Objective Reality](https://youtu.be/MwscvKiQheg&t=219)", 'created': '2024-11-10 07:19:37', 'submission_id': '1gnslmv'}
{'comment': 'I was reading up on the BS that happened in Poland recently. If the same happens here, there is absolutely no one to stop it. It’s terrifying. And for what?', 'created': '2024-11-10 14:30:08', 'submission_id': '1gnslmv'}
{'comment': 'Unions as well.', 'created': '2024-11-10 14:34:41', 'submission_id': '1gnslmv'}
{'comment': 'NATO. And yeah… takes look at the CEO’s of the egg companies. They kept the prices high to piss people off and make profit. And they’re all republicans', 'created': '2024-11-10 15:58:45', 'submission_id': '1gnslmv'}
{'comment': 'NATCA……… Let’s be real for a minute; Let’s replace CURRENTLY QUALIFIED, and long studying individuals handling our airspaces with LOYALISTS who have ZERO TRAINING.', 'created': '2024-11-10 16:38:27', 'submission_id': '1gnslmv'}
{'comment': "It's time to attack Vance. He has a 4 year runway to the 2028 election, so let's flip the conservative playbook and start now.", 'created': '2024-11-10 17:29:53', 'submission_id': '1gnslmv'}
{'comment': 'No, Trump got the popular vote this time. Democracy voted for fascism, xenophobia, and intolerance. Even if the outcome is horrible, it’s still democracy.', 'created': '2024-11-10 07:02:22', 'submission_id': '1gnslmv'}
{'comment': 'Caesarism, caesarism all the way…', 'created': '2024-11-10 12:38:26', 'submission_id': '1gnslmv'}
{'comment': 'good luck getting a roof repaired. every roofing company is all Hispanic workers. Those guys work so hard they tire me out just watching!', 'created': '2024-11-10 15:27:49', 'submission_id': '1gnslmv'}
{'comment': 'Looks like nobody is getting laid for the next 4 years.', 'created': '2024-11-10 17:14:12', 'submission_id': '1gnslmv'}
{'comment': "You can thank all the Dems that didn't get off their butts to vote (at the very least 1.5 million Dems did not vote, well know better number in a few days), AND all the women that decided the Taliban treatment of women is what they want. Pathetic.", 'created': '2024-11-11 16:47:22', 'submission_id': '1gnslmv'}
{'comment': 'Crime is going to go up as the social safety nets disappear.', 'created': '2024-11-10 14:00:11', 'submission_id': '1gnslmv'}
{'comment': 'Boycott Tesla!!', 'created': '2024-11-10 17:35:20', 'submission_id': '1gnslmv'}
{'comment': 'Definitely gay marriage and interracial marriage will be revisited by the right wing SCOTUS.', 'created': '2024-11-10 18:54:34', 'submission_id': '1gnslmv'}
{'comment': 'But… the price of 🥚!', 'created': '2024-11-11 13:54:58', 'submission_id': '1gnslmv'}
{'comment': 'The scary thing here is that for many of those that voted for Trump, this is a feature, not a bug.', 'created': '2024-11-11 16:25:07', 'submission_id': '1gnslmv'}
{'comment': 'Same. Internationally. Thanks. Americans.', 'created': '2024-11-10 07:08:07', 'submission_id': '1gnslmv'}
{'comment': 'Slimy Vance is my nickname for him.', 'created': '2024-11-10 17:31:00', 'submission_id': '1gnslmv'}
{'comment': 'Government accountability offices\n\nSeparation of Church and State\n\nDepartment of Education (DOE is Department of Energy... which would also likely face cuts)\n\nA lot of other guardrails.\n\n\n\n\n\n"But muh steak prices"', 'created': '2024-11-10 20:55:02', 'submission_id': '1gnslmv'}
{'comment': 'I think the blue states will protect these things', 'created': '2024-11-11 03:58:33', 'submission_id': '1gnslmv'}
{'comment': "Well, it's a good thing that the President can only do so much without the approval of other government organs. I'd like to believe that people will have some common sense not to create another mess.", 'created': '2024-11-11 20:39:57', 'submission_id': '1gnslmv'}
{'comment': "Foreigner here: it sounds crazy to the rest of the world, But isn't that what most of you wanted?", 'created': '2024-11-10 07:02:34', 'submission_id': '1gnslmv'}
{'comment': 'America voted for all of it. Nothing was a secret.', 'created': '2024-11-10 13:28:15', 'submission_id': '1gnslmv'}
{'comment': 'The house and senate would need to pass these first. We can only hope the majority of them won’t let this happen. Luckily, there are some Republicans who are not for Trump and his stupid policies.', 'created': '2024-11-10 17:00:45', 'submission_id': '1gnslmv'}
{'comment': 'Americans know this and a majority voted for this. Go figure.', 'created': '2024-11-10 13:07:44', 'submission_id': '1gnslmv'}
{'comment': "Oh, 3/4 of Ukraine will exist. Trump's negotiation will only help Putin save face for the fact he can't take all of Ukraine\n\n\nNATO will still exist and still no one will dare f*** with us. We have nukes too.\n\n\nAbortion rights will probably continue to exist. A national ban probably won't happen. GOP has eroded Dem leads in blue states and they're going to want more.\n\n\nLGBT rights are fucked, screwed and donzo. The only thing that will not happen is they won't make gay sex illegal. Everything else in terms of community, culture and visibility is gone.\n\n\nAnd if a republican wins in 2028... democracy is f***ed. ALTHOUGH... it remains to be seen if in 2026 Orban's Fidesz will be beaten by Tisza and if he concedes. If Orban concedes in 2026, there is some semblance of hope that in a similar situation in the US the GOP will concede, preparing for a future without Trump's appeal.\n\n\nBut I dunno... with the GOP's election denialism... they might even fake 2028 somehow.", 'created': '2024-11-10 12:39:09', 'submission_id': '1gnslmv'}
{'comment': "At least we'll be able to afford potato chips again. 🤷", 'created': '2024-11-10 13:33:27', 'submission_id': '1gnslmv'}
{'comment': 'Wonder what that price will become', 'created': '2024-11-10 08:31:18', 'submission_id': '1gnslmv'}
{'comment': 'oh thats another thing, cheap eggs. thats gonna be gone under trump', 'created': '2024-11-10 09:10:23', 'submission_id': '1gnslmv'}
{'comment': 'Watch it surge and somehow still be the Dems fault', 'created': '2024-11-10 09:28:26', 'submission_id': '1gnslmv'}
{'comment': 'I actually wish people would stop saying this, even as a so joke, because his tariffs and immigration policies will absolutely raise grocery prices.', 'created': '2024-11-10 13:41:44', 'submission_id': '1gnslmv'}
{'comment': 'The price of eggs are the new "but her emails".', 'created': '2024-11-10 13:40:16', 'submission_id': '1gnslmv'}
{'comment': 'Time to buy a few chickens and a coop', 'created': '2024-11-10 10:39:02', 'submission_id': '1gnslmv'}
{'comment': 'Crushed, devastated, heartbroken, terrified, and more. But thank you for this much needed laugh. 💙', 'created': '2024-11-10 22:20:24', 'submission_id': '1gnslmv'}
{'comment': 'Oh and Jesus.', 'created': '2024-11-10 15:04:19', 'submission_id': '1gnslmv'}
{'comment': "I'll be nice. I'll give Trump and Repubs 10 days. 10 Days! After he assumes rule. For my eggs to be 1.99 and gas to be 1.99. After that it's their fault all the way.", 'created': '2024-11-11 15:56:51', 'submission_id': '1gnslmv'}
{'comment': 'They are toast.', 'created': '2024-11-10 17:36:59', 'submission_id': '1gnslmv'}
{'comment': 'Hell yeah !!!', 'created': '2024-11-10 13:38:47', 'submission_id': '1gnslmv'}
{'comment': 'Honestly, I think there already happened given that Trump was elected instead of Kamala Harris. The trust that citizens are supposed to have with each other and their government is so lacking that they voted for Trump twice (I know, the first time wasn’t by popular vote). Nonetheless, that this was even allowed in the first place shows that these little norms no longer exist.', 'created': '2024-11-10 11:52:10', 'submission_id': '1gnslmv'}
{'comment': "To me this is Europe's sign to amass a large army, it's time. The US will become an unhinged super military and the world needs to be prepared for that, like the boomer grandpa who stockpiled weapons and is not showing signs of dementia, the other family members will have to make solid plans", 'created': '2024-11-10 13:30:03', 'submission_id': '1gnslmv'}
{'comment': '😥😥💔', 'created': '2024-11-10 07:00:52', 'submission_id': '1gnslmv'}
{'comment': 'That makes perfect sense, and I feel the wheels for that are already in motion!', 'created': '2024-11-10 15:29:46', 'submission_id': '1gnslmv'}
{'comment': 'What is physically preventing him from doing so? People get "shouldn\'t" mixed up with "can\'t"', 'created': '2024-11-10 10:10:00', 'submission_id': '1gnslmv'}
{'comment': 'tbh even then i don’t think any country will want to help america except for russia after january.', 'created': '2024-11-10 07:20:28', 'submission_id': '1gnslmv'}
{'comment': 'Go where? Do you know how hard it is to be an immigrant? To start from scratch?', 'created': '2024-11-10 10:07:53', 'submission_id': '1gnslmv'}
{'comment': 'we ain’t going anywhere, fight for your home', 'created': '2024-11-10 08:42:44', 'submission_id': '1gnslmv'}
{'comment': 'That\'s the thing that\'s weird to me. I\'m a US Citizen and I would totally do landscaping, but probably wouldn\'t get hired because they would "have to pay too much."', 'created': '2024-11-10 17:16:12', 'submission_id': '1gnslmv'}
{'comment': 'This election was still a democracy, not sure we will have any more elections after this', 'created': '2024-11-10 07:50:35', 'submission_id': '1gnslmv'}
{'comment': 'Most? Less than 25% voted for it.', 'created': '2024-11-10 07:15:27', 'submission_id': '1gnslmv'}
{'comment': "Most Americans don't vote\n\nThat's almost always been the case\n\nSo in reality at BEST 35% of the country voted him in\n\nThe rest either voted Kamala Harris or they are oblivious to politics and issues and just trying to work and survive and are ETHIER apolitical or believe their votes wouldnt matter anyway.", 'created': '2024-11-10 08:08:54', 'submission_id': '1gnslmv'}
{'comment': 'Yea those republicans that oppose him will be turned on and threatened with primaries', 'created': '2024-11-11 02:55:55', 'submission_id': '1gnslmv'}
{'comment': 'Not likely.', 'created': '2024-11-10 13:45:16', 'submission_id': '1gnslmv'}
{'comment': 'Spoiler alert, you will not.', 'created': '2024-11-10 15:02:22', 'submission_id': '1gnslmv'}
{'comment': 'If a $3-4 bag of Lays is sending some spiraling into bankruptcy, it might be time to assess their lives.', 'created': '2024-11-10 21:05:34', 'submission_id': '1gnslmv'}
{'comment': 'Best I can do is $50', 'created': '2024-11-10 14:34:49', 'submission_id': '1gnslmv'}
{'comment': "If we're talking the price of women's eggs, this new administration is going to promise them for free to the incels.", 'created': '2024-11-10 20:55:44', 'submission_id': '1gnslmv'}
{'comment': 'Oh yeah, wait till he starts these tariffs he’s been going on about!', 'created': '2024-11-10 17:36:11', 'submission_id': '1gnslmv'}
{'comment': 'Like I’ve posted before. Get those Trump “I did that” stickers ready.', 'created': '2024-11-10 14:30:58', 'submission_id': '1gnslmv'}
{'comment': 'But it will be\n\nEdit - plz note my sarcasm..', 'created': '2024-11-10 15:19:57', 'submission_id': '1gnslmv'}
{'comment': 'It’s good to be regularly reminded of, and mock mercilessly, the idiotic irony of people pissed about inflation electing a guy repeatedly promising tariffs.\n\nNever stop repeating their stupidity', 'created': '2024-11-10 16:49:43', 'submission_id': '1gnslmv'}
{'comment': 'I think that’s part of the (not funny) ‘joke’ - we potentially are going to lose all these things and not even get lower prices in the ‘bargain’. \n\nTruly the stupidest timeline.', 'created': '2024-11-11 15:49:23', 'submission_id': '1gnslmv'}
{'comment': "Actually, they couldn't care less about the price of eggs, or her emails. They are driven by hatred, racism, and xenophobia, they just can't or won't just come out and say that.", 'created': '2024-11-10 14:43:32', 'submission_id': '1gnslmv'}
{'comment': 'If I had my own co-op I would eat so much healthier', 'created': '2024-11-10 15:21:03', 'submission_id': '1gnslmv'}
{'comment': 'Jesus fucking christ, that too', 'created': '2024-11-10 16:47:10', 'submission_id': '1gnslmv'}
{'comment': 'Does feel like we could be moving towards Orwell’s vision in 1984 of a world perpetually at war between essentially continental blocs', 'created': '2024-11-10 13:32:34', 'submission_id': '1gnslmv'}
{'comment': 'Russia wants to tear apart the US. They are not our friends.', 'created': '2024-11-10 10:06:43', 'submission_id': '1gnslmv'}
{'comment': 'A lot of us are naturalized immigrants to the US, so yes', 'created': '2024-11-10 13:41:21', 'submission_id': '1gnslmv'}
{'comment': "Are you ready to die for it? We're quickly approaching that reality", 'created': '2024-11-10 13:41:51', 'submission_id': '1gnslmv'}
{'comment': 'On Nov 26 there’s a runoff election in Mississippi for state Supreme Court. While Supreme court is a non partisan position, judge Kitchens is a Democrat, opponent Branning is endorsed by the Republican party. Per her website she believes in the “traditional values of faith, family and freedom”. She calls herself a constitutional conservative.\n\nFollow, amplify him on your socials. If you can afford the time and or money donate and volunteer for\n\nhttps://justicekitchens.tbgsites.com/', 'created': '2024-11-10 13:59:47', 'submission_id': '1gnslmv'}
{'comment': 'And few enough of us showed up on the other side that we couldn’t overcome that 25%. So whatever the excuse, our didn’t vote millions are sitting on the side of the scale that enabled this.', 'created': '2024-11-10 20:09:52', 'submission_id': '1gnslmv'}
{'comment': 'I suspect might be the case. I am allowed to have chickens in my back yard I might get a few', 'created': '2024-11-10 14:40:08', 'submission_id': '1gnslmv'}
{'comment': 'Running a sale are we?', 'created': '2024-11-10 16:47:48', 'submission_id': '1gnslmv'}
{'comment': 'Ooooo, you can’t do $40? I just spent $100 on pasteurized milk and bread, and $40 is all I have left..', 'created': '2024-11-10 18:49:33', 'submission_id': '1gnslmv'}
{'comment': 'They are going to kill IVF and other “unnatural” approaches. So yeah zero', 'created': '2024-11-10 21:15:36', 'submission_id': '1gnslmv'}
{'comment': 'For sure!!!', 'created': '2024-11-10 17:36:37', 'submission_id': '1gnslmv'}
{'comment': 'Forgot the sexism, homophobia and transphobia', 'created': '2024-11-10 16:48:30', 'submission_id': '1gnslmv'}
{'comment': 'putin and trump are best friends basically', 'created': '2024-11-10 16:04:15', 'submission_id': '1gnslmv'}
{'comment': 'Where are you going to go that has a better social, political, economic outlook right now?. I am genuinely interested.', 'created': '2024-11-10 20:01:00', 'submission_id': '1gnslmv'}
{'comment': 'Yes', 'created': '2024-11-10 14:05:54', 'submission_id': '1gnslmv'}
{'comment': 'For various reasons, yes, if the final numbers confirm this.', 'created': '2024-11-10 20:26:26', 'submission_id': '1gnslmv'}
{'comment': 'Well maybe. 40 and a quarter of the bread might do as barter.', 'created': '2024-11-10 19:40:23', 'submission_id': '1gnslmv'}
{'comment': 'Trump is a useful tool to Putin. Trump thinks they are equals and friends, Putin thinks of trump as a disposable asset', 'created': '2024-11-10 16:50:47', 'submission_id': '1gnslmv'}
{'comment': "They're bum buddies........", 'created': '2024-11-10 22:14:35', 'submission_id': '1gnslmv'}
{'comment': 'Portugal, Italy, or Japan to start.', 'created': '2024-11-10 23:51:21', 'submission_id': '1gnslmv'}
{'comment': "Social/political - pretty much any other western country \n\nEconomic - I don't care anymore.", 'created': '2024-11-10 20:05:14', 'submission_id': '1gnslmv'}
{'comment': "I respect that 🫡.\n\nAs queer black dude, I don't even know anymore.", 'created': '2024-11-10 14:09:47', 'submission_id': '1gnslmv'}
{'comment': 'yeah you’re probably right, but they’ve definitely been working together lately', 'created': '2024-11-10 16:54:26', 'submission_id': '1gnslmv'}
{'comment': 'why did you make me have to imagine that', 'created': '2024-11-10 23:12:52', 'submission_id': '1gnslmv'}
{'comment': 'The majority of them are fighting the rise of the right wing and neo Nazis. Immigration, inflation, housing crisis, income disparity, religion.......same issues, another country another language.', 'created': '2024-11-10 20:12:59', 'submission_id': '1gnslmv'}
{'comment': 'I told some friends if you’re in danger do what you need to protect yourself. But if you’re privileged enough to be in a relatively safer spot maybe don’t announce you’re fleeing and leaving everyone whose lives are literally in danger without any buffer.', 'created': '2024-11-10 20:05:57', 'submission_id': '1gnslmv'}
{'comment': '[removed]', 'created': '2024-11-10 20:45:42', 'submission_id': '1gnslmv'}
{'comment': 'True - for anything that benefits Putin. I said on Wednesday that Russia won this election. Putin said on Thursday that they won this election. :/', 'created': '2024-11-10 19:53:49', 'submission_id': '1gnslmv'}
{'comment': "I'm sorry. But these are going to be tough times, and we need to buck up and face reality. \n\nBow chica wow wow......", 'created': '2024-11-10 23:36:01', 'submission_id': '1gnslmv'}
{'comment': 'Also coordinated help lines to support or call -\n\nhttps://preview.redd.it/716l9v4xr40e1.jpeg?width=782&format=pjpg&auto=webp&s=93ded486689a5b222233328ae0ef4c4cfe21d906', 'created': '2024-11-10 21:05:11', 'submission_id': '1gnslmv'}
{'comment': 'gross', 'created': '2024-11-10 20:08:40', 'submission_id': '1gnslmv'}
{'comment': 'NOOOOOO HAHAHA', 'created': '2024-11-11 00:50:27', 'submission_id': '1gnslmv'}
{'comment': 'And sad. And infuriating.', 'created': '2024-11-10 20:11:05', 'submission_id': '1gnslmv'}
{'comment': 'With the Village People playing in the background', 'created': '2024-11-11 01:08:45', 'submission_id': '1gnslmv'}
{'comment': 'yeah. i hope biden at least does something and investigates this stuff while he still has power… it’s an absolute nightmare', 'created': '2024-11-10 20:12:16', 'submission_id': '1gnslmv'}
{'comment': 'I’ve donated to support communications for Schumer’s No Kings act revoking immunity also. I don’t know that it has a snowball’s chance in hell but whatever has the least chance of introducing the concept of justice, law and reason to that man’s life, I’m supporting.', 'created': '2024-11-10 20:42:31', 'submission_id': '1gnslmv'}
{'comment': 'oh god i forgot that he’s going to pardon himself when he becomes president. that rule is so fucking stupid. god i can’t believe this is real', 'created': '2024-11-10 21:15:59', 'submission_id': '1gnslmv'}
{'comment': 'Also before Biden leaves office he NEEDS to give a speech and post everywhere the current stock market, inflation rate, and unemployment. …also crime rate. \n\nTrump will quickly take credit for all of these.', 'created': '2024-11-10 05:04:11', 'submission_id': '1gnrkxv'}
{'comment': 'He loves to put his name on everything', 'created': '2024-11-10 04:52:21', 'submission_id': '1gnrkxv'}
{'comment': 'Tariffs are now Trump Tax', 'created': '2024-11-10 06:16:30', 'submission_id': '1gnrkxv'}
{'comment': 'Worth reminding people that, in England, Trump means fart', 'created': '2024-11-10 05:24:38', 'submission_id': '1gnrkxv'}
{'comment': "I'm taking a picture of the price of gas on inauguration day for posterity. Petty? Yes oh well", 'created': '2024-11-10 05:35:27', 'submission_id': '1gnrkxv'}
{'comment': 'Trumpconomy', 'created': '2024-11-10 05:28:08', 'submission_id': '1gnrkxv'}
{'comment': 'Trump controls the weather. Trump is eating the cats and dogs, Trump is stupid, Trump is the enemy within,etc?', 'created': '2024-11-10 07:07:45', 'submission_id': '1gnrkxv'}
{'comment': 'Make him own it…All of it', 'created': '2024-11-10 06:42:55', 'submission_id': '1gnrkxv'}
{'comment': 'And let\'s start an "America Held Hostage" count on January 20, 2025.', 'created': '2024-11-10 08:36:57', 'submission_id': '1gnrkxv'}
{'comment': 'My experience is:\n\n\n\nSwing voter: “Why is there a recession?”\n\n\n\nCorrect Democrat response:\xa0 “Trump did it and we should blame him for it”\n\n\n\ninCorrect Democrat response:\xa0 “Well that is a very complex subject and everyone shares some responsibility”\n\n\n\n\n\nNo … it is the TRUMP recession …. totally on him', 'created': '2024-11-10 18:06:45', 'submission_id': '1gnrkxv'}
{'comment': 'Yes. Fight fire with fire. All I heard for the past 2 months was " the Harris administration".', 'created': '2024-11-10 16:08:12', 'submission_id': '1gnrkxv'}
{'comment': 'Just start calling tariffs the "Trump Tax"', 'created': '2024-11-10 13:41:46', 'submission_id': '1gnrkxv'}
{'comment': 'The Trump/Republican recession!', 'created': '2024-11-10 15:49:14', 'submission_id': '1gnrkxv'}
{'comment': 'Trump concentration camps…', 'created': '2024-11-10 17:36:20', 'submission_id': '1gnrkxv'}
{'comment': 'Turnabout is certainly fair play 👍', 'created': '2024-11-10 08:23:14', 'submission_id': '1gnrkxv'}
{'comment': 'Trump’s abortion ban stuck, but they made the entire election about it so it lost all impact', 'created': '2024-11-10 06:59:25', 'submission_id': '1gnrkxv'}
{'comment': 'We should have called covid the Trump virus', 'created': '2024-11-10 23:10:57', 'submission_id': '1gnrkxv'}
{'comment': "Please morons learn that no matter how much we do this the Billionaire Owned Press isn't going to repeat it", 'created': '2024-11-10 09:01:26', 'submission_id': '1gnrkxv'}
{'comment': "first, work to ensure there will be fair elections. particularly in the swing states.\n\nsecond, need a strong left wing media machine with the focus on new media.\n\nthird, dems should have an easier time now that they aren't the incumbent; but, talk in as much details of what your plans are as it relates to what matters most to voters avoiding as much word salads as possible.\n\nfourth, stop the extreme woke culture. is that more important than healthcare, economy, abortion and so on?", 'created': '2024-11-10 05:19:19', 'submission_id': '1gnrkxv'}
{'comment': 'Trump Oval Office Executive Chair Staining', 'created': '2024-11-10 22:21:13', 'submission_id': '1gnrkxv'}
{'comment': 'I’m sure that FoxNews and the right wing media will go along with that too. Great suggestion. /s', 'created': '2024-11-10 23:26:30', 'submission_id': '1gnrkxv'}
{'comment': 'You know, "Trump this" and "Trump that" only worked in 2020 because of his disastrous response to COVID. It didn\'t work this time. It\'s not going to work in 2026 or 2028, assuming we have elections. Democrats need to get behind a more left-populist message and show some fight. There\'s a reason that 10M voters from 2020 stayed home. "Not Trump" isn\'t an effective motivating strategy.', 'created': '2024-11-10 16:17:48', 'submission_id': '1gnrkxv'}
{'comment': 'Just like with Obama... after years and years of whining about the state of affairs, he did a total 180 and claimed credit for how amazing the economy was when he got into office.', 'created': '2024-11-10 05:29:03', 'submission_id': '1gnrkxv'}
{'comment': 'But he won’t. He will just say some nice platitudes and something about Democracy blah blah blah and fade into the wind.', 'created': '2024-11-10 18:17:30', 'submission_id': '1gnrkxv'}
{'comment': "And if he causes video game console prices to go up, it's the Trump Gamer Tax (and the same can be done for other items)", 'created': '2024-11-10 09:06:48', 'submission_id': '1gnrkxv'}
{'comment': 'Trumpiffs', 'created': '2024-11-10 13:49:47', 'submission_id': '1gnrkxv'}
{'comment': 'Trarrifs\xa0', 'created': '2024-11-11 04:24:44', 'submission_id': '1gnrkxv'}
{'comment': 'Also milk, eggs and meat.', 'created': '2024-11-10 07:24:06', 'submission_id': '1gnrkxv'}
{'comment': "Yeah, I'm gonna get my spreadsheet ready for gas, eggs, bread, milk, and meat.", 'created': '2024-11-10 23:24:06', 'submission_id': '1gnrkxv'}
{'comment': 'Yeah Trumpenomics', 'created': '2024-11-10 13:46:26', 'submission_id': '1gnrkxv'}
{'comment': 'Trump is poisoning the blood of our nation', 'created': '2024-11-10 13:46:01', 'submission_id': '1gnrkxv'}
{'comment': 'That and "the Biden regime", which Fox News hosts like Hannity used to insinuate that Biden is a dictator.\n\n\nEDIT: Doesn\'t that feel nice to say? Biden IS.\nBiden IS the president currently.', 'created': '2024-11-10 22:23:58', 'submission_id': '1gnrkxv'}
{'comment': 'Define “extreme woke culture?” Human rights? It’s human rights isn’t it?', 'created': '2024-11-10 07:52:26', 'submission_id': '1gnrkxv'}
{'comment': 'From the interviews I saw with swing voters, they said they felt the Democratic party cared more about Trans Rights than the price of eggs and while they dislike Trump, at least he said something. Exactly what Bernie said after Hillary and after Kamala', 'created': '2024-11-10 17:49:55', 'submission_id': '1gnrkxv'}
{'comment': "Exactly. The reality is that the first year of any new presidency is actually the end of the previous one. The budget and policies in place belong to the previous one. Trump's economy started slowing before Covid even hit. He wrecked Obamas successful economy. Biden first year, inflation grew, but it was Trumps policies and budget.\n\nSo this first year, I'm sure we'll see an increase and some improvement. Then, as Trump's policies and budget kick in, it'll tank. If he gets his tariffs, it's going to crash the economy. Remember, he had to get a $28b bailout for the farmers' last time because of his China trade war and tariffs.\n\nSo, in two years, if he gets his massive tax cuts for the rich and corporations, tariffs, and mass deportation plan, it'll be a mess. Inflation, labor shortages in construction, farming, meatpacking, etc, where migrants work, everything will be more expensive, and the wealth gap and national debt will blow up again like last time. The only good thing is it'll give Democrats something to run on and hopefully take the Congress... IF they capitalize on it", 'created': '2024-11-10 05:46:11', 'submission_id': '1gnrkxv'}
{'comment': 'The Trump Trucknut Tax', 'created': '2024-11-10 13:45:35', 'submission_id': '1gnrkxv'}
{'comment': "defund the police. trans women in women's sports. manufacturing racism (ie. caitlin clark drama) and sexism where it's not there. unwillingness to take criticism by labelling critics some -ist (racist, misogynist). trying to force social change.", 'created': '2024-11-10 08:27:40', 'submission_id': '1gnrkxv'}
{'comment': 'Yep. Part of the Democratic Party\'s problem is that they hyperfocus on distinct identity groups as if their concerns are all separate and different, hoping to pick up enough voters from each with consultant and focus group tailored policies and messages, while alienating as few as possible, to build a "coalition" that can barely eke out a win. This left them vulnerable to the Trump smear campaign regarding trans people, and the Musk smear campaign targeting both Jewish voters and Arabs (with, obviously, different messages).', 'created': '2024-11-10 20:04:39', 'submission_id': '1gnrkxv'}
{'comment': 'That’s more of a bag of complaints than a definition. And those are all things hounded on by right wing media, not by centrist democrats', 'created': '2024-11-10 08:31:14', 'submission_id': '1gnrkxv'}
{'comment': "those are things that happened so they're not just complaints. and center lefts don't do enough to denounce that behavior. to me, it started in 2020 and grew quickly because of the pandemic. i believe it is one of the main reasons why people turned to maga. they're tired of the bs, and there seems to be no end in sight with it.", 'created': '2024-11-10 08:39:48', 'submission_id': '1gnrkxv'}
{'comment': "Whatever you call them they caused enough people to switch their votes. People, right or wrong, think the Democratic Party cares more about Trans rights than the price of eggs. The Democratic Party's answer is to call them stupid, garbage, and deplorable.", 'created': '2024-11-10 16:30:31', 'submission_id': '1gnrkxv'}
{'comment': 'I DO care more about human rights than the price of eggs, I think as you’ve demonstrated the issue is letting the messaging be defined by the right. They have called us vermin, the enemy within, unamerican and many other things. Fuck em I stand for human rights.', 'created': '2024-11-10 16:49:45', 'submission_id': '1gnrkxv'}
{'comment': '"I DO care more about human rights than the price of eggs" and thus why your opinion will never matter and what you think is important will never happen. After Trump\'s term his Supreme court will rule America for the nex30-50 years. Trans right was a bad hill to die on.', 'created': '2024-11-10 17:40:50', 'submission_id': '1gnrkxv'}
{'comment': 'Again, that is the right wing propagandists propping up an issue that is so small. \nAnd thanks yeah always blame the people victimized by the system, not the people who utilize the system to victimize.', 'created': '2024-11-10 18:17:20', 'submission_id': '1gnrkxv'}
{'comment': 'They understand it and are good at it and Democrats will be sitting on the sidelines until they figure it out. Waiting for people to get smart is waiting forever.', 'created': '2024-11-10 18:31:46', 'submission_id': '1gnrkxv'}
{'comment': "People *are* suffering...\n\nPeople *want* help...\n\nBut they voted for the guy *WHO WILL NOT HELP THEM,* apparently on the premise that he'll be content only to hurt someone else....\n\nThey voted for the guy who will *increase* the suffering, as he did during the pandemic.\n\nThey voted for a 'businessman' whose every business *failed* and whose *every* former employee is either indicted, in prison, or in defiant opposition to him! The businessman who is *legally enjoined* from doing business in New York City...", 'created': '2024-11-10 06:28:54', 'submission_id': '1gnrjja'}
{'comment': 'Every word he said is true. This country is no shining city on a hill. It’s a diseased hellscape, and the disease is racism, hate, ignorance, rampant capitalism, and the innate human quality some people have to kick a person they think is lower than them—because with them cruelty is always the point. Always.', 'created': '2024-11-10 05:59:27', 'submission_id': '1gnrjja'}
{'comment': 'I detect no lies.', 'created': '2024-11-10 06:12:55', 'submission_id': '1gnrjja'}
{'comment': 'He underestimates American stupidity, ignorance and selfishness.', 'created': '2024-11-10 05:26:53', 'submission_id': '1gnrjja'}
{'comment': 'They’re both right. Many people voted because of prejudice, and many people voted because of selfish ignorance. Both can be true.', 'created': '2024-11-10 05:27:55', 'submission_id': '1gnrjja'}
{'comment': 'This election is a Venn diagram of when, misogyn, racism, apathy, and stupidity meet. 😔', 'created': '2024-11-10 07:12:35', 'submission_id': '1gnrjja'}
{'comment': 'I really like that guy. Also, He is completely right.', 'created': '2024-11-10 08:05:47', 'submission_id': '1gnrjja'}
{'comment': 'We live in the most selfish society that has ever existed. A country of people who do as they please with zero consideration for anyone else.', 'created': '2024-11-10 06:21:41', 'submission_id': '1gnrjja'}
{'comment': 'Based on polling, the 3 biggest issues flipping people to Trump were inflation, immigration, and the trans/cultural stuff. Voters remember prices during Trump’s first 3 years and they largely give him a pass for covid (they shouldn’t imo but 🤷\u200d♂️).\n\nhttps://blueprint2024.com/polling/why-trump-reasons-11-8/\n\nAnd im sure racism and misogyny played a role as well.\n\nAlso Eddie Glaude wrote an article on why he wasn’t voting for Clinton in 2016. This dude should not be allowed to lecture anyone on morality.', 'created': '2024-11-10 14:14:41', 'submission_id': '1gnrjja'}
{'comment': 'I think it’s more so that Kamala was a woman and less a race issue this time. I think the country proved this election that it very much just will not vote for a woman to be president, period! That’s not to say that race wasn’t an important factor but misogyny WAS the most important factor here. To me, that better explains why Trump won the swing states while Dems won down ballot. This country just wants a strong man at the top. It very much sucks, but Dems just need to accept this reality. What’s more, white women will not vote for another woman. They didn’t in 2016 and they didn’t this time.', 'created': '2024-11-10 06:50:30', 'submission_id': '1gnrjja'}
{'comment': 'A lot of Trumpers literally voted just for him. That’s it. They left the rest of their ballots blank.\n\nRacism and misogyny and a hostile media landscape absolutely factor in, but we also have to acknowledge that Trump has a weird energy that gets people vote for him and ONLY him. These are people who never voted before he ran for office, don’t ever vote in the midterms, and won’t vote in the future when he can’t run again.', 'created': '2024-11-10 08:08:53', 'submission_id': '1gnrjja'}
{'comment': 'Eddie is deep into politics. Most voters are not. They vote on gas prices, wages and cost issues. And the Democrats did not empathize with them enough.', 'created': '2024-11-10 16:14:14', 'submission_id': '1gnrjja'}
{'comment': 'It turns out that lots of folks who are barely scraping by don’t care when we say he’s a threat to democracy and that the economy is great. Even though these things are true, it makes Democrats seem out of touch with the reality that people are facing when it comes to feeding their families etc. Economic populism can no longer be a sideshow in our message. We can’t rely on “Trump bad” and “they are fascist” to win elections', 'created': '2024-11-10 07:03:45', 'submission_id': '1gnrjja'}
{'comment': 'My parents voted for Trump because they think he will make energy prices cheaper,groceries cheaper, end the wokeness and deport everyone they are told is a threat.\n\nThe wokeness is the most ridiculous for them because they think they will get thrown in jail by the left for saying the wrong pronouns and for being Christian. They get all their info from Fox News and the like.', 'created': '2024-11-10 14:08:18', 'submission_id': '1gnrjja'}
{'comment': "The more I hear of people missing ballots, not showing up how they voted, Trump telling everyone he doesn't need votes, they have it fixed...the more I am convinced they did something.\n\nI mean, for God's sake, he spent one rally dancing for 45 minute after shitting his pants, and refused to answer any questions.\n\nThe last rally was a KKK rally in message.\n\nI know we sound like they did in 2016, and that is probably by design, but I am more convinced as time goes on that Elon Musk and Russia did something with our ballots.", 'created': '2024-11-10 14:56:22', 'submission_id': '1gnrjja'}
{'comment': 'I said it in 2016 and I’ll say it again now: America’s misogyny runs too deep to vote for a woman. We have now twice voted for the unqualified man over the ridiculously overqualified woman. We have a long way to go before we see that change and it’s pretty fucking sad.', 'created': '2024-11-10 14:13:28', 'submission_id': '1gnrjja'}
{'comment': 'OP, you bring up some interesting points in your post. \n\nWhat do you attribute it to, all these states voting in Trump and then blue down the ballot?', 'created': '2024-11-10 06:59:21', 'submission_id': '1gnrjja'}
{'comment': "He's right, misogyny, racism, and xenophobia definitely played a role.", 'created': '2024-11-10 13:31:28', 'submission_id': '1gnrjja'}
{'comment': 'To be fair, Biden was also polling massively below these down ticket races. It was an incumbent issue, and people blamed the presidency, Kamala included.', 'created': '2024-11-10 15:53:10', 'submission_id': '1gnrjja'}
{'comment': 'What\'s depressing is that Trumpers will see this clip and rather than soul-searching and doing some self-reflection about who they voted for, they\'ll just say "LOL look at the liberals having meltdowns! We owned the libs again!"', 'created': '2024-11-10 16:24:50', 'submission_id': '1gnrjja'}
{'comment': 'America isn’t the first bunch of rubes to fall for a charismatic leader. PT Barnum was right that there’s a sucker born every minute.', 'created': '2024-11-10 16:38:39', 'submission_id': '1gnrjja'}
{'comment': "Kamala was inevitably tied to the Biden administration - our successful Democratic administration - and the majority voters were pissed off as usual. The party in power got an ass-whipping as usual. \n\nQuite simply, this was a referendum on Biden - and he couldn't coherently defend himself or his policies, which is why the Democrats insisted on a candidate do-over - which also didn't go over well with a lot of these mad people.\n\nNixon/Ford (R) got us Carter (D). Carter (D) got us Reagan (R). Reagan/Bush (R) got us Clinton (D). Clinton (D) got us Bush 2.0 (R). Bush 2.0 (R) got us Obama (D). Obama (D) got us Trump (R). Trump (R) got us Biden (D). Biden (D) got us Trump again (R). There's a fairly obvious pattern here. \n\nGuess which party is up in 2028? And do you expect a lot of us are going to be very pissed off?", 'created': '2024-11-10 17:23:11', 'submission_id': '1gnrjja'}
{'comment': "My take on what he is saying is that people want to use the state of the country as an excuse for where they are in life. \n\n If the country is prosperous, being a loser is their fault. If the country is in shambles it's just the way it is.", 'created': '2024-11-10 18:06:29', 'submission_id': '1gnrjja'}
{'comment': 'Dude is spot on', 'created': '2024-11-11 01:29:16', 'submission_id': '1gnrjja'}
{'comment': 'He is right but she isn’t wrong.', 'created': '2024-11-11 02:36:26', 'submission_id': '1gnrjja'}
{'comment': 'Eddie Glaude was also the same person who told people to vote for Green Party over Clinton in 2016. Which is the whole reason we’re here now….', 'created': '2024-11-11 14:11:36', 'submission_id': '1gnrjja'}
{'comment': 'americans often vote split tickets', 'created': '2024-11-10 05:56:09', 'submission_id': '1gnrjja'}
{'comment': 'People just REALLY don’t like Biden. When Harris couldn’t think of anything she would do differently than Biden, it was the death of her campaign.', 'created': '2024-11-10 06:14:35', 'submission_id': '1gnrjja'}
{'comment': 'I also think democratic voters wanted a primary to choose their candidate. Telling voters this is your candidate didn’t go over well. I know it was timing with Biden dropping out, it’s strictly my opinion.', 'created': '2024-11-10 10:57:01', 'submission_id': '1gnrjja'}
{'comment': 'THIS. \n\nSo tired of this fucking argument being had, and no one flat out says that the orange dipshit can\'t lower their gas prices. The orange dipshit can\'t lower their grocery prices. \n\nYeah, gas was cheap when Donald Trump was the president. Because he let a raging pandemic get out of control, and we had to shut the country down for a fucking year. No one drove. That\'s why gas was cheap. \n\nDuring the same exact time, plywood was 90 bucks a sheet, and you had to win a fucking cage match to buy toilet paper. It\'s just like this guy says, it\'s selectively picked bullshit to justify more than half of the voters in this country being absolute pieces of shit. \n\nIf I hear one word goddamn Democrat politician tell me "This isn\'t the real America"... "I believe that most Americans are good people"... I\'m going to lose my fucking mind.', 'created': '2024-11-10 11:49:31', 'submission_id': '1gnrjja'}
{'comment': "You all allow for a the largest TV network to spread propaganda and lies 24x7 every single day. So I'm not really sure why you insist on malice instead of ignorance on the part of everyone voting for Trump.", 'created': '2024-11-10 12:52:51', 'submission_id': '1gnrjja'}
{'comment': 'And apparently half the country is totally cool with that.', 'created': '2024-11-10 06:07:23', 'submission_id': '1gnrjja'}
{'comment': 'AND misogyny', 'created': '2024-11-10 06:51:17', 'submission_id': '1gnrjja'}
{'comment': 'And racism.', 'created': '2024-11-10 13:38:20', 'submission_id': '1gnrjja'}
{'comment': "I talked to people who don't understand the role a president. They figure the job should be to protect from invasion, cyber or real. They should make it possible to live a decent life and retire.\n\nAll this stuff about laws, policy, etc was understood barely at all.\n\nIt was like WWE, but about life", 'created': '2024-11-10 06:46:45', 'submission_id': '1gnrjja'}
{'comment': 'Here in MI every commercial for the last couple weeks was a political one. 80% were from billionaire PACs. one that was in almost every commercial break was literally screaming that dems were responsible for afganistan, crime was skyrocketing, millions of illegals were killing people, inflation was skyrocketing, and country was shit. literally easily proved BS. people are stupid.\n\nLines up perfectly with the lies in PAC ads.', 'created': '2024-11-10 16:33:52', 'submission_id': '1gnrjja'}
{'comment': 'Women outnumber men in college and I think their employment numbers are better too. Yet there is still pay disparity across industries. (Although I hear it’s getting better.) There are increasing numbers of women in the C-suite and similar levels of executive leadership, but I think it’s still not a commonly visible thing for most Americans. \n\nI think for Americans to get comfortable with a woman as President, we’re going to need to repeatedly see female versions of: Bill Gates, General Patton, Henry Ford, MLK, Bill Belichick, Lee Iacocca, Neil Armstrong, Malcolm X, Billy Graham, Walt Disney, Steve Jobs, etc. \n\nBefore I get flamed: I’m not saying there have not been influential women or women in top positions of leadership. I’m saying that America, as an electorate, fairly or unfairly, bases its comfort with their choice for the most powerful person on the planet, on if the candidate is the same gender as the people on that list. That’s fucked up. I agree. But there it is. Harris is obviously a better leader than Trump. Objectively so. But the fact that her gender is not on that list is something most Americans can’t get past.', 'created': '2024-11-10 15:01:00', 'submission_id': '1gnrjja'}
{'comment': 'Let this be a lesson for Democratic Party and this will be a rule for every Democratic candidate who want to be on the presidential race. The more you put a woman to a presidential race, the more the country goes to sink by the Republican Party.', 'created': '2024-11-10 09:34:39', 'submission_id': '1gnrjja'}
{'comment': '“This country just wants a strong man at the top” might be the most succinct analysis of the election I’ve heard.', 'created': '2024-11-10 16:52:38', 'submission_id': '1gnrjja'}
{'comment': 'Yes, this. The\xa0numbers don’t seem to bear out split ticket voting.\xa0\n\nThey’re screwed without Trump and we’ve seen that play out repeatedly already in midterms. They don’t even have a bench of popular people to run in 2028 because he’s told his voters to hate every other prominent Republican at one point or another.\n\nMeanwhile I think Democrats have fixed that problem and we are turning out for midterms and voting all the way down the ballot now.', 'created': '2024-11-10 10:25:45', 'submission_id': '1gnrjja'}
{'comment': 'You really think they fixed the voting machines in 90% of the country?\n\nIf there’s one thing “they” did that is being underreported, it is that Twitter became a right wing message factory. Social media has tremendous power to disseminate disinformation and we’re probably underestimating the number of voters that were conditioned to thinking that right wing politics is exactly what we need.', 'created': '2024-11-10 16:55:44', 'submission_id': '1gnrjja'}
{'comment': "For the record, I went 73 and 1, on the toilet paper cage matches, and that sole loss was to an old lady who came equipped with discarded Taco Bell wrappers as homemade PPE .. So I thought discretion to be the better part of valor, in that instance...\n\nAll seriousness aside, the collective trauma of the pandemic has yet to be acknowledged. I didn't think, beforehand, that simply walking down the street and seeing somebody deliberately cross the street to avoid me would hurt so much, when it first happened.... but it didn't hurt nearly as much as the tenth time, or the thirtieth. There has also, almost literally, been an explosion of homelessness, the vast bulk of which is directly attributable to the pandemic, but which is treated, more or less, like a ho-hum problem particular to certain cities and and those susceptible to substance abuse. As an alcoholic, that this retrograde prejudice, so easily and so quickly regains prominence infuriates me.\n\nThe trauma has yet to be acknowledged, and Trumps manifest incompetence is central to that trauma.", 'created': '2024-11-10 17:26:30', 'submission_id': '1gnrjja'}
{'comment': 'Not half. Just 71 million pieces of shit. 20 million just sat at home and watched another piece of a shit take over our lives.', 'created': '2024-11-11 01:31:20', 'submission_id': '1gnrjja'}
{'comment': 'It’s both malice *and* ignorance - yes fueled by 24/7 propaganda but exploiting the worst within them. \n\nI say them because let’s not forget millions of people didn’t succumb to malice even if they too are ignorant.', 'created': '2024-11-10 14:03:44', 'submission_id': '1gnrjja'}
{'comment': "It's shoved down everyone's throat 24/7. And if that's all you hear, that's what you believe.", 'created': '2024-11-10 23:48:53', 'submission_id': '1gnrjja'}
{'comment': 'It always has been. The Confederacy never died, it went into hiding and waited for its moment, and Trump gave it the green light.', 'created': '2024-11-10 08:01:34', 'submission_id': '1gnrjja'}
{'comment': "~60% of Trump voters don't believe he will try and do the things he said he will do.\n\nThey're not all necessarily sexist or racist (though all good racists and sexists are Trump voters), but the ones that aren't are pig ignorant. You'd be amazed how disengaged and how little some of them know about policy/agendas etc. It certainly blew my mind.", 'created': '2024-11-10 07:40:58', 'submission_id': '1gnrjja'}
{'comment': 'To be fair, thoroughly understanding how our government really functions is hard. The “I’m just a Bill” Schoolhouse Rock video was for kids, and I would say that most adults don’t even have THAT level of understanding. I consider myself to be above-average knowledgeable about these things, and I’ll be watching an episode of “The G Word with Adam Conover” and I’ll constantly be saying “Holy shit! I didn’t know that.” It’s a lot.', 'created': '2024-11-10 14:34:11', 'submission_id': '1gnrjja'}
{'comment': 'That is cold comfort when we know what is going to be stripped away before then. Many aren’t going to be able to hold on. People are going to die and since they have control of the media, many aren’t going to know about it unless they experience it personally. Even then they will be in the dark about the full scale of it. Once those social programs are raided, watch how many elderly and disabled end up on the streets when their benefits are gone.\xa0', 'created': '2024-11-10 13:27:28', 'submission_id': '1gnrjja'}
{'comment': 'I think there is enough smoke there that someone should be looking at it, yes.', 'created': '2024-11-10 17:46:13', 'submission_id': '1gnrjja'}
{'comment': "Have you ever met a Trump supporter who didn't believe at least one piece of propaganda? \n\nAnti abortion, anti trans, anti immigrant, anti democrat propaganda?", 'created': '2024-11-10 14:22:52', 'submission_id': '1gnrjja'}
{'comment': 'I understand that but that ignorance leads to the misogyny. It may not be blatant but their ignorance leads them to trust a man (any man, even a rapist) over a woman. That’s just the reality right now.', 'created': '2024-11-10 08:18:13', 'submission_id': '1gnrjja'}
{'comment': 'I have never set foot in the US in my life and I still consider myself to be above average knowledgeable about US govt than the average american -\\_-;', 'created': '2024-11-10 15:35:21', 'submission_id': '1gnrjja'}
{'comment': "You're of course right. However if you know you don't know football, why hire a speaking coach to run the team?\n\nI was forced to study the history and operations of our legal system (not really politics directly) . Quite eye opening. I'm afraid Trump will give us another running civics lesson.\n\n Sigh.", 'created': '2024-11-10 16:58:33', 'submission_id': '1gnrjja'}
{'comment': 'I’m always amazed at the human mind’s ability to subconsciously distort logic in profound ways just to comfort the conscious mind by allowing it to not accept an undesirable reality.\n\nMaybe this is also why the far right is so happy to accept conspiracy theories.', 'created': '2024-11-10 18:03:33', 'submission_id': '1gnrjja'}
{'comment': 'Oh I agree—propaganda is a huge problem and one of the ways it works is because it exploits the malice that already exists. Everyone is susceptible.', 'created': '2024-11-10 14:50:37', 'submission_id': '1gnrjja'}
{'comment': "I get where you're coming from, and that's how logical people see it. How can you not?\n\nBut the cult of Trump allows you to select whatever reality you chose. Hence why he got over 40% of the female vote and made huge gains in the Latino vote.\n\nThey ignore the bits they don't like and cherry pick the bits they do.\n\nThey seriously think just because they're voting for a racist misogynist, that same label doesn't apply to them...", 'created': '2024-11-10 09:08:20', 'submission_id': '1gnrjja'}
{'comment': 'Well you’re not playing fair - that’s a low bar. 😉', 'created': '2024-11-10 15:49:52', 'submission_id': '1gnrjja'}
{'comment': 'As a human, I use past experience to predict future behavior. We do this in several places in our lives and it is how we have evolved as a species over hundreds of thousands of years.\n\nWhen someone behaves one way, does things a certain way, and responds a certain way, you can learn to predict how they will react in a situation. \n\nWhen that person starts behaving differently, starts telling you they did something, then that something happens, you should probably, at the very least, believe them.\n\nI am not 100% saying for sure that they were able to do something, but I am 100% saying, for sure, that someone should look into it.\n\nIf people are complaining their votes are missing, traditionally Democratic cities and counties all turned dark red, but only for the Presidential race, and Russia was causing interference at polling sites, you would be a fool to think nothing should be done and people are somehow weak or misguided for thinking something weird has happened.', 'created': '2024-11-10 18:28:43', 'submission_id': '1gnrjja'}
{'comment': "Ok but, we say this like a large population of women didn't vote for trump.", 'created': '2024-11-10 12:16:01', 'submission_id': '1gnqqy8'}
{'comment': 'Man here, I’m with you ladies 110% of the way.🫵', 'created': '2024-11-11 00:43:48', 'submission_id': '1gnqqy8'}
{'comment': 'This gender power messaging keeps failing but they can pushing it. It’s like they want to keep losing elections.', 'created': '2024-11-10 17:08:11', 'submission_id': '1gnqqy8'}
{'comment': "Not sure if she's right or wrong, but \\*every\\* incumbent party in \\*every\\* western developed nation lost this year in elections, whether the incumbents were left or right.\n\nVoters do \\*not\\* like inflation or the end result, even if we've slowed it back down, groceries being more causes \\*all\\* nations voters to vote out the incumbent.", 'created': '2024-11-10 03:40:19', 'submission_id': '1gnpzfj'}
{'comment': "It's interesting how fast the knives came out when the vote counts looked like a blowout,but now that nationally it's gonna breakdown to maybe 2.5 mil vote difference and some of the battleground states being like 30-50k vote differences the best hope is that this circular firing squad leads to the old democrat establishment getting out of the way now.\n\nso we can start the 2026/2028 plans now instead of 4 months before the elections when internals show its already over", 'created': '2024-11-10 03:28:07', 'submission_id': '1gnpzfj'}
{'comment': 'I’m ready for a change in party leadership and a change in the narrative for the constituency.\n\nI have no interest in being blue MAGA', 'created': '2024-11-10 04:06:18', 'submission_id': '1gnpzfj'}
{'comment': 'the interviewer is exactly what is wrong with the media. why do the Democrats always have to answer for everything? Where were these hard questions for the GOP after 2018 when they lost the House and governors’ mansions flipped blue, or 2020 when they lost the White House and all the rest of their nonsense, or 2022 when they were supposed to flip everything and totally failed and were unable to govern? Never once have they been asked whether MAGA has any legs beyond the Cheeto, let alone whether it’s ethical to be running on pure fascism. F them from every possible direction. Nancy is right as always, we just start organizing again. And I’m glad both Harris & Biden gave pathetic puzzle-purveyor NYT and their pompous fascist-enabling reporters the finger.', 'created': '2024-11-10 03:21:57', 'submission_id': '1gnpzfj'}
{'comment': 'We will rise again. If we even have an again after trumps second term', 'created': '2024-11-10 03:03:17', 'submission_id': '1gnpzfj'}
{'comment': 'Look up NO KINGS ACT', 'created': '2024-11-10 04:40:10', 'submission_id': '1gnpzfj'}
{'comment': ">We don’t agonize over what happened. We organize about what comes next.\n\nThis article is worth your time, offering a hopeful message for the future and providing some information that isn't widely talked about (e.g., Kamala Harris ran ahead of Bernie in Vermont).", 'created': '2024-11-10 03:09:39', 'submission_id': '1gnpzfj'}
{'comment': "When I first listened to this interview on Spotify I felt a bit underwhelmed with Pelosi trying to stay positive and avoiding the negative questions, but now that I've seen more data than suggests it was a more a win for Trump overall than a win for Republicans (and since the House is still in play), I can agree a bit more with her optimism. Maybe she'll have more brutal honesty later, but I guess right now she wants to keep people from losing hope.", 'created': '2024-11-10 04:45:45', 'submission_id': '1gnpzfj'}
{'comment': "We just need more kumbaya and hugs, then the violent murderous domestic terrorists will like us... obviously. I am 53 and we had zero energy until the last month. America has far-right terrorists or moderate republicans. We can't upset the rich and corporations. Calling the democrat party liberal is a joke.\n\nStart acting like you care or more of us are fucking out.", 'created': '2024-11-10 05:18:23', 'submission_id': '1gnpzfj'}
{'comment': 'Hmmmm, I think I totally disagree with her.', 'created': '2024-11-10 13:27:25', 'submission_id': '1gnpzfj'}
{'comment': 'It was a rebuke of courage, truth, and wisdom. Democrats tried to offer justice and they chose revenge.', 'created': '2024-11-10 23:02:23', 'submission_id': '1gnpzfj'}
{'comment': 'Nancy isn’t my favorite old, white wealthy obnoxious lady. I prefer Martha', 'created': '2024-11-10 03:26:15', 'submission_id': '1gnpzfj'}
{'comment': "Pelosi is a very good politician, great at negotiation and the day to politicking required to do the job. \n\nShe's absolutely out of touch when it comes to anything around the electoral side of things.", 'created': '2024-11-10 10:51:54', 'submission_id': '1gnpzfj'}
{'comment': 'We are fucked. The whole political system got pushed too far right with Reagan.', 'created': '2024-11-10 16:26:37', 'submission_id': '1gnpzfj'}
{'comment': "One would think the DNC would have asked Pelosi to retire years ago and take a mentorship position or something given how unpopular she is, but maybe that's just me wishful thinking.", 'created': '2024-11-10 05:15:11', 'submission_id': '1gnpzfj'}
{'comment': 'For one who mocked others for “not knowing how to count”, how is that smug prediction of a House flip working out, Nancy?\n\nThis woman has done some great things, but good lord is she insufferable.\xa0', 'created': '2024-11-10 03:21:46', 'submission_id': '1gnpzfj'}
{'comment': "The election wasn't a rebuke of their policies. Bernie is fucking idiot for opening his mouth and spouting nonsense. The only person the party abandoned is Joe Biden. I'm a dad to girls and it pisses me off that the country and apparently democrats aren't ready to elect a woman but that's the America we live in. Unfortunately we have to recognize and work within that reality. Most of the party platform is insanely popular as long as people don't associate it with Democrats. We've known this for years yet still have a huge fucking problem with branding and messaging. Anyone who cast a protest vote or didn't vote at all because you didn't get everything you wanted can fuck right off. You have to win elections to get the change you want or to protect the progress that's already been made. The sooner we learn that the better", 'created': '2024-11-10 14:53:24', 'submission_id': '1gnpzfj'}
{'comment': 'You know, this reminds me of that scene from "Aliens" -- 🤨\n\nhttps://i.redd.it/edw3srcw010e1.gif', 'created': '2024-11-10 08:28:25', 'submission_id': '1gnpzfj'}
{'comment': 'If Trump **didn’t** steal the election it would be the first time in his life he acted honestly. Why do people keep sane washing this entire election? Musk bought votes, the Russians interfered. It happened in plain sight.', 'created': '2024-11-10 13:51:23', 'submission_id': '1gnpzfj'}
{'comment': 'Can this RINO please, please, please shuffle off the stage?', 'created': '2024-11-11 17:32:17', 'submission_id': '1gnpzfj'}
{'comment': 'Nancy is the cunt who made Biden, the only person to beat trump, stand aside. Fuck nancy', 'created': '2024-11-10 03:40:56', 'submission_id': '1gnpzfj'}
{'comment': "To add to this list.. Canada's leader got ahead of that and called an early election during the pandemic and won. However an election will have to happen soon and it's looking like they will lose badly. The opposition here is Trump lite.", 'created': '2024-11-10 05:56:34', 'submission_id': '1gnpzfj'}
{'comment': '“People vote with their pocketbook” is an old saying for a reason.\xa0', 'created': '2024-11-10 06:06:33', 'submission_id': '1gnpzfj'}
{'comment': 'Because of under-informed voters who only get their info from Facebook posts and Xcretions that tell them that the president sets the prices of goods. \n\nI keep trying to tell people they aren’t seeing the forest for the trees. Billionaires who own the goods set the prices. And they set them higher when a democrat is in office, so they can fool the dummies into voting in a republican prez so they can pay less taxes.', 'created': '2024-11-10 16:11:20', 'submission_id': '1gnpzfj'}
{'comment': 'We suffered a global pandemic. I can only imagine how it will be when Florida is fully underwater. Will they start eating the cats and the dogs?!', 'created': '2024-11-10 08:38:48', 'submission_id': '1gnpzfj'}
{'comment': 'But what if we change nothing about what makes us unpopular, drop a few things our supporters like and try to convert a few Republicans?', 'created': '2024-11-10 04:32:23', 'submission_id': '1gnpzfj'}
{'comment': 'It’s interesting that the battlegrounds ended up being as close as they did while we got wiped nationally. Means the campaign actually did nearly pull a miracle despite its best efforts lol. \n\nI know Dems are going to flagellate themselves about this, and there are definitely lessons to be learned (WaPo running a story about DNC rediscovering all the sudden that making it about Trump doesn’t work. How many times does this need to be screamed to party leadership? I was so annoyed when they made it the focus of the last two weeks.) I don’t view it as a death knell for the party so much as the close aversion of a bloodbath. And maybe next time we don’t run a campaign based on focus group tested lines.', 'created': '2024-11-10 05:22:05', 'submission_id': '1gnpzfj'}
{'comment': 'The DNC not only fucked this election and 2016, they also are responsible for ensuring no lasting, tangible positive change or progress is prosperity made because at root they insist on protecting the established neoliberal orthodoxy', 'created': '2024-11-10 11:05:35', 'submission_id': '1gnpzfj'}
{'comment': 'There is a bigger problem liberals fail to acknowledge. \n\nThese elections should never be this close. We’re constantly eeking out wins or losses by the slimmest of margins. Obama was the main exception to that. What if I told you it doesn’t have to be that way? \n\nDemocrats have been running the same hyper-establishment candidates for the last 30 years with exception to Obama.\n\nIf people don’t concede that these close votes are avoidable, we may as well throw in the towel now.', 'created': '2024-11-11 10:30:41', 'submission_id': '1gnpzfj'}
{'comment': 'Join your local party. Go to meetings, and join committees.\xa0', 'created': '2024-11-10 13:22:05', 'submission_id': '1gnpzfj'}
{'comment': 'The GOP didn’t analyze their losses because it’s a party of sycophants. From 2016 on they simply doubled down on Trump every time. This time around they think Trump won because he’s Gods chosen one and the country is full of MAGA supporters.\n\nAll of the analyzing the Democrats are doing that I’ve seen so far seems to be incredibly prescient, IMO. \n\nOne thing that gives me hope is that the Democrats seem to have a very strong grip on why they lost and will make adjustments. A lot of the questions and anomalous voter sentiments during the Trump era are finally coming into focus. \n\nMeanwhile the party of sycophantic fascists are going be left rudderless after Trump terms out (presuming he doesn’t end democracy) and leaves the economy in shambles.', 'created': '2024-11-10 03:44:45', 'submission_id': '1gnpzfj'}
{'comment': '', 'created': '2024-11-10 03:39:23', 'submission_id': '1gnpzfj'}
{'comment': 'I think you meant to post in the gop subreddit, we don’t call women c***s here', 'created': '2024-11-10 05:12:17', 'submission_id': '1gnpzfj'}
{'comment': 'https://i.redd.it/1ebx9fc2b00e1.gif', 'created': '2024-11-10 06:03:38', 'submission_id': '1gnpzfj'}
{'comment': 'But dem policies ARE popular. We get 57% in Florida for abortion and legalizing weed. It’s just somehow democrats aren’t popular.', 'created': '2024-11-10 07:59:27', 'submission_id': '1gnpzfj'}
{'comment': 'Ooo I know! Next cycle let’s campaign with Romney….Lucy will let us kick that football for sure this time!', 'created': '2024-11-10 04:42:26', 'submission_id': '1gnpzfj'}
{'comment': "Let's just save money and run our best candidate in the republican primary in 28. Not like we could be anymore rightwing than this last cycle anyways", 'created': '2024-11-10 05:36:13', 'submission_id': '1gnpzfj'}
{'comment': "A trillion time this. Dems do not participate enough - at any level. Every level of government matters. What gets taight in the classroom and what books are allowed matters. State elections matter. Filling out your whole ballot in Federal elections matters. Have you noticed that Republicans seem to ALWAYS control the Senate? Even when Dems get a majority in Congress they can't do much because Republicans control the Senate and have locked up thr Speaker role.", 'created': '2024-11-10 18:14:55', 'submission_id': '1gnpzfj'}
{'comment': 'as long as we are also analyzing why we have won so often and not just pointing fingers. and we don’t need the media narrative, it’s always BS.', 'created': '2024-11-10 03:49:29', 'submission_id': '1gnpzfj'}
{'comment': "and the 'rule' is 60%. WTF ?", 'created': '2024-11-10 14:40:53', 'submission_id': '1gnpzfj'}
{'comment': 'Terrible messaging. Spoke about Project 2025 more than their own BIG Dem wins. I know more about what the Republicans are going to implement at this point.', 'created': '2024-11-10 15:47:49', 'submission_id': '1gnpzfj'}
{'comment': 'Rest assured, that is exactly what is happening from everything I’m reading.', 'created': '2024-11-10 03:51:25', 'submission_id': '1gnpzfj'}
{'comment': 'It’s frustrating but I also get it. Initiatives don’t go through the legislative process which means they can have more unintended consequences than normal legislation. We have had some doozies in Washington State and the Rs have figured out it is probably cheaper to buy an initiative than buy a legislative seat.', 'created': '2024-11-10 17:23:06', 'submission_id': '1gnpzfj'}
{'comment': "Resistance is futile without good organization and communications.\n\nWe need to quit moaning and start transforming the Democratic Party into a permanent mobilizing organization which is in frequent contact with people locally – not just parachuting in for elections. And in that capacity, we need to do more listening than preaching. If that sounds like a more benign version of an old school urban political machine – BINGO!\n\nBecause Democrats are a big tent party we need to work harder at creating a consensus. This isn't done by just listening to the loudest voices.\n\nAs for communications – that's much more difficult. It would be nice to talk Michael Bloomberg, owner of a reality-based news company, into buying Fox News. 🙂\n\nMore realistically, in the short term we need to heavily support free media. There's an increasing divide between those who can afford outlets like the NYT and those who depend totally on dodgy social media platforms for news. Cheap and accurate news delivered in innovative ways should be a priority.\n\nAnd FFS, **quit using platforms owned by Mark Zuckerberg and Elon Musk**. I don't care what anybody's excuse is. Would you use a platform created and run by Joseph Goebbels?", 'created': '2024-11-10 01:40:11', 'submission_id': '1gnnpdk'}
{'comment': "Stop marching, start organizing. Don't waste time, we have 2 years.", 'created': '2024-11-10 01:52:54', 'submission_id': '1gnnpdk'}
{'comment': 'WTF are there comments on here assuming these pro-democracy women and allies didn’t vote? Are these trolls? Because having myself marched in 2017 after Trump was inaugurated, I can promise you activists vote. How many of the commenters pretending these activists didn’t vote volunteered for Kamala’s campaign? None, I’m guessing.', 'created': '2024-11-10 05:36:19', 'submission_id': '1gnnpdk'}
{'comment': 'They are afraid to be shot in the street after Jan 20th.', 'created': '2024-11-10 02:01:40', 'submission_id': '1gnnpdk'}
{'comment': 'Where was everyone on Election Day!?!', 'created': '2024-11-10 01:08:03', 'submission_id': '1gnnpdk'}
{'comment': 'They never said resisting fascism was easy!', 'created': '2024-11-10 08:49:52', 'submission_id': '1gnnpdk'}
{'comment': "Let's hope they march better than they vote", 'created': '2024-11-10 02:12:21', 'submission_id': '1gnnpdk'}
{'comment': 'They could have just voted. We would all have been better off.', 'created': '2024-11-10 03:47:07', 'submission_id': '1gnnpdk'}
{'comment': "10 million democratic voters didn't even bother to vote - in this extremely important election. This is why we're going down the drain This is why our timeline is warped and the globe is fucked and autocracy will take over, yes, because democrats preferred maturbation to voting.", 'created': '2024-11-10 01:53:33', 'submission_id': '1gnnpdk'}
{'comment': 'Wtf is marching in DC going to accomplished? Should have concentrated on voting.', 'created': '2024-11-10 05:31:19', 'submission_id': '1gnnpdk'}
{'comment': 'What are we protesting? Democracy?', 'created': '2024-11-10 01:46:42', 'submission_id': '1gnnpdk'}
{'comment': 'The Farrakhan loving Women’s March? They can kiss my tuchas', 'created': '2024-11-10 14:09:01', 'submission_id': '1gnnpdk'}
{'comment': "Resistance is futile if millions of possible voters don't bother to vote.", 'created': '2024-11-10 02:23:56', 'submission_id': '1gnnpdk'}
{'comment': 'I got rid of nearly all of my social media accounts. Didn’t have Twitter, as I ditched it just before mush took over. Got rid of fb, IG, and threads. the only thing I kept was Reddit, and I did join Bluesky, for the time being.', 'created': '2024-11-10 03:18:47', 'submission_id': '1gnnpdk'}
{'comment': "I don't know why I completely forgot about Bloomberg. Is he trustworthy? Seems to be a bit of a flip flopper. And ancient too...\n\nWe might not even need someone to buy Fox News though. [Maybe we can just wait for Murdoch to keel over and die so his son James can pull the plug or at least change the course of it a bit after winning a court battle with his brother Lachlan?](https://www.theguardian.com/media/2024/sep/15/murdoch-family-succession-hearing-nevada) Meh, one can only hope. Nice to see that not all of Murdoch's children are complete fools though.\n\nETA: It's not blocked behind a registration wall for me? Don't know why that auto moderator popped up.", 'created': '2024-11-10 01:56:35', 'submission_id': '1gnnpdk'}
{'comment': 'Stop listening to mega donars…. Problem people had with Obama, Hilary, Biden, and Kamala. Need a populous candidate not a corporate one, people pro corporate go Republican. Go the other direction', 'created': '2024-11-10 04:16:55', 'submission_id': '1gnnpdk'}
{'comment': 'I look at all the expenditure of energy and resources of people saying if you elect us we will do this. That same energy and resources could be doing those things in a microcosm to show the effect of what you will do. So lets have a miniature version of what we would do about what.\n\nStart with the most visible thing that needs the democratic touch the most.\n\nThe Homeless, no one really knows what to do with them except try and fit them into the framework they have already rejected or been incompetent to fill.\n\nTreat them like the lost Tribes of Israel and start a slow moving intake with a Makers Village parade of innovation. Trump jokingly threw out Rake the Forests once and then nothing, but there is an interesting use for the homeless in allowing mobile camps to "rake the forest" and use the fuel for Cottage industry and have real value come from what homeless camps could achieve. It wouldn\'t be hard to play the Pied Piper in a new theme.\n\nFunction here and show your talent, earn your vote.', 'created': '2024-11-10 03:13:51', 'submission_id': '1gnnpdk'}
{'comment': 'communication is the biggest problem. when all the media is owned by billionaires. And billionaire PACs can fill the rest with complete and utter lies.\n\nHere in MI every commercial for the last couple weeks was a political one. 80% were from billionaire PACs. one that was in almost every commercial break was literally screaming that dems were responsible for afganistan, crime was skyrocketing, millions of illegals were killing people, inflation was skyrocketing, and country was shit. literally easily proved BS. people are stupid.', 'created': '2024-11-10 17:22:50', 'submission_id': '1gnnpdk'}
{'comment': 'I think they\'ve pretty much said in the article that Women\'s March isn\'t just a movement about protests and marching now, and they are working on gaining power in other ways. Anyway, yes! There are a lot of positions up for election in 2 years.\n\n(Prepare for the incoming "there will be no more elections" comments...)', 'created': '2024-11-10 02:17:42', 'submission_id': '1gnnpdk'}
{'comment': 'Exactly. \n\nMy fellow liberals often waste too much time on window dressing and spectacle and devote too little attention to organization *between* elections. \n\nI\'m reminded of this line from the classic film "Animal House": \n\n>This situation absolutely requires a really futile and stupid gesture be done on somebody’s part.\n\nWe don\'t need gestures, we need work which will yield practical results. \n\nThe Democratic Party needs to have an in person presence which will keep it in touch with local communities all across the US every day of the year – not just during campaigns. A large part of this means listening to the concerns of voters – not just preaching at them.', 'created': '2024-11-10 23:57:50', 'submission_id': '1gnnpdk'}
{'comment': 'The troll and bots are working overtime in every sub.', 'created': '2024-11-10 11:01:15', 'submission_id': '1gnnpdk'}
{'comment': "I'm sure many members campaigned for Harris in the months before and during election day morning while simultaneously planning what they would do if she lost. \n\nAnd on election day night? Probably anxiously watching the news like the rest of us. 🤷\u200d♀️", 'created': '2024-11-10 01:23:18', 'submission_id': '1gnnpdk'}
{'comment': 'Right?! Clearly those women did not understand the assignment.', 'created': '2024-11-10 02:49:27', 'submission_id': '1gnnpdk'}
{'comment': 'Awesome, see? Not ONE but TWO women who proved that they can vote!', 'created': '2024-11-10 17:49:48', 'submission_id': '1gnnpdk'}
{'comment': "don't know why you're getting downvoted. I plan on trying to make it to this march BUT I stg if there are people there who didn't vote....", 'created': '2024-11-11 00:26:59', 'submission_id': '1gnnpdk'}
{'comment': 'It is really hard to give up IG. I love all of the arts and crafts fed to my brain. Someone needs to come up with an alternative.', 'created': '2024-11-10 03:30:36', 'submission_id': '1gnnpdk'}
{'comment': 'This article may be behind a registration wall. Sites with registration walls require users to create an account to view any content.\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-10 02:04:07', 'submission_id': '1gnnpdk'}
{'comment': 'Why, that basically sounds like the plot of Succession', 'created': '2024-11-10 12:33:00', 'submission_id': '1gnnpdk'}
{'comment': "A populist candidate is worthless if you can't get enough people to vote for them. That's the hard part.", 'created': '2024-11-10 11:02:46', 'submission_id': '1gnnpdk'}
{'comment': 'This. 💯 this.', 'created': '2024-11-10 02:45:18', 'submission_id': '1gnnpdk'}
{'comment': "Just remember Meta hired a project 25 guy to run Policy. You won't catch me dead on any Meta sites", 'created': '2024-11-10 03:49:06', 'submission_id': '1gnnpdk'}
{'comment': 'I hear you. I just am at a point where I really don’t want anything to do with anyone other than close friends and family, which made it easier to give up IG.', 'created': '2024-11-10 03:49:56', 'submission_id': '1gnnpdk'}
{'comment': 'There\'s a lot of people doing art at Tumblr. Urge artists you know to migrate there. \n\nMastodon is fine. Though I\'ve not gone out of my way to look for arts & crafts there. Bluesky seems to be growing well. I have an account there but only visit occasionally.. \n\nWhen we become too dependent on a particular platform we give the owners of that platform power over us. It\'s certainly rare to visit a site without finding the icons for Facebook and Twitter/X there. Musk and Zuck exploit their duopoly to shape opinion to benefit themselves and control us more. \n\nIt may be less convenient, but it\'s healthy to maintain a diverse online usage "diet".', 'created': '2024-11-10 05:51:03', 'submission_id': '1gnnpdk'}
{'comment': 'Oh boy. Dang it. So is someone else going to create something better than Instagram?! It needs to happen.', 'created': '2024-11-10 03:51:51', 'submission_id': '1gnnpdk'}
{'comment': 'Like where did they all come from? All of a sudden everyone’s wearing maga merch at school and the parking lot has a couple trucks with trump FLAGS on them now. None of that was there on Monday.', 'created': '2024-11-10 01:13:18', 'submission_id': '1gnnoxs'}
{'comment': 'this made me laugh, thanks', 'created': '2024-11-10 01:10:48', 'submission_id': '1gnnoxs'}
{'comment': 'They literally do this and sound like this.', 'created': '2024-11-10 02:28:05', 'submission_id': '1gnnoxs'}
{'comment': "I'll be honest.....it's hard for me to look at anyone because I'm just assuming they voted for the wrong person. I don't trust anyone anymore.", 'created': '2024-11-10 02:25:41', 'submission_id': '1gnnoxs'}
{'comment': "I feel like I'm walking into an impeding zombie apocalypse.", 'created': '2024-11-10 01:52:33', 'submission_id': '1gnnoxs'}
{'comment': 'Spot on.', 'created': '2024-11-10 01:33:44', 'submission_id': '1gnnoxs'}
{'comment': 'literally. like i’d see the flags but i never saw that many maga hats. now it’s INSANE\n\npeople just got comfy with being assholes.', 'created': '2024-11-10 02:32:59', 'submission_id': '1gnnoxs'}
{'comment': 'The Walking Dead', 'created': '2024-11-10 01:19:31', 'submission_id': '1gnnoxs'}
{'comment': 'one thing I thought about is with his mobs propensity for violence, what happens when they realize his policies are really screwing them?', 'created': '2024-11-10 03:03:19', 'submission_id': '1gnnoxs'}
{'comment': 'is this real (part of the show)?', 'created': '2024-11-10 02:22:46', 'submission_id': '1gnnoxs'}
{'comment': 'Mark of the beast', 'created': '2024-11-10 06:13:20', 'submission_id': '1gnnoxs'}
{'comment': 'They even got the looks down. Ew.', 'created': '2024-11-10 09:45:10', 'submission_id': '1gnnoxs'}
{'comment': None, 'created': '2024-11-10 01:56:09', 'submission_id': '1gnnoxs'}
{'comment': 'That’s a little too real for me.', 'created': '2024-11-10 09:38:35', 'submission_id': '1gnnoxs'}
{'comment': "they're picking sides for us first them. \n\nremember in Rwanda they were all neighbors until they weren't. \n\neverybody should have a plan for what they would do. you have two months.", 'created': '2024-11-10 04:27:28', 'submission_id': '1gnnoxs'}
{'comment': 'Excellent Stephen king reference', 'created': '2024-11-10 13:54:10', 'submission_id': '1gnnoxs'}
{'comment': 'If you’re wondering where they all came from, they were always there. It used to be frowned upon to be a loudmouth bigot in this country, now it’s the status quo.', 'created': '2024-11-10 15:24:02', 'submission_id': '1gnnoxs'}
{'comment': 'They’re sore winners, I guess. They’re probably going to start rounding us up soon. Why are they still angry?', 'created': '2024-11-10 14:12:42', 'submission_id': '1gnnoxs'}
{'comment': 'I often make this noise when I see one of those disgusting huge signs on the way to work', 'created': '2024-11-10 10:32:12', 'submission_id': '1gnnoxs'}
{'comment': 'I see a lot of Harris stuff still up. I know my immediate family and friends are horrified.', 'created': '2024-11-10 15:19:00', 'submission_id': '1gnnoxs'}
{'comment': 'Texas. Afraid to go out of the house. They’re everywhere. I’m surrounded.', 'created': '2024-11-10 16:38:34', 'submission_id': '1gnnoxs'}
{'comment': 'We gotta thug it out', 'created': '2024-11-10 02:50:58', 'submission_id': '1gnnoxs'}
{'comment': '/u/savevideo', 'created': '2024-11-10 05:12:37', 'submission_id': '1gnnoxs'}
{'comment': 'I am a blue dot in a VERY red southern state. Additionally, I am a Yankee. I can feel this video.', 'created': '2024-11-10 16:20:26', 'submission_id': '1gnnoxs'}
{'comment': 'Honestly ain’t seen much more or less here in my area. But my area went blue so I mean happens.', 'created': '2024-11-10 21:19:02', 'submission_id': '1gnnoxs'}
{'comment': "I live in a part of Wisconsin that has more than its fair share of Trumpers. Going in the grocery store and realizing that a ton of the people around me were more than happy to vote for a racist senile idiot....it's tough", 'created': '2024-11-10 15:51:02', 'submission_id': '1gnnoxs'}
{'comment': "Thank God they're not driving a Subaru! (How on earth does a car might become associated with a political party??", 'created': '2024-11-10 15:53:15', 'submission_id': '1gnnoxs'}
{'comment': "For anyone else wondering, this is from the episode 'Bend or Blockbuster', season 21 episode 2.", 'created': '2024-11-10 16:05:18', 'submission_id': '1gnnoxs'}
{'comment': 'Hysterical', 'created': '2024-11-12 11:46:26', 'submission_id': '1gnnoxs'}
{'comment': "They won and aren't afraid anymore.", 'created': '2024-11-10 02:00:32', 'submission_id': '1gnnoxs'}
{'comment': 'On Monday being racist and uneducated was bad.', 'created': '2024-11-10 01:20:28', 'submission_id': '1gnnoxs'}
{'comment': 'Bandwagon effect', 'created': '2024-11-10 02:06:46', 'submission_id': '1gnnoxs'}
{'comment': 'They knew they were electing a rapist, insurrectionist, total POS. So they remained silent about it just in case he lost. Since he won they were validated. Decency died with this election.', 'created': '2024-11-10 02:39:32', 'submission_id': '1gnnoxs'}
{'comment': "So it wasn't just me ? I was AMAZED to see the Trumpy nonsense on a lot of cars in my very blue area. Not the usual lifted pickup bro-dozers, actual nice cars, mom trucks, etc. All shiny and fresh stickers.\n\nThey live among us. Our educational system is clearly failed.", 'created': '2024-11-10 15:02:57', 'submission_id': '1gnnoxs'}
{'comment': 'You must not be from Florida. Im surrounded by those fucks.', 'created': '2024-11-10 05:35:20', 'submission_id': '1gnnoxs'}
{'comment': "This one girl I have added on FB came out as an employee for a Republican organization* after Trump won. It seems like some people she is friends with didn't even know? Weird AF. I think she is a conspiracy theorist so maybe she thought she'd be killed or something, I dunno, but I'm confused about it.\n \n*Edited to remove the specific organization because they don't have that many employees and her husband seems to harass Democrats online...", 'created': '2024-11-10 05:54:36', 'submission_id': '1gnnoxs'}
{'comment': 'I see that happen when a team wins a Superbowl too. All of a sudden, everyone loves the Chiefs.', 'created': '2024-11-10 17:25:04', 'submission_id': '1gnnoxs'}
{'comment': 'Uh what do you mean school how old are you', 'created': '2024-11-10 17:28:29', 'submission_id': '1gnnoxs'}
{'comment': 'They’re pussies; they weren’t man enough to admit who they supported unless he won.', 'created': '2024-11-15 02:14:17', 'submission_id': '1gnnoxs'}
{'comment': 'Obviously this is set in the Deep South.', 'created': '2024-11-10 02:57:16', 'submission_id': '1gnnoxs'}
{'comment': 'I’ve been holed up since Tuesday except a work event I had to go to. I skipped out on a get together tonight. I just can’t talk to people right now who support Trump.', 'created': '2024-11-10 02:37:14', 'submission_id': '1gnnoxs'}
{'comment': 'Heck I ran into a black woman of all people today in Los Angeles who was ranting in public about wanting to deport all Hispanics. Anyone could be a Trumper.', 'created': '2024-11-10 05:50:42', 'submission_id': '1gnnoxs'}
{'comment': 'I live in Oklahoma. Every time I go out, I am wondering who took my rights away that is walking beside me. Who voted for a felon. Who voted for a rapist because “the price of eggs!”', 'created': '2024-11-10 16:37:57', 'submission_id': '1gnnoxs'}
{'comment': "If it helps, many of his voters (as opposed to supporters) need pity more than anything. They are only able to see what's in front of them in their lives, which may happen to include powerful anti-democratic propaganda. It is unfortunate, but they are going to need to learn the hard way why democracy matters. When the real hurt starts, they will see the error of their ways. We are going to need these people with us to chart a new path forward.", 'created': '2024-11-10 17:53:48', 'submission_id': '1gnnoxs'}
{'comment': "Don't wait to prepare", 'created': '2024-11-10 04:28:10', 'submission_id': '1gnnoxs'}
{'comment': 'We officially are the United States of Assholes now.', 'created': '2024-11-10 17:36:38', 'submission_id': '1gnnoxs'}
{'comment': 'The Walking Brain-Dead', 'created': '2024-11-10 01:33:11', 'submission_id': '1gnnoxs'}
{'comment': "It's a Hitchcock's The Birds reference", 'created': '2024-11-10 02:06:15', 'submission_id': '1gnnoxs'}
{'comment': 'It feels like that.', 'created': '2024-11-10 05:47:33', 'submission_id': '1gnnoxs'}
{'comment': "they scapegoat racial or social minorities. \n\nwe might be headed for Rock bottom. \nRock bottom being the most terrible things humans have ever done to each other. \nHistory books are pretty clear about what happens with fascism so...\n\nyou got two months to get ready. \n\nmaybe it will all blow over and he'll just be a bad president.\n\nBut maybe it won't.", 'created': '2024-11-10 04:30:03', 'submission_id': '1gnnoxs'}
{'comment': "Same as always. They'll blame Democrats. I live in Texas. It's been like this for at least 30 years.", 'created': '2024-11-10 07:56:16', 'submission_id': '1gnnoxs'}
{'comment': '> what happens when they realize his policies are really screwing them?\n\nEvery time, just like Trump\'s first 4 years, the GOP will say "they didn\'t let us de-regulate ENOUGH, they didn\'t let us cut taxes ENOUGH, they didn\'t let us restrict your rights ENOUGH" as an excuse.\n\nBut even that\'s all smoke; None of their policies are meant for the people, they\'re for the billionaire class. And when the common people suffer the consequences, they just deflect and point blame. Rinse and repeat. I\'ve watched people fall for it since the 1980s, and it\'s worse than ever.', 'created': '2024-11-10 05:22:11', 'submission_id': '1gnnoxs'}
{'comment': 'They won’t understand it; we’ve already seen it. Anything bad for the common people Donald & co will project across 10,000 platforms that it’s the libruls, George soros, or certain minority groups, that are causing the issue. \nThey are always able to get ahead of it, because it’s exactly what they *are going to do*. It’s so easy to see, but voters seem to be mostly falling for it, aiming their anger at whatever the X/facebook/insta/tiktok/cable news/podcasts, tell them to.', 'created': '2024-11-10 08:25:52', 'submission_id': '1gnnoxs'}
{'comment': 'His tariffs in the first term fucked over farmers so badly that he had to spend billions to bail them out of looming poverty. Most of them don’t care or have forgotten.', 'created': '2024-11-10 17:50:32', 'submission_id': '1gnnoxs'}
{'comment': 'Yes.', 'created': '2024-11-10 04:35:37', 'submission_id': '1gnnoxs'}
{'comment': 'I noticed the accuracy of their looks, too.', 'created': '2024-11-10 14:40:00', 'submission_id': '1gnnoxs'}
{'comment': 'Tbf applies to both coasts', 'created': '2024-11-10 02:34:26', 'submission_id': '1gnnoxs'}
{'comment': 'Same', 'created': '2024-11-11 00:21:51', 'submission_id': '1gnnoxs'}
{'comment': 'That’s my question. How do we prepare?', 'created': '2024-11-10 06:57:50', 'submission_id': '1gnnoxs'}
{'comment': 'It reminds me of Hitchcock’s The Birds.', 'created': '2024-11-10 15:13:47', 'submission_id': '1gnnoxs'}
{'comment': "Many of them are in it in a cult-like way. There's then insiders and outsiders.", 'created': '2024-11-10 14:43:15', 'submission_id': '1gnnoxs'}
{'comment': 'It still is', 'created': '2024-11-10 02:05:29', 'submission_id': '1gnnoxs'}
{'comment': 'Now you can see exactly who this is. So you can avoid them better.', 'created': '2024-11-10 22:58:08', 'submission_id': '1gnnoxs'}
{'comment': 'I’m from North Carolina. It’s just weird how seemingly normal people went full on maga once it was clear Trump won. Silent majority blah blah blah 😕', 'created': '2024-11-10 05:58:01', 'submission_id': '1gnnoxs'}
{'comment': 'Nevada. Same shit', 'created': '2024-11-10 08:53:01', 'submission_id': '1gnnoxs'}
{'comment': 'I heard her job was sorting and burning early vote ballots, could be why it was secret /s', 'created': '2024-11-10 08:20:43', 'submission_id': '1gnnoxs'}
{'comment': 'Probably somewhere around Rome, Georgia.', 'created': '2024-11-10 07:46:48', 'submission_id': '1gnnoxs'}
{'comment': 'Yeah we\'ve also been holed up. I\'ve gone "no contact" with my Trumper parents. They\'ve tried contacting me just to "chit chat" but I know them. They won\'t gloat but they want to take the temperature between us and see if they still have a relationship. After Trump\'s win in 2016, we didn\'t speak for 5 months.', 'created': '2024-11-10 14:51:52', 'submission_id': '1gnnoxs'}
{'comment': "It's more like They Live than The Birds.", 'created': '2024-11-10 14:46:56', 'submission_id': '1gnnoxs'}
{'comment': 'We have just under three months', 'created': '2024-11-10 05:16:31', 'submission_id': '1gnnoxs'}
{'comment': 'nazi america!\n\ni hate it here', 'created': '2024-11-10 17:42:18', 'submission_id': '1gnnoxs'}
{'comment': 'The walking worm eating brains-dead.\xa0', 'created': '2024-11-10 01:49:27', 'submission_id': '1gnnoxs'}
{'comment': 'See Also [https://www.topographie.de/en/](https://www.topographie.de/en/)\n\nThis is a museum in Berlin, where the conversion of the German state from a society of law to one of fascism is documented, one Eileen Cannon, one Mike Johnson at a time. Take over the media, make civil service take a loyalty test...it is ALL there.\n\nProject 2025, translated from the orig. German.....and the gory stuff is only the very last exhibit, the rest is how you got to that pile of emaciated bodies....we are about a third of the way there.', 'created': '2024-11-10 15:05:57', 'submission_id': '1gnnoxs'}
{'comment': 'Ohio is the same way. 30 years of GOP control, and everything is still the fault of Democrats.', 'created': '2024-11-10 08:15:45', 'submission_id': '1gnnoxs'}
{'comment': 'well 2 of them have already tried to shoot him.', 'created': '2024-11-10 05:48:06', 'submission_id': '1gnnoxs'}
{'comment': 'Spot on!', 'created': '2024-11-10 14:36:44', 'submission_id': '1gnnoxs'}
{'comment': "think of a plan for if you had to abandon your home and just run. \n\nor if you had to hunker down. \n\nI don't really know what this is going to look like. maybe it'll be nothing and he'll just be a bad president. \n\nif you are in a state with a Democratic governor you're probably slightly better off because there's some chance that local law enforcement or the national guard will be loyal if violence breaks out and Trump inflames it or refuses to do anything or if he incites it himself on a large scale. \n\nwhat I'm doing is:\nstocking up on canned food and potable water. \ngetting basic medical supplies in a decent quantity. \nstarting an exercise regime so that if I have to be physical Ill have a slightly better chance.\nmyself and my father are both deciding to become gun owners just in case, even though neither of us ever wanted to.\n\nBut it all depends on how bad it gets. \nif it actually turns into a civil war head for the Canadian border or California.", 'created': '2024-11-10 17:54:08', 'submission_id': '1gnnoxs'}
{'comment': 'I live in Italy, my aunt and uncle (retired) are coming here. We’re helping them with paperwork, the banking requirements and housing. They asked if they could claim refugee status *sad lol*', 'created': '2024-11-10 16:39:45', 'submission_id': '1gnnoxs'}
{'comment': 'Now there are good people on both sides.', 'created': '2024-11-10 02:16:26', 'submission_id': '1gnnoxs'}
{'comment': 'On a red eye right now on my way to visit my Trump supporting (X3) 90 YO parents. I am suggesting to them that they move from CA to NV- they won’t, but they should.', 'created': '2024-11-10 13:35:04', 'submission_id': '1gnnoxs'}
{'comment': 'I was thinking myrtle beach.', 'created': '2024-11-10 14:17:15', 'submission_id': '1gnnoxs'}
{'comment': 'I haven’t spoken to my family since 2016 and don’t plant to start. Ever. They showed who they were, I believe them, so nothing to argue about', 'created': '2024-11-10 16:36:14', 'submission_id': '1gnnoxs'}
{'comment': 'There will probably be more of that if goes through with the tariffs and destroys the economy. Between Iran and his own pissed-off party members he better hope the secret service spends less time fucking up and more time guarding his ass if he plans to survive this term.', 'created': '2024-11-10 13:33:12', 'submission_id': '1gnnoxs'}
{'comment': 'Solid advice. Unfortunately I reside in TX. But, if I see things starting to turn, I’m definitely headed to a blue state. I already own a gun, plenty of ammo. I’m going to stock up on medical supplies and water as you suggested. I’ll also stock up on canned foods. Having a go bag is on my list as well. \n\nIt’s so crazy that we are all learning how to be “preppers” now. It was always good to have extra supplies on hand if needed, but now it feels imperative. Not to mention what’s going on with the climate!! Scary times!', 'created': '2024-11-10 19:03:57', 'submission_id': '1gnnoxs'}
{'comment': 'Since when?', 'created': '2024-11-10 16:05:19', 'submission_id': '1gnnoxs'}
{'comment': 'Like 9 minutes ago.', 'created': '2024-11-11 08:33:38', 'submission_id': '1gnnoxs'}
{'comment': 'Propaganda - years of a steady diet of grievance right wing media like Fox News and Limbaugh….accelerate that with Facebook and social media where you can find like minded folks to validate your biases and voila…', 'created': '2024-11-10 00:46:40', 'submission_id': '1gnn6nh'}
{'comment': 'The manner in which Trump talks is the same manner in which most MAGA folks talk—crudely with poor grammar and tons of racist undertones. He wasn’t “PC.” McCain, Bush, Romney, they all spoke with dignity and purpose. Trump. He’s just a brainvomit of whatever comes out of his mind, so the common plebs see him as unrefined and “down to earth” as they are. Even as he brags about his riches, uses his golden toilets and showers, he speaks with the eloquence of cousin Cletus, which makes him “relatable” and someone who “tells it like it is.”', 'created': '2024-11-10 00:47:12', 'submission_id': '1gnn6nh'}
{'comment': 'wasnt TEa Party a cult though?', 'created': '2024-11-10 00:47:05', 'submission_id': '1gnn6nh'}
{'comment': 'No other republican politicians have so explicitly promised hatred and persecution.\n\nTrump is gonna “get” all those people they don’t like and teach them a lesson. That’s what made him different and why they support him so vehemently and blindly.\n\nThe cruelty is the point. \n\nThat’s why they are garbage deplorables, and I won’t back off that statement.', 'created': '2024-11-10 01:00:53', 'submission_id': '1gnn6nh'}
{'comment': 'Cult of personality', 'created': '2024-11-10 00:50:48', 'submission_id': '1gnn6nh'}
{'comment': 'He said the quiet biases out loud. Racism, sexism, white nationalist, crude talk, etc. They like that.', 'created': '2024-11-10 00:59:23', 'submission_id': '1gnn6nh'}
{'comment': 'Same thing that made nazi’s cult like… You’re only good if you’re on our side, everyone else is causing all the problems and must be dealt with accordingly. \n\n___ people are taking your jobs.\n\n___ people are violent and will harm your family.\n\n___ people want to control your money.\n\nEtc etc \n\nHere is a great [post WWII anti-fascist video](https://youtu.be/8K6-cEAJZlE?si=GX_XsJxqMIkiG4qN) put out by the US government. It basically explains what I’m talking about.', 'created': '2024-11-10 01:02:37', 'submission_id': '1gnn6nh'}
{'comment': 'MAGA is to me white grievance in physical form. I say for the most part that MAGA it is mostly made up of white people. Its people who are upset that non whites and non-straight individuals are making inroads to the table that was just for them for centuries. They don\'t like the idea that the power that they once had is going away because those not like them are starting to get more money, starting to get more status, starting to get more power politically and that bothers them that they power they once had was starting to slip from them. They don\'t like that they are getting left behind (some of it their own doing some not). They don\'t like that women are getting more power getting to choose who they want to date leaving those that treat them like shit to not have partners.\n\nSo what you have with MAGA is someone to say "Its not your fault you are failing, its not your fault that your job isn\'t here anymore, its not your fault that you can\'t get laid." "Its the fault of those that don\'t look like us, don\'t act like us that are the problem, its feminism, its illegals, etc".\n\nHe told them what they wanted to hear that their problems are not of their own doing. He sold them on lies that its the globalist that are sending jobs away, its "wokeness" is why men can\'t get partners, its the illegals that are getting all these things while they can\'t.\n\nThat is why it is more cult like and much like a cult once Trump passes away its going to barely struggle to survive. No one else can lead them others can tell them what they want to hear but not in a way that Trump does.', 'created': '2024-11-10 01:20:24', 'submission_id': '1gnn6nh'}
{'comment': 'I miss the days when mitt Romney was an enemy', 'created': '2024-11-10 01:43:06', 'submission_id': '1gnn6nh'}
{'comment': 'Racism, sexism and plain old hatred.', 'created': '2024-11-10 01:42:53', 'submission_id': '1gnn6nh'}
{'comment': 'Propaganda from Russia, selling bibles and watches and gold tacky shoes, Fox News', 'created': '2024-11-10 01:06:18', 'submission_id': '1gnn6nh'}
{'comment': 'The WWE personality of Donald Trump.', 'created': '2024-11-10 02:04:31', 'submission_id': '1gnn6nh'}
{'comment': 'Elmo and the orange blob of shit.', 'created': '2024-11-10 01:07:31', 'submission_id': '1gnn6nh'}
{'comment': 'This has been in the making since the 90’s with Newt Gingrich. Polarization is good for media profits and it’s gotten worse because we have algorithms that tailor more extreme information to both sides.', 'created': '2024-11-10 01:11:32', 'submission_id': '1gnn6nh'}
{'comment': 'Ignorance and Fox', 'created': '2024-11-10 01:21:26', 'submission_id': '1gnn6nh'}
{'comment': 'Donald Trump is a genius salesman and conartist. Like him or not, his branding is brilliant for a certain population of greedy Americans. Previous republican candidates were old white and boring so old white ppl liked them. Going to a Trump rally is like being at the Jerry Springer show, the entertainment and shock value', 'created': '2024-11-10 05:09:41', 'submission_id': '1gnn6nh'}
{'comment': 'Donald Trump is the perfect cult leader. Combined w constant propaganda and boomers on Facebook\xa0', 'created': '2024-11-10 01:26:22', 'submission_id': '1gnn6nh'}
{'comment': 'The leader is a malignant grandiose narcissist billionaire. Born into riches and spent decades building up his false fragile ego for people to worship.\n\nIt’s psychological.\n\nI doubt it will be repeated in our lifetime.', 'created': '2024-11-10 01:32:05', 'submission_id': '1gnn6nh'}
{'comment': 'I’m too young to remember but wasn’t Reagan cultish? My peers in our 30s are obsessed with him', 'created': '2024-11-10 01:03:06', 'submission_id': '1gnn6nh'}
{'comment': 'As businessman, Trump was able to sell people a dream', 'created': '2024-11-10 01:04:05', 'submission_id': '1gnn6nh'}
{'comment': 'Because Trump wasn’t the typical “boring” politician. His absurd tweets, unhinged comments, weird dancing, etc., made a bunch of people absolutely love him.', 'created': '2024-11-10 01:07:21', 'submission_id': '1gnn6nh'}
{'comment': 'Over time Republican voters have become all the more coddled and privileged and arrogant about it. They can be as irrational and irresponsible as they want and their candidates will indulge them, and the most the public will do is blame the TV channels they choose to watch.\n\nTrump is just their avatar for all of this, so they love him that much more.', 'created': '2024-11-10 01:18:17', 'submission_id': '1gnn6nh'}
{'comment': 'Un-closet-ed\n\nRacism &, sexisim', 'created': '2024-11-10 02:25:47', 'submission_id': '1gnn6nh'}
{'comment': 'trump, by being a loud mouth hate filled bigot, basically gave the hate filled bigots permission to be openly loud about their bigotry. They’ve always been proud of their bigotry, trump made it ok to tell everyone how proud you are of it.', 'created': '2024-11-10 04:55:47', 'submission_id': '1gnn6nh'}
{'comment': 'Complete mental capture. Targeting people through all possible means: work, church, media, advertising.', 'created': '2024-11-10 01:19:39', 'submission_id': '1gnn6nh'}
{'comment': 'impervious to reality', 'created': '2024-11-10 01:42:30', 'submission_id': '1gnn6nh'}
{'comment': "Have you ever played that game Lemmings for Nintendo? We'll, a group of dipshits follows a bigger dipshit. They can't see where they'll going, only know what the leader tells them. Eventually the leader moves when he sees a danger, and all the lemmings don't and die. Cause they're dipshits.", 'created': '2024-11-10 01:52:21', 'submission_id': '1gnn6nh'}
{'comment': "He's more obnoxious, so they like him more. I always thought, wait until they give us someone worse than Bush.", 'created': '2024-11-10 01:55:08', 'submission_id': '1gnn6nh'}
{'comment': 'Stupidity', 'created': '2024-11-10 03:49:07', 'submission_id': '1gnn6nh'}
{'comment': 'A lack of empathy and an unwillingness to try to understand others.', 'created': '2024-11-10 04:16:30', 'submission_id': '1gnn6nh'}
{'comment': 'Here are a few of the main ways that Donald Trump leads his followers in ways similar to a cult leader:\n\n1.) Charismatic Authority: Trump’s appeal is heavily based on his strong, confident persona, which resonates deeply with his followers. Much like a cult leader, he often presents himself as a figure who alone has the solutions, inspiring intense personal loyalty that often goes beyond policy.\n\n2.) Us vs. Them Mentality: Cults frequently foster a strong divide between insiders (the “enlightened” followers) and outsiders (those who are seen as threats or unenlightened). Trump has often created a similar dynamic, labeling his critics as enemies and encouraging followers to see the media, Democrats, and other groups as hostile forces.\n\n3.) Distrust of Outside Sources: Cult leaders frequently discourage followers from listening to outsiders or the mainstream media, reinforcing that only the leader can provide “truth.” Trump has often claimed that mainstream media is “fake news,” encouraging his base to rely on him and select news sources he endorses.\n\n4.) Demand for Absolute Loyalty: Like many cult leaders, Trump has often displayed a tendency to reward unwavering loyalty and criticize or marginalize those who question or disagree with him. His public clashes with former aides, staff, and Republican leaders who dissented reflect this focus on loyalty.\n\n5.)Persecution Complex: Cults often cultivate a sense of persecution, emphasizing that they are misunderstood or targeted unfairly. Trump has consistently portrayed himself and his supporters as victims of a “witch hunt,” which strengthens group solidarity by creating a shared sense of grievance.\n\n6.) Simple, Repeated Messaging: Cult leaders frequently use repetitive, simple slogans or phrases to reinforce loyalty and create a sense of unity. Trump’s slogans like “Make America Great Again” and his frequent use of direct, memorable catchphrases help maintain focus and coherence among his base.\n\n7.) Cult of Personality: Many of Trump’s followers admire him on a personal level, sometimes valuing his identity more than specific policies. This personality-centered loyalty is similar to cult dynamics, where the leader’s personality becomes the central focus of the group’s beliefs and values.', 'created': '2024-11-10 04:50:20', 'submission_id': '1gnn6nh'}
{'comment': 'He fed their fears.', 'created': '2024-11-10 05:07:15', 'submission_id': '1gnn6nh'}
{'comment': 'Populism and lies', 'created': '2024-11-10 05:42:14', 'submission_id': '1gnn6nh'}
{'comment': 'Freedom of speech is used by KGB against the people in the democratic countries. You forgot that these people are your enemies and their organizations never stopped working against democracy.', 'created': '2024-11-10 08:10:26', 'submission_id': '1gnn6nh'}
{'comment': 'They are hateful- and mostly racist', 'created': '2024-11-10 13:04:48', 'submission_id': '1gnn6nh'}
{'comment': 'The political right is a well oiled propaganda machine. It actually began long ago and was always meant to manipulate via emotions. I would say its modern form began somewhere in the early 90s. That’s around when Rush Limbaugh gained popularity.\n\nCongress since at least then in its modern form has been divided. As in you need your party in full control in House and Senate to align with President to get anything done.\n\nWhen Obama was finishing up his second term there was talk, where the Right began to realize they would have to conform to what America wants after all- Obamacare became a staple in American life. The Right was changing and then Trump came in - and brought back the division politics accept now - blatant lies distributed like facts.\n\nSince Trump became a new era, but this year everything really came together. You get these Andrew Tate types manipulating are young men. All these bro like types- Trump had the culture this time.\n\nIdc what anyone says about Biden he is my all time favorite President. I think he is a good man to his core. I sent three letters to the White House the only one answered was a shared spirituality. I know it was a staffer but I know where the man’s heart was - I just know. But our men don’t believe in heart in 2024 apparently.\n\nSo I just want to say to my fellow men, make sure you set a good example for young men. About humility and integrity, about service and protecting the vulnerable. Please - we need good men.', 'created': '2024-11-10 15:33:47', 'submission_id': '1gnn6nh'}
{'comment': 'I have no doubt in my mind Donald Trump has either been an Active Spy for the KGB, FSB, or SVR, with Agents from Russia who have defected here who have *Admitted As Much*, that he was recruited in the mid-80s, which meets with the timeline of when he started Renting Out Massive Whole Floors to Russian Oligarchs in his Hotels, most of which he does not own, or has went Defunct now, many believe those Hotel rooms and Floors, Timeshare, and other Real-Estate Brokering was just a way to Launder Money for Russian Oligarchs, there are many respected Newspapers and Reporters around the World who have done Stories on this one, which is below from one of the most well respected newspapers in Europe\n\n[TRAITOR!! 💯 ](https://www.theguardian.com/us-news/2021/jan/29/trump-russia-asset-claims-former-kgb-spy-new-book)', 'created': '2024-11-10 15:58:54', 'submission_id': '1gnn6nh'}
{'comment': 'Trump is a salesman and a branding expert.\n\nMaybe that’s just the direction we are going? Republicans felt like Obama was a cult. He definitely had a lot more of his merch around him than previous candidates.', 'created': '2024-11-10 01:33:13', 'submission_id': '1gnn6nh'}
{'comment': 'Social media?', 'created': '2024-11-10 01:32:30', 'submission_id': '1gnn6nh'}
{'comment': '"I have problems in my life and need someone else to blame. Help me out. Don\'t charge me. Stop trying to help other people. Don\'t keep me from causing problems. I was accidentally born in the right time and place, so I deserve. Fuck you; got mine."\n\nPick your favorites, reframe it as "economic policy," and have the world\'s strangest conman do that weird broken-talking thing he does that somehow lets people know that he knows what they want without saying what he means. I suppose that\'s part of the appeal, given how much of that crap I\'m seeing from his followers.\n\nReshape the pill all you want, but eventually it needs to go down, because it needs to be accounted for in practical matters as life goes on.\n\nTrump supporters voted Trump, and provided rabid, even occasionally violent, support throughout this whole fun experience. Non-voters voters voted for, "Whatever\'s cool with me." They knew Trump was running, so even if they didn\'t love him, they\'re just as good with Trump as they are with Harris.\n\nThese are your neighbors. This is America. Democracy worked. Welcome home. Lock your doors.', 'created': '2024-11-10 02:24:58', 'submission_id': '1gnn6nh'}
{'comment': 'when you think about it, has any other presidential election had as many flags as we’ve seen since 2016? it’s fucking insane how much they care about a 90 year old man', 'created': '2024-11-10 02:41:41', 'submission_id': '1gnn6nh'}
{'comment': 'They definitely called GWB the messiah a lot too. Funny how they forgot about that. Now its Dumpy and they have deluded themselves further', 'created': '2024-11-10 02:44:23', 'submission_id': '1gnn6nh'}
{'comment': "Angry Male Podcasters that preyed on the low self esteem of Young boys. They offered a solution in the form of blaming others for why they are unhappy in life. Because there has been focus of females, marginalized people of color and the LGBTQ community, they interpret them as the enemy and sometimes feel as though as they are the blame for the treatment of marginalized communities. It starts with pushback and then attacking them becomes a flex or an enjoyable experience.\n\n* NOTE: [The health and interest of young men is very important and the statistics will prove that.](https://www.nimh.nih.gov/health/statistics/major-depression) *They need to understand that addressing issues of marginalized communities does not put them at blame or minimalize their needs or concerns. There has to be outreach and understanding that they have needs and concerns as well and, we need to do a better job at that.*\n\nThe Alt Right pipeline starting in areas of Men's interest. Among communities where they seem to start are, Men's Health content creators, Self Help Gurus, Financial Gurus, Gaming Communities and Sports Communities especially Professional Wrestling and UFC communities.[ The Algorithm pushes them from content not political at all to far right content.](https://en.wikipedia.org/wiki/Alt-right_pipeline)\n\nThe next evolution of AM Radio talk. X/Twitter was not the start of it but, it was the takeover of a popular medium. Originally, It was Imageboards, Message Boards and even IRC which still exists today in one form or another.\n\nEdit: I know MAGA is not all young men. I was just pointing out what I have seen over time.", 'created': '2024-11-10 03:13:11', 'submission_id': '1gnn6nh'}
{'comment': "Shame is a large part. They don't have to feel ashamed now about supporting trump because he has won twice now and winning is all that matters.", 'created': '2024-11-10 03:14:19', 'submission_id': '1gnn6nh'}
{'comment': 'Constant attacks on important American institutions central to transparency and democracy: the press, FBI, the Justice department, the courts, elections. \n\nWe’ve now been exposed to almost a decade of these attacks. Trump is very consistent in his attacks. I think a lot of low information voters do not have enough knowledge of how the government works to combat such prolonged propaganda.', 'created': '2024-11-10 03:47:20', 'submission_id': '1gnn6nh'}
{'comment': 'Probably the bottom line is Trump got "rizz" (that is charisma for all you boomers and other olds) The Repugnants can\'t match it. Ron DeSantis tried to out Trump Trump no contest. You put together is charisma his unmatched confidence and complete lack of shame and a seemingly endless amount of money mostly from criminals and no one else has all that.', 'created': '2024-11-10 03:50:58', 'submission_id': '1gnn6nh'}
{'comment': 'The GOP has worked hard to build that cult mentality with its followers', 'created': '2024-11-10 04:03:57', 'submission_id': '1gnn6nh'}
{'comment': 'A cult leader is someone who people believe can do no wrong and who always has a larger purpose. Trump can do anything as the leader of a cult.', 'created': '2024-11-10 04:06:25', 'submission_id': '1gnn6nh'}
{'comment': 'Look up NO KINGS ACT', 'created': '2024-11-10 04:42:44', 'submission_id': '1gnn6nh'}
{'comment': 'In addition to what people are saying about the prevalence of right-wing propaganda masquerading as news for decades and the rise of social media allowing people to see ONLY the news that validates their opinions and prejudices, I think it\'s important to note that most Presidential candidates before Trump talked about their platform, policies, and proposals. Trump made it entirely about himself. "Only I can fix it." There was no message. No vision. It was just about making himself the center of attention. \n\nMAGA became a cult, because that\'s exactly what Trump intended it to be from the start.', 'created': '2024-11-10 04:42:58', 'submission_id': '1gnn6nh'}
{'comment': "Republicans are in a demographic death spiral. Millennials are overwhelmingly Democratic. As is Gen Z, though they have a bigger gender gap, they're still more Democratic as a whole. Even Gen Z men are more liberal than Boomer and Silent Gen men, who are dying off. \n\nThe country is getting more racially diverse and more college-educated.\n\nElections are only going to get harder for them.\n\nThus they need some sort of really strong leader who can tip the scales in their favor. It's why they're resorting to voter suppression and tactics to undermine democracy and the rule of law. It's becoming increasingly difficult for them to win fair and square.", 'created': '2024-11-10 05:09:35', 'submission_id': '1gnn6nh'}
{'comment': 'But they had no chants(chance) to rival: vote blue no matter who', 'created': '2024-11-10 06:38:09', 'submission_id': '1gnn6nh'}
{'comment': 'Anger at us for putting minority groups on a pedestal above them. Especially the LGBTQ so prevalent in everything the media produces even though they are such a small percentage. They also see us as self righteous and have a moral superiority. They question our opinion on democracy if we put them above average Americans. They are super pissed that transgender men are being allowed to participate in women’s sports. I get it. I’m an ally, but I also understand that we all have limitations on what we can do just because of the way we were born. I’m 5 ft 7, have asthma. I played football and was good for my size but unfortunately, I was never able to start or go anywhere with it because of my size. It is what it is. I know it hurts and I wish we could just love and allow everyone to do as they wish but it’s not that way. We have to hear them and compromise or we are bound to fail.', 'created': '2024-11-10 07:14:53', 'submission_id': '1gnn6nh'}
{'comment': 'Americans love a good slogan', 'created': '2024-11-10 12:15:29', 'submission_id': '1gnn6nh'}
{'comment': 'Support and training from Russia in mass manipulation strategies.', 'created': '2024-11-10 14:25:11', 'submission_id': '1gnn6nh'}
{'comment': 'For some, believing the LIES. For.others, HATE. For others, TERRIFIED of the dictator.', 'created': '2024-11-10 14:56:46', 'submission_id': '1gnn6nh'}
{'comment': 'Mainly their racism, xenophobia and misogyny. This group is not new. It was the Tea Party, a racist movement against Pre. Obama that masqueraded as an anti-tax movement. Before that it was "Bush\'s Base." It has its genesis in white anipathy to LBJ\'s signing the Civil Rights and voting guarantees in the mid-1960s. If you boil it all down, they want what they\'ll never have: a white, anglo America. To them, that is the definition of making America great again.\n\nTrump uses coded, and not so coded, language to promise that white America to them. But he is first and foremost a career criminal conman who became the cult leader to further his own interests. At the top of the list was staying out of prison. But he no longer needs his cult either for their votes and, because he won\'t be having campaign rallies anymore, for their worship of him. Over the next few years, we will see him start to ignore them and then abuse them. To him, MAGA is the ultimate collection of losers and suckers. He got what he needed from them, and their usefulness is over.', 'created': '2024-11-10 15:54:39', 'submission_id': '1gnn6nh'}
{'comment': "Wonder what my Southern Brethren will do when Donald Trump comes out and says they need to register all firearms in the United States with the ATF, and not to worry because if you are an honest gun owner in responsible you have nothing to worry about, naturally the right and the Republicans won't scream about the Bill of Rights or the Second Amendment they will believe him like they believe everything he says, that will be his first step to find out who's got the guns and where they're at", 'created': '2024-11-10 16:07:28', 'submission_id': '1gnn6nh'}
{'comment': 'Just keep saying the same thing until it’s ingrained in all the maga heads. Forever.', 'created': '2024-11-10 16:17:28', 'submission_id': '1gnn6nh'}
{'comment': "Collective narcissism. That is why they are living in an alternate reality. That is why not a single rational argument seems to reach them. That is why communities, families and other social circles have become so divided. It isn't normal politics, it is identity politics on steroids.", 'created': '2024-11-10 16:38:33', 'submission_id': '1gnn6nh'}
{'comment': "It feels like it came from being told they were crazy from the start. Which they are, but tell someone they're wrong enough times no matter how wrong they are, they will only become more defensive. We are seeing the rebound effect from MAGA supporters being ridiculed and shunned so hard for the last 8- 9 years .\xa0", 'created': '2024-11-10 17:40:53', 'submission_id': '1gnn6nh'}
{'comment': 'Read books by Dr Bandy Lee - Trump Contagion, etc.', 'created': '2024-11-10 18:13:23', 'submission_id': '1gnn6nh'}
{'comment': 'Hate. Trump hates the same people they do (minorities, LGBTQ, immigrants, etc). He normalized their hate and made it okay for them to express their true feelings.\n\nTrump blames everyone else for his failures and they can relate. Nothing is ever their fault. \n\nInflation happens all over the world. But what did these people do to adapt? Did their employers give them raises to keep up? Did they look for new jobs? Did they put effort into their education to get a good job in the first place? Are they even employed at all? Did they invest money with gains to offset inflation? Do they spend money on unnecessary items like guns, ammo and lifted trucks? \n\nThey\'d rather just sit back and say "FJB! F-DEI! F-Woke!"', 'created': '2024-11-10 20:45:38', 'submission_id': '1gnn6nh'}
{'comment': 'Every now and then those Turkish proverb of\nPops into my head. \n\n\n“When the axe came into the woods, many of the trees said, “At least the handle is one of us.”', 'created': '2024-11-10 21:27:46', 'submission_id': '1gnn6nh'}
{'comment': 'Trump learned the art of charming a gullible people into voting for hate and authoritarianism and killing democracy. They fell for it in text book fashion. They will regret it.', 'created': '2024-11-11 05:17:06', 'submission_id': '1gnn6nh'}
{'comment': "Trump makes past Republican candidates look like George Plimpton - snooty and erudite. Trump seems like the first candidate that right-wing voters can (oddly enough) identify with. He validates and echoes their hate and jealousy. He tells them what they want to hear. He creates a very safe, accessible space for largely uneducated people who feel left behind by capitalism. He's brash and unfiltered, which comes off as honesty to them. Sarah Palin came close but he took it to another level. He gives them something to rally behind, so it's no wonder they get to be as tribal and cult like as they do.", 'created': '2024-11-11 20:09:59', 'submission_id': '1gnn6nh'}
{'comment': "For many people, Trump is charismatic—that's ingredient one. Two, he is an effective and unflinching demagogue. Three, we live in stressful times with a number of handy scapegoats. These are all the ingredients needed for a political cult.", 'created': '2024-11-12 18:41:29', 'submission_id': '1gnn6nh'}
{'comment': 'I was an extreme right winger in my early twenties. This was 2005-2011ish, so the only republican I ever voted for in the presidency was John McCain, who by no means inspired anything resembling a cult. I think being a far right conservative is an ideology border-lining on being a religion. We had our prophets in Bill O’Reilly, Sean Hannity, Rush Limbaugh, Anne Coulter and Glen Beck, but we’d always talk about how we needed a “voice” for our movement, what I now realize is by “voice” we meant “messiah”. Thank god I came to my senses before that messiah came down the escalator. Previous Republican candidates were conservative, sometimes extremely conservative, but they all still subscribed to the idea of post-WW2 neo-liberalism, they all still believed it was America’s responsibility to lead the free world through economics and trade instead of fear and brutality like the empires of old. When I was a dumb, immature right winger I didn’t believe in any of that and neither does Trump. So there’s your answer.', 'created': '2024-11-10 03:46:10', 'submission_id': '1gnn6nh'}
{'comment': "Many on the right will never get over the fact that America elected a black president... twice. And Trump can't stand Obama. Hence Trump became the poster boy for their not-so-veiled racism.", 'created': '2024-11-10 06:14:04', 'submission_id': '1gnn6nh'}
{'comment': 'Also goes back to National Enquirer and Weekly World News. People who believed all the stories about aliens and Elvis coming back to life, they went on to be MAGA.', 'created': '2024-11-10 01:17:23', 'submission_id': '1gnn6nh'}
{'comment': 'Yep. The GOP and right-wing media prepped conservative voters for a con man like Trump to come in.', 'created': '2024-11-10 03:28:38', 'submission_id': '1gnn6nh'}
{'comment': 'This. Started with social media. Now podcasts have taken of AM radio.. an army of Rush Limbaughs for a new generation and supercharged at that.', 'created': '2024-11-10 04:25:47', 'submission_id': '1gnn6nh'}
{'comment': 'All funded by Russia to destabilize our country.', 'created': '2024-11-10 07:35:14', 'submission_id': '1gnn6nh'}
{'comment': 'Exactly!', 'created': '2024-11-10 06:17:44', 'submission_id': '1gnn6nh'}
{'comment': 'This is absolutely it. His supporters respond to the brutal simplicity of his limited vocabulary and communication style, and especially his vulgarity. Like seeks like.', 'created': '2024-11-10 01:09:50', 'submission_id': '1gnn6nh'}
{'comment': "That's what happens when we cut education funding to the point that 54% of adults read at less than a sixth grade level, and 21% at less than a third grade level.", 'created': '2024-11-10 01:26:31', 'submission_id': '1gnn6nh'}
{'comment': 'Tea Party morphed into maga. Same bunch.', 'created': '2024-11-10 01:19:42', 'submission_id': '1gnn6nh'}
{'comment': 'Deplorable?! how dare you say such a word? am going to see if our Lord and Saviour Musk can add that to the list of banned slurs.', 'created': '2024-11-10 01:15:05', 'submission_id': '1gnn6nh'}
{'comment': "Imo they're worst than that. They're traitors. They supported and voted for someone who has no reservations with selling off government secrets, endangering our service men and women. He's openly said he will let Putin do what he wants. \n\nNot to mention were ignoring the fact that he's gonna gut agencies and programs, privatize them and give control to highest bidders. This administration is open and loud about wanting to be bribed and generously paid in exchange of government positions, access and influence etc. We will be entering a new gilded age", 'created': '2024-11-10 06:32:45', 'submission_id': '1gnn6nh'}
{'comment': "At least Trump is really old and unhealthy. If he doesn't trigger WWIII, we will outlive him, and it'll take some time for the rightwing to find their next God Emperor.", 'created': '2024-11-10 01:09:51', 'submission_id': '1gnn6nh'}
{'comment': ">MAGA is to me white grievance in physical form.\n\nWhite *male* grievance, in physical form, aided and abetted by White females brainwashed into thinking it's their christian duty to subordinate their will and intellect to the men in their lives.", 'created': '2024-11-10 01:40:01', 'submission_id': '1gnn6nh'}
{'comment': 'It started with Reagan with the big trickle down lie, and some other things Reagan did. \n\nAnd then yeah. Newt Gingrich played on divisiveness. \n\nAnd so then all of that set the stage for Trump to come in.', 'created': '2024-11-10 03:27:06', 'submission_id': '1gnn6nh'}
{'comment': 'Reagan is the prick who started the whole trickle down economics bullshit that destroyed the middle class. You know how you hear of a time when your grandparents bought a house n only the man had a job n the wife stayed home? People could work n live and own a house n a car… maybe a dog with a picket fence? Well Reagan made all that shit a fever dream only obtained by the extra fortunate and well off..', 'created': '2024-11-10 01:41:51', 'submission_id': '1gnn6nh'}
{'comment': 'Reagan wasn’t cultish. A whole lot of people liked him but it was nothing like this thing with trump. Times were completely different back then. You could never have been best buds with the Russians and won the presidency. Reagan did away with the fairness doctrine which is why Fox News is allowed to operate like they do today. He probably paved the way for trump and I think he was a shitty president but he was still a normal, decent person. Trump’s trying to burn the whole thing to the ground and people just don’t care or are looking the other way. There’s never been anything like trump in my lifetime and I’m 49 yrs old.', 'created': '2024-11-10 01:42:31', 'submission_id': '1gnn6nh'}
{'comment': 'Agreed 🤝', 'created': '2024-11-10 16:05:00', 'submission_id': '1gnn6nh'}
{'comment': 'THIS☝️☝️☝️💯', 'created': '2024-11-10 15:59:46', 'submission_id': '1gnn6nh'}
{'comment': 'This article may be behind a registration wall. Sites with registration walls require users to create an account to view any content.\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-10 16:02:38', 'submission_id': '1gnn6nh'}
{'comment': 'Honest question: what was Obama merch? He had campaign stuff (was surprised when I had to buy, then appreciated it was a well organized campaign), his books, later fundraising for his presidential library and foundation. Other than third parties, did he develop and promote Obama named goods?', 'created': '2024-11-10 03:15:35', 'submission_id': '1gnn6nh'}
{'comment': '>Maybe that’s just the direction we are going?\n\nThe GOP set the stage. Because GOP used lies, divisiveness, and mistrust for decades so they could keep giving the wealthy and corporation tax cuts, they made their voters receptive to a con man like Trump.', 'created': '2024-11-10 03:25:41', 'submission_id': '1gnn6nh'}
{'comment': '*stupid Americans love a good slogan', 'created': '2024-11-10 14:32:16', 'submission_id': '1gnn6nh'}
{'comment': "Listen there's no one in the world who does not want to believe this, I don't want to believe that we have voted a president in office in this country who says he wants to do away with the Constitution, has a hit list that he is going to have the military arrest and detain his political enemies, Or Just mere weeks before the election Stomped on One of our most sacred Grounds in this country at Arlington Cemetery Corey Landowski Physically grabbed her and slung her to the side, while Trump standed on our heroes Graves getting his Photo Shot, you know the one he calls Losers 🤦\u200d♂️\n\n[This will be his Downfall ](https://www.politico.com/news/2024/11/06/trump-retribution-enemy-list-00187725)", 'created': '2024-11-10 16:18:24', 'submission_id': '1gnn6nh'}
{'comment': "Can we have 2000's Republicans back? Pretty please", 'created': '2024-11-10 06:52:13', 'submission_id': '1gnn6nh'}
{'comment': "I think that's the difference tho. My parents would be 100% maga today but in the 90s they only had the Enquirer and Rush Limbaugh and the politicians stayed cruel but boring (Newt/Mitch etc) it wasn't a 24 hour news cycle, so they were distracted by other stuff to bring the fever pitch down a bit, celebrity gossip talk shows, tv sitcoms, 20/20, they didn't have a choice but to get some balance. They were forced to take a breath, take a break, watch the same shows as the libs. But then Fox news followed by Facebook happened and those types of people could keep letting the snowball roll, keep insulating, there was no need to break. now there's never a need to switch over to those common ground types of media.", 'created': '2024-11-10 01:37:31', 'submission_id': '1gnn6nh'}
{'comment': 'And rush Limbaugh/talk radio', 'created': '2024-11-10 03:41:52', 'submission_id': '1gnn6nh'}
{'comment': 'We HAVE to address the elephant in the room…far too many of our fellow citizens are brainwashed.\n\nIf you offer a starving person a grilled chicken breast or a steaming pile of shit with glass in it and they pick the shit because Fox News told them shit was delicious and grilled chicken was evil…the problem isn’t that you offered them chicken and not fish. It’s not that messaging was off. It’s not that you didn’t play the middle enough. It’s not that you lost connection. \n\nIt’s that the person you’re interacting with has had their reality warped. Their starvation was exploited by folks who need them. It will take them eating shit to realize on their own that they made a mistake. Our job is to figure out how to snap them back to reality—not pretend they aren’t living in an alternate one and treating them like that isn’t the case.', 'created': '2024-11-10 04:53:17', 'submission_id': '1gnn6nh'}
{'comment': "> Russia\n\nKey word here.\n\nI see a similar thing in Germany. There were neo-nazi parties in the past (NPD, DVU, REP), but they never went anywhere politically or were short-term scares at best.\n\nThe current one is wildly more successful.\n\nWhy? What is their secret ingredient when their politics are indistinguishable from all the other extreme right wing parties?\n\nShh ... it's Russia.", 'created': '2024-11-10 14:28:13', 'submission_id': '1gnn6nh'}
{'comment': 'Exactly. He doesn’t say anything is substance and they love it because, as we saw with Kamala who did have specific plans, they still insisted she didn’t have a platform, because they don’t actually understand what she’s saying.', 'created': '2024-11-10 02:29:49', 'submission_id': '1gnn6nh'}
{'comment': 'A lot of those adults graduated long before Reagan. \n\nWe put the smart kids in Honors classes and left the rest of them to rot.', 'created': '2024-11-10 01:34:22', 'submission_id': '1gnn6nh'}
{'comment': 'Tea Party + Trump = MAGA', 'created': '2024-11-10 01:56:03', 'submission_id': '1gnn6nh'}
{'comment': "Just hope Trump lives through this term. I don't think JD Vance would be much better, maybe worse.", 'created': '2024-11-10 02:27:06', 'submission_id': '1gnn6nh'}
{'comment': 'That would be more accurate.', 'created': '2024-11-10 01:54:34', 'submission_id': '1gnn6nh'}
{'comment': "The propaganda out there is making people more extreme and anti liberal democracy, more pro-authoritarian. That's not good.", 'created': '2024-11-10 02:17:21', 'submission_id': '1gnn6nh'}
{'comment': 'Valid. I like it', 'created': '2024-11-12 19:14:29', 'submission_id': '1gnn6nh'}
{'comment': 'Preach!', 'created': '2024-11-10 04:14:08', 'submission_id': '1gnn6nh'}
{'comment': 'I think they still do that.', 'created': '2024-11-10 04:41:52', 'submission_id': '1gnn6nh'}
{'comment': 'Absolutely. They finally got their glorious leader.', 'created': '2024-11-10 01:58:14', 'submission_id': '1gnn6nh'}
{'comment': 'Project 2025 wants Vance in charge. Personally, I don’t see the 25th amendment being used, because the cult will blame Vance and company. I think the 2025 people will stage another shooting, only effective this time, and then blame whatever group they need to vilify.', 'created': '2024-11-10 07:48:58', 'submission_id': '1gnn6nh'}
{'comment': "It's just insane that the party of less government went full on most controlling authoritarian government. And it's chilling how quickly people became ok with that.", 'created': '2024-11-10 02:23:54', 'submission_id': '1gnn6nh'}
{'comment': "Yep. \n\nAnd then a lot of voters couldn't recognize that Trump was authoritarian, but they bought into some his empty promises.\n\nAnd then what we saw with young male voters in this election made sense. Historically, young males are more easily radicalized than other age/gender demographics.\n\nSpeaking of which, anybody with kids needs to make sure they're teaching them to be resistant to propaganda.", 'created': '2024-11-10 03:31:27', 'submission_id': '1gnn6nh'}
{'comment': 'Also worthy mentioning that MAGA is the initial reaction to Obama’s presidency. Trump cultured the hatred and fear of Obama. That’s why they say Obama was divisive; his Presidency broke the minds of racist conservatives.', 'created': '2024-11-10 02:00:40', 'submission_id': '1gnn6nh'}
{'comment': "I think you just touched on the direction of thought to move with, like a therapist will ask someone who is hallucinating if that is in the room with us now but just put them into the question of what is maga is it conservative and what does that mean, make them explain it and help them explain it don't try and talk them out of it just let them get it in mind what a conservative government really is. Then see if they can see if trump fits that description, I know its hard to imagine linear thinking having a conclusion but what else can you do?", 'created': '2024-11-10 03:38:56', 'submission_id': '1gnn6nh'}
{'comment': 'You could see it coming a mile away. The Tea Party came about because a bunch of 50 and over folks couldn\'t take the shock of a black president. Trump saw the opening and took advantage of these gross people and they eventually morphed into maga. Fox "news" was there every step of the way, feeding the mass of idiots their favorite dish 24/7: hate.', 'created': '2024-11-10 02:10:18', 'submission_id': '1gnn6nh'}
{'comment': 'That would be a good experiment to have! I wonder where such a conversation would lead. And you bring up an idea, there really should be some serious sociological and psychological studies going on using the subjects online to really gain a greater understanding of this group thinking. Those poor therapists that would have to get into endless dialogues with these insufferable folks, that deserves a high pay grade.', 'created': '2024-11-10 03:42:42', 'submission_id': '1gnn6nh'}
{'comment': 'Exactly. Been saying that for years.', 'created': '2024-11-10 02:11:48', 'submission_id': '1gnn6nh'}
{'comment': "Here's a humorous side note and hard right segue but imagine the demise of North Korea beginning with this.\n\n[https://www.ukrainianworldcongress.org/north-korean-soldiers-in-russia-gain-internet-access-view-porn/](https://www.ukrainianworldcongress.org/north-korean-soldiers-in-russia-gain-internet-access-view-porn/)", 'created': '2024-11-10 03:54:47', 'submission_id': '1gnn6nh'}
{'comment': 'Brings me back to my first days of scrambled cable pay per view. How could those boys ever go back?', 'created': '2024-11-10 03:58:48', 'submission_id': '1gnn6nh'}
{'comment': 'Everything’s up-to-date in Kansas City…\nThey’ve gone about as fur as they can go….', 'created': '2024-11-10 07:38:44', 'submission_id': '1gnn6nh'}
{'comment': 'Seriously humorous to imagine the conversations if they do go back,', 'created': '2024-11-10 04:01:16', 'submission_id': '1gnn6nh'}
{'comment': 'All of us must now repeat a four-year "Rise of Antidemocratic Populism 101" course because half the class failed a single-question open-note test.', 'created': '2024-11-10 00:34:10', 'submission_id': '1gnm2fk'}
{'comment': 'This is the third time in my lifetime that liberties in the US were threatened. This time, the voters voted it away', 'created': '2024-11-10 01:10:41', 'submission_id': '1gnm2fk'}
{'comment': 'Hopefully we can fend them off at least until the mid terms.', 'created': '2024-11-10 01:32:17', 'submission_id': '1gnm2fk'}
{'comment': 'Democrats expect their candidate to be perfect. Republicans expect their candidate to have a pulse.', 'created': '2024-11-10 05:26:22', 'submission_id': '1gnm2fk'}
{'comment': 'As a Yankee deep behind enemy lines in Mississippi since 1997, this is an accurate statement.', 'created': '2024-11-10 00:08:39', 'submission_id': '1gnm2fk'}
{'comment': "I'm scared, and I'm a straight white man in California. I'm very scared for people in more vulnerable circumstances. I'll do whatever I can to fight back, hopefully its enough.", 'created': '2024-11-10 03:32:25', 'submission_id': '1gnm2fk'}
{'comment': None, 'created': '2024-11-10 00:21:47', 'submission_id': '1gnm2fk'}
{'comment': 'BUT MAH EGGSS', 'created': '2024-11-10 04:46:19', 'submission_id': '1gnm2fk'}
{'comment': 'The united states of russia, concentration camps coming soon to a venue near you.', 'created': '2024-11-10 00:37:45', 'submission_id': '1gnm2fk'}
{'comment': 'Get organized for the midterms. Donate, write letters and postcards, call and text. \nMassive blue wave to throw a GIANT nail in the tires of Russian puppets.', 'created': '2024-11-10 01:21:51', 'submission_id': '1gnm2fk'}
{'comment': "Well, where's the manifesto of resistance to the fascists? We need the 2024 edition. I am hopeful, the 1933-1945 edition worked out well for us.", 'created': '2024-11-10 00:03:23', 'submission_id': '1gnm2fk'}
{'comment': '17 blue states have chose to resist the orange turd conservative actions. Resistance 3.0.\n\n*', 'created': '2024-11-10 00:02:03', 'submission_id': '1gnm2fk'}
{'comment': 'We need to prepare to take back the house and the senate in 2026, and to do that, we need to wonder why we lost.', 'created': '2024-11-10 01:36:25', 'submission_id': '1gnm2fk'}
{'comment': "2016 you didn't know. 2024 you DO know, they even wrote it down for you and gave it a title...Project 2025. WTAF", 'created': '2024-11-10 05:03:42', 'submission_id': '1gnm2fk'}
{'comment': 'We can do both. This is like the “don’t boo, vote!” thing. We can do both.\xa0', 'created': '2024-11-10 01:34:20', 'submission_id': '1gnm2fk'}
{'comment': 'Ashamed of and disgusted by my country', 'created': '2024-11-10 18:39:59', 'submission_id': '1gnm2fk'}
{'comment': 'The democrats need to counter the well oiled republican propaganda machine. \nThat’s why we lost big time. \nFOXnews. X, social media and right wing radio networks and small news networks need to be pushed back and even better overwhelmed. \nBottomline. People are stupid. Emotions run by the underbelly decides voting. Not intellectual facts and science.', 'created': '2024-11-10 10:40:26', 'submission_id': '1gnm2fk'}
{'comment': 'Yep, who REALLY won the civil war? WW2? Well, now we know', 'created': '2024-11-10 16:41:34', 'submission_id': '1gnm2fk'}
{'comment': 'We must heal, regroup, then we can prepare...', 'created': '2024-11-09 23:47:45', 'submission_id': '1gnm2fk'}
{'comment': 'No, not all of us. Red states did', 'created': '2024-11-10 00:42:37', 'submission_id': '1gnm2fk'}
{'comment': 'Be prepared and please note that we all have targets on our backs now. This from the "pro-life" group. [https://www.youtube.com/watch?si=\\_NmV6SrX8ST1rzAE&v=09\\_Riz42ELc&feature=youtu.be](https://www.youtube.com/watch?si=_NmV6SrX8ST1rzAE&v=09_Riz42ELc&feature=youtu.be)', 'created': '2024-11-10 20:18:30', 'submission_id': '1gnm2fk'}
{'comment': None, 'created': '2024-11-11 02:47:27', 'submission_id': '1gnm2fk'}
{'comment': "What if.... this time it's Iraq or Iran that found a new way to destroy the US?", 'created': '2024-11-11 23:41:33', 'submission_id': '1gnm2fk'}
{'comment': 'Look to the happy folks funding Right-Wingnut media. Follow the money and stop blaming the ignorant dips that were whipped into fear-frenzy by the lies.', 'created': '2024-11-10 07:23:40', 'submission_id': '1gnm2fk'}
{'comment': 'hopefully it goes quick, the blowup from the people.', 'created': '2024-11-10 00:34:51', 'submission_id': '1gnm2fk'}
{'comment': 'We had a decade to study!', 'created': '2024-11-10 01:52:17', 'submission_id': '1gnm2fk'}
{'comment': 'A multiple choice single question open note test, at that', 'created': '2024-11-10 04:52:41', 'submission_id': '1gnm2fk'}
{'comment': '4 years? \n\nHow is that aspect of the constitution relevant anymore?', 'created': '2024-11-10 17:07:47', 'submission_id': '1gnm2fk'}
{'comment': "That's what's so disheartening about this for me and the reason why I just feel like giving up. I'll still vote blue but I'm not going to expect or even hope that things will get better. This defeat was so resounding, and what that says is the majority of the country either promotes or is completely fine with authoritarianism, christofascism, and an Indian-style caste system where one group of people is superior to all the others. This was a complete repudiation of democracy, pluralism, acceptance of other views, and leaders that look out for the little guy/girl. The message that this country sent was that we value rich, racist, misogynist assholes. I guess I don't know what other way to interpret it, and the one idea that keeps returning over and over in my mind is that this is who we are now.", 'created': '2024-11-11 00:51:35', 'submission_id': '1gnm2fk'}
{'comment': 'And for 3 big reasons according to them.\n\n\nThe left hates men and unfairly called them names like weird NAZIs. This is what we get for calling them weird.\n\n\nThe economy\n\n\nSomeone has to finally deport these illegals getting free housing and Healthcare.\n\n\nThat\'s what I keep seeing. Abortion is there but that\'s really just under the nazi controlling part they are denying. They hide it under "reasons".\n\n\n\n\n\xa0We all need to all just call them vile haters. Not weird, not nazi, not magats...just vile haters and who wants to be around their killjoy self? Tell them how fun they must be at parties, but you wait you don\'t care because you will never invite them anyway.', 'created': '2024-11-10 14:12:06', 'submission_id': '1gnm2fk'}
{'comment': 'DEY TUK AWR JOOOOOBS', 'created': '2024-11-14 03:46:43', 'submission_id': '1gnm2fk'}
{'comment': 'Timothy Snyder, historian at Yale, a scholar of Eastern Europe in the 20th century, has written a short book (he calls it a pamphlet) called *On Tyranny*. Read it and see if you think it fits the bill \n\n\nSome points:\n\nVoting matters.\n\nCoalitions matter.\n\nProtect institutions\n\nDo not obey in advance.\n\nPay attention to language', 'created': '2024-11-10 00:36:23', 'submission_id': '1gnm2fk'}
{'comment': 'Not an answer to your post, but I still feel it\'s relevant.\n\nJust because the loser kicks down your sandcastle doesn\'t mean you don\'t know how a sandcastle should be built, nor does it make their upside down bucket a "winner".\n\nLoose lips sink ships, but so do plotholes.\n\nEdit: grammar', 'created': '2024-11-10 02:08:21', 'submission_id': '1gnm2fk'}
{'comment': 'Lol cute, thinking we’ll have free and fair elections in 2026.', 'created': '2024-11-10 05:49:13', 'submission_id': '1gnm2fk'}
{'comment': 'I’m still (potentially naively) hopeful for a House flip. Unlikely but still within the realm of possibility.', 'created': '2024-11-10 06:55:44', 'submission_id': '1gnm2fk'}
{'comment': 'Pushing the message that Trump is a Nazi will not get Democrats elected.', 'created': '2024-11-10 07:51:13', 'submission_id': '1gnm2fk'}
{'comment': "This. People are just stupid. That's the only answer", 'created': '2024-11-10 13:28:18', 'submission_id': '1gnm2fk'}
{'comment': 'Healing is going to take too long, it’s only 2 months til his inauguration. We obviously can’t depend on Biden doing *anything* so we need leaders to prepare. Hahaha…Democrats? We’re screwed.', 'created': '2024-11-10 02:31:11', 'submission_id': '1gnm2fk'}
{'comment': 'Every swing state did as well.\xa0', 'created': '2024-11-10 03:36:05', 'submission_id': '1gnm2fk'}
{'comment': "Well those of us who've been around awhile know the 4 year gap as voting years. If they hold something relevant to those in power, but memorable, with the same frequency... Eventually those of us who've been here since Before die or are killed and our descendants eventually forget there was anything except the new thing.\n\nMy apologies if this sounds like I had a stroke while writing it. The idea is in my head but I don't know if it made it onto the page in a way that makes sense.", 'created': '2024-11-12 10:40:53', 'submission_id': '1gnm2fk'}
{'comment': 'Those aren\'t real reasons. Those are things they are just claiming as excuses for what they were going to vote for regardless. It literally doesn\'t matter what we do or did. We\'ve tried going "high", we\'ve tried rationalizing and presenting facts, we tried "understanding" them, we called them weird and Nazi\'s because they are... literally none of it mattered. They were going to vote this way no matter WHAT the left did. I really wish people would stop trying to blame Democrats for what they did or didn\'t do because none of it was going to matter.', 'created': '2024-11-10 15:26:45', 'submission_id': '1gnm2fk'}
{'comment': "Due to political realignment, Dems have higher turnout in midterms. So there's that.", 'created': '2024-11-10 11:21:55', 'submission_id': '1gnm2fk'}
{'comment': 'While this may be accurate, it’s very different to describe him in any other way, \n\nif you know anything about Hitler, you know that he was described as “the politest asshole you would ever meet” with that he literally was cordial and considerate in person, personable charming, and polite, he would articulate his points of view in a manner that made them seem plausible even if not palatable, and if you disagreed with them he was fine with that, but still held his own ideas, and was very convincing in his convictions, \n\nMuch the same as Trump, in person one on one he isn’t the man on stage in front of cameras, he’s a guy just like anybody else who happened to be born rich, his entire persona changes once the cameras are off, but on stage he puts on a show, he’s an entertainer, he not unlike Reagan, is acting the part of a president, the admiration of his audience, their applause and laughter are sustenance for his ego and allow him to portray the character effectively enough to be convincing, \n\nThe problem here is none of it is real, he’s easily manipulated with complements and admiration, his ambitions are only to be adored and validated with the respect of his peers in the political world, and he will gravitate towards those who do like a child gravitates towards their mother,\n\nExpect his turnover rate to be significant again, expect his failures to be blamed on anyone but him, and watch carefully as he is coddled and coerced into giving up virtually everything this country has fought to be for his own gratification', 'created': '2024-11-10 14:09:44', 'submission_id': '1gnm2fk'}
{'comment': None, 'created': '2024-11-10 15:17:34', 'submission_id': '1gnm2fk'}
{'comment': 'Ok, lead the way!', 'created': '2024-11-10 02:40:57', 'submission_id': '1gnm2fk'}
{'comment': 'So your idea/plan is...', 'created': '2024-11-10 03:57:02', 'submission_id': '1gnm2fk'}
{'comment': 'it was the economy plain and simple....', 'created': '2024-11-11 01:22:58', 'submission_id': '1gnm2fk'}
{'comment': 'The economy was doing fantastic. Low unemployment, high stock market, inflation finally under control… all of which is going to be torpedoed because people are too ignorant and believed the shit they were told by propaganda outlets that told them the economy was shit when it absolutely wasn’t. They voted based on manipulated feelings rather than facts.', 'created': '2024-11-11 13:11:14', 'submission_id': '1gnm2fk'}
{'comment': 'Prices are too high and wages too low, but nobody was talking about bring wages up, just cutting taxes, i feel strongly Republicans are marching to a world where there is no income tax ? maybe, i really dont know, that was a old school idology i dont know if Trump embraces that', 'created': '2024-11-11 23:02:53', 'submission_id': '1gnm2fk'}
{'comment': 'Trump is absolutely not advocating for that at all. He only intends to cut taxes for the wealthy and corporations. Anyone who makes below 6 figures that believes they will get their taxes cut are delusional. No income tax would also decimate all public spending and services, as well as federal spending like military spending. It ain’t happening. Not for someone who’s not a billionaire that is. \n\nIf they cut social security taxes (which is on the table) that just quickens the rate at which social security will get phased out. Wait til they announce you can’t collect SSI until you’re 75 and can’t on Medicare until then either. Raising the age for these two entitlements are absolutely on the table with these people.', 'created': '2024-11-11 23:17:14', 'submission_id': '1gnm2fk'}
{'comment': 'Conservatives have been pushing for no income tax for a long time, for nobody, no federal reserve as well', 'created': '2024-11-12 01:05:29', 'submission_id': '1gnm2fk'}
{'comment': 'Have a hands-off primary in 2028. There will be new stars between now and the midterms', 'created': '2024-11-10 00:01:53', 'submission_id': '1gnlw9n'}
{'comment': 'I honestly wouldn’t be surprised if the first woman president is a republican', 'created': '2024-11-10 00:08:26', 'submission_id': '1gnlw9n'}
{'comment': 'New blood. We need to stop telling the people what they want and give the people what they want. No more playing by rules that Republicans don’t follow anyways. Republicans are going to generate a ton of anger over the next few years, we need to use that.', 'created': '2024-11-10 00:44:07', 'submission_id': '1gnlw9n'}
{'comment': 'We associate with like minded people and spend our money at local business that share our values. America voted and they want someone like Donald Trump. Let the corporations eat them alive.', 'created': '2024-11-09 23:59:32', 'submission_id': '1gnlw9n'}
{'comment': 'https://preview.redd.it/by3mnyjmjyzd1.jpeg?width=630&format=pjpg&auto=webp&s=008452c7b0216c8bb2bc3efac7d5aacf6c32fdfe', 'created': '2024-11-10 00:07:59', 'submission_id': '1gnlw9n'}
{'comment': 'https://preview.redd.it/hx6rlvp6kyzd1.jpeg?width=722&format=pjpg&auto=webp&s=8d55ef5b7fdbed93fd37dd0369783b4308c4c8a4\n\nGTL 2028', 'created': '2024-11-10 00:11:06', 'submission_id': '1gnlw9n'}
{'comment': 'Jeff Jackson from NC, AOC, Mayor Pete, Eric Swalwell, Jasmine Crockett to name a few. Look, I\'m 56, but it\'s time to see Chuck, Nancy and the other "old folks" in the House and Senate to make way for the younger generation.\n\nI\'m totally down for another 40-something POTUS!\n\nFuck the idiots over in the GOP.', 'created': '2024-11-10 02:09:56', 'submission_id': '1gnlw9n'}
{'comment': 'What do you mean? Obama just won his 5th term, lets go for 6.', 'created': '2024-11-10 00:13:55', 'submission_id': '1gnlw9n'}
{'comment': 'Uh… Bernie is 83, so not Bernie.', 'created': '2024-11-10 00:25:39', 'submission_id': '1gnlw9n'}
{'comment': '​\n\nhttps://preview.redd.it/fafc7iv5fyzd1.jpeg?width=600&format=pjpg&auto=webp&s=51890d9be2dfca057c76e65fd41ccb887fa3049c', 'created': '2024-11-09 23:42:58', 'submission_id': '1gnlw9n'}
{'comment': 'To the pub', 'created': '2024-11-10 00:11:10', 'submission_id': '1gnlw9n'}
{'comment': 'First, Dems actually need to turn out to vote.', 'created': '2024-11-10 01:50:54', 'submission_id': '1gnlw9n'}
{'comment': 'Democrats need to become populist.', 'created': '2024-11-10 00:22:16', 'submission_id': '1gnlw9n'}
{'comment': 'Chris Murphy, CT Senator seems like a reasonable fellow', 'created': '2024-11-10 00:00:53', 'submission_id': '1gnlw9n'}
{'comment': 'Probably Norway', 'created': '2024-11-10 00:08:42', 'submission_id': '1gnlw9n'}
{'comment': 'Canada', 'created': '2024-11-10 00:13:10', 'submission_id': '1gnlw9n'}
{'comment': 'I honestly don’t even know. It’s a war between democracy and fascism now. We have officially lost control of our own country. Russia and Oligarchs are controlling the right (and the country right now). \n\nThe left can no longer fight this monster on their own. It goes beyond parties and American politics now. We’re gonna need help from the last few powerful left leaning countries in the world.', 'created': '2024-11-10 00:03:21', 'submission_id': '1gnlw9n'}
{'comment': 'We have to stop running women. \n\nI just don’t think the majority Americans are able to handle it. I know it’s stupid but if we’re trying to win races I think that’s how it’s going to have to be until there’s a woman who undeniably has the people behind her. \n\nFor the record I obviously voted Kamala. I’m just speaking strategically for the party.', 'created': '2024-11-10 06:44:45', 'submission_id': '1gnlw9n'}
{'comment': 'There is only one way: Whitmer-Buttigieg 2028!\n\nhttps://preview.redd.it/z554th0klyzd1.jpeg?width=259&format=pjpg&auto=webp&s=49171833f71f830e99ac7b7b2043625927ebc89a\n\n(In all seriousness, the Democratic Party needs to return to some New New-Deal Style Liberalism that puts emphasis back on the working class, welfare, and unions. Biden has made progress towards that vision, but I felt like he and Kamala Harris never campaigned too heavily on it to instead pursue the illusive "Cheney Republican."', 'created': '2024-11-10 00:18:46', 'submission_id': '1gnlw9n'}
{'comment': 'None of the above', 'created': '2024-11-10 00:23:22', 'submission_id': '1gnlw9n'}
{'comment': 'Backward.', 'created': '2024-11-09 23:44:50', 'submission_id': '1gnlw9n'}
{'comment': 'Id love to see Whitmer be the nominee with Mark Kelly as her running mate', 'created': '2024-11-10 00:06:51', 'submission_id': '1gnlw9n'}
{'comment': 'IMO and based on turnouts over the last three general elections, I think the Dems need to pick three guys right now that they want to prop up. They need to start campaigning today. Trump campaigned none stop since what 2015? Dems need that kind of coverage for whoever they end up picking. The top two end up on the 2028 ticket. And as much as I absolutely hate it, it has to be men. America as a whole is not ready for a female president no matter how deserving the candidate may be. It’s shit that that is the case but it’s clear there are millions of people that would rather allow trump to win than elect a woman. Pick your three, let them focus on campaigning. Start today.', 'created': '2024-11-10 00:27:12', 'submission_id': '1gnlw9n'}
{'comment': 'Without Trump I am not sure it matters the GOP isn’t going to get the votes without him. Nobody but Trump can act like Trump and get away with it.', 'created': '2024-11-10 00:08:15', 'submission_id': '1gnlw9n'}
{'comment': 'It’s going to be someone off the radar right now. When one party is despondent like this, someone fresh tends to come along and ignite everyone.\n\nAfter a long stretch of GOP control, Bill Clinton was a completely different kind of Democrat — young, smooth-talking Southern liberal governor. People went crazy for it.\n\nDems despaired for eight years of the Bush administration, viewing him as illegitimate. After Bush got stronger, not weaker, in 2004 (kinda like Trump now!) the Party had no idea what to do. No one outside the diehard politicos had any idea who Barack Obama was.\n\nAfter consecutive humiliating losses to Obama, Trump defied the odds and completely changed the Republican Party and the electorate that elects Republicans.\n\nI think it will be someone different. Likely younger and more of a populist who speaks their mind instead of trying to appease the middle. And more\nlikely someone from a red state than a blue one.', 'created': '2024-11-10 00:21:30', 'submission_id': '1gnlw9n'}
{'comment': 'My checklist:\n1. Autopsy on this election so we can learn from our mistakes.\n2. Prepare for the onslaught for Project 2025 at the state level.\n3. Retire the old guard from leadership.\n4. Revamp the DNC to meet and pass the GOP on the media front. Podcasts, tv shows, social media.\n5. We need to do outreach at the most granular level possible. Every Dem office should be doing community events to engage voters. We need to listen, see them, and learn what is plaguing them. Then, take that feedback and use it to guide our state and national policies.\n6. As part of that outreach, we need to start doing community building. What this means is different to different areas. It could be partnering with food pantries, building houses, and working with local leaders to support initiatives and programs that help communities get just a little better.', 'created': '2024-11-10 03:22:16', 'submission_id': '1gnlw9n'}
{'comment': "Look at the Presidential candidates that won, and look at those that lost. \n\nWINNERS \nBill, Obama, Biden\n\n \nLOSERS \nHillary, Dukakis, Harris, Kerry\n\n \nSTOP NOMINATING ERUDITE PEOPLE FROM THE COASTS!!!!!\n\nIf we want to win, we need to look at Beshear or Shapiro. I'd like to say Whitmer, but I do not believe that the US will vote for a woman. \n\nWe need to stop running in the country we want, and make a campaign to win the country we have.", 'created': '2024-11-10 03:28:20', 'submission_id': '1gnlw9n'}
{'comment': 'Towards a Russia-style authoritarian state.', 'created': '2024-11-09 23:53:53', 'submission_id': '1gnlw9n'}
{'comment': 'Kamala ran a great campaign. People just failed her. I’d vote for her again', 'created': '2024-11-10 00:02:25', 'submission_id': '1gnlw9n'}
{'comment': 'Jeff Jackson is the template', 'created': '2024-11-10 00:37:57', 'submission_id': '1gnlw9n'}
{'comment': 'Idk man. We need tough hardass people in government who are benevolent instead of insane. And I just don’t see the modern DNC accommodating that because they’re too focused on the psyop and the status quo and keeping things super stable without any good hard pushes forward like the republicans are giving a good hard push backwards. So I just don’t know where the fuck we go from here…I just don’t know…', 'created': '2024-11-10 02:45:45', 'submission_id': '1gnlw9n'}
{'comment': "lol. We'll be lucky to have punchcard voting by the time the next election rolls around.", 'created': '2024-11-09 23:59:11', 'submission_id': '1gnlw9n'}
{'comment': 'Aside: The requirement of a picture or link for discussions like this is stupid.\n\nI think the Democrats need to figure out what they are about. Are they going to attempt to become the party of organized labor/working class voters again?\n\nOr are they going to build on their human rights/environmentalism legacy?\n\nOr something else?\n\nI don\'t think it works to go after all of them. The working class, in voting for Trump, proved that they don\'t much care about rights or the environment. They don\'t like trans kids. They selected a bigot and a racist.\n\nIf the answer is "we want everyone", it will probably fail. They might win a particular election, but they won\'t hold on to power. If the answer is "we embrace the values of the working class", then maybe they could win. It will be challenging because the Republicans have already sold out to that. But I will be elsewhere. I don\'t like those values. I\'ll be wherever suburbanites go. ("Suburbanites" is not a perfect term, but -- the well-educated, relatively affluent, thoughtful people who actually study position papers and stuff like that. Who pay some attention.)\n\nIf the answer is something else, then we\'ll have to see.\n\nI don\'t think the current configuration is stable. The well-educated and relatively well-off (but not rich) will go somewhere, but I don\'t know where. I don\'t think their values are compatible with the Trump-leaning working class. That doesn\'t mean they are unsympathetic, but when they speak up for their values, they hear that they are "condescending". The working-class folks don\'t like them. And that is a big fault line. The suburbanite values (for lack of a better term) are not going to be OK with being cruel to LGBTQ+ folks; we know too many of them. They aren\'t going to be OK with selling out the enviornment. They don\'t think much of Trump\'s tariff plan, which is stupid.\n\nIt\'s not clear to me where the Democrats will skate next. But my commitment is to my values, not to a party.', 'created': '2024-11-09 23:49:45', 'submission_id': '1gnlw9n'}
{'comment': 'Talk about things that actually matter to average people. Go all in on climate, education, housing, food prices. Stop talking about abortion among other human rights related issues..you can focus on those things once you’re actually IN office.', 'created': '2024-11-10 02:57:05', 'submission_id': '1gnlw9n'}
{'comment': "Bernie is too old. You can't honestly think AOC has the experience to be president thought, right? She might make a good VP in the 2030s but if we learned anything from this election it's that a moderate democrat is the only chance we have.", 'created': '2024-11-10 06:04:59', 'submission_id': '1gnlw9n'}
{'comment': 'Take the fucking kiddy gloves off and play hard ball, we have no time to waste.', 'created': '2024-11-10 07:51:14', 'submission_id': '1gnlw9n'}
{'comment': 'If Kamala can’t win, AOC has zero chance', 'created': '2024-11-10 08:11:13', 'submission_id': '1gnlw9n'}
{'comment': 'The incumbent party had been voted out in every major developed country in the wake of COVIDflation. The takeaway here should not be that everything we did needs to be reexamined or that we had a flawed candidate. Add to that how misinformed the electorate is and, even then we barely lost. After 4 years of what’s coming the pendulum will swing back so hard it will snap off.', 'created': '2024-11-10 00:52:00', 'submission_id': '1gnlw9n'}
{'comment': '\n\nThe only man who will call out Republicans on all their bullshit.', 'created': '2024-11-10 01:38:06', 'submission_id': '1gnlw9n'}
{'comment': 'It\'s absolutely not AOC or Sanders. Exit polls are saying that voters felt Harris was too far to the left. The "Leftist" block stayed home or voted third party. Thats been the trend, so now no smart candidate is going to tailor their messages with them in mind. \n\nUnfortunately, I think the only takeaway is that racism, misogyny, and conservatism are so ingrained in the U.S. culture that we\'re back finding a white male Moderate to carry the torch. \n\nThinking 2028 is too far. We need to retake the house and senate. It requires ALL of us, I hope the "Left" sees that now.', 'created': '2024-11-10 00:05:04', 'submission_id': '1gnlw9n'}
{'comment': 'Andy Beshear 2024.\n\nNo to Shapiro Newsom, Whitmer, AOC, Sanders, Harris. We need a new cast of characters.', 'created': '2024-11-10 00:07:06', 'submission_id': '1gnlw9n'}
{'comment': 'I think Democrats need to get serious about winning elections and realize that a center left candidate that appeals to working class voters and is electable nationally is the best path forward. Democrats have to drop the liberal litmus tests and learn to turn out for good candidates even though they aren’t perfect.', 'created': '2024-11-10 03:25:47', 'submission_id': '1gnlw9n'}
{'comment': 'World War 3 and then who knows where the Americans will stand.', 'created': '2024-11-10 00:02:55', 'submission_id': '1gnlw9n'}
{'comment': 'Old politics won’t defeat Christian Nationalism. \n\nA new paradigm is necessary.\n\nIlluminism took humankind from centuries of dark ages.\n\nThe solution is massive education with the purpose of creating critical thinking citizens. The education today is just to serve the elite. Just to work.', 'created': '2024-11-10 00:27:24', 'submission_id': '1gnlw9n'}
{'comment': 'I fully expect AOC’s hat to be in the ring and she has my utmost respect as a politician. I don’t think she’d win the nomination and I’m even more skeptical that she’d win the electoral college.', 'created': '2024-11-09 23:58:21', 'submission_id': '1gnlw9n'}
{'comment': 'As if we will have any democratic elections coming.', 'created': '2024-11-10 00:01:18', 'submission_id': '1gnlw9n'}
{'comment': None, 'created': '2024-11-10 00:27:17', 'submission_id': '1gnlw9n'}
{'comment': "Not #2 or #3. Sanders is near death and if we couldn't elect a moderate like Kamala Harris then AOC is a guaranteed loser. I'm absolutely heartbroken over Kamala's loss, I still can't believe that this country chose another four years of insanity and chaos over her. 2028 is going to be a free-for-all on both sides and I can't imagine right now who we could nominate to win and pick up the pieces of our broken country.", 'created': '2024-11-10 03:03:47', 'submission_id': '1gnlw9n'}
{'comment': "1. Work to ensure we have a democracy in 2028.\n2. Listen to the people on the margins who voted for Trump or stayed home and understand why - deeply.\n3. Figure out how to communicate to people living paycheck to paycheck and don't care about politics at all.\n4. Figure out a progressive populism that the middle can support\n5. Build a war chest for the lawyers and reporting necessary to survive Trump", 'created': '2024-11-10 05:35:39', 'submission_id': '1gnlw9n'}
{'comment': "I've been posting and telling my conservative friends congratulations that you now have total control. Everthing that happens going forward is now on you. (I think that scares them) Wouldn't it be better if there was one house to provide a check? (looking forward to 2026 congressional races)", 'created': '2024-11-10 15:56:02', 'submission_id': '1gnlw9n'}
{'comment': 'No matter what, Trump and his cult of personality aura will finally be gone after 4 years.\n\nHe too much of a narcissist to mentor and/or endorse a successor.\n\nUntil he leaves this world, Trump wants it all to be about him.\n\n Trump is 78 years old right now, does not believe in nutrition and exercise, and hae been over exerting himself. \n\nWe saw the decline with Biden from the 2020 campaign to that debate early this year.\n\nTrump will be done in 4 years, if he even makes it that long.\n\nSo, we plan for Trump to run his course.', 'created': '2024-11-10 01:39:49', 'submission_id': '1gnlw9n'}
{'comment': 'What we’re not going to do is take ramblings of the guy from Massachusetts who ran unopposed. We didn’t lose because we dared to say “trans people deserve equal rights”. That’s fucking idiotic.', 'created': '2024-11-10 00:01:27', 'submission_id': '1gnlw9n'}
{'comment': 'Honestly, I feel like we wasted Walz on this ticket. He should have been the top of the ticket and I feel like he will be old news now in 2028, but we will see.', 'created': '2024-11-10 00:21:03', 'submission_id': '1gnlw9n'}
{'comment': "Josh Shapiro is an extremely likely candidate in 2028. Unless something happens that would ruin his chances. He's a good governor of my state of PA, still think he should've been Harris's running mate (but oh well),smart, gets shit done, needs to not be as moderate as he is at times, but he's got 4 years to fix that\n\nhttps://www.inquirer.com/politics/election/josh-shapiro-2028-presidential-election-frontrunner-20241107.html", 'created': '2024-11-10 00:34:38', 'submission_id': '1gnlw9n'}
{'comment': 'Put me in coach. I’ll do it. I’ll be 35 in 2028', 'created': '2024-11-10 00:57:48', 'submission_id': '1gnlw9n'}
{'comment': 'Well, if there is another election… I think Pete Buttigieg needs to be VP. With Newsom, Shapiro or someone else.', 'created': '2024-11-10 00:00:51', 'submission_id': '1gnlw9n'}
{'comment': "Just keep reminding trumplethinskin cult members that the high costs coming are all thanks to them. Don't forget to throw goodbye parties for all the Latino trumplethinskin supporters when they get deported.", 'created': '2024-11-09 23:47:08', 'submission_id': '1gnlw9n'}
{'comment': 'Vote me', 'created': '2024-11-10 00:16:29', 'submission_id': '1gnlw9n'}
{'comment': 'I’m going out for pizza then ice cream.', 'created': '2024-11-10 00:31:28', 'submission_id': '1gnlw9n'}
{'comment': "We're fighting ignorance and the uneducated... it's almost impossible unless we fight fire with fire.", 'created': '2024-11-10 00:31:55', 'submission_id': '1gnlw9n'}
{'comment': "I honestly don't know. Supposedly half the nation WANTS the wolf in the hen house.", 'created': '2024-11-10 00:32:42', 'submission_id': '1gnlw9n'}
{'comment': 'Join your local Dem committees. Volunteer and work hard for 2026. Push the party from within, don’t get complacent. \n\nOpen and transparent primary in 2028, hopefully produces a strong, populist candidate.\n\nIt absolutely sucks to say, but my opinion is fight fire with fire. Run a straight, white male with the balls to get their hands dirty. Don’t love him, but Newsom looks like a favorite right now. At least he’s one of the few vocal Dems willing to call shit out and flaunt our wins', 'created': '2024-11-10 00:33:48', 'submission_id': '1gnlw9n'}
{'comment': "We're on to 2026.", 'created': '2024-11-10 00:35:42', 'submission_id': '1gnlw9n'}
{'comment': 'We fight because Russia hacked the votes. \n\nFrom the image:\n\nGov. of Pennsylvania J. Shapiro, et. al.\nNov. 7th 2024\n\nThis is a formal Duty to Warn Letter. Per DNI Dir. Clapper’s 2015 directive to all agencies and contractors associated with intelligence and financial agency technologies. I have a Duty to Warn of suspicions of hacking, and have done so for my customers including Govt. Agencies, Dept. of Defense, F100 firms and numerous banks. I do so here as a directly affected voter.\n\nNearly all my investigations begin for one of two reasons. The hackers make a mistake triggering a system issue and/or the aggregate effects of the hacking creates results outside nominal expectations. There is a third and less common flag; an unrelated distraction to draw attention away from the hacking.\n\nAll three of these indicators are present in the election of Nov. 5th 2024. Element three, distraction via bomb-threats, is confirmed coming from Russian agencies. Element one is the inexplicable mismatch of reported votes vs. voter turnout. Here in Centre County initial tabulation was an absurdly low 67K votes when over 80K voters participated. Element two is also present. Our local scanner systems worked in testing, but were unable to communicate properly with tabulation systems after the bomb-scare. I note from experience - the failure of a scanning systems to properly load a database is an extremely common development when a system is changed without notice to the users. I have personally worked on similar issues where sudden scanner configuration failures were the first symptoms of system hacking.\n\nWith these three elements present, I suggest immediately doing a relatively simple set of preliminary checks. First, randomly selected precincts require manual comparisons of the number of voters who took ballots vs the scanned output of vote totals. Those did not match here in Centre County by apx 13K votes. Once added, those votes substantially changed outcomes and led to the outright reversals in multiple Centre County races.\n\nCentre County BOE now shows vote totals over 80K votes. Apx. 6% above 2020 turnout. In my professional opinion every county in PA as well as many in WI, MI and GA currently reporting lower vote totals vs. 2020 and/or also experienced a distraction bomb threat should undertake the same process My professional opinion is: many thousands of voters are being disenfranchised, likely by a malicious actor via errors in tabulation software. My concern has been proven correct and warranted here in Centre County PA.\n\nESignature - Stephen R. Spoonamore\nStephen Spoonamore (Resident - Centre County PA)', 'created': '2024-11-10 00:36:33', 'submission_id': '1gnlw9n'}
{'comment': 'Get more involved locally.', 'created': '2024-11-10 00:56:23', 'submission_id': '1gnlw9n'}
{'comment': 'I have so many thoughts on the subject I could write a whole fucking essay', 'created': '2024-11-10 01:07:32', 'submission_id': '1gnlw9n'}
{'comment': "I could go on all day, but after reading many varying perspectives, a few consistent things come to me. I'll try and limit this to 5 major points and some candidate suggestions.\n\n1. The playbook from 2016 and 2024? Burn it. The Obama era stuff no longer works, and we don't have candidates with the charisma of Obama to sell it.\n\nAlso, and I can't stress this enough, cease all the blaming and pointing fingers against other Dems/left leaners, and especially against moderates, right-leaners, Repubs, protest voters, etc. that are undecided or go for Trump or 3rd party. Let the policies and messaging do the talking. Good stuff and good messaging should equal good results. If you antagonize enough people through guilt-tripping and yelling, you are only going to lose. Find significantly better messaging (mostly related to economics) and find a much better balance for attacking and defending that does not exclusively talk about character or social policy. \n\n2. Renew/overhaul Democratic leadership. I think Pelosi and some company have to go and the Dems need to think younger and more populist. I'm not talking about Bernie or someone explicitly close to him, but someone who is able to navigate the working class and can sell broadly progressive policies through economic unification and messaging. In other words, find someone who is essentially a modern-day old-school type of Democrat that resembles the party's roots of being for the poor and working class.\n\nThe current democratic party has a stench of elitism and doner-coddling that may require a top-down leadership overhaul to alleviate. The Repubs have a stench of elitism and billionaire-coddling as well, but they are much better at making it look otherwise.\n\n3. Policies > ideology... to a certain extent. The absolute last things the Dems should do is give up on social progressivism. Without it, leftists and center-leftists most concerned with social-policy have no-one to go for, and them staying home, or voting for a Bernie-type 3rd party would be something the Dems would frankly have coming to them. These people aren't the majority of voters, but they aren't a negligable group either. Plus, giving up on social progress would be a moral disaster that will only cause things to get worse.\n\nBasically, to assist with better messaging and turnout, the Dems need to get their heads out of their ass and stress good policies over blaming and attacking all the time. Hopefully them losing the popular vote makes them realize this, because 2016 didn't.\n\n4. Have real primaries, and don't choose the candidate like in 2016 and 2024. We all remember the debacle in 2016 with Hillary and Bernie. That was a huge self-inflicted wound that they never tried to alleviate, and it cost us hugely. 2020 was different, and Biden did throw Bernie supporters enough to help out and help create a big tent.\n\n2024 was a mess for other reasons. Biden dropped out way too late despite his internal polling showing Trump at \\~400 EVs after the debate. The Dems lied to everyone by sticking with him and saying he was the best candidate in public, which was a blunder. Then Biden drops out late, and instead of doing a snap-primary, they immediately go with Harris.\n\nNow, I am not going to directly blame Harris for this. There was plenty of debate at the time on whether a snap-primary should've happened or not. It would've been tough to pull off, but at the same time, considering Biden's unpopularity, immediately going with someone so close to Biden was another error. If Harris survived a snap-primary, it might've helped a bit. If she won, then you don't have a huge sentiment that Harris was chosen by the establishment over the people. If she lost, then you could properly let the people choose and get some more of the Biden stench off the chosen candidate.\n\nNevertheless, the Dems have to desperately stop with the establishment and doner picks and exclusively let the primary voters choose.\n\n5. Attack with policies and solutions, not exclusively with character.\n\nVoters generally don't care about character. If they did, Trump would've been done with long ago. Attacking Trump and potential voters on character failed miserably and made us look very bad and very stupid. We have to keep some personal thoughts to ourselves and try more to unify instead of divide.\n\nCandidates (based off what I know):\n\nHarris and Walz: They are done. You could have Walz back at the next DNC as a speaker, but Harris is just done. It wasn't all her fault, but it is what it is.\n\nNewsom: Not too sure of him, but off the bat, he seems too close to Biden and the establishment. Lots of folks are wary of California, so I feel like Newsom could backfire.\n\nButtigieg: I really like him, but him being gay might be several bridges too far for middle America.\n\nShapiro: Could work depending on the climate, but him being Jewish could hurt him.\n\nAOC: Way too easy of a target right now. I don't think she's as bad as what many think, but the current climate is just poison for her.\n\nWarren and Sanders: Way too old, but closer to the sort of populist messaging that the Dems could move towards.\n\nBeshear, Ossoff, Cooper, Warnock, and Brown seem to be some options who could work, but all of it depends on what happens over the next few years and what the national mood is.", 'created': '2024-11-10 01:11:52', 'submission_id': '1gnlw9n'}
{'comment': 'Mark Kelly', 'created': '2024-11-10 01:24:46', 'submission_id': '1gnlw9n'}
{'comment': 'Stay compassionate to the people who need it the most.', 'created': '2024-11-10 01:42:17', 'submission_id': '1gnlw9n'}
{'comment': 'I don’t give a fuck anymore if I’m being completely honest. All of this effort. Spent $80 on donations, went to all of of those visits and still lost. 😞', 'created': '2024-11-10 05:45:37', 'submission_id': '1gnlw9n'}
{'comment': "Run Shapiro, or Pete, or even Newsome. Unfortunately no women next time as we are 0-2, female vp is fine. we need to go back to running a white dude, the rest of America isn't ready due to still having a lot of racist and misogynist boomers. this was just a case of the pendulum swinging the other way. Trump will fail again in office and it will drive people to vote D in 2028", 'created': '2024-11-10 14:28:06', 'submission_id': '1gnlw9n'}
{'comment': "Middle class/poor Americans are fighting for the basics: food, water, money, medicine, to survive. We've lost empathy, become angry and intellectually/culturally smaller. Being a social democracy is hard work. We can't do it without the basics provided/ensured by our government. We have to fight for an America where we are free to be kind, generous, thoughtful and able to pursue higher values/culture. We don't get there with exploitation, austerity and billionaires running our government and lives!!! We have to put more progressive people in positions of power and support progressive policies. See Robert Reich's take on lessons we should learn from the current election", 'created': '2024-11-10 14:47:32', 'submission_id': '1gnlw9n'}
{'comment': 'Sure in the fuck not try a woman again! \n\nI love AOC but this is stupid lol', 'created': '2024-11-10 00:25:52', 'submission_id': '1gnlw9n'}
{'comment': 'I would love to see AOC run for president in 2028. Not only would she be an incredible president but her character and backstory would resonate with a lot of Americans, also she would be incredible at debating and actually cater to the base of the Democratic Party. I think it’s time to abandon trying to “play it safe” and cater to the moderates/centrists and get an actual progressive candidate running for office. Plus, after the damage that Trump will inevitably cause to this country in the next four years, the country will need someone like her more than ever.\n\nAlso, PLEASE don’t let your takeaway from this election be that we can’t elect a woman for president. There were a variety of reasons why Kamala lost, one being the anti-incumbency trend that has gone on around the world following the COVID pandemic. Yes we absolutely can nominate a woman for president and I don’t think we should ever give up on that.', 'created': '2024-11-10 01:13:05', 'submission_id': '1gnlw9n'}
{'comment': 'I genuinely like Tim Walz!', 'created': '2024-11-10 01:28:31', 'submission_id': '1gnlw9n'}
{'comment': "We can't risk running another woman for a while. Especially a minority. Our country is too bigoted and stupid for that.", 'created': '2024-11-10 01:33:02', 'submission_id': '1gnlw9n'}
{'comment': "We need a Candidate who isn't afraid to go to red states and poor neighborhoods and really talk to people there. Not just go for the photo op. Kamala did her best, but people voted for their fears and cheaper eggs. We still have to stand for doing the right thing, even if evil wins. We do better as the opposition. The Republicans are drunk with their success, and have no idea what's coming if they do the crazy things they talk about.", 'created': '2024-11-10 00:59:32', 'submission_id': '1gnlw9n'}
{'comment': "Let's start being ass holes to them and calling them out on their bull shit in a more public way. We need to be more aggressive for sure. Right now, I have no idea who would be a candidate. I love AOC, but there is next to no way she'll ever get any of the Republican vote, and right now that's what it will take for us to win next election.", 'created': '2024-11-10 02:02:45', 'submission_id': '1gnlw9n'}
{'comment': 'Shapiro and Newsome will fight it out and Buttigeige will be in for VP.', 'created': '2024-11-10 02:04:06', 'submission_id': '1gnlw9n'}
{'comment': "Say it with me everyone!\xa0\n\n\nWe're going back! We're going back! We're going back!", 'created': '2024-11-09 23:57:47', 'submission_id': '1gnlw9n'}
{'comment': 'Why doesn’t anyone ever mention Jon Ossof? Or is it because he would be seen as too polished?', 'created': '2024-11-09 23:58:55', 'submission_id': '1gnlw9n'}
{'comment': 'We wait for Trump to create his inevitable disaster and piss off the electorate and then come in to clean up his mess.', 'created': '2024-11-10 00:34:51', 'submission_id': '1gnlw9n'}
{'comment': 'This is where we go from here:\n20 Lessons from Last Century:\n\n1. Do not obey in advance. Much of the power of authoritarianism is freely given. In times like these, individuals think ahead about what a more repressive government will want, and then start to do it without being asked. You’ve already done this, haven’t you? Stop. Anticipatory obedience teaches authorities what is possible and accelerates unfreedom.\n\n2. Defend an institution. Follow the courts or the media, or a court or a newspaper. Do not speak of “our institutions” unless you are making them yours by acting on their behalf. Institutions don’t protect themselves. They go down like dominoes unless each is defended from the beginning.\n\n3. Recall professional ethics. When the leaders of state set a negative example, professional commitments to just practice become much more important. It is hard to break a rule-of-law state without lawyers, and it is hard to have show trials without judges.\n\n4. When listening to politicians, distinguish certain words. Look out for the expansive use of “terrorism” and “extremism.” Be alive to the fatal notions of “exception” and “emergency.” Be angry about the treacherous use of patriotic vocabulary.\n\n5. Be calm when the unthinkable arrives. When the terrorist attack comes, remember that all authoritarians at all times either await or plan such events in order to consolidate power. Think of the Reichstag fire. The sudden disaster that requires the end of the balance of power, the end of opposition parties, and so on, is the oldest trick in the Hitlerian book. Don’t fall for it.\n\n6. Be kind to our language. Avoid pronouncing the phrases everyone else does. Think up your own way of speaking, even if only to convey that thing you think everyone is saying. (Don’t use the internet before bed. Charge your gadgets away from your bedroom, and read.) What to read? Perhaps “The Power of the Powerless” by Václav Havel, 1984 by George Orwell, The Captive Mind by Czesław Milosz, The Rebel by Albert Camus, The Origins of Totalitarianism by Hannah Arendt, or Nothing is True and Everything is Possible by Peter Pomerantsev.\n\n7. Stand out. Someone has to. It is easy, in words and deeds, to follow along. It can feel strange to do or say something different. But without that unease, there is no freedom. And the moment you set an example, the spell of the status quo is broken, and others will follow.\n\n8. Believe in truth. To abandon facts is to abandon freedom. If nothing is true, then no one can criticize power, because there is no basis upon which to do so. If nothing is true, then all is spectacle. The biggest wallet pays for the most blinding lights.\n\n9. Investigate. Figure things out for yourself. Spend more time with long articles. Subsidize investigative journalism by subscribing to print media. Realize that some of what is on your screen is there to harm you. Learn about sites that investigate foreign propaganda pushes.\n\n10. Practice corporeal politics. Power wants your body softening in your chair and your emotions dissipating on the screen. Get outside. Put your body in unfamiliar places with unfamiliar people. Make new friends and march with them.\n\n11. Make eye contact and small talk. This is not just polite. It is a way to stay in touch with your surroundings, break down unnecessary social barriers, and come to understand whom you should and should not trust. If we enter a culture of denunciation, you will want to know the psychological landscape of your daily life.\n\n12. Take responsibility for the face of the world. Notice the swastikas and the other signs of hate. Do not look away and do not get used to them. Remove them yourself and set an example for others to do so.\n\n13. Hinder the one-party state. The parties that took over states were once something else. They exploited a historical moment to make political life impossible for their rivals. Vote in local and state elections while you can.\n\n14. Give regularly to good causes, if you can. Pick a charity and set up autopay. Then you will know that you have made a free choice that is supporting civil society helping others doing something good.\n\n15. Establish a private life. Nastier rulers will use what they know about you to push you around. Scrub your computer of malware. Remember that email is skywriting. Consider using alternative forms of the internet, or simply using it less. Have personal exchanges in person. For the same reason, resolve any legal trouble. Authoritarianism works as a blackmail state, looking for the hook on which to hang you. Try not to have too many hooks.\n\n16. Learn from others in other countries. Keep up your friendships abroad, or make new friends abroad. The present difficulties here are an element of a general trend. And no country is going to find a solution by itself. Make sure you and your family have passports.\n\n17. Watch out for the paramilitaries. When the men with guns who have always claimed to be against the system start wearing uniforms and marching around with torches and pictures of a Leader, the end is nigh. When the pro-Leader paramilitary and the official police and military intermingle, the game is over.\n\n18. Be reflective if you must be armed. If you carry a weapon in public service, God bless you and keep you. But know that evils of the past involved policemen and soldiers finding themselves, one day, doing irregular things. Be ready to say no. (If you do not know what this means, contact the United States Holocaust Memorial Museum and ask about training in professional ethics.)\n\n19. Be as courageous as you can. If none of us is prepared to die for freedom, then all of us will die in unfreedom.\n\n20. Be a patriot. The incoming president is not. Set a good example of what America means for the generations to come. They will need it.\n\nAmericans are no wiser than the Europeans who saw democracy yield to fascism, Nazism, or communism. Our one advantage is that we might learn from their experience. Now is a good time to do so. \n\n -Timothy Snyder', 'created': '2024-11-10 01:11:36', 'submission_id': '1gnlw9n'}
{'comment': 'Pete I would love to see. But obviously the main discussion is if America wants a president that is gay, which is seriously sad that we even have to debate that.', 'created': '2024-11-10 01:33:09', 'submission_id': '1gnlw9n'}
{'comment': "Newsom 2028 that's where", 'created': '2024-11-10 02:24:21', 'submission_id': '1gnlw9n'}
{'comment': "Bernie's older than Biden, and AOC would probably do worse than Harris in most swing states.", 'created': '2024-11-10 02:43:18', 'submission_id': '1gnlw9n'}
{'comment': 'To a fair and open primary where someone senile doesn’t take the victory and then bow out.', 'created': '2024-11-10 04:00:43', 'submission_id': '1gnlw9n'}
{'comment': 'Geeze people can we stop panicking? This isn’t the first time things have swung hard right. It may be the dumbest time, but not the first. Human beings are inherently fearful and tribal and Republicans play to that really well. \n\nCalm down. Trump won’t keep even half his promises. His cronies will fight with each other. And a good percentage of the dumb bros who voted for Trump are going to have a rude awakening. Republicans don’t know how to do anything but obstruct and react, so watch the shit-show as they don’t have anyone to scream at and blame.\n\nFour years is just enough time to let people really see the mess they elected. \n\nWhat the Dems need to do is to not give the Republicans anything obvious to scream about. Without a foil they are lost. Quietly go about finding bold solutions to real problems Americans face, ideas we can propose later, after Trump’s policies blow up in his face. \n\nWatch and wait. And stop freaking out.', 'created': '2024-11-10 04:18:03', 'submission_id': '1gnlw9n'}
{'comment': '', 'created': '2024-11-10 05:02:24', 'submission_id': '1gnlw9n'}
{'comment': 'I say your run of the mill middle aged white dude. Not even joking.', 'created': '2024-11-10 10:09:43', 'submission_id': '1gnlw9n'}
{'comment': 'Merchan could still jail the bastard. Just saying…. It would be safer for everyone than punting.', 'created': '2024-11-10 13:44:58', 'submission_id': '1gnlw9n'}
{'comment': 'Honestly, we should be going with AOC, but we will need to go with Gavin Newsom on the next go round. Also, any political strategist who worked for the Bill Clinton admin should just retire and get back to binge watching “The West Wing”. We need to jettison triangulation into the sun.', 'created': '2024-11-10 14:20:03', 'submission_id': '1gnlw9n'}
{'comment': "I love AOC, but she would be best served as Nancy Pelosi's replacement. At this point, I think it will be between Gretchen Whitmer, Josh Shapiro, Andy Beshear, or Gavin Newsom. We have three years before people start to announce. So this list can change.\n\n It was kind of obvious that Newsom was preparing to run if Biden did not run. Both Beshear and Shapiro were on Harris's VP list and Whitmer suggested that she might run.", 'created': '2024-11-10 14:41:44', 'submission_id': '1gnlw9n'}
{'comment': 'By simply allowing the GOP to implement Proj2025/Project47 I think by the mid-terms, we will be drowning in fodder. I’m waiting for when the “political appointee” BLM agents start showing up, with the only dirt on their minds is the grift they expect from ranchers and farmers. Then when the wealthy owners of wilderness mansions across the West, watch as no fire fighters show up, because the Interior and Agriculture department budgets were cut back. Oh, and we can bet campground fees will soar, more Trump government grift. I’ll let someone else describe what our trade deficit will do to the economy.', 'created': '2024-11-10 15:41:35', 'submission_id': '1gnlw9n'}
{'comment': 'Individually, we need to call and treat MAGA for what it is, collective narcissism. Just like dealing with a narcissist on and individual level, that means:\n\n1. When confronted on why we associate with our friends, family and allies, give them an answer that mimics their strongest held beliefs. For christian nationalists that sounds like "love thy neighbor" for racists that sounds like "we\'re all human" for misogynists "we\'re all equals" and then do not give them any more room for argument or justification.\n\n2. Avoid emotional reactions, because it is through those reactions that MAGA types vilify democrats, and how they self-victimize when held to account. Even now, there are people making excuses for Nick Fuentes, saying he shouldn\'t be threatened and doxxed because of his statements, after he blatantly made such an abhorrent statement.\n\n3. If you\'ve ever lost a friend to someone with a stronger personality, or even a blatant narcissist, you know that they become beyond talking to in a reasonable and civil context. It is best to cut those relations off, they already took the words of a complete stranger that does not care about them over yours. People that have embraced the words of a narcissist weigh the narcissist\'s words more heavily, until the narcissist turns on them, until their self-interest is put at risk.\n\n4. Personally, my grandmother and I were the only ones to vote for Kamala. I am isolated from my family now. I am soon to be divorced to someone that supported MAGA, after 10 years of listening to her agree with and espouse progressive policy and ideas. Luckily I had friends to turn to. Luckily I have some support. We need to offer that support to those that lost the most in this election. I opened up my home to friends ostracized and cut off by their MAGA families. I offer it up to anyone that reads this that have lost the same. I\'m a disabled vet with passive income, we can figure out bills later. \n\n5. If you\'re going to argue and attack them, hit them where it hurts, their ego. Examples of effective attacks: "Only weak men seek to control women\'s bodies." "That sounds very Christ-like, where in scripture does it condone that?" "How have you been directly affected by LGBTQ? Oh..so you haven\'t." "Where did you read that? Oh, so not a verified source just social media?" "You don\'t sound like you\'ve researched this very much if you\'re telling me to look it up." ect.\n\n6. MAGA has a stronger political identity, and it is incredibly good at being divisive. I think the best example of this is in how quickly Democratic groups turned on each other after the results of this election. You do not come back stronger by admonishing people in a generalized direction. Research shows people vote with who they feel is most sociopolitically proximal to themselves. You do not beat MAGA, or narcissism by acting like MAGA or narcissism. You beat MAGA by being as inclusive, empathetic and understanding as possible. Do not condemn those who didn\'t vote, do not condemn populations where you lost the most support, that only ostracizes them even more and the only place they will turn is MAGA because they do no feel welcome here.', 'created': '2024-11-10 16:32:26', 'submission_id': '1gnlw9n'}
{'comment': 'Local elections. Spend the next 4 years energizing at the lower levels of government.\n\nIt should not be wait for 2028.\n\nIt should be organizing and planning NOW.', 'created': '2024-11-10 18:19:10', 'submission_id': '1gnlw9n'}
{'comment': 'We need to start building from the ground up and start getting messages out that are easy for everyone to digest such as. "Hey this is my plan here\'s how it will make your life better." But we need to start electing more AOCs. Maybe someone with charisma like FDR but with assertiveness too. Does everyone remember voting for Obama in 2008? People voted for him because he had the charisma and delivered on his campaign promise to reform our healthcare. Not to mention he was so good at governing that in his first term alone he saved the auto industry and killed Bin Laden.\n\nBut it\'s not just the president that does this stuff. We need people in CONGRESS and at local levels such as schoolboards, city councils, etc. After all want to know how book bans start? Moms for liberty members and MAGATs get elected to schoolboards. Then they run for city council, then Mayor or county executive, and then for governor, and then for congress.', 'created': '2024-11-10 01:16:46', 'submission_id': '1gnlw9n'}
{'comment': 'it blows my mind how delusional people are still thinking there will be any more free democratic elections in the US', 'created': '2024-11-10 00:10:41', 'submission_id': '1gnlw9n'}
{'comment': 'The Democrats are finished. Republicans push them, they fall over and don’t fight back hard enough. We are basically a one party country now, even though half of us aren’t part of said party.', 'created': '2024-11-10 01:51:11', 'submission_id': '1gnlw9n'}
{'comment': 'Downvote away but I have no idea why people are talking as though there’s even going to *be* an election in four years, much less one that is on the level.\n\nTake care of the people you care about. Do what you can to support the oppressed. Do what brings you peace and joy to the extent you’re able to feel these things. These are the things within our control from now on. The rest likely isn’t.', 'created': '2024-11-10 00:04:54', 'submission_id': '1gnlw9n'}
{'comment': 'AOC is probably too polarizing.', 'created': '2024-11-10 03:03:18', 'submission_id': '1gnlw9n'}
{'comment': "AOC just gives me hope. If any woman in the Democratic Party would make a fine president, it would be her. She's populist, stands with the working class, believes in universal healthcare, affordable housing and fighting climate change, and is favourable with minority voters. If she can just stay on message she could be a firestorm candidate like Obama for the Dems. And she's still young. Her resume will only get more impressive.", 'created': '2024-11-10 00:35:04', 'submission_id': '1gnlw9n'}
{'comment': '\nObviously we build the walz', 'created': '2024-11-10 00:28:09', 'submission_id': '1gnlw9n'}
{'comment': "I don't understand why it seems that people have turned on Kamala Harris? Trump has had over a decade to create his following. What Kamala Harris was able to do in 5 months was nothing short of amazing. Why can't we have the same candidate run again? It seems to work for Republicans so why not Democrats?\n\nHarris is such a solid candidate for president. But she had to pack so much to say in so little time. People loved her and adored her. I don't see why that has to change. Next time around she can really get to bring people into who she is and the things she did accomplish as VP. I just think that time was against us and if she had a few weeks more this might have turned out a little differently. I also need to add here that I know it wasn't just her that built this campaign it was all of us. This is where I think we go from here. We build even more on the foundation we've already built and we kick their fucking asses into the ground next time. Because I honestly can't deal with their smug, stupid shit.", 'created': '2024-11-10 01:35:38', 'submission_id': '1gnlw9n'}
{'comment': 'Shapiro/AOC 2028', 'created': '2024-11-09 23:52:36', 'submission_id': '1gnlw9n'}
{'comment': 'I’ve been reading Good and Mad by Rebecca Traister and from her write up, it’s sounds to me like the most successful groups bounce back from set backs with tenacity. They use the mechanisms they have: strikes, marches, petitions, spending $ in line with values. Two steps forward, one step back. Intersectionality will go a long way too - remember that we are global citizens, all human, and we, as individuals and especially as community, may be able to better life for others across the world in conflict too. What might it say to our politicians to see street signs petitioning for woman’s rights in Texas, Afghanistan, and the world on a street corner in Michigan? For us to march the first day of the month for peace in conflict zones? For us [to write our legislators](https://www.usa.gov/elected-officials/)every day to say we want fewer $ spent on weapons, more on education. What might happen if we use these avenues for change, even if someone tries to take these avenues away?', 'created': '2024-11-10 00:29:23', 'submission_id': '1gnlw9n'}
{'comment': 'It’d help if Democrats start fixing their media problem. Pretty obvious that the people out there messaging now aren’t people others, outside some Democrats, want to listen to. Find potential podcasters and personalities that speak like regular non-college people instead of someone who majored in gender studies who will tell you how bad a person you are if you don’t want to say “cisgender.” People like the liberal redneck come to mind. Get people that talk like that, talk like Snoop Dog, talk like Bill Burr, etc. You got to have people want to listen, be entertained and tune in again!', 'created': '2024-11-10 00:44:01', 'submission_id': '1gnlw9n'}
{'comment': 'We get the hell out of hell', 'created': '2024-11-10 00:44:12', 'submission_id': '1gnlw9n'}
{'comment': 'Canada', 'created': '2024-11-10 00:44:18', 'submission_id': '1gnlw9n'}
{'comment': 'It’s just crazy to me that this thread is talking about who should run in 2028. That’s insane.\nIn my opinion we should be doing more self reflection and thinking about how do we get back to presenting ideas that really affect people’s lives in a positive way. We’ve done that in the past … Social Security, Medicare, Medicaid, etc.. \nWe have to get our focus off the culture wars and demonizing our opposition and start thinking about real positive change we can bring to the majority of Americans.', 'created': '2024-11-10 00:52:22', 'submission_id': '1gnlw9n'}
{'comment': "Policy. We go to policy before personalty. \n\nThe next candidate won't matter for years. We can work on supporting policy with narrative, the midterm election, and state and local elections.\n\nStart with supporting unions. On that front, I'll offer sectoral bargaining as a policy we must push for.", 'created': '2024-11-10 01:01:04', 'submission_id': '1gnlw9n'}
{'comment': 'No more east cost or west coast dems. Get someone from the center of the country who knows how to communicate. I missed the way Obama could talk about policy vs cultural wars. Fighting for democracy worked in 2020 isn’t gonna work now.', 'created': '2024-11-10 01:06:46', 'submission_id': '1gnlw9n'}
{'comment': 'Knowing this dumbass party they’ll probably put some vanilla candidate out there in 2028 and move even more far center/right, because they’re clearly getting the wrong message from this loss. They did the same thing after 2016 and inched closer to the middle. I’ve already seen dem strategists saying that they lost because of woke stuff which is just objectively not the reason they lost. Dems need to realize that if they continue to buddy up with conservatives that they will continue to lose voters. Trump didn’t gain that many voters from last time but the Democrats definitely lost a bunch of support and instead of blaming the voters like they’ve been doing in heyday need to look inward. The only way to ever win another election is to not do the same old shit and actually put a true progressive candidate up there and propose more progressive/helpful policies. Kamala had a country good/great policies but we need more + find a way to speak to voters in a more effective way. Playing to republicans isn’t going to get enough republican votes to balance out the votes you loose.', 'created': '2024-11-10 01:08:31', 'submission_id': '1gnlw9n'}
{'comment': 'Thank you!', 'created': '2024-11-10 01:10:33', 'submission_id': '1gnlw9n'}
{'comment': 'Both sides have their blaring problems. Trump will the list is pages and pages and it\'s abhorrent and pathetic. \n\nThe Democrats gave us Trump every time. Corrupt tone deaf oligarchy needs to be dismantled. Seems like the last sensible down to earth ideology on the left is Bernie sanders. I think we need to reshape the party back to what it was supposed to be. \n\nThe current party chose to not see the other side where they\'re actually at and shove pronouns down their throat when they were nowhere near ready for this. Always missing the pulse of what\'s really going on. \n\nA good paying job, affordable housing, affordable food, policies that pull back on and equality like strengthening unions. But we have The insider trader Nancy pelosi "do it for the children". She\'s pulling ladders up on these kids her whole life. \n\nBernie Sanders progressive let\'s rebuild', 'created': '2024-11-10 01:11:32', 'submission_id': '1gnlw9n'}
{'comment': 'Beshear/Cooper 2028', 'created': '2024-11-10 01:12:33', 'submission_id': '1gnlw9n'}
{'comment': "Jettison the corporate donors and try to appeal to working people again. Democrats really need to focus on that messaging. It will dovetail with Trump's inability to sustain favorable economy as his next round of tax cuts for the rich and tariffs, along with deregulation and an economy that leans harder into stratification...", 'created': '2024-11-10 01:15:44', 'submission_id': '1gnlw9n'}
{'comment': 'Pete Buttigieg.', 'created': '2024-11-10 01:18:05', 'submission_id': '1gnlw9n'}
{'comment': 'Beshear/Whitmer, anyone?', 'created': '2024-11-10 01:20:58', 'submission_id': '1gnlw9n'}
{'comment': '', 'created': '2024-11-10 01:21:22', 'submission_id': '1gnlw9n'}
{'comment': "The Democratic party needs to learn from this and they need to understand why it is their message did not get out. The Republican party and conservatives have been utilizing the media and so many technical tools at their disposal that the Democrats have failed to utilize. I think we need to do the same thing we need to get involved more in the media have a channel have podcasts, get on social media,..\n\nDemocrats have a wonderful message but Unfortunately they have failed in the marketing department..need to reach more people and especially younger voters!\n\nI always thought that the young people would be more Progressive and we would keep making progress but it seems like they are going the other way now because they have been so influenced by all of the conservative media.\n\nWhere is the more liberal media? These issues need to be heard and addressed from both sides but all they are hearing is the conservative side of things..\n\nDemocrats need a version of Fox News of Their Own in order to get the attention of more people. And I'm not saying that there should be any misinformation. There's no need for that but we need to focus on not bashing Trump and try to focus on how to communicate actual issues to people and help them understand the reality of things In a way that they feel like they are understood and the issues pertain directly to them.", 'created': '2024-11-10 01:23:57', 'submission_id': '1gnlw9n'}
{'comment': 'We kick ass and take names.', 'created': '2024-11-10 01:24:40', 'submission_id': '1gnlw9n'}
{'comment': 'The part of my brain that wants retribution says AOC should run and we should elect her as president because that would make them all cry but man I wish Bernie wasn’t snubbed in 2016. All this trump stuff may never have happened if Bernie was able to give the people what he was offering in some way, I know that’d include major changes in congress as well but I do believe, that in 2016 if he was running he would have won 100%, and we would be here, him having just ended his second term would have likely turned a lot of votes blue among teens and women at least, maybe some older people I mean idk. It’s crazy to speculate how that could’ve gone but I think things would’ve been much better if that had all happened', 'created': '2024-11-10 01:25:55', 'submission_id': '1gnlw9n'}
{'comment': 'AOC or another progressive', 'created': '2024-11-10 01:41:37', 'submission_id': '1gnlw9n'}
{'comment': 'Swing state or red state dem governor. Whitmer, Shapiro, Beshear, Cooper. Play the EC game, not the pop vote. No more NY or CA candidates, they add nothing to the map and get labeled as elitists, even if they’re former bartenders.', 'created': '2024-11-10 01:42:02', 'submission_id': '1gnlw9n'}
{'comment': 'We need to stop with women. I’m sorry but half America is fucking sexist', 'created': '2024-11-10 01:42:55', 'submission_id': '1gnlw9n'}
{'comment': "Well in 2028 I expect JD too run for president, I'd love Walz to go up against him and I'm sure he'd have a good chance too.", 'created': '2024-11-10 01:47:06', 'submission_id': '1gnlw9n'}
{'comment': 'I feel heartbroken for Kamala. She would make a great president.', 'created': '2024-11-10 02:03:07', 'submission_id': '1gnlw9n'}
{'comment': 'Andy basher', 'created': '2024-11-10 02:17:19', 'submission_id': '1gnlw9n'}
{'comment': 'Fight fascism. Even if it costs us everything. The future of our country relies on it.', 'created': '2024-11-10 02:20:31', 'submission_id': '1gnlw9n'}
{'comment': 'But it’s MAGA not the republicans now', 'created': '2024-11-10 02:23:16', 'submission_id': '1gnlw9n'}
{'comment': "Need to find a straight white veteran male to run for president and pick a white man for VP, which has a bit more flexibility in choices.\n\nI hate that I have to think that, but that's the only choice if we even have the opportunity in 4 years.", 'created': '2024-11-10 02:34:12', 'submission_id': '1gnlw9n'}
{'comment': 'We get what we deserve', 'created': '2024-11-10 02:36:44', 'submission_id': '1gnlw9n'}
{'comment': "Progressive talk show host David Pakman had an interesting insight.\n\nHe said the Republicans have created a whole media ecosystem, Daily Wire, Turning Point USA, Various Podcasters. And he said Republican politicians use it...they go on these little shows all the time, all year round. \n\nDemocrats, he said, tend to mainly stick to mainstream platforms like CNN & MSNBC when the world is becoming much more podcast-ified. \n\nHe said Democrats doing one or two podcast interviews two weeks before an election isn't enough when you have Republicans doing these interviews weekly or even more frequently, months before the election. \n\nWe need our people to crawl out of their holes and start doing interviews with yes mainstream media but also with new media. Conservatives are all over new media, websites, podcasts, etc. Democrats have a tendency to just crawl into a hole once they're elected. They can't do that. \n\nOne example: David said he has asked Alexandria Ocasio-Cortez for an interview. A progressive talk show host wanting to interview a progressive politician.\n\nOf the twenty times he's asked over the years, 18 times he got no response, and twice he got a notice of rejection.\n\nThis isn't just a David Pakman thing....progressive media can't get ahold of our people. (Note: There are a handful of our people who are regularly doing interviews and talking with the people, notably Ro Khanna, Mark Pocan, Greg Casar)\n\nSo while Conservatives spend all year campaigning in television and any media they can find, Democrats think doing a podcast once two weeks before an election is enough to get the message out. It isn't. \n\nDemocrats don't have a Daily Wire. Democrats don't have a Turning Point USA, Democrats dont have a Truth Social, Democrats dont have Prager U...\n\nHow are we getting our message out to people between now and the midterms?", 'created': '2024-11-10 02:40:45', 'submission_id': '1gnlw9n'}
{'comment': 'Norway', 'created': '2024-11-10 02:50:47', 'submission_id': '1gnlw9n'}
{'comment': 'Straight to hell in a hand basket.', 'created': '2024-11-10 03:07:02', 'submission_id': '1gnlw9n'}
{'comment': "Idk if this is a popular view but... It seems like from here we watch democracy go up in flames and.. we build something meaningful out of the ashes? I'm not sure...", 'created': '2024-11-10 03:16:44', 'submission_id': '1gnlw9n'}
{'comment': "Not any of those. I wish we could get a woman in but even women won't vote for women so that ship has sailed for a while unfortunately. Based on the results of this election America isn't ready for progress. Thanks far left you just pushed everyone further right and helped Trump win. Won't help your goals or anyone else's. Hope they are proud", 'created': '2024-11-10 03:19:27', 'submission_id': '1gnlw9n'}
{'comment': 'Check your history. Go back 200 years and look at the shit that happened in the 30’s, the 40’s - WE ARE THE STRONGEST NATION AND NOTHING WILL DRAG DOWN OUR CONSTITUTION! \n\nStart reading political history. You have 4 years to make a change. Educate yourselves before real history books are banned, and we only have Trump history. Pre and Post', 'created': '2024-11-10 03:37:37', 'submission_id': '1gnlw9n'}
{'comment': 'Focus on economy. Move to the center. Male democrat for president.', 'created': '2024-11-10 04:00:39', 'submission_id': '1gnlw9n'}
{'comment': 'In all honesty… we’re going back. Cold hard fact of life, sometimes the bad guys win.', 'created': '2024-11-10 04:11:17', 'submission_id': '1gnlw9n'}
{'comment': "Probably use the same populism As Trump although fit for the Democratic Party including a new primary system possibly carried out in 2026 at worse if Trump gets too bad with his authoritarian probably use it in the blue States they're willing to split and oppose Trump's dictatorship", 'created': '2024-11-10 04:43:46', 'submission_id': '1gnlw9n'}
{'comment': 'Hakeem Jeffries', 'created': '2024-11-10 06:06:49', 'submission_id': '1gnlw9n'}
{'comment': "There won't be a primary or a Democracy worth saving by 2028. We are so fucked. \n\nAnd don't ever buy a Tesla.", 'created': '2024-11-10 07:29:59', 'submission_id': '1gnlw9n'}
{'comment': 'As much as I hate it, I think they’ll need a well educated white male actor/celebrity. Someone who already has positive name recognition across the country. Someone who can talk plainly and down to earth, not sound too elite for apparently the majority of voters. \nIt’s not what I want, but it’s the only way to maybe fix or keep a semblance of American democracy. \nIf that type of person can win and stem the tsunami of propaganda on all platforms now, then maybe, *maybe*, I dunno we get somewhere close to wheee we were 8 years ago. Doubtful though. \n \nThat said, I don’t know how we get fair elections in 2028, or even 2026. And it’s still going to be an almost entirely republican Supreme Court for 30 years or more, and they can do SO much with that SCOTUS in 4 years with Donald and his immunity. \nAye yi yi, I’m spiraling again', 'created': '2024-11-10 07:33:13', 'submission_id': '1gnlw9n'}
{'comment': "Speaking for myself, I would like to thank the VP for her service and for running a far cleaner campaign than her opposition. Further I would give her incredible credit for quickly conceding and allowing the country to move forward, again especially in comparison to her opposition.\n\nOther than that, I think *everyone* needs to simply calm down and see what happens come next year.\n\nAll the angst/anger/panic in the world NOW won't stop anything *THEN* therefore it makes far more sense to simply SEE WHAT HAPPENS.\n\nWe need to be *incredibly* careful as the exact same foreign-sourced horseshit that fed the right-wing anger/panic machine is already turning to feed the *left-wing* anger/panic machine because that's EXACTLY what countries like Russia and China want...they don't give a flying fuck who's in charge, they will *ALWAYS* try to use the opposition (in this case, us) to drive the country apart.", 'created': '2024-11-10 08:20:41', 'submission_id': '1gnlw9n'}
{'comment': "Pete Buttigieg is probably one of my first choices.\n\nGretchen Whitmore would make a good VP, but I think it's time to admit that a woman isn't going to win the presidency in the near future. \n\nAs far as that goes Pete would lose votes just because of his sexual preference. \n\nWe do not need Gavin Newsom to run. People will vote against him or stay home just because he's from California.", 'created': '2024-11-10 13:14:03', 'submission_id': '1gnlw9n'}
{'comment': 'I say this as a feminist woman, an LGBTQ rights supporter, and a sincere anti-racist activist: we need a straight white dude.\xa0\n\nSorry, we can get all huffy about how I just that is and how we should be "better than that", but clearly we are not.\xa0\n\nWe need an under 65 white straight male. Preferably southern or folksy (think Tim Walz or Andy Beshear). Preferably military veteran.\xa0\n\nWe need to appeal to voters on housing and cost of living affordability and safety. \xa0We also need a message about returning buying and political power to the middle class. And emphasize individual rights (1A, 2A, voting, bodily autonomy). And energy independence in green energy. And, as shitty as it is, probably some isolationism.\xa0\n\nGah.\xa0\n\nMost of these are not messages I want to hear. But clearly I am in the minority, and I don\'t want to keep losing to the absolute worst people. So we can\'t push and pull the American electorate- we have to meet them where they are. And they have told us where they are-- loudly and repeatedly now.\xa0\n\nThat is, if we are even allowed to have any kind of opposition party or free and fair elections moving forward. Which I put at about a 40% chance right now.\xa0', 'created': '2024-11-10 14:13:28', 'submission_id': '1gnlw9n'}
{'comment': 'The democrat party needs to be dismantled and rebuilt from the ground up.', 'created': '2024-11-10 15:02:31', 'submission_id': '1gnlw9n'}
{'comment': "I think that the only critical task is to get past the filter bubbles and form real inroads to real people.\n\nWe do not understand how warped their media and social media and news information landscape really is.\n\nThe footage of trump voters hearing the most basic facts and being stunned to hear things like Trump was convicted of rape, and actually had multiple ties to Russia, Jan 6th, that all his advisors said he was crazy and stupid etc.\n\nThe current approach to give up and avoid them or call them deplorables is not working. Calling them weird had a huge and instant impact.\n\nI do think that it doesn't need to be petty or argumentative, but just plain talking and explaining simple facts. Using emotive language that is more universal.\n\nPete being on Fox, the way that O’Rourke talks plainly.\n\nTim was fantastic till he had some stumbles but that emotive messaging and down to earth was great.", 'created': '2024-11-10 15:35:53', 'submission_id': '1gnlw9n'}
{'comment': 'Anything but self reflection. I’m leaning into blame game.\xa0', 'created': '2024-11-10 15:54:31', 'submission_id': '1gnlw9n'}
{'comment': 'Progressive populism. I mean this, unironically.', 'created': '2024-11-10 16:27:37', 'submission_id': '1gnlw9n'}
{'comment': 'Stop buying Tesla!', 'created': '2024-11-10 16:54:31', 'submission_id': '1gnlw9n'}
{'comment': 'We’re all going straight to hell thanks to the magats. Let’s see how they feel in four years when he burns this country to the ground. Hope they’re happy with their decision.', 'created': '2024-11-10 18:15:34', 'submission_id': '1gnlw9n'}
{'comment': 'Anyone on the Harris camp in these subs has to express skepticism to their team leads and higher. The latest Senate election results in swing states do not confirm his win. The PA assembly D win does not conform with his win. I’m not saying he cheated. I’m not saying that Starlink being involved in the voting system is suspect. All I’m saying is verify. Request selected hand counts in swing states. Then ask for more if issues are noted. Trust but verify.', 'created': '2024-11-10 18:27:52', 'submission_id': '1gnlw9n'}
{'comment': 'I think we need to combat the waves of misinformation that have plagued the internet from the right wing. Prior to the election my social media was plagued with it and I kept blocking these accounts non-stop. \nWe are dealing with narcissism at the national level and the only way to win is to use the same game and use their own techniques against them. Democrats have to get better at marketing and using the internet & maybe even bot farms to combat misinformation.', 'created': '2024-11-10 18:44:14', 'submission_id': '1gnlw9n'}
{'comment': 'To the bottom, I fear.', 'created': '2024-11-10 19:14:22', 'submission_id': '1gnlw9n'}
{'comment': "Democrats need to abandon all this foreign policy of bandaiding the world's problems. Republicans jumped on that showing how we use taxpayer dollars overseas instead of at home after those hurricanes. If dems say we can do both, it's going to drive the debt out of control. There needs to be a clearer dichotomy portrayed of standing for Americans versus special interests.", 'created': '2024-11-10 19:49:44', 'submission_id': '1gnlw9n'}
{'comment': "This party needs to stop being cute and cuddly, and play offense moving foward.\n\nIf it doesn't the results will continue to be the same.", 'created': '2024-11-10 22:54:48', 'submission_id': '1gnlw9n'}
{'comment': 'Downhill.', 'created': '2024-11-11 05:13:53', 'submission_id': '1gnlw9n'}
{'comment': 'Newsome \nWhitmer', 'created': '2024-11-09 23:58:09', 'submission_id': '1gnlw9n'}
{'comment': 'Wes Moore/Pete Buttigieg', 'created': '2024-11-10 00:05:35', 'submission_id': '1gnlw9n'}
{'comment': 'To hell. The country is going to hell and we’re all along for the ride.', 'created': '2024-11-10 00:46:05', 'submission_id': '1gnlw9n'}
{'comment': 'Pete Buttigeig or Josh Shapiro I think.', 'created': '2024-11-10 00:46:21', 'submission_id': '1gnlw9n'}
{'comment': 'no no no', 'created': '2024-11-09 23:54:39', 'submission_id': '1gnlw9n'}
{'comment': '', 'created': '2024-11-10 01:00:31', 'submission_id': '1gnlw9n'}
{'comment': 'Bernie and Shapiro \nGavin and either or.\n\nEnough trying to shift to the right slightly to pick off boomer voters. Full left working class vision is needed and win the actual heart of this country.', 'created': '2024-11-10 00:08:55', 'submission_id': '1gnlw9n'}
{'comment': "The Democratic Party likes to brag about its big tent, but the big tent's seams are now frayed. There are competing camps and someone will have to take priority. When it comes to improved social policy versus big-money donors, big-money donors have been the ones that win. That's how we got PPACA instead of a single-payer health care system. That's why we only have partial student debt forgiveness instead of full forgiveness and an overhaul of post-secondary education.", 'created': '2024-11-10 00:32:52', 'submission_id': '1gnlw9n'}
{'comment': 'A young man under the age of 50 might be a good start.', 'created': '2024-11-10 00:18:37', 'submission_id': '1gnlw9n'}
{'comment': 'Cory Booker', 'created': '2024-11-10 00:20:54', 'submission_id': '1gnlw9n'}
{'comment': "Out of these 3, AOC is the future. She's gonna be the one who has to change the democratic party", 'created': '2024-11-10 00:34:43', 'submission_id': '1gnlw9n'}
{'comment': 'Whoever can actually get elected and isn’t a dinosaur; love Bernie tho for sure he’s OG activist.', 'created': '2024-11-10 01:02:41', 'submission_id': '1gnlw9n'}
{'comment': "None of those people. We need a nobody like Obama was. It needs to be someone who is inclusive of everyone. Stop vilifying men. We desperately need to win men back to the party. Yes we have men but not nearly enough. We need farmers back as well. Rural America needs to know that we have their backs. We need to give THEM hope again. We need to show them that loving your neighbor no matter what they look like or who they love is, the true meaning of what being a Christian American is. We desperately need to make the Republicans in power see what they are doing is completely immoral and unAmerican. \n\n4 years. We have 4 years for the greatest comeback story in history. Granted we haven't actually handed the constitution to the shredder. \n\nKeep safe, stay strong, we got this!!!", 'created': '2024-11-10 01:21:51', 'submission_id': '1gnlw9n'}
{'comment': "Find a younger bernie sanders. Run them. That's what we do", 'created': '2024-11-10 01:22:47', 'submission_id': '1gnlw9n'}
{'comment': "Whitmer would be an amazing presidential candidate. She has a positive track record in Michigan, known as big gretch throughout America, and isn't corrupt. We love her and she's done amazing things for special needs students in our state.", 'created': '2024-11-10 03:50:21', 'submission_id': '1gnlw9n'}
{'comment': "First of all, blaming the election loss on Kamala Harris is completely wrong that's all I can say If Biden had any sense he would have stepped down in 2022 and given Harris the chance to shape a policy and had more time, we wouldn't be standing where we stand now!\n\nThe Democrats know if Harris wants to run again they will support her 100% with all means available everyone says no she can't and no but the problem is she can if she wants to and she will learn to do that, so it will be difficult to maneuver her away as the nominee for the 2028 presidential election!", 'created': '2024-11-10 09:21:38', 'submission_id': '1gnlw9n'}
{'comment': "Kamala's niece posted two pictures of Kamala with her grandnieces last night and I lost it. That's finally when reality hit me. I cried, and I'm a 53 year old man. I'm sorry America's uninformed voters failed everyone, especially women.", 'created': '2024-11-10 11:05:27', 'submission_id': '1gnlw9n'}
{'comment': 'AOC, would do worse than, Kamala! She shouldn’t even be considered.', 'created': '2024-11-10 19:30:39', 'submission_id': '1gnlw9n'}
{'comment': 'Not AOC. Not Bernie. Newsome maybe.', 'created': '2024-11-10 01:53:28', 'submission_id': '1gnlw9n'}
{'comment': 'How about progressive bread and butter policies people actually want instead of siding with neocons like the Cheneys...', 'created': '2024-11-10 00:30:30', 'submission_id': '1gnlw9n'}
{'comment': None, 'created': '2024-11-10 00:32:00', 'submission_id': '1gnlw9n'}
{'comment': 'How about we have an actual Primary next time!', 'created': '2024-11-10 00:32:16', 'submission_id': '1gnlw9n'}
{'comment': 'Pete', 'created': '2024-11-10 00:36:10', 'submission_id': '1gnlw9n'}
{'comment': "Mark Milley, it's obvious the country wants a strong male leader who is way farther right than we are right now. We need to find someone like Reagan who appeals to more moderate GOP than the current team that lost.", 'created': '2024-11-10 00:37:14', 'submission_id': '1gnlw9n'}
{'comment': 'Everyone keeps saying we need a progressive 😩 we need a well spoken semi-progressive. Pete Buttigieg type.', 'created': '2024-11-10 00:42:15', 'submission_id': '1gnlw9n'}
{'comment': 'I hope Kamala Harris and Tim Walz run again in 2028. If so, KAMALA 2028!!!', 'created': '2024-11-10 00:45:35', 'submission_id': '1gnlw9n'}
{'comment': 'tim walz 2028', 'created': '2024-11-10 00:45:53', 'submission_id': '1gnlw9n'}
{'comment': 'AOC', 'created': '2024-11-10 00:48:28', 'submission_id': '1gnlw9n'}
{'comment': 'We need a red state Democrat. I’m favoring Beshear from Kentucky. We’ll never win middle America with a San Francisco or New York liberal.', 'created': '2024-11-10 00:53:06', 'submission_id': '1gnlw9n'}
{'comment': 'JB said it best, from the bottom up to the middle out. Grassroots candidates, we have to talk to our neighbors and make change happen.', 'created': '2024-11-10 00:55:45', 'submission_id': '1gnlw9n'}
{'comment': 'Hopefully Biden resigns.', 'created': '2024-11-10 00:56:16', 'submission_id': '1gnlw9n'}
{'comment': 'I doubt that we will have more elections. I expect that Democrats will be arrested.', 'created': '2024-11-10 01:02:13', 'submission_id': '1gnlw9n'}
{'comment': 'Shapiro or Whitmer', 'created': '2024-11-10 01:03:36', 'submission_id': '1gnlw9n'}
{'comment': 'Howsabout some policies with vision that end the neo-liberal nightmare.', 'created': '2024-11-10 01:04:51', 'submission_id': '1gnlw9n'}
{'comment': "Well let's see...\n\nTo get elected requires being popular.\n\nPopulism is popular.\n\nPeople are unhappy with the 'economy'.\n\nHow about some economic populism?", 'created': '2024-11-10 01:08:02', 'submission_id': '1gnlw9n'}
{'comment': 'Did I drop a dime on a pickup truck hiring workers at a Home Depot this morning? Did it have an FOP license plate? Maybe. Sorry not sorry. FAFO.', 'created': '2024-11-10 01:08:16', 'submission_id': '1gnlw9n'}
{'comment': 'LEFT.', 'created': '2024-11-10 01:09:49', 'submission_id': '1gnlw9n'}
{'comment': 'A good take on where Black Women organizers can go from here. https://www.tiktok.com/t/ZTFKDEbVs/', 'created': '2024-11-10 01:14:26', 'submission_id': '1gnlw9n'}
{'comment': "I've literally been thinking for the past few days about how I want AOC to run for president.", 'created': '2024-11-10 01:14:37', 'submission_id': '1gnlw9n'}
{'comment': "One thing that certainly needs to happen: Democrats need to stop being afraid of criticism. The fact that this subreddit stringently works to contain criticism reflects a major issue with the party at large.\n\nThey work a lot harder on attacking the left than anything else, really. The party keeps zooming right, & hugging Cheneys, & ignoring any dissenting voices. It's suicidal—as we've just seen.\n\nRashida Tlaib won Oakland County by 23% more than Harris. If there can't be an honest conversation about why, then the party's moribund.", 'created': '2024-11-10 01:18:30', 'submission_id': '1gnlw9n'}
{'comment': "Cancel your cable news if you still have it and work for change in our communities. That's where true change happens and the only thing that is more powerful than disinformation campaigns by the super rich. I'm looking for somewhere to volunteer.", 'created': '2024-11-10 01:21:39', 'submission_id': '1gnlw9n'}
{'comment': 'Mark Kelly\n\nhttps://preview.redd.it/aegsvth3xyzd1.jpeg?width=1067&format=pjpg&auto=webp&s=b0604b75ca7c382f72ea253187a03052c029563c', 'created': '2024-11-10 01:23:28', 'submission_id': '1gnlw9n'}
{'comment': 'Down.', 'created': '2024-11-10 01:27:45', 'submission_id': '1gnlw9n'}
{'comment': "a center left guy. you put people with strong ties to the far left lol.\n\ndon't forget about fair future elections. our pain is overshadowing project 2025.", 'created': '2024-11-10 01:27:53', 'submission_id': '1gnlw9n'}
{'comment': 'Move From Despair To Determination \nMove From The Sidelines To Actually Taking Action', 'created': '2024-11-10 01:27:55', 'submission_id': '1gnlw9n'}
{'comment': 'We fortify the guardrails and make contingency plans for any likely outcome. We also need to cut out this circular firing squad nonsense. The number one priority is preserving our institutions and democracy. Everything else is second. This means that we advocate for the candidate and policies we want, and if we don’t get what we want we need to accept it and throw ourselves 100% behind our candidate. Trump had basically the same turnout for him as last time. We lost turnout. A good portion of the Republican Party dislikes Trump, but they were willing to come out to vote for him. A smaller number of Democrats disliked Harris, and decided to stay home. Unfortunately, we have a two party system, and a good portion of Democrats are a lot more moderate or conservative than the progressive wing of the party. There is no party that perfectly encapsulates the progressive agenda, but one of the parties comes much closer than the other, and because of how our system works, anything but a vote for the Democrats, is a benefit to the Republicans. \n\nThis doesn’t mean that we can never push through progressive policies, but Democrats need to get into office before we can do anything. We have to vote blue no matter who, because Republicans will do the opposite, and no liberal will be happy with that outcome.', 'created': '2024-11-10 01:32:29', 'submission_id': '1gnlw9n'}
{'comment': ' New candidate. Regroup. Midterms are 2 years out.', 'created': '2024-11-10 01:56:04', 'submission_id': '1gnlw9n'}
{'comment': 'https://preview.redd.it/xg97987f3zzd1.jpeg?width=1063&format=pjpg&auto=webp&s=f97709df0aaac5939a7f4027924118ba0eb67a63\n\nHear me out. I bet we can convert him back to a Dem. Then we use his X machine to hammer home a working class message.', 'created': '2024-11-10 01:59:57', 'submission_id': '1gnlw9n'}
{'comment': 'It’d be nice to see folks go left; that’ll be the best way to counter the far right tilt', 'created': '2024-11-10 02:02:08', 'submission_id': '1gnlw9n'}
{'comment': 'In going away as soon as I can', 'created': '2024-11-10 02:13:23', 'submission_id': '1gnlw9n'}
{'comment': 'Plan for two years from now and generally try to make things better for those who are going to be affected.', 'created': '2024-11-10 02:18:54', 'submission_id': '1gnlw9n'}
{'comment': 'Honestly, we need someone who can really dig into the men Trump has appealed to. \n\nI could easily Gavin Newsome and a progressive VP being the next ticket. Although I would like to see Beshear as well.', 'created': '2024-11-10 02:26:31', 'submission_id': '1gnlw9n'}
{'comment': 'We have Gavin Newsom, p', 'created': '2024-11-10 02:30:23', 'submission_id': '1gnlw9n'}
{'comment': 'AOC, Pete Buttigieg, Jasmine Crockett, Colin Allred to name a few', 'created': '2024-11-10 02:32:12', 'submission_id': '1gnlw9n'}
{'comment': 'To the left \nTo the left\n\n-Beyonce', 'created': '2024-11-10 02:32:23', 'submission_id': '1gnlw9n'}
{'comment': 'None of these 3. And not Mayor Pete. Rockstar black/latino men in the party ranks? Not really & imo that’s who we need \n\n\nAt least we know JD Vance (younger Trump family) will be the opponent', 'created': '2024-11-10 02:47:38', 'submission_id': '1gnlw9n'}
{'comment': 'JB Pritzker, Andy Beshear, Mark Kelly and Roy Cooper are some of our best bets right now.', 'created': '2024-11-10 03:16:02', 'submission_id': '1gnlw9n'}
{'comment': "Vote locally and make sure people get elected on school boards, etc etc are not going to destroy the institution. \n\nThen, vote in the primaries in two years. I don't get it, repoblican voters come out every time, why can't dems? \n\nBut we also need to take it one day at a time and see what comes down the pipe. Unplug for a while, focus on yourself and those who support you. Don't stop living.", 'created': '2024-11-10 03:19:35', 'submission_id': '1gnlw9n'}
{'comment': '* Find a way to counter Republican “simple solutions to complex problems”. Explain in easily understandable terms why a border wall is an unrealistic solution. Pete Buttigieg excels at that and the party should make him a huge asset. (Or just, you know, nominate him.)\n* Humanize things. We tried that with reproductive rights but it was an issue we had majority support on anyway. Find someone who owns a Toyota dealership in a small town. Show them as a pillar of the community, talk about how many people work there, mention that he sponsors a Little League team, all that, then he says, “Trump’s tariffs will shut me down in a year.”', 'created': '2024-11-10 03:21:03', 'submission_id': '1gnlw9n'}
{'comment': "Start by completely rebuilding the DNC. Clean house and start over. Out with the old and in with the new. For way too many elections now, they have behaved as if we are still dealing with Eisenhower Republicans who could be reasoned with, were willing to compromise, and focus on serving the American people. The DNC's inability to either recognize or accept the nature of the enemy (because opponent no longer accurately describes what the Republican Party has become) has led to repeated frustration and suffering for the people the Democratic Party claims to support. Old ways of thinking, campaigning, and legislating on the part of DNC leadership has brought us to the point where it's no longer hyperbolic to question whether this country will ever have another free and fair election.\n\nStop relying on people voting AGAINST MAGA and give us something and someone actually worth voting FOR!", 'created': '2024-11-10 03:23:52', 'submission_id': '1gnlw9n'}
{'comment': "We focus on 2026 mid terms. I mean if Democrats can't even take House or Senate back in the midterms, 2028 is most likely fucked.\n\nAfter 2026, then we see who decides to run. Support and volunteer for the candidate you like, then the primaries will show us who actually has the better ground game and whose supporters actually turnout to vote.", 'created': '2024-11-10 03:25:40', 'submission_id': '1gnlw9n'}
{'comment': 'Honestly new faces would be the best direction to go.', 'created': '2024-11-10 03:26:41', 'submission_id': '1gnlw9n'}
{'comment': 'I’m thinking about this pretty much non-stop. I think the person who wins is usually the most authentic, genuine. Trump is a bat shit crazy loon, but he’s transparent about it. He’s an egotistical ass, but he doesn’t hide it. Democrats are too smart for their own good. They are constantly saying and doing the right thing based on data. Kamala was SMART. I thought many times how smartly she avoided potential land mines and was so smooth so often. And I’ve come to the conclusion that this savvy has unintended negative effects. I think people vote for presidents who are 5% stupid. Biden is a straight shooter, but not academic. Hillary had a huge moment when she showed authentic emotion. Bush, Reagan- a little dumb, but honest in their dumbness. Obama of course breaks my theory, because he was wicked smart, plenty academic, and is a slick politician. But there was an earnest geek in there too. \nWalz, Bernie, AOC, Katie Porter are all transparently earnest, and very strong in this way.\nEdit- I think we vote for people who know exactly, precisely who they are, and are unashamedly themselves.', 'created': '2024-11-10 03:28:49', 'submission_id': '1gnlw9n'}
{'comment': 'You better figure it the f*ck out, quick', 'created': '2024-11-10 03:31:21', 'submission_id': '1gnlw9n'}
{'comment': 'We watch\nAnd then fight when they try to get rid of 0ur Constitution', 'created': '2024-11-10 03:45:01', 'submission_id': '1gnlw9n'}
{'comment': 'Show that we are a party looking to unite with each other, realize our mistakes, and come back stronger with that regard.', 'created': '2024-11-10 04:01:56', 'submission_id': '1gnlw9n'}
{'comment': 'Biden should resign and let Kamala be president for a few weeks - it will drive the cultists mad -', 'created': '2024-11-10 04:12:34', 'submission_id': '1gnlw9n'}
{'comment': 'To create a Liberalk Party no matter how long it takes. Dems can’t be republican-lite because they will lose again and again.', 'created': '2024-11-10 04:14:12', 'submission_id': '1gnlw9n'}
{'comment': 'well, 11/9/2024 is when you start getting campaign trail going for both 2026 and early start on 2028. I suggest everyone get involved and write your senators and house reps in who you support. Hell, if you can do so run yourself in local parts of the country if you think you can.', 'created': '2024-11-10 04:17:34', 'submission_id': '1gnlw9n'}
{'comment': "After John Kerry lost in 2004 this was the same temperature of the Democratic Party. We thought George W, the Cheneys, would be the future of the conservative party and they would be unstoppable. Nobody, I mean nobody saw Barack Obama coming even after a riveting speech at the convention in 2004. \n\nI promise you this, there is a Democrat, worthy to be our nominee and just as promising, we just don't know when and we just don't know who, but they are out there and that gives me hope. \n\nSo that's where I'm at, I'm not looking to force an AOC nomination, I'm not looking at Bernie. It could be them, however, but I'm just saying it doesn't have to be and we shouldn't force the issue.", 'created': '2024-11-10 04:21:14', 'submission_id': '1gnlw9n'}
{'comment': 'Follow Bubba’s example and move to the middle. Preferably Andy Beshear and a Latino VP. Maybe Jon Bel Edwards. Or someone we don’t see coming yet.\n\nHarris would have been an excellent president, but she got bludgeoned with her lefty statements from her 2019 campaign (yes she had headwinds that weren’t her fault too).', 'created': '2024-11-10 04:23:42', 'submission_id': '1gnlw9n'}
{'comment': 'Well for right now we need to work on getting a congressional majority for democrats in the midterms, something to shackle Trump', 'created': '2024-11-10 04:31:45', 'submission_id': '1gnlw9n'}
{'comment': 'Now? Now America is about to get exactly what it asked for.', 'created': '2024-11-10 04:34:44', 'submission_id': '1gnlw9n'}
{'comment': 'I hate it, but too many people are not ready for a female POTUS.', 'created': '2024-11-10 04:52:41', 'submission_id': '1gnlw9n'}
{'comment': 'I have started listening to the Meidas Touch and Legal AF. They are ready to organize those leaders who are passionate about protecting the rights we ALL deserve. I will happily support their efforts in any way I can.', 'created': '2024-11-10 04:53:08', 'submission_id': '1gnlw9n'}
{'comment': 'We physically show up and help save the lives of those to be persecuted. We are going to have to create human shields and underground safety networks. We are going to have to dox and publically ridicule those who try to ruthlessly wield power.', 'created': '2024-11-10 04:56:29', 'submission_id': '1gnlw9n'}
{'comment': 'Hopefully democrats begin campaigning early, say 2026 or 2027, which will give plenty of democrats plenty of time to present themselves and let voters decide before primaries. That will give us the best chance for the best candidate to become the nominee.', 'created': '2024-11-10 04:58:48', 'submission_id': '1gnlw9n'}
{'comment': 'First thing is to focus on routing Republicans in both the House and the Senate in 2026 . We lost because the mainstream media held Kamala to a different standard altogether. For more than eight years they have been sanitizing and sane-washing Trump and his lackeys in Congress. Why should reporters on the network news programs be above criticism? They bashed President Biden all year long and then made every excuse possible for Trump’s countless lies, offensive language and threats to weaponise the government against people he hates.', 'created': '2024-11-10 05:07:42', 'submission_id': '1gnlw9n'}
{'comment': 'Jimmy Carter might be the way\n\n\n\nBut on a serious note, I feel the Pennsylvania Governor would be our best option', 'created': '2024-11-10 05:12:23', 'submission_id': '1gnlw9n'}
{'comment': 'We need to be following, VERY CLOSELY, the current and sure to be future plagiat of union labor in this country. These folks are going to get a very rude awakening in the next year or two, and then midterms. Dems need to be ready WITH ANSWERS, AND A PLAN, when the trump/musk/vance bullshit starts taking effect. This is a key demographic that can be peeled away from maga, and back to its rightful home.', 'created': '2024-11-10 05:48:43', 'submission_id': '1gnlw9n'}
{'comment': "we need to branch out into rural America and listen to people there. Obviously you can't just parachute into the middle of a red county and start telling them what to think. but you can spread out from from the liberal pockets and let people know you care about what they think, and actually try to help their comunities. Sadly, the coming Trump trainwreck is also going to swing the voters back in the next two elections.", 'created': '2024-11-10 05:51:13', 'submission_id': '1gnlw9n'}
{'comment': 'To hell apparently.', 'created': '2024-11-10 05:53:24', 'submission_id': '1gnlw9n'}
{'comment': 'Josh Shapiro sounded real presidential during his speech in Philly last week. I’d vote for the man.', 'created': '2024-11-10 06:15:58', 'submission_id': '1gnlw9n'}
{'comment': "Put on T-shirt & Jeans. Scratch & snort. Say f*** the man coming along behind me. Engage country musicians, whine and complain about all the freeloaders being on welfare while we are over here busting our ass and we don't got nothing to show for it. Engage the red states at their level. And no, the department of corrections does not do gender reassignment surgery to inmates while they are incarcerated. Inmates get requests denied to go to the library, gender affirming or reassignment care is going to get a big fat no! Start blaming all that back on the Republicans with all the common families understanding that the preachers have it all wrong. They have all their rights, and they aren't going anywhere. Nobody is going to be bothering them. \n\nRapists do not qualify for the office of president. Insurrectionists do not qualify for the office of president. Traitors do not have a place in the office of president.\nHe's way too advanced in years. Old as f\n\nWorld dictators are way too happy about this little development. We are getting our guns while we can.", 'created': '2024-11-10 06:58:29', 'submission_id': '1gnlw9n'}
{'comment': 'Were any of you a part of Gavin Newsome’s call?', 'created': '2024-11-10 06:59:45', 'submission_id': '1gnlw9n'}
{'comment': 'We need the DNC to fight for us instead of their rich donors. If not we need a new party. First, though we need to stop the people who want to turn our country into a Theocracy. We need to blame the few wealthy individuals who are responsible for this instead of pointing fingers at each other. There are more of us than them. The war is here folks. https://www.motherjones.com/politics/2023/12/how-leonard-leos-dark-money-network-orchestrated-a-new-attack-on-the-voting-rights-act/', 'created': '2024-11-10 07:04:51', 'submission_id': '1gnlw9n'}
{'comment': 'Need to speak simple like plants eat sun and shit air simple.', 'created': '2024-11-10 07:30:27', 'submission_id': '1gnlw9n'}
{'comment': 'A “strong boarder” progressive populist (male). \nTimes are changing. Once lefties started adopting stronger immigration laws they will win, paired with things like M4A.', 'created': '2024-11-10 07:44:17', 'submission_id': '1gnlw9n'}
{'comment': "Midterms. And hope we can at least grab either the House or the Senate. We still won a lot of down ballot races even though Trump won the swing states, so that's something to hope for at least. The midterm map is more favorable for Democrats and let's hope incumbency will face another backlash. The Republicans are bound to overreach.", 'created': '2024-11-10 08:45:50', 'submission_id': '1gnlw9n'}
{'comment': 'Voter. Turnout. \n\nWe all did our job. We\'re engaged. We\'re informed. We mobilized to help ensure others felt that motivation and urgency. \n\nBut it wasn\'t enough. It\'s because we waited too long. And we always manage to do this. \n\nIt\'s VERY hard to sustain involvement and determination for a lengthy period of time. Especially when there isn\'t anything pressing for 2 years. \n\nWhat we must do is to grassroots the effort to register and mobilize voters all over (not just paid canvassers and phone bankers) and not just in hyper-targeted "swing states". How we do it is part of the discussion. But we continually fail to reach 70% national turnout among people supportive of the ideology behind the Democrat platform. \n\nThose of us who are engaged and passionate clearly aren\'t enough', 'created': '2024-11-10 09:18:48', 'submission_id': '1gnlw9n'}
{'comment': 'Newsom or Shapiro. Tbh Dems need someone that can appeal to the working class, and neither of them really fit the bill. I do think Kamala if she runs again has a good shot in 2028, but their best option is a straight white man.', 'created': '2024-11-10 10:16:33', 'submission_id': '1gnlw9n'}
{'comment': 'Canada', 'created': '2024-11-10 10:27:36', 'submission_id': '1gnlw9n'}
{'comment': 'Ranked choice primaries', 'created': '2024-11-10 11:12:13', 'submission_id': '1gnlw9n'}
{'comment': 'If you want to win, look at policy.\n\nIf you want to lose, look at communication and who to blame.\n\nSo far it’s the latter.', 'created': '2024-11-10 11:17:28', 'submission_id': '1gnlw9n'}
{'comment': "Gotta reach out to the progressives. Reaching across the aisle didn't work, and we actually lost votes doing it. We need to adopt a more Bernie-esq strategy.", 'created': '2024-11-10 12:23:26', 'submission_id': '1gnlw9n'}
{'comment': 'Idk but whoever it is, we should get them out onto podcasts and other outlets sooner rather than later. Enough waiting until the year of.', 'created': '2024-11-10 12:29:31', 'submission_id': '1gnlw9n'}
{'comment': 'Democrats need a new message.', 'created': '2024-11-10 14:01:26', 'submission_id': '1gnlw9n'}
{'comment': 'I have always been fairly liberal and am in a purple state. This election was the first time I ever donated to or volunteered on a campaign (canvassing, phone banking). I keep seeing comments saying the best way to help in the fight is to get involved locally, but can someone help me out with how to get started? Do I just go to a local Democratic Party meeting? What are others doing? Thank you!', 'created': '2024-11-10 14:21:17', 'submission_id': '1gnlw9n'}
{'comment': "I have the answer. This time around, spend 4 years actually goddamn grooming someone. Joe Biden was never supposed to run for a second term. He ruined it. We should have spent 4 years grooming someone so they were a household name and everyone was behind this person. This is how you win an election, not a 3-month sprint with a brand new candidate. What are you crazy? C'mon man!", 'created': '2024-11-10 17:37:56', 'submission_id': '1gnlw9n'}
{'comment': 'They are misinformed toddlers but it doesn’t explain the millions of dems who didn’t show up for a woman of color. We’ve been dancing around this basic fact for days:\n\n*Hillary lost to Trump.\n\n*Biden beat him fair and square.\n\n*Kamala lost to Trump. \n\nThe Pattern is obvious yet I hear dems pushing for AOC and Whitmer in the next general election! Its mind boggling and very naive to ignore that misogyny, which was stoked and propagated by the GOP who targeted the young incel bro demographic (admitted by Bannon), played a pivotal role in this election. \n\nInsanity is doing the same thing over and over and expecting a different result. \n\n~Einstein', 'created': '2024-11-10 17:52:52', 'submission_id': '1gnlw9n'}
{'comment': 'To sleep', 'created': '2024-11-10 18:03:09', 'submission_id': '1gnlw9n'}
{'comment': '\n\n**?**', 'created': '2024-11-10 18:08:58', 'submission_id': '1gnlw9n'}
{'comment': 'I agree with everyone who says have an actual open primary. I\'m honestly not sure many of the "top" candidates are going to make great choices.\n\nHarris was bad in 2020 and wasn\'t particularly great in 2024, though she was handicapped. Unfortunately, she\'s going to be tied to the Biden administration for the rest of her political career and Trump already wrote the narrative on that administration because the Democrats dont know how to message.\n\nBernie is way too old and too socialist. \n\nAOC maybe, but she\'s far more progressive and a firebrand, thus giving the GOP ample opportunity to call her a radical. Also, judging by 2016 and 2024, I\'m not sure we\'ll ever elect a woman president. \n\nBest chances are maybe Newsome or Shapiro. They have their issues but they\'re generally seen as far more moderate and able to work across the aisle, particularly Shapiro. \n\nHonestly, no idea anymore. DNC needs to work on its messaging and getting back to it\'s roots instead of trying to just counter MAGA and parading around the Cheney\'s', 'created': '2024-11-10 18:14:55', 'submission_id': '1gnlw9n'}
{'comment': "Not Bernie he's too old, someone with his politics and can explain that 1%ers and billionaires are the problem.", 'created': '2024-11-10 18:25:59', 'submission_id': '1gnlw9n'}
{'comment': "There's time. A lot of anger and planning can happen in four years", 'created': '2024-11-10 19:23:20', 'submission_id': '1gnlw9n'}
{'comment': 'https://preview.redd.it/3lq13me7lyzd1.png?width=800&format=png&auto=webp&s=8c43b570b44bd69fdce58063f92e16d99c14da87\n\nDean Phillips.', 'created': '2024-11-10 00:17:03', 'submission_id': '1gnlw9n'}
{'comment': 'Stop nominating women. Easy to get the incels to the polls against a woman. Let that experiment be over.', 'created': '2024-11-10 00:38:54', 'submission_id': '1gnlw9n'}
{'comment': 'America will never vote for a woman full stop. It sucks but those are the breaks', 'created': '2024-11-09 23:45:03', 'submission_id': '1gnlw9n'}
{'comment': 'Clearly we just need the Democratic politicians to put in who we want. The problem is they keep saying “you’re to stupid to elect who you want as president so we will decide for you”. This is how we ended up with Hillary Clinton and not Bernie Sanders. But yet Democrats claim to be the party of democracy. They are really starting to lose me.', 'created': '2024-11-10 00:01:45', 'submission_id': '1gnlw9n'}
{'comment': 'I believe the question is directed at the democratic party, and I honestly dont know. But it needs to change. It has been steeped too long in the Clintonist pro-business, pro-war agenda, to where it really doesnt represent any progressive liberal anymore that doesnt have to make a lot of “concessions”. Bernie, Ocasio-Cortez, Elizabeth Warren could have been it. But it feels like the Democratic establishment is too systematically ingrained to let it happen. We need re-alignment because clearly Trumpist populism is the direction a slight but undeniable majority of Americans believe in, and progressivism has to keep fighting to beat it.', 'created': '2024-11-10 00:03:41', 'submission_id': '1gnlw9n'}
{'comment': '2026 Blue Wave', 'created': '2024-11-10 00:11:21', 'submission_id': '1gnlw9n'}
{'comment': 'Well we can start by not reposting the same basic post that’s been posted 1,000 times in the past few days in here.', 'created': '2024-11-10 00:35:50', 'submission_id': '1gnlw9n'}
{'comment': 'No more milktoast candidates. Biden got lucky because Trump didn’t take Covid seriously.', 'created': '2024-11-10 00:40:20', 'submission_id': '1gnlw9n'}
{'comment': 'It’s newsome from California.', 'created': '2024-11-10 00:41:09', 'submission_id': '1gnlw9n'}
{'comment': 'Next person up. She should not run again. We need a fresh voice', 'created': '2024-11-10 00:43:55', 'submission_id': '1gnlw9n'}
{'comment': "Honestly, prepare to ride out at least two years. We have no choice. Make whatever changes that are needed. Blackout social media politics. It's toxic and we really don't have the mental head space. Trump is a lame duck president and has no incentive to do a good job. He will do what is good for him. Reflect and improve where we can. Midterms make a comeback and prepare to make a case to address the damage that happens.\n\nWe messed up. We learn from what is to be.", 'created': '2024-11-10 00:49:27', 'submission_id': '1gnlw9n'}
{'comment': "1. America is not ready for a female president so Dem's should NO longer nominate them.\n\n2. Need to nominate a celebrity.\n\nWE are not bringing the dumb with us. We need to bait the dumb.", 'created': '2024-11-10 00:56:44', 'submission_id': '1gnlw9n'}
{'comment': 'We have to stop running feel good candidates. We need to run people that will win. Biden won in 2020 because he was safe and predictable and reliable. That’s what people who spent the previous 4 years watching the daily dumpster fire wanted. We became complacent in the last 4 years, we figured anyone could run and beat Trump. So we went back to our old standby. We ran a first ever <insert adjective and noun here> so we could feel superior and progressive. We needed to run a killer. We didn’t and we lost.', 'created': '2024-11-10 01:02:33', 'submission_id': '1gnlw9n'}
{'comment': 'I dont know, Im thinking Ireland.', 'created': '2024-11-10 02:04:32', 'submission_id': '1gnlw9n'}
{'comment': 'I’m trying to figure out a way to flee the country and contemplating suicide daily. I’m not sure I’m gonna make it to the 20th.', 'created': '2024-11-10 03:40:42', 'submission_id': '1gnlw9n'}
{'comment': 'Buttigieg ‘28. Make America Smart Again.', 'created': '2024-11-10 04:23:53', 'submission_id': '1gnlw9n'}
{'comment': 'We need to convince Mark Cuban to run. I know he doesn’t really want the office, which means he’d be most fit for it.', 'created': '2024-11-10 04:27:45', 'submission_id': '1gnlw9n'}
{'comment': 'As much as I would love him to become president, Bernie Sanders is too old. Now, we missed our chance and he will forever go down in the history as the best president we’ve never had. AOC has promised, and I believe that we should take her up to the top, but we live in a populist era, so we need to start running populists. Now I could do that, but I wouldn’t be eligible until 2036, and we do not have until 2036, besides, people have no idea who I am yet. I think what we need to do. Ultimately is find someone with the energy of Bernie Sanders, who will be able to take the reins from him and fight for the populist appeal, there were a lot of Trump supporters who would have otherwise voted for Bernie.', 'created': '2024-11-10 16:15:38', 'submission_id': '1gnlw9n'}
{'comment': "I wonder if they could run Tim Waltz for prez, IF there's an election in 2028.", 'created': '2024-11-10 16:37:37', 'submission_id': '1gnlw9n'}
{'comment': 'What do you mean? There will not be another legit election ever again', 'created': '2024-11-10 00:31:26', 'submission_id': '1gnlw9n'}
{'comment': "We simply rebound in midterms, and in 28, no matter who we ran, we were gonna lose in 24. Biden-Harris inherited the worst of covid, and people simply associate them with it more. So don't feel like kamala did anything wrong, it just wasn't the right time. People will regret voting for trump like so many have.", 'created': '2024-11-10 00:36:03', 'submission_id': '1gnlw9n'}
{'comment': "I go back to being a Green. I'm tired of giving the corrupt, incompetent, corporate sleaze-bag Democrats second and third chances. \n\nBernie Sanders was the only candidate who could have beat Trump in 2016 and the DCC totally sand-bagged his campaign. If they had taken their heads out of their asses for 2 minutes they would have realized that, rightly or wrongly, Hillary Clinton was hated by half the country and progressive Democrats and independents weren't big fans either.\n\nI was on-board and really hoping Harris could pull it off, but she screwed up not supporting Gazans more, not taking the Hispanic vote more seriously, and parading Ms Cheney around so much, instead of having more AOC appearances. Or who knows, maybe this country is so stupid and morally bankrupt that we deserve another Trump presidency. We're about to see what that's like in any event.", 'created': '2024-11-10 03:42:51', 'submission_id': '1gnlw9n'}
{'comment': 'i’m sorry but the democrats party needs a huge makeover. some of yall don’t want to hear this, but your party needs rugged, masculine men and a look of masculinity so it could attract men to the party. you need to stop being anti-white. don’t respond telling me a whole host of reason as to why your party is not. i’m not here say that you are. i just saying that there are people at large who think you are. but most importantly, you guys need to dump your current political figures. The AOC wing of the party is not the route to go. You need someone likable. Think of the president as a billboard for the party. Unfortunately that’s where we are in society. your party needs a social media presence the same way republicans have theirs. your messaging is poor, and you guys have a great message. \n\nman up your party. get social media influencers. also…don’t give republicans more content.', 'created': '2024-11-10 04:34:55', 'submission_id': '1gnlw9n'}
{'comment': 'I doubt that there will ever be a election again in the US that will be democratic. We have entered a new phase of the kingdom of trump.', 'created': '2024-11-10 06:19:44', 'submission_id': '1gnlw9n'}
{'comment': "Gavin Newsome. Although I'll hate losing him as our governor, he's exactly what we need right now at this time. California is the 5th largest economy in the world.\nHe's been a fantastic governor.", 'created': '2024-11-10 01:00:45', 'submission_id': '1gnlw9n'}
{'comment': 'https://preview.redd.it/x56hr3h2tyzd1.jpeg?width=720&format=pjpg&auto=webp&s=1d2596d5b83e49c76352f13518c5eadc2fb08152\n\nHello I am here to talk about 2028!', 'created': '2024-11-10 01:00:53', 'submission_id': '1gnlw9n'}
{'comment': 'Should have stuck with Joe. I get it that you thought he was old. And he didn’t perform so well on that first debate. Joe stood in front of World Leaders and gave some fine speeches around that time. His speeches were great per-debate and great post-debate. One performance and you gave up. \n \nAs shown during election night and all of the searches for Joe. The people did not give up Joe. “Stick with Joe” should have been the slogan. He bought reassurances in front of Trump’s chaos. He was the old grandpa you could look up to next to the shrieking mess trump brought. People want comfort and someone they can trust. \n \nDidn’t any of your criticism against Joe work on Trump? People knew Joe and people know Trump. He was still the perfect foil for Trump and you forgot that.', 'created': '2024-11-10 01:18:53', 'submission_id': '1gnlw9n'}
{'comment': 'Jon Stewart !', 'created': '2024-11-10 01:24:33', 'submission_id': '1gnlw9n'}
{'comment': 'Dems have to stop catering to the Bernie progressive wing of the party! \n\nProgressives can’t win tight elections. Biden was the most progressive president in decades, Harris/Walz was the most progressive ticket and they got destroyed while the moderate senators/governors won their races in pretty much all the swing states. Focus on the moderate liberal and their issues. Climate change, union jobs, women’s rights, lowering costs of houses, schools and healthcare. Get off issues that are unpopular with people like trans right or no voter id. \n\nStart looking at 2026. Find senate seats we can flip like Main and North Carolina. Start donating to Jon Ossoff to help keep his seat.', 'created': '2024-11-10 01:41:33', 'submission_id': '1gnlw9n'}
{'comment': "Step 1: Stop trying to force female candidates onto the top of the ticket. Step 2: Don't paint yourself into a corner during a debate and make an impromptu pledge to pick a VP that checks a DEI box. FFS, we gotta be more calculated in these critical decisions. \n\nSay what you want about Mitch McConnell, but the dude makes ballsy decisions that he knows won't bare fruit for years. We're goddamn better than all this.", 'created': '2024-11-10 02:20:26', 'submission_id': '1gnlw9n'}
{'comment': "From here? Democrats didn't even bother to vote. There's nothing left. From here there's Republican rule forever.", 'created': '2024-11-10 02:23:22', 'submission_id': '1gnlw9n'}
{'comment': "Stop supporting moderates, start supporting progressives only. We've been through this twice so far. Would have been there times were it not for Trump first term being a win for literally anyone competing", 'created': '2024-11-10 03:41:46', 'submission_id': '1gnlw9n'}
{'comment': 'Old white dude who is a centrist if you want to win.', 'created': '2024-11-10 03:49:49', 'submission_id': '1gnlw9n'}
{'comment': 'Bernie ❤️ Bernie 📣 Bernie 🇺🇸🫡', 'created': '2024-11-10 04:03:49', 'submission_id': '1gnlw9n'}
{'comment': 'What makes anyone think there will be another election?\n\nHe said he didn’t need your vote he had plenty, and he did.\n\nHe said you’d never have to vote again, and that remains to be seen.\n\nBut he will have no checks to his power, the law can’t hold him back, and he has the senate, and that means they’ll have all the federal judges and the Supreme Court.\n\nSo, again what makes anyone think there will be another election? At least one where your vote counts. As opposed to the mock elections Putin holds.', 'created': '2024-11-10 05:35:50', 'submission_id': '1gnlw9n'}
{'comment': 'We listen to Bernie, as we should have been doing this whole time.', 'created': '2024-11-10 05:45:47', 'submission_id': '1gnlw9n'}
{'comment': 'Newsom, Buttigieg', 'created': '2024-11-10 06:46:14', 'submission_id': '1gnlw9n'}
{'comment': 'Adam Tod Brown of Unpops Network/You Don’t Even Like This Podcast pointed out that Harris being a DA who had prosecuted myriads of black men for the victimless crime of drug posession is a liability. Turned out he was right.', 'created': '2024-11-10 12:48:02', 'submission_id': '1gnlw9n'}
{'comment': 'not having kamala as a candidate for one', 'created': '2024-11-10 23:51:43', 'submission_id': '1gnlw9n'}
{'comment': "Kamala just had a historic loss, forget about her, she's forever marked by this lame defeat in any campaign she dares to participate.", 'created': '2024-11-10 00:38:07', 'submission_id': '1gnlw9n'}
{'comment': 'We need AOC 2028', 'created': '2024-11-10 03:53:56', 'submission_id': '1gnlw9n'}
{'comment': '💕', 'created': '2024-11-10 00:22:10', 'submission_id': '1gnlw9n'}
{'comment': 'No, not a hands-off primary in 2028. I think we need a show-mock convention in 2026, just so that the democratic party can just see what is being offered by its leaders and go from there. I kept hearing that "why isn\'t there more contact between the voters and the leaders themselves." We need more meetings, not less. We need Left Wing propaganda machines as well. Stop depending on the MSM like MSNBC, NBC, CNN, NYTs, The Washington Post and all the other papers, and The View being the image of the "Liberal/Dem Media"\n\nWe need a lot of work to reframe the party back to the Working Class and no longer being associated with the "Idea of Wokeness or the Elites or the Establishement". Because that shit is killing us at the top of the ballot but especially down ballot. We keep hearing it in Texas. That the Dem party has left them. Well all the image they get of the Dem party are all those talking heads on MSM, Papers, and whatever content they run into on social media. \n\nWe need a Machine of info running all yr every yr. Not a freaking collection of funds every 2-4 yrs. By that point, the American people have seen and heard a bunch of lies and bullshit that we come towards the end trying to fight down. All the transphobia needs to be addressed. I\'m legit. We don\'t need to throw the subject and them under the bus. But it sure as hell needs to be addressed, because the American people are clearly falling for the disinformation. And in turn more and more of our rights are being chipped away\n\nWe need to Stop running on labels like "Progressive", stop being "weird" to the normy\'s. The labels have a shadow running right behind them. People just think of Progressives and Dems literally as demons at this rate. To overcome the shadow, we need to change. We need to restablish our cause for the working class people. And do not divide them by race. We don\'t need to continue repeating our progressive values. We don\'t need to be running on that all the time, I\'m legit. People literally think that all the Dem Party stands for is for LGBT people and Immigrants. And thats it. Sure we want to better rights, but the day to day people worry more about their economy and economic oppurtunities. \n\nWe know we need to pass a lot of shit. But we need to win votes to get power to do the shit we need to do. At the end of the day, we all know that wealth equality in this country is really killing us politically. And its why it was much easier for Drumpf to cater to many people. The assumption always is for some fucking reason that Republicans are better at the economy than Democrats\n\n(Also none of these people, I feel like we keep dropping little time bombs that we keep getting rejected, time after time, election after election. Love them, but def not a representation for the whole country. We\'re just too different with the baggage they carry) We need to focus on the working class and more populism economic talking points! I also hope this doesn\'t get lost here, I\'m being serious and I hope that many people carry this message to other Dems', 'created': '2024-11-10 02:09:14', 'submission_id': '1gnlw9n'}
{'comment': 'Bernie will be 87 in 2028, assuming he’s even still kicking… we need to just be done with Bernie. Given that the DNC has lost 2/3 of the last elections running women it might be time to realistically look at the fact that the America isn’t going to vote for a woman.\n\n[Harris was one of the most unpopular VPs in modern history and just got bounced hard in a presidential election](https://www.newsweek.com/kamala-harris-approval-rating-2024-problem-1853029). Her career might not be over but no, she won’t be back in 2028.\n\nLook, this is only the second time post-Reagan that the GOP has won the popular vote. [We can either learn from this or double down on what Pelosi said and lose again.](https://www.nytimes.com/2024/11/09/magazine/nancy-pelosi-election-interview.html)\n\nHonestly… we just need to cap the age at 70 at which people can hold federally elected positions.', 'created': '2024-11-10 05:06:07', 'submission_id': '1gnlw9n'}
{'comment': 'We need more candidates with media background that are good communicators, a Jon Stewart type. I know that doesn’t equate to governing well, but it sure helps getting elected', 'created': '2024-11-10 01:23:38', 'submission_id': '1gnlw9n'}
{'comment': "It's cute that you think there will be elections in 2028.", 'created': '2024-11-10 01:14:08', 'submission_id': '1gnlw9n'}
{'comment': 'We need to start organizing now. Blue Wave 2029, anyone?', 'created': '2024-11-10 04:06:04', 'submission_id': '1gnlw9n'}
{'comment': 'Absolutely we deserve a hands off primary. The DNC has repeatedly showed us they are incapable of running a good campaign to avoid fascism walking through the door on their own. We need a candidate with energy behind them with the base, not just a DNC lifer they prop up.', 'created': '2024-11-10 19:46:42', 'submission_id': '1gnlw9n'}
{'comment': 'We need to do grassroots organizing. This needs to happen in person as well as online. We need people to do all kinds of roles.', 'created': '2024-11-10 23:26:23', 'submission_id': '1gnlw9n'}
{'comment': 'It’s actually easier for right wing parties to have female leaders. Being female or any visible minority makes someone seem more liberal to people. For a left wing party that’s a disadvantage as it alienates independents and moderate voters on the other side. For a right wing party it’s an advantage as it makes the candidate more attractive to voters on the left. \n\nLook at the UK. First female prime minister was Margaret Thatcher, a conservative. They’ve had three other female leaders since then, an Indian guy and now a Black woman. Meanwhile the Labour Party is on their hundredth consecutive white guy.', 'created': '2024-11-10 00:43:14', 'submission_id': '1gnlw9n'}
{'comment': 'I think it’s almost guaranteed, and just thinking of the smugness that will pervade the GOP if that’s the case brings me out in hives.', 'created': '2024-11-10 00:24:45', 'submission_id': '1gnlw9n'}
{'comment': 'People keep saying this, but that’s not going to happen. The only way we’ll get a woman president is if two women make it past the primaries and are running against each other', 'created': '2024-11-10 00:47:28', 'submission_id': '1gnlw9n'}
{'comment': 'Biden should resign on Dec 1st and make harris the first woman president\n\nalso because by then the MAGAts will be making all kinds of Trump47 merch and then Harris would be 47 and their merch would be fucked loool', 'created': '2024-11-10 01:17:47', 'submission_id': '1gnlw9n'}
{'comment': "I'm 100% democrat but I'll admit that Nikki Haley seemed pretty decent until she said that she'd raise the retirement age", 'created': '2024-11-10 00:28:27', 'submission_id': '1gnlw9n'}
{'comment': 'They seem to be prepping Kristi Noem for a run and she’s awful.', 'created': '2024-11-10 01:28:14', 'submission_id': '1gnlw9n'}
{'comment': 'I’ve had the thought that that is the only way a woman will win. 😔', 'created': '2024-11-10 00:43:05', 'submission_id': '1gnlw9n'}
{'comment': 'Under his fucking eye…yep', 'created': '2024-11-10 01:33:54', 'submission_id': '1gnlw9n'}
{'comment': "OMG, you're making me think of MTG. I HATE IT!", 'created': '2024-11-10 03:04:15', 'submission_id': '1gnlw9n'}
{'comment': 'I’m honestly convinced that’s going to be what happens. How is it that *Republicans*, the social conservatives, represent the following “firsts” in history:\n* First congresswoman (R-Montana)\n* First female supreme court justice (appointed by Reagan)\n* First woman nominated as VP (Sarah Palin)\n* First black secretary of state (Bush Jr)\n* First black woman Secretary of State (Bush Jr)\n* First black senator, both appointed (Mississippi) AND popularly elected (Massachusetts)\n* First Indian governor (R-Louisiana)\n* First mexican senator (R-New Mexico)\n* First cuban senator (R-Florida)\n* First asian cabinet member (Bush Jr)\n* First openly gay cabinet member (Trump)\n\nand probably a lot more I’m not thinking of', 'created': '2024-11-10 04:13:04', 'submission_id': '1gnlw9n'}
{'comment': 'No. I don’t think so. The smart Republican women that could do the job are older and plain looking. The woman that ran as a vp candidate with McCain was attractive and as dumb as a bag of rocks.😳', 'created': '2024-11-10 00:31:26', 'submission_id': '1gnlw9n'}
{'comment': 'Bold of you to think we remain a democracy', 'created': '2024-11-10 01:34:20', 'submission_id': '1gnlw9n'}
{'comment': 'MTG, Sarah Huckabee-Sanders, Boebert ? 😝\nEdit: Trump’s daughter Ivanka?', 'created': '2024-11-10 00:56:03', 'submission_id': '1gnlw9n'}
{'comment': 'Yep. Sadly, I concur.', 'created': '2024-11-10 00:57:38', 'submission_id': '1gnlw9n'}
{'comment': 'Who, that old librarian from trumps Jamaica Queens grade school he rolled out the other night?', 'created': '2024-11-10 00:57:45', 'submission_id': '1gnlw9n'}
{'comment': 'It’ll either be Kari lake or Ivanka', 'created': '2024-11-10 01:13:23', 'submission_id': '1gnlw9n'}
{'comment': "I don't agree with this. Republicans are not progressive enough for this. I don't see that happening (in my lifetime)", 'created': '2024-11-10 01:19:19', 'submission_id': '1gnlw9n'}
{'comment': 'They give lip service to women and then vote them down in every primary. It’s not happening.', 'created': '2024-11-10 01:22:40', 'submission_id': '1gnlw9n'}
{'comment': "I live in the UK and we've only ever had 3 female prime ministers, all conservative.\n\nOne bad, two catastrophic (that's a reflection on conservativism, not women, the men were mostly if not entirely shit too).", 'created': '2024-11-10 01:28:26', 'submission_id': '1gnlw9n'}
{'comment': "I mean it's possible. The misogyny would be partially offset by the fact that she is the candidate for the party that would usually be making those attacks. \n\nThat assumes though that she gets through the Republican Primary, and I can't see that happening anytime soon. A Republican VP maybe.", 'created': '2024-11-10 01:35:01', 'submission_id': '1gnlw9n'}
{'comment': 'Sure. Ivanka. 🙄', 'created': '2024-11-10 01:40:59', 'submission_id': '1gnlw9n'}
{'comment': 'Easily controlled Stepford-wife type, and does as the party orders. Not really a surprising thing, really. She would be no different than the men in their lineup.', 'created': '2024-11-10 02:17:51', 'submission_id': '1gnlw9n'}
{'comment': '', 'created': '2024-11-10 02:34:49', 'submission_id': '1gnlw9n'}
{'comment': '🤔 Ivanka Trump…', 'created': '2024-11-10 02:48:28', 'submission_id': '1gnlw9n'}
{'comment': 'Nope. Top much misogyny.', 'created': '2024-11-10 03:01:55', 'submission_id': '1gnlw9n'}
{'comment': "Vance will run with a female VP in 4 years, I would have said Haley but seeing how trump still seems hell bent on punishing her I wouldn't rule out something insane like Ivanka.", 'created': '2024-11-10 03:17:51', 'submission_id': '1gnlw9n'}
{'comment': 'Unfortunately one of the first thoughts I had was Ivanka 2028. It won’t be one of his idiot sons, it will be his idiot daughter in his footsteps. And they will fall for it. Ufff', 'created': '2024-11-10 07:36:13', 'submission_id': '1gnlw9n'}
{'comment': 'Ivanka.', 'created': '2024-11-10 13:21:24', 'submission_id': '1gnlw9n'}
{'comment': "Only if she's fuckable. Naturally.", 'created': '2024-11-10 15:51:00', 'submission_id': '1gnlw9n'}
{'comment': '25-30 yrs ago I wondered if perhaps if (Republican) Christine Todd Whitman might become our first woman president.\n\nBut I’ve been saying for 35 years (when I was 20) that I had a hunch the Republicans would end up giving us our first woman in the Oval Office.', 'created': '2024-11-10 16:09:49', 'submission_id': '1gnlw9n'}
{'comment': "at this point I think it's all but guaranteed. Dems aren't going to run a woman again anytime soon. Certainly not in 2028.", 'created': '2024-11-10 18:26:49', 'submission_id': '1gnlw9n'}
{'comment': '🤮', 'created': '2024-11-10 23:52:52', 'submission_id': '1gnlw9n'}
{'comment': 'Tulsi?', 'created': '2024-11-10 00:46:35', 'submission_id': '1gnlw9n'}
{'comment': "Maybe Jeff Jackson could win. He's a smart kind gentleman and he used to be a soldier. He's really cool", 'created': '2024-11-10 01:01:33', 'submission_id': '1gnlw9n'}
{'comment': "I think the singular reason the Democratics didn't win is because a majority of the population is hurting from inflation. When you're in a bad situation you think of yourself and your family first. Voting for someone in the same administration that put you there isn't going to happen. \n\nIt's not easy to educate voters.. many don't understand inflation was caused by the pandemic and a government response that prevented what would likely have been a great depression. They don't understand the Biden/Harris administration handled this very well and put us in a situation where people could start to be doing better.", 'created': '2024-11-10 05:41:19', 'submission_id': '1gnlw9n'}
{'comment': 'Pelosi needs to retire', 'created': '2024-11-10 16:24:36', 'submission_id': '1gnlw9n'}
{'comment': "Dems need to communicate the fuck out of what is happening too. Trump will go out everyday selling his terrible plans, when people are hurting he'll send them checks with MAGA socialism. We cannot let there be this massive vacuum in comms anymore.", 'created': '2024-11-10 18:28:12', 'submission_id': '1gnlw9n'}
{'comment': "In two years the Democrats will win the midterms for obvious reasons. Trump's last two years (assuming he lives that long considering his poor health) will be extra ineffective. All this will lead the pendulum to swing back to the Democrats quite hard in 2028 imho.\n\nAfter the insanity of Bush, Obama won.\n\nAfter the insanity of Trump, Biden won.\n\nPeople have poor short-term memories and let Trump get in, but after the insanity of Trump round 2, a Democrat will win.", 'created': '2024-11-10 02:24:23', 'submission_id': '1gnlw9n'}
{'comment': 'lol all the local businesses will probably be gone. Name a restaurant that doesn’t have an entire staff built on people Trump wants to deport.', 'created': '2024-11-10 00:11:27', 'submission_id': '1gnlw9n'}
{'comment': 'We need to let corporations know that they don’t control us, we control them. Buy only the things you need from places you trust. Don’t buy from Amazon, Walmart, Tesla, Home Depot, etc… We are doing this to ourselves at this point. We can’t keep complaining while we keep spending money with the very people trying to consolidate power for themselves. The only power we have is the money in our pockets. Don’t be lazy, do your homework and spend accordingly.', 'created': '2024-11-10 00:41:05', 'submission_id': '1gnlw9n'}
{'comment': 'There is no clear way to know what businesses share our values.', 'created': '2024-11-10 00:03:24', 'submission_id': '1gnlw9n'}
{'comment': '', 'created': '2024-11-10 00:27:56', 'submission_id': '1gnlw9n'}
{'comment': '', 'created': '2024-11-10 00:37:16', 'submission_id': '1gnlw9n'}
{'comment': 'It’s tee shirt time 👕', 'created': '2024-11-10 01:13:15', 'submission_id': '1gnlw9n'}
{'comment': 'CAB-inet members are here!!!', 'created': '2024-11-10 16:23:03', 'submission_id': '1gnlw9n'}
{'comment': "Some thread somewhere asked what reality TV star could we nominate as the Democratic candidate \n\nThis is my pick Yeah Buddy\n\nMakes as much sense as a guy who's platform was he had the top rated NBC reality show for 13 yrs", 'created': '2024-11-10 02:07:10', 'submission_id': '1gnlw9n'}
{'comment': 'Jeff Jackson is The Way.', 'created': '2024-11-10 04:24:21', 'submission_id': '1gnlw9n'}
{'comment': "No AOC. She won't win because she is very liberal... Too liberal", 'created': '2024-11-10 14:52:13', 'submission_id': '1gnlw9n'}
{'comment': 'Just inject it into my veins', 'created': '2024-11-10 05:59:27', 'submission_id': '1gnlw9n'}
{'comment': '😓', 'created': '2024-11-10 00:38:14', 'submission_id': '1gnlw9n'}
{'comment': 'https://preview.redd.it/t7d39vbgpyzd1.jpeg?width=900&format=pjpg&auto=webp&s=d69a2e301bcef6e68bddf20fa9d4935669a802ab', 'created': '2024-11-10 00:40:37', 'submission_id': '1gnlw9n'}
{'comment': 'Beshear is my pick too. Really popular in a deep red state without having to be a conservative dem like someone like Manchin was. Beshear is good at messaging and making dem platform ideas appealing to working class moderate voters which is what we need in 2028.', 'created': '2024-11-10 01:05:51', 'submission_id': '1gnlw9n'}
{'comment': "I LOVE Beshear. I'm from Kentucky, and he is probably the one that keeps the entire state from going red.", 'created': '2024-11-10 01:42:33', 'submission_id': '1gnlw9n'}
{'comment': 'I’m willing to share him with the rest of this country.', 'created': '2024-11-10 00:39:42', 'submission_id': '1gnlw9n'}
{'comment': 'dunno who this but im assuming the point is to run generic white men in the general if you want to win.', 'created': '2024-11-10 00:08:29', 'submission_id': '1gnlw9n'}
{'comment': 'The only one keeping the state from going full red. He has a tough job', 'created': '2024-11-10 00:21:24', 'submission_id': '1gnlw9n'}
{'comment': 'Yes.', 'created': '2024-11-10 01:35:38', 'submission_id': '1gnlw9n'}
{'comment': 'this or Shapiro.', 'created': '2024-11-09 23:55:00', 'submission_id': '1gnlw9n'}
{'comment': 'Who is this? And why him?', 'created': '2024-11-10 00:32:28', 'submission_id': '1gnlw9n'}
{'comment': 'Solid choice! Personally, the Jim Jones christian connection creeps me out but there is no perfect candidate', 'created': '2024-11-10 01:03:17', 'submission_id': '1gnlw9n'}
{'comment': "If we're not ready for a mixed race woman, are we ready for an openly gay white man?", 'created': '2024-11-10 00:22:29', 'submission_id': '1gnlw9n'}
{'comment': "YES. He gets rural voters.\n\nBiased, but let's do Mark Pocan as VP. The anti-Paul Ryan", 'created': '2024-11-10 00:43:10', 'submission_id': '1gnlw9n'}
{'comment': 'I would vote for him.', 'created': '2024-11-10 01:53:13', 'submission_id': '1gnlw9n'}
{'comment': 'My Lord', 'created': '2024-11-10 02:27:00', 'submission_id': '1gnlw9n'}
{'comment': 'Spot on! He should’ve been our guy this time. Unfortunately, he doesn’t check the democrats diversity boxes.', 'created': '2024-11-10 00:02:57', 'submission_id': '1gnlw9n'}
{'comment': 'Underrated comment.', 'created': '2024-11-10 15:13:45', 'submission_id': '1gnlw9n'}
{'comment': 'Actually, first, there needs to be a candidate worth voting for and they need to run a proper, full campaign. After that happens, then yes, democrats need to show up and vote. The “vote for anyone expect a republican” mindset doesn’t work, and you should have learned that after Hillary.', 'created': '2024-11-10 13:40:55', 'submission_id': '1gnlw9n'}
{'comment': 'THIS. This is the correct answer', 'created': '2024-11-10 00:59:43', 'submission_id': '1gnlw9n'}
{'comment': 'We’ve needed to for a long time, that was the only way we won 2016 other than possibly Biden running in 2016, 2020 was a fluke because of how bad things were, and that was the only way that we won this year. We need to fight like hell to make sure that Our next steps forward are measured and tactical.', 'created': '2024-11-10 16:18:22', 'submission_id': '1gnlw9n'}
{'comment': 'But I was told the non college educated working class trump supporters were just gonna magically disappear.', 'created': '2024-11-11 04:42:11', 'submission_id': '1gnlw9n'}
{'comment': 'People need to stop saying this or at least begin to understand what it means.\n\nPopulism will have us abandon LGBTQ rights. It will have us throw immigrants into camps and far away from our towns and cities. It will subjugate Muslims and other religious minorities into dark corners of our society. It will have us do a lot of stuff we have lambasted Trump about for years.', 'created': '2024-11-10 01:33:41', 'submission_id': '1gnlw9n'}
{'comment': "Dems need a fighter, Chris Murphy isn't that person. We need chaotic evil, we need Gavin Newsom", 'created': '2024-11-10 02:06:37', 'submission_id': '1gnlw9n'}
{'comment': 'I keep thinking if Dems had actual primaries that he would have had a real shot at getting the nomination.', 'created': '2024-11-10 01:56:09', 'submission_id': '1gnlw9n'}
{'comment': "It's cold in canada", 'created': '2024-11-10 00:32:50', 'submission_id': '1gnlw9n'}
{'comment': 'Don’t expect us Canadians to help after October 2025, when we vote in our own right wing government', 'created': '2024-11-10 00:27:44', 'submission_id': '1gnlw9n'}
{'comment': 'No foreign power can guarantee our freedom. IF this is truly a fascist regime that denies our rights, our only hope is revolution.', 'created': '2024-11-10 00:33:15', 'submission_id': '1gnlw9n'}
{'comment': 'In all love and charity, let’s try not to hyperventilate. We kept all of the swing state senators. We got a pretty solid base of 70mm. To be objective, the Biden Administration was HORRIBLE at communicating, muffed this immigrant thing, and seems oblivious to widespread COL issues. And Harris had no perceivable problem with any of that…', 'created': '2024-11-10 05:19:43', 'submission_id': '1gnlw9n'}
{'comment': '😢', 'created': '2024-11-10 00:24:09', 'submission_id': '1gnlw9n'}
{'comment': 'At this point, we should just pick a section of the country and create a new one.', 'created': '2024-11-10 00:53:17', 'submission_id': '1gnlw9n'}
{'comment': '> the last few powerful left leaning countries in the world.\n\nBad news. You were it.', 'created': '2024-11-10 01:14:57', 'submission_id': '1gnlw9n'}
{'comment': '[removed]', 'created': '2024-11-10 00:17:42', 'submission_id': '1gnlw9n'}
{'comment': 'Considering how the world is right now, I don’t think Pete would stand a chance being a gay man. I hope I’m wrong though, he would be a great candidate.', 'created': '2024-11-10 05:05:10', 'submission_id': '1gnlw9n'}
{'comment': "God I love Whitmer. She's done so much for my state. Her second (and final) term ends in 2026, So I feel like she'd be a perfect choice.", 'created': '2024-11-10 04:36:28', 'submission_id': '1gnlw9n'}
{'comment': 'We…are not…going…….oh, would you just look at that.', 'created': '2024-11-10 00:13:12', 'submission_id': '1gnlw9n'}
{'comment': 'I would too. One problem: America is still too goddamn misogynistic to elect a woman. Maybe we can try again in 20 years.', 'created': '2024-11-10 03:59:18', 'submission_id': '1gnlw9n'}
{'comment': 'Great ticket!', 'created': '2024-11-10 01:54:48', 'submission_id': '1gnlw9n'}
{'comment': 'I think you’re completely right', 'created': '2024-11-10 01:15:24', 'submission_id': '1gnlw9n'}
{'comment': "I can't believe we lost. Minorities didn't show up at the polls", 'created': '2024-11-10 00:40:35', 'submission_id': '1gnlw9n'}
{'comment': 'But I think that’s one thing we all do, is underestimate how “intelligent“ Tr*mp actually is. I fear with four years and no impeachments, they could learn to use the same audience with different people; spouting the same message and empowering the same ideologies.', 'created': '2024-11-10 00:51:50', 'submission_id': '1gnlw9n'}
{'comment': 'This. This exactly. I didn’t follow politics super closely back then but I remember when both Bill Clinton and Barack Obama came into play I had never heard of either of them. They were fresh energy with renewed promise. Our next candidate needs to be someone that makes people go, “wait, who is this person?!”', 'created': '2024-11-10 15:36:02', 'submission_id': '1gnlw9n'}
{'comment': 'It’s possible we’ll see a Trump family regime dynasty for decades.', 'created': '2024-11-10 00:10:56', 'submission_id': '1gnlw9n'}
{'comment': '\nCorrect', 'created': '2024-11-10 00:09:15', 'submission_id': '1gnlw9n'}
{'comment': 'In a heartbeat', 'created': '2024-11-10 00:07:19', 'submission_id': '1gnlw9n'}
{'comment': "I'd vote for her over and over and I'm not even American", 'created': '2024-11-10 00:09:51', 'submission_id': '1gnlw9n'}
{'comment': 'The pure relief I had when she announced she was running. It felt like we had a chance at least. We had hope again.', 'created': '2024-11-10 00:33:08', 'submission_id': '1gnlw9n'}
{'comment': 'I love Kamala. She almost won..', 'created': '2024-11-10 00:23:13', 'submission_id': '1gnlw9n'}
{'comment': 'Yep. People don’t want to accept that the voters failed her. They chose the felon 🤷🏾\u200d♀️', 'created': '2024-11-10 01:22:31', 'submission_id': '1gnlw9n'}
{'comment': 'Going out on a limb to say she actually ran a relatively bad campaign. \n\nSome very key moments came up when she failed to rise to occasion. When on The View she didn’t have a prepared answer to what, if anything, she’d do differently than Biden. When she (and the campaign) didn’t push to win Latino voters earlier enough and with a message that went beyond immigration. When she didn’t give a clear answer to her solutions for the economy outside of a $4,000 child tax credit and then pointed to Trump being cozy with billionaires.\n\nYes, she worked hard. Yes, she didn’t pursue Arizona at the expense of Wisconsin like Hillary did but she did go to a Houston rally a week before the elections so that was fine?', 'created': '2024-11-10 01:24:58', 'submission_id': '1gnlw9n'}
{'comment': "She did as well as she could in the 3 months she had. I would vote for her again in a heartbeat. She had to toe such a thin line and it was just impossible. If she was too moderate she would turn off progressives. If she was too progressive she would turn off moderates. She had to be able to describe her policies in perfect detail within 30 seconds. She had to have a detailed plan (which she did!) but Trump can have concepts of a plan. People claim that she only went to friendly outlets yet she went on Fox News. Meanwhile, Trump refused to debate her again, refused to do a CNN townhall, didn't do 60 minutes and never went on MSNBC. People bring up her failed 2020 campaign but she was on the winning ticket with Biden. She was a part of an administration that passed some of the most effective legislation in my lifetime yet the media gave Trump all the air for ratings. \n\nAs Van Jones said, Trump can be lawless whole Kamala had to be flawless. Its sad because I truly believe she could have been a great president.", 'created': '2024-11-10 02:12:19', 'submission_id': '1gnlw9n'}
{'comment': "We don't care about people who voted for her who would vote for her again. We need to identify the people who stayed home and who would motivate them to vote.", 'created': '2024-11-10 01:08:55', 'submission_id': '1gnlw9n'}
{'comment': "It's our party's fault. I'm sorry but Kamala was the worst candidate in 2020 (why she dropped out first) and she was elected VP purely for optics (because JB was the crustiest old white man ever). I wasn't thrilled by the idea that the Democratic Party decided who our candidate was, but I understand why it happened. Joe should've announced he wasn't seeking a second term a year earlier than he did and we wouldn't be in this mess right now. \n\nThe people running the Democratic Party have totally lost the thread and I don't know how it can be corrected.", 'created': '2024-11-10 06:12:12', 'submission_id': '1gnlw9n'}
{'comment': 'No she didn’t. She did fine for the circumstances but if Dems had primaries she wouldn’t have won. Dem senators/governors won pretty much all the swing states while she lost all of them. She wasn’t a good interviewer and was too afraid to upset the progressive wing and ran too far left. moderates and independents went trump this time around and that is a big problem.', 'created': '2024-11-10 02:03:12', 'submission_id': '1gnlw9n'}
{'comment': 'I think she is bright, inspiring and ran a phenomenal campaign, but if many American voters judge for her negatively for reasons beyond what she can control, was she the right nominee?', 'created': '2024-11-10 01:25:08', 'submission_id': '1gnlw9n'}
{'comment': 'Her campaign was great…but the candidate was ok. You plug Shapiro in with a billion dollars, and the campaign that she ran with a progressive message…they beat Trump.', 'created': '2024-11-10 01:16:11', 'submission_id': '1gnlw9n'}
{'comment': 'She ran an objectively terrible campaign', 'created': '2024-11-10 13:24:45', 'submission_id': '1gnlw9n'}
{'comment': "He's awesome. He's a hero", 'created': '2024-11-10 00:49:55', 'submission_id': '1gnlw9n'}
{'comment': 'My libertarian husband (who vote primarily dem, and did vote Harris) says Jackson is “one of the few non-corrupt politicians around.” High praise from him.', 'created': '2024-11-10 04:14:56', 'submission_id': '1gnlw9n'}
{'comment': 'I hope we still get to vote', 'created': '2024-11-10 00:19:50', 'submission_id': '1gnlw9n'}
{'comment': 'Well hell…. The majority think Vance is totally ready and he hasn’t even had half the experience as AOC.', 'created': '2024-11-10 06:10:51', 'submission_id': '1gnlw9n'}
{'comment': 'Bring back Chris Matthews!', 'created': '2024-11-10 14:32:17', 'submission_id': '1gnlw9n'}
{'comment': "Why would they pick a fight? They've got all the governments now.", 'created': '2024-11-10 01:16:08', 'submission_id': '1gnlw9n'}
{'comment': 'It’s not her time but I can see it one day.', 'created': '2024-11-10 00:13:38', 'submission_id': '1gnlw9n'}
{'comment': "Exactly this. I'm a big fan of hers. I think she's a hell of a politician, and she's absolutely part of the future. This election proved that women won't win the presidency for now.\n\nShe can damn sure be expected to be an integral part of an administration.\n\nIf she can make it to a nomination, she has my vote.", 'created': '2024-11-10 00:10:24', 'submission_id': '1gnlw9n'}
{'comment': 'Shell probably be a house speaker one day', 'created': '2024-11-10 01:30:09', 'submission_id': '1gnlw9n'}
{'comment': "She is way too inexperienced. I think she'll make a great VP in ten years but this is the kind of thinking that will lose us elections.", 'created': '2024-11-10 06:14:50', 'submission_id': '1gnlw9n'}
{'comment': "AOC would be an automatic lost, perhaps in 20 or so years but not now.\n\nIt needs to be between someone appealing and hardworking like Whitmer, Warnock, Kelly, Duckworth, Beshear, maybe Ossoff.\n\nPeople throw Shapiro and Newsom around, but they would be easy to squander cause of their baggage, might be useful for VP though if they can nail a debate and keep their mouth against the GOP's BS talking points.", 'created': '2024-11-10 02:18:28', 'submission_id': '1gnlw9n'}
{'comment': 'She’s too far left for any meaningful position I’m afraid', 'created': '2024-11-10 00:02:49', 'submission_id': '1gnlw9n'}
{'comment': "I think that part of trump's success was visiting small towns, and he reminded people in small towns to vote for him", 'created': '2024-11-10 00:18:50', 'submission_id': '1gnlw9n'}
{'comment': '😓', 'created': '2024-11-10 00:21:26', 'submission_id': '1gnlw9n'}
{'comment': 'Yeah idk why people are talking about voting, we squandered that. We sat back and watched as our country was methodically deconstructed and we all heard him say vote for him and you’ll never have to vote again…', 'created': '2024-11-10 00:33:51', 'submission_id': '1gnlw9n'}
{'comment': 'TBH I already thought that Biden had signs of dementia in 2020, I still voted for him but it was pretty striking.', 'created': '2024-11-10 01:56:48', 'submission_id': '1gnlw9n'}
{'comment': 'Lost because a whole chain of people thought "I will put a Republican in my cabinet" was a good idea.', 'created': '2024-11-10 01:17:11', 'submission_id': '1gnlw9n'}
{'comment': "It's idiotic but I think it was a factor. It tapped into a very large vein of fear and prejudice.", 'created': '2024-11-10 00:04:25', 'submission_id': '1gnlw9n'}
{'comment': "Walz is so awesome. He's a smart man and very admirable. I feel like all Americans can appreciate him", 'created': '2024-11-10 00:37:18', 'submission_id': '1gnlw9n'}
{'comment': 'I agree. Someone like him is what this party needs.', 'created': '2024-11-10 00:23:27', 'submission_id': '1gnlw9n'}
{'comment': "He's not a very good debater though, and he can fumble to make himself look like a knucklehead.\n\nGreat policies but we need someone charismatic, where's another Bill or Obama when they're needed?", 'created': '2024-11-10 02:38:33', 'submission_id': '1gnlw9n'}
{'comment': "Assuming there's any more elections in the USA, he'd need to be strong enough to tell the DNC to fuck off with appealing to moderates and go all-in on getting the base out to vote.", 'created': '2024-11-10 01:18:33', 'submission_id': '1gnlw9n'}
{'comment': 'I think he’s the front runner, they’ll be looking to turn PA blue again and what better place to start than with him', 'created': '2024-11-10 00:48:13', 'submission_id': '1gnlw9n'}
{'comment': 'Shapiro/Beshear would be a good ticket', 'created': '2024-11-10 04:57:56', 'submission_id': '1gnlw9n'}
{'comment': 'I wish you luck', 'created': '2024-11-10 01:08:43', 'submission_id': '1gnlw9n'}
{'comment': "I trust you more than I trust Trump and Vance, that's for sure.", 'created': '2024-11-11 05:51:52', 'submission_id': '1gnlw9n'}
{'comment': 'I love Gavin, but he’s too “elite”', 'created': '2024-11-10 00:23:46', 'submission_id': '1gnlw9n'}
{'comment': 'I think it should be Newsome and Wes Moore.', 'created': '2024-11-10 00:53:47', 'submission_id': '1gnlw9n'}
{'comment': 'What’s with this if there is another election. We going to have another presidential election 4 years from now lol.', 'created': '2024-11-10 00:17:10', 'submission_id': '1gnlw9n'}
{'comment': 'Yawn.. same ol’ playbook.', 'created': '2024-11-10 01:09:04', 'submission_id': '1gnlw9n'}
{'comment': 'Do you have concepts of a plan?!', 'created': '2024-11-10 00:33:48', 'submission_id': '1gnlw9n'}
{'comment': "The maga cult doesn't represent us", 'created': '2024-11-10 00:46:33', 'submission_id': '1gnlw9n'}
{'comment': 'ossoff is great, but also jewish', 'created': '2024-11-10 01:31:40', 'submission_id': '1gnlw9n'}
{'comment': "He's so awesome", 'created': '2024-11-10 01:25:15', 'submission_id': '1gnlw9n'}
{'comment': 'We need a woman president', 'created': '2024-11-10 00:39:00', 'submission_id': '1gnlw9n'}
{'comment': 'Yes 💛💕🌹', 'created': '2024-11-10 01:22:24', 'submission_id': '1gnlw9n'}
{'comment': 'Yes. Unfortunately true.', 'created': '2024-11-10 06:42:29', 'submission_id': '1gnlw9n'}
{'comment': 'Guess who’s back, back again, Shady’s back… tell your friend…', 'created': '2024-11-10 00:26:00', 'submission_id': '1gnlw9n'}
{'comment': "I'm not going back", 'created': '2024-11-10 00:17:09', 'submission_id': '1gnlw9n'}
{'comment': "We couldn't elect a woman. A gay man has even less chance.", 'created': '2024-11-10 01:35:57', 'submission_id': '1gnlw9n'}
{'comment': 'I don’t really want him to run because it’d be months of me hearing gay jokes and derogatory names for him and I’d be perpetually pissed off. I’m so glad I had already graduated high school before Obama ran else I’d have probably heard plenty of racism.', 'created': '2024-11-10 01:53:52', 'submission_id': '1gnlw9n'}
{'comment': ' Exactly focus on local and state election wins and work up to the national level. Democrats have to start from the basics. I think once MAGAs policies take hold and they start tanking the economy that’s going to put a lot wind behind the democrat’s sails.', 'created': '2024-11-11 01:41:29', 'submission_id': '1gnlw9n'}
{'comment': 'Time for a new party.', 'created': '2024-11-10 02:02:09', 'submission_id': '1gnlw9n'}
{'comment': ':/', 'created': '2024-11-10 01:58:29', 'submission_id': '1gnlw9n'}
{'comment': 'Why wouldn’t there be an election? Russia and Belarus still have elections.\n\nIn all seriousness though, we do need to be hyper vigilant. The one good thing is we have 50 separate election systems in this country. Blue states are probably ok. Several of the states Trump won are still ran by democrats.\n\nWe need to organize, plan and wipe the floor with these people over the next few cycles.', 'created': '2024-11-10 00:16:13', 'submission_id': '1gnlw9n'}
{'comment': "I'll have to pretend to be straight and masculine.", 'created': '2024-11-10 00:26:11', 'submission_id': '1gnlw9n'}
{'comment': 'I see what you did there', 'created': '2024-11-10 00:52:03', 'submission_id': '1gnlw9n'}
{'comment': '5 months? Not even close. Three months and change.', 'created': '2024-11-10 02:15:31', 'submission_id': '1gnlw9n'}
{'comment': 'No. She’s not likable, has no charisma and sucks at retail politicking. I want someone new.', 'created': '2024-11-10 01:55:28', 'submission_id': '1gnlw9n'}
{'comment': 'I agree, I think Kamala can win if she runs again.. assuming we can still vote in 4 years.. 😔', 'created': '2024-11-10 01:40:57', 'submission_id': '1gnlw9n'}
{'comment': 'I love AOC but her name is used over and over as a democratic boogeyman in attack ads against other democrats running. Here in Nebraska she was randomly brought up in ads against Tony Vargas for no reason aside from negative name recognition for local republicans.', 'created': '2024-11-10 03:13:20', 'submission_id': '1gnlw9n'}
{'comment': ':eyes:', 'created': '2024-11-10 00:17:17', 'submission_id': '1gnlw9n'}
{'comment': None, 'created': '2024-11-10 19:42:53', 'submission_id': '1gnlw9n'}
{'comment': "Its very cold in Canada.. so I better bring a coat. Also I'd be an illegal alien if I went to Canada", 'created': '2024-11-10 01:03:02', 'submission_id': '1gnlw9n'}
{'comment': "I really thought Kamala would win. She even tried appealing to the republicans. She said she wouldn't take guns.. she really tried..", 'created': '2024-11-10 01:17:46', 'submission_id': '1gnlw9n'}
{'comment': '>in 2028 I expect JD too run for president\n\nYou misspelled "Don Junior."', 'created': '2024-11-10 01:56:05', 'submission_id': '1gnlw9n'}
{'comment': '💙💕', 'created': '2024-11-10 02:04:22', 'submission_id': '1gnlw9n'}
{'comment': 'Now that’s a power ticket!', 'created': '2024-11-09 23:59:49', 'submission_id': '1gnlw9n'}
{'comment': 'No more California democrats please. Also Newsom is a coastal elite', 'created': '2024-11-10 01:50:11', 'submission_id': '1gnlw9n'}
{'comment': 'Black and gay? Are you crazy? I love it but it would never fly.', 'created': '2024-11-10 00:24:46', 'submission_id': '1gnlw9n'}
{'comment': 'I think Buttigieg would be an incredible president. He seems so level headed and intelligent. Unfortunately, I worry about “Christians” not voting for home just because he is gay.', 'created': '2024-11-10 01:06:39', 'submission_id': '1gnlw9n'}
{'comment': "They're not appealing to the maga crowd. I like the candidates you suggested, I thought tim walz would be appealing to them", 'created': '2024-11-10 01:04:47', 'submission_id': '1gnlw9n'}
{'comment': 'Bernie Sanders is 83 years old. Not happening.', 'created': '2024-11-10 00:19:54', 'submission_id': '1gnlw9n'}
{'comment': 'We shifted to the right how? \n\nBy standing on a picket line, pushing for middle class tax cuts, committing to protecting and expanding healthcare in this country? \n\nWe literally gave folks the most progressive administration we’ve seen in decades. We committed to doing more of the same. \n\nAnd the country overwhelmingly chose the farthest right version of the farthest right President we ever had.', 'created': '2024-11-10 01:36:31', 'submission_id': '1gnlw9n'}
{'comment': "You should look at Pew surveys and this election's exit polling. People want centrism.", 'created': '2024-11-10 02:11:20', 'submission_id': '1gnlw9n'}
{'comment': 'She’s better in congress.', 'created': '2024-11-10 01:01:43', 'submission_id': '1gnlw9n'}
{'comment': "I love aoc, she's amazing!", 'created': '2024-11-10 00:47:52', 'submission_id': '1gnlw9n'}
{'comment': 'Jeff Jackson 💙', 'created': '2024-11-10 01:27:31', 'submission_id': '1gnlw9n'}
{'comment': 'I don’t think she will run again. I think she realises how demoralising her loss is to majority of women in the country. If it happens again in 2028, it would be devastating to the party and to the women hoping they can be seen as equals. \n\nI do not fault her at all, I think she ran an almost perfect campaign but she didn’t have enough time to introduce herself to people. It is just too risky to roll the dice with her again.', 'created': '2024-11-10 10:35:39', 'submission_id': '1gnlw9n'}
{'comment': ':/', 'created': '2024-11-10 21:00:35', 'submission_id': '1gnlw9n'}
{'comment': "I'm LGBT and I'm multi racial and I'm not a second class citizen", 'created': '2024-11-10 00:44:22', 'submission_id': '1gnlw9n'}
{'comment': "Our party loves Kamala, we were proud to have her represent our party.. democrats didn't show up to vote..", 'created': '2024-11-10 00:45:58', 'submission_id': '1gnlw9n'}
{'comment': "I like him, but the homophobics won't approve of him", 'created': '2024-11-10 00:59:10', 'submission_id': '1gnlw9n'}
{'comment': 'Josh Shapiro', 'created': '2024-11-10 01:03:40', 'submission_id': '1gnlw9n'}
{'comment': 'Hopefully Biden uses that Presidential immunity to save the USA.', 'created': '2024-11-10 01:20:54', 'submission_id': '1gnlw9n'}
{'comment': "Yeah, I'm very scared... I'm afraid that trump will come after all of us and the Obama's and Clinton's and Beyonce", 'created': '2024-11-10 01:11:51', 'submission_id': '1gnlw9n'}
{'comment': 'I hate that dipshit', 'created': '2024-11-10 02:02:45', 'submission_id': '1gnlw9n'}
{'comment': 'And he messed up grimes. She used to be cool', 'created': '2024-11-10 02:03:20', 'submission_id': '1gnlw9n'}
{'comment': 'I hope the maga cult forgets about politics when trump kicks the bucket', 'created': '2024-11-10 02:49:23', 'submission_id': '1gnlw9n'}
{'comment': '[removed]', 'created': '2024-11-10 08:51:48', 'submission_id': '1gnlw9n'}
{'comment': 'I think they have to look at communication too.\n\nI don\'t know how many Trump people I\'ve met who say they voted for him because he "talks like they do", meaning he uses words they don\'t have to Google. Or metaphors they can relate to. \n\nYou have to remember that like at least 60-75% (I\'ve heard a large range of statistics but I\'m sure it\'s near the upper end of my included range) of Americans can read, have the vocabulary and the comprehension of the low end of a 5th to 6th grader, and the high end of 8th or 9th, tops.\n\nThe average IQ, which while very subjective and interpretative, is around 90-100.\n\nComing from a family where I\'m the only real moderate/liberal leaning thinker for the most part, and only one of four out of all of them that went to college, and the only one to go to college twice? I will tell you that if I use more than 3, 3 syllable words in a row use a word unintentionally that causes them to have to ask the definition or meaning, or have to give an explanation for anything I know that they don\'t, I\'m a "know-it-all" and I\'ve immediately lost them by talking over them. \n\nI even noticed my mom getting frustrated with Kamala and she\'s one of the other more liberal minds in the family (and not a college grad. Like I said, there are a couple in my family, but not more than a handful when you count them) at the way she had to ask me what she meant or what this law or term or policy was. \n\nUneducated (not stupid, although they do as well) people hate word salads, even if relevant, and will vote for the person that talks, sounds and acts like they do. \n\nWalz had more of a chance than Kamala did.', 'created': '2024-11-10 13:02:40', 'submission_id': '1gnlw9n'}
{'comment': 'Who TF is that.', 'created': '2024-11-10 01:57:38', 'submission_id': '1gnlw9n'}
{'comment': ':/ ... I love women, women are very nurturing and sympathetic.. we need a woman president.. we were so close', 'created': '2024-11-10 00:54:32', 'submission_id': '1gnlw9n'}
{'comment': None, 'created': '2024-11-10 01:04:20', 'submission_id': '1gnlw9n'}
{'comment': "I didn't realize. Happy cake day!", 'created': '2024-11-10 00:49:08', 'submission_id': '1gnlw9n'}
{'comment': 'Maybe trump will nuke a hurricane', 'created': '2024-11-10 00:57:49', 'submission_id': '1gnlw9n'}
{'comment': 'She was so close to winning..', 'created': '2024-11-10 01:00:22', 'submission_id': '1gnlw9n'}
{'comment': '💛', 'created': '2024-11-10 02:05:41', 'submission_id': '1gnlw9n'}
{'comment': 'Happy cake day!', 'created': '2024-11-10 01:09:54', 'submission_id': '1gnlw9n'}
{'comment': 'Happy cake day!', 'created': '2024-11-10 01:10:17', 'submission_id': '1gnlw9n'}
{'comment': "He's pretty cool but he said he doesn't want to be president", 'created': '2024-11-10 01:25:52', 'submission_id': '1gnlw9n'}
{'comment': "Potus and VP picks respectively. But I don't see Pete becoming president since... You know...nearly half of the American voters are sh8t", 'created': '2024-11-10 07:45:00', 'submission_id': '1gnlw9n'}
{'comment': "That's been proven to be untrue.", 'created': '2024-11-10 13:06:38', 'submission_id': '1gnlw9n'}
{'comment': 'Ok negative Nancy 👎', 'created': '2024-11-10 00:50:36', 'submission_id': '1gnlw9n'}
{'comment': '>We need to Stop running on labels like "Progressive"\n\nMinnesota\'s Dem party literally calls itself like the Farmers Democratic Party or something like that. Dems need to just adopt the worker / labor naming scheme.', 'created': '2024-11-10 03:57:17', 'submission_id': '1gnlw9n'}
{'comment': '>We need a Machine of info running all yr every yr. Not a freaking collection of funds every 2-4 yrs. By that point, the American people have seen and heard a bunch of lies and bullshit that we come towards the end trying to fight down. All the transphobia needs to be addressed. I’m legit. We don’t need to throw the subject and them under the bus. But it sure as hell needs to be addressed, because the American people are clearly falling for the disinformation. And in turn more and more of our rights are being chipped away\n\n100% agreed. We need our own podcast networks and to start paying gaming streamers and lifestyle influencers who incorporate Democratic messaging into their content.\n\nThe Pod Save America guys are sort of this—but they’re too brainy and obviously politics first. We need more content creators with varying appeal and simple messaging. Republicans are proactive about shaping reality on an ongoing basis, Democrats can’t just wait until campaign season to fight back.', 'created': '2024-11-10 03:22:49', 'submission_id': '1gnlw9n'}
{'comment': 'Well said. Nailed it, the transphobia and immigration piece and the economy \n\nRacism / rights what brings facism - We had an immigration bill and republicans blocked it and yet there was NO mention of that during our campaign\n\nTransphobia - A candidate needs to take a stance like the late night talk show hosts and point out that parents have control over their kids until they are 18.\n\nEconomy - People vote based on their wallet, 100%. period. Full f*ing stop. We never campaigned that inflation was from the Covid stimulus (that Trump put in place and exacerbated by not wearing masks) WHY??\n\n#Democrats always take the high road & think America is paying attention to politics. They aren’t.\n\nI have two very young voting age kids. \n\nKID 1) Reads the news and enjoys history and current events - Die hard democrat, devastated.\n\nKID 2) Doesn’t read anything and watches YouTubers all day - Voted trump, because “he’ll like, save us money and stuff bro.”', 'created': '2024-11-10 05:59:20', 'submission_id': '1gnlw9n'}
{'comment': 'The Dems who want to run need to start campaigning now. Trump never stopped from 2020. He won’t stop the rallies either after his new term begins.', 'created': '2024-11-10 09:07:53', 'submission_id': '1gnlw9n'}
{'comment': 'You are closer than you think with the idea of people thinking of the Dems as "literal demons". Most of the reason why the GOP can\'t govern comes down to two things. \n\nOne is that, ever since Newt Gingrich allied the GOP with the Evangelicals and declared themselves to be "The Party of Jesus (tm)" a necessary first step to compromising with the Democrats to accomplish anything is perceived to be "Step 1: Turn your back on God." \n\nThe other is that in the thirty-some years they\'ve spent as the Party of No, they\'ve never had an idea. Their entire platform is "Wait for Dems to try to do something for regular people. Then scream "No!!!" really loudly." The only thing they can agree that they really like is to cut taxes on the super rich, and drag about it while quietly raising them on regular Americans. This is why so many Republicans run for office on the idea of "Government not onl doesn\'t work. It CAN\'T work. Government is the source of all pur problems " What they don\'t say out loud is the next part: \'Vote for me and I\'ll prove it.\'', 'created': '2024-11-13 14:43:45', 'submission_id': '1gnlw9n'}
{'comment': '“All we need to be is the Republicans and then we’ll win”', 'created': '2024-11-10 08:26:01', 'submission_id': '1gnlw9n'}
{'comment': 'Agreed. Bernie will be too old, and remember…\n\nThe GOP lost running a woman too, Sarah Palin (granted it was Obama, who killed his campaign with that speech / rally at the end)\n\nIt’s gotta be someone with charisma and isn’t afraid to yell bullsh*t like people are dying from vaginal infections because they don’t have birth control.', 'created': '2024-11-10 06:09:30', 'submission_id': '1gnlw9n'}
{'comment': "While you aren't necessarily wrong, I would like to point out that it might be premature to say that GOP won the popular vote. As of 8 AM EST on Nov 10, votes are still being counted, and the gap has narrowed to less than 4million. (California will count any mail-in/absentee ballots delivered up to Nov 12 as long as it was postmarked by election day).\n\nCurrently, states that have fully counted less than 90% of total ballots:\n\nCalifornia (66%), Washington, Oregon, Utah, Arizona, Alaska, Maryland, and maybe a couple other I missed. Several more states are in the 91-98% counted, and no states have certified a 100% count yet.\n\n \nLooking at overall trends, it is entirely \\*possible\\* that once all votes are fully counted, the popular vote actually will go to Harris. Not enough uncounted votes in key states to change the electoral college results, but the popular vote is still up in the air, and the gap has already closed quite a bit in the last few days.", 'created': '2024-11-10 14:55:11', 'submission_id': '1gnlw9n'}
{'comment': "we should be taking to dan osborn's people and go into the heartland and run real working class people, even if they get shellacked, it'll take a few cycles.", 'created': '2024-11-10 16:34:22', 'submission_id': '1gnlw9n'}
{'comment': None, 'created': '2024-11-10 17:48:34', 'submission_id': '1gnlw9n'}
{'comment': "No I think that's perfect. I don't need a political mastermind for the President. I need someone who listens and can inspire and lead. Part of leading is that communication to the masses, but also listening to his advisors to make competent decisions.", 'created': '2024-11-10 02:00:10', 'submission_id': '1gnlw9n'}
{'comment': 'Jeff Jackson comes to mind, but he may not have enough experience to run yet', 'created': '2024-11-10 01:50:18', 'submission_id': '1gnlw9n'}
{'comment': "There probably will be... but how clean will they be? we'll see, I expect them to do everything they can between now and the 2026 midterms to rig it as much as possible in their favor... our only hope may be that they are just too incompetent.\n\n \nAlso the future of the party should be someone like Tim Walz, I think he would've won on his own, he has the charisma and appeal Bernie Sanders had, hell I even think Harris would've won if she didn't do a clear and bad change after the DNC trying to appeal to Republicans and not differentiating herself from Biden enough, anyway that's in the past, the future is uncertain and hopefully we don't lose our democracy...", 'created': '2024-11-10 01:15:57', 'submission_id': '1gnlw9n'}
{'comment': "There will be. This is a dem talking point that needs to die.\n\nThe amendment is water tight. If Trump tries to circumvent it, it's civil war.", 'created': '2024-11-10 01:46:47', 'submission_id': '1gnlw9n'}
{'comment': 'I think a lot of people are not really convinced of this. I’m certainly not. I guess we’ll see', 'created': '2024-11-10 05:37:16', 'submission_id': '1gnlw9n'}
{'comment': 'Angela Merkel is also a conservative', 'created': '2024-11-10 01:36:54', 'submission_id': '1gnlw9n'}
{'comment': 'Also Meloni, current fascist far right PM of Italy', 'created': '2024-11-10 00:58:49', 'submission_id': '1gnlw9n'}
{'comment': 'Not to be too picky, but the current UK Prime Minister is Keir Starmer. \n\nThere is a Black woman that’s the head of the Tories, I believe.', 'created': '2024-11-10 00:57:50', 'submission_id': '1gnlw9n'}
{'comment': "If a black person like Clarence Thomas or a Woman like Amy Cony Barrett can show enough ideological purity to be Republicans on the supreme court, a Woman could the the Republican nominee. As long as the ideological purity is there. Also, If the republicans are becoming less racist, at least that's a bit of progress.", 'created': '2024-11-10 05:42:59', 'submission_id': '1gnlw9n'}
{'comment': 'Exactly', 'created': '2024-11-10 22:28:52', 'submission_id': '1gnlw9n'}
{'comment': "I mean it's a completely different system where ppl vote for a member of parliament who then votes for the PM in the house of commons. It's a bit less of an ask to voters compared to asking Americans to directly elect the first female president.", 'created': '2024-11-10 03:51:11', 'submission_id': '1gnlw9n'}
{'comment': 'Do you think It’ll be Tulsi? Looks like she’s aligning herself very nicely with Trump…', 'created': '2024-11-10 03:52:36', 'submission_id': '1gnlw9n'}
{'comment': 'One theory is that right wing female leaders has to work their way up and therefore proves their worth.\n\nThatcher wasn’t called ”The Iron Lady” for nothing. Pity that she stiffed the war widows of the Falklands War by declaring it a non-war.\n\nBut you gotta give props to Thatcher for banning CFCs.', 'created': '2024-11-10 11:33:08', 'submission_id': '1gnlw9n'}
{'comment': 'People in a hundred years will talk of a party switch where the Dems used to be good on women’s rights and then things flipped lmao', 'created': '2024-11-10 00:34:19', 'submission_id': '1gnlw9n'}
{'comment': 'What if they do all of the progressive stuff that we were going to do out of spite? That would really show us! Pass Medicare for all just to prove that they could do it when we couldn’t; I would feel so dominated. Pass a comprehensive climate bill = libs owned!!!', 'created': '2024-11-10 02:07:41', 'submission_id': '1gnlw9n'}
{'comment': 'Prepare yourself for President MGT', 'created': '2024-11-10 03:09:28', 'submission_id': '1gnlw9n'}
{'comment': 'Something tells me if this happens, the whitest one will win, sadly.', 'created': '2024-11-10 02:00:40', 'submission_id': '1gnlw9n'}
{'comment': 'The UK has had 3 women as Prime Minister. All 3 have been from the Conservative Party.', 'created': '2024-11-10 01:42:58', 'submission_id': '1gnlw9n'}
{'comment': "Nothing would be more frustrating though than if the first female president didn't win the race on her own, and was handed the office by a male. I want a female president in my lifetime, but I'd rather she win it, and prove women are just as capable as men.", 'created': '2024-11-10 03:17:20', 'submission_id': '1gnlw9n'}
{'comment': 'I thought of this too, take 47 away and give Harris a proper send off.', 'created': '2024-11-10 01:35:39', 'submission_id': '1gnlw9n'}
{'comment': 'Did you miss where she wanted to get rid of unions as well? She’s basically Trump in a dress and less venom.', 'created': '2024-11-10 00:39:30', 'submission_id': '1gnlw9n'}
{'comment': "In a race between Harris and Haley, I would have picked Harris, but wouldn't have an existential dread if Haley won. It was the same with McCain/Obama and Romney/Obama. But Trump... Trump is dangerous.", 'created': '2024-11-10 00:41:30', 'submission_id': '1gnlw9n'}
{'comment': 'Nikki Haley is a Trump lackey. She’s a polished turd. A polished turd is still a turd.', 'created': '2024-11-10 00:40:47', 'submission_id': '1gnlw9n'}
{'comment': 'I see Nikki Haley as a slimy self-serving politician. She’s no better than Lindsay Graham. She’ll say whatever she has to in order to keep her power and get ahead. I don’t trust her.', 'created': '2024-11-10 01:26:58', 'submission_id': '1gnlw9n'}
{'comment': 'Wake up buddy. She is a closet maga loyalist...her stand on the retirement age was inconsequential compared to the other insane shit she was proposing.', 'created': '2024-11-10 00:38:50', 'submission_id': '1gnlw9n'}
{'comment': '>I\'m 100% democrat but I\'ll admit that Nikki Haley seemed pretty decent until she said that she\'d raise the retirement age\n\nNo Nikki Haley wasn\'t decent. She was staunchly anti abortion and only "moderated" her views as her support continued to decline. Which is textbook of previous republican strategy of "campaign soft anti abortion but once in power go hard anti abortion in whatever way you an" and was staunch supporter of repealing Obamacare.\n\nI got no clue how you can 100% Democrat and think someone whose against women\'s right to choose and against providing accessible healthcare to everyone is "decent."\n\nI\'ll give you that seems "decent" compared to Trump. But she\'s stereotypical shit republican based on facts and truth.', 'created': '2024-11-10 03:37:28', 'submission_id': '1gnlw9n'}
{'comment': 'R u friggin kidding me? I don’t think you were paying enough attention', 'created': '2024-11-10 01:24:25', 'submission_id': '1gnlw9n'}
{'comment': 'I only ever see Tina Fey when I think of her 😂', 'created': '2024-11-10 01:20:32', 'submission_id': '1gnlw9n'}
{'comment': 'Also: https://www.gregpalast.com/heres-what-we-do-now/', 'created': '2024-11-10 01:43:22', 'submission_id': '1gnlw9n'}
{'comment': "Another Putin's puppet.", 'created': '2024-11-10 00:57:12', 'submission_id': '1gnlw9n'}
{'comment': 'God I hate her skunk style hair.', 'created': '2024-11-10 03:06:44', 'submission_id': '1gnlw9n'}
{'comment': 'I’d love to see the party go for more of the military support. Many Soldiers are seriously disgusted by the MAGA movement', 'created': '2024-11-10 01:04:41', 'submission_id': '1gnlw9n'}
{'comment': 'Jeff Jackson is amazing. My SIL in NH is rooting for him to run!', 'created': '2024-11-10 04:08:41', 'submission_id': '1gnlw9n'}
{'comment': "Love Jeff Jackson, but we need him in NC. If you want NC to keep being a swing state and not another Republican dominated Southern hellhole, you gotta let the Democratic attorney generals become governor. He's young, give him another 12 to 16 years and he'll run for president.", 'created': '2024-11-10 13:46:20', 'submission_id': '1gnlw9n'}
{'comment': "why do we always do this thing with the kunces, and buttigeg's of the world. no one cares if a dem is a soldier. i don't. just get up there and talk, shoot from the hip, i don't want more corpo talking head speak. i don't care if the worked for a human rights non profit.... do you get get that people can't pay their rent?", 'created': '2024-11-10 16:41:40', 'submission_id': '1gnlw9n'}
{'comment': "I don't think people are suffering extra hard from it given the wage gains and the inflation has been stable for over a year now, gas (and eggs lol) prices down. I think they were just understandably mad (and scared since at the time it felt rapid and unending) by the initial inflation and gas price spike and have been holding on to that anger for 3 years, ready to vote against the party in power because the vast majority of people don't know what's really going on and blame the president. It's hard for a presidential candidate to educate people on that in brief ads or public appearances most never see and many would think they were lying and making excuses anyway. Media outlets could have done a much better job but they're all about sensationalism now, not trying to keep the public well informed.", 'created': '2024-11-10 16:09:14', 'submission_id': '1gnlw9n'}
{'comment': 'Exactly my explanation, too.', 'created': '2024-11-10 14:30:55', 'submission_id': '1gnlw9n'}
{'comment': 'That’s been true for awhile. She damages the reputation of the party with her stock market bullshit', 'created': '2024-11-10 16:34:10', 'submission_id': '1gnlw9n'}
{'comment': 'Agreed! But I was just as confident that there was no way he would win again after (insert any of the 1000 disqualifying things here.) He still won.', 'created': '2024-11-10 02:42:12', 'submission_id': '1gnlw9n'}
{'comment': 'Kamala didn’t bring out the vote, sorry to say what needs to be said…', 'created': '2024-11-10 05:25:40', 'submission_id': '1gnlw9n'}
{'comment': "What's this place going to resemble in two years? There is no bright side to look at here.", 'created': '2024-11-10 14:32:15', 'submission_id': '1gnlw9n'}
{'comment': 'People like Trump live to be 100, unfortunately.', 'created': '2024-11-10 15:52:33', 'submission_id': '1gnlw9n'}
{'comment': 'After the Franchise Wars all restaurants will be Taco Bell.', 'created': '2024-11-10 00:17:18', 'submission_id': '1gnlw9n'}
{'comment': 'Yup! Deleted this ex coworker who was so happy for Trump because of her small business (selling god awful rodeo/country clothing for women) and I’m like ohhhhhhh honey. Buckle up!', 'created': '2024-11-10 00:15:32', 'submission_id': '1gnlw9n'}
{'comment': 'The same people bitching and moaning about how expensive everything is are the same people who want to deport all of the undocumented immigrants. Getting rid of all of our cheap labor surely won’t bring down the price of anything. \n\nMagats are all too dumb to make that connection.', 'created': '2024-11-10 01:01:00', 'submission_id': '1gnlw9n'}
{'comment': 'Food production in general. Like it or not most farm workers are illegal immigrants. You know, “stealing” all those terrific jobs white people are clamoring for', 'created': '2024-11-10 00:52:36', 'submission_id': '1gnlw9n'}
{'comment': 'Absolute genius to want to deport millions of undocumented *workers* when the US has an unemployment level of 4.1%. He really thinks that the software engineer between employers or the recently graduated but not yet employed MBA is going to move to Florida to pick oranges for minimum wage?', 'created': '2024-11-10 08:30:18', 'submission_id': '1gnlw9n'}
{'comment': "I live in the rural south. When mom and pops restaurants shut down over the last 8 years, almost all cried about 'Bidenomics' forcing them to close.\n\nSurely it wasn't their poor management and corporations shutting out competition. As they vote for more corporate rat fucking.", 'created': '2024-11-10 01:01:25', 'submission_id': '1gnlw9n'}
{'comment': "I don't think you realize they are going to weaponize deportation, too.", 'created': '2024-11-10 00:45:42', 'submission_id': '1gnlw9n'}
{'comment': 'That can be easy to say but for many people, that can be a difficult task. I live 20 minutes from the nearest town and the only place to purchase the things I need are from Walmart or a corporate grocery store. I support small businesses where I can but there just aren’t enough options in my small town.', 'created': '2024-11-10 01:02:35', 'submission_id': '1gnlw9n'}
{'comment': 'Damn dude, you are ruining my plan! Kidding aside, I know it’s not feasible for everything, but you may see clues like a pride flag, etc…', 'created': '2024-11-10 02:59:57', 'submission_id': '1gnlw9n'}
{'comment': "NC is fortunate to have him as their AG. I'm glad to hear he won his election, seems like a very real human being.", 'created': '2024-11-10 19:31:18', 'submission_id': '1gnlw9n'}
{'comment': 'The Bernie progressive wing have destroyed this party. I don’t get after so many election defeats you guys aren’t seeing this. The answer isn’t Bernie or AOC, it’s Dems coming back to center and remembering their base is and has always been moderate liberals.', 'created': '2024-11-10 01:49:47', 'submission_id': '1gnlw9n'}
{'comment': 'I see Jeff Jackson will have a good chance then.\xa0', 'created': '2024-11-10 00:59:22', 'submission_id': '1gnlw9n'}
{'comment': 'He also handled Covid brilliantly', 'created': '2024-11-10 13:55:01', 'submission_id': '1gnlw9n'}
{'comment': 'This is Andy Beshear, governor of Kentucky. As a Kentuckian, I think he’d be great as president, but at the same time I’d hate to lose him as governor.', 'created': '2024-11-10 00:16:51', 'submission_id': '1gnlw9n'}
{'comment': 'Andy is fucking awesome mind you', 'created': '2024-11-10 00:26:48', 'submission_id': '1gnlw9n'}
{'comment': "There has only ever been one president who wasn't a generic white man. It seems like maybe if we want to undo the damage that Trump is about to do, we should go back to what works.", 'created': '2024-11-10 00:43:48', 'submission_id': '1gnlw9n'}
{'comment': 'It’s Andy Beshear, he’s the Democratic governor of Kentucky.', 'created': '2024-11-10 00:15:24', 'submission_id': '1gnlw9n'}
{'comment': "Andy Beshear! Democratic Governor of Kentucky who is very popular amongst his constituents regardless of Kentucky red status. He's a real one. I met him once while he was staying at my cousins vacation home. One of the nicest and easiest people to talk to. He's a good man. \n\nI obviously prefer a female president over any democratic male politician, but unfortunately this country's misogyny runs deep. We've nominated two more than qualified women, and both lost to the least qualified dumbass that has ever existed. \n\nI prefer 🔥daddy Gavin Newsom over Shapiro tho. He's a very effective communicator and has the confidence to beat any republican they put against him. I loved watching him kick DeSantis' ass during their debate. He made him look so small.", 'created': '2024-11-10 00:30:38', 'submission_id': '1gnlw9n'}
{'comment': 'Andy Beshear \n\nHe’s great', 'created': '2024-11-10 00:15:47', 'submission_id': '1gnlw9n'}
{'comment': 'For now, yes.', 'created': '2024-11-10 16:45:53', 'submission_id': '1gnlw9n'}
{'comment': 'Absolutely not a "generic" white man. He\'s fighting the good fight.', 'created': '2024-11-10 02:02:41', 'submission_id': '1gnlw9n'}
{'comment': '"Generic white man" \n\nIt\'s just a *mystery* why all of the moderate white people get disenchanted by this party when they are treated like shit by its supporters.', 'created': '2024-11-10 00:46:52', 'submission_id': '1gnlw9n'}
{'comment': 'Or Pritzker.', 'created': '2024-11-09 23:56:52', 'submission_id': '1gnlw9n'}
{'comment': 'Andy Beshear. The hugely popular Democratic governor of Kentucky who won multiple times in a deep red state. Arguably he would be the most competitive against Vance.', 'created': '2024-11-10 00:42:00', 'submission_id': '1gnlw9n'}
{'comment': 'The man in the picture is straight, married, and with two children.', 'created': '2024-11-10 00:40:42', 'submission_id': '1gnlw9n'}
{'comment': 'That’s not Buttigieg lol', 'created': '2024-11-10 01:02:26', 'submission_id': '1gnlw9n'}
{'comment': 'thats Andy Beshear, not Pete', 'created': '2024-11-10 00:24:42', 'submission_id': '1gnlw9n'}
{'comment': 'Andy Beshear is gay?', 'created': '2024-11-10 00:39:14', 'submission_id': '1gnlw9n'}
{'comment': 'That’s Andy Beshear lol, you thinking of Pete Buttigieg?', 'created': '2024-11-10 00:36:13', 'submission_id': '1gnlw9n'}
{'comment': 'Nah, not this.\xa0\n\nBecause Republicans turn out regardless. This "give me the perfect candidate or I won\'t show up" bullshit has got to stop.\xa0', 'created': '2024-11-10 13:59:23', 'submission_id': '1gnlw9n'}
{'comment': 'Buddy that is NOT what populism is. Right-wing populists would do all that, but left-wing populism is basically just appealing to the working class.', 'created': '2024-11-10 02:36:01', 'submission_id': '1gnlw9n'}
{'comment': 'I feel like what you’re talking about is the Right-Wing Populism that Trump and the GOP are using.', 'created': '2024-11-10 01:58:41', 'submission_id': '1gnlw9n'}
{'comment': 'That is NOT populism.', 'created': '2024-11-10 16:48:20', 'submission_id': '1gnlw9n'}
{'comment': 'You can have populism and LGBTQ rights, just change the narrative to keep the feds out your bedroom.', 'created': '2024-11-11 04:43:15', 'submission_id': '1gnlw9n'}
{'comment': 'Before you know it Canada will be a desert', 'created': '2024-11-10 00:33:31', 'submission_id': '1gnlw9n'}
{'comment': 'Canada’s Conservative Party probably isn’t that much different from the Democratic Party anyway. So, we’ll take it.', 'created': '2024-11-10 00:55:12', 'submission_id': '1gnlw9n'}
{'comment': "FWIW, as an American, I am really sorry this shit is happening on your border. A lot of MAGA nonsense got exported to Canada and it's not fair that you have to deal with that. One of the most disgusting parts of all of this for me is how people in other countries who have no say in how we do things have to deal with the consequences of our piss poor decision making. So...I hope you fare better than we did.", 'created': '2024-11-10 02:53:55', 'submission_id': '1gnlw9n'}
{'comment': 'Canadian Conservative Party is nowhere near as bad as US conservatives. Most of them would be moderate democrats', 'created': '2024-11-10 04:21:46', 'submission_id': '1gnlw9n'}
{'comment': "Maybe they'll see the shitshow in the USA and back off?", 'created': '2024-11-10 06:40:44', 'submission_id': '1gnlw9n'}
{'comment': 'Donnie is a malignant narcissist who’s incompetent, low IQ, and fading fast.', 'created': '2024-11-10 05:21:05', 'submission_id': '1gnlw9n'}
{'comment': "I think balkanization is more likely, mainly west coast states led by California and possibly (hopefully) NE states led by NY. Existing states hold more power and are better organized already, the only issue is lack of military but same problem for grassroots rev. I also think there's a chance Republicans wouldn't strongly oppose very Democratic states seceding since it would make it easier for them to stay in control, which is a downside of that and would hurt those who are not right wing who are in the US and not one of the seceding states. There's also a potential for a military coup (scary, but if that did happen, it's likely due to loyalty to the US and not them being to the right of Trump) though Trump will likely put loyalists in the positions he can.", 'created': '2024-11-10 16:34:03', 'submission_id': '1gnlw9n'}
{'comment': "Agreed. I think overall things have gone fine given the difficult situation he started off with but he was absolutely horrible with communicating his accomplishments (and explaining inflation (and hammering that companies are price gouging on top of that) so people understand it wasn't him flipping a price up switch that Trump could reverse) and of course the for-profit sensationalist media are not going to do that for him and Democrats. \n\nLikewise for the migrant crisis. The deal with Republicans came too late and of course they ultimately didn't agree thanks to Trump not wanting Biden to have a win right before the election. I think he and other Democrats were under the wrong impression that most Hispanic voters in the US side with the migrants and would turn against Democrats if they were seen as in any not empathetic to them. That is not the case whatsoever and I really hope Democrats have learned a lesson on that. They don't need to talk like Trump does but at least try harder to seem like they're taking it very seriously. The impression Democrats are much softer on illegal immigration (although looking at stats comparing Democratic and Republican presidents, is not true) also leads to more of those willing to attempt to try to do so. As soon as Biden was in office, the amount attempting to cross skyrocketed. Unfortunately, a large part of that is due to the right repeating it and that spreads to Latin America where they start believing the same.", 'created': '2024-11-10 16:44:50', 'submission_id': '1gnlw9n'}
{'comment': 'All the blue states should just make their own country and leave the red to fend for themselves. Watch how many “red” people flee to blue states then.', 'created': '2024-11-10 01:10:02', 'submission_id': '1gnlw9n'}
{'comment': 'False, we have Europe, Canada, Mexico, Australia.', 'created': '2024-11-10 01:17:10', 'submission_id': '1gnlw9n'}
{'comment': 'Well sir that wouldn’t be very democratic now would it?', 'created': '2024-11-10 00:44:30', 'submission_id': '1gnlw9n'}
{'comment': 'That doesn’t sound too American. We have to fix our party. Your comment is a very good reason why Harris got mangled by a landslide.', 'created': '2024-11-10 00:33:39', 'submission_id': '1gnlw9n'}
{'comment': 'That\'s why I hope they don\'t ever introduce him as "tHe FiRsT gAy ViCe PrEsIdEnT." It will only diminish his accomplishments by making his seem like a purely DEI hire. He is a very competent individual, and who he loves should be an afterthought.', 'created': '2024-11-10 06:24:37', 'submission_id': '1gnlw9n'}
{'comment': 'The biggest tragedy of this election is the squandering one of the best campaign slogans of all time.', 'created': '2024-11-10 00:14:49', 'submission_id': '1gnlw9n'}
{'comment': 'Sadly you might be right, but I feel like Big Gretch is better suited to deflect bullshit than Kamala was', 'created': '2024-11-10 04:17:13', 'submission_id': '1gnlw9n'}
{'comment': 'Hard disagree. Kamala just ran a shit campaign.', 'created': '2024-11-10 13:26:01', 'submission_id': '1gnlw9n'}
{'comment': 'And many who did show up shifted to Trump.', 'created': '2024-11-10 02:06:32', 'submission_id': '1gnlw9n'}
{'comment': 'It’s way more than just minorities. The country is diseased.', 'created': '2024-11-10 00:41:29', 'submission_id': '1gnlw9n'}
{'comment': 'Nah, I legitimately do believe Trump the man is idiotic. Maybe he might have been intelligent when he first joined the politics game, but he is now. Now, Trump, as in the team behind the MAGA movement? Absolutely brilliant, sociopathic evil geniuses.', 'created': '2024-11-10 03:32:52', 'submission_id': '1gnlw9n'}
{'comment': 'That’s exactly what some people are afraid of! /s', 'created': '2024-11-10 00:19:25', 'submission_id': '1gnlw9n'}
{'comment': "I'm still not convinced that she didn't, and won't be until 60 different courts tell me she did", 'created': '2024-11-10 00:37:55', 'submission_id': '1gnlw9n'}
{'comment': 'She is quite literally the only Democrat who’s received fewer votes than Donald Trump when running against him.', 'created': '2024-11-10 05:37:03', 'submission_id': '1gnlw9n'}
{'comment': 'From where she started she did amazing.\n\nInternal polling showed Trump getting 400 electoral votes against Biden when he finally dropped out. She only had 100 days to turn that disaster around.', 'created': '2024-11-10 04:10:54', 'submission_id': '1gnlw9n'}
{'comment': 'She campaigned extremely far left just four years ago, the Biden administration has been mediocre, both black and Latin men seem to dislike her personality…', 'created': '2024-11-10 05:30:53', 'submission_id': '1gnlw9n'}
{'comment': 'I’ve spoken to you before. You say ridiculous things and then never support them. You are not worth time or energy. Have a good day.', 'created': '2024-11-10 15:55:48', 'submission_id': '1gnlw9n'}
{'comment': 'But wait, with the filibuster in place, we can stop the GOP from basically doing anything, right? Do they have any way around that?', 'created': '2024-11-10 00:25:30', 'submission_id': '1gnlw9n'}
{'comment': 'Oh, we will. And the government will make a big show of it. Just like they do in Russia.', 'created': '2024-11-10 00:48:12', 'submission_id': '1gnlw9n'}
{'comment': 'Trying to stay positive lol', 'created': '2024-11-10 00:24:35', 'submission_id': '1gnlw9n'}
{'comment': "Which is wild. However, he'll have a lot more experience after these four years than AOC so technically that's not wrong.", 'created': '2024-11-11 00:53:15', 'submission_id': '1gnlw9n'}
{'comment': 'Our allies probably 😬', 'created': '2024-11-10 07:49:12', 'submission_id': '1gnlw9n'}
{'comment': 'I think she’ll replace Schumer first when he retires.', 'created': '2024-11-10 00:20:18', 'submission_id': '1gnlw9n'}
{'comment': 'It worked for Obama three times over.', 'created': '2024-11-10 02:15:11', 'submission_id': '1gnlw9n'}
{'comment': 'There are people who’re still pathologically afraid of black people, doesn’t mean we roll back the goddamned Civil Rights Act for them', 'created': '2024-11-10 02:16:32', 'submission_id': '1gnlw9n'}
{'comment': 'I bet he runs but I just can’t see him winning a primary. Maybe I’m wrong though. As a raised Minnesotan, I hope he would win.', 'created': '2024-11-10 01:20:52', 'submission_id': '1gnlw9n'}
{'comment': 'Here we go again. 🤦\u200d♂️', 'created': '2024-11-10 00:27:20', 'submission_id': '1gnlw9n'}
{'comment': "When republicans find some stupid loophole to let Trump go for a third term, we'll pull a switcheroo and run Obama on them.", 'created': '2024-11-11 05:47:39', 'submission_id': '1gnlw9n'}
{'comment': 'Exactly considering how coveted the state of PA is during elections.', 'created': '2024-11-10 01:25:19', 'submission_id': '1gnlw9n'}
{'comment': 'Yeah even many Californians don’t like him.', 'created': '2024-11-10 00:27:08', 'submission_id': '1gnlw9n'}
{'comment': "Never Gavin Newsom. I'm sorry, but I'm a CA liberal, the state I've been living in has deteriorated year after year under his watch. He's a silver spoon politician that has no sense of what the average person thinks or what their day to day life is like.", 'created': '2024-11-10 06:16:52', 'submission_id': '1gnlw9n'}
{'comment': 'Bro Newsom is going to get hammered if he runs are you crazy they’ll rightly point out how much work is left to do in CA', 'created': '2024-11-10 01:16:27', 'submission_id': '1gnlw9n'}
{'comment': 'I think Buttogieg-Moore.', 'created': '2024-11-10 03:12:02', 'submission_id': '1gnlw9n'}
{'comment': 'I like this combo', 'created': '2024-11-10 01:21:23', 'submission_id': '1gnlw9n'}
{'comment': "Maybe him being from Georgia could help mitigate that more than someone from the Northeast could?\n\nAt least broadly, I like most of Ossoff's policies, so hopefully the national environment in 2028 gives him a path, and the Democratic leadership doesn't deliver any fuckery.", 'created': '2024-11-10 01:38:13', 'submission_id': '1gnlw9n'}
{'comment': 'Less important than winning. Let’s get a new deal president first and maybe let the old folks die off first.', 'created': '2024-11-10 01:00:54', 'submission_id': '1gnlw9n'}
{'comment': "We don't *need* a woman president. We SHOULD have one, but what we *need* is to win elections, and I don't think a woman can do that at the moment.", 'created': '2024-11-10 17:01:22', 'submission_id': '1gnlw9n'}
{'comment': 'Yea that’s what I was gonna say as well. It’s disappointing', 'created': '2024-11-10 02:18:24', 'submission_id': '1gnlw9n'}
{'comment': 'Yes the homophobia would be insane. I was really young when Obama was running but my dad tells me that there was so much racism, and unfortunately the homophobia would probably be even worse.', 'created': '2024-11-10 02:20:27', 'submission_id': '1gnlw9n'}
{'comment': 'Russia has fake elections', 'created': '2024-11-10 00:25:22', 'submission_id': '1gnlw9n'}
{'comment': '"still **run** by"\n\nWhy did the internet collectively forget this tidbit of basic grammar in the last 5 years?', 'created': '2024-11-10 13:06:24', 'submission_id': '1gnlw9n'}
{'comment': "I feel ya, I'll have to pretend to be straight and feminine.\n\n... Nah, fuck them. I'm not going back in the closet. Just writing that made me feel icky. Push comes to shove, even if it costs me my life I'd rather die as myself than live cosplaying as who the right thinks I 'should' be.", 'created': '2024-11-10 01:09:31', 'submission_id': '1gnlw9n'}
{'comment': 'True. I was being extra generous thinking she might have known it could possibly happen a few weeks before it did. \n\nEither way she did so amazing!', 'created': '2024-11-10 02:17:23', 'submission_id': '1gnlw9n'}
{'comment': 'Lol she does suck at it. But she could learn, right?', 'created': '2024-11-10 01:58:05', 'submission_id': '1gnlw9n'}
{'comment': 'We won\'t be. That was the last election to vote. When trump gets inaugurated in January, democracy as we know it, is over. They\'re going to burn the constitution and piss on its ashes. They\'re going to abolish the DOJ & take women\'s rights to vote away too. No one is going to be safe. Everyone better get real familiar with Project 2025. Because that\'s how they\'re going to "rebuild America". Dems made a huge fucking mistake this election by not voting. Now we all suffer the consequences.', 'created': '2024-11-10 02:06:34', 'submission_id': '1gnlw9n'}
{'comment': 'Not much to dislike about AOC to be honest.', 'created': '2024-11-10 19:45:58', 'submission_id': '1gnlw9n'}
{'comment': 'So do you think the next candidate needs to appeal more to the right?', 'created': '2024-11-10 03:26:54', 'submission_id': '1gnlw9n'}
{'comment': 'Barack Obama won with massive margins in 2008. I believe a black man could do it again. I agree being gay is a hurdle, but that’s the primary reason I put Pete in the VP spot instead of at the top of the ticket. He’s such a great communicator though and I think it would offset that.', 'created': '2024-11-10 00:43:56', 'submission_id': '1gnlw9n'}
{'comment': 'Fair enough. I don’t think you need to appeal to them a whole ton, just get the more moderate folks like my dad that very much dislikes MAGA, but voted conservative cause he wants cheaper prices/lower taxes. I got really mad at him this week for that btw.', 'created': '2024-11-10 01:05:58', 'submission_id': '1gnlw9n'}
{'comment': 'What kind of centrism? American centrism or centrism by social democracy standards?', 'created': '2024-11-10 03:06:35', 'submission_id': '1gnlw9n'}
{'comment': "Yes, and in congress, she can't use her influence to move tthe party to the left", 'created': '2024-11-10 01:02:47', 'submission_id': '1gnlw9n'}
{'comment': 'This is The Way.', 'created': '2024-11-10 04:22:44', 'submission_id': '1gnlw9n'}
{'comment': 'You and I love Kamala. The lack of turn out in this election says otherwise. I’m not dismissing your suggestions on who should run. We need a primary to ensure we have a candidate chosen by the people, not delegated by the incumbent.', 'created': '2024-11-11 00:26:14', 'submission_id': '1gnlw9n'}
{'comment': 'They were going to vote for a republican anyway.', 'created': '2024-11-10 01:07:34', 'submission_id': '1gnlw9n'}
{'comment': 'Not a fan of his really, but I do appreciate some of the products he’s made and his pushing of EVs and climate change. I’ve been hoping he can convince Trump to not totally annihilate climate change regulations. AlsoI appreciate SpaceX and bringing the space program back to the US.', 'created': '2024-11-10 02:11:40', 'submission_id': '1gnlw9n'}
{'comment': 'Interesting. \n\nIm on the high end of the bell curve and got frustrated with Kamala just spouting talking points (which usually barely relate to the question). That disciplined ‘on message’ approach drove me away. Felt she couldn’t answer basic questions. \n\nThat said, she was an effective and disciplined campaigner. Followed the instructions of the machine behind her really well.\n\nHowever I’ve got more traditional D values than the neocon Dems - free speech, no wars - so my issues with her were on policy.', 'created': '2024-11-11 10:37:38', 'submission_id': '1gnlw9n'}
{'comment': "Dean Phillips\n\nHe was in the Democratic Primaties and would've won if it weren't for Biden still being in the race.", 'created': '2024-11-10 01:59:06', 'submission_id': '1gnlw9n'}
{'comment': 'Woken just love twice to a fucking Nazi. That need to be over. There are too many poorly educated dudes that say things like "i don\'t want a woman on her period near the nukes." Direct quote from a black dude at work who voted for Trump.', 'created': '2024-11-10 01:23:11', 'submission_id': '1gnlw9n'}
{'comment': 'Why? Incels just got what they wanted. We just got out ass whipped by a bunch of virgins. \n\nIncels are not getting any pussy anyways. Trump is all the they have.', 'created': '2024-11-10 01:20:36', 'submission_id': '1gnlw9n'}
{'comment': 'Thanks 😂 I don’t mean to be rude I know we knew all trying to process this. It does get old seeing the same thing so many times. It feels like despair and giving up. Hopelessness. We have to just switch to damage control and talk about how we’re gonna fight Trump.', 'created': '2024-11-10 00:51:13', 'submission_id': '1gnlw9n'}
{'comment': 'I know but I feel like we’re in a low attention span era. New is always exciting.', 'created': '2024-11-10 01:03:52', 'submission_id': '1gnlw9n'}
{'comment': 'Well, not totally wrong. And being a prosecutor turned out to not be a good training for interviews with unexpected questions. Because a trial is a highly regimented and structured process. An interview, not so.', 'created': '2024-11-10 20:16:10', 'submission_id': '1gnlw9n'}
{'comment': "Underrated comment. We have the policy. It's a branding issue IMO.", 'created': '2024-11-10 05:30:18', 'submission_id': '1gnlw9n'}
{'comment': 'It is the labor party. Put on some t-shirts and jeans, pair a boots and look at all those red states that need new friends. \n\nShutting down that electoral college could be easier than we think when they are accused of being elite snob traitors that are opportunists, rapists, felons, billionaires with too much money and too much power', 'created': '2024-11-10 07:02:44', 'submission_id': '1gnlw9n'}
{'comment': 'It’s the Democratic-Farm Labor Party. It was formed by a fusion of the Democratic and Farm Labor parties a long while ago', 'created': '2024-11-10 18:02:55', 'submission_id': '1gnlw9n'}
{'comment': "no, because if dems don't stop hollowing out the middle class because we can't confront unchecked capitalism, then we will destroy that naming scheme too.\n\ndon't but actually me, either. im a dem and i lived through NAFTA in the rust belt.", 'created': '2024-11-10 16:30:03', 'submission_id': '1gnlw9n'}
{'comment': "> 100% agreed. We need our own podcast networks and to start paying gaming streamers and lifestyle influencers who incorporate Democratic messaging into their content.\n\nDems have the problem of purity testing. 1 thing that a podcaster says outside mainstream left leaning vibes and they will rip him/her apart. Republicans hear someone say something left leaning and most of the time they are fine with it if they *also* toe the rest of the party line. They aren't sacrificing their podcast bros because they might be ok with LGBT ppl or Abortion or w/e, as long as they hit the rest of the key notes of anti immigration OR anti lgbt OR anti abortion etc.", 'created': '2024-11-10 04:00:25', 'submission_id': '1gnlw9n'}
{'comment': 'Tony Michaels', 'created': '2024-11-10 13:56:26', 'submission_id': '1gnlw9n'}
{'comment': 'Agree. Branding is huge, not just of democrats and progressives. But branding the opposition too.', 'created': '2024-11-10 17:05:09', 'submission_id': '1gnlw9n'}
{'comment': 'It’s quite the reverse from Sweden. Here the right wing was in campaign mode only every 4 years, whereas the left could look forward to the election in a 1000 days.', 'created': '2024-11-10 11:24:52', 'submission_id': '1gnlw9n'}
{'comment': 'I heard the blocked immigration bill brought up frequently but it never mattered apparently. Right wing does not care about the facts and do absolutely no research as confirmed by your KID 2 getting their news from YouTube. Russian disinformation and propaganda is everywhere, social media should never be someone’s primary source of information. Russia has infiltrated the Republican Party so we should expect the rise of naziism, are we doing enough to combat this? Tired of this hate.', 'created': '2024-11-10 07:25:55', 'submission_id': '1gnlw9n'}
{'comment': 'Those rallies are so important! Its where people also get to meet and start new networks. I know we mocked them a lot, more for their behavior. But those rallies do things to people. It shows union and community as well. And we all need to realize too, that we all have different opinions about all kinds of things, about our country whether it be economic or social. And we should respect that. Like I said, there is much online/campus/tvcontent that are starting to represent our movement at this rate, and its being used against us. At the end of the day, we only get to protect the things we care about if we win power first, without the power you can\'t do shit. \n\nAnd we can\'t continue down this road, or things will get much much worse for our comminities. People no longer want the division of race, ethnicity, even gender at this rate. The last part is not part of anyone\'s business, but it sure as hell doesn\'t need to be what we\'re platforming. But we\'ll clean up parts of our act to not give them more time bombs. No more. Its hurting all of us at the end of it. \n\nI just want throw this out, but there are many Latino people who hate Latinx. Spanish in general is filled with gendered words. That\'s just how Spanish works. I just think, we\'re fighting the "dumbest" fights. The most important parts are protecting people\'s rights to exist in this country, and have access to healthcare and privacy. \n\nNot everyone is us, and they don\'t like being put in categories either. They don\'t want to be excluded from those groups because they don\'t fit into our bubbles. I\'ve heard this many times. People don\'t like Latinx, (you\'re changing the language), they don\'t like pronouns (people that are not in the community, don\'t need to be taking this mantle), and lastly we do need to stop thinking of people of pre-existing groups. We\'re partly doing all of this to ourselves, being well "acthuallyyy". I think the word minority has been abused. We\'re all Americans and some people will accept you, others won\'t. I just want to prevent our govs from hurting you, coming after you, and taking away your privacies. This world is getting ugly, it is moving more to the Right because the Right is very connected with other world leaders/continuing the Fascist Right movement. \n\nAnd lastly, another observation. We sure as hell are letting down white people in this country. Especially poor white people. People don\'t want to hear us dividing ourselves into categories and leaving them out of it. People of all groups see it as racism. And as much as we agree or disagree with all I\'ve said, there are ways to address all of it without giving up on people\'s actual rights, but addressing the dumb attacks that will come at us.', 'created': '2024-11-10 17:35:26', 'submission_id': '1gnlw9n'}
{'comment': "And remember that it wasn't just Republicans that refused to vote for a democratic woman. \n\nIt was also a lot of people on the left as well.\n\nThe republicans didn't win because they gained ground. \n\nDemocrats lost because they lost ground within their own base of support.", 'created': '2024-11-10 07:56:50', 'submission_id': '1gnlw9n'}
{'comment': 'thats not the issue people want. women already know the stakes in their communities about bodily freedom. Just run a national campaign of fix the damn roads. honestly, dems need to get back to a form of isolationism - cuz we are going to get it with trump anyway. we used to be the party of anti-war and anti-establishment folks and now those have all been taken by the republicans. face it, highly educated voters who are committed to the democratic processes and status quo -- we are the old North Eastern wing of the GOP now.\n\npeople are voting to break the old 20th century system, and we are going to get it weather we want it or not. so we should be focused on breaking our own shit for the voters.', 'created': '2024-11-10 16:37:59', 'submission_id': '1gnlw9n'}
{'comment': 'No more Pelosis, no more McConnell, no more Trump. The government isn’t a retirement home. From Rome to the USSR history teaches us that when a government become geriatric is when things cease to function.', 'created': '2024-11-10 19:21:55', 'submission_id': '1gnlw9n'}
{'comment': 'He just won the AG in North Carolina! He’s def a future star in the Dem party.', 'created': '2024-11-10 01:52:10', 'submission_id': '1gnlw9n'}
{'comment': 'Only if Walz is able to be a *dirty* opponent against Vance, and that Trump/Vance has enough public mistakes to enable him to call it\n\nOtherwise Walz will be seen as not tough enough for Putin', 'created': '2024-11-10 06:12:57', 'submission_id': '1gnlw9n'}
{'comment': 'I like Tim Walz and was much more excited for him as VP than for Harris as President. I think he can speak to working class voters.', 'created': '2024-11-10 02:00:09', 'submission_id': '1gnlw9n'}
{'comment': "What makes you think he and his crew don't want civil war?", 'created': '2024-11-10 02:00:17', 'submission_id': '1gnlw9n'}
{'comment': "> There will be. This is a dem talking point that needs to die. \n \nNever underestimate your enemies. If there is a free and fair election in 2028, it will be because Republicans incompetently failed to prevent it, but not because they didn't try.", 'created': '2024-11-10 02:49:28', 'submission_id': '1gnlw9n'}
{'comment': 'You think they care about what\'s written on paper?\n\nAnd remember everyone saying "Don\'t worry about civil war, the Magat can\'t fight the military"?', 'created': '2024-11-10 02:05:00', 'submission_id': '1gnlw9n'}
{'comment': "Either there won't be an election, or the ballot will look like [this](https://upload.wikimedia.org/wikipedia/commons/5/57/Stimmzettel-Anschluss.jpg)", 'created': '2024-11-10 06:46:25', 'submission_id': '1gnlw9n'}
{'comment': 'Miloni checking in.', 'created': '2024-11-10 01:57:31', 'submission_id': '1gnlw9n'}
{'comment': 'Meloni is completely sane, supports the EU and Ukraine, compared to what’s to come with TFG. \n\nI keep shouting we need a “strong boarders” progressive populist to win. Times are changing.', 'created': '2024-11-10 07:38:01', 'submission_id': '1gnlw9n'}
{'comment': 'I was talking about Conservative Party leaders.', 'created': '2024-11-10 00:58:57', 'submission_id': '1gnlw9n'}
{'comment': 'Well firstly, that’s also what the electoral college is, secondly while both systems technically work that way, the electorate when they vote are thinking about the party and the leader and ignoring the step in between, and thirdly, I don’t think that negates the point anyway.', 'created': '2024-11-10 04:03:21', 'submission_id': '1gnlw9n'}
{'comment': 'I doubt there’ll be another female candidate on either side for a long time after this which is very sad. I do think the first female president is more likely to come from the GOP though.', 'created': '2024-11-10 05:31:47', 'submission_id': '1gnlw9n'}
{'comment': "Electing a Republican woman won't magically make the party good on women's rights. Plenty of women on the right also hate women", 'created': '2024-11-10 00:40:07', 'submission_id': '1gnlw9n'}
{'comment': "I doubt I'll ever see that in my lifetime.", 'created': '2024-11-10 00:47:27', 'submission_id': '1gnlw9n'}
{'comment': 'There is a large section of women population that hate women.', 'created': '2024-11-10 02:37:55', 'submission_id': '1gnlw9n'}
{'comment': '\n\nI don’t think so. The republicans are pretty dead set on destroying records of history, civics or anything else they deem unfit. Kind of like the library of Alexandra. Oops, that nugget got away. 🤔history repeats itself? Opps, another…', 'created': '2024-11-10 01:03:51', 'submission_id': '1gnlw9n'}
{'comment': 'That’s great. We’re talking about the U.S. not the UK.', 'created': '2024-11-10 01:44:16', 'submission_id': '1gnlw9n'}
{'comment': "if it wasn't for the global anti-incumbent backlash this year (deserved or not) she would have likely wiped the floor with him\n\nthe average incumbent disadvantage was 8 ppt, she did 4ppt better, she needed to do 6ppt better to win", 'created': '2024-11-10 03:19:02', 'submission_id': '1gnlw9n'}
{'comment': 'Of course women are just as capable of men. That has nothing to do with their ability to win the presidency. We will not see a female president in our lifetimes, or certainly not a liberal one. America hates women.', 'created': '2024-11-10 14:50:36', 'submission_id': '1gnlw9n'}
{'comment': "I don't like republicans", 'created': '2024-11-10 00:56:08', 'submission_id': '1gnlw9n'}
{'comment': 'She would have reduced the temperate in the room allowing people to focus on policy', 'created': '2024-11-10 00:43:31', 'submission_id': '1gnlw9n'}
{'comment': 'The unions don’t even care if unions are destroyed.', 'created': '2024-11-10 00:56:52', 'submission_id': '1gnlw9n'}
{'comment': 'She absolutely sucks, but at least she wasn’t batshit insane.', 'created': '2024-11-10 03:14:03', 'submission_id': '1gnlw9n'}
{'comment': 'So you’re saying Maya Rudolph/Tina Fey 2028?', 'created': '2024-11-10 01:38:46', 'submission_id': '1gnlw9n'}
{'comment': "I never said she wasn't. Then again, chances are, by the time they decide to nominate her, Putin's Parkinsons will set in.", 'created': '2024-11-10 00:58:25', 'submission_id': '1gnlw9n'}
{'comment': 'Yup. She’s too right leaning for progressives, and the right wing hates her because of the D label.', 'created': '2024-11-10 16:52:27', 'submission_id': '1gnlw9n'}
{'comment': 'He doesn’t know how to use the three seashells! Lol.', 'created': '2024-11-10 00:30:50', 'submission_id': '1gnlw9n'}
{'comment': 'Wait until most of her supply costs increase because of tariffs. 🤣', 'created': '2024-11-10 01:09:21', 'submission_id': '1gnlw9n'}
{'comment': 'probably all Made in China or Made in Indonesia junk produced by near-slave labor.', 'created': '2024-11-10 01:11:02', 'submission_id': '1gnlw9n'}
{'comment': "We have a few of those in my town. Can't wait to see them dissappear.", 'created': '2024-11-10 00:24:21', 'submission_id': '1gnlw9n'}
{'comment': 'Farm work requires more than just immigrant labor; it requires *migrant* labor. It needs workers in large numbers seasonally in communities that cannot support them all year around.', 'created': '2024-11-10 03:49:28', 'submission_id': '1gnlw9n'}
{'comment': 'Meat processing, construction, hospitality, you name it.', 'created': '2024-11-10 18:09:22', 'submission_id': '1gnlw9n'}
{'comment': 'Kinda the whole point', 'created': '2024-11-10 03:39:32', 'submission_id': '1gnlw9n'}
{'comment': 'And this was by design. Sam Walton was a genius. Put in a store, stock it either the things other businesses in town have but charge way less. Put the business out of business, hire the people who worked there but pay shit wages. The competition is gone and you have a captive workforce that has nowhere else to go. Force prices down so much that manufacturers have to move offshore. Further reduces the competition. Destroyed entire communities.', 'created': '2024-11-10 03:35:53', 'submission_id': '1gnlw9n'}
{'comment': 'Legit food deserts are real just like healthcare deserts and they are usually the same places.', 'created': '2024-11-10 02:38:14', 'submission_id': '1gnlw9n'}
{'comment': 'True, good point.', 'created': '2024-11-10 01:40:41', 'submission_id': '1gnlw9n'}
{'comment': 'For sure. My SIL in NH texted me and said if he wanted to start a presidential exploratory committee in NH, to sign her up! 🤣 It’s funny how others know about him.', 'created': '2024-11-11 15:08:14', 'submission_id': '1gnlw9n'}
{'comment': 'I think you\'re only half right. The Dems *are* centrist by majority, and progressives tend to refuse to accept this. But Harris ran heavily to center in this election and it didn\'t work. There weren\'t enough votes. I also think most (not all but most) progressives did vote for her and that still wasn\'t enough. Assuming we even get another election, the next four years needs to be about building a coalition between the center and left, and that will require concessions from both sides. The center HAS to accept that younger more progressive generations are going to want to move forward more quickly than they might be comfortable with and are going to have to let go some policy red lines. Meanwhile progressives HAVE to learn how to compromise and drop their purity tests for candidates; they need to learn to vote for people who they don\'t agree with on all issues. \n \nThe fact is that both wings need to work together if we *ever* expect to win an ekecin this country again. Otherwise neither the centrists or progressives get what they want. And that\'s exactly how Hitler came to power. The progressives and moderates in pre-Nazi Germany outnumbered the fascists, but they stubbornly and adamantly refused to work together. The rest is history. Compromise or die, and when I say "die" I don\'t mean it figuratively. History is clear, this doesn\'t end well for regular people who fight with each other more than they fight with the real enemy. Nobody wins and it took Germany over 40 years to get a country again.', 'created': '2024-11-10 03:08:35', 'submission_id': '1gnlw9n'}
{'comment': None, 'created': '2024-11-10 04:52:28', 'submission_id': '1gnlw9n'}
{'comment': "Democrats are a big tent and we have to run that way effectively, which isn't easy. Acting like it's a party for one portion of that tent likely won't help. That said, a large portion of the left, particularly left of elected progressives, are a problem and help Republicans and they need to be honest with themselves and alter their tactics. Mainly that they spend all day, every day bashing Democrats and blaming them for everything wrong just as much as the right does, making unrealistic demands and then blaming Democrats when they don't happen. On top of that are trying to out left each other, gatekeeping, developing their own language the general public doesn't understand or like, and taking a blindly anti-US position on global affairs. Even if half of them end up voting for Democrats, their messaging turns ill informed and low propensity people off from the Democrats.", 'created': '2024-11-10 16:17:14', 'submission_id': '1gnlw9n'}
{'comment': None, 'created': '2024-11-10 14:39:23', 'submission_id': '1gnlw9n'}
{'comment': 'We can only wish for such amazing representation.', 'created': '2024-11-10 04:07:07', 'submission_id': '1gnlw9n'}
{'comment': 'I’m pulling for Jack Jeffson', 'created': '2024-11-10 05:58:23', 'submission_id': '1gnlw9n'}
{'comment': "He'll be term limited out of office by the time the 2028 election rolls around. I'm not a Kentuckian, but I've heard good things and I'd love to see him throw his hat in the primary ring.", 'created': '2024-11-10 00:38:07', 'submission_id': '1gnlw9n'}
{'comment': "He's term limited in 2027", 'created': '2024-11-10 00:19:07', 'submission_id': '1gnlw9n'}
{'comment': 'He is term limited anyway.', 'created': '2024-11-10 00:21:35', 'submission_id': '1gnlw9n'}
{'comment': None, 'created': '2024-11-10 00:55:43', 'submission_id': '1gnlw9n'}
{'comment': 'I wish I could support Newsom. I agree with him on many things. I wish he stood up for Californians vs PG&E, though. The whole French Laundry thing during Covid, then the repeated rate hikes rubber stamped by the CPUC, which he appointed. It’s the turd in the punch bowl.\n\nSo, I’d prefer someone else.', 'created': '2024-11-10 00:50:36', 'submission_id': '1gnlw9n'}
{'comment': 'Your choice in Democratic candidates is terrible . Newsom is a corporate goon', 'created': '2024-11-10 01:22:18', 'submission_id': '1gnlw9n'}
{'comment': 'Newsom is the worst possible candidate we can possibly put up.', 'created': '2024-11-10 03:24:20', 'submission_id': '1gnlw9n'}
{'comment': 'im a generic white man that gets disenchanted when im faced with the reality that the general population absolutely cannot stomach voting for a woman or poc for president. i can face facts and i want to win.', 'created': '2024-11-10 00:52:35', 'submission_id': '1gnlw9n'}
{'comment': '“Moderate white people” can understand that “generic white man” is a way of poking fun at America’s prejudice toward other races and women, and strong preference for white men who fit within American standards of what’s “normal” and “unbiased”. If you’re offended by that, don’t get it, and consider that “being treated like sh*t”, you’re not as “moderate” as you think. And speaking of being “treated like sh*t”, why don’t you have a chat with all the black Americans who recently received spam texts telling them to go pick cotton at the plantation? But oh wait, being called a “generic white man” is what’s truly “disenchanting” in this country. ❄️❄️❄️', 'created': '2024-11-10 07:53:06', 'submission_id': '1gnlw9n'}
{'comment': 'How is someone calling someone "generic" looking treating them like shit? It is neither a compliment nor an insult. There have even been plenty of guys on this subreddit calling themselves a "regular white dude" in posts where they said they voted for Harris.', 'created': '2024-11-10 01:16:48', 'submission_id': '1gnlw9n'}
{'comment': 'I personally have already taken the Pritzker pill', 'created': '2024-11-09 23:59:10', 'submission_id': '1gnlw9n'}
{'comment': 'I would be so down for that.', 'created': '2024-11-10 00:05:02', 'submission_id': '1gnlw9n'}
{'comment': 'I dunno how a billionaire hotel heir is gonna help us connect with the working class. He’s a decent governor though.', 'created': '2024-11-10 01:48:25', 'submission_id': '1gnlw9n'}
{'comment': "I say this as a Jew, but both he and Shapiro are Jewish and I don't know if that will fly for a large sector of the public.", 'created': '2024-11-10 02:04:41', 'submission_id': '1gnlw9n'}
{'comment': 'I like Pritzker but electability is an issue.', 'created': '2024-11-10 00:05:36', 'submission_id': '1gnlw9n'}
{'comment': 'I like JB but I still think a guy his size wouldn’t win the presidency because of shallow reasons.', 'created': '2024-11-10 05:33:58', 'submission_id': '1gnlw9n'}
{'comment': 'He fucking HATES Vance for perpetuating that hillbilly characterization of Appalachians. Would be great TV to watch them debate', 'created': '2024-11-10 01:42:36', 'submission_id': '1gnlw9n'}
{'comment': 'Are we thinking they will run Vance? I certainly think so. I love Andy! Think he would be a fantastic choice.', 'created': '2024-11-10 01:52:18', 'submission_id': '1gnlw9n'}
{'comment': 'Responded to the wrong reply. Meant to respond to\nhttps://www.reddit.com/r/democrats/s/74Q6IFfJLO', 'created': '2024-11-10 06:15:53', 'submission_id': '1gnlw9n'}
{'comment': 'Responded to the wrong reply. Meant to respond to\nhttps://www.reddit.com/r/democrats/s/74Q6IFfJLO', 'created': '2024-11-10 06:16:07', 'submission_id': '1gnlw9n'}
{'comment': 'Responded to the wrong reply. Meant to respond to\nhttps://www.reddit.com/r/democrats/s/74Q6IFfJLO', 'created': '2024-11-10 06:14:37', 'submission_id': '1gnlw9n'}
{'comment': 'No. I Responded to the wrong reply. Meant to respond to\nhttps://www.reddit.com/r/democrats/s/74Q6IFfJLO', 'created': '2024-11-10 06:15:13', 'submission_id': '1gnlw9n'}
{'comment': 'Responded to the wrong reply. Meant to respond to\nhttps://www.reddit.com/r/democrats/s/74Q6IFfJLO', 'created': '2024-11-10 06:14:53', 'submission_id': '1gnlw9n'}
{'comment': 'I have voted every election since 2020. My take is that we need compulsory voting in the primaries and generals, we need to run populist candidates, and we need to fight back harder against the idea of perfection versus a general agenda. We need to stop saying yes, but when people say, FDR was good and we need to say just yes. Nuance can come when we win, but as long as we’re losing, nuance is only sinking us', 'created': '2024-11-10 16:23:55', 'submission_id': '1gnlw9n'}
{'comment': '...who just voted for Trump.', 'created': '2024-11-10 02:48:27', 'submission_id': '1gnlw9n'}
{'comment': '… and maybe backing off all the woke and victimhood nonsense', 'created': '2024-11-10 05:22:59', 'submission_id': '1gnlw9n'}
{'comment': 'Populism is a push back on perceived elites in support of the “common man.”\n\nThe “common man” in America is the white suburban to rural voter that says shit like “I’m not racist, I have a black friend” or “I don’t hate gays I just don’t want to see it all over the place.”\n\nThe “common man” is middle class, native born citizen. They aren’t downtrodden. They aren’t actively supporting the notion of trans inmates getting gender affirming care, and less so if it’s pitted against being able to put resources to something else. They don’t hate immigrants but they also don’t want them encroaching on their neighborhoods. \n\nThe populist, common man is much more conservative than we are as a party.\n\nWe would abandon a lot of what we have worked towards over the last X number of years, and push massive swaths of our base to the back of the line.', 'created': '2024-11-10 03:09:59', 'submission_id': '1gnlw9n'}
{'comment': 'Then please explain what you mean by populism. \n\nTrump’s campaign was economic populism. It’s also very heavily centered around the idea that certain groups are fringe, not “common man” populist, and therefore shouldn’t be given benefits in the populist system.', 'created': '2024-11-10 18:49:03', 'submission_id': '1gnlw9n'}
{'comment': 'Man I wish this were true so hard. The fear of the “woke agenda” unfortunately crossed over the U.S./Canada border :(', 'created': '2024-11-10 03:13:47', 'submission_id': '1gnlw9n'}
{'comment': 'lol where do you think they get their ideas and rhetoric? Pierre is already saying it’s unfair if Trudeau drops out', 'created': '2024-11-10 08:52:10', 'submission_id': '1gnlw9n'}
{'comment': 'And then we can mass deport them, but not before separating them from their children and locking them up in a cage for months.', 'created': '2024-11-10 06:24:05', 'submission_id': '1gnlw9n'}
{'comment': "I think it's an option if things get bad enough, though states do not have their own military but Republicans may not be that against it since it'd make it easier for them to maintain power. Only problem is the land gap between the west and NE states. The NE is also a bit less independent minded as the west coast states are. Likewise, it would suck for those who are not right wing who remain in the Republican run country.", 'created': '2024-11-10 16:56:17', 'submission_id': '1gnlw9n'}
{'comment': "Europe is falling to more of Putin's puppets.\n\nCanada is about to as well.\n\nAustralia and Mexico aren't powerful enough to fight the USA.\n\nUnless somewhere like Iceland reveals that they have orbital lazer cannons and giant robots or something, there's no-one big enough to fight the USA that isn't already under Putin's sway.", 'created': '2024-11-10 01:38:38', 'submission_id': '1gnlw9n'}
{'comment': 'could they use it again? "We Are Not Going Back, Again"', 'created': '2024-11-10 00:25:49', 'submission_id': '1gnlw9n'}
{'comment': "That's nice. It's not really relevant, though.", 'created': '2024-11-10 05:48:29', 'submission_id': '1gnlw9n'}
{'comment': 'Biden did a lot of good things that weren’t well communicated… but also was pretty marginal overall', 'created': '2024-11-10 05:28:15', 'submission_id': '1gnlw9n'}
{'comment': 'They will 100% ignore the filibuster', 'created': '2024-11-10 00:34:54', 'submission_id': '1gnlw9n'}
{'comment': "They can remove the filibuster rule. The Dems didn't want to.", 'created': '2024-11-10 00:31:09', 'submission_id': '1gnlw9n'}
{'comment': 'Executive Orders. And if you take his EO to SCOTUS on the grounds of constitutionality, well…you know.', 'created': '2024-11-10 00:34:04', 'submission_id': '1gnlw9n'}
{'comment': "Hell, maybe that's what's happening now.", 'created': '2024-11-10 01:31:46', 'submission_id': '1gnlw9n'}
{'comment': 'I’m honestly not even sure AOC could win the mayoralty let alone a statewide race.', 'created': '2024-11-10 01:27:33', 'submission_id': '1gnlw9n'}
{'comment': 'Oh yeah, which is why he won\'t repeal it(or say that he tried to but behind doors the "GOP" denied him)\n\nThe moment it\'s eliminated, Obama is likely ready to wash him.', 'created': '2024-11-11 07:37:19', 'submission_id': '1gnlw9n'}
{'comment': 'I’ve voted for him every time, but he would fail nationally. He is too smug. \n \nHe did handle the pandemic and our nature disasters well, but is plenty easy to attack. He would never hear the end of his private French Laundry dinner the same night he enacted stronger quarantine guidelines in the state. \n \nAlso he has been way too nice to energy companies and allowed the hike rates repeatedly, even after they caused wildfires that killed many people. \n \nHe is going to run, but fall short in the primaries. Decent choice for a Secretary Role though.', 'created': '2024-11-10 01:13:56', 'submission_id': '1gnlw9n'}
{'comment': "I really like ossoff too, I just feel like beshear is the stronger candidate with less weaknesses to the public eye. if this country wasn't full of assholes, id no question nominate ossoff", 'created': '2024-11-10 18:18:32', 'submission_id': '1gnlw9n'}
{'comment': 'That was my sarcastic point and why I started my second paragraph with “In all seriousness though…”.', 'created': '2024-11-10 00:45:18', 'submission_id': '1gnlw9n'}
{'comment': '💛', 'created': '2024-11-10 01:18:37', 'submission_id': '1gnlw9n'}
{'comment': 'Sure. But I’m kinda done with her TBH. I’m very curious to see what other candidates can bring. We really need a politician that can emulate[Clintons debate moment](https://youtu.be/ta_SFvgbrlY?si=JtrWL0UBbV0OfjUJ)', 'created': '2024-11-10 02:06:19', 'submission_id': '1gnlw9n'}
{'comment': '😓😭', 'created': '2024-11-10 02:55:35', 'submission_id': '1gnlw9n'}
{'comment': 'Don’t get me wrong, I love them both.', 'created': '2024-11-10 02:00:43', 'submission_id': '1gnlw9n'}
{'comment': 'The economy always did better when democrats were in the white house. My dad is also complicated.', 'created': '2024-11-10 01:14:54', 'submission_id': '1gnlw9n'}
{'comment': 'And yes people hate word salads. Walz was more genuine. He was authentic and may have faired better', 'created': '2024-11-11 10:38:55', 'submission_id': '1gnlw9n'}
{'comment': 'Not a simple policy, we need clearer policy, for example, Kamala’s $6k child tax credit should have been monthly checks for $500.\n\nWe are fighting against Reaganism “the government doesn’t work for you” propaganda so it needs to be clearer what the government does for families.\n\nPeople don’t see tax credits, they see the number they owe or are owed on tax day from TurboTax or their accountant, but a $500 monthly check to deposit…they see that.', 'created': '2024-11-10 15:56:50', 'submission_id': '1gnlw9n'}
{'comment': "They kind of had the right idea when they brought in Tim Walz but it wasn't enough and it was too late. We are seen as snobs, out of our minds cuckoo crazy woohoo bonkers, letting prisoners have sex changes, letting boys go into the girls restroom, sending home from school a child with a completely different sex reassignment, force everybody to give up their natural gas appliances. Regulate the shit out of everything that puts the small businessman, and the family farm way back in distant, vague memories and history books. We believe in science, which is witchcraft. Force public school teachers to say & do some of the most absurd things you've ever heard of. Infiltrate the libraries with books designed to draw children away from their parents values \n\nThey call em rednecks and evidently everybody is going to be cow-towing to that bunch of meth cooking, still operating, missing tooth and horrible hygiene dimwits that only get there outside information from the Fox network and the preacher that would never leave them astray LOL", 'created': '2024-11-10 07:13:49', 'submission_id': '1gnlw9n'}
{'comment': 'We have some policy. \n\nIt’s not just branding but identity. When massive swaths of working class voters reject the most pro-union administration in decades and choose a candidate that is obviously and publicly anti-union, maybe we don’t understand the working class voters as well as we think. A few ads and slogans isn’t going to change that.', 'created': '2024-11-10 16:31:22', 'submission_id': '1gnlw9n'}
{'comment': 'We need to emphasize who the real cuckoo nut jobs are woohoo out of their minds expecting the government to float the bill for billionaires becoming trillionaires. What planet are they from, and how many lives will be lost in the biggest space disaster of all time when Elon starts pushing for volume', 'created': '2024-11-10 07:05:21', 'submission_id': '1gnlw9n'}
{'comment': 'Just look at the TYT people. They don\'t tow the line and they got excommunicated. turns out they were right on a lot of stuff. I also routinely listen to the right wing bro podcast-o-sphere as a democrat, and occasionally, i\'m like, "ok they aren\'t wrong about this or that issue" but we will never accept that.', 'created': '2024-11-10 16:32:40', 'submission_id': '1gnlw9n'}
{'comment': '“Well if they had done something about immigration in the first three years of Biden’s administration then they wouldn’t have needed to try a last ditch attempt at immigration reform. That was a genius move by Trump to block the bill and prove how little they actually tried to do anything about it in four years.”\n\nActual quote from a MAGA acquaintance of mine.', 'created': '2024-11-10 08:05:43', 'submission_id': '1gnlw9n'}
{'comment': 'If America hated the idea of woman President, then why did Trump seem so scared? He clearly preferred running against Joe. I feel like the writing was on the wall that we were ready for this. I’m just shocked, and I think the winner is shocked too.', 'created': '2024-11-10 17:46:19', 'submission_id': '1gnlw9n'}
{'comment': 'People forget how incompetent the first Trump administration was. They were ineffective and kept blundering their own policy initiatives.\n\nIf the House can be close (or better yet, under Democratic control) then Trump\'s second term will be extra ineffective.\n\nSo they might want X, but I\'m skeptical they\'ll get as much "change" as they want. That includes wars, civil or otherwise.', 'created': '2024-11-10 02:28:06', 'submission_id': '1gnlw9n'}
{'comment': "Civil war doesn't make them money.", 'created': '2024-11-10 02:01:36', 'submission_id': '1gnlw9n'}
{'comment': 'Or things will just be normal, and the GOP will get to rightfully say that all of this was manipulative hysteria by the DNC. It’s one reason I wish Kamala’s campaign hadn’t pushed this so hard. It didn’t work, and it gave republicans stuff to use in the future.', 'created': '2024-11-10 07:18:41', 'submission_id': '1gnlw9n'}
{'comment': 'RemindMe! 4 years', 'created': '2024-11-10 07:21:14', 'submission_id': '1gnlw9n'}
{'comment': "Meloni is a fascist at heart, who understands that she can't afford to govern as one. She knows she needs EU money because Italy is not doing well at all. But she promotes discrimination against LGBTQ people and immigrants because when you're elected by the far-right you have to give them something.", 'created': '2024-11-10 08:53:22', 'submission_id': '1gnlw9n'}
{'comment': 'Sorry. I was reading “first female Prime Minister…”. Then thought of Liz “50 days” Truss, Risi Sunak, and Starner.', 'created': '2024-11-10 01:06:48', 'submission_id': '1gnlw9n'}
{'comment': 'Remember how Carly Fiorina ran in the Republican primaries in 2016? The only reason she was there was to have someone attack Hillary Clinton (and women more generally) without appearing sexist. Until of course Trump emerged and all of that became irrelevant.', 'created': '2024-11-10 01:26:47', 'submission_id': '1gnlw9n'}
{'comment': "I didn't say that the people doing this would be politically literate", 'created': '2024-11-10 00:44:39', 'submission_id': '1gnlw9n'}
{'comment': 'Red hat female president legitimizes the entire social practice of women being subservient. ‘Even a female president is good with it’', 'created': '2024-11-10 01:33:40', 'submission_id': '1gnlw9n'}
{'comment': 'This would be a great place to pause and take some notes on what’s going on with us. The current establishment hem’d in for decades with ideas dating back to the 1920’s and their thought process as well. There comes a point where they’re not effective thinkers anymore. And they’ve turned this into a us against them sporting event instead of doing the job of serving the American people. Capitol Hill is way past their time for an overhaul. The reason it’s not happened is them career politicians that have no respect for our country and step aside. Next election propose a vote for a 4 year term limit. They don’t have any problem playing fast and loose with seniors benefits, let’s put their necks out there too.', 'created': '2024-11-10 01:25:36', 'submission_id': '1gnlw9n'}
{'comment': "Surely there can't be any similarities to other countries /s", 'created': '2024-11-10 14:51:08', 'submission_id': '1gnlw9n'}
{'comment': 'That is a solid point. The whole Trump cult of personality ruins any chance of rational conversation.', 'created': '2024-11-11 04:14:13', 'submission_id': '1gnlw9n'}
{'comment': 'The bar is so low 😭', 'created': '2024-11-10 03:15:24', 'submission_id': '1gnlw9n'}
{'comment': "no, what I meant was they're going to selectively enforce it against businesses in areas and not in others - a punishment for some areas voting a certain way", 'created': '2024-11-10 04:59:20', 'submission_id': '1gnlw9n'}
{'comment': 'Well put', 'created': '2024-11-10 03:43:37', 'submission_id': '1gnlw9n'}
{'comment': 'I know she tried to come back to center in the race but it wasn’t enough. Especially since she ran so left in 2020 and Biden was a pretty progressive president. Saying things like she wants to give 25K to first time home buyers and getting a VP who put tampons in the boys bathrooms is pretty left and Dems need to realize this. \n\nYes both wings need work together but they need to understand their roles. Progressives need to stop acting like soft theater kids and need to start acting like athletes. AOC is like AC she is the Alex Caruso of the team. Brings good energy off the bench, hard defense and makes the open shot. But if Caruso is shooting 30+ times a game, that team is going to lose. Progressives need to sit the bench for a while and realize what their role is on the democratic team. There are races they can and should win, the president in 2028 isn’t one of them tho.', 'created': '2024-11-10 03:42:34', 'submission_id': '1gnlw9n'}
{'comment': 'Giving first time home buyers 25k and putting tampons in boys bathrooms is center now?', 'created': '2024-11-10 05:24:48', 'submission_id': '1gnlw9n'}
{'comment': 'Exactly. Policies are one thing but this was culture war election. America overwhelmingly said that would rather deal with maga extremist culture rather than woke Bernie bro culture. And the Bernie bros need to see that.', 'created': '2024-11-10 16:56:53', 'submission_id': '1gnlw9n'}
{'comment': 'Are u even American?', 'created': '2024-11-10 16:57:45', 'submission_id': '1gnlw9n'}
{'comment': 'No, but I think we need to go after the closet racist vote because there are apparently a lot of them in this country.', 'created': '2024-11-10 00:57:57', 'submission_id': '1gnlw9n'}
{'comment': 'Newsom is my governor and I voted for him multiple times.. he would get killed in a National Election. He gave undocumented free healthcare.... he will be raked over the coals for that.', 'created': '2024-11-10 17:34:50', 'submission_id': '1gnlw9n'}
{'comment': 'If you think Kamala Harris lost this election because she was a woman, you are wrong. \n\nKamala Harris fought a 6+ Year campaign by a demagogue who is wildly popular in the media. Kamala Harris was a relatively unknown and unfortunately unpopular candidate when she was campaigning in 2020 during the caucus / debate cycles. \n\n70+ million Americans voted for teflon don because they are unaware that the entire globe is reeling from inflation and the largest generation on earth to ever exist ever suddenly no longer working. \n\nShe ran a short campaign, lost in the media to someone who had a brand for "things will be cheaper" - the republican base bought it hook like and sinker and showed up in the same numbers that they did in 2020, while the rest of the country repeated 2016.', 'created': '2024-11-10 02:08:41', 'submission_id': '1gnlw9n'}
{'comment': "uh... this is a wendy's drive through ma'am", 'created': '2024-11-13 01:09:17', 'submission_id': '1gnlw9n'}
{'comment': 'Racism is harmful no matter who it\'s directed toward because it perpetuates stereotypes and assumptions based on race, which only reinforces divisive thinking. When people use terms like "generic" or "regular" to describe someone based solely on their race, they\'re actually feeding into the same reductive thinking that all racism is based on—judging or dismissing someone on surface characteristics rather than their unique identity or character.\n\nEven if a comment doesn\'t seem overtly offensive, labeling someone "generic" because they\'re a "regular white dude" can be dismissive and create a stereotype that white people are somehow homogenous or undeserving of individuality, which I would hope that after this election we\'ve seen that voting blocks are absolutely not homogenous and really don\'t like the existing rhetoric that the left keeps using when it comes to race/ethnicity/sexuality.', 'created': '2024-11-10 02:04:45', 'submission_id': '1gnlw9n'}
{'comment': 'I want Tim back in it in some capacity. Either in the White House, the Naval Observatory, the Cabinet, somewhere. Maybe he could be Secretary of Education?', 'created': '2024-11-10 00:05:47', 'submission_id': '1gnlw9n'}
{'comment': 'Pritzker is indeed pretty awesome. Buttigieg too!', 'created': '2024-11-10 00:58:27', 'submission_id': '1gnlw9n'}
{'comment': 'he could just eat the other side', 'created': '2024-11-10 00:22:34', 'submission_id': '1gnlw9n'}
{'comment': "That's only one definition of the common man in populism, and a very neoliberal one at that.", 'created': '2024-11-10 04:03:21', 'submission_id': '1gnlw9n'}
{'comment': "As you pointed out, there are many brands of populism, and they don't have to jettison queer rights.", 'created': '2024-11-10 22:05:59', 'submission_id': '1gnlw9n'}
{'comment': 'I would love this for them.', 'created': '2024-11-10 17:32:59', 'submission_id': '1gnlw9n'}
{'comment': 'Oh I’m in a red state but the moment blue states claim their independence, I’m fleeing to a blue state.', 'created': '2024-11-10 18:08:53', 'submission_id': '1gnlw9n'}
{'comment': 'NATO countries should have taken Russia more seriously and cut them off from western Internet. It has been too easy for that supervillain of countries to wreck us through relentless disinformation.', 'created': '2024-11-10 16:53:35', 'submission_id': '1gnlw9n'}
{'comment': 'Lol “we are not going even further back!”', 'created': '2024-11-10 01:58:56', 'submission_id': '1gnlw9n'}
{'comment': 'I guess, but only as like a callback (like Obama ‘08-style posters people use to this day). It was like the perfect subtle rejection of “Make America Great Again” and now I guess it’s relegated to the dustbin of history.', 'created': '2024-11-10 02:13:52', 'submission_id': '1gnlw9n'}
{'comment': 'Because- the Dems are for Democracy not orange stained authoritarians.', 'created': '2024-11-10 12:09:28', 'submission_id': '1gnlw9n'}
{'comment': "I feel like the economy will do most of the talking again, but we'll see.\n\nNevertheless, having 2 modern Dems on a ticket that are from Kentucky and/or Georgia respectively would be odd considering how Kentucky isn't anywhere close to a swing state. Still, having someone from those 2 states likely works better than someone from the West or Northeast. You can have balance on a ticket that's not related to regions (i.e. Clinton/Gore.)", 'created': '2024-11-10 18:25:50', 'submission_id': '1gnlw9n'}
{'comment': "Well Clinton has always been in a class all by himself. He's Mr. Charisma.", 'created': '2024-11-10 02:15:42', 'submission_id': '1gnlw9n'}
{'comment': 'I haven’t spoken to him since the election. Told mom I needed time to cool off. He chose taxes/prices over the wellbeing of my wife and daughter.', 'created': '2024-11-10 01:17:03', 'submission_id': '1gnlw9n'}
{'comment': "It's so fucking unfair that WE are expected to fix the problem of them falling for disinformation about LGBTQ+ people.\n\n As an LGBTQ+ person myself, I don't like being the part of the party that needs to be debated and message adjusted because people think I'm a nasty groomer.", 'created': '2024-11-10 19:40:41', 'submission_id': '1gnlw9n'}
{'comment': 'And that genius move fooled many. Immigration has always been a problem for both parties. Trump wanted to make a moat with snakes and alligators at the border, they have a concept of a plan. He’s a petulant toddler on one hand and a perverse 12 year old boy. Not the mature steady leader we need. We could all go on about the dangers of Trump and here we are.', 'created': '2024-11-10 08:14:32', 'submission_id': '1gnlw9n'}
{'comment': "I agree with you completely. And I don't really have the answer. I wish I did. Something I've been struggling with the past few days.", 'created': '2024-11-10 18:21:58', 'submission_id': '1gnlw9n'}
{'comment': 'Civil war gets them *slaves*.', 'created': '2024-11-10 02:03:42', 'submission_id': '1gnlw9n'}
{'comment': 'Well...the war will be fought using weapons made by gun manufacturers who will make lots and lots of money.', 'created': '2024-11-10 02:19:43', 'submission_id': '1gnlw9n'}
{'comment': "> Or things will just be normal\n\nThings haven't been normal for a while now.", 'created': '2024-11-10 07:58:25', 'submission_id': '1gnlw9n'}
{'comment': 'Oh of course, don’t get me wrong- I know all of that. I’m just saying she looks like a centrist compared to what may unleash in the US.', 'created': '2024-11-10 09:08:46', 'submission_id': '1gnlw9n'}
{'comment': 'Yeah no worries I guess it wasn’t completely clear', 'created': '2024-11-10 03:00:53', 'submission_id': '1gnlw9n'}
{'comment': 'You’re right. They’re rewriting the history books as we speak.', 'created': '2024-11-10 01:01:05', 'submission_id': '1gnlw9n'}
{'comment': "Trump has his wife run for presidency. She wins and says. I'm the president, but I'll do what my husband tells me. 8 more years. Lol\n... Shit i shouldn't be giving them ideas", 'created': '2024-11-10 02:15:50', 'submission_id': '1gnlw9n'}
{'comment': '"I let my husband tell me how to run the country" 🤮', 'created': '2024-11-10 14:49:35', 'submission_id': '1gnlw9n'}
{'comment': 'I cal it the Walmart effect', 'created': '2024-11-10 16:17:54', 'submission_id': '1gnlw9n'}
{'comment': None, 'created': '2024-11-10 05:28:37', 'submission_id': '1gnlw9n'}
{'comment': None, 'created': '2024-11-10 18:12:32', 'submission_id': '1gnlw9n'}
{'comment': None, 'created': '2024-11-10 02:07:02', 'submission_id': '1gnlw9n'}
{'comment': 'Secretary of education would be nice, but we definitely should not have anybody from the 2016, 2020, and 2024 tickets out on the trail next time', 'created': '2024-11-10 14:26:39', 'submission_id': '1gnlw9n'}
{'comment': "Pete is great, but you know why he wouldn't win.", 'created': '2024-11-10 01:26:33', 'submission_id': '1gnlw9n'}
{'comment': 'Are you a pilot? I wish I could pilot a helicopter', 'created': '2024-11-10 01:24:52', 'submission_id': '1gnlw9n'}
{'comment': 'It takes a toll on each of us, collectively. My own ignorant family seems to have drank purple Kool-Aid. I will not be spending time with the family these holidays because the thought of them voting for the person who is a rapist, criminal, and is a con artist', 'created': '2024-11-16 03:08:18', 'submission_id': '1gnlw9n'}
{'comment': 'They already have that', 'created': '2024-11-10 02:12:10', 'submission_id': '1gnlw9n'}
{'comment': 'You know what I meant. Normal elections. You’re just being contrarian now', 'created': '2024-11-10 09:54:51', 'submission_id': '1gnlw9n'}
{'comment': 'The winners always do.', 'created': '2024-11-10 04:01:22', 'submission_id': '1gnlw9n'}
{'comment': 'Thankfully she can’t because she’s an immigrant (proof that immigrants do the jobs that Americans don’t want to do!)', 'created': '2024-11-10 02:42:44', 'submission_id': '1gnlw9n'}
{'comment': "That's why they keep winning. You don't know how to think or vote strategically.", 'created': '2024-11-10 02:20:31', 'submission_id': '1gnlw9n'}
{'comment': 'Okay, enjoy losing every election.', 'created': '2024-11-10 03:53:43', 'submission_id': '1gnlw9n'}
{'comment': "Then you can't complain about all those people who protest voted right? Because...in theory...that's what they were doing right?\n\nLetting it burn to stand by their principals right?", 'created': '2024-11-10 05:17:14', 'submission_id': '1gnlw9n'}
{'comment': 'I am! I fly 747s for UPS. I have never flown a helo as I did all fixed wing in my Air Force career (C-17s and T-6 Instructor).\n\nEdit: you wouldn’t believe how insanely MAGA most of the captains I fly with are. Conspiracy stories abound.', 'created': '2024-11-10 01:25:56', 'submission_id': '1gnlw9n'}
{'comment': "Have you read the technical stuff in P2025 about how they're going to dismantle the country?", 'created': '2024-11-10 15:29:52', 'submission_id': '1gnlw9n'}
{'comment': 'Yes, and most people are skeptical about how successful they’ll be. Trump had big grand plans in 2016 too, and he didn’t accomplish much except for reversing Obama’s executive orders, and appointing judges. That’s his legacy from his first term.', 'created': '2024-11-10 23:09:24', 'submission_id': '1gnlw9n'}
{'comment': '> Yes, and most people are skeptical about how successful they’ll be.\n\nLOL!', 'created': '2024-11-10 23:33:28', 'submission_id': '1gnlw9n'}
{'comment': 'Like I said, we’ll see what happens. My guess is that there will still be normal elections in the future and democrats try to forget that they went all-in on this argument.', 'created': '2024-11-10 23:41:19', 'submission_id': '1gnlw9n'}
{'comment': 'If you call [this](https://upload.wikimedia.org/wikipedia/commons/5/57/Stimmzettel-Anschluss.jpg) sort of election normal, sure.', 'created': '2024-11-11 00:09:26', 'submission_id': '1gnlw9n'}
{'comment': 'You already showed me that, find new material', 'created': '2024-11-11 01:14:05', 'submission_id': '1gnlw9n'}
{'comment': 'Why? When the old stuff is still relevent?', 'created': '2024-11-11 01:16:13', 'submission_id': '1gnlw9n'}
{'comment': 'It’s really not. Why do you insist on getting the last word here? Why can’t you leave it at “we’ll see what happens”? The election is over already, we fucked it all up', 'created': '2024-11-11 01:19:07', 'submission_id': '1gnlw9n'}
{'comment': 'Why do you think that Trump will let there be another election?\n\nHe tried to coup the government last time...', 'created': '2024-11-11 01:31:13', 'submission_id': '1gnlw9n'}
{'comment': 'Because I genuinely don’t think he, his cabinet, or his congress have the power to make him a dictator. It doesn’t matter if he wants to or doesn’t want to.', 'created': '2024-11-11 03:40:23', 'submission_id': '1gnlw9n'}
{'comment': '> Because I genuinely don’t think he, his cabinet, or his congress have the power to make him a dictator.\n\nSCOTUS already made him king.', 'created': '2024-11-11 07:58:47', 'submission_id': '1gnlw9n'}
{'comment': 'If you’re talking about the official acts immunity, that’s already been an unspoken agreement in American politics since before Nixon. It blows my mind that more people don’t realize that', 'created': '2024-11-11 08:00:29', 'submission_id': '1gnlw9n'}
{'comment': "This time Mike Pence won't be there to stop him.", 'created': '2024-11-11 08:44:49', 'submission_id': '1gnlw9n'}
{'comment': 'You’ve clearly cemented this into your head as the only possible outcome. Go ahead and despair about this future, that will surely be great for your mental health. Everybody else is moving on.', 'created': '2024-11-11 08:54:40', 'submission_id': '1gnlw9n'}
{'comment': "Bet you thought they wouldn't ban abortion.", 'created': '2024-11-11 09:03:24', 'submission_id': '1gnlw9n'}
{'comment': 'Abortion hasn’t even been banned', 'created': '2024-11-11 09:04:32', 'submission_id': '1gnlw9n'}
{'comment': 'Sorry, were all the stories about children having to cross state lines to get abortions lies?', 'created': '2024-11-11 11:11:16', 'submission_id': '1gnlw9n'}
{'comment': 'That’s exactly it, a state level ban. Not a federal ban. \n\nThis isn’t a sustainable strategy, you have to see that. When Trump doesn’t enact a national abortion ban, when elections continue as normal, and when all this other stuff _doesn’t happen_, democrats aren’t going to be able to defend themselves. People will know that it was all manipulative scare tactics, making it even harder to gain votes back.', 'created': '2024-11-11 11:21:52', 'submission_id': '1gnlw9n'}
{'comment': 'Where did I say ***FEDERAL*** ban?\n\n> When Trump doesn’t enact a national abortion ban, when elections continue as normal, and when all this other stuff doesn’t happen\n\n"It can\'t happen here!" cried the Jews as they were building the camps.', 'created': '2024-11-11 11:23:33', 'submission_id': '1gnlw9n'}
{'comment': 'Half of Kamala’s entire campaign was scaring people into thinking Trump would enact a federal abortion ban.', 'created': '2024-11-11 18:29:07', 'submission_id': '1gnlw9n'}
{'comment': "And he's going to.", 'created': '2024-11-11 18:53:49', 'submission_id': '1gnlw9n'}
{'comment': 'Like I said a million times here, let’s see what happens.', 'created': '2024-11-11 19:07:31', 'submission_id': '1gnlw9n'}
{'comment': 'Small mercies.❤️\u200d🩹', 'created': '2024-11-10 07:21:38', 'submission_id': '1gnktpt'}
{'comment': 'Running is a position of the privileged. Most have no way to run.', 'created': '2024-11-09 23:22:45', 'submission_id': '1gnklzw'}
{'comment': 'To clarify…I WANT JON STEWART TO RUN 😅', 'created': '2024-11-10 00:01:42', 'submission_id': '1gnklzw'}
{'comment': "Fight, fight, fight!!! I believe if we stand up and fight this, we'll come out better on the other side. The Democratic party has a lot of work to do, including figuring out how to get their messaging right, stop the infighting, and stop supporting the status quo. But if they can get their shit together and we fight back, we can make a stronger democracy. Looking forward to the midterms in 2026.", 'created': '2024-11-09 23:34:52', 'submission_id': '1gnklzw'}
{'comment': 'Run. To where? Stay and find a way to fight.', 'created': '2024-11-09 23:32:30', 'submission_id': '1gnklzw'}
{'comment': 'could we at least try to hold the line?', 'created': '2024-11-09 23:16:10', 'submission_id': '1gnklzw'}
{'comment': "It was a huge blow to the left, there's no way around it. \n\nPersonally I'm just going to focus on the schadenfreude of various groups of voters realizing exactly what they voted for, as we re-live 2016 on steroids. \n\nThere's nothing else to be done, people wanted this, now they have to experience it before anything can change. Best we can do is buckle up and focus on protecting ourselves and our loved ones, especially for those living in red states. \n\nThe divide will keep growing between red and blue states along with the polarization. Buckle up for a few ugly years.", 'created': '2024-11-10 01:22:37', 'submission_id': '1gnklzw'}
{'comment': 'Leave and let them take even more power? There will be nowhere to run, America runs the world and if we lose our democracy, the evil will spread everywhere.', 'created': '2024-11-10 00:05:38', 'submission_id': '1gnklzw'}
{'comment': 'More people should run, for office.', 'created': '2024-11-10 07:25:56', 'submission_id': '1gnklzw'}
{'comment': 'Run! Not RUN!', 'created': '2024-11-10 00:51:53', 'submission_id': '1gnklzw'}
{'comment': "Democrats need a message that resonates and surrogates that are relatable to deliver it. They have got to find a way to break through conservative propaganda. People have to stand up and be the anti Joe Rogans, Ben Shapiros, Andrew Tates, and Elon Musks. You have to be willing to meet people where they are instead of writing them off as stupid and giving up on them. If this election demonstrated anything it's that the Democraric party is out of touch with the electorate they rely on. We are the party of working people and couldn't fucking sell Bidens record. That's the problem. Stop trying to force feed people a vision before you've met them in the small cities and towns to explain it to them.", 'created': '2024-11-10 00:55:46', 'submission_id': '1gnklzw'}
{'comment': 'nice lol. people need this. so much overreaction and dooming.', 'created': '2024-11-10 02:47:29', 'submission_id': '1gnklzw'}
{'comment': 'got no where to run to. so because i am a captive member of this shit show i plan to just sit back and laugh at all the people getting their face eaten by leopards.', 'created': '2024-11-10 01:27:18', 'submission_id': '1gnklzw'}
{'comment': 'Go forward, hold, or evade. All choices are valid.', 'created': '2024-11-09 23:58:11', 'submission_id': '1gnklzw'}
{'comment': 'Run to another country? Do people not understand America is so powerful that this will probably end up affecting ALL countries!', 'created': '2024-11-10 00:23:24', 'submission_id': '1gnklzw'}
{'comment': 'Ooohh so close. I’ll give you 2 clues though. It’s something you can buy and it rhymes with run', 'created': '2024-11-10 02:58:32', 'submission_id': '1gnklzw'}
{'comment': "That's a really stupid idea. I get it, you're disappointed, we all are. But Jon Stewart is not the answer.", 'created': '2024-11-10 05:08:08', 'submission_id': '1gnklzw'}
{'comment': 'Fight or flight and you chose flight? I get it. But right now I think love is our greatest asset. That’s because love is always our greatest asset. Fight with love and on the count of love and you could do no wrong.', 'created': '2024-11-10 15:22:46', 'submission_id': '1gnklzw'}
{'comment': 'Yeah, I’m disabled… no country is going to want to let me in. And Trump will target the assistance I need.', 'created': '2024-11-09 23:52:49', 'submission_id': '1gnklzw'}
{'comment': "The action most likely to lead to long-term survival for persecuted groups in Germany in 1933 was to leave the country.\n\nIf you can run, then run. Then provide help from the relative safety of not being in the USA.\n\nIf you can't run, then coordinate with those outside groups.", 'created': '2024-11-10 06:50:32', 'submission_id': '1gnklzw'}
{'comment': "Its why I'm arming myself.", 'created': '2024-11-10 05:52:00', 'submission_id': '1gnklzw'}
{'comment': "I knew what you meant OP. I've thought about Jon Stewart running a lot this week.\n\nI just listened to his hour long interview with Heather Cox Richardson that came out this week. It's so good and it's clear Jon is so thoughtful even if he isn't the research expert himself.\n\nWe need some type of entertainer or performer. People need to be entertained nowadays with wit and sass and funny tweets. We can't have serious bureaucrats anymore.", 'created': '2024-11-10 00:16:17', 'submission_id': '1gnklzw'}
{'comment': 'Ohh! I wasn’t sure if you meant we should flee or run for office. Wasn’t aware that you meant Jon should run lol. I agree, though!', 'created': '2024-11-10 00:10:54', 'submission_id': '1gnklzw'}
{'comment': 'Ah!! Gotcha :)', 'created': '2024-11-10 00:05:21', 'submission_id': '1gnklzw'}
{'comment': "He's smart enough to not be interested", 'created': '2024-11-10 19:16:18', 'submission_id': '1gnklzw'}
{'comment': 'YUSSSSSSSS!!!', 'created': '2024-11-10 05:25:16', 'submission_id': '1gnklzw'}
{'comment': "Fuck Jon Stewart, he's part of the fucking problem and why biden got fucked over.", 'created': '2024-11-10 03:19:56', 'submission_id': '1gnklzw'}
{'comment': 'Yeah... OP was literally saying they want Jon to run for president lmao. It was not very clear.', 'created': '2024-11-10 04:44:27', 'submission_id': '1gnklzw'}
{'comment': 'Thanksgiving is going to rowdy this year. The cops are going to be busy.', 'created': '2024-11-10 01:32:05', 'submission_id': '1gnklzw'}
{'comment': 'Hindsight’s 20/20 😅\n\nyou’re right tho', 'created': '2024-11-10 01:47:56', 'submission_id': '1gnklzw'}
{'comment': 'I think she meant run for office -President Stewart', 'created': '2024-11-10 00:26:41', 'submission_id': '1gnklzw'}
{'comment': "With what Trump's planning, it won't be for long.", 'created': '2024-11-10 06:48:46', 'submission_id': '1gnklzw'}
{'comment': 'Bun? Fun?', 'created': '2024-11-10 05:45:46', 'submission_id': '1gnklzw'}
{'comment': 'I mean, overstay a Visa somewhere and give it a shot that way', 'created': '2024-11-10 00:07:22', 'submission_id': '1gnklzw'}
{'comment': "By next century you'll need someone who's good at jiggling keys 🫣", 'created': '2024-11-10 01:46:04', 'submission_id': '1gnklzw'}
{'comment': 'Our Zelenskyy?', 'created': '2024-11-10 07:50:11', 'submission_id': '1gnklzw'}
{'comment': '[He gets shit done!](https://youtu.be/HT5FTrIZN-E?si=0HbHpUKUAGmBKfu9)', 'created': '2024-11-10 09:33:54', 'submission_id': '1gnklzw'}
{'comment': 'Agreed- we need name recognition', 'created': '2024-11-10 00:26:01', 'submission_id': '1gnklzw'}
{'comment': 'Thanks. I didn’t expect to get a half-dozen responses asking “run to where?”\n\nI agree with the idea that we need an entertainer, but I really want the party to avoid crowning an heir-apparent and let the primary do its thing.', 'created': '2024-11-10 00:58:05', 'submission_id': '1gnklzw'}
{'comment': 'I hate that you’re probably right. \n\nI’d argue he’s smart enough to realize he might be the only one who can win it', 'created': '2024-11-10 20:07:19', 'submission_id': '1gnklzw'}
{'comment': 'Why?', 'created': '2024-11-10 07:21:02', 'submission_id': '1gnklzw'}
{'comment': '\n\nthis unironically could work', 'created': '2024-11-10 01:49:29', 'submission_id': '1gnklzw'}
{'comment': 'Yes!!', 'created': '2024-11-11 16:03:57', 'submission_id': '1gnklzw'}
{'comment': 'Would be nice if it were someone from popular culture…but with decent judgment and intelligence (a basic understanding of our government and constitution). With liberal dark money groups doing the branding of the opposition.', 'created': '2024-11-10 17:02:04', 'submission_id': '1gnklzw'}
{'comment': 'For sure. I think he should at least put his hat in the primary race.', 'created': '2024-11-10 01:08:15', 'submission_id': '1gnklzw'}
{'comment': "> I didn’t expect to get a half-dozen responses asking “run to where?”\n\nYou're really failing to read the room then.\n\nThere probably won't even be an election for him to run in.", 'created': '2024-11-10 06:51:19', 'submission_id': '1gnklzw'}
{'comment': "He's repeatedly said it on record. Hes not interested in running for office.", 'created': '2024-11-10 23:07:48', 'submission_id': '1gnklzw'}
{'comment': "he's repeatedly concerned trolled over the last year or two, and was part of mocking biden for his age *even before he decompensated his stutter during the debate*", 'created': '2024-11-10 08:54:48', 'submission_id': '1gnklzw'}
{'comment': '', 'created': '2024-11-10 01:13:41', 'submission_id': '1gnklzw'}
{'comment': 'Was there evidence of his decompensated stutter prior to the debate?', 'created': '2024-11-10 16:46:41', 'submission_id': '1gnklzw'}
{'comment': 'I wouldn’t blame Stewart for Biden dropping out. Biden insiders are now letting out how dire it was after the first debate.\n\nhttps://thehill.com/homenews/campaign/4981792-pod-save-america-bidens-internal-polling-showed-trump-winning-400-electoral-votes/amp/', 'created': '2024-11-10 21:50:36', 'submission_id': '1gnklzw'}
{'comment': '', 'created': '2024-11-10 07:30:46', 'submission_id': '1gnklzw'}
{'comment': "uh... yeaaaah\n\nit's been known he has a severe stutter he has to compensate every moment for since... HE WAS FIRST ELECTED TO THE SENATE\n\nhe's literally done outreach to kids with stutters, done interviews about his stutter, etc for decades. there's cspan recordings from the 90s.\n\npart of why he was known as a gaffe machine is that most of his gaffes are actually things symptomatic of a stutter fighting their stutter\n\ndid you live under a fucking rock?", 'created': '2024-11-17 17:55:08', 'submission_id': '1gnklzw'}
{'comment': "Steve Schmidt isn't someone to whom we should be listening.", 'created': '2024-11-09 22:37:32', 'submission_id': '1gnkhd9'}
{'comment': "Steve Schmidt is a smart man. But he's getting this wrong. Trump and Trumpism are proof positive that our country is a lot more racist and sexist than people like myself previously believed. But those views aren't quite popular enough to win reliably. They need help. In 2016 Trump got help from James Comey and Vladimir Putin. In 2024 he got help from post-pandemic inflation. The end. In the wake of this election everyone is going to use it as an occasion to drag out their favorite hobby horse issue and take it for a ride. But I think things are much simpler than that.", 'created': '2024-11-10 01:41:23', 'submission_id': '1gnkhd9'}
{'comment': 'Are republicans filling lawsuits for some hand counts in swing states? I keep getting notifications about it?', 'created': '2024-11-09 22:33:25', 'submission_id': '1gnkhd9'}
{'comment': 'Trump didn’t win because of his policies and rhetoric nor did Kamala because of her policies. Trump won because Americans are too stupid and intellectually lazy to participate in a democracy. \n\nBut that, however, is itself an intellectually lazy statement. The harsh reality is, America was doomed to fail. This was inevitable. \n\nTrump won and Kamala lost because the Union, following its defeat over the Confederacy, refused to fully occupy the South and rebuild and fully integrate the South into the USA, and, in said process, undo all of the concessions which were made to sign the Declaration of Independence and the U.S. Constitution. Instead, the Union left the defeated Confederacy to its own devices. Slavery because Jim Crowe. Pro-slavery groups became adversaries of the Civil Rights Movement, and later became the authors of the GOP’s Southern Strategy, which is now reborn as Project 2025.', 'created': '2024-11-10 04:12:23', 'submission_id': '1gnkhd9'}
{'comment': 'I have a different answer: He F&*@ing cheated!', 'created': '2024-11-09 23:37:04', 'submission_id': '1gnkhd9'}
{'comment': 'See it on YouTube: [How Donald Trump Won The Presidency](https://youtu.be/7S5hAC1qFKI)\n\n[10 ways to be prepared and grounded now that Trump has won](https://wagingnonviolence.org/2024/11/10-things-to-do-if-trump-wins/)\n\n[Getting Started with Mutual Aid](https://www.reddit.com/r/WitchesVsPatriarchy/comments/1gnhksw/getting_started_w_mutual_aid/)', 'created': '2024-11-09 22:31:11', 'submission_id': '1gnkhd9'}
{'comment': 'Yep, this is the answer right here.', 'created': '2024-11-10 03:36:12', 'submission_id': '1gnkhd9'}
{'comment': 'Maybe the democrats are quietly checking that it’s legit. I’m not going to be one of the crazy election deniers, but I wouldn’t put anything past Trump/Elon/Putin. I hope they’re investigating quietly and won’t discuss it publicly unless they find proof that something was tampered with.', 'created': '2024-11-09 22:45:00', 'submission_id': '1gnkhd9'}
{'comment': 'Fantastic message.\n\nHe can still make a difference for his state.', 'created': '2024-11-09 23:43:55', 'submission_id': '1gnjr0m'}
{'comment': 'This is top of the ticket material right here.', 'created': '2024-11-10 00:15:26', 'submission_id': '1gnjr0m'}
{'comment': 'This guy is the best thing that came out of the 2024 presidential race.', 'created': '2024-11-09 23:47:23', 'submission_id': '1gnjr0m'}
{'comment': 'We don’t deserve him. He is too good.', 'created': '2024-11-10 01:08:42', 'submission_id': '1gnjr0m'}
{'comment': 'Boy do I love politicians who I feel like actually do a good job of connecting to everyday people!\n\nHe did a wonderful job on the campaign and for his state.', 'created': '2024-11-10 07:49:49', 'submission_id': '1gnjr0m'}
{'comment': 'I claim Tim as my roommate in the camps next year. \n\nHe can even have top bunk.', 'created': '2024-11-09 23:53:31', 'submission_id': '1gnjr0m'}
{'comment': 'I cried', 'created': '2024-11-10 02:33:41', 'submission_id': '1gnjr0m'}
{'comment': 'Help cure ballots! We can still make a difference down ballot.', 'created': '2024-11-10 02:20:00', 'submission_id': '1gnjr0m'}
{'comment': 'I haven’t cried yet. I’m still too mad. \n\nWe need to resist.', 'created': '2024-11-10 03:09:55', 'submission_id': '1gnjr0m'}
{'comment': 'I was so depressed on Wednesday. I will miss Tim Walz.', 'created': '2024-11-10 06:55:32', 'submission_id': '1gnjr0m'}
{'comment': '<3', 'created': '2024-11-10 03:13:02', 'submission_id': '1gnjr0m'}
{'comment': 'You fall under fascist dictatorship and you will take some time up? Poor guy, still not realising that you are in a war.', 'created': '2024-11-10 19:13:33', 'submission_id': '1gnjr0m'}
{'comment': 'If before the election you earnestly say the opponent is a fascist and a threat to democracy, then it is a strange thing to react to a loss by saying “Chin up, team!”', 'created': '2024-11-10 16:58:38', 'submission_id': '1gnjr0m'}
{'comment': 'We will never know ….', 'created': '2024-11-09 23:51:51', 'submission_id': '1gnjr0m'}
{'comment': 'Me to', 'created': '2024-11-10 02:38:57', 'submission_id': '1gnjr0m'}
{'comment': 'Give it time', 'created': '2024-11-10 03:16:27', 'submission_id': '1gnjr0m'}
{'comment': 'Who cares …..get waltz off you mind he lost …..', 'created': '2024-11-10 20:14:16', 'submission_id': '1gnjr0m'}
{'comment': 'What should he say ?', 'created': '2024-11-10 17:19:21', 'submission_id': '1gnjr0m'}
{'comment': 'So obvious. You can’t even spell his name properly.', 'created': '2024-11-10 21:50:53', 'submission_id': '1gnjr0m'}
{'comment': 'Well there is a cognitive dissonance between the two statements. So which one should be modified?', 'created': '2024-11-10 17:29:18', 'submission_id': '1gnjr0m'}
{'comment': 'Why are you so angry ?', 'created': '2024-11-10 21:54:43', 'submission_id': '1gnjr0m'}
{'comment': 'So what ? Why does that bother you ?', 'created': '2024-11-10 21:54:36', 'submission_id': '1gnjr0m'}
{'comment': 'After Trump pulls support for Ukraine, the unlikely hero to slow down Russian forces might just be porn. Who woulda thunk it', 'created': '2024-11-09 21:47:24', 'submission_id': '1gnjjz9'}
{'comment': 'https://preview.redd.it/lwx8khxjuzzd1.jpeg?width=300&format=pjpg&auto=webp&s=32cf7aa2423f756a93c7e24aaf0ff0b02818ad09', 'created': '2024-11-10 04:31:01', 'submission_id': '1gnjjz9'}
{'comment': 'Just wait until they hear about project 2025.', 'created': '2024-11-10 13:25:54', 'submission_id': '1gnjjz9'}
{'comment': '[removed]', 'created': '2024-11-10 10:14:21', 'submission_id': '1gnjjz9'}
{'comment': 'How bizarre that the fall of North Korea starts with porn but no blessing for any female taken prisoner. Wonder how many thoughts of defection are already growing? Probably only single people, their great leader would probably kill their family.', 'created': '2024-11-10 03:45:31', 'submission_id': '1gnjjz9'}
{'comment': 'Leopards!', 'created': '2024-11-10 01:04:38', 'submission_id': '1gnj9hr'}
{'comment': 'when you lead a violent mob, the biggest problem is them turning on you.', 'created': '2024-11-10 03:11:45', 'submission_id': '1gnj9hr'}
{'comment': 'Nope. \n\nHis government agencies will claim it isnt happening. It\'s a lie started by the evil liberal MSM.\n\nIf people persist, he will simply say "well that\'s ongoing Biden/Harris inflation. I *could* fix it, but the Democrats remaining in Congress are preventing it. It\'s only bad in the blue states because they don\'t dance for me."\n\nNothing will ever stick as long as he controls the narrative and defines "truth".', 'created': '2024-11-10 02:09:45', 'submission_id': '1gnj9hr'}
{'comment': "He'll lie and deny it, and find someone to scapegoat. The wise it gets, the more dangerous", 'created': '2024-11-10 02:42:37', 'submission_id': '1gnj9hr'}
{'comment': "He will say it's Biden's fault, he left him with a bad economy. No doubt.", 'created': '2024-11-10 06:19:25', 'submission_id': '1gnj9hr'}
{'comment': 'Where were these stories when he was running? Why wait until he got elected to write about it?', 'created': '2024-11-10 06:58:54', 'submission_id': '1gnj9hr'}
{'comment': 'https://preview.redd.it/b7ikxl02a00e1.jpeg?width=1920&format=pjpg&auto=webp&s=983f2cb559bc1bea5b2393e8717e942dbfcd5ee0', 'created': '2024-11-10 05:57:53', 'submission_id': '1gnj9hr'}
{'comment': "He. Doesnt. Care. As long as he gets his billionaire tax cuts and pardons himself of everything, he's just gonna spend the next 4 years playing golf.", 'created': '2024-11-12 12:36:37', 'submission_id': '1gnj9hr'}
{'comment': 'I feel sorry for the folks who fell for Trump’s promises.', 'created': '2024-11-10 03:29:11', 'submission_id': '1gnj9hr'}
{'comment': "Oh bullshit. He fall flat on his face just like he did before and *no one* will rescue him because HE'S A LAME DUCK.\n\nNow for all our sakes, I honestly hope he HAS learned lessons over the last eight years...I do...but if he hasn't, his second term will accomplish nothing in the next two years (just like he accomplished nothing from 2016-2018 with a Republican Congress, a stronger Republican Congress than he'll have now BTW).\n\nAs a direct result, Democrats will win control of Congress in 2026 just like they did in 2018 and his Presidency will essentially treading water until 2028 at that point.", 'created': '2024-11-10 08:42:34', 'submission_id': '1gnj9hr'}
{'comment': 'And no one will give any more of a shit about his excuses than they do any former Administration blaming their predecessor for their problems.', 'created': '2024-11-10 08:43:19', 'submission_id': '1gnj9hr'}
{'comment': 'I don’t. They reap what they sow.', 'created': '2024-11-10 03:32:49', 'submission_id': '1gnj9hr'}
{'comment': 'I don’t.', 'created': '2024-11-10 07:12:09', 'submission_id': '1gnj9hr'}
{'comment': 'He just got elected again.', 'created': '2024-11-12 14:10:43', 'submission_id': '1gnj9hr'}
{'comment': 'Exactly, it’s just unfortunate that they’ve sentenced us all to the same fate.', 'created': '2024-11-10 03:52:13', 'submission_id': '1gnj9hr'}
{'comment': 'I have coworkers thinking Trump will bring down the prices of eggs.', 'created': '2024-11-10 03:33:52', 'submission_id': '1gnj9hr'}
{'comment': 'This and all future no longer matter. He can literally get away with what he wants at this point.', 'created': '2024-11-10 02:18:27', 'submission_id': '1gnhas9'}
{'comment': 'Excerpt:\n\nIn life, there are plenty of times when it makes sense to be gracious amid the agony of defeat. Today is not one of those times. Donald Trump was the worst president in American history, and his upcoming term is likely to be even worse than his first. In times of true crisis, magnanimity is the privilege of those happy collaborators who are secure in the belief that they will be OK no matter what. For all the rest of us, now is not the time for magnanimity. Nope. Sorry. Screw these people.', 'created': '2024-11-09 17:32:29', 'submission_id': '1gndwmf'}
{'comment': 'Sell your Tesla stock and never buy a Tesla or your supporting Trumps 120 million donation.', 'created': '2024-11-09 20:37:00', 'submission_id': '1gndwmf'}
{'comment': "Nope. If I live to be 100 things will never ever be as sane again as they were 9 years ago. Ever. It will only get worse until I die. Nothing I or any of us will do or can do will change that.\n\nSo Im not going to spend the remaining shit years with people who did this around in my life. Whether family or (ex) friend. No forgetting. No forgiving. No redemption. Ever.\n\nAlso, enjoy the dying planet unfuckable Gen Z bros who helped cause this. Enjoy getting balls deep in your soiled waifu pillow as the ecosystem dies around you. You'll be here for the worst of it, I wont.\n\nOh and we're already seeing TikTok's from blacks and latinos for Trump sad that their new family isn't treating them as equals. Deal with it. Youre no longer welcome *here* either.", 'created': '2024-11-09 19:32:54', 'submission_id': '1gndwmf'}
{'comment': 'DO NOT OBEY IN ADVANCE. Read Timothy Snyder, On Tyranny.', 'created': '2024-11-09 22:47:47', 'submission_id': '1gndwmf'}
{'comment': 'Look for companies or products that don’t support R \n[maga doesn’t get our money](https://www.goodsuniteus.com)\n\nResist', 'created': '2024-11-09 21:44:25', 'submission_id': '1gndwmf'}
{'comment': "The MAGAts don't want Democrats to just concede. They want us to capitulate. They want us to bow down to their obvious superiority and magnificence. Ain't gonna happen, turdhats.", 'created': '2024-11-09 20:00:50', 'submission_id': '1gndwmf'}
{'comment': 'My mom and her partners voter history hasn’t updated. Shows 2021 as their last election. Lots of others are claiming the same.', 'created': '2024-11-09 18:32:10', 'submission_id': '1gndwmf'}
{'comment': 'I can’t believe the Dems are now considered the party of elites because we busted our asses and spent too much money to get an education past high school and maybe want to help our fellow citizens get a hand up to get there too. The GOP was always the party for the rich “Greed is Good” to me growing up. The GOP has played the long game behind our backs for decades and now we pay the price for being blind to it. The oligarchs pulled it off brilliantly I give them that.', 'created': '2024-11-09 23:43:52', 'submission_id': '1gndwmf'}
{'comment': 'Ah yes, but who should one be angry at?\n\nMy anger currently lies with those people who voted for Biden in 2020 but chose to sit this one out for some reason', 'created': '2024-11-09 23:42:02', 'submission_id': '1gndwmf'}
{'comment': 'Magnanimous toward neo-fascism. F*** that!', 'created': '2024-11-09 22:25:01', 'submission_id': '1gndwmf'}
{'comment': 'Do not go gently into that good night', 'created': '2024-11-09 21:42:46', 'submission_id': '1gndwmf'}
{'comment': 'This how I see it as a secure, retired person in CA who voted for Harris: there are a group of people who we all (at least Dems) want to help, but for some reason, these are the folks who seemingly always vote against their own best interests. These folks tend to get themselves into tenuous situations d/t both life circumstances and poor decision making. So DJT got their votes this time, and in 2 years when eggs and gas aren’t free and their economic situations are worse, they’ll vote hard the other way. They are looking for someone to fix all their problems while they simultaneously undermine their own security. No one can help these folks no matter how hard some of us try, and we all know Trump doesn’t care for anyone but himself. Further, the billionaire and corporations, who fund elections and thus control legislation and elected officials, use and discard this group time after time. There is no explaining business 101 or economics to these folks, they are not interested. They want someone to fix their problems NOW because they cannot (most) or will not (few) fix their problems themselves. I’ll I can say is I tried. All those Trump supporters who scream “liberals, blah, blah” you hurt yourselves with your vote, far more than you hurt me. I know, I am entitled and privileged, and I’d like nothing more for other people to attain this level of security, but you have to use your brain, work hard and stop falling for the antics of con artists. The only person who can solve your problems are you, not the government, not the POTUS or congress.', 'created': '2024-11-10 01:03:21', 'submission_id': '1gndwmf'}
{'comment': 'Make our voices heard. Don’t accept the results without questioning the integrity. Believe your own eyes and ears. Sign the petition for a recount. \n\nNegative comments will be ignored and assumed to be bots.\n\nhttps://www.change.org/p/demand-transparency-and-recount-in-key-battleground-states', 'created': '2024-11-09 17:41:32', 'submission_id': '1gndwmf'}
{'comment': 'Women have a tough road. Use the power you have to your full advantage.', 'created': '2024-11-09 22:48:41', 'submission_id': '1gndwmf'}
{'comment': 'It’s fine to be angry & to fight back. \n\nHowever;If you are able, listen, read or watch Barbara Walter (Civil War expert & how to recognize the early signs of a civil war…) \n\nEasy to find her views online (YT, podcasts, etc.)\n\nTake care everyone…', 'created': '2024-11-09 23:25:13', 'submission_id': '1gndwmf'}
{'comment': 'Stay mad, but mother fuckers do yourself one better: stay motivated. Every week, do something that would help democratic prospects. Spread the word. Silence is compliance.', 'created': '2024-11-10 01:51:32', 'submission_id': '1gndwmf'}
{'comment': "As Trump said, he'll accept the results as long as it's fair and free. Why shouldn't he want an audit to ensure that? It's what he wanted.", 'created': '2024-11-10 03:47:28', 'submission_id': '1gndwmf'}
{'comment': 'I’m still convinced that someone will save us from him and say no fucking way this guy is insane yeah we know the law but the law has failed us and he is an existential threat, we are staying, happy to work on solving actual problems. It would be insane for them to accept the election and let him back. Like sure Hitler was elected and they made laws against the Jews and they accepted it and standing up against it was illegal but it was the right thing to do. And sorry I don’t mean to bring it back to Hitler but it was a clear example of legally coming to power but blocking him from it is still the right thing to do. I can’t imagine all the democrats are such rule-abiding wet mops.', 'created': '2024-11-10 04:46:49', 'submission_id': '1gndwmf'}
{'comment': 'I will protect women, whether they want it or not!', 'created': '2024-11-09 21:23:31', 'submission_id': '1gndwmf'}
{'comment': 'More than anything else, ignore everybody who says anything that starts with something like :"The reason the Democrats lost is..."', 'created': '2024-11-10 06:40:33', 'submission_id': '1gndwmf'}
{'comment': 'Why do they act like Dems fought against Trump, but MAGA was willing to compromise? The Dems wouldn’t have killed a meaningful border bill, just to be able to continue whining about the border.', 'created': '2024-11-10 16:02:13', 'submission_id': '1gndwmf'}
{'comment': 'Staying angry is only going to make things worse. I’m sorry to be the voice of reason here, but angrily shouting at people and calling them irreparably horrible is never going to change their minds. It’s going to dig them in. \n\nTALK TO REPUBLICANS. ASK WHY THEY VOTED FOR TRUMP. Odds are, it was because they were fed a line of bull—reverse trickle down, claiming that the proposed tax on unrealized capital gains over $100mil would make prices go up, because billionaires would be spending less money. Tell them they were lied to. Take the time to explain economics to someone you don’t really like. Take the effort to do it kindly. The media failed to do it. It’s the only way to change minds or fix things. Staying angry will only push them further away, and further together.', 'created': '2024-11-09 19:54:02', 'submission_id': '1gndwmf'}
{'comment': None, 'created': '2024-11-09 20:49:36', 'submission_id': '1gndwmf'}
{'comment': 'Look up NO KINGS ACT', 'created': '2024-11-10 04:49:59', 'submission_id': '1gndwmf'}
{'comment': None, 'created': '2024-11-10 00:03:57', 'submission_id': '1gndwmf'}
{'comment': 'We don’t need to punish them with boycotts, or antagonize them with vitriol. We need to change what’s in or not in their hearts.', 'created': '2024-11-10 04:51:36', 'submission_id': '1gndwmf'}
{'comment': 'Idk Dems need to roll over but this whole do exactly what MAGA did thing is ridiculous. \n\nDragging the party further to the crazy left won’t have the desired effect and it’s bizarre to me that this is the proposed solution.', 'created': '2024-11-09 20:08:55', 'submission_id': '1gndwmf'}
{'comment': '"That\'s the end of your political party. America has spoken." \n\nlolz!', 'created': '2024-11-09 20:40:54', 'submission_id': '1gndwmf'}
{'comment': '100000% agree. This is not a “good game, congratulate the winning qb” situation', 'created': '2024-11-09 22:37:39', 'submission_id': '1gndwmf'}
{'comment': 'Wish i had an award 🥇 to give you but please take this 👑 instead because you are right.', 'created': '2024-11-09 21:07:06', 'submission_id': '1gndwmf'}
{'comment': 'The empathy we possess should be reserved for those that will be harmed the most.', 'created': '2024-11-09 22:49:41', 'submission_id': '1gndwmf'}
{'comment': 'In theory, I absolutely should be ok, but don’t I will be', 'created': '2024-11-09 23:05:07', 'submission_id': '1gndwmf'}
{'comment': '100000%', 'created': '2024-11-09 23:16:33', 'submission_id': '1gndwmf'}
{'comment': 'Absolutely.', 'created': '2024-11-10 09:21:53', 'submission_id': '1gndwmf'}
{'comment': 'In times of true crisis, magnanimity is the privilege of \xa0collaborators \xa0\n\n\nWell said!\xa0\xa0\n\n\nCollaborating happily with fascists remains evil. We need to fight fire with fire.\n\n\nMy empathy is reserved for decent people. Not those who enjoy hurting others or who idolize thuggish tyrants \xa0', 'created': '2024-11-11 02:45:30', 'submission_id': '1gndwmf'}
{'comment': 'Look I’m just as upset as everyone else here but we’ve seen trump before, he largely does nothing and will likely spend the next few years return political favors to his cronies like musk and taking credit for Biden getting inflation down. Not that I agree with this but it isn’t harmful and doesn’t mean the sky is falling. \n\nLet’s save our outrage for if he actually does something and work our asses off for midterms in a few years.', 'created': '2024-11-09 21:59:55', 'submission_id': '1gndwmf'}
{'comment': 'I’m not buying from companies that support the GOP. If that means buying local and paying more so be it.', 'created': '2024-11-09 21:27:56', 'submission_id': '1gndwmf'}
{'comment': 'I support you. I have left a wake of people now dead to me. They’re okay with rape, women being left to die and more. I don’t need it in my life. I’m currently dealing with a ton of anger at the country this will leave my grandchildren.', 'created': '2024-11-09 21:25:20', 'submission_id': '1gndwmf'}
{'comment': 'as u/mmesuggia said:\n\n>Wish i had an award 🥇 to give you but please take this 👑 instead because you are right.', 'created': '2024-11-09 21:24:18', 'submission_id': '1gndwmf'}
{'comment': 'It’s important to identify people. I’m a Latino male who voted for Harris. Hispanic males combined with Hispanic women about 60%+ of us voted for harris. So before you spew any hate to undeserving latinos, you should identify if they voted Harris or not. Trumpists will proudly say who they voted for. Those demographic charts splitting the vote by race are intended to divide us. The latino vote was nowhere near as important as they make it out to be especially in swing states. It was men, more specifically white men who voted for Trump. But even then, I’m not going to automatically dislike every white guy unless I’m sure they voted for him. What if they’re an ally? I understand that you’re angry and you have every reason to be. But that’s what they want. To have us point the finger at each other so that we’re no longer united and therefore lose our power. We’re smarter than them.', 'created': '2024-11-09 22:58:08', 'submission_id': '1gndwmf'}
{'comment': 'I mean blacks and Latinos are definitely welcome here though', 'created': '2024-11-10 00:33:53', 'submission_id': '1gndwmf'}
{'comment': 'So well said!! Exactly how I feel. I spent decades voting for the rights of minorities, especially Hispanics, to protect their "right" to a better life over my own interests. Then I find out 57% of hispanic men voted for Trump i said to myself, what a fool I\'ve been. I want their freedom more than they do. I\'m done. If they get rounded up and thrown out, good riddance. They did it to themselves', 'created': '2024-11-10 14:20:15', 'submission_id': '1gndwmf'}
{'comment': 'I happen to be reading that book right now!', 'created': '2024-11-10 00:27:57', 'submission_id': '1gndwmf'}
{'comment': 'Just bought it!', 'created': '2024-11-10 01:56:08', 'submission_id': '1gndwmf'}
{'comment': "The votes are **still** being counted. I think the popular vote will be even closer after it is complete. It is currently 74 to 70 million with 2+ million 3rd party votes as well.\n\nedit update: \nI just looked again at 2020. California had 17M votes in 2020 -- they are still currently at 63% counting this year and only 10M total counted, so there could still be big amount coming in there and a few other places. He's going to go nuts if he ends\xa0up losing or drops his \\~4M margins in the popular vote. :X XD", 'created': '2024-11-09 19:17:35', 'submission_id': '1gndwmf'}
{'comment': 'It takes 30-45 days to update. Everyone needs to chill.\xa0', 'created': '2024-11-09 20:27:39', 'submission_id': '1gndwmf'}
{'comment': None, 'created': '2024-11-09 21:23:44', 'submission_id': '1gndwmf'}
{'comment': 'Screw a recount. Musk voting machines', 'created': '2024-11-09 18:43:51', 'submission_id': '1gndwmf'}
{'comment': 'How about we not play the Republican card of “every election I lose is fraud,” and just deal with the reality what America is fucking stupid and we lost because of it.', 'created': '2024-11-09 19:22:04', 'submission_id': '1gndwmf'}
{'comment': "We lost. It's that simple. Screw this conspiracy theory bullshit.", 'created': '2024-11-09 19:24:21', 'submission_id': '1gndwmf'}
{'comment': 'Serious question for discussion: The results and integrity of the election were questioned in 2020, and it was considered a right wing conspiracy. Now the left is questioning the results of the 2024 election; will this be viewed as a conspiracy theory as well? You would think the logical thing to do would be to question the results and the integrity of the 2020 election now that we see how much of a landslide victory 2024 was; especially the circumstances we were in 4 years ago. I just find it amusing how the left is bringing up the election results and integrity now, but y’all were calling the right crazy nut jobs for doing the exact same thing in 2020.', 'created': '2024-11-09 19:02:02', 'submission_id': '1gndwmf'}
{'comment': 'Dude accept the loss. This is very bad precedent to set if every time a party loses it was “stolen” Kamala campaign sucked. Learn from it. Mobilise. Organise. Resist', 'created': '2024-11-09 19:49:08', 'submission_id': '1gndwmf'}
{'comment': 'You know what, I wasn’t asked by Republicans after the Romney loss how they could earn my vote. I wasn’t asked after the McCain loss what they could do to get my vote. This whole line of thinking is like an abused wife being told that she just needs to be nice to her abusive husband and then he won’t beat her anymore. They don’t really care that they were lied to. Their whole identity is wrapped up in Trumpism and they will feel angry if we tell them they were conned. They will only learn when the economy really goes south. Then maybe the scales will fall from their eyes.', 'created': '2024-11-09 21:01:08', 'submission_id': '1gndwmf'}
{'comment': "I don't think what you want is actually that far off from what most people want. For years, a lot of us have kept quiet. Trumpers shout down anyone who even mildly stands up to them, and there's been a lot of trying to keep the peace. Not being magnanimous doesn't mean screaming in people's faces. It means not letting them spew bullshit with zero pushback. Don't let them set the narrative. Tjose assholes are gonna whine about meanies on the left no matter what, so may as well give them an actual readon to whine. And remember, it's not them you're trying to convince. It's the undecideds and the ones who think both sides are the same.", 'created': '2024-11-09 21:05:58', 'submission_id': '1gndwmf'}
{'comment': ">Staying angry is only going to make things worse. I’m sorry to be the voice of reason here, but angrily shouting at people\n\nUmmm...Being angry doesn't mean you have to shout at people.", 'created': '2024-11-10 00:11:25', 'submission_id': '1gndwmf'}
{'comment': "No. Fuck that. We will not coddle or appease fascism in any way, shape or form. It's immoral, it's unhelpful, and it only serves the egos of people who think that every situation that comes up is an opportunity to make them look better than other people and not about helping us or finding solutions.\n\nWe don't want or need them. Fuck them.", 'created': '2024-11-10 03:05:35', 'submission_id': '1gndwmf'}
{'comment': "So the above comment shows proof that there are bots working in the comments. This one has gone rough so it is obvious to point out. However if someone is telling you to be complacent with the results of this election or just wait to accept your fate after inauguration realize that's probably a bot lulling you into complacency.", 'created': '2024-11-10 04:32:11', 'submission_id': '1gndwmf'}
{'comment': 'His health will make him not be alive for the inauguration.', 'created': '2024-11-10 00:40:17', 'submission_id': '1gndwmf'}
{'comment': 'No, but it’s worth looking into his “game” and figure out why someone who claims to be a billionaire was able to thoroughly win over the working class', 'created': '2024-11-10 15:52:34', 'submission_id': '1gndwmf'}
{'comment': 'I got it fam', 'created': '2024-11-09 21:30:26', 'submission_id': '1gndwmf'}
{'comment': 'Bingo! Bullseye! 🎯', 'created': '2024-11-10 00:40:11', 'submission_id': '1gndwmf'}
{'comment': "You are staking your comfort in the hope that Trump's incompetence can't possibly hurt...\n\n\n... Tell that to the Covid dead", 'created': '2024-11-09 22:39:43', 'submission_id': '1gndwmf'}
{'comment': 'So when he blows up the deficit, hurts the economy to "prove" that his tariffs are wonderful, and actively destroys more of the environment. Then, can we complain?', 'created': '2024-11-09 22:08:29', 'submission_id': '1gndwmf'}
{'comment': "Roe v Wade and the handling of the pandemic? All he had to do is tell people to wear a mask and wash their hands. Women are dying because they can't even have a miscarriage with a child they wanted. That's nothing?", 'created': '2024-11-09 23:15:00', 'submission_id': '1gndwmf'}
{'comment': 'A million dead people from doing nothing.', 'created': '2024-11-09 23:00:41', 'submission_id': '1gndwmf'}
{'comment': 'David, I’m guessing you cannot get pregnant.', 'created': '2024-11-10 02:23:00', 'submission_id': '1gndwmf'}
{'comment': "^^ Don't listen to this idiot. His misguidance will lead our country to disaster and cost tens of millions of innocent lives.\n\nWe need to fight NOW", 'created': '2024-11-09 23:17:27', 'submission_id': '1gndwmf'}
{'comment': 'If people keep saying how musk is almost like a co president trump will get rid of him.', 'created': '2024-11-09 23:40:17', 'submission_id': '1gndwmf'}
{'comment': 'Trump did a lot the first time around', 'created': '2024-11-09 22:38:05', 'submission_id': '1gndwmf'}
{'comment': "DID NOTHING???\n\nI'm gonna guess David here is a man.", 'created': '2024-11-10 02:33:48', 'submission_id': '1gndwmf'}
{'comment': "This time isn't like before though dude. Either he or his team realized what a shit show his administration was, and they hired Susie Wiles to be his Chief of Staff, and she delivered his second term to him. We're not going to see amateurs this time around. Shit, they mapped it all out in Project 2025. He has a Republican led Senate, and that's all he needs to swap military leadership with Senate-approved replacements. \n\nYes, work our asses off for midterms, but the reality is more is going to be done in this term simply because someone learned from his first term. He is silent right now because they are taking the transition seriously this time around. There isn't going to be a bunch of turnover because they have a serious CoS. He has control of the Senate, mostly SCOTUS, possibly the House, and a plan to get rid of dissenters in the military and government agencies. The right wing media praises him and keeps his people in fear of us nasty democrats while the center and left media normalizes him and still expects him to play by their moral code (which he obviously doesn't).", 'created': '2024-11-10 06:24:28', 'submission_id': '1gndwmf'}
{'comment': 'Republicans are amazing at this and they’ve been at it a long time. We need to use the “Goods unite us” app when making big purchases but also get acquainted with most purchases really.', 'created': '2024-11-09 22:47:23', 'submission_id': '1gndwmf'}
{'comment': 'My Latina wife and half Latino kids all voted for Harris as well as this old white dude.', 'created': '2024-11-09 23:12:47', 'submission_id': '1gndwmf'}
{'comment': 'Yep. Very important for Harris voters to not fall into these traps of petty assumptions and prejudice. I\'m very suspicious of anyone who says weird shit like "I hope mass deportation happens so latino men get what they voted for". It\'s obviously disgustingly racist, but it also sounds like a talking point straight out of a Russian propaganda factory with the goal of further dividing democrats.\n\nThat being said, I\'m cutting out anyone in my life who voted for Trump, and that includes part of my own extended family. But that\'s because I know for a fact that they actively and proudly chose to vote for an incompetent pathological lying corrupt dictator.', 'created': '2024-11-09 23:10:29', 'submission_id': '1gndwmf'}
{'comment': "I don't think the comment was trying to scapegoat black and Hispanic people its just that maga isn't turning on their fellow maga white people except maybe for the transgender or lgbtq ones.", 'created': '2024-11-09 23:44:53', 'submission_id': '1gndwmf'}
{'comment': 'What if this whole election was fraudulent? Get angry. Demand an investigation.\n\nThis is not a time for complacency.', 'created': '2024-11-10 22:07:42', 'submission_id': '1gndwmf'}
{'comment': 'I have been watching. CA needs to hurry frfr. But I live in VA and my moms county finished counting on election night and her polling station submitted results. My small city took a similar amount of time and mine showed immediately.', 'created': '2024-11-09 19:20:55', 'submission_id': '1gndwmf'}
{'comment': "I wish people wouldn't tell other people how to feel. You don't really know what everyone needs to do or feel.", 'created': '2024-11-09 23:24:45', 'submission_id': '1gndwmf'}
{'comment': 'Thank you!', 'created': '2024-11-09 21:31:30', 'submission_id': '1gndwmf'}
{'comment': 'Would love to see a hand count and compare the difference to the machines.\n\nIf a hand count comes up the same across the board (or within a reasonable margin) then OK fine, but as it is now I don’t buy it.', 'created': '2024-11-09 18:47:21', 'submission_id': '1gndwmf'}
{'comment': 'They were openly conspiring to suppress and rig the vote. We were not. We are NOT being like them if we question the results.', 'created': '2024-11-09 21:57:12', 'submission_id': '1gndwmf'}
{'comment': 'How about we stop worrying about not being like the enemy and actually focus on saving the country?', 'created': '2024-11-10 03:02:46', 'submission_id': '1gndwmf'}
{'comment': None, 'created': '2024-11-09 19:27:47', 'submission_id': '1gndwmf'}
{'comment': 'So we can never accuse him of cheating simply because he accused everyone else of it without merit? That doesn’t mean they’d never cheat. \xa0', 'created': '2024-11-09 23:36:09', 'submission_id': '1gndwmf'}
{'comment': "Yep. The margin was too big. The republicans were pulling shenanigans, but they're not competent enough to have pulled an upset like this. Americans suck and I'm ashamed and embarrassed to be one now in the world stage.", 'created': '2024-11-09 20:47:11', 'submission_id': '1gndwmf'}
{'comment': "Yes, let's not be like them. Be mad. It's okay. BE MAD!", 'created': '2024-11-09 20:38:42', 'submission_id': '1gndwmf'}
{'comment': 'It’s fucking embarrassing to me that people in our party are screaming this election fraud bullshit after we’ve been dragging Republicans for it for the last 4 years. It’s so hypocritical and there’s absolutely no basis to these claims either.', 'created': '2024-11-09 19:35:45', 'submission_id': '1gndwmf'}
{'comment': 'Username checks out.', 'created': '2024-11-09 19:27:49', 'submission_id': '1gndwmf'}
{'comment': ">You would think the logical thing to do would be to question the results and the integrity of the 2020 election\n\nWe did let them question and investigate it to their heart's content, we had a million recounts and court cases and nothing was found. And nobody got in their way. Idk wtf more you want us to do", 'created': '2024-11-09 20:03:53', 'submission_id': '1gndwmf'}
{'comment': '2024 is not a landslide; Jesus Christ is this word thrown around for even the smallest of victories anymore. I agree with most of the rest of your comment that it’s extraordinarily hypocritical that democrats are screaming fraud right now after the republicans did this years ago, but this is not a landslide victory, it’s a perfectly regular win and an expected one for the conservatives because of covid inflation.', 'created': '2024-11-09 19:23:33', 'submission_id': '1gndwmf'}
{'comment': "The difference between the right and the left in almost all such things can be summarized very simply:\n\n\nRight: stolen! Fraud! Evidence? Eh what is that?\n\n\nLeft: something smells off. Should we look into that and see if there's any actual evidence?", 'created': '2024-11-09 22:06:26', 'submission_id': '1gndwmf'}
{'comment': 'Yes. It IS a conspiracy theory. \n\nWe lost. We need to live in reality and deal with that fact. There are plenty of ways to positively respond, but denying reality isn\'t one of them.\n\nThis whole thread is wrongheaded. We 100% need to face the facts if we\'re ever going to improve outcomes. We DO need to be magnanimous and start the healing process. We need to embody the change we want to see. We\'re not going to change the hearts and minds we\'ll need going forward if all we do is live in a fantasy world holding signs while we scream on street corners about conspiracy theories.\n\nAs someone who has actually taken part in rebuilding the party after 2004, I say this with as much sincerity as I can: Don\'t become what you hate. If you value facts, integrity, community, and supporting your fellow man--NOW is the time to show it. Show you are the bigger person, the fun person, and the optimistic person. When they go negative, we need to go positive.\n\nVolunteer, donate, and do so under the Democratic banner. Make being a Democrat something people SEE as a positive and something they want to be part of. Stop TELLING and start SHOWING. But always do so in a non-preachy way. Political elections aren\'t won during campaigns; they\'re won each and every single day we make ourselves visible as the party that people value and with whom they want to associate.\n\nIf you currently are having trouble processing the results and need some support, please get it. I\'m old enough and have experienced this throughout my life to help talk people through some things. I\'m counseling a lot of my own students through this as we speak. At the same time, sometimes the right way for people to cope is to simply "get away" and "detox" for a bit. If you are finding yourself unable to find reality right now, get off social media altogether for a week or two.', 'created': '2024-11-09 21:46:08', 'submission_id': '1gndwmf'}
{'comment': 'It’s not about how to earn their vote, it’s about breaking through their bubble. You can “earn” their vote with a crock of shit, clearly. But if you want them to figure out that they’re being manipulated, you have to be willing to listen to them and be kind to them… while kindly explaining that they were fed a crock of shit.\n\nUnless you’d prefer to be in just another party serving shit.', 'created': '2024-11-09 21:11:33', 'submission_id': '1gndwmf'}
{'comment': 'The article advocates for being angry because everyone is stupid and sucks and not reflecting because your anger is righteous. Reads like advocating for shouty people to me.', 'created': '2024-11-10 01:30:41', 'submission_id': '1gndwmf'}
{'comment': 'In what world is asking someone why they voted a particular way “coddling or appeasing fascism”? Most of these people got duped by disinformation that you’ve never seen because you’re in an algorithm bubble, and so are they. \n\nIf you never talk to them, they’ll only get deeper in their algorithm bubble. They’re getting 0 exposure to actual democrats, just strawmen. \n\nIs your plan to just have half the country be fascist for the rest of forever? Fascism comes from stifling information. The solution to fascism is breaking through the disinformation and helping people learn to tell the difference between good info and junk info. \n\nWe need to reach these people with a media literacy campaign, and unfortunately, we can’t do that if we don’t talk to them.', 'created': '2024-11-10 15:01:43', 'submission_id': '1gndwmf'}
{'comment': 'Sweden is a very liberal country and their strategy was heard immunity, many European countries didn’t handle it well either. \n\nLook, we’re all on the same team, we’ve all Americans and we’re all democrats as well. I was really upset Tuesday night too. I just don’t think this strategy of freaking out will help us in the midterms or the next election.', 'created': '2024-11-09 23:12:19', 'submission_id': '1gndwmf'}
{'comment': 'The deficit has been blown for decades and we’ve had deficit spending since then. I don’t think the tariffs are a good idea either but I also don’t think he’ll force it once he’s sees how bad it tanks the economy. Remember his biggest supporters are the ultra wealthy and if markets tank and they can’t import cheap goods he’ll back off. It’s my opinion which means absolutely nothing and I’m sure there will be carnage along the way but if we freak out before he does anything then we look like the boy who cried wolf.', 'created': '2024-11-09 22:13:48', 'submission_id': '1gndwmf'}
{'comment': 'The Dobbs decision was in 2022 so that was two years ago and dems walked into this election thinking that would be enough for them to win. What did Biden do after the Dobbs decision the last two years to restore women’s rights?? Even if Kamala won the presidency the dems were never going to win the senate and so this would’ve stayed within the states anyway. \n\nAgain I completely agree that overturning Roe was a disaster. That disaster happened two years ago.', 'created': '2024-11-09 23:24:13', 'submission_id': '1gndwmf'}
{'comment': "You are dead on, last time I saw this bullshit in 2016 and 2020 primaries telling Dems to burn their voter ID if their candidate didn't win. And frankly given the timing and insane activity it's definitely bots telling Dems to just roll over accept the results, accept your fate till midterms, and to attack and divide each other. Pretty suspicious to see republican bot activity to tell us to accept election results given the last 4 years.", 'created': '2024-11-10 04:20:09', 'submission_id': '1gndwmf'}
{'comment': 'My.mother in law was a poll watcher in PA\n\nEvery poll worker was wearing Trump gear.\n\nWhen my mother in law went to the judge of elections with a suspicious incident he blew her off.\n\nMeanwhile the Republican watcher had been handing her folder after folder of "suspicious signatures" and the judge of elections took them out the building.\n\nThere were also signs all over the building "Trump = low prices Kamala = high prices"\n\nShe reported it to the hotline and her supervisor but no update since.\n\nIve been seeing similar stories from other swing states.', 'created': '2024-11-09 21:04:15', 'submission_id': '1gndwmf'}
{'comment': 'Its fishy for sure', 'created': '2024-11-09 19:57:21', 'submission_id': '1gndwmf'}
{'comment': "I don't believe they were rigging it. Democrats controlled most of the swing states. The Democrats ran a bad campaign and people are angry at the price of gas and groceries. There should have been a primary in Biden should have said he wasn't running two years ago. Trump grew his support with every category. Democrats need to change in many ways. They did unexpectedly well two years ago, and it can happen again if there is an election in two years.", 'created': '2024-11-09 23:54:01', 'submission_id': '1gndwmf'}
{'comment': '“Saving the country,” is not feeding this bullshit of trying to overturn fair elections we don’t like the results of. This is so fucking exhausting. We lost. It’s not your place to overturn the will of the people regardless of how terrible a decision.', 'created': '2024-11-10 03:03:51', 'submission_id': '1gndwmf'}
{'comment': "Internal polling showed Trump winning 400 EVs with Biden in the race. Dropping out at least saved a lot of senate and house seats. He shouldn't have tried to run again in the first place.", 'created': '2024-11-09 20:25:14', 'submission_id': '1gndwmf'}
{'comment': 'I’ve never seen a worse take then this. For once I hope this is a troll.', 'created': '2024-11-09 21:14:09', 'submission_id': '1gndwmf'}
{'comment': "If you have evidence, you can accuse him of cheating. Right now, there is zero evidence to back up any accusations. I'm not going to start with a conclusion and then try to cobble together a theory to support it. That's not how this works.", 'created': '2024-11-10 01:24:40', 'submission_id': '1gndwmf'}
{'comment': 'The difference is trump is a criminal. He had everything to lose if he lost this election. He has the richest men in the world on his side, putin and musk. To think that suddenly all these Americans sat out this election is ridiculous without proof. Trump fucking stole this election.', 'created': '2024-11-09 20:08:51', 'submission_id': '1gndwmf'}
{'comment': 'I refuse to go down that route. It was a very close election to begin with polling wise so I’m not shocked it was a coin flip.', 'created': '2024-11-09 20:48:52', 'submission_id': '1gndwmf'}
{'comment': 'Yeah, we need to nip that shit in the bud real quick.', 'created': '2024-11-09 19:36:53', 'submission_id': '1gndwmf'}
{'comment': 'Thank you! By what measures is this considered a landslide? When the votes get counted it is likely Kamala will have a higher percentage than Hillary or John Kerry and Trumps popular vote margin will likely be smaller than Bush 2004.\n\nOn top of that all the results I’m seeing about gains in minorities communities for Trump while noticeable look similar to 2004, not some historically massive increase that only Trump ever got. People need to stop playing along with Trumps “blow out”', 'created': '2024-11-09 21:17:30', 'submission_id': '1gndwmf'}
{'comment': "Never mind trying to reach members of the MAGA cult, how about the tens of millions of people who don't vote?", 'created': '2024-11-10 00:18:00', 'submission_id': '1gndwmf'}
{'comment': "We went from Donald Trump's incompetence to Sweden and herd immunity...?\n\nWTF...?\n\nDonald Trump's incompetence led to many more deaths than was necessary. We choose a path and he fucked it up. If we had chosen another path he woulda fucked that up: If we had decided to go Sweden's route and shoot for herd immunity, there is not a scintilla of doubt in my mind that Donald Trump's incompetence woulda found a way to screw that up.", 'created': '2024-11-09 23:25:58', 'submission_id': '1gndwmf'}
{'comment': 'Herd immunity as in a group.', 'created': '2024-11-09 23:19:28', 'submission_id': '1gndwmf'}
{'comment': 'He is the wolf! He has declared his intentions to tear up immigrant families, put homeless in tent cities, squash protests with military. He will sell off federal land and appoint yes men and kiss Russiia’s ass. He has molested women, encouraged violence and shared military secrets. He is a growling wolf about to attack again and you want to give him the benefit of the doubt', 'created': '2024-11-09 23:17:33', 'submission_id': '1gndwmf'}
{'comment': 'Not gonna lie, it’s this kinda shenanigan I’m expecting to hear a lot more of as investigations get under way. This man’s apparatus spent the last four years forcing each swing state to show them every step of the process “to prove it was fair” 60 some odd lawsuits with ZERO evidence but still forced these precincts to reveal every vulnerability to these amoral monsters.\n\nAnd I’m supposed to trust them, after EVERYTHING they have done and said, to not exploit those vulnerabilities? Something poisoned the blood of our nation, and it wasn’t immigrants', 'created': '2024-11-09 22:12:08', 'submission_id': '1gndwmf'}
{'comment': 'Everything you mentioned is highly illegal. Did she video any of this behavior with her phone? It is evidence of illegal behavior.', 'created': '2024-11-09 22:59:36', 'submission_id': '1gndwmf'}
{'comment': "Poll workers, election officials, and voters are not allowed to wear any political party 'gear'. If this is true, it would have been reported and on the news as it was whenever voters showed up in hats and such. Where is the evidence? People took videos of voters tooling around, they definitely would have filmed election officials.", 'created': '2024-11-09 21:26:32', 'submission_id': '1gndwmf'}
{'comment': "Trump was going to jail if he didn't win and all the republicans, russians, and leon helped him win as their very survival depended on it. And it's not like any of those individuals have been honest before, so why are you telling us to trust them now?", 'created': '2024-11-10 04:37:15', 'submission_id': '1gndwmf'}
{'comment': 'I know dozens of veteran state and national political campaign directors who are saying the same thing', 'created': '2024-11-10 04:35:20', 'submission_id': '1gndwmf'}
{'comment': "He didn't steal it. He just walked up and took it because many less people voted for Harris they voted for Biden four years ago. The Democrats have no one to fault but themselves for that. Our feckless Attorney General should have prosecuted him much sooner. He could have been sent to jail in New York instead of continuing to postpone sentencing. Biden could have announced he wasn't going to run years earlier as he initially promised, and a primary could have been held to a much better candidate. Not enough was done to help with the price of gas and groceries and the administration sat on their hands. The Democrats did well two years ago. Unexpectedly well. But they let things fester and here we are.", 'created': '2024-11-09 23:56:26', 'submission_id': '1gndwmf'}
{'comment': 'Woah, great point here.', 'created': '2024-11-09 23:04:54', 'submission_id': '1gndwmf'}
{'comment': "Yes she got video of the signs on the property outside.\n\nShe wasn't allowed to video inside because of that being illegal.\n\nShe reported it to her supervisor within the Democrat poll watchers.\n\nShe hasn't gotten any update though. She probably won't.", 'created': '2024-11-09 23:57:38', 'submission_id': '1gndwmf'}
{'comment': "That's not evidence.", 'created': '2024-11-10 06:14:26', 'submission_id': '1gndwmf'}
{'comment': 'Just doing my own research', 'created': '2024-11-10 01:58:02', 'submission_id': '1gndwmf'}
{'comment': "I think after Trump, he's the most hated guy on both sides.\n\n", 'created': '2024-11-09 17:36:54', 'submission_id': '1gndvlw'}
{'comment': 'Likely go down as the worst administrative pick of all time.', 'created': '2024-11-09 18:56:16', 'submission_id': '1gndvlw'}
{'comment': 'We had an attorney general the last 4 years?', 'created': '2024-11-09 19:57:26', 'submission_id': '1gndvlw'}
{'comment': 'As usual, democrats came thru with a soft heart and forgiveness to select Garland and he turned out to be one of the biggest pussies to ever hold the office. \n\nBiden, trying not to make it look like his administration was going after trump didn’t replace him like he should have. \n\nIn my opinion, Biden should have put the meanest son of a bitch he could find as attorney general and said bring me trumps fat ass NOW. \n\nIf I was president, there would have no fucking way trump would get away with anything… I would use that presidential immunity and sent the fucker to Gitmo. \n\nThe last thing I would have worried about was looking like was going after him… it would have not been a secret.', 'created': '2024-11-09 21:27:33', 'submission_id': '1gndvlw'}
{'comment': 'Completely abrogated his responsibilities.', 'created': '2024-11-09 18:43:39', 'submission_id': '1gndvlw'}
{'comment': 'Constant accusations of Lawfare and this is the guy that was supposedly leading the charge lol', 'created': '2024-11-09 17:42:04', 'submission_id': '1gndvlw'}
{'comment': 'See ya later dipshit. What a waste. Maybe stop picking Republican AGs...', 'created': '2024-11-09 20:24:36', 'submission_id': '1gndvlw'}
{'comment': 'This is his fault. All of it.', 'created': '2024-11-09 20:51:26', 'submission_id': '1gndvlw'}
{'comment': 'Articles in (however many years): \n\n“The one man that led to the downfall of US democracy” \n\n“Merrick Garland wanted to appear politically neutral. By doing so, he failed America.” \n\n“How Merrick Garland’s inaction doomed the US to authoritarianism”\n\n\nI will say though that even if he put trump in jail, I believe desantis would’ve been the republican nominee, won, and would’ve installed the same authoritarian state, if not even more christo-fascist (and he will if he’s ever elected president).', 'created': '2024-11-09 21:26:08', 'submission_id': '1gndvlw'}
{'comment': 'Remember when people desperately wanted Garland to be on SCOTUS? Sheesh. Dodged that one.', 'created': '2024-11-09 21:18:04', 'submission_id': '1gndvlw'}
{'comment': 'He was highly successful at protecting a fellow Republican. He was shrewd, effective and good at what he did: keeping Donald Trump from being tried.', 'created': '2024-11-09 21:42:52', 'submission_id': '1gndvlw'}
{'comment': 'Yes. Yes. And Yes!! WTF with this guy?', 'created': '2024-11-09 20:02:36', 'submission_id': '1gndvlw'}
{'comment': 'Chickenshit is what he is', 'created': '2024-11-09 23:20:04', 'submission_id': '1gndvlw'}
{'comment': 'Feckless is the word that comes to mind when I see this weak man', 'created': '2024-11-10 00:12:28', 'submission_id': '1gndvlw'}
{'comment': 'My mother said:\n\n“If you don’t have anything nice to say, don’t say anything at all.”\n\nI guess I’ll just shut my mouth. /s', 'created': '2024-11-09 21:52:21', 'submission_id': '1gndvlw'}
{'comment': 'The most ineffectual waste of space that I can ever remember in politics.', 'created': '2024-11-10 01:27:40', 'submission_id': '1gndvlw'}
{'comment': 'So sad this is the state of our country. A full fledged RAPIST is elected president? Btw who can link the video of dRump telling the Jan 6th rioters to storm the building? My uncle doesn’t believe that he said that', 'created': '2024-11-09 17:33:48', 'submission_id': '1gndvlw'}
{'comment': 'That’s Eunuch Garland, thank you very much', 'created': '2024-11-09 23:18:49', 'submission_id': '1gndvlw'}
{'comment': 'If trump and his GOP allies turn the USA into a faschist state, Garland will be remember as the " Paul Von Hindeburg" of the USA .', 'created': '2024-11-10 01:29:36', 'submission_id': '1gndvlw'}
{'comment': 'I just do not want to comment .', 'created': '2024-11-09 21:29:21', 'submission_id': '1gndvlw'}
{'comment': 'Trump/Putin owe this motherfucker big!', 'created': '2024-11-09 21:44:21', 'submission_id': '1gndvlw'}
{'comment': 'I’ll wait for the write up.', 'created': '2024-11-09 21:09:58', 'submission_id': '1gndvlw'}
{'comment': 'HOW did Biden "forget" (?) to keep an eye on this very, very important issue????? It\'s insane!!!!!!!!', 'created': '2024-11-10 12:35:55', 'submission_id': '1gndvlw'}
{'comment': 'Milquetoast Merrick', 'created': '2024-11-10 14:17:43', 'submission_id': '1gndvlw'}
{'comment': '>Merrick Garland\n\nWho is this "Merrick Garland " you speak of?', 'created': '2024-11-10 10:49:15', 'submission_id': '1gndvlw'}
{'comment': 'Never trust a Republican. \n\nNever trust a scorpion or leopard either. But start by never blindly trusting Republicans.', 'created': '2024-11-11 02:20:49', 'submission_id': '1gndvlw'}
{'comment': 'Yep. He tried to look nonpartisan but instead looks like an idiot played by the right wing Queefs. Truly a pathetic and I mean pathetic individual', 'created': '2024-11-11 02:59:09', 'submission_id': '1gndvlw'}
{'comment': 'Feckless', 'created': '2024-11-11 22:09:36', 'submission_id': '1gndvlw'}
{'comment': 'James Comey?', 'created': '2024-11-09 18:32:19', 'submission_id': '1gndvlw'}
{'comment': 'Obama really put him up as a dare of sorts, he is *very* conservative and when he was president he nominated him to prove that Republicans would deny *anyone* he nominated, regardless of how right-leaning he was. \n\nThat\'s some context that the media never really got out and Democrat/left leaning folks never learned. They all just tagged on to "Obama \'s guy, must be good, will do what we want" and then have acted more and more surprised as the years have passed...', 'created': '2024-11-09 21:38:32', 'submission_id': '1gndvlw'}
{'comment': "Keep your voice down! He's still sleeping!", 'created': '2024-11-09 20:00:55', 'submission_id': '1gndvlw'}
{'comment': 'I agree with every word. You know Biden is still president until the inauguration he can STILL do a few things but won’t. I’d go down that list real quick : Garland, pardon his son, cohen and any immigrants here. Green card day. We are going to be so fucked . 60% higher on food. AGAIN Plus the reason meat went up he sent all the immigrants working in a processing plant on greyhounds right before he left 2021. (Includes soybean etc ). Clothing the get it now price will be the last. but I’m on Baidu trying to get my Mac to translate. \nI’m not into this. At all and here I go again. I’m going to say that magic word so I’m stopping.', 'created': '2024-11-09 21:36:35', 'submission_id': '1gndvlw'}
{'comment': 'This has happened repeatedly over the years. After a while, you have to start asking yourself is it a "soft heart", or are they complicit? \n\nIf both parties answer to billionaires, isn\'t our "choice" an illusion?', 'created': '2024-11-09 21:54:02', 'submission_id': '1gndvlw'}
{'comment': 'So true! It set a very dangerous precedent.', 'created': '2024-11-09 22:45:29', 'submission_id': '1gndvlw'}
{'comment': "Alas Biden isn't a FIGHTER and that was what was needed ....", 'created': '2024-11-10 12:38:22', 'submission_id': '1gndvlw'}
{'comment': '>As usual, democrats came thru with a soft heart and forgiveness to select Garland\n\nThat was not what happened. \n\nIn the first year of his presidency, Biden did work towards building a coalition with moderate Republicans in order to govern. Selecting Garland was part of that. \n\nWhile in hindsight, Garland was not the right choice, it was not the "soft heart and forgiveness" choice. \n\nShould Biden have replaced Garland after the first year or so? I think they had high hopes that the house committee would effectively put a stop to Trump. It turned out to be wrong. But it was not an unreasonable strategy. \n\nIt\'s time to move beyond looking to blame Democrats for what happened. When we look at the big picture, the cancer of fascism was simply too widespread.\n\nIn fact, if you look at what happened with this election. If the pandemic had not happened, Trump would have been reelected in 2020.', 'created': '2024-11-10 14:34:48', 'submission_id': '1gndvlw'}
{'comment': 'I think DeSantis could’ve been the nominee but I don’t think he attracts nearly as many MAGA outside of Florida as Trump did', 'created': '2024-11-09 21:44:15', 'submission_id': '1gndvlw'}
{'comment': 'I will never forgive that man', 'created': '2024-11-10 02:30:25', 'submission_id': '1gndvlw'}
{'comment': '😏😏😏🤪🍸', 'created': '2024-11-09 18:42:27', 'submission_id': '1gndvlw'}
{'comment': 'Just watched the Martha stewart doc on Netflix and totally didn’t know he made his career prospecting her for bullshit.', 'created': '2024-11-10 05:27:03', 'submission_id': '1gndvlw'}
{'comment': 'I’ll never forgive Obama for not going to the mattresses over that SC slot.', 'created': '2024-11-09 23:00:54', 'submission_id': '1gndvlw'}
{'comment': 'Of course it was. \n\nMerrick Garland was on Bidens short list from the beginning as attorney general. He was appointed the day after inauguration. \n\nDemocrats all remember the fiasco with the Supreme Court and too many sucked this up as redemption to him not getting sat as a justice. \n\nIt was a retribution to republicans and trump. \n\nWhen Garland was seen by most people he wasn’t the active responsive man for the job he should have been replaced with a pit bull. \n\nHad Biden done this, we wouldn’t be in the position we are in now. \n\nBiden would have a legacy as a hero regardless of how calculated or apparent it was. \n\nNow, we will all pay for this mistake… and THAT will be in Bidens legacy too.', 'created': '2024-11-10 15:06:54', 'submission_id': '1gndvlw'}
{'comment': 'I think he’d get more moderate republicans even though his policies are more extreme, mostly because he speaks in a less… unhinged way and would get back the law & order and never-trump republicans.', 'created': '2024-11-09 21:48:48', 'submission_id': '1gndvlw'}
{'comment': 'While never growing out of his punchable personality he evidently grew out of his extremely punchable face.', 'created': '2024-11-10 13:30:54', 'submission_id': '1gndvlw'}
{'comment': 'I\'ll never understand that either. Can\'t say I was ever with Michelle when she declared "when they go low, we go high". No, Michelle, we don\'t have that luxury. Time for new stars in the party.', 'created': '2024-11-09 23:06:56', 'submission_id': '1gndvlw'}
{'comment': 'He was in a tough spot. If he nominated a judge that the base would like, he would make party donors angry. This is why a party where the voters and donors are at odds with eachother can never work.', 'created': '2024-11-10 00:10:51', 'submission_id': '1gndvlw'}
{'comment': 'It was the height of Democratic arrogance as they were sure Hillary was getting elected.', 'created': '2024-11-10 00:10:54', 'submission_id': '1gndvlw'}
{'comment': 'What do you mean?', 'created': '2024-11-10 16:19:26', 'submission_id': '1gndvlw'}
{'comment': '>Of course it was. \n\nNothing and what you just said after this supports the notion that this was about "soft heart and forgiveness."', 'created': '2024-11-10 18:11:03', 'submission_id': '1gndvlw'}
{'comment': "A good sentiment for people on the ground who don't know better, a terrible sentiment for people with power and no scruples.", 'created': '2024-11-10 00:12:46', 'submission_id': '1gndvlw'}
{'comment': 'Release the Epstein files', 'created': '2024-11-09 18:18:33', 'submission_id': '1gndryj'}
{'comment': 'Judges. Appointment and confirm all the remaining judges.', 'created': '2024-11-09 18:06:43', 'submission_id': '1gndryj'}
{'comment': 'Sign the “No Kings Act”.', 'created': '2024-11-09 18:11:40', 'submission_id': '1gndryj'}
{'comment': 'He needs to appoint as many judges as possible', 'created': '2024-11-09 18:31:44', 'submission_id': '1gndryj'}
{'comment': 'Hide all the classified documents … and the good silverware', 'created': '2024-11-09 18:33:39', 'submission_id': '1gndryj'}
{'comment': "Revoke Musk's citizenship.", 'created': '2024-11-09 18:44:51', 'submission_id': '1gndryj'}
{'comment': 'Make weed legal on the federal level', 'created': '2024-11-09 17:41:37', 'submission_id': '1gndryj'}
{'comment': 'Resign, make Kamala #47, and ruin all the MAGA merchandise', 'created': '2024-11-09 19:11:20', 'submission_id': '1gndryj'}
{'comment': 'Give the Ukraine everything they want', 'created': '2024-11-09 18:21:35', 'submission_id': '1gndryj'}
{'comment': 'STACK THE COURT! 💯', 'created': '2024-11-09 18:21:14', 'submission_id': '1gndryj'}
{'comment': 'Can we finish off that replacement for Louis de joy', 'created': '2024-11-09 18:49:21', 'submission_id': '1gndryj'}
{'comment': "Delete every fuckin file in every agency. Especially classified material. Don't leave them anything to sell or hurt us with.", 'created': '2024-11-09 18:43:50', 'submission_id': '1gndryj'}
{'comment': 'The Insurrection Act. \n\nDeport the following people for inciting the 2021 insurrection: Trump, Bannon, Roger Stone, Ted Cruz, Paul Gosar, Ali Alexander, Alex Jones, Tucker, Hannity, and others. \n\nRenounce their US citizenship and send them to the Pacific Remote Island Area (PRIA) where they can forage for nuts, berries, and voter fraud.', 'created': '2024-11-09 20:58:59', 'submission_id': '1gndryj'}
{'comment': 'Look into potential missing ballots. Implement a policy where no criminal can hold office. Make it illegal to attack your own citizens.', 'created': '2024-11-09 18:35:02', 'submission_id': '1gndryj'}
{'comment': 'Forgive student debt for all 39 year olds who over borrowed and needs to lose about 15 pounds. Not to be too specific.', 'created': '2024-11-09 18:57:37', 'submission_id': '1gndryj'}
{'comment': 'There are 47 federal judges that can be filled! Fucking do it!', 'created': '2024-11-09 22:03:39', 'submission_id': '1gndryj'}
{'comment': 'Just claim the election was fraudulent and require a new election on December 5th\n\nEdit: this is obviously a joke', 'created': '2024-11-09 17:46:22', 'submission_id': '1gndryj'}
{'comment': 'Ban any orange tinted makeup.', 'created': '2024-11-09 18:18:14', 'submission_id': '1gndryj'}
{'comment': 'Immediately expand the Supreme Court, appoint all of the justices, and put all justices on a rotating term limit (5 years, 7 years, whatever.)\n\nI know, not feasible, but a boy can dream.', 'created': '2024-11-09 19:16:36', 'submission_id': '1gndryj'}
{'comment': 'I’d love to play this game but democrats are frozen in time with their high road bullshit. He won’t do anything.', 'created': '2024-11-09 18:16:04', 'submission_id': '1gndryj'}
{'comment': 'Use his presidential immunity to arrest all of the head members of Project 2025. Put them in prison for sedition, make Trump have to take them out of prison to inflict them upon the American people.', 'created': '2024-11-09 18:24:28', 'submission_id': '1gndryj'}
{'comment': 'Give Ukraine every possible thing he can. They are going to need it!!!', 'created': '2024-11-09 19:41:44', 'submission_id': '1gndryj'}
{'comment': 'Appoint all the judges now. \n\nTie up any available leases for natural resources on federal lands in so much legal mire they can’t be undone easily over the course of four years', 'created': '2024-11-09 19:42:12', 'submission_id': '1gndryj'}
{'comment': 'Let Kamala be president for 2 months\xa0', 'created': '2024-11-09 23:38:30', 'submission_id': '1gndryj'}
{'comment': 'Presidential tickets containing convicted felons are illegible to accept office, retroactive one year.', 'created': '2024-11-09 18:21:07', 'submission_id': '1gndryj'}
{'comment': 'Seal Team Six', 'created': '2024-11-09 18:42:35', 'submission_id': '1gndryj'}
{'comment': 'Pocket pardon anybody Trump may intend to go after.\n\nAppoint judges.\n\n14A this motherfucker!', 'created': '2024-11-09 21:00:15', 'submission_id': '1gndryj'}
{'comment': 'I just want him to do something bold. He is 81 years old. Likely to never hold another political office again. He’s been a man of public service for decades. Go out with a bang. Do every single thing you can do within the rights of his presidency. Save us.', 'created': '2024-11-09 23:19:42', 'submission_id': '1gndryj'}
{'comment': 'Actually prosecute the criminal for his crimes?', 'created': '2024-11-09 19:28:38', 'submission_id': '1gndryj'}
{'comment': 'Pathway to citizenship for DACA folks', 'created': '2024-11-09 19:03:36', 'submission_id': '1gndryj'}
{'comment': 'Expand the Supreme Court', 'created': '2024-11-09 19:32:13', 'submission_id': '1gndryj'}
{'comment': 'Make all illegal migrants US citizens. That would piss the right off the most.', 'created': '2024-11-09 20:43:58', 'submission_id': '1gndryj'}
{'comment': 'Hold off on inauguration day til after the end of the J6 trial. \n\nAppoint 4 more SCOTUS judges (as an official act of course) \n\nDeport Musk for election interference', 'created': '2024-11-09 22:14:24', 'submission_id': '1gndryj'}
{'comment': 'Declassify the Epstein files', 'created': '2024-11-09 19:26:11', 'submission_id': '1gndryj'}
{'comment': 'Incoming presidents must raise their right hand and place the left on a massive #insert wild item here# while taking the oath of office.', 'created': '2024-11-09 18:17:27', 'submission_id': '1gndryj'}
{'comment': 'Let the dogs loose and have them bite Trump and Vance’s balls', 'created': '2024-11-09 19:01:16', 'submission_id': '1gndryj'}
{'comment': 'Publish the ERA as the 28th Amendment. \n\n[Gillibrand laid the groundwork on this](https://msmagazine.com/2024/08/15/equal-rights-amendment-american-bar-association/).', 'created': '2024-11-09 20:14:31', 'submission_id': '1gndryj'}
{'comment': 'Get Ukraine into NATO', 'created': '2024-11-09 23:46:43', 'submission_id': '1gndryj'}
{'comment': 'Um, correct me if I’m wrong … how does this have any staying power? Can’t Trump just rescind them?\n\nMight be fun to go after popular policies that then forces republicans to show what they are….', 'created': '2024-11-09 17:57:33', 'submission_id': '1gndryj'}
{'comment': "Presidential pardon for every currently illegal immigrant, making them legal immigrants. Presidental pardon for every low level marijuana offender. Hell, pardon everyone except the very worst, so the prisons won't be quite so overcrowded when Trump fills them up.", 'created': '2024-11-09 21:16:53', 'submission_id': '1gndryj'}
{'comment': 'Let Ukraine strike inside Russia.', 'created': '2024-11-09 21:17:31', 'submission_id': '1gndryj'}
{'comment': 'Prevent Trump from getting out of NATO', 'created': '2024-11-09 22:40:06', 'submission_id': '1gndryj'}
{'comment': 'Do something, anything. No one has done anything to protect the very people who put them into office.', 'created': '2024-11-09 22:41:02', 'submission_id': '1gndryj'}
{'comment': 'Use immunity to go crazy on MAGA', 'created': '2024-11-09 19:12:14', 'submission_id': '1gndryj'}
{'comment': 'Erase all student loans, immediately. Raid the banks, burn the files, servers, and every trace of student loans, through official presidential act', 'created': '2024-11-09 23:33:15', 'submission_id': '1gndryj'}
{'comment': 'Stop sending billions of dollars to Netanyahu and redirect it to Ukraine.', 'created': '2024-11-10 02:36:41', 'submission_id': '1gndryj'}
{'comment': 'Cancel ALL student loan debt', 'created': '2024-11-09 19:11:44', 'submission_id': '1gndryj'}
{'comment': 'He has Presidential immunity so he needs to hurry up.', 'created': '2024-11-09 20:07:49', 'submission_id': '1gndryj'}
{'comment': 'Resign and give us our first woman president. You know the liberal version of Trump would do it and the history books would be changed forever', 'created': '2024-11-09 18:16:25', 'submission_id': '1gndryj'}
{'comment': 'Talk to Governors of Blue states to Enact some kind of extreme liberal laws to get MAGA out of Blue States. Give weapons to Blue State National guard to fight them if necessary. We don’t want them or their authoritarian President.', 'created': '2024-11-09 17:33:48', 'submission_id': '1gndryj'}
{'comment': 'Enact something that prohibits people from blackmailing government employees.\n\nYou know\n\nLike the former guy did with Lindsey Graham and holding his homosexuality against him for political gain.\n\nYes that’s right.\n\nI said it', 'created': '2024-11-09 21:42:56', 'submission_id': '1gndryj'}
{'comment': 'Steve Bannon said that the only person who could take down Trump was Epstein. \n\n>"You were the only person I was afraid of during the campaign," Bannon told Epstein. "As well you should have been," Epstein reportedly replied, according to Wolff.\n\n[Source](https://www.salon.com/2021/10/16/steve-bannon-contacted-jeffrey-epstein-over-worries-he-would-flip-on-trump-new-book-claims_partner/)', 'created': '2024-11-09 22:48:33', 'submission_id': '1gndryj'}
{'comment': 'Expand the Supreme Court', 'created': '2024-11-09 23:22:05', 'submission_id': '1gndryj'}
{'comment': "Plenty of things but dems want to keep the moral high ground and probably will do nothing. Even tho trump did so much fuckery like the Afghan withdraw. Blocked the border bill while he wasn't even president or even running.", 'created': '2024-11-09 23:30:27', 'submission_id': '1gndryj'}
{'comment': 'Fire Merrick Garland for his inaction on dealing with Trump for his election interference and inciting a violent insurrection.', 'created': '2024-11-09 19:50:02', 'submission_id': '1gndryj'}
{'comment': 'The orange turd has no shame and does not care one bit for rules, norms. He will not hesitate to make changes we expected and did not expect and never dreamt of anybody making them in a million years. He will undo so many things so easily and I look forward to everyone so incredulous at what he did and share clever comebacks from twitter and the like and nothing happens. \nThis election broke me as you can tell and I’m expecting the worst and I know I’m not even prepared for what’s to come. It’s going to be so bad, really bad.', 'created': '2024-11-09 19:57:23', 'submission_id': '1gndryj'}
{'comment': 'Send seal team six to take out your political rivals. Apparently it’s a constitutionally protected privilege for Presidents to do that kind of thing now.', 'created': '2024-11-10 03:06:38', 'submission_id': '1gndryj'}
{'comment': 'He better start yesterday doing it', 'created': '2024-11-09 19:25:20', 'submission_id': '1gndryj'}
{'comment': 'Release Epstein files, make sure Diddy is sent to jail in solitary confinement, appoint as many federal judges as possible', 'created': '2024-11-09 19:26:14', 'submission_id': '1gndryj'}
{'comment': 'Blanket PARDON for illegal immigrants.', 'created': '2024-11-10 00:51:07', 'submission_id': '1gndryj'}
{'comment': 'Resign and let Harris take over just to screw with Trump', 'created': '2024-11-10 01:50:19', 'submission_id': '1gndryj'}
{'comment': 'Cancel all SpaceX contracts immediately', 'created': '2024-11-10 05:08:56', 'submission_id': '1gndryj'}
{'comment': 'Some how he miraculously gets 3 SCOTUS appointments during his last two months', 'created': '2024-11-09 19:05:39', 'submission_id': '1gndryj'}
{'comment': 'National ban on spray tan.\n\nNational ban on the use of makeup by cis men.', 'created': '2024-11-09 18:13:16', 'submission_id': '1gndryj'}
{'comment': '1. Appoint new SCOTUS Judges.\n2. Demand a recount and make sure EVERYONE’S vote has been counted. It was also suspected that Russia was involved in letting Trump win in 2016.\n3. Sign an amendment where no felon can run the country.\n4. Hold Trump accountable.', 'created': '2024-11-09 21:33:48', 'submission_id': '1gndryj'}
{'comment': 'Re-cancel ALL student debt effective immediately.', 'created': '2024-11-09 22:04:04', 'submission_id': '1gndryj'}
{'comment': ' If I could choose? \n\nExpand the Supreme Court, appoint liberal justices, and end presidential immunity after the conservatives are no longer the majority. I doubt that’s feasible in two months.', 'created': '2024-11-09 22:47:42', 'submission_id': '1gndryj'}
{'comment': 'Declare **Mar-a-Lago**o a toxic waste site and force an evacuation.', 'created': '2024-11-10 05:08:08', 'submission_id': '1gndryj'}
{'comment': 'Add 5 of the most liberal young men and women ever to SCOTUS. Start with AOC.', 'created': '2024-11-10 10:14:12', 'submission_id': '1gndryj'}
{'comment': 'Attend the inauguration wearing a t-shirt that says, “You get what you deserve.”', 'created': '2024-11-09 18:12:45', 'submission_id': '1gndryj'}
{'comment': 'Let’s be honest, we are in an abusive relationship. The people we elected to represent us are too scared of the opposition to fight back.', 'created': '2024-11-09 18:50:03', 'submission_id': '1gndryj'}
{'comment': 'Any executive action he takes can be undone by Trump.', 'created': '2024-11-09 18:13:18', 'submission_id': '1gndryj'}
{'comment': "He has absolute immunity to do *anything*, but he won't.", 'created': '2024-11-09 22:32:30', 'submission_id': '1gndryj'}
{'comment': 'Check into Elons Tax’s.', 'created': '2024-11-09 20:31:14', 'submission_id': '1gndryj'}
{'comment': 'Preemptively pardon Obama, Hillary and any democrat Trump would send the FBI after for made up charges then resign and make Kamala President and have her Preemptively pardon Biden', 'created': '2024-11-10 05:30:38', 'submission_id': '1gndryj'}
{'comment': 'He should absolutely tank the economy in some very specific ways. Like canceling Tesla’s government contracts so all of the Tesla exposed hedge funds, ETFs and pensions for near retirees are wiped out completely, then move on to other very specific Trumpy industries and absolutely fuck them up. Then the Trump Administration has to spend all of its time trying to fix that instead of implementing fascism.', 'created': '2024-11-10 02:48:06', 'submission_id': '1gndryj'}
{'comment': 'Nothing he can do really because executive orders can be overturned with the stroke of a pen', 'created': '2024-11-09 19:50:06', 'submission_id': '1gndryj'}
{'comment': 'The problem with executive orders is that it takes one signature to repeal them. Joe can put things in place by EO, and 47 can undue them with one. \n\nPlease correct me if I’m wrong.', 'created': '2024-11-09 20:48:40', 'submission_id': '1gndryj'}
{'comment': 'King Biden declares the election fraudulent, dismisses the repugs from congress and rules for four more years.', 'created': '2024-11-09 21:37:50', 'submission_id': '1gndryj'}
{'comment': 'I would for certain do an EO making abortion legal, accessible for every citizen of the US in every state, and include a guarantee for every doctor that there would be no legal or personal ramifications for being involved with said abortion medical services', 'created': '2024-11-09 22:10:00', 'submission_id': '1gndryj'}
{'comment': 'Can’t he just make the damned judicial system jail a convicted felon whose job makes him a flight risk? Or are you saying that as president Trump will never leave the States.', 'created': '2024-11-09 22:33:22', 'submission_id': '1gndryj'}
{'comment': 'make it super difficult to re-enact Schedule F.', 'created': '2024-11-09 23:10:09', 'submission_id': '1gndryj'}
{'comment': 'Lock Trump Up! Get Fake electors in 7 states. Have Harris not sign off on election 🗳️. Said writers to the capital and have them store it to stop the count . Lol 😝', 'created': '2024-11-09 18:26:06', 'submission_id': '1gndryj'}
{'comment': 'Dictator on day 1755', 'created': '2024-11-09 19:08:02', 'submission_id': '1gndryj'}
{'comment': 'Release all information around Trump, including the Epstein files. \n\nAnything else that’s relevant to make them go what .', 'created': '2024-11-09 19:48:09', 'submission_id': '1gndryj'}
{'comment': 'Deploy special forces to take them out? I mean it’s official business so it’s not illegal', 'created': '2024-11-09 21:35:45', 'submission_id': '1gndryj'}
{'comment': 'I sincerely hope that he and his staff have concrete actions to take that will put serious roadblocks in the way.', 'created': '2024-11-09 23:14:36', 'submission_id': '1gndryj'}
{'comment': 'Investigate the local vote counts In key swing States.', 'created': '2024-11-10 00:54:27', 'submission_id': '1gndryj'}
{'comment': 'Something that might work and would make Biden the best President of all time: INVITE the International Crimial Court to prosecute Trump for aiding and abetting Russia. Trump has no slack-jawed stooges in Europe.', 'created': '2024-11-10 13:43:29', 'submission_id': '1gndryj'}
{'comment': 'Are you asking if Biden should act like a dictator to fight the dictator?', 'created': '2024-11-09 17:56:51', 'submission_id': '1gndryj'}
{'comment': '**Expand the Supreme Court.** Fuck the 9 Justices precedent, since clearly precedent means fuck-all now. Expand it to 12, at least, and appoint all-Dem Justices to crowd out the traitors. Sure, it will open the future floodgates for the opposition to do exactly the same thing, but fuck it, we need a stop-gap solution NOW.\n\nAlso, abolish the Congressional filibuster rule.', 'created': '2024-11-09 21:29:20', 'submission_id': '1gndryj'}
{'comment': 'Max transfer of military force to Ukraine', 'created': '2024-11-09 22:41:51', 'submission_id': '1gndryj'}
{'comment': 'Expand scotus', 'created': '2024-11-10 00:40:05', 'submission_id': '1gndryj'}
{'comment': 'Executive order LGBTQ rights and Marriage into the Constitution via amendment.', 'created': '2024-11-09 21:22:11', 'submission_id': '1gndryj'}
{'comment': 'I think he changes the SCOTUS. Add 2 seats, while the Dems have the Senate. Add term limits. Rotate them with other Fed court justices. Create an ethics commission. Have the fbi investigate Alito and Thomas. I mean, Trump can pardon them later, but bring it.', 'created': '2024-11-09 23:59:52', 'submission_id': '1gndryj'}
{'comment': 'PLEASE PUT UP SOME GUARDRAILS TO PROTECT US, MR PRESIDENT!', 'created': '2024-11-10 00:06:26', 'submission_id': '1gndryj'}
{'comment': 'Executive order to add 4 to the Supreme Court. Three of those four can be Barack and Michelle, and Hillary. Bill too if he wants it.', 'created': '2024-11-10 00:30:39', 'submission_id': '1gndryj'}
{'comment': 'Most importantly how do people put pressure onto the administration to do something? Worst thing would be for them to do absolutely nothing while putting out the messaging of “we believe in America, keep hope, keep fighting” while just hoping for the best in the face of the absolute worst outcome coming to reality.', 'created': '2024-11-09 19:08:53', 'submission_id': '1gndryj'}
{'comment': 'Round up all those who took classified documents, threatened judges and prosecutors, called to tear down the Constitution, conducted an insurrection and detain them while investigations and charges and crimes and findings are done. Then put them away or exile them.', 'created': '2024-11-09 19:38:21', 'submission_id': '1gndryj'}
{'comment': 'Everything he can', 'created': '2024-11-09 20:24:02', 'submission_id': '1gndryj'}
{'comment': 'Go into the bunker, lock the door and refuse to come out until every vote is counted. There should be plenty of food down there.', 'created': '2024-11-09 20:30:08', 'submission_id': '1gndryj'}
{'comment': 'Stop everything and investigate this.\n\nhttps://www.threads.net/@billt801/post/DCIIRcrRhmD?xmt=AQGzIxRBbEg4QYW90CYhTAw_xb--A_SVmT-ZWr-_-Wsa3g', 'created': '2024-11-09 20:38:02', 'submission_id': '1gndryj'}
{'comment': 'Seal team 6 training', 'created': '2024-11-09 21:18:45', 'submission_id': '1gndryj'}
{'comment': 'Sonia Sotomayor should’ve retired and been replaced with someone as young as possible. Not sure if there’s enough time to still do it, but they absolutely need to.', 'created': '2024-11-09 21:30:22', 'submission_id': '1gndryj'}
{'comment': 'All of them.', 'created': '2024-11-09 21:30:57', 'submission_id': '1gndryj'}
{'comment': 'Cancel student debt', 'created': '2024-11-09 21:47:34', 'submission_id': '1gndryj'}
{'comment': None, 'created': '2024-11-09 22:03:37', 'submission_id': '1gndryj'}
{'comment': 'Isn’t he immune from any kind of prosecution? Like couldn’t he legally order the assassination of anyone?', 'created': '2024-11-09 22:08:16', 'submission_id': '1gndryj'}
{'comment': 'All of them.', 'created': '2024-11-09 23:23:39', 'submission_id': '1gndryj'}
{'comment': ' None. It won’t matter.', 'created': '2024-11-10 05:24:53', 'submission_id': '1gndryj'}
{'comment': 'Expand the court and pack it', 'created': '2024-11-10 15:33:22', 'submission_id': '1gndryj'}
{'comment': 'The insurrection act should have been implemented day 1. He should do it now.', 'created': '2024-11-10 16:53:38', 'submission_id': '1gndryj'}
{'comment': 'President Biden has served with honor.\n\nFor almost four years he has used the power entrusted in him to improve people’s lives.\n\n“Joey from Scranton” is too old to change now.\n\nPresident Biden and Vice President Harris will leave office with as much dignity as they had when they entered it.\n\nChildish minds (like MAGA fascist #1) plot sabotage which will hurt We the People far more than the intended victim. Unconstrained by any level of decency, their ability to act isn’t limited by morality.\n\nThis isn’t about “when they go low, we go high,” this is about remaining true to who we are.\n\nDoes that put us at a competitive disadvantage against the unscrupulous? Tough shit.', 'created': '2024-11-09 21:05:37', 'submission_id': '1gndryj'}
{'comment': 'One could be to order the immediate detention of anyone not already detained or convicted for participating in Jan 6. Including anyone who spoke to the crowd immediately prior.', 'created': '2024-11-09 21:49:00', 'submission_id': '1gndryj'}
{'comment': 'Tell us that the aliens are real. Let’s throw gas on this dumpster fire of reality.', 'created': '2024-11-09 23:23:14', 'submission_id': '1gndryj'}
{'comment': 'Give Ukraine nuclear weapons', 'created': '2024-11-09 23:34:11', 'submission_id': '1gndryj'}
{'comment': "Let's be real, Biden probably isn't gonna do fucking anything. I hope he does but I don't think he will. But I think he should arm the shit out of Ukraine for sure. Authorizes use of the longer range stuff we've given them so they can strike deep inside Russia. Then give them a fuck load more aid because God knows, they'll need it come Jan 20th", 'created': '2024-11-10 01:11:33', 'submission_id': '1gndryj'}
{'comment': 'Pack the supreme court', 'created': '2024-11-10 03:39:30', 'submission_id': '1gndryj'}
{'comment': 'Probably not being in the position to need to do this in the first place by winning must win elections.', 'created': '2024-11-09 20:51:58', 'submission_id': '1gndryj'}
{'comment': 'So in addition to the election results, I’m in ID clearing out my recently deceased relative’s house. Mood is dark at best. I’m out of ideas.', 'created': '2024-11-09 23:54:22', 'submission_id': '1gndryj'}
{'comment': 'Expand SCOTUS now.', 'created': '2024-11-10 00:14:12', 'submission_id': '1gndryj'}
{'comment': 'I’m not a republican. I don’t believe in intentionally undermining a future administration. If that’s who America elected then that’s what it gets.', 'created': '2024-11-09 18:56:58', 'submission_id': '1gndryj'}
{'comment': 'Undermining is what Republicans do to Dems, not the other way around, unless you’ve decided to sink to their level.', 'created': '2024-11-09 19:47:25', 'submission_id': '1gndryj'}
{'comment': 'Finish what he started with wiping out student loans. Higher education never should have been turned into a business. If you paid all of your loans and are pissed younger people are getting theirs forgiven, I genuinely think you should also be reimbursed for paying your own loans. You never should have had to pay them in the first place.', 'created': '2024-11-09 19:48:48', 'submission_id': '1gndryj'}
{'comment': 'As much as I would love to sit here and think of all the things Biden could or should do before he leaves office, I don’t think he’s going to do jack shit. I have zero hope in the DNC anymore.', 'created': '2024-11-09 20:19:51', 'submission_id': '1gndryj'}
{'comment': 'Form The Ancient Mystic Society of No Donalds', 'created': '2024-11-09 21:05:01', 'submission_id': '1gndryj'}
{'comment': 'Officially rename ACA care to Obama care. Visa versa would work as well. \nThe we can sit back as the leopards arrive. \n\nHeads will explode.', 'created': '2024-11-09 21:27:39', 'submission_id': '1gndryj'}
{'comment': 'Kamala says, hold up!\nOn Jan 6th', 'created': '2024-11-09 21:32:06', 'submission_id': '1gndryj'}
{'comment': 'How about Judges and also passing Ally New York State Senate minority leader Chuck Schumer no Kings Act', 'created': '2024-11-09 21:32:08', 'submission_id': '1gndryj'}
{'comment': 'Personally call Justice Sotomayor and ask her to resign so he can appoint a younger justice.', 'created': '2024-11-09 21:35:29', 'submission_id': '1gndryj'}
{'comment': 'Federal law protecting Transgender people.', 'created': '2024-11-09 21:42:07', 'submission_id': '1gndryj'}
{'comment': 'Recount the votes especially counties that are too close… \n\nSo many missing ballots being reported', 'created': '2024-11-09 21:47:44', 'submission_id': '1gndryj'}
{'comment': 'Make Election Day a national holiday', 'created': '2024-11-09 22:09:15', 'submission_id': '1gndryj'}
{'comment': 'It doesn’t matter because Trump will be able to reverse Biden’s executive actions.', 'created': '2024-11-09 22:19:57', 'submission_id': '1gndryj'}
{'comment': 'Student loans.', 'created': '2024-11-09 22:54:55', 'submission_id': '1gndryj'}
{'comment': 'Executive actions can be ended by the next administration', 'created': '2024-11-09 22:58:17', 'submission_id': '1gndryj'}
{'comment': 'Serious answer:\n\nPardon in perpetuity Barack Obama and Michelle, Sasha and Malia Obama\n\nThe Obama’s need to move to a country that won’t extradite him', 'created': '2024-11-10 02:01:33', 'submission_id': '1gndryj'}
{'comment': "Change the locks on the white house and run around singing I'm the king of the castle and you're the dirty rascal.", 'created': '2024-11-10 03:30:08', 'submission_id': '1gndryj'}
{'comment': 'Revert pension fix that was in IRA bill. See if any R wants to put it back.', 'created': '2024-11-10 04:11:28', 'submission_id': '1gndryj'}
{'comment': 'Can he write one that declares all trump administration employees must paint their faces orange. That would be cool.', 'created': '2024-11-10 06:05:21', 'submission_id': '1gndryj'}
{'comment': 'Can he write one that would declare that all trump administration employees must paint their faces orange. That would be cool.', 'created': '2024-11-10 06:08:38', 'submission_id': '1gndryj'}
{'comment': 'Release ALL the Epstein Files and resign so Kamala can be the first woman President, if only for a couple months.', 'created': '2024-11-10 07:28:20', 'submission_id': '1gndryj'}
{'comment': 'This is likely far more dark than the OP intended in regard to answers, but it is something I immediately thought last Tuesday evening --\n\nOne way or another, the United States is likely going to face Iran in a confrontation; however big or small. If that\'s going to happen, it\'s much better for it to happen without Iran having nuclear weapons. The President should use his remaining time to order strikes on Iranian nuclear sights using [GBU-57A/B MOP](https://en.wikipedia.org/wiki/GBU-57A/B_MOP)s dropped by B2s.\n\nThat will give the incoming Administration "clean hands" to negotiate what comes after.\n\nNow some reading might consider this plan a "fuck you" like when the Trump Administration released the Taliban Prisoners leading up to President Biden\'s inauguration; by contrast, destroying Iran\'s nuclear infrastructure would actually serve a strategic interest in regard to the United States (likely far beyond the Trump Administration point of fact).', 'created': '2024-11-10 08:57:38', 'submission_id': '1gndryj'}
{'comment': "Since SCOTUS said the President is immune if performing official acts why not have El Crappy Tan, Vance, Bannon, Miller, etc put on a plane to Russia? I'm not suggesting that the plane land there in what most would call a normal landing. Have some balls Joe. Let's show those that voted for The Manchurian Cantaloupe the true unfettered power of the Presidency NOW! Also reveal every dark secret from 2016-2020. Every recording. Every video. Every secret document (the ones he didn't steal). Release the Epstein files. A cruise missile to a certain South Florida site isn't a bad idea either. Dolt 45 kept saying they were trying to kill him. Make it true. There should be one thing that was true.", 'created': '2024-11-10 10:12:16', 'submission_id': '1gndryj'}
{'comment': "As much as I like Biden, I don't think he has the backbone to do anything to mess with the next administration.", 'created': '2024-11-10 14:17:00', 'submission_id': '1gndryj'}
{'comment': 'Why bother even coming up with answers? It’s not like he will do a single one of them. The only thing he has done in four years is prove how far he’s willing to go to not truly fight anything.', 'created': '2024-11-10 18:35:12', 'submission_id': '1gndryj'}
{'comment': 'RESIGN NOW AND LET KAMALA HARRIS BEFOME THE 1ST FEMALE PRESIDENT', 'created': '2024-11-10 21:10:09', 'submission_id': '1gndryj'}
{'comment': 'Arm Ukraine with nuclear weapons, since Trump seems intent on violating the [Budapest Memorandum](https://en.wikipedia.org/wiki/Budapest\\_Memorandum).', 'created': '2024-11-11 03:03:41', 'submission_id': '1gndryj'}
{'comment': 'Blanket pardon everybody that voted for Harris.', 'created': '2024-11-12 20:32:45', 'submission_id': '1gndryj'}
{'comment': 'Tigers in the Oval Office. Some trained, some not.', 'created': '2024-11-13 12:57:26', 'submission_id': '1gndryj'}
{'comment': 'He won’t do anything. The Dems are a fucking disaster', 'created': '2024-11-09 18:26:30', 'submission_id': '1gndryj'}
{'comment': 'You mean executive actions that Trump can, without anyone being abot to stop him, cancel?\n\nAre you high?', 'created': '2024-11-10 00:32:10', 'submission_id': '1gndryj'}
{'comment': "If he doesn't do anything, then this is a feckless president.", 'created': '2024-11-09 20:12:45', 'submission_id': '1gndryj'}
{'comment': 'needs to investigate election results. they stole it. trump has been announcing this for weeks.', 'created': '2024-11-09 21:00:56', 'submission_id': '1gndryj'}
{'comment': 'How about he uses his power to protect the country and constitution to put Trump in prison where he belongs???', 'created': '2024-11-09 21:37:09', 'submission_id': '1gndryj'}
{'comment': 'Student loan debt. 100%. Veto. Do it now.', 'created': '2024-11-10 00:14:46', 'submission_id': '1gndryj'}
{'comment': 'Fuck that. Pro America is orderly transition. Fuck these fucks trying to get Americans to hate their system to accomplish their political goals of disintegrating the union.\n\nHard left is rising mother fucker.', 'created': '2024-11-10 03:16:04', 'submission_id': '1gndryj'}
{'comment': 'Executive order to eliminate the department that sends out student loan bills and have the debt record all destroyed.', 'created': '2024-11-10 04:32:46', 'submission_id': '1gndryj'}
{'comment': 'Look up NO KINGS ACT', 'created': '2024-11-10 04:35:40', 'submission_id': '1gndryj'}
{'comment': 'Legalize marijuana.. the southern states need to chill out to vote democrat… I’m looking at Tennessee in particular. 90% want to have medical marijuana, their state constitution goes by the federal constitution.\n\nHad we legalized Marijuana, Kamala Harris would have won. We didn’t do anything for the restaurant and factory workers instead of forcing them to pay for a college graduates loans, when they couldn’t afford to go… \n\nWe need to even up the playing field. Democrats will never win if trump passes federal marijuana legalization. Vance will get that credit, and win 2028', 'created': '2024-11-10 06:39:54', 'submission_id': '1gndryj'}
{'comment': None, 'created': '2024-11-09 20:26:33', 'submission_id': '1gndryj'}
{'comment': 'I say just Open the borders completely. Let everyone in legally. Ratfuck the whole situation.', 'created': '2024-11-09 23:15:46', 'submission_id': '1gndryj'}
{'comment': 'He could have a degree that supreme court justices can not accept gifts from anyone while on the court that are over a certain small amount in value. \n\nCould he do this?', 'created': '2024-11-10 00:26:06', 'submission_id': '1gndryj'}
{'comment': "Biden won't do anything. He hasn't got the guts. Some other Democrat might've, but Biden is too much of a wimp for revenge/petty politics.", 'created': '2024-11-09 18:29:25', 'submission_id': '1gndryj'}
{'comment': "It doesn't matter. Biden is too much of a pussy to rock the boat.", 'created': '2024-11-09 21:15:40', 'submission_id': '1gndryj'}
{'comment': 'You know executive orders expire when the executive leaves office? Is that not common knowledge?', 'created': '2024-11-09 18:18:41', 'submission_id': '1gndryj'}
{'comment': 'None. Ride it out. Be the bigger person.', 'created': '2024-11-09 23:04:57', 'submission_id': '1gndryj'}
{'comment': 'Nothing. Biden will do nothing. Any action taking that is aggressive forwards Trump will be like hitting a bees nest.', 'created': '2024-11-09 21:16:45', 'submission_id': '1gndryj'}
{'comment': 'He’s not gonna do shit', 'created': '2024-11-10 09:10:54', 'submission_id': '1gndryj'}
{'comment': 'Nothing.', 'created': '2024-11-09 19:51:33', 'submission_id': '1gndryj'}
{'comment': 'Nothing. \n\n1. Any EO could be undone within minutes of the next administration taking over. \n\n2. Not a good look. Aren’t the democrats supposed to be better than this?', 'created': '2024-11-09 21:48:23', 'submission_id': '1gndryj'}
{'comment': 'Ban guns. Reminder that the Scouts gave Biden this power.', 'created': '2024-11-10 00:06:18', 'submission_id': '1gndryj'}
{'comment': "Don't do anything. He's done enough to cost us this election.", 'created': '2024-11-09 20:43:00', 'submission_id': '1gndryj'}
{'comment': 'RELEASE THE HOUNDS', 'created': '2024-11-09 19:34:17', 'submission_id': '1gndryj'}
{'comment': 'What if I told you that everyone, especially those who voted for him, knows at a fundamental level that he took part in all of the Epstein shenanigans and what if I said that it doesn’t matter to a single one of them? Everyone’s Big Mac and fries are too expensive and they think he can make them cheaper. The real pain a lot of us actually feel is not over Harris losing, but the realization that there is nothing left of this country’s soul.', 'created': '2024-11-09 22:40:58', 'submission_id': '1gndryj'}
{'comment': "That won't matter his sycophants will love him even more. They already know he's a rapist. They won't care that he raped teenage girls.", 'created': '2024-11-09 19:58:39', 'submission_id': '1gndryj'}
{'comment': 'This. Epstein said trump was his best friend for ten years.', 'created': '2024-11-09 20:36:19', 'submission_id': '1gndryj'}
{'comment': 'I can already hear it: “this isn’t the list, this is radical left wing propaganda disguised as news, it’s a disinformation campaign against Trump and it’s lawfare”', 'created': '2024-11-10 02:59:07', 'submission_id': '1gndryj'}
{'comment': '"FAKE NEWS " they won\'t believe it. But I\'ll take it', 'created': '2024-11-09 20:52:04', 'submission_id': '1gndryj'}
{'comment': "Katie Johnson withdrew a suit against him and added two more witnesses, one of which was a girl that won a case against Epstein. She re-filed with these added witnesses and added evidence. She recieved so many death threats from maga supporters her and her mother withdrew the case again right before he was to take office in 2016 and moved to Australia, fearing for their lives. It won't matter, they don't care. They still say Katie johnson was a liar.", 'created': '2024-11-09 23:20:01', 'submission_id': '1gndryj'}
{'comment': 'yes please. idc if Bill Clinton will be indicted because of it, I partially blame him for the loss kamala had to suffer.', 'created': '2024-11-10 04:12:02', 'submission_id': '1gndryj'}
{'comment': 'They haven’t been already?', 'created': '2024-11-10 13:40:26', 'submission_id': '1gndryj'}
{'comment': 'The absolute top priority right here', 'created': '2024-11-09 19:04:45', 'submission_id': '1gndryj'}
{'comment': 'Ram them through! The McConnell way. Legacy would be this.', 'created': '2024-11-09 19:30:39', 'submission_id': '1gndryj'}
{'comment': 'THIS IS WHAT I WANT', 'created': '2024-11-09 18:50:53', 'submission_id': '1gndryj'}
{'comment': 'This should have already been done in preparation, to be honest.', 'created': '2024-11-09 19:28:02', 'submission_id': '1gndryj'}
{'comment': "They won't, they don't have the balls to do it for some reason.", 'created': '2024-11-09 23:38:44', 'submission_id': '1gndryj'}
{'comment': 'How about SCOTUS?', 'created': '2024-11-09 22:31:26', 'submission_id': '1gndryj'}
{'comment': 'This is what I came here to say.', 'created': '2024-11-10 01:12:49', 'submission_id': '1gndryj'}
{'comment': 'That will never happen, they can’t get past the filibuster.', 'created': '2024-11-10 03:28:32', 'submission_id': '1gndryj'}
{'comment': "can the expand the SCOTUS? Do that. 4 more Justices. don't matter who. They already have a list, anyway, so just pick the top four and drop them right in.", 'created': '2024-11-10 05:28:17', 'submission_id': '1gndryj'}
{'comment': 'He isn’t going to do it. DNC profits from fascism too.', 'created': '2024-11-09 20:11:10', 'submission_id': '1gndryj'}
{'comment': 'What is this about ? Haven’t heard of this', 'created': '2024-11-09 18:26:53', 'submission_id': '1gndryj'}
{'comment': 'I got a text about that, but do petitions do anything?', 'created': '2024-11-09 18:30:25', 'submission_id': '1gndryj'}
{'comment': 'But the GOP wont vote for it. They have already kissed the ring', 'created': '2024-11-09 19:04:45', 'submission_id': '1gndryj'}
{'comment': 'Congress won’t pass it for him to be able to sign it.', 'created': '2024-11-09 19:29:22', 'submission_id': '1gndryj'}
{'comment': 'That should have been passed years ago. Now the issue is politicized and will likely never pass, at least not until the filibuster is gone in the Senate (likely will happen in the next two years) and Democrats control Congress and the Presidency.', 'created': '2024-11-09 20:32:40', 'submission_id': '1gndryj'}
{'comment': "It would have to pass the House. It won't.", 'created': '2024-11-09 21:17:47', 'submission_id': '1gndryj'}
{'comment': 'House has to pass it. Hate to tell you this but republicans control the house right now', 'created': '2024-11-09 21:49:28', 'submission_id': '1gndryj'}
{'comment': "Needs to pass the house first before he can sign it. Johnson won't allow that to happen.", 'created': '2024-11-09 23:19:06', 'submission_id': '1gndryj'}
{'comment': 'Trump is a clear and present danger, so...', 'created': '2024-11-10 16:33:28', 'submission_id': '1gndryj'}
{'comment': 'Amen', 'created': '2024-11-09 19:40:37', 'submission_id': '1gndryj'}
{'comment': 'I’m all for this', 'created': '2024-11-09 22:27:27', 'submission_id': '1gndryj'}
{'comment': "Biden should buy the website trump2028 and cyber squat on that to stop donnie's plans for a 3rd term.", 'created': '2024-11-09 18:37:09', 'submission_id': '1gndryj'}
{'comment': 'square chop complete wipe jobless aware elderly merciful liquid deliver\n\n *This post was mass deleted and anonymized with [Redact](https://redact.dev/home)*', 'created': '2024-11-10 09:03:05', 'submission_id': '1gndryj'}
{'comment': 'Can’t he take all the classified documents with him and store in his wife’s bathroom.? Remember he’s just a feeble minded forgetful old man so he can’t remember where he put them and apparently it’s okay now anyway.', 'created': '2024-11-09 19:17:41', 'submission_id': '1gndryj'}
{'comment': 'Buy out the nearest fast food restaurants', 'created': '2024-11-09 20:32:55', 'submission_id': '1gndryj'}
{'comment': 'And Thiele. And Murdoch.', 'created': '2024-11-09 19:44:00', 'submission_id': '1gndryj'}
{'comment': '', 'created': '2024-11-09 21:53:15', 'submission_id': '1gndryj'}
{'comment': 'I think that is not something the president can do, not that the next one will not try.', 'created': '2024-11-09 22:58:57', 'submission_id': '1gndryj'}
{'comment': 'That weird shaped prick should also be deported if things he support cause mass deportation on any scale. That won’t happen if course because he’s the richest man alive but god damn', 'created': '2024-11-10 01:03:41', 'submission_id': '1gndryj'}
{'comment': 'And deport him, and nationalize SpaceX and starlink', 'created': '2024-11-10 00:38:33', 'submission_id': '1gndryj'}
{'comment': 'Rescheduling the drug would have been helpful prior to Harris losing the election, I don’t see Trump reversing that either way since we essentially default to state law for the majority of enforcement. An aside, in skilled nursing facilities, marijuana isn’t permitted because CMS is the relevant regulator.', 'created': '2024-11-09 18:24:58', 'submission_id': '1gndryj'}
{'comment': 'Except he doesn’t have the power to wave a magic wand and do that. He has already done everything in his power to do that without an act of Congress. Unfortunately the DEA is dragging their feet in their rescheduling like everyone who has been waiting for this knew was going to happen. They purposely postponed their public hearing until after the election even if they are claiming it was a paperwork issue.', 'created': '2024-11-09 19:37:46', 'submission_id': '1gndryj'}
{'comment': 'Both cannabis and prostitution', 'created': '2024-11-09 18:25:57', 'submission_id': '1gndryj'}
{'comment': "i was going to upvote this but it's sitting at 420 so i'm not touching it", 'created': '2024-11-10 21:22:41', 'submission_id': '1gndryj'}
{'comment': 'Fucking grow up', 'created': '2024-11-09 19:39:03', 'submission_id': '1gndryj'}
{'comment': 'I do love this idea. Sounds like something the Republicans would do.', 'created': '2024-11-09 19:30:25', 'submission_id': '1gndryj'}
{'comment': 'this is actually the funniest one', 'created': '2024-11-09 20:40:39', 'submission_id': '1gndryj'}
{'comment': 'Also wallpaper the Oval Office with pictures of Obama.', 'created': '2024-11-09 21:40:12', 'submission_id': '1gndryj'}
{'comment': "But do it on January 17, so they don't have time to come up with new shit", 'created': '2024-11-09 22:59:37', 'submission_id': '1gndryj'}
{'comment': 'lolol', 'created': '2024-11-09 21:49:35', 'submission_id': '1gndryj'}
{'comment': 'I love this', 'created': '2024-11-09 22:44:05', 'submission_id': '1gndryj'}
{'comment': "They don't believe in facts so they wouldn't care", 'created': '2024-11-10 16:46:56', 'submission_id': '1gndryj'}
{'comment': 'He is sending his last gift to Ukraine.', 'created': '2024-11-09 19:39:23', 'submission_id': '1gndryj'}
{'comment': "He doesn't even need to do that. he can just authorize Ukraine to use the weapons we already gave them against targets inside Russia. Let the HIMARS fly as freely as birds.", 'created': '2024-11-10 05:35:23', 'submission_id': '1gndryj'}
{'comment': 'I would take it further. Send actual boots on the ground into Ukraine.', 'created': '2024-11-09 21:34:31', 'submission_id': '1gndryj'}
{'comment': 'Hand Ukraine the entire American military.', 'created': '2024-11-10 01:23:26', 'submission_id': '1gndryj'}
{'comment': 'Can he do this?', 'created': '2024-11-09 18:29:34', 'submission_id': '1gndryj'}
{'comment': 'for real, the post office has just gotten worse and worse in terms of service and for the workers', 'created': '2024-11-10 21:23:48', 'submission_id': '1gndryj'}
{'comment': 'This, last time he was elected he mishandled top secret documents containing our spy information. As a results, hundreds of agents were killed in the line of duty. Thanks to trump..', 'created': '2024-11-09 23:36:48', 'submission_id': '1gndryj'}
{'comment': 'That would just make it easier for Trump to unleash chaos on us. There would be no playbook for his minions to follow so they would just make it up as they go.', 'created': '2024-11-09 18:52:51', 'submission_id': '1gndryj'}
{'comment': 'Ooooo! Exile. Nice touch!', 'created': '2024-11-09 22:17:23', 'submission_id': '1gndryj'}
{'comment': 'That should have happened day 1 of Biden’s presidency.', 'created': '2024-11-10 14:06:36', 'submission_id': '1gndryj'}
{'comment': 'Great ideas. \n\nNeed a non maga congress and senate to do anything like this.', 'created': '2024-11-09 19:28:15', 'submission_id': '1gndryj'}
{'comment': 'The no criminals in office idea just leads to people arresting their political rivals to disqualify them.', 'created': '2024-11-09 20:19:01', 'submission_id': '1gndryj'}
{'comment': "> Implement a policy where no criminal can hold office.\n\nThis is plainly and obviously unconstitutional. The constitution says what the qualifications are to hold office. You can't change that with an executive order or a law. It would require an amendment to the constitution.\n\nBiden just doesn't have the power to do this. It's not helpful to suggest things that simply can't happen.", 'created': '2024-11-09 22:37:28', 'submission_id': '1gndryj'}
{'comment': "I'll be 39 next month and would prefer to lose about 20 lbs", 'created': '2024-11-09 22:25:34', 'submission_id': '1gndryj'}
{'comment': 'We’d screw that one up worse.', 'created': '2024-11-09 18:07:29', 'submission_id': '1gndryj'}
{'comment': '🥺🥺🥺🥺\n\n', 'created': '2024-11-09 17:49:24', 'submission_id': '1gndryj'}
{'comment': "Agreed I don't understand it I mean do they think that if they keep playing fair that he's going to do the same I get it I don't want to undermine our party or start acting like they do but at some point we are going to have to step up and protect ourselves", 'created': '2024-11-09 18:22:36', 'submission_id': '1gndryj'}
{'comment': 'This is honestly what bothers me the most.\n\nImagine democrats during the revolutionary war: “hey. Can we please not pay these taxes?😊 please no one riot or do anything negative! We have to be the bigger people to the oppressors!”', 'created': '2024-11-09 21:29:36', 'submission_id': '1gndryj'}
{'comment': "Of course he won't. And what he needs to do can't be said here due to TOS.", 'created': '2024-11-10 01:26:22', 'submission_id': '1gndryj'}
{'comment': 'seriously, it\'s time to "when-they-go-low" we kick \'em in the nuts already\n\nedit was quotes around " \'when-they-go-low\' "', 'created': '2024-11-10 01:59:59', 'submission_id': '1gndryj'}
{'comment': 'Most likely answer, sadly', 'created': '2024-11-09 21:55:33', 'submission_id': '1gndryj'}
{'comment': 'Jazz hands should be eliminated. $950 Limit of shoplifting to be prosecuted.', 'created': '2024-11-09 18:35:12', 'submission_id': '1gndryj'}
{'comment': "yea popular support for the democrats died 4 days ago. we'll probably see a tea-party like rift in the party for the midterms, followed by some concessions by the old guard, then we'll maybe see some progress.", 'created': '2024-11-09 20:42:06', 'submission_id': '1gndryj'}
{'comment': 'Nothing but give Ukraine a nice hefty care package while telling us to go fuck ourselves like those optics weren’t half the reason 60% of the voters went to the other guy.', 'created': '2024-11-10 03:27:04', 'submission_id': '1gndryj'}
{'comment': 'Not prison, CIA black site', 'created': '2024-11-09 19:08:18', 'submission_id': '1gndryj'}
{'comment': 'THIS. They are a threat to our national security. He is well within his rights to protect us by neutralizing them.', 'created': '2024-11-09 19:13:02', 'submission_id': '1gndryj'}
{'comment': "Arrest all the secret service agents who's texts disappears", 'created': '2024-11-09 20:34:50', 'submission_id': '1gndryj'}
{'comment': 'I don’t know the legality (I doubt Executive has power to do that), but it would A) put Vance in power who would no doubt full pardon Donald immediately B) anything that drastic will be used as a “false flag” (not really i know) for the GOP to be more aggressively lawless. \n \nI mean it’s probably already past the breaking point, but it would only make it worse. \nI can’t imagine how to fix it though. The Fix needed to be done 2 years ago to convict him for Jan 6th. \n \nThey also should have passed a rule that no twice impeached president can hold office. \n \nBut again, it’s too late. \n \nWe did not convict for Donald’s [Capitol Hill Putsch](https://en.wikipedia.org/wiki/Beer_Hall_Putsch), and now we will see history repeat itself, only this time the supreme leader also has the richest man in history alongside him, and the most advanced and far reaching media/propaganda system in history.', 'created': '2024-11-09 22:14:06', 'submission_id': '1gndryj'}
{'comment': 'Great idea — but you must have been *sentenced* for a crime before you can be pardoned for it.\n\n(See Bannons’ forthcoming NY fraud trial for the “*Build The Wall*” scam: where they siphoned the money into shell companies to buy luxury yachts, etc).', 'created': '2024-11-10 00:30:59', 'submission_id': '1gndryj'}
{'comment': 'It’s too late coz next administration can undo easily.', 'created': '2024-11-09 19:33:55', 'submission_id': '1gndryj'}
{'comment': "They're already talking about deporting citizens.", 'created': '2024-11-10 01:28:02', 'submission_id': '1gndryj'}
{'comment': "A lifesize replica of Arnold Palmer's cock", 'created': '2024-11-09 19:13:12', 'submission_id': '1gndryj'}
{'comment': 'IF they even have any.', 'created': '2024-11-10 00:24:03', 'submission_id': '1gndryj'}
{'comment': 'Absolutely should do this even if it opens the Supreme Court up to decertify Constitutional Amendments if states no longer want them ratified.', 'created': '2024-11-10 00:13:01', 'submission_id': '1gndryj'}
{'comment': 'YES. This needs to happen!', 'created': '2024-11-09 23:58:44', 'submission_id': '1gndryj'}
{'comment': 'Laws cannot be repealed by the President but any President’s Executive Orders can be repealed by a future President.', 'created': '2024-11-09 18:19:51', 'submission_id': '1gndryj'}
{'comment': "There's a difference between executive actions and executive orders. An executive order is one type of executive action. And yes, any executive orders Biden enacts could be undone by Trump. Unless undoing it would be so unpopular that Trump would refuse to do so... but I doubt there's much that would fall into that camp given Trump's lack of shame.\n\nOn the other hand, nominating judges is an executive action that can't easily be undone. There are no Supreme Court openings, but there's still plenty of federal judge openings to fill, and he's doing that. Judges can be nominated and confirmed by the president and Senate, but to remove a judge requires impeaching and convicting them - something Trump demonstrated is quite difficult to do even when there is good cause to do so.\n\nI don't know the details of which falls under this, but there are other federal positions like this too. The more of those Biden fills now, the harder it will be for Trump to put in his own loyalists later.\n\nI suspect there are other actions Biden can take that have staying power, but I'm not sure what those are. That's what OP is hoping to learn, though some people are making some wild claims on what he can do that don't hold up (like packing the court isn't going to happen now, for instance - he'd have had to do that when he had majorities in the House *and* Senate, and didn't have the votes to do it then anyway since if he tried Manchin and Sinema at a mimimum would have refused).", 'created': '2024-11-09 19:49:55', 'submission_id': '1gndryj'}
{'comment': '> Can’t Trump just rescind them?\n\nNot if they keep Trumpo out of office.', 'created': '2024-11-10 01:27:04', 'submission_id': '1gndryj'}
{'comment': 'Yes!! 🇺🇦', 'created': '2024-11-09 21:25:21', 'submission_id': '1gndryj'}
{'comment': "That's how I feel. They just gave up and showed their belly.", 'created': '2024-11-09 23:46:49', 'submission_id': '1gndryj'}
{'comment': 'Delete all the records like in Fight Club', 'created': '2024-11-10 00:09:36', 'submission_id': '1gndryj'}
{'comment': 'What would that do lol\n\nScotus is sitting in this', 'created': '2024-11-09 20:37:44', 'submission_id': '1gndryj'}
{'comment': 'Can he do that? If he can sounds like a good idea!', 'created': '2024-11-09 18:12:50', 'submission_id': '1gndryj'}
{'comment': "I'm not sure that helps?\xa0 Conservatives have been trying to encourage liberals to concentrate into California and New England for years because then conservatives control almost all states.", 'created': '2024-11-09 18:32:37', 'submission_id': '1gndryj'}
{'comment': 'Civil War 2.0 film idea?', 'created': '2024-11-09 18:34:15', 'submission_id': '1gndryj'}
{'comment': 'That’s honestly the dumbest idea, if we do that, as long as the electoral college exists we wouldn’t have another democrat president.', 'created': '2024-11-09 20:47:14', 'submission_id': '1gndryj'}
{'comment': 'A big reason why I don’t think he really killed himself.', 'created': '2024-11-10 00:00:16', 'submission_id': '1gndryj'}
{'comment': "> dems want to keep the moral high ground\n\nNo, they want to keep the ***decorum*** high ground.\n\nHolding the moral high ground would involve stopping fascism. And they're refusing to do that.", 'created': '2024-11-10 01:29:42', 'submission_id': '1gndryj'}
{'comment': 'Exactly. They did nothing to punish him after January 6, 2021 and they have done absolutely nothing to prevent him from running for president again despite knowing how dangerous he was.', 'created': '2024-11-09 23:58:38', 'submission_id': '1gndryj'}
{'comment': 'That wasn’t Garlands’ *only* responsibility whilst heading up the DoJ, you know. There were thousands of other terrible crimes to investigate as AG — which he did exceedingly well.', 'created': '2024-11-10 00:26:49', 'submission_id': '1gndryj'}
{'comment': "Like I said to someone on Reddit before the election, if it's a dictatorship, we all get affected by it. Even you magats.", 'created': '2024-11-10 11:23:58', 'submission_id': '1gndryj'}
{'comment': 'Seriously, ruin all #47 merchandise likely already in production.', 'created': '2024-11-10 02:48:39', 'submission_id': '1gndryj'}
{'comment': 'He has that presidential immunity burning a hole in his back packet.', 'created': '2024-11-10 01:27:40', 'submission_id': '1gndryj'}
{'comment': 'JD Vance would have a stroke.\n\n\nOn his couch.', 'created': '2024-11-09 19:12:17', 'submission_id': '1gndryj'}
{'comment': 'Have all your attendees wear clown suits and masks *during* the inauguration ceremony itself.\n\nWho’s going to know who they are? Would look shocking yet funny to the whole world, tuning-in on TV and watching international news reports and chat shows later.\n\nLoads of mad-looking clowns sat there looking frighteningly manic.', 'created': '2024-11-10 00:45:58', 'submission_id': '1gndryj'}
{'comment': 'Lots of Democratic state governors are fighting back', 'created': '2024-11-09 19:46:43', 'submission_id': '1gndryj'}
{'comment': 'Sure. But if Biden signs the "No Kings act" and Trump undoes it... that\'s headlines and makes his agenda more plain.', 'created': '2024-11-09 18:22:49', 'submission_id': '1gndryj'}
{'comment': "Any *executive order* can be undone by Trump. Not all *executive actions* can be undone by Trump. For instance, all the federal judges Biden is nominating and getting confirmed by the Senate can't just be removed by Trump. They get to serve their terms as long as they want, barring impeachment. And there's no way in hell a 52/48 or 54/46 Senate will be convicting judges after impeachment, even if the House tried and succeeded at impeaching the judges with their own razor thin majority.", 'created': '2024-11-09 19:53:45', 'submission_id': '1gndryj'}
{'comment': 'When someone has the ability to do anything they want without consequence, you have to assume that they are doing everything they want to do.', 'created': '2024-11-10 01:32:07', 'submission_id': '1gndryj'}
{'comment': "If he sent people to harass them, this country would burn down. Especially Obama. The FBI isn't going to harass people over made up charges and he has nothing. Even if he replaced Chris Wray, those agents aren't going to break the law for Trump.\n\nSupposedly, they lead to replace people in top positions with loyalists, but those loyalists never have any experience.\n\nHe'll harass ordinary Americans like the two election workers, or like he did Colonel Vindman, or like he sic'd the IRS on those people like Comey and they had to undergo these ridiculous audits. We'll just have to see.\n\nIf he goes after we'll known people though, and mass protests start, he's done.", 'created': '2024-11-10 16:15:25', 'submission_id': '1gndryj'}
{'comment': 'Yep. You\'re absolutely right. Executive orders are the least effective things for stuff like this.\n\nReally the only thing left at play I think is Biden issuing some sort of decree in the style of an "Emancipation Proclamation" is the only card left they have at play. But I\'m not even sure what type of proclamation he could make (maybe a "Citizenship Proclamation"? Granting immigrants that have here during the last 4-5 years full citizenship there by can\'t be legally deported by law enforcement etc), but that would probably lead to a Civil War. So it\'s a nonstarter for most folks.', 'created': '2024-11-09 21:37:10', 'submission_id': '1gndryj'}
{'comment': 'Unless he stops Trumpler from taking office.', 'created': '2024-11-10 01:33:47', 'submission_id': '1gndryj'}
{'comment': 'Dear Santa...', 'created': '2024-11-09 22:18:24', 'submission_id': '1gndryj'}
{'comment': "That's for dictators of OTHER countries", 'created': '2024-11-09 22:18:54', 'submission_id': '1gndryj'}
{'comment': 'Taking the high road has failed spectacularly.', 'created': '2024-11-09 19:23:20', 'submission_id': '1gndryj'}
{'comment': 'An American Cincinnatus. Or a Roman George Washington if you prefer.', 'created': '2024-11-09 18:32:29', 'submission_id': '1gndryj'}
{'comment': 'Actually, kind of. Fight fire with fire. Use Trump’s immunity ruling against him', 'created': '2024-11-09 20:50:26', 'submission_id': '1gndryj'}
{'comment': 'All presidents do this to varying degrees at the end of their time in office.', 'created': '2024-11-09 21:35:49', 'submission_id': '1gndryj'}
{'comment': 'Actually, the filibuster will aid Dems during the next Congress — to talk-out Trump and Project 2025’s crazier Bills.', 'created': '2024-11-10 00:51:48', 'submission_id': '1gndryj'}
{'comment': "Wouldn't help after Jan unless he also does something about Trumpler.", 'created': '2024-11-10 01:31:38', 'submission_id': '1gndryj'}
{'comment': 'And Kamala', 'created': '2024-11-10 00:40:34', 'submission_id': '1gndryj'}
{'comment': 'Protest in person - economic protest would only work if all on the left did a general strike', 'created': '2024-11-09 19:45:27', 'submission_id': '1gndryj'}
{'comment': 'https://www.scrippsnews.com/politics/supreme-court/could-democrats-pressure-justice-sotomayor-to-step-down-for-replacement#:~:text=Politico%20reported%20on%20Friday%20that,appointments%2C%20are%20discussing%20the%20possibility.', 'created': '2024-11-10 00:17:21', 'submission_id': '1gndryj'}
{'comment': "Pretty sure they're trying to get it done as she's had health problems as of late", 'created': '2024-11-10 00:17:46', 'submission_id': '1gndryj'}
{'comment': 'Why? Like seriously, that would accomplish absolutely nothing', 'created': '2024-11-09 22:53:57', 'submission_id': '1gndryj'}
{'comment': 'The country voted not to have Harris as President. As much as I think she’d have done a much better job than Agolf Twitler, putting her in now looks like a consolation prize that the majority is unlikely to accept. It would also seriously rile up hardline republicans like Moscow Mitch. \n\nA better bet would be to quietly let Kamala make suggestions for things she’d want to have done. Biden should present them as his ideas and push for them but keep Kamala’s name out of it since she’s officially tarnished after the election.', 'created': '2024-11-10 00:33:38', 'submission_id': '1gndryj'}
{'comment': '>Does that put us at a competitive disadvantage against the unscrupulous? Tough shit.\n\nGood thing Lincoln didn\'t listen to people like you during the Civil War or this would have been the Confederacy all these years. Lincoln had no legal precedent (or even any reason it would work) in issuing the Emancipation Proclamation. It was a giant gamble that expanded the office of the president\'s powers and completely side stepped Congress (otherwise, you know usually doing something like that requires Congressional legislation lol). \n\nBut sure your "tough shit" take is better lol', 'created': '2024-11-09 21:30:47', 'submission_id': '1gndryj'}
{'comment': "Since the citizens' cases are mostly done I'd recommend making any & all politicians involved pass a full citizenship test.", 'created': '2024-11-09 22:24:56', 'submission_id': '1gndryj'}
{'comment': 'Normally I agree with you, but Trump has already weakened the guardrails of our democracy. We need to do our best to fortify them before he returns.', 'created': '2024-11-09 21:23:38', 'submission_id': '1gndryj'}
{'comment': 'So we follow the rules and tiptoe through the tulips as jackboot thugs march to the tune of holocaust. History will show that we were polite.', 'created': '2024-11-09 21:08:22', 'submission_id': '1gndryj'}
{'comment': 'It’s part of the game now so we can either sit on the sidelines or make life harder for them.', 'created': '2024-11-09 20:37:14', 'submission_id': '1gndryj'}
{'comment': 'I’ve been worried about their safety.', 'created': '2024-11-10 08:00:35', 'submission_id': '1gndryj'}
{'comment': "Why now, you mean? Because the election's over.", 'created': '2024-11-09 21:11:08', 'submission_id': '1gndryj'}
{'comment': 'Presidential executive orders, once issued, remain in force until they are cancelled, revoked, adjudicated unlawful, or expire on their own terms. At any time, the president may revoke, modify, or make exceptions from any executive order, regardless if the order was made by the current president or a predecessor.', 'created': '2024-11-09 19:04:22', 'submission_id': '1gndryj'}
{'comment': 'You mean, Release the Kraken!!', 'created': '2024-11-10 04:45:47', 'submission_id': '1gndryj'}
{'comment': 'Your last sentence perfectly articulated how I feel. It truly saddens me.', 'created': '2024-11-10 06:29:41', 'submission_id': '1gndryj'}
{'comment': 'You’re right and that’s what bothers me. Half of our country doesn’t care one bit about the copious laws he’s broken, both criminally and morally. Sure, they’ll lie and say it’s the economy that influenced their vote but the real reason is his promise to rid the country of immigrants, both Legal and Undocumented. He’s given them someone to hate, and more importantly, BLAME for all that’s wrong in their pathetic lives. \nWe’re going to have an entire generation of Misogynists. Boys who’ve grown up believing women shouldn’t be allowed to decide what’s best for their own bodies, believing it’s ok to call women “Bitches” and most of all, it’s their inalienable right to grab women “by the pussy” because hey, the President does it and he got re-elected so it must be ok. \nHow in the fuck a woman, especially a mother, could vote **FOR** a vile pig like him, I will never ever understand.', 'created': '2024-11-10 23:02:35', 'submission_id': '1gndryj'}
{'comment': 'I think that it may give some pause to some.\n\nJust giving up on influence is silly.', 'created': '2024-11-09 20:46:42', 'submission_id': '1gndryj'}
{'comment': "It's one of the reasons they love him: his wealth made it possible for him to do things they can't without repercussions.", 'created': '2024-11-09 22:01:07', 'submission_id': '1gndryj'}
{'comment': 'They will be wearing t-shirts that say “Real men rape children.” within a week.', 'created': '2024-11-09 23:01:41', 'submission_id': '1gndryj'}
{'comment': "I'm pretty sure a percentage of them support Trump because they believe it'll make raping people okay.", 'created': '2024-11-09 23:40:13', 'submission_id': '1gndryj'}
{'comment': 'They prefer to call them “young ladies” instead of teenage girls to make it sound less disgusting', 'created': '2024-11-10 00:55:46', 'submission_id': '1gndryj'}
{'comment': 'His followers are a lost cause \n\nBut America’s allies?', 'created': '2024-11-10 01:59:27', 'submission_id': '1gndryj'}
{'comment': 'Some of them won’t care if he raped their own kids.', 'created': '2024-11-10 11:57:30', 'submission_id': '1gndryj'}
{'comment': 'Many of them want to rape teenage girls.', 'created': '2024-11-09 22:51:37', 'submission_id': '1gndryj'}
{'comment': 'They might care if they were boys?', 'created': '2024-11-10 05:42:08', 'submission_id': '1gndryj'}
{'comment': "Sycophants, yes. But most people who voted for him don't know him like politics-watchers do.", 'created': '2024-11-10 11:00:57', 'submission_id': '1gndryj'}
{'comment': "Conservatives don't care. \n\nNot one little bit. \n\nThe only thing Trump has ever said that wasn't a lie is that he could shoot a man on 5th ave. and not lose one vote. \n\nBecause they dont give a fuck.", 'created': '2024-11-10 05:11:33', 'submission_id': '1gndryj'}
{'comment': 'I was mad at Bill Clinton for being with Epstein so much. Epstein even had a beautifully painted photo of Bill Clinton in a blue dress on his island. \n\nBill Clinton was my very first vote. I knocked on hundreds of doors for bill Clinton.. When everything was breaking I was like… WTF 😳. I really liked him.', 'created': '2024-11-10 06:48:29', 'submission_id': '1gndryj'}
{'comment': 'We could have video, 200 eye witnesses and he could stand up and verbally admit he raped a 12 year old while hanging with Epstein and they would still call it FAKE NEWS.', 'created': '2024-11-10 03:54:43', 'submission_id': '1gndryj'}
{'comment': "It has been. And since the GOP took the House that's really the only thing Biden has accomplished.", 'created': '2024-11-09 19:30:48', 'submission_id': '1gndryj'}
{'comment': 'House will block it as will Manchin.', 'created': '2024-11-09 22:56:26', 'submission_id': '1gndryj'}
{'comment': 'Please explain this terrifying thought', 'created': '2024-11-09 21:16:01', 'submission_id': '1gndryj'}
{'comment': 'Schumer introduced it, it ends presidential immunity.', 'created': '2024-11-09 18:30:00', 'submission_id': '1gndryj'}
{'comment': '\nSchumer introduces ‘No Kings Act’ in response to Supreme Court’s presidential immunity ruling', 'created': '2024-11-09 18:33:25', 'submission_id': '1gndryj'}
{'comment': 'No Kings Act: [https://www.congress.gov/bill/118th-congress/senate-bill/4973/text](https://www.congress.gov/bill/118th-congress/senate-bill/4973/text) \n\nAP article (which reads like it was mostly based on a press release): [https://apnews.com/article/supreme-court-schumer-immunity-senate-king-149763b93d62599eac7d0a7c77ff4d4a](https://apnews.com/article/supreme-court-schumer-immunity-senate-king-149763b93d62599eac7d0a7c77ff4d4a)', 'created': '2024-11-09 19:42:24', 'submission_id': '1gndryj'}
{'comment': 'Find the petition and sign it.', 'created': '2024-11-09 20:17:40', 'submission_id': '1gndryj'}
{'comment': 'After you fill out the petition they are asking for a small donation. It’s from a Super PAC. They always ask for donations. I gave a small amount.', 'created': '2024-11-09 18:36:47', 'submission_id': '1gndryj'}
{'comment': 'I, too, got a text.', 'created': '2024-11-09 19:33:25', 'submission_id': '1gndryj'}
{'comment': 'No they don’t. It was just money grabbing. \n\nIt upsets me how the dem party just treats us like cash cows', 'created': '2024-11-09 19:30:02', 'submission_id': '1gndryj'}
{'comment': 'Good thing the supreme court said the president can do whatever they want now', 'created': '2024-11-10 00:15:05', 'submission_id': '1gndryj'}
{'comment': 'S.4973 - No Kings Act\n118th Congress (2023-2024) | Get alerts\n\nBILLHide Overview \nSponsor:\tSen. Schumer, Charles E. [D-NY] (Introduced 08/01/2024)\n\n\nBill was introduced August 1 of this year. In response to SCOTUS immunity ruling. \n\nLatest Action:\tSenate - 09/09/2024 Read the second time. Placed on Senate Legislative Calendar under General Orders. Calendar No. 494. (All Actions)\nTracker: Tip\tThis bill has the status IntroducedHere are the steps for Status of Legislation:IntroducedPassed SenatePassed HouseTo PresidentBecame Law', 'created': '2024-11-09 20:40:43', 'submission_id': '1gndryj'}
{'comment': 'Also set up a donation link with proceeds going to the DNC.', 'created': '2024-11-09 19:21:43', 'submission_id': '1gndryj'}
{'comment': "He should destroy every classified document he can. It's the only way to keep them from being sold to the highest bidder.", 'created': '2024-11-09 19:19:19', 'submission_id': '1gndryj'}
{'comment': 'I think he was referring to keeping them away from trump.', 'created': '2024-11-10 11:34:47', 'submission_id': '1gndryj'}
{'comment': "I don't think that states can just revoke poeple's citezenship when they only have one", 'created': '2024-11-10 04:18:09', 'submission_id': '1gndryj'}
{'comment': 'There is cause in this case.\nhttps://www.wired.com/story/elon-musk-citizenship-revoked-denaturalized/', 'created': '2024-11-09 23:47:38', 'submission_id': '1gndryj'}
{'comment': 'DEA is a part of the DoJ. All under the Executive Branch 👍', 'created': '2024-11-10 03:00:57', 'submission_id': '1gndryj'}
{'comment': 'Dang', 'created': '2024-11-09 21:41:33', 'submission_id': '1gndryj'}
{'comment': 'I agree. If Biden sign a ton of left wing executive orders, Trump will be forced to keep them. He doesn’t want to be accused of ruining the fun.', 'created': '2024-11-09 18:41:03', 'submission_id': '1gndryj'}
{'comment': 'lol. I didn’t notice that, until now. But seriously, Biden should make weed legal. If Trump gets rid of the EO, Republicans will lose control on Congress in 2026.', 'created': '2024-11-10 22:09:21', 'submission_id': '1gndryj'}
{'comment': 'Grown ups engage in cannabis use, exactly the same as they do with alcohol. Maybe you need to get with the times.', 'created': '2024-11-09 21:12:07', 'submission_id': '1gndryj'}
{'comment': 'I know plenty of law abiding citizens who smoke weed.', 'created': '2024-11-09 21:28:39', 'submission_id': '1gndryj'}
{'comment': 'Totally!', 'created': '2024-11-09 21:46:20', 'submission_id': '1gndryj'}
{'comment': 'Sell the White House to Obama for a dollar.', 'created': '2024-11-10 00:07:13', 'submission_id': '1gndryj'}
{'comment': 'encourage Ukraine to assassinate Putin', 'created': '2024-11-09 21:10:52', 'submission_id': '1gndryj'}
{'comment': "You volunteering? \n\nI have immediate family stationed in the Army in Germany, they'd be the first to go. \n\nIn starting a full-blown war (which it would), my ass would be dragged back into service, I've only been retired for a yr and a half. Nope...\n\nI'm good.", 'created': '2024-11-10 03:05:26', 'submission_id': '1gndryj'}
{'comment': '', 'created': '2024-11-09 21:49:29', 'submission_id': '1gndryj'}
{'comment': "In short yes, the Constitution does not limit the amount of Supreme Court Justices however FDR tried to do this and was unsuccessful. I'm not expecting him to stack it in our favor to just put it back to where it was at, not to mention the fact that had Nancy Pelosi Obama and others in the Democratic party put as much enthusiasm behind Biden after that debate we would have won this election I have no doubt\n[*IF* They're Willing 🤦\u200d♂️](https://abcnews.go.com/US/biden-support-expanding-supreme-court-white-house/story?id=85703773)", 'created': '2024-11-09 18:39:37', 'submission_id': '1gndryj'}
{'comment': 'No. We don’t have enough votes in the senate to do that', 'created': '2024-11-09 19:30:49', 'submission_id': '1gndryj'}
{'comment': "No, he can't. In order to nominate more Supreme Court judges, he would need Congress to pass a law increasing the size of the court. That won't happen, because Republicans control the House. Even if Democrats controlled the House, it still would be unlikely because it would lead to escalation of parties expanding the court to suit their needs every time they get a trifecta.\n\nFDR expanding the court was a credible threat because he had MASSIVE majorities in the House and Senate. Like they were 70% to 80% Democrat during some of his terms. The fact that he could credibly threaten this was a major reason the New Deal wasn't challenged too hard, because they didn't want to see court expansion happen.\n\nEdit: What Biden CAN do is nominate as many judges as possible to other federal courts - he is already doing this from what I've read. And he can also ensure as many other positions that can't be fired by the president as possible are filled. I believe he's doing this as well. And for any nominations that require confirmation, the Senate just needs to push them through.", 'created': '2024-11-09 19:38:53', 'submission_id': '1gndryj'}
{'comment': 'no. requires an act of congress', 'created': '2024-11-09 20:52:00', 'submission_id': '1gndryj'}
{'comment': '>mishandled \n\nPretty sure he knew exactly what he was doing', 'created': '2024-11-10 04:41:54', 'submission_id': '1gndryj'}
{'comment': "We don't need our classified material handed to Russia & China. I'm not talking about rulebooks, I'm talking about our secrets.", 'created': '2024-11-09 18:54:08', 'submission_id': '1gndryj'}
{'comment': "Thanks! Sadly, it's Trump who's gonna use the [Insurrection Act](https://www.brennancenter.org/our-work/analysis-opinion/trumps-insurrection-act-threat).", 'created': '2024-11-10 09:07:07', 'submission_id': '1gndryj'}
{'comment': 'Considering our very government as it stands will no longer exist in January, I think desperate times call for desperate measures. Additionally, Biden has immunity from an "official act." This is nothing we\'ve ever seen before. The time for playing nice is over.', 'created': '2024-11-09 20:03:55', 'submission_id': '1gndryj'}
{'comment': "Which is what the right claims everything about Trump is. Political interference not legit convictions. And facts don't matter to their opinion.", 'created': '2024-11-09 22:20:58', 'submission_id': '1gndryj'}
{'comment': 'This is about freedom now. Fighting fascism.\n\nhttps://preview.redd.it/dxeqlm02gxzd1.jpeg?width=1080&format=pjpg&auto=webp&s=a45fd6119237ab5c137d89b0a09e1715863dfdfd', 'created': '2024-11-09 20:26:10', 'submission_id': '1gndryj'}
{'comment': "They're going to do that anyway.", 'created': '2024-11-10 01:24:26', 'submission_id': '1gndryj'}
{'comment': "Can't punish his rival if he's in jail.", 'created': '2024-11-09 20:25:03', 'submission_id': '1gndryj'}
{'comment': 'Well, it was a good idea for the short time it lasted.', 'created': '2024-11-10 00:14:12', 'submission_id': '1gndryj'}
{'comment': 'I think expanding the threshold is allowable for Dark Biden.', 'created': '2024-11-09 22:51:19', 'submission_id': '1gndryj'}
{'comment': 'We truly are our own worst enemy', 'created': '2024-11-09 18:10:04', 'submission_id': '1gndryj'}
{'comment': 'The playing fair thing only works when you’ve already won. That’s not how the real world works.', 'created': '2024-11-09 19:23:18', 'submission_id': '1gndryj'}
{'comment': "I think they're afraid of alienating the part of their base that thinks they are morally superior to anything that has ever lived or ever will live. 😐\xa0", 'created': '2024-11-09 19:08:45', 'submission_id': '1gndryj'}
{'comment': 'Don’t worry. I’m picking up what you’re putting down.', 'created': '2024-11-10 01:28:44', 'submission_id': '1gndryj'}
{'comment': '', 'created': '2024-11-09 21:48:09', 'submission_id': '1gndryj'}
{'comment': 'Nope. Ford pardoned Nixon before he was even *charged* with anything.', 'created': '2024-11-10 06:12:31', 'submission_id': '1gndryj'}
{'comment': 'Don’t threaten ill Dumpty with a good time', 'created': '2024-11-09 21:56:56', 'submission_id': '1gndryj'}
{'comment': 'Also get all the Military Industrial Complex companies personal deals with Ukraine so that US companies are helping them rather than letting Trump be the middle man.\n\nThen Trump could do nothing to dislodge aid to Ukraine. Because, Big Oil, Big Tabacco, and the Gun Lobby may have deep pockets in Washington but they have nothing on the Military Industrial Complex. That shit is the definition of "OLD MONEY". Nobody can dislodge them, not for a million years.', 'created': '2024-11-10 00:09:06', 'submission_id': '1gndryj'}
{'comment': 'Are they considering lame duck laws? I assume these are just executive orders', 'created': '2024-11-09 18:38:47', 'submission_id': '1gndryj'}
{'comment': 'Slava Ukraini! 🇺🇦', 'created': '2024-11-10 01:08:34', 'submission_id': '1gndryj'}
{'comment': 'Just like they’ve always done.', 'created': '2024-11-10 00:01:07', 'submission_id': '1gndryj'}
{'comment': 'Trump wants to do away with student loan forgiveness. \n\nAt minimum it will take a financial burden off people about to be effed in the ass by trumps economy', 'created': '2024-11-09 20:42:57', 'submission_id': '1gndryj'}
{'comment': 'Yep. The Federal Government can give weapons to State National Guard. And Biden can work with Governors to figure out what laws states need to pass to really piss off MAGA. If Blue States can get rid of MAGA, that’s a Start. Blue States are typically richer than Red states and can trade among themselves. MAGA wants us to just sit quietly and wait for Trump to fuk with us…Trump thinks he’s coming into Los Angeles and San Francisco to “clean them up”? Bullshit. I say we start Fuking with them right now. I live in California and they are wearing Nazi shirts here already. It’s now or never.', 'created': '2024-11-09 18:19:21', 'submission_id': '1gndryj'}
{'comment': 'Fine. Liberal billionaires could fund/subsidize a new city at the Montana, ND, SD border. 300k people could be enough to flip 3 states blue. Then give DC statehood. Bye bye GOP.', 'created': '2024-11-09 20:04:43', 'submission_id': '1gndryj'}
{'comment': 'They still don’t control us. Not yet. But, you’re right…if we just sit back and let them, they will.', 'created': '2024-11-09 18:47:06', 'submission_id': '1gndryj'}
{'comment': 'We’re not going to have one anyway..don’t you see? He’s an AUTHORITARIAN….do you understand that? No more elections…he has people behind him this time with a plan…he’s going to tear our democracy down….that’s why I’m trying to think of what can be done. If you can’t see the urgency then there is nothing I can say. Everyone on the news talks about the guardrails of the constitution like that’s going to stop him. It’s not. Biden is our last chance to keep the American Experiment alive and he’s going to do nothing. Trump isn’t even participating in the transition process…it’s going to be very bad. Americans, including his base will be shocked by what is getting ready to happen. Look up how authoritarians take over democracies…the election is practically a blue print of how they do it.', 'created': '2024-11-09 22:04:51', 'submission_id': '1gndryj'}
{'comment': None, 'created': '2024-11-09 23:28:10', 'submission_id': '1gndryj'}
{'comment': "I seen that Governor Newsom and Walz did. Have there been more to step up? This is what we need to see right now. I'm really glad. \n\nThey scared the hell out of us and now...where are they? I want to see people willing and ready to take up for the ones that it was so important for us to vote for. Basically, any hope, help, or support, from the Democrats right now, would be really helpful to many of us. Hopefully, there are more Governors and other Democrats that will speak up.", 'created': '2024-11-09 21:04:03', 'submission_id': '1gndryj'}
{'comment': 'This is great for those of you fortunate enough to have a democratic Governor. I truly hope they are able to preserve your freedoms. I mainly meant Joe. I love Joe, but he played too nice.', 'created': '2024-11-09 22:48:22', 'submission_id': '1gndryj'}
{'comment': 'Fighting back how? I haven’t heard about this!', 'created': '2024-11-09 23:29:31', 'submission_id': '1gndryj'}
{'comment': 'Doesn’t the No Kings act need to be approved in the house and senate?', 'created': '2024-11-09 19:16:40', 'submission_id': '1gndryj'}
{'comment': "> all the federal judges Biden is nominating and getting confirmed by the Senate can't just be removed by Trump.\n\nTrump won't be scared to use that presidential immunity.", 'created': '2024-11-10 01:32:41', 'submission_id': '1gndryj'}
{'comment': 'I mean at this point why not?', 'created': '2024-11-09 22:32:41', 'submission_id': '1gndryj'}
{'comment': None, 'created': '2024-11-09 21:12:43', 'submission_id': '1gndryj'}
{'comment': 'Exactly. The new president will cancel all previous executive orders.', 'created': '2024-11-09 19:14:00', 'submission_id': '1gndryj'}
{'comment': 'No, it will provoke one of two reactions: half of them will say it’s fake and the other half will say they were asking for it.', 'created': '2024-11-09 22:52:01', 'submission_id': '1gndryj'}
{'comment': 'Bill Clinton in a blue dress?', 'created': '2024-11-10 16:11:23', 'submission_id': '1gndryj'}
{'comment': 'Then why do I keep seeing news stories about the dumpster fire itching to fill those seats? If they are not all full by the time Biden has to hand it all over, then we lose again.', 'created': '2024-11-09 19:34:04', 'submission_id': '1gndryj'}
{'comment': "Hey now, the House isn't *technically* lost yet. They are still counting 23 seats. Enough for us to take the majority.", 'created': '2024-11-10 00:12:37', 'submission_id': '1gndryj'}
{'comment': 'Gotcha', 'created': '2024-11-09 18:30:24', 'submission_id': '1gndryj'}
{'comment': 'Performative nonsense that could have been introduced 1 day after The Supreme Court decision on Trump immunity and meant something', 'created': '2024-11-09 20:09:24', 'submission_id': '1gndryj'}
{'comment': 'No, it ends presidential immunity for illegal acts. No act can be illegal\xa0', 'created': '2024-11-09 19:35:18', 'submission_id': '1gndryj'}
{'comment': 'what is this? how will signing the act do anything? I thought bills had to be passed by both houses to become law.', 'created': '2024-11-10 05:30:14', 'submission_id': '1gndryj'}
{'comment': "What's to stop the all powerful Trump now just undoing it?", 'created': '2024-11-09 20:25:32', 'submission_id': '1gndryj'}
{'comment': 'Thanks for info', 'created': '2024-11-09 18:34:09', 'submission_id': '1gndryj'}
{'comment': 'the house will never pass it, the republicans in the senate will filibuster it', 'created': '2024-11-09 20:50:25', 'submission_id': '1gndryj'}
{'comment': 'I will', 'created': '2024-11-09 20:50:55', 'submission_id': '1gndryj'}
{'comment': "I'm tired of giving and scared for the future...it just feels like insanity right now", 'created': '2024-11-09 20:00:22', 'submission_id': '1gndryj'}
{'comment': 'There are other sites for the petition that don’t ask for one. I’m not going to google them again but anyone can.', 'created': '2024-11-09 20:18:56', 'submission_id': '1gndryj'}
{'comment': 'As opposed to the GOP?', 'created': '2024-11-09 19:43:47', 'submission_id': '1gndryj'}
{'comment': 'Which org actually sent you a text?', 'created': '2024-11-09 19:50:53', 'submission_id': '1gndryj'}
{'comment': 'Yes!! Totally, atrocious! They are our elected representatives we don’t have to pay them for passing acts on our behalf!! We already pay them. They have our emails and signatures already.', 'created': '2024-11-10 10:55:48', 'submission_id': '1gndryj'}
{'comment': 'But I think Biden is too much of a wus to do anything with it.', 'created': '2024-11-10 04:45:07', 'submission_id': '1gndryj'}
{'comment': '"For any issues call Barry Trump"', 'created': '2024-11-09 22:53:47', 'submission_id': '1gndryj'}
{'comment': 'that he cannot do. The documents belong the the government, not to the chief executive.', 'created': '2024-11-10 05:29:30', 'submission_id': '1gndryj'}
{'comment': "As I understand it, the President does not have the power to denaturalized naturalized citizens. It is legal proceeding in federal court.\n\nI wouldn't bet anything that it would necessarily stay that way though.", 'created': '2024-11-10 03:15:26', 'submission_id': '1gndryj'}
{'comment': 'I don’t think that means the president can order the DEA to reschedule something. Maybe I’m wrong? (I hope I’m wrong in this case)', 'created': '2024-11-10 04:16:19', 'submission_id': '1gndryj'}
{'comment': 'dude they ran on banning porn, hating fun is like half their platform', 'created': '2024-11-09 22:53:16', 'submission_id': '1gndryj'}
{'comment': "Any president can write an EO to overwrite any past president's EOs... they've all done it. In fact trump did it with a bunch of Obamas EOs when he took the seat last time.", 'created': '2024-11-10 03:02:31', 'submission_id': '1gndryj'}
{'comment': "Born and raised in the Netherlands. That's the kinda stuff we try as teenagers and then move on. Being law abiding doesn't mean you are adulting.", 'created': '2024-11-09 22:45:47', 'submission_id': '1gndryj'}
{'comment': 'Paint the White House blue.', 'created': '2024-11-10 13:59:12', 'submission_id': '1gndryj'}
{'comment': "I'm not sure they need much encouragement", 'created': '2024-11-09 22:59:54', 'submission_id': '1gndryj'}
{'comment': 'But don’t they need to confirm those new judges? Would they be able to get them through?', 'created': '2024-11-09 18:41:45', 'submission_id': '1gndryj'}
{'comment': 'The Judicial Act of 1869 establishes a limit on Justices at 9. The law would have to be repealed and replaced to expand the court. FDR had both houses of Congress when he threatened to expand the courts, the proposed bill was the Judicial Procedures Reform Bill of 1937. Republicans control the House so Biden cannot expand the court.', 'created': '2024-11-09 20:29:04', 'submission_id': '1gndryj'}
{'comment': '> In short yes,\n\nIn short: no.\n\nit requires an act of congress', 'created': '2024-11-09 20:51:53', 'submission_id': '1gndryj'}
{'comment': "If he were to do that, there would be every reason to stack it in our favor. But he won't, because he's an institutionalist", 'created': '2024-11-09 23:00:54', 'submission_id': '1gndryj'}
{'comment': "Stacking the court needs a bill passing both chambers of congress. That is only viable with a blue legislature, which we don't have.", 'created': '2024-11-09 23:21:40', 'submission_id': '1gndryj'}
{'comment': 'The question wasn\'t "is there a legal mechanism he could theoretically use". It was "can he do it", and the answer is no.', 'created': '2024-11-09 19:18:00', 'submission_id': '1gndryj'}
{'comment': 'Currently, sure we do. Only takes a simple majority. The Senate majority is still with the Democrats right now.', 'created': '2024-11-09 21:58:29', 'submission_id': '1gndryj'}
{'comment': 'Given that he kept doing it with our Russian assets, yeah, I’m inclined to agree he knew what was up', 'created': '2024-11-10 06:34:26', 'submission_id': '1gndryj'}
{'comment': '> Delete every fuckin file in every agency. \n\nI was referring to this sentence in your comment.', 'created': '2024-11-09 18:55:24', 'submission_id': '1gndryj'}
{'comment': "At this point I'd like to think the majority of us would like to see some boldness and aggression from the Democrats while we still hold power of the executive branch. Shit is about to get very dark so might as well fight fire with fire.", 'created': '2024-11-09 21:32:38', 'submission_id': '1gndryj'}
{'comment': 'I think your correct about that. I remember Gerald Ford doing that and thinking to myself it was a terrible idea, at the time.\n\nLittle did we know it would come back to haunt us nearly fifty years later.\n\nI wonder if the rules regarding Pardons have been changed since then — as Bannon was officially charged then Pardoned *before* his trial; but New York prosecutors have found an exception that allows him to be prosecuted in State Court for his state-level crimes (specifically ripping-off New York State residents).\n\nHis trial begins next month (December 2024), I believe.', 'created': '2024-11-10 18:59:36', 'submission_id': '1gndryj'}
{'comment': '*Il Douché*.', 'created': '2024-11-10 00:20:00', 'submission_id': '1gndryj'}
{'comment': "No it wouldn't. It would just go to the supreme court again", 'created': '2024-11-10 02:07:49', 'submission_id': '1gndryj'}
{'comment': 'Omg! Nazi shirts? That’s not free speech. I can’t believe those texts to black students. Well I can, I guess we went back.', 'created': '2024-11-09 18:22:01', 'submission_id': '1gndryj'}
{'comment': "Not a bad idea, but liberals don't want to live in a state with no abortion, poor healthcare, poor education.\xa0 300k isn't enough to consistently turn a state's own government blue and you can't control who lives in a state.", 'created': '2024-11-09 20:20:48', 'submission_id': '1gndryj'}
{'comment': '…Now THAT really is **weird**.', 'created': '2024-11-10 00:33:51', 'submission_id': '1gndryj'}
{'comment': 'Washington state current & incoming governor are in the fight and working with other democratic state governors. \n\nPritker of Illinois came out publicly and said it’s not gonna happen there , I believe Oregon did also.', 'created': '2024-11-09 21:30:20', 'submission_id': '1gndryj'}
{'comment': 'Isn’t it better to have some standup than none if we ever wanna chance of not being turned into Nazi Germany?', 'created': '2024-11-09 23:51:37', 'submission_id': '1gndryj'}
{'comment': 'https://preview.redd.it/fkukzoz6hyzd1.jpeg?width=828&format=pjpg&auto=webp&s=6cb4ef4903e06c9f610526747acf336c78854eb3\n\nThis is new I’m not sure of much on it but Newsom, Oregon’s governor, Washington’s outgoing & incoming governor, Pritzker , many of the democratic governors have said they are going to fight.', 'created': '2024-11-09 23:55:48', 'submission_id': '1gndryj'}
{'comment': 'https://preview.redd.it/ko9lkxwihyzd1.jpeg?width=828&format=pjpg&auto=webp&s=6237eefceca3f1b781f594fa903832cdf3cdc338', 'created': '2024-11-09 23:56:13', 'submission_id': '1gndryj'}
{'comment': 'I don\'t know if this is a real piece of legislation being considered. It would be completely redundant to the laws we have (2-term limit, etc). So I am just basing this hypothetical example on an idea in this thread.\n\nThat said, executive orders do not need approval of anyone. They are rather flimsy "rules" and not true laws. Trump used them a lot because his agenda was so destructive he couldn\'t get Congress to agree (especially once Dems got control of the house in 2022). A real law does need to be approved by congress (house and senate). An Executive action is not a real law (more a policy, easily undone by the next).', 'created': '2024-11-09 19:26:21', 'submission_id': '1gndryj'}
{'comment': "Biden is the consummate politician, and has been a great president. His quiet workmanship and patriotism doesn't translate into the narrative of pants-shitting Republican hate, but that's just an accident of his place within American history.", 'created': '2024-11-09 21:23:11', 'submission_id': '1gndryj'}
{'comment': 'They’ll think the parts about any of the democrats involved will be true though', 'created': '2024-11-09 23:28:48', 'submission_id': '1gndryj'}
{'comment': "People are able to be influenced especially by real facts which are communicated plainly and clearly, in language that is relatable.\n\nReal people change their minds.\n\nSure it's some pretty extreme commitment to a pretty evil and stupid man, but they simply have zero awareness of any info or facts to interrupt their world view.\n\nIf we don't try they will never be touched.", 'created': '2024-11-11 12:52:43', 'submission_id': '1gndryj'}
{'comment': 'Because the GOP Senate can still slow walk the process and a lot of conservative judges were hanging on and waiting to retire. So come the new year there will now be hundreds of more vacancies.', 'created': '2024-11-09 19:41:38', 'submission_id': '1gndryj'}
{'comment': "Blue slip process. Traditionally, judges have to be approved by the Senators from their home states for the Judiciary committee to consider them.\n\nIt means right wing states only get right wing loons. It's antiquated bullshit that Dems need to stop caring about right now. Get left wing judges into all those conservative courts.", 'created': '2024-11-09 21:17:17', 'submission_id': '1gndryj'}
{'comment': 'Write your rep and senators telling them to pass it.', 'created': '2024-11-09 21:43:26', 'submission_id': '1gndryj'}
{'comment': "You mean with a GoP controlled House and a split Senate? \n\nAn EO won't need congress", 'created': '2024-11-09 20:25:56', 'submission_id': '1gndryj'}
{'comment': 'I feel the same way. I’m disgusted with the DNC, tired of all the SuperPac texts wanting money. I only gave to local candidates and a few out of state candidates. \n\nI only gave a small amount this time as a possible Hail Mary.', 'created': '2024-11-09 20:07:26', 'submission_id': '1gndryj'}
{'comment': 'Sometimes it’s okay to expect better of your own party. That doesn’t make me a Republican', 'created': '2024-11-09 19:48:14', 'submission_id': '1gndryj'}
{'comment': 'So many. So damn many. It was insane how many texts I got this season. Give me like ten seconds and I can tell you the name of the one the original comment was talking about though', 'created': '2024-11-09 19:51:54', 'submission_id': '1gndryj'}
{'comment': 'Stop project 2025 is the name of the group. And it’s attached to act blue so it’s not a scam. Even though I still see it as a different kind of scam', 'created': '2024-11-09 19:53:02', 'submission_id': '1gndryj'}
{'comment': "Me to. Let's hope we are both wrong", 'created': '2024-11-10 04:52:40', 'submission_id': '1gndryj'}
{'comment': 'Is there even a difference anymore?', 'created': '2024-11-10 06:08:29', 'submission_id': '1gndryj'}
{'comment': 'Can’t believe Americans voted for a party that wants to restrict porn and abortions', 'created': '2024-11-09 22:59:56', 'submission_id': '1gndryj'}
{'comment': 'You don’t get it. If Biden pushes “good” things before he leaves, Trump will keep the EO or risk being a party pooper.', 'created': '2024-11-10 03:27:07', 'submission_id': '1gndryj'}
{'comment': "Wow you're so cool, I don't give a fuck", 'created': '2024-11-09 23:02:25', 'submission_id': '1gndryj'}
{'comment': 'I guess I should have said covertly help Ukraine assassinate Putin', 'created': '2024-11-10 04:47:04', 'submission_id': '1gndryj'}
{'comment': "I guess it depends on the votes and who you would have behind it, it seems Mitch was able to push this through in record time right before an election right after he had previously said that our current head of DOJ couldn't be put on the Supreme Court because it was too close to an ELECTION, yet he DOES A ABOUT FACE like all the Republicans when it comes down to them, they think they're allowed to act with different rules\n\n[Record Time! ](https://www.cbsnews.com/news/mcconnell-trump-supreme-court-nominee-senate-ruth-bader-ginsburg/)", 'created': '2024-11-09 19:17:55', 'submission_id': '1gndryj'}
{'comment': "Likewise with the recent ruling of the Supreme Court and the ruling during Trump's Impeachment Trial you CAN NOT hold a sitting President responsible for what he does in Office, *as long as he's doing it for what he believes is in the best interest of the country*, so if Joe Biden believes it's in the best interest of the country to do it the same precedent should hold true. \n\nSo he'll do it, or he should do it because the Supreme Court later came back and said to add insult to injury *that a president could not be held to the same standards as everyone else when committing crimes *as a President* so my understanding by those two rulings is Biden can do whatever the hell he wants *right now* while he's President as long as he feels like it's in the best interest of his country, and there's nothing anyone could do to him about it", 'created': '2024-11-09 19:21:03', 'submission_id': '1gndryj'}
{'comment': "That actually wasn't the question, but thank you for your Insight professor", 'created': '2024-11-10 17:58:22', 'submission_id': '1gndryj'}
{'comment': 'Not every democrat wants to do that though.', 'created': '2024-11-09 21:59:39', 'submission_id': '1gndryj'}
{'comment': "Unclassified material I meant was files on people they'd go after. DNA too. They're obviously going to use their power to make up crimes to charge our people with.", 'created': '2024-11-09 18:58:04', 'submission_id': '1gndryj'}
{'comment': 'We sure did…but Biden has 70 days to do something drastic to prevent this shit. But he’s gonna lay down and hand us over to a mad man.', 'created': '2024-11-09 18:45:08', 'submission_id': '1gndryj'}
{'comment': 'Awesome! Thank you 😊', 'created': '2024-11-09 21:31:32', 'submission_id': '1gndryj'}
{'comment': 'Hey, I’m not disagreeing. I wish I felt represented. I’ve been having to rely on Joe and your Senators for that. Joe should’ve fired Garland after the first month of inaction on Trump’s crimes. I know it’s easy to point fingers now, but seriously. We didn’t prevent the worse possible scenario by catering to the crazies.', 'created': '2024-11-09 23:56:47', 'submission_id': '1gndryj'}
{'comment': 'They’ve been fighting for years.', 'created': '2024-11-10 00:39:26', 'submission_id': '1gndryj'}
{'comment': 'It is a real piece of legislation. It is not redundant. It would make it so the presidential immunity excludes illegal acts.\xa0\nhttps://www.congress.gov/bill/118th-congress/senate-bill/4973/all-info', 'created': '2024-11-09 19:40:46', 'submission_id': '1gndryj'}
{'comment': None, 'created': '2024-11-09 21:24:56', 'submission_id': '1gndryj'}
{'comment': 'They have mastered the fine art of 🍒🤏', 'created': '2024-11-10 02:39:36', 'submission_id': '1gndryj'}
{'comment': "I stand by my statement. They should have started pushing for confirmations on seats long before this. However, I do understand the GOP slow walk. I guess it's christo fascism or nothing. Buckle up, folks. 👍", 'created': '2024-11-09 19:45:50', 'submission_id': '1gndryj'}
{'comment': 'I mean that and that the EO will be rescinded on day one of the new administration', 'created': '2024-11-09 20:28:24', 'submission_id': '1gndryj'}
{'comment': 'True. I do get mad when I see people of the DNC who want to shift to being more conservative, when they should be focusing on a New Deal Revival type of progressivism.', 'created': '2024-11-09 21:22:41', 'submission_id': '1gndryj'}
{'comment': 'That’s kind of my point. If you “stop2end” it will say that you’ve unsubscribed from “The Way Forward PAC” or whatever bullshit but it won’t stop because your number is in literally hundreds of organizations’ databases.\n\nMy point was that the “Democratic Party” probably didn’t send you that text asking for money. Just some random PAC that won’t exist tomorrow.', 'created': '2024-11-09 19:54:20', 'submission_id': '1gndryj'}
{'comment': "that is baked into the foundation of the government. The government is an ongoing entity, while the president is just a temporary office holder. All that crap that Trump was spesing about being able to declassify stuff with his mind is pure nonsense. there is a process that even chief executive is bound by. Just like Presidents can't just burn down the White House, they can't destroy the government's documents.", 'created': '2024-11-12 03:54:11', 'submission_id': '1gndryj'}
{'comment': 'Neh. They didn’t read about it or don’t believe it. Or they’ll ignore it.', 'created': '2024-11-10 01:16:58', 'submission_id': '1gndryj'}
{'comment': "You don't get it. Trump doesn't care what anyone thinks or feels. He used rafts of EOs to get rid of as much Obama-era goodness as he could - just for spite.\n\nThe exception would be anything that he agrees with. Or his people agree with.", 'created': '2024-11-11 02:00:07', 'submission_id': '1gndryj'}
{'comment': 'See here, perfect example.\n\nhttps://search.app?link=https%3A%2F%2Fabcnews.go.com%2FPolitics%2Fobama-undone-year-trump-unravels-predecessors-signature-achievements%2Fstory%3Fid%3D52234311&utm_campaign=aga&utm_source=agsadl2%2Csh%2Fx%2Fgs%2Fm2%2F4', 'created': '2024-11-11 02:01:11', 'submission_id': '1gndryj'}
{'comment': 'That’s not what that Supreme Court rule means. \n\nThe constitution still decides how are government works. He can’t suddenly perform the duties for Congress\n\nThe ruling just means he can’t be held responsible for the things he did in presidential capacity', 'created': '2024-11-09 19:31:26', 'submission_id': '1gndryj'}
{'comment': 'Yes, sadly you are almost certainly correct. But upping the required minimum back up to 60 votes for SCOTUS Judges nominations I think would probably pass with all Ds on board.', 'created': '2024-11-09 22:04:28', 'submission_id': '1gndryj'}
{'comment': 'Ironically I think your solution to this problem you made up is going to create the problem itself. If Trump comes in and everything’s erased, I bet my bank account the entire previous administration would be locked up.', 'created': '2024-11-09 19:05:40', 'submission_id': '1gndryj'}
{'comment': 'Oh, what *could* have been.\n\nhttps://preview.redd.it/uaat0kf5myzd1.jpeg?width=950&format=pjpg&auto=webp&s=835b3a408c68233e02862980d678ea916d4314d8', 'created': '2024-11-10 00:22:49', 'submission_id': '1gndryj'}
{'comment': 'Trust me when I say they are doing this not just for their states but for all Americans', 'created': '2024-11-09 23:59:35', 'submission_id': '1gndryj'}
{'comment': "Thank you. Let's pass this.", 'created': '2024-11-09 19:43:11', 'submission_id': '1gndryj'}
{'comment': "Well, it's not worth arguing if you're stuck on that. History will show.", 'created': '2024-11-09 21:36:58', 'submission_id': '1gndryj'}
{'comment': 'He is the only one who managed to pass an infrastructure bill. That’s not nothing', 'created': '2024-11-09 22:19:23', 'submission_id': '1gndryj'}
{'comment': 'Huh? This is the list of judges confirmed under Biden. It is massive. \n\n[https://en.wikipedia.org/wiki/List\\_of\\_federal\\_judges\\_appointed\\_by\\_Joe\\_Biden](https://en.wikipedia.org/wiki/List_of_federal_judges_appointed_by_Joe_Biden)', 'created': '2024-11-09 19:47:58', 'submission_id': '1gndryj'}
{'comment': "They \\*did\\* push confirmation on seats long before this. Biden has confirmed hundreds of justices. He's been confirming judges at lightspeed this whole time.", 'created': '2024-11-09 23:19:29', 'submission_id': '1gndryj'}
{'comment': 'I work with people who are ok with losing a few rights if it means their paychecks are “bigger”', 'created': '2024-11-10 01:17:39', 'submission_id': '1gndryj'}
{'comment': 'So, you’re arguing that Biden should test Trump', 'created': '2024-11-11 03:23:26', 'submission_id': '1gndryj'}
{'comment': 'Clearly you failed to read the part above where I distinctively said depending on the votes and if he had them or not, and as of right now the Senate does still have the Majority & the Senate is the one who Votes on the Justices Confirmation go back to civics class', 'created': '2024-11-09 19:34:42', 'submission_id': '1gndryj'}
{'comment': 'And please do not talk to me about the Constitution when King Trump is talking about doing away with parts of it.... 🤦\u200d♂️', 'created': '2024-11-09 19:36:13', 'submission_id': '1gndryj'}
{'comment': "And as far as the duties of Congress nobody's been performing those for quite a few years now", 'created': '2024-11-09 19:36:45', 'submission_id': '1gndryj'}
{'comment': "That's probable anyway. I'm concerned about the lives of millions.\n\nWhat problem did I create? The entire administration is going to be full of traitors, there's a 100% chance of our secrets being sold.", 'created': '2024-11-09 19:09:23', 'submission_id': '1gndryj'}
{'comment': 'Or as I like to say: Democracy vs Authoritarianism…this vote was more seismic than many people realize.', 'created': '2024-11-10 00:25:52', 'submission_id': '1gndryj'}
{'comment': None, 'created': '2024-11-09 21:38:21', 'submission_id': '1gndryj'}
{'comment': 'He did do this and it is a lot.', 'created': '2024-11-09 23:06:06', 'submission_id': '1gndryj'}
{'comment': 'Not when you know the SCOTUS is far more important. That will mess with America for several decades.', 'created': '2024-11-09 20:54:32', 'submission_id': '1gndryj'}
{'comment': 'Doesn’t change how the government works my dude. Stop spamming me because you’re butt hurt for being wrong. \n\nTake care.', 'created': '2024-11-09 19:37:25', 'submission_id': '1gndryj'}
{'comment': "No, we're not; and water's wet. You just trying to argue?", 'created': '2024-11-09 23:28:53', 'submission_id': '1gndryj'}
{'comment': "SCOTUS doesn't always choose to hear a case. Having liberal federal judges everywhere possible helps...", 'created': '2024-11-10 02:56:59', 'submission_id': '1gndryj'}
{'comment': 'Excellent. Anyone know what the house count is? Are we going to win the house?', 'created': '2024-11-09 17:11:24', 'submission_id': '1gndch7'}
{'comment': 'so far 3 Dems survived the Trump wave, hooray', 'created': '2024-11-09 17:17:16', 'submission_id': '1gndch7'}
{'comment': '', 'created': '2024-11-10 03:52:09', 'submission_id': '1gndch7'}
{'comment': 'Thankfully our institutions prevent a simple majority in the legislative branch from taking women’s rights. The framers did something good for once, even if they owned slaves', 'created': '2024-11-09 17:20:01', 'submission_id': '1gndch7'}
{'comment': 'At least my vote for her made a difference.', 'created': '2024-11-10 04:47:03', 'submission_id': '1gndch7'}
{'comment': "Yeah she did!! I'm so glad. I met her in 2018. She is smart and amazing.\xa0", 'created': '2024-11-10 03:42:27', 'submission_id': '1gndch7'}
{'comment': 'Does this really matter anymore? Trump is going to remove rouge bureaucrats anyway, it is only a matter of time before anyone that speaks out is “removed”.', 'created': '2024-11-09 18:00:35', 'submission_id': '1gndch7'}
{'comment': "The house race is hard as hell to follow nobody even the ppl that Forcast these things have any idea I'm assuming its a coin flip", 'created': '2024-11-09 17:14:11', 'submission_id': '1gndch7'}
{'comment': 'If dems take the house I’ll be able to sleep at least. I’m deeply afraid of a complete Republican takeover', 'created': '2024-11-09 19:28:02', 'submission_id': '1gndch7'}
{'comment': 'Likely a 2 seat favorable to pubs. Lots of votes left to be counted', 'created': '2024-11-09 17:58:42', 'submission_id': '1gndch7'}
{'comment': 'Pubs need 6, currently leading by >1% in 7. We need a surprise turn of events in 2 while keeping the lead in everything else. Seems unlikely', 'created': '2024-11-09 20:34:03', 'submission_id': '1gndch7'}
{'comment': 'Probably not, but it’s going to be another small majority.', 'created': '2024-11-09 17:12:38', 'submission_id': '1gndch7'}
{'comment': 'usually the house goes with the popular vote', 'created': '2024-11-09 17:15:58', 'submission_id': '1gndch7'}
{'comment': '[financial times house election tracker](https://ig.ft.com/us-elections/2024/results/house/)', 'created': '2024-11-09 17:25:02', 'submission_id': '1gndch7'}
{'comment': "We could. Republicans lead in most races, but they can easily turn around like Jacky's senate race did", 'created': '2024-11-10 02:23:10', 'submission_id': '1gndch7'}
{'comment': "Only the filibuster prevents that. And it's not a constitutional mechanism -- just a Senate rule. It could be revoked with a simple majority vote of the Senate.", 'created': '2024-11-09 21:39:41', 'submission_id': '1gndch7'}
{'comment': 'The framers intended for legislation to to be passed with a simple majority', 'created': '2024-11-10 07:10:07', 'submission_id': '1gndch7'}
{'comment': 'currently 23 not called.\xa0 Dems need 18 to win, GOP needs 6.\xa0\xa0', 'created': '2024-11-09 17:27:58', 'submission_id': '1gndch7'}
{'comment': 'Need to spread the word about checking ballot status and work on ballot curing', 'created': '2024-11-09 17:47:51', 'submission_id': '1gndch7'}
{'comment': 'We still have the possibility of the filibuster at least (*for now*)', 'created': '2024-11-09 19:36:48', 'submission_id': '1gndch7'}
{'comment': 'I have not slept a full night since the election.', 'created': '2024-11-09 19:30:14', 'submission_id': '1gndch7'}
{'comment': 'We are so fucked!', 'created': '2024-11-09 17:14:23', 'submission_id': '1gndch7'}
{'comment': 'Nothing was usual at this election', 'created': '2024-11-09 17:16:58', 'submission_id': '1gndch7'}
{'comment': 'Thank you', 'created': '2024-11-09 17:27:38', 'submission_id': '1gndch7'}
{'comment': 'I hope they do, and if so if Democracy holds for dems to retake they can fuck Republicans up major', 'created': '2024-11-09 22:50:10', 'submission_id': '1gndch7'}
{'comment': 'You cannot get rid of the filibuster with a simple majority...', 'created': '2024-11-09 23:33:46', 'submission_id': '1gndch7'}
{'comment': 'Certainly not, the framers were very careful to not allow a simple majority to make such sweeping changes at once. Which will prevent dRump from stealing women’s rights at once, but not after years of relentless assaults from within. This is another reason why we need to tear down the system and build it for minorities!!', 'created': '2024-11-10 16:59:46', 'submission_id': '1gndch7'}
{'comment': "Right, from what I've read it's a ton of toss ups, nobody has a lean on which way they fall", 'created': '2024-11-09 17:29:45', 'submission_id': '1gndch7'}
{'comment': '[removed]', 'created': '2024-11-10 04:33:46', 'submission_id': '1gndch7'}
{'comment': "Republicans could easily just decide to amend the rules of the filibuster so Dems can't use it like they did to get through Trump's last set of tax cuts for the rich", 'created': '2024-11-09 23:21:56', 'submission_id': '1gndch7'}
{'comment': 'I still sleep but as soon as I wake up I say fuck!', 'created': '2024-11-10 00:43:23', 'submission_id': '1gndch7'}
{'comment': 'You are completely wrong. Cloture rules have changed over time. Cloture rules are part of the Senate rules package, and have been changed multiple times in the past. It only takes a majority to set Senate rules.', 'created': '2024-11-10 00:28:18', 'submission_id': '1gndch7'}
{'comment': "Democrats have 18.2 % chance, with the most likely outcome 220 R /215 D\n\nThat's an improvement from the forecast yesterday", 'created': '2024-11-09 21:06:06', 'submission_id': '1gndch7'}
{'comment': 'And if they do when they lose in 26 because of bored mid term voters, they’ll regret it all', 'created': '2024-11-10 00:44:16', 'submission_id': '1gndch7'}
{'comment': 'Eagle. Obvious answer.', 'created': '2024-11-09 17:13:15', 'submission_id': '1gnd0xh'}
{'comment': 'Phoenix', 'created': '2024-11-09 17:40:21', 'submission_id': '1gnd0xh'}
{'comment': 'The new mascot should be the invisible man. Because when it’s time to vote, Dems vanish like invisible little bitches.', 'created': '2024-11-09 17:15:24', 'submission_id': '1gnd0xh'}
{'comment': 'A cat. Impossible to herd, but loved by almost everyone. And they run the interw3bz.', 'created': '2024-11-09 18:02:58', 'submission_id': '1gnd0xh'}
{'comment': 'Probably some young people just standing around with a speech bubble that says, "I dont agree with one thing, so im just not going to vote."\n\nSame issue every 4 years. So it fits.', 'created': '2024-11-09 17:20:02', 'submission_id': '1gnd0xh'}
{'comment': 'Mountain lion', 'created': '2024-11-09 17:19:15', 'submission_id': '1gnd0xh'}
{'comment': 'An elephant. Those motherfuckers don’t deserve elephants.', 'created': '2024-11-09 21:39:35', 'submission_id': '1gnd0xh'}
{'comment': 'Shark\n\nBison\n\nHawk\n\nMountain Lion', 'created': '2024-11-09 19:54:40', 'submission_id': '1gnd0xh'}
{'comment': 'My first thought was, a dove.', 'created': '2024-11-09 20:14:00', 'submission_id': '1gnd0xh'}
{'comment': 'Michelle Obama', 'created': '2024-11-09 17:18:15', 'submission_id': '1gnd0xh'}
{'comment': 'I love the donkey! Used to have a t-shirt from the college dems that was given to me as an alumni, said "Best ass on campus." on the back.\n\nThat said, alpaca or a humpback whale. \n\nAlpacas\xa0are known to defend sheep and goats from foxes, and are used as flock defense.\n\nHumpback whales are known to protect seals and sea lions from Orcas, and save other whale species calfs from Orca attacks.', 'created': '2024-11-10 00:13:06', 'submission_id': '1gnd0xh'}
{'comment': 'Well, a doormat will probably be the only thing allowed in 2 years. So make it a nice looking one.', 'created': '2024-11-09 18:04:58', 'submission_id': '1gnd0xh'}
{'comment': 'I think a mountain lion or a bobcat would be a good pick.', 'created': '2024-11-09 20:41:45', 'submission_id': '1gnd0xh'}
{'comment': 'A donkey kicking DJT in the nuts-😅', 'created': '2024-11-09 21:38:26', 'submission_id': '1gnd0xh'}
{'comment': 'Eagle. Co-opt the national symbols, including the flag.', 'created': '2024-11-09 22:01:15', 'submission_id': '1gnd0xh'}
{'comment': 'It needs to change every so often. Right now, it needs to be a GenZ type or a protest voter.', 'created': '2024-11-09 22:08:14', 'submission_id': '1gnd0xh'}
{'comment': 'Gun', 'created': '2024-11-09 23:09:43', 'submission_id': '1gnd0xh'}
{'comment': 'A turtle on its back', 'created': '2024-11-09 19:24:28', 'submission_id': '1gnd0xh'}
{'comment': 'A human', 'created': '2024-11-09 20:34:38', 'submission_id': '1gnd0xh'}
{'comment': 'Sheep would be most fitting but since I don’t see that happening I would go for just having the donkey kicking. Ass kicking!! Get it?', 'created': '2024-11-09 21:00:27', 'submission_id': '1gnd0xh'}
{'comment': 'Wait this would be so funny actually', 'created': '2024-11-09 17:19:26', 'submission_id': '1gnd0xh'}
{'comment': '', 'created': '2024-11-09 18:02:51', 'submission_id': '1gnd0xh'}
{'comment': 'Game over.', 'created': '2024-11-09 19:39:43', 'submission_id': '1gnd0xh'}
{'comment': "I can't say I know the details of where Home Depot's money goes now, but Bernie Marcus passed away a few days ago, and I was surprised that the other surviving\xa0co-founder joined Business Leaders for Harris, and is a longtime dem donor. I'm not sure of the current leadership though.\xa0\xa0\n\n\nThief (ha, Thiel, good autocorrect phone) did PayPal? Ugh.", 'created': '2024-11-09 17:45:51', 'submission_id': '1gncxf8'}
{'comment': "Where's Tesla on the list?", 'created': '2024-11-09 17:21:21', 'submission_id': '1gncxf8'}
{'comment': 'There’s an app in the iOS App Store called [Goods Unite Us](https://apps.apple.com/us/app/guu-debate-politics-shop/id1295147058) that you can find out the political donations of companies and choose that way', 'created': '2024-11-09 16:53:28', 'submission_id': '1gncxf8'}
{'comment': 'lol, turns out I won’t have trouble avoiding this list.', 'created': '2024-11-09 17:31:01', 'submission_id': '1gncxf8'}
{'comment': 'I expected to see Goya on this list.', 'created': '2024-11-09 18:04:16', 'submission_id': '1gncxf8'}
{'comment': 'Fyi, I believe the Dallas Cowboys are owned by Jerry Johnson. Still a trump supporter.', 'created': '2024-11-09 17:37:00', 'submission_id': '1gncxf8'}
{'comment': 'Honestly, strip down your spending across the board. Save your money. We might really need to hoard our resources a bit in case this gets really bad. And we need to invest heavily in mutual aid because people are going to be hit hard by his economic policies. We’re going to need to build as much of a safety net as we can outside of the governmental system, unless you can maybe get state or local government to do it. I live in Ohio, so everyone here is absolutely screwed as far as government benefits. Obviously, ethical shopping where needed. But I’d dial back altogether.', 'created': '2024-11-09 20:11:59', 'submission_id': '1gncxf8'}
{'comment': 'Formula 1 is crazy', 'created': '2024-11-09 17:05:10', 'submission_id': '1gncxf8'}
{'comment': 'L.L. Bean??????? \n\nTell me it’s not so. \n\nI’m crushed. Crushed I tell you.', 'created': '2024-11-09 21:29:02', 'submission_id': '1gncxf8'}
{'comment': "Patriots, Jets and Dolphins. No wonder the Bills are the best in that division \n\nLet's Go Buffalo! ❤️💙", 'created': '2024-11-09 20:03:29', 'submission_id': '1gncxf8'}
{'comment': None, 'created': '2024-11-09 17:21:26', 'submission_id': '1gncxf8'}
{'comment': 'FYI, Ike Perlmutter at Marvel was fired earlier this year. \n\nAlso Stan Kroenke (Kroenke Sports & Entertainment) owns the following:\n\nLos Angeles Rams\n\nDenver Nuggets\n\nColorado Avalanche\n\nColorado Rapids\n\nColorado Mammoth\n\nArsenal F.C.\n\nArsenal W.F.C.\n\nLos Angeles Gladiators\n\nLos Angeles Guerrillas\n\nSoFi Stadium\n\nYouTube Theater\n\nEmirates Stadium\n\nArsenal Training Centre\n\nHighbury Square\n\nBall Arena\n\nDick’s Sporting Goods Park\n\nParamount Theatre\n\n1stBank Center\n\nElitch Gardens Theme Park\n\nWarner Center complex\n\n\nAltitude Sports and Entertainment\n\nOutdoor Sportsman Group\n\nSkycam', 'created': '2024-11-09 20:43:45', 'submission_id': '1gncxf8'}
{'comment': 'When are we going to accept that all businesses support things that one will not always agree with? I agree with you on principle but in order to avoid supporting any business that supports Republicans, one is going to have to go off the grid and homestead.', 'created': '2024-11-09 18:00:43', 'submission_id': '1gncxf8'}
{'comment': 'Where is Tesla? This should be the main company to boycott.', 'created': '2024-11-09 21:26:05', 'submission_id': '1gncxf8'}
{'comment': 'Vince and Linda McMahon are not involved in WWE anymore.\n\nIn fact the CEO of TKO, the parent company of WWE and UFC is a pretty big Democratic donor. \n\nAlso; his brother is Rahm Emmanuel.\n\nI think those 2 companies are pretty safe.', 'created': '2024-11-09 19:35:53', 'submission_id': '1gncxf8'}
{'comment': 'Get the full list and I’ll post everywhere and send it 👍', 'created': '2024-11-09 18:27:58', 'submission_id': '1gncxf8'}
{'comment': 'So wwe isn’t owned by the McMahons anymore. That and ufc are both owned by endeavor so not sure either should still be on the list', 'created': '2024-11-09 18:15:53', 'submission_id': '1gncxf8'}
{'comment': "The Jones' will be shocked that they don't own the Cowboys anymore. I like this list, but it needs to be accurate.", 'created': '2024-11-09 19:06:37', 'submission_id': '1gncxf8'}
{'comment': 'Goddamnit. Not my Braves 😭', 'created': '2024-11-09 20:01:20', 'submission_id': '1gncxf8'}
{'comment': 'BTW, the Home Depot CEO passed away a couple days ago.', 'created': '2024-11-09 22:09:41', 'submission_id': '1gncxf8'}
{'comment': 'Planet Fitness belongs on the list too.', 'created': '2024-11-10 00:04:38', 'submission_id': '1gncxf8'}
{'comment': 'Here is a good website to look up where companies come out on this \n\n[https://www.goodsuniteus.com/?fbclid=IwY2xjawGcmnxleHRuA2FlbQIxMAABHXO3V8DwzFy\\_ctrFwJCG-SBnKljraVuX\\_GdQYfaa1qVk4QMVzaYcHHR4qA\\_aem\\_NZEcrA-xJpr\\_Q42n4YDwIA](https://www.goodsuniteus.com/?fbclid=IwY2xjawGcmnxleHRuA2FlbQIxMAABHXO3V8DwzFy_ctrFwJCG-SBnKljraVuX_GdQYfaa1qVk4QMVzaYcHHR4qA_aem_NZEcrA-xJpr_Q42n4YDwIA)', 'created': '2024-11-09 20:43:08', 'submission_id': '1gncxf8'}
{'comment': 'Astros standing out in Houston Sports. No political contributions as an organization, but known member contributions are mostly blue, with none going to Trump\n\nhttps://www.opensecrets.org/orgs/houston-astros/summary?id=D000070699', 'created': '2024-11-09 22:43:37', 'submission_id': '1gncxf8'}
{'comment': "The only one I'll struggle with, genuinely, is Formula 1. Losing the only sport I enjoy watching is gonna suck.", 'created': '2024-11-09 19:14:34', 'submission_id': '1gncxf8'}
{'comment': 'I see lots of people commenting about the restaurants- gotta keep scrolling, there are more images. Just trying to help ✌️', 'created': '2024-11-09 19:16:09', 'submission_id': '1gncxf8'}
{'comment': 'How about we select *one* company and make an example of them? A company selected because they’ll actually feel it? A focused, organized boycott? Any chance of that happening?', 'created': '2024-11-09 21:03:55', 'submission_id': '1gncxf8'}
{'comment': 'Search companies here \nhttps://www.goodsuniteus.com', 'created': '2024-11-09 22:02:44', 'submission_id': '1gncxf8'}
{'comment': "It makes me kinda happy to know that there's less supporting this treasonist shitlord than I thought. That being said, it's still way, way too depressing to see so many names.\n\nGarbage. All of them.", 'created': '2024-11-10 01:58:15', 'submission_id': '1gncxf8'}
{'comment': 'Wait so Lowe’s is fine. Fuck yea.', 'created': '2024-11-09 22:10:28', 'submission_id': '1gncxf8'}
{'comment': 'No worries. Because those that voted for him will not be able to buy anything from anyone. \n\nI’m serious I need to find a way around this tariff stuff. I need a little more than a Temu or SHEIN. \n\nI’ll buy direct from Mfg company in China. But I do not speak Chinese', 'created': '2024-11-09 18:09:46', 'submission_id': '1gncxf8'}
{'comment': 'Thank you.', 'created': '2024-11-09 18:10:19', 'submission_id': '1gncxf8'}
{'comment': 'Permlmutter isn’t with Marvel anymore.', 'created': '2024-11-09 22:24:56', 'submission_id': '1gncxf8'}
{'comment': 'Also Precoat metals they coat all sorts of metal products steel and aluminum that I am aware of\n\nThey make the green monster tabs and spam cans for example', 'created': '2024-11-09 23:51:44', 'submission_id': '1gncxf8'}
{'comment': "Crazy but I don't patronize any of these places.", 'created': '2024-11-10 00:32:54', 'submission_id': '1gncxf8'}
{'comment': 'Linda Bean was not an owner of LL Bean, she was just on the board. Also, she’s dead. The inaccuracy of that makes me the doubt the accuracy of the entire lists. Boycotts don’t work if they make you look dumb', 'created': '2024-11-10 05:49:13', 'submission_id': '1gncxf8'}
{'comment': 'This list is incorrect. Khan, owner the Jags is liberal but donates to Republicans because one of his businesss is in FL\n\nAlso, Kroenke owns the Rams not the Cowboys. But Jerry Jones is a shitty, racist Republican too', 'created': '2024-11-10 10:24:16', 'submission_id': '1gncxf8'}
{'comment': 'Perlmutter hasn’t been associated with Marvel ever since he sold it to Disney back in 2009.', 'created': '2024-11-10 11:27:28', 'submission_id': '1gncxf8'}
{'comment': 'Even with decent household income, we are pretty much cutting out non-essential future spending regardless of company culture to prepare for the increased cost of essentials', 'created': '2024-11-10 14:19:50', 'submission_id': '1gncxf8'}
{'comment': 'If you’re talking about Arthur Blank, he for sure supports the democrats… also owns the Atlanta falcons', 'created': '2024-11-09 19:19:02', 'submission_id': '1gncxf8'}
{'comment': 'PayPal was Musk and Thiel. Thiel also has a company called Palantir that does surveillance tech for DoD, police precincts, and private industry.', 'created': '2024-11-09 21:05:20', 'submission_id': '1gncxf8'}
{'comment': "Home depot hasn't had a connection to either of those guys in many years.. This makes me doubt the entire list.", 'created': '2024-11-10 16:50:04', 'submission_id': '1gncxf8'}
{'comment': '51 dem, 49 repub', 'created': '2024-11-09 19:13:16', 'submission_id': '1gncxf8'}
{'comment': 'Goods Unite Us still has Twitter with a blue donkey icon beside it. \n\nSounds like they need to update their database.', 'created': '2024-11-09 19:12:32', 'submission_id': '1gncxf8'}
{'comment': '🤩🤩 I had no idea! I’ll download it rn!', 'created': '2024-11-09 16:57:18', 'submission_id': '1gncxf8'}
{'comment': 'Does the iOS App Store donate to anyone? Kind of a catch-22 here.', 'created': '2024-11-09 18:26:11', 'submission_id': '1gncxf8'}
{'comment': 'Thanks!', 'created': '2024-11-09 20:19:56', 'submission_id': '1gncxf8'}
{'comment': 'Thanks. But I need Chinese mfg companies. It will cost 40-60% more his way.', 'created': '2024-11-09 18:12:02', 'submission_id': '1gncxf8'}
{'comment': 'Me either. I don’t think I’ve ever been in any.', 'created': '2024-11-09 18:12:32', 'submission_id': '1gncxf8'}
{'comment': 'I mean, everything but Home Depot is not really an issue for me.', 'created': '2024-11-09 21:49:47', 'submission_id': '1gncxf8'}
{'comment': '*Jones', 'created': '2024-11-09 17:45:59', 'submission_id': '1gncxf8'}
{'comment': 'He really needs to sell the team at this point…..and not because he’s a Trump supporter.', 'created': '2024-11-09 20:12:31', 'submission_id': '1gncxf8'}
{'comment': 'I was already pissed at the Jets after they gave Michael Vick a contract. Then they embraced Aaron Rodgers.', 'created': '2024-11-09 22:42:00', 'submission_id': '1gncxf8'}
{'comment': 'Yeah lists like this only include the most publicly known and visible examples. I’m pretty sure the vast majority of CEOs are Republicans. And even for the ones that aren’t, a lot of the other executives and board members within those companies probably are.', 'created': '2024-11-09 20:56:37', 'submission_id': '1gncxf8'}
{'comment': 'And Amazon, WaPo', 'created': '2024-11-09 22:03:56', 'submission_id': '1gncxf8'}
{'comment': 'Dana White is extra republican… all the way fown to ripping off his own fighters, he absolutely sucks Trump off', 'created': '2024-11-09 19:30:39', 'submission_id': '1gncxf8'}
{'comment': 'Yes, whoops, should have added his name.\xa0', 'created': '2024-11-09 19:20:08', 'submission_id': '1gncxf8'}
{'comment': 'I don’t think that much matters when their CEO was giving $45M a month to Trump and plans on being an actual part of the admin.', 'created': '2024-11-09 19:39:10', 'submission_id': '1gncxf8'}
{'comment': 'Jerry Jones and his family own the Dallas Cowboys.', 'created': '2024-11-09 21:28:50', 'submission_id': '1gncxf8'}
{'comment': 'Per GUU, Apple donates more heavily to Democrats.', 'created': '2024-11-09 18:33:02', 'submission_id': '1gncxf8'}
{'comment': 'I understand tariffs very well - and I already pay more for products of non-Chinese origin. I prefer goods made in USA or allies, but realize some Chinese companies are the only manufacturer in certain cases.', 'created': '2024-11-09 18:22:58', 'submission_id': '1gncxf8'}
{'comment': 'Ty! My bad lol, thinking about Jimmy Johnson. That would piss Jerry off', 'created': '2024-11-09 17:47:44', 'submission_id': '1gncxf8'}
{'comment': 'You’re right. I also know that most corporations or their PACs make donations to candidates of both major US parties. All one has to do is looking at FEC or their secretary of state’s election finance reports to see for themselves.', 'created': '2024-11-09 21:32:14', 'submission_id': '1gncxf8'}
{'comment': "I know Amazon is a hard one but if you really can't deal without it you can always rejoin.", 'created': '2024-11-10 00:31:23', 'submission_id': '1gncxf8'}
{'comment': 'He doesn’t own it. Just the ceo nowadays', 'created': '2024-11-09 20:28:18', 'submission_id': '1gncxf8'}
{'comment': 'Yeah I know. Just saying that the database on this app needs some serious updating. Twitter is listed as democrat/blue and we all know that’s BS. \n\nI was just posting what the app is currently showing for Tesla. Again, it needs some serious updating, because if people are not aware that it is behind the times, they could be misled in supporting businesses that they don’t align with politically.', 'created': '2024-11-09 19:56:11', 'submission_id': '1gncxf8'}
{'comment': 'Ugh I love what space x does, but I hate him. Why do cool things have to be ruined by shit people', 'created': '2024-11-09 20:41:16', 'submission_id': '1gncxf8'}
{'comment': 'my lifelong boycott of the Dallas Cowboys remains unchanged', 'created': '2024-11-09 23:42:42', 'submission_id': '1gncxf8'}
{'comment': 'I had to look that one up too. The only mention of Kroenke and the Cowboys is a single Facebook post from a month ago that he is buying them. This makes me question the validity of this information. And did you notice how it transitioned from ‘owner’ to ‘BILLIONAIRE owner’ around page three?', 'created': '2024-11-10 01:31:30', 'submission_id': '1gncxf8'}
{'comment': 'What you don’t Understand is that every food manufacturing company in this country uses ingredients from China. Cargo containers full. Smh. \nThis goes from soups to pet food ! Heinz Kraft, private label soup, stove, top stuffing, Italian dressing….. try getting something that doesn’t contain an ingredient from China. Unless it’s homemade. Pet food and I had it out before the election with Nestlé’s because they own Purina. Smuckers they are Rachel Ray dog and cat food. What do you think they buy little packets or something they buy cargo containers full from China \nBut China has already said that cut the supply chain and they will as a fuck you to Donald.', 'created': '2024-11-10 19:40:41', 'submission_id': '1gncxf8'}
{'comment': 'Agreed. I don’t have an Amazon subscription and I’m not ordering off of them anymore.', 'created': '2024-11-10 00:32:42', 'submission_id': '1gncxf8'}
{'comment': 'Home Depot too: the owner just died.', 'created': '2024-11-09 21:03:47', 'submission_id': '1gncxf8'}
{'comment': 'The thing with Goods Unite Us is that it looks at employees’ individual donations to campaigns. Musk and other billionaires largely aren’t donating directly to campaigns— they set up a PAC and funnel the vast majority of their donations through that. So the employees at Twitter or wherever may very well be donating more to Democrats, but a particularly wealthy donor can dump as much as they want into a PAC as long as the PAC pinkie-promises that they are spending their money independently of a candidate’s campaign, and that won’t show up as a donation to a Republican candidate even if the PAC pushes that candidate’s narrative. I’m pretty convinced that all those individual PAC donations are not well reflected in the data.', 'created': '2024-11-09 22:49:27', 'submission_id': '1gncxf8'}
{'comment': 'Good - let MAGA suffer as a result of their choices.', 'created': '2024-11-10 19:59:38', 'submission_id': '1gncxf8'}
{'comment': 'I have to submit a police report to get a refund but I should be able to cancel next week!', 'created': '2024-11-10 00:33:40', 'submission_id': '1gncxf8'}
{'comment': "Independence state resistance 3.0\nLet's go!!", 'created': '2024-11-09 16:57:49', 'submission_id': '1gncx5w'}
{'comment': 'Thanks Elon. Please stop buying Tesla and sell your Tesla stock.', 'created': '2024-11-09 20:35:03', 'submission_id': '1gncx5w'}
{'comment': 'Another article on the same theme. Its title? "How blue states are plotting to thwart Trump."\n\n[https://www.politico.com/news/2024/11/08/blue-states-democrats-trump-resistance-00188493](https://www.politico.com/news/2024/11/08/blue-states-democrats-trump-resistance-00188493)', 'created': '2024-11-09 16:59:58', 'submission_id': '1gncx5w'}
{'comment': 'I support secessionist movements at this point.', 'created': '2024-11-09 17:41:18', 'submission_id': '1gncx5w'}
{'comment': "If it's not in the Constitution, it should be states' rights and states choice. After all, isn't that what they've been screaming at us all along?", 'created': '2024-11-09 21:10:53', 'submission_id': '1gncx5w'}
{'comment': "Everyone is preparing to fight against the incoming Trump administration, but no one is fighting in advance to prevent this narcissistic, racist, grotesque orange clown,from getting into the White House.\nI mean this is a convicted felon, someone who sold secret documents to the highest bidder.Someone who harasses and rapes women. Shouldn't every measure, really every measure, not be legal to prevent him from even being able to take office?\nI don't see that happening here with the Democrats, the Biden administration or the Harris campaign,or the disappointed voters.\nEveryone seems to have given up.🍸🍸🍸🙄🥺", 'created': '2024-11-09 17:22:02', 'submission_id': '1gncx5w'}
{'comment': 'I feel like they’re all talk. We are such doormats sometimes', 'created': '2024-11-09 20:48:49', 'submission_id': '1gncx5w'}
{'comment': 'Welcome to the enemy within, one and all! 🍻', 'created': '2024-11-10 05:09:20', 'submission_id': '1gncx5w'}
{'comment': 'So it begins…', 'created': '2024-11-10 12:10:51', 'submission_id': '1gncx5w'}
{'comment': 'Ohh so now you want war? Different outcome different actions.', 'created': '2024-11-09 22:13:49', 'submission_id': '1gncx5w'}
{'comment': 'Ah, trust in the system.', 'created': '2024-11-09 17:32:09', 'submission_id': '1gncx5w'}
{'comment': None, 'created': '2024-11-10 00:42:35', 'submission_id': '1gncx5w'}
{'comment': 'Well, he did win the election fair and square. It sucks, but fucking with the transition of power is undemocratic and damages the institutions of democracy', 'created': '2024-11-09 20:31:42', 'submission_id': '1gncx5w'}
{'comment': 'That ship has just sailed. BUCKLE UP BUTTERCUP. The next 4 years is gonna be a wild ride. Hold on to your butts!\n\n', 'created': '2024-11-09 20:37:39', 'submission_id': '1gncx5w'}
{'comment': 'I think people all over the country would be thankful that you took Florida with you.', 'created': '2024-11-10 01:35:08', 'submission_id': '1gncx5w'}
{'comment': 'Ballots are missing from millions of people, bomb threats from multiple Democratic cities, Russian Interference, Elon knowing the results 4 hours ahead, Ivanka Trump has a patent to voting machines…15 million missing votes…I say Trump & Elon cheated.', 'created': '2024-11-09 22:12:00', 'submission_id': '1gncx5w'}
{'comment': 'Doubtful. The machines were hacked by Russia.', 'created': '2024-11-10 00:09:30', 'submission_id': '1gncx5w'}
{'comment': None, 'created': '2024-11-10 02:19:57', 'submission_id': '1gncx5w'}
{'comment': 'Not to mention this man should have been in prison on January 7th, 2020, let alone never allowed to run again in the first place but hey, Russia Jr. sounds cool too I guess.', 'created': '2024-11-09 23:17:26', 'submission_id': '1gncx5w'}
{'comment': 'I still support Texas and Florida seceding.', 'created': '2024-11-10 02:28:47', 'submission_id': '1gncx5w'}
{'comment': 'Who cares what we say? His moron dupes will fall for all his lies and call everyone who opposes him vermin who are poisoning the blood of the fatherland. These people are sooooo original.', 'created': '2024-11-09 15:18:12', 'submission_id': '1gnarzk'}
{'comment': 'No that still wont be enough.\nHas nobody been forced to listen to the extreme right podcasts and stuff that maga listens to?\nThese people are being fueled by anger and hatred, they want power to subdue "the evil democrats" once and for all, they don\'t just disagree with us, they HATE us.\nI\'ve heard them say things to each other like "need to line up all the democrats and gays and shoot them all in the head".\nThey wanted power, and they got it, because we gave it to them.\nThey WILL try to destroy us.', 'created': '2024-11-09 15:15:53', 'submission_id': '1gnarzk'}
{'comment': 'My wife’s 2 brothers and SILs have stated that my MIL is our responsibility should she need long term care. I for the most part was fine with that, I thought it was in poor taste to say it loud and proud in front of her like she was going to be some sort of burden in the future. This woman is fiercely independent and has no intention of moving out of her home willingly. She is retired, living off her measly pension and SS. She cannot survive on her pension alone though. The entire lot of them are Republicans through and through. I sent out a post election text to everyone saying “congratulations on your big win, should there be hardships or if this administration should end SS like they intend to, my wife and I will need to put our family first financially, and should (MILs name) need financial assistance those who cast their votes for said administration will need to foot those costs.” The unfortunate thing is we as democrats are painted as villains and an enemy. I’m gonna embrace it, I’ll offer compassion and fight for those who cannot fight for themselves. But for those who voted for this, they get to reap what they sow. My sister’s husband gets deported?…she’s getting “thoughts and prayers” or a “Go MAGA”. That being said, I’m quietly gathering my wife and kids and getting our affairs in order and will be looking for another country to emigrate to hopefully before things get too bad. I don’t like the idea of leaving but my sons and my wife deserve better.', 'created': '2024-11-09 16:08:25', 'submission_id': '1gnarzk'}
{'comment': None, 'created': '2024-11-09 15:25:36', 'submission_id': '1gnarzk'}
{'comment': "We screwed up. Not in 2024, but in 2020.\n\nDonald Trump's first term in office headed America towards a serious recession. We successfully got Joe Biden in the office and he achieved the almost impossible by avoiding the recession. But it was ugly and very painful for most Americans. \n\nWe shouldn't have even tried to win. Ugly as it is, we should have left Trump to try to fix his own mess. The Republicans wouldn't be able to escape that they weren't capable of running the government. \n\nNow he gets to get credit as America gets back on her feet. And the Democrats get another chance to fix the mess that Trump creates this time.", 'created': '2024-11-09 16:26:31', 'submission_id': '1gnarzk'}
{'comment': 'We’ve spent nearly a decade trying to tell them why Trump is dangerous for everyone, including them. We’ve tried to help them.\n\nPersonally though, I’m done. I have no sympathy or empathy for these people at all. No, I don’t want to fight for the rights of those who deny me mine. And I won’t. From now on, this is my philosophy:\n\nhttps://preview.redd.it/qfa7euqe4wzd1.png?width=749&format=png&auto=webp&s=1bedba363d7d921d17f346e7030cc38d602fd377', 'created': '2024-11-09 16:02:22', 'submission_id': '1gnarzk'}
{'comment': 'I\'m honestly at the point where I wish them harm. Does that make me as bad and awful as them? Fuck yeah it does but so what? I don\'t care anymore. This is our country now. Fascism won on Tuesday and I\'m fucking done. I spent the last eight years begging and pleading with people, voting and donating and more to stop Trump and it all failed. So when the camps come and they put all those idiots who voted for the traitor in them kicking and screaming I\'m just gonna laugh and laugh. Fuck it. No sympathy from me.\n\nIf that makes me a horrible person so be it. This is the country they wanted so live in it. They voted for racism and hatred and crime and violence toward women and children and minorities and you want me to be nice when they come and round you up or you\'ve lost your homes because you didn\'t understand how tariffs work? Fuck all the way off. I\'m gonna be laughing my ass off at your endless stupidity because you were fucking warned for eight years.\n\nYou saw a traitor try to overthrow our government. You saw him let hundreds of thousands of Americans die due to Covid. You heard him say he was going to execute his "enemies" on live TV. 47% of white women wanted a rapist to be their President. You saw him try and suck a microphone like a cock. And THAT is who you wanted as President. If you\'re that much of a cretin I am under no responsibility to feel any sense of compassion toward you when your life turns to shit.', 'created': '2024-11-09 16:41:16', 'submission_id': '1gnarzk'}
{'comment': "Nope. I'm still too pissed.", 'created': '2024-11-09 16:09:45', 'submission_id': '1gnarzk'}
{'comment': 'They literally did that this entire election cycle, and it didn’t make a fucking difference at all.', 'created': '2024-11-09 15:56:31', 'submission_id': '1gnarzk'}
{'comment': 'How is the default the guy who constantly f*cks up and endangers the country?', 'created': '2024-11-09 16:51:27', 'submission_id': '1gnarzk'}
{'comment': 'People don’t want to hear plans. They check out after 30 seconds. Until they can condense solutions into social media blips they’re not going to win over the average boob.\n\nIf we’re lucky enough to get another shot at electing a president in four years that candidate is going to need to rapid fire it. “I’m going to lower the price of groceries.” “I’m going to lower the price of gas.” “I’m going to fix the economy.” These people do care how. They just want lip service.', 'created': '2024-11-09 17:12:31', 'submission_id': '1gnarzk'}
{'comment': 'Nope. \n\nLet them crash. \n\nAny attempt to fix it will be met with “It’s the Democrats’ fault.”\n\nOnly after a Democrat is elected - if, in fact, there are elections again, which is dubious - should Democrats lift a finger to counter rethuglican depredations. \n\nAnd in the meantime, cut off your rethuglican acquaintances and don’t help them if they need help - they can fend for themselves. \n\nScorched earth, baby.', 'created': '2024-11-09 16:40:13', 'submission_id': '1gnarzk'}
{'comment': 'Or we don’t fix it and keep reiterating that Trump caused these problems. Shout it about all the disasters for four years and then run on how we’re going to fix things that Trump screwed up.', 'created': '2024-11-09 16:19:41', 'submission_id': '1gnarzk'}
{'comment': '"Here\'s how we\'re going to fix it" absolutely won\'t be enough.\n\nEvidence: Kamala Harris\' policy platform - "Prices are too high. We\'ll fix it by building housing, going after price gouging corporations, capping drug prices, and tax credits for parents, first time home owners."\n\nAnd this wasn\'t a small part of her platform, either, she talked a lot about the economy. Next to abortion nothing else got as much air time. \n\nThe more I think about this, the more I think the only play is to specifically not talk about the \'how\' of our policy, just the goal. Apparently concepts of a plan works for people, so don\'t even discuss the mechanisms because they won\'t understand anyway. Just say "I want to lower prices." "I want to protect our freedoms." "I want to punish the monsters that caused our collapse and make sure they can never do it again."', 'created': '2024-11-09 18:13:59', 'submission_id': '1gnarzk'}
{'comment': 'Yup, voters love hearing details like that.', 'created': '2024-11-09 16:09:12', 'submission_id': '1gnarzk'}
{'comment': 'The biggest reason I believe we lost was because people would vote for a black woman. If we had a strong white male, I think we still would have lost. The uneducated male & female population is what did us in.', 'created': '2024-11-09 17:40:35', 'submission_id': '1gnarzk'}
{'comment': 'We need to get our own house in order first. WE made us lose the election. Joe received 81 million votes. Kamala received 69 million. Those 12 million or so Democrats need to be heard. We have lost to trump 2xs! We need to revamp our party at the least. We have alienated a big chunk of our own party and need to find out why.', 'created': '2024-11-09 19:50:31', 'submission_id': '1gnarzk'}
{'comment': 'Speaking to his cult members is a waste of breath and time.', 'created': '2024-11-09 22:02:51', 'submission_id': '1gnarzk'}
{'comment': "I'm not looking forward to ITYS when Trump screws up. I'm looking forward to ITYS when his policies begin to directly and negatively affect the very people who voted for him.", 'created': '2024-11-09 18:35:12', 'submission_id': '1gnarzk'}
{'comment': "Agreed. There needs to be a group of high level Dems (sorry old guard, you're out) that learns to quickly and effectively communicate the ramifications in real time.", 'created': '2024-11-09 19:47:12', 'submission_id': '1gnarzk'}
{'comment': 'Are we just pretending this isn’t exactly how Kamala Harris ran her campaign?', 'created': '2024-11-09 21:19:52', 'submission_id': '1gnarzk'}
{'comment': 'If you don’t think Biden’s four years represented “change,” then I’m seriously concerned about your definition of the word. Yes, Democrats will need to be louder about how their policies are an antidote to the coming Trump madness, no question. But Democrats lost not because they did nothing or the wrong things. They lost on culture war and they lost on higher prices. #1 is non-negotiable; Democrats can’t become the party of white supremacy. And #2 was hangover from the pandemic, plus a right-wing media that sold a narrative. It’s that simple and that complex. \n\nYes, the message has to be more than “we told you so.” But it’s simplistic and wrong to say that that’s all Dems have been saying.', 'created': '2024-11-10 00:05:08', 'submission_id': '1gnarzk'}
{'comment': 'All these dumbass posts are so sus. Don’t accept what you’re being told. He was found guilty of voter fraud for gods sake OPEN YOUR EYES.', 'created': '2024-11-10 00:26:14', 'submission_id': '1gnarzk'}
{'comment': 'You’re assuming he isn’t going to jail us all first.', 'created': '2024-11-09 16:30:13', 'submission_id': '1gnarzk'}
{'comment': 'Republicans are so out of touch with reality it is legitimately scary.', 'created': '2024-11-09 16:38:51', 'submission_id': '1gnarzk'}
{'comment': "We've been fixing Republican fuck ups for 30 years, why would that help this time.", 'created': '2024-11-09 17:15:11', 'submission_id': '1gnarzk'}
{'comment': 'Why? What’s the point? No one fucking listens to policy. \n\nBetter to just shout lies from the rooftops. Those seem to sink in.', 'created': '2024-11-09 17:35:39', 'submission_id': '1gnarzk'}
{'comment': "Assuming there will be an election in 2028, to start...\n\nNo, it has always been a monumentally stupid idea to try to court vile, bigoted, stupid hicks because all it's done is shown they refuse to change and will use our desire for their vote as leverage to roll back civil rights.\n\nFuck them. I am not playing this stupid game anymore and neither should you.", 'created': '2024-11-09 17:51:56', 'submission_id': '1gnarzk'}
{'comment': "That's very naive. People do not follow the news. They do not vote on reason or facts. They vote on emotion and identity.", 'created': '2024-11-09 18:57:41', 'submission_id': '1gnarzk'}
{'comment': "The Harris campaign tried to shift right to capture swing state voters. Oddly enough, that's not what works. What we basically need for 2028, if we have a candidate, is a younger version of Bernie Sanders. A populist candidate that will promise Americans the economic changes that will benefit their lives AND will promise to enshrine social change that benefits women and minority groups.", 'created': '2024-11-09 20:20:09', 'submission_id': '1gnarzk'}
{'comment': 'The Left would never go all Westboro Baptist Church, right? Right?', 'created': '2024-11-09 20:47:26', 'submission_id': '1gnarzk'}
{'comment': 'Enough with this stupid shit.', 'created': '2024-11-09 22:02:44', 'submission_id': '1gnarzk'}
{'comment': 'YOU VE BEEN SCREAMING THIS!! Don’t just complain. Offer solutions. Backed by evidence, cited sources, trusted people etc.', 'created': '2024-11-09 22:33:55', 'submission_id': '1gnarzk'}
{'comment': 'They do not care .', 'created': '2024-11-09 23:48:19', 'submission_id': '1gnarzk'}
{'comment': "But, we do this. You can look at every fuckin statement by Clinton, Biden, and Harris and literally see this in action. We keep insisting they're not doing it, and that is fuckin insane. They are\n\nThey just don't get covered that way.", 'created': '2024-11-09 23:55:43', 'submission_id': '1gnarzk'}
{'comment': 'Yes a thousand times!! How can we help people understand just how dangerous he is??', 'created': '2024-11-09 15:17:15', 'submission_id': '1gnarzk'}
{'comment': 'Still not enough. The only way to break through the brain fog is to join the misinformation war. That’s what they know and what they’re trained to respond to. The high road has gotten us nowhere.', 'created': '2024-11-09 15:33:40', 'submission_id': '1gnarzk'}
{'comment': 'Are we serious with this garbage?', 'created': '2024-11-09 16:21:31', 'submission_id': '1gnarzk'}
{'comment': '2028 Nominee for President\n\nYeah Buddy\n\nhttps://preview.redd.it/mt1agz1p8wzd1.jpeg?width=627&format=pjpg&auto=webp&s=5837f8e95487c81ce78595652dec810d347bb7d6', 'created': '2024-11-09 16:23:08', 'submission_id': '1gnarzk'}
{'comment': 'No matter how outrageous a move Trump makes, it will be "not a problem" or a "necessary" response to something liberals did.', 'created': '2024-11-09 16:23:14', 'submission_id': '1gnarzk'}
{'comment': 'yes this.', 'created': '2024-11-09 16:35:08', 'submission_id': '1gnarzk'}
{'comment': "I'm hoping rump is gone soon and then maga will collapse in a pile. Then we have to make sure it can never happen again.", 'created': '2024-11-09 17:30:32', 'submission_id': '1gnarzk'}
{'comment': "I think it's time to stop cleaning up after them.", 'created': '2024-11-09 18:23:38', 'submission_id': '1gnarzk'}
{'comment': 'Okay on what do we tell them we told you on what?', 'created': '2024-11-09 19:12:38', 'submission_id': '1gnarzk'}
{'comment': 'Sorry, this is irredeemable for me. I’ve done my part. It’s time for the next generation to put in the work or live with what they get.', 'created': '2024-11-09 19:18:41', 'submission_id': '1gnarzk'}
{'comment': 'Hey maybe they\'ll replace the fluoride with "smart the fuck up"!', 'created': '2024-11-09 19:20:22', 'submission_id': '1gnarzk'}
{'comment': 'I’m afraid it’s going to be less “I told you so” and more “I told you so doesn’t even begin to cover this.”', 'created': '2024-11-09 19:25:17', 'submission_id': '1gnarzk'}
{'comment': "Nope, don't believe what Repugs are saying. They are in a cult, they are past emotions or logic.\n\nYou can do nothing to change their mind, they are completely engulfed with a mind virus that cannot be cured, its about time to accept this.\n\nThey are stupid, evil and irredeemable, its time to accept this and protect yourself. We are dealing with feral ghouls/mutants from fallout, hardly human anymore", 'created': '2024-11-09 20:00:06', 'submission_id': '1gnarzk'}
{'comment': 'Run on? \nYou assume there’s gonna be future elections that’s funny\nI have no doubt he will go dictatorship', 'created': '2024-11-09 20:02:44', 'submission_id': '1gnarzk'}
{'comment': "They don't care. They don't care that Democrats can fix it. If they did they would never have voted for trump to begin with. They just want to rage on and the worst part is now we're raging too, but for legitimate reasons.", 'created': '2024-11-09 20:13:50', 'submission_id': '1gnarzk'}
{'comment': 'I don’t know what is enough, but as a woman, the only joy I have to look forward to is evil laughing my way to a handmaiden screaming “you got played!!!!!”', 'created': '2024-11-09 20:45:25', 'submission_id': '1gnarzk'}
{'comment': '“ I did this” gas pump stickers', 'created': '2024-11-09 20:50:38', 'submission_id': '1gnarzk'}
{'comment': "Cute.\n\nThey killed their own border bill so they could keep bitching. There's nothing to say.", 'created': '2024-11-09 21:04:53', 'submission_id': '1gnarzk'}
{'comment': 'I want Climate Change to be a huge talking point because this weather is *concerning* this fall. Like holy shit 💩', 'created': '2024-11-09 21:32:07', 'submission_id': '1gnarzk'}
{'comment': "Don't try to harsh my buzz.\xa0 Schadenfreude keeps me going when nothing else can.", 'created': '2024-11-09 21:55:56', 'submission_id': '1gnarzk'}
{'comment': 'Voters always blame the president for anything bad that happens. If prices aren’t miraculously lowered by the midterms, the GOP are going to have a bad election.', 'created': '2024-11-09 22:41:48', 'submission_id': '1gnarzk'}
{'comment': 'Meh, if people don’t learn over the next couple of years, it’s pointless. He will either make them rue the day they voted for him, or they will feel even more emboldened. Nothing we say will change their minds. MAGAts need to suffer to learn. Unfortunately we will suffer too.', 'created': '2024-11-09 22:44:58', 'submission_id': '1gnarzk'}
{'comment': 'He has already fucked up! Didn\'t sign the documents and now he and his team are locked out. "President-elect\xa0[Donald Trump](http://salon.com/topic/donald_trump)\xa0has blown past an Oct 1 deadline to submit a mandatory ethics pledge, potentially foreshadowing a chaotic handoff between the Biden administration and the second Trump term\'s team.\n\nThe\xa0[New York Times reports](https://www.nytimes.com/2024/11/09/us/politics/donald-trump-ethics-transition.html?smid=nytcore-ios-share&referringSource=articleShare)\xa0that Trump was required to submit the documents, which outline how the president will avoid conflicts of interest in office and lay out plans for other ethical concerns, more than a month ago. The lack of Trump\'s adherence to the\xa0[requirements under the\xa0Presidential Transition Act\xa0](http://presidentialtransition.org/reports-publications/presidential-transition-act-summary/)has left him locked out of meetings and briefings with the current administration and heads of government agencies." \n\n', 'created': '2024-11-09 23:09:50', 'submission_id': '1gnarzk'}
{'comment': 'What you are suggesting is not enough.', 'created': '2024-11-09 23:54:52', 'submission_id': '1gnarzk'}
{'comment': 'Also if we stop and think. Trump has been basically running for 4 years. He had more press conferences during his running time than he dis the whole time he was president and the most maddening thing to me is they let him! No body just had random press conferences. He loves attention so much.', 'created': '2024-11-10 00:27:18', 'submission_id': '1gnarzk'}
{'comment': "They win three elections in a row. Barely losing the fourth one doesn't require as much self flagellating as the Democrats are doing", 'created': '2024-11-10 03:07:38', 'submission_id': '1gnarzk'}
{'comment': "Bullshit. Democrats have been running on platforms, policies, and plans forever. It's the people that post this kind of shit that are too lazy to pay attention or even google anything that in turn don't vote that are the problem.", 'created': '2024-11-10 04:53:45', 'submission_id': '1gnarzk'}
{'comment': 'It\'s not "I told you so.", but "You knew this would happen and voted for it, because you\'re not dumb."', 'created': '2024-11-10 14:30:31', 'submission_id': '1gnarzk'}
{'comment': 'The overriding problem with identifying and calling out his missteps is that republicans will just blame the democrats. And their supporters will believe it.', 'created': '2024-11-10 20:17:23', 'submission_id': '1gnarzk'}
{'comment': 'The out party always runs on "change."', 'created': '2024-11-12 15:55:33', 'submission_id': '1gnarzk'}
{'comment': 'I’m not telling anyone I told you so. It will just increase Trumpers resistance. They don’t like intellectuals. \nI’m going to help them when they suffer. Then gently remind them how they treated me. \nIn the end, I have to look at myself in the mirror. I don’t want to be them. I am better than any Trumper and they will learn that.', 'created': '2024-11-10 01:41:09', 'submission_id': '1gnarzk'}
{'comment': 'What change exactly? Double down on boys in girls sports? New words - AsianXXZ? Maybe a few more letters to the alphabet soup people? What? \n\nWhat grand vision of change do you have in mind that will get you back Latino and white men?\n\nOr do you plan to win elections without those blocks, just like 4 days ago?', 'created': '2024-11-09 23:13:45', 'submission_id': '1gnarzk'}
{'comment': "He got the same number of votes from his moron dupes in 2020 and 2024. We won in 2020 because we outnumbered his moron dupes. Many more people voted against him than for him. We lost in 2024 because we didn't outnumber his moron dupes. We drove away everyone but ourselves. We need to appeal to people other than ourselves. Kindly consider that.", 'created': '2024-11-09 16:07:32', 'submission_id': '1gnarzk'}
{'comment': 'Finish your thought. "they want to subdue us" ... and therefore, what is enough? I agree with the OP. It was too hard to be a message of change when democrats had the visibility of the executive branch.', 'created': '2024-11-09 16:18:34', 'submission_id': '1gnarzk'}
{'comment': 'Well now it’s time to fear monger right back! I can’t believe Dems didn’t run more on them being radical combined with a simple populist economic message. Make things like book banning a culture war issue. Propose cutting the sales tax on groceries to help regular households while offsetting that by increasing the sales tax on big ticket luxury items billionaires buy like private planes, yachts, exotic super cars, etc… and cutting tax deductions for these items that their businesses use.', 'created': '2024-11-09 16:00:05', 'submission_id': '1gnarzk'}
{'comment': 'What are they going to do? \n\nBecause if it’s solely based on stereotypes, let me tell you, this lot of “alpha males” is the biggest group of wanna be 🍆 lovers to ever exist. I look at them and think “oh they’re afraid of the gays because their closet is closing in on them.”', 'created': '2024-11-09 17:05:25', 'submission_id': '1gnarzk'}
{'comment': 'This is an extreme minority of very loud people.\n\nThe people saying this are the Republicans’ “unreasonable blue haired feminist” types they complain about on the left. It’s *ridiculous* to believe this is a majority of normal folks who voted Republican.\n\nIf you’re on Reddit political subs you’re more engaged with politics than almost everyone else in the country.', 'created': '2024-11-09 15:27:57', 'submission_id': '1gnarzk'}
{'comment': "Which is why you're armed and trained and spent this election cycle working the ground game for Harris right?\n\nIts why you did literally ANYTHING to prevent or prepare that doesn't involve posting online?", 'created': '2024-11-09 18:06:07', 'submission_id': '1gnarzk'}
{'comment': "Yup, wife and I had a long conversation throughout this week, and put a plan in place if things start getting bad. I hate to do it leave the country I spent 8 years serving. Breaks my heart, but my family comes first. So it's time to start acting as selfish as those who voted in this calamity. Im gonna take all of our resources and invest somewhere where my family can grow up safe and healthy.", 'created': '2024-11-09 17:27:30', 'submission_id': '1gnarzk'}
{'comment': "The frog will never understand that it is in the scorpion's nature to sting. They always both drown. For those of us who do understand it's time to turtle up to protect ourselves & if given a chance deal with the scorpion when alone with it.", 'created': '2024-11-09 15:49:22', 'submission_id': '1gnarzk'}
{'comment': 'Broad brushes often obfuscate the detail. Not everyone in the Trump camp, hell probably most people in the Trump camp are not die hard fans. \n\nWe have to quit playing into their tactic of turning us on each other. We have to understand the voters that vote for Obama and Clinton, but swap to Trump.', 'created': '2024-11-11 10:34:46', 'submission_id': '1gnarzk'}
{'comment': "Until the intellectuals of our population step up to vote, it's not going over power the dumb.\nAnd I just don't see that happening.", 'created': '2024-11-09 18:44:40', 'submission_id': '1gnarzk'}
{'comment': "I agree wholeheartedly. I'm tired of being the nice guy. We owe them no sympathy or kindness", 'created': '2024-11-09 21:26:31', 'submission_id': '1gnarzk'}
{'comment': 'If I could answer that, I would be the president elect right now.', 'created': '2024-11-09 16:56:12', 'submission_id': '1gnarzk'}
{'comment': 'Simple slogans. You have to target your output to the demo you want to con.', 'created': '2024-11-09 18:10:39', 'submission_id': '1gnarzk'}
{'comment': "100%\n\nAgree with you about elections there won't be any anymore. The whole point of Project 2025 is to install Republicans as rulers for life. And SCOTUS gave Trump that authority. It's game over for actual elections in this country. We had our last shot on Tuesday and 15-20 million or so decided to say Fuck it. So here Republicans won. They played the long game and won.", 'created': '2024-11-09 16:52:54', 'submission_id': '1gnarzk'}
{'comment': 'Yep, like MAGAs kept saying in 2016 when things went bad for them: "Thanks Obama".\n\nWell THANKS TRUMP!', 'created': '2024-11-09 21:09:11', 'submission_id': '1gnarzk'}
{'comment': 'That totally worked this year!', 'created': '2024-11-09 16:20:41', 'submission_id': '1gnarzk'}
{'comment': 'Evidently they do, based on what happened.', 'created': '2024-11-09 16:09:52', 'submission_id': '1gnarzk'}
{'comment': 'Agree in part - what Biden achieved will make the middle class stronger for decades. His work really has been extraordinary. For me the problem was the messaging from the WHouse. They just weren’t great communicators, and unfortunately the US population is no longer well versed in Civics or history to see that without explanation.', 'created': '2024-11-10 00:11:57', 'submission_id': '1gnarzk'}
{'comment': 'We can’t. When things go south they will continue to blame their scapegoats. They will never take accountability for themselves.', 'created': '2024-11-09 16:41:51', 'submission_id': '1gnarzk'}
{'comment': 'We outnumbered the morons in 2020 because we literally went door to door, handed ballots to people, and then picked them up and delivered them to the ballot boxes for them. COVID let us do that. Too many states all but destroyed mail voting', 'created': '2024-11-09 17:26:45', 'submission_id': '1gnarzk'}
{'comment': "Joe Manchin cost Democrats the election, his insistence that the extra $300 a month people got for newborns and $250 a month for every child between 1-17 be ended cost the election. If people were getting that inflation would've been much less a problem and the monthly reminder that the Government was helping would have buoyed feelings about the economy and direction of the country.", 'created': '2024-11-09 21:02:13', 'submission_id': '1gnarzk'}
{'comment': 'Thanks! Everything will work out, you’re right! Humans are smart and will never let you down.', 'created': '2024-11-09 16:32:53', 'submission_id': '1gnarzk'}
{'comment': "Bit of a Catch-22 in that. If the Democratic Party changes in such a way as to specifically appeal to Trump supporters, how will that change impact the current membership? I certainly won't support the existence of another cult of personality, nor contribute to more intentional misinformation being vomited into the world for personal gain, regardless of the intentions for doing so.\n\nThese lies and this spread of hate are a poison that is killing a nation. Better to only have to put up with one of those festering piles than bring another into being.", 'created': '2024-11-10 04:05:07', 'submission_id': '1gnarzk'}
{'comment': 'Cool.', 'created': '2024-11-09 21:56:01', 'submission_id': '1gnarzk'}
{'comment': "I agree. They are, to use their own language, the biggest cucks I've ever seen in my whole entire life. I think Nick Fuentes may actually be a virgin. I'd say that about Andrew Tate too if he weren't on trial for rape.", 'created': '2024-11-09 22:33:40', 'submission_id': '1gnarzk'}
{'comment': "It's not ridiculous, I'm surrounded by these people.", 'created': '2024-11-09 15:32:05', 'submission_id': '1gnarzk'}
{'comment': 'I live in Florida. Trust me that they believe all of it. And they love to believe it. It feeds their needs and their anxieties.', 'created': '2024-11-09 19:27:58', 'submission_id': '1gnarzk'}
{'comment': "They know exactly who the man they voted for is. Even if they themselves aren't vindictive assholes, they're sure fine with having one in office.\n\nAs long THEY are fine, or they assume they are.", 'created': '2024-11-09 18:41:44', 'submission_id': '1gnarzk'}
{'comment': "This extrme minorioty of very loud people will vote for him if the sun goes out. He got the same number of votes in 2020 and 2024. What was different? We won in 2020 because we more people voted against him than for him. We lost in 2024 because we drove away everyone but ourselves, and we didn't outnumber them. We need to appeal to people other than ourselves. Kindly consider that.", 'created': '2024-11-09 16:09:29', 'submission_id': '1gnarzk'}
{'comment': 'Stop with that. I made my calls and gave my donations.', 'created': '2024-11-09 20:35:31', 'submission_id': '1gnarzk'}
{'comment': 'I’m convinced the uptick in posts like yours is some Russian psy op shit.', 'created': '2024-11-09 20:38:38', 'submission_id': '1gnarzk'}
{'comment': 'Kamala: "Here\'s several ways I intend to address your economic concerns. If you want a deep dive into the specifics, I have a novella-sized economic document that goes into great detail."\n\nTrump: "I WILL FIX IT WITH TARIFFS." \n\nVoters: "I like your words, Tariffman."', 'created': '2024-11-09 18:18:23', 'submission_id': '1gnarzk'}
{'comment': 'No argument here. I also believe the media failed. Not in promoting Biden, that’s not their job. But in reporting the news. When huge percentages of Americans don’t know inflation is dow, the stock market is up, and crime is down, that’s a media failure.', 'created': '2024-11-10 01:09:39', 'submission_id': '1gnarzk'}
{'comment': 'Well yeah, Manchin Is a useless Republican mole. Everybody knows that.', 'created': '2024-11-09 21:58:19', 'submission_id': '1gnarzk'}
{'comment': 'It wasn’t ended though. They just went back to it being done with the yearly tax return afaik.', 'created': '2024-11-09 23:33:17', 'submission_id': '1gnarzk'}
{'comment': 'Yes, thank you for that reply that wasn’t sarcastic at all.', 'created': '2024-11-09 17:16:04', 'submission_id': '1gnarzk'}
{'comment': 'Democrats can’t win them. They shouldn’t target them and they shouldn’t be getting in bed with the Chennys of the world either. Target the 20 mil that didn’t vote this time and the other hundreds of millions that didn’t either.', 'created': '2024-11-10 07:47:47', 'submission_id': '1gnarzk'}
{'comment': "My county voted almost entirely for Trump. At this point I'm gonna just assume everyone I see is the enemy and a disgusting piece of shit.", 'created': '2024-11-09 16:44:27', 'submission_id': '1gnarzk'}
{'comment': 'same. i see them every day', 'created': '2024-11-09 16:13:22', 'submission_id': '1gnarzk'}
{'comment': 'My comment agrees with you. I’m saying we need to quit assuming every Republican believes what the loud minority believes.', 'created': '2024-11-09 16:15:16', 'submission_id': '1gnarzk'}
{'comment': "Meanwhile the people who voted for Tariffman don't know how tariffs work. Many of them think the countries the imports come from are the ones that pay the expenses. Hell, even Trump might think that's how they work since he thought Mexico would be the ones paying for the border wall. 🤦\u200d♀️", 'created': '2024-11-09 21:19:25', 'submission_id': '1gnarzk'}
{'comment': 'Why use many words when few words do the trick?', 'created': '2024-11-09 22:25:49', 'submission_id': '1gnarzk'}
{'comment': "the extra $300 and $250 was ended it went back to the normal child tax credit the expanded one ended. I can't remember the exact number but this was only for households making like 80K a year or less.", 'created': '2024-11-09 23:50:28', 'submission_id': '1gnarzk'}
{'comment': "Both elections the Dems lost because they operated on the assumption that the average American was a fundamentally worthwhile, intelligent person.\n\nYou keep saying they need to change that. There's ONLY one direction to go from there; acknowledging the average person is an idiotic piece of burdensome garbage. \n\nIs that what you want?", 'created': '2024-11-09 18:08:34', 'submission_id': '1gnarzk'}
{'comment': 'same here, im outnumbered more than 10:1 by maga.\neverything is trump this and trump that and the "evil" democrats.', 'created': '2024-11-09 16:58:12', 'submission_id': '1gnarzk'}
{'comment': 'every day at work for me its nothing but worshipping trump.\nand if i dare say anything negative about trump, like me mentioning how their "facts" dont add up, they resort to "dont bring your politics into work" and go right back to worshipping trump again.\nthey are not rational level headed people, they are very primitive minded people, they love their religion and hate everyone outside of it...', 'created': '2024-11-09 16:30:09', 'submission_id': '1gnarzk'}
{'comment': '74 million people dressed up like garbage to prove us wrong', 'created': '2024-11-09 19:13:18', 'submission_id': '1gnarzk'}
{'comment': "I basically have a small number of family left in my life now. That's it. We're all Democrats. Those are the only people in my life I care about. It's me and mine at this point. I think that's the attitude everyone has to adopt going forward. You can no longer trust anyone else. I sure as hell wouldn't trust a Republican. They are literally the enemy. Anyone who would vote Republican is the lowest form of human scum on the planet as far as I'm concerned.\n\nAgain, if people wanna say - that makes me as bad as the MAGA people - fine knock yourself out. This is our country now. I no longer feel safe in it. I have my family who I know I can trust and that's it. And I'm done trying to save anyone else. I spent the last eight years doing all I could to prevent evil from taking over our country and I got my ass handed to me on Tuesday night.\n\nI'm done. I'm beaten and now it's time for me to protect those close to me and everyone who did their part in making this country worse can suffer all the worst as far as I'm concerned.", 'created': '2024-11-09 17:01:56', 'submission_id': '1gnarzk'}
{'comment': "His new pet capuchin won't stand by for that. Of course, how long will his new pet capuchin remain in the inner circle?", 'created': '2024-11-09 14:25:17', 'submission_id': '1gn9zkm'}
{'comment': 'So long as California has the ability to ban the sale of ICE vehicles, good luck trying to stop that train.\n\nI find it very hard to believe the Supreme Court would shatter every precedent and allow the federal government to regulate intrastate commerce. Even if they do, the Court cannot enforce its rulings so California should just say fuck you.\n\nCalifornia, please move the ICE vehicle ban up to 2025. Let’s test these motherfuckers.', 'created': '2024-11-09 16:49:46', 'submission_id': '1gn9zkm'}
{'comment': 'He won’t do anything.', 'created': '2024-11-09 15:20:05', 'submission_id': '1gn9zkm'}
{'comment': 'End the EV and piss off musk? I doubt it, but with #p01135809 anything is possible', 'created': '2024-11-09 16:07:48', 'submission_id': '1gn9zkm'}
{'comment': 'Yes, except Teslas of course. They will have a monopoly. I would rather ride a kids Hasbro inchworm from the 70s than a Tesla. Now thinking about it I miss my Big Wheel. I was super fast and never had to fill up.', 'created': '2024-11-09 18:37:55', 'submission_id': '1gn9zkm'}
{'comment': "It's a global market so no. And he's so fucking incompetent so American influence and power will only weaken more and more. It'll hurt but you can't stop it.", 'created': '2024-11-09 19:02:44', 'submission_id': '1gn9zkm'}
{'comment': 'No. They sell to well and even ford has a great electric F150 that has all the power of the gas one. The tech became very desirable. \n\nHe will however in an attempt to make his base think he’s tough he will place tariffs on the batteries that come from china and jack the costs of ev vehicles. All tech will be more expensive most likely.', 'created': '2024-11-09 22:13:29', 'submission_id': '1gn9zkm'}
{'comment': 'No. His bff Leon makes them, remember?', 'created': '2024-11-09 22:18:33', 'submission_id': '1gn9zkm'}
{'comment': 'Probably not with Musk in his ear.', 'created': '2024-11-09 22:56:56', 'submission_id': '1gn9zkm'}
{'comment': 'No. Because of Elon.', 'created': '2024-11-09 23:43:29', 'submission_id': '1gn9zkm'}
{'comment': 'I was thinking that as well. Trump whines about EVs, but is buddy-buddy with Musk.', 'created': '2024-11-09 14:28:02', 'submission_id': '1gn9zkm'}
{'comment': 'Elon lasts 6 months tops. Sooner if he gets more attention than the narcissist is comfortable with.', 'created': '2024-11-09 15:09:23', 'submission_id': '1gn9zkm'}
{'comment': 'I think Elon lasts longer than we all expect or want. His hold on media spaces where Trumpers thrive is really strong.\n\nA guy like RFK however, who he clearly needed only for votes, may never actually set foot in the White House', 'created': '2024-11-09 16:27:09', 'submission_id': '1gn9zkm'}
{'comment': 'You’re right. Republicans claim they want state rights…', 'created': '2024-11-09 17:01:47', 'submission_id': '1gn9zkm'}
{'comment': "Kinda like a country that had a state sanctioned vehicle called the People's Car? Volkswagen....", 'created': '2024-11-09 21:25:31', 'submission_id': '1gn9zkm'}
{'comment': 'I do think Democrats will win back Congress', 'created': '2024-11-09 19:03:43', 'submission_id': '1gn9zkm'}
{'comment': 'Indeed', 'created': '2024-11-09 22:58:56', 'submission_id': '1gn9zkm'}
{'comment': 'Lol', 'created': '2024-11-09 22:59:07', 'submission_id': '1gn9zkm'}
{'comment': 'This is the time for democrats to outsmart Trump.', 'created': '2024-11-09 23:01:34', 'submission_id': '1gn9zkm'}
{'comment': 'Ironically, conservatives think EVs are bad', 'created': '2024-11-10 01:02:23', 'submission_id': '1gn9zkm'}
{'comment': "You are Trump's friend only as long as you are useful to him. Then he discards you like a ripped, soggy paper towel.", 'created': '2024-11-09 14:41:35', 'submission_id': '1gn9zkm'}
{'comment': "haha... yeah, that won't last long. They will have a falling out, just like everyone he works with.", 'created': '2024-11-09 15:46:50', 'submission_id': '1gn9zkm'}
{'comment': 'Only after he’s shit and spit on the paper towel.', 'created': '2024-11-09 15:12:11', 'submission_id': '1gn9zkm'}
{'comment': 'Oh wow', 'created': '2024-11-09 16:03:56', 'submission_id': '1gn9zkm'}
{'comment': 'Yep, anyone, and I mean anyone doesn’t agree with him or brings bad news, gone!', 'created': '2024-11-09 20:45:04', 'submission_id': '1gn9zkm'}
{'comment': 'White cis women and white cis men elected king cheeto', 'created': '2024-11-09 15:32:20', 'submission_id': '1gn3b4z'}
{'comment': "But they'll complain later that you didn't vote the right way.", 'created': '2024-11-09 12:19:11', 'submission_id': '1gn3b4z'}
{'comment': 'I feel like this is the highest level of victim blaming mathematically possible', 'created': '2024-11-09 20:24:10', 'submission_id': '1gn3b4z'}
{'comment': '> They didn’t \n\nIt’s really difficult to escape an abusive relationship. \n\nAnd if they do get help and get away, some victims will blame their saviors and go right back to what they’ve come to know as normal.\n\nIt’s honestly heartbreaking…', 'created': '2024-11-10 09:21:51', 'submission_id': '1gn3b4z'}
{'comment': "Can't we please move on from the postmortems into the active resistance phase?", 'created': '2024-11-13 19:11:01', 'submission_id': '1gn3b4z'}
{'comment': "Maybe a problem was running so heavily on women's rights. Yes it's incredibly important but it's now up to the states. So in many states there isn't as much as a motivating force since the rights having been less diminished. \n\nAll the claims about IVF and contraception seem a little over the top. Yes there are Republicans who are against that but I don't think any really expects it to happen. They even offered to fund IVF to take the sails out of that argument.", 'created': '2024-11-10 06:10:48', 'submission_id': '1gn3b4z'}
{'comment': '\nBlame the women for the Trump win? WTF?', 'created': '2024-11-09 08:12:22', 'submission_id': '1gn3b4z'}
{'comment': "So did Latino men, don't leave them out.", 'created': '2024-11-10 05:04:39', 'submission_id': '1gn3b4z'}
{'comment': 'Well I guess that’s progress. At least it’s not just the “white cis hetero patriarchy” to blame now for all problems in this world. \n\nKeep it up. Maybe we win an election in 8 years.', 'created': '2024-11-09 23:11:43', 'submission_id': '1gn3b4z'}
{'comment': 'Have you read project 2025 or listened to pretty much anything from vance?\n\nThey’re done with the states rights excuse now and will force everything they can through federally. \n\nFortunately, strong blue states saw this coming and are already fortifying their responses.', 'created': '2024-11-10 09:13:05', 'submission_id': '1gn3b4z'}
{'comment': 'Or, blame the bet they made on there being much higher turnout from them. They would have won easily if they had gotten the largest voting demographic in the country to be behind them.\n\nThe campaign was entirely focused on women, black people and Immigrants. They were told their rights would be protected, that they would have a path to citizenship, that non-white business owners would be able to access grant funding. Home owners belonging to the 2nd largest (wealthiest and most powerful) demographic, were simply told to vote.\n\nIt was like teachers assigning homework and reminding all the other demos in the class how they were smart and hard working and can do anything when handing them the workbook... and then the white men were simply told it was due next Tuesday.', 'created': '2024-11-09 13:00:29', 'submission_id': '1gn3b4z'}
{'comment': 'Lol, nah they can just burn fuck em. \n\nNone of these mother fuckers read. \n\n\n "tArIfS wIlL hElP" HA! \n\n\n- Kamala doesn\'t connect with working class \n\n\n"Here\'s 25k for a home and Biden worked hard as hell to bring* back manufacturing"\n\n\n- he\'ll pardon the j6 political prisoners \n\n\nHAHAHA! This orange mother fucker already got his cultists killing themselves cause he ain\'t pardoning them. \n\n\nThese are gonna be the funniest 4 god dam years of my life.\n\nEdit: unlike the red states I fix my mistakes, fixing those typos', 'created': '2024-11-09 23:24:00', 'submission_id': '1gn3b4z'}
{'comment': 'Right? How dare the Dems campaign on the scary shit that the Far Right want to do that affects a cross-section of society and expect them to be concerned and respond reasonably? \n\nWas it the Japanese PM that said Americans were stupid and lazy back in the 80s? I am coming around to the notion that he may have had a point.', 'created': '2024-11-10 16:23:04', 'submission_id': '1gn3b4z'}
{'comment': '', 'created': '2024-11-09 23:27:23', 'submission_id': '1gn3b4z'}
{'comment': ">Or, blame the bet they made on there being much higher turnout from them.\n\nWhy not blame the weaponized use of fascist rhetoric? Which probably would have been effective against any other policy issue you wanted Democrats to feature instead. \n\nAfter 8 years of Trump, people were just not listening anymore. Either they were radicalized by him. Or too confused by the tsunami of misinformation they've endured.", 'created': '2024-11-12 18:38:39', 'submission_id': '1gn3b4z'}
{'comment': 'Yeah. The large majority of voters. How crazy am I?', 'created': '2024-11-10 02:13:39', 'submission_id': '1gn3b4z'}
{'comment': "I'm not saying you can't. I'm saying they didn't. Shots were fired, and few landed.\n\nMeanwhile, we could have done much better on many issues and demographics. Wake up!", 'created': '2024-11-12 18:43:46', 'submission_id': '1gn3b4z'}
{'comment': 'Haitians eat cats"\n\n- how to appeal to white people in 2024', 'created': '2024-11-10 02:15:10', 'submission_id': '1gn3b4z'}
{'comment': 'I think weaponized fascist rhetoric is more powerful than you believe it to be.', 'created': '2024-11-12 18:44:52', 'submission_id': '1gn3b4z'}
{'comment': 'Or, just keep saying the word "economy".', 'created': '2024-11-10 02:18:50', 'submission_id': '1gn3b4z'}
{'comment': 'You have no idea how fucked I believe we could be. Weaponized is the focus word, believe me I know.', 'created': '2024-11-12 18:47:11', 'submission_id': '1gn3b4z'}
{'comment': 'Lol sure \n\n16 Nobel Prize-winning economists say Trump policies will fuel inflation\n\nHA! Omfg these 4 years are gonna be a god dam riot.\n\n\nbbbut the economy. That shit gonna crash under king Cheeto and my privileged ass is going to love it.', 'created': '2024-11-10 04:07:18', 'submission_id': '1gn3b4z'}
{'comment': "Yep. Now it's time for fascism stage two. Take full control of the government.\n\nDoesn't look very promising. ☹️", 'created': '2024-11-12 19:18:52', 'submission_id': '1gn3b4z'}
{'comment': "If the sharks don't beat you to it.", 'created': '2024-11-10 04:08:39', 'submission_id': '1gn3b4z'}
{'comment': '', 'created': '2024-11-10 04:12:16', 'submission_id': '1gn3b4z'}
{'comment': 'You know what they say about people who bring up race, right?', 'created': '2024-11-10 04:18:39', 'submission_id': '1gn3b4z'}
{'comment': '', 'created': '2024-11-10 04:20:25', 'submission_id': '1gn3b4z'}
{'comment': 'You are expelling the majority of American voters and trying to understand why you lost an election at the same time.', 'created': '2024-11-10 04:21:43', 'submission_id': '1gn3b4z'}
{'comment': "And I'm laughing about it. Here's another gif\n\n", 'created': '2024-11-10 04:24:21', 'submission_id': '1gn3b4z'}
{'comment': "I'm in college. Strongly considering changing my major to political science/studies and getting my ass involved. I feel fired up, angry, wanting to actually DO something for once.", 'created': '2024-11-09 09:23:22', 'submission_id': '1gn35ax'}
{'comment': "Founders gave states broad powers to govern for a fucking reason\n\nMove to blue states if you can.\n\nToo many blue states had too many districts go red this election.\n\nLet's save what we have. Weather the storm.\n\nI'm very privileged to already be in a blue state.\n\nI know not everyone can but IF you can consider teaming up with family and friends who also want OUT.\n\nif blue states stopped subsidizing red states....we could would win the economic war immediately.", 'created': '2024-11-09 10:19:49', 'submission_id': '1gn35ax'}
{'comment': 'Finally some balls in the fight! Let’s go!', 'created': '2024-11-09 06:40:28', 'submission_id': '1gn35ax'}
{'comment': "Let's do this. State independence and protect democracy.", 'created': '2024-11-09 08:08:01', 'submission_id': '1gn35ax'}
{'comment': "Don't forget this: [https://alumni.umich.edu/michigan-alum/hacking-the-vote/](https://alumni.umich.edu/michigan-alum/hacking-the-vote/)", 'created': '2024-11-09 10:35:16', 'submission_id': '1gn35ax'}
{'comment': "Secession is a trap. Don't try it-that's what they want. But by all means, turn the tables on states' rights advocates and use federalism to the fullest extent. Capitalize on federal court rulings that MAGA intended to kneecap the Biden Admin. State governments should protect their citizens wherever the fed-gov can no longer be relied upon to do so.", 'created': '2024-11-09 18:32:06', 'submission_id': '1gn35ax'}
{'comment': 'Break from the Union. Send all MAGA’s to red states. (Make extreme liberal laws that make them want to leave)', 'created': '2024-11-09 17:27:13', 'submission_id': '1gn35ax'}
{'comment': 'Most people I know went all red direction. Because of the extreme liberal bullshit.', 'created': '2024-11-09 22:32:57', 'submission_id': '1gn35ax'}
{'comment': 'It’s good to do something you are passionate about as long as it keeps the lights on.', 'created': '2024-11-09 18:30:58', 'submission_id': '1gn35ax'}
{'comment': 'As a liberal currently hating my Floridian existence, I agree. These assholes deserve to be cut off. They keep voting against national funding for emergencies…\n\n\n…give them what they want.', 'created': '2024-11-09 20:44:26', 'submission_id': '1gn35ax'}
{'comment': 'Absolutely 💯', 'created': '2024-11-09 10:43:57', 'submission_id': '1gn35ax'}
{'comment': "Translation: most people he knows when full-on fascist, because they don't like liberal democracy", 'created': '2024-11-12 16:25:48', 'submission_id': '1gn35ax'}
{'comment': 'Move to GA to turn it blue? Or go to a blue state and bring any blue friends and get blue states more EVs.', 'created': '2024-11-10 02:51:02', 'submission_id': '1gn35ax'}
{'comment': "I'm going to miss him. Wish I could move to Minnesota.", 'created': '2024-11-09 06:53:38', 'submission_id': '1gn33a6'}
{'comment': 'Now he need to get off X\n\nStop enabling Elon', 'created': '2024-11-09 07:22:47', 'submission_id': '1gn33a6'}
{'comment': "Frankly, Tim, I'm more worried that there won't be another election. :/", 'created': '2024-11-09 17:46:08', 'submission_id': '1gn33a6'}
{'comment': 'This was really needed. Thanks, Tim.', 'created': '2024-11-09 07:22:01', 'submission_id': '1gn33a6'}
{'comment': 'Wish these people would add, "Get off twitter, find a new platform, we won\'t be using this one anymore"', 'created': '2024-11-09 08:18:31', 'submission_id': '1gn33a6'}
{'comment': 'Tim Walz 2028', 'created': '2024-11-09 16:23:00', 'submission_id': '1gn33a6'}
{'comment': 'Such an incredible run. Sadly, the uneducated population out voted us.', 'created': '2024-11-09 14:30:03', 'submission_id': '1gn33a6'}
{'comment': 'One of the main problems has been that Americans have been TAUGHT IGNORANCE: The school system should be obliged to teach SOCIAL STUDIES instead of doctored religion-fairy tales. People were let down in many ways, one of them being ignorance of how the society works ....', 'created': '2024-11-09 09:37:53', 'submission_id': '1gn33a6'}
{'comment': 'I believe he could win the Presidency. I know we’re all in a very dark place and terrified for the next four years and there’s a lot of unnecessary but unavoidable finger pointing right now but, remember this: our bench of young or young’ish talent is much deeper than theirs: Walz, Whitmer, Shapiro, Bashear, Polis, Newsom, and keep an eye on Healey in Massachusetts. I think our next pick for Prez should be a Governor but beyond that our bench is even deeper. Outside Trump there are zero people in MAGA leadership that I can think of that have the personality (gross but I guess) to appeal to most voters. They’re all sycophants to their MAGA king.', 'created': '2024-11-09 22:33:56', 'submission_id': '1gn33a6'}
{'comment': 'Maybe I need to move to Minnesota. I also really liked Vermont.', 'created': '2024-11-10 03:11:12', 'submission_id': '1gn33a6'}
{'comment': 'Thanks grandpa Tim', 'created': '2024-11-09 11:47:46', 'submission_id': '1gn33a6'}
{'comment': 'Too late.', 'created': '2024-11-09 17:42:48', 'submission_id': '1gn33a6'}
{'comment': 'Could we have beat Trump if he was on the top of the ticket?', 'created': '2024-11-09 19:45:22', 'submission_id': '1gn33a6'}
{'comment': 'Ditch Twitter.', 'created': '2024-11-09 20:29:14', 'submission_id': '1gn33a6'}
{'comment': "Nah, I'm good.", 'created': '2024-11-09 23:44:13', 'submission_id': '1gn33a6'}
{'comment': 'Delete Twitter/X\n\nJoin bsky.app', 'created': '2024-11-09 23:44:51', 'submission_id': '1gn33a6'}
{'comment': 'I love that guy 😭', 'created': '2024-11-10 01:24:34', 'submission_id': '1gn33a6'}
{'comment': "Tip text:\n\nThis was a do-or-die election for Trump, prison, and Republicans. And for experience with infiltration and questionable schemes they had Peter Thiel at hand. One firmware hack per COLLATION system = the rigged elections they have claimed since 2015.\n\nSaturday morning updates from Bloomberg and Reuters: Trump is at 74,173,616. Similar to 2020. Harris stands at 70,259,160 = 11 million fewer votes than Biden in 2020 = minus 13.5% = a collapse for Democratic Party GOTV.\n\nOTOH: Abortion amendments were not affected. Florida is shocking with 6,066,081 votes for Amendment 4 but only 4,677,502 tallied for Harris at the COLLATION machines.\n\nResults at the battleground states are fundamentally uniform. Not set up like Texas and Florida. Set up almost exactly like each other, excepting Arizona.\n\nhttps://preview.redd.it/36aeiwqhczzd1.jpeg?width=485&format=pjpg&auto=webp&s=3672b9a90f9ec67d6bd8894cfa1da90f2b95c302\n\nPolling READER machines directly = avoid COLLATION hacks\n\nEvidence from a panicky cover-up remains in plain view at Wikipedia. Pages that display Voter Registration Totals by state and by party with one table per election year have been removed. The usual reference links have also been eliminated.\n\nThis was not a Fruit Loop sitting in Mommy's basement. Both the infiltration hack and Wiki took professional skills.", 'created': '2024-11-10 02:50:47', 'submission_id': '1gn33a6'}
{'comment': 'He was the step dad we needed, and deserved.', 'created': '2024-11-10 02:54:48', 'submission_id': '1gn33a6'}
{'comment': 'Thank you, Coach!', 'created': '2024-11-10 05:10:14', 'submission_id': '1gn33a6'}
{'comment': "Jesus christ - stop using fucking Twitter. It's one of the easiest things we can all do. Support democracy? STOP using Twitter.\n\nAll dems should abandon it", 'created': '2024-11-09 17:06:50', 'submission_id': '1gn33a6'}
{'comment': "The last line makes me think he isn't going anywhere.", 'created': '2024-11-09 07:21:09', 'submission_id': '1gn33a6'}
{'comment': "Well there's alternatives but they just didn't pan out, so if you wanna put your message out via social media Twitter is still the best option no matter how trash it is, that's why virtually every politician still uses it daily, it might not be popular here, but it is for millions of others", 'created': '2024-11-09 08:43:15', 'submission_id': '1gn33a6'}
{'comment': "With all the celebrity support Harris had, it'd be easy for them to force a mass exodus off Twitter. Their fans would follow them, and if it becomes trendy, many others will follow. There are already viable alternatives. Maybe not better with all the algorithm stuff, but at least not run by a bigoted fascist personally spreading hateful propaganda.\n\nSeriously, celebrities, athletes, tons of influencers, politicians, if even a small fraction start the trend, it'll likely not take long to crush twitter into irrelevance.", 'created': '2024-11-09 08:22:12', 'submission_id': '1gn33a6'}
{'comment': 'As much of a dick as Elon is, it’s a dumb idea for any politician to get off of social media. You need as much public outreach as possible, and Twitter is an insanely political platform.', 'created': '2024-11-09 08:24:22', 'submission_id': '1gn33a6'}
{'comment': 'This was the right message. Everyone feels a bit deflated, and he understands it’ll take some time to recover. \n\nMy family in Illinois was a bit frustrated with Biden’s post-election message. Touting America has the best economy, doesn’t help after a massive blow.', 'created': '2024-11-09 12:36:46', 'submission_id': '1gn33a6'}
{'comment': "I get downvoted for saying it, but why any progressive or liberal people are still on there is a complete fucking mystery to me. Just stop using it. We don't need it", 'created': '2024-11-09 17:35:24', 'submission_id': '1gn33a6'}
{'comment': 'That segment of the population is growing rapidly. Too bad that the Democrats will have to " dumb down" their next campaign.', 'created': '2024-11-09 15:17:34', 'submission_id': '1gn33a6'}
{'comment': 'I think with a full campaign he could have, 3 months was not long enough', 'created': '2024-11-09 23:37:31', 'submission_id': '1gn33a6'}
{'comment': "I know he's staying as MN Governor. But I'm in Tennessee. He won't be my Governor.", 'created': '2024-11-09 07:25:32', 'submission_id': '1gn33a6'}
{'comment': 'Waltz/Allred 28!', 'created': '2024-11-09 14:03:40', 'submission_id': '1gn33a6'}
{'comment': 'They can go to Bluesky.', 'created': '2024-11-09 15:00:52', 'submission_id': '1gn33a6'}
{'comment': 'Agree.', 'created': '2024-11-09 21:48:24', 'submission_id': '1gn33a6'}
{'comment': "I don't know, I WANT to believe that we educated ourselves. Even those of us without a college degree.", 'created': '2024-11-10 00:04:18', 'submission_id': '1gn33a6'}
{'comment': 'I think he is in his second term as governor so that would only be 2 years of that term left. The last line implies he isn’t retiring from politics after his term ends. \n\nHe’d be a great boost to the US Senate with his knack for calling BS and his genuine concern for others.', 'created': '2024-11-09 08:11:56', 'submission_id': '1gn33a6'}
{'comment': "This. Twitter isn't some unique place where it's the *only* game in town like Youtube still kind of is. If people continue to exodus from it, it just... goes away.", 'created': '2024-11-09 15:37:46', 'submission_id': '1gn33a6'}
{'comment': "Minnesota does not have term limits for governors. \n\nThat said, I do not think he's going to run for a third term. I do believe he will strongly consider a 2028 presidential run. And I really hope people don't hold this loss against him. People barely got to know Kamala in her own right, much less Gov. Walz.", 'created': '2024-11-09 08:31:35', 'submission_id': '1gn33a6'}
{'comment': "After his loss here I had never considered him as someone that might run in 2028, but damn. A Walz headed campaign? Everyones already heard all the tired old bullshit against him so I don't know if you can swiftboat someone twice. He might actually be an awesome candidate for it.", 'created': '2024-11-09 15:36:29', 'submission_id': '1gn33a6'}
{'comment': "So many people get all their news from Fox, and it's on all day. I go to the gym, and that's what's on the treadmill TV, and the large TV as well. And I live in a blue state. When I listen to it, which is not often, I can feel my brain cells leaking out of my ears. But most of the country listens to it constantly. The Dems need something to counteract this verbal diarrhea that has taken over the country, if they have any hope of getting their message across.", 'created': '2024-11-09 06:44:10', 'submission_id': '1gn2ujc'}
{'comment': 'Listening to the reasons people say they voted for him has been shocking. The lies and misinformation aren’t new but it’s the lack of legitimate reasons from so many voters (so far zero legitimate reasons) and the wide range of lies that set this apart from other rampant misinformation. \n\nIt’s also distracting from the other question. What else could have contributed to his win? The total number of votes he received did not really change much, but the number of votes Harris received compared to Biden indicates there might be more to it than the lies and misinformation his voters based their votes on. \n\nHis 2020 election lies sparked “Election Integrity” legislation in a lot of red states in 2021 and some in 2022, all with the same claim that those changes were necessary to restore voters’ faith in elections. The fact that there wasn’t any evidence of widespread voter fraud (and there were definitely votes for Trump with the handful of voter fraud cases) or the fact recount after recount proved it was a free and fair election should have been enough to prove “election integrity” but that is not what politicians pointed to. Those “election integrity” changes deserve a closer look to check for any that caused voter suppression. \n\nThere were also groups of volunteers that spent up to the past 3 years submitting dozens of voter roll challenges at a time to county election boards in counties across the country by using party affiliation on voter rolls while claiming their goal was “election integrity”.', 'created': '2024-11-09 06:45:50', 'submission_id': '1gn2ujc'}
{'comment': 'The self-confessed illegal immigrant currently doing the most damage to our country is Elon Musk. How dangerous is this man now that he’s sitting in on calls to heads of state?', 'created': '2024-11-09 15:41:53', 'submission_id': '1gn2ujc'}
{'comment': "We need to think in terms of consumer behavior. People aren't selecting candidates based on anything but brand loyalty", 'created': '2024-11-09 12:13:13', 'submission_id': '1gn2ujc'}
{'comment': "Because there isn't a single reason why he won, it's a combination of a lot of long term plans the republicans had to expose America for what it is, a bunch uninformed, overemotional dipshits", 'created': '2024-11-09 07:01:35', 'submission_id': '1gn2ujc'}
{'comment': 'Trump TV AKA Fox cleaned his every word salad and had it kind of make sense. Thanks Rupert!', 'created': '2024-11-09 08:19:20', 'submission_id': '1gn2ujc'}
{'comment': "This makes a good point about the right-wing media reach being larger than we think. It's also way too easy for them to control discourse by forcing us to spend time responding to a lie. We get forced into talking about what they want, because otherwise the lie would go unchallenged.\n\nAs another example, I have family members who vehemently assure me they don't read Fox News or NY Post because they know it's biased, yet they sometimes repeated Fox-originated lies they somehow learned about Harris elsewhere. So it clearly permeates far beyond Fox.", 'created': '2024-11-09 07:28:20', 'submission_id': '1gn2ujc'}
{'comment': 'But how to fix it?!', 'created': '2024-11-09 07:06:57', 'submission_id': '1gn2ujc'}
{'comment': "A lot of rich men paid a lot of money to people who understand disinformation to spread disinformation so they can get richer. At least that's what I assumed.", 'created': '2024-11-09 15:24:43', 'submission_id': '1gn2ujc'}
{'comment': 'The answer is it’s everything. Democratic messaging, Kamala Harris’ unpopularity, misinformation, the economy, the perception of the economy, polarization, different ads, memes, podcasts etc etc. There is no *one* reason Trump won. It’s all of the above.', 'created': '2024-11-09 13:56:44', 'submission_id': '1gn2ujc'}
{'comment': "Racism/sexism and ppl thinking the economy is dogshit, that's it, Trump will tank the economy and dems will get a trifecta next cycle, my only advise is don't run a woman again this country is too ignorant right now for that", 'created': '2024-11-09 10:26:30', 'submission_id': '1gn2ujc'}
{'comment': 'This is exactly the crux of the issue. I’m glad some is pointing it out. Any other analysis without first acknowledging this is futile.', 'created': '2024-11-09 12:35:21', 'submission_id': '1gn2ujc'}
{'comment': 'We should boycott Fox News advertises. They destroyed democracy', 'created': '2024-11-09 13:13:52', 'submission_id': '1gn2ujc'}
{'comment': 'All the people who voted for him are reveling in the Fuck Around phase. I will relish the days when their faces are eaten by the face eating leopards in the brutal (and well deserved) Find Out phase.', 'created': '2024-11-09 14:54:13', 'submission_id': '1gn2ujc'}
{'comment': 'Most people who admit voting for Trump at least partially claim it was because Democrats didn’t repair the damage he did economically in his first term fast enough.\n\nIf he increases **import taxes** (“tariffs”) as he says he will, prices will shoot up. If people don’t complain about those higher prices we will know they’re lying about their motivations.', 'created': '2024-11-09 18:01:54', 'submission_id': '1gn2ujc'}
{'comment': 'Important to point out, but it’s so important for us as an electorate to stay informed right now. I don’t want to double down in the liberal bubble I like to live in, but I want reliable news sources. Can we get a list of reputable sources for information in this era.', 'created': '2024-11-09 13:51:09', 'submission_id': '1gn2ujc'}
{'comment': 'Well Elons $120 million helped. Stop buying Teslas and sell your Tesla stock.', 'created': '2024-11-09 20:37:36', 'submission_id': '1gn2ujc'}
{'comment': 'the reason why he won is because most people in this country are fucking stupid. dangerously dumb and dragging the rest of us down with them in their moronic crab pot.\n\ni hope the worst for them and will delight in their distress.', 'created': '2024-11-09 16:07:19', 'submission_id': '1gn2ujc'}
{'comment': 'That he CHEATED and hasn’t been caught yet? \n\nNot to conspiracy peddle but he has literally been practicing for this and we all know practice makes perfect. He is incompetent and the least popular president ever and he swept EVERY SINGLE SWING STATE, the first Republican Prez in a generation to win the Popular vote AFTER LOSING IN 2020 and losing almost every endorsed candidate in 2022, and he accomplished that all as ONLY the SECOND president in some 130 years to rerun and get elected! Wtf!? If that isn’t a one-in-a-million statistical anomaly, I dont know what is…. That should trigger your spidey sense.\n\nYou ever see the dumb kid in class cheat on a test and get 100%? They’re incapable of that. For the moment they get away with it but everyone knows something is up. Its TOO PERFECT. That’s where the mistake unravels… We can all feel it in our bones. DONT BELIEVE ME. Just let that possibility marinate in your soul and check back in with yourself later. I’m right. Same as how that teacher knows ‘there is no frickin way!’\n\nWhen someone is backed in a corner with nothing to lose they will take extreme measures and come out fighting — that combined with an ego that is willing to do anything to win! Think about it. He HAD to win for legal cover, he had NO choice. His future and legacy literally depends on it. \n\nThis is all a recipe for disaster that would coincidentally look something exactly like this current situation. We were duped. For now…\n\nThere is a well ESTABLISHED PATTERN ✅ of criminal behavior. There is a CLEAR MOTIVE. ✅The suspect has the MEANS ✅and network of loyalists to carry it out and the OPPORTUNITY ✅to accomplish said crime. \n\n✅✅✅✅ \n\n🤷🏼\u200d♂️ What more do you need? Thats not conspiracy thats facts.', 'created': '2024-11-09 12:35:32', 'submission_id': '1gn2ujc'}
{'comment': 'Because everyone "thinks" they know why. Everyone is an expert, just like they were all experts before the election, and were all wrong. I\'m a 60-year-old "boomer" democrat and I can tell you why I think we lost. \n \n1. The border. When asked about open borders, our side deflects, and instead talks about the cruel policies of Trump, racism, the plight of people looking for a better life or to escape a dangerous country, but we never answer the question straight up!! Two things can be true at the same time. (1) We can believe America is the land of opportunity, send us your weak etc. (2) And, we need have strict strong border enforcement policies, and openly state that it should be a priority. We waited until the last minute to do something and by that time it looked disingenuous and even though Trump killed it, the people saw right through democrats and knew it was a political stunt rather than an important issue to the party running wanting to run the country.\n\n2. Abortion. When asked if it\'s okay to abort a baby in the 3rd trimester or even "after being born" (as Trump claimed) when the mother and child are both healthy and viable, we once again deflect, talk around the subject, point to the hypocrisy of the GOP blah blah blah. And by doing so, people heard the answer as "yes, we believe a healthy woman should be able to murder a healthy child who is viable outside the womb in the 3rd trimester or even after birth". Dodging the obvious answer is the same as saying yes it\'s okay and we democrats are okay with it. And once again two things can be true at once (1) we support a womans right to choose" while also saying that we don\'t support murdering an infant in the 3rd trimester if both the mother and child are healthy and there is not risk. \n\n3. Voter ID\'s. Why is this still a topic? How many voters do you think are out there clamoring to vote but don\'t have a freaking ID, c\'mon this is stupid! Guess what my fellow dems, those same fictitious voters you claim exist, are walking around with an iPhone and talking to ChatGPT and streaming movies! If they\'re sophisticated enough to utilize modern tech, and sophisticated enough to understand the topics we\'re voting for, then they\'re sophisticated enough to get an ID!! By arguing against this, we push people to the right because it sounds like we want undocumented people to vote for us, as the GOP falsely claims. \n\n4. Trans issues. I know this is a complex and sensitive topic, and affects very few people, but it is held up by the MAGA cult as evidence of all other crazy claims they make. Can\'t we at least directly answer the basic question of whether or not a big burley looking man who appears to be a cisgender male claiming to be a female, shouldn\'t be allowed in a women\'s Lockeroom or bathroom, and say it out loud when we answer? Can\'t we agree on the idea that a male who spends his life competing as a male and decides at the college level to come out as trans should not be able to use the body he created as man to compete against women? Again, this is so rare it\'s ridiculous to even have to ponder, but this is how they paint us into a corner and by not saying we don\'t support that one miniscule example we confirm their claim, which flies in the face of our other claim of supporting women and Section 8 and all of the other things feminists fought to win. We can state we don\'t agree with this one example while still supporting all other trans and LGBTQ issues. \n\nWe need more Bill Clinton, Barak Obama, Jon Stewart, and Bill Mahar types of straight-talking democrats who aren\'t afraid to answer the questions head on even when it\'s uncomfortable and appears contradictory to our message of inclusion. Our "woke agenda" is so scary to them that the same people who voted for Obama and then Biden in 2020, ran into the arms of Project 2025 and it\'s serial sexual assaulting criminal insurrectionist who openly support the most radical right wing racist misogynistic xenophobic positions I\'ve seen in my 60 years. Let that sit for a while. How BAD is our message that this is even possible? It\'s time to look in the mirror people.', 'created': '2024-11-09 14:04:25', 'submission_id': '1gn2ujc'}
{'comment': 'it\'s one of several reasons. to me, the real reason is us harris voters and supporters (i\'m an independent) were blinded by the hype of record voter registration. "look at all the women and young voters." derp, totally forgot that there\'s no guarantee they would vote our way lol.\n\nin hindsight, harris needed to finish strong on democrats weak points. the economy and border. not abortion and democracy. there was no reason to. the base would have supported those regardless. listing a bunch of policies that need congress didn\'t move the needle. going after price gouging. cool. give details. best guess to when prices will start going down. and then she just delegated the border issue to the bill. not good enough. again, need details. even if it\'s making constant trips to the border. finish strong on the weakest parts.\n\nshe definitely finished strong on abortion and democracy. the horror stories since dobbs. "we trust women." maga\'s constant gaffes against women. the oath and honor of the president. character. "promise of america." i think back to some youtube comments of people typing "i grew up in the middle class." i dismissed it as trolls. turns out they weren\'t necessarily and were trying to say they didn\'t care...implying they want more revealed with the economy and border agenda. ignoring them was costly.\n\ntrump got by with "concepts" because he\'s not the incumbent and he had a term that wasn\'t ravaged by a global disaster. it was an easy choice between two people talking in word salads to what concerned voters the most.', 'created': '2024-11-09 08:24:17', 'submission_id': '1gn2ujc'}
{'comment': 'I get it. 2004 – our polling place was in a hotel. In the lobby, inside the 100-foot electioneering distance markers, all the TVs tuned to FOX (ahem) News. I asked hotel mgmt to change to weather, called local DNC, nothing. We’ve been accepting this, FOX everywhere for 25 years. I can’t stick my head in the sand but can’t stand the sucking noise either.', 'created': '2024-11-09 18:08:33', 'submission_id': '1gn2ujc'}
{'comment': 'In Nashville we have NPR. Conservatives have 5 channels, not including the church channels that tell people to vote with conservatives of which there are 6 more channels on the radio. This is the difference.', 'created': '2024-11-09 20:17:50', 'submission_id': '1gn2ujc'}
{'comment': 'Trump “won” because one half of the American electorate can’t bring themselves to vote for a woman.', 'created': '2024-11-09 08:38:30', 'submission_id': '1gn2ujc'}
{'comment': 'We do. The real reasons were racism, sexism, and hate.\n\nAll the propaganda does is foment those things. \n\nThe bigotry is the root problem. We know.', 'created': '2024-11-09 17:43:05', 'submission_id': '1gn2ujc'}
{'comment': 'It’s racism, with a healthy dose of sexism thrown in.', 'created': '2024-11-09 09:49:58', 'submission_id': '1gn2ujc'}
{'comment': '"Why does no one understand" is delusional nonsense. Lots of people know that the right wing media is popular, influential, and a problem. Articles much older than his have covered this. There are also studies about about how people on the right are almost exclusively the ones with worldviews based on their own bullshit that no one else is stupid enough to believe.\n\nOh, and he hasn\'t even gotten to social media yet?! If not him, then who?! Please, get to social media now! I have to know its influence!!!\n\nFor fuck\'s sake. Is he somehow the one person in politics who spends too much time offline and needs to leave the grass alone?\n\nHey guys, did you know that you can play music on your MySpace page? And not just midis!', 'created': '2024-11-09 09:12:27', 'submission_id': '1gn2ujc'}
{'comment': "I've posted this in other threads and will keep posting it.\n\nIt was, and has been, an info war and the Dems lost badly, again.", 'created': '2024-11-09 17:56:44', 'submission_id': '1gn2ujc'}
{'comment': 'He rigged it lol and you’re telling me the dude who lost the popular vote twice magically won all the swing states and the popular vote? Nah', 'created': '2024-11-09 12:54:13', 'submission_id': '1gn2ujc'}
{'comment': 'Well, and the fact that people are trained from birth to be on a team… the community bubble is real as well.', 'created': '2024-11-09 13:43:34', 'submission_id': '1gn2ujc'}
{'comment': 'This is 100% correct. Media bubbles are very real in this country.', 'created': '2024-11-09 14:20:24', 'submission_id': '1gn2ujc'}
{'comment': 'So in future cycles Dem candidates need to bombard these ‘news sources’. Harris went on Faux News once, I know Buttigieg did a handful of times. While it would give these places seemingly legitimacy, that’d be the only way to pierce that bubble. Running ads on them may give them revenue stream, it would be worth it to breakthrough to their audiences.', 'created': '2024-11-09 15:10:57', 'submission_id': '1gn2ujc'}
{'comment': 'This is 100% correct and there needs to be less focus on all other reasons and more focus on THIS.', 'created': '2024-11-09 15:28:41', 'submission_id': '1gn2ujc'}
{'comment': 'Good article.', 'created': '2024-11-09 16:23:14', 'submission_id': '1gn2ujc'}
{'comment': '[start at 37min ish](https://youtu.be/XT0OD5ehmOE?si=NQ-bTfGOucUsj2lS)\n\nHere is a very easy to understand reason', 'created': '2024-11-09 20:21:35', 'submission_id': '1gn2ujc'}
{'comment': "I've thought a lot about this article, and I'm so curious why MSNBC and The Daily Show doesn't drown out or swamp Fox, and I think it's just there are thin margins between the conservative and the liberal instinct, one is less precise with the truth and the smugness and sense of right and the love of a strongman, I mean I don't really meet that many pure conservatives, who just don't want federal government and want lower taxes, it's all jumbled up in other complications and untruths, paranoid fantasies. Maybe they're just stupid and want to believe Trump will lower inflation, and then when it hits, they'll find other ways to believe in him, who knows. There is left wing media, they used to whine about how it was all left wing media. People like the permission not to be virtuous, to break the rules, to just be themselves in all their faint racism and misogyny. When there was just a mainstream media that was middle of the road, people didn't feel like they existed, and now you can find someone on a YouTube channel that will tell you it's normal to think the way you do, keep doing it, don't try and change, you don't need to strive for virtue. That's the weirdest thing, conservatives used to cloak their ideology in virtue and uprightness, and now they value being honest in their greed and grievances. How they connect it to religiosity, I don't know, maybe that's the package of hypocrisy, permission to be without integrity. They're a grubby greedy sex fiend, and so is our leader. We've yet to grow into the information age, these are some serious growing pains, America has always been an adolescent on the global stage, wildly idealistic, with wild swings in personality as we try on different persona. I'm not going to live long enough to see it mature into boring but efficient and precise governance, but I hope it does some day.", 'created': '2024-11-09 21:24:05', 'submission_id': '1gn2ujc'}
{'comment': 'Four years ago, the media landscape was essentially the same power wise. From 2016 to 2020, mainstream and social media had a string of 4 years of horror story to report and Democrats won.\n\nIf it bleeds it leads. Fear runs the new cycle. The party in power IS the government. Most people typically don\'t trust or like the government. They think it\'s not efficient and doesn\'t do anything for them. Incumbents in Congress somehow buck this trend. "Congress sucks, except for my guy."\n\nFear is also a primary factor in getting people to vote. \n\nThanks to the internet, we can all play a role in shaping the narrative. We, over the next four years, will have plenty of material to work with.\n\nThe more significant challenge is not getting lazy and relying on the horror of the Republican agenda to win the mid-terms and the next Presidential election. \n \nNow is the time to make significant changes to the platform with a more populist agenda. We need to build the message over four years and then work like hell to deliver it in the next four. Then, we keep our foot on the gas and make progressive policies happen.\n\nWe can\'t camp in the political center. We lost because, without the fear, people weren\'t motivated. \n \nWe aren\'t competing to attract Trump voters. We need to give the non-voters something to vote for. The platform wasn\'t progressive enough to distinguish it from the Republicans. From their perspective if there is no substantial difference in platform and things won\'t happen anyway, why vote?', 'created': '2024-11-09 23:44:10', 'submission_id': '1gn2ujc'}
{'comment': "We understand Fox news is a huge problem but that only excuses so much. We TOLD people, over and over. Every conservative new someone who tried to break through over and over with facts, and they refused. They just believe what they want to. They were not lead by misinformation, they actively looked for, they loved it they gobbled it up, we couldn't tear it from their own cold dead hands. Because it's easy to blame everything on people you are already bigotted against.", 'created': '2024-11-10 04:20:08', 'submission_id': '1gn2ujc'}
{'comment': 'The FOX comments here are very true. We need the FCC actively on destroying FOX\'s ability to create and disseminate misinformation that is destructive to viewer minds and a decay of democratic society. For 8 years now, I\'ve warned that FOX\'s camouflage as "legitimate news" must be outlawed as treasonous propaganda.', 'created': '2024-11-10 17:44:44', 'submission_id': '1gn2ujc'}
{'comment': 'Education and poor turn out', 'created': '2024-11-09 11:51:17', 'submission_id': '1gn2ujc'}
{'comment': 'We’ll have the data in a few weeks - before they it’s all conjecture. Two agency decide the voting data and extract insights based on real voting record. We need that to even start to analyze who did what. All the numbers vs demographics studies you see now are based on exit polls. They are accurate to a certain extend but they don’t tell the full study.', 'created': '2024-11-09 14:11:09', 'submission_id': '1gn2ujc'}
{'comment': 'Okay, I am on board. So what do we do?', 'created': '2024-11-09 14:13:38', 'submission_id': '1gn2ujc'}
{'comment': 'I mean I agree with this but at the same time there’s no way for the average person to act on this, besides doing their best to share more reliable media.', 'created': '2024-11-09 14:30:43', 'submission_id': '1gn2ujc'}
{'comment': "If you don't vote it's a 200$ fine", 'created': '2024-11-09 14:52:17', 'submission_id': '1gn2ujc'}
{'comment': 'Because no one knows yet. It will take time', 'created': '2024-11-09 15:10:53', 'submission_id': '1gn2ujc'}
{'comment': 'Name all the right-leaning online media sources where you can interact, share your opinion, create, contribute. Now name all the left-leaning ones. There’s a pretty sizable advantage on the right.', 'created': '2024-11-09 15:24:30', 'submission_id': '1gn2ujc'}
{'comment': "Ask the men. His biggest dedicated demographic. They came out while not enough women and new voters didn't for Democrats.", 'created': '2024-11-09 15:58:38', 'submission_id': '1gn2ujc'}
{'comment': 'I have been saying this over and over and over. And it’s frustrating because what is the solution? I don’t see one.', 'created': '2024-11-09 17:20:52', 'submission_id': '1gn2ujc'}
{'comment': "Because It's been Less than a week and no one Can Rely be sure of that.", 'created': '2024-11-09 20:31:08', 'submission_id': '1gn2ujc'}
{'comment': 'Fox Spews, not news', 'created': '2024-11-09 22:40:04', 'submission_id': '1gn2ujc'}
{'comment': 'Low IQ people.', 'created': '2024-11-09 23:41:53', 'submission_id': '1gn2ujc'}
{'comment': 'This is exactly what I’ve been saying. People who voted for Trump never even heard Kamala’s plans to help them. She was only a lyin’, low IQ woman.', 'created': '2024-11-09 13:40:10', 'submission_id': '1gn2ujc'}
{'comment': 'This reason being that the system is rigged and you are validating it by following its twisted rules?', 'created': '2024-11-09 08:44:12', 'submission_id': '1gn2ujc'}
{'comment': 'it mostly has to do with the economy, inflation is being blamed on the current admin, and i do feel kamala could have presented her message better in order to win working-class voters', 'created': '2024-11-09 14:52:07', 'submission_id': '1gn2ujc'}
{'comment': 'Because it has been four days?', 'created': '2024-11-09 15:39:17', 'submission_id': '1gn2ujc'}
{'comment': 'These comments tell me that Reddit Dems still have no idea why Trump actually won.\n\nThey know how is MAGA base is… but that’s projected onto every Republican voter, every Democrat that didn’t vote for Harris, and every independent/unaffiliated that didn’t vote for Harris.', 'created': '2024-11-09 15:39:41', 'submission_id': '1gn2ujc'}
{'comment': 'Because we will NEVER understand stupid ignorant Christian Nationalist fascists? 🤔 I forgot to mention white supremacy…', 'created': '2024-11-09 06:50:09', 'submission_id': '1gn2ujc'}
{'comment': "The majority of people want lower cost of living. Trump addressed this in every single rally of his. That's it. The end.", 'created': '2024-11-09 16:37:14', 'submission_id': '1gn2ujc'}
{'comment': 'I’m not so sure that iHeart media can be described as right wing. Some of the most left-wing podcasts I’ve heard in recent weeks have been on the iHeart Radio Network.', 'created': '2024-11-09 15:33:09', 'submission_id': '1gn2ujc'}
{'comment': 'Women of color VS white man. Enough said unfortunately.', 'created': '2024-11-09 17:14:02', 'submission_id': '1gn2ujc'}
{'comment': 'As a Canadian who frequents the US, the occasional times I come across it makes me feel exactly as you describe--brain leaking from ears.\n\nI don\'t hear it at home, work, gym, airports, etc. So when I do suddenly hear it in the US it\'s really breathtaking how spectacularly awful FOX "NEWS" is. \n\nThe anger, lies,and disinformation twisting of truths, it\'s all just so egregious. I feel sorry for anyone who has this inflicted upon them on a regular basis.', 'created': '2024-11-09 07:05:25', 'submission_id': '1gn2ujc'}
{'comment': 'Fox news gives me serious anxiety. Usually immediately. They are so pissed off all the time.', 'created': '2024-11-09 10:22:29', 'submission_id': '1gn2ujc'}
{'comment': 'Michael Savage has been on the radio calling Democrats Vermin for 4 decades.\xa0', 'created': '2024-11-09 06:58:20', 'submission_id': '1gn2ujc'}
{'comment': 'If Fox News hides behind being entertainment, the left should take a page and make an entertaining news channel. Put John Stewart in charge of it. Give people a choice for something that informs them, but makes them laugh instead of rage. \n\nLike Sesame Street for adults.', 'created': '2024-11-09 15:51:02', 'submission_id': '1gn2ujc'}
{'comment': 'https://bigthink.com/the-present/yuri-bezmenov/', 'created': '2024-11-09 14:35:35', 'submission_id': '1gn2ujc'}
{'comment': 'Thom Hartmann Joe did something about this the day after the election there are seven major radio on TV right wing apparatus that they get to spew there lies and talking points 24 seven and then there’s one Spanish station on 300 stations and we have MSNBC and free speech TV and then a Sirius FM progressive radio station and that’s it. We need to buck up', 'created': '2024-11-09 15:42:40', 'submission_id': '1gn2ujc'}
{'comment': 'Don’t forget on streaming TVs and apps they have streaming ON Newsmax and Fox blaring all the time, but there’s no counter narrative', 'created': '2024-11-09 15:43:04', 'submission_id': '1gn2ujc'}
{'comment': 'I’m going to say it: Russian interference through social media and a myriad of propaganda channels. When you have bomb threats at polling places and Elon musk holding a voter registration LOTTERY, why is everyone treating this like a normal election? It’s sane washing. It wasn’t normal. Nothing about this election was ‘the will of the people.’', 'created': '2024-11-09 18:09:15', 'submission_id': '1gn2ujc'}
{'comment': 'Over the last few weeks, I’ve been to handful of small town greasy spoon/dive bar restaurants. All of them busy. Every one of them had Fox News on. People huddled around those TVs and buying every word of the lies. Was at one last night and every time I walked by, they were trashing Harris and her campaign or how democrats won’t be able to keep destroying the country now. It’s now wonder these smalls towns go all in on republicans even though they won’t do a damn thing to help, while democrats actually try but are wildly incapable of running that message.', 'created': '2024-11-09 19:37:01', 'submission_id': '1gn2ujc'}
{'comment': 'Finally! Finally someone is saying it!!\n\nIt doesn’t matter what we do, if no one hears it it doesn’t make a difference.\n\nIf a tree falls in the Forrest does it make a sound? \n\nIf inflations falls back to 2% and we don’t hit a recession on Fox News, does it make a sound? \n\nMaybe, but know one knows \n\nWe are always fighting uphill, have to have once in a lifetime charismatic amazing speakers or once in a lifetime time events to get our people elected, and we expect one or both of these every 4 years.\n\nIt has to change.', 'created': '2024-11-09 19:06:04', 'submission_id': '1gn2ujc'}
{'comment': "I got bad news for ya man -\n\nThis was literally the last chance. It's over and the good guys lost.\n\nThere's zero recourse and regardless of any rhetoric or outrage from democratic opposition they too will fall in line.\n\nI can't imagine ANY scenario where our fundamental democracy prevails.\n\nUnfortunately for us the GOP has been operating basic game theory for a while and they won.\n\nWhat they do with it remains to be seen.", 'created': '2024-11-09 20:10:45', 'submission_id': '1gn2ujc'}
{'comment': "We used to have CNN, but FOX created this narrative of them slanting news and biased reporting. Ironic, but effective. The primary hurdle we face in combating the right wing news cycle and media in general is that these problematic sources are well established now. Not only that, but a vast majority of Americans don't *want* to watch left wing media, and a lot of them don't have the time to watch both and compare what is being reported.\n\nIf we are going to compete with their media, it has to start now and somehow rise to prominence quietly. Otherwise, right-wing media moguls will do everything in their power to shut it down.", 'created': '2024-11-09 16:28:30', 'submission_id': '1gn2ujc'}
{'comment': 'Here in MI every commercial for the last couple weeks was a political one. 80% were from billionaire PACs. one that was in almost every commercial break was literally screaming that dems were responsible for afganistan, crime was skyrocketing, millions of illegals were killing people, inflation was skyrocketing, and country was shit. literally easily proved BS. people are stupid.', 'created': '2024-11-09 20:01:35', 'submission_id': '1gn2ujc'}
{'comment': 'Ask them to change the channel', 'created': '2024-11-09 15:05:58', 'submission_id': '1gn2ujc'}
{'comment': "We used to have CNN, but FOX created this narrative of them slanting news and biased reporting. Ironic, but effective. The primary hurdle we face in combating the right wing news cycle and media in general is that these problematic sources are well established now. Not only that, but a vast majority of Americans don't *want* to watch left wing media, and a lot of them don't have the time to watch both and compare what is being reported.\n\nIf we are going to compete with their media, it has to start now and somehow rise to prominence quietly. Otherwise, right-wing media moguls will do everything in their power to shut it down.", 'created': '2024-11-09 16:28:30', 'submission_id': '1gn2ujc'}
{'comment': 'I work in a factory that’s in a 65/35 red county in Michigan. I had a low-info coworker gloat to me about Trumps win the morning after the election. He said:\n\n1. He wants God back in the schools. (His kids are out of school and he’s not exactly religious)\n\n2. We can finally get the kids wearing cat and dog outfits to school under control \n\n2. The Amish (yes, THAT Amish) really came through and won it for trump.\n\nAnother co-worker confided that he didn’t so much vote for Trump as he voted for JD Vance (???) to get his foot in the door.\n\nWe’re not dealing with rational people', 'created': '2024-11-09 10:01:47', 'submission_id': '1gn2ujc'}
{'comment': 'There also doesn’t seem to be any real investigation into the bomb threats called into all the swing states. What effect did that have? All those polling locations should be audited and have recounts.', 'created': '2024-11-09 14:58:22', 'submission_id': '1gn2ujc'}
{'comment': 'IMO the biggest reason is apathy. Our people have been too comfortable for too long and have no concept of real suffering to value what we had. If our worst fears come to pass, their inevitable suffering will be necessary.', 'created': '2024-11-09 18:20:12', 'submission_id': '1gn2ujc'}
{'comment': 'Well put. And I think it’s time we say so long to Elon Musk and delete our X accounts.', 'created': '2024-11-09 14:42:18', 'submission_id': '1gn2ujc'}
{'comment': '💯 party over person mentality.', 'created': '2024-11-09 14:52:13', 'submission_id': '1gn2ujc'}
{'comment': "When I was a kid when Obama was elected, in Alabama, my conservative parents started to become more accepting and open of those who were different, and I felt this beyond my troubled home. \n\nMy father went back to saying N***** and the words he has to say about women are vile, but, I understand his perception because his wife is all he has and she's awful. My mom is a deplorable human being and my dad also deserves her. \n\nNow, we have regressed so far back that it feels like we are verging on blasting back to 1953, like what the goddamn fuck!\n\nFucking ignorant Republicans and other non voters with 0 awareness or empathy. Fuck em. \n\nWe Americans deserve this.", 'created': '2024-11-09 09:35:27', 'submission_id': '1gn2ujc'}
{'comment': 'They are 100% informed. They just really, really didn’t want to be told what to.', 'created': '2024-11-09 20:12:23', 'submission_id': '1gn2ujc'}
{'comment': 'And trump is announcing on Instagram he\'s going after "censorship" day one. So he\'s going to open the floodgates and prosecute anyone trying to stop misinformation', 'created': '2024-11-09 08:04:36', 'submission_id': '1gn2ujc'}
{'comment': "Fox is just the tip of the iceberg, the part that is obvious and easy to see. There's way more.", 'created': '2024-11-09 15:31:35', 'submission_id': '1gn2ujc'}
{'comment': 'I have walked by someone and heard the talking points repeated in Christian videos on YouTube, woven into the other info.', 'created': '2024-11-09 14:43:59', 'submission_id': '1gn2ujc'}
{'comment': "Meet them at their level. The left needs to start grifting and coming up with elaborate nonsense conspiracy theories. The truth is dead, what we need is to start jerking around idiots until they're voting the right way, if there's still time, and if we have people underhanded enough on the left\n\nBut both of those are in short supply on the left 🤷\u200d♂️", 'created': '2024-11-09 11:14:38', 'submission_id': '1gn2ujc'}
{'comment': "Sometimes you can't fix it. Sometimes, the best you can do is to unravel and disrupt at a microscale.", 'created': '2024-11-09 15:53:58', 'submission_id': '1gn2ujc'}
{'comment': 'Give people better education and making voting mandatory', 'created': '2024-11-09 11:53:08', 'submission_id': '1gn2ujc'}
{'comment': 'Yeah, and this article is just more left wing media jerking itself off. The issues they stated at the beginning are real issues and just saying “derp fox bad dis site better derp” is stupid and self serving. These left wing sites absolutely thrive on Trump’s shenanigans, don’t get it twisted.', 'created': '2024-11-10 05:42:01', 'submission_id': '1gn2ujc'}
{'comment': 'As a woman I sadly agree. Frankly I think we would have won this time if we had run a man. No disrespect to Harris or Clinton - great respect and $$ support given to them both but anyone who thinks we are any where close the gender parity in this country after these two elections is not paying attention.', 'created': '2024-11-09 14:26:34', 'submission_id': '1gn2ujc'}
{'comment': 'Ground News is pretty neat so far', 'created': '2024-11-09 14:22:56', 'submission_id': '1gn2ujc'}
{'comment': '99.9 % this. The other .1% is because 2/3 of the country is brainwashed by Fox.', 'created': '2024-11-09 18:18:00', 'submission_id': '1gn2ujc'}
{'comment': 'I agree completely! He fucking cheated and I hope to god they catch him before it’s too late!', 'created': '2024-11-09 18:32:13', 'submission_id': '1gn2ujc'}
{'comment': 'Trumps relationship with Putin must have *realllly* blossomed these last 4 years. \n\nThe entire future of Russia depended on this election. Putin can’t keep up the war for much longer, he knew he needed Trump in office. Trump knew that also. \n\nHis voters complaining about grocery prices now? Wait til the man who teamed up with China and Iran in their pure hatred for America gets control of the country who’s literal nickname is “the breadbasket of the world.” I’m truly shocked at how they thought giving Russia the ability to fuck over America on a silver platter is a *great* idea. \n\nBut yeah, brown people bad. /s\n\nBomb threats to polling places in blue areas traced back to Russia was no coincidence.', 'created': '2024-11-09 21:48:17', 'submission_id': '1gn2ujc'}
{'comment': 'You are spot on but I would add #5 "perceptions of the economy"', 'created': '2024-11-09 14:47:19', 'submission_id': '1gn2ujc'}
{'comment': 'Agreed on the border, we need a fresh take on the issue. I think tying border security and immigration reform to marijuana legalization could offer a path forward by framing it as cutting the cartels\' influence and cashflow.\n\nHard disagree on the other issues. Abortion is nuanced and so are people\'s views on it. The vast majority of Democrats are just straight up not saying what you\'re saying we are, and even then, we can be where most of the country is on abortion and be loud and proud about it: Legal for any reason to viability/for 1st trimester (not the same but roughly interchangable) and illegal with strong exceptions (health of the mother, serious birth defects, etc.) after.\n\nVoter ID isn\'t a real topic. It was made up by Republicans to suppress voters. Most people don\'t care. Even then, I\'ve always thought it was bizarre that we didn\'t take the wind out of Republican\'s sails on the issue by agreeing to voter ID laws, but sending every adult citizen a free ID when they turn 18 and registering them to vote at the same time. Make having it a requirement to graduate high school, drive, buy a car, have credit, open a bank account, etc. In short, a national ID card like other countries have and a proper replacement for SSNs.\n\nTrans rights, again, ceding ground to the bigots ain\'t the play here, chief. People should be free to live as they choose. That\'s the fundamental promise of America. Education is also desperately needed on this as well, because so much of what you wrote on trans people is flat-out false, even if you believe it. On the sports "issue" specifically (which isn\'t an issue because there have been all of 4 trans athletes in all of college sports in the last 20 years across the whole country), again, we don\'t cede the argument, we change the terrain. Sports leagues should be based on ability, not sex. There are exceptional cis women that can absolutely keep up with men in their sport, but they\'re not allowed to compete together. That isn\'t fair and keeps women athletes from really being able to capitalize on their abilities like male athletes are.\n\nThe "woke agenda" isn\'t real. It\'s a bogeyman made up by right-wing media, the same as voter fraud and the trans athlete "controversy". The answer to the charge of "wokeness" is not to abandon the marginalized and attacked communities to their fates at the hands of Republicans. We should instead focus on building our coalition to include those that feel excluded by it, especially white, working class men, by talking about and proposing solutions to their issues just like we do other pieces of our coalition. Suicide prevention, mental health care, the loneliness crisis, offering an alternative to toxic masculinity, expanding union size and power, fair wages for fair work, etc. are all issues that hit other demographics too but are primarily felt by white men. People attack the "woke agenda" and "wokeness" because they aren\'t secure in themselves- financially, mentally, socially, etc. Ceding on the issues won\'t solve that and will get many marginalized people killed. Helping them solve their problems will.\n\nFundamentally, the article linked in OP\'s post is correct. The media- right-wing media especially- is the single largest reason we lost this election, right up there with the global backlash to inflation against incumbent parties. Misinformation and lies are rampant and we cannot possibly debunk them all because they come too fast. We need a real focus on media literacy in education, to teach kids how to recognize misinfo when they see it. Ideally, we\'d do that on a federal level, but we\'re not in control there. Blue states should still do it, and we should try to take over as many school boards as possible to influence things at that level, as Republicans have been doing for decades now.', 'created': '2024-11-09 18:59:38', 'submission_id': '1gn2ujc'}
{'comment': 'I disagree that the Dems and independent were blinded by voter registration. That’s just the Reddit crowd who are unusually plugged in. From what I’ve gathered, in basically every county in America, Dems and independents are very mad about the economy and have very low approval of the incumbent administration, and they haven’t heard a credible reason to believe the Dems have a solution. That could be the policies aren’t compelling, or the media ecosystem is so skewed, but either way, they didn’t bother turning out.', 'created': '2024-11-09 09:26:00', 'submission_id': '1gn2ujc'}
{'comment': "> he had a term that wasn't ravaged by a global disaster.\n\nHe killed a lot of people by mismanaging the pandemic. People just forgot because we didn't hammer him with it.", 'created': '2024-11-09 18:24:46', 'submission_id': '1gn2ujc'}
{'comment': 'Absolutely agree gender bias continues to be a huge huge issue. Democrats need to accept that for now unfortunately [Leanin.org report Election bias](https://leanin.org/elections)', 'created': '2024-11-09 14:32:06', 'submission_id': '1gn2ujc'}
{'comment': "No no please ignore that gender divide. They totally had good reasons to vote trump. They can't really say what those are but calling out misogynistics is how they were created, according to misogynistics.", 'created': '2024-11-09 11:23:41', 'submission_id': '1gn2ujc'}
{'comment': 'Weird. Is Elisa Slotkin a man?', 'created': '2024-11-09 17:16:56', 'submission_id': '1gn2ujc'}
{'comment': "Ok but what influences people to become more and more racist and sexist?\n\nSurely, it cannot be the right wing propaganda machine that almost everybody is exposed to 24/7 and is literally everywhere all the time. /s\n\nAmerica is currently like that [boiling frog](https://en.wikipedia.org/wiki/Boiling_frog) tale.\n\n\n\nOk this gif only acknowledges social media but it should also include tradititional right wing media, churches, social pressure and more. They're all churning racist, xenophobic, sexist, LGBTQphobic and other far-right talking points incessantly so much that it has been so normalized that people can't see it anymore. American people are tightly connected to those narratives and disconnected from reality.", 'created': '2024-11-09 16:52:58', 'submission_id': '1gn2ujc'}
{'comment': 'It’s a response to the nonsense blame game happening right now focused on tactics like messaging or losing the working class or the timing of Biden’s exit blah blah…the article is just reiterating a point that right wing media (ie propaganda) is the root of the problem. The article also states (if you read it) that they made the point before. \n\nIf it’s so delusional then why are too many people not acknowledging how utterly brainwashed the population is?', 'created': '2024-11-09 12:41:16', 'submission_id': '1gn2ujc'}
{'comment': 'Trump had roughly the same number of votes as 2020. Harris had a roughly 10 million drop compared to Biden 2020. Democrats didn’t show up. Simple as that.', 'created': '2024-11-09 13:26:39', 'submission_id': '1gn2ujc'}
{'comment': 'This is way too much common sense for most people.', 'created': '2024-11-09 21:18:08', 'submission_id': '1gn2ujc'}
{'comment': 'Exactly. Conservatives feel vulnurable in a rapidly changing world where more and more people cultivate ever more progressive values. While liberal values can be rationally defended, based on principles of individual liberty, empathy and equality, conservatives cannot provide any such rational ground for their own values. Instead, they base them on tradition, a thinly veiled need for racial or gender superiority and a fundamentalist, dogmatic interpretation of the Bible that has nothing to do with the true message of Christianity (the idea of universal love). So they primarily seek validation and emotional protection from their fears in their media and their leader.', 'created': '2024-11-09 23:02:59', 'submission_id': '1gn2ujc'}
{'comment': 'This is a misinformation problem, not a "conservatives" problem. The Liz Cheneys of the world are conservatives. MAGA is not.', 'created': '2024-11-10 06:32:25', 'submission_id': '1gn2ujc'}
{'comment': "No incumbents across the world won. First time that's ever happened. I agree, but larger picture is pandemic fallout.", 'created': '2024-11-09 17:11:56', 'submission_id': '1gn2ujc'}
{'comment': 'I switch it off in the gym, but the problem is that millions of people actually choose this. Every day. Then they believe the disinformation and vote accordingly.', 'created': '2024-11-09 07:35:12', 'submission_id': '1gn2ujc'}
{'comment': "All absorbed as truth wholeheartedly by, in part, a generation that grew up wondering how Russians were so gullible as to believe what Pravda and the rest of the Soviet propaganda machine churned out. I think most of the consumers of Fox, Sinclair, iHeart, et al. believe themselves too smart to be taken in by propaganda, while of course not understanding what propaganda really is (it's not just for the Soviet block anymore, kids!). \n\nMaybe, ironically, George Soros and his ilk of the few like-minded progressive (or at least centrist) billionaires could step up and counter the right-wing media takeover before it's too late.", 'created': '2024-11-09 16:34:58', 'submission_id': '1gn2ujc'}
{'comment': 'And we’ve been listening to his BS for the past nine years', 'created': '2024-11-10 03:58:45', 'submission_id': '1gn2ujc'}
{'comment': 'Some people feed off that anxiety. They don’t feel normal unless they’re reminded of what to be afraid of.\n\nThen there’s the rest of us. We don’t fear television but we fear republicans.', 'created': '2024-11-09 16:37:11', 'submission_id': '1gn2ujc'}
{'comment': "I listened to Michael Savage for about 3 weeks after I stumbled upon him one day because I genuinely thought he was absurdist comedy. Through that lens, he's actually hilarious. It only becomes tragic when you realize that isn't his intention.", 'created': '2024-11-09 13:49:37', 'submission_id': '1gn2ujc'}
{'comment': 'Is that Weiner still on the air? I’m surprised he isn’t dead yet', 'created': '2024-11-09 17:45:54', 'submission_id': '1gn2ujc'}
{'comment': "FOX news isn't hiding behind entertainment; it is cheap entertainment hiding behind legitimate news which it is not.", 'created': '2024-11-10 17:48:38', 'submission_id': '1gn2ujc'}
{'comment': 'Wow! Very interesting and thank you for sharing!', 'created': '2024-11-09 18:20:38', 'submission_id': '1gn2ujc'}
{'comment': 'As you noted in the middle of your comment, the vast majority of Americans don’t want to watch left media—that’s the main thing we need to grapple with. We need people to want to hear our point of view before we can get them to listen to us and trust what we say.', 'created': '2024-11-09 20:24:35', 'submission_id': '1gn2ujc'}
{'comment': 'Very similar to my interactions with Trump supporters over the years…\n\nThe American public needs to be educated better as children or we are totally doomed.', 'created': '2024-11-09 13:59:59', 'submission_id': '1gn2ujc'}
{'comment': "Lmao, your other coworker wants to get peter theil's hand puppet's foot in the door. Absolutely amazing how fucked we are.", 'created': '2024-11-09 11:10:49', 'submission_id': '1gn2ujc'}
{'comment': 'I saw a clip from an interview with an Amish guy who said he and a bunch of people he knew voted for Trump because there was “more freedom under Trump and less freedom under Biden”…couldn’t name any specific freedoms. I’m really not sure what an effective counter to that is. You can’t make a logical argument because there’s no logic to argue against.', 'created': '2024-11-09 16:44:07', 'submission_id': '1gn2ujc'}
{'comment': ">The Amish\n\n\nAn abusive cult that doesn't let children get educated beyond 8th grade and forces girls to become child bearing slaves and boys to go to work? The cult that adopts and enslaves children from other cultures?\xa0\n\n\nColor me shocked.", 'created': '2024-11-09 18:27:30', 'submission_id': '1gn2ujc'}
{'comment': 'The first two aren’t new things but those weren’t on the list of reasons I’ve heard people say they voted for DJT, the weird thing about voting for Vance is also one I had not heard. There are so many different lies this time instead of just a few main lies with maybe some half-truths mixed in. \n\nIf we’ve learned anything in the past 8 years, it is that people are more likely to double down on the ridiculous lies than admit to themselves or anyone else that they were duped. Leaning into the lies to an extent seems like the way to go. They’ll either fall for it or be forced to be the ones using logic and reason to try to prove those things aren’t true. \n\nA VP apparently has as much power and authority as a president, everything will have to be Trump & Vance’s fault* instead of only Trump’s. Why haven’t they turned the gas pipelines back on? Why is the US exporting “our” oil or importing oil from other countries? Since POTUS & VPOTUS control grocery prices and gas prices, it will be their fault prices are still high (we’ll be the ones bitching about the high prices to make sure those voters remember how important those are and who is responsible). Price increases will be their fault even if it’s not because of the tariffs or taking control of the Fed rate like Project 2025 proposes. \n\nTrump will put an end to the nonexistent issue of furries and litter boxes in schools (not Vance because Trump does not share credit). Bringing religion back into public schools will create a new nonexistent problem-some teachers will be speaking in tongues all day, every day. My friend’s hair stylist’s neighbor’s coworker’s aunt is a school teacher and said that is happening where she teaches or “I saw someone say it on TV.” Instead of sex change operations without the parent’s consent, schools are performing exorcisms on student’s without parental consent.', 'created': '2024-11-09 16:44:49', 'submission_id': '1gn2ujc'}
{'comment': ">We’re not dealing with rational people\n\nVery true. There's no way to reason with or educate these people.\n\nWe need to appeal to them emotionally. We need candidates with **both** competence/intellect to appeal to high knowledge voters **and** who emotionally appeal to low knowledge voters. For the foreseeable future our standard bearers are going to have to be tall well built men.", 'created': '2024-11-09 16:26:00', 'submission_id': '1gn2ujc'}
{'comment': "My 60 yo black mailroom worker said she didn't vote bc he's a felon, and Harris wants to raise the retirement age to 70. Like, what?", 'created': '2024-11-09 22:00:20', 'submission_id': '1gn2ujc'}
{'comment': 'The FBI is investigating them. And we know they seemed to originate in Russia.', 'created': '2024-11-09 22:38:54', 'submission_id': '1gn2ujc'}
{'comment': 'I think this was a huge reason also. I questioned several coworkers who would\'ve leaned left why they didn\'t vote and none had a good excuse. It was just "I\'m not a political person / not the voting type"... pure apathy and laziness and taking freedom and relative comfort for granted.', 'created': '2024-11-09 19:26:33', 'submission_id': '1gn2ujc'}
{'comment': 'Voter suppression can’t be ruled out. There were a ton of “election integrity” laws passed with the justification of restoring voters’ faith in elections. There were also groups submitting challenges to voter rolls in blue counties in various states as far back as 2021, also because of the election lies. \n\nAll the focus being on swing states could have also contributed to apathy.', 'created': '2024-11-10 06:27:51', 'submission_id': '1gn2ujc'}
{'comment': 'You’re just realizing right now is a good time to delete your X account??', 'created': '2024-11-09 22:43:07', 'submission_id': '1gn2ujc'}
{'comment': "They want the 50s back but they don't understand why the 50s were good. They think if they bring back the bad parts the good parts will come, without realizing that the 50s economy was what it was because the top tax rate was 90% and a whole bunch of white boys had just died in ww2.", 'created': '2024-11-09 11:08:32', 'submission_id': '1gn2ujc'}
{'comment': "I'm a 39 year old Democrat from Alabama and yeah man when Trump popped up in 2016 all of people's worst behaviors became acceptable", 'created': '2024-11-09 12:58:04', 'submission_id': '1gn2ujc'}
{'comment': 'Dude, I didn’t vote for this. I certainly don’t deserve it. I drove 3 hours to put my ballot in, almost couldn’t. I certainly didn’t choose this shit.', 'created': '2024-11-09 13:19:26', 'submission_id': '1gn2ujc'}
{'comment': 'thankfully I left\n\nHavent been in the states since 2014\n\nwoooooooooooooo', 'created': '2024-11-09 10:49:14', 'submission_id': '1gn2ujc'}
{'comment': "And a 'Truth commission' to go after anyone that says anything about him.", 'created': '2024-11-09 09:41:13', 'submission_id': '1gn2ujc'}
{'comment': 'Agreed. Dems need to stop the “when they go low we go high” crap', 'created': '2024-11-09 13:15:31', 'submission_id': '1gn2ujc'}
{'comment': 'Me! I’m petty 🙋🏻\u200d♀️ I’ve been trolling magats right back without guilt this year. It helps that I have absolutely no respect for them, just utter contempt.\n\nIncidentally, there’s a YouTuber called stellamagz—her motto is “when they go low, I go lower.” I love her!', 'created': '2024-11-09 17:22:44', 'submission_id': '1gn2ujc'}
{'comment': "It's just just the conspiracy theories. It's the money. Billionaires push propaganda to help their own interests. Billionaires will not fund left-wing propaganda because that is directly counter to their interests. Without money, left-wing news sites or blogs will have zero reach and eventually shut down.\xa0\n\n\nMusk took a huge financial loss on Xitter, because it wasn't about the money. It was about controlling thoughts, and it paid off. The left doesn't have the resources to do that.\xa0\n\n\nI don't see any path to is matching their outreach power", 'created': '2024-11-09 21:16:11', 'submission_id': '1gn2ujc'}
{'comment': "> Give people better education and making voting mandatory\n\nCan't do that when your side isn't the one legislating.", 'created': '2024-11-09 13:48:07', 'submission_id': '1gn2ujc'}
{'comment': 'In order to do this the dems would need to start winning right?\n\nHow can they start winning?', 'created': '2024-11-09 13:19:43', 'submission_id': '1gn2ujc'}
{'comment': 'Somehow tie voting to driver license/ID and/or vehicle registration renewals. Would cover a huge swath of people.', 'created': '2024-11-09 15:03:27', 'submission_id': '1gn2ujc'}
{'comment': 'Like that’s going to happen in the next 4 years. Be honest with yourself.', 'created': '2024-11-09 13:17:27', 'submission_id': '1gn2ujc'}
{'comment': "I agree that the right wing propaganda machine is one of the biggest problems. We have to build up our left media machine. (Although it's inherently harder when we don't have Twitter on our side or the mega, powerful elites to help fund us.) The brainwashing is very real. Harris gained in percentage of educated voters--this makes sense as we have more critical thinking skills to see through the bullshit. But she lost voters in mostly every other way.\n\nHowever, Harris also lost many Democrats who just stayed home. These are people who likely didn't fall for the propaganda machine but who just weren't resonating with her messaging and also didn't like the whole Biden dropping out late and no primary happening situation.", 'created': '2024-11-09 15:45:10', 'submission_id': '1gn2ujc'}
{'comment': '"Too many people" doesn\'t mean anything. It\'s goal-post-moving insurance. I can say that "Lots of people" acknowledge it. After all, look at this one guy! And then there\'s me! And all the other people who said it before. Which leads me to an important question: why does *no one* understand the real reason Trump won? No one at all.', 'created': '2024-11-09 13:27:33', 'submission_id': '1gn2ujc'}
{'comment': 'With record turnout and new voters? 10 millions showed up during a pandemic but now when things are back to normal they don’t? Absolutely no way man. Harris is and was popular more so than Biden and Clinton.', 'created': '2024-11-09 17:38:06', 'submission_id': '1gn2ujc'}
{'comment': 'And somehow almost every dem senator won in every swing state except Harris? Weird that’s a lot of ticket splitting', 'created': '2024-11-09 17:40:43', 'submission_id': '1gn2ujc'}
{'comment': 'Sure, fine, MAGA. But I have my own beef with conservatives.', 'created': '2024-11-10 07:40:36', 'submission_id': '1gn2ujc'}
{'comment': "It's free everywhere. More than other new stations. I just downloaded tubi and that station popped on", 'created': '2024-11-09 13:07:33', 'submission_id': '1gn2ujc'}
{'comment': "About 20 years ago, there was a pretty large campaign called Turn Off Fox that encouraged people to do just that in public spaces. The idea was to ask the proprietor to turn it off, but if they didn't, you would stealthily use a universal remote control to do it yourself (and block the channel if you could pull that off). You also were encouraged to block it on your relatives TVs, since a lot of them didn't know about the parental controls feature). Alas, it was not successful long-term, obviously, but maybe it's time for a resurgence. If nothing else, as a small act of rebellion.", 'created': '2024-11-09 16:43:30', 'submission_id': '1gn2ujc'}
{'comment': None, 'created': '2024-11-09 15:19:27', 'submission_id': '1gn2ujc'}
{'comment': "Yeah my LG TV frequently suggests Fox News and Newsmax every time I turn it on. I'd rather throw my TV out the window than watch that shit.", 'created': '2024-11-09 17:25:44', 'submission_id': '1gn2ujc'}
{'comment': "They weren't the generation that fought fascism, their parents were. So they grew up not knowing what fascism was and thinking it had already been defeated.", 'created': '2024-11-09 20:17:10', 'submission_id': '1gn2ujc'}
{'comment': "He's the guy who realizes too late, makes one critical statement heard by the wrong person and a few years later is disappeared or publicly tried.", 'created': '2024-11-09 21:56:18', 'submission_id': '1gn2ujc'}
{'comment': "Totally agree, I learned most about American politics, our country's bad past, and the way all the systems work in the United States by getting a bachelor's and masters degree. Our school systems for children need to do better. Unfortunately, a lot of Republicans don't have a higher education. So cutting them off at the pass at the elementary, Jr., and high school level could work. However, in most red states, they're cutting out US history and inclusion and whitewashing it. 🤷\u200d♀️", 'created': '2024-11-09 17:27:15', 'submission_id': '1gn2ujc'}
{'comment': 'I heard a story about how there actually are litter boxes (buckets) in schools, but they’re not for furries, they’re emergency toilets in case there’s an active shooter situation and kids have to be locked in the classroom for a long time. Heartbreaking.', 'created': '2024-11-09 20:31:06', 'submission_id': '1gn2ujc'}
{'comment': ">Very true. There's no way to reason with or educate these people.\n\n>We need to appeal to them emotionally. We need candidates with both competence/intellect to appeal to high knowledge voters and who emotionally appeal to low knowledge voters. \n\nKamala supporter here. Yes, this here is what Democrats need to keep in mind when trying to appeal to the average joe.", 'created': '2024-11-09 18:45:52', 'submission_id': '1gn2ujc'}
{'comment': 'My 20yo said something similar to me today after a conversation about people pushing misinformation about abortion. Our state has an abortion ban and she received a diagnosis at the beginning of the year that will make it necessary to have access to full reproductive healthcare. She is fully aware of that. I pointed out she needs to vote & she said she isn’t into politics. She ended up saying she is not informed enough to vote. I assured her that is not a requirement, Trump would not have won if informed was a standard all voters have. \n\nShe switched to her vote doesn’t matter. She is not wrong, we’re in a deep red area and there were only 4 out of more than a dozen races with more than one candidate. I told her it’s a customer satisfaction survey and the results being predetermined means she has the luxury of not having to know anything about anyone on the ballot, but enough people have to vote for “write in” to let the state politicians know they’re going too far right. It makes me question if the “my vote doesn’t matter” thing was a social media campaign directed at females her age. It is very frustrating that being directly impacted by the outcome of the election was not motivation to vote.', 'created': '2024-11-10 06:21:11', 'submission_id': '1gn2ujc'}
{'comment': 'Better late than never', 'created': '2024-11-09 23:13:46', 'submission_id': '1gn2ujc'}
{'comment': 'It also wasn’t a global economy, no internet and not everything was so based on shareholder value each quarter. Companies were proud to offer great benefits and have employees work there steadily for most / all of their careers. Now there’s no loyalty whatsoever and a lack of long term thinking. Bad quarter? Here come the layoffs. American workers are too expense? Get rid of them and offshore it all.\n\nAlso as mentioned here before, the disparity between the 1% and average worker wasn’t nearly so great - it’s out of control. Billionaires hoarding all of the wealth and influencing policies to keep it that way and probably make it even worse with this incoming administration as that’s who Trump caters to.\n\nEven the perceived “good” parts of decades ago can never be that way again and I sense so many uninformed white people, especially males tie in consciously or subconsciously that before women and POC were suppressed and stayed in the background that things were “better” so they must be the problem and an excuse to not be accountable for their own shortcomings and failures. \n\nTrump goes on about this all of the time and the media are more than happy to give him a stage for it as Trump equals eyeballs / clicks and most media is run by billionaires so he goes on about what a victim he is and how things aren’t fair, especially to white males and seemingly Latino and Black males have moved over towards him compared to voting for a a woman which is MIND BOGGLING to me.\n\nI hope the existing Biden / Harris administration for the last few months can do everything they can to put in guardrails and safety nets to help protect us all during the next 2 (midterms) , 4 (the end of Trump, hopefully) to survive this as a nation.\n\nElizabeth Warren wrote a GREAT piece on what the Democrats can do even assuming they lose the majority of the House (they are still counting but it looks like it’s going red), along with the POTUS, Senate and I’ll include SCOTUS with that even after the switchover in January. At least with congress the Republicans are a super majority for those familiar with how things get passed and what’s required to make really big changes in things.', 'created': '2024-11-09 13:57:04', 'submission_id': '1gn2ujc'}
{'comment': 'Also everything was built on the free and cheap labor of black people and women.', 'created': '2024-11-09 17:20:48', 'submission_id': '1gn2ujc'}
{'comment': 'Thanks for your effort.', 'created': '2024-11-09 14:20:37', 'submission_id': '1gn2ujc'}
{'comment': "I'm in UA now, and I am going to have to get the fuck out of here really fast before Yrump takes office. \n\nI don't know where to go, but I'm a teacher looking to move into the EU.", 'created': '2024-11-09 10:50:28', 'submission_id': '1gn2ujc'}
{'comment': "You're right, but you can't buy good publicity. The spirit of the john birch society lives on, but if the elites payrolling Ai has taught us anything, creativity can't be replicated. I don't know what form a modern, leftwing version of infowars takes to have explosive results down the line, but if alex jones could be distilled down to a formula, or better yet, if a leftwing alex jones existed at all, all the money they could throw at subversive propaganda wouldn't stand a snowcone's chance in hell", 'created': '2024-11-10 00:41:48', 'submission_id': '1gn2ujc'}
{'comment': 'The first part is to know where to dream. A better education system would of made it so trump never existed and instead was laughed at.', 'created': '2024-11-10 04:43:17', 'submission_id': '1gn2ujc'}
{'comment': 'Take a round about way. I would use existing funding differently... like do we really need WiFi on busses or pizza parties for neighborhood get togethers?', 'created': '2024-11-10 04:44:44', 'submission_id': '1gn2ujc'}
{'comment': 'National holiday to vote too. People need their voice heard. Everyone should get a mail in ballot', 'created': '2024-11-10 04:41:39', 'submission_id': '1gn2ujc'}
{'comment': "Yup, where I live it comes free with every cable package.\n\n\nCNN & MSNBC are only options with certain packages...and those packages don't include desirable stations like AMC and History Channel.\n\n\nIt must be said, this is why I don't pay for cable at all.", 'created': '2024-11-09 16:09:05', 'submission_id': '1gn2ujc'}
{'comment': 'It probably won’t work to some extent because its reputation is already so “left” but MSNBC really needs to make itself free in the same way. \n\nMy parents were never MAGA but definitely stuck in the “but we’re republicans” mindset and surrounded by the misinformation of all the MAGA around them and resistant to change. My sister and I basically de-programmed them with Rachel Maddow. We started with the podcasts (like Ultra and Bagman) and then they liked her enough to just watch her Monday night shows and have sought more unbiased and accurate news ever since. Now they’re appalled at their siblings and friends who are stuck in the maga-propaganda sphere.\n\nSome people are surely lost causes, but so many just need to be exposed enough to real information.', 'created': '2024-11-09 19:52:38', 'submission_id': '1gn2ujc'}
{'comment': 'Yes, I like this idea.', 'created': '2024-11-09 17:27:41', 'submission_id': '1gn2ujc'}
{'comment': 'Was that 20 years ago? I remember that being talked about back when Trump won the first time! And they weren’t even that bad back in 2016.', 'created': '2024-11-09 20:13:12', 'submission_id': '1gn2ujc'}
{'comment': "My father in law, too. He's a smart man. But he listens to Fox and watches football. So he's inundated with this crap, and never hears another side of things.\xa0", 'created': '2024-11-09 17:24:49', 'submission_id': '1gn2ujc'}
{'comment': 'The whitewashing US History is not new. Daughters of the Confederacy managed to push the Lost Cause to have that included in history textbooks. Some red states are going beyond the whitewashing by moving onto FR indoctrination that they’ve spent years claiming is happening in public schools and universities. School voucher programs and variations of that enable the state to shift funds for public schools to private schools. \n\nIf people think the public education system isn’t teaching students enough, they’re in for a surprise with how much worse it could be between shifting funding away from public schools and the lack of oversight for private schools. The red states are taking advantage of a misconception that private school automatically means a higher quality education.', 'created': '2024-11-10 07:15:14', 'submission_id': '1gn2ujc'}
{'comment': 'It’d be at least a little understandable if that was the ounce of truth the weird litter box hoax originated from but that does not seem to be the case. A school district in Canada was the first to make a public announcement that it was a false internet rumor. It’s not clear if it started as a joke and the AntiTrans culture war nonsense latched onto it or if it was created as part of the AntiTrans BS. \n\nIt is insane that somehow the possibility of litter boxes in schools has outraged some people so much as if there isn’t a very real and far more serious problem with school shootings.', 'created': '2024-11-09 21:32:17', 'submission_id': '1gn2ujc'}
{'comment': 'So true!', 'created': '2024-11-09 23:43:14', 'submission_id': '1gn2ujc'}
{'comment': 'I’m afraid the Latino. Black and Muslim voters that went with Trump are going to find out in a very real way when you play stupid games you win stupid prizes. \n\nHonestly all the low income people that think Cheetolini is going to actually help them have a real wake up call coming quickly. It’s truly pathetic.', 'created': '2024-11-09 14:18:33', 'submission_id': '1gn2ujc'}
{'comment': 'Elon Musk’s worth has increased 15 BILLION since Trump won. In 4 days. That’s disgusting.', 'created': '2024-11-09 17:27:28', 'submission_id': '1gn2ujc'}
{'comment': "good luck\n\nI moved to Japan, and I dont think people realize how not free America is until they leave it\n\nJapan's entire society functions on social norms, so you can essentially do whatever the fuck you want with the only punishment being a mean side eye", 'created': '2024-11-09 10:52:14', 'submission_id': '1gn2ujc'}
{'comment': '> A better education system would of made it so trump never existed and instead was laughed at.\n\nNo objections there. Countries rise and fall with the quality of their eduction system. Education that reaches everyone is what raises countries out of the mud. Education is a necessary precondition for strong, resilient economies and the rule of law.', 'created': '2024-11-10 10:52:47', 'submission_id': '1gn2ujc'}
{'comment': 'I pay for HBO because it comes with CNN.', 'created': '2024-11-09 22:13:40', 'submission_id': '1gn2ujc'}
{'comment': 'Maddow and Chris Hayes are my favorites. They explain in detail the situation and the consequences of what is happening.', 'created': '2024-11-09 22:25:28', 'submission_id': '1gn2ujc'}
{'comment': 'Yup, I know that!', 'created': '2024-11-10 07:16:53', 'submission_id': '1gn2ujc'}
{'comment': 'To be more specific, this was a real story including an interview with someone at the school. It was on an episode of Jon Ronson’s podcast series “Things Fell Apart.”', 'created': '2024-11-09 22:17:52', 'submission_id': '1gn2ujc'}
{'comment': 'Of course the whole furries thing was obviously made up.', 'created': '2024-11-09 22:19:29', 'submission_id': '1gn2ujc'}
{'comment': "There is no xenophobia aspect, and with the world going hard right, I'd imagine that China, Japan, and Korea might be a difficult place live in terms of acceptance into the culture.", 'created': '2024-11-09 11:01:26', 'submission_id': '1gn2ujc'}
{'comment': 'Yes, I have HBO max.\n\n\nMy news of choice is CSPAN for US politics.\n\n\nReuters\n\n\nPBS Evening News\n\n\nAP\n\n\nNPR\n\n\nThat is about it..but for no, no news at all.\xa0\n\n\nOnly the LOTR Trilogy.', 'created': '2024-11-10 02:48:18', 'submission_id': '1gn2ujc'}
{'comment': 'Bachelors and masters degrees won’t be a requirement for nearly as many jobs eventually. Trump said he will eliminate the Department of Education. It’s probably just a coincidence Project 2025 has that identical plan. \n\nFederal student financial aid will be shifted to the private sector according to Project 2025. Private student loan lenders will be rich! Jk, they already are. Credit scores will determine who can or cannot go to college, specifically the credit scores of parents since the majority of college students are too young to have credit established. \n\nIncreasing unemployment by reducing college attendance rates will be great for everyone, right? I’m sure tariffs will fix that problem. /s\n\nI’m sure all the people that voted for Trump took that into consideration. /s', 'created': '2024-11-11 03:57:43', 'submission_id': '1gn2ujc'}
{'comment': 'I’m familiar with the 5 gal bucket kits as a prep for a potential school shooting. The fact that it’s necessary is insane and it’s insane that a large enough percentage of the country does not consider that insane enough for meaningful action to be taken to try to prevent it for any of the drills or 5gal buckets to be necessary. Columbine was a quarter century ago FFS. \n\nIt’s really disheartening to know that this election outcome (with a treasonous felon receiving the most votes) has eliminated the possibility of there being meaningful federal gun laws being an option for at least a couple more decades. The optimistic option is that other conservative Supreme Court justices will flaunt their disregard for ethics the way Thomas and Alito have….or that Thomas and Alito are careless enough to hold out on retiring until after the next election.', 'created': '2024-11-10 04:49:32', 'submission_id': '1gn2ujc'}
{'comment': 'I only knew about furries as a kink thing before the litter box in schools BS. That did make it amusing initially because I thought people duped politicians as a prank to get them to talk about furries.', 'created': '2024-11-10 04:35:13', 'submission_id': '1gn2ujc'}
{'comment': "I haven't had any problems\n\nI would say Japan is more liberal than a lot of the US at this point, because they have had a conservative government for a long long long time, and the conservative government keeps fucking everything up....so they are far more willing to consider change", 'created': '2024-11-09 11:25:13', 'submission_id': '1gn2ujc'}
{'comment': 'Sadly it’s not just the laws that are the problem, insane as the current state of the law is regarding firearms. A majority of people seem to think they need to keep firearms for their own protection. They don’t, it’s crazy, but it’s been normalized in this century.', 'created': '2024-11-10 04:55:10', 'submission_id': '1gn2ujc'}
{'comment': 'The personal protection claim is what needs to be enforced. 1200 rounds are not necessary for personal protection. Stockpiling is not necessary for personal protection, that should be considered a symptom of a mental health disorder because of the irrational fear and amount of delusion necessary for someone to act on impulses to stockpile. \n\nI might be overly optimistic about the level of Trump’s pandering, but it does seem like quite the gamble for the Pro2A groups to trust a pathological liar’s claim he won’t touch 2A considering a registered Republican shot his ear and a former Trumper was set up to attempt an attempt to assassinate him. He banned large capacity magazines and said “take the guns first, due process later” as a more extreme version of a red flag law.', 'created': '2024-11-10 05:52:55', 'submission_id': '1gn2ujc'}
{'comment': 'Police voted for a fascist. They want immunity to trample on poor people and POC with impunity.', 'created': '2024-11-09 05:59:07', 'submission_id': '1gn1sxg'}
{'comment': "Back in the 1930's/40's, the rural areas were socialist. Idaho was one of the most socialist states in the country. Woody Guthrie was a socialist figurehead with his common man's folk songs.\n\nThen things got better for all those rural folks. The economy improved for them. They all got electricity and air conditioning and running water.\n\nThe way rural people vote now, their ancestors must be spinning in their forgotten graves out there in the cornfields.", 'created': '2024-11-09 06:20:53', 'submission_id': '1gn1sxg'}
{'comment': 'They do…because of “the economy” and they want to openly hate “others.” The schadenfreude is going to be immensely enjoyable when these idiots realize their lives will be just as fucked as ours.', 'created': '2024-11-09 05:21:24', 'submission_id': '1gn1sxg'}
{'comment': "Christians voted for a twice-divorced rapist pedophile who can't quote a single line from the bible.", 'created': '2024-11-09 07:55:01', 'submission_id': '1gn1sxg'}
{'comment': 'America is so great, right? We have issues…\n\nhttps://preview.redd.it/7orodrxj8tzd1.jpeg?width=1164&format=pjpg&auto=webp&s=4c5d98053fd1820d6b88fbc22d918f79c91aceb6', 'created': '2024-11-09 06:17:01', 'submission_id': '1gn1sxg'}
{'comment': 'No, they really don\'t. I don\'t think most of his supporters actually follow the news or pay attention to politics. Many of them are uneducated. And those that do listen to the news don\'t believe it because it\'s "fake news," keeping them even more uninformed.\n\nThey don\'t understand how our government functions, hence why they think all of the problems in their lives is somehow Biden\'s fault. In reality, their lives were just as shitty, if not shittier, than four years ago. But you know, lack of intelligence, short term memory, it all adds up.\n\nIt\'s all about emotion. And Trump knows that. As much as I may dislike him, he is a great political tactician. He knows his voting base is dumb, uninformed, and have nothing else to vote on other than emotion and that\'s exactly what he did. "They\'re eating the dogs, they\'re eating the cats...." and all of this bullshit about how illegal immigration is apparently what is bringing America down to its knees. No matter how untrue that may be, it gets him votes because he knows how to play that emotional guitar.\n\nTrump isn\'t the only problem, it\'s his voters. He\'ll be gone in four years (hopefully.....), but his stupid supporters will still be around and making a ton of babies at the same time.\n\nI\'ll add another one to your list: uneducated people with tons of kids voted to gut education.', 'created': '2024-11-09 09:30:26', 'submission_id': '1gn1sxg'}
{'comment': 'We can only hope that the disaster coming over the next 4 years will turn the country overwhelmingly blue.', 'created': '2024-11-09 05:27:16', 'submission_id': '1gn1sxg'}
{'comment': "No.\n\nNobody realizes their errors until it affects them personally.\n\nWe live in a society of dimwits who have absolutely no foresight into the consequences of their actions. They go after the shiny thing.\n\nSeriously, I work with the public and it's amazing that half these people manage to button their shirts.", 'created': '2024-11-09 06:41:47', 'submission_id': '1gn1sxg'}
{'comment': 'It’s not over yet, folks. More will be revealed.', 'created': '2024-11-09 05:54:43', 'submission_id': '1gn1sxg'}
{'comment': 'They threw it all away for a few more dollars in their wallet, if they even get that.', 'created': '2024-11-09 06:29:52', 'submission_id': '1gn1sxg'}
{'comment': "I think a lot of the issue is disinformation. Social media needs regulation. I'm all for freedom of speech and a range of views, but there is a line between freedom of speech and propaganda. It can manage and be held to higher standards of truth and decency while still maintaining freedom of speech. It is destroying society in its current form.", 'created': '2024-11-09 09:39:01', 'submission_id': '1gn1sxg'}
{'comment': "Yeah, don't let them pretend they don't. They will sacrifice their comfortability in order to harm people they don't like.", 'created': '2024-11-09 06:40:22', 'submission_id': '1gn1sxg'}
{'comment': 'All to “own the libs”.', 'created': '2024-11-09 16:34:41', 'submission_id': '1gn1sxg'}
{'comment': "Police don't care. I bet a lot would be felons without immunity.", 'created': '2024-11-09 07:10:33', 'submission_id': '1gn1sxg'}
{'comment': 'Maybe not. This article makes a clear point why. [https://newrepublic.com/maz/post/188197/trump-media-information-landscape-fox](https://newrepublic.com/maz/post/188197/trump-media-information-landscape-fox)', 'created': '2024-11-09 17:26:22', 'submission_id': '1gn1sxg'}
{'comment': 'They just wanted to own the libs. Now, they need to fear the progressives.', 'created': '2024-11-09 05:40:22', 'submission_id': '1gn1sxg'}
{'comment': 'Most of them have no idea what they actually voted for', 'created': '2024-11-09 07:42:25', 'submission_id': '1gn1sxg'}
{'comment': 'Let’s see them try to gut Social Security and keep their jobs. Its still the 3rd rail of politics. Or has America changed that much? Either way, Trump likely wouldn’t be around when any damage he does to SS actually starts impacting people. He will escape accountability the rest of his life.', 'created': '2024-11-09 09:15:14', 'submission_id': '1gn1sxg'}
{'comment': 'Yeah, but eggs are a little pricey..', 'created': '2024-11-09 11:00:28', 'submission_id': '1gn1sxg'}
{'comment': 'We are not coming back from this election result. Best I can advise is to find out who among your friends and family voted for drumpf and cut them off.', 'created': '2024-11-09 07:57:02', 'submission_id': '1gn1sxg'}
{'comment': 'All they know is that they DIDNT vote for the mixed black and Indian woman. \n\nThat’s all that matters to them', 'created': '2024-11-09 16:32:38', 'submission_id': '1gn1sxg'}
{'comment': 'He was Schroedinger\'s candidate saying "He means what he says" while claiming "That\'s too crazy!"', 'created': '2024-11-09 12:29:45', 'submission_id': '1gn1sxg'}
{'comment': "I don't think that the latinos who voted for him consider themselves immigrants anymore, so no ties to homeland or compassion for those still coming. It seems that skin color, at least with latinos, is no longer a distinguishing trait, which is great...but not like this.", 'created': '2024-11-09 14:58:45', 'submission_id': '1gn1sxg'}
{'comment': 'Ain’t y’all said this 8 years ago?', 'created': '2024-11-09 20:04:39', 'submission_id': '1gn1sxg'}
{'comment': 'And what Elon has done donating $120 million. Stop buying Tesla!', 'created': '2024-11-09 20:32:49', 'submission_id': '1gn1sxg'}
{'comment': "I think they do understand what they voted for. They assume that Trump's policies will only negativity impact other people. \n\nAnd when it eventually comes back to bite them, they'll have a shocked look on their face.", 'created': '2024-11-09 20:46:20', 'submission_id': '1gn1sxg'}
{'comment': "Gay/lesbian people voted to have the marriage rights that they fought for dismantled by the government...🤦\u200d♀️🤦\u200d♀️🤦\u200d♀️\n\nWhat's next? Black people voting for segregation/ jim crow laws?", 'created': '2024-11-10 02:25:34', 'submission_id': '1gn1sxg'}
{'comment': 'They voted for hate, and for leopards to eat other people’s faces', 'created': '2024-11-10 09:55:32', 'submission_id': '1gn1sxg'}
{'comment': '* They likely are either unaware of the desire to eliminate social security or believe “no one would ever actually do that.”\n\n* “The odds of someone I know dying from miscarriage are incredibly small.”\n\n* “I’m here legally and even if my friends and family aren’t, they’re law abiding citizens. They’ll be fine.”\n\n* “It’s smart to lower taxes on the rich. They’ll create more jobs.”\n\n* “Women won’t have the “right” to kill unborn babies? Good.”\n\n* “He was the victim of a partisan witch hunt. And even if he did anything illegal, it was a victimless crime.”\n\nNot saying I agree with any of these arguments, but they likely have what they perceive as valid arguments for each of these.', 'created': '2024-11-09 18:07:37', 'submission_id': '1gn1sxg'}
{'comment': 'They will', 'created': '2024-11-09 05:24:29', 'submission_id': '1gn1sxg'}
{'comment': "I had a thought… I wonder if this will turn out to be like the Republicans when they went after abortion and it became like the dog that caught the car… Now that Trump won the whole thing there will be nobody to blame for anything that happens… Everything he does he can't blame the Democrats because they will have zero power in Washington it will all be here in the Republicans… the midterms may be a bloodbath for the GOP we will see…", 'created': '2024-11-09 12:21:48', 'submission_id': '1gn1sxg'}
{'comment': 'No. That’s the whole purpose of the Republican propaganda machine.', 'created': '2024-11-09 14:14:02', 'submission_id': '1gn1sxg'}
{'comment': 'The police voted for this\n\nhttps://preview.redd.it/31fg238blwzd1.jpeg?width=1080&format=pjpg&auto=webp&s=96640d1752cb4ea6fb117d7065c778e84ac1bc28', 'created': '2024-11-09 17:33:51', 'submission_id': '1gn1sxg'}
{'comment': 'Trump got about the same votes he got last time. Harris did not run a convincing campaign for over 10 million Americans. We need to learn from it', 'created': '2024-11-09 21:28:26', 'submission_id': '1gn1sxg'}
{'comment': 'You missed:\n\nYoung people voted for the guy who will ensure that climate change fucks their whole world.\n\nMilitary personnel voted for the guy who called them suckers and losers.\n\nPoor folks voted for the guy who will eliminate their health insurance.\n\nAll of them voted for the guy who will gut the government so infrastructure will fail, pollution will go un-checked and racial and socio-economic discrimination will be normalized.', 'created': '2024-11-10 03:58:47', 'submission_id': '1gn1sxg'}
{'comment': 'Look up NO KINGS ACT', 'created': '2024-11-10 05:14:59', 'submission_id': '1gn1sxg'}
{'comment': '[removed]', 'created': '2024-11-09 19:53:21', 'submission_id': '1gn1sxg'}
{'comment': 'The cops. Cops supported a fascist. Keep that in mind for the future.', 'created': '2024-11-09 06:22:19', 'submission_id': '1gn1sxg'}
{'comment': 'I have a theory. We are realists and are predicting the country to be an oligarchy like Russia. But what do we often hear about out of Russia? Oligarch has "fallen out a window" or had an accident on a yacht. We know Putin is behind these. I am going to predict a reverse Putin. Here the oligarchs somehow take out Trump. Poisoned meal. Pay off a doctor to say it was a stroke or heart attack. Now Vance is their puppet. Easier to control. Trump is dumb, but is a narcissist who needs to be adored. This might prevent him from doing some things so he can get his ego stroked. Eliminate him and you got vance who doesn\'t care.', 'created': '2024-11-09 07:45:10', 'submission_id': '1gn1sxg'}
{'comment': 'No.. they have no damn clue. They have been informed by Fox News. It’s a team cheerleader group, they don’t care about the person anymore.', 'created': '2024-11-09 12:43:06', 'submission_id': '1gn1sxg'}
{'comment': 'But milk and gas will be cheaper tho /s', 'created': '2024-11-09 15:17:17', 'submission_id': '1gn1sxg'}
{'comment': 'Bring the pain. Let the corporations and con men eat Americans alive, they deserve it.', 'created': '2024-11-09 15:53:18', 'submission_id': '1gn1sxg'}
{'comment': "When will people learn that most people vote for their self-interests first? I'm so annoyed at posts like this. They obviously don't understand human nature. When will they finally learn to appease the majority so they can pass legislation for the minority?\n\nThe Dems lost because they fucked it up. And everyone trying to cope is doing just that, coping. They should have hammered immigration, inflation, and buttered up to young white males. Then everything would be gravy now, wouldn't it?", 'created': '2024-11-09 14:20:58', 'submission_id': '1gn1sxg'}
{'comment': 'Snelling and Catanzara better be ready\n\nThey voted for this to happen again\n\nhttps://preview.redd.it/h0o7bsavlwzd1.jpeg?width=1080&format=pjpg&auto=webp&s=9f3ee532f711240608bf0e7cffd23276656dba31', 'created': '2024-11-09 17:36:59', 'submission_id': '1gn1sxg'}
{'comment': '>Do Trump voters understand what they voted for?\n\n\nI think they don\'t but because the Republican party is seen as the "default".\n\n\nSo much has been said about the culture war, but few have mentioned that it\'s practically over. The Republicans won it. They are seen as THE American party, and the Democrats are, at best, seen as second fiddle to it.\n\n\nTrump didn\'t need to convince America that his policies are sound. He just needed to convince America that his policies aligned with what America imagines itself as. Harris, and any other Democrat, would be the challenger. They would need to justify why people should vote for them instead of the "default". That\'s an uphill battle\n\n\nSure, the Democrats could start rebranding themselves today and try to reclaim a part of the American culture, but the damage has already been done. In the mind of the average American, Democrats don\'t represent America in a deep cultural way that the Republicans do.\n\n\nI\'d like to be challenged here. I\'ve been thinking about why the standards over the two parties are different for years, and that\'s my conclusion. That the standards aren\'t so much different. It\'s that the parties are playing at different leagues.', 'created': '2024-11-09 16:48:15', 'submission_id': '1gn1sxg'}
{'comment': 'Under his administration, the DOJ dropped the policy of investigating excessive use of force and enforcing agreements with PDs that had excessive force violations under Obama’s administration. It’s not a coincidence that reached a breaking point in 2020. \n\nRather than address the issue, he and his campaign decided to spin it into a campaign issue. They were fueling the chaos some protests turned into. The bootleg militias were allowed and encouraged to get involved as a way to incite. The objective was to show “Joe Biden’s America” and somehow give the impression Trump was the strong one (like bootleg militias claiming they had to show up because nobody else was stopping it somehow demonstrated that) and the “law and order” candidate that is now a felon still claiming to be the law and order candidate. \n\nTwo days ago a Trump voter asked me why Biden and Harris let cities burn. It took a minute to realize he was referring to the summer of 2020. I pointed out Trump was president and his reply was, “are you sure?”', 'created': '2024-11-09 06:59:41', 'submission_id': '1gn1sxg'}
{'comment': 'Minorities abused by police voted for enhanced police immunity, make it make sense', 'created': '2024-11-09 23:24:04', 'submission_id': '1gn1sxg'}
{'comment': 'The FOP voted for this \n\nhttps://youtu.be/Togd2S74yIw?si=Yojs_ex1hHgcjkbb', 'created': '2024-11-09 17:33:12', 'submission_id': '1gn1sxg'}
{'comment': "It's going to take civil unrest and protests beyond what we've seen in decades to turn anything around. The ones who voted for him this time around, but never voted red before will need to feel it in their homes for it to be reversed. We'll see how smart T R U M P's admin is about executing the new policies so that it doesn't rile his new fringe base until it's too late to matter.", 'created': '2024-11-09 15:01:52', 'submission_id': '1gn1sxg'}
{'comment': None, 'created': '2024-11-09 06:26:50', 'submission_id': '1gn1sxg'}
{'comment': 'The economy will be the least of their worries', 'created': '2024-11-09 06:08:08', 'submission_id': '1gn1sxg'}
{'comment': 'Hard for me to enjoy them suffering when I will be as well.\xa0', 'created': '2024-11-09 15:03:49', 'submission_id': '1gn1sxg'}
{'comment': 'Literally my family’s excuse', 'created': '2024-11-09 07:26:32', 'submission_id': '1gn1sxg'}
{'comment': 'some how "god will provide" and "god has a plan" just doesn\'t fucking cut it..', 'created': '2024-11-09 17:16:14', 'submission_id': '1gn1sxg'}
{'comment': 'They voted for the exact reaction they are getting out of us right now. They voted for Trump because they\'re sadistic and they take pleasure in hurting people. American "Christians" are anything but Christian and the ones I know are among the most awful, despicable people I have met in my life.', 'created': '2024-11-09 23:14:02', 'submission_id': '1gn1sxg'}
{'comment': 'I saw a pastor say it just proves God can work through anyone. I told him apparently so can Satan.', 'created': '2024-11-11 01:12:09', 'submission_id': '1gn1sxg'}
{'comment': 'Too them being Christion is about believing in a dictator in the sky that sends people to hell for being gay.', 'created': '2024-11-10 03:14:27', 'submission_id': '1gn1sxg'}
{'comment': 'I am terrified by the fact the both Trump and Vance have foreign national tech billionaires with questionable loyalty whispering in their ears.', 'created': '2024-11-09 17:12:14', 'submission_id': '1gn1sxg'}
{'comment': 'This is what we’ve said since Bush #2. Still waiting.', 'created': '2024-11-09 06:04:28', 'submission_id': '1gn1sxg'}
{'comment': 'They’re too insulated. Look at red states. They are without exception the worst states to live in by any competent metric.\n\nThey’ve been fully run by Republicans for decades.\n\nYet every single problem in every one of those states is somehow the fault of liberals.\n\nThey’re far too pussified to admit their failure ass loser lives are exclusively their own fault.', 'created': '2024-11-09 06:20:47', 'submission_id': '1gn1sxg'}
{'comment': 'none of his voter know what they did. they are all idiots.', 'created': '2024-11-09 17:15:13', 'submission_id': '1gn1sxg'}
{'comment': 'All we have to do is look at the homeless camps, so many young men in them.', 'created': '2024-11-09 07:31:34', 'submission_id': '1gn1sxg'}
{'comment': 'How about truth in advertising for political ads! So many lies! I had to turn off my TV.', 'created': '2024-11-10 04:29:52', 'submission_id': '1gn1sxg'}
{'comment': 'What’s next? Black people voting for segregation/ jim crow laws?\n\nYes, they just did.', 'created': '2024-11-10 04:28:31', 'submission_id': '1gn1sxg'}
{'comment': "You're right about this, but the economy is getting better under Biden just in time for Trump to take credit. It'll take a while for Trump's policies to make a difference, unless he just goes crazy, which he might.", 'created': '2024-11-09 17:50:53', 'submission_id': '1gn1sxg'}
{'comment': 'Yeah, someone in another group was reflecting on whether anyone would try to make Trump’s exit a thing. I told them it would be nothing but a gift to the right. They have what they want and it would save them the trouble of humoring the mad king, and they could say “see, he’s gone, all better” to the conservatives who jumped ship because of him while changing absolutely nothing about their plans.', 'created': '2024-11-11 01:45:37', 'submission_id': '1gn1sxg'}
{'comment': 'All the better in their view if they have an excuse to declare martial law.', 'created': '2024-11-11 01:47:18', 'submission_id': '1gn1sxg'}
{'comment': 'That, and when things go wrong the Republicans blame the Democrats for it and the Democrats blame the Democrats for not stopping the Republicans from causing it. I do think they made several strategic mistakes. At the last point they had a chance of enough votes, they should have made dismantling gerrymandering and getting rid of the electoral college a priority but they clung to both trying to figure how to make it work for them. They should have made it impossible to block judicial appointments from ever taking place. They should have set an actionable and clear code of ethics on the supreme court, congress, and the president, and made it clear that actions which would be considered treason for a regular citizen are for a politician as well. Congress shouldn’t get lifetime retirement packages of hundreds of thousands of dollars per year, they should be limited to collecting social security, see how quick they would be to gut it. Let them live with the kind of health plan and insurance the average person does. But they have never been in a hurry to mandate that they themselves live by what the people do, and leaving every loophole open for themselves left the loopholes open for the right, who were vastly more coordinated in taking advantage of that.', 'created': '2024-11-11 01:59:39', 'submission_id': '1gn1sxg'}
{'comment': 'Oh, I just commented that lots of the cops are probably felons but for their immunity.', 'created': '2024-11-09 07:12:57', 'submission_id': '1gn1sxg'}
{'comment': 'And the ones caught setting dumpster fires in Denver were nazis who drove in as agitators.', 'created': '2024-11-11 01:11:01', 'submission_id': '1gn1sxg'}
{'comment': "It will be pretty bad for them under Trump's tax plan. I'd pay less than 1% more; the poorest group of Americans would pay about 8% more and that's just in taxes.\n\nThe tariffs will reduce their spending power. \n\nThe elderly are going to be very surprised at Trump's plans for SS...", 'created': '2024-11-09 06:10:00', 'submission_id': '1gn1sxg'}
{'comment': 'No it won’t! We all have to bitch and whine about grocery prices, they passed that baton to us. So many are adamant gas was less than $2/gal the entire time he was in office so we’ll also have to bitch about gas being more than $2/gal. If something annoys you, vent about it in the form of bitching about gas and grocery prices. \n\nIt’s our civic duty to make sure they don’t forget what they insisted they wanted and will not get.', 'created': '2024-11-09 07:04:46', 'submission_id': '1gn1sxg'}
{'comment': 'Republicans have never gone this extreme before though. With gay marriage and contraception very realistically being overturned within the next 4 years after Roe v Wade was just struck down, I would have to imagine people are going to be disgusted. And these tariffs are going to run up prices like we’ve never seen.', 'created': '2024-11-09 06:10:25', 'submission_id': '1gn1sxg'}
{'comment': "Well, this time, if Trump does follow through, it's gonna be way worse than Bush. \n\nSome people never learn.", 'created': '2024-11-09 06:10:26', 'submission_id': '1gn1sxg'}
{'comment': '[removed]', 'created': '2024-11-09 06:23:21', 'submission_id': '1gn1sxg'}
{'comment': 'There was a competitive race for a new US house district in my state this year. The Democrat worked in the Obama administration. The state Republican Party tried to blame the state’s crime rate on him as if he was even in a position with that type of authority in the DOJ (a decade ago) or like rising crime rates are a nationwide issue. He called them out for being in charge and trying to distract from their failings in the state. \n\nTheir lies failed, Shomari Figures will be a great addition to Congress and there will be one less MAGA Republican from AL in the US House.', 'created': '2024-11-09 07:18:20', 'submission_id': '1gn1sxg'}
{'comment': 'That and nothing should be allowed to be called news without a consistent record of factual accuracy.', 'created': '2024-11-11 01:31:13', 'submission_id': '1gn1sxg'}
{'comment': "I know. Let's also not forget about all the trans people who voted against their own health care and well being..", 'created': '2024-11-10 04:41:33', 'submission_id': '1gn1sxg'}
{'comment': 'Yea there is the very real possibility he does a lot of "show" things to satisfy his base but nothing that harms the economy and the economy sky rockets on the foundation Biden handed him....then he\'ll be the hero and all I will hear from my Trump family is "see we told you!!"....gag.', 'created': '2024-11-12 13:38:29', 'submission_id': '1gn1sxg'}
{'comment': "Fine people are forced to stay at home economy crashes \n\nPeople riot because they need food \n\nIf the police think they're overwhelmed and out numbered now just wait \n\nThe FOP endorsed him \n\nThe police want more of January 6th\n\nThey want it in every city \n\nThey want looting \n\nAnd this was only because one black got choked to death \n\nThey have no idea what they've wrought if Trump tries anything \n\nHe's not the president he's our bitch now", 'created': '2024-11-11 01:59:22', 'submission_id': '1gn1sxg'}
{'comment': 'It’s not a [mystery](https://youtu.be/yMOkewwS4iM?si=5cCUoh5hHhcujTNU) why he has support of any cops that are crooked.', 'created': '2024-11-10 06:09:13', 'submission_id': '1gn1sxg'}
{'comment': 'Is that the guy that drove a hearse or is that a different agitator/FBI informant. \n\nThe umbrella guy in Minneapolis on video breaking store windows was associated with white supremacist groups and started the first fire in Minneapolis. \n\nBoogaloo Boys also took advantage of the protests. They’re anti-cop, far-right anarchists that have a ridiculous name to seem harmless. They also wear Hawaiian print shirts. They’re cop killers.', 'created': '2024-11-11 02:43:29', 'submission_id': '1gn1sxg'}
{'comment': 'Let them burn.🔥 They might vote in 2026.🇺🇸🤣🇺🇸 I sold all my stock! I will watch the melt down from the sidelines.', 'created': '2024-11-09 06:19:10', 'submission_id': '1gn1sxg'}
{'comment': 'I was thinking that human rights are worth more than an increased price for groceries', 'created': '2024-11-09 08:11:34', 'submission_id': '1gn1sxg'}
{'comment': 'That should have been disgusted already. Even if it’s a shit show. They will NEVER blame Rapist elect soon to be Rapist in Chief.', 'created': '2024-11-09 06:17:23', 'submission_id': '1gn1sxg'}
{'comment': "By that point, according to what the right have been saying all along, it won't matter. Future elections will be a sham according to Trump. This time he has the supreme Court and enough extremists in Congress to help the goals", 'created': '2024-11-09 06:42:12', 'submission_id': '1gn1sxg'}
{'comment': 'Correct and correct. And I’m done trying to help people get out of their own fucking way.', 'created': '2024-11-09 06:16:16', 'submission_id': '1gn1sxg'}
{'comment': 'I am older and I am disgusted with posts like this.I not only voted for Harris I worked hard with flyers and facts!\n\nStop with the trashing of boomers', 'created': '2024-11-09 07:27:21', 'submission_id': '1gn1sxg'}
{'comment': 'Too soon. The market will rally for a while. His tarriff policy, if actually implemented, will tank the economy and cause inflation to rise. And that could affect interest rates, unless he removes the independence of the Fed. Once the tariffs are in place, within a year these effects might be felt and it would be wise to have enough cash on hand. Otherwise, timing the market is a fool’s errand.', 'created': '2024-11-09 09:19:06', 'submission_id': '1gn1sxg'}
{'comment': "Wait, wouldn't the stock be more valuable as inflation goes up?", 'created': '2024-11-09 06:28:22', 'submission_id': '1gn1sxg'}
{'comment': 'So basically you’re saying, “I got mine, screw the rest of you” real compassionate…', 'created': '2024-11-09 13:10:12', 'submission_id': '1gn1sxg'}
{'comment': 'I completely agree but they voted based on an assumption grocery prices will go down, not to protect rights. They’ve fallen for an extensive number of lies, there is no guarantee they’ll notice their rights being chipped away. \n\nMy state has been doing that for the past 2-3 years without most people noticing because culture war nonsense is the justification and the distraction (if people notice it at all). There have only been two that a lot of people noticed, an abortion ban and the state Supreme Court ruling that it’s fine to keep legal minors in a freezer. Other than that, most people don’t notice or don’t see the bigger picture. No jk, the governor touted the book ban as protecting parents’ rights even though it’s the exact opposite.\n\nEdit to add the state Supreme Court technically ruled that frozen embryos are legal minors. My interpretation is they approve of keeping legal minors in freezers.', 'created': '2024-11-10 21:54:01', 'submission_id': '1gn1sxg'}
{'comment': 'He avoided clarifying what he meant when he told Christians they’ll never have to vote again after this election. I think it’s highly likely he really meant “I just need your votes this time. Idgaf if you continue voting Republican.” He is self-serving and doesn’t hold back with pandering to the extremes by telling them what they want to hear. It’s more likely “fuck the party!” would have been the thing that offended them.', 'created': '2024-11-09 07:11:12', 'submission_id': '1gn1sxg'}
{'comment': 'It’s now about timing the market at all. Trump 2.0 will not be anything normal. The crash will occur way before 2026. Once we know who is in the cabinet and leading federal agencies you will know very quickly. Within 30 days. 🤣', 'created': '2024-11-09 17:07:55', 'submission_id': '1gn1sxg'}
{'comment': 'It’s important to stay liquid in times of volatility', 'created': '2024-11-09 06:51:38', 'submission_id': '1gn1sxg'}
{'comment': 'Caring for others died on November 5th. I can’t fight stupid, ignorance, or hate. I will protect my own because Americans are the most idiotic voting block today. I wish you well. Concentrate on self improvement and family and friends. Survive to fight another day if we can even vote in 2026.\n\nWhen the economy crumbles and markets crash the people will get what they voted for…or didn’t for. Take care. I’m out. Turn off the news. Trump 2.0 will be a total shit show. No one will complain about the price eggs then.🇺🇸💩🇺🇸', 'created': '2024-11-09 17:20:13', 'submission_id': '1gn1sxg'}
{'comment': "I don't think it's wise to make excuses and try to explain what he says. Maybe he can't do that, but we know he's going to try.", 'created': '2024-11-09 07:12:36', 'submission_id': '1gn1sxg'}
{'comment': 'Have liquidity yes, but exiting the market is never a good bet, unless you have to to stay liquid. And if it is a good bet, this country is a burning dumpster floating down a river, so it ain’t gonna matter.', 'created': '2024-11-09 09:21:19', 'submission_id': '1gn1sxg'}
{'comment': 'I assure you, making excuses for DJT is not at all what that was. He is intentionally vague as a tactic to leave room to deny what he meant and to leave things up to interpretation. It was a method he used a lot during his 2016 campaign and his voters filled in the blanks for what they wanted the vague statement to mean. \n\nThe statement being referenced has more than one interpretation. He avoided clarifying what he meant, but he is a pathological liar so clarifying wouldn’t rule out either initial interpretation.', 'created': '2024-11-10 22:40:15', 'submission_id': '1gn1sxg'}
{'comment': 'It’s an unfortunately effective tactic. They all think he has great policies too because he never states his policies, he just word salads and they interpret his weaseling as saying whatever they want to hear. He might as well be speaking in tongues with them declaring it the word of god.', 'created': '2024-11-11 01:18:28', 'submission_id': '1gn1sxg'}
{'comment': 'Totally fair, I apologize. Tensions are high and I should not have assumed you were trying to sanewash it. I have just seen soooooo much sanewashing of this whole thing.', 'created': '2024-11-11 17:35:00', 'submission_id': '1gn1sxg'}
{'comment': 'Right! His campaign agendas have been rough drafts of outlines with only headings and maybe some subheadings. His voters were quick to jump on his projection about Kamala’s policy agenda not being thoroughly laid out with every detail. \n\n>speaking in tongues \n\nThat needs to replace the BS about litter boxes in schools! They want religion back in public schools, some teachers are speaking in tongues to teach every class. My neighbor’s cousin’s plumber’s niece said that’s what her best friend’s cousin told her his teacher is doing that.', 'created': '2024-11-11 01:50:31', 'submission_id': '1gn1sxg'}
{'comment': 'Like, literally???', 'created': '2024-11-11 02:06:05', 'submission_id': '1gn1sxg'}
{'comment': 'They’re going to need something to believe is going on in public schools after Trump instantly removes the nonexistent litter boxes from public school bathrooms. Think of it like AdLibs, the lie/rumor is already widespread, just replace litter boxes with teachers speaking in tongues.', 'created': '2024-11-11 02:47:43', 'submission_id': '1gn1sxg'}
{'comment': 'I’m voting for someone who screams bullshit every time Republicans lie. No more high road, no more media polish, someone who’s gonna stare people in their face and call them out, someone who shows up with receipts and who’s campaign is on Offense not defense.', 'created': '2024-11-09 05:25:27', 'submission_id': '1gn186x'}
{'comment': 'He is a lovely man and I would absolutely support him, though I wouldn’t say he’s my #1 for 2028.', 'created': '2024-11-09 04:57:02', 'submission_id': '1gn186x'}
{'comment': "No. Let's see who steps up during the next 4 years and earns it in the primaries.", 'created': '2024-11-09 05:23:30', 'submission_id': '1gn186x'}
{'comment': 'There needs to be a big open primary. No more anointings. And no more octogenarians.', 'created': '2024-11-09 05:30:15', 'submission_id': '1gn186x'}
{'comment': 'No let’s have a big primary and hear from lots of candidates and see who emerges.', 'created': '2024-11-09 04:50:32', 'submission_id': '1gn186x'}
{'comment': 'Let’s survive and organize. Then let’s get through the midterms.', 'created': '2024-11-09 05:22:07', 'submission_id': '1gn186x'}
{'comment': 'Until the DNC learns from history, we could put up Jesus Christ himself and lose. Their postmortem will likely be more about the other side than what they arrogantly fuck up every election. They need to look inward and admit some basic but serious flaws in themselves:\n\n1. Feckless DNC leadership worried more about seniority, kissing rings, and one guy’s “legacy” than responding to the very loud cries of its voter base\n2. A baffling inability to admit that the “pillars of the party” from top to bottom of the ticket such as Pelosi and Schumer have run their course and replace them.\n3. A party terrified of bold, transformative policy for fear of losing swing voters. (If they need an example, the RNC has zero hesitation when pulling the trigger on bombastic, batsh*t crazy legislation. The more explosive the better.)\n4. Every four years, the DNC runs elections the same as our grandparents DNC. It’s Vietnam all over again; they are fighting with conventional uniformed war tactics against boobytraps and snipers hiding in trees.\n5. Despite raising record breaking money every election, they ignore large, growing, obvious demographics and regions that are shooting off voluminous flares. They throw all the money, time and manpower at the same places. They ignore evolving districts as either historically in-the-bag or historically unwinnable. They don’t amplify the part of their message that is unique to the district or demographic, compounding a voters invisibility. Then, with almost Shakespearean dramatics, the party scratches its collective head upon losing to an obvious trend they ignored. Re: Latino voters\n\nThe candidate is irrelevant until they completely change their responsiveness, message, strategy, leadership, and unify its base. 20 million voters stayed home. God knows how many defected to the right. This doesn’t happen unless they feel totally hopeless, disaffected, unheard or all of the above.', 'created': '2024-11-09 09:47:59', 'submission_id': '1gn186x'}
{'comment': 'No Trump will be 48 after Biden resigns and gives Harris a few weeks at the helm just to screw up Trumps merch business.', 'created': '2024-11-09 05:06:31', 'submission_id': '1gn186x'}
{'comment': 'Walz gave a great speech? Cool he can join in on the primary.', 'created': '2024-11-09 05:31:43', 'submission_id': '1gn186x'}
{'comment': 'It was the best Democratic speech I have heard in a long time. \n\nBallz to the Walz 2028', 'created': '2024-11-09 04:44:49', 'submission_id': '1gn186x'}
{'comment': None, 'created': '2024-11-09 05:23:29', 'submission_id': '1gn186x'}
{'comment': 'Ppl on here thinking we will have a free fair election ever again are funny…', 'created': '2024-11-09 05:09:15', 'submission_id': '1gn186x'}
{'comment': 'Nope it’s not him. No. We need to have a proper primary and let them all get in front of us - Pete, Gretchen, Gavin, JB, and a host of others. They need to battle it out, sharpen each other, hone their pitch and get it right. No one - not OP, not anyone - can pick a favorite now.', 'created': '2024-11-09 05:40:50', 'submission_id': '1gn186x'}
{'comment': 'No thanks, (and I adore Tim). We need a Bill Clinton-type based on this election. Young, economically focused and preferably from a southern/rust belt/midwestern state.\xa0', 'created': '2024-11-09 05:12:41', 'submission_id': '1gn186x'}
{'comment': 'I would like Beshear.', 'created': '2024-11-09 05:48:55', 'submission_id': '1gn186x'}
{'comment': 'Buttigieg needs to run too.', 'created': '2024-11-09 13:12:35', 'submission_id': '1gn186x'}
{'comment': 'Mayor Pete would be a wet dream for me. We’re going to need to get a hell of a lot better at messaging and I think he’s capable.', 'created': '2024-11-09 13:56:40', 'submission_id': '1gn186x'}
{'comment': "Love the guy, and he would have been an incredible VP, but the tampon Tim thing isn't going away, and it's that type of bullshit that sells the right and fires them up. Dems need to get away from that. DEMS NEED TO LEARN FROM THIS FAILURE!", 'created': '2024-11-09 06:06:06', 'submission_id': '1gn186x'}
{'comment': 'Funny reading all these comments, and no one saying there may actually be no more elections after this. Word from Trumps mouth, "you won\'t ever have to vote again, folks".', 'created': '2024-11-09 05:48:47', 'submission_id': '1gn186x'}
{'comment': "Allow me to pay Devil's advocate.....what makes you think we will have an election in 4 years?", 'created': '2024-11-09 07:40:29', 'submission_id': '1gn186x'}
{'comment': "No. At this point the dems have few options and he isn't one. Good guy though.", 'created': '2024-11-09 06:02:03', 'submission_id': '1gn186x'}
{'comment': 'I love Tim but he won’t survive a primary, especially against larger personalities like Gavin Newsome.', 'created': '2024-11-09 11:05:15', 'submission_id': '1gn186x'}
{'comment': "Fuck no he's not. I like the guy but can we please not plan on running the same failed candidates next time? JFC it's time to learn an actual lesson - we lost *bad*, and trying to do a rerun is only going to backfire. We can't just keep doing the same thing", 'created': '2024-11-09 04:45:08', 'submission_id': '1gn186x'}
{'comment': 'Pete Buttigieg 2028', 'created': '2024-11-09 06:41:53', 'submission_id': '1gn186x'}
{'comment': "Buttigieg? Or is he unelectable because he's gay?\n\nPersonally, I think he's a fucking rockstar and would make and outstanding POTUS.", 'created': '2024-11-09 05:44:30', 'submission_id': '1gn186x'}
{'comment': "Let's see how you all think in a year or two after realizing Trump and the GOP don't care about giving any of us a fair election. Thanks for not voting this time, really hope you like project 2025.", 'created': '2024-11-09 09:52:33', 'submission_id': '1gn186x'}
{'comment': 'I get that he’s a likable guy, but he didn’t do himself any favors with having to take back multiple things he “misspoke” about before the honeymoon period even ended.\n\nHe’d get pounced on as the primary target.', 'created': '2024-11-09 06:28:58', 'submission_id': '1gn186x'}
{'comment': 'It’s a little early to speculate about what voters are going to buy 4 years from now because we haven’t seen what Trump’s actually going to do and how people feel about it. Trump could be gone in a year, for all we know, and Vance is the incumbent to run against', 'created': '2024-11-09 17:15:23', 'submission_id': '1gn186x'}
{'comment': 'Nah, I’m not voting for him in primary. He’s not confident in front of a mic and it will turn a lot of people away.', 'created': '2024-11-09 05:39:38', 'submission_id': '1gn186x'}
{'comment': "He's great, but he's now associated with a historic loss, which will be impossible to shake, especially in 4 years. He practically has no shot at the presidency", 'created': '2024-11-09 06:33:04', 'submission_id': '1gn186x'}
{'comment': 'I absolutely loved him. He’s morally sound and would absolutely take care of us. I was more sad for him than I was for Kamala (but don’t get me wrong, I was sad for both.) However, I don’t think people would vote him in as president. I don’t even know how to explain it. The closest explanation I can think to describe it is that he’s too nice of a guy for the country. I did look up some of his policies and they were great. I’ll need to dive in to all of his policies he implemented in Minnesota; maybe I’ll have a different opinion after that.', 'created': '2024-11-09 08:45:52', 'submission_id': '1gn186x'}
{'comment': 'I need a minute', 'created': '2024-11-09 09:29:02', 'submission_id': '1gn186x'}
{'comment': 'Walz was the perfect VP. But I don\'t know about president. He\'d have to work on his speeches and bring out the "coach" in him. \n\nNewsom just seems presidential, but someone from Cali is an easy target. \n\nWhitmer is a woman and America obviously isn\'t ready for that. Sorry, but I wanna win more than I need a woman president. \n\nShapiro is great, but being from PA, we absolutely can\'t lose him to an R. They would gut the unions.\n\nWe need some generic loud governor or general that has shown they truly care about people.', 'created': '2024-11-09 10:38:53', 'submission_id': '1gn186x'}
{'comment': 'I am looking forward to him coming "back" to MN and to do everything he can to Trump-proof Minnesota for the next 4 years and continue to make the state a blue harbor. Doubtless that he\'s cut some teeth and gained strength and resilience in his campaign with Harris. I\'m ready for Dark Walz. 😎', 'created': '2024-11-09 10:46:22', 'submission_id': '1gn186x'}
{'comment': 'Why the hell would we bother with this now? Need to see what happens over next few years', 'created': '2024-11-09 11:37:21', 'submission_id': '1gn186x'}
{'comment': 'I doubt it…I’m pretty sure democracy is on the way out now', 'created': '2024-11-09 13:42:47', 'submission_id': '1gn186x'}
{'comment': 'No more of this joy bullshit. Time for trench warfare.', 'created': '2024-11-09 14:28:02', 'submission_id': '1gn186x'}
{'comment': 'If I was the party leadership, I’d probably want to start with a clean slate after this debacle.\n\nI don’t mind the guy, I also don’t think there’s anything particularly special. Being a normal guy is endearing for politicians…. but I know plenty of normal guys.', 'created': '2024-11-09 15:32:21', 'submission_id': '1gn186x'}
{'comment': "I think Newsome will spend the next 4 years as the most in-his-face nemesis Trump can imagine & fight him valiantly on California's behalf.\n\nWith that as proving ground he may well be the tough guy Democrat for 2028.", 'created': '2024-11-09 18:38:33', 'submission_id': '1gn186x'}
{'comment': "Nice guy, but he's almost an SNL parody of himself. Dems need to realize that incrementalism is done, and populism is the way to go. Centrist compromisers won't win against the MAGA successors.", 'created': '2024-11-09 06:36:41', 'submission_id': '1gn186x'}
{'comment': 'Y’all keep doing fantasy drafts like we’re not gonna have to fight like hell just to have a free and fair election next time around.', 'created': '2024-11-09 06:54:36', 'submission_id': '1gn186x'}
{'comment': 'Middle class is where the party needs to focus.', 'created': '2024-11-09 05:13:26', 'submission_id': '1gn186x'}
{'comment': 'This guy would be amazing, but from what I\'ve heard, he has specifically said he does not want to be the president. That could change, but I\'m not banking on it. We should work hard for whoever is the nominee is regardless. I mean, that\'s easy for me to say since I\'m a "vote blue no matter who" person, but the point stands.', 'created': '2024-11-09 06:45:06', 'submission_id': '1gn186x'}
{'comment': 'I love him but he just won’t cut it, the Republicans already know his weaknesses and he’d get chewed up and spit out by their media machine. He’s amazing at preaching to his own choir, but we saw him freeze up in the debate when faced with opposition. At this current moment my choice for 2028 would be Raphael Warnock, as he’s just an amazing communicator because he’s both relatable and is able to convey true leadership.', 'created': '2024-11-09 06:58:23', 'submission_id': '1gn186x'}
{'comment': "He's a good dude but I think Mark Kelly would be more popular nationwide and across every demographic.", 'created': '2024-11-09 07:05:56', 'submission_id': '1gn186x'}
{'comment': 'He’s never going to be president.', 'created': '2024-11-09 07:20:18', 'submission_id': '1gn186x'}
{'comment': 'I would say Pritzker, but a lot of us here in IL aren’t ready to let him go yet.', 'created': '2024-11-09 07:43:33', 'submission_id': '1gn186x'}
{'comment': 'I think walzs has a good chance of becoming the nominee. He has a +30 favorablity and is the most popular national dem right now. He also isn\'t a Washington insider or a costal elite. It\'s been decades since democrats nominate someone with a job other then "politician" and governors have a good record as president\'s. Our bench also isn\'t really strong right now. Newsom is Californian which is a turn off for most of the country. Prizker is a billionaire elite which doesn\'t resonate with democrats voters. Unless we go for grabbing the business community instead of the unions. We aren\'t going to nominate a woman after two failed attempts. Bernie is to old. AOC is to young to be taken seriously and has to much baggage. \n\nEssentially, I think the top tier presidential candidates are the same veep pool that harris had to pick from. And walz is still the best choice.', 'created': '2024-11-09 08:18:25', 'submission_id': '1gn186x'}
{'comment': 'I like Walz but I don’t think this is the answer', 'created': '2024-11-09 08:20:40', 'submission_id': '1gn186x'}
{'comment': 'TIM WALZ/WES MOORE 2028!', 'created': '2024-11-09 09:44:20', 'submission_id': '1gn186x'}
{'comment': 'Pick younger presidents', 'created': '2024-11-09 10:07:32', 'submission_id': '1gn186x'}
{'comment': "It'll have to be a male candidate, America unfortunately isn't ready for a woman president. \n\nNewsom is not a good choice, he's way too liberal, and I can already see the comparisons of California's issues being spread across his image. They need someone with a cleaner slate, also, more of a moderate.", 'created': '2024-11-09 13:26:59', 'submission_id': '1gn186x'}
{'comment': 'He lost; so unless we want to loose the next one too probably not.', 'created': '2024-11-09 13:32:09', 'submission_id': '1gn186x'}
{'comment': 'It’s Newsom for me.', 'created': '2024-11-09 13:40:32', 'submission_id': '1gn186x'}
{'comment': 'I fucking love this guy but we won’t know who the best fit is to contest Trump until we see what type of progress he actually makes or lack there of.', 'created': '2024-11-09 13:47:54', 'submission_id': '1gn186x'}
{'comment': 'No, he will not win the primary', 'created': '2024-11-09 13:58:38', 'submission_id': '1gn186x'}
{'comment': 'I think there needs to be a primary.', 'created': '2024-11-09 14:01:14', 'submission_id': '1gn186x'}
{'comment': 'I agree. We don’t need Mr. Rogers. We as a society are so far beyond that. We need to fight.', 'created': '2024-11-09 14:37:11', 'submission_id': '1gn186x'}
{'comment': "It's NOT gonna be tim walz. Look at his debate performance and all those gaffes he had. I love him and wanted desperately for him to be our VP but he won't be president and I'm sure he won't seek the nomination", 'created': '2024-11-09 14:40:45', 'submission_id': '1gn186x'}
{'comment': 'Newsome, Shapiro, Walz are some great choices. But money will be on Wes Moore. But there’s a lot of time between then and now. Most likely someone new. Moore kinda fits that mold.', 'created': '2024-11-09 14:55:59', 'submission_id': '1gn186x'}
{'comment': 'Walz/Warnock? Need a VP from a swing state.', 'created': '2024-11-09 15:37:03', 'submission_id': '1gn186x'}
{'comment': 'Punctuation would really improve this post. \n\nNo and no. mean different things. \n\nThis says that Tim Walz is not 48.\n\nI think you meant no. 48.', 'created': '2024-11-09 16:19:01', 'submission_id': '1gn186x'}
{'comment': "I love Tim Walz, I also really like Pete. I'll be choosing between those two at this point.", 'created': '2024-11-09 16:56:15', 'submission_id': '1gn186x'}
{'comment': 'Man needs to GREATLY get better at debates if he wants that', 'created': '2024-11-09 16:57:43', 'submission_id': '1gn186x'}
{'comment': 'I vote Jimmy Kimmel.', 'created': '2024-11-09 17:06:02', 'submission_id': '1gn186x'}
{'comment': 'Don’t count out Andy Breshear. He has won governor in a deeply red state TWICE.', 'created': '2024-11-09 18:58:48', 'submission_id': '1gn186x'}
{'comment': 'Walz or whoever else, they need to be ready now and democrats put a solid plan to get them elected. They can’t be blindsided again, there’s simply no excuse.', 'created': '2024-11-09 19:10:48', 'submission_id': '1gn186x'}
{'comment': 'I’m gonna keep saying mark kelly', 'created': '2024-11-09 19:14:01', 'submission_id': '1gn186x'}
{'comment': 'Pritzker/Walz or Pete in 2028. Pritzker has done great things for Illinois. Sadly we have to run another white male. I thought Kamala was going to win. I really wanted joy for the next 4 years. Whoever it is though we need to figure it out quick and have them going all over the country over the next 4 years.', 'created': '2024-11-09 19:52:41', 'submission_id': '1gn186x'}
{'comment': "Ranked choice voting and I agree with top comments about calling out bullshit. Like for fucks sake, people view confidence as proof of whether something is true, and Trump says everything with confidence no matter what the lie. We need someone who can take that and confidently call bullshit and make an issue out of the lie someone just told. They always lie and quickly change the subject, and everyone just goes with it. We need someone who will stop the show when someone lies. Call bullshit, explain why it's bullshit, then ask him why he is intentionally lying to his audience. Does he think they're so stupid that they'll believe anything? Because that's what he's doing.", 'created': '2024-11-09 20:12:06', 'submission_id': '1gn186x'}
{'comment': 'Who’s the Democrat who goes on FOX and beats them bad? Pete!', 'created': '2024-11-10 20:05:48', 'submission_id': '1gn186x'}
{'comment': 'If Trump ends up tanking the economy like we know he will, Pritzker could be a good choice. He can run on being an actual businessman, not a fake one like Trump, who can pull us out of the mess.', 'created': '2024-11-11 01:45:01', 'submission_id': '1gn186x'}
{'comment': 'Democrats try to run in circles challenge: Impossible', 'created': '2024-11-09 04:53:31', 'submission_id': '1gn186x'}
{'comment': 'Well, he’s a white guy so maybe the idiots that we need every four year will vote for him.', 'created': '2024-11-09 06:19:34', 'submission_id': '1gn186x'}
{'comment': 'I think it needs to be a large primary and see who comes out, that said I’m rooting for Pete at this point', 'created': '2024-11-09 06:23:53', 'submission_id': '1gn186x'}
{'comment': 'Walz/Beshear 2028 ticket just imagine that', 'created': '2024-11-09 07:26:58', 'submission_id': '1gn186x'}
{'comment': 'JD Vance is probably going to be 48 in a year or 2.', 'created': '2024-11-09 12:31:35', 'submission_id': '1gn186x'}
{'comment': 'I appreciate democrats who think there will still be elections in the future. I think you\'re crazy and that democracy is dead, especially if jd ever replaces Trump. They have presidential immunity, the senate, the house and scotus. There are no checks and balances for the man who has already told us "you won\'t have to vote again".\n\nDemocrat leadership fucked up in the most tremendous ways in the most critical of times and now we are facing the consequences of it. We let a nazi win.', 'created': '2024-11-09 14:31:42', 'submission_id': '1gn186x'}
{'comment': 'Before we go picking a new presidential candidate we need democratic leadership to help through this degraded and ruined constitutional republic. The country is in ruins. Nero plays his harp while Rome burns.', 'created': '2024-11-09 19:27:51', 'submission_id': '1gn186x'}
{'comment': 'No, I don’t want Walz for 2028. He’s a good guy but he’s not *the* guy. We need to get serious and we need to find our next Obama.', 'created': '2024-11-09 07:44:13', 'submission_id': '1gn186x'}
{'comment': "My money's on Mark Cuban. He's our rich white guy.", 'created': '2024-11-09 06:07:14', 'submission_id': '1gn186x'}
{'comment': "Josh Shapiro would be a very likely candidate in 2028. He's a good governor, pretty well liked, great speaker, gets shit done and doesn't take any shit", 'created': '2024-11-09 06:04:39', 'submission_id': '1gn186x'}
{'comment': 'I can’t believe no one has mentioned Jeff Jackson. He has a media presence with tic tok that is honest and forthright. Pair him with Buttegeig who can face the fire of Fox News, and convert voters on platforms like YouTube. I think Jeff Jackson/ Pete Buttegieg would make a strong ticket. \n\nYou need someone who can sit down in the face of adversity and win. It doesn’t matter who would make the best president, it matters who would win the election. \n\nJeff Jackson is the anti-Trump because he is forthright and truthful.\n\nOne of the reasons the Dems lost was because of “outrage” journalism, a practice Rep. Jackson is very against. Outrage journalism exhausted the American people and was absolutely a contributing factor that gave Trump the White House. \n\nMMW, Jeff is the kind of guy who would cut right through the sensationalism BS that gets pushed by MSM. He is genuine and would connect with the middle and working class.', 'created': '2024-11-09 06:43:32', 'submission_id': '1gn186x'}
{'comment': 'Shapiro / Buttigieg 2028.', 'created': '2024-11-09 08:15:43', 'submission_id': '1gn186x'}
{'comment': 'Right now Democrats have to hold the line. We cannot give up any more Senate/Congress or Governors. \n\nI live in North Carolina. Trump won this state but Democrat Josh Stein still became Governor. Sadly, I suspect that while Robinson was a crap candidate, MAGAs who voted for Trump skipped him down ballot rather than elect a Black man. Call it the Herschel Walker syndrome. \n\nWe cannot give up on woman or minority on the ticket because I strongly believe the conservatives will run that play against the Democrats. In 2028 they could put Lara Trump as Vance’s VP for two reasons:\n\n1. Her last name is Trump. Trump keeps the illusion of democracy while maintaining power behind the scenes. MAGA will vote for Daddy’s little girl. \n\n2. Once again “own the libs”. Have a conservative woman who is pro-choice, doesn’t want trans athletes, blah, blah.', 'created': '2024-11-09 16:31:50', 'submission_id': '1gn186x'}
{'comment': 'I think Walz is probably perma tainted, unfortunately.', 'created': '2024-11-09 05:19:14', 'submission_id': '1gn186x'}
{'comment': "I'd say so, but \n\n1. The Democratic Party might not exist in 2028\n\n2. In 2028 he'll be 64, if he won and ran for a second term he'd be 72 when he leaves. Can we PLEASE distance our party from OLD candidates?", 'created': '2024-11-09 05:53:51', 'submission_id': '1gn186x'}
{'comment': 'And we now have Elon Musk to worry about. $$ is a powerful thing.', 'created': '2024-11-09 07:34:22', 'submission_id': '1gn186x'}
{'comment': '100%.', 'created': '2024-11-09 07:59:38', 'submission_id': '1gn186x'}
{'comment': 'Walz or cuban 2028....', 'created': '2024-11-09 08:25:08', 'submission_id': '1gn186x'}
{'comment': 'You have to look at who didn’t vote. We still have numerous people below 40 who do not vote. Our own people did not turn out to vote. With all the data out there, we should know who these people are and why they are not voting. \n\nAlso, we need better rebuttal to FOX entertainment. It was the year that Democrats are taking away masculinity. Intelligence needs to be cooler!\n\nIt seems clear the Republicans have now decided that they are ok with a crooked candidate. Is getting rich so important that they are willing to stretch the law? Just what does that say about their so called family values? And their law and order party. We did not point out enough that Trump was evading the law. They sold the “ He is in a witch hunt” and people bought it. He actually said” we get Pence to recertify and we win!” And he supported the attacks on our Capitol! \n\nTrump hammers things!! We can hammer back. You say something enough people will believe it even if it is the truth!!!!! Don’t give up on women candidates. Women are great leaders throughout the world we keep talking about that. Talk about what Gretchen does, Janet Yellen, Elizabeth Warren, Laura Kelly, Jacinda Arden, Opra Winfrey.\n\nWomen are more ethical. That is one reason they do not get elected, but that needs to change. They bust up the Good Old boy circles. Bernie does that as well. Obama was successfully elected on that but also on a willingness to compromise on some things. Democrat Laura Kelly has done a bang up job in a red state.\n\nhttps://greatergood.berkeley.edu/article/item/are_women_more_ethical_than_men', 'created': '2024-11-09 13:21:03', 'submission_id': '1gn186x'}
{'comment': 'It should have been Newsom this time.\n\nOr\n\nHear me out, I’ll run. Don’t 100% love the idea of being President, but I would do my best to emulate Washington.', 'created': '2024-11-09 13:51:05', 'submission_id': '1gn186x'}
{'comment': "I believe Prunt when he blobbers about not needing to vote again.\n\nBut assuming we can,\n\nIf Walz becomes Danial San to Bernie's Mr. Myagi. I'll think about it.", 'created': '2024-11-09 15:14:33', 'submission_id': '1gn186x'}
{'comment': 'Same!!!!', 'created': '2024-11-09 15:20:02', 'submission_id': '1gn186x'}
{'comment': 'He has a few successful progressive policies that Dems could run on such as free school lunch that would resonate with voters.', 'created': '2024-11-09 15:35:36', 'submission_id': '1gn186x'}
{'comment': "It's basically a high school popularity contest. Just get some celebrity to run. That's the only thing the NASCAR fan types understand.", 'created': '2024-11-09 15:36:48', 'submission_id': '1gn186x'}
{'comment': 'I would love love love that. Someone said to me, how can you stand that guy? But they love Trump. Told me everything I needed to know about them. Walz reminds me of my grandfather when he was younger and he was the best example of pure virtue and equal treatment for all human beings I have ever seen.', 'created': '2024-11-09 15:47:55', 'submission_id': '1gn186x'}
{'comment': 'Pete B for President', 'created': '2024-11-09 15:50:07', 'submission_id': '1gn186x'}
{'comment': 'I personally am hoping for Josh Shapiro or Pete Buttigieg', 'created': '2024-11-09 15:52:42', 'submission_id': '1gn186x'}
{'comment': 'Walz is the first politician I actually kinda like. But I’m sure he’ll end up doing something that changes my mind. (I’m never been a fan of any politician). He’s the first one that has struck me as genuine.', 'created': '2024-11-09 17:05:57', 'submission_id': '1gn186x'}
{'comment': 'I’m done voting forever unless we get Bernie level “house cleaning”.', 'created': '2024-11-09 18:00:24', 'submission_id': '1gn186x'}
{'comment': 'I like Walz a lot. If he were on the ballot in 2028 I would certainly vote for him. However, I think we need to nominate someone who will resonate with guys who value masculinity (even Trumps twisted version). I\'ve come to the sad conclusion that elections are more about emotions than facts. Low knowledge voters cannot be "educated". We have to meet them where they are. We need someone who is intelligent, competent, **and** who resonates emotionally with low knowledge voters.', 'created': '2024-11-09 18:28:57', 'submission_id': '1gn186x'}
{'comment': 'Astronaut Mark Kelly. And he should be announced as such every time.', 'created': '2024-11-09 20:15:41', 'submission_id': '1gn186x'}
{'comment': 'Cory Booker and Josh Shapiro are the only two options imo. Idc which is at the top of the ticket, but they should run together', 'created': '2024-11-09 20:45:42', 'submission_id': '1gn186x'}
{'comment': 'I want Josh Shapiro', 'created': '2024-11-09 21:17:14', 'submission_id': '1gn186x'}
{'comment': 'Ngl the Democrats need to keep pushing more public education so gen Z and the next gen dont fully become stupid and reduce the favor to Republicans like once these boomers and millennials die of old age the next gen will do better we have technology to spread so much more info on X,tiktok,reddit and more like midterms and 2028 eletion will have more gen Z voters all Democrats have to do is get youtubers and streamers to have Democrats candidates talks about themselves like trump got adin Ross and those Nell boys on those young mega kids so Democrats need to do the same but start in elementary,middle school so they dont fall under the mega influence', 'created': '2024-11-10 02:03:28', 'submission_id': '1gn186x'}
{'comment': 'I hate that this country is so homophobic that Pete Buttigieg wouldn’t stand a chance - even though he’s uber smart, articulate, intelligent and patriotic (not MAGA fascism disguised as patriotism).', 'created': '2024-11-10 04:45:15', 'submission_id': '1gn186x'}
{'comment': "Yeah walz should run without Kamala imo. He was so much better when he wasn't forced to repeat her lines.", 'created': '2024-11-11 22:36:35', 'submission_id': '1gn186x'}
{'comment': "I recall a story that said the reason he got it over Shapiro was because he was explicit to Kamala that he didn't want the Presidency in the future.", 'created': '2024-11-09 06:34:08', 'submission_id': '1gn186x'}
{'comment': 'I don\'t know where your head is at but "get to work" is gonna mean making sure there\'s an election in 2028 at all.', 'created': '2024-11-09 07:21:58', 'submission_id': '1gn186x'}
{'comment': "It doesn't matter who we pick. I mean, look what happened to Bernie. I was so pumped for him. He made me excited about politics and voting, and then they chose Hilary. Like others have said, I think a big primary would be good to see who the people are excited for and for the dems to actually pick that person.", 'created': '2024-11-09 07:50:25', 'submission_id': '1gn186x'}
{'comment': 'Why bother he will just get his ass kicked by jd Vance. Or another Trump run.', 'created': '2024-11-09 14:01:33', 'submission_id': '1gn186x'}
{'comment': "A more left-wing populist direction is needed, but I don't know if that person will be Walz.\n\nSomeone younger is really needed finally. Walz is in his early 60s, but I think we need someone in their 40s who can approach middle America and address economic policy strongly.", 'created': '2024-11-09 19:02:16', 'submission_id': '1gn186x'}
{'comment': 'Maybe Shawn Fain?', 'created': '2024-11-09 06:31:57', 'submission_id': '1gn186x'}
{'comment': 'I been giving it some thought and I think the Democrats need...\n\nBruce Wayne.', 'created': '2024-11-09 09:01:56', 'submission_id': '1gn186x'}
{'comment': 'Fetterman / Waltz 28', 'created': '2024-11-09 14:15:35', 'submission_id': '1gn186x'}
{'comment': 'Absolutely not. The only man for the job is Gavin Newsome.', 'created': '2024-11-09 07:24:07', 'submission_id': '1gn186x'}
{'comment': 'Kamala 2028!', 'created': '2024-11-09 07:11:55', 'submission_id': '1gn186x'}
{'comment': 'He’s way too hokie.', 'created': '2024-11-09 08:37:44', 'submission_id': '1gn186x'}
{'comment': 'Walz was the first to call them weird\xa0', 'created': '2024-11-09 08:25:24', 'submission_id': '1gn186x'}
{'comment': 'We need our own Alexei Navalny. His documentaries were incredible.', 'created': '2024-11-09 06:44:43', 'submission_id': '1gn186x'}
{'comment': 'Newsom or Shapiro would be best for that, I agree we definitely need someone to be an attack dog', 'created': '2024-11-09 05:48:30', 'submission_id': '1gn186x'}
{'comment': 'I don’t think she would win, but AOC fits this description perfectly. She is absolutely my number one pick, but because she is young, Puerto Rican, a woman and very left she would never get voted in.\n\nAOC legitimately cares about people, I don’t see her being swayed by big money.\n\nWe need a candidate who doesn’t do what big money tells them to do, but I feel like that list is so small. Bernie is too old. \n\nTim Walz is probably at the top of my realistic list. He just needs to be more aggressive, like when he called Elon Musk a dipshit lol.', 'created': '2024-11-09 11:45:20', 'submission_id': '1gn186x'}
{'comment': 'Pete Buttigieg? Also yes but someone who is anti establisment. That is what killed dems in the last couple of election cycles. It killed them in 04, to an extent 12, 16 and 24 while hurting our midterms in 10, 14, and our potential in 18 and 22. People want change. Putting Liz Cheney at a dnc rally was bad but whoever sent **Bill fucking Clinton** to michigan just to call muslims stupid for not voting harris really needs to be fired, Dems HAVE to let the Clintons go. Their names are too damage by controversies both fabricated and actual.', 'created': '2024-11-09 08:57:39', 'submission_id': '1gn186x'}
{'comment': 'Buttigieg', 'created': '2024-11-09 08:16:01', 'submission_id': '1gn186x'}
{'comment': "If only Bernie was a little bit younger... He takes no shit and has no seedy past. His career is quite impressive and magical. Watched him speak before and a bird landed on his podium and looked up at him. He's my Cinderella 😆. He is not a typical politician at all but alas his age restricts him...", 'created': '2024-11-09 06:41:29', 'submission_id': '1gn186x'}
{'comment': 'Sadly, the only person doing that in the last cycle was Mark Cuban.', 'created': '2024-11-09 13:30:48', 'submission_id': '1gn186x'}
{'comment': None, 'created': '2024-11-09 08:41:46', 'submission_id': '1gn186x'}
{'comment': 'I want a shit slinger who can LIE. I need a politician who give us what we need while telling us what we want to hear.\xa0', 'created': '2024-11-09 14:59:03', 'submission_id': '1gn186x'}
{'comment': 'I think name recognition outside of politics. Colin Allred wasn’t a well known NFL player but that might spark interest. He stood up to Cruz’s BS. \n\nAs kinda dumb as it sounds someone as even as famous as a John Stewart.', 'created': '2024-11-09 16:15:07', 'submission_id': '1gn186x'}
{'comment': 'I’m down the Gavin Newsom rabbit hole on twitter and it’s HILARIOUS', 'created': '2024-11-09 19:11:16', 'submission_id': '1gn186x'}
{'comment': 'Pete Buttigieg could do it \xa0', 'created': '2024-11-09 20:08:00', 'submission_id': '1gn186x'}
{'comment': 'Gavin Newsom?', 'created': '2024-11-10 04:39:23', 'submission_id': '1gn186x'}
{'comment': 'Who are yours? Just curious. I’ve got mine - or at least qualities I think are important!', 'created': '2024-11-09 05:40:57', 'submission_id': '1gn186x'}
{'comment': 'Nope. We need to move on from the Harris/Walz ticket. New blood is needed , if Dems ever get the chance to run again', 'created': '2024-11-09 07:37:28', 'submission_id': '1gn186x'}
{'comment': 'It’s cute that you thing we’re gonna get to vote in 2028', 'created': '2024-11-09 16:18:23', 'submission_id': '1gn186x'}
{'comment': 'Newsom. We need Newsom.', 'created': '2024-11-09 05:49:38', 'submission_id': '1gn186x'}
{'comment': 'We need primaries to start being like a normal election. All states voting on the same day, no super delegates, no more caucuses.', 'created': '2024-11-09 08:41:17', 'submission_id': '1gn186x'}
{'comment': 'NO MORE OCTOGENARIANS. FUCKING PLEASE. Take my vote.', 'created': '2024-11-09 16:24:13', 'submission_id': '1gn186x'}
{'comment': "The democratic party really and I mean REALLY needs to learn this. They'll have strong candidates then push them out the door early on because they don't like them or are afraid of them moving the party too far to the left.", 'created': '2024-11-09 11:13:21', 'submission_id': '1gn186x'}
{'comment': 'If you find someone you support in the primaries then get to work for them. That’s usually how these things are decided.', 'created': '2024-11-09 05:36:17', 'submission_id': '1gn186x'}
{'comment': 'With ranked choice voting, otherwise it’s destined to be a bad choice if many are similar', 'created': '2024-11-09 06:06:08', 'submission_id': '1gn186x'}
{'comment': 'Exactly thats why dems have been losing', 'created': '2024-11-09 05:21:42', 'submission_id': '1gn186x'}
{'comment': 'No shit, we need a primary. A big, fair, open primary. \n\nBut if Walz wants to be in that primary, I’ll give him serious consideration.', 'created': '2024-11-09 05:38:22', 'submission_id': '1gn186x'}
{'comment': 'Yeah that worked out great last time. Like 20 candidates and we ended up with Biden.', 'created': '2024-11-09 06:05:53', 'submission_id': '1gn186x'}
{'comment': 'Agree with a lot of this, but the myth of “20 million voters” needs to end. Votes are still being counted and we’re only down around 10 million from last time. Still a lot, but the final count will probably be closer to 5.', 'created': '2024-11-09 20:48:41', 'submission_id': '1gn186x'}
{'comment': 'Media Misinformation Matters\xa0\n\n\nAll your ideas are beautiful, but not mentioning media misinformation in 2024 is fatally flawed. The Democrats had good policy ideas this election. None of that mattered.\xa0\n\n\nUntil the Democrats find an answer to conservative propaganda, they will be playing in a rigged system.\xa0 We should have a plan to crush bad actors, from Fox to X. \xa0', 'created': '2024-11-11 02:53:53', 'submission_id': '1gn186x'}
{'comment': 'i would kind of hate if our first woman president was not elected.', 'created': '2024-11-09 05:38:29', 'submission_id': '1gn186x'}
{'comment': 'That would be the funniest thing in history', 'created': '2024-11-09 05:22:04', 'submission_id': '1gn186x'}
{'comment': 'Here for this kind of spite.', 'created': '2024-11-09 05:23:53', 'submission_id': '1gn186x'}
{'comment': 'FUCK. YES! Do it Biden!\n\nAre you seeing this Biden Admin? Get on this asap', 'created': '2024-11-09 09:00:17', 'submission_id': '1gn186x'}
{'comment': 'Hopefully he brings some policies along this time.', 'created': '2024-11-09 11:26:48', 'submission_id': '1gn186x'}
{'comment': 'Walz for Us All 2028.', 'created': '2024-11-09 05:20:48', 'submission_id': '1gn186x'}
{'comment': 'I WISH they would actually use this as a campaign slogan', 'created': '2024-11-09 05:43:28', 'submission_id': '1gn186x'}
{'comment': 'It’s a great thought. But elections as we knew them are over. He’ll never give up his throne unless dead. Which btw, just read he’s on a health watch. dun dun dun \n\nBe pretty funny if… na, can’t say it.', 'created': '2024-11-09 05:58:02', 'submission_id': '1gn186x'}
{'comment': "Yep, let's have someone in their 40s or 50s.", 'created': '2024-11-09 11:27:46', 'submission_id': '1gn186x'}
{'comment': 'It will be interesting to see if Andy Breshear rises out of the ashes of this party. Smart, direct and has won as governor twice in a deeply red state.', 'created': '2024-11-09 19:00:12', 'submission_id': '1gn186x'}
{'comment': "Yeah, I really don't see the election process staying the same, and not in a positive way. Trump is a narcissist and the GOP are power hungry wolves. They will have the power to do whatever they want basically, and the people (Dems and Republican) voters who think they won't, are the reason we are here today. Playing stupid is not going to end well.", 'created': '2024-11-09 09:48:58', 'submission_id': '1gn186x'}
{'comment': 'They’re fucking delusional.\n\nTrump, and then Vance before too long, will have the Senate, the Supreme Court, the federal courts, and likely the House. The GOP will pass national laws that supersede state protections and Trump will use everything at his disposal to suppress dissent. People really think that they won’t pass sweeping mandates to ensure Republicans control government for the foreseeable future?\n\nThe country is gone. The foxes aren’t just in the hen house, it’s now the fox house.\n\nI love this country but it has proven, once again, it does not want to be saved. It pains me to no end but I’m out. I have a family to protect and I’m not going to sacrifice them to fight in vain.', 'created': '2024-11-09 06:00:04', 'submission_id': '1gn186x'}
{'comment': "I mean, depending on you view it, have we ever really had a free and fair election?\n\nI would say 1992-2008 was the closest we ever came, but there has always been voter suppression, it's just that now it affects white people too, so everyone is acting like it's a brand new thing\n\nEven in 2000, Al Gore won, and basically no, I don't want to divide the nation, and gave us potentially the worst president in history.\n\nIf you compare W, to term 1 Trump, W did SIGNIFICANTLY more damage to the country\n\nHowever, Trump likes to be the best at everything, so we will have to see in 2028 who gets to hold the new crown for worst president since WW2", 'created': '2024-11-09 06:28:37', 'submission_id': '1gn186x'}
{'comment': 'Beshear maybe?', 'created': '2024-11-09 05:27:21', 'submission_id': '1gn186x'}
{'comment': 'Shapiro', 'created': '2024-11-09 05:29:47', 'submission_id': '1gn186x'}
{'comment': 'Beshear/Warnock', 'created': '2024-11-09 17:29:52', 'submission_id': '1gn186x'}
{'comment': 'if we make it to another election, we will need a new government from scratch complete with extensive restrictions. we will need the "rump recovery act", "rump prevention act", and a major voting bill all ready to go on day one. make it just a couple wide spread bills so it won\'t take 4 years to get done.\n\nand the country will be so bad off a dead possum will win.', 'created': '2024-11-09 17:13:19', 'submission_id': '1gn186x'}
{'comment': "More than 80% of the shit Trump says he'll do is just hot air.", 'created': '2024-11-10 17:37:17', 'submission_id': '1gn186x'}
{'comment': 'Voting is a constitutional right. He can’t change the constitution without Congress and the state legislatures. I need y’all to do a split second of googling before panicking that we won’t have any more elections.', 'created': '2024-11-10 00:09:53', 'submission_id': '1gn186x'}
{'comment': "Dude, we barely got to have a referendum on Kamala Harris because she was so tightly tied to Biden (by circumstance). She was a great candidate, but suffered from being tied to an administration she couldn't distinguish herself from.\n\nNobody was voting for or against Tim Walz. This was a referendum on the economy. If inflation weren't an issue, she would've sailed.\n\nHe should absolutely throw his hat in the primary ring when the time comes. The more the merrier. And Gwen is such a gem. Best First Lady we've ever had in Minnesota.", 'created': '2024-11-09 05:26:26', 'submission_id': '1gn186x'}
{'comment': 'Agreed. Candidate needs to be decided by the voters via primary.', 'created': '2024-11-09 04:49:25', 'submission_id': '1gn186x'}
{'comment': 'I mean I’m not saying Walz is my pick for 2028, but this is a tad dramatic.\n\nWe lost but so have incumbents worldwide. That COVID inflation really made it inevitable, and you can’t pretend like Harris/Walz didn’t close a MASSIVE gap between Trump and the Biden. Had Biden been the nominee, we would have lost New Hampshire, New Jersey, Minnesota, and possibly Virginia too. I wouldn’t even call them your traditional “failed candidates,” considering they were only given 3 months to campaign. Plus, Walz was the VP pick, not the presidential one. I doubt he had any substantial influence on who voters chose. \n\n“We lost *bad*” is a bit of a push. Harris might still win the popular vote, or at least she won’t lose it by much. She was within 2% of 4-5 of the swing states. The Senate was something we were destined to lose and we knew that, and the house is still a potential victory (or at the worst, a 4-6 seat disadvantage). Yes there was a national rightward shift, but it really was the inflation that did that.\n\nStill, I wouldn’t run Harris in 2028 and probably not Walz. They were good and I think would’ve done a nice job, but I wasn’t impressed by Harris’s interviewing and the “Trump is Hitler,” thing was NOT what the primary focus of their campaign should’ve been, but rather specifics on how they were going to help the middle class and reduce the cost of living. Though I do think Walz could’ve performed better individually purely because he wasn’t connected to the Biden administration.', 'created': '2024-11-09 05:04:23', 'submission_id': '1gn186x'}
{'comment': "But Walz's speech about losing made me feel good, and now I want to have an emotional overreaction to everything and choose him to run in the next election\n\nWhy are you trying to stop me", 'created': '2024-11-09 06:29:22', 'submission_id': '1gn186x'}
{'comment': '100% - if anything, running Kamala/Walz in 2024 weeded them out as unelectable candidate and we now can go for a Shapiro / Roy Cooper in 2028', 'created': '2024-11-09 04:59:54', 'submission_id': '1gn186x'}
{'comment': 'This is the answer.', 'created': '2024-11-09 12:27:56', 'submission_id': '1gn186x'}
{'comment': "He's awesome but yea, we definitely can't take any chances after this which means back to the straight white guy ticket unfortunately,", 'created': '2024-11-09 06:08:19', 'submission_id': '1gn186x'}
{'comment': 'As VP, yes he would work. He’s converted voters and can face Fox News. The dude has balls and people respect him. Even right-wingers show his some respect. He would be great on the ticket with a guy like Jeff Jackson from NC.', 'created': '2024-11-09 06:46:17', 'submission_id': '1gn186x'}
{'comment': 'Reading through these comments I just realized Whitmer’s term is up in 2 years and Pete lives in MI. Could that possibly mean a Gov Pete for MI!!?? I fucking hope so! Plus it would be a great transition for him to the presidency and for red America to learn to deal with a gay man in leadership (I know he isn’t the only LGBTQ, but he is the most recognized)', 'created': '2024-11-09 13:57:27', 'submission_id': '1gn186x'}
{'comment': 'I started reading P25 last night. It’s very dark. I’m truly afraid.', 'created': '2024-11-09 14:00:54', 'submission_id': '1gn186x'}
{'comment': 'His debate was very mediocre', 'created': '2024-11-09 06:10:51', 'submission_id': '1gn186x'}
{'comment': "This Texas filly hopes Newsome runs. \n\nI'm old gen x, always voted blue, but I really like Newsome", 'created': '2024-11-09 19:48:43', 'submission_id': '1gn186x'}
{'comment': 'I really hope not. I’m Californian, and Boomers here HATE him! And young people don’t turn out to vote in high-enough numbers, so his candidacy is way too risky. \n\nI’d much rather have Walz.', 'created': '2024-11-09 18:53:52', 'submission_id': '1gn186x'}
{'comment': 'Picking a nominee is a necessary step regardless.', 'created': '2024-11-09 07:21:56', 'submission_id': '1gn186x'}
{'comment': 'I think Tim can do that!', 'created': '2024-11-09 05:19:01', 'submission_id': '1gn186x'}
{'comment': "Hell no, kelly has a great background and all but that dude is boring as shit, we need attack dogs in the next election and it sure as hell ain't him", 'created': '2024-11-09 09:30:15', 'submission_id': '1gn186x'}
{'comment': 'As long as we get him for the next 4 years, I’m ready for him to run for President. I’m thankful I live in Illinois. He’s going to fight for us.', 'created': '2024-11-09 19:51:29', 'submission_id': '1gn186x'}
{'comment': 'Seriously, come January 21st we need to figure out who our next candidate is going to be and have them going to all 50 states over the next 4 years', 'created': '2024-11-09 19:47:08', 'submission_id': '1gn186x'}
{'comment': ">Democrat leadership fucked up in the most tremendous ways in the most critical of times\n\nIt's not the fault of Democratic leadership. It's not the fault of Harris. \n\nThe Republicans weaponized rhetoric using the fascist playbook, and have been engaging in psyops against the voters of the United States. \n\nThe lesson most people missed when they learned about the Nazis in studying history is that their greatest weapon was not their military or their science. It was their rhetoric of propaganda and lies. \n\nUnfortunately, our Constitution and system of laws had no protection against that.\n\nSo let's stop blaming the victims. All Democrats are victims here. Including the Democratic leadership.", 'created': '2024-11-10 04:24:08', 'submission_id': '1gn186x'}
{'comment': 'Agreed', 'created': '2024-11-09 19:47:20', 'submission_id': '1gn186x'}
{'comment': 'According to legend, Nero fiddled while Rome burned. \n\nActually, he’s known to have played a stringed instrument called a *cithara* while singing. \n\nI need **facts** right now. Not trump’s bs.', 'created': '2024-11-09 20:30:52', 'submission_id': '1gn186x'}
{'comment': 'So become Romney Republicans?', 'created': '2024-11-09 07:42:36', 'submission_id': '1gn186x'}
{'comment': 'Damn, that actually might be a really good pick. I could see being very aggressive on stage.', 'created': '2024-11-09 11:58:35', 'submission_id': '1gn186x'}
{'comment': 'It’s a long time ago, but FDR was a failed VP candidate. \n\nSo was Bob Dole. \n\nThe VP runs had no effect on their own campaigns.', 'created': '2024-11-09 05:52:39', 'submission_id': '1gn186x'}
{'comment': 'Newsom would have won this cycle. I wanted Kamala, but was hating that if she won would take 8 years for for Gavin to emerge', 'created': '2024-11-09 07:53:25', 'submission_id': '1gn186x'}
{'comment': 'Absolutely not! I live in CA, and every Boomer that I know HATES him! I literally had to convince my own parents to vote for him when he was threatened with a recall not that long ago (and it was only after I told them the other guy would ban abortion in CA did they do so)! Trust me, Boomers hate him here! \n\nAnd young people don’t turn out in high-enough numbers to make up the difference, so his candidacy is just way too risky. He will never win the Blue Wall states or the Mid-west!', 'created': '2024-11-09 19:04:48', 'submission_id': '1gn186x'}
{'comment': 'We need to keep it going.', 'created': '2024-11-09 16:41:30', 'submission_id': '1gn186x'}
{'comment': "Yeah and I felt like the muzzled him a bit after he came on board. He is excellent at calling out hypocrisy. I am a MN and Saint Paul resident and have voted for him twice.\n\nI'm not sure he even wants to be president, but he is the type we should be looking for. Humble beginnings, can talk to people in many corners, ready to get his hands dirty and call out BS where it exists.", 'created': '2024-11-09 20:35:30', 'submission_id': '1gn186x'}
{'comment': 'Nvalny had some seriously bad ideas...he was the lesser of insane in Russia though\xa0', 'created': '2024-11-09 08:24:40', 'submission_id': '1gn186x'}
{'comment': 'We need a Zelensky, a brave hero.\xa0\n\n\nNavalny went back to Russia, to die a martyr. God bless him, but that was stupid.\xa0No more going high when they go low\xa0\n\n\nWe need to fight to win. The costs of losing is too. damned. high\xa0', 'created': '2024-11-11 02:51:35', 'submission_id': '1gn186x'}
{'comment': 'He moronically chose to die on a hill and leave the Russian opposition leaderless and listless. Just because he was brave enough to stand up to Putin doesn’t make him a good political leader. He was a brave martyr and moron.', 'created': '2024-11-10 00:15:38', 'submission_id': '1gn186x'}
{'comment': 'No, they are both competitive and effective governors who have been too politicized to ever win a presidential election.', 'created': '2024-11-09 06:15:40', 'submission_id': '1gn186x'}
{'comment': 'Ahem *Whitmer*', 'created': '2024-11-09 06:37:13', 'submission_id': '1gn186x'}
{'comment': 'Newsom would be horrible. I’m a lifelong Democrat, but much of California is a crime filled cesspool. Shapiro for sure! If we still have a functioning democracy in four years, he’s the chosen one.', 'created': '2024-11-09 18:42:50', 'submission_id': '1gn186x'}
{'comment': "If either has taken money from corporations or AIPAC, that's a non-starter.", 'created': '2024-11-09 05:55:21', 'submission_id': '1gn186x'}
{'comment': 'Middle America doesn’t want Newsome, not because he wouldn’t be great, but because since the 1990’s the right has pummeled the populace with “Commifornia” and it will scare the midwestern house wives.', 'created': '2024-11-09 14:21:28', 'submission_id': '1gn186x'}
{'comment': 'Pelosi wanted Newsom. He’s too much a tryhard to me. Don’t know how he’d do in the Midwest.', 'created': '2024-11-09 15:15:38', 'submission_id': '1gn186x'}
{'comment': "Newsom is set up to feud with trump like a wrestling storyline. \n\nHe's a top contender for sure.", 'created': '2024-11-09 16:52:51', 'submission_id': '1gn186x'}
{'comment': 'I would love President Pete, but I fear this country is too hateful to elect a gay man as president.', 'created': '2024-11-09 12:21:30', 'submission_id': '1gn186x'}
{'comment': 'That’s how I felt when Hillary was at the top of the ticket - the Republicans had disparaged her for years, and she was generally disliked. She had too much baggage from the name “Clinton”.', 'created': '2024-11-09 14:51:51', 'submission_id': '1gn186x'}
{'comment': 'Look I like Pete, and he he checks a lot of boxes that apparently we need at this point to win, intelligent, able to fight back against republicans in debate, he’s white, he’s a man, but, and I say this as a gay man, he’s gay and that’s going to be a nonstarter for a lot of people. We have shown we can’t elect a woman, white or black, we’re not electing a gay man. I’m sorry to say but we need a straight white man, good looking, young, and probably from the south or rural west to run. He should run on progressive policies but every other aspect of him should be ‘traditional’. We elected a black man but I think that sparked a lot of backlash from segments of the society and we’ve proven we can’t rise to counter that properly so I think if we want to win we need to accept America isn’t ready for another first just yet.', 'created': '2024-11-09 12:40:46', 'submission_id': '1gn186x'}
{'comment': "Pete is great. But we need to realize much of the country still isn't ready for a gay president. We can't educate low knowledge voters. We have to meet them where they are.", 'created': '2024-11-09 18:31:54', 'submission_id': '1gn186x'}
{'comment': 'I love Bernie but he’s too far to the left. No doubt he’s ahead of his time, and America is not there yet. Republicans would tar him with the “socialist” label, and it would work.', 'created': '2024-11-09 14:49:19', 'submission_id': '1gn186x'}
{'comment': 'That bird moment was truly remarkable.', 'created': '2024-11-09 07:38:38', 'submission_id': '1gn186x'}
{'comment': 'Bernie was chased off the stage by the BLM big mouths when he came to Seattle.\n\nHe left his supporters high and dry before he got to his speech.', 'created': '2024-11-09 07:36:48', 'submission_id': '1gn186x'}
{'comment': "Bernie just doesn't work with anyone. He's well known to be a my way or the highway type and thinks if you disagree it's because he's better than you. \n\nHe's great at pushing us left. He's utterly terrible at anything requiring broad appeal.", 'created': '2024-11-09 20:18:55', 'submission_id': '1gn186x'}
{'comment': 'John Stewart , but he’d never do it.', 'created': '2024-11-09 08:42:17', 'submission_id': '1gn186x'}
{'comment': 'Right now yes, but we should spend the next 2 years combing through the woodwork.', 'created': '2024-11-10 04:40:08', 'submission_id': '1gn186x'}
{'comment': 'Gretchen Whitmer is my top pick from Michigan but I don’t think they’ll elect a woman. \n\nPete Buttigieg but he’s gay. \n\nWes Moore from Maryland but he’s black. \n\nGavin Newsom but he’s a “commie from California.”\n\nThat leaves Andy Bashear, Mark Kelly, and Josh Shapiro. \n\nAny of these would be good picks if they can get the people to look past being a woman, gay, black, or from California. People are so damn stupid. *sigh*\n\nNo one is perfect but so many people make perfection the enemy of good and don’t vote or simply give up on a candidate.', 'created': '2024-11-09 07:08:28', 'submission_id': '1gn186x'}
{'comment': 'Mark Kelly. I\'d say Gavin but a Californian just won\'t do well nationwide. I\'m a Pennsylvanian and would love to see Josh Shapiro but god forbid a candidate is not white and non-"Christian". I think Walz is too straight and narrow, a great VP but that\'s it (great guy, Governor etc. though).', 'created': '2024-11-09 05:48:40', 'submission_id': '1gn186x'}
{'comment': 'Andy Beshear or Shapiro are at the top of my list.', 'created': '2024-11-09 06:34:01', 'submission_id': '1gn186x'}
{'comment': 'Jon Stewart, we need someone that can connect with people', 'created': '2024-11-09 06:05:52', 'submission_id': '1gn186x'}
{'comment': 'Jared Polis!', 'created': '2024-11-09 07:43:19', 'submission_id': '1gn186x'}
{'comment': 'Gavin Newsone will absolutely destroy any Republican', 'created': '2024-11-09 07:46:14', 'submission_id': '1gn186x'}
{'comment': 'Cortez/ Beshear would be my ideal ticket', 'created': '2024-11-09 14:41:07', 'submission_id': '1gn186x'}
{'comment': 'Republicans screaming "he\'s gonna turn America to California!!" Will turn off alot of rural voters, but then again trump will fuck up so bad it might not matter to them', 'created': '2024-11-09 06:02:07', 'submission_id': '1gn186x'}
{'comment': 'I’ve got nothing personally against Newsom, but he’s got too much of that “West-Coast Elitist” perception that’s going to turn off the Sunbelt and Rustbelt voters.', 'created': '2024-11-09 06:28:13', 'submission_id': '1gn186x'}
{'comment': 'Newsom is the opposite of what is needed. He helped usher in criminal justice reform in CA and though not all bad, it was rejected in this last election. I can already hear the ads now if he ran. “He’s soft on crime,” “he’ll defund the police,” “he’ll turn America into California.” He’ll have no defense against it and will be soundly defeated', 'created': '2024-11-09 09:10:23', 'submission_id': '1gn186x'}
{'comment': "As a California Democrat and realtor who has seen the horrors of CA housing policy, fuck no. He has a nice smile, but he doesn't care about us.", 'created': '2024-11-09 06:29:52', 'submission_id': '1gn186x'}
{'comment': 'I don’t hate him, but we’ve got some serious problems in California that are ample fodder for the right. It’s not like he’s been a massive success for us.', 'created': '2024-11-09 07:39:51', 'submission_id': '1gn186x'}
{'comment': 'Californian here.\n\nNo.', 'created': '2024-11-10 17:29:51', 'submission_id': '1gn186x'}
{'comment': 'Absolutely, young people need to watch him in action', 'created': '2024-11-09 07:48:43', 'submission_id': '1gn186x'}
{'comment': 'Unless he rounds up every homeless person by 2028 he’ll lose.', 'created': '2024-11-09 15:51:59', 'submission_id': '1gn186x'}
{'comment': 'The separate states allow a relatively unknown candidate to emerge because they only need to focus on smaller media markets. In 2008, Hilary would’ve been the nominee and Obama would’ve had no chance for example.', 'created': '2024-11-09 09:07:07', 'submission_id': '1gn186x'}
{'comment': 'No, yes, yes.\nI would be in favor of same day voting if we had rank choice in our primaries, but having individual states allows smaller candidates to become known in the early primaries with smaller budgets. Having all be on the same day would worsen the anointing problems we already have. Yes, absolutely get ride of super delegates, and yes, though I think the concept of caucuses are cool, they are time restrictive on voters.', 'created': '2024-11-09 10:39:46', 'submission_id': '1gn186x'}
{'comment': 'Only one side supports elections reform and has members promoting ranked choice voting.', 'created': '2024-11-09 11:21:00', 'submission_id': '1gn186x'}
{'comment': 'Agree! Totally support ranked choice.', 'created': '2024-11-09 06:24:37', 'submission_id': '1gn186x'}
{'comment': "They lost 1 election cycle in the last 6 years. They won in 18,20,22. It was largely due. Some Dems got comfortable, didn't turn out. Some were turned off by current events, some probably are exhausted from Trump and are avoiding politics. But to put it all on 1 factor and claim it's been harming them when this has happened once and they've only lost 1 time in 6 years is absurd. \n\nI support a primary process, but I'm not stupid enough to think that Trump is a better candidate, I don't think most people would think Trump is a threat and decide that an imperfect, but more aligned candidate is worth the risk.", 'created': '2024-11-09 05:37:15', 'submission_id': '1gn186x'}
{'comment': "First time they've lost the popular vote in a long time.", 'created': '2024-11-09 06:20:48', 'submission_id': '1gn186x'}
{'comment': "We need to get more Dem's in Local office positions. School board, city council, etc.. It's not just the higher seats of power that matter.", 'created': '2024-11-09 07:32:06', 'submission_id': '1gn186x'}
{'comment': "Primaries are pointless as well. After the first few states, it's all but over. I'm in PA and haven't voted in a meaningful primary in my life. I'm 46.\n\nIt'd be different if all the states voted on the same day.", 'created': '2024-11-09 05:38:32', 'submission_id': '1gn186x'}
{'comment': 'Biden did win. I’d love if we did rank choice.', 'created': '2024-11-09 06:24:12', 'submission_id': '1gn186x'}
{'comment': "Biden won. He outlined his path to victory in primaries and he won the states he said would win and beat out other candidates. That's the point of the primary process, not only is it about a candidate we like but a candidate who can actually prove his supporters turn out and vote. The primary process helps with that. Then he outlined how he would win the presidency, and did that too. Without primaries we don't actually know which supporters and groups will turn out for a candidate. Which was part of the issue that Democrats overlooked and underestimated with Harris becoming the nominee. It wasn't the only reason but it's a big part of it.", 'created': '2024-11-09 08:51:56', 'submission_id': '1gn186x'}
{'comment': 'Fair enough; I haven’t looked at the news since the morning after the election', 'created': '2024-11-09 22:56:25', 'submission_id': '1gn186x'}
{'comment': 'Canadian here, we did it.', 'created': '2024-11-09 09:08:00', 'submission_id': '1gn186x'}
{'comment': 'Dark Brandon move.', 'created': '2024-11-09 05:34:47', 'submission_id': '1gn186x'}
{'comment': 'Walz for alls (come on it was so close)', 'created': '2024-11-09 05:24:53', 'submission_id': '1gn186x'}
{'comment': 'Well, there’s a good chance he’ll be dead (of natural causes) by 2028.', 'created': '2024-11-09 06:00:33', 'submission_id': '1gn186x'}
{'comment': ">If you compare W, to term 1 Trump, W did SIGNIFICANTLY more damage to the country\n\nThis is bs. Trump's term did WAY MORE damage than Bush 2. Like Trump's federal and Supreme Court appointees alone has fucked the country and set it back. While when you look back on Bush, his pick of Roberts actually led to Obamacare getting saved. Without Roberts Obamacare would be dead. And I HATE Roberts. But saying Bush did more damage than Trump is bs. Despite Bush's fuckery on 9/11 and the Iraq War, domestically speaking the country was still progressing on social issues (because he didn't empower his supporters to openly obstruct and intimidate others). Also Bush hired people like Colin Powell and others based on qualifications. Trump, no so much.\n\nLike Trump was the worst president we ever had, and to try to paint Bush as doing more damage is just more misinformation and bs.\n\nIf anything 9/11 fucked us more than anything. Bush 2 was content on playing golf and letting the country run itself (and not actively seeking to fuck things up) until 9/11 happened. Trump on the other hand from the get go wanted use the country for bribes and tear the government down and sell it piece by piece.", 'created': '2024-11-09 09:13:43', 'submission_id': '1gn186x'}
{'comment': 'Yeah. It’s going to be very scary interesting 4 years', 'created': '2024-11-09 06:32:19', 'submission_id': '1gn186x'}
{'comment': 'He would definitely be up on my list.\xa0', 'created': '2024-11-09 06:00:24', 'submission_id': '1gn186x'}
{'comment': 'Yes!', 'created': '2024-11-09 05:50:05', 'submission_id': '1gn186x'}
{'comment': 'Would', 'created': '2024-11-09 06:44:26', 'submission_id': '1gn186x'}
{'comment': "Let's just wait and see.", 'created': '2024-11-09 20:34:40', 'submission_id': '1gn186x'}
{'comment': 'Yeah he told us he will be a dictator (for a day )\n\n# Trump calls for the termination of the Constitution in Truth Social post\n\nBy\xa0[Kristen Holmes](https://www.cnn.com/profiles/kristen-holmes-profile), CNN\xa03 minute read\xa0Updated 4:34 PM EST, Sun December 4, 2022Trump calls for the termination of the Constitution in Truth Social post', 'created': '2024-11-10 04:12:06', 'submission_id': '1gn186x'}
{'comment': "I agree he should primary - and I'll vote for him if he wins. But I'm not going to vote for him in the primary, not least of all because he'll be 64 years old by then and his opponent, assuming it to be JD Vance, will still be 20 years younger than him.", 'created': '2024-11-09 05:28:38', 'submission_id': '1gn186x'}
{'comment': 'People barely knew Harris. They knew Walz even less.', 'created': '2024-11-09 05:41:35', 'submission_id': '1gn186x'}
{'comment': 'Nobody is saying “no primary”. \n\nPeople are saying they’d support Walz in the primary if he ran.', 'created': '2024-11-09 05:39:50', 'submission_id': '1gn186x'}
{'comment': 'But this is how that happens. You find a candidate you like and support and start working for them in the primaries.', 'created': '2024-11-09 05:38:42', 'submission_id': '1gn186x'}
{'comment': "couldn't agree more", 'created': '2024-11-09 04:49:54', 'submission_id': '1gn186x'}
{'comment': "Well we definitely know now voters give zero shits about actual policies and just want a fucking show, just pull a trump and say you'll fix everything that should be good enough lol", 'created': '2024-11-09 05:51:30', 'submission_id': '1gn186x'}
{'comment': "Yeah but I would argue that Clinton was a lousy candidate in 2016, that Biden was a lousy candidate in 2020, and Harris was a lousy candidate in 2024. Clinton and Harris both lost, and Biden's win was a fluke that really came down to Trump's spectacular mismanagement of COVID. But every one of them spent their campaign appealing to this imaginary centrist voter, trying to pick Republican pockets when their voters have historically been extremely loyal to them. And every time, we lose the support of our progressive base because we just keep neglecting them. Where are our bold policy proposals? Where are real solutions for the working class? Where is Medicare for all?", 'created': '2024-11-09 05:11:45', 'submission_id': '1gn186x'}
{'comment': 'I wouldn’t label Walz as unelectable. The VP pick has very little influence on voters. Although I think Harris would’ve done a good job, her connection to the Biden administration will unfortunately probably make it impossible for her to ever be president because of the inflation, and sadly I think her poor interviewing skills is a bit of a deal breaker. I don’t think she’ll see the top of the ticket again, but Walz *could*.', 'created': '2024-11-09 05:09:41', 'submission_id': '1gn186x'}
{'comment': 'Roy Cooper is already 67.', 'created': '2024-11-09 05:47:56', 'submission_id': '1gn186x'}
{'comment': 'Shapiro / Beshear or Shapiro / Whitmer are my two "way too early" picks.', 'created': '2024-11-09 05:26:19', 'submission_id': '1gn186x'}
{'comment': 'Newsom', 'created': '2024-11-09 05:07:15', 'submission_id': '1gn186x'}
{'comment': "He comes off as a straight white guy and has the military thing going for him as well. I've never seen a more uniting politician in my life. Most people don't pay attention and if he isn't flamboyantly gay then most Americans don't care.", 'created': '2024-11-09 11:24:55', 'submission_id': '1gn186x'}
{'comment': 'You’re right, it is the sad truth.', 'created': '2024-11-09 06:19:25', 'submission_id': '1gn186x'}
{'comment': "Yeah, it's not going to be good. They already have started this shit storm. Rolling back child labor laws in certain states, taking away Roe and yes that will be done on a fed level, ect. Simultaneously next is going to be marriage equality for the LGBT communities and bi racial couples along with deporting non white immigrants. After that, it's just going to be straight hell. Any Dems that kept a seat in the house or Senate will never have a voice and this is all going to be very difficult to change. Even if Trump doesn't make it through the whole term, the GOP supporting him and feeding him fuel will still be there and carry out everything they want. Trump isn't the leader, Trump is just a name and face for a large group of politicians and rich who want to control the US even more than they already are. He's their Trojan horse.", 'created': '2024-11-09 15:08:30', 'submission_id': '1gn186x'}
{'comment': 'No doubt, but he’s incredible on the stump. Really good at connecting with an audience.', 'created': '2024-11-09 07:42:21', 'submission_id': '1gn186x'}
{'comment': "I'm a Californian and love the dude.\n\nStay Blue, Texas filly.💙", 'created': '2024-11-09 19:58:51', 'submission_id': '1gn186x'}
{'comment': "Walz is a sweet likable guy. He's bright, he's good, he's competent.\n\nBut we've seen that without a hardball edge no candidate has won the Presidency in ... well, not in the last 80 years at least. \n\nAnd judging by last week Walz won't have a better chance than Harris so we better start looking elsewhere.", 'created': '2024-11-09 19:19:05', 'submission_id': '1gn186x'}
{'comment': "Boring? Dude flew 40 combat missions in a jet in desert storm, flew the last mission of the space shuttle Endeavor, has his masters in aeronautical engineering, was a test pilot instructor, and became the first Democrat to win his Senate seat in Arizona since the 60s. He doesn't have skeletons or controversy in his past, and he is literally what most Americans would consider an American hero and a great example of among the best our country has to offer. He speaks well and is concise, and would be quite appealing to voters in the swing states. There is no one even close at the moment...Newsome is competent, but he'd be branded as a crazy out of touch Californian in every swing state, and Shapiro is Jewish and would get much of the same treatment as Newsome", 'created': '2024-11-09 09:56:54', 'submission_id': '1gn186x'}
{'comment': 'No I put this at the feet of biden. He should have dropped out long ago and given us time to find a candidate that polled well enough and that gave us time to strategise. Instead we got less than 150 days to convince America to vote for Harris. Someone that to my understanding has always polled poorly and that no one really knew much about.', 'created': '2024-11-10 06:54:10', 'submission_id': '1gn186x'}
{'comment': 'Which facts are you searching for?', 'created': '2024-11-09 21:02:19', 'submission_id': '1gn186x'}
{'comment': 'I guess.', 'created': '2024-11-09 16:04:06', 'submission_id': '1gn186x'}
{'comment': "He did a concession speech for her. I'm not a political scholar, but that means something.", 'created': '2024-11-09 14:48:20', 'submission_id': '1gn186x'}
{'comment': "Walz was a very, very public running mate. I think the media landscape has really fundamentally been upended here; lots of people didn't even know FDR was a wheelchair user.", 'created': '2024-11-09 06:00:07', 'submission_id': '1gn186x'}
{'comment': 'Yep. He would have won for sure.', 'created': '2024-11-09 07:55:59', 'submission_id': '1gn186x'}
{'comment': "Who cares about boomers? They'll be gone in 4-8 years. Either way we need a guy to run. It seems like America isn't ready for a female president.", 'created': '2024-11-09 19:43:32', 'submission_id': '1gn186x'}
{'comment': 'Exactly- he was an anti Putin leader who supported Russia’s invasion of Crimea.', 'created': '2024-11-09 17:05:05', 'submission_id': '1gn186x'}
{'comment': 'Yea, I wasn’t talking about his political views. Just his style.', 'created': '2024-11-09 18:27:08', 'submission_id': '1gn186x'}
{'comment': 'Shapiro? I get Newsome.', 'created': '2024-11-09 13:02:58', 'submission_id': '1gn186x'}
{'comment': 'Hard disageee about Shapiro being too politicized. Bruce Castor once called him the “best county commissioner” he ever knew. Conservatives like Shapiro.', 'created': '2024-11-09 16:48:23', 'submission_id': '1gn186x'}
{'comment': 'Love big Gretch but no way in hell they risk running a woman again, not in this fucked up ignorant ass climate', 'created': '2024-11-09 06:39:20', 'submission_id': '1gn186x'}
{'comment': "Let's nominate a woman son we can lose for a 3rd time. Great plan.", 'created': '2024-11-09 15:31:10', 'submission_id': '1gn186x'}
{'comment': "I didn't think our country is ready to elect a woman sadly.", 'created': '2024-11-09 19:57:14', 'submission_id': '1gn186x'}
{'comment': 'I can see Gretch being VP.', 'created': '2024-11-09 13:03:21', 'submission_id': '1gn186x'}
{'comment': 'Fuck AIPAC, but gotta play by their games to be competitive. Take money as long as they’re giving it out.', 'created': '2024-11-09 07:38:16', 'submission_id': '1gn186x'}
{'comment': 'This sort of purity testing circular firing squad bullshit is what we need to quit doing.', 'created': '2024-11-09 18:03:11', 'submission_id': '1gn186x'}
{'comment': 'Just came here to say this! He would be an excellent president, but unfortunately in this racist and sexist country, a gay man would be hard sell. Which is sickening to even say', 'created': '2024-11-10 15:02:25', 'submission_id': '1gn186x'}
{'comment': 'Well said, and I agree with you. Running a gay man, no matter how competent, would be seen as too far to the left.', 'created': '2024-11-09 14:45:15', 'submission_id': '1gn186x'}
{'comment': 'Shapiro / Pete then? Would that be acceptable? We had 1st female black VP? Right now no one other than maybe Jeffries. And who they running against. My issue is, republicans will do away with term limits. You know who’s gonna be first woman president. Lara Trump. It’s not gonna end now I fear.', 'created': '2024-11-09 12:45:16', 'submission_id': '1gn186x'}
{'comment': 'I get it. I guess he could be on cabinet. Problem is Trump got all the low knowledge voters.', 'created': '2024-11-09 18:35:00', 'submission_id': '1gn186x'}
{'comment': "Def see your points! And even agree somewhat.\n\nI see him as far left as Trump is far right. I could see him taking the attacks of being called socialist with showing what he's done for Vermont all these years, lowering unemployment there, improving Vermont's economy etc. As the longest serving independent he has a lot to show for it without any scandal.\n\nHe could focus on being an independent and further himself away from bipartisan issues and focus on what's wrong with both Dems and repubs. He's already been criticizing the DNC and Dem party with the Harris loss. \n\nThere's so much wrong with our political two party system, both sides know it, and Bernie is the only one who has defeated that and ran and led successfully as an independent candidate in his home state.\n\nI do agree, he has been labeled a socialist in the past but here's ways to get over that, IMO. Bernie calls himself a democratic socialist, even though that term gets conflated with communism and socialism, which it is not. \n\n(((For those who don't know : We do have democratic socialist policies in place for decades that make our country run well that could be focused on : dem socialist policies is how we fund bridges, roads, parks, fire depts, libraries, unions, progressive tax policies, min wage, unemployment insurance. NIH, NPR, Medicare, social security, US armed forces are examples of national scale democratic socialist policies. Personally the whole damn word needs a revamp, since it gets conflated with communism or socialism. It's funny to me how there is not one true demo socialist country, only policies ))))\n\nI think another big hurdle for Bernie if he ran is that he is jewish, and could alienate Arab voters, Muslim voters, pro Palestine gen z , perhaps also conservative christian voters.\n\nHe would need a campaign that focuses on major online presence... Doing podcasts.. going on Hot Ones, getting out of his comfort zone and letting younger campaign managers come up with slogans and merch to really target the chronically online that get their news and info sources from social media because in 4 years that will only be more prevalent among society and younger voters", 'created': '2024-11-09 17:47:26', 'submission_id': '1gn186x'}
{'comment': "Bernie's not ultra left. He's just very clear about his economic positions which would be considered center left in much of the Western World.", 'created': '2024-11-09 18:36:20', 'submission_id': '1gn186x'}
{'comment': 'Birdie Sanders! Legend 😆', 'created': '2024-11-09 09:53:36', 'submission_id': '1gn186x'}
{'comment': 'Right. That was unfortunate.. He did go on and held his scheduled rally that Saturday night at the University of Washington and invited those that came to the day rally to come there.', 'created': '2024-11-10 04:00:06', 'submission_id': '1gn186x'}
{'comment': 'Whitmer would lose… sigh but would be so good', 'created': '2024-11-09 13:59:14', 'submission_id': '1gn186x'}
{'comment': 'Leaving out JB Pritzker?', 'created': '2024-11-09 11:31:44', 'submission_id': '1gn186x'}
{'comment': 'I don’t think we need to run another woman sadly. I’d be worried that Newsom would be so unpopular that no one would vote for him.', 'created': '2024-11-10 00:07:17', 'submission_id': '1gn186x'}
{'comment': "Whitmer is my first choice...We've seen women win in governor races and senator races in tough states, so I don't think a woman automatically is a non-starter. I mean, she won in Michigan, so clearly she knows how to sell herself to swing state voters.", 'created': '2024-11-09 19:03:55', 'submission_id': '1gn186x'}
{'comment': "Idk all these people are too robotic politician types. It seems like the population wants someone that isn't part of the establishment and seems like they would fight for them. I think Walz fits this bill. He is extremely likeable and was the only one this cycle with a positive approval rating.", 'created': '2024-11-09 17:21:08', 'submission_id': '1gn186x'}
{'comment': 'I think America would totally go for a gay president. Apparently, we just have a serious problem with women.\xa0', 'created': '2024-11-09 20:08:35', 'submission_id': '1gn186x'}
{'comment': 'Mark Kelly is one of the least compelling people I’ve ever seen speak.', 'created': '2024-11-09 07:36:33', 'submission_id': '1gn186x'}
{'comment': 'Agreed, another PA and Philadelphian here. Shapiro would be my guess or even Newsom from CA. We need someone who doesn’t want to take the high road with the republican BS', 'created': '2024-11-09 05:54:30', 'submission_id': '1gn186x'}
{'comment': 'I was thinks Walz/Beshear ticket', 'created': '2024-11-09 07:27:26', 'submission_id': '1gn186x'}
{'comment': 'What does straight and narrow mean to you in this context?', 'created': '2024-11-09 05:51:09', 'submission_id': '1gn186x'}
{'comment': 'I was disappointed that it wasn’t Kelly this time.', 'created': '2024-11-09 05:57:00', 'submission_id': '1gn186x'}
{'comment': 'he would be like jimmy carter who was honestly too nice to be president (granted his successor was the worst president in modern times besides Trump.)', 'created': '2024-11-09 08:50:51', 'submission_id': '1gn186x'}
{'comment': 'I also agree with Kelly, dudes been to space as well which is just like... Top cool factor for a president.', 'created': '2024-11-09 06:24:40', 'submission_id': '1gn186x'}
{'comment': "I may be biased because I voted for Mark Kelly for US Senate, but I think he'd be a wonderful candidate. Americans are clearly worried about illegal immigration and Mark Kelly is from a border state; Immigration issues are a big part of his platform, he sold some of the right-leaning Trump haters and independents I know. He won by almost 5 percentage points in 2022, which is pretty impressive in AZ (Sinema won by 2.4% and Biden won by a mere 0.3%). I also think him being a Navy vet and an astronaut are strong selling points for Americans.", 'created': '2024-11-09 07:31:09', 'submission_id': '1gn186x'}
{'comment': 'Ronald Reagan was governor of California and won 49 states. It can be done again.', 'created': '2024-11-09 07:46:01', 'submission_id': '1gn186x'}
{'comment': 'Username checks out', 'created': '2024-11-09 10:07:01', 'submission_id': '1gn186x'}
{'comment': '*blows raspberries* nope.\xa0 I am not focusing on some candidate to save us. Especially milquetoast centrist. I am not looking towards some fabled "middle class" that doesn\'t exist anymore. Working class, working poor, and Unions. Some with a spine. You want to go down that losing route again though good for you. I\'ll see you in the primaries.', 'created': '2024-11-09 10:28:28', 'submission_id': '1gn186x'}
{'comment': 'Why am I not seeing Andy Beshear of KY in these? (Not just this post) He a Democratic Governor of Kentucky for gods sake and has high approval ratings there. He will be termed out for Governor office in 2028 so it’s not like we are giving up a governorship by having him run.', 'created': '2024-11-09 15:12:14', 'submission_id': '1gn186x'}
{'comment': 'This more towards where I’m going.\n\nOr, I personally feel we need a HOT young guy. Yes, I’m essentially saying we need a guy to objectify but hey, if it stops MAGA 🤷🏼\u200d♂️', 'created': '2024-11-09 06:09:07', 'submission_id': '1gn186x'}
{'comment': "But don't dems always scream no celebrities??", 'created': '2024-11-09 06:27:07', 'submission_id': '1gn186x'}
{'comment': 'Yes. This is the only guy I can think of who is acceptable. Period. We are never winning another election unless we get someone who will break some balls and give no mercy to any bullshit. Republicans would be terrified of him.', 'created': '2024-11-09 06:35:47', 'submission_id': '1gn186x'}
{'comment': "If we're going for celebrities, we might well ask Sebastian Stan to run but do in character as Trump. Or get some liberal celebrity actor that portrays Trump to run as him lol. The comedy alone would be gold and I would honestly be curious how it pans out in the primaries with an electorate that doesn't care about truth and facts", 'created': '2024-11-09 08:31:16', 'submission_id': '1gn186x'}
{'comment': 'Honestly I am starting to think a celebrity candidate might be the only thing that works for a certain demographic of voter', 'created': '2024-11-09 19:06:11', 'submission_id': '1gn186x'}
{'comment': 'No more celebrities, please.', 'created': '2024-11-09 15:10:39', 'submission_id': '1gn186x'}
{'comment': 'Exactly...', 'created': '2024-11-09 06:43:36', 'submission_id': '1gn186x'}
{'comment': "In hindsight, 2020 was much closer than it should've been. Barely won the house, actually lost the senate on election day itself but the way elections work in Georgia gave us a second chance.", 'created': '2024-11-09 11:25:18', 'submission_id': '1gn186x'}
{'comment': 'It because the relentless, pervasive propaganda on all platforms finally reached a tipping point and now it’s influencing the youth instead of just old heads on facebook. We’ll probably get beat even worse next time now that the media will be getting threats from the president. I think there’s a better chance of the Dem party being banned from the federal government than winning an election anytime soon.', 'created': '2024-11-09 06:54:15', 'submission_id': '1gn186x'}
{'comment': 'if they would actually stop being establishment and give up on the nancy pelosis and the clintons we would be in a better shape. But no, its the progressives that kill our chances.', 'created': '2024-11-09 09:01:02', 'submission_id': '1gn186x'}
{'comment': '[removed]', 'created': '2024-11-09 05:42:21', 'submission_id': '1gn186x'}
{'comment': "Another example of the stupidity of Americans (well people in general I guess) and I dont mean you\n\nI mean that people just want to be on the winning side no matter what\n\nOne of the first comments I saw after Trump won was, 'YES! I finally voted for the winner! It took me three times!' Which means this person voted Hilary, Trump, Trump", 'created': '2024-11-09 06:24:10', 'submission_id': '1gn186x'}
{'comment': 'I’d love if they changed it to rank choice', 'created': '2024-11-09 05:59:31', 'submission_id': '1gn186x'}
{'comment': 'Thanks for allowing me to chose who you vote for, I vote every primary.', 'created': '2024-11-09 07:38:17', 'submission_id': '1gn186x'}
{'comment': 'Sorry for your loss, but all votes are important.\n\nYou’re part of the problem with that attitude.', 'created': '2024-11-09 05:53:54', 'submission_id': '1gn186x'}
{'comment': "I thought about it but I just don't like slogans that are less than four syllables. They feel like something is missing to me.", 'created': '2024-11-09 05:31:38', 'submission_id': '1gn186x'}
{'comment': 'Yes, but couchboi is in the wings, and they and Heritage control it all now. They’ll replace Ds and carry on. Plus with them eliminating so many Depts there won’t be a need for all of them. Once they tweak the initial settings it’s done.', 'created': '2024-11-09 15:00:45', 'submission_id': '1gn186x'}
{'comment': "Any Democrat will wipe the floor with the charisma black hole that is JD Vance.\n\nTrump is a singularity. He can say the crazy shit that riles up his base. And people tolerate it because it's Trump being Trump, as he has been for decades. A lot of people find it entertaining.\n\nWhen the bluster comes from a smarmy, pudgy weirdo who can't even order a fucking box of donuts without looking awkward af, it doesn't land the same way. So he'll have to run MAGA-lite, like Ron Desantis. And we all saw how that went. No charisma whatsoever. Not going to bring out the votes.\n\nFurther, JP Morgan/Chase says that we have about a 50/50 chance of a recession in 2025. If voters think inflation is bad, wait until the job market dries up and the layoffs start.\n\nAs a doctor, I'll have the popcorn out. I love my recession-proof job.", 'created': '2024-11-09 06:00:45', 'submission_id': '1gn186x'}
{'comment': 'This is just not true. You have to be on Reddit way too much to think running an extremist is the way to win. A majority of Americans are centrists. Nikki Haley’s whole campaign was being a centrist and she absolutely dominated independents. There are several reasons why Clinton and Harris lost, and centrism is not one of them.', 'created': '2024-11-09 05:17:06', 'submission_id': '1gn186x'}
{'comment': 'oh damn thats too old. okay Shapiro', 'created': '2024-11-09 05:57:26', 'submission_id': '1gn186x'}
{'comment': 'yeah if they try running Kamala or Walz again, i will shit a brick', 'created': '2024-11-09 05:27:50', 'submission_id': '1gn186x'}
{'comment': "Shapiro/Beshear is mine as well, Beshear is my gov and dude has been awesome, his only real flaw is he's kinda boring and I dunno how that'd translate on a national stage if he was to run for president, but he'd make a great vp pick tho", 'created': '2024-11-09 05:58:30', 'submission_id': '1gn186x'}
{'comment': 'I love Newsom, but California is such an expensive state and has such a massive homelessness problem that it would be way too easy for conservatives to push the “Newsom is going to turn the whole US into California!!!!” message and turn voters away.', 'created': '2024-11-09 05:19:18', 'submission_id': '1gn186x'}
{'comment': 'Kimberly Guilfoyle is his ex. That’s a bad idea.', 'created': '2024-11-09 05:48:50', 'submission_id': '1gn186x'}
{'comment': "Yea we figured most ppl didn't care about Kamala being a black woman but we saw how that turned out, ppl will act like it's totally fine till it comes time to vote", 'created': '2024-11-09 11:28:02', 'submission_id': '1gn186x'}
{'comment': "I've been to Cali a few times. \nDrive up the Pacific Coast, beautiful. \n\nHermosa Beach fun. \n\nLos Osos\n\nI would love to move to California, but, I need to stay in Texas and use my voice here. \n\nI will always stay blue. 👌", 'created': '2024-11-09 20:03:17', 'submission_id': '1gn186x'}
{'comment': '>No I put this at the feet of biden\n\nSounds like one of the stages of grief. Assigning blame and either be denial or anger. Or some of both.', 'created': '2024-11-10 11:15:31', 'submission_id': '1gn186x'}
{'comment': 'I just want the truth so as to plan accordingly. Just the simple, untwisted truth.', 'created': '2024-11-09 21:23:19', 'submission_id': '1gn186x'}
{'comment': 'Not sure that’s what the electorate wants.', 'created': '2024-11-09 19:57:27', 'submission_id': '1gn186x'}
{'comment': 'Really? I’ve seen a lot of people complain that the campaign basically hid him after the debate.', 'created': '2024-11-09 07:43:29', 'submission_id': '1gn186x'}
{'comment': 'If you were the top of the ticket we would’ve won.', 'created': '2024-11-09 11:35:43', 'submission_id': '1gn186x'}
{'comment': "Also people ignore the fact that FDR had a upper hand in politics due to being part of the Delano and Roosevelts families. That alone put him ahead a lot of other candidates. Like that's a lightning in a bottle type of scenario. His only risk as a candidate was being a wheelchair user and he kept that well hidden.", 'created': '2024-11-09 09:26:04', 'submission_id': '1gn186x'}
{'comment': 'Yeah, well, I actually want a guy who can win nationally (assuming we’ll even have free and fair elections in 2028, let alone 2026), and Newsom ain’t it.', 'created': '2024-11-09 19:44:39', 'submission_id': '1gn186x'}
{'comment': 'You maybe right but no one in my part of the country has heard anything good about Shapiro.', 'created': '2024-11-09 17:01:23', 'submission_id': '1gn186x'}
{'comment': 'yea they need the most whitest of white men', 'created': '2024-11-09 08:24:18', 'submission_id': '1gn186x'}
{'comment': "If there are proper primaries this time it's not really up to them. (unless they use the super delegates to swing it)", 'created': '2024-11-09 07:21:55', 'submission_id': '1gn186x'}
{'comment': 'Yeah absolutely the hell not. No way.', 'created': '2024-11-09 13:44:40', 'submission_id': '1gn186x'}
{'comment': 'How about a Buttigieg/Whitmer ticket in 2028??', 'created': '2024-11-09 15:34:41', 'submission_id': '1gn186x'}
{'comment': 'No... We dont', 'created': '2024-11-09 10:43:39', 'submission_id': '1gn186x'}
{'comment': 'Nope. Bernie didn’t have to do that. Fuck AIPAC and they should burn', 'created': '2024-11-09 09:45:52', 'submission_id': '1gn186x'}
{'comment': 'I truly wish it were different but I don’t think we can afford to screw around and find out right now.', 'created': '2024-11-09 18:43:10', 'submission_id': '1gn186x'}
{'comment': 'The bright side to this is maybe that would be enough to get Democrats voting en masse. And, if Lara Trump got elected, we could gift her a Democrat Senate and Congress - do to her what Republicans did to Obama.', 'created': '2024-11-09 14:47:17', 'submission_id': '1gn186x'}
{'comment': 'They can’t do away with term limits. 2/3rds of Congress and 3/4 of the states would be needed to do that. That isn’t happening', 'created': '2024-11-09 18:44:49', 'submission_id': '1gn186x'}
{'comment': 'I’m afraid to say I fear Josh Shapiro being Jewish could work against him. :/', 'created': '2024-11-09 20:28:57', 'submission_id': '1gn186x'}
{'comment': "Low knowledge voters are fickle. Trump tapped into their darkside. We need someone who can tap into the subconscious better angels. The masses didn't vote for FDR because they understood his policies (hell FDR didn't understand some of his own policies). The masses voted for FDR because he established an emotional bond -- because he made people feel that he was on their side no matter what.", 'created': '2024-11-09 18:43:44', 'submission_id': '1gn186x'}
{'comment': 'Well said! I wish we lived in an America where Bernie could be elected, but the people that voted for Trump would never vote for Bernie.', 'created': '2024-11-09 18:28:27', 'submission_id': '1gn186x'}
{'comment': 'Yes, you’ve got a point, but overall I think that Bernie is too fair and decent for a country that just elected a convicted felon. I wish that wasn’t the case, and as a country I’m hoping that we continue to take baby steps forward so that a candidate like Bernie would be taken seriously.', 'created': '2024-11-09 18:40:49', 'submission_id': '1gn186x'}
{'comment': 'It was BS to those who took the time to drive to Seattle and wait for hours to see him.\n\nHe could have come back to the podium. He could not even stand up to 2 angry women! Not someone I want for President.\n\nHe is worthless to me.', 'created': '2024-11-10 04:04:12', 'submission_id': '1gn186x'}
{'comment': 'I think she would be a good president, but America has resoundingly said it’s not ready for a woman president. I think a ticket of her and Shapiro would do amazing. You get a boost in the candidates being from 2 of the states you need to win as well', 'created': '2024-11-09 16:19:02', 'submission_id': '1gn186x'}
{'comment': 'She’d make a good veep', 'created': '2024-11-09 17:07:28', 'submission_id': '1gn186x'}
{'comment': "Living in Chicago, I don't personally want to lose him as Governor. Illinois is financially an albatross. Unfortunately, we need someone who knows money, and those are billionaires.", 'created': '2024-11-09 15:11:12', 'submission_id': '1gn186x'}
{'comment': 'Please, can we not have any more billionaires as president?', 'created': '2024-11-09 13:28:30', 'submission_id': '1gn186x'}
{'comment': "Does Pritzker have any sex appeal with women? That's half the battle for a Dem nominee if we really look back...", 'created': '2024-11-09 18:33:01', 'submission_id': '1gn186x'}
{'comment': 'Cory Booker is being slept on hard in this thread. I’ve wanted him to be president for over a decade', 'created': '2024-11-09 20:47:14', 'submission_id': '1gn186x'}
{'comment': "Yea that dude is boring as shit, I can't see him energizing and motivating voters, he has an awesome background tho", 'created': '2024-11-09 08:49:20', 'submission_id': '1gn186x'}
{'comment': 'He really is. I appreciate him, but his personality is just beige.', 'created': '2024-11-09 14:15:53', 'submission_id': '1gn186x'}
{'comment': 'Mark would not win against half of the candidates the GOP would throw at the next primary. JD would walk all over him in the debate and as a huge JD hater this hurts to say.', 'created': '2024-11-10 06:20:50', 'submission_id': '1gn186x'}
{'comment': "I'd like to see a Newsom / Whitmer ticket.", 'created': '2024-11-09 07:38:28', 'submission_id': '1gn186x'}
{'comment': 'Walz is way more outspoken about Republican BS than Shapiro or Newsom, unfortunately I think the Dems kind of have to go hard on anti-immigration to win back moderate voters.', 'created': '2024-11-09 07:31:08', 'submission_id': '1gn186x'}
{'comment': "I would love to see that. Andy isn't going to run for senator since he loves being governor and has so much left he wants to do in Kentucky, but maybe president or VP in 2028 can sway him to do more for everyone.", 'created': '2024-11-09 21:17:37', 'submission_id': '1gn186x'}
{'comment': "I don't think it'll poll well if he calls himself a bit of a doofus at times.", 'created': '2024-11-09 06:24:13', 'submission_id': '1gn186x'}
{'comment': 'After googling it, I used it wrong. Someone with the "Dadvernor" vibes Tim gives. Obviously Tim is on straight and narrow by definition.', 'created': '2024-11-09 07:09:44', 'submission_id': '1gn186x'}
{'comment': 'I was disappointed it wasnt Shapiro', 'created': '2024-11-09 07:38:03', 'submission_id': '1gn186x'}
{'comment': '>Ronald Reagan was governor of California and won 49 states. It can be done again.\n\nI always considered Reagan a midwesterner, he grew up in Illinois and went to college there, then moved to California for a bit of acting and of course his political career. But Reagan being "from California" isn\'t really accurate and seems to be more an marketing spin rather than truth. The only real Californian to become president is Nixon.\n\nBut either way, historically speaking California seems to jump start crap republicans into the presidency lol, not sure I like that trend.', 'created': '2024-11-09 08:27:50', 'submission_id': '1gn186x'}
{'comment': "And Obama won Ohio and Florida but good luck getting those states in today's world", 'created': '2024-11-09 08:51:14', 'submission_id': '1gn186x'}
{'comment': "I'm supportive of that too for sure.", 'created': '2024-11-10 00:59:20', 'submission_id': '1gn186x'}
{'comment': '"Make the President Hot Again" movement here we come', 'created': '2024-11-09 08:32:09', 'submission_id': '1gn186x'}
{'comment': 'Jon Ossoff already has his own fan club. Plus he would help win Georgia.', 'created': '2024-11-09 06:12:42', 'submission_id': '1gn186x'}
{'comment': 'A celebrity who is a long time political journalist and activist with integrity is totally fine. A reality TV star/failed businessman/con artist/tabloid buffoon is not.', 'created': '2024-11-09 06:41:24', 'submission_id': '1gn186x'}
{'comment': 'No, that was much more from the right as the right can mostly only get washed up celebrities', 'created': '2024-11-09 06:53:04', 'submission_id': '1gn186x'}
{'comment': "Get the Rock to run, lol hell atleast he's liked by damn near everyone left or right leaning so he has that going for him plus voters don't give a shit about policy it's all about the spectacle and he'd absolutely kill destroy whomever he's running against on that part lol", 'created': '2024-11-09 08:58:31', 'submission_id': '1gn186x'}
{'comment': "A bandwagon voter who doesn't possess the ability to think on their own.", 'created': '2024-11-09 06:49:17', 'submission_id': '1gn186x'}
{'comment': "They aren't important at all when they don't count.\n\nYou don't understand problems if that is your conclusion.", 'created': '2024-11-09 06:06:28', 'submission_id': '1gn186x'}
{'comment': "I hear that about JD Vance, but come primary time there's just zero chance I'm voting for anybody Tim's age. My Grandma is in a retirement community and my grandfather is in a nursing home - and every president I have had in my adult life was older than either of them. give me a young progressive with bold policy proposals to address cost of living and I'll give you a vote.\n\nagain though, if he wins the primary I'll vote for him - I'm not unreasonable.", 'created': '2024-11-09 06:03:22', 'submission_id': '1gn186x'}
{'comment': "Nikki Haley isn't in the White House. An extremist is - one who beat her so comfortably and confidently he never even bothered to debate her. Arguing your point with another failed candidate makes mine for me.", 'created': '2024-11-09 05:19:12', 'submission_id': '1gn186x'}
{'comment': 'The most important lesson of all: they should not *run* anyone. \n\nLet the actual primary process work and let the voters pick the strongest most appealing candidate. The dynasty insiders need to take their fucking foot off the scale and let the people actually choose. \n\nInstalling people who paid their dues and are "owed" has screwed us multiple times.', 'created': '2024-11-09 05:31:31', 'submission_id': '1gn186x'}
{'comment': "They can try but I doubt she'll get through the primaries", 'created': '2024-11-09 06:02:04', 'submission_id': '1gn186x'}
{'comment': "100% agree and it sucks too because he'd make a great candidate hell he even looks like someone you'd cast in a movie to play president lol", 'created': '2024-11-09 05:46:58', 'submission_id': '1gn186x'}
{'comment': 'Both of those problems you list are 100% related to the weather here, not any policy per-se.', 'created': '2024-11-09 11:46:40', 'submission_id': '1gn186x'}
{'comment': 'People care about being a white man more than anything else. Straight man is a plus, but even if the guy is straight Republicans will lie and say he isn\'t anyway (e.g. "Michelle Obama is a man"). This country is racist and homophobic, but it is misogynistic more than anything else. Obama was able to get elected twice as a black man married to a black woman. Kamala didn\'t have the same appeal and also happened to be a woman, which is a death sentence for any presidential candidate in this country. I genuinely don\'t think people care as much about someone being gay anymore, as long as they aren\'t "in your face" about it (stupid, I know, but that\'s how people think). Everyone knows gay people now. Even most conservatives irl don\'t give a shit anymore.', 'created': '2024-11-09 11:39:42', 'submission_id': '1gn186x'}
{'comment': '🥂✊🏼', 'created': '2024-11-10 04:32:27', 'submission_id': '1gn186x'}
{'comment': 'No democrats are responsible for both letting that bs happen in the first place as a result of allowing weak leadership, and for not voting. This is real life, there is a plethora of reasons.', 'created': '2024-11-10 14:03:40', 'submission_id': '1gn186x'}
{'comment': 'We are just humans. Truth is elusive. Facts are complicated. Nothing is easy. Plans never work out even in the best of conditions. The only advice I can give is read, always read, and read from credible sources. Educate yourself as much as possible. Asked questions from experts. Explore the world and other countries to experience different perspectives and ways of life.', 'created': '2024-11-09 22:03:33', 'submission_id': '1gn186x'}
{'comment': "I've given up trying to figure out who mainstream America is. That or I just don't want to know more than we just found out in this election.", 'created': '2024-11-10 00:57:37', 'submission_id': '1gn186x'}
{'comment': 'I\'d say "it\'s not like the American people would just forget he was there", but then again, people were looking up if Biden dropped out on election day, so…', 'created': '2024-11-09 15:25:17', 'submission_id': '1gn186x'}
{'comment': "I still think Newsome will do great at the national level. He backs up his talking points with facts and is extremely eloquent about it. The country is obviously stupid so policy won't be an issue.", 'created': '2024-11-09 19:51:19', 'submission_id': '1gn186x'}
{'comment': 'What is your part of the country? \nHe oversaw one of the largest infrastructure projects (I95 collapse in Philadelphia) as governor and did it all with full transparency. \nIf Pennsylvania conservatives (the entire state minus Philadelphia and Pittsburgh) can find good in him, i’m sure others can too.', 'created': '2024-11-09 17:04:02', 'submission_id': '1gn186x'}
{'comment': 'I say Andy Beshear or Jeff Johnson. Jeff really attracted people from both sides on TikTok. I think he’s a good politician. And Andy has won in ruby red Kentucky.\n\nEdit: Jeff Jackson. I don’t know why I keep changing his last name.', 'created': '2024-11-09 12:32:38', 'submission_id': '1gn186x'}
{'comment': 'We are gonna have to pander SO HARD to win again. That’s the message I took away from this', 'created': '2024-11-09 12:57:43', 'submission_id': '1gn186x'}
{'comment': 'Yeah. The Dems need a Tim Walz /Josh Shapiro/ Mayor Pete hybrid. \n\nSomeone with that wholesome, down home, relatable likability but also appears youthful and ready to call it like it is and ready and willing to stand up to the GOP.', 'created': '2024-11-09 16:30:13', 'submission_id': '1gn186x'}
{'comment': 'This. This is the bullshit why Democrats lose. \n\nNo super delegate has ever swung a primary. Never.', 'created': '2024-11-09 12:24:13', 'submission_id': '1gn186x'}
{'comment': "Dems have now run two women aginest trump and lost both times. We aren't going to try it again for a while.", 'created': '2024-11-09 08:07:27', 'submission_id': '1gn186x'}
{'comment': 'Do you know many voters clamoring to donate to candidates?', 'created': '2024-11-09 10:47:13', 'submission_id': '1gn186x'}
{'comment': 'Bernie didn’t win either time he ran and not many other Democrats have been able to replicate his astonishing success with small dollars.', 'created': '2024-11-09 10:38:12', 'submission_id': '1gn186x'}
{'comment': 'I totally agree! Kamala’s stunning loss has me convinced that we need to take even smaller baby steps in moving this country forward. Some day we will get there, but I’m afraid that it will be a very long road ahead.', 'created': '2024-11-09 18:45:31', 'submission_id': '1gn186x'}
{'comment': 'Can we still filibuster?', 'created': '2024-11-09 14:51:13', 'submission_id': '1gn186x'}
{'comment': 'It was same in Russia, until Putin made them change the law. Everyone has a breaking point or Skeletons in their closet. Dictator day one. Let’s hope not, but I wouldn’t put it past him. How do we know he will even leave after 4 years.', 'created': '2024-11-09 20:34:43', 'submission_id': '1gn186x'}
{'comment': "Possibly! \n\nAnecdotally, some of my acquaintances and friends that were strongly pro bernie and thought Clinton was corrupt and evil ended up leaning more right... more conspiracy theory-esque... and many of those went all out towards Trump this election... 😑 It's wild to me but also strangely predictable..those same pro trump people that were pro Bernie grew up with very conservative parents. Maybe it goes full circle that way?", 'created': '2024-11-10 01:38:10', 'submission_id': '1gn186x'}
{'comment': "The protestors wanted 4 minutes of silence. After that, his security team thought it would be best to not continue. He had to stop out of safety. Luckily some were able to make it to the U of Washington rally that night.\n\nSorry you missed out on his rally. Things happen. Don't let one bad experience tarnish your entire stance. How we deal with a situation when things don't work out in our favor, shapes our character.\n\nA negative mind will never give us a positive life.", 'created': '2024-11-10 04:15:50', 'submission_id': '1gn186x'}
{'comment': 'Beto starts makin’ his third comeback.', 'created': '2024-11-09 22:50:39', 'submission_id': '1gn186x'}
{'comment': 'That’s a good one!', 'created': '2024-11-09 14:56:10', 'submission_id': '1gn186x'}
{'comment': 'He wasn’t during the debate and was on stage with someone he could have taken to task for their weird beliefs. That showed me that he doesn’t have what it takes to be the top of the ticket.', 'created': '2024-11-09 08:18:59', 'submission_id': '1gn186x'}
{'comment': "No he isn't, not at all, not on the level they do, and he wanted to play friends during the debates instead of calling them out to they face", 'created': '2024-11-09 08:46:52', 'submission_id': '1gn186x'}
{'comment': 'no. going hard on anti-immigration made it seem like there was no reason to vote for harris if trump as the alternative was no different plus a """better""" economy promise trump makes.', 'created': '2024-11-09 08:52:47', 'submission_id': '1gn186x'}
{'comment': 'Why is it that we always have to capitulate to hate and bigotry because we lost?', 'created': '2024-11-09 18:41:40', 'submission_id': '1gn186x'}
{'comment': 'So too much Dad energy? I’m not trolling I’m genuinely curious.', 'created': '2024-11-09 07:26:52', 'submission_id': '1gn186x'}
{'comment': 'To be honest... neither would have gotten us the win.\xa0', 'created': '2024-11-09 10:30:34', 'submission_id': '1gn186x'}
{'comment': 'He’s smart and speaks well, too!', 'created': '2024-11-09 06:13:26', 'submission_id': '1gn186x'}
{'comment': 'Jon Stewart isn\'t a journalist. He has said so himself multiple times. He is first and foremost a comedian. He\'s a comedian that\'s political and cares about social issues. \n\nAlso pretty sure he doesn\'t want to run. Dude wants nothing to do with being IN government, he prefers to be the guy outside criticizing it and pushing for improvements. But if he ever changed his mind, I would be on board with his candidacy. But realistically if he ran I think it\'s unlikely he gains traction nation wide because he absolutely gives off the "coastal elite" vibes that the swing states hate lol. Plus he\'s Jewish and Americans have yet to elect a Jewish president. Would love him to run but I doubt his campaign would gain nation wide traction.', 'created': '2024-11-09 08:39:46', 'submission_id': '1gn186x'}
{'comment': 'Let me help you:\n\nPrimaries aren’t only for President, they’re for down-ballot races too. The very people who represent us in each of our areas. In some cases narrowing a large field of candidates to just a few of *the best*.\n\nAttitudes like yours and low information voters are what gets us the likes of Kitara Ravache, Boobert and more of the insanity. Apathy.', 'created': '2024-11-09 14:56:58', 'submission_id': '1gn186x'}
{'comment': "It's 2024 (will be 2028).\n\n64 is not an old man anymore. I'm a medical doctor and I have plenty of colleagues in their 60s. This undercurrent of ageism needs to go. Judge a person on their energy, stamina, and ideas. Not their birth date. People are well capable in their 60s. Obama is 63 and you know damn well he could tolerate the presidency if he hypothetically got thrown in. He hasn't lost a beat.\n\nBut you're free to have your opinion.", 'created': '2024-11-09 06:12:04', 'submission_id': '1gn186x'}
{'comment': 'Yes except polls constantly show that had she been the Republican nominee, she almost certainly would be in the White House. This is a futile point. Nobody running against Trump in the primary was ever going to win, regardless of how strong of a candidate they were.\n\nAn extremist won the White House by marketing himself as a centrist and portraying his opponent as an extremist. Did you miss the entire last 4 months? His whole campaign was “Project 2025 isn’t real; I support abortion exceptions; I’m going to cut taxes and get rid of tax on overtime,” and “Kamala Harris is the most liberal US Senator of all time and will give transgenders surgeries in prison!!!”\n\nThat is not the campaign you run if extremism wins.', 'created': '2024-11-09 05:22:47', 'submission_id': '1gn186x'}
{'comment': "true true, definitely. at least they switched out Biden at the very last moment, he would've lost all states except Delaware lol.\n\n \nBiden should've stepped down in 2022, allowing the primary process. strongest candidate would emerge from the competition. \n\n \nThis aversion to primary contests i think is rooted in Allan Lichtmans failed keys", 'created': '2024-11-09 05:35:48', 'submission_id': '1gn186x'}
{'comment': "Yea, we'll agree to disagree", 'created': '2024-11-09 11:41:47', 'submission_id': '1gn186x'}
{'comment': "As long as you think that, you're going to be part of the problem and not part of the solution.", 'created': '2024-11-10 14:09:02', 'submission_id': '1gn186x'}
{'comment': 'I read — oh so much from good, reliable sources. Yet here we are. Now my family just wants to survive these next years - however many we have left. Yes. This is very personal.', 'created': '2024-11-09 23:05:36', 'submission_id': '1gn186x'}
{'comment': 'This election showed that facts don’t care about feelings. People felt the economy sucked, despite what the facts were saying, after all, and they voted for the orange numb-nut in kind. \n\nIf Newsom wants to help the candidate, by all means, he’d be good at it! But only as long as he himself isn’t the candidate.', 'created': '2024-11-09 19:54:15', 'submission_id': '1gn186x'}
{'comment': 'Jeff Jackson?', 'created': '2024-11-09 20:25:10', 'submission_id': '1gn186x'}
{'comment': 'I’m not sure we’ll have to pander. We can have an attack dog candidate like OP suggests, who just tells the truth about the hard times we’ll be having by then after four years of Trump. \n\nFirst, we need to come up with a plan to stop outside interference in our elections that will pass constitutional muster regarding free speech. We then need a system like Canada has regarding funding of elections and make PAC’s illegal when it comes to donating money to politicians.', 'created': '2024-11-09 15:52:45', 'submission_id': '1gn186x'}
{'comment': 'Jon Ossoff?', 'created': '2024-11-09 16:31:26', 'submission_id': '1gn186x'}
{'comment': '“BuT bErNiE”\n\nfr tho. like yall there isn’t a conspiracy. Hillary won the primary. Biden won the primary. We all know the circumstances around Kamala but she was also elected in the VP slot', 'created': '2024-11-09 15:22:25', 'submission_id': '1gn186x'}
{'comment': 'I was just telling my husband that I believe, at this point, if a woman is to be come President in the US it’s going to be a Republican woman when it happens. She’d lose some hard core misogynists but she’d get the hard core republicans and probably a lot of independents and maybe even some Democrats.', 'created': '2024-11-09 12:35:18', 'submission_id': '1gn186x'}
{'comment': "We, hopefully, aren't running against Trump again so it's up in the air at a minimum.", 'created': '2024-11-09 09:23:04', 'submission_id': '1gn186x'}
{'comment': 'My daughter’s face when I told her that just crushed me.', 'created': '2024-11-09 15:37:30', 'submission_id': '1gn186x'}
{'comment': 'I think so.', 'created': '2024-11-09 15:28:21', 'submission_id': '1gn186x'}
{'comment': "Unsolicited advise is seldom welcome.\n\nYour name is f'ing creepy, now go away.\n\nI", 'created': '2024-11-10 05:00:01', 'submission_id': '1gn186x'}
{'comment': 'No. Just, no. No more soft guys.', 'created': '2024-11-10 00:00:40', 'submission_id': '1gn186x'}
{'comment': 'It\'s fairly obvious he was told not to. When the dnc got more involved with the campaign any antagonistic rhetoric just flat died.\n\n\nWent from "they\'re weird" to "heres our best friends, the cheneys!"', 'created': '2024-11-09 09:29:25', 'submission_id': '1gn186x'}
{'comment': "OK, you understand problems. It's reading comprehension that you're lacking. \n\nI never said I don't vote in primaries. However, when and how I vote is my choice to make and none of your concern. \n\nAttitudes like yours won't work in persuading someone into doing what you think they should do and, in many cases, will work to convince them to do the opposite. Tantrums don't work on adults.", 'created': '2024-11-09 17:04:58', 'submission_id': '1gn186x'}
{'comment': "look, I'm genuinely not trying to be ageist and I know I'm coming across that way. the only leaders I've known are genuinely geriatric though, and I would stake my life on the fact that both Biden and Trump have significant dementia (I also work in healthcare, though I am not a doctor) ... I'm just bummed out man. and right now the idea of rallying behind one of the candidates that just got resoundingly defeated, to the point that Trump is the first Republican to win in the popular vote in 20 years, is just something that I don't think I'm ready for yet if I'm completely honest. I think our party has made a lot of mistakes since 2016 and that Biden's success was a fluke due to COVID, and I would rather just see new leadership at this point. given time to process, and seeing how Tim performs over the next 4 years, I might change my mind", 'created': '2024-11-09 06:18:40', 'submission_id': '1gn186x'}
{'comment': "did you miss the part where he got up on live TV and literally screamed about immigrants eating pets? he paid lip service to being a centrist but he's the most obvious extremist on planet Earth", 'created': '2024-11-09 05:24:35', 'submission_id': '1gn186x'}
{'comment': "He did well with Dems and surprisingly with some Republicans as well back in 2020 and the gay thing didn't seem to be holding him back then 🤷\u200d♀️", 'created': '2024-11-09 11:44:01', 'submission_id': '1gn186x'}
{'comment': "We can always leave. We don't have to do any of this.", 'created': '2024-11-09 23:57:04', 'submission_id': '1gn186x'}
{'comment': 'Yes. Jesus. Why do I keep calling him Jeff Johnson. lol. Lemme fix that.', 'created': '2024-11-09 20:27:55', 'submission_id': '1gn186x'}
{'comment': "Yea there's no way in hell we do anything with election interference, especially with a majority republican congress, it's benefits them so they are going nowhere near it", 'created': '2024-11-09 17:56:03', 'submission_id': '1gn186x'}
{'comment': 'I was thinking this earlier - I expect his hat to be in the ring.', 'created': '2024-11-09 16:59:40', 'submission_id': '1gn186x'}
{'comment': 'I was thinking the same thing until I remembered, they want to rule over women, not be ruled by them.', 'created': '2024-11-09 14:34:25', 'submission_id': '1gn186x'}
{'comment': 'Nope - the GOP is super misogynistic, AND some of these Republican women are worse than the men. Look at the German women who supported Hitler - they were so vicious. The Republican women who support Trump are the same.\n\nThe Amish came out in droves for Donald Trump - no way are they going to vote for a woman.', 'created': '2024-11-09 14:43:43', 'submission_id': '1gn186x'}
{'comment': 'Only Nixon could go to China, and only republican can run women', 'created': '2024-11-09 12:58:27', 'submission_id': '1gn186x'}
{'comment': 'I agree with you.', 'created': '2024-11-09 14:20:44', 'submission_id': '1gn186x'}
{'comment': 'Don’t think a woman could make it through the Republican primaries. The most likely scenario is as a Democratic VP and the President dies. And that was only remotely likely with someone as old as Biden.', 'created': '2024-11-09 16:52:23', 'submission_id': '1gn186x'}
{'comment': '🤣 \nNice try.\n\nI never said you didn’t vote.\nPoor Reading and Comprehension are on you.\n\nIf someone is so weak to run to chose to be a MAGAT when confronted with facts, then MAGAs deserve them. They will learn the error of they ways and rightfully so.\n\nMany others, with a working brain have a 💡 moment, realize they were lied to, and/or ask for more info and make a better informed decision.\nWe saw it often in the Subs, people confessed it.\nI saw it on person while volunteering.\n\nThat’s all the time today I have for a maleorgandonor \n\nConsidering your ID it’s a wonder anyone takes you seriously.\n\nBye!', 'created': '2024-11-09 17:48:52', 'submission_id': '1gn186x'}
{'comment': 'A majority of people do not pay close enough attention to elections to catch on to these tiny details. And “they’re eating dogs,” is not a policy position — that in now way defines Trump as being an extremist, just an idiot.', 'created': '2024-11-09 05:26:05', 'submission_id': '1gn186x'}
{'comment': "That was a local election which are entirely different, are you serious??...Sarah mcbride who's a trans woman won a house seat in delaware just now, does that mean she has a chance to win a national election?? I'm sure she got some republican votes too", 'created': '2024-11-09 11:55:18', 'submission_id': '1gn186x'}
{'comment': 'lol. Definitely agree with you but I think he may be better fit for a senate run in 28 or a governor run if Stein goes for senate. Ted Budd is definitely beatable for either and I think Roy Cooper will be the guy to take down Tillis in 26. Met Jeff at NC A&T a couple years ago, awesome guy but I expected nothing less.', 'created': '2024-11-09 20:33:01', 'submission_id': '1gn186x'}
{'comment': 'I think that’s what Ford said was most likely when answer a question from a student at the time.', 'created': '2024-11-09 18:41:47', 'submission_id': '1gn186x'}
{'comment': 'Ignoramus', 'created': '2024-11-09 23:20:49', 'submission_id': '1gn186x'}
{'comment': 'People absolutely paid attention to that, it got remixed into a song within a day and I still hear "hear concepts of a plan" constantly', 'created': '2024-11-09 05:27:14', 'submission_id': '1gn186x'}
{'comment': "He won multiple states as well in the primaries before dropping out. He did well with both liberal and conservative audiences, which is something I haven't seen anyone else do in a very long time.", 'created': '2024-11-09 12:00:35', 'submission_id': '1gn186x'}
{'comment': 'And yet, still do neither of those things have anything to do with policy positions and are thus irrelevant to whether or not Trump is an extremist. All it shows is that he’s an idiot.', 'created': '2024-11-09 05:28:29', 'submission_id': '1gn186x'}
{'comment': "People who are not extremists do not get up on a stage and scream about conspiracy theories to 67 million people. Republicans are not running on moderation, they are running on shameless extremism with the barest lip service to centrists. We have been running on shameless centrism with the barest lip service to progressives. Maybe instead of hugging Liz Cheney, we could have tried healthcare reform? All I'm saying is the last truly popular Democratic president came in with a bold policy proposal that still carries his name to this day, and we treat him like a goddamn hero. I've even talked to a good number of people that actually did vote for Trump who would have rather voted Bernie Sanders had they been given the opportunity because what our side fails to recognize is that we are in an age of populism - status quo candidates just aren't going to win right now. To be clear I'm not a Bernie bro, I strongly believe that what our party really needs a new generation of leadership.", 'created': '2024-11-09 05:32:16', 'submission_id': '1gn186x'}
{'comment': 'The more numbers I see, the less sense this all make.', 'created': '2024-11-09 04:56:24', 'submission_id': '1gn0xt6'}
{'comment': 'And yet still too many people sat this one out. It was always gonna be close, but it was very winnable as well.', 'created': '2024-11-09 04:41:27', 'submission_id': '1gn0xt6'}
{'comment': "Total numbers aren't worth much. Percentage of eligible voters would hold weight.\xa0", 'created': '2024-11-09 04:57:19', 'submission_id': '1gn0xt6'}
{'comment': 'Show me this chart as a percentage based on the U.S. population at the time', 'created': '2024-11-09 05:38:27', 'submission_id': '1gn0xt6'}
{'comment': 'Well yes, the population has increased by 45 million people.', 'created': '2024-11-09 04:55:31', 'submission_id': '1gn0xt6'}
{'comment': 'It’s almost as if universal voting by mail in 2020 made it easy to vote.', 'created': '2024-11-09 05:23:01', 'submission_id': '1gn0xt6'}
{'comment': 'Wait in the end Trump DIDNT get less votes?? Even after the past 4 years? I hate this country', 'created': '2024-11-09 09:26:10', 'submission_id': '1gn0xt6'}
{'comment': 'And it means absolutely jack shit.', 'created': '2024-11-09 06:47:19', 'submission_id': '1gn0xt6'}
{'comment': 'Pretty meaningless given a larger population since 2008 - and given the result.', 'created': '2024-11-09 07:18:40', 'submission_id': '1gn0xt6'}
{'comment': 'I thought Hilary won the popular vote over Trump?', 'created': '2024-11-09 11:49:51', 'submission_id': '1gn0xt6'}
{'comment': 'How many 💣 threats were there again?', 'created': '2024-11-09 04:47:13', 'submission_id': '1gn0xt6'}
{'comment': 'Kamala was obviously not the fucking problem. Trump voters were.', 'created': '2024-11-09 05:11:21', 'submission_id': '1gn0xt6'}
{'comment': 'As Trump would refuse to say... Biden is the best at getting votes.', 'created': '2024-11-09 07:59:06', 'submission_id': '1gn0xt6'}
{'comment': "I don't think this really represents the turnout of the elections accurately. Yes, proportionally more and more people have been turning out to elections over time. But also the population has been increasing. This is slightly misleading because it counts vote numbers, when the U.S. population has increased by 100 million in the past 40 years. For context, Ronald Reagan got 54 million votes in 1984, which, accounting for population growth, would be 77.4 million votes this year and would put him at #2 in most votes ever according to this chart. Obama's 2008 performance would be right around there as well, sitting at around 76.6 million votes-- after accounting for population growth. \n \nWhat would be much more accurate- and interesting to look at- is a chart with what percent of the voter base decided to show up and vote for president. I think we'd see that actually, percent voter turnout has been on a slight decline.", 'created': '2024-11-09 09:13:40', 'submission_id': '1gn0xt6'}
{'comment': 'Trumps difference between both runs 6,137 votes..that\'s WILD. \n\nAlso, the bullshit being spewed RIGHT away mind you if 15mil voters "sitting this one out" etc. has to stop.\n\nWith a still non totalled (if this is correct so far), 3,900,484 votes between the two. \n\nWe really need to fight the fight for the end of electoral college for one, and also, with the insane amount of growth in this country, absolutely no popular vote counts should even be talked about until every single last one is (at this point especially) quadruple counted and verified. \n\nHas anyone made a list or starting point of grassroots groups/communities/law professionals the whole everything yet? National and local? \n\nWe\'re Reddit y\'all. Not only CAN we do this, it needs to be like...right the fuck now because these apes are gonna be coming for the internet and restrictions as fast as they can I\'m assuming.\n\nCutting community and communications is right in the German playbook, except now it\'s just faster tech.\n\nLove y\'all. Hope everyone is safe and using, or starting to use, these angry/sad/bewildered/scared/honest feelings, to get down to business.', 'created': '2024-11-09 14:49:33', 'submission_id': '1gn0xt6'}
{'comment': "Fuck the 15 million dems that sat this one out. For fucking real they can't complain for a second when shit hits the fan. They wanted Trump by not voting, they got him.", 'created': '2024-11-09 16:09:38', 'submission_id': '1gn0xt6'}
{'comment': '1 thing we can all agree on, if Kamala ran in 2016 her numbers would have won the presidency 😮', 'created': '2024-11-09 16:46:07', 'submission_id': '1gn0xt6'}
{'comment': 'More votes than Obama and you’re telling me there isn’t something weird going on. That’s such a large drop in votes. That doesn’t just happen.', 'created': '2024-11-09 04:35:09', 'submission_id': '1gn0xt6'}
{'comment': 'Trump did twice too.', 'created': '2024-11-09 05:37:59', 'submission_id': '1gn0xt6'}
{'comment': 'There’s like 350 million us citizens now and there were 216 million in 1975. I want to see this as a percentage of the population or registered voters… and I’m way too lazy to do it.', 'created': '2024-11-09 06:43:01', 'submission_id': '1gn0xt6'}
{'comment': "Higher voter turnout, more generations of voting age.\n\nThis cycle had Silent Generation, Boomers, Gen-X, Millennials, and most of Gen-Z of voting age. Whereas Obama didn't even have all of the Millennials at voting age in 2012, and the Silents and Boomers that were alive lean more heavily right.", 'created': '2024-11-09 07:29:24', 'submission_id': '1gn0xt6'}
{'comment': '30+M larger population than 2008', 'created': '2024-11-09 08:15:15', 'submission_id': '1gn0xt6'}
{'comment': 'Joe reigns supreme 👑', 'created': '2024-11-09 14:59:36', 'submission_id': '1gn0xt6'}
{'comment': 'The more numbers I look at from this election, the more I’m convinced there was some bullshit going on.', 'created': '2024-11-09 16:08:03', 'submission_id': '1gn0xt6'}
{'comment': 'It just sucks that according to this chart over 11 million people sat this election out. They knew in 2020 how important it was, and they knew this time was even more dire. This is the result. \n\nYou can’t take this shit for granted. You show up regardless. I hope to GOD we hold the HOUSE, otherwise there is no gate to protect anything. The founding fathers are rolling over in their graves.', 'created': '2024-11-09 08:04:31', 'submission_id': '1gn0xt6'}
{'comment': 'The population rises every year and has to be taken into account. You cannot compare 2008 to 2024 without normalizing the data', 'created': '2024-11-09 15:36:59', 'submission_id': '1gn0xt6'}
{'comment': 'I find it very hard to believe that all those first time voters were voting for him. You will not convince me otherwise', 'created': '2024-11-09 15:55:30', 'submission_id': '1gn0xt6'}
{'comment': 'The only thing I take from this is only 11 million Democrats stayed home instead of 15.', 'created': '2024-11-09 16:21:43', 'submission_id': '1gn0xt6'}
{'comment': 'Wholly meaningless. \n\nShe got her ass kicked, as much as we didn’t want that to happen. \n\nShe MUST be a better candidate than Lincoln, Jefferson and Washington combined because she got more votes, right?\n\nIt’s stupid shit like this that killed the country.', 'created': '2024-11-09 16:24:52', 'submission_id': '1gn0xt6'}
{'comment': 'At the end of the day Trump got the same amount of votes, Harris just couldn’t inspire people to get out and vote like Biden did after we had to deal with 4 years of chaos under the first Trump term.', 'created': '2024-11-09 16:32:36', 'submission_id': '1gn0xt6'}
{'comment': 'In other subs I’ve seen: border issue, some women actually believe Trump and the GOP will give them free IVF treatments, and cost of groceries.', 'created': '2024-11-09 16:36:52', 'submission_id': '1gn0xt6'}
{'comment': "California had 17M in 2020 and in 2024 the count as of right now is at 63% and \\~11M -- there's still more coming in.", 'created': '2024-11-09 21:52:01', 'submission_id': '1gn0xt6'}
{'comment': 'Joe is King 🤴 \n\n🤣 poor tre45on.', 'created': '2024-11-09 05:24:38', 'submission_id': '1gn0xt6'}
{'comment': 'This is just a bad graph. You need to normalize to US population', 'created': '2024-11-09 12:34:13', 'submission_id': '1gn0xt6'}
{'comment': 'Considering how the US population has been growing since 1776, it gives this info a major bias towards recent races', 'created': '2024-11-09 13:17:46', 'submission_id': '1gn0xt6'}
{'comment': "With trends of increased voting, Kamala effectively lost votes. Trump essentially gained no voters, and all she had to do was maintain Biden voters, and she couldn't. Colossal failure on all levels. The number isn't impressive in any context. The trend was upward.", 'created': '2024-11-09 07:40:56', 'submission_id': '1gn0xt6'}
{'comment': "That's great. Looks like somebody else might have surpassed her.", 'created': '2024-11-09 05:23:04', 'submission_id': '1gn0xt6'}
{'comment': 'I put her loss squarely on the media who vilified Biden for weeks about his mental state while allowing Trump to blither like a drooling idiot. They made such a big deal about Biden being the oldest man to run for president and look who we have now. The media on the right didn’t give the people the opportunity to know Kamala or learn about her policies. All they heard was how Commie Kamala and her low IQ would ruin the country and bring us to war. Our country isn’t the god damn Jerry Springer Show and I’m tired of Fox News making it so.', 'created': '2024-11-09 11:46:01', 'submission_id': '1gn0xt6'}
{'comment': 'I still think it came down to people upset about their weekly grocery prices. I will revise that view should other information come out.', 'created': '2024-11-09 05:07:06', 'submission_id': '1gn0xt6'}
{'comment': 'Democrats had a good turnout. Trump had a great one. Bidens was still bigger, but maybe a lot of that was thr anti-trump vote.', 'created': '2024-11-09 05:36:10', 'submission_id': '1gn0xt6'}
{'comment': 'Right?!?!?!', 'created': '2024-11-09 05:19:09', 'submission_id': '1gn0xt6'}
{'comment': 'Mail in voting and COVID explain the high 2020 numbers.', 'created': '2024-11-09 10:16:35', 'submission_id': '1gn0xt6'}
{'comment': 'Man, I’m still proud of her. Her run is being touted as a total failure, but she turned out millions of voters. She ran a campaign that I loved, as a poor/working class voter (the group that is supposed to be so jaded and disillusioned with the Democrats). Millions in red and purple states voted for her. I’ll mourn this forever, but I’m still so proud of her :(', 'created': '2024-11-09 07:34:45', 'submission_id': '1gn0xt6'}
{'comment': "Yesterday only 68% of California had been counted. Not entirely sure but someone said she could still end up winning the popular vote. That would really bother what's his name.", 'created': '2024-11-09 15:13:00', 'submission_id': '1gn0xt6'}
{'comment': 'It was not always going to be close, and frankly it probably wasn’t very winnable.\n\nThe country swung 7 points to the right on average. 10 in the larger states (with low media saturation in terms of election coverage) but a much *much* smaller 3 points in the swing states, 2 in the blue wall.\n\nThat tells us a couple things. One is that the Kamala campaign was pretty strong, firstly just in knowing where to commit resources, secondly because it shows in environments where the election was big news/on ads for a while she was as actually gaining ground. But at the same time, the national swing shows you the headwinds her campaign was fighting, the ‘natural’ shift in the country that she had to counter, and how much she had to over perform in swing states to win. \n\nConsidering she had 100 days, “get within 1% of Biden’s margin in the swing states” seems like an impossible challenge for a country that’s wildly swinging right.', 'created': '2024-11-09 05:59:14', 'submission_id': '1gn0xt6'}
{'comment': 'Yup. People who keep comparing the raw vote amounts across elections are doing it wrong. It’s apples to oranges due to different turnout levels across the board and changes in population.\n\nCompare the margins, especially among specific groups (like independents and “double haters”).', 'created': '2024-11-09 16:38:12', 'submission_id': '1gn0xt6'}
{'comment': '[Here you go](https://www.perplexity.ai/search/show-me-this-chart-as-a-percen-7ocNhJVpSziYQVnOpiQOeg#0)', 'created': '2024-11-09 09:34:38', 'submission_id': '1gn0xt6'}
{'comment': 'Exactly.', 'created': '2024-11-09 15:49:20', 'submission_id': '1gn0xt6'}
{'comment': 'California has only counted 63% of votes. And so far she has gotten 6.7 million votes in CA, so she’ll be getting millions more by the time they’re done counting.', 'created': '2024-11-09 06:53:46', 'submission_id': '1gn0xt6'}
{'comment': 'Not a great argument when Trump got just as many votes as 2020.', 'created': '2024-11-09 06:40:17', 'submission_id': '1gn0xt6'}
{'comment': "I had to vote in person in 2020 twice (once in the primary and once in the general). Just like in 2024. No universal voting by mail in TX, that's for sure.", 'created': '2024-11-09 07:18:35', 'submission_id': '1gn0xt6'}
{'comment': "He lost people who were paying attention but then gained people who weren't.", 'created': '2024-11-09 15:56:14', 'submission_id': '1gn0xt6'}
{'comment': "Yeah, but it's a Top Ten list, and people like Top Ten list for all sorts of things (despite their inherent subjectivity and unfairness).", 'created': '2024-11-09 16:50:41', 'submission_id': '1gn0xt6'}
{'comment': "She did. Her 2016 run is one spot above Trump's 2016 run.", 'created': '2024-11-09 13:21:49', 'submission_id': '1gn0xt6'}
{'comment': '“Arthur Crispien just had a weird laugh.”', 'created': '2024-11-09 05:26:27', 'submission_id': '1gn0xt6'}
{'comment': 'Trump voters were the #1 problem.\n\nHaving less than 100 days to campaign, missing the first debate, and becoming the new candidate without a primary process was the #2 problem.\n\nDNC could have prevented #2', 'created': '2024-11-09 06:41:54', 'submission_id': '1gn0xt6'}
{'comment': 'I love Kamala. Great personality, smart, working class, etc. Now I fear for her safety. Those motherfuckers touch a hair on her head we gonna have to fight.', 'created': '2024-11-09 13:13:39', 'submission_id': '1gn0xt6'}
{'comment': 'Well, he had COVID as a sidekick.', 'created': '2024-11-09 16:47:38', 'submission_id': '1gn0xt6'}
{'comment': "Interesting. Kamala certainly doesn't have the same baggage as Hillary.", 'created': '2024-11-09 17:12:20', 'submission_id': '1gn0xt6'}
{'comment': 'More votes? Of course, our population has increased 45 million since 2008.\xa0', 'created': '2024-11-09 04:58:34', 'submission_id': '1gn0xt6'}
{'comment': 'Obamas percentage of total voting eligible population is probably way higher \n\nRatios matter', 'created': '2024-11-09 04:42:49', 'submission_id': '1gn0xt6'}
{'comment': 'Absolute count doesn’t matter, you need to look at percentage of votes compared to total US population.', 'created': '2024-11-09 14:41:32', 'submission_id': '1gn0xt6'}
{'comment': "That's not all. There's also voter turnout rates, voting access, the intensity of issues or candidates, shifts in the eligible voting population, and demographic influences. But really, people love Top Ten lists too. Live the Top Ten best movies of “all time” (which rarely consider the changing population, access to and number of screens, technological achievements at the time, innovation, or cultural significance).", 'created': '2024-11-09 16:46:22', 'submission_id': '1gn0xt6'}
{'comment': "I take solace in the fact that they don't have a super majority even if they get the houss", 'created': '2024-11-10 07:23:22', 'submission_id': '1gn0xt6'}
{'comment': 'Ok. Make sure you do that with every Top Ten list you see. There are tons of them—sports, movies, books, games, music, wealth—and not one computes all the historical contexts.', 'created': '2024-11-09 17:01:20', 'submission_id': '1gn0xt6'}
{'comment': 'They are children of a Trump era, glued to screens.', 'created': '2024-11-09 17:02:16', 'submission_id': '1gn0xt6'}
{'comment': 'And counting…', 'created': '2024-11-09 17:03:42', 'submission_id': '1gn0xt6'}
{'comment': '>It’s stupid shit like this that killed the country.\n\nYou might want to include that assessment too.', 'created': '2024-11-09 17:05:36', 'submission_id': '1gn0xt6'}
{'comment': "First time voters don't possess the same context as those who experienced Obama, Clinton, the Bushes, and Reagan. All they know is what they've lived through and paid attention to. In that reality, Trump might not seem like the horror show others see.", 'created': '2024-11-09 17:09:12', 'submission_id': '1gn0xt6'}
{'comment': 'Yep. You get a free pony! And you, too! Everyone gets a free pony! \n\nWorks every time.', 'created': '2024-11-09 17:10:45', 'submission_id': '1gn0xt6'}
{'comment': 'Then I suppose we should gauge the best times in the mile run to improvements in technology? And the most World Series wins to the size of the league? And the most popular movies to the number of screens? They are called “top ten” lists for reasons.', 'created': '2024-11-09 15:47:40', 'submission_id': '1gn0xt6'}
{'comment': 'Of course. But recency is the context we share.', 'created': '2024-11-09 15:39:15', 'submission_id': '1gn0xt6'}
{'comment': "2020 wasn't 2024. Namely, COVID.", 'created': '2024-11-09 16:48:25', 'submission_id': '1gn0xt6'}
{'comment': "Trump's blathering is old news. Biden's blathering was new news.", 'created': '2024-11-09 15:52:10', 'submission_id': '1gn0xt6'}
{'comment': 'The Holocaust happened because Ludwig Kaas couldn’t be trusted to control inflation.', 'created': '2024-11-09 05:25:08', 'submission_id': '1gn0xt6'}
{'comment': 'This is the most rational explanation because similar things happened to candidates around the world this year. In fact I think Harris and Democrats weathered the storm a lot better than most', 'created': '2024-11-09 05:54:41', 'submission_id': '1gn0xt6'}
{'comment': '[removed]', 'created': '2024-11-09 06:38:48', 'submission_id': '1gn0xt6'}
{'comment': 'Idiocy. Just wait til they see prices after Tariffs', 'created': '2024-11-09 16:10:05', 'submission_id': '1gn0xt6'}
{'comment': "Yep. There are a fair few things I wish the democrats did differently but I'm not convinced they'd have made a whole lot of difference. I hate to be arrogant but at the end of the day the Dems lost because stupid people can't understand that there was extremely little link between Biden's policies and inflation.", 'created': '2024-11-09 11:46:32', 'submission_id': '1gn0xt6'}
{'comment': 'Eggs and milk are expensive, and the republican super-PACs offered a convenient explanation: Biden and Harris spent all their tax money on gender reassignment surgery for immigrant prisoners. It’s so simple!', 'created': '2024-11-09 16:09:30', 'submission_id': '1gn0xt6'}
{'comment': 'Nevermind that grocery prices were starting to come down, eh?', 'created': '2024-11-09 18:02:43', 'submission_id': '1gn0xt6'}
{'comment': '> Her run is being touted as a total failure, but she turned out millions of voters. She ran a campaign that I loved\n\nFor the briefest moments in the grand scheme of things, her campaign gave millions and millions of people a huge vibe of hope. Not just a mere return to normalcy. Not just undoing the catastrophe of 4 years of past Republican leadership. \n\nFor the briefest of moments, she put herself out there to lead people to feel there is a chance of a better tomorrow. An emotionally better tomorrow.', 'created': '2024-11-09 08:00:40', 'submission_id': '1gn0xt6'}
{'comment': "For perspective UK's incumbent party in Summer '24 was voted out because of the economy and handling of inflation and their worst showing in a generation. Harris is dropped into the middle of a presidential race having to use Biden's team she was not familiar with to run the campaign and pulls out I would say with +7M vote to count in Calif maybe a 74M total vote result. Well done", 'created': '2024-11-09 14:35:41', 'submission_id': '1gn0xt6'}
{'comment': "Harris/Walz bought some much-needed excitement and hope into the race, but having such a short campaign window, Harris having Biden so close to her, and the Dems as a whole having a severe messaging issue played into what happened.\n\nApparently, Biden's team had internal polling that Trump would win 400 EVs (NY and NJ could've went red, for example) if Biden kept going. This was a dire situation and was basically irreparable. Harris/Walz bought back enough excitement for Dem turnout to not crater fully, which might've made a difference in the Northeast and prevented swing states from turning into complete blowouts, but it was too little too late and their overall momentum stalled at some point.", 'created': '2024-11-09 19:07:55', 'submission_id': '1gn0xt6'}
{'comment': "That would be something at least. If she could have only come closer to Biden's 2020 numbers we would have had it, but some people just couldn't be bothered I guess.", 'created': '2024-11-09 15:24:35', 'submission_id': '1gn0xt6'}
{'comment': ">Considering she had 100 days\n\nI think this is the primary reason she didn't win. And I think Biden and the DNC should have had a plan for this more than a year ago, instead of 100 days ago.", 'created': '2024-11-09 06:37:54', 'submission_id': '1gn0xt6'}
{'comment': None, 'created': '2024-11-09 07:43:31', 'submission_id': '1gn0xt6'}
{'comment': "No Dem candidate was going to win the '24 election when the number one exit poll issue was the economy.", 'created': '2024-11-09 14:36:31', 'submission_id': '1gn0xt6'}
{'comment': 'Love that.', 'created': '2024-11-09 16:54:41', 'submission_id': '1gn0xt6'}
{'comment': 'Obama did better than both Trump runs in 2008 and Joe just had an historical result, which should have probably given at least a moment of pause to the idiots that decided changing candidate last minute was a good idea.', 'created': '2024-11-09 20:14:19', 'submission_id': '1gn0xt6'}
{'comment': 'It kind of is given how he spent half his campaign warning his voters to not vote by mail', 'created': '2024-11-09 09:34:30', 'submission_id': '1gn0xt6'}
{'comment': 'Oh, thank you. \n\nClearly I can’t read. \n\nAnd I forgot he’s run three fucking times.', 'created': '2024-11-09 16:25:54', 'submission_id': '1gn0xt6'}
{'comment': 'Every time I see those numbers I get mad again', 'created': '2024-11-09 16:40:41', 'submission_id': '1gn0xt6'}
{'comment': 'We need to start getting ready to square up now but yeah, we need to look into protecting politicians from Team Blue, especially the ones MAGA hates like Kamala, Hillary, AOC, Ilhan Omar, etc.', 'created': '2024-11-09 16:41:34', 'submission_id': '1gn0xt6'}
{'comment': "Exactly. The number of voters isn't important. You have to look at the voter turnout percentages. The number of voters is higher now, but the percentage is lower", 'created': '2024-11-09 11:51:02', 'submission_id': '1gn0xt6'}
{'comment': 'Well they are still counting votes.', 'created': '2024-11-09 19:24:32', 'submission_id': '1gn0xt6'}
{'comment': 'I’ve never heard that guy’s name before in my life yet I already know exactly who he is.', 'created': '2024-11-09 05:27:41', 'submission_id': '1gn0xt6'}
{'comment': 'the Nazis succeeded in part because grocery prices were high.', 'created': '2024-11-09 09:15:05', 'submission_id': '1gn0xt6'}
{'comment': 'Maybe not the best analogy given that the Centre Party ended up working with the Nazis', 'created': '2024-11-11 03:51:13', 'submission_id': '1gn0xt6'}
{'comment': 'Interesting, can you share more examples?', 'created': '2024-11-09 07:20:23', 'submission_id': '1gn0xt6'}
{'comment': 'I can’t help wishing that Biden hadn’t chosen to run again. I thought I recalled him previously stating he didn’t plan to run again after 2020. If he’d stuck with that, we could have had primaries, chosen a candidate with a better shot at winning, and enough time to really get behind them.', 'created': '2024-11-09 08:57:14', 'submission_id': '1gn0xt6'}
{'comment': "There was a plan, of sorts. And then Biden fumbled during a debate and there was a multi-week-long media blitz creating an electoral environment where there was no chance in hell that Biden could be competitive. So he withdrew from the race, and all hell broke loose as the Democrats scrambled to find a new candidate who stood a chance at winning _and was also willing to do it_. A lot of people just seem to think that if Newsom or Inslee or Gretchen should have been the candidate without really considering if they even wanted to do it.\n\nLook there this started: Biden fumbled during a debate, and there _was a multi-week-long mass media blitz consistently questioning his fitness while his opposition was spouting insanity non-stop_, and this created an electoral environment where there was no way in hell Biden would've been competitive.\n\nIf that did not happen, would Biden have won? Maybe, maybe not, but let's not ignore how this all started: Biden was the presidential candidate, fumbled during a debate early in the year, and a mass media frenzy created an environment where he was completely unable to compete in, regardless of whether he was actually fit or not to do so.\n\nHe may not have anyway. Well whatever, what's done is done.", 'created': '2024-11-09 08:21:36', 'submission_id': '1gn0xt6'}
{'comment': 'Exactly. But the republicans will just blame that on the democrats and their voters will buy it because they get their news from Fox News, OANN, NewsMax and right-wing internet sources.', 'created': '2024-11-09 16:27:12', 'submission_id': '1gn0xt6'}
{'comment': 'Wait til they see the initial side effects also. Things they haven\'t even thought about. Like a chip semiconductor shortage coming up, because the supply was just bought all up in anticipation of the tarrifs. Shortages coming up soon, followed up by massive price increases, followed up by a tanking stock market, followed up by dumbfounded dipshits wondering "I thought stuff was supposed to get cheaper".', 'created': '2024-11-10 03:43:36', 'submission_id': '1gn0xt6'}
{'comment': 'Might be no link, but incumbents (or in this case Kamala) have never been able to overcome a term with high inflation.', 'created': '2024-11-09 20:06:26', 'submission_id': '1gn0xt6'}
{'comment': 'Who is more stupid? Those too stupid to understand the link. Or those too stupid to think they can educate and convince stupid people to understand that link.', 'created': '2024-11-09 15:00:23', 'submission_id': '1gn0xt6'}
{'comment': 'When you say it like that it all sounds so reasonable. Were these prisoners legal immigrants or the kind that poison the blood of our nation?\n\nMeh I’m too confused to even bother. Think I’ll just sit this one out', 'created': '2024-11-09 18:13:59', 'submission_id': '1gn0xt6'}
{'comment': 'That is the worst part of the whole thing. If grocery prices had come down a few weeks earlier, this could have gone the other way.', 'created': '2024-11-09 18:04:43', 'submission_id': '1gn0xt6'}
{'comment': 'I really enjoyed her campaign 😔 I thought her social media team was *fantastic*', 'created': '2024-11-09 08:04:15', 'submission_id': '1gn0xt6'}
{'comment': "It's the hope that kills you.\n\nDemocrats need to start embracing grim determination, to treat every fight as if it's our last in a world where political violence is becoming increasingly normalized.", 'created': '2024-11-09 17:21:12', 'submission_id': '1gn0xt6'}
{'comment': 'I was super hopeful. Now I feel like an idiot for it. 😔', 'created': '2024-11-09 14:45:01', 'submission_id': '1gn0xt6'}
{'comment': 'Yup. I think that’s evidenced a lot, especially by bigger states swinging even *more* to the right than the rest of the country. In areas where the election wasn’t the only conversation for months she lost **huge**. In areas where people were actually forced to think about it within the 100 days she performed astoundingly well considering all the factors.\n\nOne of the best ran campaigns I’ve seen in my time studying politics, and yet somehow almost certainly doomed to failure. I hope this isn’t the end for Harris, whatever she chooses to move on to.', 'created': '2024-11-09 07:48:04', 'submission_id': '1gn0xt6'}
{'comment': 'Not true. I received material in the mail from the Trump campaign in 2020 encouraging me to vote absentee.', 'created': '2024-11-09 11:17:26', 'submission_id': '1gn0xt6'}
{'comment': 'Read enough of your comments to know we need to be friends. 😉 DM me, I have something to share with ya.', 'created': '2024-11-10 00:57:48', 'submission_id': '1gn0xt6'}
{'comment': 'AP has a current count at 70,383,093 votes for Harris, and 74,312,688 for Trump.', 'created': '2024-11-09 19:26:41', 'submission_id': '1gn0xt6'}
{'comment': 'It’s odd how when I say I don’t like Nazis, so many Republicans take that as a personal insult.', 'created': '2024-11-09 05:32:26', 'submission_id': '1gn0xt6'}
{'comment': 'Yeah, but they were actually really high vs. here where they were a little high', 'created': '2024-11-09 13:05:55', 'submission_id': '1gn0xt6'}
{'comment': 'What', 'created': '2024-11-09 09:36:44', 'submission_id': '1gn0xt6'}
{'comment': 'Seems pretty apt to me.', 'created': '2024-11-11 05:52:04', 'submission_id': '1gn0xt6'}
{'comment': 'UK, Argentina, Italy. Just look at 2024 elections and see how many govt changed. Voters punished everyone that presided over high inflation.', 'created': '2024-11-09 13:57:03', 'submission_id': '1gn0xt6'}
{'comment': "The only person I have seen blame Biden dropping out of the race for the loss is Senator John Fetterman. While I like Fetterman, I don't agree with his take here.", 'created': '2024-11-09 15:43:39', 'submission_id': '1gn0xt6'}
{'comment': "A few weeks into Trump's presidency he's going to claim that the current 2% inflation, 4% unemployment, and the highest GDP in the world are because of him. He's inheriting an amazing economy and he'll 100% take credit for it. And the morons will buy it.", 'created': '2024-11-09 17:38:43', 'submission_id': '1gn0xt6'}
{'comment': 'Thanks!', 'created': '2024-11-09 19:56:32', 'submission_id': '1gn0xt6'}
{'comment': 'Seriously. I don’t care what Kamala Harris was running on. Eliminating chocolate? Cool! Fine! I don’t care! Happy to support the candidate the nazis are NOT voting for.', 'created': '2024-11-09 08:07:13', 'submission_id': '1gn0xt6'}
{'comment': 'Yes! Exactly!\n\nI have seen this too.', 'created': '2024-11-09 20:49:46', 'submission_id': '1gn0xt6'}
{'comment': 'the german AfD tried to sue a bar that had a sign that said „no beer for nazis“ the AfD also also always tries to emphasize that they‘re not nazis (parts of them actually are nazis it‘s for example legally allowed to call Björn Höcke a fascist)', 'created': '2024-11-09 18:21:11', 'submission_id': '1gn0xt6'}
{'comment': 'Those voting for trump were too lazy to really work and earn the money needed to pay for groceries and rent.', 'created': '2024-11-09 13:31:14', 'submission_id': '1gn0xt6'}
{'comment': 'Are you familiar with the hyperinflation in Germany in the 1920s that in part led to the rise of the Nazis?', 'created': '2024-11-09 13:01:11', 'submission_id': '1gn0xt6'}
{'comment': 'Trudeau is DOA, too.', 'created': '2024-11-09 14:23:19', 'submission_id': '1gn0xt6'}
{'comment': "Voters are such a-holes sometimes\xa0 \xa0 \xa0\xa0\n\n\n( This statement ain't winning me the presidency. Or is it? >_> I don't even know anymore. )", 'created': '2024-11-09 22:02:26', 'submission_id': '1gn0xt6'}
{'comment': 'Is this global push to the right at all similar to the rightist swing that took place in the 30s?', 'created': '2024-11-09 18:07:17', 'submission_id': '1gn0xt6'}
{'comment': 'Absolutely! If you want to understand the Trump playbook, read up on Huey Long.', 'created': '2024-11-09 17:40:10', 'submission_id': '1gn0xt6'}
{'comment': 'Two Santas Theory', 'created': '2024-11-09 18:14:36', 'submission_id': '1gn0xt6'}
{'comment': 'They might be able to afford more groceries if they weren’t buying his shitty $500 sneakers or whatever.', 'created': '2024-11-09 13:58:47', 'submission_id': '1gn0xt6'}
{'comment': "So did we, but we weren't stupid enough to think a fascist would fix things.\n\nThis is entirely on them, and their immature behavior is in no way justified. Too bad if their money's tight. They should have bootstrapped like the rest of us, or worked with us to put policies in place that actually would help them instead of a tyrant specifically to punish us and then blame the economy for their immoral choices.\n\nIt's the same with the old Nazis too. They had a responsibility to be better than that but they didn't because they only cared about bigotry and being told what they want to hear.\n\nI totally get why it is people universally hate Nazis now.", 'created': '2024-11-09 17:32:35', 'submission_id': '1gn0xt6'}
{'comment': 'And they fixed it by killing their own citizens. Is that your recommendation on what we should do? Are you volunteering for the first wave?', 'created': '2024-11-09 16:10:22', 'submission_id': '1gn0xt6'}
{'comment': "Well, the UK and Brazil didn't go right. They punished the government that was around during the inflation.", 'created': '2024-11-09 19:27:43', 'submission_id': '1gn0xt6'}
{'comment': "It's more all that gas for their 5 mpg overcompensatinators", 'created': '2024-11-09 14:36:53', 'submission_id': '1gn0xt6'}
{'comment': 'Silly. The Trump campaign has already determined who that first wave will be. They\'re just calling it "mass deportations."', 'created': '2024-11-09 17:13:28', 'submission_id': '1gn0xt6'}
{'comment': 'First wave? They have started using Hitler\'s playbook a long time ago... they have already recreated the scapegoating, the failed coup attempt (although Hitler himself got spent some time in jail for that), and a new version of the German\'s Enabling Act.\n\nThe "first wave" began a long time ago.', 'created': '2024-11-09 19:41:57', 'submission_id': '1gn0xt6'}
{'comment': 'No. Obviously not.\n\nYou replied “What” to “the Nazis succeeded in part because grocery prices were high.”\n\nThat implies that you are not familiar with that period of history.', 'created': '2024-11-09 19:03:53', 'submission_id': '1gn0xt6'}
{'comment': 'UK went right the first time we elected Trump and they just finally got out of the rut. I hope this doesn’t push them back in.', 'created': '2024-11-09 23:28:33', 'submission_id': '1gn0xt6'}
{'comment': "That's what my comment means.", 'created': '2024-11-09 19:44:35', 'submission_id': '1gn0xt6'}
{'comment': 'I meant first wave of roundups of course, I agre with you.', 'created': '2024-11-09 19:44:14', 'submission_id': '1gn0xt6'}
{'comment': 'I mean, they did that by paying everyone shit and terrorizing workers, if you want to call that successfully ran government, ok.', 'created': '2024-11-09 19:46:05', 'submission_id': '1gn0xt6'}
{'comment': 'This article may be behind a registration wall. Sites with registration walls require users to create an account to view any content.\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-09 03:10:16', 'submission_id': '1gmzl7f'}
{'comment': "I'd like to live in the kind of world where we talk out our differences, everyone maintaining a courteous composure as we debate...\n\nBut that dream died on Jan 6th, 2021 amidst the shattering of glass windows, the piercing tones of the Capitol alarms, and the hoarse shouting of the Insurrectionists breaching the Capitol, eagerly seeking Members of Congress, Senators, and staff to murder and rape.\n\nNow I dream of a much darker day, one where we exact a very rough justice on Trump's allies and enablers for their crimes.", 'created': '2024-11-09 04:06:34', 'submission_id': '1gmzl7f'}
{'comment': 'And my wife is some how shocked that I am researching guns. Trying to get the best bang for my buck. \n\nGlock 43 and a AR 553 NATO ammo…good home defense just in case it goes real bad. Project 2025 might be the easy part of the Trump presidency. If we lose the House of Representatives Trump will be unchecked and IMMUNE from prosecution.\n\nThese fuckers want to put Democrats in prison. We are the “enemy within”. Over my dead body. They are armed to the teeth!!', 'created': '2024-11-09 04:21:22', 'submission_id': '1gmzl7f'}
{'comment': 'Remember when people wanted asshats like this prosecuted for Stochastic Terrorism? I sure as fuck remember.', 'created': '2024-11-09 04:06:27', 'submission_id': '1gmzl7f'}
{'comment': "F\\*cking LOL. As if someone couldn't then turn around and get revenge on one of his family members. You have weaknesses too, Mikey", 'created': '2024-11-09 03:39:37', 'submission_id': '1gmzl7f'}
{'comment': "So...drag and burn them after they're dead?\n\nSo....spare them the pain of death before desecrating their body?\n\nKind of weird how nowadays, many soldiers still respect the last rights of the dead, but the GOP needs to make an extra point of showing their disdain for their opponents. Even Bin Laden was buried at sea.", 'created': '2024-11-09 04:23:04', 'submission_id': '1gmzl7f'}
{'comment': 'My grandmother turned 13 in 1939, while living in Germany. She told me about how the Nazis were dragging American soldiers through towns, showing their “strength”. She didn’t talk about it for almost 65 years.', 'created': '2024-11-09 09:21:35', 'submission_id': '1gmzl7f'}
{'comment': 'Trumpy talks that crap and now it’s political norm for them . The same with last week we were to prepare for a civil war and now he wants unity . Right!', 'created': '2024-11-09 03:54:11', 'submission_id': '1gmzl7f'}
{'comment': 'Awwww how nice', 'created': '2024-11-09 03:33:19', 'submission_id': '1gmzl7f'}
{'comment': 'That’s cute.', 'created': '2024-11-09 03:59:58', 'submission_id': '1gmzl7f'}
{'comment': 'its so delicious that Dems are keeping 5 senate seats. we can easily recover in 2-4 years', 'created': '2024-11-09 03:59:36', 'submission_id': '1gmzl7f'}
{'comment': 'Oh, that’s cute. Sorry sport, we’re not dead yet. And were furious', 'created': '2024-11-09 19:39:29', 'submission_id': '1gmzl7f'}
{'comment': 'Yeah, I’m considering getting my CCW and buying my first gun also. Never thought I’d say that, but here we are.', 'created': '2024-11-09 12:36:05', 'submission_id': '1gmzl7f'}
{'comment': 'Those are called pistols.', 'created': '2024-11-09 22:00:19', 'submission_id': '1gmzl7f'}
{'comment': 'I’ve never even held a gun before. Call it a pew pew or whatever you want lol', 'created': '2024-11-09 22:22:26', 'submission_id': '1gmzl7f'}
{'comment': "I 100% feel this and agree. I live alone in a red state and have no support system or community. The very, very few people I know who feel the same way as I do are not the type of people to mobilize or take action. I'm in NC, but would love to get involved Amy way I can.", 'created': '2024-11-09 03:25:17', 'submission_id': '1gmzd2e'}
{'comment': 'Give a shit about each other.', 'created': '2024-11-09 03:10:03', 'submission_id': '1gmzd2e'}
{'comment': 'Start registering young voters. Spread the message about the importance of voting through social media.', 'created': '2024-11-09 04:48:57', 'submission_id': '1gmzd2e'}
{'comment': 'We definitely need to begin organizing. I was thinking about this. Generally I consider myself an agnostic, but the one thing religions do is organize like-minded people. How can we do that without bringing in mythical fairy tales\xa0', 'created': '2024-11-09 04:50:05', 'submission_id': '1gmzd2e'}
{'comment': 'What we need is a strong and supportive community, that is something the Republicans can never have.', 'created': '2024-11-09 04:31:15', 'submission_id': '1gmzd2e'}
{'comment': "I'm in the south. And I'll do anything I can to help. Sign me up.", 'created': '2024-11-09 05:30:46', 'submission_id': '1gmzd2e'}
{'comment': None, 'created': '2024-11-09 03:07:34', 'submission_id': '1gmzd2e'}
{'comment': 'I have found this so far: \n\nhttps://www.dcpeaceteam.org', 'created': '2024-11-09 06:20:58', 'submission_id': '1gmzd2e'}
{'comment': 'Are we supposed to keep donating money to ActBlue?', 'created': '2024-11-09 04:28:15', 'submission_id': '1gmzd2e'}
{'comment': 'I love your enthusiasm. I have recovered and I am here for it, too. Keep me in the loop!\n\n', 'created': '2024-11-09 07:24:27', 'submission_id': '1gmzd2e'}
{'comment': 'Until midterms come around, the best we can do is protest whatever bullshit Trump and his terrible Supreme Court pulls.', 'created': '2024-11-09 05:32:32', 'submission_id': '1gmzd2e'}
{'comment': 'I’m an expat living in Japan. Voted absentee in FL. There is a small coalition of women here with me in the same situation who are angry and sad. I’m trying to connect them with each other. We’re each picking one cause to champion and the rest of us will help figure out what needs to be done to help the cause and we’re all gonna do it together.', 'created': '2024-11-09 08:44:02', 'submission_id': '1gmzd2e'}
{'comment': 'Stop buying Teslas and sell your Tesla stock or it’s going to Trumps 120 million donation.', 'created': '2024-11-09 20:38:26', 'submission_id': '1gmzd2e'}
{'comment': "We need to change leadership and messaging teams and have a coming to Jesus moment with the far left. We need to try to be more blunt, and have good policy, but run on slogans. Most importantly, we need to reshape the media ecosystem. For one, CNN and MSNBC and even TYT and many left wing outlets worked to elect Trump in order to keep their ratings up. Pollsters all lied to make it seem more competitive, news lied to make the left complacent and we gotta hold them accountable where it hurts. \n\nWe cannot win elections with all the media against us and it should be clear that just because MSNBC says Trump is bad to keep their base engaged, doesn't mean they aren't trying to help Trump win. \n\nFrom an individual perspective, the best thing you can do is dive into learning about the policies ran on and the policies the left has. Then we need to figure out messaging and go.", 'created': '2024-11-09 16:50:29', 'submission_id': '1gmzd2e'}
{'comment': 'Read Timothy Snyder, Yale historian, who has extensively studied eastern Europe in the 20th century, which includes a variety of fascists and their methodologies \n\nSome ideas from Timothy Snyder:\n\nVoting matters,\n\nCoalitions matter a great deal,\n\nDo not obey in advance,\n\nPay close attention to language/ do not accept their language/framing.\n\n*On Tyranny* is a book, small but mighty, that ought be read by all', 'created': '2024-11-09 19:27:44', 'submission_id': '1gmzd2e'}
{'comment': 'I’m still angry. I had skin in the game. I canvassed one or both of my days off in +100 degree heat for months. I was yelled at and even threatened with a gun but I kept going. I wasn’t doing it for a candidate, I did it for y’all. I’m beyond angry, I’m enraged.', 'created': '2024-11-09 20:28:45', 'submission_id': '1gmzd2e'}
{'comment': 'A Cohiba…. I see you’re a man of culture, Mr. Schwarzenegger', 'created': '2024-11-09 06:11:31', 'submission_id': '1gmzd2e'}
{'comment': 'Teach people about different news sources and how to validate their content. Ignorance and misinformation cost democracy dearly.', 'created': '2024-11-09 12:48:31', 'submission_id': '1gmzd2e'}
{'comment': 'Awesome shirt.', 'created': '2024-11-09 16:47:03', 'submission_id': '1gmzd2e'}
{'comment': 'Run for office, if you’re able, at any level', 'created': '2024-11-09 13:31:03', 'submission_id': '1gmzd2e'}
{'comment': "Genuinely caring is a great start but getting organized and staying organized is key. Also, we need to really start supporting more independent vs corporate lyrics owned media. The right and their ability to spread misinformation and disinformation are precise and calculated, meanwhile we've got CNN sanewashing and sanitizing their bullshit so much so that it helps the right. The searches for basic information POST ELECTION is a good indicator that the information dissemination and messaging needs to get a hell of a lot better and more engaging and maybe that starts at a more grassroots level.", 'created': '2024-11-09 13:39:55', 'submission_id': '1gmzd2e'}
{'comment': 'Quit whining about the next four years and start building a leadership team and platform that can win elections consistently in modern America.', 'created': '2024-11-09 16:24:33', 'submission_id': '1gmzd2e'}
{'comment': '[removed]', 'created': '2024-11-10 01:35:47', 'submission_id': '1gmzd2e'}
{'comment': "It sounds like a noble effort by why oh why post a photo of GOP ex-Gov. Arnold Schwarzenegger, one of the most unpopular figures among California Democrats? That is serious mixed messaging. We're aware that he is on a campaign to rehab his image nationwide, but he'll never succeed here, so please don't waste your time and energy on him. He was a #MeToo multiple offender in and out of office, he vetoed legalizing gay marriage after it passed in the legislature - twice, he was ran on getting rid of the state's $20 billion Enron debt but then ran up the debt even more. Like Trump this year, he was elected with a boost from Latino men, but then did nothing for that community, despite being the secret father of a Latino boy.", 'created': '2024-11-13 17:00:31', 'submission_id': '1gmzd2e'}
{'comment': 'If anyone knows what a Nazi Arnold does. His father was a Nazi soldier and extremely abusive!', 'created': '2024-11-09 05:20:18', 'submission_id': '1gmzd2e'}
{'comment': 'What if Arnold ran 👀', 'created': '2024-11-09 06:20:08', 'submission_id': '1gmzd2e'}
{'comment': 'Same. From Florida.', 'created': '2024-11-09 03:38:39', 'submission_id': '1gmzd2e'}
{'comment': 'Sorry to hear that for you guys', 'created': '2024-11-09 04:42:42', 'submission_id': '1gmzd2e'}
{'comment': 'So, same thing as before, gotcha', 'created': '2024-11-09 06:54:56', 'submission_id': '1gmzd2e'}
{'comment': None, 'created': '2024-11-09 08:53:22', 'submission_id': '1gmzd2e'}
{'comment': 'Yeah I genuinely think voting needs to be easier to do. Make an app and boom push notification to vote. The problem is not voter fraud but one party doesn’t want this to happen because they will never win.', 'created': '2024-11-09 05:38:07', 'submission_id': '1gmzd2e'}
{'comment': "ACLU or satanic temple. There will probably be a lot of groups cropping up to help people in the near future. I'd check local community boards, or even community based facebook feeds.", 'created': '2024-11-09 08:11:40', 'submission_id': '1gmzd2e'}
{'comment': 'I’m an athiest, this election strengthened that FACT. There is no god coming to help us, you are right we do need to organize. The thing is though non-religious and religious people do have empathy. We don’t have to say a thing to involve “God” just that hey, there are people that need our help over here come through, and they will come. At least I hope, this election really lost my trust in humanity', 'created': '2024-11-09 05:34:42', 'submission_id': '1gmzd2e'}
{'comment': 'Never X, waste of time. Threads and Facebook are possibly the better bets. Reddit is maybe the best place to organize though.', 'created': '2024-11-09 13:35:25', 'submission_id': '1gmzd2e'}
{'comment': 'Anything helps at this point.', 'created': '2024-11-09 04:10:15', 'submission_id': '1gmzd2e'}
{'comment': 'I’m not sure, I’m personally just interested in giving my time and energy but if others want to donate to that by all means. I haven’t really looked into it and not sure if it’s something to donate to because at the end of the day donating to a politician or political group is really sad. Billionaires donating millions to a politician instead of using that money to raise wages of employees in the companies they own', 'created': '2024-11-09 04:47:36', 'submission_id': '1gmzd2e'}
{'comment': "They're a PAC, so not sure what they can do at the moment.", 'created': '2024-11-09 08:13:03', 'submission_id': '1gmzd2e'}
{'comment': "I think he's asking about community activism. Which is great, but may be a bit too soon to find any concrete organizations or groups up and running. I imagine the ACLU, and satanic temple are already making plans.\n\nI think it's hard to plan otherwise, because who knows what, when, or how things can be done. Running a type of underground railroad to protect immigrants probably isn't practical anymore.", 'created': '2024-11-09 08:15:28', 'submission_id': '1gmzd2e'}
{'comment': "That's amazing!!", 'created': '2024-11-09 13:47:30', 'submission_id': '1gmzd2e'}
{'comment': 'Yes for media literacy!!!', 'created': '2024-11-10 02:17:04', 'submission_id': '1gmzd2e'}
{'comment': "He's ineligible and traditionally a Republican", 'created': '2024-11-10 02:16:46', 'submission_id': '1gmzd2e'}
{'comment': 'Same, Iowa', 'created': '2024-11-09 03:45:54', 'submission_id': '1gmzd2e'}
{'comment': 'Donate to conservation organizations. Planet Wild, Ocean Cleanup and Mossy Earth are three that I know about off the top of my head.', 'created': '2024-11-10 02:11:27', 'submission_id': '1gmzd2e'}
{'comment': "I'm a christian I'm in a blue state, though the rural area are red. Honestly, we have to find a way to agree to disagree and really work with people so that they understand the need for the separation of church and state. There are too many Christians who feel their religious beliefs apply to everyone and think the government should be no different but there are also far too many people who are not religious that equate people who are with being morons and that shuts the zealots down with any conversation you might be able to have. But I'll also say many of them need actual knowledge on the Bible's teachings because if they genuinely read or believed in it, the way they claim to, they'd realize their mission more closely aligns with the left than the right in many aspects. It just feels like actual, informed and civil discourse has to be the first step.", 'created': '2024-11-09 05:46:51', 'submission_id': '1gmzd2e'}
{'comment': 'Agreed!\xa0', 'created': '2024-11-09 05:38:38', 'submission_id': '1gmzd2e'}
{'comment': "We need something to replace Facebook. Zuckerberg can't be trusted. Discord is pretty great though.", 'created': '2024-11-10 02:14:42', 'submission_id': '1gmzd2e'}
{'comment': 'Will it keep taking money automatically or do I have to turn it off? And should I?', 'created': '2024-11-09 08:13:57', 'submission_id': '1gmzd2e'}
{'comment': 'as a guy, I low key hope all the girlfriends and wives of MAGA supporting men leave them, increasing the # of women in the dating pool who are looking for non-MAGA guys', 'created': '2024-11-09 05:32:54', 'submission_id': '1gmyko2'}
{'comment': 'This is genius.', 'created': '2024-11-09 19:45:29', 'submission_id': '1gmyk6f'}
{'comment': 'It’s absolutely an info war for real. The amount of absolutely 100% false propaganda that trump and musk and his whole team pushed this election has got to be historic at this point. \n\nFor good podcasts check out David Pakman he does a great job', 'created': '2024-11-09 03:08:24', 'submission_id': '1gmxx08'}
{'comment': "I've been saying this for a long time. It's not enough to have a great presidential and VP candidate, and even an ex-president, making great campaign speeches. Democrats need to finance and build powerful platforms to deliver news content in competition with the Republican media machine. How about, Taylor Swift? Beyoncé? Oprah? Mark Cuban? George Soros? George Clooney? Others?", 'created': '2024-11-09 03:23:28', 'submission_id': '1gmxx08'}
{'comment': "Also, they need to figure out something the Republicans already have.\n\nThere are 3 'economies,.\n\n1st for politicians, full of charts and graphs and projections.\n\n2nd for the rich. Stocks and bonds and net worths.\n\n3rd for the workers. 'Can I buy my kid as nice a present for Christmas this year as last' n good cases. 'Rent or food this month?' at the bottom.", 'created': '2024-11-09 02:59:12', 'submission_id': '1gmxx08'}
{'comment': "Considering how we have been caught unaware twice now in the Trump Era, I'd say we have an inpenetrable media bubble. \n\nWhat we need is a propaganda machine.", 'created': '2024-11-09 02:42:57', 'submission_id': '1gmxx08'}
{'comment': 'My mother keeps going on about Aurora CO. I keep explaining it’s been dealt with for months.', 'created': '2024-11-09 02:32:08', 'submission_id': '1gmxx08'}
{'comment': "I'm afraid certain social media algorithms will prevent these people from piercing the bubble of those who need to hear their messages. People only see what they want to see anymore.", 'created': '2024-11-09 02:38:07', 'submission_id': '1gmxx08'}
{'comment': 'And we need to stream those podcasts and content.', 'created': '2024-11-09 03:01:10', 'submission_id': '1gmxx08'}
{'comment': "We have streamers and media, just not at the level of the right wing. People like Steven Colbert and Jon Stewart and others could definitely make a podcast, they're very likeable and generally entertaining.", 'created': '2024-11-09 03:25:45', 'submission_id': '1gmxx08'}
{'comment': 'Every Dem needs to be using every means to tell Americans every day that the #TrumpCrash is coming. Every day for the next two years. Fit it into every statements, every interview, every appearance.\n\nIf they’re asked about a local sports team, they need to say, “Well, they’re doing okay this season. amidst the #TrumpCrash.”\n\nEveryone all the time nonstop.', 'created': '2024-11-09 03:46:28', 'submission_id': '1gmxx08'}
{'comment': ' The Conservative Party, its pundits, media streams, podcasters, influencers, politicians, and more have been engaged in a culture war with “the left” “wokeness” w/e you want to call it (us) since 2016.\n\nRegardless of if what we think of our fellow citizens. “maybe it’s not that bad.” “I don’t think the other side is evil.” “I refuse to participate in a made up culture war.” It’s happening. Every time you see/hear an alpha male, red pill, MAGA, spewing their hate they are engaging us.\n\nWe’ve refused to answer. We’ve taken the high road and we’ve made our lofty enlightened ideals clear, and it’s cost us an amount that will only be measured by time.\n\nThe Right has controlled the narrative on what is to be masculine. The Right has controlled the narrative on what it means to be moral. The Right has controlled the narrative on what it means to successful. Are you a strong, independent, morally just, hard working American? Yes? Oh well you simply MUST be a conservative.\n\nTHIS is the battle. ^ THIS is why we lost, and will continue to lose. They have ONE strong base. We HAVE to cut into this to win. We HAVE to take these narratives back. We used to be a blue collar, union strong, working class party that stands up to big business,and I know that we still are but the common American has forgotten it. We are the morally superior party bc we are the party of empathy and understanding for the less fortunate, but the common American has forgotten it. If Jesus walked among us today he would be a DEMOCRAT..\n\nWe are a big tent party that encompasses and encourages the melting pot that America is. We have truth, facts, and science behind us. If you took the time read this. Take. The. Narrative. Back. “Out of many, one”', 'created': '2024-11-09 03:49:20', 'submission_id': '1gmxx08'}
{'comment': 'Kind of. I think the Democrats must engage in something I\'m calling "realpedagogic". They have to pepper their language with actual pedagogy that teaches, in situ, how to think. You can get the information to the cherry pickers, but you can\'t make them read or process it. They are, above all, cherry pickers. Therefore, the pedagogic "moment" or thing that has to be in the language of the Left all over the place is raising concerns specifically about cherry picking.\n\nThis might sound like it\'s not feasible. But Obama did such a pedagogic thing when he talked about "false choices", saying the Republicans were putting up a "false choice" about health care coverage and other things. To introduce the idea of the false choice as such is not something specific to health care; it\'s about decision making, choices and thinking. And he used it, a lot. It was sufficiently abbreviated, and sufficiently simple, to float right in the flow of his discourse to the people. \n\nLikewise, someone like Harris could have peppered her language with a lot of talk about cherry picking. Others could do so. There should be an anti-cherry picking movement. It should start to be everywhere, just like cherry picking is everywhere on the Right, in the Q rabbit holes and pasted on the walls of mass shooters\' basements. \n\nThere is no way around it; cherry picking is an irreducible thing that must be named as such. It involves saying the words *cherry picking*, and pointing out where and how it is happening. It is possible to teach people how to think, and like it or not, it is absolutely necessary.\n\nIt is possible to enter into dialogue with people on the Right without announcing your alignment/tribe. Rather, you can just say that you are upset at how much cherry picking is going on. They will likely agree. The conversation can then proceed. Focusing on cherry picking rather than camp frees people up to meet in a different way and can open the door to getting them on board with what the Democrats really are about, because...they Democrats are, a bottom, the anti-cherry picking party.', 'created': '2024-11-09 03:49:33', 'submission_id': '1gmxx08'}
{'comment': "Yes, but how? For decades before social media they said we need to counter conservative talk radio. We never figured that out. Air America was a huge team of heavy hitters that are still around today but nobody tuned in. Now they say the same but with new forms of technology. Part of the problem is these are low information, high conspiracy people that flock to these podcasts and these bro show circle jerks. They fall for god damn near anything if it fits their world view. I'm just not sure we're a few liberal influencers and podcasters away from capturing an audience the way they talk like we should.", 'created': '2024-11-09 03:13:30', 'submission_id': '1gmxx08'}
{'comment': 'Been saying this for 10 years', 'created': '2024-11-09 03:25:14', 'submission_id': '1gmxx08'}
{'comment': 'As much as I agree, it is also the messaging. \n\nTrump "I will fix it"\n\nDemocrats we have a multiprong approach to fix the problems, it is working, be patient.\n\nYou can see who won.', 'created': '2024-11-09 04:05:47', 'submission_id': '1gmxx08'}
{'comment': "I've always wondered...why don't left wing billionaires buy up media like the right does?", 'created': '2024-11-09 04:47:54', 'submission_id': '1gmxx08'}
{'comment': "Billionaires give right wing podcasters, streamers, etc money.\n\nBillionaires don't give left wing podcasters, streamers, etc money.", 'created': '2024-11-09 04:40:38', 'submission_id': '1gmxx08'}
{'comment': 'Is this really the strategy lol “another podcast that’ll do it!” \n\nMaybe the democrats should start devising policies that really connect with people, and should start talking in a straightforward way, no more jargon and meaningless rhetoric that manages to use a lot of words without saying anything at all', 'created': '2024-11-09 07:35:11', 'submission_id': '1gmxx08'}
{'comment': "Also, it isn't up to our politicians to figure this out. Anyone well informed enough can start a podcast with just their phone.", 'created': '2024-11-09 03:05:16', 'submission_id': '1gmxx08'}
{'comment': '“We need a media apparatus that can only exist with corrupt billionaire support.”', 'created': '2024-11-09 03:40:48', 'submission_id': '1gmxx08'}
{'comment': "Come friends let's share the people we watch on YouTube or listen to on Spotify. \n\nI listen to David Packman\nThe Medias Touch project \nRing of fire", 'created': '2024-11-09 03:55:42', 'submission_id': '1gmxx08'}
{'comment': 'I may not like it and many of you don’t either, but this is how it is now. It’s not about information. It’s about messaging. The GOP has a message that resonates with people and the Dems come off as liberal elitists.', 'created': '2024-11-09 04:38:26', 'submission_id': '1gmxx08'}
{'comment': "Not to self-advertise, but I just started a YouTube channel not too long ago with the goal of introducing critical thinking tools, addressing hurtful pseudoscience, and politics. I ultimately have the goal of changing conservative minds and getting us away from a maga theocracy. I was a maga once, and I changed my mind. So can they, with the right push. For me it was deconversion, but I remember the steps and the things that helped me.\n\nHere's my channel: \nhttps://youtube.com/@bonihil?feature=shared", 'created': '2024-11-09 11:44:13', 'submission_id': '1gmxx08'}
{'comment': 'I don\'t see how this will work. We need a candidate who appeals to people at an emotional level. We need a candidate to really emphasize that they know what we\'re going through, that making the economy better is an uphill battle, but they can\'t just wave a magic wand. People getting their news from TikTok and podcasts already have short attention spans and are uninformed. Are people going to scroll through TikToks saying "Here is my policy on housing. I will make it harder for real estate conglomerates to buy houses in bulk, and instead incentivize businesses to build affordable housing"? Gen Z\'ers zone out when they hear too much about specific policies. They\'re more entertained by culture war bullshit, rage bait, and conspiracy theories. We also need to make media literacy and spotting disinformation a core part of education if we want to combat the right wing propaganda machine. 4th graders in Sweden can spot disinformation better than American adults.', 'created': '2024-11-09 03:38:13', 'submission_id': '1gmxx08'}
{'comment': 'Free speech is money and money can say whatever it wants.', 'created': '2024-11-09 03:47:24', 'submission_id': '1gmxx08'}
{'comment': 'This one thousand times over', 'created': '2024-11-09 03:49:34', 'submission_id': '1gmxx08'}
{'comment': 'I think Jason and Travis Kelce should dip their toes into this type of thing on their New Heights pod.', 'created': '2024-11-09 05:54:52', 'submission_id': '1gmxx08'}
{'comment': "Democracy is over and once again you're fighting the last election.", 'created': '2024-11-09 07:31:01', 'submission_id': '1gmxx08'}
{'comment': 'There\'s some truth to this but the really big problem for Democrats is that a huge percent of religious people vote for Republican because they believe Jesus is telling them to. For example in that governor\'s race in NC, the "black Nazi" Mark Robinson engaged in all manner of tomfoolery to the point that his election was in shambles, yet he still got 40% of the vote. They often have such a high floor and this legitimately makes it harder for Democrats to engage with people and win. Everything about this is threatening democracy and yet many Democrats still don\'t seem to want to talk about it.', 'created': '2024-11-09 07:54:24', 'submission_id': '1gmxx08'}
{'comment': 'Democrats are not going to win elections again until they call republicans out to their face in congress.\n\nTill the run progressive , populist candidates even when corporate interests do not like them\n\nTill they have rebuilt the DNC to not stop politicians the Bernie from winning primaries.', 'created': '2024-11-09 12:52:30', 'submission_id': '1gmxx08'}
{'comment': "The saying... you can lead a horse to water, but you can't make them drink. Republicans have an advantage in the media and social, not just due to having the channels. They have an advantage because their voters are happy to drink and carry the water for them and spread it, talk it, post it, etc. Democratic voters are just not like that. Biden was the most progressive president in ages. Did that matter to lefties? Not really they were just as likely to bash Biden as they were Trump.", 'created': '2024-11-09 18:39:57', 'submission_id': '1gmxx08'}
{'comment': 'Also small government. Since Bill Clinton the Democrats have all but abandoned Government thats not Senate House or President. \n\nThey let the right wing dominate the local governments all the governorships all the mayors most are right wing cause the gop went aggressive on small government bodies', 'created': '2024-11-09 19:50:44', 'submission_id': '1gmxx08'}
{'comment': 'And maybe uhh, not suicidal loud mouths like Hasan?', 'created': '2024-11-09 03:04:49', 'submission_id': '1gmxx08'}
{'comment': 'Embrace misinformation. Use AI tools to just flood everything. Have it make up shit and see what sticks. Even if no one knows what to believe anymore, at least it will reset the playing field.', 'created': '2024-11-09 03:24:10', 'submission_id': '1gmxx08'}
{'comment': 'I\'ll take things that won\'t work because Trump voters are cultists who willingly choose to believe lies for $500, Alex\n\nMan, the sooner you all accept that Trump getting elected was not Democrats\' fault or anyone else\'s but his voters\', the better off you\'ll be.\n\nY\'all sound like an abused housewife sitting on the porch, nursing bruises on her face, saying "What did I do?"', 'created': '2024-11-09 03:14:04', 'submission_id': '1gmxx08'}
{'comment': "Hahaha we are about to be 1930s Germany or Putin's Russia, I expect any media outlet critical of the president to have its executives arrested for treason. Absolutely no fucking guardrails this time and the people behind project 2025 are explicit about imposing complete control and not tolerating any dissent.\n\nEven if critical media survives I expect Orban style sham elections or a state of emergency to be declared and no elections at all.\n\nWe. Are. FUCKED.", 'created': '2024-11-09 07:17:08', 'submission_id': '1gmxx08'}
{'comment': 'Yup yup yup', 'created': '2024-11-09 03:40:35', 'submission_id': '1gmxx08'}
{'comment': 'We will win the next election. The orange clown will fuck up immediately.', 'created': '2024-11-09 04:13:00', 'submission_id': '1gmxx08'}
{'comment': 'well crime is already going up (see cotton picking and your body my choice) and inflation will skyrocket next year.', 'created': '2024-11-09 04:21:31', 'submission_id': '1gmxx08'}
{'comment': "I mean they are out there, the problem is they aren't as popular...and you can't really force popularity.", 'created': '2024-11-09 04:23:15', 'submission_id': '1gmxx08'}
{'comment': 'Something like Fox entertainment channel, but for Dems.', 'created': '2024-11-09 05:23:05', 'submission_id': '1gmxx08'}
{'comment': 'But not just liberal egghead elitists', 'created': '2024-11-09 05:38:51', 'submission_id': '1gmxx08'}
{'comment': 'In Wisconsin Civic Media is broadcasting across the state on radio and doing podcasts and social media.', 'created': '2024-11-09 05:39:36', 'submission_id': '1gmxx08'}
{'comment': 'Without enough rural voters or working class voters, democrats can kiss victory goodbye for a long time.\n\nJust relying on urban elite alone doesn’t hold up. And now we see some of CA, NY turning red this time - which might be educated folks wanting to become conservative.', 'created': '2024-11-09 05:51:21', 'submission_id': '1gmxx08'}
{'comment': 'This true, but it is going to be an incredibly difficult task. The right wing has many decades of a head start on shaping the media landscape of the country and unfortunately they have many of the richest people who can bankroll such endeavors in their side. This doesn’t mean we should give up, but it does mean we need to be determined, patient, and unrelenting.', 'created': '2024-11-09 06:32:20', 'submission_id': '1gmxx08'}
{'comment': 'I am free. Let’s go!\n\n', 'created': '2024-11-09 06:51:21', 'submission_id': '1gmxx08'}
{'comment': 'So the answer is to... stop letting conservatives from either voting or running for office. Period!', 'created': '2024-11-09 08:48:48', 'submission_id': '1gmxx08'}
{'comment': None, 'created': '2024-11-09 10:34:00', 'submission_id': '1gmxx08'}
{'comment': 'The only reason Elon Musk bought twitter is to make it a propoganda channel. \nIt doesn’t matter that it is losing money. \nMark my words. X will merge with Trump’s Truth Social crap.', 'created': '2024-11-09 13:43:33', 'submission_id': '1gmxx08'}
{'comment': 'Sadly, information will not defeat disinformation. It simply won’t. Emotion — fear and anger — is too strong to overcome it with facts and logic. \n\nWe need to stop the disinformation. I don’t have any better suggestions, I’m sorry. I know we’re supposed to come with good ideas, but I got nothin’.', 'created': '2024-11-09 13:52:56', 'submission_id': '1gmxx08'}
{'comment': 'This', 'created': '2024-11-09 14:03:09', 'submission_id': '1gmxx08'}
{'comment': 'I agree. Why was Harris doing The View and Howard Stern instead of podcasts?', 'created': '2024-11-09 14:05:28', 'submission_id': '1gmxx08'}
{'comment': 'For real. A lot of conservative pundits will watch 24-7 Fox News or even worse, newsmax etc. They won’t change the channel. You have to give them the reason to.', 'created': '2024-11-09 14:06:36', 'submission_id': '1gmxx08'}
{'comment': 'Yes we do get on it everyone!!!', 'created': '2024-11-09 15:40:30', 'submission_id': '1gmxx08'}
{'comment': 'The republicans embrace the far right so they win. Democrats distance themselves from the far left so they loose.\n\nYou can’t win the social info war if you want to play it safe but the dems are afraid of communist & socialist.', 'created': '2024-11-09 16:25:29', 'submission_id': '1gmxx08'}
{'comment': 'This is what I’ve been saying.', 'created': '2024-11-09 16:56:29', 'submission_id': '1gmxx08'}
{'comment': 'Exactly!', 'created': '2024-11-09 17:27:16', 'submission_id': '1gmxx08'}
{'comment': 'https://meidasnews.com/news/the-right-supports-a-network-of-conferences-podcasters-rallies-the-left-has-msnbc', 'created': '2024-11-09 17:39:29', 'submission_id': '1gmxx08'}
{'comment': 'The American electorate is stupid\n\n\nYou need to treat them like an 8-yr old ADHD kid borrowing his parents phone. \n\n\nMark Cuban needs to buy Fox News. \n\n\nWe need thousands of bro podcasts that do nothing but smear the liars\n\n\nWe need xitter and FB to shut down, or if not, then pay 10,000+ people to just blast stuff 24/7.\n\n\n\nNo one from California - Midwest only', 'created': '2024-11-09 17:50:22', 'submission_id': '1gmxx08'}
{'comment': "The right has conservative radio hosts. The left does not unless it's a podcast. Could be wrong", 'created': '2024-11-09 19:44:29', 'submission_id': '1gmxx08'}
{'comment': 'Going to need to get wealthy liberals to start creating social media sites. The Republicans won because they have a massive media machine and it only grew during Biden’s term.\xa0', 'created': '2024-11-09 19:56:14', 'submission_id': '1gmxx08'}
{'comment': "I mean, we had BreadTube but it's not very popular with the masses.", 'created': '2024-11-09 20:31:14', 'submission_id': '1gmxx08'}
{'comment': 'And money to compete with Elons $120 million donation. Sell your Tesla stock and stop buying Tesla cars.', 'created': '2024-11-09 20:35:54', 'submission_id': '1gmxx08'}
{'comment': "This isn't wrong. And we don't even need to tell the truth any more. We just need to scare the right people. Seriously, we need to point out all the faults of the Republicans, make sure everyone feels miserable, and blame the right for everything.", 'created': '2024-11-09 23:14:47', 'submission_id': '1gmxx08'}
{'comment': 'Crooked media is trying to do exactly that', 'created': '2024-11-09 23:26:04', 'submission_id': '1gmxx08'}
{'comment': "It does not need to pierce the right-wing media system. It just needs to flow over it and cover it like sticky tar where they can't dig their way out.\n\nIt's all about crowding out and/or smothering the other side out of view. Once you do, you will start winning and keep winning, forever. All you need to make that happen is to make sure you grab every new generation of citizens in your net.\n\nThat is what FOX news did to many people who are already retired or close to it, total audience capture. Their kids said only way to shake them off from it was to make it so they cannot watch FOX, and start watching some other less extreme cable channel. Once they watch other content for few months, their minds magically change.", 'created': '2024-11-10 00:43:24', 'submission_id': '1gmxx08'}
{'comment': "This this this this a million times this.\n\n\nThis and education\n\n\nHow. Can. You. Have. People. Who. Don't. Know. What. Tarrifs. Are.", 'created': '2024-11-10 02:03:24', 'submission_id': '1gmxx08'}
{'comment': "Personally, the streamer Destiny is basically a conservative-turned-liberal and I think he's perfect for fighting fire with fire. He, unfortunately, uses incendiary and inflammatory language, but getting into the mud with these MAGA losers might be the best we can do.", 'created': '2024-11-10 02:36:00', 'submission_id': '1gmxx08'}
{'comment': 'Yes. This is the answer. Trump and the GOP are only possible with a brainwashed population. We need to stop pretending a lot of people are not brainwashed.', 'created': '2024-11-11 02:44:02', 'submission_id': '1gmxx08'}
{'comment': 'They need to be authentic and come up with their own game plan and strategies based on a solid plan. It may include non traditional communication but simply emulating what maga is doing won’t foot the bill and it’s not a winning strategy.', 'created': '2024-11-09 03:41:49', 'submission_id': '1gmxx08'}
{'comment': 'It’s an info war and Biden chose not to fight.', 'created': '2024-11-09 03:45:25', 'submission_id': '1gmxx08'}
{'comment': "Democrat messaging is boring. It's hard to get people excited to listen to it. The comedians can be good at it, but it's reactionary to what the GOP is doing, so not really extolling democratic ideology directly.\n\nThe dems do need to do better, but instead of looking at novel approached on how to reach the electorate, perhaps a first step would be to learn how to address the electorate. Stop being dismissive, and learn how to relate to them, and relate your policies to them as individuals. Without fail, regardless of what demographic is said to have been lost, it's always been they can't connect with people. You have a product people want, now you just need to sell it to them. \n\nDo, that, then figure out how to get the message out.\n\nPeople aren't going to make an extra effort anymore to try and hear you, especially when the other side is telling them what they want to hear.", 'created': '2024-11-09 04:10:00', 'submission_id': '1gmxx08'}
{'comment': 'Pakman, Luke Beasley, Pod Save America', 'created': '2024-11-09 04:32:20', 'submission_id': '1gmxx08'}
{'comment': "We had Keith Olbermann. He's kept his podcast going for at least two years now, maybe three. Sadly, he's having to cut back to two episodes a week now. He's wearing himself out.", 'created': '2024-11-09 04:00:25', 'submission_id': '1gmxx08'}
{'comment': 'The problem isn’t just misinformation, it’s misinformation republicans want to hear, demonizing an “outside” group. The fix for this is of course debunking it, but people are lazy, they don’t want to listen to someone prove something is or isn’t true, especially if it’s going against what they want to believe.', 'created': '2024-11-09 04:54:47', 'submission_id': '1gmxx08'}
{'comment': 'A lot of Democrats are too “facts and figures” and aren’t connecting with people on an emotional level. \n\nI think that explains a lot of the education gap and the rise of populism. Dems have lost their ability to communicate and connect.', 'created': '2024-11-09 03:50:24', 'submission_id': '1gmxx08'}
{'comment': '>3rd for the workers. \'Can I buy my kid as nice a present for Christmas this year as last\' n good cases. \'Rent or food this month?\' at the bottom.\n\nLord. The Democrats have absolutely got to get a handle on this lesson and learn it once and for all.\n\n"The fundamentals of our economy are strong." Remember when John McCain said that? Yeah he lost that fucking election!', 'created': '2024-11-09 04:58:21', 'submission_id': '1gmxx08'}
{'comment': 'Yes. A GIANT propaganda machine.', 'created': '2024-11-09 04:00:36', 'submission_id': '1gmxx08'}
{'comment': 'Were we really unaware or did we just ignore all the bad polls?', 'created': '2024-11-09 02:59:23', 'submission_id': '1gmxx08'}
{'comment': 'That is essentially what is being called for.', 'created': '2024-11-09 03:24:30', 'submission_id': '1gmxx08'}
{'comment': 'Yes, your algorithm is based off of what YOU want to see. I thought kamala was going to win because I surrounded my self with what I wanted to', 'created': '2024-11-09 03:26:52', 'submission_id': '1gmxx08'}
{'comment': 'There’s a couple political tiktok-ers who are liberal, one with 2M views. He does lives debating conservatives. I was looking for a new podcast the other day so I checked the top charts and was shocked conservatives have 4 of the top 10 spots. We def don’t have the boots on the ground dissemination of info they have.', 'created': '2024-11-09 06:46:45', 'submission_id': '1gmxx08'}
{'comment': 'Jon Stewart already has one', 'created': '2024-11-09 06:47:22', 'submission_id': '1gmxx08'}
{'comment': 'It’s the disconnected voters who turn elections. The ones who don’t listen to political podcasts. Everyone else has made up their minds. \n\nThere was very little movement in the voters between 2020 and 2024, except in the Latino and Asian communities. That was enough to tip all the swing states. I don’t know what the media environment is there, but something happened that we missed.', 'created': '2024-11-09 03:53:42', 'submission_id': '1gmxx08'}
{'comment': "I'm not sure they had a well-formed world view until it was spoon fed to them. That's why they say the exact same thing, which was told to them that morning, rather than having the same world view but expressed in individual ways.", 'created': '2024-11-09 03:26:35', 'submission_id': '1gmxx08'}
{'comment': 'T: "I will fix it" (paired with \' are you better off than 4 years ago\')\n\nShould have been met with: "we are fixing it. Are you better off than 2 years ago"', 'created': '2024-11-09 09:48:42', 'submission_id': '1gmxx08'}
{'comment': 'WHAT left wing billionaires? Can you name just five?', 'created': '2024-11-09 07:36:19', 'submission_id': '1gmxx08'}
{'comment': 'Because we can’t control what republicans do but we can look inward and figure out how to reach voters more effectively. Harris did not run a perfect campaign. She did an amazing job, but to sit and write off half the country as extremists is unproductive. Something was missed and things like better media stories would absolutely help counter misinformation. Not all trump voters are cult MAGA people, lumping them together and alienating potential voters will be damaging.', 'created': '2024-11-09 06:50:13', 'submission_id': '1gmxx08'}
{'comment': "Neither Germany nor Russia had a history of democracy or rule of law before they were taken over. We do. I'm not saying it's impossible, but it's a much higher bar here.", 'created': '2024-11-10 17:44:41', 'submission_id': '1gmxx08'}
{'comment': "The current economy is actually really strong. I think he will get to ride Biden's success for a while until his chaotic mistakes mess it up like he did last time.", 'created': '2024-11-09 04:27:49', 'submission_id': '1gmxx08'}
{'comment': "100%, it's an uphill battle against the right wing media ecosystem, but Biden and Democrats in general didn't even try this cycle. They didn't try to sell their accomplishments in the context of a global pandemic, they simply claimed things were fine.", 'created': '2024-11-09 04:00:24', 'submission_id': '1gmxx08'}
{'comment': "Not just Biden. It's not his responsibility to shoulder this alone. We could have done this ourselves.", 'created': '2024-11-09 05:40:56', 'submission_id': '1gmxx08'}
{'comment': "Biden chose not to fight? Does that mean he chose not to spread lies and misinformation? Should we be pissed at a man that behaved admirably? I mean fuck that! Let's be smarter. Because we are..\n\n*edit spelling", 'created': '2024-11-09 09:14:04', 'submission_id': '1gmxx08'}
{'comment': 'I heard Biden wasn’t the candidate.', 'created': '2024-11-09 17:04:11', 'submission_id': '1gmxx08'}
{'comment': "Hello from Georgia. Venture up into North Georgia or into the far Southern parts of the state where we grow delicious peaches onions peanuts and pecans. Go to any county fair, wine festival, or so on. You're guaranteed to see a county Republican party tent or table, but there won't be a Democratic anything in sight.", 'created': '2024-11-09 04:36:53', 'submission_id': '1gmxx08'}
{'comment': 'This. People are more emotional than rational. We need to make our content more emotionally engaging', 'created': '2024-11-09 05:38:37', 'submission_id': '1gmxx08'}
{'comment': 'I wish I had more upvotes to give you.\n\nThere’s a reason why Democrats are being labeled as elitists…party does too much talking to people and not enough talking with (meaning also listening to) people.', 'created': '2024-11-09 04:21:24', 'submission_id': '1gmxx08'}
{'comment': 'This is the problem. the Dems kept saying the economy is doing great! While average people kept saying my grocery bill is too high I don’t care about stock prices', 'created': '2024-11-09 03:54:09', 'submission_id': '1gmxx08'}
{'comment': 'Kinda like a Dem version of Fox entertainment channel.', 'created': '2024-11-09 05:19:19', 'submission_id': '1gmxx08'}
{'comment': 'I think too many people assumed that the belief in an objective reality was self-enforcing. Guess you gotta propaganda it up after all.', 'created': '2024-11-09 03:37:06', 'submission_id': '1gmxx08'}
{'comment': 'Ugh not actually true.\n\nI keep getting suggested far right shit on Instagram. I keep marking them "not interested" and blocking them but nothing. I still get trad wife and forced birth shit.', 'created': '2024-11-09 05:43:39', 'submission_id': '1gmxx08'}
{'comment': 'Ugh so true', 'created': '2024-11-09 03:55:04', 'submission_id': '1gmxx08'}
{'comment': "I get that there are videos with over 2m views, but those views are mostly from a liberal leaning crowd because they're more likely to see those videos based on their likes and dislikes. [That is how the algorithms work now.](https://youtu.be/RXiLAn3vUKg?si=cFvBzUrSqZ4DAvil) (yes, that links from the theorist guy but in this case Matthew Patrick has actually been a social media consultant for years and that video has facts)\n\nI can't tell you how many times I've heard Trump supporters claim Kamala never talked about her policies when Democrats know she did. It's because she might have said it on platforms that unless you're left leaning, it's not right in front of your face unless you actively look for it. If Democrats really want to reach out to conservatives and undecided people they will have to do interviews with conservative or neutral leaning creators. It will be incredibly hard to land a spot on something like that, but that's what will have to happen.", 'created': '2024-11-09 16:18:08', 'submission_id': '1gmxx08'}
{'comment': 'Mark Cuban, Reed hastings, Mike Bloomberg, Magic Johnson, Tyler Perry, George soros, Reid Hoffman, Bill gates, Melinda gates, just to name a few, not every billionaire is some jackass elon musk clone', 'created': '2024-11-09 08:28:17', 'submission_id': '1gmxx08'}
{'comment': "it's doing well but I think it's still fragile. when he starts messing with it it will crash way faster than in the past. especially with the extreme stuff he plans to do. I give it 6 months to be in a freefall.", 'created': '2024-11-09 04:31:02', 'submission_id': '1gmxx08'}
{'comment': 'The Harris campaign was the first Democrat President campaign I’ve seen to actively engage social media in the right way, especially Tim Walz. It was too little, too late for this election cycle, but now we have four years to get it working. And, I don’t think the goal is to reach the right, it’s to galvanize the left and get everybody rowing in the same direction. \n\nAnd I can’t believe I’m saying this, but if the other side is willing to exaggerate and lie and cheat to get the win, we straight up have to be willing to do that too. We cant be “morally” above doing that, because those are on longer the rules of the game. They clearly aren’t getting punished for doing it, and when we don’t, we are fighting with one hand behind our back. History and laws are written by the victors, and we need to win if we ever want to help our cause.\n\nMainstream, social, and influencer media on the left should be in a constant state of outrage towards right wing leaders who are hurting their constituents/employees/etc. Also, we should not directly outrage at large voting blocks like men, women, white people, etc. That sows division and makes large numbers of voters feel excluded from our movement. The great thing about targeting the top 1%, is they can only be up to 1% of the total voting block.', 'created': '2024-11-09 04:21:25', 'submission_id': '1gmxx08'}
{'comment': 'For most of his career, Joe Biden could just shake the hands of every constituent in Delaware over a long weekend. \n\nGreat at retail politics, terrible at communication. \n\nThe DNC seems to be more interested in raising money than getting votes. I saw SO many requests for donations on my timeline and NOTHING on message. They had celebrities. They won media cycles. But that didn’t turn into votes.', 'created': '2024-11-09 04:07:11', 'submission_id': '1gmxx08'}
{'comment': 'I agree. I think we need to let candidates be above it. I think some grassroots dark money group(s) should play that role, 365 days a year, every year, until facts matter again.', 'created': '2024-11-09 16:31:07', 'submission_id': '1gmxx08'}
{'comment': "I grew up in NC, and I moved to Ohio 8 years ago. I did voter registration in the area which went to a lot of county fairs, in the region, and I can say the same is true here in the more rural NW Ohio area.\n\nI grew up in central NC, and it was more liberal, with a healthy dose of old school conservative that wasn't the pre tea party age. NC has been having some rocky transitions the past few years though.\n\nI think on my ballot this year, lots of offices had only one republican candidate. I didn't vote for them, in a vain hope that dems will see there are dems in the area, but we aren't being given a choice.", 'created': '2024-11-09 04:42:21', 'submission_id': '1gmxx08'}
{'comment': None, 'created': '2024-11-09 04:36:40', 'submission_id': '1gmxx08'}
{'comment': "> party does too much talking to people and not enough talking with (meaning also listening to) people.\n\nthat's fucking horse shit\n\n*points at Tim Walz*", 'created': '2024-11-09 04:41:58', 'submission_id': '1gmxx08'}
{'comment': '“The economy sucks, vote for us” isn’t a winning message. I’m sure there was something better, though. \n\nOverall, Biden’s fatal flaw was not talking to Americans much at all. A lot of opportunities were wasted.', 'created': '2024-11-09 03:57:48', 'submission_id': '1gmxx08'}
{'comment': 'Yes, plus a whole lot of individuals and companies like Turning Point USA to amplify and spread the messages. We are decades behind. 😧', 'created': '2024-11-09 06:36:35', 'submission_id': '1gmxx08'}
{'comment': 'Sorry I meant 2M followers! Either way we’re not taking advantage of media we do have access to. Someone here suggested Jon Stewart start a podcast. HE HAS ONE. Our own party isn’t supporting the media we have', 'created': '2024-11-09 17:25:44', 'submission_id': '1gmxx08'}
{'comment': "don't forget the Dark Brandon meme'ing by Biden's team\n\n/u/JimBeam823 and /u/jgiovagn are just full of shit.", 'created': '2024-11-09 04:41:17', 'submission_id': '1gmxx08'}
{'comment': '100% agree, except I’d say we need to get something together in 2 years for the midterms', 'created': '2024-11-09 04:32:20', 'submission_id': '1gmxx08'}
{'comment': "I agree we should have someone pointing outrage towards the right, but that can't be all we do. We need a good story for who we are and what we want. Fortunately we have one to tell, unlike the Republicans who need to lie. We haven't even attempted to argue for ourselves, and have let Republicans frame virtually all issues. Abortion is the only thing I've seen Democrats make good arguments for, and it took 10s of millions of people losing rights to get to that point. There are legitimate reasons to support the Democrats and pay attention to the government, and we should promote them.", 'created': '2024-11-09 04:35:56', 'submission_id': '1gmxx08'}
{'comment': "This is really the truth and it's sad.", 'created': '2024-11-09 13:54:58', 'submission_id': '1gmxx08'}
{'comment': 'I understand what you’re saying and I don’t disagree, but the initial messaging saying “we’re recovering now” doesn’t fly with people whose wages have stagnated. And maybe nothing would, but the reactionary people you’re describing have 5 second attention spans and want to be told something within 5 seconds…or beat over the head constantly until it becomes the truth. Our messaging failed to get through to them.\n\nBut, it is what it is…we continue to fight on and hope for the best. The thing is: going back 100 years ago and looking at the US then (right before the Depression) and what it is now…and there aren’t many differences. One of the biggest things that set the Depression into overdrive was the Smoot-Hawley Act…which Hoover signed and raised tariffs to 16% causing other countries to raise their tariffs.\n\nBe careful with your money these next four years.', 'created': '2024-11-09 21:30:06', 'submission_id': '1gmxx08'}
{'comment': 'Are you saying they should have run him as President? If so, I agree.\n\nBut, I live in Texas and it’s tough being a Democrat when the statewide candidates aren’t doing what Walz was doing…or even what Beto tried to do…or even get into the cities and talk to the base. Our Senate candidate tried to act like a moderate (he wasn’t), didn’t bother to campaign until the last few months other then running commercials over and over and putting out a YouTube video every once in awhile. No one knew him…inner-city Houston didn’t even bother with him…and he didn’t help out down on the border and may have actually lost us votes. Dude got wiped out by Ted Cruz… the guy even the right holds their noses about when they click his name.\n\nAnd, that’s fine, Texas wasn’t really in play, but then, why hold a big rally in Houston the week before the election when no one really did anything in that area before? Why divert money to the state (constant reports about it) if all you’re going to mainly do is run adverts? Why no real outreach to the Valley which went heavily right, to include districts that haven’t gone right in 100+ years? \n\nJust a shitshow down here.', 'created': '2024-11-09 21:18:37', 'submission_id': '1gmxx08'}
{'comment': 'No but they could have made a bigger deal about inflation being a worldwide issue that the US handled better than others. That they have plans to continue to dig us out of the hole the pandemic caused.', 'created': '2024-11-09 04:03:57', 'submission_id': '1gmxx08'}
{'comment': "It doesn't matter if it's 2 million followers or views. We need someone who can penetrate people's media algorithm bubble, because as I said people only see what they want to see. Jon Stewart may be one of the very few people who can do it.", 'created': '2024-11-09 19:12:44', 'submission_id': '1gmxx08'}
{'comment': "Well yes he should run\n\nbut also he's literally a union champ, grew up working class and became a teacher.\n\npeople claiming we don't talk and listen are just full of horseshit and Walz is prime evidence that the claim is horseshit", 'created': '2024-11-09 22:53:35', 'submission_id': '1gmxx08'}
{'comment': 'Some do, not enough do', 'created': '2024-11-10 02:24:02', 'submission_id': '1gmxx08'}
{'comment': 'Dude, what rock have you been living under?\n\nBiden became the first US president - sitting or retired - to walk a union picket line with the strikers.\n\nThe Biden administration created more manufacturing jobs in the last 4 years than any 4 year period *since bill clinton was president*.\n\nHarris included raising the minimum wage, building more housing to bring down prices, down payment assistance, strengthening unions, etc.\n\nhttps://i.imgur.com/98pxT0B.jpg\n\nhttps://www.forbes.com/sites/stuartanderson/2024/07/21/employment-grew-more-under-biden-and-immigrants-did-not-get-most-jobs/\n\nhttps://eig.org/left-behind-places/\n\nhttps://www.economist.com/briefing/2024/08/08/americas-left-behind-are-doing-better-than-ever\n\nhttps://www.commerce.gov/news/blog/2024/10/manufacturing-booms-thanks-biden-harris-administration-investments\n\n**the third way is dead, Joe Biden killed it**\n\nthis "hurrdurr dems abandoned the working class" is just more of the *Same fucking disinformation that claims they have moved rightward over the last 40 years*. which is known to be factually incorrect. https://i.imgur.com/uFg9xX7.png', 'created': '2024-11-10 03:05:52', 'submission_id': '1gmxx08'}
{'comment': 'We have a problem ignoring what people want. We lost because people were worried about inflation and immigration. We need to communicate better without long winded explanations that people tune out. We need to work on our media presence too.', 'created': '2024-11-09 02:45:19', 'submission_id': '1gmwq7w'}
{'comment': 'Yeah the white male problem is that we have completely lost the ability to reach the white male. Four more years of telling white men that they suck wont magically win us elections.', 'created': '2024-11-09 02:46:40', 'submission_id': '1gmwq7w'}
{'comment': 'Not every woman voted for Harris. Not every man voted for Trump.', 'created': '2024-11-09 02:34:06', 'submission_id': '1gmwq7w'}
{'comment': 'Yes we do.\n\n30 year old women are doing better than 30 year old males.', 'created': '2024-11-09 07:46:15', 'submission_id': '1gmwq7w'}
{'comment': 'https://preview.redd.it/xoaujtc2wszd1.jpeg?width=896&format=pjpg&auto=webp&s=4d0e187121e2f1acc0bfceffe22db7912a3f5d08', 'created': '2024-11-09 05:07:00', 'submission_id': '1gmwq7w'}
{'comment': 'I get that, but, HES A FUCKING FELON, more than half of America voted for a fucking FELON. /end rant', 'created': '2024-11-09 03:34:17', 'submission_id': '1gmwq7w'}
{'comment': '*more* worried about inflation and immigration than the harm that is coming to human beings.\xa0 \xa0call it in full.', 'created': '2024-11-09 03:35:00', 'submission_id': '1gmwq7w'}
{'comment': 'Yep and I think I have some of my own privilege to check on this. I was pretty mad that people voted based on this, but I’m also very lucky to not be struggling rn. I guess if I was desperate I understand why they wanted to try to vote for anything and anyone to “help.” Sad thing is he’ll do the opposite of help.', 'created': '2024-11-09 07:09:18', 'submission_id': '1gmwq7w'}
{'comment': 'Democrats are not ignoring people or communicating poorly, they are being out propagandized. Extremist right wing "news" outlets dominate the news market and social media, and you\'re fooling yourself if you think Democrats just didn\'t do \\[fill in the blank\\] well enough. I don\'t know how to fix this problem, but I assure you that Trump is just the beginning of this madness if Americans don\'t find a way to combat propaganda better, and just saying things in an appealing way won\'t cut it when you\'re working against the Republican propaganda army. In fact, I don\'t think there\'s much Democrats can do aside from holding journalists feet to the fire until they start reporting on the dangerous levels of propaganda regularly enough to make a dent.', 'created': '2024-11-11 00:18:01', 'submission_id': '1gmwq7w'}
{'comment': "When they get drafted to fight Trump's wars they may wake up.", 'created': '2024-11-09 07:44:33', 'submission_id': '1gmwq7w'}
{'comment': 'Trust me I get it', 'created': '2024-11-09 03:41:58', 'submission_id': '1gmwq7w'}
{'comment': 'I fully agree with you and support you! We need more manly men!', 'created': '2024-11-09 05:22:15', 'submission_id': '1gmwikh'}
{'comment': 'Do it! We need more “classically masculine” men vocally (visually) presenting a healthy view of masculinity', 'created': '2024-11-09 13:41:10', 'submission_id': '1gmwikh'}
{'comment': "Hey that sounds awesome. Something I'm passionate about too. If you are serious you can dm me! I'd love to help out. Also nice wings brother", 'created': '2024-11-09 06:47:21', 'submission_id': '1gmwikh'}
{'comment': 'Sounds like a great idea. The general voting public needs to see and hear from masculine men who support liberal ideals.', 'created': '2024-11-09 15:54:54', 'submission_id': '1gmwikh'}
{'comment': "I posted this in another sub but I think the message deserves to be said here as well. The BLUF though is that I cannot agree more. We need more folks on the left to present a decent version of masculinity. \n\nFirst i think ot should be said that the majority of young men, especially, have no issues with gender rights. Could it be that the democratic party doesn't and isn't speaking with them? If you look at the communities the democratic official states it serves (https://democrats.org/who-we-are/who-we-serve/), there is no explicit mention of men or young men... I mean objectively speaking how are young men suposed to recieve that message as anything other then you don't belong with us. If we want to win im 2026 and 2028, we need to understand where the root of the issues lie, why, and how to address them.\n\nIm not saying hey let's bring down women either. Women need to be lifted up and celebrated for there victories. But you are fooling yourself if you think that we cant lift up young men as well as women. \n\nA few more stats for to think over. \n\nwomen graduate from college at a 2:1 ratio compared men. It should be celebrated that women are achieving such rates, buuuutt the question needs to be ask why is the male number so low?\n\nMen are 3x as likely to kill themselves \n\nMen are 5x more likely to be incarcerated\n\nThe majority of homelessness are men\n\nWatch this video letme know what you think: \n\nhttps://youtu.be/jzLmznS91kM?si=ZTUz5N3At_fBtANx\n\nOne last thing I'll leave you with. Look at some of the more unstable place around the world. Syria, Somalia, Yemen, Iraq. What do they all have in common. Large populations of young men who feel adrift without purpose....", 'created': '2024-11-09 19:20:16', 'submission_id': '1gmwikh'}
{'comment': "If you do, get psychologists involved. Teach listeners about media literacy, pseudoscience, and encourage people to read books. There's a lot of things, but it's a place to start.", 'created': '2024-11-10 02:24:31', 'submission_id': '1gmwikh'}
{'comment': 'I support you dude. As a DGGer, I get it', 'created': '2024-11-11 04:39:45', 'submission_id': '1gmwikh'}
{'comment': '[removed]', 'created': '2024-11-09 23:21:52', 'submission_id': '1gmwikh'}
{'comment': 'Ok so....worst fear here -- \n\n\nWe flip the house by 1 seat or so, or they keep the house by 1 or 2 seats. We officially take the house in 26. All the terrible shit Trump tries to pull is blocked for the most part.\n\n\n2028 voters - "see, 4 years of trump wasn\'t so bad, let\'s vote for MAGA again!!"', 'created': '2024-11-09 02:23:31', 'submission_id': '1gmw64d'}
{'comment': 'maybe. i hope he\'s right but i don\'t know enough about other nations to know what he might be missing. it would take an awful lot of courage from an awful lot of people. if the media as it is simply caves, that could accelerate. if americans don\'t vote in their STATE and LOCAL elections and do everything they can to enact their resistance "below" the level of the white house, it could accelerate. \n\non "domesticating" the media:\n\n>Getting rid of them is laborious. I used to work at one of Turkey’s top dailies,\xa0*Sabah,*\xa0when it was taken over by the government in 2007, marking the beginning of a decadelong struggle for Erdogan to take control of the media landscape in the country. But it wasn’t easy. To silence\xa0*Sabah*\xa0and other newspapers, Erdogan had to use the tax authority, the courts, call for public boycott of newspapers and threaten individual journalists publicly — eventually forcing media owners to sell off. After\xa0*Sabah*, the Turkish government focused on other distressed media holdings, provided the financial support for cronies to buy them, and over the years passed anti-terrorism legislation to stifle free speech. In 2017, Erdogan finally held a referendum on expanding his presidential powers and consolidated power.\n\n>Even in an imperfect democracy like Turkey, it took a full decade from 2007 to 2017 for Erdogan to gain full compliance and transfer media ownership to his cronies. Similarly in Poland, the recently ousted Law and Justice Party tried to reshape the media landscape after they took power in 2015 by turning state broadcasters into partisan hacks — but made only incremental progress during their eight years in power. That kind of takeover is doable in the U.S. too, but it would take longer than four years.\n\n\n\n>Another major hurdle that will slow down Trump’s path toward dictatorship is the emergence of cities as liberal strongholds, with younger Democratic governors and mayors as opposition leaders. Democracies that have experienced an illiberal transformation have all seen big cities emerge as strongholds for dissent and liberal values, with charismatic mayors often becoming the public face of opposition. T\n\n>\n\ni have concerns. principally, i would be more comfortable if he had also looked at how putin suppressed all dissent in russia after invading ukraine. and china during their most recent post-pandemic lockdown protests. \n\ni assume erdogan and hungary did not have the support of techbros the way that trump has.', 'created': '2024-11-09 01:11:51', 'submission_id': '1gmw64d'}
{'comment': 'As much as the next four years could suck, we should keep our heads on straight about exactly what threat Trump posses. As this author points out, past experiences in other countries show that it takes time to tear down the walls that a liberal democracy sets up. Coolheadedness about how to recover from the Trump era is the way forward, not panicking and despair.', 'created': '2024-11-09 00:28:58', 'submission_id': '1gmw64d'}
{'comment': 'This article vastly underestimates the implications of having control of both houses and the SC. Every single thing he wants will be green lit. The ONLY hope we have is that Dems actually use the filibuster (though I’d wager republicans will nuke that too). I don’t understand what people can’t grasp. The guardrails are gone. What he wants he will get. Godspeed y’all.', 'created': '2024-11-09 01:30:11', 'submission_id': '1gmw64d'}
{'comment': "Thank god we have strong institutions and norms to keep the guardrails up!! And he won't be able to hide from our vibrant free press!!", 'created': '2024-11-09 02:15:25', 'submission_id': '1gmw64d'}
{'comment': '"Trump can\'t do this because" has become the new tagline for morons who think this is still a normal America.', 'created': '2024-11-09 02:31:57', 'submission_id': '1gmw64d'}
{'comment': 'This ridiculous article presupposes that Trump has been acting alone in the march toward authoritarianism. I\'ve said over and over against that Mitch McConnell has been the most successful authoritarian in modern American history. In the past we described it in milder terms like "one party rule", but the American Taliban, in and out of elective office, has been about overpowering our egalitarian, secular system in favor of a government based on their beliefs. The groundwork that will make a Trump dictatorship possible was laid long before Trump ever got elected. \n\nThe fucking denial is ridiculous. The last hope we have is the Democrats win the House, and even that won\'t stop a lot of bad shit from happening.', 'created': '2024-11-09 02:02:52', 'submission_id': '1gmw64d'}
{'comment': 'This…. Actually weirdly makes me feel a bit calmer. And the democrats that are governors certainly are gonna fight back. We need to hope he doesn’t go on a speedrun.', 'created': '2024-11-09 00:31:21', 'submission_id': '1gmw64d'}
{'comment': 'There’s no one to hold him back now, plus he stacked the SCOTUS. I mean he tried to overthrow our government when he lost in 2020, was not held responsible, and is set to be our President again. Literally nothing will stop him.', 'created': '2024-11-09 01:49:11', 'submission_id': '1gmw64d'}
{'comment': 'Pls stop. Yall are underestimating the power of dictators. This literally demonstrates the ignorance other nations talk about.\n\nDe jure is doing heavy lifting here.', 'created': '2024-11-09 01:16:50', 'submission_id': '1gmw64d'}
{'comment': 'I’m not worried about him becoming an actual dictator.\n\nI am worried about him having both houses of congress and the Supreme Court and there being system to check his dictatorial instincts.', 'created': '2024-11-09 02:28:04', 'submission_id': '1gmw64d'}
{'comment': 'This article is adoringly delusional. Trump can establish a dictatorship on day 1 rather easily and there is no one to stop it. He will have total military control after firing everyone non maga.', 'created': '2024-11-09 06:31:42', 'submission_id': '1gmw64d'}
{'comment': 'These four years will be longer than four years. MAGA is a cancer. It’s no longer republican it’s just plain old MAGA', 'created': '2024-11-09 06:50:45', 'submission_id': '1gmw64d'}
{'comment': 'This article packs so much copium it\'s basically criminal. \n\n"Don\'t worry, be happy!" \n\nThe author\'s experience in Turkey & his reference to Hungary etc aren\'t really comparable to the US situation, sorry.', 'created': '2024-11-09 09:03:04', 'submission_id': '1gmw64d'}
{'comment': 'He, and his whack jobs are sure as hell going to try. Last time around, there were some people acting like guard rails. Those folks will not be there. So who stops Trump? The GOP Senate? SCOTUS? The literal sociopaths that Trump will put in place learned from last time. \n\nEven if he is a straight dictator, his policies can very much cause hell for all of us. Becoming a dictator is just one of a mountain of issues.', 'created': '2024-11-09 01:45:22', 'submission_id': '1gmw64d'}
{'comment': 'I’m nervous too, but a lot of you are being alarmist and need to stop. It’ll be a rough four years, but it’s not the end of democracy. The sun still rises and half of the country opposes this man’s views, not to mention that a portion of his own supporters would turn against him if he actually started being a true dictator. Plus like this article states, we’ve got safeguards in place. \n\nIt’s not the end of democracy. Everyone needs to calm down and channel that panic into energy so we can support local Democratic Party members and be ready to protest if he tries to take our freedoms. It’s not the end.', 'created': '2024-11-09 02:20:16', 'submission_id': '1gmw64d'}
{'comment': 'Legitimately asking, what do people mean when they say “organize.” \n\nWhat does “organize” mean? \n\nHow do we organize in a way that is helpful.', 'created': '2024-11-09 04:55:18', 'submission_id': '1gmw64d'}
{'comment': 'Very good article that actually made me feel a bit better lol', 'created': '2024-11-09 00:41:08', 'submission_id': '1gmw64d'}
{'comment': 'I’m not sure where you’re looking… but they’ve already got 218 seats and are leading in 8 of the uncalled races. If that holds, we’ve already lost the house by 2 seats.', 'created': '2024-11-09 08:25:46', 'submission_id': '1gmw64d'}
{'comment': "Trump will do whatever he wants. He owns the Executive, Legislative and half the Judiciary branches. But assuming he can't/won't run in 28 at age 82, one important factor is that he no longer needs his base - or anyoone - to vote for him. We have seen how he treats people he has used but no longer has a use for. Also, we learned in the first term that he is diminished in office because he no longer gets to bask in the glow of admiration from his MAGA minions at rallies. It's more than likely that MAGA is going to find itself ignored and mistreated just like the rest of us.", 'created': '2024-11-09 17:47:49', 'submission_id': '1gmw64d'}
{'comment': 'You’d be surprised with how far Trump can push boundaries. The Military Commissions Act, the Homeland Security Act, the Protect America Act. There’s plenty of Bush era laws on the book that let Trump do tons of damage on day one.', 'created': '2024-11-09 05:38:43', 'submission_id': '1gmw64d'}
{'comment': "No, but maga has full authority to hurt and kill people without retribution. He can't move fast, our local communities will.\n\nWe must find a way to fight back without getting hurt or imprisoned.", 'created': '2024-11-09 12:12:34', 'submission_id': '1gmw64d'}
{'comment': "Trump is a lame duck. A 78-year-old lame duck that is rapidly decaying physically and mentally. The House still hasnt been called which means there are many Republicans in swing districts that will have to decide if they're giving up their political careers in the next two years to go along with some of Trump's and Musk's demented, unpopular economic fantasies that will crash the economy.", 'created': '2024-11-09 01:01:47', 'submission_id': '1gmw64d'}
{'comment': 'Such idiots. He will be dictator', 'created': '2024-11-09 01:54:53', 'submission_id': '1gmw64d'}
{'comment': 'When does Trump follow the law? \n\nThis is just plain denialism and trying too keep people calm so they don’t resist', 'created': '2024-11-09 03:55:15', 'submission_id': '1gmw64d'}
{'comment': 'First, Trump is constitutionally unable to run for a third term. Second, there is no heir to the MAGA throne that will command the loyalty that he does. A lot of that loyalty comes from who he is and his particular ability to know what his followers want to hear.', 'created': '2024-11-09 03:44:28', 'submission_id': '1gmw64d'}
{'comment': 'I don’t believe there is a single person who could replace Trump. Oh some may try and the movement may continue in some form but he seems to have this unique appeal that I don’t understand and once he’s gone no one is filling that role.', 'created': '2024-11-09 06:33:55', 'submission_id': '1gmw64d'}
{'comment': "Likely anything Trump does in the next two years will cause maximum pain later on. Very little policy change wouldn't have a compounding effect.", 'created': '2024-11-09 16:50:35', 'submission_id': '1gmw64d'}
{'comment': 'Don’t blame voters, if dems just run a guy, any guy they will win which is unfortunately what it takes, and Trump will probably be bad enough where it will be a landslide against the next republican it’s that simple', 'created': '2024-11-09 06:00:27', 'submission_id': '1gmw64d'}
{'comment': 'Well at this rate, why not just work out a move out the country program for those who want to leave, and put up a skull and crossbones flag with the inscription “DON’T MOVE TO USA. WE HAVE AN UNCONTAINABLE INFESTATION “?', 'created': '2024-11-09 05:41:06', 'submission_id': '1gmw64d'}
{'comment': 'Yup. Those who lived through this know it very well and saw it all coming a decade ago.', 'created': '2024-11-09 01:13:50', 'submission_id': '1gmw64d'}
{'comment': 'Im gonan try to respond to your point about Russia. If I’m correct, Russian media has always been state propaganda. He just made it more propaganda-y.', 'created': '2024-11-09 01:18:03', 'submission_id': '1gmw64d'}
{'comment': "On one hand, trump is very incompetent. On the other hand, I don't think he'll be much in control for long. \n\nWe're going to need to hit where it hurts: money. Not easy, though, since those hits may come back to hurt us too, and as of now there is no organizing of any kind to carry a nationwide labor strike.", 'created': '2024-11-09 04:19:24', 'submission_id': '1gmw64d'}
{'comment': 'Ukraine is toast..', 'created': '2024-11-09 04:34:43', 'submission_id': '1gmw64d'}
{'comment': 'Isn’t media here already mostly owned by his cronies?', 'created': '2024-11-09 05:31:27', 'submission_id': '1gmw64d'}
{'comment': 'I already had to talk a guy down in another sub who was absolutely freaking out because he couldn’t get an immigration lawyer to call him back. Apparently his wife, a naturalized citizen from Russia, is going to be deported within the next few weeks :-/', 'created': '2024-11-09 02:17:37', 'submission_id': '1gmw64d'}
{'comment': 'He already tore them down. There is NO check on him. Look at what the house has done the last two years. They haven’t done a single thing for the country. They have, literally, focused their time on going after Trump’s opponents, doing dumb shit like trying to name airports after Trump, blocking bills Trump didn’t want passed. He. Tore. Them. Down. Already. That’s it. There is no way around it. The author says he would need two terms. No he wouldn’t. The work never stopped. They’ve been working at it for 8 years.', 'created': '2024-11-09 01:32:29', 'submission_id': '1gmw64d'}
{'comment': "Exactly! It's sad and scary, but it's reality. There will not be checks and balances; the guardrails are off.", 'created': '2024-11-09 02:23:07', 'submission_id': '1gmw64d'}
{'comment': 'I can not believe our country betrayed us like this.', 'created': '2024-11-09 05:39:05', 'submission_id': '1gmw64d'}
{'comment': 'The same republicans-led House that had a larger majority for the last two years and couldn’t stop infighting long enough to choose a speaker or pass any legislation?', 'created': '2024-11-09 03:46:30', 'submission_id': '1gmw64d'}
{'comment': '"Whatever he wants, he will get."\n\nIn addition, whatever his puppeteers want, they get.', 'created': '2024-11-09 07:34:49', 'submission_id': '1gmw64d'}
{'comment': 'This article is frankly naive as fuck.', 'created': '2024-11-09 05:33:56', 'submission_id': '1gmw64d'}
{'comment': "This. They've literally normalized treason at this point. There are no fucking rules.", 'created': '2024-11-09 02:33:30', 'submission_id': '1gmw64d'}
{'comment': 'The fact is, he will be able to implement any policy decision that can be done via executive order. His ability to pass legislation is seriously hampered by small majorities in the House and Senate. His ability to modify or suspend the Constitution is non-existent.', 'created': '2024-11-09 03:48:31', 'submission_id': '1gmw64d'}
{'comment': 'There’s the Constitution, and a military who have taken an oath to preserve and protect the Constitution and who are led by people who are wary of Trump’s ambitions to begin with.', 'created': '2024-11-09 03:50:09', 'submission_id': '1gmw64d'}
{'comment': "Guessing that you didn't read the article.", 'created': '2024-11-09 01:47:31', 'submission_id': '1gmw64d'}
{'comment': 'A big takeaway for me in the article was that you have to have a lot more complacency and social support to go full dictator.', 'created': '2024-11-09 06:33:48', 'submission_id': '1gmw64d'}
{'comment': "Denial ain't just a river in Egypt", 'created': '2024-11-09 03:47:06', 'submission_id': '1gmw64d'}
{'comment': 'Did you read the article?\n\n"What I have seen in Turkey, Poland and Hungary suggests there is a turbulent time between the election of an illiberal leader and the establishment of a dictatorship when resistance will flourish. Any attempt at state capture by Trump will face a pushback from media, bureaucracy, major cities and the judiciary."\n\n"That resistance is necessary and will emerge at every level of civic life. It will also damage and tear up America in ways that are unimaginable today. It is easier to stop Trump now than to wait until after he becomes president again, when polarization and the push-and-pull between Trump and his opposition will consume the nation’s energy and cripple state resources. It will drain every bit of energy this country has."\n\n"So my message to America is, do not panic — but organize. The most successful method of fighting creeping authoritarianism is alliance building and effective opposition — preferably *before* the election."\n\nIt literally encourages people to resist. The thesis of the article is that constructing a dictatorship requires considerable time and effort and that 4 years isn\'t long enough.', 'created': '2024-11-09 05:34:44', 'submission_id': '1gmw64d'}
{'comment': 'Like, Donald Trump Jr? 🫣 maybe nobody likes him but that’s my fear is his dumbass kids want it next', 'created': '2024-11-09 04:26:26', 'submission_id': '1gmw64d'}
{'comment': 'I don’t think you get it, Democracy is gone! He controls all three branches of government and has already threatened to use the military against American Citizens. There are no checks and balances anymore. There are no republicans like McCain calling him out when he is wrong. Robert De Nairo wasn’t joking when he said Trump will never leave. Russia wants nothing more than to ruin our democracy and Trump is their biggest tool. I think we are in much bigger trouble than most people realize.', 'created': '2024-11-09 04:25:29', 'submission_id': '1gmw64d'}
{'comment': 'This is simply not true. They will ignore the 22nd amendment.', 'created': '2024-11-09 06:32:08', 'submission_id': '1gmw64d'}
{'comment': "The constitution isn't some magical binding document. It only means something if the people in power agree to follow it. If he, the Senate and House, and the Supreme Court decide they don't need to follow it, as they have already said they don't intend to, we're fucked. Then it's either the military and law enforcement intervene or democracy is officially 100% dead.", 'created': '2024-11-09 05:17:54', 'submission_id': '1gmw64d'}
{'comment': 'Fox News and the ever growing right wing propaganda machine created Trump. Make no mistake, they will spend the next 4 years grooming and carefully select someone to take his place.', 'created': '2024-11-09 07:26:30', 'submission_id': '1gmw64d'}
{'comment': 'If you think trump wont be discarded as a figurehead and replaced with vance this term, I have a bridge to sell you', 'created': '2024-11-09 13:22:03', 'submission_id': '1gmw64d'}
{'comment': 'Ive heard from many people, including very intelligent people, that “a 2nd term only applies consecutively”. I’ve had to explain that no, it means 2 terms, period. The amount of times I’ve heard this is, quite frankly, troubling and upsetting in the fact that, even on the face of it, it makes no sense.', 'created': '2024-11-09 13:48:30', 'submission_id': '1gmw64d'}
{'comment': 'Donald Trump could go to an elementary school and expose himself and not lose a modicum of support, and the media will try to sanewash it because he will always be the cash cow and a hit in the ratings. And I will go as far as to say that anyone who assessed Trump’s behavior and says, “He would make a good president” after seeing his behavior for the last nine years does not have the maturity to determine the traits of a good leader.', 'created': '2024-11-09 06:08:40', 'submission_id': '1gmw64d'}
{'comment': "There ARE lots of folks in Western countries that think MAGA is the best thing in the world and want it in their countries too.\n\nI don't know if it'd be easier to move them all out, or get everyone who disagrees to get out and let MAGA be MAGA. It's half the population either way", 'created': '2024-11-09 07:01:50', 'submission_id': '1gmw64d'}
{'comment': "yeah, i'm of the mindset that there are no limits to where this **could** go. or the ways it could be done. trump has reminded me of mugabe and idi amin for a very long time, although i'm sure his mechanisms will be different. he's more of a big-man politician than the putin villain. \n\ni appreciate this kind of article though, just so long as people don't expect carbon copies of poland or hungary or turkiye. i love that he's emphasizing the decoupling from the top level of government and taking it back to grass roots.", 'created': '2024-11-09 01:46:25', 'submission_id': '1gmw64d'}
{'comment': "there is that, but in addition to that i was thinking more specifically of how efficiently the protests were suppressed. there WERE protests early on, if you recall. a lot of westerners have been very smug about the 'submission' of russian people; i don't think that looks at the thing with a wide enough lens. \n\n \nrussia is a different country of course. and putin's had literally decades to build up his 'police' since he was elected originally. but the technical elements of how he controlled resistance are probably worth keeping in mind.", 'created': '2024-11-09 02:07:12', 'submission_id': '1gmw64d'}
{'comment': "my point is that if jvl thinks enough Americans care to make the carnage a worthwhile issue to galvanize people, he's wrong.\xa0\xa0", 'created': '2024-11-09 06:56:34', 'submission_id': '1gmw64d'}
{'comment': "Naturalized citizenship can be revoked. Not sure if they'll be targeting Russians. \n\nYour neighbor woldn't be stupid to come up with plan B. C. or D. I was born here - I've looked at my options, although I don't think my elderly parents would leave without the dog (I wouldn't want to either) and Canada doesn't have a Golden Visa program.", 'created': '2024-11-09 05:59:50', 'submission_id': '1gmw64d'}
{'comment': '"Doing nothing" is pretty typical of a divided congress.\xa0 That\'s normal and doesn\'t mean anything.\xa0 That\'s how American federal government is intentionally designed- to change slowly.', 'created': '2024-11-09 01:47:08', 'submission_id': '1gmw64d'}
{'comment': "He can't change the constitution my friend. He needs 2/3rds of both houses to bring such a thing to a vote and 3/4 of the states have to ratify it. He can sign executive orders until they are coming out of his ass but it won't change our Constitution.", 'created': '2024-11-09 01:57:57', 'submission_id': '1gmw64d'}
{'comment': 'They sure are.', 'created': '2024-11-09 02:36:09', 'submission_id': '1gmw64d'}
{'comment': 'It’s gutting. The more I think about it, though, I can’t say I’m genuinely surprised. We will do ANYTHING other than empower a woman. Especially a black one.', 'created': '2024-11-09 07:46:58', 'submission_id': '1gmw64d'}
{'comment': 'I can’t simplify this anymore than I already have. That was a product of being obstructionists with zero desire to govern. They had one branch. So they were obnoxious. You watch what happens when they have all three and NO GUARDRAILS. Set a reminder and check back in with me. I give you my word I will issue the most sincere apology if I am wrong.', 'created': '2024-11-09 04:14:34', 'submission_id': '1gmw64d'}
{'comment': '100%. Anyone who doubts this at this point needs a really brutal reality check.', 'created': '2024-11-09 07:46:16', 'submission_id': '1gmw64d'}
{'comment': 'Seriously… he talks about Erdogan needing two decades to convert Turkey into a dictatorship as if that’s the measuring stick.\n\nIt took Hitler 5 years after becoming Chancellor to invade Poland.\n\nThis isn’t an impossible task and Trump has everything at his disposal to carry out his whims.', 'created': '2024-11-09 10:52:46', 'submission_id': '1gmw64d'}
{'comment': 'Shockingly so from someone with that background.', 'created': '2024-11-09 07:47:27', 'submission_id': '1gmw64d'}
{'comment': 'There are MAGA in the military.', 'created': '2024-11-09 06:05:48', 'submission_id': '1gmw64d'}
{'comment': 'Turkey, Poland and Hungary are not the global hegemonic power.\n\nThey can, and have been, pressured and tempered by outside powers and forces they can’t control which have lessened the influence of their wannabe dictators and actual dictators.\n\nThe United States is now going to be controlled by a wannabe dictator without guardrails who can bend every other nation to his whim—more precisely that of Putin and his handlers—and no one will be in a position to stop him.', 'created': '2024-11-09 11:00:13', 'submission_id': '1gmw64d'}
{'comment': 'I don’t say this about many people, but Don Jr. is a fucking loser. He is not his father and will never get the same cult of personality.', 'created': '2024-11-09 05:31:16', 'submission_id': '1gmw64d'}
{'comment': 'Exactly this. There is NOTHING stopping him now from lighting the constitution on fire. Has anyone watched The Handmaids Tale? Project 2025 will start to be implemented on the very first day. \n\nBlue states and their financial power are the ONLY weapons we have as a tool to fight what’s coming.', 'created': '2024-11-09 05:33:48', 'submission_id': '1gmw64d'}
{'comment': 'I honestly don’t think the Pentagon would allow Trump to use the Military against American Citizens. He can say that all he wants, but after working in the defense sector during the first Trump Administration, most of the people in leadership roles in the pentagon, both civilian and military, just pretended that Trump didn’t exist, and continued on business as usual.', 'created': '2024-11-09 07:09:04', 'submission_id': '1gmw64d'}
{'comment': 'The good news is, even after the Roman Republic fell and turned into an empire they still had an utterly fantastic like 200 years\xa0\n\n\nAnd then after that they were still like mid for another 150', 'created': '2024-11-09 06:00:29', 'submission_id': '1gmw64d'}
{'comment': 'He has a majority of governors too, so if they want to alter the constitution there is a good chance that can happen.', 'created': '2024-11-09 05:24:37', 'submission_id': '1gmw64d'}
{'comment': 'I’ll go with the latter. And the fact that MAGA caught on spread like a wildfire is horrendous, shameful, scary, and it makes me glad as hell I don’t have children.', 'created': '2024-11-09 07:05:17', 'submission_id': '1gmw64d'}
{'comment': 'Sure. But It is NOT typical to revolve your entire congressional session around one man. And listen to one man (a citizen). And do the bidding of one man. People need to stop normalizing what has happened.', 'created': '2024-11-09 01:48:28', 'submission_id': '1gmw64d'}
{'comment': 'The constitution said he cant be president due to insurrection. Howd that work out? Who enforces the constitution anyway?', 'created': '2024-11-09 02:01:09', 'submission_id': '1gmw64d'}
{'comment': "He can't change it. But he can and will ignore it, and SCOTUS will let him.", 'created': '2024-11-09 02:11:27', 'submission_id': '1gmw64d'}
{'comment': "There are enough Republicans in power across the country that they could probably do it.\n\nThey only need 34 states to call an Article 5 convention. That's only 2/3rds of all states, not 3/4ths. Right now, Republicans only control 54% of state legislatures, but there's nothing stopping them from bribing or threatening those of other states to do their bidding. Trump could threaten to pull federal funding from a few compliant swing states to force them to vote for whatever they wanted.\n\nThey could put forth Constitutional amendments banning abortion, or repealing women's right to vote, or any number of horrific things.\n\nHe absolutely could change the Constitution with the help of his Rethuglican friends.", 'created': '2024-11-09 03:43:45', 'submission_id': '1gmw64d'}
{'comment': 'The Constitution is a scrap of paper if no one enforces it.', 'created': '2024-11-09 04:52:53', 'submission_id': '1gmw64d'}
{'comment': 'Did I say he was going to? I don’t recall saying that. I believe I said there are no checks on him, and what he wants he will get.', 'created': '2024-11-09 02:13:16', 'submission_id': '1gmw64d'}
{'comment': 'Who upholds the constitution? The Supreme Court, which he controls. Why would he bother changing it when he can simply ignore it?', 'created': '2024-11-09 05:38:19', 'submission_id': '1gmw64d'}
{'comment': 'Exactly! TBH, I hate to say it but I think the democrats need to let America suffer for a bit. I think we need to let Trump pass whatever he wants to pass so people can be miserable. \n\nBecause what happens if we use the filibuster, and manage to stop his policies, and save the country, they’ll either 1) say “see, we told you he wouldn’t do X or Y.” Or 2) The republicans will add insane things into the bills so that we stop them, and then we get blamed for not letting Trump pass anything. \n\nMaybe this will be a blessing in disguise. Let them get everything they voted for including Project 2025, mass deportation, Chinese tariffs on goods, full police immunity etc. And let them actually suffer the consequences. We need to stop saving them from themselves even if we have to suffer temporarily too. Only then will they open their eyes. \n\nThen hopefully when we take back the White House we can repeal all their horrible bills.', 'created': '2024-11-09 08:07:35', 'submission_id': '1gmw64d'}
{'comment': 'And thousands upon thousands of MAGA faithful champing at the bit to get to oppress Democrats and those they hate… even if the military doesn’t initially back him, he’ll establish a Brownshirt force and then incorporate them into the upper echelons of the military and force the hand of our soldiers from the top down', 'created': '2024-11-09 10:55:33', 'submission_id': '1gmw64d'}
{'comment': 'I don’t recall other nations attempting to pressure Poland, Hungary, or Turkey to be more democratic. And I think another major hurdle in Trump’s efforts to establish a dictatorship will be the independent judiciary that exists at the federal level. In his first term, many of his actions were challenged and struck down in federal courts, and the Supreme Court has limited control over federal courts. There’s no way for the president, SCOTUS, or the DOJ to dismiss judges or reassign them elsewhere, and no dictatorship can work without bringing the judiciary to heel.', 'created': '2024-11-09 19:40:00', 'submission_id': '1gmw64d'}
{'comment': 'Ivanka is the heir apparent.', 'created': '2024-11-09 06:06:02', 'submission_id': '1gmw64d'}
{'comment': 'Don Jr. apparently knows this—he’s a loser but evidently knows he cannot succeed his dad, I read somewhere that he was involved in selecting J.D. Vance as Trump’s political heir apparent.', 'created': '2024-11-09 06:58:01', 'submission_id': '1gmw64d'}
{'comment': "They just fire and replace until they get someone who does their bidding. It's not that far-fetched of an idea. He has full immunity while in office. He can do whatever he wants. The supreme court gave the US It's first king", 'created': '2024-11-09 17:40:48', 'submission_id': '1gmw64d'}
{'comment': 'Thanks for making me laugh!', 'created': '2024-11-09 14:27:59', 'submission_id': '1gmw64d'}
{'comment': 'Trump is no Augustus though. :(', 'created': '2024-11-09 19:17:45', 'submission_id': '1gmw64d'}
{'comment': 'Shit how do you think he won? Absentee ballots in red states weren’t counted after each state ran a absentee early vote drive. My ballot my moms my aunts hell the entire fifty person group we took early voting here in Iowa none of us are shown to have voted.\n\nCheck your vote status see if you have been counted and let me know anyone who sees this', 'created': '2024-11-09 05:50:33', 'submission_id': '1gmw64d'}
{'comment': 'That’s not how the constitution works.', 'created': '2024-11-09 05:32:46', 'submission_id': '1gmw64d'}
{'comment': 'Merrick Garland never charged him for inciting an insurrection, therefore he “legally” didn’t start one. Even though he 100% did. But since there was no trail, or charges, or conviction, there’s nothing to legally prove he started an insurrection. This is Garlands fault.', 'created': '2024-11-09 07:11:47', 'submission_id': '1gmw64d'}
{'comment': 'This is the point people don’t fully get yet. They control the SC now, and the SC have final say over what they deem to be “legal”. Theres no oversight after that.', 'created': '2024-11-09 03:28:59', 'submission_id': '1gmw64d'}
{'comment': 'Thank you. I feel like I’m speaking Greek or something lol. None of this is hard to understand. No part of the “checks and balances” will check or balance him.', 'created': '2024-11-09 02:14:02', 'submission_id': '1gmw64d'}
{'comment': "Not if he wants to suspend our current election system and decide he is the absolute ruler of this country until he appoints Don Jr. He can't do that.", 'created': '2024-11-09 03:37:13', 'submission_id': '1gmw64d'}
{'comment': 'I think that’s going to be the reality, intentional or not. There are no levers of control for Dems at this point. Things will go to shit and people will course correct, *or* people will be so blinded by their hatred (still) they double down and roll with it.', 'created': '2024-11-09 08:21:18', 'submission_id': '1gmw64d'}
{'comment': 'https://www.gmfus.org/news/european-parliaments-article-7-against-hungary-not-nuclear-option-right-step\n\nhttps://dgap.org/en/research/publications/upping-stakes-us-sanctions-force-hungary-shift-policy-russias-international\n\nhttps://2017-2021.state.gov/the-united-states-sanctions-turkey-under-caatsa-231/\n\nhttps://www.reuters.com/world/us-sanction-five-turkey-based-firms-broad-russia-action-2023-09-14/\n\nhttps://globalsanctions.com/region/turkey-2/\n\nhttps://amp.theguardian.com/world/article/2024/may/06/eu-end-sanctions-procedure-against-poland\n\nhttps://amp.dw.com/en/rule-of-law-eu-reprimands-poland-and-hungary/a-66165982\n\nTrump appointed a quarter of the federal judiciary and will appoint an enormous number of new vacancies. Republicans will continue to bring the challenges they seek in friendly jurisdictions which will be greenlit up the chain, including by the SCOTUS.\n\nWe’ve already seen this happen. Open your eyes.', 'created': '2024-11-09 19:49:14', 'submission_id': '1gmw64d'}
{'comment': "Yeah that'd be my guess too ...\n\n\nHuh....\n\n\n\nWe'd get a woman president finally", 'created': '2024-11-09 06:57:45', 'submission_id': '1gmw64d'}
{'comment': 'Have you reported it? There have been posts here on Reddit about how to report.', 'created': '2024-11-09 05:54:23', 'submission_id': '1gmw64d'}
{'comment': "Babies, it's just a piece of paper that we all agree to go along with. I swear he could set the actual constitution on fire and some of you would say he still doesn't mean it when he says those terrible things.", 'created': '2024-11-09 07:34:37', 'submission_id': '1gmw64d'}
{'comment': 'Constitution doesnt say you need a conviction or trial. Trumps supreme court “decided” thar. Dont you get it? There are no actual rules if you install puppets to blur lines and make sure you get your way. The constitution is meaningless.', 'created': '2024-11-09 14:32:47', 'submission_id': '1gmw64d'}
{'comment': 'He absolutely could do that now that SCOTUS gave him full immunity and the Republicans control the federal government. He can do whatever he wants now.', 'created': '2024-11-09 03:44:49', 'submission_id': '1gmw64d'}
{'comment': 'Agreed. But he won’t need to. Ya gotta think outside the box here.', 'created': '2024-11-09 04:15:08', 'submission_id': '1gmw64d'}
{'comment': 'No, most of them believe Trump’s lies about not being involved with project 2025. They believe he will make them richer, they believe he won’t gut social security and Medicare. They even believe he won’t eliminate Obamacare. They also don’t believe he would sign a nationwide abortion ban. Latinos don’t think Trump will go after naturalized citizens or legal refugees. \n\nYou can go on the Republican subreddit and see it for yourself. They think we’ve been fed left wing fear mongering propaganda and boy I wish they were right. But it’s clear that Trump’s base doesn’t bother to do any research. \n\nSo IMO they need to see it ALL come true. We need to sit these next couple of years out and let it alll happen. We need to let them experience the natural consequences of their choices or they’ll never learn.', 'created': '2024-11-09 08:59:41', 'submission_id': '1gmw64d'}
{'comment': 'This article may be behind a registration wall. Sites with registration walls require users to create an account to view any content.\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-09 19:50:03', 'submission_id': '1gmw64d'}
{'comment': 'A quarter still means 75% of them aren’t Trump appointees, and not all Trump appointees have ruled in ways that he wanted.\n\nI’m not saying Trump won’t succeed in creating a dictatorship. Just that there is also a realistic chance that he could fail. It isn’t a certainty. My eyes are perfectly open.', 'created': '2024-11-09 19:51:54', 'submission_id': '1gmw64d'}
{'comment': 'Eww.', 'created': '2024-11-09 07:07:03', 'submission_id': '1gmw64d'}
{'comment': 'Yet to see one ill need to look that up when I contacted the state election office they put me on hold and hung up on me.', 'created': '2024-11-09 05:56:52', 'submission_id': '1gmw64d'}
{'comment': 'Correct, he owns all three branches of government and this is what our founders tried to prevent with the checks and balances. He doesn’t even have republicans like John McCain telling him when he’s wrong anymore. Historically this is a bad combination. Dark times are coming.', 'created': '2024-11-09 04:32:43', 'submission_id': '1gmw64d'}
{'comment': 'I saw a post today where someone literally linked to Matt Walsh saying “now that the election is over we can tell you project 2025 is the agenda” and a MAGAT refused to believe it and said it was fake. You’re very right. They’re gonna need to see it all happen because the one brain cell they share as a collective can’t handle it', 'created': '2024-11-09 09:01:33', 'submission_id': '1gmw64d'}
{'comment': 'Once again, it doesn’t matter if it’s not a majority of jurisdictions, Republicans will bring challenges *in friendly jurisdictions.* I.e., they don’t need the whole federal judiciary, they have the most important piece—the Supreme Court. They will bring lawsuits in the 5th Circuit and will win at every level until it’s brought up to the Supreme Court, which will decide in their favor and create stare decisis for the entire country.', 'created': '2024-11-09 19:55:30', 'submission_id': '1gmw64d'}
{'comment': 'Indeed', 'created': '2024-11-09 07:44:00', 'submission_id': '1gmw64d'}
{'comment': '1-866-OUR-VOTE and call your county/precinct office to see if you need to cure your ballot. I think I read that you can reach out to the ACLU too.', 'created': '2024-11-09 06:15:46', 'submission_id': '1gmw64d'}
{'comment': '[https://www.vote.org/election-results/](https://www.vote.org/election-results/)\n\n\n\nSelect your state and go from there if it works', 'created': '2024-11-09 06:46:58', 'submission_id': '1gmw64d'}
{'comment': "Another positive about an Ivanka Presidency, she definitely hates him too.\n\nI don't like that this is making more and more sense.", 'created': '2024-11-09 08:00:26', 'submission_id': '1gmw64d'}
{'comment': 'Illinois voter here "\n\n||\n||\n| Your state does not have online ballot tracking. |', 'created': '2024-11-09 07:02:25', 'submission_id': '1gmw64d'}
{'comment': 'Illinois Voter here "Your state does not have online ballot tracking"', 'created': '2024-11-09 07:03:05', 'submission_id': '1gmw64d'}
{'comment': 'Eye roll', 'created': '2024-11-09 07:03:06', 'submission_id': '1gmw64d'}
{'comment': 'Nope, regardless of how awful trump fucks up I highly doubt dems take a chance with a woman again', 'created': '2024-11-09 00:30:21', 'submission_id': '1gmvvgt'}
{'comment': 'This election really showed how bad misogyny is in America. Kamala was great and got annihilated because of being a biracial woman. Democrats won’t put a woman up for a long time.', 'created': '2024-11-09 02:43:46', 'submission_id': '1gmvvgt'}
{'comment': 'We can’t take a chance with a woman, as much as I hate to say it.\n\nI’d say our best chances are with either: Josh Shapiro, Wes Moore, Pritzker, or Ruben Gallego.', 'created': '2024-11-09 00:35:10', 'submission_id': '1gmvvgt'}
{'comment': 'Negative', 'created': '2024-11-09 00:10:52', 'submission_id': '1gmvvgt'}
{'comment': 'I’d be down. After the economic carnage Trump is bound to inflict, I bet America will be ready to elect a moderate Dem regardless of whether it’s a woman or a man.\n\nAlso, Klobuchar is based lowkey.', 'created': '2024-11-09 00:17:28', 'submission_id': '1gmvvgt'}
{'comment': 'I remember there was a controversial option about her record because of how poorly she treated her staff. Apparently, she is rude and cruel to people. IDK how true that all was, but I will take her over orange dictator anytime.', 'created': '2024-11-09 00:19:44', 'submission_id': '1gmvvgt'}
{'comment': 'Nope.', 'created': '2024-11-09 00:15:06', 'submission_id': '1gmvvgt'}
{'comment': 'No.', 'created': '2024-11-09 00:21:17', 'submission_id': '1gmvvgt'}
{'comment': 'Nope.', 'created': '2024-11-09 00:30:37', 'submission_id': '1gmvvgt'}
{'comment': 'No thank you.', 'created': '2024-11-09 02:11:10', 'submission_id': '1gmvvgt'}
{'comment': 'Why do people still think Harris and Clinton lost because they were women? Jesus Christ, that is not even remotely the reason. If anything it’s an advantage anymore. I could type out a list of reasons why both of them lost their races and their gender is not included on either.', 'created': '2024-11-09 05:47:25', 'submission_id': '1gmvvgt'}
{'comment': 'She could have won this........2 glass ceiling was 1 too many.', 'created': '2024-11-09 08:07:32', 'submission_id': '1gmvvgt'}
{'comment': 'I mean...it rings logically. So some place between Obama and Clinton?', 'created': '2024-11-09 00:31:20', 'submission_id': '1gmvvgt'}
{'comment': 'Alright, thanks for the opinion.', 'created': '2024-11-09 03:38:10', 'submission_id': '1gmvvgt'}
{'comment': 'A good looking middle aged white man IF we ever get to vote again.\n\nBased on rational not emotion, my pick.', 'created': '2024-11-09 08:10:47', 'submission_id': '1gmvvgt'}
{'comment': 'I know SOME of the names, remind me where they are from though?', 'created': '2024-11-09 00:38:21', 'submission_id': '1gmvvgt'}
{'comment': 'Alright.', 'created': '2024-11-09 00:11:23', 'submission_id': '1gmvvgt'}
{'comment': 'HOPING SO!', 'created': '2024-11-09 00:20:04', 'submission_id': '1gmvvgt'}
{'comment': "Aw that's unfortunate if it's true. That's why I posted about her, trying to judge people's interest for four years from now.", 'created': '2024-11-09 00:21:36', 'submission_id': '1gmvvgt'}
{'comment': 'Alrighty.', 'created': '2024-11-09 00:15:24', 'submission_id': '1gmvvgt'}
{'comment': 'Alright.', 'created': '2024-11-09 00:21:57', 'submission_id': '1gmvvgt'}
{'comment': 'Alright.', 'created': '2024-11-09 00:31:33', 'submission_id': '1gmvvgt'}
{'comment': 'Alright.', 'created': '2024-11-09 02:15:31', 'submission_id': '1gmvvgt'}
{'comment': 'We could all type out 10 lists why Trump never should have been near the WH much less back in it!', 'created': '2024-11-09 08:13:00', 'submission_id': '1gmvvgt'}
{'comment': 'Shapiro is PA governor, Moore is MD governor (and I’m proud to call him my governor), Pritzker is governor of Illinois, and Gallego is the new senator elect in Arizona', 'created': '2024-11-09 00:45:18', 'submission_id': '1gmvvgt'}
{'comment': 'No way she would win.', 'created': '2024-11-09 00:13:36', 'submission_id': '1gmvvgt'}
{'comment': "Thanks. Shapiro and Pritzker SHOULD help the States to get the blue vote, MD is ALREADY blue (so that's a plus), Gallego idk because Arizona to me is ALWAYS a hard one to predict.", 'created': '2024-11-09 00:47:25', 'submission_id': '1gmvvgt'}
{'comment': 'I understood, the first point.', 'created': '2024-11-09 00:14:18', 'submission_id': '1gmvvgt'}
{'comment': 'Moore is a HUGE rising star in the party. Gives me real Obama vibes. He is BELOVED here. And for Gallego, he’d be able to help bring back some of that Latino vote we lost, I’d think.', 'created': '2024-11-09 00:47:58', 'submission_id': '1gmvvgt'}
{'comment': 'I would love to see a woman as President. I was all in on Kamala her first round. Maybe Gretchen Whitmer?', 'created': '2024-11-09 00:16:58', 'submission_id': '1gmvvgt'}
{'comment': 'Alright...Obama vibes is a GOOD start.', 'created': '2024-11-09 00:49:19', 'submission_id': '1gmvvgt'}
{'comment': 'Alright, yeah that would work IF given enough time.', 'created': '2024-11-09 00:18:58', 'submission_id': '1gmvvgt'}
{'comment': 'Do not give up on democracy, on our Constitution, on our rule of law. \nBe Americans!\n\n\nBased on Snyder\'s "On Tyranny: Twenty Lessons from the Twentieth Century," passive compliance plays a crucial role in enabling tyrannical systems to take hold and flourish. Here are the key points about passive compliance from his analysis:\n\n1. Anticipatory obedience - Snyder emphasizes how people often begin obeying anticipated orders before they\'re explicitly given, smoothing the way for authoritarian control. This "voluntary submission" makes formal coercion less necessary.\n\n2. Small compromises - The gradual acceptance of small ethical compromises and minor violations of norms helps normalize increasingly authoritarian behavior. People rationalize each small step rather than drawing clear lines.\n\n3. Silent witnessing - When citizens witness troubling actions but remain silent, they become complicit. Their silence is interpreted as tacit approval and emboldens those pushing authoritarian agendas.\n\n4. Institutional surrender - When professional groups and institutions fail to actively resist erosion of their independence and instead adapt to authoritarian demands, they lose their ability to serve as checks on power.\n\n5. Bystander effect - The tendency for people to assume others will take action leads to collective inaction. Everyone waiting for someone else to resist means no one does.\n\n6. False sense of stability - People often convince themselves that things will return to normal on their own, leading them to tolerate what should be intolerable. This optimistic passivity enables further erosion of democratic institutions.\n\n7. Professional ethics abandonment - When professionals gradually abandon their ethical standards to accommodate new political realities, they become tools of the authoritarian system rather than independent actors.\n\n8. Fear of standing out - The natural human desire to blend in and avoid conflict makes people reluctant to be the first to object or resist, creating a spiral of silence.\n\nSnyder argues that active resistance and deliberate non-compliance are essential counters to tyranny. He emphasizes that democracy requires ongoing participation and defense, not passive hope that institutions will protect themselves.\n\nRead Snyder\'s book here: \n\n\nhttp://drmalik.atw.hu/RM/snyder.pdf', 'created': '2024-11-08 23:58:04', 'submission_id': '1gmvmfw'}
{'comment': "I ordered this book a couple months ago. It's time for me to read it.", 'created': '2024-11-09 00:17:56', 'submission_id': '1gmvmfw'}
{'comment': 'I listened to it on Audible', 'created': '2024-11-09 00:40:25', 'submission_id': '1gmvmfw'}
{'comment': 'This is not being talked enough about. Something is going on.\n\nWe had record turnout, Kamala had higher favorability than Trump, but yet she got lost vote. \n\nRussia helped elect twice him twice now, she was such a good candidate. I’m so sad', 'created': '2024-11-09 00:45:06', 'submission_id': '1gmv8qn'}
{'comment': 'No surprises here since the violent ones want to stop Democrats from voting.', 'created': '2024-11-09 07:59:29', 'submission_id': '1gmv8qn'}
{'comment': 'This shit absolutely reeks. It’s really making me wonder if this election wasn’t stolen.', 'created': '2024-11-09 04:08:15', 'submission_id': '1gmv8qn'}
{'comment': 'Frankly, I’m pissed that she conceded immediately and that so many democrats are telling people to blindly accept the results. He gave us 1000 red flags. Election day was a shit show. Thousands of people in PA alone are reporting their votes were rejected or aren’t showing up on their voter history. Some of the bluest counties in swing states went solid red. Why the hell aren’t people taking this more seriously? This isnt QAnon MAGA level conspiracy shit, this is very real with very real evidence. A fucking criminal just won the most powerful position in the world—a second time.\n\nETA: sharing this petition — https://www.change.org/p/demand-transparency-and-recount-in-key-battleground-states?recruiter=1324474425&recruited_by_id=36bf2360-9e5c-11ee-bd9f-71d488a1ca4a&utm_source=share_petition&utm_campaign=psf_combo_share_initial&utm_term=psf&utm_medium=copylink&utm_content=cl_sharecopy_490285715_en-US%3A7\n\nSIGN THAT SHIT.', 'created': '2024-11-09 19:11:02', 'submission_id': '1gmv8qn'}
{'comment': 'Concession isn’t legally binding it’s just a formality. If things were to somehow change with recounts or whatever it wouldn’t matter she did it.', 'created': '2024-11-09 19:12:43', 'submission_id': '1gmv8qn'}
{'comment': 'Thanks for the info! I maintain my opinion, though. Concession admits defeat and enrages the other side if an investigation were to open.', 'created': '2024-11-09 19:14:26', 'submission_id': '1gmv8qn'}
{'comment': 'That’s true.', 'created': '2024-11-09 19:15:44', 'submission_id': '1gmv8qn'}
{'comment': 'The other side is already enraged. I don’t want us caving to them because we’re afraid of their emotions. It’s how we got here in the first place\xa0', 'created': '2024-11-09 21:40:08', 'submission_id': '1gmv8qn'}
{'comment': 'Forget where but girls at one school said the boys were chanting your body my choice the day after the election.', 'created': '2024-11-09 02:44:27', 'submission_id': '1gmv6ia'}
{'comment': 'Almost every journalist is responsible for this and they are oblivious.\xa0', 'created': '2024-11-08 23:42:28', 'submission_id': '1gmv6ia'}
{'comment': "Their response....stop being so alarmist. When has he ever said he'd do any of that stuff? he wont' do any o that stuff. He isn't doing anything like that. Calm down, you're being crazy.\n\nThen you point out specifics, and they explain what he really meant.\n\nThen they accuse you of not thinking for yourself, and being manipulated by the left wing mainstream media propaganda machine.", 'created': '2024-11-09 04:44:33', 'submission_id': '1gmu7p1'}
{'comment': 'These morons can’t even spell tariff let alone understand how it’s going to impact them and everyone', 'created': '2024-11-09 02:13:56', 'submission_id': '1gmu7p1'}
{'comment': "As much as I would love to share this with my MAGA family, I don't believe anymore that they actually understand any words I say that have more than 5 letters in them.", 'created': '2024-11-09 02:23:50', 'submission_id': '1gmu7p1'}
{'comment': 'Yep. The Republican party has always been about lining their pockets. Trickle down economics continues to destroy the middle class and prop up the wealthy oligarchs in America.', 'created': '2024-11-09 03:52:12', 'submission_id': '1gmu7p1'}
{'comment': "And don't forget the part about allowing drilling in currently protected areas. And eliminating current regulations that now protect our water, air quality, and safety. You like clean air and water? Those things are hard to stock up on for the next 4 years.", 'created': '2024-11-09 08:07:18', 'submission_id': '1gmu7p1'}
{'comment': 'Yep.', 'created': '2024-11-08 23:45:56', 'submission_id': '1gmu7p1'}
{'comment': 'Word', 'created': '2024-11-09 01:14:01', 'submission_id': '1gmu7p1'}
{'comment': "The worst part? At the end of the conversation you're actually questioning whether or not things are as bad as you know they are. It spins you out for a few hours or days, you realize you were gaslite yet again, and the cycle restarts itself. \n\nThe gaslighting really is the worst.", 'created': '2024-11-09 14:12:03', 'submission_id': '1gmu7p1'}
{'comment': 'That\'s when you say, "I will be happy to say I\'m wrong and apologize, but Trump\'s entire life has shown a willingness to screw over everyone in every deal he\'s made. You already elected him, you\'ve upheld your end of the deal, so expect him to screw you over now."', 'created': '2024-11-12 16:28:47', 'submission_id': '1gmu7p1'}
{'comment': 'The kicker is that people actually believe getting rid of illegals will magically bring down crime and the price of goods🤣', 'created': '2024-11-08 22:51:33', 'submission_id': '1gmu07t'}
{'comment': "What is wild is that I have a Mexican coworker. Both her and her husband are here legally, but her mother, siblings and some of their kids are all here illegally.\n\nYou'll never guess who she and her husband voted for.", 'created': '2024-11-08 23:27:28', 'submission_id': '1gmu07t'}
{'comment': 'So I’m wondering how all this is going to work? Using military and police - will they be gunning down people in the streets that try to resist or run? Will be hiding people in basements and attics like in Nazi germany?', 'created': '2024-11-08 23:02:15', 'submission_id': '1gmu07t'}
{'comment': "While trump wasn't as loud about this during his last administration, he certainly tried to deport a lot of illegal immigrants. He was stalled and ran into a lot of snags. He ultimately deported less illegal immigrants than either of Obama's terms.\n\nWhile I do acknowledge that there could be more in this coming administration, I feel like their plans for this are just alt right jerk off fantasies, that won't actually happen. But fuck me, I have no idea what to expect. I'm just trying to be hopeful.\n\nTrump promised a lot in his first term and barely delivered.", 'created': '2024-11-08 23:31:04', 'submission_id': '1gmu07t'}
{'comment': 'We are living in a Kakistocracy.', 'created': '2024-11-08 23:32:10', 'submission_id': '1gmu07t'}
{'comment': 'I think a lot of this is just posturing. Will they be tough on the border absolutely. But, Desantis did something similar in Florida and they basically haven’t made any major change in actual numbers of people deported.\n\nFurthermore they would have to use the military as they will not have the manpower for something on this scale. \n\nI think they are full of it as this would really hurt his corporate overlords.', 'created': '2024-11-08 23:09:16', 'submission_id': '1gmu07t'}
{'comment': "I wonder where he is going to get the money to pay for it? It's definitely coming out of our pockets.", 'created': '2024-11-08 22:58:15', 'submission_id': '1gmu07t'}
{'comment': 'i want to hear from those sons/daughters with illegal parents that voted for trump.', 'created': '2024-11-09 01:14:31', 'submission_id': '1gmu07t'}
{'comment': 'also…immigrants are a huge economic advantage.', 'created': '2024-11-09 01:14:48', 'submission_id': '1gmu07t'}
{'comment': 'And history will make note of the elected leaders who stood by and let it happen', 'created': '2024-11-08 22:51:41', 'submission_id': '1gmu07t'}
{'comment': 'My friend crushes animal bones to make dog food People lining up to do her job?', 'created': '2024-11-09 00:34:21', 'submission_id': '1gmu07t'}
{'comment': 'It will be epic and shock the country, the best part will be the amount of legal citizens that voted for Trump that will get caught up in this and deported', 'created': '2024-11-09 00:51:30', 'submission_id': '1gmu07t'}
{'comment': 'Well Miami voted for this so sorry for their bad luck.', 'created': '2024-11-09 02:40:17', 'submission_id': '1gmu07t'}
{'comment': 'Honestly I’m to the point I don’t even care now. Most of the poc voted for this monster..', 'created': '2024-11-08 22:56:15', 'submission_id': '1gmu07t'}
{'comment': 'Good luck with fruits and vegetables. No American will be picking grapes and apples', 'created': '2024-11-09 02:59:06', 'submission_id': '1gmu07t'}
{'comment': None, 'created': '2024-11-08 23:24:26', 'submission_id': '1gmu07t'}
{'comment': 'Imagine how much the taxis for their hamburgers cost when the illegals get rounded up.', 'created': '2024-11-09 01:12:27', 'submission_id': '1gmu07t'}
{'comment': "The question is, where are his brown shirts? Sure he has some support from the police. And the jan 6th crowd was quite large. But his rallies are shrinking. The actual trump militias are small and a lot of people will not be willing to actually get up off their butts and shove people into busses over the border. Not in the number he needs. The police might do it, but that isn't enough.", 'created': '2024-11-09 01:15:31', 'submission_id': '1gmu07t'}
{'comment': 'so what happens if other countries refuse to let the plane land?', 'created': '2024-11-09 00:21:36', 'submission_id': '1gmu07t'}
{'comment': 'Why does Trump care about illegal immigrants? Obviously I get that it’s to appease his base, and while I disagree with them, I “get” that they are desperate and scared of how much their lives have changed in one generation, and it’s easier to blame the “other”. But, what does Trump gain from it? Bc if minimum wage goes up. If people want one treated humanely, etc!', 'created': '2024-11-09 01:33:40', 'submission_id': '1gmu07t'}
{'comment': 'The thing that people are not registering in the few braincells is this. You don\'t want to do manual labor in the fields or put in the effort to do your gardening. Not to mention other jobs we have deemed "below us." So my question is who the heck do you think will?', 'created': '2024-11-09 01:46:05', 'submission_id': '1gmu07t'}
{'comment': 'Is he paying for the plane tickets?', 'created': '2024-11-09 04:34:32', 'submission_id': '1gmu07t'}
{'comment': 'And it will fail. \n\nWe’ll see a few raids, a media firestorm, and then the news cycle will move on. Trump will deport fewer people than Biden. Again. \n\nStephen Miller will become persona non grata by the end of the year. I wouldn’t be surprised if he is being set up to fail. \n\nThe Trump 47 team is full of Republicans. They’re seem to be purging the alt-right people who surrounded Trump 45.', 'created': '2024-11-08 23:46:02', 'submission_id': '1gmu07t'}
{'comment': "I love it. Many of the Latinos that voted for him will be stripped of their naturalization and prices on food, housing and hospitality will skyrocket. It's going to be the biggest disaster of our lifetime. Burn baby burn", 'created': '2024-11-09 00:40:52', 'submission_id': '1gmu07t'}
{'comment': "I'm still wondering how exactly are they gonna do this?? So far nobody in the media knows, hell you figure there'd atleast be a leak by now, does trump even know how he's gonna do it??", 'created': '2024-11-09 02:34:50', 'submission_id': '1gmu07t'}
{'comment': "Well, since 57% of hispanic men voted for it, give it to them, they've earned it", 'created': '2024-11-09 06:14:39', 'submission_id': '1gmu07t'}
{'comment': 'Most non documented migrants are here to work and try to find the American dream. They pay for taxes through their ITIN #. Despite paying into social security they receive no benefits and no refund. They pay sales tax and contribute to local economies to the tunes of billions. Are their “bad” migrants? Absolutely - and those criminals should be deported. But the ones who just want to be American- they need a path towards citizenship and should be be vilified. They contribute so much to not just our economy but our societies at large. Remove them and we lose. Grocery prices and labor prices will rise.', 'created': '2024-11-09 09:35:12', 'submission_id': '1gmu07t'}
{'comment': 'I don’t understand what turbo\nCharging deporting naturalized citizens means. Isn’t Melania one? They are literally American citizens who went through the ‘correct’ process. What is Stephen Miller basing this off of? God I hate these assholes', 'created': '2024-11-09 10:16:04', 'submission_id': '1gmu07t'}
{'comment': 'Honestly I’m fine with it. If Latinos voted for him as they did, they deserve it.', 'created': '2024-11-09 15:07:52', 'submission_id': '1gmu07t'}
{'comment': 'He doesn’t want to fix the border…he just wants to hurt people.', 'created': '2024-11-11 05:36:23', 'submission_id': '1gmu07t'}
{'comment': 'We elected him with protest votes and apathy. We now must enjoy our spoils.', 'created': '2024-11-09 04:30:05', 'submission_id': '1gmu07t'}
{'comment': 'If it’s so bad then how come the Mexicans voted for it?', 'created': '2024-11-09 00:47:07', 'submission_id': '1gmu07t'}
{'comment': 'Getting rid of illegal immigrants would result in higher prices. Who do they think builds houses here in Texas, fixes roofs, farms American crops? They will have to raise pay for Americans to work immigrant jobs. Who will pay for that? The employers or consumers? There will be a rude awakening.', 'created': '2024-11-08 23:34:29', 'submission_id': '1gmu07t'}
{'comment': '100%. In addition to it not bringing down the price of goods, it will actually do the exact opposite and create supply chain shortages.\n\nAt the end of the day, what people don’t understand is everything works on a supply demand principles, and unfortunately that applies to human beings. It is the reason, tragically, human trafficking is a major problem. We have people cross the border illegally because there is a demand for cheap labor that is largely unregulated. 7-8 million people would not come here if there wasn’t because it’s not like they can get a job on a payroll, legally.\n\nAmerica has largely exploited these individuals to maximize profit margins. Say Trump is actually successful with his mass deportation plan (although I argue he likely won’t be), that’s millions of jobs that will be vacated. And let’s be honest, many of those jobs are not jobs Americans would leave their current jobs for and they certainly wouldn’t leave them for the pay rate that many of these migrants are working for. So in addition create supply chain concerns and a labor shortage, it will cause prices of both goods (food, clothing, etc) AND services (construction, lawn care, child care, etc) to increase.', 'created': '2024-11-08 23:28:24', 'submission_id': '1gmu07t'}
{'comment': 'Deporting immigrants will drive up the cost of goods, food, etc.', 'created': '2024-11-08 23:53:28', 'submission_id': '1gmu07t'}
{'comment': 'The kicker is without mass deportations we have deported 70 American citizens by accident in the last 5 years. How will mass deportations do anything but make that number higher', 'created': '2024-11-09 00:37:09', 'submission_id': '1gmu07t'}
{'comment': 'There are people who think that the reason why important social services never have enough funding is because the government is giving all the money to illegal immigrants. 🤦\u200d♀️', 'created': '2024-11-09 01:10:10', 'submission_id': '1gmu07t'}
{'comment': '[removed]', 'created': '2024-11-08 23:08:43', 'submission_id': '1gmu07t'}
{'comment': 'Construction will stall, crops won\'t get picked, meat packing plants won\'t work, and my landscaper has already "vanished." These immigrants do a lot of jobs we won\'t do. I drive past fields here in SoCal, and they\'re out there slaving in the fields. \n\nRemember Florida after DeSatan had his ban? Citrus dying on the trees because there was no one to pick it.', 'created': '2024-11-09 02:17:20', 'submission_id': '1gmu07t'}
{'comment': 'I wonder who is going to pick their crops for them? Food will be rotting in fields.', 'created': '2024-11-09 03:09:07', 'submission_id': '1gmu07t'}
{'comment': "he'll terrorize the blue states and leave the ones alone in the red states so they can continue to work.... corporations love the cheap labor and Trump knows that. Its all a charade like everything else he does", 'created': '2024-11-09 01:38:42', 'submission_id': '1gmu07t'}
{'comment': "Some dipshit on FB was arguing with me that it's more expensive to NOT deport undocumented immigrants. We are living among idiots.", 'created': '2024-11-09 02:57:40', 'submission_id': '1gmu07t'}
{'comment': 'Many crimes are committed by US citizens and legal immigrants. Illegal immigrants try not to draw ICE or DHS to them.', 'created': '2024-11-09 03:07:42', 'submission_id': '1gmu07t'}
{'comment': 'This. The pain is coming.', 'created': '2024-11-09 00:24:27', 'submission_id': '1gmu07t'}
{'comment': "In fact it's actually the opposite it will increase the price of goods and more crime", 'created': '2024-11-09 01:36:32', 'submission_id': '1gmu07t'}
{'comment': 'It will do the exact opposite. We got morons leading us now…', 'created': '2024-11-09 03:27:44', 'submission_id': '1gmu07t'}
{'comment': 'You forgot 2% interest on mortgages and $2 gas', 'created': '2024-11-09 03:45:36', 'submission_id': '1gmu07t'}
{'comment': 'Honestly at this point I am ok with Companies and Governments giving him bribes to not do the stuff he has planned', 'created': '2024-11-09 04:57:25', 'submission_id': '1gmu07t'}
{'comment': 'Deporting immigrants will raise prices and increase crime (statistically, per capita). Immigrants commit the least amount of crime and work in undesirable and low paying jobs.', 'created': '2024-11-09 16:09:40', 'submission_id': '1gmu07t'}
{'comment': 'Because they’re idiots. I’m sorry but I’m spent and can’t afford to be pleasant.\n\nI’m a naturalized citizen who is originally from Peru. I have no doubt that for many Republicans, there is no difference between me and an illegal immigrant. Stephen Miller, Trump’s odious anti-Latino adviser, certainly won’t differentiate. \n\nMany Latinos who voted for Trump think they’re safe because they’re legal, US citizens and this protects them. They think even their undocumented relatives who are hardworking and “not criminals” will be safe too. \n\nThey’re in for a rude awakening.', 'created': '2024-11-09 00:47:20', 'submission_id': '1gmu07t'}
{'comment': 'Sounds like they want to be reported for harboring illegals', 'created': '2024-11-09 00:38:08', 'submission_id': '1gmu07t'}
{'comment': '\n\n“They’ll never eat my face!”', 'created': '2024-11-09 04:45:02', 'submission_id': '1gmu07t'}
{'comment': "Report them to ICE. It's what they want. They should rejoice that more illegals are taken away.", 'created': '2024-11-09 05:16:08', 'submission_id': '1gmu07t'}
{'comment': "Absolutely spot on butt for the military they're going to have a hard time doing this since the US System isn't suited for an Autocratic rule we're the military can be used to carry out politics", 'created': '2024-11-08 23:47:20', 'submission_id': '1gmu07t'}
{'comment': ">While I do acknowledge that there could be more in this coming administration, I feel like their plans for this are just alt right jerk off fantasies, that won't actually happen. But fuck me, I have no idea what to expect. I'm just trying to be hopeful.\n\nTrump is going to spend his entire day rotting in front of Fox News or playing golf. He is utterly incompetent at managing a team or getting anything done.\n\nHe will absolutely, positively, undoubtedly damage things and leave us with a huge mess to clean up again. But I think it's important for us to remember just how bad at the job he is.", 'created': '2024-11-09 01:00:14', 'submission_id': '1gmu07t'}
{'comment': 'It’s the wall all over again', 'created': '2024-11-09 00:22:51', 'submission_id': '1gmu07t'}
{'comment': ">He was stalled and ran into a lot of snags. He ultimately deported less illegal immigrants than either of Obama's terms.\n\nI mean this lacks a lot of context. Yeah in total Obama deported more immigrants than Trump, But context matters. In Obama's second term 2013-16 he had 2.1 million deportations, while Trump from 2017-20 had 2 million deportations. So during those consecutive terms, the two presidents actually deported about the same rate. Now compare Obama full two terms total of about 5 million deportations to Bush 2's more than 10 million deportations, and in actuality Obama halved the amount of people getting deported from the previous administration. While Trump kept about the same pace as Obama. And in Trump's second term, it's safe to say he will likely surpass Obama's numbers.\n\nAlso again context matters, both in Obama's full two terms and Trump's first term they had things impeding their deportations, trials, lawsuits, a more honest media coverage. In Trump's second term the conservative federal courts and the conservative Supreme Court are fully on board with increasing deportations and racist billionaires have bought up the media. In Trump's first term, they didn't have a plan already mapped out and hadn't fully tested the loyalty of staff. This time around Trump was given a plan already and all of his inner circle has been tested to be fully loyal.\n\nLike the guardrails that were in place during both Obama's terms and Trump's first term are no longer there. If Trump wants to increase deportations, he absolutely can. And because he's a racist fuck, he absolutely will.\n\nAlso want to add, Obama's deportations at least tried to do it more humanely, focusing on those with criminal histories and the ones recently arrived (as those who arrived recently would have less ties and because deporting an undocumented immigrant that's been here 20 years was viewed as more damaging. Still sucks though). But Trump's deportations in his first term (and probably second term) didn't have a focus, his deportations didn't care if someone was a criminal or new immigrant or has been here a long time or even if they're children. We all saw this with the news reports of kids in detainment camps. Trump is going to deport people without caring about the situation and it will absolutely create a ton of chaos.", 'created': '2024-11-09 11:22:17', 'submission_id': '1gmu07t'}
{'comment': 'You\'re not wrong there.\n\n"Cack" (from the Latin word cacare, which means "to defecate") is also slang in the UK and Ireland for "shit" too...', 'created': '2024-11-08 23:55:25', 'submission_id': '1gmu07t'}
{'comment': 'You could be right. It might all just be for show. To show his MAGAs that he’s going to be swiftly doing something about it. \n\nI wonder if it’s a show of force to scare illegal immigrants to self deport. Make them leave voluntarily so they don’t have to do it. Sometimes just the threat of being arrested can be enough to scare people away.', 'created': '2024-11-08 23:34:41', 'submission_id': '1gmu07t'}
{'comment': 'Oh he will make Mexico pay like the wall', 'created': '2024-11-08 23:12:08', 'submission_id': '1gmu07t'}
{'comment': 'We keep saying that and those same\nPeople keep getting elected. We need to face facts. This is the America they want.', 'created': '2024-11-08 23:03:05', 'submission_id': '1gmu07t'}
{'comment': "I was taking with my folks today and I am actually just too the point where I don't care if the leopard eats their faces. In the scheme of things I'm much farther down the list of getting my face eaten than a lot of these people. I'm 40, white(very german, protestant last name), married with two kids. Good job with enough financial resources to survive for quite a while even if I lose it. My wife also works. No pre-existing conditions and have insurance to cover stuff. I also love in a state where unemployment and insurance are easily accessible. \n\nI will always vote and do my part. But I'm just not going to stress over it anymore.", 'created': '2024-11-08 23:46:30', 'submission_id': '1gmu07t'}
{'comment': "Or didn't vote at all.", 'created': '2024-11-08 23:11:27', 'submission_id': '1gmu07t'}
{'comment': 'Most of?? No, *more of* than last time; but not most of.', 'created': '2024-11-09 01:21:35', 'submission_id': '1gmu07t'}
{'comment': "I agree. Immigrant labor will never be replaced by Americans. Nobody would be able to afford a home, groceries, or health care. It's already crushing us. They are so delusional.", 'created': '2024-11-08 23:38:51', 'submission_id': '1gmu07t'}
{'comment': 'Kinda disgusting thought, instead of hoping that like his last term people stood up and tried to reign in his worse impulses you want America and Americans to suffer. There are better uses for your energy and political movements can happen outside of elections.', 'created': '2024-11-09 00:55:30', 'submission_id': '1gmu07t'}
{'comment': 'You’re asking for innocent people to wind up in makeshift camps, waiting to be deported with funding that hasn’t been allocated. You’re advocating for concentration camps. Please rethink your thought process here.', 'created': '2024-11-09 01:25:22', 'submission_id': '1gmu07t'}
{'comment': 'We get concentration camps.', 'created': '2024-11-09 01:26:04', 'submission_id': '1gmu07t'}
{'comment': 'Good question and do that Bankrupt the country to which Trump will Say default the debt to solve it', 'created': '2024-11-09 05:46:05', 'submission_id': '1gmu07t'}
{'comment': "And trump will claim the immigration problem is suddenly fixed and the garbage ass gop and right wing media won't bring it up again(till a dem gets in office)", 'created': '2024-11-09 02:37:45', 'submission_id': '1gmu07t'}
{'comment': 'You are absolutely correct. The logistics and financial burden of trying to round up what they say is 13 million undocumented immigrants will be unattainable. The data suggests that it would cost about $9 billion and take over 10 years to make this happen.\nAll the data is here: https://www.americanimmigrationcouncil.org/research/mass-deportation', 'created': '2024-11-09 01:49:55', 'submission_id': '1gmu07t'}
{'comment': None, 'created': '2024-11-09 02:17:48', 'submission_id': '1gmu07t'}
{'comment': '>We’ll see a few raids, a media firestorm, and then the news cycle will move on. Trump will deport fewer people than Biden. Again.\n\nDespite the Biden admin trying to tout their "tough on the border and immigration" spin ahead of the election, Biden admin has actually had LESS deportations than Trump. By the end after two terms, Trump will definitely have deported more people than Biden\'s term lol. If anything the Biden admin has has probably let in and kept more immigrants\n\n>The Trump 47 team is full of Republicans. They’re seem to be purging the alt-right people who surrounded Trump 45.\n\nNow I know you\'re full of shit. Cuz it\'s been widely reported to be the opposite. The John Kelly, stable minded republicans are the ones getting purged from Trump\'s inner circle and only the alt right and complete maga devotees remain. Gtfoh with trying to spread misinformation and complacency.', 'created': '2024-11-09 11:53:12', 'submission_id': '1gmu07t'}
{'comment': "Because they aren't very smart.", 'created': '2024-11-09 03:22:08', 'submission_id': '1gmu07t'}
{'comment': 'They thought he was talking about those other undocumented people - the bad ones.', 'created': '2024-11-09 03:32:31', 'submission_id': '1gmu07t'}
{'comment': "All these rich trumpers are in for a rude awakening when all the painters, home remodelers, landscapers, and home improvement workers are suddenly gone. The price of all of these things are going to skyrocket. They've screwed themselves over. The karens and boomers have no idea what's coming.", 'created': '2024-11-08 23:59:17', 'submission_id': '1gmu07t'}
{'comment': "I can't wait, it is gonna be funny watching this people freak out that all the prices are spiking and their shelves are bare because the grocery stores can't get enough food in anymore", 'created': '2024-11-09 00:52:53', 'submission_id': '1gmu07t'}
{'comment': "Me and my coworker are plumber at a construction site, I told him there a job for everyone, but a everyone for a job, because people sometimes have high standards and arent willing to work a job for them? Do you think Trump could last a day in construction hell no, we won't make it 30 minutes, fast food? The dude is a walking biohazard.", 'created': '2024-11-09 00:27:32', 'submission_id': '1gmu07t'}
{'comment': 'That’s why they’re probably getting deported to private prison to provide free labor', 'created': '2024-11-09 00:40:31', 'submission_id': '1gmu07t'}
{'comment': "I have a two major house renovation projects that I'm going to get started on within the next couple of weeks rather than waiting until next year as I had originally planned. I'm going to get that shit done before tariffs, deportations, etc. wreck the labor force and supply chain.", 'created': '2024-11-09 00:55:15', 'submission_id': '1gmu07t'}
{'comment': 'Yes, this is the path, who is going to work in: farming, construction and landscaping. Who will cook in many of our restaurants? You know many white folks willing to spend the day in the hot sun or freezing cold: harvesting lettuce(which must be done by hand- and requires a precise cut to not ruin the whole head), digging ditches, reroofing our homes all for bargain wages? Some undocumented workers are paid using a false Social security number, money they pay in but can never collect, thus building our coffers. In a reverse dynamic they are frequently hated and treated shoddily by the very people who depend on them. And yet they come, work tirelessly for scraps, so their children can have a shot at a better life. \nTo quote Lin Manual Miranda, \n“Immigrants they get the job done” .', 'created': '2024-11-09 01:39:14', 'submission_id': '1gmu07t'}
{'comment': 'Fun fact - getting rid of illegal immigrants would ALSO increase the per capita crime rates. \n\nWhy? If you discount the civil infraction of illegal immigration, first generation immigrants (the ones who come here) have a statistically significant LOWER crime rate than native born Americans. \n\n🤷🏻\u200d♂️', 'created': '2024-11-09 01:58:00', 'submission_id': '1gmu07t'}
{'comment': 'True', 'created': '2024-11-08 23:56:49', 'submission_id': '1gmu07t'}
{'comment': 'ABSOLUTELY!\nHe’s a Fucking idiot!', 'created': '2024-11-09 01:12:20', 'submission_id': '1gmu07t'}
{'comment': 'This as well. 💯', 'created': '2024-11-09 00:24:45', 'submission_id': '1gmu07t'}
{'comment': 'Won’t seem so unappealing when they gut social security, welfare, and minimum wage. Suddenly back breaking work at subsistence wages will greatly appeal to those who are otherwise facing starvation and death.', 'created': '2024-11-09 08:43:21', 'submission_id': '1gmu07t'}
{'comment': 'They’ll just do away with child labor laws. Some states already have.', 'created': '2024-11-09 14:16:23', 'submission_id': '1gmu07t'}
{'comment': 'The Trump administration and the GOP possibly “running” the entire government is going to be the U.S.’s version of Brexit but way dumber and worse.', 'created': '2024-11-08 23:57:20', 'submission_id': '1gmu07t'}
{'comment': "My hope is that someone, somewhere is a voice of reason, and they won't implement all their policies. Maybe a bit for show, so they can pose on camera with a bunch of them in the background, get their photo op in, but then stop it because they *know* that it will destroy our economy. I just can't imagine the results if they did follow through. I'm imagining Covid-level disruptions, except instead of trying to make it better, our government actively works on making it worse. Well, better get your toilet paper supply because we know those shelves will be empty in the days before Jan 20.", 'created': '2024-11-09 00:05:34', 'submission_id': '1gmu07t'}
{'comment': 'A mess', 'created': '2024-11-08 23:55:31', 'submission_id': '1gmu07t'}
{'comment': "Agreed. People certainly won't be enjoying $20 gallons of Carlos Rossi or $15 boxes of Fetzer anymore,\xa0that's for sure.🤣", 'created': '2024-11-09 01:39:24', 'submission_id': '1gmu07t'}
{'comment': 'Tell that to those who think immigrants live off the government', 'created': '2024-11-08 23:57:13', 'submission_id': '1gmu07t'}
{'comment': 'Republicans don’t care', 'created': '2024-11-09 00:41:40', 'submission_id': '1gmu07t'}
{'comment': 'My partner’s dad feels this way. When kids try to explain logic to him, he gets defensive.', 'created': '2024-11-09 01:33:38', 'submission_id': '1gmu07t'}
{'comment': 'Yikes', 'created': '2024-11-09 02:55:34', 'submission_id': '1gmu07t'}
{'comment': 'They will blame liberals', 'created': '2024-11-09 03:47:17', 'submission_id': '1gmu07t'}
{'comment': 'I bet my life that Trump will ensure that the poor stay poor', 'created': '2024-11-09 01:48:58', 'submission_id': '1gmu07t'}
{'comment': 'Sadly, folks need to blame someone for their problems.', 'created': '2024-11-09 03:47:53', 'submission_id': '1gmu07t'}
{'comment': 'At this point, I’m simply making sure I can help my family. I’m also looking for new jobs…I’m a federal worker.', 'created': '2024-11-09 00:42:55', 'submission_id': '1gmu07t'}
{'comment': 'Trump will cause things to increase', 'created': '2024-11-09 01:50:39', 'submission_id': '1gmu07t'}
{'comment': 'You’re right', 'created': '2024-11-09 03:46:39', 'submission_id': '1gmu07t'}
{'comment': 'I guess this is the hardship Elon wants', 'created': '2024-11-09 16:38:02', 'submission_id': '1gmu07t'}
{'comment': 'I am wary that some magas will be ready in their pickup trucks to start grabbing people themselves and to help out. Just give them the list.', 'created': '2024-11-09 00:09:28', 'submission_id': '1gmu07t'}
{'comment': "I feel this too.\xa0\n\n\nHe's a great reality show character - demonstrative,\xa0 emotionally reactive, manipulative, ridiculously comical - but he hasn't moved on from that role. He creates his own reality and lives there!\n\n\nSadly,\xa0he's convinced a healthy number of people to believe in his reality.\n\n\nIt's mass delusion at its finest.", 'created': '2024-11-09 01:49:23', 'submission_id': '1gmu07t'}
{'comment': 'That is what you should fear. He will sign anything his people put in front of him. He is too stupid to wreck the country, but the people around him will use him to get it done.', 'created': '2024-11-09 02:55:02', 'submission_id': '1gmu07t'}
{'comment': "I sure hope so. I really do.\n\nThe only wild card is the folks he has in his administration this time and exactly *how* they plan to carry out their project 2025 bullshit in *reality*. It's not going to be easy for them.", 'created': '2024-11-09 01:50:18', 'submission_id': '1gmu07t'}
{'comment': 'So I work with a lot of people that either have no status or are in the process of getting citizenship. They aren’t doing anything differently. \n\nTrump was full of it last time because, too many corporations would be hurt by losing all that cheap labor. It would also bolster unions because, they would be the only game in town. \n\nI think it’s toothless just like in Florida with Desantis.', 'created': '2024-11-08 23:37:33', 'submission_id': '1gmu07t'}
{'comment': 'Lol\n\n', 'created': '2024-11-09 00:49:36', 'submission_id': '1gmu07t'}
{'comment': 'It’s hard to read the tea leaves here. There’s many factors. \n\nYes there’s white supremacists who want all brown people out.\n\nThere’s Latinos who want only illegal immigrants out. \n\nThere’s white voters who want illegals out but not their friends or wives or husbands. \n\nThere’s Indians who voted for Trump and who want increased immigration from India. \n\nEveryone hears what they want to hear from the Orange One. He has an insane reality distortion field.', 'created': '2024-11-08 23:37:03', 'submission_id': '1gmu07t'}
{'comment': 'I didn’t say they were smart enough to actually read the history….', 'created': '2024-11-08 23:04:24', 'submission_id': '1gmu07t'}
{'comment': 'I had a *massive* melt down. I mean my neighbors probably think I\'m nuts now.\n\n\nBut I wanted to mourn it all and grieve in one go. When Social Security gets gutted I\'m going to shrug my shoulders. When tariffs cause prices to soar and people start losing their health care, im going to do what they did this week.\n\n\nShrug and say "meh, don\'t care". I am going to die of a heart attack no like otherwise.\xa0', 'created': '2024-11-09 00:13:52', 'submission_id': '1gmu07t'}
{'comment': 'And this is a big part of why people voted for him. They want people to be rounded up on day one. If he csnt mobilize local police, he will call on his base to doxx people and go get him.\n\n\nPeople are going to be pissed if they don\'t see anyone getting deported. They are excited about it. They cannot wait so they can go "at least i don\'t have it that bad"', 'created': '2024-11-09 00:11:45', 'submission_id': '1gmu07t'}
{'comment': 'Yep, that’s how it works. \n\nBig business won’t let a little shit like Miller ruin their day.', 'created': '2024-11-09 03:21:38', 'submission_id': '1gmu07t'}
{'comment': 'Big business doesn’t like little shits like Miller stepping on their turf.', 'created': '2024-11-09 02:02:55', 'submission_id': '1gmu07t'}
{'comment': 'They can’t overhaul the constitution. They will do a lot of damage that will cause a flip of the house and senate in 2026. Changes to the constitution take 2/3 of the states to ratify. Are there 33 states that will vote to change the constitution?', 'created': '2024-11-09 02:52:49', 'submission_id': '1gmu07t'}
{'comment': 'That would require analysis, planning and work. Why go to all that bother, when you can just lie about it? Trump’s not that ideological so he’s not gonna do all of that - too much trouble. Bannon, Miller and Vance can try, but Trump won’t take kindly to being challenged.', 'created': '2024-11-09 03:36:19', 'submission_id': '1gmu07t'}
{'comment': "But they'll blame Biden, or if there is even one Dem leader in their state, they'll blame them.", 'created': '2024-11-09 01:22:58', 'submission_id': '1gmu07t'}
{'comment': "No brain, no sense. They are all fools. The problem is that all this is real to us. This is not a game to be played with. Boomers may die off soon, but they are leaving a mess to their offspring. They couldn't care less for humanity after they are gone. My 60 year old neighbor asked me why they should pay a school tax as part of their property tax. I asked her if her kids ever went school, has she gone to school? She looked at me like I'm crazy and walked off. They can't compute simple things.", 'created': '2024-11-09 00:13:30', 'submission_id': '1gmu07t'}
{'comment': 'Between the tariffs and millions of workers being deported, prices will be through the roof. Produce, meats, coffee, chocolate, tea. People think food prices are high now- just wait what it will look like when those two Trump policies take hold. The UK saw this with Brexit and we are headed in that direction.', 'created': '2024-11-09 01:24:45', 'submission_id': '1gmu07t'}
{'comment': 'this is not "Karens and boomers" alone.\xa0 Genz men voted *hard* for trump.\xa0 \xa0', 'created': '2024-11-10 15:16:09', 'submission_id': '1gmu07t'}
{'comment': 'yeah but this is where the big monolithic companies come in with services to fill the gap', 'created': '2024-11-09 01:37:17', 'submission_id': '1gmu07t'}
{'comment': 'Somehow they will find a way to blame it on Biden, Obama, Harris 🤦\u200d♀️.', 'created': '2024-11-09 00:57:54', 'submission_id': '1gmu07t'}
{'comment': 'The scary part is that he has these evil people around him who are manipulating him, and the older he gets the worst it will get for us. Steven Miller I believe is Hitler incarcerated. If he puts him in charge of immigration and the border, no doubt we will see labor camps and nazis marching our streets.', 'created': '2024-11-09 00:40:17', 'submission_id': '1gmu07t'}
{'comment': "Did you hack Steven Miller's plans he wrote down for Trump? I wouldn't doubt it for a second.", 'created': '2024-11-09 00:50:10', 'submission_id': '1gmu07t'}
{'comment': 'Could happen EASILY.', 'created': '2024-11-09 04:08:23', 'submission_id': '1gmu07t'}
{'comment': 'Good thinking. Our supply will probably come from Russia, Iran, and North Korea soon.', 'created': '2024-11-09 01:00:36', 'submission_id': '1gmu07t'}
{'comment': 'This country was *built* on immigration; we’re the *melting pot*🗽 I mean, when my people came over, the neighbors probably thought “oh great, more Germans”, but I don’t have it thrown in my face all the time either.', 'created': '2024-11-09 02:27:01', 'submission_id': '1gmu07t'}
{'comment': 'I already heard today they are raising the gas prices?\nWhy because the other Countries know that there will be higher tariff cost to import oil!\nAnother fucking stupid move.\nJust wait I want everyone to remember all the fucking lies this guy said that he is going to make America great again!\nLet’s all start fact checking his ass while he’s so called the MAGAS President defiantly not my president.', 'created': '2024-11-09 01:16:42', 'submission_id': '1gmu07t'}
{'comment': 'Heck start by explaining who ends up paying the tarrifs', 'created': '2024-11-09 00:22:06', 'submission_id': '1gmu07t'}
{'comment': "That's probably a smart move. Depending on your state, State jobs are great!", 'created': '2024-11-09 01:41:18', 'submission_id': '1gmu07t'}
{'comment': 'Local police and border patrol/ICE will be the mechanism for this. Also probably national guard units from red states.', 'created': '2024-11-09 02:16:46', 'submission_id': '1gmu07t'}
{'comment': "I fear you are correct, and this time there won't be as many adults in the room.\n\nWe need to recognize this as the battle that we are in instead of the one we wish we were in.", 'created': '2024-11-09 04:29:29', 'submission_id': '1gmu07t'}
{'comment': 'This is true but sad. They are all cowards. Hiding behind a nazi who will do their bidding for them.', 'created': '2024-11-09 00:22:12', 'submission_id': '1gmu07t'}
{'comment': "Republicans have learned that as bad as the end of Roe was, and Trump's many blunders, they all still won the trifecta. I misspoke about the Constitution. They will try to create laws that are Unconstitutional, remove government workers and install Republicans in those positions. When in control of the FBI, they will detain and prosecute all their enemies.", 'created': '2024-11-09 03:15:56', 'submission_id': '1gmu07t'}
{'comment': "Boomers alone did not elect Trump.\n\nMen aged 18-30 were significantly pro-Trump. GenX and Millenials decided to vote in lower numbers. There were fewer Boomers voting than last time (they're dying off) but in the Blue States, Boomer men and women voted for Harris. \n\nRural counties excepted - but it was the majority of the Boomer population in most blue states.", 'created': '2024-11-09 03:59:11', 'submission_id': '1gmu07t'}
{'comment': 'idk your own age group, but blaming this on older generations while failing to notice how hateful and ignorant segments of your own generation may be is not going to bring you closer to a solution after the boomers are dead.\xa0 \xa0', 'created': '2024-11-10 15:19:54', 'submission_id': '1gmu07t'}
{'comment': '>The UK saw this with Brexit and we are headed in that direction.\n\nFunny thing you bring that up. It seems like those idiot pro Brexit Brits learned their lesson as new polling shows a majority of the British want to rejoin the EU lol. But unfortunately for them the pm they elected shot the idea down when questioned about trying to do that lol. It took about a decade and experiencing the financial and logistical pain for them to admit to their mistake, and now want to correct it. Unfortunately for them the people they put in power do not want go through with trying to change it back.', 'created': '2024-11-09 10:21:22', 'submission_id': '1gmu07t'}
{'comment': "Yeah, that part was a curve ball for me. I knew the internet incels had a following but I didn't think it was influencing them that much. I had thought they would be better critical thinkers. I was wrong.", 'created': '2024-11-10 15:20:14', 'submission_id': '1gmu07t'}
{'comment': 'Obligatory:\n\n', 'created': '2024-11-09 02:10:03', 'submission_id': '1gmu07t'}
{'comment': 'This is why I hope things get much, much worse for them', 'created': '2024-11-09 00:59:53', 'submission_id': '1gmu07t'}
{'comment': '*incarnate. We wish Miller was incarcerated😣', 'created': '2024-11-09 02:12:14', 'submission_id': '1gmu07t'}
{'comment': 'nah, trust me I would have leaked the contents lol\n\nI got the idea from the tech bro dictator in El Salvador. To lower crime, he rounded up 100,000 men who fit the profile of gangster and throw them in prison.', 'created': '2024-11-09 01:00:04', 'submission_id': '1gmu07t'}
{'comment': '\n\nThis is Conservatives right now.', 'created': '2024-11-09 20:45:19', 'submission_id': '1gmu07t'}
{'comment': 'I tried explaining who pays for tariffs to a coworker who is old…..he thinks companies will bring back jobs', 'created': '2024-11-09 00:43:59', 'submission_id': '1gmu07t'}
{'comment': 'and prison guards. family members son is a prison guard and the shit he spews on the daily is right up there with this regime.', 'created': '2024-11-09 02:50:14', 'submission_id': '1gmu07t'}
{'comment': 'Don\'t forget the random gun toting white dudes in conservatives states who think they\'re honorary members of the police or military. Those dudes will be emboldened to act like substitute cops and round up immigrants and many of their neighbors will cheer them on for it. So there will be the official mechanism via local police that Trump empowers, but there will also be a shit ton of "unofficial" mechanisms that will be used.', 'created': '2024-11-09 10:36:09', 'submission_id': '1gmu07t'}
{'comment': 'Right wing propaganda is good at boiling everything down to simple binaries. Combine that with the loneliness epidemic that most young people, especially young men suffer from, and you’ve got a recipe for the radicalization of young men. Women are surpassing them in education, in achieving major life milestones, and are happy to stay single, leaving young men increasingly alone and in lower-wage jobs. \n\nRight wing media blames women, immigrants, and the left for this rather than asking why young men can’t meet the same standards as women. That’s why.', 'created': '2024-11-09 15:25:47', 'submission_id': '1gmu07t'}
{'comment': "Lol...yes that's what I meant.", 'created': '2024-11-09 02:17:16', 'submission_id': '1gmu07t'}
{'comment': '*incarnate', 'created': '2024-11-09 14:17:39', 'submission_id': '1gmu07t'}
{'comment': 'While Russia relies on their very effective method, "throw an oligarg over the balcony". We should be adapting that instead.', 'created': '2024-11-09 01:07:04', 'submission_id': '1gmu07t'}
{'comment': 'I think he thinks with these high tarrifs American made would be cheaper even factoring in the higher wages. So everything go to suddenly way more expensive then slowly just more expensive\n\nOf course the only flaw in this plan is with everything costing more, people will consume less.', 'created': '2024-11-09 01:36:40', 'submission_id': '1gmu07t'}
{'comment': 'He can be both!😉', 'created': '2024-11-09 02:18:02', 'submission_id': '1gmu07t'}
{'comment': 'Sadly, folks relying on Trump’s tariffs are not thinking about Americans refusing to buy', 'created': '2024-11-09 01:50:11', 'submission_id': '1gmu07t'}
{'comment': 'Even better 😁', 'created': '2024-11-09 02:25:56', 'submission_id': '1gmu07t'}
{'comment': 'I’m not sure anymore. A lot of ppl hate him. I love the guy, but he’s not the answer', 'created': '2024-11-08 23:59:16', 'submission_id': '1gmtr2t'}
{'comment': 'Wait, we need working class voters to win elections? Have we checked this? Have we looked into this? This sounds familiar', 'created': '2024-11-08 22:18:57', 'submission_id': '1gmsu4l'}
{'comment': 'I mean this as a legitimate question: \nOther than being the most pro-union party of recent history and promising tax cuts and reducing prescription drug prices etc etc etc, what else are D’s supposed to do (on a national scale) that’s can compete with R-wing fairytale garbage?\n\nI’m really glad that she won her house race - and the article says she focused on local issues (and was probably helped by having the freedom to vote on lines her constituents wanted), but that doesn’t seem feasible for a national scale where not every town or city is exactly like hers.\n\nRe the anecdote about fentanyl and border security - doesn’t she remember that the border security bill proposed by D’s was blocked by R’s? How do you convey on a national scale hopes when the other side won’t give an inch? \n\nClaiming that D’s problem is that they’re being too condescending sounds very “high and mighty” to me', 'created': '2024-11-09 00:25:42', 'submission_id': '1gmsu4l'}
{'comment': 'she has good points in that the messenger is just as important as the message.', 'created': '2024-11-09 05:37:41', 'submission_id': '1gmsu4l'}
{'comment': "Literally everyone is using this loss to drag out their favorite hobby horse issue and go for a ride. The truth is, Harris lost because of post-pandemic inflation. Had consumer goods cost 10% less, she'd have won.", 'created': '2024-11-10 01:58:44', 'submission_id': '1gmsu4l'}
{'comment': 'Hmmm. Sounds like fakenews to me.', 'created': '2024-11-08 23:38:14', 'submission_id': '1gmsu4l'}
{'comment': "thanks for the gist. nytimes paywall and all lol. it's overreaction time. people posting and commenting. got the far lefties trying to recruit all the dems as they are upset and vulnerable. i hope honorable center lefts see that.", 'created': '2024-11-09 01:06:19', 'submission_id': '1gmsu4l'}
{'comment': 'No matter what democrats do they will never called “the radical left” and “communists”. I doubt I need to convince anybody of that fact, since we just saw it for 3 years. \n\nSo why not lean in and become radicals? Democrats aren’t going to win in the center.', 'created': '2024-11-09 01:16:41', 'submission_id': '1gmsu4l'}
{'comment': "b.clinton, obama, biden won. gore and kerry were close. h.clinton made campaign mistakes. all center lefts.\n\nharris was far left but switched to center left and polled great. she lost because she didn't focus her campaign on what was polled as the most important issues for voters.\n\n>Democrats aren’t going to win in the center.\n\nwell they certainly won't win on a platform that includes trans women in women's sports and defund the police lol.", 'created': '2024-11-09 01:49:02', 'submission_id': '1gmsu4l'}
{'comment': 'What you got against the LGBTQ+ community?', 'created': '2024-11-09 04:03:04', 'submission_id': '1gmsu4l'}
{'comment': "nice overreaction. exactly the thing the lefts, center and far, need to work on (i'm an independent that voted for harris). it's kinda bullish. trying to intimidate me with cancel culture? smh lol.\n\nnothing against. i'm for gay marriage. trans women in women's sports is not favored among natural born women athletes. i'm for their say in the matter as they are natural born and deserve their say. they can only make careers in sports and in their youths once and never again. to potentially wreck their dreams with natural born men is not fair.\n\nso that is something center lefts should not entertain unless they want to lose more elections. even you know that dems would have lost more votes if they campaigned on this...or with the far left where everyone else knows this is a part of the agenda.", 'created': '2024-11-09 04:33:56', 'submission_id': '1gmsu4l'}
{'comment': "He's right tho. McDonalds doesn't spend money advertising to Vegans - they don't participate in fast food.\n\nGen Z men showed up in droves. The left stayed home and didn't participate at all. Who do you think the next Dem candidate will advertise towards?\n\nNot voting for Harris was a huge botch on the left.", 'created': '2024-11-09 04:40:07', 'submission_id': '1gmsu4l'}
{'comment': 'I literally can’t even look at some of the people in my life the same way. As a gay person, it’s really, really, really fucking hard to want to associate with someone who just jeopardized my right to marriage to tryin save a few bucks on gas. There are going to be cut offs.', 'created': '2024-11-08 22:40:57', 'submission_id': '1gmssk6'}
{'comment': 'someone just tried that on me on Reddit. "you\'re punishing me for my opinions."\xa0\xa0\n\n\nI said a vote is an act, not just an opinion.\xa0 *failing* to vote is an act.\xa0 you vote for the things that you want or that you\'re prepared to accept.\xa0 you\'re complicit in everything that will be done.\xa0\xa0\n\n\n\xa0be pleased, since the things that are coming are things you wanted.\xa0\xa0', 'created': '2024-11-08 22:04:14', 'submission_id': '1gmssk6'}
{'comment': 'its also the MAGAs are super vicious and have anger issues and are like "hahaha we owned the dumb libs".', 'created': '2024-11-09 00:54:40', 'submission_id': '1gmssk6'}
{'comment': 'I was willing to give people the benefit of the doubt in 2016. He was an unknown quantity and Hillary was deeply unpopular. But now we know exactly who he is. Anyone who heard his rhetoric and voted for him anyway is dead to me.', 'created': '2024-11-09 02:44:35', 'submission_id': '1gmssk6'}
{'comment': 'My wife and I are going through this right now with friends and family who voted Trump.\n\nLook, we can agree to disagree on politics. Should we raise or lower taxes? Should we take part in foreign wars? Should we increase or decrease military spending? Whatever. Issues that Democrats and Republicans have debated over for years.\n\nWhat we can’t agree to disagree on are human rights, like my wife’s trans cousin’s right to exist or obtain healthcare. Like the right of our gay friends’ ability to marry who they love. Like the right of my friends to make decisions for and about their bodies. Like the right of our friends’ kids to go to school without the fear of being shot and killed. \n\nThey like to say “both sides are bad”, but only one side is actively trying to make things *worse* for people they don’t like. At least Democratic policies, by and large, help *everyone.*\n\nAnd it’s fucking infuriating.', 'created': '2024-11-09 04:10:55', 'submission_id': '1gmssk6'}
{'comment': 'As a minority (Latino), a labor union member, middle class, and father of 2 girls—I could not agree with this more!!', 'created': '2024-11-09 02:15:19', 'submission_id': '1gmssk6'}
{'comment': '“It’s just politics” is so out of touch and privileged. \n\nIt’s our lives.', 'created': '2024-11-09 04:42:09', 'submission_id': '1gmssk6'}
{'comment': None, 'created': '2024-11-09 05:33:21', 'submission_id': '1gmssk6'}
{'comment': 'Make the necessary cuts to those people cause you need to find a tribe that understands and accepts you and there are people out there. I cut off my whole family because they’re racist, sexist and just overall horrible beliefs towards others and I am fighting and becoming the person I want to be. We grow by having those that push us to grow and understand and empathize with who we are. Be the change you want to see in the world and nothing can break you. No need to have toxic people in your life that never cared about you. Just not worth it', 'created': '2024-11-08 23:59:19', 'submission_id': '1gmssk6'}
{'comment': "Exactly how I feel. I ended some friendships the first time around and this time, I'll elimate more.", 'created': '2024-11-09 01:15:22', 'submission_id': '1gmssk6'}
{'comment': "So I just got married last month and have written most of my thank you cards. Each and every one of them is heartfelt and filled with love. My Aunt officiated my wedding. She's a raging trump supporter and so are her boys (who are my favorite cousins). I almost wanna drop this message into their cards before I seal them up. I'm so disgusted. They know how badly I've wanted children (I'm 34F) and to vote against the rights of my body is disgusting. I want to do the right thing by cutting them out but to them, it won't solve anything or change their minds. It's like being between a rock and a hard place cuz I love my family but hate what they've done.", 'created': '2024-11-09 03:08:40', 'submission_id': '1gmssk6'}
{'comment': 'I cut off all my maga extended family. Good riddance.', 'created': '2024-11-09 04:46:12', 'submission_id': '1gmssk6'}
{'comment': 'I\'m going through this now with family and friends. Yes, we can agree to disagree on who you vote for, as that is your right.\n\nBut the fact that so many of my family members and friends voted for someone who wants to strip people of their basic human rights is disgusting and embarrassing. I hope they only ever walk on legos barefoot. \n\nTrump only cares about himself. But somehow I\'m in the wrong for voting for Harris/Walz. Yeah, okay. 🙄 \n\nThe worst thing is how hypocritical they are because they won "a fair election" since apparently 2020 was rigged. But it\'s not okay for those who voted differently to be upset and anxious about the next four years? The amount of hate and threats being spewed by my friends and family is enough for me to never want to see them again. Good riddance.', 'created': '2024-11-09 05:37:47', 'submission_id': '1gmssk6'}
{'comment': None, 'created': '2024-11-09 14:17:44', 'submission_id': '1gmssk6'}
{'comment': 'When I hear “don’t let politics hurt our relationships”\n\nI think\xa0\n\n“Don’t let my vote to hurt people like you hurt our relationships”\n\nMy response is “you voted to harm people like me and my family, I won’t let it happen again”', 'created': '2024-11-09 21:51:40', 'submission_id': '1gmssk6'}
{'comment': 'Political views reflect the type of person you are. It’s not just politics that’s ruining your relationships. It’s the people themselves. Politics just gives them a reason to fly their true colors.', 'created': '2024-11-09 21:19:49', 'submission_id': '1gmssk6'}
{'comment': "Exactly. No one says it to me any more, because if you do, I won't be hanging out with you or communicating with you. Life is way too short. I have so many friends I want to see and not enough time to see them as often as I'd like - why would I insert this poorly framed bullying (which is what it is) into my life?\n\nThe personal IS political.", 'created': '2024-11-09 02:59:14', 'submission_id': '1gmssk6'}
{'comment': "If they really think he economy will improve under Trump, they're about as stupid as one can be.", 'created': '2024-11-09 18:12:49', 'submission_id': '1gmssk6'}
{'comment': '“Some of you may lose your rights or die, but it’s a sacrifice they’re willing to make for the “promise” of cheaper eggs and gas” …fuck ‘em', 'created': '2024-11-09 19:27:05', 'submission_id': '1gmssk6'}
{'comment': 'Most of relatives are both staunch and fierce Republicans, who will never vote democratic due to religion. Even, though I myself am Christian, I could never understand how voting Republican is the " only correct, moral choice ". Some of relatives even seem to be in love with Trump. Because of this, it is highly likely that I will never speak to them ever again, especially if they voted Trump back in.', 'created': '2024-11-09 03:04:32', 'submission_id': '1gmssk6'}
{'comment': "It's weird how gay sex hetero sex is always on the mind of Republicans\n\n Good Christian Jesus loving family values Republicans \n\nNot guns they don't even talk about guns just who's having sex with who \n\nlol 😆", 'created': '2024-11-09 17:08:33', 'submission_id': '1gmssk6'}
{'comment': 'I already knew that most of my aunts, uncles, and cousins were racist and homophobic, which is why I steered clear of them. I’ve been worried about my sister for the last few years because of the media she consumes and thought she was leaning into the alt-right. My parents have always been super religious and old-fashioned to the point of being slightly bigoted, but I held my tongue around them and my sister to keep the peace. I’m done though. I know who they are and what they stand for.', 'created': '2024-11-09 02:39:57', 'submission_id': '1gmssk6'}
{'comment': 'I have been estranged from all my family, in laws included, prior to trump, they proved being traitors with trump they are not my people. Fuck them all.', 'created': '2024-11-09 12:53:30', 'submission_id': '1gmssk6'}
{'comment': 'I’m going through this right now and it hurts.', 'created': '2024-11-09 22:28:15', 'submission_id': '1gmssk6'}
{'comment': "I've let 4 friends, least of which I've known 10 years...go, because of their vote for drumpf. \nI'm not having any drumpf supporters in my life.", 'created': '2024-11-09 02:45:05', 'submission_id': '1gmssk6'}
{'comment': 'Reminds me of that Family Guy skit, speaking of "miscalculations" --\n\n[https://youtu.be/t0J2MS5kJ2M?t=14](https://youtu.be/t0J2MS5kJ2M?t=14)', 'created': '2024-11-09 04:15:30', 'submission_id': '1gmssk6'}
{'comment': 'One of my friends discovered her Democrat husband voted for Trump. She kicked him out to the spare room and Im pretty sure they’re headed for divorce. I couldn’t believe he told her.', 'created': '2024-11-09 18:58:31', 'submission_id': '1gmssk6'}
{'comment': '👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼', 'created': '2024-11-09 21:33:59', 'submission_id': '1gmssk6'}
{'comment': "When I say I will never date a Republican people often roll their eyes. I am not just talking about a MAGA Republican, ANY Republican. Your politics are formed by your morals and beliefs. I am a forty something middle class widowed white woman. I have almost nothing personally to worry about when it comes to my rights (my daughter on the other hand...)especially since I have flight benefits so if myself or daughter need healthcare we can fly anywhere in the world to get that healthcare. I believe in doing no harm. I believe more rights for others doesn't mean less rights for me. I don't really care if I pay extra in taxes so families have food on their table or health care. Republicans don't feel this way", 'created': '2024-11-10 01:25:01', 'submission_id': '1gmssk6'}
{'comment': 'Losing friends and family over voting Trump was part of the deal. They voted their family out of their life. They should be happy to get what they voted for?', 'created': '2024-11-10 03:50:13', 'submission_id': '1gmssk6'}
{'comment': 'They don’t actually believe that the bad things we are all thoroughly convinced are coming, are coming. Full stop.\n\nSure. There are racists and misogynists and neo-Nazis. Even a lot more of them than makes me comfortable. They voted to hurt you. But mee-maw who came to your gay wedding two years ago, had a nice time, gave a nice gift, calls and chats on the holidays? She voted Trump, but she’s not a Nazi.\n\nThere is a consistent messaging across all mass and social media from right wing propaganda disguised as legitimate news, or openly partisan “entertainment.” It tells them that Trump is not as bad as “they” say. That America and the economy need his policies. That he was president before and nobody died! Nobody took away any rights. They just gave them to the states! Where it always should have been! All the Dems have is Trump is bad, so they try and make him sound awful.\n\nLies, you say? Of course they are. But that’s not the point. Print a retraction no-one will see later, get the eyeballs now.\n\nThe democrats failed to effectively counter this message. They failed to effectively tell a story of what they would do. They failed to understand the change in the communications landscape.\n\nYour cousin, you grandma, your friend, whoever. They don’t BELIEVE they voted against you. They love you, and if they believed it would hurt you they would have stayed home. That is our fault, collectively. “We” didn’t make it clear. Being so mad at them we cut them off is going to make them see reason, see the harm they are doing… how, exactly?\n\nWe’re fond of saying that hurt people hurt people. Pretty good example of it from OP.', 'created': '2024-11-10 15:12:03', 'submission_id': '1gmssk6'}
{'comment': 'I made this post on Facebook (I don’t post politics there)\n\nhttps://preview.redd.it/thrd735s0xzd1.jpeg?width=828&format=pjpg&auto=webp&s=37ebeb1aeb5dbf0707817bdf4b255f99b44bd91a\n\n(See next comment for his response)', 'created': '2024-11-09 19:00:54', 'submission_id': '1gmssk6'}
{'comment': 'My best friend is married to a Trumper and her two grown boys are as well. She says she hates him and promised me she would vote but I don’t know if she did. We’re in our 50’s and I’ve known her my whole life. She’s my sister. But we’re night and day with engagement. I don’t know how you can step back from the political landscape yet she’s happy to say, “I’m not interested in politics.” I’ve tried to no end to explain the human rights, social, economic, impacts of what the Republican Party has had on this country. I told her about the women and girls giving birth to their rapists children and she was horrified. But, life goes on with her family. Good for them. I just don’t know how to move forward with those who voted against me, my LGBTQIA family, the Constitution, Democracy, oh, and THEMSELVES.', 'created': '2024-11-09 22:08:59', 'submission_id': '1gmssk6'}
{'comment': 'Winning a person\'s heart is only through love and it takes much more effort & time than destroying an already established relationship. If you love that person enough, tell them why you\'re hurt by their choice, instead of labeling them forever. Not everyone voted for Trump because he\'s everything they want. Some voted mostly because it\'s so easy to believe his picture of "they\'re going to get you" and everything will be doomed when you\'re driven by fear. He used the fear and created a division. Don\'t play into his hands by rejecting your Republican friends & family. There\'s no other way.', 'created': '2024-11-09 19:01:32', 'submission_id': '1gmssk6'}
{'comment': 'Yeah, sure. Where was this vibe four years ago?', 'created': '2024-11-09 00:15:46', 'submission_id': '1gmssk6'}
{'comment': 'Gay guy here. I texted several of my coworkers who are close friends Tuesday night about how scared I was regarding where the election was going, and they all said that it is a nonissue for conservatives these days and that nothing is going to happen to me or my rights. They said the issue was regarding trans people. After asking them about why they fucking care about who another person is, I reminded them that my rights are roughly 20 years old going back to Lawrence V Texas and that Roe was 50 years old. They changed their tone after that. I told them that I was envious of them because their relationships are never on the ballot, but mine is with every freaking election. They said “they understood my fear” after I said that, but still think nothing will happen. I told them they’re going to have to give me some space and not communicate with me at work for a while. One of them told me that this is why she hates politics is that it taints friendships. I responded our friendship is going to be ruined if my partner and I have to move to another state. It’s been a bad, bad, bad few days. I feel you and much love to you.', 'created': '2024-11-09 00:21:45', 'submission_id': '1gmssk6'}
{'comment': 'same. as a lesbian one of my coworkers is gay and was one of my closest friends. i found out he voted for trump and i just do not want to speak to him at all. i have another coworker [was a friend] as well who always says "its just politics". but its not. i hold my friends to a high standard. i do not want to be friends with somebody who has massively different morals than me. so yes i just consider them coworkers', 'created': '2024-11-09 03:12:54', 'submission_id': '1gmssk6'}
{'comment': 'Yep my wife and I have been married for a little over a year. My dad, his brothers, their wives, and most of my cousins are all Trump lovers. I’m thankful my brother, his wife, and some of my cousins my age voted blue in deeply red states. My MIL loves Trump but she refuses to listen to reason. 3/4 of her kids and their spouses voted blue. My SIL was yelled at a guy while out running Wednesday morning. The guy said she better be careful because come January he can grab her by the ***** and Trump won’t care. No matter how much any of her kids try to tell her she supports someone who wants to permanently ban abortion, nullify our marriage, or gut her SSI and Medicare, she doesn’t care. \n\nWhat’s the saying? Arguing with a Republican is like playing chess with a pigeon. You can make all the right moves, but they’ll still knock over the pieces, shit on the board, and strut off like they won.', 'created': '2024-11-09 23:47:06', 'submission_id': '1gmssk6'}
{'comment': "Exactly. They will get what they voted for, and if they didn't vote, they will get it, too.", 'created': '2024-11-08 22:24:46', 'submission_id': '1gmssk6'}
{'comment': 'Thank you for preaching this. No room for claiming victim when you were in control of your actions and your choice to vote for a dictator', 'created': '2024-11-09 00:01:41', 'submission_id': '1gmssk6'}
{'comment': 'Pure facts.', 'created': '2024-11-08 23:53:31', 'submission_id': '1gmssk6'}
{'comment': "Seems most are moving well past the annoyance over opinions, and holding people accountable for actions. These aren't minor disagreements over differences between two opposing economic policies, but outright regressionism and ideology based on hate and destruction, all to enrich the elite class, and pander to Christian fundamentalism.", 'created': '2024-11-09 07:53:32', 'submission_id': '1gmssk6'}
{'comment': 'With what Trump will do to the economy, the libs might be the only thing they ever own 🤷🏻\u200d♀️', 'created': '2024-11-09 02:42:06', 'submission_id': '1gmssk6'}
{'comment': '[removed]', 'created': '2024-11-09 02:21:24', 'submission_id': '1gmssk6'}
{'comment': 'I mean that makes sense when you look at who they look up to.', 'created': '2024-11-09 18:45:04', 'submission_id': '1gmssk6'}
{'comment': 'This. 100%. I’ve forgiven anyone who only voted for him in 2016. They made a mistake. If they voted for him again in 2020 and especially now in 2024, fuck them all. They can rot in hell.', 'created': '2024-11-09 18:33:51', 'submission_id': '1gmssk6'}
{'comment': '>What we can’t agree to disagree on are human rights, like my wife’s trans cousin’s right to exist or obtain healthcare. Like the right of our gay friends’ ability to marry who they love. Like the right of my friends to make decisions for and about their bodies. Like the right of our friends’ kids to go to school without the fear of being shot and killed.\n\nDon\'t forget "Nobody is above the law," not even the president. We can\'t disagree on that basic thing. Imo his supporters being okay with Trump being able to run again (despite Jan 6 and giving away classified docs and national intel) and being happy when he gets away with crime, is pretty much an extension of their belief that they should be able to get away with crimes too. People who support Trump and don\'t want him to be held accountable, I think have their own hidden criminal intentions.', 'created': '2024-11-09 10:02:08', 'submission_id': '1gmssk6'}
{'comment': 'You deserve better. Maybe you could try "meet-up" or an app like it for better friends💙.', 'created': '2024-11-10 01:30:22', 'submission_id': '1gmssk6'}
{'comment': 'I feel that so much because everyone except my siblings, mother and partner in my family also voted for Trump. 😔', 'created': '2024-11-09 04:08:10', 'submission_id': '1gmssk6'}
{'comment': "Yes! This is another very important aspect for me. I don't feel safe and I fear when my daughter goes out now. Especially with all of the horrible things being spewed out by the maga bro boys and rapist criminals online towards women. With a high percentage of white men and also way too many white women voting for this person, I don't trust anyone anymore unless I know their stance upfront. I am so disappointed in white women, it's shameful. Speaking as a 57 white female.", 'created': '2024-11-09 19:14:09', 'submission_id': '1gmssk6'}
{'comment': 'That’s true, but what is the worst thing is that they are going to vote for this tyrant over the price of eggs. Suck it up people and pay for it. Men and women went to war and died to protect our freedoms.', 'created': '2024-11-09 22:32:41', 'submission_id': '1gmssk6'}
{'comment': 'And my dad commented this\n\nhttps://preview.redd.it/k376vptv0xzd1.jpeg?width=828&format=pjpg&auto=webp&s=088c22e0238719b98bd750802a721009166c66bb\n\nNotice I didn’t mention who I voted for or if I voted at all. Notice I didn’t mention anything he referenced.\n\nMis/disinformation in legacy and social media has truly ruined society and the people in it.\n\nI am in the process of slowing relations. I knew he was conservative (at least following 2016), but it is just hard to talk to people when they respond to everything with this sort of Fox News word salad.', 'created': '2024-11-09 19:03:15', 'submission_id': '1gmssk6'}
{'comment': "This is a bold statement considering the tone of this thread so I must respond. The thing is, for me, I have held this mindset for so long...what you're saying. Giving compassion and understanding. Empathy and the benefit of the doubt. Where has this gotten us? I've determined it's enabling that behavior and I need to hold strong boundaries now. \nIf someone voted for this person, imo, they are either stupid and don't research anything before they spew their conspiracies and/or hate. Or they know exactly what's going on and are racist, misogynistic, homophobic, etc. Or they have one or two small issues they agree with and ignore the huge mountain of hate in front of them. Or maybe all three!! It has gotten us nowhere to try to appeal to these people. How can I trust someone who would act so nice to my face and then turn around and vote against common and moral decency? How can I respect them or their nasty beliefs any longer? Without trust and respect, it's over for me. Giving into this way of thinking has gotten us nowhere. Worse, it has taken us backward. Waaaay back!! I for one am not having it in my personal relationships any longer.", 'created': '2024-11-09 19:24:34', 'submission_id': '1gmssk6'}
{'comment': "Straight woman here. I can't wrap my head around why the hell anyone gives a shit what other people do that doesn't have an ounce of impact in their own shit life. I am sorry you have to live in fear to love someone. Hopefully, we can create a safe space on the West Coast if needed. No one should have to live their life like this. It shouldn't even be an issue on the table.", 'created': '2024-11-09 04:16:23', 'submission_id': '1gmssk6'}
{'comment': 'I\'m a SoCal native and a lesbian, my partner of 3 years is trans. My grandmother messaged me about how I shouldn\'t worry, Gavin Newsome is working to protect gay rights and California looks "promising". I just don\'t understand how she can acknowledge that the man she elected is a danger to my rights and safety and think it\'s okay because my governor will protect me from our president.', 'created': '2024-11-09 20:16:17', 'submission_id': '1gmssk6'}
{'comment': 'Politics doesn’t have to ruin friendships if you value your friends’ livelihoods in the first place.', 'created': '2024-11-10 02:00:45', 'submission_id': '1gmssk6'}
{'comment': 'I’m a gay man. I’ve been friends with a girl for 35 years, but I’m done (actually have been done for a while). It’s funny because her closest friends are liberal and some are gay, but yet she worships Trump! He has given people permission to be hate-filled, bigoted, and racist. She and I have had many little arguments about things. I can’t with her anymore….so I stay away. I haven’t talked to her because I know a comment will come and I will have to hurt her feelings…..I’m done….', 'created': '2024-11-09 04:31:02', 'submission_id': '1gmssk6'}
{'comment': 'Holy shit.. I’ve never heard that.. but… i imagine Trumps stupid ass strutting around like a pigeon knocking over giant chess pieces with diarrhea shit running out his pants leg… thinking he’s a great guy. 🤬 I can’t tell you how bad I hate him', 'created': '2024-11-10 01:24:08', 'submission_id': '1gmssk6'}
{'comment': 'Yes!!!! This!! Putting aside not minding your own business when it comes to healthcare, etc. The guy is a FELON, who instigated an insurrection and truly does not care about the law. He spends more time avoiding the law than anything else.', 'created': '2024-11-09 18:48:52', 'submission_id': '1gmssk6'}
{'comment': None, 'created': '2024-11-09 21:30:58', 'submission_id': '1gmssk6'}
{'comment': 'You nailed it! How can I **trust** my friend knowing they voted for that man!! I don’t respect their decision, especially since my “friend” refused to talk about it. She says she’ll talk about it, but “not now” — she doesn’t feel up to discussing the situation. 😔😫😢', 'created': '2024-11-09 21:52:51', 'submission_id': '1gmssk6'}
{'comment': 'People are selfish and economic fear won this election. When the economy is better, these same people can start to worry about all the things you\'ve mentioned. I\'m not saying that Democrats caused the economy to become like this, it was actually the pandemic all around the world and the US has been doing much better than so many other countries in recovery. They don\'t see Trump as a friend, maybe they wouldn\'t even sit down and talk with him given the chance. They are "afraid" of losing their homes and jobs. A propaganda that was devilishly and successfully run by the Trump campaign. I don\'t care how many downvotes these comments will get me. I\'m also grieving, but I will not believe that all the people who voted for Trump love a racist, a rapist, a dictator, etc. Some of them voted for Obama before. Does that make them a better person a decade ago? Did they lose all common sense in 8-10 years? No, but they may be gullible enough to think that Trump is their savior. I\'m not supporting the president-elect, I\'m asking people to have faith in their Republican friends and family (not the die-hard no matter what types), because in the end, we win when they swing to the blue side.', 'created': '2024-11-10 03:53:46', 'submission_id': '1gmssk6'}
{'comment': 'Straight 70 year old lady here. This whole scenario is fucking nuts. All of these supposedly straight white dudes in politics think that it is okay to ruin people’s lives. I bet half of them are closeted gays and hate that part of themselves so they take it out on gays etc. They are also the ones who thinks it’s perfectly fine to not give a woman any life saving measures if they think they are trying to abort. I can’t believe that this is the world we live in now. There is ZERO compassion or empathy for their fellow human beings. I’m an atheist but what happened to the notion that we should love our neighbour? I’m absolutely appalled, devastated and disgusted that this hate even exists. To all the LBTQ folks, young women, coloured, immigrants etc I’m so sorry. I truly am sorry. You should have the same rights as every other human being in America.', 'created': '2024-11-10 07:40:33', 'submission_id': '1gmssk6'}
{'comment': "There are ways they feel it impacts them. But they're surface level and fall apart with actual critical thinking.", 'created': '2024-11-09 23:11:32', 'submission_id': '1gmssk6'}
{'comment': 'My grandson is gay. I have a 13 year old granddaughter. I am on many of the Democrats\' donors\' reports. When the question of high gas prices was posted on Nextdoor, I responded, "Corporate greed." I received a DM threatening me. I am terrified!', 'created': '2024-11-10 01:46:57', 'submission_id': '1gmssk6'}
{'comment': 'I have no words other than I’m so sorry. I’m straight female, but my mom also chose Trump over my sister, my daughter, her disabled grandson and me. I’m thinking of never sending her a pic of me or the kids again, just a pic of Trump.', 'created': '2024-11-10 03:38:00', 'submission_id': '1gmssk6'}
{'comment': 'Well said. Someone sent me a picture of something they saw online that said “If you don’t understand why your gay friend is worried right now, you don’t have a gay friend. You know a gay person.” That hit me really fucking hard. I sent it to my friends after I got it.', 'created': '2024-11-10 02:36:05', 'submission_id': '1gmssk6'}
{'comment': 'I can tell and trust me you are not alone!', 'created': '2024-11-10 01:24:58', 'submission_id': '1gmssk6'}
{'comment': 'And even if people take out/ignore the felony. The guy has been trying to give away and sell classified information. Like spray tan man has no reservations about betraying secret agents and our military and intelligence network. That alone disqualifies him from being the leader of our armed forces. Yet somehow "pro military" republicans absolutely do not give af and chose to vote for a traitor anyway.', 'created': '2024-11-10 04:25:11', 'submission_id': '1gmssk6'}
{'comment': 'Thanks for sharing. Just signed.', 'created': '2024-11-10 16:02:16', 'submission_id': '1gmssk6'}
{'comment': "You do you. As I said, I believe we have played nice for far too long. Are there outliers to my opinion? I'm sure there are. It's beholden on them to deliver an olive branch for letting us down. It's up to them to do more research before voting and not after. If they listened to one of Trump's rallies, read any of his tweets, seen any of his interviews then they should know what he stands for. They should know without even really doing any research. And to still vote for him? That goes way beyond gullibilty, in my mind. That shows what they stand for and what they don't stand for. Zero respect from me, and zero empathy since for all of their so called fears about the economy, it is more than likely to get much worse for them and for all of us if current reporting, as well as prior predictions, hold true. Not to mention, where is their empathy for migrants and marginalized communities, and women? I haven't seen any coming from them.\nAnd one more thing - we already had a trump presidency and 3 election campaigns from him. He was horrible the first time and has spewed nonstop vitriol for the past 4+ years. And he tried to steal 2020! Caused and insurrection!! How much leeway do these people still need? Brother!", 'created': '2024-11-11 21:57:49', 'submission_id': '1gmssk6'}
{'comment': 'The narcissists in my life all voted for that man. They never cared about anyone else anyway.', 'created': '2024-11-10 06:54:33', 'submission_id': '1gmssk6'}
{'comment': "Well, I do not think that I have any Republican friends, so I have to admit that I don't know what it feels like. So I probably am on the same page as you. The only thing I want to do differently is to teach them a lesson by example. By how cool we can still be with a result that messes up everyone's lives in the big picture. No matter how much it pisses us off. Instead of creating a further division, keep people together. You never know who'll save your life if you happen to have an accident by the side of the road and a person is going to pull your car out of a hole with their truck. Just an exaggeration to point out that good people are still good people, at their roots. I choose to believe in that for a better future.", 'created': '2024-11-11 22:12:34', 'submission_id': '1gmssk6'}
{'comment': 'Makes me wanna live in Minnesota', 'created': '2024-11-08 22:08:18', 'submission_id': '1gmsnq6'}
{'comment': "This doesn't light up my day - it makes me feel sadder.", 'created': '2024-11-08 22:28:04', 'submission_id': '1gmsnq6'}
{'comment': 'God bless this precious, sweet man! Just seeing his face does still bring joy to my heart. Love you Tim Walz and you will not be forgotten. 😊💜💙', 'created': '2024-11-08 22:32:14', 'submission_id': '1gmsnq6'}
{'comment': "anyone who though dems are too elitist needs to have their head examined..\n\nthat's the most average looking house and clothing ever.", 'created': '2024-11-08 22:14:03', 'submission_id': '1gmsnq6'}
{'comment': "The Walz family is one of the bright spots of the 2024 election cycle. It wasn't enough, but Walz ran a great campaign. He was the most popular politician of all on either ticket.", 'created': '2024-11-08 22:56:33', 'submission_id': '1gmsnq6'}
{'comment': 'I am ready to fight now.\n\nBut extremely proud he represented us.', 'created': '2024-11-08 23:06:29', 'submission_id': '1gmsnq6'}
{'comment': '🐈: “Okay hooman, here’s what you’re gonna do: you will lead the state with the best of your abilities, and it will be a great state. The hoomans of other states will be so jealous and see Minnesota as an example to aspire for. And then you’ll run again the Republicans and win back the White House in 2028. For further advice, take me to the treats!”', 'created': '2024-11-08 22:30:27', 'submission_id': '1gmsnq6'}
{'comment': "It's crazy to me how much Maga could so ruthlessly attack two of the sweetest people to have ever graced our government. If I've learned one thing, is that it never pays to be the good/nice guy.", 'created': '2024-11-08 23:20:21', 'submission_id': '1gmsnq6'}
{'comment': 'In a way, I’m glad his beautiful family won’t have to live with the barrage of hateful social media that comes with being part of the White House.', 'created': '2024-11-09 00:44:21', 'submission_id': '1gmsnq6'}
{'comment': 'Love him !!', 'created': '2024-11-08 22:30:28', 'submission_id': '1gmsnq6'}
{'comment': 'I hope I get a chance to vote for him again.', 'created': '2024-11-09 00:13:54', 'submission_id': '1gmsnq6'}
{'comment': 'Tim would have that chair', 'created': '2024-11-08 22:25:22', 'submission_id': '1gmsnq6'}
{'comment': 'This photo immediately made me get choked up. What a good person he is. I hope he stays active on a national level as well as in Minnesota.', 'created': '2024-11-09 01:44:36', 'submission_id': '1gmsnq6'}
{'comment': 'I was ready for more time with him, eventually at the helm. Nice Matters', 'created': '2024-11-08 22:36:23', 'submission_id': '1gmsnq6'}
{'comment': 'We love you Coach!!', 'created': '2024-11-08 23:58:17', 'submission_id': '1gmsnq6'}
{'comment': 'I so wanted him and Kamala in the White House. A VP who unabashedly cared for people, who loved his kids, and loved this country. For just a moment we all had joy.', 'created': '2024-11-09 02:31:43', 'submission_id': '1gmsnq6'}
{'comment': 'The thing that makes me so sad about not getting Walz as a VP is that I thought he’s a good answer to the crisis of masculinity that seems to be a problem with many young men not too different from me. He seems like a really good male role model that is the meat and vegetables flavor of masculinity as opposed to the junk food type personified by the likes of Andrew Tate and company.', 'created': '2024-11-09 03:04:42', 'submission_id': '1gmsnq6'}
{'comment': "Sigh ... he's such a good man.", 'created': '2024-11-08 23:44:14', 'submission_id': '1gmsnq6'}
{'comment': 'My Dad passed away a few years ago and Tim Walz gave me such comforting and happy Dad vibes. I’m really sad we don’t get to see him on the reg ☹️', 'created': '2024-11-09 01:11:29', 'submission_id': '1gmsnq6'}
{'comment': 'Although he’s disappointed, I bet he’s so happy to be home with his fur babies 💙', 'created': '2024-11-08 22:37:40', 'submission_id': '1gmsnq6'}
{'comment': 'I admit, this photo made me teary-eyed. This man deserved to be our vice-president come January, and instead we’re stuck with JD Vance. \n\nI have nothing but respect for Tim Walz.', 'created': '2024-11-09 02:23:24', 'submission_id': '1gmsnq6'}
{'comment': 'I hope he runs in ‘28.', 'created': '2024-11-09 00:19:19', 'submission_id': '1gmsnq6'}
{'comment': "So it's true, huh? Sometimes evil does win.", 'created': '2024-11-08 22:43:13', 'submission_id': '1gmsnq6'}
{'comment': '❤️', 'created': '2024-11-08 22:47:39', 'submission_id': '1gmsnq6'}
{'comment': 'Well this freaking broke my heart.', 'created': '2024-11-09 00:15:00', 'submission_id': '1gmsnq6'}
{'comment': 'Go home, get ready. We need to Resist.', 'created': '2024-11-09 02:36:39', 'submission_id': '1gmsnq6'}
{'comment': 'Could he run again as governor for another term? Also, was his Lt Gov doing most of the work while he was campaigning? Always curious how that goes when a candidate has a very intensive "day job" - senator, governor, etc.!', 'created': '2024-11-09 04:52:50', 'submission_id': '1gmsnq6'}
{'comment': 'I respect this man so much. Every blessing on him and his loved ones. He did America proud, and he will be remembered fondly for it.', 'created': '2024-11-09 01:58:47', 'submission_id': '1gmsnq6'}
{'comment': 'He will always be my (M)VP 🥲🥺', 'created': '2024-11-09 02:04:23', 'submission_id': '1gmsnq6'}
{'comment': 'I’m so sorry- I wish as a nation we did better! 💔', 'created': '2024-11-09 01:04:48', 'submission_id': '1gmsnq6'}
{'comment': 'I wish everyone the safety and security of that good cat.', 'created': '2024-11-09 01:11:16', 'submission_id': '1gmsnq6'}
{'comment': 'I ❤️ Tim and his beautiful family.', 'created': '2024-11-09 01:44:33', 'submission_id': '1gmsnq6'}
{'comment': 'Nothing brightens my day. I’m a woman, in a country that is about to take away all my rights and there’s absolutely nothing I could do about it.', 'created': '2024-11-09 05:29:50', 'submission_id': '1gmsnq6'}
{'comment': 'Yes. I really liked him. He seems like such a good hearted man. Unfortunately that’s seen as a weakness from the other side. I wish Tim and his family all the best.', 'created': '2024-11-09 15:56:05', 'submission_id': '1gmsnq6'}
{'comment': 'How about a Walz/Obama Ticket in 4 years?\n\nRemindMe! 4 years', 'created': '2024-11-09 00:29:26', 'submission_id': '1gmsnq6'}
{'comment': 'Who is Hope?\n\nTim we love you!', 'created': '2024-11-09 03:30:05', 'submission_id': '1gmsnq6'}
{'comment': "Rest up, pops. We'll need you in 3 years.", 'created': '2024-11-09 08:00:15', 'submission_id': '1gmsnq6'}
{'comment': 'This hurts my heart…..', 'created': '2024-11-09 12:33:23', 'submission_id': '1gmsnq6'}
{'comment': 'He is the Norman Rockwell picture of the American Dad.', 'created': '2024-11-09 12:38:44', 'submission_id': '1gmsnq6'}
{'comment': '❤️', 'created': '2024-11-09 05:14:28', 'submission_id': '1gmsnq6'}
{'comment': 'Thanks Coach… for everything!', 'created': '2024-11-09 05:49:01', 'submission_id': '1gmsnq6'}
{'comment': 'I’m going to miss him so fucking much', 'created': '2024-11-09 18:40:35', 'submission_id': '1gmsnq6'}
{'comment': 'We love you! Never going to stop fighting! 💪', 'created': '2024-11-09 19:15:21', 'submission_id': '1gmsnq6'}
{'comment': 'Great guy at first I thought he is the far better pick than Harris but he really disappointed in the battle against Vance. I still dont get why he was so bad he is normally extremly good on stage.', 'created': '2024-11-08 22:22:21', 'submission_id': '1gmsnq6'}
{'comment': 'He should have been the one at the ticket\xa0', 'created': '2024-11-09 00:25:57', 'submission_id': '1gmsnq6'}
{'comment': 'Aww this is so sad', 'created': '2024-11-09 01:09:30', 'submission_id': '1gmsnq6'}
{'comment': 'Aww no way that cat looks exactly like mine', 'created': '2024-11-09 02:23:12', 'submission_id': '1gmsnq6'}
{'comment': '💔💔💔💔\n\nHow can there be hope when the World, not just America, has been plunged into darkness? This is unreal……', 'created': '2024-11-09 08:48:51', 'submission_id': '1gmsnq6'}
{'comment': 'He’s a gem and Americans missed out on having this treasure as a leader. Someday. 💙\n\nHis daughter spoke out on TikTok, maybe yesterday, and the comments were some of the most vile I’ve seen on social media. We must stand tall against the MAGA trolls.', 'created': '2024-11-09 16:33:28', 'submission_id': '1gmsnq6'}
{'comment': 'Unfortunately, from his first public statement after returning to Minnesota, it is still clear to me that he does not understand the immigration and border security issue that cost Democrats in this election cycle.', 'created': '2024-11-09 18:08:41', 'submission_id': '1gmsnq6'}
{'comment': 'What Democrats fail to learn from Trump is that, in a political battle, “extremism” works. In her concession speech, Harris said: “To the young people who are watching, it is OK to feel sad and disappointed, but please know it’s going to be OK.” No, everything is not going to be OK. We should not trust that future history will somehow restore balance or harmony. With Trump’s victory, the trend that elevated the new populist right in many European countries reaches its climax.\n\nTrump framed Harris as worse than Biden—not just a socialist, but even a communist. To confuse her stance with communism is a sad index of where we are today—a confusion clearly discernible in another often-heard populist claim: “The people are tired of far-left rule.” An absurdity if there ever was one. The neo-populists designate the (still) hegemonic liberal order as “far left.” But this order isn’t far left, it is simply the progressive-liberal center, which is much more interested in fighting (what little remains of) the left than confronting the new right, which seeks to use top-down power to allow the market to function “freely,” at its most destructive.\n\nThe idea Walz is pushing here “it’ll all be fine” shows how out of touch the democrats are right now; they won’t be the ones fucked over by trump and don’t really care about those who are', 'created': '2024-11-09 02:15:22', 'submission_id': '1gmsnq6'}
{'comment': 'Love this man. The election was stolen from us.', 'created': '2024-11-09 02:54:02', 'submission_id': '1gmsnq6'}
{'comment': 'She is stupid, earth is about to stop spinning with Trump in office reversing every environmental protection we put in place', 'created': '2024-11-08 22:40:43', 'submission_id': '1gmsnq6'}
{'comment': "We'd love to have ya! I can't imagine raising my kids anywhere else. It's truly a great state.", 'created': '2024-11-09 00:37:46', 'submission_id': '1gmsnq6'}
{'comment': 'Dude seriously. Minnesotans are legit nice people. This image makes me so very sad', 'created': '2024-11-09 16:46:32', 'submission_id': '1gmsnq6'}
{'comment': 'I know, it’s sad because he would have made such a great VP, it’s also gotta be devastating after everything they’ve been through. It made me smile when I saw it because I love our cat loving Tim Walz and his down to earth attitude:) I also love that he’s back in his khakis and Minnesota sweatshirt..his natural uniform after all the black suits he has had to wear', 'created': '2024-11-08 22:33:09', 'submission_id': '1gmsnq6'}
{'comment': "Ikr? I'm just an insignificant human in the grand scheme of things but I'm truly heartbroken. Hope is powerful, and I am certain things will right themselves, hate, contempt and animosity will get buried eventually.", 'created': '2024-11-09 01:13:40', 'submission_id': '1gmsnq6'}
{'comment': 'It does make me feel good that he’s ok. Defeated I’m sure , but ok. Can’t help but to think of what he would tell his football team after losing a tough game 😔', 'created': '2024-11-09 04:47:02', 'submission_id': '1gmsnq6'}
{'comment': 'I *think*, and I could be wrong, but they live in the Governor’s mansion.. it’s probably owned by the state. But that is a true old Minnesota style house.. very cabin like\n\nI agree with you! Especially when fucking Vance is the one people are comparing him to.', 'created': '2024-11-08 22:29:51', 'submission_id': '1gmsnq6'}
{'comment': "He is living in state assigned housing right now. The governor's mansion is actually being renovated, they have another rental in Saint Paul, I drive by it on the regular. It is a big beautiful vintage house! Our house is old too, lots of old homes in the city.\n\nThe Walz family doesn't own a home at all. They sold their house in Mankato MN when he became governor (it was a 300K single family home). This is very much an average American family. Hope Walz went to Montana State University and Gus attends public school.", 'created': '2024-11-09 21:05:07', 'submission_id': '1gmsnq6'}
{'comment': 'Awwe- that’s so sweet!', 'created': '2024-11-08 22:33:37', 'submission_id': '1gmsnq6'}
{'comment': 'Cats are literally smarter than us and you can’t tell me different!', 'created': '2024-11-09 18:36:16', 'submission_id': '1gmsnq6'}
{'comment': "So many of those young men don't want a role model that will help them be better people--they want to be told they are perfect, they are doing nothing wrong, and it's all the women's fault their lives are shit.", 'created': '2024-11-09 05:40:28', 'submission_id': '1gmsnq6'}
{'comment': 'Ok I did some research for you to answer your questions: so Walz has 2 years left in his Governor term. He could definitely run for Governor again, but no Governor in MN since WWII has successful won a 3rd term. Two years left means that he could easily run for a house or senate seat in 2026 though and I LOVE to see that! The UofM professor theorizes on CNN that because he lost VP, he may have a tougher road.. but I think that’s a load of shit as so many people loved him and got great recognition during the campaign. I suppose it depends on whatever the political analysts come up with to blame why the Dems lost. I’d love to see him run for House/senate and then his Lt Gov run for Governor! But he’s also 60 years old and will be 62 in two years.. maybe he wants to retire and do his thing which I would blame him for. He is definitely a MN guy and his family is close by, so I move to Washington would be a huge change. \n\nAs for the Lt Gov, Walz has said in interviews that he was still in charge of his duties as Gov during the campaign. He would take his work on the road and fly back to MN when needed. I’m sure the Lt Gov helped a lot with the random things though… that’s a lot of work! It was probably similar to what Kamala did as VP during her campaign..', 'created': '2024-11-09 18:55:06', 'submission_id': '1gmsnq6'}
{'comment': 'No no no. Walz maybe but we need to pick candidates that will deflate the other side, not rile them up.', 'created': '2024-11-09 05:01:22', 'submission_id': '1gmsnq6'}
{'comment': 'His daughter', 'created': '2024-11-09 07:55:22', 'submission_id': '1gmsnq6'}
{'comment': "This election showed that even the Presidential debate didn't really matter, let alone the VP debate", 'created': '2024-11-08 22:35:44', 'submission_id': '1gmsnq6'}
{'comment': "I don't think he wanted americans to get the impression he was angry / combative even when discussing policy with people on the other side of the isle. Not that it mattered in the end.", 'created': '2024-11-08 22:25:28', 'submission_id': '1gmsnq6'}
{'comment': 'I mean, he wasn’t that bad! It wasn’t his best performance, but you also gotta remember he had never read from a teleprompter before he because the VP pick! Vance is a career politician who paid his way (or had someone pay it) through every job he’s had. I also think it doesn’t matter. Kamala killed Trump in their debate and he still won.', 'created': '2024-11-08 22:28:37', 'submission_id': '1gmsnq6'}
{'comment': 'I don’t have the resources to move. However I live in NY, so luckily I’m safe from Trump for the time being.\xa0', 'created': '2024-11-09 00:48:46', 'submission_id': '1gmsnq6'}
{'comment': 'I heard the way you say “ya!” Good people, I have great family out there :) thanks for letting us get to know Mr. Coach Walz!! 💙maybe one day good will defeat evil in this country.', 'created': '2024-11-09 04:41:32', 'submission_id': '1gmsnq6'}
{'comment': 'I’m in Texas and seriously looking at getting out for obvious reasons. I was thinking about Minnesota. Our kids are grown. Where do you recommend in Minnesota we live?', 'created': '2024-11-10 04:34:08', 'submission_id': '1gmsnq6'}
{'comment': "You have more hope than I do. I'm really struggling right now. I've lost all faith in the people of this country and all hope that good will defeat evil. I'm devastated.", 'created': '2024-11-09 16:08:48', 'submission_id': '1gmsnq6'}
{'comment': 'Something truly inspirational and from the bottom of his heart. 💜💙😊', 'created': '2024-11-09 04:48:25', 'submission_id': '1gmsnq6'}
{'comment': 'The live in the governor’s mansion and they sold their own house when they moved in. That’s part of why his total net worth is so low—because they don’t have a house as an asset. So their only big assets are their teacher retirement funds.', 'created': '2024-11-09 02:45:05', 'submission_id': '1gmsnq6'}
{'comment': 'Look at the Walz family. So lovely. People for our families to look up to. Hope is literally his daughter’s name. The video of saw of Vance’s family was him screaming at his son to shut up about Pokémon . Disgusting and vile.', 'created': '2024-11-09 04:45:38', 'submission_id': '1gmsnq6'}
{'comment': 'Thanks for the research :D Very interesting!', 'created': '2024-11-09 19:34:44', 'submission_id': '1gmsnq6'}
{'comment': 'Yes after I went about my day I *DUH* myself. Thanks!', 'created': '2024-11-09 20:14:13', 'submission_id': '1gmsnq6'}
{'comment': 'may it comes down to that people felt they are scared of the future and have a lower standard of living and it simply doesnt help that without Biden it would be 10x worse. The voters only knew forward and backwards and if they feel like their life got worse they vote someone else.', 'created': '2024-11-08 23:56:58', 'submission_id': '1gmsnq6'}
{'comment': 'https://preview.redd.it/3umdjtdwxqzd1.png?width=620&format=png&auto=webp&s=5e7edfee7c89178482122ee8058d1344030ba222\n\nYou are right that he didnt do much worse in surveys. Its just my expectation was completly different. I thought he will crush Vance and may outshine Kamala.', 'created': '2024-11-08 22:34:55', 'submission_id': '1gmsnq6'}
{'comment': 'Plus he’s said he’s not a great debater.\n\nHe did great. Couchboi spewed lies.', 'created': '2024-11-08 22:39:40', 'submission_id': '1gmsnq6'}
{'comment': 'You are right ... he wasn\'t that bad but as it appears now he needed to hit a grand slam which he didn\'t. Vance (even though he lied a lot) reassured and impressed wavering Republicans and many Republicans I know voted for the Republican "TICKET" where they might not love Trump but they felt, now (after the debate), very satisfied with Vance as a possible President. And this even though he was very unpopular with Democratic voters.', 'created': '2024-11-09 11:59:16', 'submission_id': '1gmsnq6'}
{'comment': "Born and raised in the St. Paul area so I wouldn't be able to give a good recommendations. However, there is a place for everyone! What type of stuff are you guys into?", 'created': '2024-11-11 00:16:16', 'submission_id': '1gmsnq6'}
{'comment': "Come to Winona! It's beautiful bluff country with plenty of opportunities to experience and participate in the Arts and outdoor activities, walking, hiking, biking, etc. We love it here!", 'created': '2024-11-13 11:21:47', 'submission_id': '1gmsnq6'}
{'comment': '\U0001fa77\U0001fa76💙', 'created': '2024-11-09 05:36:55', 'submission_id': '1gmsnq6'}
{'comment': "I think people also underestimated Vance's skills, which made them think it was going to be a landslide. I can't stand him, and he lied. I just think people on some level thought he wouldn't be able to hold himself much better than Trump.", 'created': '2024-11-08 23:53:30', 'submission_id': '1gmsnq6'}
{'comment': 'https://preview.redd.it/4ar6j28c1rzd1.jpeg?width=351&format=pjpg&auto=webp&s=d0d22d1eba2d478086925365deb76439cbcb9911', 'created': '2024-11-08 22:53:04', 'submission_id': '1gmsnq6'}
{'comment': 'We like to travel, comedy, attempting to paint, gardening, our 3 dogs and 2 sons, 3 grandsons', 'created': '2024-11-11 00:49:06', 'submission_id': '1gmsnq6'}
{'comment': 'Thanks. Just looked it up. Now I need to visit there. It sounds lovely.', 'created': '2024-11-13 15:17:02', 'submission_id': '1gmsnq6'}
{'comment': 'He had no skills beyond repeating tre45on’s lies and avoiding answering the questions.\nNo actual policies.', 'created': '2024-11-09 00:21:54', 'submission_id': '1gmsnq6'}
{'comment': 'Mostly I’d like to feel safe.', 'created': '2024-11-11 00:49:32', 'submission_id': '1gmsnq6'}
{'comment': "the important thing is though, he looks and presents like a demonic ken doll. that's not a facetious putdown, it's an explanation for his success. i'm asking people to take the effect of it under advisement, and be aware when america is looking at a combination of vance and johnson in a few years. that's going to be a completely lethal duo for human rights if their slickness works.", 'created': '2024-11-09 01:52:15', 'submission_id': '1gmsnq6'}
{'comment': '\n“I’m a Never Trump guy, I never liked him.” (JD Vance 2016 Tweet).\n\n“Fellow Christians, everyone is watching us. When we apologize for this man, lord help us.” (JD Vance 2016 Tweet about Trump).\n\n“Trump makes people I care about afraid. Immigrants, Muslims, etc. Because of this I find him reprehensible. God wants better of us.” (JD Vance 2016 Tweet)\n\nAnd the felon’s vote fix promise\nhttps://www.reuters.com/world/us/trump-tells-christians-they-wont-have-vote-after-this-election-2024-07-27/', 'created': '2024-11-09 03:39:52', 'submission_id': '1gmsnq6'}
{'comment': 'Stop the steal! Republicans cheated again! Fuck them!', 'created': '2024-11-08 22:24:37', 'submission_id': '1gmsewy'}
{'comment': 'Stop. The fucking. STEAL.\n\nGet off your ass, Biden. Fix this shit and put some fools in their place.', 'created': '2024-11-08 23:09:18', 'submission_id': '1gmsewy'}
{'comment': 'That’s how they stole the election. #stopthesteal', 'created': '2024-11-08 22:14:27', 'submission_id': '1gmsewy'}
{'comment': 'Of course.', 'created': '2024-11-08 21:50:03', 'submission_id': '1gmsewy'}
{'comment': 'What? No way!', 'created': '2024-11-08 22:21:54', 'submission_id': '1gmsewy'}
{'comment': 'Oh there was definitely a lot more cheating than just this. But Dems aren’t speaking up about it because we don’t want to sound like the right.', 'created': '2024-11-09 02:23:23', 'submission_id': '1gmsewy'}
{'comment': 'They lit the ballot Dropbox I normally use on fire.', 'created': '2024-11-08 23:59:40', 'submission_id': '1gmsewy'}
{'comment': "Remember, it's always a projection from the right. Interesting!", 'created': '2024-11-08 22:49:50', 'submission_id': '1gmsewy'}
{'comment': 'I’d be shocked if it wasn’t so predictable', 'created': '2024-11-08 22:57:26', 'submission_id': '1gmsewy'}
{'comment': "Always go to your local post office from now on, so that your ballots will be secured and safe. That's what I did every time I submit my mileages to the insurance company by going to the post office, as mail boxes tend to be vandalized.", 'created': '2024-11-09 01:15:01', 'submission_id': '1gmsewy'}
{'comment': 'We had a "suspicious looking backpack" left near a polling station in Cincinnati, Ohio. One of a handful of counties in Ohio that actually vote Democratic.', 'created': '2024-11-09 03:10:56', 'submission_id': '1gmsewy'}
{'comment': 'Let this be a lesson to not drop off into the mail box, just go to the local office and hand it over to them, your ballots will be secured.', 'created': '2024-11-09 01:16:49', 'submission_id': '1gmsewy'}
{'comment': "Exactly. There's no way to measure how many people left and didn't come back. I am not a crazy conspiracy theorist but I don't really believe that he absolutely won without shenanigans behind just the online interference to sway opinions.", 'created': '2024-11-08 22:44:52', 'submission_id': '1gmsewy'}
{'comment': '', 'created': '2024-11-08 22:57:59', 'submission_id': '1gmsewy'}
{'comment': 'Did you report this to the elections committee?', 'created': '2024-11-09 01:14:00', 'submission_id': '1gmsewy'}
{'comment': 'How does this prevent bomb threats from interfering though?', 'created': '2024-11-09 02:23:48', 'submission_id': '1gmsewy'}
{'comment': 'Oh there was definitely some shenanigans the question was it enough to change the election it must be investigated regardless thiugg', 'created': '2024-11-09 03:12:40', 'submission_id': '1gmsewy'}
{'comment': 'It was pretty well publicized here in Washington.', 'created': '2024-11-09 01:18:26', 'submission_id': '1gmsewy'}
{'comment': 'State or DC?', 'created': '2024-11-09 01:20:45', 'submission_id': '1gmsewy'}
{'comment': 'State. Yeah some guy did this to a few drop boxes in Portland and Vancouver, WA', 'created': '2024-11-09 01:47:17', 'submission_id': '1gmsewy'}
{'comment': 'And he claims he just wanted to be arrested. Lol no he was paid by Russians', 'created': '2024-11-09 02:24:29', 'submission_id': '1gmsewy'}
{'comment': 'Before any of that, Dems MUST find a way to effectively combat the deluge of right wing misinformation', 'created': '2024-11-08 22:19:28', 'submission_id': '1gmse87'}
{'comment': "I'm not jumping to the man-man conclusion yet but quite frankly, we do not have the luxury to even think of the glass ceiling for the next 2-3 election cycles. Even if some of us believe sexism didn't play a part this cycle, which is a stretch already, I'm happy to find a couple of straight, white guys in 2028 WHO CAN WIN and pass progressive legislation on behalf of the rest of us.", 'created': '2024-11-09 01:39:11', 'submission_id': '1gmse87'}
{'comment': 'I’d argue do opposite and let the primary tell us the temperature of the electorate when it’s time.\n\nNo superdelegates either ffs. Trust the process.', 'created': '2024-11-08 21:56:14', 'submission_id': '1gmse87'}
{'comment': '2028 season will start on Jan 20 2025, since Trump is going in as a lame duck. Assuming we still have elections at the end of all this. So we will start to see the candidate field rapidly here.', 'created': '2024-11-08 22:23:07', 'submission_id': '1gmse87'}
{'comment': 'Pete Buttigieg I imagine will announce a run and I would support him through the primaries.\n\nI suspect JB Pritzker and Gavin Newsom are also planning presidential runs.', 'created': '2024-11-08 22:28:43', 'submission_id': '1gmse87'}
{'comment': 'It needs to be a male populist progressive', 'created': '2024-11-08 22:01:13', 'submission_id': '1gmse87'}
{'comment': 'Which white man do you want?', 'created': '2024-11-08 22:00:27', 'submission_id': '1gmse87'}
{'comment': "First, we need to compete with right-wing media like Fox News and man-o-sphere podcasts. Right leaning media is everywhere, and unless we find a way to keep up with them, we're never going to be heard outside of our communities. I think we need more pundits that aren't afraid to utilize social media to its fullest and engage in good faith discussions with people on all sides of the political spectrum. We need more relatable figures in media as well. We lost the Gen Z vote because a lot of young men felt they were unimportant to democrats. If we can show these young men that we don't see them as villains and offer them their own role models, we can sway some of them back. We also need to address the latin american community, learn where the disparity lay, and try to mend that bridge.", 'created': '2024-11-09 01:16:26', 'submission_id': '1gmse87'}
{'comment': 'Opposition. "We told you so" will be a good campaign slogan in 4 year.\n\nA strong opposition will be paramount, and therefore Dems will need a good leader outside the capitol. *Jaime Harrison* wasnt a good leader/figurehead for the party, he should be replaced by someone who has smart, reputable and a very good communicator.\n\n**Pete Buttigieg** seems perfect for this role.', 'created': '2024-11-08 23:54:20', 'submission_id': '1gmse87'}
{'comment': "It seems like economic populism is the way to go. Sanders is up there in years, and he's somewhat divisive, so if we could find a socially center-left and economically populist candidate, that would be a start. Either way, screw the DNC and its playbook; they've failed us three times now, and I say that even as someone who voted for Clinton and then Biden in the primaries. With that said, we shouldn't give the Squad the time of day, as their supporters seem to be low-turnout individuals with an emphasis on moral purity.\n\nMy dream ticket at the moment is Josh Shapiro/Ritchie Torres, but in a country like this...I don't know if we'll ever have a Jewish president or a gay VP. Beshear is a solid option as well, and I think Suozzi is OK.\n\nThe party needs to be loud about things that matter to everyday voters who simply aren't paying attention to the bigger picture. And it needs to court male voters, especially younger male voters, lest right-wing grifters online continue to have their chokehold over much of that voting bloc.", 'created': '2024-11-08 22:16:51', 'submission_id': '1gmse87'}
{'comment': 'Just as the Cylons say... this has all happened before... and this will all happen again.', 'created': '2024-11-09 00:13:07', 'submission_id': '1gmse87'}
{'comment': 'Let it go, let it gooo, turn away and slam the door!', 'created': '2024-11-09 02:53:15', 'submission_id': '1gmse87'}
{'comment': "No more DEI. If X Y Z resonates with people and is the best person sure, let's go. But before settling don't go around saying I'll pick someone who fills X Y Z -- yeah, Im looking at you Biden. Sure Kamala was pretty good, but I think the fact that Biden explicitly stated he wants a woman VP hurt her chances from the start.", 'created': '2024-11-09 19:21:40', 'submission_id': '1gmse87'}
{'comment': 'Democrats need to stop being "Republican Lite" and start being radical and transformative. No more milquetoast. No more centrism. \n\nPeople want change. Democrats need to deliver.', 'created': '2024-11-08 21:56:34', 'submission_id': '1gmse87'}
{'comment': 'I really wish people would stop overreacting to this loss while incumbents are literally losing worldwide (and by much worse margins in other countries). This was always a losing battle. People pin the blame for COVID inflation on the sitting administration and Harris being a part of that didn’t make it any easier.\n\nWe will be fine. The Democratic Party is not dying. The loss in support is temporary and will level out in 4 years as people get pissed at the Republicans over whatever it is that goes wrong. We don’t need a major shift in platform. We lost because of something that was beyond our control.\n\nNeither Hillary or Harris lost because they were women. You forget how bad Biden was being trampled in the polls before she replaced him. They just lost because people like Trump for some reason, and Biden probably would have also lost to him in 2020 of it wasn’t for COVID dragging him into the mud. I don’t know if you remember, but polls literally showed Michelle Obama as being the only potential Democratic candidate who could definitively defeat Trump. It’s not a gender thing.', 'created': '2024-11-08 22:02:25', 'submission_id': '1gmse87'}
{'comment': 'Pete can’t win even though I think he’s the best. Gavin is Kamala in a suit. We need someone with Bernie vibes and that person is John Fetterman. I can’t think of anyone else with the working class appeal.', 'created': '2024-11-09 02:12:35', 'submission_id': '1gmse87'}
{'comment': "Based on the sub's reaction in the last few days, we aren't going to move forward. We are going to reject the reality that working-class voters are turning away from the party while we scapegoat progressives, Muslims, and Hispanics in some weird attempt to shame them for their vote that will fail, again.\n\nWe will not facilitate a grassroots campaign to find new leadership and a direction for our party in crisis; we will nominate whoever the leadership determines who is next, no matter how unpopular they are or how bad they are at conveying our party values to people who only pay attention to politics 4 weeks out of every 4 years.", 'created': '2024-11-08 21:45:06', 'submission_id': '1gmse87'}
{'comment': 'end the far left extreme woke culture war. this doesn\'t mean end cancel culture, but stop trying to find or promote an outrage where there is none. stop trying to push social change that is clearly not ready to be pushed by the general population.\n\nre-learn that the general population doesn\'t revolve around your politics. re-learn how to accept differences and find a middle ground. if there is no middle ground, re-learn how to be ok with making deals for immediate needs instead of trying to demand everything. re-learn how to take criticism.\n\nharris, and biden in 2020, showed that people do care about american democracy and our history. by virtue, that involves not turning away completely from our conservative neighbors. we are vulnerable right now because many are still upset. the far left is trying to take advantage by saying we need to to join them. people are talking about it even here.\n\nwhat made this election close was harris being more center left than her far left tendencies of the 2020 primary. the polls reflected that for months. she lost as the incumbent that put more campaign time (towards the end) on abortion and democracy than the economy and border, which were the two things that were polled as most important to voters all election season long.\n\nmoving forward, dems need a better messaging platform on social media. they need center left content creators and influencers or more of them. if people were being honest with themselves or accepting of reality (which people have clowned maga on), they would admit that nobody is gonna tune into your politics platform if you are on the extreme woke bandwagon.\n\nit\'s a red wave guys. going far left is not even the last thing you want to do. the country just told you "no" lol.', 'created': '2024-11-08 23:22:56', 'submission_id': '1gmse87'}
{'comment': '[removed]', 'created': '2024-11-09 01:17:01', 'submission_id': '1gmse87'}
{'comment': 'Newsome and Pritzker I mean that’s gotta be it', 'created': '2024-11-09 01:33:40', 'submission_id': '1gmse87'}
{'comment': '2026? What about just one month before the next election?', 'created': '2024-11-09 01:39:16', 'submission_id': '1gmse87'}
{'comment': 'Sadly, the Democrats need to figure out that when we’re running for office it’s now a reality TV show because of all the social media and misinformation out there. So not only do they have to combat that but we need to learn to play a little bit dirty.', 'created': '2024-11-09 02:15:10', 'submission_id': '1gmse87'}
{'comment': 'A well-oiled propaganda network that spans all platforms.', 'created': '2024-11-09 02:21:16', 'submission_id': '1gmse87'}
{'comment': 'It has to be a man with right wing border policies and progressive economic policies', 'created': '2024-11-09 03:42:18', 'submission_id': '1gmse87'}
{'comment': 'ATTACK ATTACK ATTACK everything they do against workers in every state. Call out how they hurt unions. How it hurts the bottom line. This constantly. They want to paint the left as elites, bring up the giant list of rich people who back the right. The business people who crush workers who back the right.\n\nKeep the messaging simple because a large percentage of the electorate is.', 'created': '2024-11-09 06:02:22', 'submission_id': '1gmse87'}
{'comment': 'trolls', 'created': '2024-11-09 00:06:34', 'submission_id': '1gmse87'}
{'comment': "I don't think gender matters here so much as message and outreach. Stick with socialist-populist policies and make sure it's spread outside of traditional media so that your message is received clearly instead of being flipped every which way.\n\nKamala didn't lose because she was a woman. She lost because people thought Trump was too far gone to win so didn't vote, she dropped the populist messages and instead took additional billionaire funding which lost her those votes, and she didn't really do much to increase her own outreach while her image was slammed and Trump was the hero on everyone's TVs (I saw more from Walz than her the entire campaign).\n\nShe could run again, but she would have to do so seriously and not fuck around with her voter base.", 'created': '2024-11-09 02:11:59', 'submission_id': '1gmse87'}
{'comment': 'Eminem 2028!', 'created': '2024-11-08 22:22:17', 'submission_id': '1gmse87'}
{'comment': 'Broke: running an old white man,\nWoke: running a person who appeals to young white men (and actually just young men in general)\n\nWalz was an amazing example of a white man who seemed to appeal exclusively to white women.', 'created': '2024-11-09 02:54:28', 'submission_id': '1gmse87'}
{'comment': "Stephen A Smith and I'm not joking at all.", 'created': '2024-11-09 02:36:57', 'submission_id': '1gmse87'}
{'comment': 'Kamala 2028.', 'created': '2024-11-08 23:12:46', 'submission_id': '1gmse87'}
{'comment': 'Yes. This is literally the root of the issue. You cannot message to people who are wholly captured by right wing bullshit.', 'created': '2024-11-08 22:26:30', 'submission_id': '1gmse87'}
{'comment': 'Have to come up with a simplified message (think broad popular appeal and three word slogans). Have to push that new message on every platform and every place the right does. We need an every man/average joe type person. We need a southern man most likely. \n\nI think we should stop trying to combat their misinformation with facts. Start calling it Anti-American. Every time they demonize a group, call them un-American and divisive. Note they have the same position as our enemies. Steal patriotism back from them and claim we are inward focused on improving American lives and the right seeks to divide and rule us. We should get some very good examples of their lies these next 4 years. Hammer away at it. Don’t try to explain policy. We will make things cheaper and put more money in your pockets. Stay in the simple message. \n\nStill workshopping ideas.', 'created': '2024-11-09 02:10:15', 'submission_id': '1gmse87'}
{'comment': 'Is it possible? The scope of the dehumanization of the entire political party is significant, and the propaganda machine is massive. I worry that this is how evil political parties figure out a way to take total control and we are in the midst of it.', 'created': '2024-11-08 22:52:01', 'submission_id': '1gmse87'}
{'comment': 'Unfortunately that boat sailed when bill Clinton signed the telecommunications acts in the 90’s that allowed oligarchs to buy up all of the media across all of the markets. There is virtually no way to counter the misinformation at this point.', 'created': '2024-11-09 02:56:57', 'submission_id': '1gmse87'}
{'comment': 'This… TT and X and the Joe rogans seemed to have come up with a new electorate we weren’t prepared for….that won’t consider any info that isn’t from their networks on TT and X.', 'created': '2024-11-08 23:42:08', 'submission_id': '1gmse87'}
{'comment': '\\^ This is the information.', 'created': '2024-11-08 23:39:45', 'submission_id': '1gmse87'}
{'comment': 'They should be doing that AND figuring out a new candidate. That’s part of why this time didn’t work, waited too long to introduce Kamala, nobody even knew who she was. Well, the people I’m talking about didn’t know who she was.', 'created': '2024-11-09 02:44:25', 'submission_id': '1gmse87'}
{'comment': 'I think the best way to do that is wait about 4 months.\n\nThan we need to be insufferable. I’m very much in the it’s not our lesson to learn crowd. Let them get what they voted for.', 'created': '2024-11-09 11:55:33', 'submission_id': '1gmse87'}
{'comment': "It's feels like educating your voter base doesn't work anymore and instead you need to fool them. It's a shame because we used to have leading institutes of higher learning.", 'created': '2024-11-09 05:00:49', 'submission_id': '1gmse87'}
{'comment': "Don't think of it as purely misinformation. Think of it as 'messaging' democrats need to win on messaging. For over a decade the democratics message has not translated to every day Americans. \n\nAs an independent, I highly encourage folks to stop thinking like democrats, and to start thinking like someone who wants to reach out to both sides and how to do it.", 'created': '2024-11-09 21:33:02', 'submission_id': '1gmse87'}
{'comment': 'Unless both party nominees are women…is that even possible 🤔', 'created': '2024-11-09 08:32:10', 'submission_id': '1gmse87'}
{'comment': 'I think we need an outsider that isn’t a politician ..', 'created': '2024-11-08 22:11:25', 'submission_id': '1gmse87'}
{'comment': 'Both sides start over this time around which will be very unique…..this time Trump has no choice to leave so let’s see if he supports another republican running ……', 'created': '2024-11-08 22:25:45', 'submission_id': '1gmse87'}
{'comment': 'Pete is my favorite of all politicians for sure !', 'created': '2024-11-08 22:29:45', 'submission_id': '1gmse87'}
{'comment': 'Big Gretch needs to throw down.', 'created': '2024-11-09 02:28:28', 'submission_id': '1gmse87'}
{'comment': 'Pritzker seem the best choice. The other two have too much baggage.', 'created': '2024-11-09 01:42:10', 'submission_id': '1gmse87'}
{'comment': 'Agreed.', 'created': '2024-11-08 22:17:39', 'submission_id': '1gmse87'}
{'comment': 'https://preview.redd.it/ifmevx1suqzd1.jpeg?width=4169&format=pjpg&auto=webp&s=820fd3e92c5218ff21b6f23b800eb00beaa5a813', 'created': '2024-11-08 22:16:44', 'submission_id': '1gmse87'}
{'comment': 'Never said white man . I said a man . Mark Cuban comes to mind ..an outsider that is not a politician ..seems like majority of Americans do NOT want the same old same old we have had since 1776…..maybe they are on to something', 'created': '2024-11-08 22:15:38', 'submission_id': '1gmse87'}
{'comment': 'The problem with Jaime Harrison is that he was from South Carolina. He was Biden’s guy. His time is up, may want to rethink emphasis on the South Carolina Primary. At least New Hampshire is a blue/purple state.', 'created': '2024-11-09 05:56:34', 'submission_id': '1gmse87'}
{'comment': 'And we need someone under the age of 70.', 'created': '2024-11-08 22:20:00', 'submission_id': '1gmse87'}
{'comment': 'Ritchie Torres?!', 'created': '2024-11-08 22:29:29', 'submission_id': '1gmse87'}
{'comment': 'The squad is too far left for majority of Americans …they would not do well any of them ins general election……the GOP said Kamala was far left which we knew she wasn’t , imagine someone like AOC…we would get crushed', 'created': '2024-11-08 22:21:08', 'submission_id': '1gmse87'}
{'comment': "The DNC did not pick the candidate. The Democratic primary electorate did. It's insulting to the millions of us who voted for those candidates to say otherwise.", 'created': '2024-11-09 02:29:32', 'submission_id': '1gmse87'}
{'comment': 'Actually, we do need to appeal to the centrist, swing voter. See every single swing state as evidence why.', 'created': '2024-11-08 22:33:17', 'submission_id': '1gmse87'}
{'comment': 'Dumbest thing I’ve heard today. When Independents make up such a huge amount of our electorate, choosing extremism is the last thing you want to do to win them over. Do y’all even remember how popular Nikki Haley was with indies from being a centrist?', 'created': '2024-11-08 22:10:36', 'submission_id': '1gmse87'}
{'comment': 'That’s the exact opposite of what every poll is saying', 'created': '2024-11-08 22:29:39', 'submission_id': '1gmse87'}
{'comment': '>\xa0Neither Hillary or Harris lost because they were women\n\nWhat evidence so you have to back that idea up?', 'created': '2024-11-08 22:18:56', 'submission_id': '1gmse87'}
{'comment': 'Yes Michelle was about 10 points higher than Trump when she polled against polled against him summer …but losing the last 2 times with a woman candidate shows America is NOT ready for a woman president IMO', 'created': '2024-11-08 22:14:35', 'submission_id': '1gmse87'}
{'comment': 'Wow you know what you hit the nail with that ! Fetterman is real good but they might go after him with his health issues ….you know how that can go', 'created': '2024-11-09 02:14:28', 'submission_id': '1gmse87'}
{'comment': "Ro Khanna, Andy Beshear, AOC, and I'll be honest I'd want Colin Allred to try. He lost because he's fighting in Texas,I could see him being more effective in a national race.\n\nI liked Fetterman but I think his biden level of clinging to Bibi has killed any chance he'd have if winning.", 'created': '2024-11-09 02:34:28', 'submission_id': '1gmse87'}
{'comment': 'I think we need an outsider that’s isn’t a politician ….mark Cuban come to mind', 'created': '2024-11-08 22:12:16', 'submission_id': '1gmse87'}
{'comment': "If being pro human rights is considered extremism, I don't think there's much hope for our country, sadly.", 'created': '2024-11-09 03:54:58', 'submission_id': '1gmse87'}
{'comment': 'Newsome is good but he will lose …..California dude …..Fox News and right wing media would destroy him …', 'created': '2024-11-09 01:34:23', 'submission_id': '1gmse87'}
{'comment': 'Nah . Time for someone new', 'created': '2024-11-08 23:16:09', 'submission_id': '1gmse87'}
{'comment': "They have to play their game and beat them at it. They need to elevate a few popular Podcasters that lean left and have them hammer home the left platform. Have prominent dems on frequently and flood social media with clips of interviews. When Trump makes an unpopular decision, flood social media, news outlets, air TV ads, put up billboards, etc with a message about it. Definitely need a slogan..something catchy that will grab people's attention. Ex: He's why you can't have nice things (or something along those lines). They need to open those wallets and pour money into an anti Trump campaign. Drop to his level..start name calling, airing petty grievance. I live Michele Obamas idea of when they go low, we go high, but it's not winning us elections. We are going to have to roll around down in the mud with them. \n\nAlso, I'm kind of shocked that they never talk about this, but when Russia hacked the government emails and released the lefts, they also got Republicans emails. It needs to be repeated over and over, ad nauseum, that they didn't release the rights. What are they hiding? Why did anti-Trump representatives suddenly start kissing his ass? Repeat that shit daily. Everywhere. Be relentless.", 'created': '2024-11-09 02:34:27', 'submission_id': '1gmse87'}
{'comment': 'Well we don’t have much choice but to wait. The problem I have with them getting what they voted for is all the people in proximity that DIDNT vote for that and will be punished alongside them.', 'created': '2024-11-09 19:23:06', 'submission_id': '1gmse87'}
{'comment': '"lets not learn, lets just repeat this ad nauseum cycle of switching presidents... while the republicans are in the midst of their successful push to make judges conservative, own the media, and more"', 'created': '2024-11-09 21:35:41', 'submission_id': '1gmse87'}
{'comment': "Dabe Bautista for president. \n\nHave you seen his Trump is a pussy short he did for Kimmel?\n\nHe is a fuckin beast!\n\n(Of course I'm joking, but I could deal with the next four years if DB just kept making these)", 'created': '2024-11-09 02:07:17', 'submission_id': '1gmse87'}
{'comment': None, 'created': '2024-11-08 22:26:04', 'submission_id': '1gmse87'}
{'comment': 'Eminem works!', 'created': '2024-11-08 22:18:40', 'submission_id': '1gmse87'}
{'comment': "He's awesome. But if the US is not ready for a woman, I doubt they're ready for an LGBT candidate. My money's on Pritzker.", 'created': '2024-11-08 22:47:10', 'submission_id': '1gmse87'}
{'comment': 'But here\'s the problem... and bear in mind I am bi when I say this... if "the US was not ready for a woman president", will the US be ready for an openly gay man ?\n\n\nCause other than that... holy shit Pete all the way', 'created': '2024-11-08 22:52:14', 'submission_id': '1gmse87'}
{'comment': 'Not a bad idea, but with the anti-Jewish racism in this country, I doubt voters would go for him... 😓', 'created': '2024-11-08 22:21:54', 'submission_id': '1gmse87'}
{'comment': 'Yes, the representative for some of the South Bronx. I think he has some good ideas.', 'created': '2024-11-09 02:37:53', 'submission_id': '1gmse87'}
{'comment': "Precisely. And Ocasio-Cortez is by far the least bad of that whole group (she often pisses me off, but sometimes she's absolutely right, and she was a great guest judge on *Drag Race*), but that doesn't mean she'd have a shot outside of New York.", 'created': '2024-11-08 22:33:05', 'submission_id': '1gmse87'}
{'comment': "dumbest thing I've heard today, an extremist just won the White House.", 'created': '2024-11-08 22:12:19', 'submission_id': '1gmse87'}
{'comment': "> Dumbest thing I’ve heard today.\n\nThen you should listen to yourself talk. Centrism just lost the election.\n\nHaley failed. Hillary failed. Centrism fails. Trump's extremism won out over that.", 'created': '2024-11-08 22:20:55', 'submission_id': '1gmse87'}
{'comment': "Polls didn't predict this election correctly at all.", 'created': '2024-11-08 23:43:51', 'submission_id': '1gmse87'}
{'comment': "We don't have much evidence from exit polls either way yet, but we will. Earlier polls (this year) suggested that being a woman was not a big problem.", 'created': '2024-11-09 06:16:59', 'submission_id': '1gmse87'}
{'comment': 'The fact that it is a sample size of 2 and you can’t draw conclusions from that. And once again, the fact that Michelle Obama was polling 10 points ahead of Trump, and that Harris severely closed the gap that existed between Biden and Trump. If gender was the factor here, then neither of those would have happened.', 'created': '2024-11-08 22:54:20', 'submission_id': '1gmse87'}
{'comment': "Hillary and Kamala were those candidates.\n\nBoth so unpopular and had no charisma that they are lucky that safe states exist to get those votes. Sorry but it's just the way it is, Whitmer or Duckworth would destroy a general election cause they are fantastic candidates.", 'created': '2024-11-09 02:11:10', 'submission_id': '1gmse87'}
{'comment': 'Once again, they just lost. It has absolutely nothing to do with them being women. If Michelle Obama can pull 10 points above Trump as a woman, then that’s clearly not the factor dragging us down here. If 15 women had been major party candidates and lost every single time, then I’d be inclined to agree with you. But as a mathematician, it makes me cringe that people are trying to draw conclusions from a sample size of 2.', 'created': '2024-11-08 22:17:31', 'submission_id': '1gmse87'}
{'comment': 'I think he’s better for it with health issues. So many Americans have health issues and they force us to still work and be part of society - why should one not represent us? Why should we not be a part of the process when they force us to be?', 'created': '2024-11-09 02:27:46', 'submission_id': '1gmse87'}
{'comment': 'I think he would have to decline, his health issues would limit his ability to campaign. He’s not for everyone, though he was the only Democrat I can think of who was willing to come out and say it looked like we would lose Pennsylvania. He is perceptive and probably better at listening to working class folks than most Democrats.', 'created': '2024-11-09 06:33:27', 'submission_id': '1gmse87'}
{'comment': 'i mean not voting for harris like some of you did surely helped. there\'s no way power hungry trump didn\'t befriend netanyahu. surely a resistant trump who isn\'t easily swayed by pleasantries will resist netanyahu asking for more aid when netanyahu tells trump, "you\'re the best president in american history."\n\nnot much hope for our country? you guys burned the american flag. everyone else already knows what you guys think.', 'created': '2024-11-09 04:15:23', 'submission_id': '1gmse87'}
{'comment': 'Yes, agrees on all fronts. Simple, repetitive messages. And I truly believe in taking patriotism back from them. If you would rather be a Russian than a democrat then you are Anti-American. They would see Russia succeed in all their aggressive tactics and see their fellow Americans suffer. Un-American! Anti-Unionist! Russia-lovers! America-Haters! \n\nI’m down to start a podcast. Someone point me in the right direction to get started.', 'created': '2024-11-09 02:46:12', 'submission_id': '1gmse87'}
{'comment': 'The only issue is right wing billionaires are slowly starting to buy up ALL the media. CNN is now leaning right. So is Washington Post. We all know Rupert Murdoch owns Fox News, New York post, Wall Street journal. Elon Musk bought Twitter (arguably the largest news outlet nowadays). Mark Zuckerberg who owns meta, (IG, Facebook and WhatsApp) now leans to the right. \n\nOur entire hope rests in the hands of the few billionaires who still remain liberal.', 'created': '2024-11-09 07:35:26', 'submission_id': '1gmse87'}
{'comment': 'Yeah. It’s not ideal.\n\nThe good news is, the people with the lowest education, the people with the lowest income, blue-collar workers. They’re going to be the most impacted. They overwhelmingly voted for Trump. \n\nThis is going to hurt Kamala supporters on multiple grounds, but economically, which is apparently all people vote for, It’s going to hurt Trump supporters worse than it hurts us. \n\nI hope they have fun.', 'created': '2024-11-10 12:28:21', 'submission_id': '1gmse87'}
{'comment': 'It’s not our lesson to learn. I hope a lesson is learned though.\n\nKamala was better on every issue. Literally every issue her position was superior, that’s not my opinion, that’s just experts opinions. She lost because she has a vagina, nothing more.\n\nI can’t point to an issue other than the fact that straight white men have an incessant need to feel important. Maybe next year we can give them a gold star for not voting for the man that’s about to torpedo our economy.', 'created': '2024-11-10 12:25:46', 'submission_id': '1gmse87'}
{'comment': 'Hey, Jesse Ventura was an okay governor.', 'created': '2024-11-09 01:22:24', 'submission_id': '1gmse87'}
{'comment': 'Hell, at this point, screw it, unleash the celebrity candidates. Clearly qualifications don’t matter anymore. \n\nTom Hanks would’ve mopped the floor with Trump in 2016. He’s no less qualified, 1000 times more beloved and charismatic, and would surround himself with far smarter people.', 'created': '2024-11-08 22:42:45', 'submission_id': '1gmse87'}
{'comment': 'After who was elected this time , it won’t even matter', 'created': '2024-11-08 22:26:28', 'submission_id': '1gmse87'}
{'comment': 'Hulk Hogan! Oh, wait, no.', 'created': '2024-11-08 22:51:02', 'submission_id': '1gmse87'}
{'comment': 'There you go !', 'created': '2024-11-08 22:19:33', 'submission_id': '1gmse87'}
{'comment': "The problem with a woman candidate isn't strictly *conscious* bigotry. It's that less-thoughtful voters (you know, the ones without an inner monologue) compared both our female candidates with a big guy like Trump, and literally voted cuz he looked tougher, especially after the first assassination attempt and the photo taken of it (you know the one). I've heard from multiple FEMALE voters that Kamala seemed too weak to handle wars.\n\nButtigeg, by contrast, was in the military. You'll get bigots voting against him, sure, but they were far right anyway.", 'created': '2024-11-09 02:45:05', 'submission_id': '1gmse87'}
{'comment': 'Yeah no a gay man is not going to be elected. I love the guy. It’s a long time until the next campaign season. I hope Pete runs for something.', 'created': '2024-11-08 23:45:37', 'submission_id': '1gmse87'}
{'comment': 'I do not think we are not unfortunately even though he would have my vote', 'created': '2024-11-08 23:01:07', 'submission_id': '1gmse87'}
{'comment': 'Who knows …they voted for a convicted felon rapist …..I don’t think ethnicity or religion plays a role anymore in our politics', 'created': '2024-11-08 22:22:52', 'submission_id': '1gmse87'}
{'comment': 'No she doesn’t …..her views wouldn’t be popular with majority Americans in our generation ….', 'created': '2024-11-08 22:34:01', 'submission_id': '1gmse87'}
{'comment': 'An extremist just won the White House by marketing himself as a moderate. Trump’s entire campaign was “I’m not involved in project 2025,” “I support abortion exceptions,” “I will cut middle class taxes,” “No tax on tips/overtime,” etc. That’s the issue. We know he’s extreme, but the uneducated people voting for him think he isn’t. He lies to get support.\n\nRepublicans were also destined to win this election because of the COVID inflation disadvantage.', 'created': '2024-11-08 22:15:10', 'submission_id': '1gmse87'}
{'comment': 'Conservatives do not think of her as centrist at alla', 'created': '2024-11-08 22:30:20', 'submission_id': '1gmse87'}
{'comment': 'Trump has been marketing himself as a moderate for two elections now regardless of how true or untrue it is. He won this election because of COVID inflation, which is losing incumbents elections GLOBALLY. If centrism was what lost elections, then Trump’s literal entire line of attack on Harris wouldn’t have been “She’s the most liberal U.S. Senator to ever exist, far worse than Bernie Sanders!!!!”', 'created': '2024-11-08 22:23:45', 'submission_id': '1gmse87'}
{'comment': 'Republican propaganda lost the election. We were too centrist, yet Trump voters say we are only focused on abortion and trans rights and are way too woke? How does that compute?', 'created': '2024-11-08 22:54:44', 'submission_id': '1gmse87'}
{'comment': 'I’m talking exit polls', 'created': '2024-11-09 00:19:12', 'submission_id': '1gmse87'}
{'comment': 'I’m not sure that’s the kind of thing people readily admit. They fish for some other excuse.', 'created': '2024-11-09 06:20:07', 'submission_id': '1gmse87'}
{'comment': 'Yeah, not interested in risking it in 2028.', 'created': '2024-11-09 00:29:52', 'submission_id': '1gmse87'}
{'comment': 'We need to do something different….yes we lost ….but we need a different strategy moving forward ..the same people that stayed at home this time or voted for Trump , Will do the same thing again in 4 years …we need to offer something new', 'created': '2024-11-08 22:18:54', 'submission_id': '1gmse87'}
{'comment': 'Oh my. It’s not the only thing but a pretty big reason why she lost. No dick. Don’t be naive', 'created': '2024-11-08 22:26:26', 'submission_id': '1gmse87'}
{'comment': "I've started a tiktok, because I do not believe podcasts are ultimately the solution. I think we need brief, concentrated focuses. \n\n2-3 minute long videos, not every day, but on moments of occassion.", 'created': '2024-11-09 21:34:03', 'submission_id': '1gmse87'}
{'comment': 'Oh jesus christ. I was trying to warn folks for months that their approach to convincing independents like my self needed to change, and here you come along patting yourself on the back after overwhelmingly losing one of the most consequential elections, and you go "oh well, we had the right ideas"\n\ngive me a break.\n\nmessaging is important and the democrats suck at it, don\'t take that high and entitled road your ego has driven you into a corner to label all straight white men as the fucking problem. Real inclusivity means real understanding, not whatever you purport to have.', 'created': '2024-11-10 23:28:50', 'submission_id': '1gmse87'}
{'comment': 'How about John Stewart?', 'created': '2024-11-08 22:44:29', 'submission_id': '1gmse87'}
{'comment': 'That’s if we get to have a fair & free election lol!', 'created': '2024-11-08 22:21:00', 'submission_id': '1gmse87'}
{'comment': "The last point is fair, and Trump may have paid lip service to being a moderate, but we're also talking about the guy who got on live TV in front of the entire country and screamed about immigrants eating pets. The dude is and has always been an obvious extremist, but the American people are deeply unhappy - and unhappy people want radical solutions, or at least a good scapegoat to blame for their misery. All I'm suggesting is that we give them a radical who won't burn down the country.", 'created': '2024-11-08 22:17:28', 'submission_id': '1gmse87'}
{'comment': 'But we should’ve ran Bernie in 16 and 20 right? /s', 'created': '2024-11-10 01:21:59', 'submission_id': '1gmse87'}
{'comment': 'No Trump was absolutely extremist, no matter what he says. \n\nTrump rarely if ever mentioned Bernie in comparison to her.', 'created': '2024-11-08 23:43:10', 'submission_id': '1gmse87'}
{'comment': ">Republican propaganda lost the election. We were too centrist, yet Trump voters say we are only focused on abortion and trans rights and are way too woke? How does that compute?\n\nTrump voters said a lot of things. You're cherry-picking your takeaways.", 'created': '2024-11-08 23:40:50', 'submission_id': '1gmse87'}
{'comment': 'Yes. Need something on every single platform and it needs to be easily digestible. Simple takeaways', 'created': '2024-11-09 21:59:50', 'submission_id': '1gmse87'}
{'comment': 'We will lol', 'created': '2024-11-08 22:26:09', 'submission_id': '1gmse87'}
{'comment': 'This sub is delusional if they think Bernie would have a better chance than Clinton.', 'created': '2024-11-10 01:22:49', 'submission_id': '1gmse87'}
{'comment': 'Ok, so what else did they say about Democrats? Too beta? Communists? Socialists? Open border? Baby killers? They say whatever they are being fed by the propaganda media machine. Centrism has nothing to do with it.', 'created': '2024-11-08 23:43:35', 'submission_id': '1gmse87'}
{'comment': "What makes you so sure? Voter suppression already happened. The courts have sided with MAGA. Now there is literally nobody there to stop the machine. Sure we'll all get our ballots on time and we will drop them off dutifully on time and in all their correct envelopes and signed and dated and whatever hurdles they try to throw in the process. But a bunch of them will be invalidated. They'll find a reason. There won't be a Brad Raffensperger anymore because all the courts are stacked in MAGA favor.", 'created': '2024-11-08 23:39:48', 'submission_id': '1gmse87'}
{'comment': 'I don’t believe the maga suppression one bit . If we had major voter fraud someone would speak out eventually on it knowing they had a secret they could not hold on to . I believe in our system\n. Trump just can’t lose in his mind . We are better than that . You can always join that party anytime', 'created': '2024-11-08 23:42:49', 'submission_id': '1gmse87'}
{'comment': 'Huh? It already happened in this election. Which part do you not believe?\n\nEDIT: [Virginia and Alabama](https://www.brennancenter.org/our-work/analysis-opinion/supreme-court-helps-virginia-illegally-purge-voters) (just one example)', 'created': '2024-11-08 23:43:46', 'submission_id': '1gmse87'}
{'comment': 'I’m talking about voter fraud . The suppression is going on I meant', 'created': '2024-11-08 23:44:43', 'submission_id': '1gmse87'}
{'comment': 'Right, so how do you maintain faith in our system?', 'created': '2024-11-08 23:49:26', 'submission_id': '1gmse87'}
{'comment': 'Incel men want your daughters. Basically trumps presidential slogan', 'created': '2024-11-08 22:25:36', 'submission_id': '1gmsctl'}
{'comment': 'The fact that they don\'t even care how rapey that statement sounds. \n\nWith them banning contraceptives, abortions, no fault divorce, and making marital rape not a thing.. I predict there\'s going to be a huge increase in domestic violence cases and possibly deaths. Especially with this new movement of women claiming abstinence and the men going "we\'ll see about that".', 'created': '2024-11-08 21:57:37', 'submission_id': '1gmsctl'}
{'comment': 'show them this from their precious p2025.\xa0 your wallet, state\'s choice, assholes. ""HHS policies should never place the desires of adults over the right of children to be raised by the biological fathers and mothers who conceive them"\xa0 \xa0\n\n\n". A child support tax credit would use the low-income, nonresident parents’ own earned income and history of employment to assist them further in the task of caring for their children"\xa0\xa0\xa0\n\n\n\xa0"The nonresident father’s role as financial provider and relational figure is affirmed, and much-needed financial resources are given to the children."\xa0\xa0\n\n\n\xa0"Each state should be induced to implement a high-tech, easy-to-use application to centralize child support payments. As with Venmo or Cash App, nonresident parents would link their bank accounts and provide one-click monthly payments (or contribute incrementally throughout the month while tracking how much is due)."', 'created': '2024-11-08 21:38:41', 'submission_id': '1gmsctl'}
{'comment': 'No sex', 'created': '2024-11-08 22:07:47', 'submission_id': '1gmsctl'}
{'comment': 'The cruelty has always been the point.', 'created': '2024-11-08 22:28:45', 'submission_id': '1gmsctl'}
{'comment': 'Your dick, my knife.', 'created': '2024-11-08 23:18:49', 'submission_id': '1gmsctl'}
{'comment': 'It’s fucking disgusting. I am ashamed of the men in this country who are saying this shit like they’re bragging, plus the stupid white women who voted for the orange turd.', 'created': '2024-11-08 23:27:11', 'submission_id': '1gmsctl'}
{'comment': 'Ladies, it’s time for us to literally try to make ourselves as unappealing to men as possible. Who knows what will happen in the next 4 years…', 'created': '2024-11-08 23:01:04', 'submission_id': '1gmsctl'}
{'comment': 'Except they won’t because our country just voted for “no consequences for being awful human beings, just go wild and have fun racists/sexists/misogynists!”. \n\nI want a different timeline please :-(', 'created': '2024-11-08 22:27:11', 'submission_id': '1gmsctl'}
{'comment': 'Men who like and respect women need to call these men out. Women giving direct attention to these men in comment section are only giving them the reaction they want.', 'created': '2024-11-09 01:36:26', 'submission_id': '1gmsctl'}
{'comment': 'Remember that trump won 63% of the white (non-college) women vote, despite literally everything he did to hurt women or take away their rights.\xa0\xa0 \xa0\n\nAnd 41% of college educated women voted for him, many of whom knew he would eliminate their bodily autonomy.\xa0\xa0\xa0\n\nAt some point, y’all have to tackle the issue of internalized misogyny. It’s fine to blame it on the crude and asinine Maga guys who want to control women’s bodies, but why the hell did half of, if not a majority of white women vote for trump?\xa0\n\nWhat did he say or promise women that earned him that many votes? An amount that differs only 6-10% % points relative to men, ie not a lot.\xa0', 'created': '2024-11-09 00:12:45', 'submission_id': '1gmsctl'}
{'comment': "Women, arm yourselves. I'm not a big fan of guns, but sometimes there are other priorities.", 'created': '2024-11-09 00:41:36', 'submission_id': '1gmsctl'}
{'comment': "These assholes trying to normalize rape forget that women aren't the only ones who can get raped. They're quickly going to enter the Find Out stage.", 'created': '2024-11-09 02:23:12', 'submission_id': '1gmsctl'}
{'comment': 'Young men: "Your body, my choice"\n\nAlso young men: "WHY WON\'T WOMEN SEX WITH ME!!1!"\n\n\\--\n\nI keep hearing this thing about young men voting Republican because they\'re lonely. What do you think that\'s going to accomplish? Do you think the government will subsidize a girlfriend for you? Force them into concubinage? \n\nPerhaps the reason they\'re single and lonely is that they\'re fucking morons.', 'created': '2024-11-09 03:59:28', 'submission_id': '1gmsctl'}
{'comment': 'Nah let them cook. This is what they are. They finally quit hiding it.', 'created': '2024-11-08 23:35:59', 'submission_id': '1gmsctl'}
{'comment': 'No more sex with men ladies. Also get a weapon to avoid rape.', 'created': '2024-11-09 04:16:11', 'submission_id': '1gmsctl'}
{'comment': 'I saw a post on a subreddit where it was "don\'t push young men away by calling them nazis!"\n\nSorry, I don\'t negotiate with nazis. I don\'t care if they get their feelings hurt. They are a part of the "fuck your feelings" crowd. And I don\'t negotiate with nazis. I got a rape threat so I don\'t care about their feelings. And I will NOT be saying sorry.', 'created': '2024-11-09 05:36:05', 'submission_id': '1gmsctl'}
{'comment': 'Remember, they are doing this to get a rise out of us. Is it scummy and dangerous? You bet. Do we react? Only in the coldest and most controlled way possible.', 'created': '2024-11-09 02:00:29', 'submission_id': '1gmsctl'}
{'comment': "I'm working on the Aqua Tofana right now DM me for details 🤣", 'created': '2024-11-08 23:23:09', 'submission_id': '1gmsctl'}
{'comment': 'Despite the article that meme and others like it are started by foreign psyop campaigns. Their slogan is keep America divided. We’re in a war nobody wants to admit it and one side is willing to help those who wish to bring us down.', 'created': '2024-11-09 02:50:38', 'submission_id': '1gmsctl'}
{'comment': 'That’s right! The only answer is a middle finger and a “Fuck off!”', 'created': '2024-11-09 04:28:47', 'submission_id': '1gmsctl'}
{'comment': 'Yes! Fuck that very idea and the tiny men behind it! Stay strong y’all!', 'created': '2024-11-09 02:27:55', 'submission_id': '1gmsctl'}
{'comment': 'Pathetic, just plain sucks', 'created': '2024-11-09 02:58:21', 'submission_id': '1gmsctl'}
{'comment': 'Someone responded to it on YouTube comments, "Don\'t worry, I would never have sex with you....The guy responded I don\'t need your permission. "', 'created': '2024-11-09 01:01:58', 'submission_id': '1gmsctl'}
{'comment': 'Ladies: Get a gun; Get a CCP; Use it if you are threatened', 'created': '2024-11-09 15:00:51', 'submission_id': '1gmsctl'}
{'comment': "It's all fun and games until the guys saying this become the property of some company and are forced to work to borderline death. Then they will know what your body my choice really means.", 'created': '2024-11-09 08:59:52', 'submission_id': '1gmsctl'}
{'comment': "Since white women voted for Trump, they're getting what they flat out deserve. They're 2nd class citizens now. MAGA women don't need doors held for them, etc. Give them what they voted for, no sympathy", 'created': '2024-11-09 11:45:11', 'submission_id': '1gmsctl'}
{'comment': 'They’re too busy blaming the democrats for losing.', 'created': '2024-11-08 23:20:46', 'submission_id': '1gmsctl'}
{'comment': 'What a f**king a**hole', 'created': '2024-11-10 17:55:35', 'submission_id': '1gmsctl'}
{'comment': 'Talking about and reacting to those trolls is exactly what they want.', 'created': '2024-11-09 03:29:50', 'submission_id': '1gmsctl'}
{'comment': 'Buying into their trolling(feeding them your emotions) is why they say stuff like this, just fyi. It’s best to just ignore it.', 'created': '2024-11-08 22:24:46', 'submission_id': '1gmsctl'}
{'comment': "Nonono don't overreact to this or you're out of touch heaven forbid", 'created': '2024-11-09 00:08:28', 'submission_id': '1gmsctl'}
{'comment': 'Incel’s are terrifying to me. Thankfully most of em won’t ever act on their urges and just stew inside and online but the few that do….', 'created': '2024-11-09 00:47:40', 'submission_id': '1gmsctl'}
{'comment': 'In for a rude awakening when my daughters exercise their 2nd amendment rights. \n\nDems stay strapped too.', 'created': '2024-11-09 07:22:56', 'submission_id': '1gmsctl'}
{'comment': 'The rapey way it sounds is the point', 'created': '2024-11-08 22:19:10', 'submission_id': '1gmsctl'}
{'comment': 'That’s the whole purpose, but I think they’re really going to miss their ultra-violent American-made pornography when they start banning it.\xa0', 'created': '2024-11-08 23:37:38', 'submission_id': '1gmsctl'}
{'comment': 'Yes, it’s rapey sounding because that’s exactly what they mean. They know they can’t just say the word out loud though. Not yet anyway.', 'created': '2024-11-08 23:46:31', 'submission_id': '1gmsctl'}
{'comment': "It's not just that they don't care. That's 100% the intention. They're just flashing their true colors", 'created': '2024-11-09 02:11:43', 'submission_id': '1gmsctl'}
{'comment': 'Get a strap ladies.', 'created': '2024-11-09 03:10:03', 'submission_id': '1gmsctl'}
{'comment': "If you call them on it they'll either double down, laugh that you're offended, or tell you that you're being divisive. Or all 3. Awful, awful people.", 'created': '2024-11-10 01:11:20', 'submission_id': '1gmsctl'}
{'comment': 'Agreed, but do you think these types will care if we say no?', 'created': '2024-11-08 23:47:24', 'submission_id': '1gmsctl'}
{'comment': 'Good luck with that, these guys are out and out rapists.', 'created': '2024-11-09 03:19:50', 'submission_id': '1gmsctl'}
{'comment': 'I’ll buy you a set of knives personally.', 'created': '2024-11-09 07:24:59', 'submission_id': '1gmsctl'}
{'comment': 'The alley scene in Maxxxine on repeat.', 'created': '2024-11-09 13:49:01', 'submission_id': '1gmsctl'}
{'comment': 'Those Neanderthals already find us distasteful. SA and r()pe are about abuse & power. Both will increase exponentially, I fear.', 'created': '2024-11-08 23:33:30', 'submission_id': '1gmsctl'}
{'comment': 'Lysistrata has a thing to say about this. \nhttps://www.gutenberg.org/files/7700/7700-h/7700-h.htm', 'created': '2024-11-09 00:25:44', 'submission_id': '1gmsctl'}
{'comment': 'I agree. I want to tell all the women and men not to comment on any of this crap. I wanted to search out Nick Fuentes and blast him and his supporters in comments, but I realized this brings them more attention and clicks. We should actively ignore them online while working with our own to get strong against them.', 'created': '2024-11-10 17:23:46', 'submission_id': '1gmsctl'}
{'comment': ">but why the hell did half of, if not a majority of white women vote for trump?\xa0\n\nThat's the million dollar question. I don't get it.", 'created': '2024-11-09 01:20:16', 'submission_id': '1gmsctl'}
{'comment': "Like he's ever going to leave his mommy's basement.", 'created': '2024-11-09 02:21:32', 'submission_id': '1gmsctl'}
{'comment': 'The excuse always given is "they\'re trolling" until they aren\'t. By then it\'s too late.', 'created': '2024-11-08 22:30:49', 'submission_id': '1gmsctl'}
{'comment': "Underrated comment.\n\nThese people are assholes. There's no higher agenda, no great plot, just assholes being assholes.\n\nThe best way to deal with them online is to just block and ignore.", 'created': '2024-11-08 22:29:04', 'submission_id': '1gmsctl'}
{'comment': "I guess you're not a woman. You should try to understand why these sorts of threats are taken seriously by women.", 'created': '2024-11-09 01:56:08', 'submission_id': '1gmsctl'}
{'comment': 'What?', 'created': '2024-11-09 00:54:41', 'submission_id': '1gmsctl'}
{'comment': "They're more terrified of you. Losers too scared to even ask a girl on a date so they just look at porn all day. When I was in high school boys worked on their game and they made an effort to go out and get laid. Pathetic.", 'created': '2024-11-09 02:00:50', 'submission_id': '1gmsctl'}
{'comment': 'Incels just won the entire legislative branch.... What the fuck are we going to do to protect ourselves??', 'created': '2024-11-09 04:52:36', 'submission_id': '1gmsctl'}
{'comment': "I've been recommending to the women in my life that they reassess their views about the second amendment. As both a matter of personal safety and the gender divide between people who support their rights and want to strip them away, being armed is likely NOT a horrible idea.", 'created': '2024-11-09 16:28:26', 'submission_id': '1gmsctl'}
{'comment': 'Firearm up.', 'created': '2024-11-09 02:18:10', 'submission_id': '1gmsctl'}
{'comment': "Don't give them the chance. Stick in groups, let people know where you're going, and know who your local Tim Walz is.", 'created': '2024-11-09 01:52:52', 'submission_id': '1gmsctl'}
{'comment': 'Knives and firearms.', 'created': '2024-11-09 05:38:05', 'submission_id': '1gmsctl'}
{'comment': 'We need to get pepper spray', 'created': '2024-11-09 03:54:05', 'submission_id': '1gmsctl'}
{'comment': "There used to be an art exhibit of clothes women and girls were wearing when they were raped.\n\nIt included children's clothes,sweatshirts, modest dresses, t shirt and jeans, a full veil. Any outfit under the sun.\n\nIt doesn't matter what you wear or don't wear.", 'created': '2024-11-08 23:45:07', 'submission_id': '1gmsctl'}
{'comment': "Internalized misogyny. Women are still the underdog, but some are appealing to men, whom they look to to take care of them. Since we don't remain appealing to men as we age, we have to find a way to keep other women from taking our place. Keeping other women down is the point. As long as men have power over us, we will continue to have internal conflict.", 'created': '2024-11-09 02:20:53', 'submission_id': '1gmsctl'}
{'comment': "The leopards aren't going to eat *their* faces.", 'created': '2024-11-09 04:24:23', 'submission_id': '1gmsctl'}
{'comment': 'Some combination of believing Trump knows something about economics and not liking to hear Spanish on occasion, if I had to guess', 'created': '2024-11-09 04:31:50', 'submission_id': '1gmsctl'}
{'comment': "Low information voters who vote like their friends and family tell them to and don't really have any desire to look into it further. If someone gets all their news from boomer Facebook memes then that's what their world view is going to look like.", 'created': '2024-11-09 22:43:43', 'submission_id': '1gmsctl'}
{'comment': 'I was trying to mock Republicans. My bad. I have 4 sisters and 4 nieces... I am not on that pathetic ass side.', 'created': '2024-11-09 02:08:30', 'submission_id': '1gmsctl'}
{'comment': 'The funny thing is, if dudes just looked inward and worked on themselves a little, they’d realize you don’t even have to be some perfect chiseled man to get a woman to show interest. But they refuse, because they feel entitled.', 'created': '2024-11-09 07:24:03', 'submission_id': '1gmsctl'}
{'comment': 'Sadly I agree.', 'created': '2024-11-09 13:20:03', 'submission_id': '1gmsctl'}
{'comment': 'Wear the loose clothes to conceal a handgun.', 'created': '2024-11-09 00:22:36', 'submission_id': '1gmsctl'}
{'comment': "Thanks for clarifying. I'm at a loss and going through changes since the election. As a woman, I am worried. My partner has a daughter. I worry for her future. She's also part of the LBGTQ community. It's going to be a rough 4 years.", 'created': '2024-11-09 02:12:38', 'submission_id': '1gmsctl'}
{'comment': "You may want to add the /s then. We're in no man's zone. You can't rely on people knowing it's sarcasm when people are saying this unironically 😭", 'created': '2024-11-09 05:39:50', 'submission_id': '1gmsctl'}
{'comment': "Exactly. If they'd just treat girls with kindness and lose the bad attitude they could get girlfriends.", 'created': '2024-11-09 07:53:30', 'submission_id': '1gmsctl'}
{'comment': 'I may relocate, I’ve just about had enough', 'created': '2024-11-08 22:50:17', 'submission_id': '1gms0nf'}
{'comment': "It's wild in 2024 that we have to be weary of what we post, when MAGA is spouting racism and hatred with no repercussions. \n\nThat being said, thank you for this post, a few things I would not have thought of.", 'created': '2024-11-08 23:31:18', 'submission_id': '1gms0nf'}
{'comment': 'Hey, can we expand on one of these?\n\n"Not all Republicans support MAGA. ... Several are likely only pretending to support MAGA in order to stay in office to do what they can behind the scenes."\n\nI had a similar thought myself. I know this kind of thing gets you made fun of on Reddit, but at the same time, I can absolutely see how it\'s true. Trump doesn\'t have magic powers. He can\'t do Jedi mind tricks on people. And based on what many, MANY Republicans said before he became the Godfather of the GOP (including JD Vance, who called him "Hitler"), I think a lot of people are just pretending to go along with him to save their own skin. \n\nNot Marjorie Taylor Green or Lauren Boebert; I\'m sure they\'re true believers. But Graham, McConnell, Lankford, Romney, etc. Those folks probably can\'t WAIT to be rid of him.', 'created': '2024-11-08 22:50:28', 'submission_id': '1gms0nf'}
{'comment': 'I’m so energized to get involved in local government', 'created': '2024-11-08 23:25:54', 'submission_id': '1gms0nf'}
{'comment': 'WE NEED THIS!!', 'created': '2024-11-08 21:21:11', 'submission_id': '1gms0nf'}
{'comment': 'I’m struggling with the notion of 14A or 25A being used against Trump. That would make Vance the president. That guy scares me more than Trump', 'created': '2024-11-09 01:25:24', 'submission_id': '1gms0nf'}
{'comment': "Install and begin using Signal for messaging. Install on main phone. Then install on your accessory devices and link them from there. Messages are stored on *your device only* not synced back to a cloud service. Uses the Signal Protocol ([1](https://signal.org/blog/pqxdh/), [2](https://en.wikipedia.org/wiki/Signal_Protocol), [3](https://web.eecs.umich.edu/~yit/signal.html), [4](https://github.com/signalapp/libsignal)) for encryption. There is an option in the app's settings for bouncing your messages through an additional relay which adds more obscurity to the source of the data packets sent.\n\nIt still supports video chats, phone calls, and all the other stuff that you're used to on iMessage, Whatsapp, FB Messenger, etc. It is cross platform so you won't need to worry about your messages not being protected between Android and iOS (or between any of the below systems) like it is now with regular text messaging.\n\n[iPhone & iPad](https://apps.apple.com/us/app/signal-private-messenger/id874139669)\n\n[Android](https://play.google.com/store/apps/details?id=org.thoughtcrime.securesms&hl=en_US)\n\n[Windows](https://signal.org/download/windows/)\n\n[MacOS](https://signal.org/download/macos/)\n\n[Linux](https://signal.org/download/linux/)\n\nAlso my personal recommendation for a VPN is [Mullvad VPN](https://mullvad.net/en). You can even mail cash or use bitcoin to pay for the service so there is zero linking it back to you as an individual. It doesn't use emails, usernames, or passwords. Just an account number that is not linked to you in any way.\n\nMullvad does not log any information about the web traffic that goes through their servers. See their policies, [here](https://mullvad.net/en/help/how-we-handle-government-requests-user-data).\n\nMullvad offers native apps for Android, iOS/iPad OS, Windows, MacOS, and Linux. If you're using a new Windows computer that has an ARM processor (Snapdragon X Plus/Elite) you'll need to configure Wireguard to use it since they don't have a native ARM64 app yet for Windows ([configuration instructions here](https://mullvad.net/en/help/windows-openvpn-installation)).\n\nWireguard, can be installed for all the same systems. See links below:\n\n[Android](https://www.wireguard.com/install/#:~:text=apt%20install%20wireguard-,Android,-%5Bplay%20store)\n\n* [Play Store](https://play.google.com/store/apps/details?id=com.wireguard.android)\n* [Manual install via APK](https://download.wireguard.com/android-client/)\n\n[iPhone/iPad](https://apps.apple.com/us/app/wireguard/id1441195209?ls=1)\n\n[Windows](https://download.wireguard.com/windows-client/)\n\n[MacOS](https://apps.apple.com/us/app/wireguard/id1451685025?ls=1&mt=12)\n\n[Linux](https://www.wireguard.com/install/)\n\nFeel free to share this comment, along with the links/sources, anywhere and everywhere.", 'created': '2024-11-08 22:08:21', 'submission_id': '1gms0nf'}
{'comment': "If I'm going to be arrested for being anti trump I'm going to be arrested and loud about it", 'created': '2024-11-09 01:55:33', 'submission_id': '1gms0nf'}
{'comment': "the police part of this threw me off - i assumed they were all republicans so I looked it up and...yeah, wow - it's like 50/50 dem and republican with rest independent. I would have never guessed that.\n\nhttps://preview.redd.it/0h4iss3s0szd1.png?width=745&format=png&auto=webp&s=4dd55b0b59de6a0dabf0f05942a49cdd55feba33\n\nthis data was collected last year btw.", 'created': '2024-11-09 02:11:39', 'submission_id': '1gms0nf'}
{'comment': 'We shouldn’t have to go through all these hoops just to communicate. This is bullshit.', 'created': '2024-11-09 00:25:38', 'submission_id': '1gms0nf'}
{'comment': '2026 Midterm election campaigns will be here before you know it', 'created': '2024-11-10 16:59:35', 'submission_id': '1gms0nf'}
{'comment': "The naivette of thinking 2.7 million people with 12,000 police who have repeatedly shown disregard contempt and even violence against the people it swore to serve and protect is sad \n\nThe police are not anyone's freind or ally they're supposed to uphold the law instead of being a gang with self preservation and bullying as a core belief \n\nhttps://news.wttw.com/2020/08/23/dozens-protesters-reunited-bicycles-confiscated-police-july\n\nhttps://news.wttw.com/2020/06/01/photos-protesters-march-third-day-chicago-clash-police\n\nThey will squash any First Amendment rights \n\nSay bikes are weapons \n\nSurround you then tell you to leave and when they won't let you arrest you \n\nDefend yourself \n\nTake out the ear buds \n\nKeep phone in your pocket \n\nDO NOT CALL 911 especially if you're black brown or middle eastern you might end up dead even if you're a victim of violence", 'created': '2024-11-09 01:13:38', 'submission_id': '1gms0nf'}
{'comment': 'My community apparently is happy about this so...', 'created': '2024-11-08 21:43:33', 'submission_id': '1gms0nf'}
{'comment': 'Or...', 'created': '2024-11-09 01:01:36', 'submission_id': '1gms0nf'}
{'comment': 'This makes me nauseous. \nThat we even need it. This is not helpful for my anxiety right now lol just saying.', 'created': '2024-11-09 03:12:17', 'submission_id': '1gms0nf'}
{'comment': 'Take the gloves off already. I mean for real. Epstein info - that should blow up all media - but crickets because . . . rich people.\n\nNo. Enough already. When you see those "deportation camps" popping up everywhere will that be enough?\n\nGermans who sat around wringing their hands and all.', 'created': '2024-11-09 03:28:46', 'submission_id': '1gms0nf'}
{'comment': 'Well, we know Donald Trump cheated because he was telling magats that he didn’t really need their votes. Are they doing audits of all the ballots cast in the battleground states? Have the electorate check to see that their ballots were counted? Cause Trump went up with Hispanic men, up with men in general up with white women but the total votes cast was 3 million less than 2020. Where did 15 million votes for Harris go? I mean Louis DeJoy has been very quiet.', 'created': '2024-11-09 04:39:32', 'submission_id': '1gms0nf'}
{'comment': 'They need to gain and build trust instead of repeating the same practices that give them the well deserved reputation of boys with guns \n\nhttps://apnews.com/article/shooting-chicago-police-investigation-3d075a6dc4bc8fa3535d8dd2340446f7', 'created': '2024-11-09 15:55:03', 'submission_id': '1gms0nf'}
{'comment': 'Please stay and help organize with others.', 'created': '2024-11-09 15:25:00', 'submission_id': '1gms0nf'}
{'comment': 'I understand your frustration. If you leave then you are giving up. Don’t give up.', 'created': '2024-11-09 02:09:07', 'submission_id': '1gms0nf'}
{'comment': "Thank you for your feedback, friend.\n\nThere are many anti-MAGA Republicans and it is important to use strategy to get these types of Republicans elected in conservative areas.\n\nFor those who haven't read this article yet:\n\nhttps://www.cbsnews.com/news/republicans-endorsing-kamala-harris-2024/", 'created': '2024-11-09 00:11:10', 'submission_id': '1gms0nf'}
{'comment': "I'd go farther to say trump is now '78 and we all saw he was starting to have age take a toll on him. Im sure that once trump is out of the picture MAGA don't have this same sort of firebrand character to match. I remember GOP said Destantis could be that and he was terrible. There is only on trump and MAGA depend on him to lead them.", 'created': '2024-11-09 15:26:48', 'submission_id': '1gms0nf'}
{'comment': "I'm glad that you appreciate it, friend. *Bear hug*🐻 ❤️", 'created': '2024-11-08 21:26:06', 'submission_id': '1gms0nf'}
{'comment': 'You think JD can control and carry the MAGA banner for 2-3 years?', 'created': '2024-11-09 15:27:28', 'submission_id': '1gms0nf'}
{'comment': 'Thank you, friend. 🙏❤️', 'created': '2024-11-08 22:18:54', 'submission_id': '1gms0nf'}
{'comment': 'Tell me you work in Cyber Security sector without telling me you working the Cyber Security sector.', 'created': '2024-11-09 15:28:34', 'submission_id': '1gms0nf'}
{'comment': 'Hi Rellen.\n\nI appreciate your feedback.\n\nI definitely think that we all have a different role to play. Some will be outspoken to help maintain morale and others will need to do their activism quietly behind the scenes.\n\nWe all have a role to play. I support you doing what feels right for you.\n\nThanks again for your feedback, friend. 🙂', 'created': '2024-11-09 02:14:07', 'submission_id': '1gms0nf'}
{'comment': "Hi Furciferus.\n\nThank you for providing this info. I don't see a source listed. Would you kindly provide a link to the source?\n\nAlso, if I may address everyone reading this comment, while America's criminal justice system does need a major overhaul IMHO, we do have laws and we need people to enforce those laws. If we scare good people from becoming police officers because they are afraid of being judged and ostracized because of their profession, then only the apathetic folks will become police....which is counter-productive to our endeavors.\n\nWe need to encourage good people to become police and to not treat police as if they are a monolith with their beliefs and values.\n\nYour thoughts?", 'created': '2024-11-09 05:42:26', 'submission_id': '1gms0nf'}
{'comment': 'Turns my stomach that you all have to be so careful. 😒 Stay safe and fight the Nazis.', 'created': '2024-11-09 03:35:26', 'submission_id': '1gms0nf'}
{'comment': "Hi Existing Beyond.\n\nYour concerns about Police are understandable. That said, police officers are not a monolith with their political identities and values.\n\nIn fact, we are doing a lot of harm by promoting that people make negative assumptions about police officers' political identities and their personal values because it scares good people away from becoming police.\n\nThis graphic is suggesting that people research to see which police are anti-MAGA in their area.\n\nThank you for your feedback, friend.\n\nhttps://preview.redd.it/3hcsgyzl3tzd1.jpeg?width=1080&format=pjpg&auto=webp&s=019350bd46293377ce21fa7874a8c83336446549\n\nThoughts?", 'created': '2024-11-09 05:49:17', 'submission_id': '1gms0nf'}
{'comment': 'Hey there. I’m willing to bet you can find some people around your community who did not vote for this. Remember, all counties and states are purple. Just different shades of it. \n\nEven here in Massachusetts which is a very blue state, just a block away from me there were Trump lawn signs amidst many Harris/Walz signs on other adjacent lawns. So every community is a mix. No place is 100% red or 100% blue. The liberals in your area are probably just keeping a low profile given the propensity of the right to commit violence and vandalism on us. But if you’re willing to, I’m betting you can find them and form a connection.\n\nGood luck out there. We really do have to stick together, now more than ever.', 'created': '2024-11-09 00:12:12', 'submission_id': '1gms0nf'}
{'comment': 'https://preview.redd.it/a6fvkgbsorzd1.jpeg?width=850&format=pjpg&auto=webp&s=c362257ea57babe15b3951d008a9ac5c1f4aa39f', 'created': '2024-11-09 01:04:25', 'submission_id': '1gms0nf'}
{'comment': 'Understandable Hicks.\n\nPlease do what you need to do to prioritize your mental health.\n\nThank you for the feedback.\n\n*Bear hug*🐻 ❤️', 'created': '2024-11-09 05:30:48', 'submission_id': '1gms0nf'}
{'comment': "https://preview.redd.it/j90i0sauyszd1.jpeg?width=1080&format=pjpg&auto=webp&s=219ef39b5eaefe6e46f09fbcb8e32748bd6a9736\n\nHi Jaievan.\n\nYour concerns are absolutely valid. That said, for the sake of American democracy, I think it is extremely important that we be mindful of our choices of words when discussing this subject in order to uphold American democracy.\n\nAt this time, there is only speculation and reason to investigate further. That's it. There is currently no indisputable or tangible evidence.\n\nThoughts?\n\nThank you for your feedback, friend. 🙂", 'created': '2024-11-09 05:21:38', 'submission_id': '1gms0nf'}
{'comment': "Unless they have to. Some people don't have the ability to handle this shit, may have trauma backgrounds, etc.", 'created': '2024-11-09 04:14:48', 'submission_id': '1gms0nf'}
{'comment': '🫂', 'created': '2024-11-08 21:45:50', 'submission_id': '1gms0nf'}
{'comment': 'He doesn’t have too. If either happens maga will revolt, but heritage foundation will give him the support that he needs.', 'created': '2024-11-09 15:47:58', 'submission_id': '1gms0nf'}
{'comment': "I actually don't. I stare at construction drawings all day.\n\nTech is just a hobby for me.", 'created': '2024-11-09 16:33:17', 'submission_id': '1gms0nf'}
{'comment': 'OK let me scroll through the 12,000 Chicago officers we have to find out what political party they vote for \n\nMeanwhile...this is their leader \n*', 'created': '2024-11-09 15:48:54', 'submission_id': '1gms0nf'}
{'comment': 'Thank you, here you go ☺️😆🤗\n\n', 'created': '2024-11-09 06:25:32', 'submission_id': '1gms0nf'}
{'comment': 'So let’s get the evidence. Let’s get all the pundits, talk show hosts, media outlets to put out the word and ask voters in the battleground states to check that their ballots were counted. It’s all over social media that people checked and cannot find their votes.', 'created': '2024-11-09 05:27:34', 'submission_id': '1gms0nf'}
{'comment': 'https://preview.redd.it/ey0aj6hm2wzd1.jpeg?width=1080&format=pjpg&auto=webp&s=09aa773a9c174569b2c550be1c289d6f7d893559', 'created': '2024-11-09 15:49:07', 'submission_id': '1gms0nf'}
{'comment': 'Thank you. \n\nThat was the best hug....ever. 😁❤️', 'created': '2024-11-09 06:27:01', 'submission_id': '1gms0nf'}
{'comment': 'So, I did share this online:\n\nhttps://preview.redd.it/rbigelzr5tzd1.png?width=1920&format=pjpg&auto=webp&s=b1c5baf1f335d5329d676decc2f5ca138673b78a\n\nFeel free to share it as well.\n\nThanks, Jaievan.', 'created': '2024-11-09 06:01:26', 'submission_id': '1gms0nf'}
{'comment': "The people allowed to protest because they can't drink at a bar during lockdown vs the people in the links one of them was a George Floyd protest", 'created': '2024-11-09 15:51:19', 'submission_id': '1gms0nf'}
{'comment': "Yeah 😹 tbh I'm actually sorta known for my good hugs IRL so thank you 🤗", 'created': '2024-11-09 06:32:21', 'submission_id': '1gms0nf'}
{'comment': 'https://preview.redd.it/y7w8hb433wzd1.jpeg?width=1080&format=pjpg&auto=webp&s=6643a9f719cd53b99b717eafec208d1b5e5555d3', 'created': '2024-11-09 15:51:42', 'submission_id': '1gms0nf'}
{'comment': 'Omg. I spit my drink out! Haha', 'created': '2024-11-08 23:34:57', 'submission_id': '1gmrnrm'}
{'comment': 'Is that you, King from tekken?', 'created': '2024-11-09 05:23:33', 'submission_id': '1gmrnrm'}
{'comment': 'Yeah. I don’t get it.', 'created': '2024-11-09 04:35:46', 'submission_id': '1gmrnrm'}
{'comment': 'yeah ok whatever', 'created': '2024-11-09 15:19:46', 'submission_id': '1gmrnrm'}
{'comment': '', 'created': '2024-11-09 12:40:11', 'submission_id': '1gmrnrm'}
{'comment': 'Copy paste: Leopards Eating People\'s Faces Party\xa0refers to a parody of regretful voters who vote for cruel and unjust policies (and politicians) and are then surprised when their own lives become worse as a result. On October 16th, 2015, Twitter user @cavalorn tweeted, "\'I never thought leopards would eat MY face,\' sobs woman who voted for the Leopards Eating People\'s Faces Party." The tweet became a common way to refer to regretful voters over the following five years.', 'created': '2024-11-09 04:38:49', 'submission_id': '1gmrnrm'}
{'comment': 'Looks like we’ve got an eaten face here, everyone!', 'created': '2024-11-09 16:18:47', 'submission_id': '1gmrnrm'}
{'comment': 'Actually, no, I voted for Harris Walz, I just think this analogy sucks', 'created': '2024-11-09 16:20:17', 'submission_id': '1gmrnrm'}
{'comment': "That's the same thought I had. I plan on stocking up on everything I can before the end of January, and joining free/trade/barter groups. But I'll admit I also plan on doing this because I don't want to use my dollars to stimulate an economy under trump. No more superfluous purchases until he's gone.", 'created': '2024-11-09 02:33:11', 'submission_id': '1gmredr'}
{'comment': 'Being entirely self sufficient is incredibly difficult but I learned during the pandemic stocking up on things is always a good idea', 'created': '2024-11-09 02:11:09', 'submission_id': '1gmredr'}
{'comment': 'I can’t fucking wait for that last word to hit him right in his fat orange face. I will have a massive party when he’s gone. I don’t care if couch fucker is in charge after. I’ve lost my bearings. I don’t care about decorum. I cannot wait for this evil fuck to exit this world forever.', 'created': '2024-11-09 00:29:54', 'submission_id': '1gmr8nc'}
{'comment': 'You bet your ass it was. Fucker belongs in prison for what he did with classified NSA docs and with Jan 6 riot and with the fake electors scam.', 'created': '2024-11-09 00:18:41', 'submission_id': '1gmr8nc'}
{'comment': 'I doubt Trump cares about mortality. The man’s bmi is higher than his son on a Friday night.', 'created': '2024-11-09 00:09:20', 'submission_id': '1gmr8nc'}
{'comment': "The Grim Reaper can't come soon enough!", 'created': '2024-11-09 00:27:25', 'submission_id': '1gmr8nc'}
{'comment': 'I’m not even sure the vote is legit. No close calls, a complete shutout. No automatic recounts etc. It feels surreal. \n\nWe haven’t had an election like that in awhile.', 'created': '2024-11-09 02:54:17', 'submission_id': '1gmr8nc'}
{'comment': 'He has no morality. Just narcissism.', 'created': '2024-11-09 05:49:55', 'submission_id': '1gmr8nc'}
{'comment': 'Here’s to hoping for a debilitating, painful death for this asshole.', 'created': '2024-11-09 11:29:09', 'submission_id': '1gmr8nc'}
{'comment': 'Blame the voters. Eggs are too expensive you see', 'created': '2024-11-09 11:50:28', 'submission_id': '1gmr8nc'}
{'comment': 'Serious question. Can the indictments be brought again after he leaves office or is there a statute of limitations on everything?', 'created': '2024-11-09 10:20:24', 'submission_id': '1gmr8nc'}
{'comment': 'Or seal team six, eh?', 'created': '2024-11-10 06:10:35', 'submission_id': '1gmr8nc'}
{'comment': 'My wife says it almost every day. Fucker needs to just die already. It can’t come soon enough. I was honestly hoping for it to happen before the election to spare us all, but no such luck ☹️', 'created': '2024-11-09 04:17:58', 'submission_id': '1gmr8nc'}
{'comment': 'Praying for this daily.', 'created': '2024-11-09 00:30:54', 'submission_id': '1gmr8nc'}
{'comment': 'The Hamburger from Heaven', 'created': '2024-11-09 00:55:03', 'submission_id': '1gmr8nc'}
{'comment': "It just proves to me what I always thought - this country is corrupt and full of selfish people\n\nDon't forget that your neighbors sold you out for an economy they will never see", 'created': '2024-11-09 19:11:08', 'submission_id': '1gmr8nc'}
{'comment': 'Free paywall workaround:\n\nhttps://archive.is/u70sC', 'created': '2024-11-08 22:06:03', 'submission_id': '1gmr4xe'}
{'comment': 'Make good arguments and put forward a detailed vision of the future. Engage regularly and earnestly with people who disagree with you. Meet people where they are and understand that we all have different lived experiences and intuitions. Leave behind identity politics and focus on substance.', 'created': '2024-11-08 20:54:27', 'submission_id': '1gmr4xe'}
{'comment': 'Run.', 'created': '2024-11-08 21:09:39', 'submission_id': '1gmr4xe'}
{'comment': 'Keep calm. Fascism needs an enemy to survive.', 'created': '2024-11-09 03:45:28', 'submission_id': '1gmr4xe'}
{'comment': "Give his voters and everyone who didn't think voting mattered everything he promised them.", 'created': '2024-11-09 19:06:02', 'submission_id': '1gmr4xe'}
{'comment': 'GAVIN NEWSOM', 'created': '2024-11-08 21:39:09', 'submission_id': '1gmr4xe'}
{'comment': "Identify who we need to have vote for us.\n\nGo out and legitimately, honestly listen to their needs and accept those needs as real.\n\nStop calling people who we want to vote for us names and disregarding their views as wrong.\n\nAccept that we are 'out of touch' and voters don't care about celebrity endorsements.", 'created': '2024-11-08 20:56:10', 'submission_id': '1gmr4xe'}
{'comment': 'That this could be taken two ways simultaneously is impressive. Hats off to you, sir.', 'created': '2024-11-08 21:41:25', 'submission_id': '1gmr4xe'}
{'comment': 'Thank you. Thank you very much.', 'created': '2024-11-08 23:15:45', 'submission_id': '1gmr4xe'}
{'comment': 'I met Janelle when I lived in Happy Valley. She knocked on my door, a very pleasant & intelligent woman.', 'created': '2024-11-08 20:55:55', 'submission_id': '1gmqqlu'}
{'comment': 'The state house democrats just took the house here in PA. I’m so relieved.', 'created': '2024-11-09 00:25:50', 'submission_id': '1gmqqlu'}
{'comment': 'What’s the count? Did we lose the house too?', 'created': '2024-11-08 21:19:11', 'submission_id': '1gmqqlu'}
{'comment': 'We gotta have majority. Being in control of the committees is a huge deal. No more sham investigations from house oversight', 'created': '2024-11-09 00:16:26', 'submission_id': '1gmqqlu'}
{'comment': 'I still have hope but as we’ve seen over the past 2 years, a 2 seat Republican majority is not governable by Johnson. There are too many factions in their Party. Unlike politics in general, in the House Democrats fall in line, at least they did under Pelosi and it’s to be believed they will under Jeffries.', 'created': '2024-11-09 00:40:29', 'submission_id': '1gmqqlu'}
{'comment': 'There are a bunch of house races left to call', 'created': '2024-11-09 00:27:56', 'submission_id': '1gmqqlu'}
{'comment': 'Which states still need ballot curing? Where do we sign up?', 'created': '2024-11-09 01:24:44', 'submission_id': '1gmqqlu'}
{'comment': 'If we take the House back I won’t have to buy guns. This is awesome!!\n\nTrump with unchecked power is some scary fucking shit.🇺🇸💩🇺🇸', 'created': '2024-11-09 06:53:37', 'submission_id': '1gmqqlu'}
{'comment': 'Only 63% of CA is counted!! There is a chance.', 'created': '2024-11-09 06:55:00', 'submission_id': '1gmqqlu'}
{'comment': 'He will have all three branches government with no checks and balances. After he has already threatened to use Military action against American Citizens, this is very serious and scary stuff. CNN reporting panic at the Pentagon is alarming.', 'created': '2024-11-09 03:36:52', 'submission_id': '1gmqqlu'}
{'comment': 'Yeah it’ll be so great when the conservatives take any mild stance and blow it out of proportion and use it to feed their media machine and point and go “look evil black lady wants to take your money.”', 'created': '2024-11-09 03:51:50', 'submission_id': '1gmqqlu'}
{'comment': "If you look at results as they currently stand, assuming no races flip from where they currently are, it's looking like Dems 215 and Reps 220 in the House. A razor thin majority like the one they had the past two years. Though obviously they can do more with that when they control the Senate and Presidency as well.\n\nBut it's reasonable to expect Democrats can be pretty effective in the House if they can vote in lockstep and convince just 3 Republicans to defect on important votes. And by effective, I mean block the worst bits of legislation that Republicans want to pass.\n\nSource: [https://abcnews.go.com/Elections/2024-us-house-election-results-live-map](https://abcnews.go.com/Elections/2024-us-house-election-results-live-map)\n\nThe results shown are for races with a projected winner. I then just counted the races without a projected winner based on how the vote currently stands.\n\nIt's entirely possible the result will be different than what I suggest above, so don't give that number too much weight yet.", 'created': '2024-11-09 00:03:40', 'submission_id': '1gmqqlu'}
{'comment': 'It is currently 202-212 with the Republicans winning. 218 is needed for majority.', 'created': '2024-11-08 21:32:04', 'submission_id': '1gmqqlu'}
{'comment': "Exactly. That gives Republicans just enough to be blamed for everything while allowing the wingnuts to demand things they know they simply can't have so they can grift fundraisers when Johnson is forced to turn to Democrats to pass half-too Bills (budgets, Defense, etc.)", 'created': '2024-11-09 04:37:21', 'submission_id': '1gmqqlu'}
{'comment': 'What I want to see is that even if democrats win, or if even republicans repeat e same issues, dems let a few centrists push some of these bills over the edge. Don’t rescue republicans from their mistakes. Sabotage them. Play political games. It’s how you win', 'created': '2024-11-09 11:48:37', 'submission_id': '1gmqqlu'}
{'comment': 'California does', 'created': '2024-11-09 05:43:56', 'submission_id': '1gmqqlu'}
{'comment': 'https://preview.redd.it/fz7f88rvzszd1.png?width=1080&format=pjpg&auto=webp&s=484b61fa8d75341ed3042398d8c2f7afc7405ceb\n\nHi South.\n\nI recognize that this is a disturbing, unsettling, and scary time for many.\n\nPlease see the graphic above in case it helps at all.\n\nThank you for your feedback, friend. 🙂💙', 'created': '2024-11-09 05:28:23', 'submission_id': '1gmqqlu'}
{'comment': 'There’d need to be tea party style ground noise to pressure any republicans. They’ve run lock step ever since the non-maga republicans were forced out after Jan 6', 'created': '2024-11-09 00:52:01', 'submission_id': '1gmqqlu'}
{'comment': 'Many too close to call but it’s gonna be super close. If I want just one thing to go right it’s winning the house majority… somewhat of a weight would be lifted off of me at that point.', 'created': '2024-11-08 21:52:02', 'submission_id': '1gmqqlu'}
{'comment': 'Where do we sign up?', 'created': '2024-11-09 08:15:56', 'submission_id': '1gmqqlu'}
{'comment': ' No doubt changing my party status since it’s public record.', 'created': '2024-11-09 12:22:16', 'submission_id': '1gmqqlu'}
{'comment': 'Don’t forget that the Gaetz/MTG/Boebert trio of Dipshits go off script to grandstand.', 'created': '2024-11-09 06:22:39', 'submission_id': '1gmqqlu'}
{'comment': "Yeah. Right now April McLean Delaney in Maryland is starting to pull out in front of Neil Parrot. So that is good news too (I don't think it has been called yet).", 'created': '2024-11-08 21:57:05', 'submission_id': '1gmqqlu'}
{'comment': 'Try here, I guess\n\nhttps://dccc.org/protectthevote/', 'created': '2024-11-09 08:26:01', 'submission_id': '1gmqqlu'}
{'comment': 'It hasn’t, but it it was in the NYT races the democrats were expected to narrowly win. So far the only race that is called where d’s were expected to win but didn’t is the Nebraska 2. We are behind in the California 47 but it’s only by .22 and only 76% reported. Under the NYT count we still only have 199 (Oregon 5 isn’t called)', 'created': '2024-11-09 00:35:02', 'submission_id': '1gmqqlu'}
{'comment': 'Thank you.', 'created': '2024-11-09 08:39:22', 'submission_id': '1gmqqlu'}
{'comment': "From the event organizers:\n\n>We are forever grateful for the work this team has put in over the last few months (and years for many). We cannot underscore that the heart of this campaign and its touch on the American people is because of all of you and your continuous commitment and belief in our democracy.\n\n>The work isn't going to just end - we have days and fights ahead of us, but for now let's reflect on the incredible work done by this team.", 'created': '2024-11-08 20:10:05', 'submission_id': '1gmqdmm'}
{'comment': "I'll be on it. Hope to see some of you there.", 'created': '2024-11-08 20:19:32', 'submission_id': '1gmqdmm'}
{'comment': "I think we have to avoid making two mistakes:\n\n1. Things are not hopeless. We can't tell ourselves that they are, or our inclination will be to give up.\n2. Things are not okay. We can't tell ourselves that they are, or we'll be guilty of burying our heads in the sand.\n\nSo, what I think we do is catch our breath, then look at what our country needs, prioritize the things that are most important to us (and our priorities may vary — for one person it might be reproductive freedom, for another it might be the environment, for another it might be immigrant rights, etc.), and we have to get to work in those areas.\n\nPick something to do. Join your city/town/county Democratic Committee. Volunteer at a food banks; fundraise for Planned Parenthood or NARAL, or find another way to help other people. We can't just lie back and let it happen. We have to do what we can to make things better, or at least less bad. \n\nThis is not the first dark time in the U.S., it's just the latest one. And it's certainly not the first or worst dark time in human history. The survivors — and we're their heirs — have always pulled together, helped where they could, fixed what they could, and fought how they could.\n\nNow it's our turn.", 'created': '2024-11-09 00:09:49', 'submission_id': '1gmp5uf'}
{'comment': 'What if all us democrats just went on strike from working?', 'created': '2024-11-08 20:08:18', 'submission_id': '1gmp5uf'}
{'comment': 'Have back up plans….I am a federal worker. I’m hoping for the best, but bracing for the worse. \n\nI started looking for city and state jobs.', 'created': '2024-11-08 22:11:37', 'submission_id': '1gmp5uf'}
{'comment': '"Man plans. God laughs."\n\n"We\'re born. We\'re miserable. We die."\n\nCheer up! You\'re just getting to appreciate the human condition! Enjoy the better parts. Persevere through the bad parts. In the end, no one here gets out alive. 😎', 'created': '2024-11-08 22:13:26', 'submission_id': '1gmp5uf'}
{'comment': 'I hear you. I feel this way too. Obviously, we have to continue on. I expect that we will feel better once what is going to happen actually occurs. Once uncertainty is lifted, we will know how to properly proceed. That will make me feel better. I hate not having a clear idea of what is to come, or what is happening and I know this is true for most everyone.', 'created': '2024-11-08 22:20:15', 'submission_id': '1gmp5uf'}
{'comment': "We can't give up. We have to fight. Our future depends on it.", 'created': '2024-11-08 22:46:26', 'submission_id': '1gmp5uf'}
{'comment': 'We need to have our own January 6.\n\nWe’ll threaten to hang Kamala Harris unless she confirms the vote for Kamala Harris as the next POTUS.', 'created': '2024-11-08 21:14:22', 'submission_id': '1gmp5uf'}
{'comment': "Just do what I'm doing: finish school, get a job that's connected to a country in the EU, apply for a work permit and transfer/move when you can. Expatriate and eventually become a full citizen. It's not like you won't be able to visit", 'created': '2024-11-09 02:38:02', 'submission_id': '1gmp5uf'}
{'comment': 'We don’t have the will power d\nTo do that. I think it would be a 👍🏻', 'created': '2024-11-08 20:36:41', 'submission_id': '1gmp5uf'}
{'comment': 'It doesn’t matter if we went on strike from working. They plan on crashing the economy. That’s what deporting millions will do. There will be a huge lack of construction workers, roofers, etc., so the housing market will flail. And all the millions deported will not be paying rent or mortgages, so landlords will be out that income. No way they don’t understand all the repercussions, that’s why I say they will do it on purpose. The cruelty is the point. Keep us powerless like \n\n\ndrones. That’s how they want us.', 'created': '2024-11-08 21:30:17', 'submission_id': '1gmp5uf'}
{'comment': 'Me too.', 'created': '2024-11-09 01:36:29', 'submission_id': '1gmp5uf'}
{'comment': 'How long do you think that will take?', 'created': '2024-11-09 01:24:00', 'submission_id': '1gmp5uf'}
{'comment': 'At least you made me laugh', 'created': '2024-11-08 21:47:55', 'submission_id': '1gmp5uf'}
{'comment': "We'd probably succeed where they failed. Don't see a lot of us going off task to spend time smearing our own shit on the walls.", 'created': '2024-11-08 21:47:45', 'submission_id': '1gmp5uf'}
{'comment': 'Ok. This was funny.', 'created': '2024-11-08 22:19:28', 'submission_id': '1gmp5uf'}
{'comment': 'We would be the most reasonable angry mob ever. I love it.', 'created': '2024-11-08 22:14:36', 'submission_id': '1gmp5uf'}
{'comment': 'Are you implying that the housing market thrives due to the exploited labor of undocumented workers? Bc that’s a pretty racist AND classist. \n\nAlso, since when should we give a crap about the income of *landlords*?? 💀', 'created': '2024-11-09 04:43:47', 'submission_id': '1gmp5uf'}
{'comment': 'I refuse to “hope”…those days ended when Obama left office', 'created': '2024-11-09 01:51:43', 'submission_id': '1gmp5uf'}
{'comment': 'It might take four years more or less. I think the important thing to remember is that our deep seated knowledge that we collectively must take care of one another will endure (even past our lives). The lies and division that this man and the people who surround him have used to gain power is destined to destroy itself. Even if we don’t survive, humans must learn to take care of each other as well as the planet we inhabit. We know that we cannot tolerate unfairness, which will be what humans toil over until they can find the balance. I believe there is a balance and that humans will find it. Perhaps, it will come with automation and ai … when there is no work to be done and no reason to be argued for wealth inequality.', 'created': '2024-11-09 03:10:17', 'submission_id': '1gmp5uf'}
{'comment': 'First laugh I’ve had in 72 hours.', 'created': '2024-11-09 02:26:29', 'submission_id': '1gmp5uf'}
{'comment': 'Present Kamala with a bunch of signatures to pull off a successful Jan 6.', 'created': '2024-11-08 22:20:01', 'submission_id': '1gmp5uf'}
{'comment': 'We’d be asking the Capitol Police if they’re OK before bopping them on the head with our rolled up yoga mats….', 'created': '2024-11-09 02:25:44', 'submission_id': '1gmp5uf'}
{'comment': "It's neither because it's remarkably accurate. 30 to 40% of all construction related industries are staffed by an immigrant workforce. If that much of the labor relating to these industries just vanishes, we can't keep up with housing demand. And yes - that will cause it to get worse and, yes! Possibly collapse. \n\nIt isn't racist or classist to be honest about where the workforce is coming from.", 'created': '2024-11-09 15:05:22', 'submission_id': '1gmp5uf'}
{'comment': 'Harris: I want to raise the minimum wage. I want to strengthen unions. I want to help with childcare costs. I want Medicare to pay for in home healthcare. I want to give first time home buyers a break. \nTrump low income voters: Harris is ignoring me, but Trump is going to deport everyone taking my job and raising housing costs.\n\nTrump voters in two years: I’m out of work and unemployment has reached double digits and inflation is at 15% and I’ve lost my healthcare! It is all Biden’s fault!', 'created': '2024-11-08 20:32:03', 'submission_id': '1gmpaqa'}
{'comment': "The policy doesn't matter, it's the message. Harris (and Biden) delivered a bunch of solutions. A populist like Bernie (and Trump) will really make people feel heard about their problems and that someone is fighting for them, first and foremost. I never got that sense from Harris, except at an intellectual level.\n\nOf course it's bullshit. But there's a certain reality to it that is being missed in the dialog about it. It's about messaging, not results.", 'created': '2024-11-08 21:09:12', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 21:21:58', 'submission_id': '1gmpaqa'}
{'comment': 'Without a propaganda machine there was nothing to translate dems boring but good policies to the average voter. Thats how they failed', 'created': '2024-11-08 21:17:46', 'submission_id': '1gmpaqa'}
{'comment': "Absolute BS. Please read this reddit post from a union worker. Democrats didn't abandon working class. Culture wars won. Trump campaign already has said that ads like Anti trans commercials were the most effective. People that claim to be in the middle is definitely more align with far right extremists https://www.reddit.com/r/IBEW/s/iEYXQZHEmQ", 'created': '2024-11-08 20:13:59', 'submission_id': '1gmpaqa'}
{'comment': "I'm confused by how Bernie couldn't understand that the Republicans used the fascist playbook to weaponize rhetoric. And that is THE cause why Republicans won.\n\nAll you people looking to blame another Democrat or Democratic organization need to get your head on straight and recognize the insidious cancer of propaganda and lies that is killing our democracy.", 'created': '2024-11-08 20:07:05', 'submission_id': '1gmpaqa'}
{'comment': 'Biden provided the most pro-labor, pro-working class administration since FDR and progressives game him a shit sandwich for it. I don’t give a shit what he or any of his minions have to say about anything.', 'created': '2024-11-08 21:38:25', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 21:24:36', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 20:13:43', 'submission_id': '1gmpaqa'}
{'comment': 'Fucking good! Tired of this told you so bs. Fucking right wing nut jobs radicalized white youth and we got complacent.', 'created': '2024-11-08 20:24:31', 'submission_id': '1gmpaqa'}
{'comment': "Voters have said in every exit poll they cared about two things: inflation and immigration. Inflation is going to hurt the working class more so he isn't totally wrong. Though its easy to say on the sidelines when he couldn't even get as many votes as her in his own state. Until he can run a campaign as good as she can maybe he should sit down", 'created': '2024-11-08 20:34:57', 'submission_id': '1gmpaqa'}
{'comment': 'Bernie Sanders is wrong.\n\nMAGA won because of misinformation: [https://www.reddit.com/r/democrats/comments/1gmlg06/misinformation\\_works\\_there\\_is\\_no\\_candidate\\_that/](https://www.reddit.com/r/democrats/comments/1gmlg06/misinformation_works_there_is_no_candidate_that/)', 'created': '2024-11-08 20:27:12', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 20:48:49', 'submission_id': '1gmpaqa'}
{'comment': "I've been a fan of his in the past but this is ... time to shut the fuck up old man. \n\nHe maybe could have been talking about all the policies that Democrats were doing that WERE good for the working class and how the Republicans were blocking them for the last few years. \n\nAnd no, we didn't lose because of Gaza either though that will be a pretense as well. Because the Republicans have made it very clear that they want Palestine to disappear.\n\nWe lost because we don't have enough inroads into alternative media and are limited on MSM. The DNC needs to invest in podcasts and podcasters. \n\nWe need to figure out how to win the (sorry to put it this way) info-wars. Because we've lost them over and over and it's costing us our country. It's costing the mis-informed their country too but they won't realize it for a while.", 'created': '2024-11-08 20:08:36', 'submission_id': '1gmpaqa'}
{'comment': "He is LITERALLY wrong though. The claim wasn't that they said inflation isn't bad or hurting the working class, Bernie is saying they abandoned the working class. Literally Kamalas entire platform was about the working class. Concrete steps to keep inflation low, to empower unions, to bring prices down, etc. Bernie is just making shit up and I don't know why.", 'created': '2024-11-08 21:23:08', 'submission_id': '1gmpaqa'}
{'comment': "He is right. Bernie is full of it on this one. This election was about the fear of a strong woman leading this country and hatred for others. Trump isn't the only republican that can fix the economy or help the middle class. He was personally selected for a reason.", 'created': '2024-11-08 20:44:42', 'submission_id': '1gmpaqa'}
{'comment': "LFG! Fuck Bernie. There's a reason he underperformed Harris in his home state.\n\nI'm tired of this bullshit about what Dems did wrong for the working class when Biden did more for us since FDR. We have a new problem to deal with in the modern era: it's disinformation and misinformation. I'm not going to call voters irrational because when traditional media has failed then so hard, and right wing propaganda has been lying to them, they are acting rationally. \n\nBut their decisions are not based on policy.\n\nActing like the working class is plugged into how Biden's policies have impacted them and they're making a calculated decision is fucking dumb and outdated. We have a misinformation problem that's only going to get worse--especially when we're not diagnosing it correctly.", 'created': '2024-11-08 20:42:10', 'submission_id': '1gmpaqa'}
{'comment': 'I’m honestly so tired of Bernie and his fans. He used the Democratic Party when he wanted to be president, and is now running away when it’s convenient for him. The party adopted a lot of his economic policies and it didn’t matter anyway', 'created': '2024-11-08 19:55:27', 'submission_id': '1gmpaqa'}
{'comment': 'I normally agree with Bernie and like him but this time I don’t think he’s right. Lots of things likely led to this loss.', 'created': '2024-11-08 21:03:25', 'submission_id': '1gmpaqa'}
{'comment': 'Now that the election is over, Sanders is back to grandstanding and “I Told You So”ing. What a fucking surprise. \n\nI didn’t read his statement, but let me guess; if the Democrats had just supported deporting all Israelis to Poland, they would have been able to win the election, right? Am I close?', 'created': '2024-11-08 20:01:06', 'submission_id': '1gmpaqa'}
{'comment': 'Nope, Bernie is wrong on this one. I find it kind of annoying how he also has a sort of stan following where he can say no wrong. No, he\'s wrong here.\n\nYou can list the endless Biden/Kamala and Dem contributions to help everyday Americans. Who is stronger on Unions? It sure as shit ain\'t Trump/Elon. Obamacare helps families - anything to ease financial burdens helps the working class (DUH). What the hell, Bernie?\n\nNo, misinformation won, and we all underestimated (you too, Bernie) how so many young men prefer their "news" only from Joe Rogan or podcasts, and that\'s fucking dangerous. But that\'s not on Dems. That\'s like blaming ourselves if someone because a paint-huffing addict. I didn\'t make them do that shit.', 'created': '2024-11-08 21:38:09', 'submission_id': '1gmpaqa'}
{'comment': "Bernie sure does love a bullshit talking point with zero to back it up. How exactly did Democrats fail working people? What can be corrected? He and his idiot fans have nothing. Bernie is the Left's Trump.", 'created': '2024-11-08 20:44:24', 'submission_id': '1gmpaqa'}
{'comment': 'On this point I agree with him. Sanders needs to shut up and join the party already to help it recover, win, and represent what he wants. Piling on in the aftermath like this stinks of ego stroking and "I told you so." \n\nBiden\'s presidency was the most productive admin for the working/middle class and labor since like, LBJ. They just had the albatross of COVID\'s economic fallout, a bumpy few years in geopolitics, and an incumbent president who was just old and lacked the charisma and ability to communicate his accomplishments effectively. Sanders is only helping the Republicans bury those accomplishments with rhetoric like this.', 'created': '2024-11-08 21:16:34', 'submission_id': '1gmpaqa'}
{'comment': 'Ugh I am so over crazy Bernie. Tremendously glad this dude lost our party’s nomination in 2016 and 2020.', 'created': '2024-11-08 20:50:13', 'submission_id': '1gmpaqa'}
{'comment': 'I’m so tired of Sanders doing the absolute bare minimum as a surrogate and then blaming Democrats for losses. \n\nLike man, you’re not even a member of the party. If you want to criticize with any authority, put up or shut up.', 'created': '2024-11-08 22:57:08', 'submission_id': '1gmpaqa'}
{'comment': 'I no longer stand by Bernie in the slightest after absolutely shitting on the coalition he helped to build with the Biden admin. \n\nNot playing the schism shit, infighting keeps up and I’ll just stop voting', 'created': '2024-11-08 21:19:20', 'submission_id': '1gmpaqa'}
{'comment': "Sanders analysis of the election was to soon and to harsh. He needed to wait a few weeks and choose his words differently. Having said that, it's clear the democratic coalition is currently not large enough to win the house, senate, or white house. Yes there was disinformation that swayed a small percent of voters. But the party needs to expand it's appeal. \n\nThis is no time for a circular firing squad, we cant loos any more voters. there was a 33% shift in Latino male voters to trump. Young men regardless of race are exiting the party. Lets concentrate on expanding the party platform to address the needs of these groups.", 'created': '2024-11-08 23:22:09', 'submission_id': '1gmpaqa'}
{'comment': "Bernie *may* be right... And he *might* have done better, but he persists in treating the Democratic party like the enemy, using them to fundraise, and pissing on them otherwise, pretending he's somehow above the fray and his socialism doesn't have a stench to it.", 'created': '2024-11-08 22:02:11', 'submission_id': '1gmpaqa'}
{'comment': "Bernie Sanders has never accepted any accountability for how his 2016 campaign damaged Clinton and the Democrats, how a disturbing number of his supporters, staff, and surrogates worked actively to get Trump elected, and frankly, how for all his time as Senator, Sanders has accomplished bupkus except to elevate the Teamsters head who promptly pissed in Joe Biden's eye.\n\nBiden was the most pro-labor President ever. He went out of his way to make sure American labor was supported in his big spending packages. He signed the Butch Lewis Act into law which SAVED union pensions. Senator Sherrod Brown was the biggest champion of the Butch Lewis Act. He lost to a multi-millionaire extremist.\n\nSanders gets to always be right because he never has anything to risk. He's never at risk of losing his Senate seat and he never bothers to actually try to pass anything meaningful. And now we have to pray he lives long enough for Vermont to elect a Democratic governor in 2026 who would get to appoint the successor. \n\nThere were mistakes but Sanders can't accept that working class and rural voters abandoned the Democrats, not the other way around.", 'created': '2024-11-08 21:46:59', 'submission_id': '1gmpaqa'}
{'comment': 'He is full of shit. Biden is pro-union, pro-blue collar worker. He has done more for them than they’ll ever know. Why? Because our media, in all its forms, is broken. They never reported on the incredible things he did for the working class (despite constant obstruction from the republicans) - they focused on whatever then-*citizen* trump was doing and/or saying. The Democrats will look under every rock before they criticize the media - somehow they still believe if they’re really nice and don’t call out all the journalists, news reporters and media “personalities” who have ignored everything good Biden and the Dems did over the last four years, the media will treat them kindly. They need to stop being pussies and start figuring out how to reach people who have been, and continue to be deceived by the media. As long as Faux News is broadcast everywhere (including military bases!), nothing will change. It will only get worse.', 'created': '2024-11-08 23:21:17', 'submission_id': '1gmpaqa'}
{'comment': 'It is BS. Much love to Bernie but he doesn’t know how to pivot.', 'created': '2024-11-08 22:54:05', 'submission_id': '1gmpaqa'}
{'comment': 'Why the fuck are they quoting Greenwald?', 'created': '2024-11-08 22:50:53', 'submission_id': '1gmpaqa'}
{'comment': 'I am begging Reddit to stop treating and amplifying everything Bernie says as an uncheckable truth - he lost twice and it wasn’t stolen from him. It’s SO easy to keep saying he would have won a general if he had the nomination because they’ll never make it out of a primary to prove it. It’s fine to be progressive but Bernie ISNT A DEMOCRAT !', 'created': '2024-11-08 21:32:36', 'submission_id': '1gmpaqa'}
{'comment': 'lol a few of the Bernie bros I know voted 3rd party this election top of the ticket. I have no respect for this shit when the alternative was fascism', 'created': '2024-11-08 22:27:49', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 20:35:23', 'submission_id': '1gmpaqa'}
{'comment': 'Go after him!! Lol.', 'created': '2024-11-08 20:29:28', 'submission_id': '1gmpaqa'}
{'comment': 'Fuck you Bernie! A Socialist blowhard that is just trying to find relevance.\n\nhttps://preview.redd.it/pi2poy68oqzd1.jpeg?width=1164&format=pjpg&auto=webp&s=ab133b9607f6f8c52e03c37e5f3c019f55fd443c', 'created': '2024-11-08 21:39:33', 'submission_id': '1gmpaqa'}
{'comment': "Good. I supported him (naively) in 2016 and 2020, but it's clear he's talking out of his ass. But so many will read his bullshit and eat it up.", 'created': '2024-11-08 21:38:07', 'submission_id': '1gmpaqa'}
{'comment': 'Mom and dad are fighting.', 'created': '2024-11-08 20:59:39', 'submission_id': '1gmpaqa'}
{'comment': "plus the media ignored her on point speeches and the pulled soundbites from rumps 3 hr ramblings.\n\nanybody who thought she wasn't reaching out to the common worker is a victim of the billionaire media and PACs.", 'created': '2024-11-08 20:38:05', 'submission_id': '1gmpaqa'}
{'comment': 'Thanks Obama', 'created': '2024-11-08 20:35:47', 'submission_id': '1gmpaqa'}
{'comment': '“Trump: Low Prices, Kamala: High Prices”\n\nTrump made his slogans bumper sticker simple. \n\nThe voters who care about policy we either have or we don’t. This isn’t 2000. It’s the unengaged voters who aren’t getting the message.', 'created': '2024-11-08 20:51:37', 'submission_id': '1gmpaqa'}
{'comment': 'They won’t be out of work, they’ll be in picking camps as replacements for the deported(read: dispatched -too expensive to keep), or perhaps to the Russian front as fresh maga meat for Vlad’s drunken beleaguered army. Vlad’s draft is older men too.', 'created': '2024-11-08 21:13:27', 'submission_id': '1gmpaqa'}
{'comment': 'Trump to working class voters: immigrants and trans people are destroying America! We need to increase the cost of imported goods!\n\nSomeone needs to explain to me how Trump did a better job of speaking to the needs of the working class.', 'created': '2024-11-08 21:16:36', 'submission_id': '1gmpaqa'}
{'comment': 'Biden led an incredibly progressive agenda, in partnership by Bernie, but it clearly wasn’t enough for voters. We need to figure out why.\n\nAlso, we need to better land the message. The “opportunity economy” phrase was just terrible. Kamala’s focus was too much on abortion and DJT’s threat to democracy.', 'created': '2024-11-08 22:22:24', 'submission_id': '1gmpaqa'}
{'comment': 'And my tear ducts will leak hot sand for them then.', 'created': '2024-11-08 23:07:18', 'submission_id': '1gmpaqa'}
{'comment': "The difference is that Harris had to explain why she was pro-worker. If you're explaining then you're losing.", 'created': '2024-11-08 20:57:35', 'submission_id': '1gmpaqa'}
{'comment': "well said. dems can't get people to believe their message. they also have a harder time delivering, which isn't all their fault, but im honestly tired of the excuses. republicans haven't really changed much since 2001. MAGA is just a repurposed, uglier version of the tea party. but republicans get their agenda passed, dirty tricks or not. i sure would rather have abortion enshrined in the constitution by some back alley shenanigans or bureaucratic tomfoolery than have a cadre of ultra wealthy ineffective leaders on their high moral ground parroting the same platitudes as they sulk away, once again, having failed to deliver. \n\n \nbiden has this lame duck chance to do something fantastic, but he'll just sit there for 2 months and then peacefully transition into his luxury retirement. he should flex the fuck out of the supreme court immunity garbage. one of the reasons the democrats failed this election is because he won't do that and we'll pretend that we're proud of him for being virtuous. meanwhile, republicans will use fucking gremlins to pass their agenda then outlaw gremlins before leaving office.", 'created': '2024-11-08 22:49:48', 'submission_id': '1gmpaqa'}
{'comment': 'I think the way to square this is NOT the Bernie Sanders approach, which is IMO empty calories. He’ll never go broke shouting “Democrats have turned their back on the common worker!” But doing the hard work of explaining *why* Harris would’ve been better for working people than Trump, fucking crickets.\n\nGet out of Vermont, Bernie, and start holding town halls across the country. Talk to the voters and explain why you caucus with Democrats.\n\nAnd if you *really* think the GOP does better for workers than Democrats, then change your caucus already and go with your people!', 'created': '2024-11-08 22:53:58', 'submission_id': '1gmpaqa'}
{'comment': "Also important to remember that Biden is the first president in history to stand in a picket line - while currently president. \n\nI love Bernie and feel a lot what he said is true, but Democrats didn't abandon the working class.", 'created': '2024-11-08 22:48:30', 'submission_id': '1gmpaqa'}
{'comment': "i reject that. the democratic leadership is responsible for countering that messaging effectively. we aren't going to get anywhere with the same out of touch guard in power. \n\ndo you remember what nancy pelosi said when asked if she should be barred from trading stocks? she's leveraged her position - as many do - to enrich herself and that's especially frustrating when normal folks who support democrats have no pathway to take part in the economy like that. that's just straight out of touch with the people. all that momentum from occupy wall street just told to fuck off and find a different party. \n\nThat's the problem. people don't like being lied to, right? republicans can just reinvent their reality. democrats are harder to galvanize. when the party behaves like they're righteous and altruistic when they're really living a lifestyle of such excess that none of us can even comprehend it, of course they lost enthusiasm on a grand scale. the republicans were right about kamala being foisted upon us. i was fine with it, but i was going to vote for the dems no matter what. i would have preferred a primary with robust debate like in 2020. that's how they got biden over the finish line. they thought we had the same momentum now and they should have known better. they are to blame for this.", 'created': '2024-11-08 23:04:26', 'submission_id': '1gmpaqa'}
{'comment': 'Right like this isn’t hard guys. I love Joe, but his ratings were terrible and he had no ability to be on tv giving Oval Office addresses or going to press conferences, etc. There was no excuse not to run a primary (where Kamala would’ve been the favorite), or for letting Kamala be more present in the American public over the past four years.', 'created': '2024-11-08 21:39:17', 'submission_id': '1gmpaqa'}
{'comment': 'Bernie doesn’t have a great answer on the “how” though. Biden was tremendously friendly to unions, and union members did not care one bit.', 'created': '2024-11-08 20:29:45', 'submission_id': '1gmpaqa'}
{'comment': 'The media didnt share that message whatsoever. Berns is sure quick to blame the groups he was working so closely with, and not the billionaire owned media that perpetuated the LIE that republicans are better for the working class. She and Biden were union friendly, advocated for better pay for workers too. The republicans lied, the media lied, Bernie should know that. The fact that instantly everyone is blaming the others is making it pretty clear they have given up. \n\nWe need party unity and preparation, not infighting.', 'created': '2024-11-08 20:45:13', 'submission_id': '1gmpaqa'}
{'comment': "How? Let me guess, they're all just itching for policy.", 'created': '2024-11-08 20:18:35', 'submission_id': '1gmpaqa'}
{'comment': "Ehhh that's a stretch. She only got into as the Presidential candidate because she was appointed, she didn't even make it to Iowa in 2020 while Bernie did win some primaries. Her campaign was pretty bad.", 'created': '2024-11-08 21:05:05', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 21:11:40', 'submission_id': '1gmpaqa'}
{'comment': "for every misinformation there is information. the democrats had plenty of time and plenty of warning to prepare for this. they should have taken better care of us. i dont think they did because they're not going to feel any pain from this. they don't really have a dog in the fight. they live in a reality where financial concerns don't exist. \n\npelosi, biden, harris, they're all gonna be just fine. better, even. we're the ones who are going to pay for their mistakes. we knew what the other team was capable of. we just rolled out the same old playbook and we're shocked? we need to change. we need leaders that inspire grass roots loyalty, not 90 year old multi-millionaires who dont believe in insider trading rules for congress.", 'created': '2024-11-08 23:11:34', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 21:35:08', 'submission_id': '1gmpaqa'}
{'comment': 'I mean, Bernie is gonna stay on his message. He isn’t going to release a statement saying democrats need to do more podcasts lol', 'created': '2024-11-08 21:12:11', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 21:24:51', 'submission_id': '1gmpaqa'}
{'comment': 'I agree. I’m not sure how you can make people pay attention. Dems need to start their own propaganda machine it seems like. Maybe there’s a leftist Billionaire who can buy a media corporation and start focusing on social media news. It’s about the only way something will change.', 'created': '2024-11-08 20:46:10', 'submission_id': '1gmpaqa'}
{'comment': 'Bernie was campaigning all over rural Michigan and Wisconsin for Harris. Like, give it a rest. Nothing compelled him to do that. Other random dem senators weren’t doing that. My own senators in Michigan weren’t doing rallies in the rural areas the way he was. And he had people in local races open for him. That’s how you win and help the party.', 'created': '2024-11-08 21:36:56', 'submission_id': '1gmpaqa'}
{'comment': "My hang-up is, on one hand there is widespread criticism of unadulterated adoration to the most heinous embodiment of human vice, that his unfettered adoration at the exclusion of all else is close-minded and undesired, and then on the other hand, there is widespread unadulterated adoration of Sanders.\n\nWe can quibble over the differences and distinctions, because I am sure there are many, but will we entertain a conversation that there is more than one factor contributing to the overall catastrophic outcome? \n\nThis isn't to discount Sanders' active contribution to stop this outcome from happening.", 'created': '2024-11-08 20:27:24', 'submission_id': '1gmpaqa'}
{'comment': "Didn't he underperform Harris?", 'created': '2024-11-08 20:00:09', 'submission_id': '1gmpaqa'}
{'comment': 'I realized this too.\xa0 *Wait, he\'s never been a Democrat, why was\xa0he allowed to run for President as a Democrat?*\nHillary was targeted from day 1 5 decades ago and she never gave up.\nRather than understand the importance of the first female President, *who had to carry the burden of sexism and conservative thugs alone to get there*, Sanders decided he could do better.\xa0\n\n\n\n\n\n\nHey Bernie, *CNN gave Trump a fake town hall after he attempted a coup.* No one in journalism noticed.\xa0 You sit in office with coup planners, while the Democrat they tried to kill can\'t even get on their community\'s local TV to raise hell.\n\n\nDemocrats let him in and gave him money. Did he help deliver a victory?\xa0 No.\xa0 We live in a world where places like Facebook should have been shut down in 2017 and he\'s complaining about a Political Party, when he has no alternative to offer.\xa0 *So stay home or vote Trump is his message.*\n\n\nThe man doesn\'t just not understand the USA, he doesn\'t understand Politics at all.\xa0 AM radio has been calling Democrats "Vermin" for the required multiple decade brainwashing.\xa0 *Does he even know about it? No, because everyone just accepts it*.\xa0 This is all much, much bigger than any Party.\xa0\n\n\n\n\n* We had two technological revolutions in a short time which changed reality so fast, so negatively, that only the slightly insane could see the consequences.\xa0 Glimpses and inadequate summaries of its dangers\xa0 are strewn across Reddit as clues. The Internet 2.0 is basically a giant TV commercial destroying all thing Literary, Academic & Responsible.\xa0**Neil Postman is the new Orwell, his orphans trying to figure it out live**.\n\n\nYou\'d think a Socialisty guy would understand the consequences of rapid industrial revolutions.\n\n\n\n\nWhat Sanders is Missing (incomplete), as a logic train:\n\n\n\n\n* Political Parties aren\'t even in the Constitution. The Democrats have no oaths, nor do they identify as Liberals, which would require some manifesto anyways.\xa0 US Conservatives declared themselves in the 50\'s, with manifestos & heroes celebrated today.\xa0 So who did what?\xa0\xa0\n\n\n* It\'s not just Sanders, everyone misuses lots of Big Nouns that don\'t reflect reality. Example: *Liberal is a Foundational term*. To oppose Liberalism is to oppose things like the Bill of Rights.\xa0 This is just true, automatically.\xa0 You see anyone pushing back anywhere?\xa0 This is just Mass Ignorance and I\xa0what I realize now is this proper understand has long been missing, enhanced and distorted by\xa0Conservatives my whole life.\n\n\n\n\n\n\n\n\nThat\'s how lost everyone is right now. Basic Facts are destroyed for Political Gain.\xa0 This is spread by media technology, supercharged by the insanity of Internet 2.0.\xa0 He\'s just as clueless.\xa0 But everybody being stupid is the only way Evil people were able to hijack us with that\xa0technological revolution.\n\n\n\n\nSorry it\'s so long\xa0', 'created': '2024-11-08 20:58:22', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 20:17:59', 'submission_id': '1gmpaqa'}
{'comment': 'The far left is saying that, but the reality is it was one of the [electorates ](https://preview.redd.it/post-mortem-polling-found-inflation-illegal-immigration-and-v0-6xpiu5lm0qzd1.jpeg?width=640&crop=smart&auto=webp&s=796e1ca462968e61f0148759f5ead6bf50ab2f05)least concerns', 'created': '2024-11-08 20:37:54', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 20:32:16', 'submission_id': '1gmpaqa'}
{'comment': 'Democrats failed to get their message to unengaged voters.\n\nIt’s yet another case of the A students who make policy not being able to talk to the B and C students who make up the majority of the public.', 'created': '2024-11-08 20:53:50', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 21:15:43', 'submission_id': '1gmpaqa'}
{'comment': "There are progressives, there are moderates, and there are people who hate minorities and women. These are three distinct (but rarely sometimes overlapping) groups.\n\nThe people who left the Democratic Party fall largely under the third category. They do not care how progressive Harris' agenda was or how Biden was the most pro-union president in American history. They care about their culture war issues and putting down people who are different than them.\n\nDems need to massively shake up the media environment that allowed this to happen and start picking off enough of these voters to eke out a victory next time around.", 'created': '2024-11-08 20:45:43', 'submission_id': '1gmpaqa'}
{'comment': 'We lost Joe the Plumber in 2016. We lost José the Plumber in 2024.', 'created': '2024-11-08 20:55:01', 'submission_id': '1gmpaqa'}
{'comment': "We need to reverse the dumb narrative that the media has a left wing bias. If anything, they've shown us that they have a right wing bias, except maybe AP and a few other sources. They're all owned by billionaires with a vested interest in supporting the rich. The so-called left wing biased media is just completely bullshit.", 'created': '2024-11-08 21:13:02', 'submission_id': '1gmpaqa'}
{'comment': '>anybody who thought she wasn’t reaching out to the common worker is a victim of the billionaire media and PACs.\n\nThey’re not victims. They’re lying shills.', 'created': '2024-11-08 20:43:25', 'submission_id': '1gmpaqa'}
{'comment': "I think it was more that speeches aren't how you reach the working class. Shit like tik tok, instagram and youtube are. Trump and his cronies dominated those spheres of influence during this election cycle. Add on that the Democrats ignorantly decided to run a woman again. (The US is inherently misogynistic.) Need to stop that shit immediately. Kamala ran a good race, but 100 days is just not enough to get people to trust you. Especially when all you're doing is having these huge rallies and not flooding their break times and podcasts during their drives home with sound bites that hit home.", 'created': '2024-11-08 21:36:22', 'submission_id': '1gmpaqa'}
{'comment': "It is misinformed, under-educated, and internalized fear voters that don't have the capacity to see gray areas, or complex issues,---their minds are in flight/fight mode and can only handle small bits of information.", 'created': '2024-11-08 21:02:42', 'submission_id': '1gmpaqa'}
{'comment': 'Because he stopped after the first sentence and people bought it.', 'created': '2024-11-08 21:50:15', 'submission_id': '1gmpaqa'}
{'comment': None, 'created': '2024-11-08 21:52:11', 'submission_id': '1gmpaqa'}
{'comment': 'Yep. Biden did good things but he was too old to be a strong leader. He should’ve been out talking about the good they did. Talking about the economic recovery of the us relative to the world and being USA USA USA about COVID policy and coming together. He was too old to do that and was unpopular. Whether he should’ve been unpopular isn’t the point. He was unpopular. Running him again at all was a massive mistake.', 'created': '2024-11-08 21:49:43', 'submission_id': '1gmpaqa'}
{'comment': ">i reject that. the democratic leadership is responsible for countering that messaging effectively.\n\nHow to say you don't know what weaponized rhetoric is, without saying you don't know what weaponized rhetoric is.", 'created': '2024-11-08 23:06:51', 'submission_id': '1gmpaqa'}
{'comment': 'I agree with everything you said up until Kamala being the favorite. She polled at 3% in the primary in 2020. She would not have been the favorite or the nominee', 'created': '2024-11-08 22:18:05', 'submission_id': '1gmpaqa'}
{'comment': 'Yeah. That’s really the issue. Both Biden and Harris absolutely 100% had plans a plenty to help working class Americans. It was the majority of her platform. It wasn’t the ideas. It was the messaging. MAGA/GOP has control over so much of the messaging out there and propagated lies on top of lies that her presidency would hurt working class people and there was unfortunately not enough ok our side to counter those lies. It was never true. Just typical right wing projection. It’s what they plan to do.', 'created': '2024-11-08 20:58:10', 'submission_id': '1gmpaqa'}
{'comment': 'Absolutely. Also, I suspect the group the Democrats failed to reach are "uninterested in politics" voters, which does correlate with income and maybe with lower education but is not the same thing. Appealing to that group of voters takes a different approach. I think Democrats need more entertaining candidates, that are more fun to watch.', 'created': '2024-11-08 20:36:14', 'submission_id': '1gmpaqa'}
{'comment': 'I think the "how" is actually quite simple, Democrats need a singular unifying pro-worker slogan. Just look at Trump\'s "Make America Great Again", it perfectly encapsulated all the feel good nostalgia of a strong working class of yesteryear. Trump consistently pushed that slogan long and hard enough that people **believed it** regardless of his actual policies. Democrats ultimately have a marketing issue, they\'re in dire need of their own "MAGA" equivalent slogan.', 'created': '2024-11-08 20:56:13', 'submission_id': '1gmpaqa'}
{'comment': 'I agree, its incredibly frustrating. We need people who can speak authentically to this issue. AOC is great because you can tell she was recently in the working class. Sherrod Brown I think has an authentic voice for working class issues. We need young people who speak like normal people, not through a political, consultant driven or think tank filter.', 'created': '2024-11-08 20:35:52', 'submission_id': '1gmpaqa'}
{'comment': "The Dems made major gains with Union members this election cycle relative to 2020 and 2016. It's like the one bloc where they actually did make gains relative to 2020.\n\nProblem is the Dems didn't do anything for Unions in the like 40 years leading up to 2020, so there's hardly anybody in unions these days. It's just not that big of an electoral bloc anymore.", 'created': '2024-11-08 20:53:54', 'submission_id': '1gmpaqa'}
{'comment': 'Bidens main problem was his age. I was worried when he won the nomination in 2020. He won so it didn’t matter. But he should have stepped down sooner for the party to find a deserving nominee. When Biden finally stepped down Kamala was the only option. She was not the strongest candidate nor was she chosen by voters. She was selected by Biden and endorsed by Biden.', 'created': '2024-11-08 21:11:34', 'submission_id': '1gmpaqa'}
{'comment': "Have you seen Shawn Fain? Have you seen Bernie Sanders? They have zero issue connecting with union workers. Just because a lot of the party hold their nose at their messaging doesn't mean there isn't democratic messaging that will resonate with workers.", 'created': '2024-11-08 20:46:23', 'submission_id': '1gmpaqa'}
{'comment': 'Bernie bros are just like Trumpers 😂', 'created': '2024-11-08 21:13:13', 'submission_id': '1gmpaqa'}
{'comment': 'When she did, we were told it was an incomprehensible word salad. When Democrats said, "hey we proposed this." we got told we were full of shit or that Trump already did it or we were ignored. \n\nDemocrats failed at messaging because they continue to rely on the same old shit. They didn\'t fail at policy. They just didn\'t succeed in overcoming Republican obstruction.', 'created': '2024-11-08 21:32:55', 'submission_id': '1gmpaqa'}
{'comment': 'Yes, she got 235,791 votes in Vermont, he got 229,904 votes', 'created': '2024-11-08 20:35:58', 'submission_id': '1gmpaqa'}
{'comment': 'There’s a reason he couldn’t win a primary', 'created': '2024-11-08 20:00:42', 'submission_id': '1gmpaqa'}
{'comment': 'Uh no? Harris dropped out of the primary before the Iowa caucuses because she was polling so poorly', 'created': '2024-11-08 20:42:55', 'submission_id': '1gmpaqa'}
{'comment': 'The democrats have done more for working class people in the last 4 years than republicans have in the last 4 decades. So either Sanders doesn’t have a fucking clue what he’s talking about, or else *that’s not actually the factor that drove people to the right.*', 'created': '2024-11-08 20:20:11', 'submission_id': '1gmpaqa'}
{'comment': 'Nah, let them be the exact people who continue to lose and fuck over the country/part my because they don’t listen.', 'created': '2024-11-08 21:41:53', 'submission_id': '1gmpaqa'}
{'comment': "Lost. He lost by a huge margin because the voters didn't want him. He then went to the convention floor and begged the super delegates to ignore the will of the people and pick him instead. They did not do that.", 'created': '2024-11-08 21:44:22', 'submission_id': '1gmpaqa'}
{'comment': 'Lost.', 'created': '2024-11-08 21:46:12', 'submission_id': '1gmpaqa'}
{'comment': 'Lost. And he wouldn’t have beaten Trump in 2016 either. Dude is a nut and not half as popular as this sub wants to believe.', 'created': '2024-11-08 21:28:42', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 20:55:29', 'submission_id': '1gmpaqa'}
{'comment': 'The legacy media does have a left wing bias, but only for social issues. Which lower class people and religious people don’t like. And they feel talked down to by the media. Then they have a massive propaganda machine reminding them that the left thinks they are better than them. But we don’t have a left wing media on anything economic. Not even close.', 'created': '2024-11-08 21:47:15', 'submission_id': '1gmpaqa'}
{'comment': 'All This!', 'created': '2024-11-08 20:58:38', 'submission_id': '1gmpaqa'}
{'comment': 'but how do you get seen on any of those platforms when billionaires own them and bury your content?', 'created': '2024-11-08 21:38:45', 'submission_id': '1gmpaqa'}
{'comment': "See, Kamala did those things. Her campaign was all over Tik Tok and YouTube and Twitter and Instagram. She had an excellent team of content creators that pushed all of that out, every day, all kinds of videos and clips and shares. She did podcasts like Call Her Daddy (young women), and Howard Stern (middle aged men). Tim was out there with AOC playing some NFL game on Twitch. She did an interview with the same black journalist association that Trump did where he went on about Kamala suddenly turning black. \n\nAlso, during the primaries, Kamala traveled across the country meeting with student groups, women's groups, minority groups, civil rights group - the media wasn't covering her, but she was out there constantly. That's why the donations started pouring in as soon as Joe endorsed her - she already had a network.\n\nI think it comes down to enough Americans were not ready for a black woman President that they stayed home and didn't vote.", 'created': '2024-11-08 22:24:20', 'submission_id': '1gmpaqa'}
{'comment': 'People want showmanship, other words entertainment.', 'created': '2024-11-08 21:52:04', 'submission_id': '1gmpaqa'}
{'comment': 'Perhaps, but their vote counts the same as everyone else’s.', 'created': '2024-11-08 21:05:55', 'submission_id': '1gmpaqa'}
{'comment': 'I wish I saw it coming. I was one of the fools who thought that Biden rerunning was a good idea.', 'created': '2024-11-08 21:55:17', 'submission_id': '1gmpaqa'}
{'comment': 'Bernie wouldn’t have ran so my assumption is it would have been Pete or Newsom, neither of which would have won either because one is a gay man and the other is from California and low IQ yokels hate both of those things. \n\nThey better figure out something soon. They got about two years.', 'created': '2024-11-08 23:21:21', 'submission_id': '1gmpaqa'}
{'comment': "This is exactly it. We have to be entertaining. And attractive. That's the problem. We're just plain, boring intellectuals.", 'created': '2024-11-08 20:52:47', 'submission_id': '1gmpaqa'}
{'comment': 'I love AOC but has she actually presented herself on the national stage? Has a large group voted for her? Like does she have a message that can get through where Harris didn’t? And I hate to feel this way, but will voters accept social democracy from a minority woman?', 'created': '2024-11-08 20:39:48', 'submission_id': '1gmpaqa'}
{'comment': 'Right. I don’t understand why people in this thread aren’t getting that this isn’t a new grievance from Bernie specifically against Harris and Biden. It’s his same grievance. The Dems haven’t done enough to be strong working class warriors for too long and now they risk losing major voting blocks for life. They cozied up to too many wealthy interests for too long. Yeah the republicans do too but they just straight up say that’s not true, and that’s all people need to hear.', 'created': '2024-11-08 21:54:22', 'submission_id': '1gmpaqa'}
{'comment': "Sanders and Fain haven't been able to persuade them not to vote GOP though, even though the unions are likely to be crushed over the next four years.", 'created': '2024-11-08 21:06:21', 'submission_id': '1gmpaqa'}
{'comment': 'And that mindset is why we’ll continue to give way to people like Trump. Bernie is right. We need to jam through more things to help the working class. Be mean about it. The politics of joy and hope stopped working after income inequality continued to boom during and after Obama', 'created': '2024-11-08 21:32:00', 'submission_id': '1gmpaqa'}
{'comment': 'Republican obstruction? How?\n\nSay what your policies are and deliver them in a coherent vision for the future that is seperate from what most americans view a bad administration (regardless of whether you believe that or not). Make it entertaining becuase that what get non-politicos to pay attention. Not really possible to obstruct that.', 'created': '2024-11-08 21:38:13', 'submission_id': '1gmpaqa'}
{'comment': 'He came in second, Harris came dead last.', 'created': '2024-11-08 20:22:40', 'submission_id': '1gmpaqa'}
{'comment': 'I actually think him getting so close was one of the reasons shook out the way it did. He would have been really unpredictable. Maybe he could have had his own counter Trump break through that reached traditionally non-Democratic voters, but maybe he would have been trounced as a socialist. That risk forced consolidation among other candidates.', 'created': '2024-11-08 20:46:14', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 20:45:00', 'submission_id': '1gmpaqa'}
{'comment': 'He’s talking about the most recent election, in Vermont. Indeed, Bernie got fewer votes than Harris did in 2024. If I lived in Vermont, I would be one such person who supports only democrats on the ballot, not charlatans who use the party and bash it first chance they get.', 'created': '2024-11-08 20:52:46', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 20:25:17', 'submission_id': '1gmpaqa'}
{'comment': 'We lost working class Latino men like we lost working class white men 8 years ago. \n\nThey have a lot in common.', 'created': '2024-11-08 20:57:09', 'submission_id': '1gmpaqa'}
{'comment': 'It’s weird, we have plenty of left wing and right wing conservative media even a smattering of right wing liberal media (Medicare for all; Abortions for none types); but no real left wing liberal platforms', 'created': '2024-11-08 21:59:29', 'submission_id': '1gmpaqa'}
{'comment': 'I agree. Back to Third Way politics. Apparently the only way for Democrats to be successful.', 'created': '2024-11-08 21:58:39', 'submission_id': '1gmpaqa'}
{'comment': 'By being popular with the youth. Its the only way', 'created': '2024-11-08 21:47:58', 'submission_id': '1gmpaqa'}
{'comment': '>I think it comes down to enough Americans were not ready for a black woman President that they stayed home and didn\'t vote.\n\nThis. I didn\'t share people\'s views of how easy it would be. Honestly I was kinda surprised nobody really talked about this at all. I think Trevor Noah put it nicely and humorously in his take a few days before the election, saying something like "People were so proud when they got Obama elected, but what they didn\'t realize was Obama was level 1" lol, with Kamala the difficulty level just got WAY HARDER [https://youtu.be/xma3ZdwtEJ4?si=CzBCqZ7hW7xdX9ro&t=686](https://youtu.be/xma3ZdwtEJ4?si=CzBCqZ7hW7xdX9ro&t=686) \n\nI put the link on where he starts talking about Kamala, but the whole video is pretty funny, worth watching from the beginning', 'created': '2024-11-08 23:02:04', 'submission_id': '1gmpaqa'}
{'comment': 'Biden isn’t a plain, boring, intellectual. The Joe of 14 years ago would’ve ran away with both of these races.', 'created': '2024-11-08 21:51:13', 'submission_id': '1gmpaqa'}
{'comment': "Those are all good questions. I wish I had the answers. Sherrod Brown just lost in Ohio. Mayor Pete had to leave his home state bc he had no chance of statewide election and his future is murky with a conservative administration. I don't think Katie Porter and Swallwell and Hakeem Jeffries have great national futures do you? What happened to the Castros?", 'created': '2024-11-08 20:44:56', 'submission_id': '1gmpaqa'}
{'comment': 'Hate to say it, but after this election, I think working class voters would rather hear a lukewarm version of it from, say, Pritzker-the-large-white-billionaire-man, vs a stronger version of it from a minority woman.', 'created': '2024-11-08 21:39:22', 'submission_id': '1gmpaqa'}
{'comment': "They are more than willing to vote for Sanders or Fain. Yeah Sanders can't convince them to vote for someone else. That's not how that works.", 'created': '2024-11-08 21:16:37', 'submission_id': '1gmpaqa'}
{'comment': 'The mindset that Bernie is right despite the voters saying quite clearly what was wrong is why Trump won. Progressives ignoring what the people say they want and acting like they know better is what got us into this mess', 'created': '2024-11-08 21:56:53', 'submission_id': '1gmpaqa'}
{'comment': 'She dropped out before voting started', 'created': '2024-11-08 20:43:47', 'submission_id': '1gmpaqa'}
{'comment': 'I just have a hard time believing this magical world where a lot of voters think the Dems are too far left but going farther to the left will end well', 'created': '2024-11-08 20:58:58', 'submission_id': '1gmpaqa'}
{'comment': 'Or states where black people live held their primaries and Biden won by big numbers', 'created': '2024-11-08 20:45:54', 'submission_id': '1gmpaqa'}
{'comment': 'Tell that to Bernie Sanders, who turned around and blamed everyone else in the party immediately after the results were announced. Jesus fucking Christ.', 'created': '2024-11-08 20:28:57', 'submission_id': '1gmpaqa'}
{'comment': 'Yes we did, so I wonder, why do you think that is?', 'created': '2024-11-08 21:01:38', 'submission_id': '1gmpaqa'}
{'comment': 'But we are in 2024. Things have drastically changed since the Obama years.', 'created': '2024-11-08 22:04:22', 'submission_id': '1gmpaqa'}
{'comment': 'As a Michigander I was really hoping Pete would run for Debbie Stabenow’s seat. Glad Slotkin won, but Pete is just a force.', 'created': '2024-11-08 21:52:16', 'submission_id': '1gmpaqa'}
{'comment': 'And yet Kamala outperformed Bernie by 6000 votes in Vermont. I think populism is here to stay, but Bernie’s version isn’t the one that will win over the electorate.', 'created': '2024-11-08 21:39:21', 'submission_id': '1gmpaqa'}
{'comment': "Because she couldn't even garner 1% of the vote.........", 'created': '2024-11-08 21:05:49', 'submission_id': '1gmpaqa'}
{'comment': 'And then went ahead and lost every swing state and the popular vote to Donald Trump.', 'created': '2024-11-08 21:13:18', 'submission_id': '1gmpaqa'}
{'comment': 'Very few people thought Trump would get as much support as he has. Big swings can lead to unexpected results.', 'created': '2024-11-08 23:11:28', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 20:57:41', 'submission_id': '1gmpaqa'}
{'comment': 'He is definitely part of the problem. The centrists are also problematic, but Bernie needs to be ignored from now on. Even AOC gets the issue better than he does.', 'created': '2024-11-08 20:30:19', 'submission_id': '1gmpaqa'}
{'comment': 'So you wouldn’t take a look at your strategy and say “why did I only gain 33% of the white male vote” and try to come up with a solution so you can actually win an election? He’s not the enemy he’s just annoying to you because he disagrees with your favorite politicians', 'created': '2024-11-08 20:45:20', 'submission_id': '1gmpaqa'}
{'comment': 'A good article:\n\nhttps://www.houstonchronicle.com/politics/election/2024/article/trump-republicans-won-big-latino-texans-19893290.php', 'created': '2024-11-08 21:04:59', 'submission_id': '1gmpaqa'}
{'comment': 'Because we spent too much time preaching to the choir and trying to win over suburban Republican mom instead of connecting to them.', 'created': '2024-11-08 21:03:19', 'submission_id': '1gmpaqa'}
{'comment': 'Also, populism can be done in bad ways, but it can also just be "promise to do things that people want, actually do them, and then run around bragging about it into literally every microphone you can find." National Dems need to find some issues that are the national equivalent of "I will fix potholes!", and then not flake out on those commitments. \n\n(And they need to stop being afraid to go on TV! Buttigieg should put on clinics for "how to go on TV"!)', 'created': '2024-11-08 21:43:26', 'submission_id': '1gmpaqa'}
{'comment': "I'm not telling you he is the democratic base's favorite candidate. I'm responding to someone who says democrats need a message that resonates with blue-collar workers.", 'created': '2024-11-08 22:01:55', 'submission_id': '1gmpaqa'}
{'comment': 'But outperformed Bernie by 6000 votes in Vermont.', 'created': '2024-11-08 21:42:08', 'submission_id': '1gmpaqa'}
{'comment': 'Biden was running the whole time. What are you taking about? \n\nBernie has momentum after Iowa and New Hampshire and then immediately began praising Fidel Castro in a town hall event. He has no political instincts and is just obsessed with being morally superior', 'created': '2024-11-08 21:09:21', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 20:59:39', 'submission_id': '1gmpaqa'}
{'comment': 'This article is insightful and thanks for the share. \n\nI see the part at the end where the voter acknowledges that he feels that man would do the job better than a woman. \n\nI still don\'t think this means we should shy away from women as candidates though. \n\nEarlier in the article it says, "Most notably, Latinos consistently\xa0[rank the economy and crime among their top priorities](https://www.pewresearch.org/race-and-ethnicity/2024/09/24/in-tight-u-s-presidential-race-latino-voters-preferences-mirror-2020/), and Republicans used both as cudgels against the Biden administration throughout their campaigns." \n\nBut it says that Trump\'s campaign has stoked fears about migrants taking over jobs, which is not true. The problem is that the Democrats have no strong economic policy. \n\nI would argue that out of all Democrats, Bernie has one of the strongest economic messages that resonates with young men, especially. \n\nI believe we should move in that direction on economic policy, and focus anger about wages, wealth inequality, and inflation towards the corporations causing it, rather than immigrants (what the trump organization is doing).', 'created': '2024-11-08 21:14:30', 'submission_id': '1gmpaqa'}
{'comment': 'And yet still lost every single swing state and the popular vote against Donald Trump.', 'created': '2024-11-08 22:13:50', 'submission_id': '1gmpaqa'}
{'comment': '[removed]', 'created': '2024-11-08 21:10:58', 'submission_id': '1gmpaqa'}
{'comment': "Please show me dems going on TV calling all Young men sexist and racist.\n\nYoung men consume sexist and racist online content because it is ubiquitous and dense. Dems need to do the same thing to win them over and destroy conservatives and the gop in attacks. Make people feel embarrassed to vote GOP because of the online memes.\n\nAlso, Noone cares about TV. And my point isn't to say men can't and shouldn't be won over. But that traditional campaigning is dead in the age of the internet. Dems spent huge on TV and radio, way more than the GOP, but the conservatives had the vibes from social media, and that's all that matters.", 'created': '2024-11-08 21:33:03', 'submission_id': '1gmpaqa'}
{'comment': '\n\n*Now the trumpet summons us again--not as a call to bear arms, though arms we need--not as a call to battle, though embattled we are-- but a call to bear the burden of a long twilight struggle, year in and year out, "rejoicing in hope, patient in tribulation"--a struggle against the common enemies of man: tyranny, poverty, disease and war itself.*', 'created': '2024-11-08 22:08:03', 'submission_id': '1gmpb8o'}
{'comment': 'You can never go wrong with good quotes from uncle Iroh', 'created': '2024-11-08 20:46:40', 'submission_id': '1gmpbrx'}
{'comment': "No you can't 😊 my friend should me that scene yesterday, he's very wise and could use more of it today. That's why I'll be working on spreading messages of hope", 'created': '2024-11-08 20:53:44', 'submission_id': '1gmpbrx'}
{'comment': 'I was all for a "hands off"/"no criticizing" president\'s kids still in college. But no, not anymore. Barron helped Trump more than Melania lol. If he\'s involved in his dad\'s campaign and policies, the gloves need to come off and he needs to be treated just like any other Trump supporter that has influence and power.', 'created': '2024-11-08 20:08:07', 'submission_id': '1gmpn1x'}
{'comment': "Fuck Barren. He's a MAGA bro. Awful family.", 'created': '2024-11-08 20:50:34', 'submission_id': '1gmpn1x'}
{'comment': "He's all grown up now. Fuck this little Damien Omen.", 'created': '2024-11-08 20:56:56', 'submission_id': '1gmpn1x'}
{'comment': "Politics aside, he gives me the creeps. He's got dead eyes and not much of a personality, judging how he seems on public. Kid is off the charts strange.", 'created': '2024-11-09 04:20:22', 'submission_id': '1gmpn1x'}
{'comment': 'He can fuck all the way off', 'created': '2024-11-09 07:51:57', 'submission_id': '1gmpn1x'}
{'comment': 'Eat the fucking rich\n\nFrench Revolution time', 'created': '2024-11-08 22:24:39', 'submission_id': '1gmpn1x'}
{'comment': 'Warren has always been my favorite and she had fully fleshed out plans and policies back in 2015/2016...we need them, we need her!!!', 'created': '2024-11-08 19:46:01', 'submission_id': '1gmprbw'}
{'comment': 'Thank you for posting this! I love Elizabeth Warren 😊. I would love to know what organizations she recommends that everyday Americans can be apart of! Like for me, while I show up and vote, I don’t necessarily have the full time hours and money to fight the good fight through congress. But living in a dem city, I’d like to know how I can spend my extra time:)', 'created': '2024-11-08 21:02:04', 'submission_id': '1gmprbw'}
{'comment': 'She has such a calming effect on me...', 'created': '2024-11-09 02:03:49', 'submission_id': '1gmprbw'}
{'comment': 'Thank you Senator for your voice of reason and courage.', 'created': '2024-11-09 02:26:15', 'submission_id': '1gmprbw'}
{'comment': 'Wow the first legitimate ray of hope I received in all my despair. Protect her at all costs.', 'created': '2024-11-09 07:50:19', 'submission_id': '1gmprbw'}
{'comment': 'The League of Women Voters is a great organization', 'created': '2024-11-08 22:24:15', 'submission_id': '1gmprbw'}
{'comment': 'The Constitution is only as strong as the COLLECTIVE will to ACTIVELY enforce it. Voting is a small fraction of that process.', 'created': '2024-11-08 20:39:08', 'submission_id': '1gmprdz'}
{'comment': "He shouldn't have even been allowed to run.", 'created': '2024-11-08 21:04:15', 'submission_id': '1gmprdz'}
{'comment': 'There are no laws in this country anymore.', 'created': '2024-11-08 20:37:08', 'submission_id': '1gmprdz'}
{'comment': "case? what case? it's all magically gone now. DOJ blew it when they didn't arrest and jail him Jan 7.", 'created': '2024-11-08 20:41:25', 'submission_id': '1gmprdz'}
{'comment': 'Like this will stop him... lol This country is an embarrassment.', 'created': '2024-11-08 20:42:47', 'submission_id': '1gmprdz'}
{'comment': 'Come on Biden, do your job. This is ridiculous.', 'created': '2024-11-08 20:25:28', 'submission_id': '1gmprdz'}
{'comment': 'He’s above the law…clearly', 'created': '2024-11-08 20:30:20', 'submission_id': '1gmprdz'}
{'comment': 'Yep and thanks to our DOJ slow walking everything and not trying to look political we all get to spend this Christmas wondering if its the last normal one we will have. Who cares if it looks political to the left? Can\'t make the violent cult mad again. They might send death threats. It\'s sickening how many of our leaders buckled for gravy team 6.\n\nGotta love that the party of "law and order" has a raping felon as their leader. They have the audacity to complain about crime (which is down btw) while they support a criminal. Jfc America is so f*cked up. \n\nWhat happened to class in this country? And grace and honor? I feel like our politics has turned into trash like the Jerry springer show.', 'created': '2024-11-08 21:04:43', 'submission_id': '1gmprdz'}
{'comment': 'Merrick Garland dragged his feet for more than a year when that was a Day 1 prosecution. One of the most disastrous Attorneys General in American history.', 'created': '2024-11-08 21:13:31', 'submission_id': '1gmprdz'}
{'comment': " Sorry boys this ship has sailed. I personally don't understand why it took congress three years to do investigations that meant absolutely nothing, And Merrik Garland,,,????WTF???? Don't get me started.", 'created': '2024-11-08 21:04:36', 'submission_id': '1gmprdz'}
{'comment': 'Biden and his administration failed to hold trump accountable when they had the time to do so. They failed us all', 'created': '2024-11-08 21:12:54', 'submission_id': '1gmprdz'}
{'comment': 'There’s also 8 U.S. Code § 1481 - Loss of nationality by native-born or naturalized citizen\n\n(7) committing any act of treason against, or attempting by force to overthrow, or bearing arms against, the United States, violating or conspiring to violate any of the provisions of section 2383 of title 18, or willfully performing any act in violation of section 2385 of title 18, or violating section 2384 of title 18 by engaging in a conspiracy to overthrow, put down, or to destroy by force the Government of the United States, or to levy war against them, if and when he is convicted thereof by a court martial or by a court of competent jurisdiction.\n\nCan’t be president if you’re not a citizen.', 'created': '2024-11-08 21:14:17', 'submission_id': '1gmprdz'}
{'comment': 'Not just him, all of the insurrectionists that voted not to certify the election should have been immediately arrested, handcuffed and incarcerated pending trial. They should have been expelled from their congressional seats and the states should have been required to replace them until their adjudications. That’s how you deal with fucking traitors.', 'created': '2024-11-08 22:11:31', 'submission_id': '1gmprdz'}
{'comment': 'None of that matters now...Donald Trump has continued to prove himself right when he said he could "stand in the middle of Fifth Avenue and shoot somebody and I wouldn\'t lose any voters, Ok?" The man claimed he could essentially murder someone in front of countless witnesses and people would still support him. I thought that was absurd, but I am now convinced that if that really did happen, people would just vilify the victim or say they had it coming or say it was self defense or something. Trump is an anomaly...something we\'ve not really ever witnessed in American politics except maybe to some extent with Huey Long. He is shameless to a degree that makes lying second nature. I\'m convinced he\'s a sociopath who feels no empathy and has no conscience, which enables his manipulation and gaslighting. He is literally immune from prosecution and unable to be held to account. And the saddest part is, he cares nothing for those who are so devoted to him. He would burn this country down just to rule the ashes. My only comfort is that I\'m confident history will judge him accordingly, but we\'re a long way away from that. It\'s 1934 Berlin right now, and he is our fuhrer...of course he shouldn\'t be allowed to take office. He shouldn\'t even have been able to run for President...neither should the Nazi Party been allowed to run after the Beer Hall Putsch but propaganda and populism...albeit fake populism...are very effective. \nI just hope it doesn\'t end up being as bad as it could be. We were fortunate his first administration was relatively ineffective and his incompetence was exposed by the adults in the room but he\'s learned from that and now is surrounded by sycophants.', 'created': '2024-11-08 22:20:58', 'submission_id': '1gmprdz'}
{'comment': 'We already tried this and the Supreme Court rejected it.', 'created': '2024-11-08 21:11:52', 'submission_id': '1gmprdz'}
{'comment': 'This has already been adjudicated in the Supreme Court. Colorado removed him from the ballot. Colorado lost.', 'created': '2024-11-08 21:32:19', 'submission_id': '1gmprdz'}
{'comment': "It's too late. All charges against him will disappear. And, yes I completely agree with you.", 'created': '2024-11-08 22:08:43', 'submission_id': '1gmprdz'}
{'comment': 'His incoming regime is illegal', 'created': '2024-11-08 20:30:42', 'submission_id': '1gmprdz'}
{'comment': 'Anything anyone says the phrase "nobody is above the law" use Trump as an example of just how meaningless that statement is nowadays.\n\nThe US sold out Democracy, cause Trump will make sure NO Democrat is ever in power again.', 'created': '2024-11-08 22:25:48', 'submission_id': '1gmprdz'}
{'comment': 'He said he would pardon the people who stormed the capital. Regardless of whether or not you think he caused it, the people who stormed the capital are absolutely insurrectionists. And saying you will pardon them sounds awfully a lot like aid…', 'created': '2024-11-09 01:11:53', 'submission_id': '1gmprdz'}
{'comment': 'No Conviction by a jury of his peers is the issue. Biden DOJ worked too slow. \n\nSo Vance would take office? Johnson VP?', 'created': '2024-11-08 20:38:04', 'submission_id': '1gmprdz'}
{'comment': "Also he shouldn't have been allowed to run for presidency: HOW was that even possible???", 'created': '2024-11-08 23:55:19', 'submission_id': '1gmprdz'}
{'comment': 'Hitler made an attempted coup and only had a slap on the wrist. Then he took power later. The same is happening with Trump.', 'created': '2024-11-08 23:20:51', 'submission_id': '1gmprdz'}
{'comment': 'https://www.detroitnews.com/story/news/politics/elections/2024/11/08/michigan-calhoun-county-missing-votes-absentee-ballots-state-house-race-jim-haadsma-steve-frisbie/76128736007/\n\nHey check those ballots folks', 'created': '2024-11-09 00:12:16', 'submission_id': '1gmprdz'}
{'comment': 'In a normal world this is correct…but Republicans have a different take on this.', 'created': '2024-11-08 20:57:20', 'submission_id': '1gmprdz'}
{'comment': 'ok hear me out...what if Donald Trump is their Manchurian Candidate? And now that he has won, he is no longer needed. he is a felon, and what if he suddenly is found not able to be POTUS? they control everything.... please tell me i am crazy. that is too crazy a theory...right?', 'created': '2024-11-08 23:27:23', 'submission_id': '1gmprdz'}
{'comment': 'I blame Mitch McConnell and his Senate majority for not convicting Trump after either of the impeachments but also Merrick Garland for dragging his feet on the indictments to not appear political. If we survive this, which we may not as a republic, it will take decades to undo. Trump and his cronies will build firewalls over the next four years in partnership with Republican congresspeople and state legislators to weaken the ability for Democrats to take power in the future.', 'created': '2024-11-08 21:43:36', 'submission_id': '1gmprdz'}
{'comment': "The laws only matter when you have people in place willing to enforce them. Not only is there no one willing to do so, many of the members in trump's government will directly benefit from not doing it. So they wont. They won the presidency, the house, the senate, and the supreme court. The laws are whatever they say they are now.", 'created': '2024-11-08 21:30:09', 'submission_id': '1gmprdz'}
{'comment': "To bad Jack Smith didn't get the case into court in time. DOJ slow walked the case all the way to irrelevance. In the eyes of the law, he's not a seditious nor a traitor. The entire system has failed.", 'created': '2024-11-08 22:05:48', 'submission_id': '1gmprdz'}
{'comment': "If the situation were reversed, which it wouldn't be, you know they'd be filing suit. Doesn't matter if it is unlikely to prevail. Time to get aggressive in the pursuit of justice.", 'created': '2024-11-08 22:44:11', 'submission_id': '1gmprdz'}
{'comment': 'they cheated. trump was announcing it for weeks', 'created': '2024-11-09 01:26:04', 'submission_id': '1gmprdz'}
{'comment': 'Yes. People have been saying this for 4 years, and unfortunately, nothing came of this.', 'created': '2024-11-08 21:40:30', 'submission_id': '1gmprdz'}
{'comment': 'Yea if you haven’t notice. The constitution doesn’t mean much lately', 'created': '2024-11-08 22:15:36', 'submission_id': '1gmprdz'}
{'comment': '> All animals are equal, but some animals are more equal than other animals.\n\nOrwell.\n\nNothing is going to happen. The DNC Head Shed & the RNC are in the same justice tier. The rules apply to them in *principal*, but not in actuality.', 'created': '2024-11-08 20:38:23', 'submission_id': '1gmprdz'}
{'comment': 'too late to the party to bring this up.', 'created': '2024-11-08 21:35:22', 'submission_id': '1gmprdz'}
{'comment': 'It’s over. Garland napped. We paid the price', 'created': '2024-11-08 22:28:22', 'submission_id': '1gmprdz'}
{'comment': 'America has been played.', 'created': '2024-11-08 23:11:55', 'submission_id': '1gmprdz'}
{'comment': 'SCOTUS already ruled that the 14th amendment section 3 must be invoked by congress, so it isn’t going to happen.', 'created': '2024-11-09 00:45:12', 'submission_id': '1gmprdz'}
{'comment': 'Democrats let Little things like the constitution get in the way. That’s why Republicans have been so successful lately.', 'created': '2024-11-09 00:53:22', 'submission_id': '1gmprdz'}
{'comment': 'It’s a major failure of our constitution. I guess our founding fathers never thought someone so corrupt could be elected president.', 'created': '2024-11-09 01:29:56', 'submission_id': '1gmprdz'}
{'comment': 'No body is following the constitution any more', 'created': '2024-11-08 21:05:42', 'submission_id': '1gmprdz'}
{'comment': 'I wonder if pardoning the insurrectionists will count as giving aid and comfort.', 'created': '2024-11-08 20:59:41', 'submission_id': '1gmprdz'}
{'comment': 'If people didn’t want this, they would have voted for it, they didn’t, and now we’re all a lot more concerned about what the next 12 months is gunna look like much less 48', 'created': '2024-11-08 21:09:08', 'submission_id': '1gmprdz'}
{'comment': 'The Supreme Court said that Congress must declare a person an insurrectionist before that can take affect. It was part of the CO ballot decision', 'created': '2024-11-08 21:25:10', 'submission_id': '1gmprdz'}
{'comment': 'We tried.', 'created': '2024-11-08 21:26:05', 'submission_id': '1gmprdz'}
{'comment': 'But the right has shown us for years that the only amendments that matter to them are the 1st and the 2nd. The rest don’t apply…especially to their Overlord.', 'created': '2024-11-08 22:19:43', 'submission_id': '1gmprdz'}
{'comment': 'No shit', 'created': '2024-11-08 23:40:35', 'submission_id': '1gmprdz'}
{'comment': 'It is a huge failure…and that spineless SCOTUS SCUM! The enemy is within all right and you need look no farther than the Supreme Court.', 'created': '2024-11-09 01:47:34', 'submission_id': '1gmprdz'}
{'comment': "The thing is, if Trump were somehow kept from becoming President... the person getting sworn in \\~2.5 months from now won't be Kamala, it'll be JD.\n\nDo you *really* want to see JD as president... potentially, with a House + Senate trifecta backing him up?\n\nYeah, I've gamed out scenarios with JD as president after the House flips to D due to humiliating defection, Trump gets removed under the 25A, and the GOP shatters... but JD getting sworn in with full legitimacy from Day One is *another matter entirely.* Trump is a dishonest, bumbling narcissist. He's also the last speedbump between JD Vance and JD's christofascist agenda.\n\nAt least Trump is easy to ridicule. Literally every time he opens his mouth, he's writing SNL's next opening skit. JD has a veneer of respectability. He's not bulletproof ( [https://www.youtube.com/watch?v=6uQdJpS3OZE](https://www.youtube.com/watch?v=6uQdJpS3OZE) ), but he's *not even close* to Trump-level bumbling ( [https://www.youtube.com/watch?v=3BrCvZmSnKA](https://www.youtube.com/watch?v=3BrCvZmSnKA) ).\n\nNow, truth be told, I'm pretty sure JD is counting the days until he can take over from Trump without counting as 1 of his 2 allowed terms... but at least there's a chance to turn around the House and Senate by the time that happens. January 2025 would be the **worst possible time** for him to walk into the Oval Office as President.", 'created': '2024-11-09 01:54:43', 'submission_id': '1gmprdz'}
{'comment': "You would think that this would have stopped him from even running. But apparently our country is made up of laws that are enforced if it's unpopular. \n\nThis whole election was against us from the start and Trump voters sold us out for a lower grocery bill. 😒", 'created': '2024-11-09 01:57:11', 'submission_id': '1gmprdz'}
{'comment': 'Joe Biden can still have him arrested and thrown in Guantanamo.', 'created': '2024-11-09 02:08:32', 'submission_id': '1gmprdz'}
{'comment': 'Seriously! Its bullshit that he was even allowed to run again! After January 6th, he should have been barred from holding office.\xa0', 'created': '2024-11-09 04:44:12', 'submission_id': '1gmprdz'}
{'comment': 'Perhaps you were not paying attention, but the MAGA SCOTUS took the 14th amendment out behind the barn, raped it with a broomstick, water boarded it, and then shot it with an AR-15. \n\nColorado court ruled Trump couldn’t be on the ballot. [Court ruled that without a specific law passed by Congress there was no law to enforce this.](https://www.scotusblog.com/2024/03/supreme-court-rules-states-cannot-remove-trump-from-ballot-for-insurrection/)', 'created': '2024-11-09 05:42:38', 'submission_id': '1gmprdz'}
{'comment': 'We are not a serious country...', 'created': '2024-11-08 23:04:34', 'submission_id': '1gmprdz'}
{'comment': "Genuine question: Who's responsibility was it to enforce this? Which branch of government, position in the government or person holding that position, is responsible for preventing an insurrectionist from running for office?", 'created': '2024-11-08 21:24:20', 'submission_id': '1gmprdz'}
{'comment': '"Innocent until proven guilty" for his own charges, but he\'s definitely given comfort and promises to give aid to those who have been convicted and sentenced already... somehow they deny it was an insurrection though, maybe that\'s the loophole??? He shouldn\'t be allowed to take office but he will.', 'created': '2024-11-08 21:29:38', 'submission_id': '1gmprdz'}
{'comment': 'If they didn’t control, Congress, there might be a shot at this. but they do so we’re screwed royally', 'created': '2024-11-08 21:51:58', 'submission_id': '1gmprdz'}
{'comment': 'I think the Supreme Court determined that the wording states the word “officer” and they do not consider the president to be apparently and therefore he was able to run again. Blame his Supreme Court.', 'created': '2024-11-08 22:24:13', 'submission_id': '1gmprdz'}
{'comment': 'This is a hopeless pipe dream at best. \n\nDonald Trump will be president of the United States for four more years.', 'created': '2024-11-08 22:56:55', 'submission_id': '1gmprdz'}
{'comment': 'I think we all already know this, and yet, here we are.', 'created': '2024-11-08 23:31:50', 'submission_id': '1gmprdz'}
{'comment': 'Logically yes. But Trump owns the Supreme Court, the masses desperately want him and adore him (look at the electoral map), and the Republicans said it wasn\'t an insurrection but a "love" festival or tourists just having silly fun. So it is what it is. He packed the courts, and it looks like the Repubs will also run the Senate and House and have total control over all facets of US government including the US military and do what they want. Let\'s see if the American people are still drooling over "tough guy" talk four years from now.', 'created': '2024-11-08 23:55:11', 'submission_id': '1gmprdz'}
{'comment': "Look at it this way... They're all old. Just saying. Nature will take it's course as morbid as it sounds 🤷\n\n", 'created': '2024-11-08 23:58:43', 'submission_id': '1gmprdz'}
{'comment': 'You are exactly correct. He’s a criminal.', 'created': '2024-11-09 00:09:31', 'submission_id': '1gmprdz'}
{'comment': "Yeah the supreme court said congress has to enforce this and the republicans aren't going to honor their own oath to defend the Constitution.", 'created': '2024-11-09 00:23:48', 'submission_id': '1gmprdz'}
{'comment': 'Blame Merrick Garland', 'created': '2024-11-09 00:32:24', 'submission_id': '1gmprdz'}
{'comment': 'Apparently he’s above the law 🙃', 'created': '2024-11-09 00:37:48', 'submission_id': '1gmprdz'}
{'comment': 'True. But who will stop him?', 'created': '2024-11-09 00:44:25', 'submission_id': '1gmprdz'}
{'comment': 'America is an illusion. Never was and never will be. These people know whose ass to kiss to gain personal power and that’s who they’re going to stick to.', 'created': '2024-11-09 00:50:44', 'submission_id': '1gmprdz'}
{'comment': 'This anti-Trump rhetoric is clearly not swaying independents. We can still hold him accountable, but trying to crucify him for every single little thing is CLEARLY not getting through to a large majority of the electorate.', 'created': '2024-11-09 01:06:05', 'submission_id': '1gmprdz'}
{'comment': 'just curious, what happens if rump keels over before January?', 'created': '2024-11-09 01:28:43', 'submission_id': '1gmprdz'}
{'comment': 'Apparently it doesn’t matter.', 'created': '2024-11-09 02:09:34', 'submission_id': '1gmprdz'}
{'comment': 'Blame Merrick, DOJ for slow walking an indictment… couple of years too late.', 'created': '2024-11-09 02:59:49', 'submission_id': '1gmprdz'}
{'comment': "They're dropping his sentencing and pending cases. He's getting away with it. This appears to be the first step in dismantling the Constitution.", 'created': '2024-11-09 05:33:51', 'submission_id': '1gmprdz'}
{'comment': 'ACLU or someone will probably pursue this but he’s not convicted of it yet and never will be.', 'created': '2024-11-09 05:40:46', 'submission_id': '1gmprdz'}
{'comment': "Add Merrick Garland to the useless careerist assholes who couldn't get the job done. The democrats should stop trying to promote people who they think they 'owe' and instead play to win like the republicans do.", 'created': '2024-11-09 10:14:49', 'submission_id': '1gmprdz'}
{'comment': 'https://www.scotusblog.com/2024/03/supreme-court-rules-states-cannot-remove-trump-from-ballot-for-insurrection/', 'created': '2024-11-08 20:26:09', 'submission_id': '1gmprdz'}
{'comment': 'FUNNY GUY', 'created': '2024-11-08 21:22:53', 'submission_id': '1gmprdz'}
{'comment': 'I agree with you in principle, but good luck with that one', 'created': '2024-11-08 21:34:10', 'submission_id': '1gmprdz'}
{'comment': 'about the only official act that might have any effect would be to wait for rump to have a meeting with his people and black site the whole group.', 'created': '2024-11-08 21:51:36', 'submission_id': '1gmprdz'}
{'comment': 'I agree, but...\nDamn, I am so tired of Teflon Don and all his GOP cons.', 'created': '2024-11-08 22:31:24', 'submission_id': '1gmprdz'}
{'comment': "There's the chance of trump kicking the bucket in the next couple of years. Or get the 25A treatment. My point is that trump not taking office doesn't mean we dodged a bullet. \n\nMy only hope (tiny silver lining) is that with trump gone, the gop will go back to being their usual, horrible selves, and at least ease up on the ultra-hateful anti-immigrant, anti-minorities stances, and go back to the good old dog whistle.\n\nThey will still remain in power however they can, no matter how crooked the means required.", 'created': '2024-11-08 23:25:22', 'submission_id': '1gmprdz'}
{'comment': 'Someone has to sue him.', 'created': '2024-11-08 23:35:43', 'submission_id': '1gmprdz'}
{'comment': 'The way I’m handling this is with a countdown on my white board at work. If in 1534 days we’re not inaugurating someone for president besides Donald Trump, that is when we need to freak out.', 'created': '2024-11-09 00:12:58', 'submission_id': '1gmprdz'}
{'comment': 'The wheels of justice simply turned to slow.\n\nI would imagine this is a major underlying reason why Trump started his 2024 campaign way earlier than a normal one would start.', 'created': '2024-11-09 00:25:47', 'submission_id': '1gmprdz'}
{'comment': 'Damn too late \nNobody can stop him\nI dislike it immensely but it’s too late', 'created': '2024-11-09 00:30:33', 'submission_id': '1gmprdz'}
{'comment': "They'd have to try him for treason and they won't. I've gotten over it already. It's the democrats fault. Just like when Lincoln won. Just like it was the republicans fault when Grover Cleveland won.\n\nThey couldn't pick a candidate they fully stand behind at first or at all. They couldn't find a single topic to fixate on, and when they did find one that they could rally behind they tossed up so much word salad that even my mother, a hardliner Democrat (the only one in the family. I'm a Moderate), was confused. She's 76 and high school educated sixty years ago. Even she said she prefers the way Trump talks, if not what he says. He talks on her level. Not that she's stupid, obviously. But she hates having to ask what things are. She says it makes her feel stupid. I just said that it was simply a matter of having to educate herself and ask questions. She thought that was what the candidates were supposed to do. Speak to her so she can understand it. \n\nSo I am not, by any means shitting on the Dems. I'm just kinda pointing out the failures of missed opportunities that the dems had. Believe me. Independents aren't perfect. I've been waiting on a decent 3rd fucking party for decades.", 'created': '2024-11-09 00:42:14', 'submission_id': '1gmprdz'}
{'comment': 'That just gets us Vance with fewer steps.', 'created': '2024-11-09 01:41:57', 'submission_id': '1gmprdz'}
{'comment': 'Nothing fucking matters anymore. America is in its last season.', 'created': '2024-11-09 02:49:45', 'submission_id': '1gmprdz'}
{'comment': 'There’s nothing we can do to avoid him taking power. NO ONE will stop him. They’re wrapping up all the cases against him. He will be President (dictator), and we can only hope they’re all so inept they can’t do everything they want to do. \n\nI don’t believe this was a fair election. I don’t believe there will ever be another fair election. The US is forever changed and only through his complete incompetence can we hope he pisses off the right enough that they finally realize they own what they bought. No returns, do not pass go, do not collect your SS check or Medicare. \n\nSomeone else pointed out that with Trump and Musk’s egos being so big, it likely won’t be long before he fires Elon. And, he will be ok with Vance being hung at the gallows like he was with Pence. I look forward to seeing all the leopards eating their faces!', 'created': '2024-11-09 02:55:51', 'submission_id': '1gmprdz'}
{'comment': 'Laws are a social contract amongst ourselves. If we’re not able to uphold them then they’re worthless.', 'created': '2024-11-09 02:58:27', 'submission_id': '1gmprdz'}
{'comment': 'Good luck with that, what constitution?', 'created': '2024-11-09 04:39:32', 'submission_id': '1gmprdz'}
{'comment': 'The Dems are too busy patting themselves on the back for the "peaceful transfer of power"...to Hitler 🤦', 'created': '2024-11-09 04:58:28', 'submission_id': '1gmprdz'}
{'comment': 'Not sure y’all are seeing what I’m seeing about Alfie Oakes!!! Michael Flynn, Ivan Raiklin!! \n\nSomething HUGE is brewing!!', 'created': '2024-11-09 05:06:26', 'submission_id': '1gmprdz'}
{'comment': 'We were all gaslit into overlooking the fact that he wasn’t eligible to run for office. SCOTUS assisted in delaying the Election Lie & J6 trial. “Innocent until proven guilty” is only for the court, it’s the prosecution’s role to prove the defendant is guilty instead of the defendant having to prove they’re innocent. The prosecution’s argument is available to the public, the defense chose to delay instead of rebuttal. Guilt was proven, he was an illegitimate candidate on the ballot. \n\n“Not my president” has been overused and doesn’t fully express that. “Not *the* president” is more fitting.', 'created': '2024-11-09 06:03:41', 'submission_id': '1gmprdz'}
{'comment': 'constitution? laws? justice system?\n\nwere witnessing the death of american democracy! those are just words now. just like the word america.', 'created': '2024-11-09 08:57:55', 'submission_id': '1gmprdz'}
{'comment': 'The Confederacy is a rebellion. \n\nPushing hard for states rights and a total change of how our country works should 100% count.', 'created': '2024-11-09 16:29:14', 'submission_id': '1gmprdz'}
{'comment': 'Americans in general have disappointed me since 2016. Never thought Trump would garner enough votes to win in 2016, that he would be allowed to run again and win in 2024. But it is what it is and everyone will have to deal with the consequences. I now expect the right to deny that Trump screws this up even if they have to live in cardboard boxes and eat dog food. To them “owning the libs” is more important.', 'created': '2024-11-09 16:53:24', 'submission_id': '1gmprdz'}
{'comment': 'I agree but he has not been convicted of leading or inciting an insurrection.', 'created': '2024-11-09 17:37:35', 'submission_id': '1gmprdz'}
{'comment': 'Unfortunately, nobody is willing to enforce it. He has too many people kissing his ass. But I completely agree with you. He has managed to convince more than half the country that he should be president. Unfortunately indeed!', 'created': '2024-11-09 17:38:35', 'submission_id': '1gmprdz'}
{'comment': "This court case can go through now. \n\nThe supreme court ONLY ruled that this can't be decided at the state level. That states, individually don't have the authority to decide for the country who is in the ballot. \n\nIt can be argued at the federal level. So according to SCOTUS, this case should be brought to the courts again.", 'created': '2024-11-09 17:55:26', 'submission_id': '1gmprdz'}
{'comment': 'He shouldn’t but the only way for that to actually be enforced according to the Supreme Court is for Congress to pass implementing legislation, which they never have and as long as Republicans have control of either chamber, never will. I assume the authors of the 14th amendment expected it to be self executing otherwise the Radical Republicans would have passed legislation during Congressional Reconstruction, but they didn’t.', 'created': '2024-11-09 18:58:13', 'submission_id': '1gmprdz'}
{'comment': 'So what, Vance takes his place? I don’t know that would be an improvement.', 'created': '2024-11-10 02:29:01', 'submission_id': '1gmprdz'}
{'comment': 'Can Biden do anything to stop him?', 'created': '2024-11-09 01:14:54', 'submission_id': '1gmprdz'}
{'comment': '\n\nIt’s over dude, let it go.', 'created': '2024-11-09 01:30:50', 'submission_id': '1gmprdz'}
{'comment': 'This is what the 2nd amendment is for. Defend your home from what may come once he takes office. If we don’t take the House of Representatives he will have unchecked power and immune from prosecution. He owns the Supreme Court now because people couldn’t vote for Hillary in 2016. And now the sniveling male youth put him in office to pack the courts even more with fascists. This is how democracy ends. Great job!🇺🇸\n\nVOTE next time if you even get another chance.\n\nhttps://preview.redd.it/qigrp1ifhqzd1.jpeg?width=1164&format=pjpg&auto=webp&s=3f406bb6d492ada42dbcf2aa9f98ccb5582bf0db', 'created': '2024-11-08 21:08:52', 'submission_id': '1gmprdz'}
{'comment': 'Only a small fraction you say?', 'created': '2024-11-09 03:07:00', 'submission_id': '1gmprdz'}
{'comment': "It's also as strong as the collective actively ignores it. It's evident that half the US population is willing to ignore it.", 'created': '2024-11-10 00:39:39', 'submission_id': '1gmprdz'}
{'comment': "Regardless Trump winning or losing, the reality is that the majority of the American people agree with everything he represents. That doesn't go away overnight nor with 4 more years of Democrat government. The country as a society is fucked up. Fuck whatever is left to the ground once and for all, so it can rise up again.", 'created': '2024-11-08 23:43:19', 'submission_id': '1gmprdz'}
{'comment': 'Exactly. And, the fact was we knew 700 something days ago he was running. He really never had a stopped campaigning.', 'created': '2024-11-08 23:40:55', 'submission_id': '1gmprdz'}
{'comment': 'Absolutely!!!!', 'created': '2024-11-08 22:00:54', 'submission_id': '1gmprdz'}
{'comment': "yep. if you are pissed off at the dems because you think they personally ran through Walmart and flipped prices around, sure - whatever...throw those misguided angry votes at a Republican that isn't going to overthrow our government please. i would not be anxious if Nikki Haley was the president elect.", 'created': '2024-11-09 02:20:04', 'submission_id': '1gmprdz'}
{'comment': "Scotus ruled that an individual state cannot decide for the country who can and cannot run for office. \n\nUnfortunately the way our constitution works, is that states are entirely in charge of administering their elections. \n\nHowever, technically, this case could be brought now before the supreme court, and his victory should be thrown out. \n\nAnd the. Congress would pick the president. It would definitely be a Republican president because of how that vote works. But it wouldn't be trump.\n\n\nNone of this would happen is my guess. \n\nNo one wants to be the person who overturns the voters intention. (Unless it was Republicans doing it FOR trump.)\n\nSo I doubt we will see this come up.", 'created': '2024-11-09 17:57:46', 'submission_id': '1gmprdz'}
{'comment': 'Not for Republicans\xa0', 'created': '2024-11-08 20:40:18', 'submission_id': '1gmprdz'}
{'comment': 'Colorado tried, but since Trump’s Supreme Court holds the Justice system by the balls, they threw it out.\n\nhttps://www.scotusblog.com/2024/03/supreme-court-rules-states-cannot-remove-trump-from-ballot-for-insurrection/', 'created': '2024-11-09 00:04:52', 'submission_id': '1gmprdz'}
{'comment': 'There are laws and Biden appointed Garland who refused to prosecute trump, so here we are.', 'created': '2024-11-09 01:06:39', 'submission_id': '1gmprdz'}
{'comment': 'Not for wealthy assholes.', 'created': '2024-11-09 11:11:06', 'submission_id': '1gmprdz'}
{'comment': 'Common sense will normally dictate that a felon and a proven traitor should not or, better yet, can not become the president of the country. Especially when that common sense is also clearly backed by the 14th Amendment of the Constitution. But fuck our constitution in the name of lord all mighty, the one and only orangejebus, right? BTW, fuck OrangeJebus and fuck all of those GQP traitors who support him.', 'created': '2024-11-08 21:34:41', 'submission_id': '1gmprdz'}
{'comment': "It's a pariah state. \n\nDid the MAGA dingleberry voters consider how this might impact travel or tourism? How many states need that industry as part of their economies? Are they so stupid as to not consider that nobody sane will come to the Unstable States.", 'created': '2024-11-09 01:44:22', 'submission_id': '1gmprdz'}
{'comment': "He'll leave it to Merrick Garland, who will be sure to get round to it in 2050.", 'created': '2024-11-08 20:38:59', 'submission_id': '1gmprdz'}
{'comment': 'For real. Biden has nothing to lose. He could make this happen with an executive action or something, right?', 'created': '2024-11-08 21:13:29', 'submission_id': '1gmprdz'}
{'comment': "And do what? The Supreme Court of Trump-appointed judges investigated him and found nothing wrong. We've already lost well before this.", 'created': '2024-11-08 21:22:22', 'submission_id': '1gmprdz'}
{'comment': "You're joking right? Biden has nothing to do with this. The Justice department has made it pretty clear that they won't interfere in the matters of a sitting president. Trump isn't a sitting president yet, so maybe. But even if they do, it would very likely be considered interference in the will of the people. That's why even if they investigate, it will just be a report that they leave in the hands of.. Congress. Congress is the only entity that can realistically do anything about the executive branch. \n\nWell guess what? Because we're so polarized, we're divided and concentrated geographically which leaves a giant vacuum across the country. It's basically our own doing that we abandoned outreach to these states (each having 2 senators and at least 1 rep) and now they're dictating how things will go. \n\nThese senators and reps have no reason to prosecute let alone depose the leader of their party. It's completely illogical to do so. This is just how our government works. I feel we all need to understand this better before we get outraged.", 'created': '2024-11-08 21:17:09', 'submission_id': '1gmprdz'}
{'comment': 'Immunity. So, order the immediate detainment of Trump until he faces charges and is tried.', 'created': '2024-11-08 23:20:59', 'submission_id': '1gmprdz'}
{'comment': "He is doing his job. This wasn't lawfare. Be mad at him that he picked a sh*tty attorney general. This is Merrick Garland's fault.", 'created': '2024-11-08 22:20:09', 'submission_id': '1gmprdz'}
{'comment': 'Maybe this will come in handy for Trump’s pseudo waterboy, Leon.', 'created': '2024-11-09 05:07:20', 'submission_id': '1gmprdz'}
{'comment': 'Yes, the supreme court would rather suck his sweaty balls than uphold the constitution.\n\nAs it turns out, our government is full of traitors to the constitution.\n\nThe senate/house should have immediately impeached and prosecuted him.', 'created': '2024-11-08 22:33:01', 'submission_id': '1gmprdz'}
{'comment': "I blame all the fraternities. Groups made to be infiltrated and curtailed with promises of wealth and power. And a membership that thinks corruption and prejudice are fine as long as you don't get caught. The US is a rotten apple ready to fall. Has been for many decades.", 'created': '2024-11-09 23:13:54', 'submission_id': '1gmprdz'}
{'comment': 'My thoughts exactly.', 'created': '2024-11-09 01:23:19', 'submission_id': '1gmprdz'}
{'comment': 'If Vance takes office he would select his own VP. Johnson would continue to be speaker.\n\n\nJohnson would indeed become president if both Trump and Vance were incapacitated', 'created': '2024-11-08 21:16:08', 'submission_id': '1gmprdz'}
{'comment': 'I think we’d hold a new election. \n\nPeople didn’t vote for Vance as president. We’d take six months and run a new election…', 'created': '2024-11-09 04:12:56', 'submission_id': '1gmprdz'}
{'comment': 'It would have to be an amendment to the Constitution. Which is a HUGE undertaking because of how many in Congress have to cavorted for it. I know, I agree it’s shocking but the writers of the Constitution could never have imagined this FUBAR. No one would logically ever imagine it.', 'created': '2024-11-09 05:16:51', 'submission_id': '1gmprdz'}
{'comment': 'This type of thing should be checked for all over.', 'created': '2024-11-09 03:21:16', 'submission_id': '1gmprdz'}
{'comment': 'No. But JD Vance happens along with Project 2025. America still gets screwed & is over as a stable, secure, economically viable nation. Banana Republicanism.', 'created': '2024-11-09 03:12:05', 'submission_id': '1gmprdz'}
{'comment': "That's their whole plan. The dying minority party was struggling to win in free & fair elections. In order to compete they gerrymandered, suppressed voting, etc. \nThat was not working effectively, so we saw them turn against the system of democracy the past few years. \n\nThe Republicans want to rule over the overwhelming majority of the 330 million citizens who reject them, reject their policies. They're planning to impose their will & their beliefs upon the country against it's will. \n\nThis GOP is dysfunctional, inept & loaded with religious fruitcakes & assorted whackjobs & headed by an inept moron surrounded by other idiots. Evil idiots, but idiots nonetheless. \nHow long before they overreach? How long before they bungle stuff? How long before they screw up & do something to piss off the violent people in the cult that they fear? How long before they run this country into the ground? \n\nI could keep going, but you get the gist. Let's hope they f**k themselves. 😃", 'created': '2024-11-09 03:06:26', 'submission_id': '1gmprdz'}
{'comment': 'If they happen, we can try to change who has the majority in 2026 mid-term elections.', 'created': '2024-11-09 05:18:17', 'submission_id': '1gmprdz'}
{'comment': "Oh I'm aware, but also this was brought up 4 years ago, timing doesn't matter much when the senate, house, and supreme court ARE DOUBLE FISTING DONALD TRUMPS COCK INTO THEIR MOUTHS.", 'created': '2024-11-08 22:37:12', 'submission_id': '1gmprdz'}
{'comment': "Of course they'd issue a shit ruling. The SCOTUS was broken years ago when McConnell packed it. Now it's just irrelevant. They made themselves irrelevant when they gave presidential immunity. Right-wing hacks.", 'created': '2024-11-09 02:41:33', 'submission_id': '1gmprdz'}
{'comment': 'They only believe in freedom of speech for themselves.', 'created': '2024-11-08 22:28:25', 'submission_id': '1gmprdz'}
{'comment': "If he did that at this point, it'd be civil war level insurectionist from his cult.", 'created': '2024-11-09 02:26:23', 'submission_id': '1gmprdz'}
{'comment': "Id say justice department and supreme court.\nIt was also the job of the house/senate to prosecute him under articles of impeachment, as he was still on office after the event took place.\n\nOf course, since sucking on Trump's PP is more important than justice and the constitution, this did not happen.", 'created': '2024-11-08 22:18:38', 'submission_id': '1gmprdz'}
{'comment': 'Oh I absolutely do.\nThey are traitors to the constitution.', 'created': '2024-11-08 22:34:13', 'submission_id': '1gmprdz'}
{'comment': "I'm well aware, the time to do something about this was 4 years ago.", 'created': '2024-11-08 23:09:09', 'submission_id': '1gmprdz'}
{'comment': 'No, it’s not a given that the “masses” desperately want him. There are those in power who helped keep him just out of reach of justice just long enough. \nMany millions do not want him. And then there are people who are dull witted and don’t even vote.', 'created': '2024-11-09 00:11:44', 'submission_id': '1gmprdz'}
{'comment': 'Key word **states.**', 'created': '2024-11-08 20:29:14', 'submission_id': '1gmprdz'}
{'comment': 'Why would he bother with an inauguration or an election for that matter? He will just stay there and dare someone to do something about it. Because of the fecklessness of republicans he is assured to be president for life, i.e., King.', 'created': '2024-11-09 00:49:28', 'submission_id': '1gmprdz'}
{'comment': "I think nature takes its course before that happens. I can't imagine him being coherent if he's still around. Even now he's better suited for the nursing home than the WH. Too damn old.", 'created': '2024-11-09 03:23:40', 'submission_id': '1gmprdz'}
{'comment': "The point is this never should have happened in the first place. Vance never would have run if it wasn't for Trump.", 'created': '2024-11-09 01:48:27', 'submission_id': '1gmprdz'}
{'comment': "IF. \n\nHe told Christian gathering of his cult this past summer they're going to fix it so good they'll never have to vote again. By fix it, he means rig it. Maybe he already rigged it with his army of election deniers? \n\nI swear that makes more sense as to how the unhinged, degraded Trump managed to defy the polls, defy momentum, defy reason & logic to win. It would be less suspect if he only won by the EC. The minority GOP hasn't won the popular vote since 2004. \n\nIt's suspect that the dysfunctional GOP went from losing every election since the Dobbs ruling to such big wins. \nIt's not like he's ethical or wouldn't try. After what happened in 2020 it's incomprehensible to me that we wouldn't recount or audit just to make sure. You know.. trust, but verify. Or distrust, and verify because so much is on the line.\n\nIt's incomprehensible to me that the cost of eggs & bacon was more important than preserving or protecting the Constitution & freedom. IF we manage to survive not certain we get another legit vote.", 'created': '2024-11-09 01:35:17', 'submission_id': '1gmprdz'}
{'comment': "Our guns won't save us from the US military.", 'created': '2024-11-09 01:24:03', 'submission_id': '1gmprdz'}
{'comment': 'Well a sitting President does have immunity and Biden does have 3 more months in office \n\nSo…', 'created': '2024-11-09 03:52:10', 'submission_id': '1gmprdz'}
{'comment': "And the same dem men who couldn't vote for Hillary didn't vote for Kamala . How did Joe get 81 million. And she has 69 miĺion?", 'created': '2024-11-09 01:15:51', 'submission_id': '1gmprdz'}
{'comment': 'That’s an amazing image. Got the original without the Reddit watermark?', 'created': '2024-11-09 21:13:47', 'submission_id': '1gmprdz'}
{'comment': 'That’s a Right Wing lie. The Second Amendment was NOT intended to justify overthrowing the Government.', 'created': '2024-11-10 03:03:09', 'submission_id': '1gmprdz'}
{'comment': "That's what's really sad, that 51-52% of voters thought that he'd be a better president than Kamala Harris. That they thought that she would be so bad that they decided to put a mentally ill convicted criminal in charge instead. I too hope that he runs this country straight into the ground. Then maybe they will realize what a tragic mistake they made.", 'created': '2024-11-08 23:58:53', 'submission_id': '1gmprdz'}
{'comment': 'It will take decades to undo what he/they have planned', 'created': '2024-11-09 01:12:39', 'submission_id': '1gmprdz'}
{'comment': "It's actually a minority of the American people who agree with what he represents. Republicans are the minority party. Only need a fraction of the population to get the EC. That's what makes this worse & more infuriating. The worst misinformed, dumbfounded dipshits made a decision that fucks the rest of us. \n\nThe two parties are beholden to corporations & wealthy oligarchs. They get bribed & do their bidding. People got fed up because the system was so broken it was impossible for even the idiots not to notice. But Trump isn't the answer to their problems. He exploited it to get power for himself. He just translated his narcissism & antisocial personality disorders into a message people wanted to hear. Woe is he/they. Being aggrieved is okay. Being socially vile is okay. Hatred is okay. He/they are victims of some deep state or the nameless & faceless they or them. \n\nRegardless, the entire selfish, greed driven system sucks. Consume more stuff. Buy more crap you don't need so they can keep it all going. \n\n100% agree since this is only going to degenerate into some really horrible shit... it needs to collapse. I hope in an epic manner & burn to the fucking ground. I want sane, decent people have that chance to start anew.", 'created': '2024-11-09 02:23:45', 'submission_id': '1gmprdz'}
{'comment': 'There is historical precedent for an autocratic 2 term POTUS Andrew Jackson (1829-1837) from the fall of his Presidency was borne the Democratic Party. I think you’re onto something.', 'created': '2024-11-09 01:14:18', 'submission_id': '1gmprdz'}
{'comment': 'The American people who voted for him are part of a cult. He stands for himself and that is all. Let’s see if he can break his golfing record.', 'created': '2024-11-09 02:59:47', 'submission_id': '1gmprdz'}
{'comment': 'That was my take at first too. \n\nAs more data as emerged. It seems people actually are just buying the misinformation. \n\nSo many don\'t understand how the world functions. And say "I just voted for him because of inflation" \n\nAs if politics is a restaurant and you can just pick and choose policies like it\'s a dinner menu. They don\'t even understand when you vote for the person you vote for everything they stand for. \n\nPeople are legit that fucking stupid', 'created': '2024-11-09 18:10:41', 'submission_id': '1gmprdz'}
{'comment': 'Just wait until trump imposes his 20% tariff on most of the crap that Walmart sells. Republicans had their chance with Nikki Haley but trump steamrolled her, and then she endorsed him after absolutely eviscerating him during the primary race.', 'created': '2024-11-09 03:28:18', 'submission_id': '1gmprdz'}
{'comment': 'Well, for Donald Trump specifically. Mitch McConnell saw to that', 'created': '2024-11-08 21:39:56', 'submission_id': '1gmprdz'}
{'comment': 'Another hack ruling from the SCOTUS corruptus.', 'created': '2024-11-09 01:07:37', 'submission_id': '1gmprdz'}
{'comment': '“The candid citizen must confess that if the policy of the Government upon the vital questions affecting the whole people is to be irrevocably fixed by the decisions of the Supreme Court\xa0.\xa0.\xa0. the people will have ceased to be their own rulers.” — Abraham Lincoln', 'created': '2024-11-09 02:28:26', 'submission_id': '1gmprdz'}
{'comment': 'That’s a lot of people!!!', 'created': '2024-11-08 21:54:57', 'submission_id': '1gmprdz'}
{'comment': "They don't consider anything deeper than what they're told to hate.", 'created': '2024-11-09 11:59:19', 'submission_id': '1gmprdz'}
{'comment': '2050? You optimist.', 'created': '2024-11-08 20:48:07', 'submission_id': '1gmprdz'}
{'comment': 'Not sure, but doing nothing and handing nuclear codes to a fascist sure doesn’t help.', 'created': '2024-11-08 21:16:49', 'submission_id': '1gmprdz'}
{'comment': "Make what happen? There's nothing he could possibly do short of order his execution, which is never ever going to happen.", 'created': '2024-11-09 00:37:25', 'submission_id': '1gmprdz'}
{'comment': 'The outrage is justified.', 'created': '2024-11-08 21:22:02', 'submission_id': '1gmprdz'}
{'comment': "Failed institutions. The hypocrisy is maddening. Felon, rapist president. Blatantly corrupt so called Justices that protect him. SCOTUS might as well write their rulings on toilet paper.\nThis country is such a pathetic joke now. But we need to respect them & their bullshit opinions as they've failed to uphold the Constitution or prevent the unraveling of the Republic at the hands of an unfit man. Welcome to the kakistocracy folks.", 'created': '2024-11-09 02:43:03', 'submission_id': '1gmprdz'}
{'comment': 'Exactly, those are the masses.', 'created': '2024-11-10 19:36:20', 'submission_id': '1gmprdz'}
{'comment': 'Ok. I have a hard time believing a lawsuit will reach the Supreme Court with a favorable judgment saying he has to be on state ballots but he isn’t allowed in office.', 'created': '2024-11-08 20:36:10', 'submission_id': '1gmprdz'}
{'comment': 'I guess. I dunno man, he probably won’t live through the next 4 years. I’ve watched old people at the end of their lives and it goes downhill QUICK. He’s already shitting himself and has dementia. We’ll see.', 'created': '2024-11-09 01:02:48', 'submission_id': '1gmprdz'}
{'comment': 'Without evidence, I think the most we can reasonably say is that if Trump and his loyalists knew of a way to secretly "rig" the election, they would not hesitate to do so.\n\nIt would not be the first time that the Trump regime has conspired against the US government and the American people, and it certainly won\'t be the last.\n\nIt really does feel like things have been changing. I think we\'ve been taking a lot of things for granted over the past 100 or so years.', 'created': '2024-11-09 21:21:21', 'submission_id': '1gmprdz'}
{'comment': 'Sure, but at least I will stop his MAGA nazi groups!!', 'created': '2024-11-09 04:42:27', 'submission_id': '1gmprdz'}
{'comment': 'Just remember that “following orders” is NEVER a valid reason to do anything and should be countered effectively, *even if it means loss of livelihood.* If your livelihood always comes before your willingness to self-enforce your rights, you will eventually lose both. The worst thing that you can do is stick your head in the sand for the next four years.', 'created': '2024-11-09 20:44:23', 'submission_id': '1gmprdz'}
{'comment': 'Idk, The Taliban, Vietcong, North Korea, and ISIS was able to beat back the US military to a stalemate or defeat with little more than small arms, punji sticks, and IEDs', 'created': '2024-11-09 02:50:46', 'submission_id': '1gmprdz'}
{'comment': 'Rigging', 'created': '2024-11-09 03:52:58', 'submission_id': '1gmprdz'}
{'comment': 'Sorry no…', 'created': '2024-11-09 21:50:21', 'submission_id': '1gmprdz'}
{'comment': 'Overthrowing the government?! Nope just defending my fucking home.🇺🇸', 'created': '2024-11-10 05:30:43', 'submission_id': '1gmprdz'}
{'comment': "I think this lesson only will be learned the hard way. Nothing else has gotten through. We really tried to protect ourselves. And protect them from themselves. It is what it is. \n\nWith no restraint he's absolutely going to be chaotic & do inept, idiotic things that will run this country into the ground. This was close to being a failed state during the pandemic. It's inevitable. We all know it. That's why so many of us just want it to happen, so we can salvage some type of future beyond it. \n \nAlso, a lot of his cult has been living in fantasy land. That find out phase is going to be a doozy for them.", 'created': '2024-11-09 02:36:16', 'submission_id': '1gmprdz'}
{'comment': "I read that 10 million democrats didn't vote at all. I don't know if it's true because I saw it on social media before I went dark. All Trump supporters will not stop rubbing it in our faces, so it's just best for me to stay off social media. This is the only place I come. I don't feel safe anymore. Our grandmothers fought for our rights, and now we need to fight for the future of our gender. This should not even have happened.", 'created': '2024-11-09 10:19:58', 'submission_id': '1gmprdz'}
{'comment': '*centuries', 'created': '2024-11-09 02:12:44', 'submission_id': '1gmprdz'}
{'comment': '> I want sane, decent people have that chance to start anew.\n\nCollapse usually does not bring such people to the top.', 'created': '2024-11-09 08:42:00', 'submission_id': '1gmprdz'}
{'comment': 'Still applies. If people are really that stupid, they need to learn the hard way.', 'created': '2024-11-09 18:46:40', 'submission_id': '1gmprdz'}
{'comment': "Mitch McConnell did more damage to this country than any other person. Now he's just sitting back enjoying the show with his millions protecting him. Evil troll.", 'created': '2024-11-08 23:12:39', 'submission_id': '1gmprdz'}
{'comment': '👿🐢', 'created': '2024-11-09 00:28:36', 'submission_id': '1gmprdz'}
{'comment': 'And John Roberts.', 'created': '2024-11-09 00:44:46', 'submission_id': '1gmprdz'}
{'comment': "Justified? \n\nI'm saying we need to understand what we're outraged about. Are we outraged that we think we have no control over the government? Do we know how government works? Do we know how best we can make use of our time and energy? \n\nThe way I see it, we have a few choices. We can just focus on our own lives and maybe dabble in our own local politics. That's fine, our lives have lots of challenges. But if you really want to make a difference, you can move to a swing state and do something about politics there. Or you can put your money in your choice political groups that are in those swing states. \n\nWhen we get highly emotional, we leave ourselves vulnerable to someone or something that we think we can relate to. It's human nature. That's the favorite tool of the populist.", 'created': '2024-11-08 21:30:51', 'submission_id': '1gmprdz'}
{'comment': 'Say hi to Dictator Don jr.', 'created': '2024-11-09 01:04:02', 'submission_id': '1gmprdz'}
{'comment': "Don't even think about going around playing war games!", 'created': '2024-11-09 05:57:11', 'submission_id': '1gmprdz'}
{'comment': 'If by small arms you mean US weapons they pick up off of dead bodies and supply caches they take from military fobs, RPG rockets, PKMs and RPKs, and Chechnian snipers, and mortar fire, then yes. I dealt with this when I was deployed in Afghanistan in 2010. Granted, we plowed through 5KM of Taliban territory but they kept us at bay with IDF which more or less prevented us from moving any further. On occasion you’d hear delta force black hawks moving deeper behind enemy lines and you’d see their green tracer rounds at night but it was difficult to make progress moving forward with constant IEDs.', 'created': '2024-11-09 22:41:21', 'submission_id': '1gmprdz'}
{'comment': 'Unfortunately it was not rigged. It was manipulated sure. But rigged. No, didn’t need to be. America is racist and sexist to its core. We just proved you can put the literal worst human being up against a woman of color, a qualified woman with good character and she will loose. \n 3 things lost this election. Vagina, melanin, propaganda', 'created': '2024-11-09 04:08:01', 'submission_id': '1gmprdz'}
{'comment': "I'm not very hopeful that the vast majority of his cult members will ever admit his responsibility for the destruction he brings to this country. He will blame it on anyone and anything but himself and they will believe him. I'm more interested in the millions of Biden/Harris 2020 voters who flipped to trump in 2024. I can't wait to hear their regret when it all collapses, all because they couldn't bring themselves to vote for Biden’s vice-president in this election, for whatever ridiculous reason.", 'created': '2024-11-09 04:05:57', 'submission_id': '1gmprdz'}
{'comment': 'Look I have seen this movie before. \n\nAll the way back to the bush years. \n\nIn the late 00\'s youd be surprised how many people were like "gee I can\'t believe there were no WMDs no one saw that coming!" And I was like "we literally protested for years shouting it, you don\'t listen!" \n\nAnd that was from people I know for a fact were told. \n\nPeople don\'t learn. They will never learn. .\n\n\nThe fact that Trump won at all absolve you of the optimism that people will learn. They absolutely will not \n\nSorry', 'created': '2024-11-10 03:07:11', 'submission_id': '1gmprdz'}
{'comment': 'McConnell is the true villain. Stealing the SCOTUS seat from Garland.', 'created': '2024-11-08 23:20:02', 'submission_id': '1gmprdz'}
{'comment': 'Mitch McConnell is the first politician that I’ve ever heard that Republicans are going “scorched earth”. That’s not an American for the people.', 'created': '2024-11-09 02:37:23', 'submission_id': '1gmprdz'}
{'comment': 'You’re responding as if you know me, and like you are talking to someone who doesn’t understand and sat around doing nothing but posting on Reddit. For all you know, I may live in a swing state already. I could be in local politics. I may have door knocked, phone banked, spent my own money sending postcards. \n\nI’m all for doing something productive but feel free to save the lecture and negative assumptions about someone you don’t even know.', 'created': '2024-11-08 21:48:18', 'submission_id': '1gmprdz'}
{'comment': "All arms you just listed are considered small arms, correct? Granted most Americans don't have access to mortar or rocket propelled arms, stationary explosives would be in the wheelhouse tho", 'created': '2024-11-10 08:49:38', 'submission_id': '1gmprdz'}
{'comment': 'Can I add to your list? The 4th thing is that he made it ok to proactively be racist again. Apparently, about 1/4 of Americans (most MAGAs) want to go back to when POC are treated with contempt. \n\nThey hate women too but want women to around them, just with less rights than they have and sadly some women are ok with that. \n\nFor me, and I’m sure most here, this was a shock. I thought we’d moved on from extreme fear and hate of race. I thought it was a tiny group of KKK and Nazis. I was sooo blind!', 'created': '2024-11-09 16:53:21', 'submission_id': '1gmprdz'}
{'comment': "I don't understand why they did that twice now. A man would have beaten Trump's ass. Idk why democrats keep trying to electric a female president when the country isn't ready for one. Four years ago was the first time a biracial woman was vice president. That was a start. But only a start.", 'created': '2024-11-09 10:33:07', 'submission_id': '1gmprdz'}
{'comment': 'Garland was much more useful as Attorney General, his slow playing the Trump prosecutions helped get us where we are today. He was never anything but a tool for the right.', 'created': '2024-11-09 00:06:17', 'submission_id': '1gmprdz'}
{'comment': 'Newt Gingrich started it in the 90s', 'created': '2024-11-09 04:32:24', 'submission_id': '1gmprdz'}
{'comment': "Sorry for coming across as negative and condescending. You're right, I don't know you. But I do know we both want things to be better. It's a tense right now and I do want us all to be equipped for stressful times.", 'created': '2024-11-08 21:55:46', 'submission_id': '1gmprdz'}
{'comment': 'We could certainly make do with IEDs but aside from that, yes most arms we have available to us are small arms. I wouldn’t really consider LMGs small arms since they’re larger caliber and can easily penetrate light armor, but even those are hard to come around and you have to have special permits for automatic weapons and silencers.', 'created': '2024-11-10 21:15:18', 'submission_id': '1gmprdz'}
{'comment': 'You weren’t the only one caught off guard by this. I’m still in shock.', 'created': '2024-11-12 02:11:12', 'submission_id': '1gmprdz'}
{'comment': 'Yeah, and you see the push back they got from that. It was stupid. They should have ran Tim walz as the president elect, and like Bernie sanders as vice. And ran it through primaries and all that.. Biden never should have been seeking a second term.. they knew he was slipping n wouldn’t be functioning well long enough.. he did well but he’s tired.. they should have started from scratch with TIM N BERNIE.. they would have smashed dumb dumb mcdoogan', 'created': '2024-11-09 23:28:21', 'submission_id': '1gmprdz'}
{'comment': "I agree he definitely didn't do his job competently.", 'created': '2024-11-09 02:58:26', 'submission_id': '1gmprdz'}
{'comment': "What's your advice for all the people who are about to be incarcerated and killed simply because of who they are? Just focus on your own life until you're arrested? Come on.", 'created': '2024-11-09 00:40:03', 'submission_id': '1gmprdz'}
{'comment': "What's your advice for all the people who are about to be incarcerated and killed simply because of who they are? Just focus on your own life until you're arrested? Come on.", 'created': '2024-11-09 00:40:58', 'submission_id': '1gmprdz'}
{'comment': "I don't know who you are but from what little I know that sounds a bit catastrophizing. \n\nAre you talking about trans rights? Congress doesn't have enough votes to do anything but gridlock. They're the legislating body and they are the ones who really hold power federally. But they have limited powers on states' rights which is why you see people moving to states where they find like minded folks. It's just not as effective a way for making a national impact if you're all concentrated in a few states. \n\nTake abortion for instance. Roe v Wade was struck down but the court held that state's make the final call. Everybody thought that would disaster but then you see blue states and even red states enshrining the right. \n\nExecutive orders have a number of limitations, specifically they cannot override constitutional rights. And presidents are also mostly limited to federal things as opposed to state things. \n\nWhat I want to really emphasize is that it's important to take care of your health, especially your mental health. Being outraged burns you out real fast. When you're emotional and exhausted, you become predictable. That's the most vulnerable place you can be.", 'created': '2024-11-09 01:38:58', 'submission_id': '1gmprdz'}
{'comment': "Gridlock? The GOP is projected to own every single branch of government including the supreme court. They're gonna be about as gridlocked as a country road at midnight. \n\nAlso, executive orders are thrown out by SCOTUS, which Trump has in his pocket. Ain't none of his orders gonna be thrown out. \n\nAnd about Roe Wade, it doesn't matter who SCOTUS said it should be up to when the overturned it. The Republicans will pass an abortion ban with their full control of Congress. No way in hell SCOTUS rules that law unconstitutional. This is the SCOTUS who wasn't afraid to reference their god in the friggin opinion that overturned it. There's no hope there. \n\nI'm going to stay outraged, thanks. I'm more than capable of maintaining my composure while being outraged. Shit is about to hit the fucking fan.", 'created': '2024-11-09 02:07:37', 'submission_id': '1gmprdz'}
{'comment': None, 'created': '2024-11-09 02:33:36', 'submission_id': '1gmprdz'}
{'comment': 'The stock market is not an economic bellwether for over 60% of the working class. People see a problem daily at the grocery store, gas station, and restaurant. They’re not looking at stock prices except in disgust.', 'created': '2024-11-09 02:57:23', 'submission_id': '1gmpsad'}
{'comment': 'Do you got a link to the full article?', 'created': '2024-11-09 06:44:00', 'submission_id': '1gmpsad'}
{'comment': 'Does that change the fact they are misinformed into thinking Trump can fix that? How would 200% tarrifs and a trade war help the American consumer? Some of his supporters even believe he will abolish income tax. Like at some point we are going to need a standardized test to vote because Americans are way too gullible.', 'created': '2024-11-09 03:02:38', 'submission_id': '1gmpsad'}
{'comment': 'They’re also not looking at anything a competent adult would.\n\nIf they deserved respect they would be able to answer how they think Trump is going to fix this.', 'created': '2024-11-09 03:51:16', 'submission_id': '1gmpsad'}
{'comment': 'It’s so easy to say this , we trusted these folks to outsmart a moron and here we are welcome to Hitlerville and now we are all supposed to buck up and take more ? I m out good luck I am too exhausted betrayed by folks who now don’t want to investigate any oddity in the election just giving in immediately 🤷🏻\u200d♀️The same guy who lost the last election and lied no one investigates?!', 'created': '2024-11-08 23:18:18', 'submission_id': '1gmo82j'}
{'comment': 'Thanks for the inspiration from a fictional story. Got a magical object out there we can destroy to save us all? No. Okay then.\n\nWe’re in hell. I hope you feel better though.', 'created': '2024-11-09 04:57:30', 'submission_id': '1gmo82j'}
{'comment': 'The right to decide that will be stripped away from most of us', 'created': '2024-11-08 20:41:41', 'submission_id': '1gmo82j'}
{'comment': 'Look, we tried and we got our asses beat. I know people say that in the past people fought many battles and eventually won. Well, much of what they won was just lost. It\ntook many decades to get those rights. We\ndon’t have many more decades to get them back, not with the backdrop of climate change. Less regulations will be devastating for the environment as well as in the food we consume. I don’t have 50+ years in me to get back what we’re about to lose. So if leaving to spend the rest of my life with some semblance of peace is a possibility, I’m going to take it.\xa0', 'created': '2024-11-09 14:47:44', 'submission_id': '1gmo82j'}
{'comment': "Finding inspiration or being moved by art is something humans have done for a long time. \n\nWe are better armed and more connected and informed than at any point in human civilization.\n\nSlaves who couldn't read or write fled for their lives barefoot in the dark to make it to the underground railroad, union workers were getting gunned down in major cities to fight for safe working conditions, women's rights activists were getting their faces caved in by alcoholic husband's and forced lobotomies up until the 50s, and the black communities were getting lynched, leveled by firehoses, and their cities literally bombed, through to the 60s just for existing or peacefully protesting.\n\nThose people were in hell. We don't know what the future holds or how it will turn out. We do know we are in for a fight, and shouldn't wallow in pessimism just because we are at a disadvantage. Our thoughts should be focused on finding solutions to the challenges ahead of us.", 'created': '2024-11-09 06:37:20', 'submission_id': '1gmo82j'}
{'comment': 'Guess you’ll have to fight for your freedoms the way Palestinians have to fight for their lives. Dig your heels in, it’s going to be a long one. Everything has consequences.', 'created': '2024-11-08 21:55:29', 'submission_id': '1gmo82j'}
{'comment': "If just a few generations ago our forebears could get beaten, ridiculed, and sometimes killed, in the defense of labor rights, civil rights, and women's rights then we owe it to them, ourselves, and every generation that comes after us to pick up that torch.\n\n I'd be embarrassed to tell people the likes of Harriet Tubman, Upton Sinclair, Susan B Anthony, and any labor rights striker from the 19th or early 20th century that we threw in the towel when we lost elections and getting mad on the internet wasn't working.", 'created': '2024-11-09 00:56:59', 'submission_id': '1gmo82j'}
{'comment': "Thanks. I'm just reeling and angered from the fact that so many people in my country think this orange, ugly, sociopathic rapist is fit to run a dollar store let alone a country. It was a big FU to anyone not straight, white, and Christian. \n\nAnd to make matters worse they're gloating about it. They really think they own this country. They feel empowered and enlivened. And if you ask why they voted for the pos and bring up your concerns..... they're either in denial or all for it. \n\nI'm trying to hold myself together but the last few days have been unreal. I'm not sleeping well and my chronic pain feels worse (probably due to stress) than ever. This is bullshit.", 'created': '2024-11-08 19:45:14', 'submission_id': '1gmnlje'}
{'comment': "Okay i'm really not be funny..Is it me or does this look like a swastika??", 'created': '2024-11-08 19:57:17', 'submission_id': '1gmnlje'}
{'comment': "Nice graphic, but it doesn't change anything. As a woman, I am angry, and honestly tired of the democrats nice guy approach to everything.", 'created': '2024-11-09 01:04:49', 'submission_id': '1gmnlje'}
{'comment': "I think we can't give up, and we can't be beating each other up. We are a team -- we win as a team and we lose as a team. We need to stick together and fight, because we will need it to survive these next four years.", 'created': '2024-11-08 20:51:04', 'submission_id': '1gmnlje'}
{'comment': 'I just don’t care anymore. This is who America is. Trump is America: selfish, racist, sexist, ignorant, and cruel. I’m done trying to convince myself that we’re better than this. We’re not.', 'created': '2024-11-08 23:51:26', 'submission_id': '1gmnlje'}
{'comment': 'Thank you for this 💙', 'created': '2024-11-08 19:23:09', 'submission_id': '1gmnlje'}
{'comment': 'The United States of America ends on January 20, 2025. Enjoy these last days of democracy. Get ready to pay for everything.', 'created': '2024-11-09 06:06:56', 'submission_id': '1gmnlje'}
{'comment': 'This is too little too late…it was a good run guys. 1776 to 2025.🇺🇸', 'created': '2024-11-08 21:12:10', 'submission_id': '1gmnlje'}
{'comment': "Make this a flag, with these colors don't run on it!", 'created': '2024-11-08 20:50:07', 'submission_id': '1gmnlje'}
{'comment': 'Ooooooo elden ring', 'created': '2024-11-09 00:55:59', 'submission_id': '1gmnlje'}
{'comment': 'https://youtu.be/5aMz12raLHY?si=0vykZBuhtWatSwrO', 'created': '2024-11-09 03:56:01', 'submission_id': '1gmnlje'}
{'comment': "I just bought peppers pray, turned up the sensitivity on my ring camera, and got some nice headphones on the way.\n\n\nIm also keeping my phone unlocked now so I can get to the camera/help faster.\n\n\nIm disengaging and hunkering down for the foreseeable future. Shame...but i won't give them any more opportunities to take their anger out on me.", 'created': '2024-11-08 20:05:47', 'submission_id': '1gmnlje'}
{'comment': 'It definitely resembles a swastika', 'created': '2024-11-08 20:04:14', 'submission_id': '1gmnlje'}
{'comment': "Naw. We'll be back, but it's going to be a lot of hurt before we do...", 'created': '2024-11-08 23:58:57', 'submission_id': '1gmnlje'}
{'comment': "I am not a fan of guns but I went ahead and got a couple and learned to shoot just in case. I'm preparing for the worst hoping for the best. Im getting my youngest his passport since he doesn't have one yet. I'm stocking up on camping gear and canned foods etc. I hope I'm doing all of this for nothing and that Trump won't be as bad as he promised he will be. If we are wrong and everything turns out okay then cool I have some really cool camping gear for summer trips to the lake and I have food to donate to those who need it or just have it here at home. \n\n\nIt makes me feel better to have a plan A B and C. \n\nI suggest everyone read project25. It's also a timeline. If you begin to notice it being implemented you will know what's coming next and have more time to prepare.", 'created': '2024-11-08 20:34:24', 'submission_id': '1gmnlje'}
{'comment': 'Fuck Red states. Blue needs to stop the handout to them.', 'created': '2024-11-08 19:00:45', 'submission_id': '1gmlq6j'}
{'comment': 'They didn’t mean states rights for Blue states though', 'created': '2024-11-08 17:35:35', 'submission_id': '1gmlq6j'}
{'comment': 'Proud of my state for being a leader that has a proven track record of taking on the Trump administration, and will continue that effort.', 'created': '2024-11-08 20:37:56', 'submission_id': '1gmlq6j'}
{'comment': 'Most red states are welfare states living off of federal money that comes from successful blue states like Minnesota and California.', 'created': '2024-11-08 20:08:55', 'submission_id': '1gmlq6j'}
{'comment': 'They don’t mean you. They never do.', 'created': '2024-11-08 18:52:17', 'submission_id': '1gmlq6j'}
{'comment': "State independence is on. Let's go!!", 'created': '2024-11-08 17:13:48', 'submission_id': '1gmlq6j'}
{'comment': "At this point maybe we should just team up with the Libertarians and just go all in on states rights and gut the federal government.\n\nDo we really think we'll be able to achieve anything at the national level? We've dealt with decades of gridlock. Even when we gain power there's so much obstruction that we can't really get enough done, and as soon as we lose power we go further backwards than we can go forward when we are in power.\n\nHow many decades do we need to wait to accomplish anything? With the supreme court will it ever happen? We can keep saying we'll get the job done next time, but 4 years is a long time for a shot on goal and unless things change drastically we'll be old or dead sitting around waiting to get enough power to do the things we want.\n\nMaybe we actually are just too divided to make the federal government work and we should accept that states should do their own thing. Blue states can enact the social programs we want and Red states can fuck themselves over.\n\nI have zero confidence that things like universal healthcare would be enacted federally in my lifetime, so being able to get it done better in blue states would be better than nothing. It's not like we need to have it at a federal scale for it to be successful. Sweden only has a population of 10 million. If they can accomplish great social programs at that scale, states can get it done themselves if they have more control over tax dollars. US basically becomes the EU. Shared currency, free trade, freedom of movement, but the rest is up to states.\n\nOf course I have zero trust that they would actually give up power for state rights so we'd have to make sure they follow through.", 'created': '2024-11-09 02:57:38', 'submission_id': '1gmlq6j'}
{'comment': 'Republicans love to shit on blue states meanwhile red states are little sugar babies for the revenue that is generated by blue states. Typically takers with entitlement.', 'created': '2024-11-08 19:19:05', 'submission_id': '1gmlq6j'}
{'comment': 'Wondering how that would actually work though. States pay the fed through grants, services, and various other things that they get from the federal government. They can\'t necessarily cut those off without a replacement. Plus, income tax is collected directly.\n\nEverything is so interconnected, there is no just, "stop giving them money" the way people suggest.', 'created': '2024-11-09 03:33:56', 'submission_id': '1gmlq6j'}
{'comment': 'Let’s see how they feel when CA, NY, IL, and PA have something to say about that. Just those 4 states make up almost 1/3rd of the US GDP.', 'created': '2024-11-08 18:40:34', 'submission_id': '1gmlq6j'}
{'comment': 'Right, we all know what they meant--- "Let\'s revive the Confederacy by State\'s Rights for Southern States---Blue states can fuck off."', 'created': '2024-11-08 17:47:36', 'submission_id': '1gmlq6j'}
{'comment': 'Multiple Trump supporting states voted in favor of protecting abortion access this election, and nationally it is favored by the majority. I doubt those states are going to take it well if the "states rights" federal government overrules their vote. Especially those voters that took the whole "abortion should be a states rights issue" thing seriously.', 'created': '2024-11-09 00:49:49', 'submission_id': '1gmlq6j'}
{'comment': 'I thought about what would happen if the citizens in those blue states decided to collectively give their federal taxes over to their state government', 'created': '2024-11-08 20:14:50', 'submission_id': '1gmlq6j'}
{'comment': "Let's not forget if you overlay which states haven't raised their minimum wages, it literally matches and aligns with the same fucking red states whose constituents are being fucked over by their party. The GOP and shit Republicans are literally keeping their citizens poor and on that state welfare.\n\n https://upload.wikimedia.org/wikipedia/commons/thumb/7/76/Map_of_US_minimum_wage_by_state.svg/800px-Map_of_US_minimum_wage_by_state.svg.png", 'created': '2024-11-08 23:43:26', 'submission_id': '1gmlq6j'}
{'comment': 'Ya, I know feds get paid first. But it starts at payroll.', 'created': '2024-11-09 03:57:02', 'submission_id': '1gmlq6j'}
{'comment': 'PA? So glad they helped to vote Don the Con back in. They don’t deserve to be on your list.', 'created': '2024-11-08 18:49:55', 'submission_id': '1gmlq6j'}
{'comment': 'I agree.', 'created': '2024-11-08 19:53:49', 'submission_id': '1gmlq6j'}
{'comment': 'Please note the link provided has no paywall.\n\n>In the end, a majority of American voters chose Trump because they wanted what he was selling: a nonstop reality show of rage and resentment.... Trump voters never cared about policies, and he rarely gave them any. (Choosing to be eaten by a shark rather than electrocuted might be a personal preference, but it’s not a policy.)\n>\n>Last night, a gaggle of millionaires and billionaires grinned and applauded for Trump. They were part of an alliance with the very people another Trump term would hurt—the young, minorities, and working families among them.', 'created': '2024-11-08 16:54:18', 'submission_id': '1gmlq9l'}
{'comment': 'There was a contingent of voters who did not even know that Biden dropped out. So many didn’t even pay attention to what they voted for.', 'created': '2024-11-08 17:27:47', 'submission_id': '1gmlq9l'}
{'comment': 'A bunch of boys got in trouble today at my local high school for taunting girls with "your body, MY choice."\n\nThis behavior goes beyond normal teenage meanness.', 'created': '2024-11-08 18:18:35', 'submission_id': '1gmlq9l'}
{'comment': "My 75 year old sister is a Trump supporter and lives off her meager SS. She's still celebrating Trump's win. She has no idea what tariffs are. She totally bought into his BS.\n\nShe's going to be very upset when she finds out what's going to happen.", 'created': '2024-11-08 20:06:26', 'submission_id': '1gmlq9l'}
{'comment': 'Donald Trump literally hates his voters. He thinks they are beneath him. He doesn’t have to pretend to tolerate them anymore', 'created': '2024-11-08 19:17:11', 'submission_id': '1gmlq9l'}
{'comment': 'By the time they realize, it won’t matter, since a dictator doesn’t need the support of the electorate.', 'created': '2024-11-08 19:10:53', 'submission_id': '1gmlq9l'}
{'comment': "I hope things get a lot worse for the economy, and we know this piece of shit's tariffs will harm us. I hope it does as a a lesson to all the fucking idiots out there who think a twice impeached convicted felon who had such a disastrous first term should be president again. He does not care about anyone other than himself.", 'created': '2024-11-08 19:41:46', 'submission_id': '1gmlq9l'}
{'comment': 'just walked thru menards, half that store will go up in price 30% next year..', 'created': '2024-11-08 19:17:58', 'submission_id': '1gmlq9l'}
{'comment': 'hope they feel pain, so much pain, the most pain ever!', 'created': '2024-11-08 17:36:09', 'submission_id': '1gmlq9l'}
{'comment': "Those who voted for him are so selfish in that way. They know Trump will hurt people, but it's okay because they don't think he will hurt them. Well, they are about to find out he doesn't give two shits about them, either.", 'created': '2024-11-08 17:43:51', 'submission_id': '1gmlq9l'}
{'comment': '>Americans have done this to themselves during a time of peace, prosperity, and astonishingly high living standards. An affluent society that thinks it is living in a hellscape is ripe for gulling by dictators who are willing to play along with such delusions.\n>\n**The bright spot in all this is that Trump and his coterie must now govern**. The last time around, Trump was surrounded by a small group of moderately competent people, and these adults basically put baby bumpers and pool noodles on all the sharp edges of government. This time, Trump will rule with greater power but fewer excuses, and he—and his voters—will have to own the messes and outrages he is already planning to create. \n\nSorry, but there is no bright spot. **That\'s** whistling in the graveyard. \n\nIf we were talking about a normal politician, the thought of riding out the storm for the next four years might make sense and has been the general response for decades. That won\'t apply here. The damage that Trump and acolytes will do (especially if he winds up with a Republican House to couple with the GOP Senate) will take a generation to undo, if it can be undone. It\'s possible Trump, the first truly fucking archcriminal I\'ve known about outside of a comic book, could wind up having put **SIX** justices on the Supreme Court. That won\'t be undone anytime soon. A unified government will give him the ability to enact just about every aspect that the American Taliban who wrote "Project 2025" wishes for. That unified government will also provide another huge payday for his billionaire buddies through tax cuts that will net them billions while the young people and middle class who voted for him get fucked with a spiked dildo. \n\nI almost fell out of my chair this morning when I heard Bob Woodward say the military won\'t do Trump\'s bidding. He\'s talking about them disobeying their commander-in-chief. If I tell my boss "No", I might get fired; these guys saying "No" sends them to Leavenworth. The Supreme Court has said Trump can instigate Justice Department investigations against his political enemies, or complete strangers. Whether you\'re Liz Cheney, or Lita from up the street marching against the White House in a pussy hat, fighting criminal charges ain\'t fun and it ain\'t cheap. \n\nThis country just took a massive shit and stepped in it. This country knowingly voted for authoritarianism after being told it was on the menu. Some talking head this morning posited most people in this country don\'t know what "fascism" means, so Trump being one didn\'t matter to them. I can buy that. I said months ago we didn\'t want to be in the realm of "fuck around and find out", but here we are. I don\'t say this as a pessimist; I don\'t say this as a defeatist; I say this as an experienced pragmatist who has a working knowledge of history. Anyone who ever believed we\'re somehow shielded from the dangers that can be wrought by a dictator because we\'re made different is about to get one hell of a wake up call.', 'created': '2024-11-08 22:28:20', 'submission_id': '1gmlq9l'}
{'comment': 'First they came for the socialists, and I did not speak out—\n\nBecause I was not a socialist.\n\n\n\nThen they came for the trade unionists, and I did not speak out—\n\nBecause I was not a trade unionist.\n\n\n\nThen they came for the Jews, and I did not speak out—\n\nBecause I was not a Jew.\n\n\n\nThen they came for me—and there was no one left to speak for me.\n\n\n\nhttps://en.wikipedia.org/wiki/First\\_they\\_came\\_...', 'created': '2024-11-08 18:59:47', 'submission_id': '1gmlq9l'}
{'comment': 'Now we just hope they get in their own way... For all of our sakes.', 'created': '2024-11-08 17:40:28', 'submission_id': '1gmlq9l'}
{'comment': 'Good, let them and the bed roters burn unfortunately lot of good people who tried to stop this are going to get hurt too', 'created': '2024-11-08 17:38:08', 'submission_id': '1gmlq9l'}
{'comment': 'Yes, and then they will either deny that it is happening or loudly b&m about, "Why did no one tell us he was a fascist monster?" as those of us who have been screaming into the void, they call their minds reach for heavy, blunt objects. 🤦\u200d♂️', 'created': '2024-11-08 19:12:33', 'submission_id': '1gmlq9l'}
{'comment': 'I sold all my stock holdings. Taking my gains and holding for the inevitable crash…way too high for tariffs and Trump 2.0 government shit show. The whole world will be on its knees in 2025. Economic collapse is inevitable. Just wait until you see his cabinet members and who leads government departments.', 'created': '2024-11-08 23:43:24', 'submission_id': '1gmlq9l'}
{'comment': '“They will worship the one of wears the mark of the beast on his head (MAGA HAT)”\n\nThe military can throw me in prison or kill me before I worship the antichrist.', 'created': '2024-11-09 02:43:04', 'submission_id': '1gmlq9l'}
{'comment': 'Fuck around and find out', 'created': '2024-11-08 17:38:56', 'submission_id': '1gmlq9l'}
{'comment': '', 'created': '2024-11-08 17:28:40', 'submission_id': '1gmlq9l'}
{'comment': 'https://www.politico.com/magazine/story/2017/12/31/trump-white-working-class-history-216200/', 'created': '2024-11-08 19:38:39', 'submission_id': '1gmlq9l'}
{'comment': 'The government has the weather machine right? So if there is any hurricane in the next four years, they should expect the government to shut it down, right?', 'created': '2024-11-08 22:37:31', 'submission_id': '1gmlq9l'}
{'comment': 'I can’t wait to see all of them get fucked.', 'created': '2024-11-09 02:40:25', 'submission_id': '1gmlq9l'}
{'comment': "Well, in their eyes, Trump will save them. He'll lower their groceries, he'll get their jobs back, and he'll deport all the illegals, and meanwhile, in their eyes, none of it will affect them. \nUnfortunately, we here all know what that really means, and it's nothing good. We'll all suffer because of the senseless, ignorant stupidity.", 'created': '2024-11-09 18:09:13', 'submission_id': '1gmlq9l'}
{'comment': 'When the Brown Shirts come, put on your slides.', 'created': '2024-11-08 18:23:44', 'submission_id': '1gmlq9l'}
{'comment': "At some point it'll finally dawn on the MAGAts that they made a bad decision. That day will come when the leopard takes the first bite of MAGAt flesh. It's already beginning to happen. We'll see where it goes.", 'created': '2024-11-08 23:22:56', 'submission_id': '1gmlq9l'}
{'comment': 'crime (harassments and threats) is already up, inflation will skyrocket next year, and economy will crash into a recession. well done magats', 'created': '2024-11-09 05:03:27', 'submission_id': '1gmlq9l'}
{'comment': 'I can’t wait for this country to go down in flames', 'created': '2024-11-09 16:59:00', 'submission_id': '1gmlq9l'}
{'comment': 'That’s one thing we can laugh our asses off about. I can’t wait for them to feel the shock and awe of his authoritarian policies. I can’t wait for them to pay tariffs and lose their first amendment rights. Lose their jobs and pensions. Social security. Medical care. I can’t wait for them to pay for k-12 education…Eventually he’ll come for their guns too…Too bad they screwed us all in the process.', 'created': '2024-11-09 17:16:51', 'submission_id': '1gmlq9l'}
{'comment': 'Yup. And I’ll be reminding them every… single… time….', 'created': '2024-11-08 22:37:04', 'submission_id': '1gmlq9l'}
{'comment': 'There\'s a lot of "After Hitler, us!" vibes here and elsewhere.\n\nThat\'s **NOT** guaranteed!', 'created': '2024-11-09 01:11:26', 'submission_id': '1gmlq9l'}
{'comment': 'This same article again eh?', 'created': '2024-11-08 17:12:23', 'submission_id': '1gmlq9l'}
{'comment': 'Thank you! Did you have to pay to be able to let us access?', 'created': '2024-11-09 03:35:52', 'submission_id': '1gmlq9l'}
{'comment': "I know MAGA wanted the reality show, I'm surprised his other voters did.", 'created': '2024-11-09 18:41:06', 'submission_id': '1gmlq9l'}
{'comment': None, 'created': '2024-11-08 19:45:21', 'submission_id': '1gmlq9l'}
{'comment': "Seriously so. I was shopping for political pins on Amazon after Kamala started running, and some of the Top 100 pins on the list (which did fluctuate daily), showed Biden/Harris for the longest time. Like, people were still buying Biden/Harris pins when he had already dropped out. That boggled the mind. If they were buying Biden/Harris pins, you'd think they were politically active and have more awareness.", 'created': '2024-11-08 17:46:10', 'submission_id': '1gmlq9l'}
{'comment': 'That seems so far fetched. You had to live under a rock for years to not know. How privileged is your life that you didn’t know any of that and had no need to ever hear news?', 'created': '2024-11-08 22:04:43', 'submission_id': '1gmlq9l'}
{'comment': 'Which they saw from Andrew Tates post.\n\nLook, turn the internet off. Turn this whole MF off and cut the cables. Humans were not designed for this level of connection and it’s ruined entire generations.\n\nOn the other hand, let me hear someone say that to my daughter and I will move mountains.', 'created': '2024-11-08 19:40:32', 'submission_id': '1gmlq9l'}
{'comment': None, 'created': '2024-11-08 20:11:51', 'submission_id': '1gmlq9l'}
{'comment': 'And yet we are chided for “pushing” them to extremism and “losing” young men.', 'created': '2024-11-09 04:15:00', 'submission_id': '1gmlq9l'}
{'comment': 'Toss them in a cell with the biggest, scariest inmate that’s available & have them repeat that line to those boys. If that doesn’t scare them into stopping rape threats I don’t know what will.', 'created': '2024-11-09 03:49:06', 'submission_id': '1gmlq9l'}
{'comment': "Lol these motherfickers are never getting laid. That's just the truth.", 'created': '2024-11-10 03:44:18', 'submission_id': '1gmlq9l'}
{'comment': 'Might want to let her know that in anticipation of trump the Republicans in Congress are blocking a bill to expand social security. So the leopard might be close to her face.\n\nhttps://preview.redd.it/9iwt4urm1rzd1.png?width=1080&format=pjpg&auto=webp&s=320fdb279cd4d523080afc18b391a42d6cc57a47', 'created': '2024-11-08 22:54:38', 'submission_id': '1gmlq9l'}
{'comment': "Is your 75 year old sister my 55 year old mother? Because it sure sounds like it. At first, it was cathartic to find other people suffering from the loss of their family members to MAGA. It meant that someone somewhere understood my pain. But eventually that catharsis turned to fear. Because I realized that I wasn't an aberration--I was the norm. These people are everywhere, and the destruction they are causing is profound. They are a machine that nobody can turn off. Not even them, should they decide to try.", 'created': '2024-11-08 22:55:36', 'submission_id': '1gmlq9l'}
{'comment': 'It’s kind of funny that his policies are going to hurt his supporters the most. They all have crab mentality where they don’t want anyone else to have something if they can’t get it.', 'created': '2024-11-09 03:34:08', 'submission_id': '1gmlq9l'}
{'comment': 'donnie is raising the average membership to mar-a-lago to +1M this year. Think MAGA have a chance to be welcomed by donnie?', 'created': '2024-11-08 21:54:32', 'submission_id': '1gmlq9l'}
{'comment': "Agreed. DT is the worst type of politician. He's the type that thinks his voters are all expendable. Once he's done with them come the day after the election, he eventually casts them aside like a pair of dirty laundry and just lets them get more disgustingly smelly. \n\nIt is only a matter of time before the voters that voted for DT realize just how much they were stabbed in the back and how deep the metaphorical knife is in their spine and will abandon him out of spite or impatience.", 'created': '2024-11-09 04:11:32', 'submission_id': '1gmlq9l'}
{'comment': "Short term the economy will do well, it already is, and the Fed just announced another rate cut. But when things get bad, they'll just blame the Democrats.", 'created': '2024-11-09 19:33:22', 'submission_id': '1gmlq9l'}
{'comment': 'I’ve read stories of retailers, raising them sooner rather than waiting', 'created': '2024-11-08 23:15:56', 'submission_id': '1gmlq9l'}
{'comment': 'Health insurance, gone. Expanded tax child credit, gone. SNAP and benefits, gone. And it’ll disproportionately affect poor Trump voters. But at least they OwNeD tHe LiBs!', 'created': '2024-11-08 20:01:22', 'submission_id': '1gmlq9l'}
{'comment': 'I’m willing to suffer a little so that they may suffer too….', 'created': '2024-11-08 19:14:10', 'submission_id': '1gmlq9l'}
{'comment': ">Those who voted for him are so selfish in that way. They know Trump will hurt people,\n\nThey don't all know him for what he is. \n\nTrump and his surrogates created a fictional reality of who he is, what he would do for voters, and who Harris is. \n\nSure. Some of them saw through that, and we're happy to support the fascist that he is. \n\nBut others were conned. This is what Trump does. This is how the fascists playbook works. Doesn't just radicalize people. Others it makes it difficult for them to pick out truth from fiction. Because there's so much misinformation.", 'created': '2024-11-08 18:45:15', 'submission_id': '1gmlq9l'}
{'comment': "What I've had to realize is that this isn't 2016. This isn't people voting for Trump because they didn't like Hillary Clinton. A vast swathe of this country knows what Trump is like, they've seen him in office, they've seen what he says and what he promises to do--and that's what they want. Our values and morals are not shared by the majority of the country.", 'created': '2024-11-09 05:15:45', 'submission_id': '1gmlq9l'}
{'comment': "They'll blame Democrats like how they blame Obama for Katrina\xa0", 'created': '2024-11-08 19:52:40', 'submission_id': '1gmlq9l'}
{'comment': "I sold my stocks that don't give high dividends.", 'created': '2024-11-09 05:20:06', 'submission_id': '1gmlq9l'}
{'comment': 'When the Brown Shirts come get your AR ready.', 'created': '2024-11-08 18:49:35', 'submission_id': '1gmlq9l'}
{'comment': 'When something bad happens to a MAGAt, the majority won’t blame Trump. The rest will blame the person with the problem as unworthy or unrighteous or whatever. Their cult leader can only be failed, and can never fail.', 'created': '2024-11-09 09:35:26', 'submission_id': '1gmlq9l'}
{'comment': 'I subscribe to *The Atlantic*.', 'created': '2024-11-09 03:37:13', 'submission_id': '1gmlq9l'}
{'comment': 'My cold, uneducated analysis from some time ago is that Americans in general have had a very comfortable life for a long time, and they are complacent with their civic duties (get properly informed about policies). The level of intellectual laziness is mind-blowing. The lack of curiosity leads to never learning anything new. This, to me, apart from different levels of racism, is what defines the average American.', 'created': '2024-11-09 03:42:08', 'submission_id': '1gmlq9l'}
{'comment': 'It’s not heartless. I’m tired of advocating for those who vote against themselves and all of us for that matter.', 'created': '2024-11-09 04:01:20', 'submission_id': '1gmlq9l'}
{'comment': 'Just like their sky Daddy will save them', 'created': '2024-11-08 19:49:51', 'submission_id': '1gmlq9l'}
{'comment': 'Musk literally had to overthrow democracy for the slight chance that people would buy his dumbass truck.', 'created': '2024-11-10 03:41:34', 'submission_id': '1gmlq9l'}
{'comment': '>Which they saw from Andrew Tates post.\n\n\nOr heard from their maga dads\n\n\nThe same gen x men who loved Andrew Dice Clay are raising boys now', 'created': '2024-11-08 19:50:48', 'submission_id': '1gmlq9l'}
{'comment': 'Nick Fuentes but similar type of low life male', 'created': '2024-11-08 21:55:00', 'submission_id': '1gmlq9l'}
{'comment': 'Hey if they keep doing this stuff in real life they might actually catch hands like they clearly all need to.', 'created': '2024-11-08 22:52:47', 'submission_id': '1gmlq9l'}
{'comment': 'Theres a lot of us that will stand with you.', 'created': '2024-11-09 19:01:26', 'submission_id': '1gmlq9l'}
{'comment': 'That slogan is intentionally rapey', 'created': '2024-11-10 03:47:09', 'submission_id': '1gmlq9l'}
{'comment': "I'm sorry about your mom. \n\nThese folks are in a cult. They're unaware of it, like any members of a cult. I don't know what can be done to make them aware.", 'created': '2024-11-08 23:01:30', 'submission_id': '1gmlq9l'}
{'comment': 'My whole immediate family…. :/', 'created': '2024-11-09 02:14:30', 'submission_id': '1gmlq9l'}
{'comment': 'I’ve lost two siblings and a whole slew of nieces/nephews/cousins etc. I have one sister and one brother that have a conscious and a brain. The rest are all hopeless. I told them they were in a cult and they cut me off which is perfectly fine. Dumbasses to say the least.', 'created': '2024-11-09 16:21:44', 'submission_id': '1gmlq9l'}
{'comment': 'As “the help”, yes.', 'created': '2024-11-10 03:41:51', 'submission_id': '1gmlq9l'}
{'comment': "Especially this was Trump's last election. He does not need them anymore.", 'created': '2024-11-09 05:23:18', 'submission_id': '1gmlq9l'}
{'comment': '>DT is the worst type of politician.\n\nDT is the worst type of human.\n\nFTFY!', 'created': '2024-11-09 16:59:14', 'submission_id': '1gmlq9l'}
{'comment': "Assuming that they're able to vote.", 'created': '2024-11-09 19:31:16', 'submission_id': '1gmlq9l'}
{'comment': "I just hope their precious eggs are 10 cents cheaper, that's the only protein they're going to be able to afford.", 'created': '2024-11-08 21:08:32', 'submission_id': '1gmlq9l'}
{'comment': 'Yesterday I saw a MAGA comment on Reddit trying to explain how Harris ran on only women’s rights and listed the child tax credit as a women’s only issue. I was just floored. I shouldn’t have been since the election showed how brainwashed people are, but it’s astounding how much propaganda has rotted these people’s brains', 'created': '2024-11-08 22:09:35', 'submission_id': '1gmlq9l'}
{'comment': 'Wont they get cut rate discounts on the number of Trump bibles that will be ordered throughout the US school systems to comfort them at night?', 'created': '2024-11-08 21:55:53', 'submission_id': '1gmlq9l'}
{'comment': '“I owned the libs” they say with a toothless smile!!🤣', 'created': '2024-11-08 23:48:49', 'submission_id': '1gmlq9l'}
{'comment': '>Trump and his surrogates created a fictional reality of who he is, what he would do for voters, and who Harris is.\n\nThis is a lie. Enough with trying make Trump supporters seem good. Trump didn\'t create a fictional reality. They did. His supporters want and agree with all his shit views and were all too happy to vote for someone like them. Hell if you volunteered at any level, the experience was largely the same. When confronted with facts and truth, Trump supporters didn\'t have answers and just yelled, raged, lied or changed the subject. If Trump supporters really were seduced into a "fictional reality" why do they constantly lie at polls saying they wouldn\'t vote for Trump? Why do the lie about abortion issues, saying it\'s a state\'s issue while actively pursuing nation wide bans? They weren\'t conned, they were all in on the plan and strategy from the beginning. That\'s how it with dealing with racists and sexists and authoritarians.\n\nThe truth is they weren\'t conned, they were active participants in authoritarianism that wanted their guy. It isn\'t at all surprising, you see this every day. Just look at all the sports teams with shit athletes who beat their wives, get in fights etc and teams throw millions at them and fans are all to willing to cheer for them, so long as their team can beat the other teams. That\'s it. People are willing to ignore someone\'s 90% shit qualities, as long as they can feel good in the moment.\n\nThe silver lining is though, if Trump does all the shit he says he will, the economy will drastically decline and mood will sour and these same people will probably swing back to Democrats faster than many expect. Democrats can very well stage a major come back in 2026.', 'created': '2024-11-08 21:18:20', 'submission_id': '1gmlq9l'}
{'comment': "Yeah, but make sure you have an undershirt and socks on. You can keep your shoes, but everyone else will be coming for them, so it's best to just have something cheap and slip on.", 'created': '2024-11-08 18:54:11', 'submission_id': '1gmlq9l'}
{'comment': '💯 agree', 'created': '2024-11-09 05:43:22', 'submission_id': '1gmlq9l'}
{'comment': 'As a misanthrope, I am an equal opportunity hater.\n\nBut I still have compassion and moral decency, so I tend to vote the way that helps the most people.\n\nI’m starting to run out of compassion.', 'created': '2024-11-10 03:50:11', 'submission_id': '1gmlq9l'}
{'comment': "Don't expect me to have any sympathy when he starts the mass deportations.", 'created': '2024-11-09 18:42:48', 'submission_id': '1gmlq9l'}
{'comment': 'The longest edging of mankind.', 'created': '2024-11-08 21:20:11', 'submission_id': '1gmlq9l'}
{'comment': 'One can only hope.', 'created': '2024-11-08 23:22:16', 'submission_id': '1gmlq9l'}
{'comment': 'I appreciate you. I think we collectively need to find a way to bring morality and manners. Then support each other, especially as we navigate the fallout with recent changes.', 'created': '2024-11-09 19:21:40', 'submission_id': '1gmlq9l'}
{'comment': "Yup, and they are all weak. A woman will have no problem man handling these 5'4 weebs.\n\nTrust me, never underestimate the strength, will, and numbers of women.", 'created': '2024-11-10 03:47:59', 'submission_id': '1gmlq9l'}
{'comment': 'The maga side of my family guzzles Fox News as much as they can.', 'created': '2024-11-09 16:23:16', 'submission_id': '1gmlq9l'}
{'comment': '> Enough with trying make Trump supporters seem good. \n\nAmen. The sense of denial remains unbelievable to me. Everyone who voted for this man knows what he is, and you couldn\'t do that without some degree of darkness in your heart. The vast majority of these folks just couldn\'t countenance a black lady as president. \n\n>If Trump supporters really were seduced into a "fictional reality" why do they constantly lie at polls saying they wouldn\'t vote for Trump? \n\nBecause the truth is unpalatable and unacceptable, and they\'re not compelled to tell it. \n\n>The silver lining is... \n\nIn the same way I was so fiercely hoping I was wrong about Harris\' electability, I hope I\'m wrong about this: there is no silver ling. The damage Trump and his minions will do will not be easily, if ever, undone. The presidency was already a powerful office. The Supreme Court decision multiplied that power to a level that should be frightening. Trump will have the chance to replace Thomas and Alito with much younger clones, maybe with Aileen Cannon and Matthew Kacsmaryk. He might even get to replace Sotomayor. They will be on the Court long after Trump is dead. \n\nIt\'s going to be rough for a long time to come.', 'created': '2024-11-08 22:46:58', 'submission_id': '1gmlq9l'}
{'comment': 'Best thing I ever did for myself was boxing and target shooting. Life changing sports. Boxing gave me confidence and guns are the great equalizer.', 'created': '2024-11-10 03:50:56', 'submission_id': '1gmlq9l'}
{'comment': 'I will never understand why it’s illegal for companies to false advertise their products. It’s OK for politicians to lie through their teeth to get the advantage', 'created': '2024-11-08 17:11:34', 'submission_id': '1gmlg06'}
{'comment': 'This is the answer. We are learning the true price of deprioritizing education, common sense, and the relevance of facts, and it’s much worse than we feared. It will get even worse before it gets better.', 'created': '2024-11-08 17:06:15', 'submission_id': '1gmlg06'}
{'comment': 'In Sweden (IIRC), they explicitly teach young and adolescent school children to learn how to identify misinformation. So basically, 4th graders in a Scandinavian country can better identify misinformation than an adult in the United States. Perfect.', 'created': '2024-11-08 17:09:35', 'submission_id': '1gmlg06'}
{'comment': 'I don’t understand how this is surprising to anyone who has studied history. Propaganda and misinformation has always been the number one tool of fascism.', 'created': '2024-11-08 17:16:10', 'submission_id': '1gmlg06'}
{'comment': 'An unethical party will always beat an ethical one. Everything we learned as kids about truth, hard work and decency are wrong in the American political system.', 'created': '2024-11-08 17:05:29', 'submission_id': '1gmlg06'}
{'comment': 'I can\'t upvote this hard enough. Years of planning and preparations went into this. The oligarchs have been working on this for years \n1. Underfunding all aspects of public education, K-16.\n2. Overtaking local school boards with right wing, fascist members.\n3. Demonizing LGBTQ and especially trans folks. Creating widespread fear and hatred where there was none, and stoking its growth.\n4. Snapping up most of the major media-CNN, Fox, Newsweek, and all the St Clair owned local media outlets. Twitter/X, Facebook, WA Post. These are now all propaganda outlets.\n5. Keeping wage growth stagnant also means fewer folks can afford a good education, see #1 above.\n\nWhat\'s next on the oligarchy platter? Privatizing all public utilities, education, and most government functions. Need police? Pay a fee. Need fire service? Pay a fee. Need to drive on that road? That\'ll be $2, sir. Need electricity? Here are your for-profit options. Water /sewer service? "For premium, super clean water, the rate is $120/gallon. For less clean, but somewhat healthy water, that\'ll be $50/gallon.".....etc. \n\nWelcome to our new dystopia.', 'created': '2024-11-08 17:46:52', 'submission_id': '1gmlg06'}
{'comment': 'This is why I\'ve answered the question "how did this happen" with the answer of how our education system was destroyed 20 years ago (under Republicans) and our news media is owned and operated by 4 corporations.', 'created': '2024-11-08 17:04:46', 'submission_id': '1gmlg06'}
{'comment': 'Time for a democratic populist propaganda apparatus that tells people the truth, but in the same way fear spins people into a frenzy on the right.\n\n“Things are expensive.. here’s a simple graph that shows what strawberries will cost if we did a mass deportation”\n\nSimple as that. No “right or wrong” just simple targeted populist points that hit people where they care. \n\n“Worried about an immigrant rapist? 130 illegal immigrants were charged with sexual assault last year. 300 Republican officials were charged with sexual assault last year. They’re distracting you so they can molest your kids”\n\nAll based on real data. Time to play dirty', 'created': '2024-11-08 17:20:56', 'submission_id': '1gmlg06'}
{'comment': 'Ding ding ding! \n\nThis is the correct response. Thank you for sharing because too many people are just skipping this part and talking about things as if everyone shares the same reality. \n\nIt’s why the department of education is on the chopping block. Less education and critical thinking means more people to manipulate and exploit.', 'created': '2024-11-08 17:35:54', 'submission_id': '1gmlg06'}
{'comment': 'FINALLLLY!!! Someone is saying it out loud. \n\nWe’re not gonna get anywhere until the conservative media machine has been countered and dismantled once and for all; and those that listen to it have been deprogrammed. \n\nIf the party has a priority going forward, this should be a top one!', 'created': '2024-11-08 17:29:55', 'submission_id': '1gmlg06'}
{'comment': 'I seriously don’t doubt it. This has been brewing for the last decade and we’re finally seeing the consequences of it. Fear mongering and misinformation along with good old sexism and racism won this election cycle.', 'created': '2024-11-08 16:45:52', 'submission_id': '1gmlg06'}
{'comment': "Yep. All y'all still trying to lay blame on somebody, you're stuck in the stages of grief. \n\nIt is time to accept that the Republicans weaponized rhetoric using the fascist playbook. And the 2024 election was just too late to stop it through an election. The cancer is too widespread.\n\nFor that matter, had people not voted against Trump because of wanting change for how he handled COVID, he probably would have won in 2020. \n\nThe main issue is that our constitution and system of laws does not provide any protection against propaganda and lies like this. \n\nHow do we get out of this? It has to get bad enough that a lot of the people who were conned wake up. And we have to hope that Republicans haven't fixed the elections too much.", 'created': '2024-11-08 17:47:12', 'submission_id': '1gmlg06'}
{'comment': "Last night my wife and I were talking about this same issue. They've inundated every social media platform, TV, whatsapp with misinformation and it clearly worked.", 'created': '2024-11-08 17:16:54', 'submission_id': '1gmlg06'}
{'comment': 'Yes we lost because we expected the American people to be intelligent enough to see through the obvious bullshit.\n\nWe were wrong. The problem is I am getting less and less interested in caring about fixing it.', 'created': '2024-11-08 17:19:40', 'submission_id': '1gmlg06'}
{'comment': "Absolutely.\n\nI don't have much to say at this point. I'm just tired and depressed and done with our country but I am PISSED OFF at everyone raging at Democrats and Harris especially now. Fuck off Bernie Sanders and all the pundits for saying she didn't do this or that or Biden didn't do this or that or the Party didn't do this or that. FUCK ALL THE WAY OFF.\n\nThe voters chose Trump. This is all on the voters.\n\nThis is what the country wants.\n\nYou want to blame someone. Blame the fucking voters who chose racism, hate, violence against women, children and minorities. Because that's who it falls upon.\n\nTrump literally stood on stage and pretended to suck a microphone like a cock and he won the god damn popular vote. THAT is what this country chose. Harris ran a great campaign but the voters chose THAT.\n\nThey chose putting people in camps and mass deportations. They chose televised executions of politicians. That's what nearly 50 percent of the voting public wants.\n\nNo Bernie Sanders, the blame doesn't fall on Kamala Harris. It falls directly on the voting public who embraced the hatred and the racism that Donald Trump and the Republican Party spoon fed them. This is who we are as a country. We aren't better than this. We ARE this and it's time to accept it.\n\nHarris, like Hillary Clinton before her, begged and pleaded with people to listen and not enough did. So did plenty of us. So now our country will suffer as it's meant to suffer. Fascism won just like it was meant to win because this is what people wanted. If you want to scream at Harris, Biden and the Democratic Party knock yourself out. Just realize it's pointless because it's the person sitting next to you that's likely to blame.\n\nI live in a county where the vast majority of people voted for Trump. I'm literally surrounded by the enemy. Unlike Bernie Sanders, I know who's really to blame.", 'created': '2024-11-08 17:56:49', 'submission_id': '1gmlg06'}
{'comment': 'Facts mean less than blatant lies...and there is no counter measure to this other than "if you can\'t beat them join them". But what kind of an option is that? Kinda a hopeless situation.', 'created': '2024-11-08 16:53:00', 'submission_id': '1gmlg06'}
{'comment': 'It’s “feel facts” and “truthiness”', 'created': '2024-11-08 17:15:17', 'submission_id': '1gmlg06'}
{'comment': 'a couple of billionaires bought this election. almost every commercial here in MI was a PAC commercial full of nothing but flat out lies. it was nonstop. people are stupid and fell for it. truth in advertising is dead.', 'created': '2024-11-08 17:04:33', 'submission_id': '1gmlg06'}
{'comment': 'For anyone needing more convincing, have a gander at the Spotify podcast charts. On most days Pod Save America is about as popular as Candace Owens (smh).\n\nhttps://podcastcharts.byspotify.com/\n\nI think this is exacerbated by the loneliness crisis and isolation, parasocial relationships with these grifters, and we need to start talking to those who haven\'t fallen down the rabbit hole first to prevent the spread of fascism.\n\nFDR included "Freedom from Fear" in his four freedoms when Fascism was rampant, we need to start there.', 'created': '2024-11-08 17:36:22', 'submission_id': '1gmlg06'}
{'comment': 'Well oiled AND well funded. The GOP has close to $2 billion in SuperPAC money at their disposal.', 'created': '2024-11-08 17:17:31', 'submission_id': '1gmlg06'}
{'comment': 'Dems have to then play the GOP game. Economy goes south in \'26-28 say "we will fix it"', 'created': '2024-11-08 17:35:02', 'submission_id': '1gmlg06'}
{'comment': 'Dems need to build an alternative media system that captures new voters so that they don’t fall down this fascistic and misogynistic rabbit hole.', 'created': '2024-11-08 17:34:17', 'submission_id': '1gmlg06'}
{'comment': 'DISINFORMATION!!! Stop calling it all misinformation. Sure theres some of that but disinformation is deliberate.', 'created': '2024-11-08 17:50:08', 'submission_id': '1gmlg06'}
{'comment': 'If you are going to go down this road, one could just question the validity of this data, right or wrong.\n\nThere’s more money and easier grifting to the MAGAs which is why there’s more right wing podcasts, websites and such with very loyal / cult like followings. This hasn’t been the case really for the left so when there’s $ to be had and that’s the biggest motivator, they cater to the right. They can lie, twist facts and accuse with little to no recourse and you know those listeners and followers are voting.\n\nOur side…meh…Harris doesn’t do it for me, so I’ll just not vote - 15 - 20M less than last time.\n\nPeople are going to actually have to feel and witness pain and be absolutely sure that it’s because of who is running the show the next 2-4 years (and maybe much farther beyond) to blame Trump and congress, SCOTUS to switch back to the Dems, who need to get a unified position well before the 11th hour of the mid-terms.\n\nI really hope Harris can be a part of that change and we haven’t seen the last of her. She did a fantastic job under very, very difficult circumstances. More unity, more time to campaign and become known and doing a better job of getting people to vote for issues that will motivate them to do so.', 'created': '2024-11-08 17:38:28', 'submission_id': '1gmlg06'}
{'comment': 'There is a way to fight this. We need to stop letting Republicans frame the issues, and we need to create a story about who we are, what we want, and what our path to get there is, so we can fit what we are doing within that framework.', 'created': '2024-11-08 17:32:54', 'submission_id': '1gmlg06'}
{'comment': 'Correct. Need a new message/verbiage. New simple and repeatable slogans. And then get on every platform and blast in on repeat. Thats it. \n\nLeft wing populism would sweep into power if messaged properly. I truly believe that. I live in Oregon now, but I was born and raised in Alabama. Bama is solid red now, but the average citizen still doesn’t like all the republicans in Montgomery. If you made it clear what the direct and immediate positive impacts would be, I think every single state is winnable.', 'created': '2024-11-08 17:42:11', 'submission_id': '1gmlg06'}
{'comment': 'Know what that means? Its time to start playing dirty like them.', 'created': '2024-11-08 19:04:46', 'submission_id': '1gmlg06'}
{'comment': 'How do we even begin dealing with this? It seems in the age of internet, there is no way to stop these messages from infiltrating everyone’s lives, and we cannot expect the majority of people to be able to cut through it with simply “a bit more education”. I’m honestly lost with what to do about it.', 'created': '2024-11-08 21:47:14', 'submission_id': '1gmlg06'}
{'comment': 'The misinformation is tearing up the democrats right now. \n\nThe self-blaming, and blaming those who DID NOT vote for the dictator instead of placing blame ON THE PEOPLE WHO VOTED FOR THE DICTATOR is a huge sign we have been gaslit to believe that we were the ones responsible.', 'created': '2024-11-08 17:51:44', 'submission_id': '1gmlg06'}
{'comment': 'And it’s mainstream media. YouTube, insta. Twitch, Tik tok. \n\nAnd it’s small stuff like a game streamer wearing a maga hat or saying stuff as an aside. It’s all very coordinated', 'created': '2024-11-08 17:55:01', 'submission_id': '1gmlg06'}
{'comment': "That's because we have integrity and self-respect.\n\nTrump's second presidency will show these people the hardest truth to learn. It will either hit them like a sledgehammer or they will submit before the hammer.", 'created': '2024-11-08 18:09:28', 'submission_id': '1gmlg06'}
{'comment': "Unfortunately, I think the only thing that will save us are people suffering. I don't like it, I hope it doesn't come to that, but it is what it is. \n\nI think the best we can do is to focus on protecting our own here.", 'created': '2024-11-08 18:21:13', 'submission_id': '1gmlg06'}
{'comment': 'The DNC needs a great chief marketing officer. Starting by using a tagline something like “The Party of Facts”. They’ve got a great story to tell, but no one tells it. If you tell people that the economy has been better under dem presidents than republicans over the past 50 years, by nearly every measure, most won’t believe it, but when you look at the data it’s definitely true. But for some reason the GoP has gotten away with claiming that they will be better for the economy. Then when you compare red states to blue the differences in the economy, crime, and more is pretty obvious.', 'created': '2024-11-08 19:16:52', 'submission_id': '1gmlg06'}
{'comment': 'I have a R buddy and this is 100% true. They go one better and refute any truth the Dems put out. It is a powerful disinformation machine.', 'created': '2024-11-08 20:24:33', 'submission_id': '1gmlg06'}
{'comment': 'We saw it during Covid', 'created': '2024-11-08 17:35:37', 'submission_id': '1gmlg06'}
{'comment': "I don't know if this is exactly news, or at least it shouldn't be. \n\nGullible and ignorant people vote GOP is part of their identity at this point. \n\nAnd just imagine how many more of those will exist once the Trump Administration abolishes the Department of Education.", 'created': '2024-11-08 17:41:55', 'submission_id': '1gmlg06'}
{'comment': 'It’s easier to fool someone than convince them that they are being fooled.', 'created': '2024-11-08 18:18:38', 'submission_id': '1gmlg06'}
{'comment': 'It’s as if they got lessons from the Russians. \n\nOh…', 'created': '2024-11-08 18:48:38', 'submission_id': '1gmlg06'}
{'comment': 'MAGA’s only watch one or two stations and neither of those channels ever show negative trump news. Nothing that Trump did worked to improve his numbers from 2020. In fact he lost a few million voters but dems somehow lost 15 million voters? Who are they and where did they go is the question.', 'created': '2024-11-08 18:57:53', 'submission_id': '1gmlg06'}
{'comment': "This is true but Democrat voters are not as organized. Many don't believe their vote counts and choose not to vote. This has to change. Once Democrats get organized and vote then change will happen.", 'created': '2024-11-08 19:41:04', 'submission_id': '1gmlg06'}
{'comment': "Welp, I'm gonna tell the trumpers the truth: Vance is gonna 25th Amendment their emperor and make Handmaids Johnson his VP and P25 is gonna ban their porn.", 'created': '2024-11-08 19:54:33', 'submission_id': '1gmlg06'}
{'comment': "Other than misinformation, I recall seeing a data about how some of Trump supporters doesn't have bachelors degree and/or higher. But, I can't confirm it yet since I only saw it on a short video so I'm taking it with a grain of salt. As for now, this is what I have [https://edition.cnn.com/2024/10/14/politics/the-biggest-predictor-of-how-someone-will-vote/index.html](https://edition.cnn.com/2024/10/14/politics/the-biggest-predictor-of-how-someone-will-vote/index.html)", 'created': '2024-11-08 17:50:07', 'submission_id': '1gmlg06'}
{'comment': 'Lots of dem and even centrist media require subscriptions to read their articles. This puts the truth out of reach to the poor uneducated whose votes count just as much as ours. It’s bullshit and the liberal and centrist media are just as much to blame as the propaganda machines.', 'created': '2024-11-08 18:35:59', 'submission_id': '1gmlg06'}
{'comment': 'The dumbing down of America is really sad.', 'created': '2024-11-08 19:53:55', 'submission_id': '1gmlg06'}
{'comment': "isn't this obvious to EVERYONE? when Elon bought out Twitter & invited the Donald back you absolutely knew the Dems were in real trouble. The avenues of messaging in 2024 are being shut for liberals & progressive voices. And with every single platform algorithm-driven the Left can't reach out & break through to the masses. You end up preaching to the choir.", 'created': '2024-11-08 20:15:25', 'submission_id': '1gmlg06'}
{'comment': "While I agree on the general issue of social media and misinformation being a conservative weapon at the moment, most of these particular talking points were hammered by traditional campaign messaging and advertising by the Republicans.\n\nThese were some of the biggest points that swung the election, and I think there was room for sharper countermessaging by Democratic candidates (all of them) and of course the media. We didn't need a propaganda machine for this, just needed to hide from these topics less and message the positive truth harder.", 'created': '2024-11-08 20:34:43', 'submission_id': '1gmlg06'}
{'comment': 'Yes!!! This is what I have been saying!! We need a progressive democratic app!! I’ve been sending messages to progressive leaders on Instagram that we need our own app run by progressives and more importantly black women, the most reliable democratic demographic.', 'created': '2024-11-08 20:38:48', 'submission_id': '1gmlg06'}
{'comment': 'Democrats have been complaining about how Republicans lie, which we have done, without results, for 8 plus years. Let us focus instead on what Democrats can do to stave off the worst stuff that could happen while Trump is president. Let’s also start working on a positive message to win back voters in 2026 and 2028.', 'created': '2024-11-08 21:06:33', 'submission_id': '1gmlg06'}
{'comment': "Don't forget. Studies show that republicans have on average a larger amigdola. For those who refuse to educate past grade school it's the part of the brain that handles the fear response and reactions. It's by design but that doesn't excuse them for betraying their countrymen.", 'created': '2024-11-08 21:23:08', 'submission_id': '1gmlg06'}
{'comment': 'It is misinformation and dumbing down information.\n\nWhat worked:\n\nTrump says "I\'ll fix it"\n\nWhat doesn\'t work:\n\nDemocrats say let us explain our multi-pronged approach to combatting inflation. That it actually worked is irrelevant.', 'created': '2024-11-08 21:23:39', 'submission_id': '1gmlg06'}
{'comment': 'I’m so tired of everyone making excuses, no influence would have changed this election. Trumps propaganda would have worked regardless which is sad and only reason the democrats lost is because they ran woman, and the fact everybody would sit out and not vote for her over Trump is still sad.', 'created': '2024-11-08 21:58:37', 'submission_id': '1gmlg06'}
{'comment': "Misinformation and apparently we white folks need our egos stroked badly otherwise we get butt hurt and vote in opposition even if we agree it's not in anyone's best interest to do so.", 'created': '2024-11-08 22:45:52', 'submission_id': '1gmlg06'}
{'comment': 'The internet is infested with red pilled and alt right content, it’s really no surprise Gen Z went so red this year. Sad but true.', 'created': '2024-11-08 23:14:18', 'submission_id': '1gmlg06'}
{'comment': 'So the United States of Russian Federation.', 'created': '2024-11-09 00:01:42', 'submission_id': '1gmlg06'}
{'comment': " I am sure they borrowed Russia's propaganda machine!", 'created': '2024-11-09 00:09:49', 'submission_id': '1gmlg06'}
{'comment': 'Yes, people laughed at Elon Musk for buying Twitter for $44 billion, but a lot of of us knew this was what he was buying it for; to turn it into a propaganda machine that would dwarf the effectiveness of Vladimir Putin’s propaganda machine. And he’s doing it out in the open.', 'created': '2024-11-09 05:10:50', 'submission_id': '1gmlg06'}
{'comment': 'Agreed. Below is what I wrote in another topic about the trouble of Democrat\'s getting their message out a couple weeks before the election. I don\'t want the "this country is doomed" part to be true, but it\'s hard to see how we dig out of the disinformation we find ourselves in:\n\nThe answer is simple: the right wing has taken over most of the media. Of course we all know about Fox and Sinclair, but there\'s so much more to it than that--look at the LA Times and Washington Post situations--right wing billionaires are buying up media outlets and putting their thumbs on the scale. Then you have Twitter, one of the largest social media platforms, owned by one of the biggest Trump shills on the planet, while Zuckerberg over on Facebook is now saying stopping disinformation is a bad thing.\n\nSo when the right wing controls the good majority of the media people consume, Democrats are going to have a very hard time promoting their policies. It may already be too late to turn things around--if Harris loses this election, this country is doomed. If she wins, then serious steps need to be taken to curb the influence of a small handful of very rich bad actors over information, or it\'s only a matter of time before this country is lost for good.', 'created': '2024-11-09 15:13:36', 'submission_id': '1gmlg06'}
{'comment': 'From sea to shining sea, someone finally gets it.\n\nNeither Bernie nor Pelosi get it. Misinformation won 2024. Nobody abandoned the working class. Trump never helped the working class. But the working class lacks class consciousness and drink in MAGA talking points everyday. \n\nProgressive policy does not matter when the media, from Fox to CNN to X, all gunned hard to help Trump. To misquote Bernie, the game was rigged.', 'created': '2024-11-11 02:57:59', 'submission_id': '1gmlg06'}
{'comment': 'What do people say when someone says the fbi statistics don’t include LA and NYC?', 'created': '2024-11-08 17:10:44', 'submission_id': '1gmlg06'}
{'comment': None, 'created': '2024-11-08 17:44:27', 'submission_id': '1gmlg06'}
{'comment': 'And every social media exec enabled them, for those engagement numbers that drove up their stock prices. Toxicity fattened their wallets!', 'created': '2024-11-08 17:47:33', 'submission_id': '1gmlg06'}
{'comment': "It really does. Even me, who isn't prone to their wild conspiracies, starts doubting everything I read online.", 'created': '2024-11-08 17:57:58', 'submission_id': '1gmlg06'}
{'comment': '[removed]', 'created': '2024-11-08 18:04:14', 'submission_id': '1gmlg06'}
{'comment': 'MAGAs R dum 😆 \n(Spelling for emphasis)', 'created': '2024-11-08 18:07:31', 'submission_id': '1gmlg06'}
{'comment': 'Which billionaires on the left can jump into the media game? Mark Cuban?', 'created': '2024-11-08 18:21:02', 'submission_id': '1gmlg06'}
{'comment': 'Or, liberals suck at communications and have been behind the curve since the 1990s. \n\nYou could make a similar chart about the big issues of the GWB era or of the Obama era.\n\nMost people will believe what they feel to be true over what is true every time. Remember “truthiness”? If they feel bad about their finances, they will believe the stock market is down. If you show them it is up, they will dismiss it’s relevance. \n\nTrump is a master at selling the sizzle, not the steak. How many people believe that he deported fewer people than Obama or Biden and that he built less wall than Obama? These facts aren’t helpful to either side and nobody wants to believe them. But it doesn’t change.', 'created': '2024-11-08 18:23:43', 'submission_id': '1gmlg06'}
{'comment': "It may be time to look at church. Christians are an essential driving force in the Republican propaganda machine. They're cloistered and safe but exert enormous political force.", 'created': '2024-11-08 18:42:29', 'submission_id': '1gmlg06'}
{'comment': "We can't have real debates until we can agree on the facts.", 'created': '2024-11-08 18:46:03', 'submission_id': '1gmlg06'}
{'comment': 'Is there still hope?', 'created': '2024-11-08 18:59:06', 'submission_id': '1gmlg06'}
{'comment': 'Elon is taking aim at Canada’s Trudeau now.', 'created': '2024-11-08 19:03:41', 'submission_id': '1gmlg06'}
{'comment': 'And now that Trump has control over all branches of government, complete immunity, and the richest people in the world on his side, his propagada machine will reach far, wide, and deeper than ever before.', 'created': '2024-11-08 19:37:54', 'submission_id': '1gmlg06'}
{'comment': 'Starlink, SC ruling. Clues of cheating', 'created': '2024-11-08 19:43:37', 'submission_id': '1gmlg06'}
{'comment': 'A kid I teach guitar in London UK said smth about COVID today out of the blue. I was like "Are you sure about that?" He immediately googled it and concluded he was wrong and was absolutely unbothered by it. Smart kid.', 'created': '2024-11-08 20:02:05', 'submission_id': '1gmlg06'}
{'comment': 'Whoever the next candidate is everyone should just smear them with false claims of they want a sex change or something.', 'created': '2024-11-08 20:32:30', 'submission_id': '1gmlg06'}
{'comment': 'We just need to fearmonger more I guess......lol', 'created': '2024-11-08 20:50:11', 'submission_id': '1gmlg06'}
{'comment': 'While I agree with the OP, every ad I saw for Harris was an ad asking for money. Not once did she talk about the great stock market, great unemployment, huge reduction in inflation. If you are going to let people lie about you and never say anything to refute it, the lie becomes the truth. An ad saying something like "over the last 4 years, the current administration has accomplished (insert goals) and we want to build on that and strengthen you and our country".', 'created': '2024-11-08 21:00:18', 'submission_id': '1gmlg06'}
{'comment': 'Truth. 100% Truth.', 'created': '2024-11-08 21:07:55', 'submission_id': '1gmlg06'}
{'comment': "This table is really confusing to read and it's pissing me off. Who made this infograph?", 'created': '2024-11-08 21:34:36', 'submission_id': '1gmlg06'}
{'comment': "Hmmm...maybe since what appears to be attention grabbing about misinformation is that it's often dramatic and appeals to some kind of strong emotion kinda like classic click bait, what if the DNC did something that takes advantage of the same cognitive software bugs but in a productive way?", 'created': '2024-11-08 21:41:22', 'submission_id': '1gmlg06'}
{'comment': 'If Democrats did the same things as Republicans, I would lose all hope.', 'created': '2024-11-08 22:22:49', 'submission_id': '1gmlg06'}
{'comment': 'These are specific questions though. It is very possible that democrats would answer some factual statements incorrectly more than republicans. (Thought I imagine its mostly republicans... but I have bias)', 'created': '2024-11-08 22:56:41', 'submission_id': '1gmlg06'}
{'comment': 'It’s always been their super power..that and spinning facts at will to meet their needs at that moment.', 'created': '2024-11-08 23:00:09', 'submission_id': '1gmlg06'}
{'comment': 'And to be fair, Biden did an *awful* job of selling his vision and his accomplishments, making it easy pickings for misinformation bots. Obama was out there nearly every day with a chart, a strategy to let America know he was on top of it, whatever it was. Even during the Great Depression, FDR was on the radio all the time, letting assuaging fears and letting people know that he was working hard to fix problems.\n\nWe keep hearing how hard working Biden was, we heard all these stats about crime and inflation and the “border crisis”, but not from Biden. We were hearing it from NPR and MSNBC, meaning “we” was just liberal voters. \n\nAnd then Kamala had to step up and try—way too late— to sell the achievements of the administration.', 'created': '2024-11-09 00:36:32', 'submission_id': '1gmlg06'}
{'comment': 'Belief in misinformation is a cult.', 'created': '2024-11-09 01:03:48', 'submission_id': '1gmlg06'}
{'comment': "They also have Elon Musk and Putin litetallu bomb threating polling precincts and Elon likely using his Twitter code writers manipulating voting with Russian help. \n\nYou cannot in any universe get me to believe that we registered more need voters than ever and lost 14 million voters from the rolls while Trump 4-5 days earlier was saying I don't need your votes it'll be ok. \n\nI do not believe the election results for president were called by midnight mst and we don't know the house yet without bullshit happening. Their propaganda machine keeps his people in line. It bought up Twitter CNN WaPo latimes NYT along with all the other OG Russian networks in Fox and oan. They've been working overtime spreading lies for 9 years. \n\nBut to lose 14 million votes makes zero common sense. And if it does, Im gonna go jump in a well. It does not add up and we just conceded and Garland let's him walk. FML", 'created': '2024-11-09 01:23:46', 'submission_id': '1gmlg06'}
{'comment': 'welcome to Russia', 'created': '2024-11-09 01:35:13', 'submission_id': '1gmlg06'}
{'comment': "Because billionaires own all means of mass communication and they all know they can't control the Dems in the same way as Cons. Maybe this Soros guy, that I've literally never heard about outside of Cons bitching, needs to pony up for some news stations, papers, social media sites, radio stations, and all the things the Cons have been buying up since 1987.", 'created': '2024-11-09 01:35:28', 'submission_id': '1gmlg06'}
{'comment': 'Conservative strategy is lie, lie, lie, lie, and lie.\n\nShameless compulsive lying, and rampant dishonesty are their core principles.\n\nThey’ve been lying incessantly in Canada as well.', 'created': '2024-11-09 02:40:40', 'submission_id': '1gmlg06'}
{'comment': 'Disinformation is an art the Russians do well. They are smart, will give them that.', 'created': '2024-11-09 03:08:09', 'submission_id': '1gmlg06'}
{'comment': '*"Republicans have a well oiled propaganda machine that spans all media platforms and we do not."*\n\nYep. Tough to fight disinformation, youre always on defense.', 'created': '2024-11-09 03:57:53', 'submission_id': '1gmlg06'}
{'comment': "That's why fact checking feels like censorship to Republicans. Their entire platform is built on lies.", 'created': '2024-11-09 04:28:22', 'submission_id': '1gmlg06'}
{'comment': 'So the next logical question is how do we fight against it? Bc I agree it’s propaganda, America has two different sets of basic facts, and I have no idea how to even START with how lost they are.', 'created': '2024-11-09 04:45:45', 'submission_id': '1gmlg06'}
{'comment': 'We need a billionaire- social media and a news network to counter the right wing propaganda machine. Where can we get those??', 'created': '2024-11-09 04:57:09', 'submission_id': '1gmlg06'}
{'comment': "There is an anemy within and it's Russia, sowing disinformation fake news all over the place. Millions of post spreading disinformation by the guy who's buddies with trump.", 'created': '2024-11-09 05:05:46', 'submission_id': '1gmlg06'}
{'comment': 'Dear fellow Dems: a stronger platform and message will drown out all misinformation. We need to look within and get better. \n\n1. Overturn citizens united \n2. Healthcare for all\n3. Tax billionaires\n4. Save environment', 'created': '2024-11-09 05:35:20', 'submission_id': '1gmlg06'}
{'comment': "The reason it works though is not completely clear. I think that they want the misinformation geared towards them to be true as it gives them a shadow plausible deniability. Not the kind that you have one foot in believing so it might as well be true but the kind you get from the people above that is in turn cemented by your friends and neighbors who will quite literally ruin your social standing if you don't agree to go just go with the grain. Just look at the evangelicals and other extreme religions, if you defy any of their rules you risk complete and utter ostracization, banishment. It's so much easier and safer to just go along with it. \n\nThat's what half of their conspiracies are about us believing conspiracies. Because they can so easily understand a world where lies and gullibility, permeate every layer of society. They've been living in that cage for a long time. So, long that they take part in it willingly and try to turn the same table on us. \n\nIt doesn't work on us though. At least not like that. If you tell us lie it will be outed in under an hour, guaranteed. We're cynical and questioning and enough of goody two shoes to need to find the facts first and then ask questions. That's why Air America didn't really work. We don't need a media apparatus to tell us how to think. My experience is that we like details and facts and will figure out what we think about that, though that is changing pretty rapidly with social media. I don't like to be bullied by my own group/allies for not understanding every aspect of every bit of political and social minutiae to prove my value.\n\nSo, yeah, their propaganda machine works well. They've purchased the majority of the airwaves that we weren't really using, they've bought billboard companies and ad space to propagate their message and the willingly gullible eat it up. That's the difference between us. They'll support their messaging even if they're outrageous lies because that's how they were brought up, not to question authority. We won't support messaging directed at us because authority smacks of lies and manipulation.\n\nOur mistake is our inability to support one another's agendas. Secondly, our inability to understand that not everyone can grow and adapt at the same pace and we punish those folks by coming down on them pretty ruthlessly. There's no room for error in our circles. Just look at how we're all pointing the fingers at each other right now for the loss. And who do they point at when they lose? Also us. Don't you get tired of it?", 'created': '2024-11-09 05:39:53', 'submission_id': '1gmlg06'}
{'comment': 'Dude. There comes a time when one has to decide if they want truth or if they want to be lied to. \nThese people are adults.\nThey don’t get to pretend they didn’t have the facts. They chose to believe the lies. They chose this path. Willingly and with great pride. \nPlease Stop trying to excuse something they aren’t sorry about.', 'created': '2024-11-09 08:33:21', 'submission_id': '1gmlg06'}
{'comment': 'Trump said that Europeans believe Americans are stupid, but in reality it’s him that knows it best himself. \n\nHe can tell them anything and they believe him, because… well because the majority IS stupid. \n\nThis time a majority actually voted for Trump. THIS. IS. FACT.', 'created': '2024-11-09 11:15:45', 'submission_id': '1gmlg06'}
{'comment': "Don't forget Russian and possibly Israeli misinformation campaign online, they all want Trump to win", 'created': '2024-11-09 14:13:30', 'submission_id': '1gmlg06'}
{'comment': 'Wouldn’t it be great if politicians got a penalty for every time they lied? The absolute blatant lies that come out of their mouths are just outrageous. Or if the weaved around a direct question.', 'created': '2024-11-09 16:18:35', 'submission_id': '1gmlg06'}
{'comment': 'It does not matter\nBiden was the best to destroy anything', 'created': '2024-11-09 17:07:16', 'submission_id': '1gmlg06'}
{'comment': 'But no one is forcing Republicans to watch the type of media that distributes propaganda. There are other options available to them. That is what I do not understand. Why do they let themselves get sucked into that garbage when most of it is patently false and easily discredited by other legitimate news sources?', 'created': '2024-11-09 17:24:18', 'submission_id': '1gmlg06'}
{'comment': 'I agree with this, but telling people economy is great when inflation over the last few years has hurt them. It’s not a political strategy.', 'created': '2024-11-09 20:01:47', 'submission_id': '1gmlg06'}
{'comment': 'I mean, good God we couldn’t evensupport air America', 'created': '2024-11-10 02:51:59', 'submission_id': '1gmlg06'}
{'comment': 'Guess we made the wrong call going with that whole tell the truth thing. Stupid us, who does that? Oh wait, we were thinking that people still fact check things. What were we thinking?', 'created': '2024-11-14 03:37:46', 'submission_id': '1gmlg06'}
{'comment': 'It’s true that lies are easier to sell. It’s true that facts are boring and lies give people hope. This is how humans work. But we do in fact share blame. How many times a day do we see a screenshot or a sound bite of something Trump said and immediately get reactionary, judgmental, and sometimes maybe blow it out of proportion. \n\nWe can’t change what gets put out there into the internet. But we can change how we talk about our policies and message. Instead of (unintentionally) sounding elite, often boring, and very likely judgmental- maybe we can begin to dumb down our messaging and actually speak to *people*. There’s a reason why people keep gravitating towards Trump, and it’s not all because of racism or sexism or anything else you want to say. It’s because he sounds like a human being and not a politician, and that makes people listen. Meanwhile we talk like politicians and wonder why people are tuning us out.', 'created': '2024-11-08 17:18:42', 'submission_id': '1gmlg06'}
{'comment': "Fox News won this election. Republicans didn't.", 'created': '2024-11-08 17:38:20', 'submission_id': '1gmlg06'}
{'comment': "Two things can be true at the same time.\n\nYes, the right has a massive amount on infrastructure that is decades old and highly effective at spreading misinformation. \n\nThe platform and policies that the DNC were pushing, trying to tell regular working people that the economy is actually great, when it's really not being felt by most people and trying not to raise the ire of the corporate and billionaire mega donors is also a problem, as Bernie pointes out. \n\nTrump should never have been allowed to run. But he did. \n\nPeople should never have chosen a convicted felon, rapist, and pathological liar who tried to overturn an election over literally anyone. But they did. \n\nThe right wins because they appeal to the lowest common denominator of fear. The DNC tries to appeal with reason, but when half the country operates at a 6th grade reading level or below, that strategy isn't going to work, especially if trying to tip toe around the very obvious issues concerning wealth inequality and the myriad issues that stem from that. \n\nIf the DNC only had the fucking spine to call out how low wages are relative to productivity and hammer home the point that the 1% keeps growing their wealth at the expense of the rest of us, then you've got a message that may have a chance against racism, misogyny, and all the other shit. \n\nPlease fucking wake up and realize that the DNC is ultimately working for money, and they're likely ineffective on purpose in order to get paid. \n\nPeople were predicting that the GOP would finally roll over and die with Trump's loss, but what we failed to see is that this may actually be the death of the DNC. As a lifelong Democrat voter, my faith in the leadership and direction that the party has been charting is at an all-time low. \n\nAnd again, this does not take away from all the shit being pulled on the right. And yes, there are some people in the party that obviously believe in equality, social justice, etc. But actions speak louder than words and what I've seen is that the DNC repeatedly refuses to adopt a platform that actually serves working people so that they can stay in the good graces of oligarchs and corporations.", 'created': '2024-11-08 17:41:32', 'submission_id': '1gmlg06'}
{'comment': 'Democrats are so cerebral, thinking education and logic are the answer and when that does not work they insult people by calling them deplorable and garbage which does not score any points.', 'created': '2024-11-08 20:02:05', 'submission_id': '1gmlg06'}
{'comment': 'No a populist is generally gonna beat a moderate. That’s just how it is. Maybe instead of continuing to run moderates we put up our own populist. One who can get the whole country to donate. Because donations wins elections. It’s almost like we had the perfect candidate back in 2016 but he is just too left and wants too many good things for the people so we don’t get him. Or anyone like him that could actually win.', 'created': '2024-11-08 17:53:45', 'submission_id': '1gmlg06'}
{'comment': 'Of course this plays a part but i will continue to bring attention to how Harris was appointed as the candidate. I believe there has to be accountability from the DNC and Biden that there was no primary, the DNC/Obama essentially pressured Biden out, and they anointed Harris as the candidate instead of creating a democratic style process to decide.\n\nGen X won this election for Trump, either by voting for him or not voting at all. These people have lived their entire lives not seeing an election like this with a candidate that was not determined through a primary. \n\n“Democracy” was the largest issue for people this cycle. Theres going to be a wide range of reasons why that is the number one issue for people based on what political alignment they are. I think the way in which Harris was appointed as candidate falls into this issue of “democracy” for people. \n\nThe history of the DNC trying to manipulate who their candidate is *cough cough* 2016/2020 Bernie rejection *cough cough* plays a huge part in this as well. The organization needs a wake up call but these people believe they can do no wrong. We have to force them to hear our voices at this point.', 'created': '2024-11-08 17:39:52', 'submission_id': '1gmlg06'}
{'comment': 'They should not be allowed to vote. Conservatives are inherently evil. Outlaw the grand old party. NOW!!!', 'created': '2024-11-08 17:40:31', 'submission_id': '1gmlg06'}
{'comment': 'Those consumer protections will likely be stripped soon under the guise of “free speech absolutism”', 'created': '2024-11-08 17:27:07', 'submission_id': '1gmlg06'}
{'comment': 'Our two college kids just gave their maga grandmother an earful over the election. The amount of misinformation that she was trying to pawn off as facts was mind boggling but not unexpected. Both kids brought receipts to the fight and she still wouldn’t back down. The lies have become so ingrained that I’m not sure we will ever breakthrough to most of them. Especially the older ones who just don’t want to bet they fell for the lies.', 'created': '2024-11-08 22:45:18', 'submission_id': '1gmlg06'}
{'comment': 'Because if we didn’t deserve to be lied to we’d stop supporting liars.', 'created': '2024-11-08 20:10:42', 'submission_id': '1gmlg06'}
{'comment': "Who would hold the politicians accountable and determine what is a lie? The courts? Good luck with that. I agree with you in spirit but I don't know how you could possibly enforce something like this.", 'created': '2024-11-08 18:45:59', 'submission_id': '1gmlg06'}
{'comment': "It's a license to lie. There's no consequences.", 'created': '2024-11-09 00:35:34', 'submission_id': '1gmlg06'}
{'comment': 'Don’t worry, they’ll fix that soon!', 'created': '2024-11-09 06:25:01', 'submission_id': '1gmlg06'}
{'comment': 'The same exact reason why they condemn homosexuality but crowd Grindr. They are hypocrites.', 'created': '2024-11-10 02:19:52', 'submission_id': '1gmlg06'}
{'comment': 'He’s brought the politicians lying game to a whole new level. I’m afraid there is no going back.', 'created': '2024-11-14 03:38:55', 'submission_id': '1gmlg06'}
{'comment': 'Have you been to a supermarket in last 10 years? "All Natural" with enough four syllable ingredients to make your eye run with ammonium from what is in the food chain.', 'created': '2024-11-08 17:36:45', 'submission_id': '1gmlg06'}
{'comment': 'Education is part of it, but we also need to organize as a group on how to counteract the way they’re spreading misinformation online. They have strategies that work well in taking over discussion spaces through attrition. They’ll upset, annoy and exhaust people until they leave an online space, and they’ll then take it over for themselves and use it to further their messaging goals. We’ve seen that with subs, but it happens on all these tools.\n\nDisrupting our ability to keep talking with each other about what really needs focus and priority has given them the advantages we saw play out. We really do need to create groups who understand these tactics and work together to figure out how to reclaim territory and public trust. Overall, this is a war for trust and attention. We can’t all just check out and put all the work on political parties and the few journalism sources we have left.', 'created': '2024-11-08 18:17:36', 'submission_id': '1gmlg06'}
{'comment': 'Social media only makes it worse too', 'created': '2024-11-08 17:19:48', 'submission_id': '1gmlg06'}
{'comment': 'Don\'t discount motivated reasoning. The causation may work the other way, believing what one needs to to justify one\'s choice.\n\nBut the basic premise is exactly right. There was no other candidate or strategy or messaging that would have changed the outcome. Given the reality of Trump and his agenda, that more than 15-20% of Americans supported him is a problem in the nation that cannot be fixed by a "better" campaign.', 'created': '2024-11-08 18:15:13', 'submission_id': '1gmlg06'}
{'comment': "Yep. It's exactly why education and libraries are under attack -- so they can drive this wedge even further.", 'created': '2024-11-08 17:31:12', 'submission_id': '1gmlg06'}
{'comment': "Agree. The main stream media, along with social media, are all part of it now. Sinclair, Fox, and now it seems the Washington Post, NY Times, Boston Globe, etc. We need a revolution to change all of this, but that won't happen until people start caring enough about truth and decency.", 'created': '2024-11-08 17:27:40', 'submission_id': '1gmlg06'}
{'comment': "we aren't learning those, we knew them all along. we knew it was why republicans were attacking those things. we knew this DECADES AGO.", 'created': '2024-11-08 18:18:43', 'submission_id': '1gmlg06'}
{'comment': "Don't forget critical thinking", 'created': '2024-11-08 18:14:30', 'submission_id': '1gmlg06'}
{'comment': "it's not about education at all. It's about money & donors & being strategic in swaying public opinion. You need dozen of George Soros's to buy-up & invest in various platforms & media outlets to curate opinion. Liberals hate this kind of targeted messaging because it's brainwashing, but the Far Right has adopted it wholesale. Dems are losing Gen Z with each passing month.", 'created': '2024-11-08 20:20:57', 'submission_id': '1gmlg06'}
{'comment': 'There was someone that just told me on Reddit earlier today that “democrats have been in control of educational institutions for the last forty years!” (This was a response to my comment that [half of the US reads at a 7-8th level.](https://www.wyliecomm.com/2021/08/whats-the-latest-u-s-literacy-rate/))\n\nI hope they were referring to colleges and universities. However over half the country doesn’t graduate college. College graduates *on average* read at a 12th grade level or better.\n\nHigh-school graduates read at around the 9th grade level.', 'created': '2024-11-09 01:21:52', 'submission_id': '1gmlg06'}
{'comment': 'The problem is, we don\'t have a Fox "News" on our side. We don\'t have a really good, ubiquitously watched, TV/streaming network (Fox is running on TVs 24/7 in stores / waiting rooms all over, hell, even on US military bases). We have a bunch of little pieces here and there, if you know where to look. We\'ve got MSNBC, which has some good shows and some meh shows. CNN stopped being very left-friendly a while ago. There are some good streamers on YouTube (Beau of the Fifth Column comes to mind), but, again, its drips and drabs here and there, rather than one service you can continually stream.\n\nRupert Murdoch put together a media empire with the express purpose of, well, getting to here, where a (near?) majority of people watch its lies and believe them, and elect Republicans to office (who then proceed to help the billionaires like Rupert Murdoch, rather than the people that elected them).\n\nIf we can\'t make Fox go away, we need a very strong answer to it. A well-funded media service that attracts viewers because it tells the truth, pulls no punches on the about the right (like the endless sanewashing of Trump\'s speeches or the recent pattern of incessantly saying Biden was too old, but then forgetting that talking point the moment Trump was the oldest candidate), and while we\'re at it, offers editorial content / opinions with left-based viewpoint. I want a channel that has Rachel Maddow, and Chris Hayes, and Mehdi Hasan, and John Oliver, all in one place, and constantly hammering on every outrageous and illegal thing the right does, not letting things slide, because there\'s going to be an awful lot of fresh material over the next four years, at least. And, yeah, not *just* the right, call out bad things on both sides, as they happen (it\'s just that the right side of the aisle does a lot more that is illegal / unethical) - call out corporations that do bad things, whatever their persuasion (take a look at the wide variety of topics that John Oliver goes after - there\'s plenty to call out all over the map).\n\nAP reports mostly the news, from a fairly neutral viewpoint, but there\'s scant analysis, and no biting commentary to keep it interesting and focus attention on the outrageous bits. MSNBC has the commentary, but overall its content can be a bit hit-or-miss.\n\nAt this point, I\'d happily pay $10/mo just to have access to a livestream of MSNBC (with its flaws, its better than nothing). What I won\'t do is pay $50-$70/mo for cable TV (or one of the streaming equivalents), to get 80 channels, where *one* of them is MSNBC - and that\'s the only way it\'s available right now (they have apps on all the platforms, but it only works if you log into your TV provider, which I don\'t have). I think there\'s a market out their for an... "antidote-to-Fox" network. Build a reputation for it being honest, factual, rigorously fact-checked, and *also* entertaining (and sometimes enraging because of the material being reported).', 'created': '2024-11-09 00:03:30', 'submission_id': '1gmlg06'}
{'comment': 'Democracy doesnt work. \n\nWe need Benevolent Android|Alien Dictator For Life *now* !', 'created': '2024-11-08 20:20:49', 'submission_id': '1gmlg06'}
{'comment': '4th graders in a Scandinavian country can probably also read, write and do math better than an adult in the United States, sadly.', 'created': '2024-11-08 17:28:41', 'submission_id': '1gmlg06'}
{'comment': 'I\'m sure teachers in the US would love to teach this, the issue becomes that anytime we point out misinformation, parents point out that we are "brainwashing children to believe what we believe" - as a teacher, I can\'t tell you the eggshells I walk on, every day.', 'created': '2024-11-08 17:41:31', 'submission_id': '1gmlg06'}
{'comment': 'The united states has an incentive to not teach kids critical thinking.\n\ndumb students grow up to be very easy to manipulate.', 'created': '2024-11-08 18:52:25', 'submission_id': '1gmlg06'}
{'comment': "Republicans make sure we don't do that here.", 'created': '2024-11-08 18:18:57', 'submission_id': '1gmlg06'}
{'comment': 'Would have been great if we started doing that a decade ago. Don’t know how it can ever happen now.', 'created': '2024-11-09 08:44:38', 'submission_id': '1gmlg06'}
{'comment': '“Those that fail to learn from history are doomed to repeat it” in action.', 'created': '2024-11-08 18:49:41', 'submission_id': '1gmlg06'}
{'comment': '1 & 2 are bad but it’s not an education issue. One of your doctors probably voted for Trump. And we’ll never beat them if we misidentify the cause of their success. \n\nYes, destroying education is bad but no that’s not why Trump won.', 'created': '2024-11-08 19:06:30', 'submission_id': '1gmlg06'}
{'comment': 'It’s the fascism playbook. What’s next? Just open your history book to approx 1934 Germany.', 'created': '2024-11-09 07:11:51', 'submission_id': '1gmlg06'}
{'comment': 'This was the long game for sure. Rich republican donors have been dumping hundreds of millions of dollars into forming a rightwing propaganda behemoth for decades and it has come to fruition.', 'created': '2024-11-08 18:47:42', 'submission_id': '1gmlg06'}
{'comment': "lmfao. Under republicans.\n\nBiden was one of the biggest pushers to re-segregate schools in the 90s. \n\nDon't blame this purely on Republicans. Blame this on white politicians.", 'created': '2024-11-08 23:12:40', 'submission_id': '1gmlg06'}
{'comment': 'Yeah especially that last comment. It hits all the good marks of populism that spurs people to vote for you. \n- kids being molested\n- secret cabal of Republicans distracting you from the truth\n- Mug shots of Republican rapists\n\nJust a splash of truth with outrage to protect the kids. Perfect 👌', 'created': '2024-11-08 19:04:32', 'submission_id': '1gmlg06'}
{'comment': "The truth is a losing strategy. The people demand lies and reject anyone who won't tell them the lies they want to hear.", 'created': '2024-11-08 19:07:42', 'submission_id': '1gmlg06'}
{'comment': 'Who the hell would pay for that? And do they even have the advanced precise drip propaganda that Russia, CA, etc use? \nEven if we could fight a thousand lies with a hard truth campaign, I don’t see who would operate it and fund it. \n*Maybe* 8 years ago we could have slowed it down with something like that; but I really don’t see how now.', 'created': '2024-11-09 08:58:08', 'submission_id': '1gmlg06'}
{'comment': 'Yeah. These comments about education are missing the mark. Everyone could have doctorates and if they consume a steady diet of NewsMax and other propaganda sources they’re going to end up a bit Trumpy. \n\nOnly once the propaganda machine is dismantled will people even be able to hear reason let alone believe it.', 'created': '2024-11-08 18:59:28', 'submission_id': '1gmlg06'}
{'comment': "unfortunately it will be Gen Alpha that wakes up & has the fire to create new media outlets to sway younger voices. We all know that we basically have to write off Gen Z. They're even more conservative than their parents, when they grew up in the Reagan/Bush era. The sad truth is that Bill & Melinda Gate's fortune would have been better spent on strategic acquisition of gaming & social media platforms than environment or philanthropy.", 'created': '2024-11-08 20:41:22', 'submission_id': '1gmlg06'}
{'comment': 'How on earth would they do it though? \nAnd how will they ever get the chance to? \nFighting misinformation online is terribly difficult. \nRestricting what’s allowed online could be helpful but is dangerous level of control. \nIt indeed should be the priority, but I don’t know the solution, and I seriously doubt Dem leadership has a clue on how to do it.', 'created': '2024-11-09 08:51:07', 'submission_id': '1gmlg06'}
{'comment': 'It’s too late to “deprogram” most of them. Better hope to do all that so newer generations don’t fall for it or are at least better prepared for it.', 'created': '2024-11-08 20:36:41', 'submission_id': '1gmlg06'}
{'comment': 'More than a decade. At least since Raygun.', 'created': '2024-11-08 17:02:05', 'submission_id': '1gmlg06'}
{'comment': 'Fox "News" has been injecting their slick brand of propaganda into homes, gyms, and waiting rooms since 1996.', 'created': '2024-11-09 12:48:15', 'submission_id': '1gmlg06'}
{'comment': "Trump is going to crash the economy badly enough that their propaganda isn't going to be able to convince people otherwise. Our best hope is just to capitalize on that.", 'created': '2024-11-08 18:56:42', 'submission_id': '1gmlg06'}
{'comment': 'To be honest, I think we’re permanently fucked. If it weren’t for SCOTUS, we could just hang back and let Trump and his cronies destroy everything (harming people we care about in the process) and then when things are really bad, pop up and be like, hey. We have an alternative! Why not give us a shot?\n\nBut that will fail because anything that new dem does in 8-10 years will fail under the newly constituted 6-3 or 7-2 conservative lunatic SCOTUS. And republicans will start up again, falsely claiming that new hypothetical dem didn’t accomplish anything. When the reason he didn’t accomplish anything was the holdover SCOTUS loons. \n\nWe are right and truly fucked for my lifetime.', 'created': '2024-11-08 23:08:22', 'submission_id': '1gmlg06'}
{'comment': 'Yup', 'created': '2024-11-08 23:03:04', 'submission_id': '1gmlg06'}
{'comment': "Yeah, there's no lie so obvious that half the country won't fall for it and tell you your in a cult for not believing it too.", 'created': '2024-11-08 19:06:22', 'submission_id': '1gmlg06'}
{'comment': 'I don’t know you internet stranger but ILY. I feel this all so hard rn. Americans ate this BS with their full chest and somehow Dems are responsible?? We tried but we can’t be everyone’s mommy.\n\nThere’s a real crisis imo around personal responsibility and a growing culture of victimhood that plays right into fascists’ hands.', 'created': '2024-11-08 19:38:13', 'submission_id': '1gmlg06'}
{'comment': ">You want to blame someone. Blame the fucking voters...\n\nI 100% agree, but the dems need to come up with some kind of strategy to combat this in the future. This wasn't exactly unexpected.", 'created': '2024-11-08 18:51:47', 'submission_id': '1gmlg06'}
{'comment': 'Done looking out for everyone, I’m protecting my own now.\n\nThey voted for hate they’ll get hate. Simple as', 'created': '2024-11-09 00:25:44', 'submission_id': '1gmlg06'}
{'comment': ">Fascism won just like it was meant to win because this is what people wanted.\n\nI don't think that's true. \n\nTo understand fascist rhetoric and how it works, is to understand that it definitely appeals to people who want to be fascists. But it's also a con that misleads other people to believe they're going to get something else.\n\nTrump and his surrogates created this fictional narrative about who he is, what he would do for people, and who Harris is. And so a lot of people chose to believe the parts of that narrative that they wanted to believe. Because they've lost the ability to differentiate between reality and fiction, in a political sense. \n\nThis is how powerful rhetoric is once weaponized. It is very unfortunate that our constitution and system of laws had no protection against it.", 'created': '2024-11-08 18:15:50', 'submission_id': '1gmlg06'}
{'comment': 'Well said.', 'created': '2024-11-08 23:01:09', 'submission_id': '1gmlg06'}
{'comment': "I live in a red state, but I also lived in a blue state.\n\nSo I fully understand your perspective, but as someone from Chicago let me tell you - I called the blue margins in cities dropping massively (check my post history).\n\nThe democrats have taken for granted their electorate for decades on the local level, so of course eventually they'll leave the national.", 'created': '2024-11-08 23:14:20', 'submission_id': '1gmlg06'}
{'comment': 'PA too. Especially the ads against Bob Casey. Just brutal lies.', 'created': '2024-11-09 01:59:31', 'submission_id': '1gmlg06'}
{'comment': 'Upvoted for mentioning loneliness. Having friends buffers you from misinformation because someone will correct it. If it\'s just "media source 1 said, media source 2 said" then you might just give up and not vote. I don\'t think it\'s our responsibility to teach those people but I think just checking in and seeing how they\'re doing could go a long way.', 'created': '2024-11-09 06:17:06', 'submission_id': '1gmlg06'}
{'comment': 'Did they let Lara trump need the pin code of that fund? "10% to the big guy?"', 'created': '2024-11-08 17:39:29', 'submission_id': '1gmlg06'}
{'comment': 'and nearly every tv and radio station', 'created': '2024-11-08 22:07:09', 'submission_id': '1gmlg06'}
{'comment': 'Yeah because obviously calling Trump a fascist and a threat to democracy didn’t resonate with the majority, unfortunately 😔', 'created': '2024-11-08 17:56:24', 'submission_id': '1gmlg06'}
{'comment': 'lies is the correct term', 'created': '2024-11-08 22:08:03', 'submission_id': '1gmlg06'}
{'comment': 'we did, it just got burried in BS so badly no one got to see it.', 'created': '2024-11-08 18:01:01', 'submission_id': '1gmlg06'}
{'comment': 'And we need to not do through TV adds but viral social media. And not social media in the sense that someone sat grandma in front of the phone to make a TikTok but a social media campaign that’s authentic and grass roots', 'created': '2024-11-08 19:08:37', 'submission_id': '1gmlg06'}
{'comment': "Begin with Television. Belated perhaps, but Fox News being America's biggest news source is horrifying.\xa0\n\nSocial media, from\xa0X to the Putin bots will be a harder target to fight, but the task will be easier if Fox is scared of being prosecuted for lying and disinformation.", 'created': '2024-11-11 03:08:15', 'submission_id': '1gmlg06'}
{'comment': "I don't think that's it. \n\nI think it's the stages of grief. Blaming others can be assigned to the stage of anger.\n\nHopefully, they'll be able to work through the fact that our democracy just died. That the Republicans weaponized rhetoric using the fascist playbook, and the cancer was just too widespread.", 'created': '2024-11-08 18:17:53', 'submission_id': '1gmlg06'}
{'comment': 'Look, we know the full blame is on those who voted. But we have to analyze what we control. In programming there is no such thing as user error. The user is part of the system, and if your code doesnt work for the user, then it doesnt work. Saying "they were stupid" doesnt help, because the user is the operational environment. You need to build a system knowing how the user will react and anticipate irrational user reactions.', 'created': '2024-11-08 18:56:14', 'submission_id': '1gmlg06'}
{'comment': 'So we need a liberal billionaire to invest in a huge social media machine to combat Twitter?', 'created': '2024-11-08 23:18:35', 'submission_id': '1gmlg06'}
{'comment': "Sadly, I think you're on to something here. People don't care that you have a good idea, they care that you can explain it simply enough to fit the information within their extremely limited attention spans. If your message grabs their attention and strikes a chord with their emotions, they are much more likely to pay attention and retain it.", 'created': '2024-11-08 21:42:56', 'submission_id': '1gmlg06'}
{'comment': 'lol. Thats the definition of a cult.', 'created': '2024-11-09 01:05:22', 'submission_id': '1gmlg06'}
{'comment': 'Yes 🎯 TRUTH. In 2016, let’s say he was an “unknown” politician but a familiar celebrity that they recognized due to the TV show. In 2024 there could be no doubt that he is the sleaziest criminal that has ever run for office. So Americans chose this.', 'created': '2024-11-08 17:52:20', 'submission_id': '1gmlg06'}
{'comment': 'Hi TimboCA, it looks like your comment to /r/democrats was removed because you used either a link shortener or link redirect. Due to issues with trolls, spam and malware we do not allow shortened links on this subreddit.\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-08 18:04:15', 'submission_id': '1gmlg06'}
{'comment': "Average person:\n\nWTF is Citizens United?\n\nHealthcare for all? Even the imaginary brown person in my mind who doesn't work? No way!\n\nTax billionaires? But I might be a billionaire someday!", 'created': '2024-11-09 05:38:00', 'submission_id': '1gmlg06'}
{'comment': "Because people don't watch what's true or false. They watch what they WANT to be true and declare everything else false.", 'created': '2024-11-09 17:40:03', 'submission_id': '1gmlg06'}
{'comment': 'A human being? Yeah, one I would walk away from if I heard him talking like a psycho. Nope, he deals in hate and retribution. And people gobble that shit up. Fine. Eat it up, fuckers! You can let hate fill your god damn stomachs when tariffs make everything, including the fucking eggs!, go up in price. Not down. Prices aren’t going to magically go down. That would affect the bottom line of the rich donor class who helped get the Orange Menace back in office. But humans are going to be “de-naturalized” and deported. De-fucking-naturalized! Peewee German is going thru a bottle of Jergens and a case of Kleenex daily with the thought of it. You want some human talk? You can’t handle the human talk. It will be me, pointing and laughing at the fuckers who voted for him when they are begging for help.', 'created': '2024-11-08 18:27:06', 'submission_id': '1gmlg06'}
{'comment': ">trying to tell regular working people that the economy is actually great, when it's really not being felt by most people\n\nHarris was very careful to avoid that. I don't think there is a single instance of her saying anything close to that.", 'created': '2024-11-08 18:58:56', 'submission_id': '1gmlg06'}
{'comment': 'What makes you say Gen X? Gen Z is the one that increased support for Trump over 2020 by 11 points. That’s 4 percentage points more than Gen X.\n\nhttps://preview.redd.it/1sfc3ek60qzd1.jpeg?width=1290&format=pjpg&auto=webp&s=68550bbdf9b7ab6ebb6c89034765bfd9545f832e', 'created': '2024-11-08 19:22:35', 'submission_id': '1gmlg06'}
{'comment': 'A return to the good old robber baron days when companies could just sell you dangerous products and lie about it. And if you didn’t like it you could just purchase a competitor…oh wait you couldn’t because monopolies and collusion will be legal too.', 'created': '2024-11-08 17:30:36', 'submission_id': '1gmlg06'}
{'comment': 'E-Coli could become the Symbol of the USA?', 'created': '2024-11-08 17:37:48', 'submission_id': '1gmlg06'}
{'comment': 'It’s only freedom of speech for a faction on one side.', 'created': '2024-11-09 01:17:44', 'submission_id': '1gmlg06'}
{'comment': 'Along with other consumer protections under the guise of “deregulation”. \n\nHappy cake day', 'created': '2024-11-09 04:46:46', 'submission_id': '1gmlg06'}
{'comment': 'I’m sorry to hear that your family is going through that. Unfortunately, I think a lot of us lost family and friends because of this election. stay strong.', 'created': '2024-11-08 23:25:54', 'submission_id': '1gmlg06'}
{'comment': 'my friend said her aunties were trying to convince her parents to vote Trump, they had all this misinformation and she tried to ward them off but wasnt sure she succeeded. they wouldnt listen to her at all', 'created': '2024-11-09 01:34:40', 'submission_id': '1gmlg06'}
{'comment': 'They were doomed from the start because of the liberal brainwashing agenda (or whatever they call it) in universities. It would have been nice if some of my college professors would have been told their assignment! I only had one that brought up politics and now I know she was spending A LOT of time watching FoxNews, preMAGA. I avoided politics at that point and it was still obvious she was pushing BS every class (it was English Comp 2). \n\nI’ve dealt with a lot of the hardcore MAGA people. Receipts are the logical approach. Logic doesn’t work to get someone out of a position they did not use logic to get into in the first place. \n\nI’m going to take a guess that MAGA grandma did not provide any receipts. If there is another attempt, try the approach of MAGA grandma having to prove she is right instead of taking on the task of proving she is wrong. State it is false without any points to prove that it is wrong. If she cannot back up her claims with receipts, her claims are confirmed/declared as false. Switching to another false claim is the standard move (or personal insults), don’t take the bait by letting the topic shift without closing the initial claim as false. The outcome most likely won’t be any different but it is less frustrating than having someone disregard legitimate information and might, possibly lead to that person being more aware of the lack of receipts they’re being provided with when they’re being fed the nonsense in the first place.', 'created': '2024-11-09 05:17:20', 'submission_id': '1gmlg06'}
{'comment': "I'm ashamed to admit that I've fully given in to cynicism, but I respect your kids for believing that she would believe them over the TV person. It was a very reasonable belief, and very empathetic on their part to try and reach out to her. \n\nI hope that your kids hold onto that desire to connect, despite what we grown-ups are providing as examples and as the welcome into their new world for our kids. Seeing how my wife still struggles with trying to understand sometimes, I expect It'll continue to bug the hell out of your kids as well on a regular basis, but also help them to stay good people in the face of bitterness and fatigue by remembering to try and find the good first.", 'created': '2024-11-09 07:36:43', 'submission_id': '1gmlg06'}
{'comment': 'That’s a philosophical question.\n\nOut in the real world, competent adults deal with objective reality, which isn’t up for debate.', 'created': '2024-11-08 20:11:59', 'submission_id': '1gmlg06'}
{'comment': 'I get it..We’re so far past screwed, all we can do is sit and watch it burn. Can’t just roll over and ignore.', 'created': '2024-11-08 18:51:50', 'submission_id': '1gmlg06'}
{'comment': "If the courts had been doing that all along it might have prevented this mess where the courts are thoroughly corrupted. It's too late now", 'created': '2024-11-08 19:02:50', 'submission_id': '1gmlg06'}
{'comment': '> Have you been to a supermarket in last 10 years? "All Natural" with enough four syllable ingredients to make your eye run with ammonium from what is in the food chain.\n\nThis makes me think of [this.](https://imgur.com/JcACLNq) Just because they are "four syllable ingredients" doesn\'t mean those ingredients are unhealthy. Doesn\'t mean they\'re not, either, but it does mean you need more than that to make the claim that they\'re bad.', 'created': '2024-11-08 19:11:36', 'submission_id': '1gmlg06'}
{'comment': 'Four syllable ingredients like Dihydrogen monoxide? You know, the chemical name for [water](https://en.wikipedia.org/wiki/Dihydrogen_monoxide_parody?wprov=sfti1#)?', 'created': '2024-11-09 01:10:54', 'submission_id': '1gmlg06'}
{'comment': 'It’s not about the food moron', 'created': '2024-11-08 17:39:34', 'submission_id': '1gmlg06'}
{'comment': 'Yeah, the answer is NOT to block these people, because then there is no way to combat their lies.', 'created': '2024-11-08 19:31:31', 'submission_id': '1gmlg06'}
{'comment': 'We need to infiltrate the “off topic” sections of hobby forums for cars and firefighters and college football and so on. Those are always hotbeds of Trumpism and we need to pop those bubbles and inject competing perspectives', 'created': '2024-11-09 07:32:53', 'submission_id': '1gmlg06'}
{'comment': "I have been reading 'Anti-Intellectualism in American Life' by Richard Hofstadter and it resonates so much with America", 'created': '2024-11-09 15:27:29', 'submission_id': '1gmlg06'}
{'comment': 'Ahh social media. Where all erudite Americans “do their own research.”', 'created': '2024-11-08 21:19:35', 'submission_id': '1gmlg06'}
{'comment': 'I personally can’t wait til the shit hits the fan. Got my popcorn ready!', 'created': '2024-11-08 21:07:50', 'submission_id': '1gmlg06'}
{'comment': "Yep. Even though Kamala's numbers were a much bigger decline from Biden than anybody expected, nobody expected Trump to BARELY lose any support. He was basically within his margin in 2020. So not only were the polls wrong, but both logic and decency were completely non factors. If nothing (jan 6, trying to sell government secrets/classified docs, countless sexual assaults, misogyny, responsible for bring down Roe, destroying alliances, giving in to Putin) was going to bring Trump's support down significantly, Democrats (and everyone else) were operating on the wrong landscape to begin with. We all thought truth and facts would win out, that people in this swing states cared. They don't. What works is appealing to emotion, fears and constant propaganda.", 'created': '2024-11-08 19:47:59', 'submission_id': '1gmlg06'}
{'comment': 'This was not an election on districts, this was an election based on which circle of media could gain the most viewers. And unfortunately, people wanted to be told sweet lies than harsh truths. And if that continues, they will believe the sweet lies right up until the flood waters reach their lower lip.', 'created': '2024-11-08 18:30:34', 'submission_id': '1gmlg06'}
{'comment': 'MSNBC is low key happy Trump won. They have breaking news and reaction programming every day for the next 4 years.\n\nFox News is probably pretty pissed', 'created': '2024-11-08 17:56:23', 'submission_id': '1gmlg06'}
{'comment': 'most of us have', 'created': '2024-11-08 18:15:19', 'submission_id': '1gmlg06'}
{'comment': 'I wouldn\'t doubt it at all. I got my fair share of "your welcome" and "Are you baby’s ok" messages from my American MIL', 'created': '2024-11-08 18:57:02', 'submission_id': '1gmlg06'}
{'comment': 'Scandinavian kids also eat a great deal on non-processed food so there is that to deal with.', 'created': '2024-11-08 17:35:42', 'submission_id': '1gmlg06'}
{'comment': 'They could probably read and write better in English than an adult in the US', 'created': '2024-11-08 19:22:08', 'submission_id': '1gmlg06'}
{'comment': 'I remember learning how to check sources in high school. Now they just call anything countering their propaganda “fake news”', 'created': '2024-11-08 18:46:49', 'submission_id': '1gmlg06'}
{'comment': 'And indulging those types of parents is why we lost not only the election but the nation and the American moment in history. We valued their feelings of the privileged over protecting the vulnerable, and now we get to see the result of going along to get along.', 'created': '2024-11-08 22:45:49', 'submission_id': '1gmlg06'}
{'comment': "See #2 of mine. It's not necessarily the lack of educational opportunities (though that's a huge part of our problem--a poorly educated working class), but HOW things are taught. When school boards ban books, or decide to use textbooks that are slanted to the religious right, that influences young folks' minds. So, it's not a surprise that younger males voted for trump/Republicans. It's what's on the menu at your local public school.", 'created': '2024-11-08 19:25:40', 'submission_id': '1gmlg06'}
{'comment': 'It’s amazing the amount of knowledge one can have but be unable to actually intelligently *reflect* on their beliefs and question them (i.e. critical thinking.) Most doctors and nurses are taught like craftsmen, they’re mechanics that work on your body and that’s it.', 'created': '2024-11-08 21:45:22', 'submission_id': '1gmlg06'}
{'comment': 'Oh we could build it. Lots of companies have targeted ads all based on complex demographics mixes that shift and use the algorithm of social media and YouTube to send a specific ad based on the video you just watched. The money is there, it’s just spend on things that don’t work as well as they used to', 'created': '2024-11-09 14:34:08', 'submission_id': '1gmlg06'}
{'comment': 'The fuckin breakdancer?? Her shit was bad but I wouldn’t go *that far*. Damn', 'created': '2024-11-08 17:10:53', 'submission_id': '1gmlg06'}
{'comment': 'Yup, and I guess now we know why Faux News is always the number 1 news channel.', 'created': '2024-11-09 12:49:58', 'submission_id': '1gmlg06'}
{'comment': "Yep. Our democracy died on election day.\n\nRepublican leaders went all in on using fascist rhetoric to elect a tyrant. They weren't participating in democracy. They were just using a democratic election to change our government into an authoritarian one. \n\nSo they are undoubtedly going to continue to use fascist strategies to consolidate their power.", 'created': '2024-11-08 23:43:44', 'submission_id': '1gmlg06'}
{'comment': "I mean, it's everywhere isn't it? Between the choice of the most heinous embodiment of human vice, and a qualified woman, I've been told the woman did not do enough to appeal to voters. I've been told the woman should have campaigned on raising minimum wage, or on affordable housing, or on any other specific economics issue, when chances are she actually did. I've been told the qualified woman abandoned the working class. The same qualified woman who picked a union member as VP and served as VP with a president who walked a union picket line. And yes, it is true that those in the 30k-100k income bracket significantly turned against Harris, regardless.\n\nIt's just so much more comforting for the individual voter to absolve themselves of their participation in this catastrophe by either not showing up to vote, or voting for the most heinous embodiment of human vice, because it is more comforting than coming to grips with their participation in making this happen. The Democrats didn't appeal to me/xyz because of whatever reason will continue to be the primary reason.\n\nIt's not to say the Democrats couldn't have done better -- I wish they inundated digital spaces better. But at the end of the day Harris ran a blitz campaign from start to finish in 100 days against an opposition campaigning for the last 8 years funded by oligarchs and billionaires, one of whom purchased an entire social media network. The Democrats put their best possible foot forward in the face of an insurmountable challenge, and the electorate spited them.", 'created': '2024-11-08 19:55:41', 'submission_id': '1gmlg06'}
{'comment': "But how? Black vote in the battleground states INCREASED from 2020 for a racist. How do you combat THAT? I don't mean to shout but maybe I have to. I mean c'mon. I'm not trying to single out the black vote. We could go right on down the list. And I'm a white male so I absolutely know which place it starts with Trump believe me.\n\nHe literally held a Nazi rally on the eve of the election and won the popular vote. And Bernie Sanders wants to say Democrats lost the working man? Get the F outta here with that bullshit. \n\nAs I said THIS is what the voting public wanted. They chose racism, hate, a rapist felon, violence toward women, children dying in our schools, hatred toward minorities and the LBGTQ community and plenty more. Harris practically begged people to step up and stop him and how many stayed home again and ignored her? This was 2016 all over again.\n\nOnly this time Trump didn't lose the popular vote, there was no FBI director fucking things up and no massive Russian interference. This was all on the American people. We've had eight years of seeing clearly who Trump is and the people wanted him back. Democrats didn't lose the people, Bernie. The people wanted Trump. You're a smart man but you can't see the truth even when it's so clearly staring you right in the face.\n\nThis is it folks. We may never have another actual election again. If 2025 gets implemented - which I fully expect to happen - we'll be just like Russia. Republicans will win every election from here on out just like Putin wins all of his. We had our chance to stop fascism and lost.\n\nAgain, I don't blame Harris, Biden or the Democratic Party. Are any of them perfect? Course not. But this is entirely on the American people. They all know who Trump and the Republicans are and they made the choice. So welcome to the new Third Reich.", 'created': '2024-11-08 19:07:01', 'submission_id': '1gmlg06'}
{'comment': 'Their strategy so far has been treating Republicans as if they’re worth listening to.\n\nThat hasn’t worked, once, ever.', 'created': '2024-11-08 20:15:03', 'submission_id': '1gmlg06'}
{'comment': '100%\n\nThis is the country the majority of voters wanted so no sympathy from me either. If you voted for Trump and you get put in a camp tough shit. You were warned. For eight fucking years.', 'created': '2024-11-09 04:04:13', 'submission_id': '1gmlg06'}
{'comment': 'Yeah but Dems have been saying it for 8 years. Meanwhile Trump has said all kinds of new off the wall shit. The Boomers running the DNC need to cede control to those who can actually run a “modern” Idiocracy style campaign.', 'created': '2024-11-08 19:17:30', 'submission_id': '1gmlg06'}
{'comment': "We did not put together a coherent message. We had things in there and someone could maybe assemble them into a message. We have some issues everyone knows we care about, but it isn't put together in a large message about who we are, and what our core beliefs are.", 'created': '2024-11-08 18:12:59', 'submission_id': '1gmlg06'}
{'comment': 'Blaming themselves is what victims do. \n\nrepublicans elected a dictator. We should be blaming the people who voted for him.', 'created': '2024-11-08 18:19:06', 'submission_id': '1gmlg06'}
{'comment': 'They were misinformed and gullible. \n\nrepublicans elected a dictator, and they hold the blame. Not the people who did NOT elect the dictator.', 'created': '2024-11-08 19:09:07', 'submission_id': '1gmlg06'}
{'comment': "I'm older. I remember when USA Today came out, it was just a snippet of an article. Why would they put out a newspaper that kind of talks about it. doesn't get into detail. Today that is the whole world.", 'created': '2024-11-08 23:45:53', 'submission_id': '1gmlg06'}
{'comment': "What might be effective is explaining the strategy as though you're talking to a college student with really bad ADHD.", 'created': '2024-11-08 21:56:26', 'submission_id': '1gmlg06'}
{'comment': 'Apparently that has been their confessions for why they voted Trump over Harris, they didn’t get courted enough with praise and kindness from the Democrats.', 'created': '2024-11-09 01:16:21', 'submission_id': '1gmlg06'}
{'comment': 'Harris had 10-15 million people sit this one out. All the lard-brains you’re referencing would continue to think this way but simply get out voted', 'created': '2024-11-09 05:42:26', 'submission_id': '1gmlg06'}
{'comment': "Or maybe some of us learned critical thinking skills and some or too many of us didn't?", 'created': '2024-11-09 17:47:31', 'submission_id': '1gmlg06'}
{'comment': "When asked what she would do differently then Biden, she said nothing comes to mind. \n\nAnd in this case, not saying something didn't win the election.", 'created': '2024-11-08 19:21:06', 'submission_id': '1gmlg06'}
{'comment': 'Gen X is a larger portion of the voting population than Gen Z. I also saw a graphic that displayed Gen X as having the highest disparity between voters for Harris vs Trump.', 'created': '2024-11-08 19:32:44', 'submission_id': '1gmlg06'}
{'comment': 'Shush and get in on the snake oil business while the gettin’s good.', 'created': '2024-11-08 21:31:55', 'submission_id': '1gmlg06'}
{'comment': ">A return to the good old *robber baron* days\n\nWe need to make up one of those words so that people know who's responsible... like Obamacare... \n\nOh, I got it! Baron Trump!", 'created': '2024-11-09 02:25:41', 'submission_id': '1gmlg06'}
{'comment': 'Good thing we’ll have the roadkill connoisseur overseeing everything. I’m sure he’ll use all of what the worm didn’t eat to fix everything right up.\n\nNext stop in this reality version of Idiocracy:\n\nhttps://preview.redd.it/mdyfrjmabtzd1.jpeg?width=1203&format=pjpg&auto=webp&s=04097ff0fe101fc64f6b165c5ffd0f470a69a9be', 'created': '2024-11-09 06:32:59', 'submission_id': '1gmlg06'}
{'comment': "Bacteria already has representation in all three bodies of government, yet it doesn't have its own state, so giving E-Coli the Seal seems the least we could do.", 'created': '2024-11-09 06:47:13', 'submission_id': '1gmlg06'}
{'comment': 'My husband voted MAGA twice (we don’t discuss politics) but he started to see through it in fall of 2021. It was a spam campaign email that did it, not bogus Covid cures, election lies or Jan6th. I doubted it would last but he voted straight party for the Democratic Party this time. (We have a daughter, he is now a single issue ProChoice voter.)\n\nThe point is that “easy come, easy go” applies to a politician’s support when it’s built on nothing but lies…. and maybe sign them up for the spam campaign emails to help that happen. I signed him up accidentally without realizing he was getting the emails until he brought up the email that made him finally see through Trump. Grifters gotta grift.', 'created': '2024-11-09 05:43:40', 'submission_id': '1gmlg06'}
{'comment': "I think it's pretty clear that this country is short on competent adults who can deal with objective reality.", 'created': '2024-11-08 20:20:48', 'submission_id': '1gmlg06'}
{'comment': 'Yep, I already got my spot picked out to watch the ensuing chaos from. All I need is to stock up on whiskey and giggle lettuce.', 'created': '2024-11-09 03:05:23', 'submission_id': '1gmlg06'}
{'comment': 'There is maybe another option but it requires widespread participation. Some GOP members of Congress are 100% MAGA but they’re not the majority. Other GOP members of Congress are forced into complying with MAGA because his base is the power he has over them. Going against MAGA means risking getting “primaried”. \n\nLarge numbers of registered voters changing their party affiliation to the Republican Party (maybe on Inauguration Day or anytime there is a major change Congress accommodates) while making it known it’s specifically to vote in the midterm primary will force them to choose which group of voters to avoid pissing off. Even if they don’t take the warning seriously, it will provide a way to clear some of the MAGA complicit members of Congress out to replace those with moderates. Either way, outnumbering his base within the GOP will diminish the influence MAGA has over the party. Figuring out how to get enough people onboard is the tricky part.', 'created': '2024-11-09 05:56:57', 'submission_id': '1gmlg06'}
{'comment': "Maybe. I don't think letting politically appointed judges decide what things politicians are allowed to say is a good idea. The real solution is getting money out of politics.", 'created': '2024-11-08 19:11:58', 'submission_id': '1gmlg06'}
{'comment': 'Insightful.', 'created': '2024-11-09 08:08:35', 'submission_id': '1gmlg06'}
{'comment': 'Good because the popcorn tariffs are coming', 'created': '2024-11-08 21:39:33', 'submission_id': '1gmlg06'}
{'comment': 'Not even fears, because any competent adult hearing him talk about using the military to execute Americans would have never voted for him.', 'created': '2024-11-08 20:09:40', 'submission_id': '1gmlg06'}
{'comment': "Yes. I'm wondering now if the only remaining play is to embrace the idea.\n\nThat is, constantly go on Fox, podcasts, etc, to talk about our message and nothing else. Have to pierce all the bubbles. Rallies, candidate websites, volunteering, door knocking, etc, none of that seems to matter.", 'created': '2024-11-08 18:43:19', 'submission_id': '1gmlg06'}
{'comment': 'If you watch the anchors and hosts, they are in no way happy, because they are decent people and Trump *will* come after them personally if they continue to report the truth of his administration’s actions. Audits, investigations, and vague threats to their lives and family’s lives for his followers to act upon', 'created': '2024-11-08 21:53:37', 'submission_id': '1gmlg06'}
{'comment': 'And when you ask them for a source it\'s a random facebook/youtuber post or what this random podcaster said. \n\nIt also boggles my mind how they never fully grasp when I tell them the podcaster or youtuber makes a disclaimer of "I must disclose that I am not a doctor" or "I am not an expert." I tell them they\'re telling to your face they can\'t be trust and the quiet/unsaid part is, this is all bs for advertising money and attention. They never listen and say the disclaimer means nothing. No the disclaimer is so they have an out if anyone ever tries to sue them.', 'created': '2024-11-08 19:52:36', 'submission_id': '1gmlg06'}
{'comment': '😞 damn raygun really fucked us', 'created': '2024-11-08 17:18:25', 'submission_id': '1gmlg06'}
{'comment': 'Ronnie raygun', 'created': '2024-11-08 17:28:40', 'submission_id': '1gmlg06'}
{'comment': 'Harris didn’t blame the failures of white people on Mexicans the way Republicans did and do. Simple as that.', 'created': '2024-11-08 20:16:19', 'submission_id': '1gmlg06'}
{'comment': '100 pc. Please send this to The Atlantic, I really appreciate your perspective.', 'created': '2024-11-09 00:28:36', 'submission_id': '1gmlg06'}
{'comment': ">And Bernie Sanders wants to say Democrats lost the working man? Get the F outta here with that bullshit.\n\nThat's just objectively true unfortunately.\n\nIt's shocking and depressing, but a lot of people just seem to not care about those things. Apparently economic hardship is the only thing that matters and switching party control is the solution regardless of any facts. That's been the trend all around the world. It's also the exact way that fascism rose in the past.", 'created': '2024-11-08 19:56:14', 'submission_id': '1gmlg06'}
{'comment': "I don't know man, if we had gotten Liz Cheney to do a few more events I think we had it in the bag! It's so frustrating to watch them try the same failing strategy repeatedly.", 'created': '2024-11-08 20:22:31', 'submission_id': '1gmlg06'}
{'comment': 'I know :(', 'created': '2024-11-08 19:18:07', 'submission_id': '1gmlg06'}
{'comment': 'I thought it was very clear. fighting for the middle class with lots of plans to help. It just got burried in the 4:1 PAC ads full of lies here in MI.', 'created': '2024-11-08 18:17:02', 'submission_id': '1gmlg06'}
{'comment': "Harris was super on-message and did exactly what you're saying. The short campaign definitely hurt her, but I don't think there is much she could have done differently. She laid out good policy proposals. She talked about fighting for the people. She talked about values. Trump just spews out discombobulated lies.", 'created': '2024-11-08 18:55:04', 'submission_id': '1gmlg06'}
{'comment': 'Personally I blame places like this where we latch onto the latest New Republic or Rolling Stone click bait about Trump not being able to open a door. Often they are nothing and flood the zone with overreactions that distract from the major issues. We need a focused clear narrative, not something that can often be false that gives people plausible excuse to say we are exaggerating or have "TDS".', 'created': '2024-11-08 18:51:43', 'submission_id': '1gmlg06'}
{'comment': "dont want to criticize but you need to get outside the Liberal bubble & realize that average centrist & of course conservative ppl are bombarded with hard right media every time they open fb, x/twitter, nextdoor, youtube etc. Democratic messaging is being pigeon-holed, so you're only preaching to the choir.", 'created': '2024-11-08 20:50:41', 'submission_id': '1gmlg06'}
{'comment': "Right. But you claimed they are blaming themselves because they've been gaslit. \n\nIt's very common as part of one of the stages of grief. There didn't have to be any gas lighting for people to blame themselves or the party.", 'created': '2024-11-08 18:37:22', 'submission_id': '1gmlg06'}
{'comment': 'Agreed, but those who didnt should look at their strategy given those people exist.', 'created': '2024-11-08 19:35:52', 'submission_id': '1gmlg06'}
{'comment': "Right, sadly nowadays if you can't capture the public's attention in 30 seconds or less, you've already lost them.", 'created': '2024-11-08 23:48:08', 'submission_id': '1gmlg06'}
{'comment': "Sure, that was a missed opportunity. How many undecided voters even heard about that though? 2%? Maybe 5%? Meanwhile trump is holding nazi rallies and saying the most insane shit any politician has said in this country in decades. I don't think little stuff like that mattered at all.", 'created': '2024-11-08 19:59:17', 'submission_id': '1gmlg06'}
{'comment': 'John Barron was one of Trump’s [pseudonyms](https://en.wikipedia.org/wiki/Pseudonyms_used_by_Donald_Trump)', 'created': '2024-11-09 04:50:08', 'submission_id': '1gmlg06'}
{'comment': 'wow would love to know what it was', 'created': '2024-11-09 07:47:47', 'submission_id': '1gmlg06'}
{'comment': 'Yours is a hopeful but very, very rare story as far as I can tell. There\'s you, the woman who made a documentary film about her dad recovering from a Fox "News" addiction, and a smattering of positive stories here and there. The vast majority of stories are I read end with the friend/spouse/family member mired hopelessly in the disinformation swamp.', 'created': '2024-11-09 12:40:33', 'submission_id': '1gmlg06'}
{'comment': 'Trumpers create their own reality. Up is down, black is white.', 'created': '2024-11-09 19:32:42', 'submission_id': '1gmlg06'}
{'comment': "For that to happen, we can't allow billionaires to exist.", 'created': '2024-11-08 19:16:12', 'submission_id': '1gmlg06'}
{'comment': 'Guess I better stock up….NOT lol', 'created': '2024-11-08 21:40:40', 'submission_id': '1gmlg06'}
{'comment': 'I think I cracked the answer. It\'s honestly simpler than that. \n\nClearly logic is not something we can argue, nor is facts Mental Inertia and confirmation bias are two things which are WAY too easy to manipulate with logic. No, we need to appeal to emotion. And the first step in undoing this mess is to acknowledge that no matter where your political affiliations lie, your emotions are valid and to not discount them. Here\'s what I mean. Lets look at the issue of gun control. \n\nA conservative voter might say, and I\'m paraphrasing hyperbolically. "I need all the guns, It\'s my right!" I would ask, why do you need all the guns? And we\'ll get the answer of: "So if the government every comes marching I\'ll have something to defend myself!" but lets dig deeper. What\'s the emotion that fuels the opinion. Well that\'s fear, fear and anxiety of your way of life being changed, of not fully understanding the system and having it screw you over, of protecting your family. \n\nDemocrats have this same fear, we have this same emotion, we just choose to try and fix it differently, ironically on the opposite side of the issue. We want less guns and more controls to feel that sense of safety, and know our children are safe in schools. We can acknowledge that the emotion is valid, while disagreeing with the solution, and propose one of our own. If you distill every issue to an emotion and ALWAYS speak to that side, backed up with facts. That is how you win. This election was not about facts, this was about emotional validation. Trump does this naturally because he feels an emotion like envy, spite, hate, anxiety, animosity, and it\'s immediately channeled out of his mouth. Even the stupid fluff stuff, "Like we love Wisconsin, oh yes we love you Wisconsin" drums up an emotion. Dial up the stress enough and give someone any shred of emotional validation and they\'ll walk into fire for you. Even over their own self interest.', 'created': '2024-11-08 18:57:21', 'submission_id': '1gmlg06'}
{'comment': "What does fighting for the middle class mean? How are they doing it? How does what happened the last 4 years fit into that story? There's a lot that wasn't said that needed to be. The only defense of Biden's economic policy was that the economy was good, when he actually did so much.", 'created': '2024-11-08 18:59:31', 'submission_id': '1gmlg06'}
{'comment': 'they ignored her 30-45 minute on point speeches (covering reducing prices, help for new homeowners, reducing taxes, and protecting SS) and sane washed his 3 hour ramblings to immigrants.', 'created': '2024-11-08 20:34:13', 'submission_id': '1gmlg06'}
{'comment': "She was on message, but she didn't have a coherent message to give. She needed to both have plans for the future as well as an explanation for how she got there. Talking about fracking for example, she could say we need to move away from fossil fuels, but we need to make sure that we have the infrastructure to do it first and we need to make sure we have better jobs available for the miners, in the meantime we need to be the global leader ensuring our energy independence. It defends the original position, the change for her current stance, and a guarantee of support for both the fossil fuel workers and the green energy supporters.", 'created': '2024-11-08 19:04:59', 'submission_id': '1gmlg06'}
{'comment': "There isn't even Democratic messaging within the liberal bubble. It is very difficult to find any issue discussed, not in Republican framing. I listen to a lot of news and political commentary, and I can count on 1 hand the number of times I've heard immigration discussed outside of the framing of numbers coming in. We don't even have a good message to combat what the Republicans say. We can come up with good messaging, and start spreading it in non traditional media markets. We need to find ways to change the narrative, and we will continue to do so until we succeed.", 'created': '2024-11-08 23:41:52', 'submission_id': '1gmlg06'}
{'comment': 'Right. \n\nSo I will keep speaking out against it. \n\nPut the blame on the people who did this to us. The republicans.', 'created': '2024-11-08 18:38:56', 'submission_id': '1gmlg06'}
{'comment': 'Sure. That’s up to them. \n\nFor us, the reasonable people, we should be blaming the republicans for voting for the dictator proactively.', 'created': '2024-11-08 19:37:04', 'submission_id': '1gmlg06'}
{'comment': 'Maybe I was not clear earlier, but I think the sad fact is that being openly racist, misogynistic, and denying basic facts are not deal breakers for many people, especially when they are struggling to get by. It\'s like Maslow\'s Hierarchy of Needs. Unless directly and immediately affected by those other issues, and even in some cases when they are, being able to pay rent and bills is paramount.\n\nBy not being proactive and addressing that issue directly and the root causes (corporate greed, income inequality, etc.) the DNC left a vacuum that was filled with Trump just saying, "I\'ll fix it," and people believed it, even though some of it was caused BY his ineffective policy during the height of COVID and global infrastructure being fucked.\n\nPeople are predictably irrational. They want to feel safe and secure. The Democrats did not provide an easily understood platform on how they would deliver that, especially on the topic of the overall economy. I\'m definitely not saying Trump was the better option at all, but perception is reality and by not addressing the issue, the perception was solidified for many that Trump would be better.', 'created': '2024-11-08 20:18:44', 'submission_id': '1gmlg06'}
{'comment': 'It was a campaign email pushing for donations with the Afghanistan withdrawal as the reason being used. \n\nFoxNews had been pushing the narrative the economy was on the brink of a recession, everyone was struggling financially, etc. The email struck a nerve because Trump was not running for office for campaign fundraising to make sense. Nothing about the Afghanistan withdrawal made sense for fundraising off of it. The kicker was, “He is a *billionaire* asking people that are struggling financially to send *him* money?!” \n\nWe weren’t struggling financially which makes it amusing that Fox News exaggerations about the economy tanking and Trump’s false claims of being a billionaire were the things that made him realize Trump does not care about anyone besides himself.', 'created': '2024-11-10 22:15:37', 'submission_id': '1gmlg06'}
{'comment': 'agree! and their minds cannot be changed. and studies have shown religious folks are more prone to believing falsehoods', 'created': '2024-11-09 17:48:17', 'submission_id': '1gmlg06'}
{'comment': 'I’m in a deep red state. I know of 4 people that did not vote for him again. \n\nFor my husband, FB was a major contributor with the steady doses of misinfo. He also had FoxNews on all day, everyday at work on a TV for customers. Ironically, FoxNews and one of Trump’s most common lies were the reasons the email bothered him so much. \n\nFN was pushing the doomsday recession narrative, everyone is struggling to make ends meet, etc (we weren’t which is how I know it was FN). The spam campaign email was trying to leverage the Afghanistan withdrawal for campaign donations. “A billionaire is asking people that are struggling financially to send *him* money!? He isn’t even running for anything! Why is Afghanistan a reason to ask people for money?!” It made him realize Trump does not care about anyone else. (I tried to tell him that dozens of times but he never wanted to hear it.) \n\nThe timing contributed to the outcome. He is really into college football and the email was right before football season started. He unintentionally altered his FB algorithm by only paying attention to football related things for 4.5 months. Customers weren’t lingering so the TV at work was on ESPN or turned off. The break from FN negativity being on in the background all day helped him notice the difference in his and coworkers’ moods when FN was on all day again. There are 3 channels now: ESPN, Animal Planet and an old movie channel. If a customer asks them to change it to FN, they say the remote is MIA or broken. His FB is football, ATVs and dog videos.', 'created': '2024-11-10 16:18:51', 'submission_id': '1gmlg06'}
{'comment': 'TBH Idt he was going to ever have a “When you see it…” moment about Trump. I gave up on that possibility when I noticed he was watching the live coverage on Jan6 with a joker grin and a weird, creepy laugh. \n\nI used a droplet approach for 1.5-2 years prior to giving up on J6. He refused to discuss politics so I made sure he was at least hearing some of the info that was being left out or lied about. I limited it to only major topics instead of it being a daily or weekly thing. We had two sentence discussions. I’d include as much of the key info in my sentence and his sentence was consistently, “Idw to talk about politics”. For some topics, I was able to remove details specific to politics to discuss the general topic. He’d share his thoughts and I’d eventually add the link to politics. Halfway into 2020, he started occasionally bringing up things he saw or heard to ask me if those were true. \n\nThe goal was not to change his views or opinions, it was to make sure he had more of the info in order to form his own views and opinions (& hopefully not fall for the lies). The only exception to that was conspiracy theories. I found out there was a conspiracy theory about Sandy Hook when he confidently and smuggly stated it as fact. That started the whole process because I tuned out politics and current events on purpose prior to that, but believing a school shooting was an elaborate hoax was too shocking and too disgusting to stick with not paying attention to politics and current events. He knows the Sandy Hook CT was a lie now and does not fall for conspiracy theories anymore. It took about a year and a lot of gay frogs to accomplish that.', 'created': '2024-11-10 20:09:05', 'submission_id': '1gmlg06'}
{'comment': 'Right, so how do you apply that? \n\n"Prices are too high, we all know it, let\'s fix that through X,Y,Z" was a major, major part of Kamala\'s argument to the electorate. Basically every speech covered it. \n\nThe alleged fear the electorate faced was high cost of living. Kamala acknowledged the fear, validated it, and offered solutions backed with facts. \n\nIt didn\'t seem to matter.', 'created': '2024-11-08 20:26:23', 'submission_id': '1gmlg06'}
{'comment': 'I think that\'s really good and accurate analysis. I just don\'t know if it was even possible for her to do much better. She closed like a 25% gap on the "who do you trust more to handle the economy?" question in just over 3 months. Stuff was cheaper 4 years ago. It doesn\'t make any logical sense to blame Biden, much less Harris, for that. Or to think trump will make stuff cheaper again. I don\'t know that anything she could have said would have mattered enough to change the election result. Maybe if she had a full year-long campaign.', 'created': '2024-11-08 20:27:52', 'submission_id': '1gmlg06'}
{'comment': 'Changing their minds sets the goal way too high. Their views and opinions are based on limited information &/or lies. Everyone is free to have their own views and opinions but people forfeit that freedom by allowing others to shape their opinions by leaving out info or lying. \n\nA lot of MAGA supporters use projection like it’s a super power. Their projection provides a cheat sheet of their insecurities. “Don’t be a sheep, think for yourself”, “do your own research”, any accusations about CNN/MSM telling you how to think, brainwashed-all of those are projections of insecurities they’re being deceived and manipulated. Pointing that out to the person is a waste of time. Challenging the person based on the insecurity is more effective. ie someone refusing to hear or read information that may contradict the opinion they were fed “I’d want the information they left out (or didn’t want you to have), I figured you would too so you can form your own opinion.” Don’t be rude or condescending, they’ll become defensive and there is no getting through to them at that point. \n\nIt’s not something to expect instant results from, the goal is to provide them with info they aren’t getting from the right. Even if they don’t want to receive it, they need to be aware that it exists. It can be helpful to state you’re not trying to change their views or opinions, you’re only trying to make sure they have all the facts to form their own opinions, if that is what you’re trying to do.', 'created': '2024-11-10 20:56:30', 'submission_id': '1gmlg06'}
{'comment': 'I agree that having longer to campaign would have likely helped. It would have also helped if the DNC ran a primary. Thanks for the stimulating conversation and not being a jerk to an internet stranger. Solidarity!', 'created': '2024-11-08 20:34:45', 'submission_id': '1gmlg06'}
{'comment': "You too. We're all upset, but this isn't the end. Have a good weekend.", 'created': '2024-11-08 20:51:29', 'submission_id': '1gmlg06'}
{'comment': 'a couple of billionaires bought this election. almost every commercial here in MI was a PAC commercial full of nothing but flat out lies. it was nonstop. people are stupid and fell for it. truth in advertising is dead.', 'created': '2024-11-08 16:56:42', 'submission_id': '1gmjmzo'}
{'comment': "This handwringing is quite annoying, but just another election tradition.\n\nWe have been swapping party control - today's Republicans and today's Democrats - since the '60's. The party in power - this time a worldwide phenomenon! - pisses off more than it pleases. It IS the messaging, and most people will never agree that THIS is as good as it gets.\n\nAs usual, the (R) in the White House will have a couple years of some power before the next set of pissed-off voters take it all away. It's inevitable.", 'created': '2024-11-08 15:47:14', 'submission_id': '1gmjmzo'}
{'comment': 'Are they seriously telling Democrats they need to out propagandize fascists who specialize in propaganda?\n\n \nAre they out of their minds?', 'created': '2024-11-08 16:23:29', 'submission_id': '1gmjmzo'}
{'comment': "Democrats just need to convince trump to come on their side. /s Looking at how folks voted for a convicted criminal. The party isn't the problem. The ethics of America is.", 'created': '2024-11-08 16:12:50', 'submission_id': '1gmjmzo'}
{'comment': "This is a BS take. Democrats aren't responsible for people accepting lies. Trump voters believe a transgender female boxer competed at the Olympics this year. They believe schools provide transgender medical treatment, that domestic oil production was stopped, etc. \n\nIn '00 Bush and Gore debated about what should be done with the annual surplus the nation had!!! By the end of Bush's term the annual deficit was over a Trillion dollars a year. I will never see another surplus in my lifetime. \n\nIn '16 the Supreme Court was evenly split 4-4 and Obama appointed Garland. It would have given Democrats the first majority on the court in generations. Republicans delayed, Trump won, and now Republicans have a 6-3 majority. I will probably never see a Democrat majority on the court in my lifetime. \n\nSome battles are just lost. That is why every election matters and the lesser evil is always worth fighting for. Two thirds of the Democratic policy priorities are toast. Democrats need to pick a handful of forward looking policies and just beat the drum on them. No pick is sacrificing lives on hills that are already lost.", 'created': '2024-11-08 16:52:12', 'submission_id': '1gmjmzo'}
{'comment': 'Ah yes, just buy up media and script whatever story you want. \n\nDemocrats should abandon traditional media and go all in on digital.', 'created': '2024-11-08 18:53:36', 'submission_id': '1gmjmzo'}
{'comment': "I don't know what we can do, it feels hopeless. :(", 'created': '2024-11-08 16:24:58', 'submission_id': '1gmjmzo'}
{'comment': 'They need their own bat shit crazy news channel.', 'created': '2024-11-08 16:52:01', 'submission_id': '1gmjmzo'}
{'comment': 'You mean the lying and propaganda ?', 'created': '2024-11-08 23:11:00', 'submission_id': '1gmjmzo'}
{'comment': 'Lots of people in here making excuses or trying to make it sound like the only reason we lost is because we were the incumbent. Yes, being the incumbent party hurt us, but unless we realize our messaging fucking sucks- we are only going to keep pushing people and losing people to the right. \n\nOur core beliefs are important and critical and most Americans agree with our core beliefs. The problem lies in the fact that we are perceived to offer nothing except our core beliefs. Americans hear us say the same damn thing every time and think “ok but how are you going to help me?”. Scream that our policies would actually benefit the average American more than Trump’s would all you want- people aren’t hearing that. This isn’t just a Trump issue. We lost ground in nearly every demographic in nearly every county in every state. Our messaging sucks. If it was only a Trump issue we wouldn’t have lost ground everywhere. We need to look in the mirror and most importantly- listen to the people that have switched their vote to R. They have been telling us for years now, and we have thumbed our noses at it, laughed at it, mocked it, and talked down to it. At the end of the day maybe they weren’t wrong. Maybe we should have listened.', 'created': '2024-11-08 16:38:44', 'submission_id': '1gmjmzo'}
{'comment': 'Staying relevant is important.\n\n\nTrump is a useful idiot mouthpiece unlike no other in modern history. It’s going to be interesting to imagine his legacy lasting too far aside from the “lifetime” appointments - which can be changed as soon if Dems take all branches and feel they needed to.\n\n\nLet’s look at real life examples of autocratic populism and their consequences: Argentina after Juan Perón, Zimbabwe after Robert Mugabe, Italy after Benito Mussolini.\n\n\nIn many cases, populist or autocratic movements tied to a single leader struggle to maintain cohesion and legitimacy after that leader’s departure, often resulting in political and economic turmoil, factionalism, or yes - even violent conflict. That’s not ruled out here in America, yet.\n\n\nThe transition period can be marked by competing factions trying to claim the leader’s legacy, internal divisions, and efforts to maintain or resist the system established by the outgoing “regime.” \n\n\nJD Vance is clearly not the next cult leader, he’s a diversion. \n\n\nLet’s watch closely at the Trump family and see what gladiator efforts they make to secure their own place in the future shadow of Trump.', 'created': '2024-11-08 19:27:12', 'submission_id': '1gmjmzo'}
{'comment': "I don't know how to do it but if you can pull up a snapshot of the beginning of Trumps second campaign, the internet tech he brought on board was all over the news, of company's with major presence linking back to P.O box locations and empty store fronts. This didn't stop developing when trump lost, it just amplified.", 'created': '2024-11-08 16:44:44', 'submission_id': '1gmjmzo'}
{'comment': 'Time for a Democrat Think Tank to get all the cats herded together in one place and build 1 platform they all kinda hate but agree on. Big tent needs one set of rules and one playbook. Dems must end circular firing squad after every lose. And focus on the group you keep losing and need the most. WHITE WOMEN they are so damn willing to vote against their own power and self interest, go find out why and fix it.', 'created': '2024-11-08 17:40:09', 'submission_id': '1gmjmzo'}
{'comment': 'Talkingpointsmemo.com?', 'created': '2024-11-08 17:50:36', 'submission_id': '1gmjmzo'}
{'comment': '[removed]', 'created': '2024-11-08 18:04:54', 'submission_id': '1gmjmzo'}
{'comment': 'Dems need to quickly realize that the repubs have learned how to speak in bites and algorithm leaving the dems behind. It doesn’t help that the conservatives own the “news” and platforms. It might be time for younger dems to rise to leadership. Because the current strategy is a losing one.', 'created': '2024-11-08 19:40:24', 'submission_id': '1gmjmzo'}
{'comment': 'There is a million reasons how this happened but really came down to Biden not stepping down and Dems not having primaries. \n\nModerate Dems won their senate/governor race in pretty much all the swing states. This wasn’t a party issue this was a Harris issue. Every presidential primary the Democratic Party has proven that it is more moderate than the loud online progressive wing paints it as. But this time we weren’t given a choice and were forced to run a more progressive candidate and paid the price for it. A moderate candidate like Mark Kelly would done much better \n\nPlease progressives learn from this or you will keep paying the price. I respect your political opinions but learn how to be more team players and to let go or compromise on some of the more unpopular policies.', 'created': '2024-11-08 17:12:18', 'submission_id': '1gmjmzo'}
{'comment': "I'm with you partly. We need something like the Lincoln Project that does nothing but collect money and spit out propaganda on social media, commercials, with that hyperbolizes every thing republicans do, say, propose to compete in for the low-information, lazy voter who will go with a meme, regardless of truth. Let the candidates and the DNC and mainstream progressive pacs campaign in a traditional way. Let's use dark money to compete for the low end voter year round. Especially in the swing states, and next tier competitive states.", 'created': '2024-11-09 02:57:58', 'submission_id': '1gmjmzo'}
{'comment': 'My understanding (please correct me with sources if wrong) The Democrats actually raised and spent even more than Republicans in this election. The momentum seemed very good, especially at the end. What I think is needed is getting Democrats to the polls.', 'created': '2024-11-09 18:52:24', 'submission_id': '1gmjmzo'}
{'comment': 'I think the Democratic Party really does care about Americans and wants to fix their problems. But unfortunately democrats have been living under a rock for the past 20-30 years and let republicans slowly take control of the courts and state legislatures to the point where it’s hard to pass anything, particularly on the federal level. There’s also massive amounts of disinformation being spread by republicans and foreign adversaries. Democrats need a more effective way to combat this because obviously calling Trump a fascist and a danger to democracy didn’t resonate with the majority.\n\nI thought Kamala ran an excellent campaign—I just think the democrats made a miscalculation of where the country is really at. This election proves that our country is sexist, racist, misogynistic, and clearly only cares about the price of eggs and butter vs. our rights, national and international security.\n\nRepublicans tank the economy, democrats fix it, democrats get the blame for said tanked economy, republicans take credit for fixed economy then tanks it, rinse and repeat.', 'created': '2024-11-08 16:10:12', 'submission_id': '1gmjmzo'}
{'comment': "What I'm learning is the vast majority of people simply do not care about others. They care about one thing-their economic well being in the most shallow and simplistic ways. They aren't going to take the time to research economic policy or do any in depth analysis, it's just a ping pong between who's in power and who is to blame.", 'created': '2024-11-08 16:47:45', 'submission_id': '1gmjmzo'}
{'comment': 'Bold of you to think we’re going to have elections in the future.', 'created': '2024-11-08 15:53:39', 'submission_id': '1gmjmzo'}
{'comment': 'What voters, what elections.', 'created': '2024-11-08 19:31:02', 'submission_id': '1gmjmzo'}
{'comment': 'Trump will overplay his hand and the coalition that elected him is already in-fighting. This is 2004. \n\nNow, I don’t know what Trump is going to do. Hell, Trump doesn’t know what Trump is going to do. \n\nThe current battle is for who has Trump’s ear. I fully expect the Trump 47 people to knife the Trump 45 people in the back, which is a good thing. The Trump 45 people are both vile and stupid and the Trump 47 people are more mainline GOP. \n\nRepublicans know that Trump will never be on the ballot again. They will make decisions in their own interest.', 'created': '2024-11-08 20:06:43', 'submission_id': '1gmjmzo'}
{'comment': 'Moderate Dems won their senate/governor race in pretty much all the swing states. This wasn’t a party issue this was a Harris issue. Every presidential primary the Democratic Party has proven that it is more moderate than the loud online progressive wing paints it as. But this time we weren’t given a choice and were forced to run a more progressive candidate and paid the price for it.', 'created': '2024-11-08 16:57:50', 'submission_id': '1gmjmzo'}
{'comment': 'Why not? We will lose elections as long as we think reason over emotion drives voters. It’s simply never worked that way despite our hopes that it would.', 'created': '2024-11-08 20:16:40', 'submission_id': '1gmjmzo'}
{'comment': "Small things may be helpful. Little stickers on gas pumps, rest room stalls, etc. that remind people to blame their misery on MAGA.\n\nBy itself it won't win anything, especially since future elections will be iffy. But it also reminds each other that we are not alone.", 'created': '2024-11-08 16:41:53', 'submission_id': '1gmjmzo'}
{'comment': "Bruh this election was literally about their own goddamn health and they still didn't give a fuck so I'm not sure what a winning strategy is with them??", 'created': '2024-11-08 20:37:23', 'submission_id': '1gmjmzo'}
{'comment': 'Hi TimboCA, it looks like your comment to /r/democrats was removed because you used either a link shortener or link redirect. Due to issues with trolls, spam and malware we do not allow shortened links on this subreddit.\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-08 18:04:55', 'submission_id': '1gmjmzo'}
{'comment': 'How was she progressive? She outright said she wouldn’t change anything Biden did, Biden is not a progressive. Harris reached out to Republican voters and it failed miserably, we need a true progressive or we’ll fail.', 'created': '2024-11-08 17:57:34', 'submission_id': '1gmjmzo'}
{'comment': 'Still not enough of your not willing to outright sell verifiable falsehoods. Too many democrats will reject outright lies and they will just be in the same boat.', 'created': '2024-11-09 03:06:08', 'submission_id': '1gmjmzo'}
{'comment': "there's only so many people that show up and when you have so many lies out there it just kills the sanity.\n\nHere in MI every commercial for the last couple weeks was a political one. 80% were from billionaire PACs. one that was in almost every commercial break was literally screaming that dems were responsible for afganistan, crime was skyrocketing, millions of illegals were killing people, inflation was skyrocketing, and country was shit. literally easily proved BS. people are stupid.", 'created': '2024-11-09 19:05:46', 'submission_id': '1gmjmzo'}
{'comment': "> Democrats need a more effective way to combat this because obviously calling Trump a fascist and a danger to democracy didn’t resonate with the majority.\n\nIt resonated with a lot of people. It simply wasn't enough to make a difference.\n\n> I just think the democrats made a miscalculation of where the country is really at\n\nAdditionally, incumbent governments have been losing elections recently in the face of post-COVID recovery due to inflation. In a slightly different world, Harris would've had the margins to win, perhaps if we had an election next year instead of this, but alas this is the hand that was dealt.", 'created': '2024-11-08 19:08:07', 'submission_id': '1gmjmzo'}
{'comment': 'Kamala Harris ran as good of a campaign as she could, but was the captain of a sinking ship.\n\nDemocrats couldn’t stop massive losses among Latinos and Asians and that was just barely enough to tip the blue wall states. Young men also swung right while seniors swung left. White people were slightly more likely to support Harris than Biden. \n\nAny take that doesn’t account for these changes is probably bad. We’ll never win the people who don’t believe we went to the moon, but we need to know why José the Plumber voted for Trump.', 'created': '2024-11-08 20:15:13', 'submission_id': '1gmjmzo'}
{'comment': "Look how many times Ted Cruz is able to keep getting re-elected despite being an ineffective vile imbecile. Most Trump supporters can't name his policies…having an R by his name is all they care about.", 'created': '2024-11-08 21:18:29', 'submission_id': '1gmjmzo'}
{'comment': 'Yeah, we\'ll have elections right after they "fix" it to "balance" out a majority of Congressional districts making it impossible for the democrats to get any leverage. They\'ve been working hard at this and don\'t be surprised if democrats numbers keep going down by way of gerrymandering and voter id restrictions. It will just be a dog and pony show...like Russia.', 'created': '2024-11-08 16:07:56', 'submission_id': '1gmjmzo'}
{'comment': 'He would have to grab the constitution and set it on fire for that to happen.', 'created': '2024-11-08 16:11:30', 'submission_id': '1gmjmzo'}
{'comment': 'I am so tired of seeing this doom and gloom. He\'s not even in office yet! IF this happens, we will try to fight back. But it hasn\'t yet and there\'s no point to just going "oh well, we\'re screwed".', 'created': '2024-11-08 15:57:12', 'submission_id': '1gmjmzo'}
{'comment': 'You have bigger problems right now than winning elections.\n\nLike even having them, to start.', 'created': '2024-11-08 22:14:30', 'submission_id': '1gmjmzo'}
{'comment': 'The other dudes takes are wack af lmao\n\nShe hit the road with Liz Cheney and made republicans for Harris a main focus of her strategy. \n\nSounds exactly like how progressives run campaigns. That strategy didn’t work for Hillary either but if we are lucky, maybe we can run it back one more time in 2028.', 'created': '2024-11-08 18:18:30', 'submission_id': '1gmjmzo'}
{'comment': 'This is completely the wrong answer. Please look at the results. Progressives don’t win in competitive races while all the moderates won the swing states.\n\nBiden has been the most progressive president in decades. If you can’t see that, you are the problem. \n\nHarris went too far left in 2020 and she didn’t come in far enough to back track that. Saying things like she wants to give 25k to first time home buyers or picking a VP that put tampons in boys bathrooms was going to far left.', 'created': '2024-11-08 18:09:34', 'submission_id': '1gmjmzo'}
{'comment': 'I don’t think there needs to be consensus. A group, or several, needs to gather the resources and run with it.', 'created': '2024-11-09 03:23:46', 'submission_id': '1gmjmzo'}
{'comment': 'Oh of course, it definitely resonated with millions of people but that was why I said it didn’t resonate with the majority because Trump won just about every battleground state and is on track to win the popular vote.\n\nOh yeah. The political landscape is changing and not in our favor. Hopefully if our institutions hold, we can at least make gains in the 2026 midterms. But bright sides to this election, we held on to SOME senate seats and we swept statewide elections in NC—including breaking the supermajority in the state legislature. I also believe that we won the state legislature in Wisconsin.. so we did make some gains even though we lost the presidency and the senate. Also, 7 out of 10 states voted to enshrine reproductive rights in their constitutions.\n\nHopefully democrats can reassess and come back in 2026 and potentially 2028.', 'created': '2024-11-08 19:13:30', 'submission_id': '1gmjmzo'}
{'comment': "Totally, which is honestly one of the hardest pills I've had to swallow. The party that spouts about bootstraps and hard work and in reality it's just about being the shittiest AND laziest person possible who continuously gets rewarded", 'created': '2024-11-08 21:21:05', 'submission_id': '1gmjmzo'}
{'comment': 'Also, Democrats will not be allowed to “compete in the new media environment.”', 'created': '2024-11-08 16:12:24', 'submission_id': '1gmjmzo'}
{'comment': 'That’s kinda what happens every time an authoritarian takes over a democracy. \n\nIt’s their thing.', 'created': '2024-11-08 17:37:23', 'submission_id': '1gmjmzo'}
{'comment': 'OR it could be as simple as the pro-Trump congress not certifying the midterms if they don’t like the results. I’m not aware of a mechanism that would prevent that with the next congress’ composition. There will be no one to hold them accountable procedurally.\n\nWe’re really just going to be relying on the conscience of congressional republicans in 2026. We know many/most are absolutely willing to not certify election results.', 'created': '2024-11-08 16:34:40', 'submission_id': '1gmjmzo'}
{'comment': 'He might try that.', 'created': '2024-11-08 16:23:45', 'submission_id': '1gmjmzo'}
{'comment': "Its not doom and gloom it's the truth. Do you realize trumpers going forward will have the most powerful thing in the world called the supreme court for decades to come? protests are not going to do anything. Elections have big consequences. 2016 election was actually the most important when you think about it.", 'created': '2024-11-08 16:10:23', 'submission_id': '1gmjmzo'}
{'comment': 'Uh, he had an opportunity to do right his 1st presidency. He failed miserably. He has shown no remorse at any point in his life, for his life of wrongdoings. America is broken to allow him back in. That, by the way was all he preached while campaigning doom and gloom. Enjoy.', 'created': '2024-11-08 16:11:16', 'submission_id': '1gmjmzo'}
{'comment': 'Gore, Kerry, Clinton, Biden and now Harris ran mostly on maintaining the status quo. Biden dipped his toes into progressive politics with Build Back Better but he didn’t go all the way and almost lost to Trump. Obama is the only candidate that made hope and change the staple of his campaign and he’s the only one to win comfortably.\n\nBernie Sanders showed up in the 2016 primary as an outsider and almost won, it took the DNC everything to keep him from winning and it’s likely we wouldn’t be in the mess we’re in now if Bernie won. FDR was a progressive for the time and look where it got him, we need to embrace change because voters want that and we’re not giving it to them.', 'created': '2024-11-08 19:01:40', 'submission_id': '1gmjmzo'}
{'comment': 'Can you provide some sort of data backing up your claim about the tax credit for home-buyers being unpopular?', 'created': '2024-11-08 23:06:48', 'submission_id': '1gmjmzo'}
{'comment': 'Yep don’t even need the “I’m so and so and I approve this message”\n\nWe don’t need them to approve it, hell it’s better if they DON’T approve it. Just keep pumping outrageous half truths about every right and conservative position. Nothing pro-left just Anti-right', 'created': '2024-11-09 04:58:43', 'submission_id': '1gmjmzo'}
{'comment': "The problem is that Trump voters don't care that he's an awful human being. They don't care that he's a racist misogynistic facsist. For some of them that's a feature not and bug and for others, they just don't care. Dems should have spent less time focusing on that because in a lot of red-leaning states him not being a democrat is enough for them.", 'created': '2024-11-08 21:15:15', 'submission_id': '1gmjmzo'}
{'comment': 'Yeah, that\'ll will be huge. We started to see that with the "No endorsement" newspapers run by rich men.', 'created': '2024-11-08 16:14:09', 'submission_id': '1gmjmzo'}
{'comment': 'Well then let me go get rope to hang myself 😩', 'created': '2024-11-08 16:41:44', 'submission_id': '1gmjmzo'}
{'comment': 'Not to mention—they’ll probably try to push out Clarence Thomas to put a younger Justice on the court.', 'created': '2024-11-08 16:12:42', 'submission_id': '1gmjmzo'}
{'comment': 'This was more important. They were actually lazy and disorganized last time. Now they need to get revenge on everyone…', 'created': '2024-11-08 16:25:08', 'submission_id': '1gmjmzo'}
{'comment': 'The Supreme Court is powerful as long as people have faith in it. They have absolutely no ability whatsoever to enforce their opinions. They are the most abstract branch of government and they’ve already all but destroyed any faith half the country has in them.', 'created': '2024-11-08 16:37:39', 'submission_id': '1gmjmzo'}
{'comment': 'Progressives acting like America is so terrible and everyone needs a handout just to survive is the problem. Progressive are about to learn that the “status quo” Dems are pretty great. \n\nObama got so much support because their was a global recession in 08 and people wanted change. But then their was a red wave in 2010 after they gave people healthcare. \n\nActing like the 2016 primary was stolen from Bernie is the problem with progressives. He lost by 12% and the only reason he was relevant was because Hillary was unpopular. Then he got crushed by Biden in 2020. \n\nFDR was almost 100 years ago. Look at this last election results. look at the election results from the last 40 years. Progressives can’t win tight races and the answer isn’t doubling down on it.', 'created': '2024-11-08 19:43:18', 'submission_id': '1gmjmzo'}
{'comment': 'Did you not hear everyone slam her for saying this. Or saying that grocery stores price gouging is the reason for high prices. She even knows that’s not true, but she had to appeal to the left wing. Dems are getting too soft appealing to the left wing. Average Americans don’t want handout they want opportunities.', 'created': '2024-11-08 23:22:44', 'submission_id': '1gmjmzo'}
{'comment': 'Exactly. You can form LLCs that own nonprofits that run the ads. Would be completely dark. And just a complete propaganda machine. Join the battlefield.', 'created': '2024-11-09 14:04:43', 'submission_id': '1gmjmzo'}
{'comment': 'Yes there there will be a lot of pre-compliance and bending of the knee. We’ve seen it happen in other countries and we know what’s coming.\n\nHere’s a great example \n\nhttps://newrepublic.com/article/188170/jeff-bezoss-shocking-suck-up-moment-trump-alarm-us', 'created': '2024-11-08 16:17:54', 'submission_id': '1gmjmzo'}
{'comment': "I wouldn't go that far. Nothing is inevitable. I'm still like 40/60 on whether that will actually come to pass or not.", 'created': '2024-11-08 16:56:41', 'submission_id': '1gmjmzo'}
{'comment': 'I’ll toss in my buck oh five to support freedom!', 'created': '2024-11-09 14:27:36', 'submission_id': '1gmjmzo'}
{'comment': 'Me too. If 40% of the electorate is going to make voting decisions based on propaganda, should have all points of view thrown at them.', 'created': '2024-11-09 15:07:43', 'submission_id': '1gmjmzo'}
{'comment': 'Thrown at them good and hard', 'created': '2024-11-09 17:32:42', 'submission_id': '1gmjmzo'}
{'comment': "They didn't they are just the axe that convinced the trees to vote for them because their handle is made of wood.", 'created': '2024-11-08 17:14:08', 'submission_id': '1gmjk01'}
{'comment': 'These repub voters are the same people who think Trump and Musk are outsiders who are working against the "elites". I mean, that\'s such a major disconnect right there.', 'created': '2024-11-08 17:22:29', 'submission_id': '1gmjk01'}
{'comment': 'I think voters are just not engaged in politics. And with the age of social media upon us, people believe anything they see—there’s so much disinformation. I mean c’mon, you had people really believe that the wildfires in Maui a couple years ago were caused by the government and laser beams. They also believed that FEMA relief money was going towards undocumented immigrants and sex changes. The list goes on and on. Sexism, racism, misogyny, idiocy, and fear mongering won.\n\nI think Kamala ran an excellent campaign—I just think that the dems made a miscalculation of how dumb, racist, and sexist the American people really are. They will be begging for the democrats to help them come the 2026 midterms.\n\nI’ve lost faith in America as a country. They knew what Trump was and they voted for him anyway. America fired him and then hired him back. They deserve whatever comes to them—and I doubt it’ll be what they wanted.', 'created': '2024-11-08 16:25:16', 'submission_id': '1gmjk01'}
{'comment': 'They were programmed by corporate media to fear the other. Amplified by right wing radio and media and podcasting and hammered home constantly on social media. \n\nWhen they lose health care and social security they will also believe it’s because of the democrats because these instruments will tell them and use the same ways to enforce it.', 'created': '2024-11-08 16:28:20', 'submission_id': '1gmjk01'}
{'comment': 'The long running (and I mean decades long) war against education is paying off. Workers don\'t know how tariffs work. Workers believe that the rich should be idolized. Workers think that "others" are coming for their jobs. Workers have no idea about history, especially around labor. At the end of it all, education is being accepted as subversive indoctrination of kids by way too many Americans.', 'created': '2024-11-08 17:46:35', 'submission_id': '1gmjk01'}
{'comment': 'Imagine your factory is closing. Which answer do you think appeals more to the average worker?\n\n**A:** We live in a complicated and globalized world. Manufacturing is changing to other countries like China and India. Highly educated people are what we need right now in a high tech economy. We cant induce tariffs because this will hurt our whole economy in the end. I feel really sry for you that you are on the loosing side, we will try to help to change your carrier and support you with social wellfare\n\n**B: THE GOD DAMM MEXICANS TOOK YOUR JOB! We have to deport all illegal aliens, put high tariffs for products from China and MAKE AMERICA GREAT AGAIN. The elite is destroying the good old America. Iam the only one who can save America and I will put the US first!** (also you dont have to vote anymore)', 'created': '2024-11-08 16:43:23', 'submission_id': '1gmjk01'}
{'comment': 'And not for nothing. Go to many homes that have TFG flags all over and look at the absolute poverty they experience. Yet they vote for the “gold toilets” guy because he’s just like me and looking out for me. \n\nOnce you do, ponder what they actually mean by that. Get out of that cesspool and then focus on you and the people you care about (ones you know and ones you don’t). \n\nThen start local and focus on building your community. We need to join more community-based organizations. Have more conversations about our own humanity and hope by the grace of god people wake up. \n\nWe get through this by doing. Not whining, giving up, or leaving. \n\nSo as the late great black eagle Joe Madison would say, “what are you going to do about it”. \n\nFor me, it’s building my community, investing in building a left wing social, new, and traditional media; boycotting, and showing up when the shenanigans start.', 'created': '2024-11-08 16:36:04', 'submission_id': '1gmjk01'}
{'comment': 'I think a large portion is religion and perceived economics. The Republicans have really turned into a Christian Evangelical party. A lot of working class people (especially in the south and mid-west) come from a Christian upbringing (speaking from a working class upbringing in an Roman Catholic household). A lot of these homes work seriously hard just to scrape by and when they see "their money going to others" they get upset and are "that\'s MY money." So a lot of social plans that Democrats put together take money from taxes and put it to social programs that benefit groups such as immigrants, homeless, etc (groups that a lot of these working class people are not a part of). Then you add in businesses like Planned Parenthood which "promote the killing of babies" and "un-Christian principles" of contraptions for birth control. All the while, the price of "essential goods" only get higher (double in some areas) during what they perceive to be "the President\'s economy" and well, that\'s that. Those voters will say, "Trump will reduce the burden on corporations which will allow them to lower their prices, which means things will be cheaper. Then when Trump shuts down all those stupid social programs, our taxes will come down since we are no longer funding them."\n\nA lot of these middle and working class families, don\'t benefit from a proper civics class either, so a lot have developed an idea that somehow the president has all this power (which was not true and hopefully will continue to not be true) that everything that happens is tied to the president. They don\'t understand that local elections are actually usually more important than Federal (again until this election).\n\nSadly Democrats just haven\'t been able to find a consistent way to talk to the working and middle class since probably the 1980s. Most Democrats seem to stem from those who are more worldly, college educated, and live in urban areas (all the things that most working class people can\'t afford).', 'created': '2024-11-08 17:25:36', 'submission_id': '1gmjk01'}
{'comment': "# IMHO real issue is that all media, and i mean all media is compromised. There is no liberal media at any scale, and independent media is flooded with state/oligarchy messaging so it drowns out any independent messages. What right wing calls liberal MSM is just the managed opposition meant to distract.\n\n\n\n# While the left follows rules about donations and funding so they look well funded, the simple truth the right makes an enormous profit with their disinformation machine. It's massive, supported by billionaires, tech CEOs, foreign state actors, highly motivated religious nuts, and racists. We're bringing toothpicks to a gunfight.\n\n# A proposal: Create an aggressive counter propaganda multimedia network based on humor, ridicule, prebuttal, ans fast rebuttal of propaganda. Hire young comedians, thought leaders to host and present.", 'created': '2024-11-08 17:43:01', 'submission_id': '1gmjk01'}
{'comment': 'It’s really very simple. \n\nThe Democrats became the elite establishment. The college educated.\n\nMore and more women are getting college degrees. More and more men aren’t. \n\nAnd so it starts to skew, naturally. We became overly obsessed with women’s issues. And not even *all* women’s issues - elite issues that elite women care about - and have a personal ax to grind. Gender and race issues. \n\nWe acknowledged that women and people of color were disadvantaged. So far so good! So we enacted some policies - decades ago - to remedy that. \n\nAnd then we took it far. \n\nIt went from “women and people of color are disadvantaged and need help to be lifted up” to “the white cis hetero patriarchy is the root of all evil and needs to be stamped out. It’s our turn now!” they left the “to be oppressors” bit out but we felt it. \n\nI’ve felt it. Male friends in academia have felt it.\nWe were told to shut up and let others speak now. When they needed our opinion - they’d let us know. \n\nAnd so it went. We took it silently for years because they controlled the narrative. So you’re under the illusion it wasn’t happening because only the “deplorables” were complaining?\n\nNo we just took it in silence but we never liked it. \n\nThis isn’t me or anyone I know but it might as well be. I’ve been there: \nhttps://x.com/rwlesq/status/1854543817296261256?s=46&t=QFY8pcmLTW6fHfjF1gb0_Q', 'created': '2024-11-08 18:31:15', 'submission_id': '1gmjk01'}
{'comment': "What was the last time a democratic talking point said something an average working class person can relate to? Something that doesn't involve them having to feel bad because statistically they are white? Something that benefits THEM right away and not some abstract other demographic or class they don't belong to?\n\nthe democratic party is not good at politics.", 'created': '2024-11-08 21:34:04', 'submission_id': '1gmjk01'}
{'comment': "They aren't. They just pretend to be", 'created': '2024-11-08 16:47:56', 'submission_id': '1gmjk01'}
{'comment': '*but, but…tHE dEmOcRaTs aRe oUt oF tOuCh!!!*\nNo, you voted for a grifting capitalist to fix a broken capitalist system. What in the fuck is that going to do?? \n\nNow don’t get it twisted, the democrats are also capitalists, they want to the system to be fair. Let me repeat, they want the system to be **FAIR**. A republican running for office couldn’t give two shits about a fair economic system or policy. As far as they’re concerned, you and your entire family could die starving in the street. And they will vote to increase their stock price 0.25%.', 'created': '2024-11-08 16:34:36', 'submission_id': '1gmjk01'}
{'comment': 'They lied.', 'created': '2024-11-08 19:58:12', 'submission_id': '1gmjk01'}
{'comment': 'Working class fell for Trumps bravado, stunts and lies. They like his no nonsense "macho" way of speaking rather than the more deliberate and caring way of democrats.', 'created': '2024-11-08 18:34:53', 'submission_id': '1gmjk01'}
{'comment': 'I am dumbfounded that the real answer isn\'t here. Have any of us been to a rural area or a blue-collar working town? For my family living there, it doesn\'t feel like things are getting better. It doesn\'t feel like there are jobs. It feels like the jobs left. They did. American policy pushed all those jobs overseas. POOF. People\'s whole future GONE. And ***if*** those jobs were replaced with new jobs, more women got those replacement jobs than men. The men feel left out. There is no path. And the Democrats never ever say what they will do about it. Sure they talk a lot, but they don\'t say "we will return the kind of jobs you can do to America at a pay wage that will work for you." And Trump at least says he will do that. But the Democrats don\'t. That is it. There is not plan, and the Dems don\'t even lie about it.', 'created': '2024-11-08 19:08:20', 'submission_id': '1gmjk01'}
{'comment': 'I know two people who voted for Donald Trump. They did it because of the economy, they think that he will bring about deflation which actually might be true but I don’t think people understand what that really means. \n\nIt means everybody loses their job and we live in abject poverty nobody can afford anything so prices obviously have to come down.', 'created': '2024-11-08 19:45:26', 'submission_id': '1gmjk01'}
{'comment': 'Stupidity.', 'created': '2024-11-08 19:59:41', 'submission_id': '1gmjk01'}
{'comment': 'They’re not, but I don’t think you can blame voters for everything. \n\nIt’s perception - the perception is that democrats are elitist coastal big city dwellers that want an open boarder and no cops. And the Democratic Party did nothing to quell that perception, whether it’s true or not.', 'created': '2024-11-08 20:39:42', 'submission_id': '1gmjk01'}
{'comment': "About 10 years ago I left a County meeting and noticed mine was the only pick up truck in the parking lot. It's not the party I grew up with anymore.", 'created': '2024-11-08 21:47:56', 'submission_id': '1gmjk01'}
{'comment': 'I disagree with Bernie’s assessment, at least the way he said it. I think democrats have lost the popularity battle, lost the reality show contest. That’s what the media has allowed this to be. Republican voters voted for a criminal and a traitor, and a lot of democratic voters decided NOT to vote against a threat to our nation. \n\nThat doesn’t make me want to blame the democrats policies. I will say however, that wtf was Biden still doing in at 3 months until the election? It’s like they wanted to lose. The democrats lost the propaganda game. They need good messaging and organization. Especially since republicans own Twitter.\n\nEdit: I feel like Biden’s approach to helping the working class is a long term way of doing it, and maybe people are impatient. But if they think trump will help them more than Harris would… whew. Good luck with that', 'created': '2024-11-08 16:21:26', 'submission_id': '1gmjk01'}
{'comment': 'We show up in navy blue suits and Trot out middle aged billionaire celebrities in corporate owned arenas with choreographed and slick production and speeches and running legacy media tv commercials nobody under 55 sees. \n\nMeanwhile Trump was in barns and farmland with bare bones production, just making it up\nAs he goes and doing podcasts with young hosts. He was channeling indie vibes \n\nHe seemed down to earth and real. We looked corporate and elite', 'created': '2024-11-08 20:10:21', 'submission_id': '1gmjk01'}
{'comment': 'Dems need to find a better message for the working class. I’ve been a blue collar factory worker for 25 years and watched them all move right. \n\nThe main things I see improving Dems chances in these areas is to see a Republican plan fail and it hurts the people that voted for this. I don’t want people to suffer and struggle but when I see these plans it looks like what will happen. \n\nDems also may want to consider moving away slightly on some social issues. I think social issues moved more people right than anything else. That’s where I feel a lot of minority vote was lost.\n\nAlso stop treating all minorities the same. They have different cultures and that needs to be understood when you focus on social issues or let it be an easy thing to be attacked.', 'created': '2024-11-08 20:34:58', 'submission_id': '1gmjk01'}
{'comment': '“Policies this, policies that”. Policy doesn’t matter. The average voter is not going to research policy. You need to be thinking about rhetoric. \n\n\n\nRepublican rhetoric for the past 8 years: “Gas is high, taxes are high, you don’t make enough money because of the Democrats. Democrat policies like Medicare for All are going to raise your taxes. Vote for us and we’ll boost your paycheck and make things cheaper.”\n\n\nDemocrat rhetoric for the past 8 years: “The guy who’s promising to lower taxes and make groceries cheaper is evil. Social issues are more important than money, and we want to institute policies that will raise taxes” \n\n\nPeople who spend their entire life working to provide *don’t have the fucking time or resources* to give a shit about trans rights or expanded immigration or Medicare for all. They want to keep more money in their pocket. One party promises to make that happen, the other says that it’s not as important as social issues.', 'created': '2024-11-08 22:05:55', 'submission_id': '1gmjk01'}
{'comment': 'This is the most like reason that people turned to republicans or stayed home. The “Who We Serve” section at democrats.org doesn’t mention what was important to people in this election cycle. It also doesn’t mention working people or men. https://democrats.org/who-we-are/who-we-serve/\n\nPeople got fed up with the democrat’s message, because they took their base of working class people for granted.', 'created': '2024-11-08 22:10:49', 'submission_id': '1gmjk01'}
{'comment': 'They are not it’s a ruse', 'created': '2024-11-08 22:28:45', 'submission_id': '1gmjk01'}
{'comment': 'They ran a horrifying campaign of misinformation. \n\nThey fucking lied. Non-stop. Objective lie after objective lie. \n\nNever forget what the republicans have done to the country.', 'created': '2024-11-09 01:53:50', 'submission_id': '1gmjk01'}
{'comment': 'They are the party of the idiot class.', 'created': '2024-11-09 02:17:32', 'submission_id': '1gmjk01'}
{'comment': "Right? There are literally working class dudes on FB arguing against labor laws right now. They apparently want more dangerous working conditions and less overtime pay because OSHA and OT are lib ideas. Talk about brainwashed.\n\nI feel like I've spent my whole life fighting for people who have less than me while they fight back. So f\\*ck 'em. Let them rot.\n\nI read an article yesterday about how the only race Trump lost ground with were white people and he gained ground with Latinos and Black people. Why are white elites like me killing ourselves to help people who don't want help? Screw that.", 'created': '2024-11-09 02:29:16', 'submission_id': '1gmjk01'}
{'comment': 'All these comments just show how we do not understand how to have conversations with working class people. As someone from the rust belt living in LA, I see this shit daily. People here are “liberal” yet they just shit talk “fly over country” and act as if their problems aren’t legitimate. Same way they overlook homelessness and whatnot as well. The democrats just need to stop being so fucking condescending. That’s why Tim Walz, Bernie, AOC, etc are popular. Authenticity is so obvious and most democrats do not have that.', 'created': '2024-11-09 03:29:38', 'submission_id': '1gmjk01'}
{'comment': 'They’re not. They’ve just managed to con idiots into thinking that they are.', 'created': '2024-11-09 03:57:59', 'submission_id': '1gmjk01'}
{'comment': 'They didn’t. They hijacked the voters and the electoral college', 'created': '2024-11-09 04:31:58', 'submission_id': '1gmjk01'}
{'comment': 'Branding and better marketing?', 'created': '2024-11-09 05:54:34', 'submission_id': '1gmjk01'}
{'comment': "They aren't. They lied and used culture war bs to fool them. Trump can't and won't deliver.", 'created': '2024-11-09 06:21:33', 'submission_id': '1gmjk01'}
{'comment': "I don't think this is very hard to understand. \n\nBeing anti illegal immigration is part of being pro worker. Being for slow, controlled, and limited immigration in general is also the pro worker stance. Mass immigration puts downward pressure on working class wages while simultaneously increasing competition on jobs in general. \n\nFree trade/bad trade deals are anti worker. Forcing US factory workers to compete with foreign laborers earning $0.04/hr means the US workers lose their jobs. \n\nEnvironmental policies that make things like steel mills impossible to run in the USA cost people their jobs. The worst pat is that shutting US steel mills down actively makes climate change worse. This goes for nearly all climate change initiatives. Telling working class people that their livelihood is a sacrifice you are willing to make is a losing position. \n\nThis is just a few of the most pertinent issues imho but the current narratives around social issues are a problem as well.\n\nThe crazy part is that Democrats don't even need to switch sides on these issues. They just need to pump the brakes on most of them and take positions that reflect the reality of what it does to working class people. Push changes slower and protect people's jobs.", 'created': '2024-11-08 16:52:19', 'submission_id': '1gmjk01'}
{'comment': "There is no working class party. That's the problem.", 'created': '2024-11-08 16:48:20', 'submission_id': '1gmjk01'}
{'comment': 'Good old false consciousness.\n\n[https://en.wikipedia.org/wiki/False\\_consciousness](https://en.wikipedia.org/wiki/False_consciousness)', 'created': '2024-11-08 16:39:35', 'submission_id': '1gmjk01'}
{'comment': 'They didn’t they just think they are.', 'created': '2024-11-08 17:27:44', 'submission_id': '1gmjk01'}
{'comment': "They're not. I know that's obvious. But they have a huge media infrastructure that tells people 24-7 that they are. They lie. And they've done it for so long so successfully. \n\nAnd they will continue to lie with more success than we like because of that media infrastructure.", 'created': '2024-11-08 17:35:02', 'submission_id': '1gmjk01'}
{'comment': 'They’re still not. There is no party of the working class. Just a giant disinformation machine and a massive gulf between the daily realities of the wealthy “ruling class” and the rest of us. It’s all working as designed. Chip away at public education and at our attention spans until we’re all too busy and distracted distracting ourselves to notice our country has been hijacked. We’ll all be old or dead before things begin to shift away from the way they are now, sad but true.', 'created': '2024-11-08 18:12:20', 'submission_id': '1gmjk01'}
{'comment': 'I don’t think the Democratic Party ever completely recovered the working class after Clinton pushed NAFTA through. I grew up in the rust belt and I remember the sense of betrayal felt toward the Democrats by union members. It was a crushing moment. It was the realization that the jobs that hadn’t already left would soon be leaving and they weren’t coming back. Factories closed and were replaced by things that were promised to bring in new jobs, like Casinos or a Bass Pro Shop, often built on the same site as the former factory', 'created': '2024-11-08 19:07:53', 'submission_id': '1gmjk01'}
{'comment': "We need better messaging. Trump can promise action and it's more effective than half-assedly pointing to our policy. Shifts to the right aren't the answer for the dems-economic populism is.", 'created': '2024-11-08 19:58:11', 'submission_id': '1gmjk01'}
{'comment': 'If we would had run Bernie in 2016 we wouldn’t be in the situation now.', 'created': '2024-11-08 20:10:11', 'submission_id': '1gmjk01'}
{'comment': "they're not.", 'created': '2024-11-08 20:14:43', 'submission_id': '1gmjk01'}
{'comment': 'They didnt, but Trump gave them a way to vent their frustration, like Hitler, Mussolini or Franco did 100 years ago, GOP wont fix their problems but at least they gave them a scapegoat so they can feel better.', 'created': '2024-11-08 20:17:58', 'submission_id': '1gmjk01'}
{'comment': "I think it's because they don't want to be working class. They want to be influencers and have all the stuff upper middle class and above has.", 'created': '2024-11-08 20:40:11', 'submission_id': '1gmjk01'}
{'comment': 'They didn’t, they just co-opted the messaging. They dgaf about anyone but themselves and will say and do whatever they have to in order to acquire and retain power.', 'created': '2024-11-08 20:46:06', 'submission_id': '1gmjk01'}
{'comment': 'Lying', 'created': '2024-11-08 22:49:18', 'submission_id': '1gmjk01'}
{'comment': 'The Clinton administration working with the GOP to enact NAFTA and gutting good paying jobs by moving manufacturing overseas created this climate two generations later. It’s a direct result. \n\nI’m still a democrat, and I’m very involved in my labor union, but I have no illusions about how corporate greed breathed life into the MAGA movement and the exodus of workers away from the Dems. \n\nIt’s not the only reason we lost, but it’s a factor.', 'created': '2024-11-08 22:49:50', 'submission_id': '1gmjk01'}
{'comment': 'Here’s the problem. Most of these voters didn’t look into any of this. Most voters simply thought, my life sucks rn, nothing is getting better, do I want 4 more years or this or do I want to go back to 2016? That’s really all it came down to. On top of sexism, racism, misogyny and all the hate MAGA has. People are fucking stupid, the ones who voted for Trump NEVER stopped to think how he was going to make it better for them. We also had millions sit the election out. That’s what’s even more alarming. Our only hope is project 2025 was a fear tactic. Trump won’t be motivated by anything other than tax cuts and golf. I’m sure he’ll try to deport some people but hopefully give up when he finds out how difficult and expensive it is. There is only so many things he can do before even republicans impeach him. I don’t think we are looking at becoming nazi Germany. At least I hope not.', 'created': '2024-11-08 23:12:48', 'submission_id': '1gmjk01'}
{'comment': "Unfortunately I don't think we account for enough peoples prejudices. I hate to say it, but lots of people have sexist/racist leanings.", 'created': '2024-11-08 23:22:02', 'submission_id': '1gmjk01'}
{'comment': 'The Republicans own a fully actualized total media dominance on every sphere. The own Talk radio, they dominate with Cable news channels, they control social media podcasters, they get free exposure by Musk owning Twitter X, Trump constantly says things , even if crazy that gets him media coverage and so people have recognition of him which creates trust. It is brilliant actually.', 'created': '2024-11-08 23:23:31', 'submission_id': '1gmjk01'}
{'comment': "It's worth remembering that some of these voters showed up and didn't even realize Biden wasn't on the ballot. \n\nYou think they give a shit about policies if they can't even keep up with who the nominee is? I know it's trendy to rag on Repubs being low information voters, but we apparently had just enough of our own that this problem might explain more of the election than you think.", 'created': '2024-11-08 23:33:47', 'submission_id': '1gmjk01'}
{'comment': 'I think it’s a combination of misogyny, anti intellectualism and if course racism.', 'created': '2024-11-09 00:25:38', 'submission_id': '1gmjk01'}
{'comment': '\xa0\n\nThis comment turned out to be too long so I am posting it in 3 parts. \xa0\n\n\xa0\n\nPart one of\xa0 three\n\nNot working class. The VULGAR class.\n\nDon\'t downvote. let me explain.\n\nThe term vulgar literally originally meant " of and or relating to the common people" ( common people being called Vulgus in latin.) see also the term " plebeian".\n\nThis set up a dichotomy, one set up by the elite in Roman Times , in which the tastes of the common person was viewed as crass and wrong. Because of this, one\'s mannerisms and modes of behaving became class markers, and so they remained until extremely recent times ( and by recent I mean the change STARTED in the 1960\'s)\n\nThe key difference here, is that, before about 1960, it was commonly understood that the working, vulgar, class would aspire to imitate their " betters". Thus the media would for example, often broadcast opera and symphony orchestral music over the radio, not because this was popular but precisely because it was NOT popular. It was to show the vulgar masses what they should aspire to become etc. It was a paternalistic and elitist world view, and one that had existed for millennia. As you moved up in life, your tastes had to change. This was a truth universally understood.\n\nWhat changed? Mass Media, and World war 2. In the 1950\'s thanks to strong unions, the fact that the United States was the largest industrial area in the world that had not been turned into rubble during the war, and in the case of white people, massive housing subsidies leading to the american suburbs, much of the " vulgar" class was economically elevated into the middle class.\n\nAgain this happened over a period of maybe 15 years. So their tastes did not change because that would take a lot longer . All of a sudden you had a bunch of people with vulgar tastes but middle class purchasing power. \n\nThen in the 1970\'s the economy stagnated. No new members of the vulgar class were being elevated into the middle class, and they haven\'t really been at any point since then. Gradually, many of those who had been elevated into the middle class slipped back into poverty, a process that continues to this day.', 'created': '2024-11-09 01:31:41', 'submission_id': '1gmjk01'}
{'comment': "Propaganda and gullible people, that's how. Exploit their racism, xenophobia, and hatred and that overrides any common sense they might have. It's called the Southern Strategy.", 'created': '2024-11-09 02:59:28', 'submission_id': '1gmjk01'}
{'comment': 'Most of us spend more time hearing about gun control than how we were going to bring inflation down and food prices down to pre COVID levels. \n\nIs not that people chose Trump and the republicans, is that the messaging was not there because the party thought they were going to win because they were running against Trump and got lazy so even less people showed up to vote.', 'created': '2024-11-09 03:25:49', 'submission_id': '1gmjk01'}
{'comment': 'There is a difference between speaking to the working class and supporting them.', 'created': '2024-11-09 03:50:05', 'submission_id': '1gmjk01'}
{'comment': 'Cosplay and bigotry.', 'created': '2024-11-09 05:06:13', 'submission_id': '1gmjk01'}
{'comment': 'They are not. The world will soon see.', 'created': '2024-11-08 16:23:05', 'submission_id': '1gmjk01'}
{'comment': "We have to start to come to terms with the fact that racism and nativism that feeds into fascism is just a natural human instinct. Because of this it's always going to be possible for leaders to make masses of people vote against their own interest out of paranoia and fear for their security.\n\nSo far Democrats have mainly only won in the last few cycles when the person they were replacing was deeply unpopular and untrusted. But the pendulum swings back their way the very next election. To break this cycle it's going to require the party to do something different. What that is I'm not even entirely sure yet.\n\nI was thinking last night about how we may enter a period of single term presidencies that is not the norm. It's going to become the norm as long as we have leaders that couldn't get elected in a normal election but win only because they're not the incumbent. Hillary was seen as a 3rd Obama term. Trump was denied a 2nd term. Harris was seen as a 2nd Biden term. Trump can't run again but there's a good chance that the next person who runs for the GOP will be connected to the Trump movement in a way. I don't see JD Vance being that guy but what the hell do I know? We may flip flop until one party figures out how to reach voters for real and meet their needs and not just talk to them in an election and then serve wealthy oligarchs from both sides of the isle.", 'created': '2024-11-08 16:43:54', 'submission_id': '1gmjk01'}
{'comment': 'The white male working class generally - to oversimplify - has been made abject by technology & off-shoring. \n\nSince they equate their identity with "being the man of the house," who "brings home the bacon," their increasingly reduced ability to do this causes them to seek someone or something to restore their self-worth. Both Trump & Evangelical GOP Jesus promise to do this.... but you notice they never deliver. \n\nStill, just to hear the rhetoric makes them feel more powerful, so they gravitate to that, even as their power in reality continues & will continue to degrade.', 'created': '2024-11-08 20:00:22', 'submission_id': '1gmjk01'}
{'comment': '', 'created': '2024-11-08 17:34:32', 'submission_id': '1gmjk01'}
{'comment': 'Religion', 'created': '2024-11-08 17:14:35', 'submission_id': '1gmjk01'}
{'comment': "I get if people say democrats can be not nice towards working class people. But republicans??? Yeah, that's more like expecting a happy ending in a sad-romance movie", 'created': '2024-11-08 17:33:10', 'submission_id': '1gmjk01'}
{'comment': "Because they'll be rich one day! Just you wait!", 'created': '2024-11-08 17:34:44', 'submission_id': '1gmjk01'}
{'comment': 'It’s easy. Lies, that’s it. That’s the explanation.', 'created': '2024-11-08 18:35:00', 'submission_id': '1gmjk01'}
{'comment': "A lot of bashing voters for being stupid in the comments. That's like a salesman screaming at potential clients for not buying his products.\xa0 On a high level, it's the economy. Although the data is good, the actual experience for most people is that things are worse off now than before the Biden administration. Low unemployment and better inflation doesn't mean much when folks can't afford to buy a house or the groceries they need. By telling people that things are better even if that's not what they see in their day to day life, Democrats are proving themselves to be out of touch and insensitive to the needs of the public. Trump has told people a simple thing: life sucks, and I'm going to fix it. Many people feel that their lives are not going well right now so obviously they will side with the candidate who agrees with them. On another level, the Democratic Party leadership is guilty of political mistakes on a catastrophic level. Biden promised he would be a transition to a new generation then went back on his word. He prevented a competitive primary from occurring and invalidated the results of the state of New Hampshire in the process because it didn't fit his agenda. He dropped out of the race with three months to go, leaving Kamala no time to establish herself as a candidate. His administration did not prepare Kamala as a successor--she was almost invisible the past four years. He anointed Kamala without a single vote for her in a primary which is frankly undemocratic. Again, there is a theme of dictating to voters how things are going to happen instead of listening to them. Such arrogance in talking down to the voter, dictating to them instead of listening, and telling them that their lived experience is wrong, deserved to be punished. And it has.", 'created': '2024-11-08 19:59:14', 'submission_id': '1gmjk01'}
{'comment': 'Don’t try and change their minds. Let the corporations eat them alive at this point.', 'created': '2024-11-08 20:03:40', 'submission_id': '1gmjk01'}
{'comment': "They're not. They just got more people to vote for them. Dem-leaning voters sat this one out... They will be sorry. We will all be sorry.", 'created': '2024-11-08 22:02:31', 'submission_id': '1gmjk01'}
{'comment': "We'll see in a few years as the working class is screwed on pay, overtime, healthcare,benefits, higher costs for everything.", 'created': '2024-11-08 22:11:02', 'submission_id': '1gmjk01'}
{'comment': 'Here is one view\nhttps://www.nytimes.com/2024/11/06/opinion/trump-elites-working-class.html?smid=nytcore-ios-share&referringSource=articleShare\n\nOr read up on Bernie Sanders', 'created': '2024-11-08 22:13:25', 'submission_id': '1gmjk01'}
{'comment': 'working class too dumb to understand rep party only cares about the 1% and facism', 'created': '2024-11-08 17:37:19', 'submission_id': '1gmjk01'}
{'comment': "They didn't.", 'created': '2024-11-08 17:43:31', 'submission_id': '1gmjk01'}
{'comment': '[removed]', 'created': '2024-11-08 17:44:46', 'submission_id': '1gmjk01'}
{'comment': 'Bernie said it. Dems just stopped appealing to the working class and came off as aloof', 'created': '2024-11-08 19:10:52', 'submission_id': '1gmjk01'}
{'comment': 'Bernie was at a school in 2003 and explained exactly how this happened', 'created': '2024-11-08 19:16:17', 'submission_id': '1gmjk01'}
{'comment': 'The Dems need to go in harder. They need to abandon the center and fucking go full populist already!', 'created': '2024-11-08 19:16:43', 'submission_id': '1gmjk01'}
{'comment': 'The truth is that every democracy saw the incumbents lost vote share because of Inflation. For the first time in 100 years.\n\nhttps://preview.redd.it/333vve2nypzd1.jpeg?width=1080&format=pjpg&auto=webp&s=435a015b683cbd7adc86ceef4080e1ad5883ccb2', 'created': '2024-11-08 19:18:00', 'submission_id': '1gmjk01'}
{'comment': "Start with NAFTA and sincerely ask a boomer from the rust belt. You won't like their answer but that's the reason.", 'created': '2024-11-08 19:18:49', 'submission_id': '1gmjk01'}
{'comment': "The working class is uneducated. They were duped by a dumb man pretending to be a smart man that they don't have to listen to the educated class anymore. This was a fuck you to all educated folks out there from the non educated.", 'created': '2024-11-08 19:21:55', 'submission_id': '1gmjk01'}
{'comment': "wait until they lose their health care, social security, autistic kids have no more services, factory jobs lost to tariffs, it's going to get bad.", 'created': '2024-11-08 19:22:47', 'submission_id': '1gmjk01'}
{'comment': 'Working class Americans have consistently seen their standard of living decrease since the 80s.\n\nThe Republicans offer an explanation and a solution. It\'s because of immigrants and overregulation. They\'re not real explanations, but it\'s more than what the Democrats have offered them, which is just to say "Hey, we see that you\'re struggling, but we\'re not going to do anything about it."', 'created': '2024-11-08 19:22:48', 'submission_id': '1gmjk01'}
{'comment': "Trump is a generational political talent when it comes to mobilizing and getting voters to turn out. Why this is I don't understand but at this point it is a simple fact. \n\nIf you look at abortion ballot measures across various states D policy did great. MO legalized abortion and NE voted only narrowly to keep a 12 week abortion ban. This is impressive and shows that D policy, or certain D policy, is very popular. \n\nFurther Harris did very well in terms of total vote get. \n\nI hesitate to up-end the entire D platform because one guy is popular in politics.", 'created': '2024-11-08 19:24:22', 'submission_id': '1gmjk01'}
{'comment': 'Make a man believe he is better than another and he will not only let you rob his pockets, he will turn them out for you.', 'created': '2024-11-08 19:26:10', 'submission_id': '1gmjk01'}
{'comment': "The largest voting block in the USA is white men and the Democrats didn't offer a message that actually sold their policies to them.\n\nInstead they just acted as if the good ones would do the right thing.", 'created': '2024-11-08 19:27:53', 'submission_id': '1gmjk01'}
{'comment': "Ratter (Morning Joe) explains in charts what's happened to **working class wages and wealth**. They *think* Trump is going to fix it.\n\n[Steve Rattner: America has an inequality problem, and it’s dragging down the average citizen | Watch](https://www.msn.com/en-us/news/politics/steve-rattner-america-has-an-inequality-problem-and-it-s-dragging-down-the-average-citizen/vi-AA1tFMUo)", 'created': '2024-11-08 19:33:15', 'submission_id': '1gmjk01'}
{'comment': '30+ years of propaganda, lies, and disinformation. Working class people tend to listen to hate radio while working or watch Fox at home (or Newsmax or OAN when they came out). Hate and bigotry is addictive. They say that in North Korea the people are forced to watch propaganda. In the United States people do it willingly.', 'created': '2024-11-08 19:35:13', 'submission_id': '1gmjk01'}
{'comment': 'GOP made the working class stupid. The drain on resources to the public school system is not an accident. Ignorance is easy to manipulate', 'created': '2024-11-08 19:39:18', 'submission_id': '1gmjk01'}
{'comment': "They didn't--they've just paid significant lip service to them.\n\nWalking the walk is all well and good, but Democrats actually do need to talk the talk as well.", 'created': '2024-11-08 19:40:00', 'submission_id': '1gmjk01'}
{'comment': 'They are stupid. Promise them lots of stuff with lies and they will vote for them. They have an idiot celebrity has the president. A literal con artist. They believe him and put him on a pedestal. \n\nThe actual intellectual people are the ones these idiots ignore. This is like an electrician telling you how to wire up a building and doing the exact opposite. You are going to blow a fuse and possibly start a fire and burn it to the ground.', 'created': '2024-11-08 19:41:22', 'submission_id': '1gmjk01'}
{'comment': "They bought Twitter and CNN. So they control the message. That's really all it is. Voters don't get exposed to much other than outrage about Kamala smiling or Biden being old. So they don't hear that Democrats saved Union pensions, invested billions in infrastructure, lowered drug costs, brought inflation under control, etc. \n\nAll they hear is Democrats hate men, love illegal immigrants, and inflation is all Bidens fault. Buy the media, buy the country.", 'created': '2024-11-08 19:42:34', 'submission_id': '1gmjk01'}
{'comment': 'They aren’t, they just convinced people they are. It’s unfathomable to anyone remotely aware of politics. And most people simply aren’t. They want to be lied to. They want to feel something. They want to feel strong by being a part of “burning it all down”. That is all.', 'created': '2024-11-08 19:43:47', 'submission_id': '1gmjk01'}
{'comment': 'They didn’t. They just tricked the stupidest ones into believing they were. And we did nothing to combat that notion.', 'created': '2024-11-08 19:43:55', 'submission_id': '1gmjk01'}
{'comment': 'Three things: 1.) We have a massive engagement problem. There’s no reason 2/3rds of eligible voters don’t participate. That’s a massive problem. 2.) There’s a massive education problem in this country. 54% of adults have a below 6th grade reading and comprehension ability…. And 3.) Brainwashing at multiple levels. When you repeatedly hear false information (that you don’t think critically about), or you are taught from a young age the wrong info, you don’t know what you don’t know and you push back on anyone with a counter opinion. For example… all southern states reach about the civil war as a war fought over states rights… they don’t highlight that it was a war over the right to own slaves. Instead it’s about “the right to enforce their own laws, and economic freedoms.” That’s BRAINWASHING.', 'created': '2024-11-08 19:47:41', 'submission_id': '1gmjk01'}
{'comment': "When you abandon one of your core segments, they will find someone else and think they're better: \n[https://newrepublic.com/article/185791/consultants-lost-democrats-working-class-shenk-book-review](https://newrepublic.com/article/185791/consultants-lost-democrats-working-class-shenk-book-review)", 'created': '2024-11-08 19:47:53', 'submission_id': '1gmjk01'}
{'comment': "Well it's not democratic propaganda that's being beamed into Chevy Silverados and Ford F-150s across the country 24 hours a day.", 'created': '2024-11-08 19:50:52', 'submission_id': '1gmjk01'}
{'comment': 'The White Working Class. Still, LOL.', 'created': '2024-11-08 19:52:28', 'submission_id': '1gmjk01'}
{'comment': 'Lies. But they’ve been fooled by this way more than once so at this point it’s shame on them.', 'created': '2024-11-08 19:53:26', 'submission_id': '1gmjk01'}
{'comment': 'Hope and lack of education. Many people blamed the higher prices, housing costs, and gas on Biden per the republicans ads, (having no concept that this is occurring in every developed county), having no intelligence or critical thinking to realize this is all the aftermath of Covid. Unfortunately this worked, and people want hope for a better economy, and that hope was Trump. What they don’t realize is all of trumps buddies could lower prices in a heart beat, but that would require them to loose money in their enormous wealth.\xa0', 'created': '2024-11-08 19:58:06', 'submission_id': '1gmjk01'}
{'comment': 'Immigration. Duh.', 'created': '2024-11-08 20:00:49', 'submission_id': '1gmjk01'}
{'comment': 'Grievance', 'created': '2024-11-08 20:03:53', 'submission_id': '1gmjk01'}
{'comment': "just because a thing is said, doesn't mean a thing is true", 'created': '2024-11-08 20:06:19', 'submission_id': '1gmjk01'}
{'comment': 'NAFTA and general embrace of neoliberalism under Clinton.', 'created': '2024-11-08 20:07:10', 'submission_id': '1gmjk01'}
{'comment': 'They’re not, AM radio and Fox News just makes them think that', 'created': '2024-11-08 20:08:25', 'submission_id': '1gmjk01'}
{'comment': "They'll find out someday...or not. But either way, they are going to SUFFER and LOSE. Only the oligarchs and top 5% win in this turn of events.", 'created': '2024-11-08 20:10:51', 'submission_id': '1gmjk01'}
{'comment': 'Lies, propaganda, and wedge issues to divide people.', 'created': '2024-11-08 20:16:47', 'submission_id': '1gmjk01'}
{'comment': 'Working class people need to go to college', 'created': '2024-11-08 20:21:55', 'submission_id': '1gmjk01'}
{'comment': "We've systematically dumbed down our education systems over the last forty-some years to the point where, when combined with social media and profit-driven news, people literally can't think for themselves, anymore.", 'created': '2024-11-08 20:22:12', 'submission_id': '1gmjk01'}
{'comment': 'Because working class people are by and large stupid. It\'s not elitist, it true."We passed the Chips Act" means nothing when cereal is $8 a box.', 'created': '2024-11-08 20:25:34', 'submission_id': '1gmjk01'}
{'comment': 'Democrats embraced DEI too fast and lost every bit of momentum for any mandate they were given. \n\nObama- failed on universal healthcare and codifying abortion.\n\nBiden- printed trillions of dollars and couldn’t see the forest for the trees on inflation. Americans were pissed and he couldn’t seem to muster any sort of anger or attempt to do anything to solve housing issues. \n\nWhat we saw: a huge uptick of support for a very vocal minority of people (trans). Our nation still hasn’t moved past racism and people thought it would be a good idea to push a radically new acceptance of gender. It was a gold mine for Republicans and the messaging was they’re too busy to fix the economy (whether true or not) bc they want your kid to be whatever gender they want. \n\nIt’s as simple as that. The middle class felt and was abandoned. Republicans actually do what they say they’ll do. Democrats cannot unify support behind anything that impacts regular people. Poor people and immigrants? Sure. The working class? Nope. \n\nI talk to a lot of my friends who are Republican. This is exactly what they tell me.', 'created': '2024-11-08 20:25:40', 'submission_id': '1gmjk01'}
{'comment': 'Bernie has a strong opinion on this. I think we should listen to him', 'created': '2024-11-08 20:27:00', 'submission_id': '1gmjk01'}
{'comment': 'They’re not. The convinced them that they are but are far from it.', 'created': '2024-11-08 20:32:24', 'submission_id': '1gmjk01'}
{'comment': 'It is around race stoked by that guy and his minions.', 'created': '2024-11-08 20:32:37', 'submission_id': '1gmjk01'}
{'comment': 'They didn’t. They just told the working class they did, and enough of the working class believed them.', 'created': '2024-11-08 20:34:32', 'submission_id': '1gmjk01'}
{'comment': 'The Dems lost their votes along the way with the crappy economy they inherited but wouldn’t speak about. One thing the Republicans are really good at is manipulation and strategy. Why else would Trump work at McDonald’s and with garbage trucks? The Dems have no real strategy and lack long term vision. And that’s why we’re here right now in this dark place. Time to take action and start planning!', 'created': '2024-11-08 20:48:26', 'submission_id': '1gmjk01'}
{'comment': "The electorate is stupid and gullible. Republicans have been running a misinformation machine since the first Clinton presidency. Since before social media existed. For the entire history of the internet. And to my continual disappointment democrats have never figured out how to counter it. \n\nFalse information that stokes outrage travels many times faster than facts. Facts are boring and the public has no patience for them. Republicans have used lies to create an opposite world where up is down, black is white, and they represent the working class.\n\nI don't know what to say anymore. All those union workers who voted republican are in for a nasty surprise. But we're all fucked now. I don't expect free and fair elections going forward. Not when the nazis behind Project 2025 have been jerking off to the idea of civil war, mass incarceration and public execution. I have no hope anymore.", 'created': '2024-11-08 20:50:33', 'submission_id': '1gmjk01'}
{'comment': 'It’s messaging. If you can’t communicate your views to the masses you will lose them. It’s a tough pill to swallow but your average, blue collar worker doesn’t give a shit about special interest groups. They are more worried about the money in their pocket. And it shows because Trump’s message was “prices are high because of Biden and the dems. Vote for me and I’ll fix it.” Obviously here we know he’s full of shit. But for Joe blow who only watches Fox News or anything straight from dear leader, he is going to believe it. \n\nHowever, the next four years will put the Dems in a position of opportunity. We all know this tariff nonsense is gonna bust the country. Dems need to prepare a message that blames Trump and his tariffs for why all their shit is sky high. After that, their message should imitate that of Roosevelt with the New Deal or LBJ and the Great Society. Programs like these are what will appeal to the masses. Push on these ideas and you will win back the blue collar worker.', 'created': '2024-11-08 20:50:45', 'submission_id': '1gmjk01'}
{'comment': 'They are not—the GOP such as it is currently constituted is the party of FEAR, and the anger and hate and violence and intolerance that fear begets.\n\nIt’s why Trump is their leader—he is fuller of fear than all of them, and they hear their inner voices in his words, and they listen and believe not because it makes sense, but because fearful words masked in a forceful delivery often makes sense to the scared and no sense to those who are not fearful.\n\nStay fearless.\n\n*Edited some words', 'created': '2024-11-08 20:50:48', 'submission_id': '1gmjk01'}
{'comment': 'They aren’t, they’ve just tricked the working class into voting against their best interests. The working class is generally not well educated and less capable of critical thinking skills, which the GOP has discovered they can easily exploit using fear-based rhetoric.', 'created': '2024-11-08 20:52:02', 'submission_id': '1gmjk01'}
{'comment': 'Fear.', 'created': '2024-11-08 20:52:17', 'submission_id': '1gmjk01'}
{'comment': "They talked directly to the rural and working class people. It didn't even have to matter what they said. They just actually showed up to forgotten about places and talked directly to these people.", 'created': '2024-11-08 20:52:44', 'submission_id': '1gmjk01'}
{'comment': 'I think the lack of education, the amount of misinformation, and general apathy have led to this point. Trump will actually wind up getting fewer votes this election than he did in 2020. Unfortunately, I think America is still inherently racist, and sexist. The numbers don’t lie. In NC, ~400k fewer votes for Josh Stein for governor than votes for Kamala. I think with the exact same message, a white male would have easily defeated Trump. I don’t want to believe it, but it’s true. Kamala was SUCH a better candidate, it wasn’t even close. Everything has been so much better under Biden than it was under Trump. I’m just saddened, and scared for our children, who are now going to be subject to Trump‘s scorched earth policies. 🥲', 'created': '2024-11-08 20:54:05', 'submission_id': '1gmjk01'}
{'comment': 'The rise of George Wallace in Alabama, and how Nixon strategist Kevin Phillips distilled Wallace\'s approach into a 1969 book, "The Emerging Republican Majority". Which Nixon and every subsequent GOP Presidential winner has used and built on, up to and including Trump. \n\nThe two historians who produce the podcast, "The Rest is History" have an excellent summary of this in their episode, "How the South Turned from Democrat to Republican". [How The South Turned From Democrat To Republican](https://www.youtube.com/watch?v=XugwohThlyI)', 'created': '2024-11-08 21:00:05', 'submission_id': '1gmjk01'}
{'comment': "the simple answer is that inflation hit lower & middle-class workers the most. A 30% increase in your grocery bill isnt going to break you if you're household income is 6 figures, but that's vacation money or travel ball funds for those at the median income. Inflation skyrocketed under Biden/Harris, and you can't run from that or dismiss it. It's probably the biggest reason for lower turnout from Blue supporters.", 'created': '2024-11-08 21:00:06', 'submission_id': '1gmjk01'}
{'comment': 'They aren’t. The election was stolen.', 'created': '2024-11-08 21:01:22', 'submission_id': '1gmjk01'}
{'comment': '"See that invisible immigrant over there? He\'s trying to take your job. If he doesn\'t get it, some affirmative action Black guy or woman will. Only we can stop the woke invasion!"', 'created': '2024-11-08 21:02:23', 'submission_id': '1gmjk01'}
{'comment': 'Americans vote on incumbency based on the price of bread.', 'created': '2024-11-08 21:03:27', 'submission_id': '1gmjk01'}
{'comment': 'Lying to people they’ve intentionally undereducated for a generation or more.', 'created': '2024-11-08 21:04:35', 'submission_id': '1gmjk01'}
{'comment': 'People aren’t well informed, period. I happen to think Trump won off of name recognition- he was in the spotlight eons before Kamala hit the scene. He was a reality TV star. He tells people what they want to hear, despite it all being lies. Most people aren’t that deep. Rural voters overwhelmingly went for Trump, not the college educated urban voters.', 'created': '2024-11-08 21:06:52', 'submission_id': '1gmjk01'}
{'comment': 'It’s because the Democratic Party abandoned left-wing populism. They are beholden to a donor class that wishes to keep the status quo. Without having impactful, people–first legislation, working folks have nothing to vote for or support with them.', 'created': '2024-11-08 21:13:08', 'submission_id': '1gmjk01'}
{'comment': 'Stupidity, gullibility, lack of education.', 'created': '2024-11-08 21:16:37', 'submission_id': '1gmjk01'}
{'comment': 'NAFTA and Walmart is why they left the Democratic Party. People used to be able to work in manufacturing and retail in small towns and cities until the Clinton administration killed that option. They did to rural America what Republicans did to Detroit, and now most of America looks a lot like Detroit used to. It’s better now but in the 90s o- buddy it was everything you ever heard and worse.', 'created': '2024-11-08 21:22:19', 'submission_id': '1gmjk01'}
{'comment': 'Trump is a snake oil salesman who preyed on the uneducated working man.\n\nHis own MAGA, which he no longer needs, will pay the price along with the rest of us.', 'created': '2024-11-08 21:22:59', 'submission_id': '1gmjk01'}
{'comment': 'Racism.', 'created': '2024-11-08 21:23:17', 'submission_id': '1gmjk01'}
{'comment': "They absolutely aren't and they never will be.", 'created': '2024-11-08 21:26:13', 'submission_id': '1gmjk01'}
{'comment': 'Because they lied to the working class', 'created': '2024-11-08 21:30:34', 'submission_id': '1gmjk01'}
{'comment': 'Fear based politics, they vote thinking he wont include them in his horrendous plans. I pray hes everything they think and not what we have feared...for them. We/I voted for them, for their rights, for their safety, here. I am timing out of my great adventure here, when they finally do realize the enormity of what has happened, it will be too late. Who will be left to vote on their behalf? We had a Republic, a democracy, too bad we couldn\'t keep it. History warned us at the signing of the Constitution. Benjamin Franklins famous words when asked, " what do we have?" "A Republic, if you can keep it " some of us cared enough to try, I applaud us, even in defeat. May it be temporary, may democracy and our Republic survive it all, again...', 'created': '2024-11-08 21:31:27', 'submission_id': '1gmjk01'}
{'comment': 'Dems had a great argument to use regarding inflation (it wasn’t caused by us, we stuck a soft landing no one thought was possible, Trump’s tariffs will bring inflation back with a vengeance), they just didn’t use it nearly enough. \n\nDems should have admitted the early immigration policy allowed too many immigrants in and overwhelmed cities, but argued that they learned from it and corrected.\n\nAlso, Dems need to strike a more centrist balance on trans issues (trans women in women’s sports, bathrooms and locker rooms, and being more cautious about gender affirming treatment for kids). The public is, by and large, not ready to treat trans women the same as cisgender women, and maybe it never will. Trans activists demand a lot: they want us to completely revolutionize the way we think and speak about gender and biological sex. The public isn’t on board with all of it. \n\nI think voters (wrongly) feel like Dems don’t care about the economy, and that they elevate the interests of the few above the interests of the many, or the interests of non-Americans above the interests of Americans. Dems need to fix this problem.', 'created': '2024-11-08 21:32:58', 'submission_id': '1gmjk01'}
{'comment': 'They tell them what they want to hear. "I\'m going to cut your taxes" sounds great. What it means is "you will get a super tiny federal tax cut, that will impact all kinds of state services, so your state and local taxes will go up plenty".\n\nI didn\'t hear Kamala really make any great reasons WHY blue collar workers should vote Democratic. Were they going to make your healthcare more affordable? Maybe strengthen pensions and retirement (SS)? Try to keep more jobs here in the US? Free training so you can move up in your company?', 'created': '2024-11-08 21:35:27', 'submission_id': '1gmjk01'}
{'comment': "Bill Clinton signed NAFTA, it hurt the working class in the US. Especially in what are now swing states.\n\nThe 2008 crash hurt the working class, then Obama failed to hold anyone accountable for it.\n\nBiden presided over a bunch of inflation, which disproportionately hurt the working class. I'm *not* assigning blame to Biden for this; in fact he did quite well with it compared to peer countries.\n\nRelatedly, I think everyone thinks of Trump as the president during Covid. Biden was president for twice as long during the pandemic, and 2021 was arguably the worst year. Looking back, the pandemic mostly happened under Biden's watch. Again, not his fault.\n\nThe last several years have been really hard years for a lot of people. The vibes were just awful coming into this election. I'm not convinced that any Democrat could have beat Trump with this amount of headwinds. Similar things are happening all over the world. Hard years breed social upheaval, electoral discontent, and regime changes.", 'created': '2024-11-08 21:35:30', 'submission_id': '1gmjk01'}
{'comment': 'Trump represents chaos and change. Throw in his openness to scapegoat minorities whom working class people think are their enemies and you have your answer. Will it help? No. He’s a corrupt oligarch and he will enrich himself and crush workers rights as his surrogates, Musk, Abbott, and others have already demonstrated', 'created': '2024-11-08 21:35:32', 'submission_id': '1gmjk01'}
{'comment': 'propaganda (lies) told to the intentionally miseducated American electorate.', 'created': '2024-11-08 21:36:09', 'submission_id': '1gmjk01'}
{'comment': 'Democrats tend to approach working class voters as if they are missionaries and the working plebs are savages that need to be shown the light. It comes off as patronizing. \n\nI see this as a teacher in San Francisco. For example, I get to hear all day about how much people here support teachers and how great of a service I am doing to the community. Yet, my salary is abysmal for the area, I get called a racist when I critique things like restorative justice, and I get lectures when I say I don’t want to live in government-funded teacher housing because I don’t want my boss to also be my landlord. It can be exhausting, especially since it’s usually coming from very privileged people who have had very sheltered lives. \n\nAnd don’t get me wrong — the right hates us too, they call us groomers and pedophiles, they would also pay us pennies, and they would gut our unions. But at least they are honest about hating us. The Democrats like to say they are on the right side of issues but are often hesitant to act on their beliefs. This rubs so many voters the wrong way.\n\nDavid Axelrod said something similar the other night.', 'created': '2024-11-08 21:39:12', 'submission_id': '1gmjk01'}
{'comment': 'They tricked them. No big mystery.', 'created': '2024-11-08 21:41:40', 'submission_id': '1gmjk01'}
{'comment': 'Because the working class is uneducated and vulnerable in their own way. They feel threatened, and they advocate for themselves. \n\nIt’s why having A good leader is so important. Good leaders intervene to prevent mob justice.\n\nTrump loves to fan the flames. Bad leaders need scapegoats. We are scapegoats.', 'created': '2024-11-08 21:44:26', 'submission_id': '1gmjk01'}
{'comment': 'Because Trump had the greatest propaganda campaign of all time and dumb, uneducated rural Americans continue to do what they always do and vote red no matter what while democrats don’t even vote at all', 'created': '2024-11-08 21:44:48', 'submission_id': '1gmjk01'}
{'comment': 'Democrats forgot about white males especially younger ones. I’m saying this as a white male. \n\nWhen you see blue collar union members rooting for Trump there’s a huge issue with your messaging.', 'created': '2024-11-08 21:46:05', 'submission_id': '1gmjk01'}
{'comment': "I think a large set of working class folks already have a chip on their shoulder about being good enough and really needed groups they can look down on. It's part of the backlash on women now, calling them property.", 'created': '2024-11-08 21:48:43', 'submission_id': '1gmjk01'}
{'comment': 'The Democratic Party turned its back on them. The Republicans saw an opening and capitalized on it. Don’t get me wrong - these people have no idea how bad it’s going to be for them.', 'created': '2024-11-08 21:52:09', 'submission_id': '1gmjk01'}
{'comment': "Still a lot of racist, misogynistic folks that freak out at the thought of gay let alone trans. Time and time again Dems make the mistake of trying to move the dial left in the limelight. I don't see it getting better with the workforce becoming less educated. The only hope is saying whatever it takes to get elected, **then** moving the dial.", 'created': '2024-11-08 21:56:20', 'submission_id': '1gmjk01'}
{'comment': 'Cos they’ve spent years convincing people they are via the media they own and their massive super PACs. \n\nThe biggest failure of the Democratic Party hasn’t been not reversing the overturning of Roe v Wade. It’s not this election losing to Trump. \n\nIt’s not stopping the money flowing to the super pacs. \n\nThey legalised campaign bribery and you didn’t stop the money. They bought up the media and you didn’t stop them. \n\nThat’s the fail. And h til you fix that you’ll keep losing elections.', 'created': '2024-11-08 22:40:37', 'submission_id': '1gmjk01'}
{'comment': 'https://preview.redd.it/h9jm2bvl0rzd1.jpeg?width=3024&format=pjpg&auto=webp&s=aa2a1f25ce3b961b015e0c43b8db027f01153b5e\n\n💀', 'created': '2024-11-08 22:48:57', 'submission_id': '1gmjk01'}
{'comment': 'They hate the same people.', 'created': '2024-11-08 23:03:27', 'submission_id': '1gmjk01'}
{'comment': 'We don’t have our own propaganda network of right-wing media outlets, so …', 'created': '2024-11-08 23:04:52', 'submission_id': '1gmjk01'}
{'comment': "It's simply being unaware, and uninformed. They don't realize that they just upvoted for a guy who will side with every CEO and who will fight against every employee benefit. They would never tolerate that guy as a boss but think he's a great president.", 'created': '2024-11-08 23:06:21', 'submission_id': '1gmjk01'}
{'comment': "It isn't\n\nThey are just extremely skilled con men.", 'created': '2024-11-08 23:23:38', 'submission_id': '1gmjk01'}
{'comment': 'Yes', 'created': '2024-11-08 23:31:23', 'submission_id': '1gmjk01'}
{'comment': 'Democrats ceded that ground.', 'created': '2024-11-08 23:36:34', 'submission_id': '1gmjk01'}
{'comment': 'MESSAGING!! Minimum wage raise, and single payer healthcare are POPULAR!!!', 'created': '2024-11-08 23:45:01', 'submission_id': '1gmjk01'}
{'comment': 'That’s part of the problem', 'created': '2024-11-08 23:47:09', 'submission_id': '1gmjk01'}
{'comment': 'I see allot of comments that basically blame the voters and say they are not "smart" enough to know what is good for them. Ironically this kind of thing is how the democrats lost the \'working class\' voter. \n\nIf you want people to vote for you, respect them and don\'t take them for granted. I am left leaning, but some much of what the Democratic push and talk about I find insufferable. As someone who make their living from the resource sector, it gets old seeing so much of the agenda around identity and environment and so little around how I can do better and take care of community and family better.', 'created': '2024-11-08 23:51:31', 'submission_id': '1gmjk01'}
{'comment': "While they didn't offer them any real plans they made them feel heard. Biden kept arguing that because the economy was going great for the corporations and investors that all the problems were solved. But the people were still living under water due to the COVID bump in inflation. The companies were doing fine. They never lowered prices and even brought people in at lower wages after the quarantines were over. So everyone was drowning while we made sure the corporations were ok.\n\nAll trump had to do was give voice to the common complaints of the people. He didn't have any solutions. Maybe a concept of a solution. But he told them all that only he could fix their problems. And as long as he gave voice to their pain they would follow him anywhere. That's how populists work. They make the crowd feel heard by repeating their complaints back to them. And then just muddle around while in office helping those with money that can pay them for their next campaign.", 'created': '2024-11-08 23:51:38', 'submission_id': '1gmjk01'}
{'comment': 'I know union people who voted for trump. \n\nThey voted for trump and the gop has unions on the chopping block now, and worse every conversation i have with them leads to “i don’t follow politics.” we’re having a conversation with people who know absolutely nothing.', 'created': '2024-11-08 23:58:51', 'submission_id': '1gmjk01'}
{'comment': 'Both parties should be', 'created': '2024-11-08 23:59:00', 'submission_id': '1gmjk01'}
{'comment': 'They called the working class not the educated class.', 'created': '2024-11-09 00:04:33', 'submission_id': '1gmjk01'}
{'comment': 'Trumpism is a cult. Prove me wrong.', 'created': '2024-11-09 00:12:32', 'submission_id': '1gmjk01'}
{'comment': "Dems focused on race, trans issues, and other equalities. Most people in America are worried about economics, and while Harris actually had a plan, she didn't discuss it that much. She really didn't have enough time to campaign either. If they'd let Bernie win he would probably have won, and Biden also should've stepped out of the race much earlier.", 'created': '2024-11-09 00:17:16', 'submission_id': '1gmjk01'}
{'comment': 'Democrats didn’t help them enough so they went with the guy who at least says things they can understand and want. It doesn’t matter that they never get any of those things. He also hurts the people they don’t like, gives them someone to blame, and makes them feel justified in their ignorant hate.\n\nHe’s not a Republican though. Trump used to be a Democrat and MAGA doesn’t have much overlap with traditional conservatism, he just found a large group of people to con and another group wiling to support him who weren’t Democrats. I’d argue that we haven’t had a “real” fiscal Conservative Party in the US for decades now, as they don’t want to actually lower tax revenue, they just want to give it to themselves through corporations instead of using it to help people.', 'created': '2024-11-09 00:18:32', 'submission_id': '1gmjk01'}
{'comment': 'Dem abandons working class values. Need to understand them. Can Dem meets their values?', 'created': '2024-11-09 00:25:30', 'submission_id': '1gmjk01'}
{'comment': 'Ill start this off as I’m not a Bernie bro, but the guy is smart and here’s what he said 20 years ago and it still holds truer than ever:\n\nIn a true democrat honesty, these aren’t quotes, they are paraphrases with modern anecdote’s. \n\n“When I go out there, I’m trying to unite people, build a group who feels as though they are one, and they’ll vote together for progress. When the republicans go out there, they try and divide, which is easier because you just look at the person and you can see what they’re scared of, and you hit that point.”\n\nThe poor are scared of inflation, they got a small taste, can’t associate it with the Trump Covid stimulus, and they don’t know it’s back to the normal rate.\n\nYou look at whites, they’re not as scared of their black neighbors and co workers, so you tell them there’s millions of scary Mexicans coming, and I am the only one who can stop it. This shit was going on in my county elections near the Canadian border, stupid, but it’s fear so it works.\n\nChristians believe that A. The country was founded on religion (which is the biggest aspect of their lives) and B. It under attack.\n\nThis list goes on and on. You just need to be good at creating irrational fear, targeting at a person or group who can’t over come it, and boom, they’ll vote against their personal interests so fast, and be proud enough of it to wear it like a second skin.\n\nRepublicans aren’t the party of the working class, there just the party that told the working class to be afraid, and since they continue to destroy the working class, they get to do it again next time.', 'created': '2024-11-09 00:48:25', 'submission_id': '1gmjk01'}
{'comment': 'I know in the rail industry, Biden could have bought the support of railway workers for an entire century by allowing us to strike. Instead he committed the Democratic Party to seppuku by denying the railroad workers their day to do so.\n\nIt went from about half the shop in support of him to "iLL nEVuR vOtE FuR DeRmOkRaTs AgaIn." \n\nHe essentially turned his back to the only industry that is quite literally the heartbeat of the nation.', 'created': '2024-11-09 00:49:27', 'submission_id': '1gmjk01'}
{'comment': 'The interest rate that went down this year under Biden-Harris administration has benefited the rich. That’s why republicans put a propaganda that Democrats actually help the rich than the working man/woman\xa0', 'created': '2024-11-09 01:02:38', 'submission_id': '1gmjk01'}
{'comment': "That's the thing. They didn't. The Republicans just pretend to care about the working class while making the rich richer. What they give the working class is racism and the culture war. Take a look at the stock market this week. It shot up making billionaires even wealthier. Good job, America.", 'created': '2024-11-09 01:04:58', 'submission_id': '1gmjk01'}
{'comment': 'I know I’ll be downvoted but I work construction. I’m a union electrician in the south and I actually work with these people unlike many here. Most of the working class feels abandoned by the democrats. Biden busting up the railroad strike, the pushing of LGBTQ and DEI politics which don’t matter to the average person living paycheck to paycheck, and just the general smugness of the average democrat have turned the working class against dems. Most of the old guys I work with are lifelong yellow dog democrats and most just stayed home this time.', 'created': '2024-11-09 01:09:11', 'submission_id': '1gmjk01'}
{'comment': 'Learn from a democrat who won in a red-leaning district. We have to widen the tent and step out of our NPR world. [https://www.nytimes.com/2024/11/08/us/politics/marie-gluesenkamp-perez-interview.html?smid=nytcore-ios-share&referringSource=articleShare](https://www.nytimes.com/2024/11/08/us/politics/marie-gluesenkamp-perez-interview.html?smid=nytcore-ios-share&referringSource=articleShare)', 'created': '2024-11-09 01:10:31', 'submission_id': '1gmjk01'}
{'comment': "I think it's unfortunately very simple.\n\nBiden spent a bunch of money, tried to forgive everyone's student loan debt, and now everything costs more.\n\nMany people literally don't think harder than that.", 'created': '2024-11-09 01:16:41', 'submission_id': '1gmjk01'}
{'comment': "It has more to do with messaging. Republicans have a simple message and talk rhat appeals to them apparently. Facts, reason, logic does not reach them. I personally don't think it's fair to blame democrats for this", 'created': '2024-11-09 01:17:37', 'submission_id': '1gmjk01'}
{'comment': "They aren't the party FOR the working class. They have just lied enough to convince the working class that they deserve their support. People who don't engage with politics regularly don't realize that Republicans are the biggest liars in the world.", 'created': '2024-11-09 01:31:01', 'submission_id': '1gmjk01'}
{'comment': '[removed]', 'created': '2024-11-09 01:52:43', 'submission_id': '1gmjk01'}
{'comment': "They aren't the party of the working class as you'll see when the tax breaks for the rich start up", 'created': '2024-11-09 02:25:05', 'submission_id': '1gmjk01'}
{'comment': 'They didn’t. But the did convince the middle class to believe they are the party of the working class. \n\nSell the dream, deliver the nightmare', 'created': '2024-11-09 02:45:40', 'submission_id': '1gmjk01'}
{'comment': 'The Educated children of the working class took over the top positions in the Democratic Party, but forgot how to speak to their own people. They talk about policies, rather than emotion and values. Also, the "working class" are more conservative socially. Maybe going forward, the Democrats should become the party of "get the government out of our lives, and righteousness, and accept minority status. People say they respect conviction, and perhaps the democrats have tried to be please too many people.', 'created': '2024-11-09 03:12:13', 'submission_id': '1gmjk01'}
{'comment': 'your picture answers your question.', 'created': '2024-11-09 03:21:07', 'submission_id': '1gmjk01'}
{'comment': "It's a combination of the Dems pushing DEI policies, automation taking over and manufacturing jobs heading overseas which do not play well with the working class. The Dem's are honest with the working class that automation and overseas jobs will not stop happening because this is an international problem. But the Repubs like Trump are promising their way of life wont change, bit they know its inevitable. The American worker has to pivot and upskill which is what Dems are pushing, but workers (largely) don't want to do the work. Dems also have to abandon DEI - the Supremes have rules against it and everytime a DEI case gets pushed to the Supremes, it's going to get shot down.", 'created': '2024-11-09 03:24:29', 'submission_id': '1gmjk01'}
{'comment': 'Racism. Sexism.', 'created': '2024-11-09 03:42:32', 'submission_id': '1gmjk01'}
{'comment': "Then you don't understand the history. The GOP has always been the working class of lower educated workers, where the Democrats grew from urban areas and universities. I grew up in the conservative seat of Pennsylvania. Raised in an ultra conservative (Christian but not Evangelical) family. The average American is too busy working to follow politics, and they don't make the money that people in the big city make. The ones that do are of a slightly different breed and are more capitalistic. There is a reason the silent majority votes Republican.\n\nThe Democrats are trying to figure that out. They are trying to figure out a lot of things frankly. Bernie sanders actually made sense for once when taking jabs at the Democratic Party, which will give you an idea of just how messed up things are currently. If Sanders is making sense shit just isn't right \n\nThe only time Democrats come stomping in conservative areas it is because they want to push the vote their way. You will see many workers, but rarely will you see a big Elite Democrat in a small town. The same can be said for Republicans but you will see them a lot more in rural areas because that is where they (the majority of the party) live.", 'created': '2024-11-09 03:58:03', 'submission_id': '1gmjk01'}
{'comment': 'Short answer: Racism.\n\nProgressive-for-their-time politicians like FDR were so popular because their programs helped the working class while also being racially discriminatory. \n\nWhen Dems started to help the white and non-white working classes equally, the white working class turned against the programs that once helped them. This is why Presidential races were basically a huge losing streak for Dems between LBJ and the fiscally moderate Bill Clinton.', 'created': '2024-11-09 04:15:17', 'submission_id': '1gmjk01'}
{'comment': "Here's kinda a neutral take....\n\nThe party presiding over something 'bad' typically eats it...even though Obama didna great job recovering from the 2008 financial crisis Trump got the credit. \n\nGoing into COVID, things could have been handled much better...but is what it is. \n\nAfter that Biden had to navigate insane inflation. Looking around the world...the US did pretty good. \n\nBut that didn't change the fact he presided over that wall of inflation...that affected everything for middle America. \n\nHarris basily stood by Biden and basicly said what I said...the facts. Thing is, most people vote with their hearts...and ther want really a sense of understanding that was cominicstrd rather a more existential crisis ... Which didn't really matter to most of that middle america. \n\nId also note that for most of middle america, a woman is never going to be their first pick. Love it or hate it it's America.", 'created': '2024-11-09 04:19:26', 'submission_id': '1gmjk01'}
{'comment': 'That was a long time ago, when Eisenhower was president. Nixon was the religious right’s first president, his and Goldwater’s Southern Strategy gave the South to the Republican party and the party to the religious right and their wealthy backers, led by the Koch brothers, the Bradley Foundation, DeVos and union busting Coors families…\n\n“Mark my word, if and when these preachers get control of the [Republican] party, and they’re sure trying to do so, it’s going to be a terrible damn problem. Frankly, these people frighten me. Politics and governing demand compromise. But these Christians believe they are acting in the name of God, so they can’t and won’t compromise. I know, I’ve tried to deal with them.”\n\n― Barry Goldwater', 'created': '2024-11-09 04:25:41', 'submission_id': '1gmjk01'}
{'comment': 'Because they "want jobs". That\'s all I hear from them. They want jobs thrown at them...presumingly by the government they so hate. Yeah sure you will get a 6 figure job in butthole OHIO. Their opportunistic ancestors MOVED to get a good opportunity...but they...they want it handed to them. So much for "pulling yourself up by your own bootstraps"', 'created': '2024-11-09 05:13:46', 'submission_id': '1gmjk01'}
{'comment': "Consider that everyone 35 or under was a child throughout the 90's so has little to no living memory of what a social pariah and parody Trump was then. He was the epitome of gaudy extravagance especially around the peak of beauty pageants and the lifestyle around them. Pre 9/11 he was a laughingstock, lampooned on Simpsons to SNL, from Home Alone cameo to WWE, he was a public figure known to be the flashy casino boss that wasn't all that clever but enough to know his image mattered the most. Especially with the influence of Roy Cohn, who was considered the most vile and 'dirty' lawyer that cut his teeth with McCarthyism and Reagan.\n\nSo consider today's working class is at least familiar with Trumps rebranded image in his Apprentice show where he was way more fine-tuned to how he presented himself throughout the scripted reality tv era of the early 2000's. His celebrity status was established with his format of scripted business entertainment like an early Shark Tank which clearly had an audience. His ambitions were all over the place, from Trump University to his hotels, a shitty steak company, and bankrupting his Atlantic City Taj Mahal. Throughout the decades he went from one scandal to another and relished in any amount of attention. \n\nIf you're unaware of any of this, consider yourself normal and fortunate to not have wasted any headspace thinking about him. But that's what he exploited, the lesser educated yet ambitious, and his influence clearly grew to a degree he felt ambitious enough to run for President. Then fast forward though Obama and his last White House Correspondents' Dinner where Trump was the victim of rather light humor that he took personally, and the rest is history since 2016.", 'created': '2024-11-09 05:21:44', 'submission_id': '1gmjk01'}
{'comment': 'This article in the New Republic is the best explanation I have seen:\n\nhttps://newrepublic.com/maz/post/188197/trump-media-information-landscape-fox', 'created': '2024-11-09 06:13:48', 'submission_id': '1gmjk01'}
{'comment': 'They offer facile solutions that are easy to agree with', 'created': '2024-11-09 07:16:59', 'submission_id': '1gmjk01'}
{'comment': 'The dumbing down of America', 'created': '2024-11-09 07:50:49', 'submission_id': '1gmjk01'}
{'comment': 'Have you seen the movie Vice? Dick Cheney worked menial employment before entering politics. The left did it to ourselves. We’re not respecting scraping by deserves a 500 state check to help us scrape. We don’t play the plain talk game because we’re educated. Trump is nothing but a class clown to educated people voting against our own interests for the betterment of humanity. To the working class under educated, he’s a fun guy. Oh, and this is Biblical, so don’t be fooled into thinking Republicans don’t get some stuff right. My problem is they’re expediting everyone’s pain.', 'created': '2024-11-09 08:24:38', 'submission_id': '1gmjk01'}
{'comment': '[removed]', 'created': '2024-11-09 15:05:24', 'submission_id': '1gmjk01'}
{'comment': 'Because stupid Biden was busier trying to go into history as the savory week he will go as the disaster.\nOpen borders immediately\nPull out of Afghanistan which became a mess\nForgave loans to everybody\nNever help daca\nLet siente court run amok\nHe was incompetent from day one', 'created': '2024-11-09 17:02:14', 'submission_id': '1gmjk01'}
{'comment': 'It hasn’t become that at all!', 'created': '2024-11-09 19:59:44', 'submission_id': '1gmjk01'}
{'comment': 'Propaganda - Fox News, OAN, NewsMax, Twitter. We are a dumb, gullible country.', 'created': '2024-11-09 23:10:13', 'submission_id': '1gmjk01'}
{'comment': "History will raise this and other questions. However, I don't think it's anything other than hatred.", 'created': '2024-11-10 03:53:55', 'submission_id': '1gmjk01'}
{'comment': 'Because they’ve committed billions over decades to change and control the media landscape of the nation. If you lie to enough people often enough and all the people hear are those lies, then you start to believe them. It’s clear on policy that dems are better than the republicans for the working class, but the average American believe the opposite because that’s the messaging they receive. Misinformation and propaganda works.', 'created': '2024-11-10 15:29:38', 'submission_id': '1gmjk01'}
{'comment': "They aren't-they've been attacking education for *decades in order to create citizens too stupid to equate fact with reality if given the choice between fact and something that tells them they're superior. Example-the economy consistently taking BIG Ls under (R) oversight.", 'created': '2024-11-08 17:45:51', 'submission_id': '1gmjk01'}
{'comment': 'Biden was the first president to go to a workers strike and chant with them.', 'created': '2024-11-08 18:24:54', 'submission_id': '1gmjk01'}
{'comment': 'Because people define "working class" as white.', 'created': '2024-11-08 18:33:23', 'submission_id': '1gmjk01'}
{'comment': 'By keeping them ignorant.\n\nPropaganda works exceptionally well on humans, and the more ignorant, the better it works.', 'created': '2024-11-08 18:46:03', 'submission_id': '1gmjk01'}
{'comment': "The education system has been destroyed so as a result many voters are more easily mislead and simply don't understand how things work. The Republicans have done a good job at propaganda and not fighting fair and getting away with it while the Democrats have tried to play within the established rules and stay civilized for much longer and are paying for it. Basically it pays to be a crook. \n\nI think a big part of it is the removal of the fairness doctrine by the FCC in 1987. It used to be the media had to present both sides of an issue. If people were watching a news program that news program couldn't present just one side of the issue. They had to present both sides. That's why people like Rush Limbaugh and Fox News became so prominent in the 90s and beyond. They effectively became propaganda. \n\nIt just continued with the rise of the Internet, social media and the decline of the major media outlets are what have led to this. It used to be people were more united by reading the same newspapers, magazines, watching the same news channels, TV shows, movies, reading the same books, etc. But, now there are so many options out there online and especially with social media that people are so disunified. We are not reading, listening or watching the same things anymore. We're all off in our own corners getting brainwashed. I don't know the answer because it's not like we can go back in time. They probably need to bring back something like the fairness doctrine and regulate the media and Internet again. But, I don't see that happening anytime soon.\n\nMany Americans don't seem to care that a convicted felon and who incited an insurrection will now become president. We used to mock other countries, calling them banana republics, third world countries, corrupt, etc when they did the exact same stuff that we are now doing. So, we are in for some very rough times ahead, again.", 'created': '2024-11-08 19:07:05', 'submission_id': '1gmjk01'}
{'comment': 'They’re not, they’re just better at messaging and really good at lying. Oh and the American electorate is very dumb.', 'created': '2024-11-08 19:18:57', 'submission_id': '1gmjk01'}
{'comment': "They didn't. They are using religion, fear, and hate to drive this machine.", 'created': '2024-11-08 19:26:16', 'submission_id': '1gmjk01'}
{'comment': "through misinformation, propaganda, and lies with news media, mostly corporations don't push workers' rights and livable wages. How often does anyone hear ABC, MSNBC, and CBS News speak on anything to with workers' rights and collective barging or labour issues in general? The answer is zero.\nThe majority of Americans believe tax cuts are beneficial to working Americans and that Republicans are better on economy issues, but factual evidence is weighted on Democrats are way better on the economy.\nSimply another factor, most Americans are poorly educated, and the segment of our population voted with their hate, biases, and fears, but don't forget racism, maintaining white supremacy. only in America, a mediocre white man becomes president, its coined failing upwards.", 'created': '2024-11-08 19:48:50', 'submission_id': '1gmjk01'}
{'comment': "Fill the airwaves with shit and then no one knows what's true.\n\n-Steve Bannon\n\nAlso the wedge issue movement that Gingrich started. \n\nIt's this reason educated people vote blue. It's because they actually understand things.", 'created': '2024-11-08 20:20:11', 'submission_id': '1gmjk01'}
{'comment': 'The Democratic Party has become significantly more socially liberal, with its policies often resonating most with people who have had exposure to diverse communities and issues, often through college or living in major urban areas. This experience, however, isn’t typically shared by the “blue-collar” voter.\n\nAs a result, you have one side (Democrats) that can sometimes come across as sanctimonious, often dismissing those who don’t fully agree by labeling them as intolerant or worse. Meanwhile, the other side (Republicans) addresses people who may not fully grasp the complexities of socially liberal policies by framing these changes as something to fear, saying, “If it seems confusing, it’s because it’s dangerous and harmful to you and your family.” This messaging makes it clearer why some people find it easier to identify with one side over the other.', 'created': '2024-11-08 20:27:10', 'submission_id': '1gmjk01'}
{'comment': 'Reading some of these comments I see the democrats aren’t gonna learn from their mistakes.', 'created': '2024-11-08 20:30:06', 'submission_id': '1gmjk01'}
{'comment': "Its all messaging and Trump had no problem sending out flat out lies. He said he was gonna fix McDonald milkshake machines for christs stake...guess what Biden already did that too... I saw signs that were high prices Kamala / low prices Trump all over. Why didn't the dems pick a handful of the numerous outragest things from project 2025 and put it on signage and mailers all over.\n\nTrump to outlaw overtime \nHarris higher wages\n\nIts not rocket science but it needs to be elementary school level shit.", 'created': '2024-11-08 20:35:47', 'submission_id': '1gmjk01'}
{'comment': "back in the 90's in the age of linear TV.\n\nA random redditor is scouring the odd channels in the evening...comes across a speech by Bush Jr. It is in a rustbelt steel mill. The Union steelworkers are loving him.\n\nIt was at that point I knew something was really wrong. If any of them knew the history of their union, they'd have gathered, but only to string him from the highest rafter.\n\nThey've not gotten smarter. No tax on overtime ? Sure. These are the guys who want to eliminate the concept....another union product, the 8 hour day.", 'created': '2024-11-08 20:37:56', 'submission_id': '1gmjk01'}
{'comment': "I think it's a lack of education, and poor messaging on the part of the dems. The poorer, working class has a higher percentage of immigrants, who likely aren't as familiar with how our government works. So when someone like trump comes in and tells them he's going to fix their problems, they believe him. Doesn't matter that he has no plan, or that he's lying. They believe him because he's telling them what they want to hear.\xa0", 'created': '2024-11-08 20:41:31', 'submission_id': '1gmjk01'}
{'comment': 'Propaganda and uninformed voters. The end.', 'created': '2024-11-08 20:53:56', 'submission_id': '1gmjk01'}
{'comment': 'The Republican Party has been painting themselves as the party of the working class for decades now when in actuality they’ve been the party of the private sector. It’s always been smokescreen and manipulation. All they do is run on wedge issues and get elected so they can act as stooges for private sector interests.', 'created': '2024-11-08 21:05:11', 'submission_id': '1gmjk01'}
{'comment': 'The working class is the class that is not the “liberal elite.” \n\nThe liberal elite is the class that has benefited from the pursuit of higher education and the rapid advancement of technology to develop professional careers and advance economically.\n\nEverybody else who got left behind is resentful of this class.\n\nThe Democrats represent the “liberal elite.” \n\nTrump developed a new movement within the Republican Party that is singularly focused on grievance against this liberal elite. \n\nIt doesn’t have to do with policies (which is evident because MAGA policies are mostly idiotic and punitive against the working class). It has to do with identity being defined by its opposition to the more successful liberal elite.', 'created': '2024-11-08 21:26:19', 'submission_id': '1gmjk01'}
{'comment': "They just believed Trump's lies.", 'created': '2024-11-08 21:32:50', 'submission_id': '1gmjk01'}
{'comment': 'Or “Slaves of the working class?”', 'created': '2024-11-08 21:48:23', 'submission_id': '1gmjk01'}
{'comment': "Here's a hint: They're not. They just get voted by the working class.", 'created': '2024-11-08 22:00:59', 'submission_id': '1gmjk01'}
{'comment': "There are two big reasons. \n\n1.Reaganomics was initially such a popular idea that Democrats adopted many of it's views and have been hesitant (scared?) to move back left to the left ever since. It's why you'll hear some people claim the US has two right-wing parties. \n\n2.Reaganomics (neoliberalism, supply-side, free markets, etc) was the cornerstone of the GOP platform for nearly around 3 decades, until the bottom fell out with the 2008 financial crisis. Republicans deservedly received most of the blame and have moved away from it, while some Democrats have refused to let go. \n\nAt this point, it was only a matter of time until one party, or the other, began winning voters over with an economic populist message and Trump was the first to win with one (Bernie tried, but lost when Democrats chose Hillary, who was neoliberal). \n\nYou're right about the GOP, historically speaking, representing the wealthy and Democrats the working class. It still is that way, but it doesn't stop Republicans from winning the hearts of the working class with better messaging.", 'created': '2024-11-08 22:01:18', 'submission_id': '1gmjk01'}
{'comment': 'They’re the party of the uneducated. That aligns with some segments of the working class.', 'created': '2024-11-08 22:03:54', 'submission_id': '1gmjk01'}
{'comment': "THEY'RE DEFINITELY NOT THE PRO-LIARS", 'created': '2024-11-08 22:21:02', 'submission_id': '1gmjk01'}
{'comment': "They're PRO-LIARS", 'created': '2024-11-08 22:21:53', 'submission_id': '1gmjk01'}
{'comment': 'REPUBLI-CULTS', 'created': '2024-11-08 22:24:04', 'submission_id': '1gmjk01'}
{'comment': "They haven't. But what's weird is that they somehow convinced a bunch of blue collar people that they had.\n\nI weep for the attention span and reading comprehension of the typical American, now.", 'created': '2024-11-08 22:34:52', 'submission_id': '1gmjk01'}
{'comment': "They didn't, you have two people who hate over time wages...... people where pissed about high interest rates, homes prices, and prices in general and the administration took the blame.... happens every time, 2008 and now 2024, 2020 was COVID failure and trump had to take a time out. its as simple as that.........", 'created': '2024-11-08 22:39:45', 'submission_id': '1gmjk01'}
{'comment': 'These are the purple who, even if they did finish high school, don\'t need no :fancy degree" and no "elitist intellectual" telling them what to think. Dammit we just wanted you to know HOW to think.', 'created': '2024-11-08 22:44:58', 'submission_id': '1gmjk01'}
{'comment': "They won the messaging game, albeit lying. They were able to convince the average American that we are the party that's more concerned with letting in illegals and fighting to let boys play in girls' sports than solving their day-to-day problems.", 'created': '2024-11-08 22:58:48', 'submission_id': '1gmjk01'}
{'comment': 'Let me break it down for you. Republicans are, at their historical core, the party of the rich* (a minority). They don’t have the votes, so they use their money to conserve and maintain their grip on political power. Generally speaking, they tricked the working class into voting against basic working class economic interests, using a decades-long, incredibly well-funded program of propaganda and propaganda-fueled wedge issues. Democrats failed to counter this. And here we are.\n\n*There are some good rich people. We are talking in big picture generalities here.', 'created': '2024-11-09 05:23:33', 'submission_id': '1gmjk01'}
{'comment': '[removed]', 'created': '2024-11-08 17:04:18', 'submission_id': '1gmjk01'}
{'comment': "the divide in education is my guess why people voted against their own best interest. i don't care about them anymore, they fucked around and i hope they're about to find out that hitler and hitler jr don't give a single fuck about them.", 'created': '2024-11-08 17:45:14', 'submission_id': '1gmjk01'}
{'comment': 'Ikr. They don’t even work! 🤣', 'created': '2024-11-08 17:34:52', 'submission_id': '1gmjk01'}
{'comment': "They aren't, though... they just said they are to get votes, and they succeeded by brainwashing them with Fox and friends.", 'created': '2024-11-08 18:15:09', 'submission_id': '1gmjk01'}
{'comment': 'Anger is a potent narcotic, and lies are an effective delivery system.', 'created': '2024-11-08 18:24:45', 'submission_id': '1gmjk01'}
{'comment': 'People love to have a boot on their neck apparently', 'created': '2024-11-08 18:32:51', 'submission_id': '1gmjk01'}
{'comment': 'They’re not. Working people don’t understand that for whatever reason. Even the union members are seriously confused about who supports their interests', 'created': '2024-11-08 18:43:24', 'submission_id': '1gmjk01'}
{'comment': 'People are easily led astray. They believe what they want, not necessarily what is true, and once they hold a belief it’s exceedingly difficult for them to change it. Direct lessons work best. And they’re about to get one. Unfortunately we all have to take the medicine \n\nHonestly this reminds me a bit of Reagan era.', 'created': '2024-11-08 18:54:36', 'submission_id': '1gmjk01'}
{'comment': 'They 100% are not and have not been for decades. Trump especially hates the labor class.', 'created': '2024-11-08 18:54:52', 'submission_id': '1gmjk01'}
{'comment': "It's always the same issue. Democrats suck at messaging, and always run on moral high ground. \n\nIntelligent, well informed voters are a minority in America. Most voters are tribalistic, and if you give them a boogeyman they we will listen to you.\n\nPeople don't respond to facts, they respond to fear.", 'created': '2024-11-08 19:02:59', 'submission_id': '1gmjk01'}
{'comment': 'How many left of center talk radio stations are there? How many right of center? Hard working blue collars don’t have the ability to watch cable tv while they are working. They listen to free, broadcast radio. Many get their information from the Rush Limbaugs of the talk radio scene. If you tell someone over and over and over that the ‘them’ is evil and that you are their friend and savior they will start to believe. Right wing media has a long and storied history of lying to their listeners. 5 second sound bites all in sync with other RW media. Discuss 3 topics over a 3 hour show and nail those topic into the listeners head. Keep explanations simple and short. Repeat. \n\nTariffs good.\n\nChina will pay them.\n\nManufactures will return because they have to pay tariffs.\n\nBiden kept tariffs so they must agree.\n\nRepeat. Repeat. Repeat. Sleep. Repeat. Repeat.', 'created': '2024-11-08 19:18:45', 'submission_id': '1gmjk01'}
{'comment': 'It\'s 100% culture wars lol. Republicans have seized on instilling resentment in people.\n\nDems *have* gotten more socially progressive. But they\'ve always been the socially progressive party. Yeah, it\'s trans people now. But it was gay people 20 years ago and they didn\'t seem to have a problem with that. And gay rights may be mainstream now, but it was a fringe "woke" issue back then. I remember a time not all that long ago when the only people who supported gay rights were gay people, college liberals, and weird cat ladies.\n\nThing was, the white working class chose to ignore the culture wars back then. Now they\'re obsessed with them. I think it comes from a place of despair. If we\'re not getting help, then we need to make sure nobody else is. And perhaps we need to do better with the working class. But if you\'re going to sit by mindlessly and vote for whatever shithead has an (R) after their name, then don\'t expect the Democratic Party to work for you. We need to work for voters that may actually choose to vote for us.', 'created': '2024-11-08 19:22:20', 'submission_id': '1gmjk01'}
{'comment': "Racism and misogyny. \n\nAnyone saying otherwise is a closeted racist and misogynist. \n\nYou heard me. That's all I have to say to the losers pretending to be dems here.", 'created': '2024-11-08 20:05:36', 'submission_id': '1gmjk01'}
{'comment': 'Spoiler alert: They’re not!', 'created': '2024-11-09 00:41:36', 'submission_id': '1gmjk01'}
{'comment': 'Clinton pushed NAFTA through, stoked the outsourcing frenzy in manufacturing industry, fully abandoned what is now called rust belt and the remaining blue collar workers. The Democratic party now represents socially liberal elites and not much else. Unless it comes back to representing the working class and their interests, there is no hope or use for it. A socially liberal and fiscally conservative "republican" will make a decent enough democrat right now. Cheney sure as $hit isn\'t it. [https://clinton.presidentiallibraries.us/items/show/101726](https://clinton.presidentiallibraries.us/items/show/101726)', 'created': '2024-11-09 02:13:26', 'submission_id': '1gmjk01'}
{'comment': 'There is no party for the working class. It’s why you lost the election', 'created': '2024-11-09 04:00:46', 'submission_id': '1gmjk01'}
{'comment': "It's easier to tell a lie over the truth. Trump is telling sweet lies", 'created': '2024-11-09 11:35:20', 'submission_id': '1gmjk01'}
{'comment': 'The Media /News System has been dismantled and replaced with reinforcement of corporate dogma and Propaganda. Trump, a creature of entertainment media, who they coached and scripted to act like a business success is acting the part in the corporate/government takeover (aka Fascism). The working class listen to right wing radio (now in Spanish) and watch TicTock. The right wing owns their media, while the left only rents it (at inflated prices). It also looks like those rents pay the same right wing media lords who don’t really report the news well either.', 'created': '2024-11-09 13:31:01', 'submission_id': '1gmjk01'}
{'comment': 'The people I know grew up on state benefits and housing, and Medicaid. They love TFG. Biggest complaint? Migrants and welfare.', 'created': '2024-11-09 14:54:58', 'submission_id': '1gmjk01'}
{'comment': 'They have a slew of propaganda machines. That and the war on education are the main issues imo', 'created': '2024-11-09 17:46:27', 'submission_id': '1gmjk01'}
{'comment': 'They’re not. They’re the party of fascism.', 'created': '2024-11-10 09:21:12', 'submission_id': '1gmjk01'}
{'comment': 'This is just my personal view of it, but I think it\'s because the DNC leadership is still in the "Reagan Crouch", as pundit Cliff Schecter put it. The DNC leadership still seems to think that if they come within sniffing distance of progressive policies, Reagan will pop out of a blind corner and scold them with a "Well, there you go again!" \n\nHe won\'t. Reagan hasn\'t been president since 1989 and hasn\'t been of this mortal coil since 2004. \n\nThey\'re afraid to run on progressive policies like paid family leave, increasing the minimum wage, universal healthcare, strong union protections, reproductive rights, and bolstering Social Security and Medicare, or at the very minimum, showing a spine in the face of conservatives. If we stand for those policies, as well as actually listening to the concerns of working people, we will start getting them back,\n\nSay what you will about conservatives, they stand behind what they believe in. Their policies may be insane, but they stand for them. \n\nAlso, we should stop with the hollow gestures of "bipartisanship" with conservatives. Stop giving them the respect they never give us. How many times does Lucy have to pull away the dang football for them to realize they were ALWAYS going to pull away the football.', 'created': '2024-11-08 17:32:06', 'submission_id': '1gmjk01'}
{'comment': 'If you say you are a thing, you must be that thing, right?', 'created': '2024-11-08 22:51:10', 'submission_id': '1gmjk01'}
{'comment': None, 'created': '2024-11-08 20:07:14', 'submission_id': '1gmjk01'}
{'comment': 'Trump and Musk have been billionaries sense birth. They lie, they cheat, they steal. however, oh no. It\'s the Democrats who are the "elites" despite the fact that most democratic leaders grew up in middle to lower class families.', 'created': '2024-11-08 18:28:03', 'submission_id': '1gmjk01'}
{'comment': 'They vote against what they supposedly stand for and against their best interests. It’s a weird world we live in now where good is evil, up is down, truth is false and the rich are the victims.', 'created': '2024-11-08 20:57:20', 'submission_id': '1gmjk01'}
{'comment': '>These repub voters are the same people who think Trump and Musk are outsiders who are working against the "elites". I mean, that\'s such a major disconnect right there.\n\nAnd this is one of the biggest reasons why Dems lose. Republicans and most independents (which comprise the overwhelming percentage of total population) don\'t view rich people in the same way you do. They admire them, and esteem to be like them. You demonize them and blame America\'s problems on them. They don\'t see rich people as the "elites", they see them as people who are just like them, but were able to beat the "system", the same "system" that they strongly believe is holding them back from their own personal success.\n\nThey see establishment politicians, high ranking non-partisan government institutional leaders and outspoken liberal intellectuals, as the "elites". To them, these are the people who are holding them back, not rich people. To them, their best opportunity to improve their own lot in life is to support people who already have done that for themselves. They have the expectation that those people will clear the path for them, because, from their view, the ones they call "elites", haven\'t.\n\nThey view you as speaking DOWN TO them. They view their leaders as speaking UP FOR them.\n\n“Ideologies aren\'t all that important. What\'s important is psychology. The constituency is just like a herd of cows. All you have to do is lay out enough silage and they come running.” - "Ragin\' Cajun" Jim Carville, back in 1992 (Lead campaign strategist for the highly successful Bill Clinton \'92 campaign)', 'created': '2024-11-08 22:50:16', 'submission_id': '1gmjk01'}
{'comment': 'They do a good job of presenting themselves they way. Bergum looks and sounds like a billionaire. Boring, Choreographed and stale. Musk and Trump are crass and rude and flawed but come off as down to earth', 'created': '2024-11-08 20:13:29', 'submission_id': '1gmjk01'}
{'comment': 'They think that they can work their way into being like Musk, Trump, or Bezos not realizing that all of them came from generational wealth.', 'created': '2024-11-08 22:16:59', 'submission_id': '1gmjk01'}
{'comment': 'And they are both considered unwelcome freaks by the in group.', 'created': '2024-11-08 21:51:19', 'submission_id': '1gmjk01'}
{'comment': 'That’s because of trump and lying machine!', 'created': '2024-11-09 20:00:25', 'submission_id': '1gmjk01'}
{'comment': 'Harris biggest mistake was who she aligned with during rally’s because it made her seem elite to some. Having Beyonce, JLO, Cardi B and all the other celebs does send a conflicting message. Oh well, it’s a lesson learned.', 'created': '2024-11-10 13:44:44', 'submission_id': '1gmjk01'}
{'comment': "Electing someone who is obviously a con man to be president is like paying a pedophile to watch your kids. It just doesn't make any goddamn sense.", 'created': '2024-11-08 16:28:52', 'submission_id': '1gmjk01'}
{'comment': 'I really think social media has come back to bite us. Now we get news from just about everyone. During the early COVID vaccine period a friend sent me a TikTok video of a guy claiming that ever since he got the vaccine bluetooth devices want to connect to him. Now the average person looking for clicks can make things up and have it go viral.\n\nI also have a friend who works with me in a corporate job as an Engineer who refuses the vaccines mainly because of obvious conspiracy theories like the one I mentioned. I thought she was too smart to believe that or at a minimum have some level of skepticism. Today she’s a mother with two boys who she’s planning to homeschool because she don’t want to vaccinate them.', 'created': '2024-11-08 17:21:40', 'submission_id': '1gmjk01'}
{'comment': 'I think this is a big part. I mean I keep hearing pundits saying “dems can’t connect with the working class,” but they are the party of the working class. Democrat policies help the people. \nThere is so much misinformation on social media that people think a billionaire like Donald Trump is for the people. TikTok has people saying “illegals” are getting millions in benefits, hurricane victims only get $700, Kamala wants your children to have gender reassignment surgery, and it’s just parroted over and over again. Trump himself has actually a great strategy of just repeating lie after lie and people fell for it. \nI heard Joe Manchin on NPR saying the people voted for Trump because they’re tired of working hard and seeing those that don’t work being rewarded. Typical “welfare queen” propaganda. \nPeople just lack critical thinking and think “research” is social media posts.', 'created': '2024-11-08 20:32:14', 'submission_id': '1gmjk01'}
{'comment': 'We voted for a convicted felon to lead our country….this says everything about America', 'created': '2024-11-08 19:46:05', 'submission_id': '1gmjk01'}
{'comment': 'You’ve summed up my thoughts exactly.', 'created': '2024-11-08 16:58:03', 'submission_id': '1gmjk01'}
{'comment': "His supporters will suffer like the rest of us. He'll come for them too once they try to get rid of him after whatever time he sits in the office.", 'created': '2024-11-08 19:27:38', 'submission_id': '1gmjk01'}
{'comment': 'Dems failed to capture the attention of disengaged voters, specifically Latino and Asian voters and young men. \n\nWhite voters were slightly bluer than in 2020. Black voters about the same. Latino and Asian voters moved right. \n\nSeniors moved left, but young men moved right. Millennials are still blue and Gen-X is still red. \n\nThis, combined with demographic changes, was enough to tip the Blue Wall, but not enough to tip most of the Senate races.', 'created': '2024-11-08 19:28:09', 'submission_id': '1gmjk01'}
{'comment': "I've been talking to my husband about the implications of Trump winning; He told me today he doesn't think it's going to be as bad as I'm saying it's going to be, that Trump is all talk, that he doesn't enjoy political talk, and that our lives aren't going to change. I'm not even stating my worst fears, I'm stating what Trump said he is going to do in Agenda47, and how he is just a figurehead with a team with a plan this time around... \n \nMy husband hates Trump regardless, he voted for Biden and Kamala, but it terrified me to hear that he thinks Trump isn't even going to try to enact a lot of the policies he discussed. If somebody who has an informed voter in their ear thinks that, then what about all the people who are getting all of their political information from whatever their algorithm spoon feeds them? \n \nAs a side note: The fact that the party that mostly cares about the economy voted for the candidate that nobel prize winning economists have spoken out against is crazy. I am terrified for our economy. The fact that Trump lied and said foreign countries are the ones who pay tariffs is disgusting and I'm sure a lot of people still don't realize that was a lie. A lot of people don't fact check.", 'created': '2024-11-09 01:54:21', 'submission_id': '1gmjk01'}
{'comment': "This article explains what I've been saying for 12 years. It's the propaganda. It's always been the propaganda. The only way we can combat this is to start building our own news and information system from the bottom up. It may take years to do that, but it's gotta be done.\n\n[https://newrepublic.com/post/188197/trump-media-information-landscape-fox](https://newrepublic.com/post/188197/trump-media-information-landscape-fox)\n\nAnd also, I might add, the goal of this election was to hand the country over to the billionaire scumbag class. They are the reason we can't have nice things in this country.", 'created': '2024-11-08 19:54:00', 'submission_id': '1gmjk01'}
{'comment': 'The question is why are voters not engaged, and why is the misinformation actually getting through to those people. \n\nI think I know why.\n\nPlease hear my perspective with an open mind. As a white man with a shit ton of hobbies the far right circle for their pipeline - stocks, investments, crypto, ai, gaming, physical Fitness, entrepreneurship and innovation, I feel like I understand how they operate and how they have such a hold on people, better than most here within the leftist bubble. \n\nIt’s really quite simple, the Republican messaging is more potent, and people fall victim to misinformation easier because \n1) the republicans dominate social media across a wide range of hobbies. For those of us into politics, we see how democrats dominate the political bubble, but if you play games, or think the new Star Wars movies are crap, or want to use ai, you will come across numerous right wing channels that are the mouth of the pipeline. They push you little by little, and then once you are susceptible to ideas, the algorithm takes hold. \n\nHowever, why are people susceptible to ideas from the right?\n\n2) because the leftist position on every single social issue is NOT the common sense position. \n\nIt’s NOT common sense that using ai is evil but using photoshop is not. \n\nIt’s NOT common sense that capitalism is pure evil (it’s how we build a functional world). \n\nit’s NOT common sense to say that we should allow illegal immigrants to exist in this country (yea yea they help our economy—- sorry my fellow brainrots, that’s the intellectual position, the common sense position is in the name ILLEGAL immigrants), \n\nit’s NOT common sense to say that trans women should be allowed in women’s sports (sorry but there are biological differences between sexes that result in physical differences regardless of how early you start hormones). \n\nIt’s NOT the common sense position to say that a conflict in the Middle East that has been going on for hundreds of years with harm in both sides is just because of the “white Zionist Americans”. \n\nIt’ NOT the common sense position that we can say Black Lives Matter but not ALL lives matter. (I get the intellectual reasons, but it’s not common sense). \n\nIt’s NOT common sense to say that all men are evil. It’s not common sense to say “women should be allowed to go toppless” (because it ignores the fundamental reality of sexual arousal mechanisms in men). \n\nIt’s NOT common sense to use “they” as a non-binary person..(for fucks sake it confuses me every time, like who’s the group we are referring to 🤣). \n\nIt’s NOT common sense that minorities are owed reparations, or that established countries should bay hundreds of billions to Haiti or other places as “payback”. \n\nIt’s NOT common sense that if your not Asian you can’t sell boba (the common sense take is their business was shit and they didn’t understand their own market, but of course simu brought race into the discussion). \n\nFuck it’s NOT even common sense that we need to completely shift to green energy right now (I’m a huge environmentalist by the way, and even I can admit it’s not clear for people)\n\nI could go on and on and on, because I have seen every one of these issues push normal people a bit further right little by little, for YEARS. \n\n\nAgain, while some of the above may piss people off, and may get the woke mob to attack me (that’s kind of the problem lol), it’s clear that this is what America feels. And if we, all of us people who believe in social issues and progress want to make the world a better place, we must meet people where they are. \n\nSo what are we going to do? Am\nI going to get downvoted to the end of the earth for trying to acknowledge reality? \n\nWe’ve already seen people latch onto every reason but the core issue. They’ve identified wounds, and rightly so, wounds that must be bandaged, but they havnt identified the disease. \n\nI don’t see the far left changing things. It’s a cult as much as maga. But rather than have a cult leader at their helm, the lefts cult leader is a chip on their shoulder and hatred for the out group, for the establishment. \n\nI’ve said this before, in fact, I’ve said it all through the election cycle. Fuck the far left. They are disconnected from reality. \n\nDon’t believe me? Look at the gen z numbers. The progressive movement as we know it are dead. We must acknowledge that if we still hope to make the world a better place. And if you agree with me, please take this to heart, because as we’ve just seen in this election \n\n-the left and gen z and minorities will NOT get off their ass to help themselves, so it’s up to people like us, who might be more willing to play the game, to try and achieve real progress. \n\nWe need a social media and media ecosystem like the right, and we can’t do that if we don’t meet Americans where we are. We MUST, for example, put ourselves down slightly to connect with people on a real level. \n\nI’ll close with a great example. If I watch the new season of doctor who (or Star Wars or anything), and I think that making the doctor trans or bisexual or non binary or whatever the fuck takes AWAY from doctor who, pulls you out of the universe, and is cringe, I’m going to go onto social media and type “the new season of doctor who sucks”. Every piece of content agreeing with that sentiment will be from the mouths of the far right pipeline. Filled with Conservative leaning influencers who are capitalizing on the anti common sense take, to get views. But then the algorithms take over, and eventually I’m recommended a video (how wokism killed doctor who). And if I’m not strong of mind, I’m sucked in. If I have less exposure to leftist issues or people then I think “wow the left are crazy they must all be crazy.” \n\nThere is NOT A SINGLE piece of content about doctor who praising it, without ALSO saying how it’s such a big deal and such “progress”, how representative and diverse. THATS NOT THE POINT OF THE SHOW. The show sucks, the writing sucks, everything got worse, and everyone is saying how it’s a huge social success, and that makes people on the right, and people in the middle think the left are the wierd ones… \n\nAnd this happens with every single issue under the sun (some of which I mentioned earlier). \n\nIt’s time for the moderate dems to play ball, because it’s fucking clear the leftists won’t even lift a finger to vote, let alone self reflect. It’s time for moderate people like myself who feel the same way to stop hiding their views because of fear of retaliation from the far left. All this view hiding in service of progress has left a void, and the conservatives are absolutelt filling that void. \n\nWe want change? The wounds are the minority vote and the inflation bullshit and the misinformation,the disease is the extreme leftism that leaves a void. \n\nThanks for listening to my ted talk. \n\n;Edited for typos somewhat lol', 'created': '2024-11-08 19:04:23', 'submission_id': '1gmjk01'}
{'comment': 'https://fortune.com/2024/11/05/did-joe-biden-drop-out-presidential-race-2024/', 'created': '2024-11-09 01:08:43', 'submission_id': '1gmjk01'}
{'comment': 'I want Trump unfettered and unchained so that the whole county sees exactly what a shit show he is.', 'created': '2024-11-09 05:26:24', 'submission_id': '1gmjk01'}
{'comment': 'Kamala ran an excellent, old school Obama era Campaign. \n\nThat’s not winning today.', 'created': '2024-11-08 20:15:34', 'submission_id': '1gmjk01'}
{'comment': "I don't think there was anything Kamala could have done tbh without becoming a misogynistic racist white man herself. The billionaires have won.", 'created': '2024-11-08 22:42:38', 'submission_id': '1gmjk01'}
{'comment': 'But Fox news made it all seem so real to them. Why wouldn’t they believe all those people on TV?', 'created': '2024-11-08 23:04:46', 'submission_id': '1gmjk01'}
{'comment': 'This.', 'created': '2024-11-09 02:34:09', 'submission_id': '1gmjk01'}
{'comment': 'Watch the majority of Americans come crawling back to the Democratic Party once they see just how bad things can get under rightwing leadership. Trump doesn’t have the luxury of riding Obama’s booming economy his first 3 years like last time. Everything is about to be on him and the Republican Party. Americans will finally get to see what Rightwing policies really do to this country. RIP America.', 'created': '2024-11-09 07:14:21', 'submission_id': '1gmjk01'}
{'comment': 'Hit the nail on the head.', 'created': '2024-11-08 19:27:28', 'submission_id': '1gmjk01'}
{'comment': "If Kamala ran an excellent campaign, she would have reached voters. The problem is Kamala ran her campaign like its 2008. She absolutely failed at elevator speeching her plans and concepts to the American public. And we can sit here and complain about the education levels of voters, but that's not going to change how the Dems need to stop campaigning like its 2008 and figure out how the fuck to get in the social reels of voters.", 'created': '2024-11-08 20:59:55', 'submission_id': '1gmjk01'}
{'comment': '💯', 'created': '2024-11-08 21:01:08', 'submission_id': '1gmjk01'}
{'comment': 'I lived in a small conservative town for a few years and still have a bunch of people from that town added on social media; Those people have completely false ideas of who Democrats are/what Democrats want. Democrats in that town stay quiet because people will ignore you or act nasty towards you if you talk about left-leaning political views, so these people are only learning about "liberal ideology" from their conservative algorithm. \n \nI remember in 2016 somebody from that town shared an infographic about one of Bernie\'s policies that was false, I told them so and shared a link with information about the real policy; They completely ignored my comment and kept bitching about the fake version of that policy with other local conservatives. Absolutely ridiculous. People don\'t want to learn, they just want to throw punches. I am convinced that people are too prideful to learn, they might learn that they\'re wrong.', 'created': '2024-11-08 22:55:13', 'submission_id': '1gmjk01'}
{'comment': 'But then all that creates is a shortage of educated US workers triggering the demand for foreign workers which puts us back in the cycle.', 'created': '2024-11-08 18:16:04', 'submission_id': '1gmjk01'}
{'comment': 'I agree! With a majority of these republican working class voters, I’ve noticed a lack of media literacy and critical thinking skills. \n\nThey see something on Twitter or a major news network and automatically assume it’s a fact. No further thought after that. \n\nI’ve had to teach my parents what it means to research trustworthy sources, finding multiple verifiable claims of the same nature, and in general not to trust anything they read (especially on the internet). \n\nThat’s what scares me though is that these working class republicans may not even be capable of understanding the “why” which explains how they can’t admit any fault in Trump or even admit ANY failures. I still struggle to comprehend how they actually think like this and aren’t putting on some sort of ruse. \n\nI have college educated friends who voted for Trump, but we have in depth conversations about their choice. They usually provide valid answers and aren’t afraid to admit that Donald Trump isn’t exactly their favorite choice of candidate in terms of representing them (i.e. older, lying about certain policies, talks like an idiot).\n\nIt really seems politics has turned into some sort of contest where it doesn’t matter what the candidate does, but instead that they win the “game”. This isn’t a football game, this is real life.', 'created': '2024-11-08 20:55:48', 'submission_id': '1gmjk01'}
{'comment': "Look, an actual attempt to understand voters! I'm discouraged that yours is the only comment like this on this entire post. I get it, everyone is angry.", 'created': '2024-11-08 21:28:38', 'submission_id': '1gmjk01'}
{'comment': 'Exactly.', 'created': '2024-11-08 18:22:09', 'submission_id': '1gmjk01'}
{'comment': 'So what? A better message is, "The elite are destroying the economy. They\'re playing you for fools and you\'re falling for it."', 'created': '2024-11-08 18:31:09', 'submission_id': '1gmjk01'}
{'comment': "There's option C that Kamala And Biden took of \nWell actually the economy is doing phenomenal. Best recovery ever while never really addressing that it was only recovering for the wealthy and comes off as completely flippant of how price increases were hurting Americans.\n\nWhat they should have done is pointed to measures they took to address the price increases and how Republicans in Congress like Vance, filibustered them each and every time", 'created': '2024-11-08 20:54:37', 'submission_id': '1gmjk01'}
{'comment': 'You get it. Right on point.', 'created': '2024-11-09 05:31:30', 'submission_id': '1gmjk01'}
{'comment': 'All the houses I see flying a Trump flag are absolute dumps.', 'created': '2024-11-08 19:40:41', 'submission_id': '1gmjk01'}
{'comment': 'Here’s the plan: let Trump do exactly what Trump wants to do, whatever that is. If his actions are going to be as bad as we think, at some point he’s really gonna hurt communities. That’s when we come in and help them. Aid them to get through the pain and suffering they will endure. \n\nWe don’t tell them there’s a better way, we show them.', 'created': '2024-11-09 05:41:06', 'submission_id': '1gmjk01'}
{'comment': 'This, we need to focus on local communities and build an environment full of empathetic ideals and emphasizing media literacy. The power of a local community is important.', 'created': '2024-11-08 20:45:42', 'submission_id': '1gmjk01'}
{'comment': 'it was nuts. all political and 4:1 PAC lies. almost no actual R ads at all.', 'created': '2024-11-08 18:23:39', 'submission_id': '1gmjk01'}
{'comment': 'Agree 100%. Instead of incessant texting, they could have been working TikTok.', 'created': '2024-11-08 18:27:52', 'submission_id': '1gmjk01'}
{'comment': 'Downvoting you solely for the annoying ass large text. Not reading that.', 'created': '2024-11-09 03:25:56', 'submission_id': '1gmjk01'}
{'comment': 'I think we had a good way of combating this with McCain-Feingold. Well it at least kept the campaigns in check, and it was bipartisan.', 'created': '2024-11-08 20:04:11', 'submission_id': '1gmjk01'}
{'comment': 'Or get rid of Section 230', 'created': '2024-11-08 21:01:02', 'submission_id': '1gmjk01'}
{'comment': 'This. I’m gonna say something I’ll probably get down voted for but I’d say another example is the “Black Lives Matter” movement and “Defund The Police”.\n\nI’d argue conservatives feel ignored by the BLM movement and I’d argue that 95% aren’t trying to be racist by saying “All Lives Matter”. They genuinely just don’t get it and think we’re saying BLM > everyone else. Same with defund the police. It’s all just god awful marketing and communication. We can improve policing without sounding like we’re dismantling it.', 'created': '2024-11-09 03:32:34', 'submission_id': '1gmjk01'}
{'comment': 'Healthcare, Higher education, higher wages, taxing the wealthy, child tax credit…are just some of the Dem messages to avg working class Americans. \n\nNow what are the messages from republicans to avg Americans?', 'created': '2024-11-08 21:38:32', 'submission_id': '1gmjk01'}
{'comment': 'Yeah I don’t understand how people think billionaires are going to fix the country or how they have the best interests of the middle class. They will step on our backs to line their pockets as much as possible the next 4 years. Trump will go golfing every day and his cronies will sell us out to the highest bidder.', 'created': '2024-11-08 16:40:48', 'submission_id': '1gmjk01'}
{'comment': "Fascism sells because it offers simple (incorrect but simple) solutions to complex problems. \n\nYour jobs are gone because of immigrants, or because of DEI, Uncle Sam cant bail you out he's to busy giving food stamps to welfare queens. Ignore the billionaire getting another 70% tax break, don't worry about the grocery stores becoming on giant monopoly. Let Daddy Trump kick out those nasty Mexicans, arrest the blacks and cut welfare and everything will be okay again.\n\n \nThe Dems, thought they could just maintain the status quo and offer a few bread crumbs here and there to keep people docile. But the reality is if they followed through on what they claim they stand for we would never have gotten here. \n\nRaise the minimum wage\n\nPass Medicare for All\n\nCancel Student Loan debt \n\nTax the Wealthy\n\nMaking Housing more accessible.\n\nWhen people aren't desperate and pissed, they have time to focus on social issues, climate change, etc. We you arent locked into survival mode you have time to be politically informed and educated.", 'created': '2024-11-08 23:38:18', 'submission_id': '1gmjk01'}
{'comment': 'I wouldn’t so much call it macho as more as it is speaking plain. He’s meeting voters at their intelligence level and speaking to them.', 'created': '2024-11-08 22:22:34', 'submission_id': '1gmjk01'}
{'comment': 'Did Trump ever talk about punishing companies who sent jobs overseas? To be honest I don’t think I have heard any side talk about this. I feel like to many Americans this might be a bigger problem than illegal immigrants taking our jobs considering most of those jobs are very poor working conditions we don’t want.\n\nBut back to my initial post, when has Republicans became the party that catered to workers directly. Their platform is catering to big businesses. Trump is one man. Congress and senate is filled with traditional Republicans who have made a career pushing policies catering to large enterprises.', 'created': '2024-11-08 19:12:54', 'submission_id': '1gmjk01'}
{'comment': 'Yep.', 'created': '2024-11-08 20:50:44', 'submission_id': '1gmjk01'}
{'comment': 'This exactly. I like Bernie Sanders a lot, but Kamala had great plans to help the working class, but the republicans couldn’t even see it through the constant barrage of lies from Trump and Fox and right-wing propaganda.', 'created': '2024-11-08 16:52:36', 'submission_id': '1gmjk01'}
{'comment': 'Unfortunately Biden would have still outperformed Kamala.', 'created': '2024-11-08 17:36:30', 'submission_id': '1gmjk01'}
{'comment': "This is 100% my primal reaction to Trump's re-election", 'created': '2024-11-09 07:21:26', 'submission_id': '1gmjk01'}
{'comment': 'My theory is that they fixed the electoral college', 'created': '2024-11-10 13:50:44', 'submission_id': '1gmjk01'}
{'comment': 'The Southern strategy on steroids', 'created': '2024-11-09 07:06:02', 'submission_id': '1gmjk01'}
{'comment': "Every single one if those points, and tone down the crazy social justice stuff. I think that's where you lost most of the working class", 'created': '2024-11-08 17:33:16', 'submission_id': '1gmjk01'}
{'comment': 'Trump is the flip side of the Bernie coin. We should have at least run the option, the exercise would have pulled Ttrump’s populism left. If we’re going to have a bi-polar politic, make it one based on policy instead of vibes.', 'created': '2024-11-09 07:36:03', 'submission_id': '1gmjk01'}
{'comment': 'I do not think the American people would have elected a socialist, then or now.', 'created': '2024-11-08 20:25:15', 'submission_id': '1gmjk01'}
{'comment': '\xa0Part\xa0 2 \xa0of 3 \xa0\xa0HOWEVER,\n\nWhat DID happen is that the number of people with Vulgar tastes has dropped. See the children of these people went to college, and their children went to college at a higher level still etc. So while economic mobility has gone nowhere in this country over the last 50 years, the number of people obtaining higher education has gone up.\n\nWhat does this do? well in many cases it strips you of your vulgar tastes.\n\nMoreover the economic stagnation of the last 50 years meant that many of these highly educated people did not see any increases in their standard of living. However the non educated saw their standard of living , and in many cases their lifespans, plummet.\n\nSo we are now in a point in time where the struggle, as seen by the median american is NOT between the rich and the poor, but between the VULGAR AND THE NON VULGAR.\n\nThe vulgar resent the non vulgar, and they view being not vulgar as the mark of the elite. Essentially the elitist view that the tastes of the masses were to be exterminated has been turned on its head. Now it is the tastes of the educated that are viewed as the enemy of the " real american," so anything that smacks of non vulgarity ( for example, not being racist) is coded as elite behavior.\n\nTHIS IS WHY DONALD TRUMP DOES NOT CODE AS ELITE to these people. Because he is an extravagantly VULGAR human. And THAT is the marker that matters in America today. When you hear him described as a " working class billionaire" this is what is meant. He signals he has vulgar tastes, not elite tastes. Thus he represents the " common man" in the classic literal sense, in a world where common and elite are based not on wealth but on behavior and taste. An adjunct college professor stitching together jobs at three college campuses to make 50k a year is working class economically, but she is INFINITELY MORE ELITE than Donald Trump, and Conversely, Donald Trump is INFINITELY MORE WORKING CLASS than her, using the definitions of those terms that actually exist within the mind of the median american voter.\n\nThat is it, That is the root of it. There is really no other answer.', 'created': '2024-11-09 01:32:01', 'submission_id': '1gmjk01'}
{'comment': '\xa0\n\nPart 3 of 3\n\nYou and I and labor activists and so on view "class" as a matter of economics. And of course there is a correlation. But the median member of the working class views "class", at a subconscious level, as a matter of taste and behavior, of " virtue signaling" if you will. So when they imagine the rich people who exploit them, they invariably imagine them as possessing elite tastes, and to be fair, most of those rich people do indeed have elite tastes ! But what this MEANS is that when they see a rich person displaying VULGAR tastes,( i. E Donald Trump) that person BECOMES ABSOLVED from belonging in the oppressive capitalist class. They see someone like Trump and they say " oh he is not like the other rich people. He is not using the money that was extracted from my labor to put his name on art museum buildings. He behaves like I behave."The evidence that Donald Trump does not oppress them is HE BROADCASTS THAT HE SHARES THE SAME TASTES AS THEM.\n\nAlso remember that in our country, EVERYONE WANTS TO BECOME A BILLIONAIRE. That is in fact, the ultimate dream for the overwhelming majority of Americans. Thus they do not see GREAT WEALTH AS INHERENTLY BAD. Don\'t get me wrong, they all agree that they are being exploited by rich people, but it cannot be that the exploitation is inexorably linked to THE PROCESS BY WHICH THEY BECAME RICH because all these people also want to become rich, and very few of them, in this fantasy, see themselves as having to oppress people to get there. Therefore, they conclude, there must be something else that is LINKED to being Rich, but IS NOT " BEING RICH" ITSELF that causes the rich people that exploit them to, well, exploit them.\n\nThe genius move here the GOP has made is to make " non vulgarity" into the marker of the exploiting capitalist class. If a rich person is VULGAR in their behavior and affect, then they are immeadiately ABSOLVED from membership in the exploiting capitalist class. Whereas an economically middle or even working class person who has educated affectations and beliefs ( for example anti-racism) becomes suspect as perhaps being an agent of the exploiter.\n\nHow do we solve this? Only way I can think of is to make non vulgarity near universal, which would mean sending the overwhelming majority of americans through university at no cost to them. Something that is clearly politically impossible in the foreseeable future.\n\n\xa0\n\nOr, and this is probably the key, finding a way to\xa0 “vulgarly” express \xa0concepts such as\xa0 “ don’t be racist” and “ women are not destined to be your property” that right wing propaganda has successfully \xa0coded as beliefs held only by the capitalists that exploit you.', 'created': '2024-11-09 01:32:25', 'submission_id': '1gmjk01'}
{'comment': 'Next 4 years will be so crazy no chance to say how this will turn out for Vance yet but I give him at least a 30% chance being the next candidate.', 'created': '2024-11-08 21:34:44', 'submission_id': '1gmjk01'}
{'comment': 'I admit I’m interested to see what’s next with the popcorn.', 'created': '2024-11-08 20:57:43', 'submission_id': '1gmjk01'}
{'comment': 'This is why we lost. The attitude of working class being stupid mouth breathers. This condescending tone you and most democrats and pundits have.', 'created': '2024-11-09 01:45:28', 'submission_id': '1gmjk01'}
{'comment': 'George Bush Sr started NAFTA in 1988. Clinton just completed it. I disagree with this argument as it’s a consequence from both sides of the aisle.', 'created': '2024-11-08 20:55:45', 'submission_id': '1gmjk01'}
{'comment': '[removed]', 'created': '2024-11-09 15:07:58', 'submission_id': '1gmjk01'}
{'comment': 'And then killed a railway strike just before a catastrophic train wreck that is likely due to the very issues those railway workers were striking over. \n\nMessaging starts to fall on deaf ears when the things you do with your actual power are in direct opposition to your publicity stunt nonsense.', 'created': '2024-11-08 23:05:29', 'submission_id': '1gmjk01'}
{'comment': 'Tariffs = higher inflation \nTrump is a snake oil salesman', 'created': '2024-11-08 20:39:12', 'submission_id': '1gmjk01'}
{'comment': 'When you r\nPeat a lie enough times, people begin to believe it. But also, the GOP is the party of victimhood and prejudice. “Working class” becomes a useful excuse because even people who vote according to their hatred know they shouldn’t say that out loud.', 'created': '2024-11-08 20:55:37', 'submission_id': '1gmjk01'}
{'comment': "I'm going to help you buy a home was too complicated for people?", 'created': '2024-11-08 17:46:54', 'submission_id': '1gmjk01'}
{'comment': 'I think that’s one of many variables that influenced it, ibut still think root cause is economy. Very simple.', 'created': '2024-11-08 20:57:22', 'submission_id': '1gmjk01'}
{'comment': ">\xa0They're afraid to run on progressive policies like paid family leave, increasing the minimum wage, universal healthcare, strong union protections, reproductive rights, and bolstering Social Security and Medicare …\n\nThat is exactly what Biden then Harris has been running on. They just failed to break through to the people they needed to reach in ways that landed. They have to communicate simply and effectively through the walls of media and social media owned by billionaires.", 'created': '2024-11-08 18:26:24', 'submission_id': '1gmjk01'}
{'comment': 'One of them who got rich from Russian money - in our capitalist society, TRUMP FAILED OVER AND OVER AGAIN. He’s the EPIDOME of what they hate!', 'created': '2024-11-08 20:59:45', 'submission_id': '1gmjk01'}
{'comment': "Did they not see and hear the video where trump tells his uber wealthy guests that he's going to give them huge tax cuts?", 'created': '2024-11-08 20:24:15', 'submission_id': '1gmjk01'}
{'comment': 'I never understood that. How are silver spoon billionaires suddenly champions of the working class. What kind of mental gymnastics do you need to crank out for that to make you go "yes, that\'s true"', 'created': '2024-11-08 23:00:01', 'submission_id': '1gmjk01'}
{'comment': 'But Kamala never worked at McDonalds!', 'created': '2024-11-08 20:14:03', 'submission_id': '1gmjk01'}
{'comment': 'Actually Trump inherited 465 million and the dipshit lost it ALL', 'created': '2024-11-09 03:26:07', 'submission_id': '1gmjk01'}
{'comment': "You are correct on that in fact they've fallen for the populism ideology that both have", 'created': '2024-11-09 00:41:55', 'submission_id': '1gmjk01'}
{'comment': 'Trump has tapped into the zeitgeist for these voters - they are not following the news closely like many hard core democrats are. Trump says enough “truths” that feel good to them - “the economy has been ruined by Biden”, “immigrants are stealing your jobs”, and then sells himself as the solution to their problems. He makes them feel good about blaming and hating somebody else for their problems. They aren’t voting for project 2025 and the traditional GOP party platform, they are voting for the guy that was the amazing business person who was on tv for 10 years. \nThe economy isn’t great for many people - prices are way higher than in 2019, and Trump says that he can take them back. They don’t read the analysis that says tariffs will screw everything up. Trump ( a self proclaimed billionaire) is on stage with Elon (the richest man in the world) saying they can make life better. Sure I’d like some of that!\nThat they have voted for a diametrically different value system from what I hold dear to me, completely escapes comprehension. But if you ignore logic, and just go with emotion and feelings, Trump makes promises that can be attractive.', 'created': '2024-11-08 22:54:04', 'submission_id': '1gmjk01'}
{'comment': 'Exactly. They think that they will one day be rich like them. But they won’t. Especially now. All of that bullshit is about to get thrown out the window when Trump and the Republican Party complete destroy the economy and the country. If we ever have Elections again, I guarantee you that the majority of people will turn Left once they see just how bad things can really get under Rightwing leadership. Trump doesn’t have the luxury of riding Obama’s booming economy the first 3 years this time around. Everything is about to be on him.', 'created': '2024-11-09 07:09:20', 'submission_id': '1gmjk01'}
{'comment': "A con man and felon, who ran on a major policy issue of tariffs that will DIRECTLY INCREASE PRICES!! He basically promised that he's going to increase prices on food and consumer goods, in an election where economic concerns were #1 for voters, AND HE WON.", 'created': '2024-11-08 17:38:37', 'submission_id': '1gmjk01'}
{'comment': 'It really doesn’t make any sense. That’s why I say that idiocy was one of things that won. I mean, Trump literally insults his supporters to their faces during his rallies lol. He denigrates Hispanics yet Latino men largely voted for him over Harris. White women largely voted for him even though their rights are at stake. I could go on and on. Make it make sense.', 'created': '2024-11-08 16:31:25', 'submission_id': '1gmjk01'}
{'comment': 'AND HE’S A FUCKING PEDOPHILE, AND THEY VOTED FOR HIM TO TAKE CARE OF OUR CHILDREN!!!', 'created': '2024-11-08 21:02:13', 'submission_id': '1gmjk01'}
{'comment': 'It does to the MAGA/right wing mindset. They’ve been inundated for years now with messaging saying Democrats are everything that could possibly be bad about this country. They’re anti-capitalist, anti-American, atheist or outright devil worshippers, they’re turning your kids gay, making boys become girls, etc. etc. So if a Democrat tells someone “who could you vote for such an obvious con man?” They’ll want to vote for him because they know that con man is the one who angers the liberals the most.', 'created': '2024-11-08 18:53:24', 'submission_id': '1gmjk01'}
{'comment': 'Those people don’t have sense, it’s impossible to understand them yet we still try.', 'created': '2024-11-08 18:47:17', 'submission_id': '1gmjk01'}
{'comment': 'Trump is also a pedo and he is now going to be watching all the kids..... \n\nhttps://www.mypalmbeachclerk.com/home/showpublisheddocument/4194', 'created': '2024-11-08 19:21:42', 'submission_id': '1gmjk01'}
{'comment': 'It’s not obvious to them. That’s how con men work.', 'created': '2024-11-08 19:28:39', 'submission_id': '1gmjk01'}
{'comment': 'If people had any kind of sense in the first place, they wouldn’t have elected the guy who ran on a platform built on misogyny, racism, xenophobia, disrespect towards veterans, and all the other bullshit back in 2016.', 'created': '2024-11-09 02:37:21', 'submission_id': '1gmjk01'}
{'comment': 'Doesn’t* 😉 \n\nAnd yes, social media is shit, so is most of the educational system in the US, and people are passed from grade to grade. He’ll I see Upper management who can’t write basic k-6th English. Guess they just ignore the red squiggly lines under misspellings. Also, Too much screen time. Plus they didn’t study the actual information presented, for years it’s been out there, but people are lazy about something that occurs only every two years. MAGAs are way lazy. Watch any man-on-the-street interviews - people are dumb as fuck.', 'created': '2024-11-08 17:51:05', 'submission_id': '1gmjk01'}
{'comment': 'Or have them come back from school one day as girls.', 'created': '2024-11-08 20:17:26', 'submission_id': '1gmjk01'}
{'comment': 'Yup, you are exactly right. Fear mongering and misinformation are one of the big things that won this election for Trump. The Democrats need to reassess how we will combat this going forward.', 'created': '2024-11-08 20:34:18', 'submission_id': '1gmjk01'}
{'comment': 'Yup, you said it right.', 'created': '2024-11-08 19:50:42', 'submission_id': '1gmjk01'}
{'comment': 'The sad thing is that Trump and his cronies will just blame democrats and his MAGA supporters will believe him :( it’s the somewhat sane people that we need to get back on our side.', 'created': '2024-11-08 19:40:22', 'submission_id': '1gmjk01'}
{'comment': "I think people need to exhale a bit (a lot) and also note that there wasn't a single non-swing blue state that flipped. And every swing state that flipped to Trump was won by Biden in 2020.\n\nWe're not as fucked as we think. There's Dem governors in every swing state, elections are still administered by the states, and the House is almost evenly split with plenty of swing district congressmen who are going to have voters to answer to for the most extreme actions they might take. Let the GOP cook with their consolidated power for a while, learn from what is working, run on what doesn't work and come up with a fresh platform that can build a coalition. Just like every election cycle. \n\nThe Anti-Trump coalition lived, won, and died. It would have died anyway if Kamala had won, the party needs a new modern identity and platform beyond running against everything Trump stands for given he's leaving at the end of his term (or earlier).", 'created': '2024-11-08 20:28:33', 'submission_id': '1gmjk01'}
{'comment': 'I’m curious do you think Boomers/ Millennials are more aligned in their thinking because Millennials were raised with Boomer values and is it the case that Gen X/Gen Z is the same way? Would that not mean Gen Alpha would potentially swing our way?', 'created': '2024-11-08 22:17:15', 'submission_id': '1gmjk01'}
{'comment': 'Yup, you said it exactly. \n\nI was really surprised with white women and how they broke for Trump. I thought it would’ve been different from 2016–guess I was wrong.', 'created': '2024-11-08 19:43:37', 'submission_id': '1gmjk01'}
{'comment': 'I’m sorry. It is terrifying and while I’m not sure if he’ll be able to or try to enact everything he said he was going to do, I definitely think he will try to enact most of it and likely succeed. We have a rough four years ahead, it’s going to be worse than his first term in office. We just have to hope that our institutions hold long enough for democrats in power to figure out how to combat this. We have to stay vigilant, engaged, and take care of each other. If we can hold on for two years, I think we will take back the senate and potentially the house as that hasn’t been called yet.\n\nUnfortunately there are just too many stupid people in this country—they’re uniformed, racist, and sexist and traded out democracy and our rights for the price of eggs. Trust me, I have extended relatives who are celebrating and elated about Trump’s victory—it’s sickening. I’m going to laugh when they find out that the cost of living is not going down under Trump. He’ll tank the economy just like he did the first time around. Even before Covid, economists were predicting a recession because of him. Biden prevented that from happening but Americans just couldn’t see that.', 'created': '2024-11-09 04:20:49', 'submission_id': '1gmjk01'}
{'comment': 'Project 2025 is back on the table. Prominent Republicans were admitting it was all a lie that it wasn’t real not even 24 hours after the Election. Steve Bannon being one of the main ones. Project 2025 is happening. It’s all gonna happen. Except that things will probably be A LOT worse than they said they would.', 'created': '2024-11-09 07:58:35', 'submission_id': '1gmjk01'}
{'comment': 'We need a Leftwing media system that rivals the Rightwing propaganda machines they have all over the internet and the country. MeidasTouch is probably the best one of them all tho. We should all rally around independent media outlets. Fuck the MSM. They were in it for Trump this election. That much was abundantly clear.', 'created': '2024-11-09 07:53:36', 'submission_id': '1gmjk01'}
{'comment': 'Thanks for sharing! I’ll definitely take a look. Yup, and the republicans have spent the last couple of decades building their propaganda network while the democrats took the high road.', 'created': '2024-11-08 19:55:59', 'submission_id': '1gmjk01'}
{'comment': 'Nah respectfully you sound like every other trump supporter. The problem is simple 90% of Americans are struggling to keep their head above water. The Dems offer stop gaps at best and never follow through on what people actually want (Joe Manchin, Senama, other DINOs in hiding and the filibuster bs).\n\nWhen people can afford to live and thrive, they tend to be more empathetic to their others. When we can afford to buy groceries, pay rent/mortgage, go to the doctor, take a vacation, etc we stop being angry, we stop looking for scape goats, we care more when we see someone else hurting because our needs have been met. \n\nNow to get to that point the Dems will need to take corporate Americas balls out of their mouth, make the DINOS of the party fall in line and act like the party of the working class rather than paying lip service to it.', 'created': '2024-11-08 23:20:49', 'submission_id': '1gmjk01'}
{'comment': "This is too long, but I skimmed it. There are plenty of Dems who don't subscribe to all these ideas. Some of these are super far left. BUT, the GOP is really good at convincing their low-information followers that we all want all that stuff, like every single Dem is a version of AOC. I can't spend 10 minutes online without some hillbilly accusing me of not knowing what a woman is. I don't hide my views at all, and I ALSO get attacked by far left wack jobs. Neither of these factions is charming. They both need to sit down.", 'created': '2024-11-09 02:41:15', 'submission_id': '1gmjk01'}
{'comment': 'Everything will change very soon. Once the entire county sees just how bad Rightwing policies for the economy and the country, people will come crawling back to the Democratic Party. The Second Great Depression and the American Holocaust are gonna change quite a few minds over the next few years. It may not be “common sense” to do all that shit. But it’s the right thing to do. Or if you’re saying that everybody in the country is over decency and kindness, this country is even more doomed than I think. I’m honestly just hung up on which will come first under Trump.. the Second Civil War or the Third World War. Because now that he’s in office, both are right around the corner.', 'created': '2024-11-09 07:42:48', 'submission_id': '1gmjk01'}
{'comment': 'You pretty much just said that bc Republicans are so good at propagandizing that we should all just forget everything that is right or good in this world and accept hate and evilness as just another normality.', 'created': '2024-11-09 07:45:14', 'submission_id': '1gmjk01'}
{'comment': 'Omg. I saw Stephen Colbert mention this on The Late Show. How uniformed can people be? How tuned out are they that they didn’t even know Biden dropped out? It’s so sad the state of this country. People are so willfully ignorant.', 'created': '2024-11-09 04:24:35', 'submission_id': '1gmjk01'}
{'comment': 'In a way, I do too. But then it scares me because all of us who voted for Kamala will also suffer the consequences of the idiots that voted for Trump thinking that he’s really going to improve their cost of living smh.', 'created': '2024-11-09 11:41:07', 'submission_id': '1gmjk01'}
{'comment': 'Yup, exactly. At the end of the day it boiled down to fear mongering, idiocy, sexism, misogyny, and racism.', 'created': '2024-11-09 04:26:04', 'submission_id': '1gmjk01'}
{'comment': 'Fox News destroyed this country. It’s so sad.', 'created': '2024-11-09 04:27:08', 'submission_id': '1gmjk01'}
{'comment': 'The only way they will learn is to let Trump completely destroy their lives. And he will.', 'created': '2024-11-09 05:29:08', 'submission_id': '1gmjk01'}
{'comment': 'That is better but that doesn’t reach people like the one above', 'created': '2024-11-08 19:19:15', 'submission_id': '1gmjk01'}
{'comment': "the huge problem is that unlike the 1960s when Bernie came of age, today's working age folk WANT to be elite themselves. They've bought into the game, the idea that greed & success are good. That's why they admire grifters like Trump & Musk.", 'created': '2024-11-08 21:05:28', 'submission_id': '1gmjk01'}
{'comment': 'I saw a mix around me, some really nice houses, some well kept up ones, and some dilapidated. Mostly what I noticed is that there were way fewer of them this time, but some had them since the convention, and hardly any H-W signs. In 2020 there were lots of Biden-Harris signs.\n\nEdited for verb agreement.', 'created': '2024-11-09 02:45:02', 'submission_id': '1gmjk01'}
{'comment': 'I did not know that, Trump won on the cheap yet again by making others pay his bills.', 'created': '2024-11-08 19:37:08', 'submission_id': '1gmjk01'}
{'comment': "Fair is fair. It was a copy past issue. I've done the same.", 'created': '2024-11-09 03:26:46', 'submission_id': '1gmjk01'}
{'comment': 'I will get your job back! - DJT\n\nI\'m going to take the rest of your jobs away! - HRC\n\n \nThe fact the the D party doesn\'t accept that "learn to code", and "here are some government handouts", is tone deaf AF to a 50yo working class, lifelong Democrat, is exactly why the hate for the left is growing across the globe.', 'created': '2024-11-08 23:12:23', 'submission_id': '1gmjk01'}
{'comment': 'Exactly. \n\nBut no no no, it was the *Democratic Party who is out of touch with voters*, not dipshits too stupid to understand the assignment and decided to vote for the failed business man with multiple bankruptcies. /s\n\nedit: I saw a meme somewhere recently on a quote, it was basically: people vote with their emotions, and then later backfill that decision with logic. The problem even worse now because there are too many stupid people in this country, and they completely fail on the logic part.', 'created': '2024-11-08 16:45:11', 'submission_id': '1gmjk01'}
{'comment': 'He’s been talking about tariffs for the last year and a half. It’s all he’s been talking about', 'created': '2024-11-09 01:39:16', 'submission_id': '1gmjk01'}
{'comment': 'I like him too. He’s angry that dems couldn’t reach these working class people, and maybe they should work with Bernie more to help with messaging. People seem to love him and I see why.', 'created': '2024-11-08 17:19:04', 'submission_id': '1gmjk01'}
{'comment': 'Dubious (and I love Biden).', 'created': '2024-11-08 18:21:32', 'submission_id': '1gmjk01'}
{'comment': 'He may be President Vance by the time he runs again after a Trump impeachment. The next four years will be insane.', 'created': '2024-11-08 21:42:33', 'submission_id': '1gmjk01'}
{'comment': '[removed]', 'created': '2024-11-09 15:08:51', 'submission_id': '1gmjk01'}
{'comment': 'I don’t think any one of them were listening at that point. And that was that dems spent many months trying to argue the economy was doing fine. In fact better than fine. Some say better than ever.', 'created': '2024-11-08 17:52:16', 'submission_id': '1gmjk01'}
{'comment': 'Literally dont care what you said whether it agreed with me or not.', 'created': '2024-11-09 01:27:17', 'submission_id': '1gmjk01'}
{'comment': "Sadly many didn't some probably recall him saying in 2016 that the rich need to pay more in taxes (including himself) he said aloud. But it doesn't really matter, he never seems to be held accountable for anything he says or even does.", 'created': '2024-11-08 23:12:51', 'submission_id': '1gmjk01'}
{'comment': 'They fell for misinformation and lies. It’s a damn shame, but there will be a lot of regret and leopards eating faces in the years to come. They’ll reap what they’ve sown I just wish the rest of us didn’t have to be dragged down into this mess, too.', 'created': '2024-11-09 00:45:24', 'submission_id': '1gmjk01'}
{'comment': 'It’s like how Tate is popular: because people want to be what these guys present themselves as.', 'created': '2024-11-09 00:19:32', 'submission_id': '1gmjk01'}
{'comment': None, 'created': '2024-11-09 07:44:14', 'submission_id': '1gmjk01'}
{'comment': 'That’s because people think tariffs are going to be paid by China and other foreign countries. Wish I was joking.', 'created': '2024-11-08 17:44:13', 'submission_id': '1gmjk01'}
{'comment': 'Because he promised his dipshit gullible supporters that he was going to build a tariff and China was going to pay for it.', 'created': '2024-11-08 19:39:16', 'submission_id': '1gmjk01'}
{'comment': "He's also very likely a pedophile and incest perpetrator", 'created': '2024-11-08 19:03:01', 'submission_id': '1gmjk01'}
{'comment': 'Not to mention what mass deportations will do to the cost of meat and produce?Five dollar a head lettuce anyone?', 'created': '2024-11-08 20:56:49', 'submission_id': '1gmjk01'}
{'comment': "How dare you call him that. He's a child rapist as well", 'created': '2024-11-08 18:25:53', 'submission_id': '1gmjk01'}
{'comment': 'He’s convincing. I’ve seen his rally segments. He convinced me even when I knew he was lying. Says what sounds good.', 'created': '2024-11-08 20:16:35', 'submission_id': '1gmjk01'}
{'comment': "Republicans: yeah but we could save like $30% if we go with the pedophile. It's better for our bottom line.", 'created': '2024-11-08 16:35:28', 'submission_id': '1gmjk01'}
{'comment': 'Tldr; please summarize.', 'created': '2024-11-08 20:23:05', 'submission_id': '1gmjk01'}
{'comment': 'But a large share of his voters are not MAGA, they’re just bike and pissed off. Partly because Democrats seem to promise more than they can deliver.', 'created': '2024-11-08 20:51:46', 'submission_id': '1gmjk01'}
{'comment': 'We should also remember that we held 4 of 5 Senate seats in the swing states (assuming Gallego holds on in AZ) and swept the Council of State in NC. It was that close. \n\nTrump has a much more fragile coalition than in 2016 and he’ll never be on a ballot again. \n\nIt feels a lot like 2004, TBH.', 'created': '2024-11-08 20:34:38', 'submission_id': '1gmjk01'}
{'comment': 'Yeah, but there’s assuming that they’re going to honor the rule of law or the Constitution. Both of which I think are completely out the fkn window now. All that stuff is great in theory, but when you live under a dictatorship, things don’t always turn out the way you’d think.', 'created': '2024-11-09 07:32:14', 'submission_id': '1gmjk01'}
{'comment': 'There just isn’t a lot of movement among white people. Most of us are firmly in our bubbles. \n\nDemographic turnover among whites didn’t help as much as expected because so many young men moved right. We shouldn’t be too surprised because their parents are conservative Gen-Xers. \n\nI think the same is true for Black voters. There was no statistically significant movement. \n\nI’d really like to know how Republicans were able to get their messaging out to these communities or how we failed to get ours out because I think it flew under a lot of people’s radar.', 'created': '2024-11-08 20:24:30', 'submission_id': '1gmjk01'}
{'comment': 'The Constitution and the Rule of Law are both out the fkn window now. Don’t expect either one to help us.', 'created': '2024-11-09 08:00:34', 'submission_id': '1gmjk01'}
{'comment': "Yeah it's time to get to work on fixing that. Dems are never going to unseat vile talk radio plants like Marjorie Greene until we do. It may take years but it's gotta be done.", 'created': '2024-11-08 21:44:17', 'submission_id': '1gmjk01'}
{'comment': 'Undecover Magats are everywhere.', 'created': '2024-11-09 07:43:57', 'submission_id': '1gmjk01'}
{'comment': "I don't think this person sounds like a Trump supporter.\n\nIt's not even remotely accurate that 90% of Americans are struggling. The numbers do not bear that out.", 'created': '2024-11-09 02:42:03', 'submission_id': '1gmjk01'}
{'comment': 'These people really need to learn what LIBERALISM actually means. We’re not all gay or trans or people of color. But we accept and support people who are different than us. That’s what liberalism is all about. All most of us are really doing is looking out for the little guy. Literally nothing on Trumps agenda is going to affect me personally. But I’m out here every day fighting for the people who can’t fight for themselves. And it would do people a lot of good to understand that. We are the heroes of this story. And Republicans are the villains. Plain & simple.', 'created': '2024-11-09 07:50:10', 'submission_id': '1gmjk01'}
{'comment': "She also failed to differentiate herself from Joe Biden which was a major stumbling block for her campaign. He's an unpopular president and who many people blame for inflation (falsely I know). She also failed to adopt the kind of populist messaging people seem to crave in exchange for the usual Democrat “work with the system we have” nonsense. \n\nPeople want the promise of real, radical change and at this point, it seems like they don't even care if it's the bad kind.", 'created': '2024-11-09 05:09:43', 'submission_id': '1gmjk01'}
{'comment': 'Exactly. They gonna learn this time. I think by the time it’s all over, nobody in America will support the Republican Party. Once people experience the Second Great Depression, Second Civil War, Third World War and American Holocaust, I think they’ll start seeing things a bit differently.', 'created': '2024-11-09 08:10:02', 'submission_id': '1gmjk01'}
{'comment': 'What do you suggest?', 'created': '2024-11-08 19:21:53', 'submission_id': '1gmjk01'}
{'comment': 'Idk. I saw lots of Harris signs. And in places I normally wouldn’t. And in some cases, less trump signs.', 'created': '2024-11-09 03:40:11', 'submission_id': '1gmjk01'}
{'comment': 'I mentioned nothing about learn to code or handouts. People are working. I mentioned low wages, cost of healthcare education, etc. Trump offers nothing to the working class but empty rowdy chaos like having mexico pay for a wall. yall loved hearing that empty rhetoric but it’s brainless bs. #weirdcult', 'created': '2024-11-08 23:17:56', 'submission_id': '1gmjk01'}
{'comment': 'I have literally been saying the same thing - America didn’t understand the assignment. Or they didn’t care to. Most likely the latter.', 'created': '2024-11-08 16:49:11', 'submission_id': '1gmjk01'}
{'comment': 'That is absolutely true of humanity; we are emotional beings who can rationalize. We have never been and will never be rational beings with emotions.\n\nWe need to communicate with that in mind.', 'created': '2024-11-08 18:20:41', 'submission_id': '1gmjk01'}
{'comment': 'impeached by who, he controls everything now', 'created': '2024-11-08 21:43:52', 'submission_id': '1gmjk01'}
{'comment': '[removed]', 'created': '2024-11-09 15:11:41', 'submission_id': '1gmjk01'}
{'comment': "Annd after falling for the lies, admitting it isn't a possibility for them. There's no learning, no growth, etc. That's why they mostly talk and act like children, they never became adults.", 'created': '2024-11-09 13:51:50', 'submission_id': '1gmjk01'}
{'comment': 'Yup, they have NO idea how tariffs work. Hence, idiocy won this election.', 'created': '2024-11-08 18:09:11', 'submission_id': '1gmjk01'}
{'comment': 'Yup. The amount of dipshits I’ve had to explain the we are the ones that pay the tariffs is just embarrassing. Grown fucking adults well into their 40s, 50s, 60s. People are just fucking dumb.', 'created': '2024-11-08 18:38:12', 'submission_id': '1gmjk01'}
{'comment': 'Yeah. Again. Idiocy and being woefully uninformed won the day. I want out of this timeline. It’s the dumbest one ever.', 'created': '2024-11-08 17:59:28', 'submission_id': '1gmjk01'}
{'comment': "I'm just watching what's quietly going on with semiconductors and chips right now... About to be a massive shortage followed up by an increase of 40%+ when they return to the supply chain, causing the price of almost all goods to sky rocket. This will get interesting quick. They think stuff is expensive now, just wait lol. Coupled with the market tanking around 40% by April first quarter results, this is what you get when you have a concept of a plan of a policy.", 'created': '2024-11-08 19:19:44', 'submission_id': '1gmjk01'}
{'comment': "Unfortunately, Harris never refuted that. She left the whole economy issue in trump's lap, when it was the most important issue in this election.\xa0", 'created': '2024-11-08 20:45:09', 'submission_id': '1gmjk01'}
{'comment': "Or housing. We think housing is expensive now... Wait until we're not only paying more for raw materials, but for the labor to build it as well.\n\n🤷🏻\u200d♀️\n\nBut hey, MAGA, amirite?!", 'created': '2024-11-08 22:59:38', 'submission_id': '1gmjk01'}
{'comment': 'And the irony is that their costs are likely to skyrocket under his policies. So they won’t even be getting that one benefit. Oops.', 'created': '2024-11-08 17:58:35', 'submission_id': '1gmjk01'}
{'comment': 'That is the case of multiple witnesses testimony to a grand jury of Trump and Epstien raping a minor. \n\nThe one girl who was willing to speak up publicly and testify in open court changed her mind (13 years old) when her life and the lives of her family, friends and friends families were repeatly threatened. \n\nWithout one of the young ladies willing to testify, they had to hold the case. With this win the time limits for prosecution runs out. But people should not forget.', 'created': '2024-11-08 20:50:28', 'submission_id': '1gmjk01'}
{'comment': 'Democrats could deliver more but republicans get in the way because while the dems were sleeping, Republicans spent the last couple of decades packing the courts with conservative judges, gerrymandering congressional districts, and taking over state legislatures.', 'created': '2024-11-08 20:54:37', 'submission_id': '1gmjk01'}
{'comment': 'Meant “broke” not bike.', 'created': '2024-11-08 20:52:29', 'submission_id': '1gmjk01'}
{'comment': 'Why won’t he be on the ballot again?? You really think Trump or the Republicans are gonna honor the Constitution or the rule of law?? That’s serious wishful thinking. Both are out the fkn window now.', 'created': '2024-11-09 07:33:21', 'submission_id': '1gmjk01'}
{'comment': 'Likely their propaganda media machine that is pumping out misinformation 24/7, which the democratic side does not have', 'created': '2024-11-08 20:29:30', 'submission_id': '1gmjk01'}
{'comment': 'One way to get lower voter turnout would be to throw out millions of ballots. Which is not outside the realm of possibilities.', 'created': '2024-11-09 07:35:28', 'submission_id': '1gmjk01'}
{'comment': 'I’m hoping it takes him longer than 2 years to do significant damage. Have to hold out hope that we’ll make it to the midterms. I don’t foresee us taking back the house this time around even with our gains so far. But even with a very slim Republican margin, they will likely not get anything done in the House. The senate is another story, they’re on track to hold 53 seats—so you know anyone in his administration that needs senate confirmation, will most certainly get it. I don’t think we can count on “moderates” like Murkowski and Collins. Any moderate Republican that is still in office will be too scared to go up against MAGA.', 'created': '2024-11-09 11:50:30', 'submission_id': '1gmjk01'}
{'comment': 'I’m over just wondering where are all the assassins at?? It’s prob the only way we’ll be rid of vile people like Marjorie Traitor Greene.', 'created': '2024-11-09 07:55:02', 'submission_id': '1gmjk01'}
{'comment': 'Yes they are. That’s literally what every single person has complained about the past few years. And their great idea is to fight inflation with MORE INFLATION. FFS.', 'created': '2024-11-09 07:47:01', 'submission_id': '1gmjk01'}
{'comment': 'Do they though? I bet if Bernie ran he\'d have done even worse because then it\'s about "communism". The only radical change that\'s popular these days is stopping immigration. And why would Kamala run on that when she doesn\'t believe in it, at that point she may as well run on a Republican ticket.', 'created': '2024-11-09 06:02:32', 'submission_id': '1gmjk01'}
{'comment': '>Let me be very clear: **the working people of this country have been betrayed** by an economy that rewards the wealthy and leaves everyone else behind. For decades, corporate greed and bad trade deals have shipped your jobs overseas to line the pockets of the billionaires. **That is unacceptable.**\n\n>I believe in an America where we don’t turn our backs on workers when times get tough. **We’re going to bring good-paying jobs back to this country.** That means making the rich and powerful pay their fair share, investing in our infrastructure, building a green energy economy, and ensuring that trade policies work for American workers, not just for CEOs and Wall Street.\n\n>We’re going to fight together to create a system where **workers are prioritized over corporate profits.** And let me say this: if you want real change, if you want an economy that works for all of us, then join me. Because **together, we’re going to take on the corporate greed** that has decimated our communities and **we will create an economy that works for everyone – not just the 1%**\n\nThis is what Bernie might would say', 'created': '2024-11-08 19:42:13', 'submission_id': '1gmjk01'}
{'comment': 'Democrats did say learn to code though. You didn\'t say anything about learn to code but we aren\'t talking about why working class people didn\'t vote for you, we are talking about them voting for Democrats. Also, "cost of education" is just a more polished way of saying the same thing as "learn to code." College education is a minority position in every nation on earth. People need to have access to jobs that don\'t require a university degree but I\'m sure all the lifelong Democrats will change their mind because people like you call them cultists, stupid, evil, racist, facist, etc. \n\n \nThe hardcore religious Trumpers will probably never vote Democrat, but the rust belt people who voted for him might, all of the black, Hispanic, Muslim, people who used to vote Democrat might, etc. Go off with your insults though im sure that will fix it.', 'created': '2024-11-08 23:31:24', 'submission_id': '1gmjk01'}
{'comment': 'The Democratic House and Senate we install in 2026 to push back at Trump.', 'created': '2024-11-08 21:56:00', 'submission_id': '1gmjk01'}
{'comment': '[removed]', 'created': '2024-11-09 15:14:18', 'submission_id': '1gmjk01'}
{'comment': 'Just refer to the tariffs as an import tax. \n\nRepublicans are allergic to taxes.\n\nKinda like how they love the ACA, but loathe Obamacare lol', 'created': '2024-11-08 19:23:37', 'submission_id': '1gmjk01'}
{'comment': "It's insane. I learned what they were in 7th grade. In high school economics we went even more in depth on them. Each time, we were told that price increases get passed on to consumers, because the goal is to protect American businesses. We don't have the manufacturing infrastructure or workforce to make all the things that will have tariffs on them. Recession incoming, and fast.", 'created': '2024-11-08 19:07:03', 'submission_id': '1gmjk01'}
{'comment': 'This is where Katie Porter is amazing. Break out the whiteboard and teach this constituency something.', 'created': '2024-11-09 00:37:20', 'submission_id': '1gmjk01'}
{'comment': "And they'll blame Biden and Harris.", 'created': '2024-11-08 20:35:34', 'submission_id': '1gmjk01'}
{'comment': 'The best propaganda convinces you that it doesn’t exist.', 'created': '2024-11-08 20:46:16', 'submission_id': '1gmjk01'}
{'comment': 'Bernie’s ideas were pretty popular.', 'created': '2024-11-09 06:09:23', 'submission_id': '1gmjk01'}
{'comment': 'Literally the just need ask Bernie for a to do list and follow through no questions asked. He and AOC are the most well know members who speak directly to the average americans need in a way they can connect to.', 'created': '2024-11-08 23:24:16', 'submission_id': '1gmjk01'}
{'comment': '[removed]', 'created': '2024-11-09 15:15:38', 'submission_id': '1gmjk01'}
{'comment': "Yeah but not popular enough. I love Bernie btw, I think he'd have been the President the US deeply needs.", 'created': '2024-11-09 06:23:34', 'submission_id': '1gmjk01'}
{'comment': "one of the things you can still do and that will be critical is shift focus to your own state.\xa0 \xa0you can't undo the past week.\xa0 \xa0you *can* do everything possible still to keep blue voices in the roles that set electoral districts, make voting laws, run elections,\xa0 appoint judges, hear cases, prosecute crimes, and decide which citizens to respect and protect.\xa0 \xa0\xa0\n\n\n\xa0Marc elias' democracy docket podcast and website might help to ground you.\xa0 \xa0you'll learn a lot too.\xa0 \xa0he's been a tireless powerhouse of pro-democracy legal battles.\xa0 \xa0\xa0", 'created': '2024-11-08 18:52:14', 'submission_id': '1gmjg6t'}
{'comment': 'Thank you so much. I am also looking for sources for my mom. She’s 78 and absolutely terrified. I try to console her as much as I can, but she tends to listen to everybody but me, so I thought maybe another voice would help. I will definitely check out the podcast. Thank you again.', 'created': '2024-11-08 19:30:37', 'submission_id': '1gmjg6t'}
{'comment': "Well said, Christopher. Disability rights advocates are the backbone of progress. We all have a lot to learn from your example. I'm so thankful for your leadership and faith.", 'created': '2024-11-08 15:49:44', 'submission_id': '1gmgpg6'}
{'comment': "As a fellow autistic person, I am so glad to see there are self advocates like you working hard to fight for a better world for us! I wish I could do more myself but I'm currently struggling with social anxiety and my mental health, and I need to focus on that before I do anything else. Thank you, and keep fighting! 👍\n\n-Vanessa, 36 y/o, NY. Since you introduced yourself I might as well do the same. Hello! ☺️", 'created': '2024-11-08 16:05:33', 'submission_id': '1gmgpg6'}
{'comment': '🤗 I am sped teacher with autism and found this inspirational this election disgusted me. Tempted to give up i needed to read this today', 'created': '2024-11-08 19:08:24', 'submission_id': '1gmgpg6'}
{'comment': "another autistic (aspie) here. It took 40 years of my life and 2 divorces to figure it out. The worst thing to me is the inability to truly feel love but still can feel anger. I'm furious about rump getting away with everything and that won't go away.", 'created': '2024-11-08 19:30:13', 'submission_id': '1gmgpg6'}
{'comment': 'I have two children and a partner with ASD. This is wonderfully written.', 'created': '2024-11-08 19:48:51', 'submission_id': '1gmgpg6'}
{'comment': None, 'created': '2024-11-08 17:41:55', 'submission_id': '1gmgpg6'}
{'comment': "Trump stole the vote? Trump cheated?\n\nFunny how when Reps say it, they're crazy, but now y'all are saying it. Interesting...", 'created': '2024-11-08 16:58:12', 'submission_id': '1gmgpg6'}
{'comment': 'Thank you very much. I think you should share this with your students if you would like. I give you absolute permission', 'created': '2024-11-08 20:15:03', 'submission_id': '1gmgpg6'}
{'comment': 'Thank you very much for your humble and a deep appreciation for this message', 'created': '2024-11-08 20:14:41', 'submission_id': '1gmgpg6'}
{'comment': "I have been contemplating everything the last few days and so much for and I have been really struggling to get healthy with my weight. But this is far more greater than anything we've ever dealt with before. But I cannot do it alone, it's going to take all of us to fight the good fight more than we've ever had before. So that all the work that I have done along with my mother, will not be in vain", 'created': '2024-11-08 17:44:54', 'submission_id': '1gmgpg6'}
{'comment': 'That is not the takeaway.', 'created': '2024-11-08 17:30:31', 'submission_id': '1gmgpg6'}
{'comment': "There's reasonable suspicion that he did!", 'created': '2024-11-08 16:58:43', 'submission_id': '1gmgpg6'}
{'comment': 'They do cheat, lying and propaganda is fascism. Manipulating voting laws and preventing certain people from voting is cheating. They don’t deserve the win, and people will find out the hard way that there are a lot of people at fault for allowing this perversion of our political system to happen over the course of decades.', 'created': '2024-11-08 19:58:28', 'submission_id': '1gmgpg6'}
{'comment': 'The fucking debased audacity of a diaper fetishist talking shit to a disability advocate.\n\n\nThis is the American discourse in a nut shell. Under represented individuals having to convince the likes of you.', 'created': '2024-11-08 19:54:46', 'submission_id': '1gmgpg6'}
{'comment': 'There is no Dem mob threatening to storm the capitol. Interesting..', 'created': '2024-11-09 03:08:04', 'submission_id': '1gmgpg6'}
{'comment': 'Awesome thank ye 🏴\u200d☠️', 'created': '2024-11-08 20:16:30', 'submission_id': '1gmgpg6'}
{'comment': "You have my respect and encouragement for your continuing career in maintaining democracy and advocating for its perseverance. I'm so heartbroken by how many people disappeared, didn't turn out, or changed course. \n\nKeep going!", 'created': '2024-11-08 17:47:38', 'submission_id': '1gmgpg6'}
{'comment': "It was stated at the end, so it's obviously part of it.", 'created': '2024-11-08 17:34:21', 'submission_id': '1gmgpg6'}
{'comment': 'Could you please tell me what grounding your suspicion has?', 'created': '2024-11-08 17:17:46', 'submission_id': '1gmgpg6'}
{'comment': 'You have my absolute thanks for your encouragement and your spirit of helping me keep going.\n\n', 'created': '2024-11-08 17:53:28', 'submission_id': '1gmgpg6'}
{'comment': 'Did you read anything that he wrote!?', 'created': '2024-11-08 17:42:40', 'submission_id': '1gmgpg6'}
{'comment': 'See the President-elect himself:\n\nDonald J. Trump\n@realDonaldTrump\nA lot of talk about massive CHEATING in Philadelphia. Law Enforcement coming!!!\n\n9.31k\nReTruths\n\n31.4k\nLikes\nNov 05, 2024 at 4:39 PM\n\nhttps://truthsocial.com/@realDonaldTrump/posts/113432510587738535', 'created': '2024-11-08 18:08:24', 'submission_id': '1gmgpg6'}
{'comment': "Yes, I did. But he posted that at the end, and I wanted to ask why he said it. That's how a conversation works. Just because the topic at hand makes you uncomfortable doesn't mean that others can't discuss it.", 'created': '2024-11-08 17:44:22', 'submission_id': '1gmgpg6'}
{'comment': 'Merrett Garland is an ineffectual old fool. He should resign, forthwith.', 'created': '2024-11-08 15:18:18', 'submission_id': '1gmdv5j'}
{'comment': 'Why doesn’t the senate subpoena all the records and hold hearings and basically lay out the evidence against Trump. He’s immune now. But the public has a right to know.', 'created': '2024-11-08 17:32:15', 'submission_id': '1gmdv5j'}
{'comment': 'Sooo trump is totally innocent now I guess across the board?', 'created': '2024-11-08 16:07:59', 'submission_id': '1gmdv5j'}
{'comment': 'The entire Federal government now agrees Idiot Trump IS above the law.', 'created': '2024-11-08 15:36:57', 'submission_id': '1gmdv5j'}
{'comment': 'Should never have been appointed. And should have been fired.', 'created': '2024-11-08 17:32:49', 'submission_id': '1gmdv5j'}
{'comment': "The Democratic senate has what, like a month and a half left? Dude they got bigger things to deal with now that Trump and his cronies are a few weeks away from the White House and control of Congress, and laying out the evidence on issues that voters obviously didn't care about will not be a good use of their time.\n\nI'm not saying they won't do it eventually. If I had a guess, a lot of reps and federal workers are probably creating backups and copies of all the shit they have. Those will probably be disclosed later on, probably months from now. But doing it right now? That would be a huge waste of time, I would rather they focus on pushing through some more last minute aid to Ukraine, more funding to areas experience disasters etc. Hell they should push Sotomayor to retire right now so they can put in someone younger before January (though I have no clue how much time a justice appointment takes).", 'created': '2024-11-08 21:28:29', 'submission_id': '1gmdv5j'}
{'comment': 'This is why he ran. To save himself. That’s all he cared about.', 'created': '2024-11-09 05:48:52', 'submission_id': '1gmdv5j'}
{'comment': 'My contempt for Merrick Garland is intense.', 'created': '2024-11-08 17:50:09', 'submission_id': '1gmdv5j'}
{'comment': 'Wait, it wasn’t a selfless act to benefit the American people????? 🥺', 'created': '2024-11-09 05:52:22', 'submission_id': '1gmdv5j'}
{'comment': 'The roll over and die democrats? That’s what I’ve been calling us for years, because republicans always seem to manage to push their agenda through, yet we remain calculated and cautious and let them push us around. I’m so frustrated, my head could explode. The republicans are going to have a field day with the Trump administration- open the public coffers and let the corruption begin!', 'created': '2024-11-08 14:59:39', 'submission_id': '1gmgr8w'}
{'comment': 'Uh, we haven’t meaningfully enforced any laws on these fucking traitors for 4 years.\n\nWho gives a shit what we catch them doing when no consequences follow?', 'created': '2024-11-08 13:43:06', 'submission_id': '1gmgr8w'}
{'comment': "Use to watch what you can't stop.", 'created': '2024-11-08 14:07:27', 'submission_id': '1gmgr8w'}
{'comment': 'Yeah :( I think it’s about time that the democrats stop taking the high road and start fighting dirty. It’s been working for the republicans for years. We’re at the precipice of never getting our country back. They need to start now if we want our institutions to hold for the next four years.', 'created': '2024-11-08 15:21:16', 'submission_id': '1gmgr8w'}
{'comment': "But at the same time part of why the dems lost is because they called out the racist sexists for being racist and sexist....but they don't believe they are so...here we are\xa0", 'created': '2024-11-08 15:30:58', 'submission_id': '1gmgr8w'}
{'comment': 'Agree. I’ve been saying that since the first Trump presidency', 'created': '2024-11-08 15:59:30', 'submission_id': '1gmgr8w'}
{'comment': 'Yeah, I guess our mistake was thinking that America isn’t the racist and sexist country that it actually is. This election proved that.', 'created': '2024-11-08 15:34:47', 'submission_id': '1gmgr8w'}
{'comment': 'Sadly yes.', 'created': '2024-11-08 18:33:22', 'submission_id': '1gmgr8w'}
{'comment': "Yes big fan and ultimately this ass backwards country won't accept a female leader... Hilary and now Harris fell way short. Tells you alot about where we really are in society", 'created': '2024-11-08 13:23:36', 'submission_id': '1gmdvm3'}
{'comment': None, 'created': '2024-11-09 00:03:20', 'submission_id': '1gmdvm3'}
{'comment': "After this election, I'd push out the possibility of a woman president for 50 years. Disgusting.", 'created': '2024-11-09 03:40:19', 'submission_id': '1gmdvm3'}
{'comment': 'This 100 percent', 'created': '2024-11-08 14:47:40', 'submission_id': '1gmdvm3'}
{'comment': "I'm sure we will see a lot of support from our conservative fellows for states rights. Yes?", 'created': '2024-11-08 09:49:24', 'submission_id': '1gmd4qb'}
{'comment': "My instincts tell me that the next Democratic Presidential nominee will be a current Democratic governor for several reasons: \n1)Democratic Senators hands are tied because we don't have a majority in the Senate and thus they are going to be railroaded by the Republican Senators and seen as being ineffective, \n2) Democratic Congress reps don't have enough power individually to garner the respect of the populace (sorry AOC and I do love you), \n3) I don't think Kamala will run again (unless she uses these next 4 years to really show she is for the people by doing a lot of volunteer work and daily interactions with the media \n4) nor do I think Michelle Obama will run (though i would love to see her do it), \n5) Pete Buttigieg is great but he is not in any political office unless he uses social media to talk to the American public in a way that Trump did during Obama and Biden Administrations...his videos were great where he talked to undecided MI voters but it also didn't really work \n6) Walz's debate performance was less than stellar and he didn't even win his county \n \n ....so that leaves us with governors....and a Democratic Governor who protect their state's population from some of the harms of the Trump Administration while accepting the wins to pass through will gain the most respect and attention. \n\n\nRight now, I put in the top running because they are already known to many around the country, \nKentucky's Andy Beshear, \nCalifornia's Gavin Newsom, \nIllinois' JB Pritzker, \nPA's Josh Shapiro, \nand Michigan's Gretchen Whitmer \n\n\nI think Newsom seems like the most likely winner for the nominee because of the size of CA's economy, but given Beshear coming from solid red Kentucky, he would be seen as the most bipartisan and yet still Democratic leaning candidate.\n\nYour thoughts?", 'created': '2024-11-08 11:02:28', 'submission_id': '1gmd4qb'}
{'comment': 'This is especially important for Michigan to do right now. Well we still have the legislature. But Republicans picked up seats and will control our house. \n\nI think we still have some more legislative session left before swearing in the new representatives in January.\n\nNo doubt, Whitmer is figuring out what to prioritize for that session', 'created': '2024-11-08 13:46:51', 'submission_id': '1gmd4qb'}
{'comment': 'We cannot skip over the midterms. The main issue is the messaging and somehow getting loud about the misinformation that is constantly spread far and wide by the right. It has to be a top of the line priority. I have heard so many people on the right base their vote on complete lies and misinformation. We have to stop this somehow!', 'created': '2024-11-08 16:42:44', 'submission_id': '1gmd4qb'}
{'comment': 'Please, Governor Moore, do whatever you can to protect us in Maryland.', 'created': '2024-11-08 15:33:34', 'submission_id': '1gmd4qb'}
{'comment': "I want to see Michelle Obama run a primary and see how she does. It's amazing how many people who voted trump this year, that I talked to, have said they would vote Michelle over Trump. They just didn't like kamala. \n\n\nWhen I look at 2020, we did have a bottom of the barrel candidate. She was a last place finisher in the primaries, not even top 5.", 'created': '2024-11-08 17:50:14', 'submission_id': '1gmd4qb'}
{'comment': 'Reasons I’m glad I moved from a red state to a blue state two years ago…', 'created': '2024-11-08 18:26:22', 'submission_id': '1gmd4qb'}
{'comment': 'Liberals supported a strong fed in the past, because we thought it could make life better for all Americans. Now I realize that much of the populations of red states wants to be exploited and treated like garbage by their state governments. Just let them have what they want.', 'created': '2024-11-08 19:28:48', 'submission_id': '1gmd4qb'}
{'comment': 'A good historical lesson for all Democratic leaders of states during next Trump era -\n\n\n•\t\u2060Texas. After Anne Richards, 1995. That’s where your state is headed now. Democratic governors, read the story of Bush making TX Red and how the dominant forces at work in 90s resonates… that turned the south Red too, even 30 years after.\n\n\nTrump could’ve said “make America… Texas”\n\n\n(* lifetime blue dog democrat living in TX)', 'created': '2024-11-08 20:37:48', 'submission_id': '1gmd4qb'}
{'comment': '*cries in florida*', 'created': '2024-11-08 18:05:32', 'submission_id': '1gmd4qb'}
{'comment': 'The should be building a resistance army', 'created': '2024-11-08 17:35:37', 'submission_id': '1gmd4qb'}
{'comment': 'I have not heard anything from Walz. We have a trifecta until the next year. He needs to move now to get things done to trump proof our state', 'created': '2024-11-08 20:48:39', 'submission_id': '1gmd4qb'}
{'comment': 'I’ve come to appreciate states’ rights all of a sudden.\n\nIt really is all about who is in power. That will determine whether you care for Federal Supremacy or States’ Rights in that political juncture.', 'created': '2024-11-08 19:10:16', 'submission_id': '1gmd4qb'}
{'comment': 'Make it quick. We need to find a way to leave Louisiana.', 'created': '2024-11-08 19:44:10', 'submission_id': '1gmd4qb'}
{'comment': 'Josh Myers looks really good in this photo.', 'created': '2024-11-08 20:04:17', 'submission_id': '1gmd4qb'}
{'comment': 'Is this how the movie civil war started?', 'created': '2024-11-08 21:25:26', 'submission_id': '1gmd4qb'}
{'comment': 'You cant Trump proof state laws. \n\nFederal Supremacy Clause will take into consideration. Federal Laws will override even a state’s constitution (or law) when in conflict. I’m fairly certain even an executive order or federal regulation will triumph anything on the state level if in conflict.', 'created': '2024-11-08 22:00:18', 'submission_id': '1gmd4qb'}
{'comment': 'Except Polis, step the fuck up!', 'created': '2024-11-09 05:03:58', 'submission_id': '1gmd4qb'}
{'comment': 'Make extreme liberal laws so MAGA will want to leave. Get them out.', 'created': '2024-11-09 18:31:27', 'submission_id': '1gmd4qb'}
{'comment': 'Virginia. Help!', 'created': '2024-11-10 02:42:37', 'submission_id': '1gmd4qb'}
{'comment': 'For once, I’m glad state autonomy is a thing. Sure it sucks when you’re trying to federalize civil rights and the southern historically racist, slave states refuse to do so because “state rights”. \n\nBut when a goddamn autocratic wannabe becomes president, thank god for state rights.', 'created': '2024-11-08 15:39:10', 'submission_id': '1gmd4qb'}
{'comment': 'A Governor is probably the right choice. I like Newsom a lot, but having 2 nominees from California in a row is going to be a tough message. Gives the other side an easy thing to hammer. I like Bashear, but for president he’s just not charismatic enough for me. Whitmer, like her a lot…..but….we’ve seen two elections in short order with a female candidate go south. It safe to say that in this environment a female candidate is a tough tough sell. Pritzker would have been good against Trump. Rich guy against a rich guy. One successful, one a criminal.\n\nRight now, the probable front runner choice is Shapiro. He has the charisma, he can show empathy, he can shit talk in a way that’s not nasty. Long way to 2028 though.\n\nThe Dems have 4 years to work from the bottom up, I.e. local to state to then Fed. We really need to start taking back the narrative at the local level. That will ultimately help at the federal level.', 'created': '2024-11-08 14:06:53', 'submission_id': '1gmd4qb'}
{'comment': ">Your thoughts?\n\nWell, after Trump talks with Putin and Orban, he'll have his supermajority working on how to prevent a Democrat from winning another election. \n\nSo I wish people would talk less about the 2028 presidential race. And focus more on how do we live with fascism. How do we resist it.\n\nBecause the 2028 election just doesn't seem like something we should be worried about right now.", 'created': '2024-11-08 11:08:04', 'submission_id': '1gmd4qb'}
{'comment': 'Gavin Newsom is not a good choice. Midwest residents that were interviewed after Kamala was announced as Bidens replacement said she’s “too California woke”. Heard more than once how Red and Swing-State voters do not like California area politicians.\n\nWill have to be an either a red or swing-state Democratic governor, or maybe perhaps another candidate to come onto the scene most people won’t have heard of until 2027. How many people knew about Barack Obama back in 04’ after John Kerry lost?', 'created': '2024-11-08 15:06:31', 'submission_id': '1gmd4qb'}
{'comment': 'JB Pritzker with Gretchen as a VP would be a fantastic ticket.', 'created': '2024-11-08 15:49:57', 'submission_id': '1gmd4qb'}
{'comment': '“D-California” is off-putting to many Americans, whether fair or not.', 'created': '2024-11-08 15:43:12', 'submission_id': '1gmd4qb'}
{'comment': "They all have pros and cons. I don't see an obvious choice yet, but maybe in a couple of years things will become more obvious.\n\nWe can't run a woman so Whitmer's out. I think Andy Beshear is too nice--we need someone with personality who can hold their own in the dirty dog fight that 2028 will be.\n\nI think our 2028 message will be hammering home financially helping the working class. I just don't know how Pritzker is going to do delivering that message when he is a literal billionaire, even though I know he genuinely believes in that cause. Newsome honestly has the best personality suited for this combat, but I really don't know how his close association to California is going to lose us voters who think California is a hellscape or at least not connected to the rest of the country. Josh Shapiro is a strong speaker and I think could hold his own. I just don't know much about his policies to know if he could do a great job getting the left-wing working class message out there.", 'created': '2024-11-08 15:19:35', 'submission_id': '1gmd4qb'}
{'comment': 'Go ahead and scratch off Whitmer.', 'created': '2024-11-08 15:28:46', 'submission_id': '1gmd4qb'}
{'comment': 'No democrat from California will ever be president. Accept it. Please.', 'created': '2024-11-08 17:26:09', 'submission_id': '1gmd4qb'}
{'comment': 'Florida might or might not be pure fantasy, but Newsom has too much green baggage to **ever** win Florida, Georgia, or any other state in the southeastern US.', 'created': '2024-11-08 19:48:23', 'submission_id': '1gmd4qb'}
{'comment': 'we need to avoid politifans from california New York and Illinois. We need politicians from purple states. Governors are best because governors have a lot more power and authority on an individual level. A governor with a good record is 10X better than any senator. \n\nIn primaries (for president) I always prefer governors all else being equal. Being a governor you are the CEO of thousands of civil servants compared to what 100 max?', 'created': '2024-11-08 22:04:38', 'submission_id': '1gmd4qb'}
{'comment': "I want the next dem candidate to be someone safe and predictable. Something with an established track record, and most of all, the ability to actually communicate with the voters. Someone who will look at why Harris lost votes, and learn from it. Harris had good policies. She could have won, but she was terrible at connecting to more people, or relating her policies to them as individuals. She could do it, but she didn't hammer it home enough, and the dem candidate needs to hammer it home every single time because the press isn't going to give them the attention to do it for them.\n\nI also think they need to be floating potential candidates now. Not super overtly, so less time to build a game plan by the GOP against them, but taking stock of whose available, and likeable, and with qualities that resonate with the rather diverse tent that is the democratic voter.\n\nIn the mean time, they need to hammer home every single thing that Trump and the GOP do this time around. Make sure the people know what the GOP does, and how it is affecting people. Stop this demure silence waiting for it to cycle out, while the GOP blames it on everyone. Dems need to bitch and complain about everything, just like the GOP does. The media wants a spectacle, give it to them. Take the wind out from under the GOP's and Trump's wings. Make them, and him react, because when they do, they always look like petulant children.", 'created': '2024-11-09 02:46:57', 'submission_id': '1gmd4qb'}
{'comment': 'I’d really fear for her safety tbh', 'created': '2024-11-08 18:42:49', 'submission_id': '1gmd4qb'}
{'comment': 'Unfortunately a lot of Michelle’s enduring popularity is because she’s not seen as a partisan figure. That’ll change if she actually runs for President.', 'created': '2024-11-08 20:03:32', 'submission_id': '1gmd4qb'}
{'comment': "Technically yes, but it still requires that the states play ball. What's being talked about is more about disrupting Trump and GOP efforts, forcing judicial review, and even then, potentially creating a constitutional crisis that Trump and the GOP will have to respond to, forcing their assertion of states rights to the forefront.\n\nIt's a situation that would have to be tread carefully, because if they're too aggressive, it could turn people against the administration. If they aren't aggressive enough, they'll look weak. I don't expect to be able to be that diplomatic about it though, so he'll probably come across as aggressive, while at the same time looking whiny and weak\n\nIt's one of those hail mary last stand type of deals, and it's probably the best they can do should the feds decide to overstep their bounds. GOP and Trump can pretend and assert that the country's majority is solidly behind them, mandating them to do all the things they said, but they know that not everyone is going to be on board with some of the bad things they'll do.", 'created': '2024-11-09 03:03:29', 'submission_id': '1gmd4qb'}
{'comment': "Except that Republicans will not respect state rights when they conflict with the goals of the Republican state. They don't stand by any of their principles. Republicans are basically matadors. They get people to charge for the red cape. It's just a trick.", 'created': '2024-11-08 15:40:59', 'submission_id': '1gmd4qb'}
{'comment': "I dunno if we can resist it. We have to see what the next two years are like, but we're talking about Republicans having a majority in every branch of the government. There are no checks and balances anymore. \n\nI hope some miracle presents itself in the next few years because I'm nervous, man.", 'created': '2024-11-08 14:46:06', 'submission_id': '1gmd4qb'}
{'comment': "I disagree. I think there's a window of time in which things can go either way, and we have to keep thinking that we'll revert to normalcy, or else we're surrendering unilaterally.", 'created': '2024-11-08 17:31:18', 'submission_id': '1gmd4qb'}
{'comment': 'Right?? I’ve been saying since he got the nomination that it’s going to be a civil war regardless of the winner. \n\nWe have to fight back against them, it’s just going to be a lot harder without the military controlled by us.', 'created': '2024-11-08 17:43:31', 'submission_id': '1gmd4qb'}
{'comment': '‘04 was when Obama got elected to the Senate and burst onto the national stage as a generational orator.', 'created': '2024-11-08 18:44:25', 'submission_id': '1gmd4qb'}
{'comment': "He's the poster child of liberal policies gone awry among the GOP, and I think a lot of moderates outside CA aren't on board with his policies. Maybe they don't hate them, or him, but they've spent enough time hearing they shouldn't like him, that's it could be a subconscious belief for them.", 'created': '2024-11-09 02:56:10', 'submission_id': '1gmd4qb'}
{'comment': 'Yeah, if there will be another election I think that could be the ticket to win.', 'created': '2024-11-08 17:17:48', 'submission_id': '1gmd4qb'}
{'comment': 'If you want someone who can do the dirty dog fight, probably John Fetterman or Jon Ossoff. Fetterman tells it like it is, calls people out on their bs, and stay on message. Ossoff knew how to attack Perdue and win. However, it’s probably best that they stay in the Senate.', 'created': '2024-11-08 17:20:10', 'submission_id': '1gmd4qb'}
{'comment': 'As top of the ticket yeah, but as VP? I think she’d be a great pick for VP.', 'created': '2024-11-08 17:18:58', 'submission_id': '1gmd4qb'}
{'comment': 'Whether republicans like it or not, what can they do about it? They pass some bizarre federal law forcing all states to follow it, and then New York for example refuses to do it. It goes to SCOTUS. As bananas as that court is, I’d be surprised if they all of a sudden started advocating against state rights. That’s their whole thing, no? \n\nBut let’s say SCOTUS does do the crazy thing in support of autocratic power, then what? Will New York comply with SCOTUS if it goes against their state constitution and state rights? \n\nWhat is Trump going to do, send federal forces or the us military to New York? Arrest Gov Hochul and NY AG James for not enforcing federal law? That escalation seems too much even for someone like Trump.', 'created': '2024-11-08 15:47:19', 'submission_id': '1gmd4qb'}
{'comment': 'While true, at least these states can disrupt attempts to assert national authority through lawsuits and what not. They can very well create a constitutional crisis which the Trump admin would have to be careful about how they handle, because while he may think he can run rampant over the states, it may not end up being popular, or beneficial for him to do so.', 'created': '2024-11-09 02:23:04', 'submission_id': '1gmd4qb'}
{'comment': 'Federal Laws ? Only ones WE want.', 'created': '2024-11-09 03:21:01', 'submission_id': '1gmd4qb'}
{'comment': "I'm hoping it doesn't get to civil war before we can seriously flip congress.", 'created': '2024-11-08 16:28:33', 'submission_id': '1gmd4qb'}
{'comment': ">We have to fight back against them, it’s just going to be a lot harder without the military controlled by us.\n\nIt doesn't necessarily have to be that way. But after Biden's speech after the election, it doesn't look like he's up to the fight. \n\nHopefully that's a facade, but it really didn't seem like it. It feels like Biden has probably given up because of fear of retribution to his family, and is going out of his way to place nice with Trump.", 'created': '2024-11-08 18:29:39', 'submission_id': '1gmd4qb'}
{'comment': 'Yeah, that’s what I meant. No shade towards her at all. Hell I wish she was my governor.', 'created': '2024-11-08 18:03:20', 'submission_id': '1gmd4qb'}
{'comment': "That's exactly what he's going to do, yes. And when he does it Fox News will be pounding the table demanding that Governor Hochul face the death penalty for his treason. They are already demanding the death penalty for those people who prosecuted Donald Trump. \n\nMy expectation is that Donald Trump will probably lean on the guys behind Akademi, the mercenary outfit, to create a presidential task squad of people empowered to execute the will of the president. He will develop a military group specifically loyal only to him. Obviously they will receive blanket pardons.", 'created': '2024-11-08 15:58:18', 'submission_id': '1gmd4qb'}
{'comment': 'No, all analysis of SCOTUS rulings under the Roberts Court points to nothing more than ideological support for a Republican President, not legal consistency.\n\nAnd yes, the plan is precisely to send the military to New York. How are even Democrats this out of touch? IT’S HIS LITERAL PLAN. HE SAID IT HIMSELF. IT HAS BEEN BROADCAST EVERYWHERE. WHAT THE FUCK?', 'created': '2024-11-08 15:59:48', 'submission_id': '1gmd4qb'}
{'comment': "> What is Trump going to do, send federal forces or the us military to New York? Arrest Gov Hochul and NY AG James for not enforcing federal law?\n\nI wouldn't put it past the project 2025 group. get ready for civil war (and a great depression)", 'created': '2024-11-08 16:02:40', 'submission_id': '1gmd4qb'}
{'comment': 'There\'s a episode of designated survivor that is based on a similar scenario. Basically, a state governor refusing the authority of the federal government. The show kind of wrapped it up neatly, but I imagine some of the events in that story would play out the same...outside Trump being reasonable with the governor and finding an amicable solution.\n\nTrump will certainly rail over the "treason", and more so how he refused the king, but he\'s going to have every eye in the nation on him, and one wrong step can completely change how people view him. Even though many support him, I don\'t think they actually understand the depths of his depravity.', 'created': '2024-11-09 02:42:18', 'submission_id': '1gmd4qb'}
{'comment': "Yeah, but I just think at some point he'll send armed men to arrest Gavin Newsome.", 'created': '2024-11-09 03:44:35', 'submission_id': '1gmd4qb'}
{'comment': "It would be a test if the US military would follow unconstitutional orders. Might depend on where he's at in putting cronies in position of power.", 'created': '2024-11-09 02:44:05', 'submission_id': '1gmd4qb'}
{'comment': 'Quite possibly, but the optics of arresting a state governor, after spending years touting states right, may not play out well. I know we like to say, "his base won\'t care", but it\'s a generalization that ignores that not everyone in his base is on board or aware, of his fascist tendencies. They\'re dismissive of them, but when faced with real evidence he is what people say he is, their moral proclivities tend to start to shift.\n\nIt\'ll really depend on the situation, and what\'s being done, and who ends up having the right side in the view of the public.', 'created': '2024-11-09 03:56:05', 'submission_id': '1gmd4qb'}
{'comment': "I don't think we're thinking of it the same way. You seem to be thinking of a bad presidential administration. I'm thinking of the rise of the American mafia state. They don't care about the laws, they'll do whatever they want and so long as he stuffs his pockets with cash, leaving America a smoking ruin behind him is a big plus.\n\nThey're all going to start betraying each other. Trump will not share a spotlight, so he'll fire or eliminate anybody who tries to take his spotlight. Vance will be hoping to nudge him down a flight of stairs so he can take over. Putin is going to humiliate the American president on the world stage to show the world he's now in charge and that the USA is his bitch. The armed forces won't like that but Trump will be trying to reshape the military in his image.\n\nAs for optics, Fox News will take care of that. Or maybe Truth Social will become a branch of the government, The Voice of Truth. We'll see if he starts pulling the broadcasting licenses of the networks that say bad things about him. He talked about it, but could be hard to do. But that's what project 2025 is for, to help him do what he wants. Because when he dies, that leaves them in control of America. Trump on the other hand just does not care if anything does survive him. Maybe he will get to nuke a hurricane this time.", 'created': '2024-11-09 04:08:52', 'submission_id': '1gmd4qb'}
{'comment': "I think we are thinking in the same way, I'm just looking at how what your referencing may affect perception against Trump.\n\nI hadn't gone so far to think about internal conflicts in his administration though.", 'created': '2024-11-09 04:17:11', 'submission_id': '1gmd4qb'}
{'comment': 'The fight for 2026 begins now.', 'created': '2024-11-08 09:10:47', 'submission_id': '1gmba3r'}
{'comment': 'Happy to be a Californian!', 'created': '2024-11-13 01:58:29', 'submission_id': '1gmba3r'}
{'comment': 'She gives me Mcconnel vibes. And of course, in the post Roe world, it would be an old woman that lead his return campaign to the White House and be rewarded with becoming Chief of Staff.', 'created': '2024-11-08 09:10:42', 'submission_id': '1gmblrw'}
{'comment': "How is a Democrat going to win the 2028 presidential election, if the Republicans spend the next 4 years fixing elections so Democrats can't win?", 'created': '2024-11-08 08:10:45', 'submission_id': '1gmc16g'}
{'comment': 'Set backs?\n\nAmerica just destroyed itself \n\nAnd one third of the nation stood and watched while another 3rd just voted in a racist felon who is going to tank the economy \n\nTime to face facts \n\nAmericans do not care', 'created': '2024-11-08 08:47:26', 'submission_id': '1gmc16g'}
{'comment': 'As an American it’s so heartbreaking to see that so many people just felt that not voting was the right choice. This is why we are failing and just walked right into a fascist regime. I am scared we have lost our democracy and that we will all suffer bc some people thought she was not left enough… or her message wasn’t on point. She wanted to save democracy… she wanted to protect our rights! You want to raise min wage??? Should have voted her in… you wanted a public healthcare option… should have voted her in… wanted a tax break as a low income American… while the rich were actually going to be taxed… should have voted for her. We are a democracy…but only if we keep it… who knows at this point… let’s hope the courts hold when he breaks the law.', 'created': '2024-11-08 12:27:40', 'submission_id': '1gmc16g'}
{'comment': "There is way too much moral rot deep within the American people. There aren't enough decent people to form a winning coalition. This was a test of America's soul and it lost.", 'created': '2024-11-08 13:20:05', 'submission_id': '1gmc16g'}
{'comment': "It will be so much harder because bought media will not give the majority of the people the information they need. Right media will actively feed misinformation and when things go south, they will point the peoples rage within.\n\nAll while cutting taxes. Each time all this happens, it gets harder to crawl back anywhere close to where we were. I'm not giving up, but I'm being realistic.\n\nThough it's not clear Biden would have done any better, i wonder how the people who pushed him out still think that was a smart move. On top of everything else, we shit on a man who did a great job.\n\nSigh. I'm tired and struggling with a blooming hatred of my fellow Americans.", 'created': '2024-11-08 13:28:02', 'submission_id': '1gmc16g'}
{'comment': "Joe is being a little nieve. Republicans play by different rules. Dems aren't willing to get in the gutter. The problem with Dems, and this is why they're Dems, they people and care so much, but to a fault. How do you teach kids a lesson? Let them fall down and get hurt, then help them up. Well, here we are, we're falling down. Question is, how do we pick it back up", 'created': '2024-11-08 13:22:15', 'submission_id': '1gmc16g'}
{'comment': 'I hope him and Kamala don’t give up on us. Biden, please use your power (that you have now) to protect us', 'created': '2024-11-08 13:47:58', 'submission_id': '1gmc16g'}
{'comment': "This is incredibly naive. They think we are demons and child rapists and God knows what else. You think they are going to let anyone who isn't hardcore MAGA sniff another election? Are you kidding me? If Trump announces on January 20, 2025 (as per his Day 1 Dictator) that elections are over, who is going to stop him? What's the recourse? It's over", 'created': '2024-11-08 14:31:58', 'submission_id': '1gmc16g'}
{'comment': 'Biden is a tool. Its his inaction and cowardice that put us in this mess! He knows Trump will forever destroy America, but is talking about peaceful transition. Seriously fuck him. He is the only person alive who could save us in the 11th hour, but has turned his back on his people. Bidens legacy will be Trump and the utter destruction of the free world.\xa0', 'created': '2024-11-08 14:58:20', 'submission_id': '1gmc16g'}
{'comment': 'Is giving up unforgivable? I’ll tell you what’s unforgivable: not stepping aside earlier to give our party some time to really pick our person. \n\nI honestly do not fault Kamala Harris. I think she did the absolute best with what she had, if I’m being honest. Who would pass up an opportunity like that when presented? It is not her who let us down if we’re looking at accountability in our party, it’s absolutely Joe Biden. And the millions of 2020 Democratic voters who either chose to sit out or protest vote when the moment called for keeping a fascist out of office.', 'created': '2024-11-08 16:14:27', 'submission_id': '1gmc16g'}
{'comment': 'It must be nice to be able to fuck your entire legacy into the ground by being too ego-driven to keep the promises you made to be a “transitional president” and then have the audacity to lecture people for being tired and demoralized after the resounding loss your actions contributed to.', 'created': '2024-11-08 16:23:13', 'submission_id': '1gmc16g'}
{'comment': "Biden shouldn't have run again. Should have let primaries decide the candidate.", 'created': '2024-11-08 16:48:35', 'submission_id': '1gmc16g'}
{'comment': "I didn't give up. The liberal media who decided he was too old gave up. The political leadership who acquiesced to the media pressure gave up. When Biden was kicked to the curb, we were doomed to lose.", 'created': '2024-11-08 17:15:35', 'submission_id': '1gmc16g'}
{'comment': "I just wish America could stay the course longer than 4-8 years I'm tired of the yo-yo / up and down going from D to R creates. If a D can't fix everything on day 1, we vote for the R, which seems to break stuff more, then we go to D, get mad things cant get fixed pronto then go back to R.", 'created': '2024-11-08 18:15:38', 'submission_id': '1gmc16g'}
{'comment': "It's just so depressing since it's like we already saw this already. There is no possibility of a pleasant surprise with Trump this time around like there was the first time around. We know who he is and it was bad. \n\nThis time it's like watching a bad movie on a re-run and the majority chose to stay and watch it instead of changing the channel. That's what I don't get.", 'created': '2024-11-08 17:37:50', 'submission_id': '1gmc16g'}
{'comment': None, 'created': '2024-11-08 18:03:18', 'submission_id': '1gmc16g'}
{'comment': 'Tell that to the millions that gave up before voting. \nWe have 2 years to solve our problem getting people out to the polls. We know the GOP/MAGA cult shows up every time. We need to find the candidates now and prepare so hopefully at the midterms we can retake Congress to give some oversight to the tyrants! And we must be able to do that without abandoning people’s of any racial background, healthcare access/rights including reproductive care, the LGBT+ communities, climate protections!', 'created': '2024-11-09 01:49:17', 'submission_id': '1gmc16g'}
{'comment': 'Democracy is over now. This Anti-Christ literally said he would use the military against liberals “American Citizens who don’t agree with him”. This is now a “Banana Republic”. Russia wins..', 'created': '2024-11-09 02:52:31', 'submission_id': '1gmc16g'}
{'comment': "I'm just hoping civil war doesn't break out at this point.", 'created': '2024-11-08 16:20:59', 'submission_id': '1gmc16g'}
{'comment': 'I won’t blame Biden or Kamala for what they did. It takes a lot of guts and grit to do what they did and they tried their best.\n\nTo me the big thing still brewing is the house and if democrats can keep that seat of the government. It is still being determined as we speak. If that is left to the republicans then we need to prepare to flee or fight. The fight part will only be from democratic states and their governors to protect their citizens. IF the democrats get the house I would expect all of them to sit on their hands and not give republicans a damn thing. Not even once. \n\nThe idea of ending birthright citizenship and everything just tells of what the rich and others plan to have in the United States which is Russia 2.0 with Putin as a consultant. \n\nPeople do not realize America as we know will drastically change starting 1/20/25 and we need to prepare to protect ourselves, our families, our liberties, and our freedoms to the very end', 'created': '2024-11-08 19:18:31', 'submission_id': '1gmc16g'}
{'comment': 'They control the presidency, Congress, the Senate and the Supreme Court. They can’t blame us for anything anymore. It’s all on them. Do you want to make America great again? OK do it.', 'created': '2024-11-09 02:42:05', 'submission_id': '1gmc16g'}
{'comment': 'Then do something fucker, while you still have power. Trump is never going to lose another election again. Don’t you get it?', 'created': '2024-11-09 18:39:49', 'submission_id': '1gmc16g'}
{'comment': 'I don’t wanna hear not one more gottdamn word out of his mouth. \n\nHe facilitated this just as much as anyone else.', 'created': '2024-11-08 09:04:24', 'submission_id': '1gmc16g'}
{'comment': 'Biden gave up….', 'created': '2024-11-08 17:43:20', 'submission_id': '1gmc16g'}
{'comment': 'Did he say that before or after he dropped out of the race🧐', 'created': '2024-11-08 11:57:27', 'submission_id': '1gmc16g'}
{'comment': 'Because many of those swing states are run by democratic governors, who hopefully be able to prevent that. This is where the electoral college may be useful.', 'created': '2024-11-08 12:05:14', 'submission_id': '1gmc16g'}
{'comment': ">How is a Democrat going to win the 2028 presidential election, if the Republicans spend the next 4 years fixing elections so Democrats can't win?\n\nProbably what is going to hurt the most, whilst simultaneously being our saving grace, is the sheer incompetence of Donald Trump and the abysmal quality of the people he trusts. There's what he wants to do, what he's capable of doing, and what resistance there may be. He's got an uphill struggle, not least in the face of his own incompetence and decline. However, I worry that as his frustration grows, his will to violence grows with it... But, like mama says, stupid is as stupid does.", 'created': '2024-11-08 15:32:54', 'submission_id': '1gmc16g'}
{'comment': 'Why would they need to fix elections when they won outright!', 'created': '2024-11-08 13:06:47', 'submission_id': '1gmc16g'}
{'comment': "That's my worry. We'll have a Hungarian style democracy.", 'created': '2024-11-09 16:58:49', 'submission_id': '1gmc16g'}
{'comment': "Project 2025, Trump's tariffs, deporting millions from the labor force, and all the other idiotic policies are going to slap the low-information voters that allowed us to get here in the face and get them to finally pay attention.\n\nThis election was won on too many voters thinking the economy is bad but was better under Trump and that grocery prices are too high. It was won by too many people thinking Project 2025 was fear mongering and not a real threat. They are not going to take the resulting price hikes of suddenly cutting out everything that makes our prices as cheap as they are lightly.\n\nNor are they going to respond well to Project 2025 mandates restricting their freedoms. We have to realize this was a very close election when we look at the projected vote totals (votes are still being counted), it only seems much worse because of the EC making specific states more important than others. We may be looking at a 1-2 million difference. This is still a contested country with millions of voters that barely pay attention to politics until election time comes, and who vote party line because they always have. This stuff is scary, but we also need to be realistic. Trump voters are not all the crazed MAGA people we see at rallies. Some of them just vote for the not-Democrat. Many of them just voted based on groceries being more expensive than during Trump. These people are still reachable.\n\nWe need to look at the polls and focus groups and keep a clear head with this. American voters have been woefully uninformed for every election until now, that is nothing new. Those undecideds and those that thought Project 2025 was just fear mongering are going to get a cold, hard smack of reality real soon.\n\nContraception, pornography, department of education, NOAA, and shit ton of other things they didn't realize were on the ballot being banned or disappearing because of the government? That's not going to go over well. It shouldn't have come this far, but Americans historically are not nearly as politically engaged as any of us spending our time talking about politics on reddit are. Conservative Evangelicals who would support this stuff are very loud but they are not the majority. We're going to see the clash of those who pound their chest about American freedom and those who want to enforce a specific life style.\n\nIt seems like they overlap a lot, and as a rural midwesterner there is a lot of overlap, but they are also going to be at odds like never before. I'm positive my neighbor voted for Trump. I also know he and his wife like their porn (don't ask). I HIGHLY doubt they knew what they just voted for.\n\nWe also have tons of polling data on specific issues. Project 2025 mandates are wildly unpopular among voters regardless of party. Issues like abortion access are favored by the majority nationally. Multiple Trump-won states voted in favor of abortion access in this election. They're not going to take it well if Trump's administration overrules their state's rights to enforce a total ban.\n\nMaybe I'm just coping hard, but everything I have heard and seen makes me firmly believe Americans did not realize what was on the table and MAGA Republicans think they have won an ideological battle in this country that many of their voters are not going to take well. We cannot underestimate the power of our two party system and voters that are checked out until election season where they vote party line because they always have. \n\nAll this is to say, yes they are going to make it much more difficult. But the policies they think they have support for now, when in reality it is just support for the Trump brand, are going to piss a shit load of people off by taking away freedoms they took for granted and low prices by means of cheap labor and imports that they took for granted. Maybe I'm being overly optimistic here, but I think the resulting backlash from what this government is planning to do is going to be far too strong to suppress.\n\nTo think of it in much more imaginative terms... Republicans only care about things when it affects them. This is about to affect all of them regardless of if they are MAGA church goers or not.\n\nIt's going to be rough, it's going to suck. But we need to keep our heads up because we have the opportunity to turn this around once this stuff is put into action and non-MAGA Trump supporters are forced to look at the results of their vote in the face.", 'created': '2024-11-09 00:34:21', 'submission_id': '1gmc16g'}
{'comment': "It's going to take Trumps policies to truly affect them in a negative way. It's honestly the only hope we have... people were mad at $3 eggs. Wait till they're $20, and maybe it will wake people up. It's just going to suck for the rest of us 😕", 'created': '2024-11-08 14:33:40', 'submission_id': '1gmc16g'}
{'comment': "Sadly, the Trump voters were only about 22% of the entire US population, and while I know not all of the other 78% are able to vote, I'm sure that at least 23% of the population could have stepped up, so it's even worse.", 'created': '2024-11-08 17:15:48', 'submission_id': '1gmc16g'}
{'comment': "I agree. The rightwing media ecosystem poisoned the country, and our key institutions have failed. We have no reason to expect anything like a free election going forward.\n\nTrump is old and unhealthy, so he's not long for this world. He will leave behind an ugly, rotten autocratic regime that will lose popularity as it makes us all miserable. If we're lucky, we may be able to eventually people power our way out and try something new.\n\nMainly, we need to take care of each other and survive. Get our message out in little ways, constantly. Little stickers at gas stations and grocery stores that remind people to thank MAGA voters when eggs hit $20/dozen. The messages need to be constant and ubiquitous rather than only a few big demonstrations that most people will only see through right wing media.\n\nThat's all I've got.", 'created': '2024-11-08 16:17:19', 'submission_id': '1gmc16g'}
{'comment': "Joe's been at this for his entire adult life, you don't think he understands that we can still pull back from this. I'm not saying it'll be easy to get us out of the huge hole we're gonna be in, but we'll get through this, we are Americans damnit. Do you think George Washington saw a loss on a battlefield and decided to just let the king win? Nope he kept fighting, we have to, too.", 'created': '2024-11-08 14:55:07', 'submission_id': '1gmc16g'}
{'comment': "He thinks (or maybe likes to think) it's still how it was in his early Senate days, where the Republicans and Democrats voted differently on the floor and then went out for drinks together at the end of the day.", 'created': '2024-11-08 16:40:57', 'submission_id': '1gmc16g'}
{'comment': "I agree. I like Harris and was proud to vote and campaign for her, but we should have had a primary. He couldn't stop his pride until that bad debate when the DNC was turning their backs on him.", 'created': '2024-11-08 16:42:11', 'submission_id': '1gmc16g'}
{'comment': 'Because he knew it was best considering his condition', 'created': '2024-11-08 20:48:08', 'submission_id': '1gmc16g'}
{'comment': "No he didn't. And honestly, blaming democrats for the outright fascism that Republicans continually insist on IS actually what facilitated this. \n\nSo shut up dude.", 'created': '2024-11-08 12:34:02', 'submission_id': '1gmc16g'}
{'comment': 'Because he knew it was wrong if he stayed in his condition', 'created': '2024-11-08 20:47:49', 'submission_id': '1gmc16g'}
{'comment': "So about Trump's comments about terminating the constitution...\n\n\nUnless a rapid and severe mobilization is made now, it's over. I would encourage Joe Biden to take his oath to defend the constitution seriously, and fucking defend it.", 'created': '2024-11-08 14:50:53', 'submission_id': '1gmc16g'}
{'comment': 'Be forewarned: Ohio was once a swing state, and not too long ago. Now we are not only gerrymandered red, but the propaganda around the anti-gerrymandering bill sealed the deal that this is a stolen state forever. So not even swing states have the guarantee to be swing states any further, and blue states can be easily turned (with the exception of massive ones right now).', 'created': '2024-11-08 14:58:59', 'submission_id': '1gmc16g'}
{'comment': "That's because you're thinking that they will do some kind of shenanigan illegal fix thing at the state or local level. \n\nBut they can just pass federal laws that tend to discriminate against Democratic voters. For instance, unless we see something different in this election, it looks like absentee ballots have generally benefited Democrats. So they could outlaw them, or make the requirements for getting an absentee ballot onerous (except for the military). \n\nOr they could do something crazy like give an extra vote to married couples with kids, with the man being the one to cast it. Because if you look at the Constitution it only guarantees the right to vote. It doesn't say you get the same number of votes as everyone else.\n\nAnd that is not far-fetched. Because Vance already threw out the idea that families with kids should get the vote.", 'created': '2024-11-08 12:35:06', 'submission_id': '1gmc16g'}
{'comment': '> Because many of those swing states are run by democratic governors, who hopefully be able to prevent that. This is where the electoral college may be useful.\n\nBecause the legislatures will do everything possible to [strip their power](https://kentuckylantern.com/2024/04/12/kentucky-republicans-override-beshear-vetoes/) as they have before.', 'created': '2024-11-08 18:23:45', 'submission_id': '1gmc16g'}
{'comment': "Pffft, ahahahah. You're still not getting it. You think democracy will be around in 4 years, it won't be. There will be no more legitimate elections.\xa0", 'created': '2024-11-08 14:59:42', 'submission_id': '1gmc16g'}
{'comment': 'What if they’re all arrested😐.', 'created': '2024-11-08 16:58:28', 'submission_id': '1gmc16g'}
{'comment': "I don't think we want to plan for them to fail due to incompetence. lol\n\nHe has already selected a chief of staff, Susie Wylie, who seems to be a savvy political operator, who will support his vision. \n\nAnd don't forget about Musk who, despite being a bag of shit, is pretty damn smart. And I wouldn't be surprised to see him as a special advisor or in the cabinet. \n\nSo Trump really only needs a couple smart people to rely on as his lieutenants. And a loyal general as chairman of The joint Chiefs. And then they can make all the sycophants do what Trump wants.", 'created': '2024-11-08 15:49:06', 'submission_id': '1gmc16g'}
{'comment': '1. Trump cheated with help from Russia, AGAIN! 2. Yes, he will always win from now on, the same way Putin always wins, and every other world dictator. Anyone who says different will fall out of a window or a helicopter just like in Russia.', 'created': '2024-11-08 15:03:42', 'submission_id': '1gmc16g'}
{'comment': 'I hope you can convince them of that. lol', 'created': '2024-11-08 13:29:42', 'submission_id': '1gmc16g'}
{'comment': 'Eventually, they’ll come for their guns.\xa0', 'created': '2024-11-09 00:52:00', 'submission_id': '1gmc16g'}
{'comment': ">They are not going to take the resulting price hikes of suddenly cutting out everything that makes our prices as cheap as they are lightly.\n\nTrump will just call it bidenflation, holdover from Biden. And because they don't understand tariffs, they won't get that the tariffs caused the jumping pricing.\n\n>Maybe I'm just coping hard, but everything I have heard and seen makes me firmly believe Americans did not realize what was on the table and MAGA Republicans think they have won an ideological battle in this country that many of their voters are not going to take well.\n\nI agree. I think a large percentage of voters who voted for Trump don't really understand what they voted for. But if Trump starts repressing the MSM, he might be able to keep those voters confused with more propaganda for quite a while.\n\nAnd particularly the voters who don't pay attention much to politics until the general election. \n\n>But we need to keep our heads up because we have the opportunity to turn this around once this stuff is put into action and non-MAGA Trump supporters are forced to look at the results of their vote in the face.\n\nMaybe??? Might not be any opportunity to do anything. Dictatorships are often very good at crushing dissent.", 'created': '2024-11-09 07:52:32', 'submission_id': '1gmc16g'}
{'comment': 'At this point call me crazy but our economy is due for a recession. A recession with the incompetence of Maga could be catastrophic for our economy. This could be devastating for the people, but it will give the adminin a huge headache to focus on rather than taking away human rights. Also, I think people are gonna revolt if prices go the way you described.\nIt is easier to recover the economy than lost human rights.', 'created': '2024-11-08 16:29:30', 'submission_id': '1gmc16g'}
{'comment': "Of course, thats what I'm saying. The only way we win is to change minds. The only thing that changes these people's minds is to go through the hardships they're about to go through. Maybe then, they'll understand how good they have it now", 'created': '2024-11-08 17:08:35', 'submission_id': '1gmc16g'}
{'comment': 'Yeah, its a different world now', 'created': '2024-11-08 17:13:35', 'submission_id': '1gmc16g'}
{'comment': 'He fucked the Democrats out of having a Primary. \n\nThat did as much damage as anything.', 'created': '2024-11-08 19:37:30', 'submission_id': '1gmc16g'}
{'comment': 'He should never have run for the second term in the first place', 'created': '2024-11-08 21:34:53', 'submission_id': '1gmc16g'}
{'comment': 'It’s over.. We no longer have a democracy. When you threaten to use the military against liberals, we now live in a banana republic.', 'created': '2024-11-09 02:54:20', 'submission_id': '1gmc16g'}
{'comment': "Biden is talking about peacefully transitioning to Trump. The man is a coward. He ain't gonna do squat.", 'created': '2024-11-08 15:01:53', 'submission_id': '1gmc16g'}
{'comment': 'What exactly should he do?', 'created': '2024-11-08 17:41:25', 'submission_id': '1gmc16g'}
{'comment': 'Trump can litterally do anything he wants now. Anything. There is no one left who can stop him. Laws mean nothing. Have you ever seen the man held accountable for a single thing? No.\xa0', 'created': '2024-11-08 15:01:05', 'submission_id': '1gmc16g'}
{'comment': 'You mean like making their drugs of choice very illegal and anything that defines them, also illegal?', 'created': '2024-11-08 16:26:35', 'submission_id': '1gmc16g'}
{'comment': 'Kentucky is not a swing state. Although granted it will be a hard lift in Wisconsin as well', 'created': '2024-11-08 18:55:47', 'submission_id': '1gmc16g'}
{'comment': "I'm not planning on them failing all by themselves...I plan to give them all the assistance in failing, of which I am capable.\n\nElon Musk isn't half as smart as he thinks he is, and is a great deal dumber than his press admits.\n\nI'm not saying it's going to be easy. I'm saying it's going to be chaotic...", 'created': '2024-11-08 15:56:52', 'submission_id': '1gmc16g'}
{'comment': 'If it makes it that far, I hope I\'m living somewhat off the grid by then and have a stockpile of popcorn. I\'m convinced that no amount of conservative propaganda would be able to undo the decades of gun culture propaganda that has enshrined guns as a "God given right" to them. It\'s elevated above ideological debate like a divine power that defines their very existence.', 'created': '2024-11-09 00:58:24', 'submission_id': '1gmc16g'}
{'comment': "I don't know, it's one thing if the prices gradually increased or just stayed really high. But it's entirely something else if he enacts something and immediately following it prices jump up substantially.\n\nNot to mention he doesn't do anything without making a big deal about it, and Elon Musk has already been talking publicly about how their policies will be tough in the beginning. They're setting the stage for their own clown show.\n\nI'd rather stay positive and plan for action. We're looking at what could be less than a 2 million vote difference between Harris and Trump when all votes have been counted. It's really going to be extremely close in the vote totals. That's about half, over 70 million, people that voted for Harris because they knew Trump would fuck it up, and an unknown number of Trump voters that voted on groceries and economy only to end up paying significantly more because of him, and another 20+ million that did not vote.", 'created': '2024-11-09 10:07:15', 'submission_id': '1gmc16g'}
{'comment': 'Nah the magats will just blame someone else. Whenever their media bubble tells them to', 'created': '2024-11-08 18:44:58', 'submission_id': '1gmc16g'}
{'comment': "Agreed, I'm going running a campaign in 2026, for a spot in local government, I'm gonna look into reaching out with my state's democratic party and see if they'd allow me a platform.", 'created': '2024-11-08 17:16:00', 'submission_id': '1gmc16g'}
{'comment': "Barely anyone votes in the primary. That wasn't a deciding factor, except in the fact that Kamala had less time to run a campaign than anyone else in contemporary history. \n\nBut even then the average person only pays attention in the last few weeks.", 'created': '2024-11-08 19:41:06', 'submission_id': '1gmc16g'}
{'comment': 'He appeared healthy back then', 'created': '2024-11-08 22:24:11', 'submission_id': '1gmc16g'}
{'comment': "Then I guess it's up to you. I'm not seeing a lot of calls for a general strike anywhere. If you don't want to play the game then stop participating.", 'created': '2024-11-08 15:04:07', 'submission_id': '1gmc16g'}
{'comment': 'Resist.', 'created': '2024-11-08 17:58:40', 'submission_id': '1gmc16g'}
{'comment': '* PA: Dems have +1 in the House, Repubs have +6 in the Senate\n* NC: Repubs have a supermajority in both (71-49 and 30-20) so exactly the same situation as KY\n* WI: All 99 seats in the Assembly were up for grabs, Repubs got 52 and Dems 44, remainder still not called\n* MI: Republicans flipped the House l with at least 57 seats. Dems hold the Senate with +2 however one is about to be vacated and will require a special election\n* AZ: lol\n* NM: Dems still retain control of both, however each wing had a single D->R flip\n\n\nYou\'re looking at mostly a deadlocked state legislature, a Republican legislature, or a split.\n\nOne of the biggest disappointments that happened was the resolution to replace the highly-partisan and 4-time-declared-unconstitutional voting district commission with a non-partisan one. Ohio is disgustingly and openly gerrymandered, and this would have put a stop to it. But due to how the Republican-led SoS commission wrote it.. It\'s funny because I was going to link the actual ballot, but the Ohio SOS site already removed the PDF link.. you need to google "Ohio Issue 1 2024" and look around for the text of it.', 'created': '2024-11-08 19:16:51', 'submission_id': '1gmc16g'}
{'comment': "Maybe we should dare them to replace Obamacare. And then they'll spend the next 4 years trying to figure that out. \n\nLMAO", 'created': '2024-11-08 16:10:27', 'submission_id': '1gmc16g'}
{'comment': "Inflation during 2022 was at 8.3%.\n\nTrump has promised a tariff of 10%. And of course that only adds on imported goods, or the parts of goods manufactured in the United States that are imported. \n\nSo then when you factor in he wants to drill baby drill, which could lower domestic oil prices, it may not seem any worse than 2022.\n\nThe big problem is the trade war he may create, where US manufacturers get hit with tariffs in exporting. Which will negatively affect the economy in a way that trumpers won't get is his fault.", 'created': '2024-11-09 10:28:29', 'submission_id': '1gmc16g'}
{'comment': 'There are about 10 million voters that voted for Biden that didn’t vote for Harris now it looks like.', 'created': '2024-11-09 22:40:55', 'submission_id': '1gmc16g'}
{'comment': "That's awesome!! I would do the same but im in bright red FL, lol", 'created': '2024-11-09 00:10:14', 'submission_id': '1gmc16g'}
{'comment': 'Because MAGA has taken over the media. People are too scared to speak against Trump. The average American has no idea what is about to happen. That\'s why they aren\'t rioting in the streets. The flow of accurate information stopped awhile back when a MAGA billionaire bought CNN and then Twitter too. Everything else is "fake news".', 'created': '2024-11-08 15:07:16', 'submission_id': '1gmc16g'}
{'comment': 'Some specifics would be greatly appreciated. I was not one of the ones who downvoted you, btw.', 'created': '2024-11-09 20:02:28', 'submission_id': '1gmc16g'}
{'comment': "Well whatever you do, don't take the initiative to get it done or anything. That would be counter intuitive.", 'created': '2024-11-08 15:09:22', 'submission_id': '1gmc16g'}
{'comment': "Am I Joe Biden!? Do I have the unfettered strength of the executive branch at my finger tips?! What do you expect my ass to do that I haven't done already? Can I arrest Trump for high crimes and treason? No, I cant.", 'created': '2024-11-08 15:11:21', 'submission_id': '1gmc16g'}
{'comment': 'Call for a general strike and protest.', 'created': '2024-11-08 18:00:21', 'submission_id': '1gmc16g'}
{'comment': "I can't even get people I know to listen to me. I dont have that kind of power. Biden does though.\xa0", 'created': '2024-11-08 20:00:56', 'submission_id': '1gmc16g'}
{'comment': 'Yeah us randos on the internet have a lot of pull', 'created': '2024-11-08 18:42:57', 'submission_id': '1gmc16g'}
{'comment': 'I wish women could unite like really come together in an Orginal Black Panther way. A truly worldwide coalition to arm up and fight to stop the abuse. Give women their real rights of equity and stop the Andrew Tates of the world. This US Taliban rule Trumpers want is just insane to me. I dont understand why men are threatened by women', 'created': '2024-11-08 14:28:42', 'submission_id': '1gmc6y1'}
{'comment': "Here it is on YouTube: [You Are Not Alone / The World Reacts To America's Decision | The Late Show with Stephen Colbert](https://youtu.be/Xbj3xXSPTXY)\n\n[10 ways to be prepared and grounded now that Trump has won](https://wagingnonviolence.org/2024/11/10-things-to-do-if-trump-wins/)", 'created': '2024-11-08 07:35:28', 'submission_id': '1gmcdkl'}
{'comment': 'Get a passport at least', 'created': '2024-11-08 06:26:03', 'submission_id': '1gmao32'}
{'comment': 'I’d get to at least a Blue state. The Blue state Governors are talking and doing their best to build up protections for us.', 'created': '2024-11-08 13:15:11', 'submission_id': '1gmao32'}
{'comment': 'Yeah, come to New England', 'created': '2024-11-08 13:05:27', 'submission_id': '1gmao32'}
{'comment': "If you're legit scared and worried and I'm sure you are, just move to a nice blue state, they're gonna fight the bullshit thats coming versus red states that will just accept it with open arms, Tennessee will definitely except the bullshit, but if your talking outta the country..ehh me personally I wouldn't, stay and fight with us, but I don't have kids so I definitely understand why you'd wanna just get the fuck outta here completely for their safety", 'created': '2024-11-08 06:19:22', 'submission_id': '1gmao32'}
{'comment': 'We live in Pennsylvania. We are now considering Vermont. Then my wife said, "I\'m thinking something outside our borders."', 'created': '2024-11-08 14:15:03', 'submission_id': '1gmao32'}
{'comment': "Wouldn't hurt to at least have a plan in place just in case.", 'created': '2024-11-08 06:38:48', 'submission_id': '1gmao32'}
{'comment': 'Washington is good, but you’ll need to move to the puget sound corridor. It’s also expensive here. We did just elect our AG to be governor, and he’s a good guy. In fact it looks like all our executives will be Ds. I live in Tacoma, we’re a pocket of blue in a red county, but it’s nice here. Fall is beautiful. But you have to like rain. That part is true.', 'created': '2024-11-08 13:29:36', 'submission_id': '1gmao32'}
{'comment': 'Emigration is extremely difficult and frankly most people don’t qualify. Move to a purple state with a Dem governor and fight to get it blue again', 'created': '2024-11-08 15:38:37', 'submission_id': '1gmao32'}
{'comment': 'Yeah. Move to the closest district in a swing state.', 'created': '2024-11-08 14:37:34', 'submission_id': '1gmao32'}
{'comment': 'We’re moving to Portugal ASAP. There are a lot of American expats in the Algarve region. Plus, excellent healthcare', 'created': '2024-11-08 14:40:02', 'submission_id': '1gmao32'}
{'comment': 'At least try to get up to Northern VA. Fear for her reproductive rights- personally, I don’t want my daughter to be denied life saving medical care if she has an ectopic pregnancy or similar', 'created': '2024-11-08 14:31:13', 'submission_id': '1gmao32'}
{'comment': 'Come to Maryland. All the Counties bordering the District are blue and the economy and education system here are top notch. Real Estate prices however are brutal but if you can make it work it’s worth it. It’s much harder to get an international work visa than you might think.', 'created': '2024-11-08 14:55:37', 'submission_id': '1gmao32'}
{'comment': 'Move to cali', 'created': '2024-11-08 15:55:58', 'submission_id': '1gmao32'}
{'comment': "won't matter.. the problems he will create will spread across the world.", 'created': '2024-11-08 16:05:06', 'submission_id': '1gmao32'}
{'comment': "I have two teenage daughters. I have plans, and we live in a blue state. Our passports are up to date. If I were you, I'd keep close tabs on the community around you.", 'created': '2024-11-08 16:18:11', 'submission_id': '1gmao32'}
{'comment': "Come to Illinois. Gov. Pritzker isn't fucking around.", 'created': '2024-11-08 16:24:25', 'submission_id': '1gmao32'}
{'comment': 'You live in Tennessee you might want to move to a state with a democratic governor. Especially for your daughter as most of the red states look to try to strip away women’s rights.', 'created': '2024-11-08 17:05:33', 'submission_id': '1gmao32'}
{'comment': 'In the very least: Don’t trust anyone who is a republican .', 'created': '2024-11-08 17:42:07', 'submission_id': '1gmao32'}
{'comment': 'We’re discussing Mexico, Ireland, Spain or Greece.', 'created': '2024-11-08 15:22:54', 'submission_id': '1gmao32'}
{'comment': 'fyi: There are new You Tube videos up that describe the best/easiest countries for Americans to move to...', 'created': '2024-11-08 17:31:34', 'submission_id': '1gmao32'}
{'comment': "To a swing state. Unless you got an amazing resume, speak multiple languages and have a huge bank account, it's not easy to just pick up and leave a country, especially with a family.", 'created': '2024-11-08 18:03:59', 'submission_id': '1gmao32'}
{'comment': 'We’re in middle Tennessee, too.\n\nWe, too, have a young daughter.\n\nWe’re also exploring our options.', 'created': '2024-11-08 19:47:43', 'submission_id': '1gmao32'}
{'comment': 'My thought is watch and see what happens. Project 2025 is a wish list of weak men’s dreams. A literal road map to owning women as property. But on the other hand trump is a dumb donkey who stooged his way through the first term. So maybe best case scenario our systems hold and he has a second lame duck presidency. \n\nBut I’ve been looking at Zillow in Canada just in case', 'created': '2024-11-08 14:58:25', 'submission_id': '1gmao32'}
{'comment': "We have great schools in MA. Crime is relatively low. We have decent healthcare. Our governor is a gay woman. Most people will live and let live (except for boomers venting on Facebook and the occasional white dude who feels empowered to fly a Trump flag). \n\nTrade off is that the cost of living would be a shock. We were lucky to buy a medium-sized house below what we could afford almost 10 years ago, so we can live comfortably. I think living up north, we're just used to smaller, older houses being the norm. \n\nIf it's any indication about how much things cost, my family was at Disney we didn't think food and drink prices were unreasonable bc we are used to it 🤣 I was actually more shocked about the cost of groceries, even adjusting for the convenience fees of delivery.", 'created': '2024-11-08 15:26:41', 'submission_id': '1gmao32'}
{'comment': 'Echoing the need for passports for the whole family.\n\nMake a plan to leave if things get crazy. Have some ideas of what would have to happen for you to actually consider leaving the country or the state. \n\nFind the closest country border and download a map to drive there. \n\nHope for the best, prepare for the worst.', 'created': '2024-11-08 16:02:44', 'submission_id': '1gmao32'}
{'comment': 'Seriously, look at Uruguay or Paraguay. They are both actually really nice places', 'created': '2024-11-08 18:45:16', 'submission_id': '1gmao32'}
{'comment': 'I have considered it myself. Canada has good healthcare, a lot of good left policies, and won’t turn into Trump’s Fascist Wasteland', 'created': '2024-11-08 06:02:58', 'submission_id': '1gmao32'}
{'comment': 'Guys, if you move, move to a freaking red state and vote blue and spread our message.\n\nLeaving the country is what they want us to do. Who will be here to vote these people out of the senate in 2 years if we leave? Or the White House in 4?\n\nWhen you leave, you make them stronger, and when their evil spreads to the rest of the world where will we run? \n\nThe world is counting on American citizens to get it together and vote these people out. We’ve failed them twice now. You can’t leave or we’ll fail them again.', 'created': '2024-11-08 15:20:18', 'submission_id': '1gmao32'}
{'comment': 'I have plans to move to asia, im a white 50 year old male, raised in north east NJ. I simply will not live here while the deportation goons and massive inflation hits.', 'created': '2024-11-08 15:12:44', 'submission_id': '1gmao32'}
{'comment': "My family and I are seriously considering it. Some of us can move to Canada. I can move to Minnesota once I find the right job. I live deep red Louisiana, and I am a naturalized citizen, as well as my mom, sister, and brother in law. My sister in law is awaiting her legalization papers and my other sister in Florida waiting for her papers as a political refuge from Nicaragua. We are all vulnerable now. Luckily, we have the means to move, but it's gonna be hard. Minnesota isn't Canada, but it's close enough for me. I just want my family safe. I'll be okay if they're safe", 'created': '2024-11-08 17:13:14', 'submission_id': '1gmao32'}
{'comment': 'Come to Illinois, relatively close and our governor is friendly enough.', 'created': '2024-11-08 18:47:32', 'submission_id': '1gmao32'}
{'comment': 'I’m beginning the research to see if getting my ducks in order is a possibility, and making a list of the “best” places to get my ducks to.\n\nI have an in demand profession though so there are places were mine and my family’s applications would be expedited.\n\nBut only in research stages. But I will go to keep my daughter safe.', 'created': '2024-11-08 19:36:01', 'submission_id': '1gmao32'}
{'comment': 'To Canada? Nope. \n\nTo Pennsylvania? Yes.', 'created': '2024-11-08 15:43:42', 'submission_id': '1gmao32'}
{'comment': 'https://preview.redd.it/99jwmsdmoozd1.jpeg?width=888&format=pjpg&auto=webp&s=5ecdd392c27a2c9abde258ab925f8db259626a44', 'created': '2024-11-08 14:58:10', 'submission_id': '1gmao32'}
{'comment': 'If you can leave the country then yes. Im currently looking into study abroad options with hopes of getting a student visa', 'created': '2024-11-08 16:25:11', 'submission_id': '1gmao32'}
{'comment': 'Project 2025: A Mandate for Authoritarian Leadership…these idiots have been tricked in text book fashion by a guy who plans on dismantling democracy and ending the American experiment. Funny how he’s publicly embracing it now…the first lie surfaces. I’m interested to see what the 150 executive orders are that they have prepared for him to sign.', 'created': '2024-11-08 16:49:26', 'submission_id': '1gmao32'}
{'comment': "It's tempting, but I'm staying a fighting for my Constitution.", 'created': '2024-11-08 17:04:25', 'submission_id': '1gmao32'}
{'comment': "Are people retired who are considering leaving? I honestly don't see how it's that easy to expat unless you have very specific skills or money? Curious how people are managing it.", 'created': '2024-11-08 17:18:37', 'submission_id': '1gmao32'}
{'comment': 'My wife was half joking about moving to Toronto, but that means she’s also half-serious. Not gonna lie, I haven’t ruled it out. We have family close by, and we don’t want to pull the 10-year-old away from her friends. If not for that, I think we’d jump at the first chance.', 'created': '2024-11-08 18:43:37', 'submission_id': '1gmao32'}
{'comment': "Moving is a privilege few have, and many countries worth moving to are on the same path. Where America leads, the world follows. You can see right now in Germany - the center left government is collapsing while the right wing parties are gaining popularity. Much of this has to do with the post pandemic economy there, but Trump's tariffs pose a much larger threat to their economy. \n\nThe BBC did a good article pointing out how much Canada is mirroring the US - [https://www.bbc.com/news/articles/cjw03yjjqdwo](https://www.bbc.com/news/articles/cjw03yjjqdwo)\n\nUltimately you're not escaping it most anywhere. Best bet is to prepare to protect the people you care about in the best ways you can, support legal defense funds and mutual aid, seek out groups that are organizing political protests and campaigns to fight authoritarian rule. Put money into your state legislature campaigns... flipping those would go a long way in fixing gerrymandering which has given Republicans a huge advantage in the house. Start figuring out who's running for those seats in 2 years and volunteer for their primaries. This is how we got the blue wave in 2018 and 2020. The momentum died because people thought Harris was a safe bet this year, and allowed people who perceived the economy continuing to get worse to vote in Trump.", 'created': '2024-11-08 18:58:04', 'submission_id': '1gmao32'}
{'comment': 'As long as you’re still an american citizen you’ll still have to pay income tax. So be ready for that additional expense on top of whatever taxes you pay in your new country. It’s one reason I can’t afford to leave.', 'created': '2024-11-08 19:03:53', 'submission_id': '1gmao32'}
{'comment': 'Move to Serbia \nJK don’t \nIt’s all fucked up in here', 'created': '2024-11-08 19:14:11', 'submission_id': '1gmao32'}
{'comment': "California is the safest state in the entire USA. There is absolutely no way it'll turn red anytime soon.", 'created': '2024-11-08 20:04:02', 'submission_id': '1gmao32'}
{'comment': 'I moved from TN to California. Unfortunately, in TN, it is hard to speak up because Maga outnumber everyone else. Especially in more rural areas. If you have a chance to leave for a good place, go for it. However, it depends on your specific situation.', 'created': '2024-11-08 10:59:07', 'submission_id': '1gmao32'}
{'comment': 'Where would you go? Wait and see if the House of Representatives is in Democrat control first. Then we can check him with every move.\n\nHowever, I am honestly thinking of buying a gun for self defense. If it gets bad with Trump you will be glad we have a 2nd amendment. The Far Right MAGA pretend they are under threat, but the real threat is unchecked Fascists Republicans in office with Trump at the head with IMMUNITY. And countless MAGA groups that are armed to the teeth.\n\nAn AR with .553 NATO ammunition and a Glock with a 15 round magazine will be a great defense. I’m doing my research now, so I can get a license and purchase when the time is right. Research your state laws and be a responsible gun owner.\n\nNext time VOTE! I’m so fucking pissed at how many people staid home.🇺🇸', 'created': '2024-11-08 16:42:25', 'submission_id': '1gmao32'}
{'comment': 'Probably but best we help and support each other', 'created': '2024-11-08 20:13:07', 'submission_id': '1gmao32'}
{'comment': 'Being accepted into another country is not easy unless you are in an in-demand profession, which is usually healthcare and engineers. \n\nI mean by all means look, but if you work a clerical job or whatever, good freakin luck', 'created': '2024-11-08 22:59:00', 'submission_id': '1gmao32'}
{'comment': 'No. I seriously think. While yes this is a huge deal that will impact us. Project 2025 is bogus and don’t truly think he’d enact any of it. Maybe 1 or 2 topics. But he flat out said it was bullshit. \n\nFuck him tho. If you end up moving. Take me with you pls. I’m small and can fit in a backpack. Probably.', 'created': '2024-11-08 16:36:19', 'submission_id': '1gmao32'}
{'comment': 'Spain and Portugal but also Vietnam', 'created': '2024-11-08 22:37:31', 'submission_id': '1gmao32'}
{'comment': 'Stay and fight', 'created': '2024-11-08 22:52:23', 'submission_id': '1gmao32'}
{'comment': 'At the very least if you can financially afford to move to a blue state I would do that. Vulnerable people in red states are especially at risk right now. We all are, but those states are the canary in the coal mine and the highest risk places to live right now unless you’re a straight white Christian male.', 'created': '2024-11-09 00:19:52', 'submission_id': '1gmao32'}
{'comment': 'North Carolina could always use more Democrats', 'created': '2024-11-09 00:31:53', 'submission_id': '1gmao32'}
{'comment': 'Get dual citizenship', 'created': '2024-11-09 00:48:50', 'submission_id': '1gmao32'}
{'comment': 'Uruguay', 'created': '2024-11-09 02:51:05', 'submission_id': '1gmao32'}
{'comment': "I want out, too! I'm retired and have been looking online in Panama. It says you can get a retired visa if you can prove $1,000 income per month for life. \n\nI also saw some tour companies to show potential expats around the country. They were booked through next April!\n\nAnyone with Panama knowledge?", 'created': '2024-11-09 21:23:17', 'submission_id': '1gmao32'}
{'comment': "Stay and fight. No one is talking about moving unless they have plenty of money, so you can afford to stay. The idea of making monkeys out of maga morons sounds like good fun as long as you're not broke. Every time you hear a maga with a problem, tell them they must like it because they voted for it.", 'created': '2024-11-10 13:51:34', 'submission_id': '1gmao32'}
{'comment': "Go to a blue state. Don't leave the country. The rest of the world is still worse. Even with Trump.", 'created': '2024-11-08 20:34:14', 'submission_id': '1gmao32'}
{'comment': 'Yes you should. Greenland seems like a good CB place in case WW3 begins.', 'created': '2024-11-08 10:48:37', 'submission_id': '1gmao32'}
{'comment': '[removed]', 'created': '2024-11-08 06:38:39', 'submission_id': '1gmao32'}
{'comment': 'and quick, before he fires the entirety of the Civil Service.', 'created': '2024-11-08 06:38:13', 'submission_id': '1gmao32'}
{'comment': "I have a serious question where do all of you plan to move too? I have my passport and my understanding is it's not at all easy to immigrate to another country but idk that much, is it easy? where are we going?", 'created': '2024-11-08 14:52:30', 'submission_id': '1gmao32'}
{'comment': 'I wanna at least get to a blue state, just not sure if Illinois or Minnesota would be better yet', 'created': '2024-11-08 15:59:22', 'submission_id': '1gmao32'}
{'comment': 'I get this. But if we somehow keep democracy it’ll still likely be the electoral college and moving all the blues to a few states will seal it for the opposition.', 'created': '2024-11-08 16:07:55', 'submission_id': '1gmao32'}
{'comment': 'I’m in Maryland already and I’m worried still. We’re the closest of the blue states and god knows what this monkey is going to do to us', 'created': '2024-11-08 16:20:10', 'submission_id': '1gmao32'}
{'comment': 'The West Coast already takes a lot less federal funding than other states and minorities/lgbtqia+ are protected under Oregon’s constitution. California and Washington are working fast to make sure everyone who wasn’t covered is. Oregon also has abortion protected. The governors are used to working together for the good of the region. It’s probably one of the safest places to resist from.', 'created': '2024-11-08 21:30:04', 'submission_id': '1gmao32'}
{'comment': 'Are they? Could i have a source so i can see?', 'created': '2024-11-08 20:16:16', 'submission_id': '1gmao32'}
{'comment': 'Connecticut is lovely. We moved here from Missouri in 2021.', 'created': '2024-11-08 16:12:03', 'submission_id': '1gmao32'}
{'comment': 'If I can find a job there I’d move in a heartbeat', 'created': '2024-11-08 21:45:27', 'submission_id': '1gmao32'}
{'comment': 'I’m sure there were very nice, progressive regions of Germany in 1933, too. Didn’t stop them from passing the Nuremberg Laws.', 'created': '2024-11-08 16:10:02', 'submission_id': '1gmao32'}
{'comment': 'You think Illinois is safe being surrounded by red? I am genuinely asking', 'created': '2024-11-08 06:39:42', 'submission_id': '1gmao32'}
{'comment': 'PA is on the edge. Still have Shapiro and the House is still undecided, it may stay under Dem control.', 'created': '2024-11-08 14:27:47', 'submission_id': '1gmao32'}
{'comment': 'I’m making contingency plans. Getting all our passports renewed so they are good for a while, and before all the services related to that go away. \n\nThe problem really is, where to go, if leaving entirely is the choice. Canada requires you to have experience in certain fields before they will even take you in. Plus they’ve got their own immigration issues they’re struggling with.\n\nGoing to Europe right now seems risky. Some countries there are going through the same shit we are with right wing parties taking control due to all nations facing inflation. Plus, there’s now the very real threat of war with Russia, if the war doesn’t go well in Ukraine. \n\nWhere else is there to go? South America? I feel like the options on where to run are very limited right now. None of them are great. It’s depressing but it feels like evil is winning all over the world. Maybe this is how society falls.', 'created': '2024-11-08 14:39:23', 'submission_id': '1gmao32'}
{'comment': 'Bob Ferguson will be good.', 'created': '2024-11-08 14:41:48', 'submission_id': '1gmao32'}
{'comment': "We're in the same area. Very grateful to live here (can even deal with the rain). I'm glad Ferguson won. Not thrilled with Swank in the lead for Sheriff though.", 'created': '2024-11-08 17:16:33', 'submission_id': '1gmao32'}
{'comment': 'Are there regions you can go without being able to speak Portuguese', 'created': '2024-11-08 21:13:24', 'submission_id': '1gmao32'}
{'comment': "Yeah, I'm worried Russian aggression will expand to Western Europe.", 'created': '2024-11-08 21:39:45', 'submission_id': '1gmao32'}
{'comment': 'What do you mean by that???', 'created': '2024-11-08 18:27:52', 'submission_id': '1gmao32'}
{'comment': 'I’m honestly thinking about Mexico. I speak Spanish pretty decently, I already live in a super dangerous city so crime/cartels are not a deterrent (it’s just a matter of learning which areas to avoid) and I feel it would be easier to get into than Canada.', 'created': '2024-11-08 16:28:44', 'submission_id': '1gmao32'}
{'comment': 'Will they let anyone just move there?', 'created': '2024-11-08 15:54:34', 'submission_id': '1gmao32'}
{'comment': 'They will let people in on asylum in my opinion simply because of the rhetoric talked about with the “enemy within”', 'created': '2024-11-08 16:34:22', 'submission_id': '1gmao32'}
{'comment': 'Thanks.', 'created': '2024-11-08 21:28:13', 'submission_id': '1gmao32'}
{'comment': 'Canada’s in our own mess in a smaller but similar way. I wouldn’t recommend coming here only to find yourself in the same kind of situation a year and a half or so from now.', 'created': '2024-11-08 15:35:35', 'submission_id': '1gmao32'}
{'comment': 'I honestly also won’t be surprised if Trump, as usual, was just playing both sides to get re-elected so he doesn’t go to jail and only commits to a few things or barely any of it. Certainly hope I’m right.', 'created': '2024-11-08 16:02:52', 'submission_id': '1gmao32'}
{'comment': 'Ok, but… I’m ignorant here, but if you have a passport, they eventually send you back after a certain amount of time, no? Unless you want to illegally immigrate, or unless you can get a visa. This week I learned there are age limits on a lot of countries’ visa requirements, so that’s really cool.', 'created': '2024-11-08 19:53:05', 'submission_id': '1gmao32'}
{'comment': 'Unfortunately Canada has its own version of trumpies rising who are heavily against poc immigrants', 'created': '2024-11-08 07:13:01', 'submission_id': '1gmao32'}
{'comment': 'It’s very hard to get a work visa as an American ex-pat in Canada.', 'created': '2024-11-08 14:57:24', 'submission_id': '1gmao32'}
{'comment': 'You can still vote in US elections from abroad, as long as you have US citizenship.', 'created': '2024-11-08 15:55:38', 'submission_id': '1gmao32'}
{'comment': 'Why the fuck would I stay while my wife and daughters lose their rights and safety, just to watch millions of apathetic morons once again say, “yeah he’s an awful human being and all but gas for my pickup is too expensive, imma sit this one out” and send us ever further down the rabbit hole? Let alone move to a red state where they will **actively** take those things away purely in the interest of inflicting as much pain as possible?\n\nI can vote from anywhere. Participating in American democracy does not require participating in the inhumanity they want to enact by contributing to the economy and tax base they’ll rely on for it.', 'created': '2024-11-08 16:20:13', 'submission_id': '1gmao32'}
{'comment': 'Philippines? lol', 'created': '2024-11-08 15:56:17', 'submission_id': '1gmao32'}
{'comment': 'Have you found work?', 'created': '2024-11-08 21:25:21', 'submission_id': '1gmao32'}
{'comment': "I don't know if it's remotely possible but Stephen Miller is tweeting about their *denaturalization* plan. (As if he's not going to be on a train and taken to a camp sooner or later.)\n\nPlease be safe. If you can move somewhere based on voters that's great but don't let anyone tell you to sacrifice your family's safety in the name of patriotism. I have no family because mine didn't leave Poland. Your kids should have a chance to know theirs.", 'created': '2024-11-08 18:13:27', 'submission_id': '1gmao32'}
{'comment': "Ah yes, move to the place that's the reason we're in this mess!", 'created': '2024-11-08 21:37:31', 'submission_id': '1gmao32'}
{'comment': "I'm looking at options for teaching English abroad.", 'created': '2024-11-08 21:47:19', 'submission_id': '1gmao32'}
{'comment': "How much is your house worth? You can literally buy an Australian visa for about US$950k. \n\nNew Zealand's visa is more expensive. \n\nSome Carribean countries are more affordable. St. Kitts for example is only about US$150k. If you have a remote job, you can escape to the beach.\n\nMexico's costs US$ 130k plus another 90k invested in a Mexican business. Then you can be a citizen in only 5 years. You'll want a remote job for this too.", 'created': '2024-11-08 18:08:50', 'submission_id': '1gmao32'}
{'comment': 'MAGA outnumbers everyone else in California? Which California are you talking about? Of course there are rural areas like the San Joaquin Valley etc. that are red, but pretty much all along the coast and the large cities as well it is blue. Also we have the entire State government on our side.', 'created': '2024-11-08 11:37:31', 'submission_id': '1gmao32'}
{'comment': "I'm pretty sure he said it was bullshit to take the heat off. They're literally joking about it.", 'created': '2024-11-08 18:18:49', 'submission_id': '1gmao32'}
{'comment': 'It IS that serious. Congratulations on having the privilege of not fearing for your life and your rights being taken from you. \n\nIt. Is. That. Serious.', 'created': '2024-11-08 13:48:49', 'submission_id': '1gmao32'}
{'comment': "You're gaslighting", 'created': '2024-11-08 14:15:32', 'submission_id': '1gmao32'}
{'comment': 'Portugal seems nice', 'created': '2024-11-08 16:24:58', 'submission_id': '1gmao32'}
{'comment': 'Mexico or Ireland. I’m looking for jobs in both right now and in process of getting our kids their passports.', 'created': '2024-11-08 15:24:34', 'submission_id': '1gmao32'}
{'comment': 'Portugal', 'created': '2024-11-08 16:38:57', 'submission_id': '1gmao32'}
{'comment': "Canada, this is how I see it, If stuff gets too bad here. My wife and I can apply for refugee status in Canada. My wife and I are interracial married. If that becomes illegal( that could happen, look it up,), we're out", 'created': '2024-11-08 17:06:57', 'submission_id': '1gmao32'}
{'comment': 'Australia, ideally New Zealand', 'created': '2024-11-08 18:24:48', 'submission_id': '1gmao32'}
{'comment': 'If you need to get out quick, Mexico has some great options. Merida, Puerto Vallarta, Tulum, and Cabo all rank on the top ten safest cities in North America. They have large expat communities. There are also a lot of great places in Southern and Central Mexico. Uruguay and Panama are other great options on this side of the pond.\n\nPortugal, Spain and Italy have all been top of my list, however I’m not confident Europe is the safest place right now. The EU is going to be suffering right alongside us.\n\nFor countries where your dollar will go really far - Thailand, Vietnam, Japan, Bali are all great choices.', 'created': '2024-11-09 17:41:07', 'submission_id': '1gmao32'}
{'comment': "I'm a dual national. UK/US, but I'm also over 60. I worry about being able to find work.", 'created': '2024-11-08 22:19:44', 'submission_id': '1gmao32'}
{'comment': 'This is going to be hilarious. How many world views are going to shatter when they realize that our immigration policy, even under Trump, is the least draconian of the developed world.', 'created': '2024-11-08 20:07:58', 'submission_id': '1gmao32'}
{'comment': 'Illinois', 'created': '2024-11-08 16:03:12', 'submission_id': '1gmao32'}
{'comment': 'I get you, but women of child bearing ages or if you have daughters and their lives are important to you, I would put their safety first.', 'created': '2024-11-08 17:54:08', 'submission_id': '1gmao32'}
{'comment': 'The blue states will gain more electoral votes as their population goes up and red states will lose seats as their population goes down. Buuuuut, and it’s a big but, it requires the census to be done properly and to count everyone. We’re also about to see cities in red states gerrymandering to make sure there’s more rural folks in each district so blue can never win again.', 'created': '2024-11-08 21:34:36', 'submission_id': '1gmao32'}
{'comment': '[Here’s an article](https://www.nbcnews.com/news/amp/rcna179295)', 'created': '2024-11-08 22:25:20', 'submission_id': '1gmao32'}
{'comment': 'Yea, I mean every blue state is gonna have its red areas, but illinois is literally a Democratic stronghold, so all the red areas mean absolutely nothing at the end of the day', 'created': '2024-11-08 06:45:14', 'submission_id': '1gmao32'}
{'comment': 'So far Chicago out- votes\xa0 downstate voters based on population. Most of Illinois is red. Governor Pritzker is as blue as they come, and has a history of standing up to trump.', 'created': '2024-11-08 15:32:10', 'submission_id': '1gmao32'}
{'comment': 'As a Minneapolitan, I feel surrounded by idiocy. I have to drive like 4 hours to the nearest normal community.', 'created': '2024-11-08 20:20:55', 'submission_id': '1gmao32'}
{'comment': 'Australia and New Zealand come to mind.\xa0', 'created': '2024-11-08 15:00:46', 'submission_id': '1gmao32'}
{'comment': 'Costa Rica is the best option', 'created': '2024-11-08 16:14:01', 'submission_id': '1gmao32'}
{'comment': 'Man I get you!! And with rampant climate change, that narrows things even more!', 'created': '2024-11-08 18:14:45', 'submission_id': '1gmao32'}
{'comment': 'Me either, they’re only separated by about 8500 votes and there are still 20k to count. Hoping it breaks Jackson’s way.', 'created': '2024-11-08 18:57:04', 'submission_id': '1gmao32'}
{'comment': 'By what? I have two teenage daughters. If you aren\'t worried about teen girls, with boys chanting "Your body, my choice" in schools, maybe tune in.\n\nI live in a blue state. Laws will come down from the Federal level. Though we have just enshrined women\'s health into our State Constitution, that hasn\'t been tested in SCOTUS. Or there are plenty of ways the Feds can punish blue states into compliance. \n\nOur passports are up to date. If my family deems the situation in this country dangerous, we will do what we need to do. Including fleeing the US. \n\nIf I were you, I\'d keep close tabs on the community around you. If the situation is dangerous in your area, you need to know that. We ALL need to be vigilante and aware of what is going on in our communities, even if you think it is a safe area now.', 'created': '2024-11-08 18:37:24', 'submission_id': '1gmao32'}
{'comment': 'You can literally buy your way into Mexico for only US$250k-ish & be a citizen there in only 5 years.', 'created': '2024-11-08 18:16:05', 'submission_id': '1gmao32'}
{'comment': "I don't know. There are a ton of ex-pats that live in Mexico.", 'created': '2024-11-08 16:11:27', 'submission_id': '1gmao32'}
{'comment': 'No.', 'created': '2024-11-08 16:12:47', 'submission_id': '1gmao32'}
{'comment': 'True. Maybe Iceland?? When the hammer falls and weak men come for women’s rights anyplace will look better.', 'created': '2024-11-08 17:15:09', 'submission_id': '1gmao32'}
{'comment': 'Yes. But he has a vice president who is a strident ideologue, and will gleefully do everything on the checklist, and more, if he can get away with it.\n\nVance is the larger looming danger.', 'created': '2024-11-08 19:50:15', 'submission_id': '1gmao32'}
{'comment': 'Yea. There is a world where he just enriches himself and gets tax breaks for the rich and does damage that be reversed. I mean that’s what he did the first time. \n\nAlso abortion didn’t play well for them so who knows. Let’s all just hope for the best.', 'created': '2024-11-08 17:16:39', 'submission_id': '1gmao32'}
{'comment': "Depends on the country and the circumstances. \n\nIf Trump sends the military or other goons after Democrats and people who disagree with him (as he has said he would if he took office), you could reasonably seek asylum in Canada or Mexico. Provided you have a passport. \n\nOtherwise yes, after a certain amount of time a country would likely send you home unless you seek a visa to live there. It wouldn't be illegal immigration right away unless you were cross the border someone not at a checkpoint without a passport.\n\nThe biggest hurdle is getting out of the country in a hurry, which means you need to have a passport to do so.", 'created': '2024-11-08 20:03:17', 'submission_id': '1gmao32'}
{'comment': "Pretty much true around the world tbh.\n\nBut we're much further along than the rest (comparable democracies).", 'created': '2024-11-08 14:24:37', 'submission_id': '1gmao32'}
{'comment': 'It’s not just voting. We need to fight against the machine. We need to volunteer with our local Democratic groups. \n\nImagine if all our ancestors had just left instead of fighting for freedom and for our rights. We might still be a British colony, women might still not have the right to vote, or open a bank account or get a higher education. \n\nThe work is never done.', 'created': '2024-11-08 16:26:32', 'submission_id': '1gmao32'}
{'comment': 'Thailand', 'created': '2024-11-08 20:47:27', 'submission_id': '1gmao32'}
{'comment': 'Im retired, ive read about 9 year vacation visas in Thailand, Ecuador is our back up plan- 45k per person for expat citizens. I also have a sister in Portugal i can go stay with if nothing else works out for me.', 'created': '2024-11-08 22:21:20', 'submission_id': '1gmao32'}
{'comment': "That's exactly why we are thinking of moving. We saw the Miller posted about it, and, like you, I dont even know if they can do that, but it's scary to think what can be done when there are no guardrails anymore. Trump is a criminal, sexual predator, and a useful idiot, but the people behind him are just straight evil. They are the ones that truly hold the keys to the government now. Let's face. They really don't even need Trump anymore", 'created': '2024-11-08 18:33:16', 'submission_id': '1gmao32'}
{'comment': 'I misread that initially too. They meant in TN, not in CA.', 'created': '2024-11-08 14:40:22', 'submission_id': '1gmao32'}
{'comment': 'They’re talking about in Tennessee.', 'created': '2024-11-08 13:01:06', 'submission_id': '1gmao32'}
{'comment': 'Ditto! Portugal or Spain. Look into it if you’re serious.', 'created': '2024-11-08 16:40:09', 'submission_id': '1gmao32'}
{'comment': "I'm going to ask some direct questions please do not take them as attacks and keep in mind this is all in service of me collecting information on what I can feasibly do as my next move.\n\nWhy is Portugal attractive to you?\nDo you speak Portuguese and would I need to to live there\nHow do you plan to immigrate (skilled worker, spouse) etc idk what Portugal allows?", 'created': '2024-11-09 02:29:08', 'submission_id': '1gmao32'}
{'comment': "Honestly, I love Mexico, but it's really not 'better' down there. The Cartel runs the roost nearly everywhere - and sure there are areas that are safer than others, but it's still not great.\n\nAlso, Ireland. Cost of living is high, and salaries (depending on your industry) are pretty middling. Also immigrating there is a long process as well - as is the schooling entry system (from my understanding)", 'created': '2024-11-08 16:47:31', 'submission_id': '1gmao32'}
{'comment': 'Ireland ? Really ? Is there a particular reason ? Is it easier ?', 'created': '2024-11-08 17:14:50', 'submission_id': '1gmao32'}
{'comment': "Hell yes. I told my wife start looking into other countries babe cuz our daughter's future is fucked!!! We are looking into Europe. She keeps telling me it's not easy to immigrate to another country which I call BS. Any input on that?", 'created': '2024-11-08 16:30:55', 'submission_id': '1gmao32'}
{'comment': "Thank you for the info. \nI'm going to ask some direct questions please do not take them as attacks and keep in mind this is all in service of me collecting information on what I can feasibly do as my next move.\n\nWhy is mexico or ireland attractive to you?\nWhat is your profession? As you mentioned looking for jobs I assume you are a skilled worker and that would be your hopeful route of citzenship? If so that would likely not be an option for me if not\nHow do you plan to immigrate (skilled worker, spouse) etc?", 'created': '2024-11-09 02:35:59', 'submission_id': '1gmao32'}
{'comment': "I'm going to ask some direct questions please do not take them as attacks and keep in mind this is all in service of me collecting information on what I can feasibly do as my next move.\n\nWhy is Portugal attractive to you?\nDo you speak Portuguese and would I need to to live there\nHow do you plan to immigrate (skilled worker, spouse) etc idk what Portugal allows?", 'created': '2024-11-09 02:40:53', 'submission_id': '1gmao32'}
{'comment': "Fair and from what I'm reading is a thing in Canada.. I do not have a spouse in canada so sadly this will not help me immigrate to canada but I appreciate your response and perspective", 'created': '2024-11-09 02:03:10', 'submission_id': '1gmao32'}
{'comment': "I'm going to ask some direct questions please do not take them as attacks and keep in mind this is all in service of me collecting information on what I can feasibly do as my next move. \n\n\nWhy is Australia or NZ attractive to you?\nHow do you plan to immigrate (skilled worker, spouse) etc idk what Australia or NZ allows?", 'created': '2024-11-09 03:05:22', 'submission_id': '1gmao32'}
{'comment': "I'm going to ask some direct questions please do not take them as attacks and keep in mind this is all in service of me collecting information on what I can feasibly do as my next move.\n\nDo you know the process to gain citzenship in any of these nations? \n\nHow do you plan to immigrate (skilled worker, spouse) ?\n Assume I am just a single person, not a skilled worker or bussiness owner. and what country would be the easiest?", 'created': '2024-11-09 17:54:00', 'submission_id': '1gmao32'}
{'comment': 'Thank you for the reply and this information this will not help me immigrate to the UK personally but I appreciate your response and perspective and wish you the best', 'created': '2024-11-09 03:00:52', 'submission_id': '1gmao32'}
{'comment': 'Any reasoning on why?', 'created': '2024-11-08 16:03:47', 'submission_id': '1gmao32'}
{'comment': 'Yeah Trump already phoned in the last census. He shouldn’t be in charge of the next but it’s not for a long time, yet.', 'created': '2024-11-08 22:20:09', 'submission_id': '1gmao32'}
{'comment': 'Yeah I’m in northern Illinois 10 to 15 mins from the Wisconsin boarder and I live in town of 20k people or so and a decent amount of trump supports but never have any issues. You can’t even tell half the time. I hate Illinois for the taxes but love it for being solid deep blue and the legal weed that’s a plus. 5 mins away from a dispensary.', 'created': '2024-11-08 12:54:45', 'submission_id': '1gmao32'}
{'comment': 'Thanks! Yes, I’d forgotten about those but they are considerations. I have never been to either one before, so maybe I need to plan to take a vacation there at some point to check them out.', 'created': '2024-11-08 15:34:37', 'submission_id': '1gmao32'}
{'comment': 'Ooh, yeah I forgot about that. I’ve looked into it and it does seem like a great place to live generally speaking. Thanks for the suggestion.', 'created': '2024-11-08 16:52:34', 'submission_id': '1gmao32'}
{'comment': None, 'created': '2024-11-08 18:08:04', 'submission_id': '1gmao32'}
{'comment': 'Yeah. Although Australia sounds great in a lot of ways, they are definitely in the path of being highly affected by climate change. The wildfires they had there several years back were crazy. And there’s only going to be more of that to come. If that wasn’t a sign that Mother Nature is pissed off I don’t know what is.', 'created': '2024-11-08 18:24:35', 'submission_id': '1gmao32'}
{'comment': "It was your last paragraph that I was asking about and you answered. I'm with you on the rest, just wasn't sure what advice you were giving!", 'created': '2024-11-08 18:38:47', 'submission_id': '1gmao32'}
{'comment': 'Damn $250k? Jesus I thought I was doing well compared to most Americans but I don’t have THAT kind of money. Is that really what I’m looking at to leave the country?', 'created': '2024-11-08 18:51:27', 'submission_id': '1gmao32'}
{'comment': 'You can buy your way into a few countries for that amount. [https://www.henleyglobal.com/countries](https://www.henleyglobal.com/countries)', 'created': '2024-11-08 21:43:04', 'submission_id': '1gmao32'}
{'comment': None, 'created': '2024-11-08 18:17:04', 'submission_id': '1gmao32'}
{'comment': "Wow, the first term was a dream considering the stuff he's promising now", 'created': '2024-11-08 18:23:13', 'submission_id': '1gmao32'}
{'comment': "You'll need in-demand skills andI'm gone will have to be under 50 for Canada.", 'created': '2024-11-08 21:45:51', 'submission_id': '1gmao32'}
{'comment': 'I’ve been fighting this battle for literally decades. I have worked on campaigns in red states, I have knocked on doors, I have phone banked. One of the candidates I worked for early in their career eventually flipped a seat in the Senate. But I won’t force my loved ones to live under threat of preventable death. That’s a personal decision for every individual, but admonishing anyone for doing what’s best for the safety of their family ain’t it.', 'created': '2024-11-08 16:45:15', 'submission_id': '1gmao32'}
{'comment': "Unpopular Opinion: If we hadn't had a revolution, we'd be where Canada is now. In retrospect, I'd like to submit that the Revolution was a dumb move.", 'created': '2024-11-08 18:19:26', 'submission_id': '1gmao32'}
{'comment': 'You dirty dog. lol', 'created': '2024-11-09 00:50:24', 'submission_id': '1gmao32'}
{'comment': 'Thanks! :)', 'created': '2024-11-08 17:04:38', 'submission_id': '1gmao32'}
{'comment': 'Sorry guys, I should not comment on reddit at 2 am.', 'created': '2024-11-08 17:45:44', 'submission_id': '1gmao32'}
{'comment': 'Ok gotcha thanks!', 'created': '2024-11-08 17:00:39', 'submission_id': '1gmao32'}
{'comment': "same questions \nI'm going to ask some direct questions please do not take them as attacks and keep in mind this is all in service of me collecting information on what I can feasibly do as my next move. \nanswer for Spain too if you can?\n\nWhy is Portugal attractive to you?\nDo you speak Portuguese and would I need to to live there\nHow do you plan to immigrate (skilled worker, spouse) etc idk what Portugal allows?", 'created': '2024-11-09 02:30:16', 'submission_id': '1gmao32'}
{'comment': 'No worries, and great questions. Whenever I travel I look at the place and ask myself if this is somewhere I could see myself living because I think that we as Americans are overworked, too focused on material things and in a vicious cycling of wanting more which then leads back to overworking rather than enjoying the beauties of life. Many people from Europe that I’ve met have a lifestyle I’m more aligned with where they have ample time off to travel the world and have quality time raising their kids in formative years. I understand that this isn’t the case for everyone in Europe and these people are coming from a place of privilege to have the disposable income to do these things. There are good/bad trade offs to making the move, but here are a few of the good ones in my opinion:\n\nPortugal is a beautiful country, has some of the nicest people in Europe (in my experience), English was spoken widely in Lisbon, nice weather, great education system, relatively affordable cost of living, and a more relaxed life from what I was able to gather. \n\nPortuguese isn’t that hard to learn, but I’d see it as a fun challenge if we did actually move there. That being said, I can work remotely so it wouldn’t be something that would be critical to my day to day life outside of interacting with govt agencies/services (or I could just use a translation service to get up and running). \n\nI’m not at the point of seriously considering leaving yet since I am generally on the side of doing everything I can administratively within local government to create change and whatever is possible on the federal level to try and make a difference. I haven’t done research yet on what the immigration process would look like, but my spouse and I both work in fields that are in high demand so a work visa wouldn’t be a problem.', 'created': '2024-11-09 16:09:46', 'submission_id': '1gmao32'}
{'comment': "Those things don't seem as relevant anymore. I know I have never felt more detached from the country I grew up in than now. I honestly could care less about anything. I just know I want to leave.", 'created': '2024-11-08 16:56:49', 'submission_id': '1gmao32'}
{'comment': "Plus, you can't just move into either of those countries. You would have to secure a job first at minimum.", 'created': '2024-11-08 20:10:38', 'submission_id': '1gmao32'}
{'comment': 'Ireland currently has a program to help populate some of their islands where they will give you money (up to $92,000) to come buy a property and live there. My manager mentioned it just the other day, because the subject of getting out of dodge came up. I think it’s called Our Living Islands. \n\nThe catch is, these are considered remote islands, not part of the mainland, so you’d have to be comfortable being a little disconnected from things.', 'created': '2024-11-08 17:24:56', 'submission_id': '1gmao32'}
{'comment': "Their economy has been one of the best ones for over a decade in Europe and we're Irish decedents.", 'created': '2024-11-08 22:55:24', 'submission_id': '1gmao32'}
{'comment': 'Be careful about where in Europe, Putin will soon be moving west 😔', 'created': '2024-11-08 18:09:49', 'submission_id': '1gmao32'}
{'comment': 'It is very hard to immigrate to most countries in Europe, you are better off with Canada or Australia. Don’t call BS for things you can quickly google search', 'created': '2024-11-08 20:09:00', 'submission_id': '1gmao32'}
{'comment': 'Dude, we are literally one of the easiest countries to immigrate to legally. Moving to Europe is hard a fuck.', 'created': '2024-11-08 20:12:31', 'submission_id': '1gmao32'}
{'comment': "I only brought it up because they are beautiful with vibrant economies, less far right views, NZ for instance recently a woman was their pres/premier. If I were to go ive software/ analytics wife is in management - the AUS currency was stronger than US last time I was there, less gun violence - both have gang problems though.\n\nI'm not likely to leave the US, but if shit really went awry, those are the focus or maybe south pacific like Fiji", 'created': '2024-11-09 04:04:01', 'submission_id': '1gmao32'}
{'comment': 'Okay gotcha. If you can get a remote job, several countries have nomad visas. Thats usually the best option if you want to move to a country with a low cost of living so you’re ultimately still living on an American salary in a place where everything costs a fraction of what it does here. However, remote jobs that allow you to live out of country can be competitive. For places like Mexico, Panama - a lot of people will do a visa run where they travel across a border every 3 months or so to renew their visa.\n\nAchieving citizenship is more complicated. If you have grandparents that immigrated from one of the European countries - several of them have birthright citizenship options.\n\nFor me, personally, my husband works overseas half the year. So he will continue to make American money and me and the kids can live somewhere like Mexico and make visa runs - at least for the time being. Before Kamala was the candidate I was freaking out and ready to flee and my husband was looking at jobs in Columbia or Japan - but before we made the call Biden dropped out and I felt we at least had a shot. I’m still processing my shock while I weigh our options.\n\nIf I were in your position I’d probably look somewhere like TikTok or the expat subreddits where there is a wealth of information about the easiest countries to immigrate to, cost of living, quality of life etc to see what would be the best fit for you.', 'created': '2024-11-09 18:09:09', 'submission_id': '1gmao32'}
{'comment': "Illinois is staunchly blue. Chicago is a kickass city, but there are also pockets of blue downstate in the college communities. It's also more affordable downstate.", 'created': '2024-11-08 16:26:15', 'submission_id': '1gmao32'}
{'comment': 'Stronger blue presence, higher resources to fight. Love MN, don’t get me wrong … it is also very beautiful, but it’s a tougher fight. And if a few cranks are turned on voter suppression will become purple and red.', 'created': '2024-11-08 16:13:43', 'submission_id': '1gmao32'}
{'comment': 'It’s not Minnesota', 'created': '2024-11-08 16:07:32', 'submission_id': '1gmao32'}
{'comment': 'Belize', 'created': '2024-11-08 15:47:15', 'submission_id': '1gmao32'}
{'comment': 'It’s the best place to live.', 'created': '2024-11-12 07:28:58', 'submission_id': '1gmao32'}
{'comment': 'East coast has some flooding during Cyclone season as well.', 'created': '2024-11-08 19:24:50', 'submission_id': '1gmao32'}
{'comment': 'The Carribean visas are cheaper.\n\nMaybe you can claim Irish or Italian ancestors & get a visa that way?', 'created': '2024-11-08 19:09:08', 'submission_id': '1gmao32'}
{'comment': "Exactly. Latvia looks sweet, only US$60k, but that 10-year party to citizenship is long. \n\nMontenegro could be better, but there you're gambling it does manage to join the EU soon.", 'created': '2024-11-08 22:25:06', 'submission_id': '1gmao32'}
{'comment': 'Retiring is different than moving with an expectation of being able to work there.', 'created': '2024-11-08 19:09:53', 'submission_id': '1gmao32'}
{'comment': 'I can’t help but beg people to stay and fight. I know what will happen if they don’t. It’s happening all over the world, everyone is running when things in their countries get hard, and the number of places to run to is becoming smaller and smaller by the year. \n\nUS are the leaders of the free world. If the maga agenda keeps growing in the US, it’s over for the rest of the world.', 'created': '2024-11-08 17:17:50', 'submission_id': '1gmao32'}
{'comment': '😹 well damn she went there', 'created': '2024-11-08 18:27:05', 'submission_id': '1gmao32'}
{'comment': 'We’re retired. Portugal most appealing to us because they encourage duel citizenship, and have a large number of Americans in some of the cities. You could get by without speaking Portuguese, but would pick it up as you interacted. It’s a lot like Spanish but has its own dialect', 'created': '2024-11-09 02:48:45', 'submission_id': '1gmao32'}
{'comment': 'Oh that does sound good', 'created': '2024-11-08 18:02:36', 'submission_id': '1gmao32'}
{'comment': 'This doesn’t appear to be a program for foreign nationals and their FAQ documents specifically mention no payments/schemes for paying for relocation:\n\nhttps://assets.gov.ie/261844/eb2bc9ed-c33b-4aab-accb-c00d7d897ad5.pdf', 'created': '2024-11-08 19:55:16', 'submission_id': '1gmao32'}
{'comment': 'With climate change I really don’t think moving to an island is the best idea.', 'created': '2024-11-09 00:21:35', 'submission_id': '1gmao32'}
{'comment': 'Ohh I see... yeah, I can see myself doing that for like a week, maybe two, and then I can realistically imagine my brain exploding from boredom 😅. I guess that scratches that out', 'created': '2024-11-08 17:34:48', 'submission_id': '1gmao32'}
{'comment': "Canada is next to impossible with a child with disabilities. I'm only calling BS on how hard it is to move out of America vs into America. Should have clarified", 'created': '2024-11-08 21:20:17', 'submission_id': '1gmao32'}
{'comment': "Yeah I'm finding out the hard. I don't understand why that is. It's even hard to go to Canada", 'created': '2024-11-08 21:21:32', 'submission_id': '1gmao32'}
{'comment': 'Knock knock Switzerland pretty please let us in finally', 'created': '2024-11-09 17:43:13', 'submission_id': '1gmao32'}
{'comment': None, 'created': '2024-11-08 19:24:17', 'submission_id': '1gmao32'}
{'comment': 'Ok. Well, not according to this article. If you keep reading it mentions that Americans can buy properties in Ireland but notes that you may not qualify for the money they are offering. I think it depends on some factors that I don’t really know at the moment. \n\nhttps://www.cbsnews.com/amp/news/ireland-92000-to-move-to-remote-islands-heres-how-it-works/\n\nIncidentally I was only responding to someone’s question about why Ireland. I don’t personally want to relocate there myself, at least partly because I can’t see myself living on an island that gets cut off from the mainland by tides and has no bridges. Doesn’t sound fun to me personally.', 'created': '2024-11-08 20:01:12', 'submission_id': '1gmao32'}
{'comment': 'Never gonna happen. Its like smaller than Illinois or something.', 'created': '2024-11-12 18:36:16', 'submission_id': '1gmao32'}
{'comment': '[removed]', 'created': '2024-11-08 20:22:21', 'submission_id': '1gmao32'}
{'comment': 'They’re all peacefully floating down a river on the way home from work, they don’t want shit to do with us dumbasses and they’re 100% right for that.', 'created': '2024-11-12 20:02:43', 'submission_id': '1gmao32'}
{'comment': 'I love your way of speaking. And that you called Kamala a "real-ass person". 😅\n\nBut yes, it\'s unfortunate but I don\'t think the person who can defeat the MAGA cult for good is someone who is well-established in politics right now. Or maybe they\'re just really local?\n\nEven if brilliant people like AOC and Buttigeig run (and I would actually love to see them on a ticket together) I don\'t know if they can squash that movement to the ground simply because they\'re not white straight males.', 'created': '2024-11-08 06:07:32', 'submission_id': '1gmamd6'}
{'comment': 'I love this scenario, but we cannot forget about the economy. It’s all about the economy, and if Dems get saddled with inflation or a recession, then it’s game over.', 'created': '2024-11-08 15:33:32', 'submission_id': '1gmamd6'}
{'comment': "No. \n\nPeople need to wake up and understand that the Republicans weaponized rhetoric. And weaponized rhetoric is one of the most powerful weapons of humanity. \n\nSo Trump and his surrogates created this fictional reality about who he is, what he would do for voters, and who Harris was. While also sowing mistrust and confusion. \n\nSo another candidate? They would have adjusted the fictional narrative. \n\nSo face it. Over half of America got conned. Until they decide they don't want to keep sending the Nigerian Prince the check, there's little we can do. They have to wake up.", 'created': '2024-11-08 08:40:36', 'submission_id': '1gmamd6'}
{'comment': "Cults thrive then die based on their leader. Drumpf is now just a useful idiot for the far-right. Lets mourn for a few days then get back to work. It wasn't a red wave, and Dems did well locally. Once he is off the ballot they have nobody and we will win again. I have ZERO issue with the Harris campaign, they did they best they could in the time they had.", 'created': '2024-11-08 13:30:24', 'submission_id': '1gmamd6'}
{'comment': "or we can acknowledge that they're going to call us radicals either way so we might as well run an actual radical, because clearly it's working for them - Trump's popularity has a lot more to do with working-class Americans being dissatisfied with the status quo than any other single factor, and Democrats are losing because we've been running status quo candidates. We need somebody who brings the same kind of charisma and radicalism as Trump, but fueled by solutions rather than scapegoats. otherwise we'll just keep hemorrhaging voters trying to appeal to non-existent never trumpers and alienating the progressive wing of the party", 'created': '2024-11-08 13:02:58', 'submission_id': '1gmamd6'}
{'comment': "Oh, I fully agree! I keep reminding people that the majority of governors and a bunch of senators are going to be contested in 2026. We don't have to wait until 2028 to see some victories if we work hard.\n\nI'm just a little pessimistic about the American people right now, on both sides. I just can't believe how absolutely dumb people are!", 'created': '2024-11-08 15:03:16', 'submission_id': '1gmamd6'}
{'comment': 'She needs to run for governor. Newsom is term limited in 2026, and California will need someone with executive and legal experience to protect it from Trump.', 'created': '2024-11-08 05:54:03', 'submission_id': '1gmad1v'}
{'comment': 'This discussion has spurred me to write a “Thank You” post card to Vice President Harris. She put herself out there on our behalf, and I’m so grateful. \n\nI am never going to lose the audacity of hope that I have found here with my fellow Democrats. We will continue to move forward, despite the 300 pound orange obstacle.', 'created': '2024-11-08 15:20:36', 'submission_id': '1gmad1v'}
{'comment': None, 'created': '2024-11-08 13:20:43', 'submission_id': '1gmad1v'}
{'comment': 'She’s too wholesome and genuine for America. A lamb in a den of bullying wolves', 'created': '2024-11-08 05:39:01', 'submission_id': '1gmad1v'}
{'comment': 'She will always be my hero. She represented goodness and competence and the fucks voted for hatred and incompetence. We owe her for taking on this fight.', 'created': '2024-11-08 14:31:10', 'submission_id': '1gmad1v'}
{'comment': 'Really, Thank you Kamala, against all odds, you were the better choice we will all never forget how close we were. We really did have it all.', 'created': '2024-11-08 10:07:38', 'submission_id': '1gmad1v'}
{'comment': 'Thank you 🫡 \nPlease stay with us Dems, find an another role within this heartbroken party. You have years ahead of you. 💙', 'created': '2024-11-08 18:45:38', 'submission_id': '1gmad1v'}
{'comment': 'Yes! Thank you, madame Vice President 🥰🥰🥰', 'created': '2024-11-08 15:57:02', 'submission_id': '1gmad1v'}
{'comment': 'You tried but billionaires flooded the country with BS. They bought this election and the world will pay the price.', 'created': '2024-11-08 16:23:37', 'submission_id': '1gmad1v'}
{'comment': '[removed]', 'created': '2024-11-08 18:06:03', 'submission_id': '1gmad1v'}
{'comment': 'I want her to come back to CA and work with the legislature and AG to help protect us from Trump.', 'created': '2024-11-08 06:39:50', 'submission_id': '1gmad1v'}
{'comment': 'Hopefully she can build those 3 million homes in CA, dear lord we need it', 'created': '2024-11-08 08:39:27', 'submission_id': '1gmad1v'}
{'comment': 'I was reading about that and someone else is running 2026 that they don’t want to step on. Maybe there’s another state?', 'created': '2024-11-08 11:01:23', 'submission_id': '1gmad1v'}
{'comment': 'Well said!', 'created': '2024-11-08 14:51:36', 'submission_id': '1gmad1v'}
{'comment': 'Hi TimboCA, it looks like your comment to /r/democrats was removed because you used either a link shortener or link redirect. Due to issues with trolls, spam and malware we do not allow shortened links on this subreddit.\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-08 18:06:05', 'submission_id': '1gmad1v'}
{'comment': None, 'created': '2024-11-08 18:32:41', 'submission_id': '1gmad1v'}
{'comment': 'Thank you for this. It’s hard to see light in the darkness. Assuming our institutions hold, Americans will come to their senses and we WILL be back in 2026 AND 2028. Republicans aren’t guardrails anymore so we have to be.', 'created': '2024-11-08 05:56:06', 'submission_id': '1gmabvj'}
{'comment': 'Well said! I’m doing everything I can not to fall into despair.', 'created': '2024-11-08 15:34:43', 'submission_id': '1gmabvj'}
{'comment': "The Republican House couldn't get shit done the past term, and they'll have the same clowns there this coming term. Plus, there's always a backlash of the incumbent party in the midterm elections. Hang in for 2 years.", 'created': '2024-11-08 19:48:06', 'submission_id': '1gmabvj'}
{'comment': 'So true! They even had the trifecta the first half of Trump’s term and the only thing they got passed was the tax cut for the rich. So you’re right, we just have to try to hang in there for 2 years.', 'created': '2024-11-08 19:49:21', 'submission_id': '1gmabvj'}
{'comment': "to help this come true, keep watching your local political scene. be active there. vote for everybody and everything no matter how trivial it seems. and keep reminding everybody you know about this, becaues it's not obvious to a lot of people.\n\nbecause if we DON'T (i say 'we' although for disclosure i'm not American) don't, then the midterms will look like what just happened, all over again.", 'created': '2024-11-11 21:50:15', 'submission_id': '1gmabvj'}
{'comment': "this bunch are not going to be that bunch. don't assume stuff like that. this bunch has an absolute mission that there's almost no excuse for not knowing about by this point. it's even labelled by their intended delivery date. \n\nthis is mike johnson's wet dream. DON'T fall into the clown-car mindset for the next two years. they are not going to spend the next two years trying to rename a post office. they're on a mission.", 'created': '2024-11-11 21:56:55', 'submission_id': '1gmabvj'}
{'comment': "Yes. I've voted every election since I was 18 in 1970. The prospect of being drafted to Vietnam was a motivator to get involved in politics for my generation.", 'created': '2024-11-12 04:30:17', 'submission_id': '1gmabvj'}
{'comment': 'You missed a step.\n\nWomen: continues to vote republican because she’s worried about Mexicans and trump promised low gas prices', 'created': '2024-11-08 10:11:13', 'submission_id': '1gma85w'}
{'comment': 'This needs to be posted EVERYWHERE.', 'created': '2024-11-08 06:35:11', 'submission_id': '1gma85w'}
{'comment': 'Women can only meet Republican standards by being the property of men. Defiant women just cannot live up to their standards.', 'created': '2024-11-08 09:18:00', 'submission_id': '1gma85w'}
{'comment': 'Pretty savage. Any woman who voted for a Republican just betrayed all women.', 'created': '2024-11-08 06:40:13', 'submission_id': '1gma85w'}
{'comment': 'Brutal. But right on the nose. \n\nOnly thing missing is Republicans telling the kid that they should be working already to support the family. Who needs school anyway?', 'created': '2024-11-08 13:24:46', 'submission_id': '1gma85w'}
{'comment': 'Just send this to all the white women - both Dems and GOP because liberal white women, you continue to avoid calling out your fellow conservative white women.', 'created': '2024-11-08 13:07:36', 'submission_id': '1gma85w'}
{'comment': 'Yup. \n\nBut her emails. \n\nBut her lack of interviews. \n\nAnd he’ll save me and make eggs cheaper.', 'created': '2024-11-08 16:32:07', 'submission_id': '1gma85w'}
{'comment': 'And Trump is the answer?! Go figure.\n\nhttps://preview.redd.it/smt9u0yirpzd1.jpeg?width=1164&format=pjpg&auto=webp&s=598b8ad0539496c53f2a6080d22db471917b544b', 'created': '2024-11-08 18:36:21', 'submission_id': '1gma85w'}
{'comment': 'Pfff you think there are gonna be schools still?', 'created': '2024-11-08 18:29:41', 'submission_id': '1gma85w'}
{'comment': 'Exactly. The last step is her walking into the voting booth and pulling the (R) lever…again… 🤦🏻\u200d♂️', 'created': '2024-11-08 13:36:23', 'submission_id': '1gma85w'}
{'comment': 'And because she doesn’t think a woman should be President.', 'created': '2024-11-08 18:13:15', 'submission_id': '1gma85w'}
{'comment': 'I agree! This pretty much says it all.', 'created': '2024-11-08 15:35:37', 'submission_id': '1gma85w'}
{'comment': 'You are misunderstanding how many women absolutely despise other women simply for being a woman. Internalized misogyny is fun.', 'created': '2024-11-09 00:01:23', 'submission_id': '1gma85w'}
{'comment': '…and again…and again. Because Republicans like Trump are going to “protect” her whether she wants it or not (before or after her p***y is grabbed is not clear).', 'created': '2024-11-08 15:37:25', 'submission_id': '1gma85w'}
{'comment': 'It has to be called project 2029 because that’s when the president is inaugurated', 'created': '2024-11-08 06:03:19', 'submission_id': '1gm9ysi'}
{'comment': 'That’s the thing. We don’t have that. Any of it. Starting with Reagan and into Newt Gingrich, the right started building massive infrastructure to unite and lead their party. They understood the importance of marketing and messaging and how little the truth mattered. Then they got Citizens United and the hose of money turned on to turbocharge it. The whole time we’ve been trying to play by the rules. We are at least 20-30 years behind them as far as that type of thing goes', 'created': '2024-11-08 05:18:17', 'submission_id': '1gm9ysi'}
{'comment': None, 'created': '2024-11-08 05:15:31', 'submission_id': '1gm9ysi'}
{'comment': 'Yes, this is what I have been obsessed with. We have to simplify the message. The message has to be about unity. We also need new labels for everything. I’ve been trying to workshop a few ideas. \n\nAnyone in favor of bringing back the Union (as in civil war terminology)? Thinking of labeling myself as “Pro-Union or Democratic-Unionist or Union Democratic”. Have a set of simple and impactful issues (housing, healthcare, wages, etc.) and just hammer away with simple messaging. We want to unite Americans but making the lives of everyday Americans better. That’s it, that’s the whole message. The People vs the American oligarchs. We’re basically the second coming of the confederacy (and a lot of them view themselves as neo-confederates). I’m ready to co-op some terms and start a Neo-Union movement that is focused inward on improving the average Americans lives and pushing this hateful nonsense. \n\nAny time you hear a republican say a single divisive thing or try to bring up some culture war bullshit or stigmatize other Americans, call them out for it immediately and label them Anti-Union. They want to demonize fellow Americans and it is always wrong. There is clearly some kind of simplified broad appeal left wing populism that will work, and I truly believe it is all in the messaging (and most likely the messenger). \n\nI haven’t slept much since the election. Anyways, For the Union!', 'created': '2024-11-08 06:08:00', 'submission_id': '1gm9ysi'}
{'comment': 'All I know is that democrats need to start NOW on deciding who is going to run in 2028. Have them make themselves known fairly quick and what they stand for. That way in 4 years, not a single human can say “I don’t know anything about them.”', 'created': '2024-11-08 08:02:50', 'submission_id': '1gm9ysi'}
{'comment': 'The Brookings Institute', 'created': '2024-11-08 05:44:11', 'submission_id': '1gm9ysi'}
{'comment': "according to google, this is the left's equivalent to the Heritage Foundation: [https://www.americanprogress.org/](https://www.americanprogress.org/)", 'created': '2024-11-08 05:50:14', 'submission_id': '1gm9ysi'}
{'comment': 'Harris had a pretty good plan. I don’t think people voted for project 2025. They voted for change and potentially lower grocery prices. Unfortunately for them, they have not been paying attention.', 'created': '2024-11-08 12:56:08', 'submission_id': '1gm9ysi'}
{'comment': 'First, it needs to be a "Project please don\'t wait until 2028 to do something because there are always elections going on and they all matter."\n\nSecond, we listen. Voters said their number one issue was the economy, and yet I feel like that wasn\'t a strong focus of the Harris campaign, or at least not of the media that could have helped share the message. The thing about social media is that it is designed to highlight what people want to hear and see. We should treat that as our polls - what gets the most attention on social media that is unfavorable to Democrats? What are people most afraid of? What are they most angry about? What are Democrats\' biggest vulnerabilities?\n\nThen, we work on unifying the left behind a platform to address voters\' concerns. Until we can somehow find unity between the center left and the far left, we\'re always going to be on the back foot. Dems can\'t win in rural districts as moderate blue collar champions if the voters think Democrat = communist, but we also have the problem that if Democrats don\'t meet the far left\'s purity tests, they\'re eviscerated. The far right is falling victim to it - look at how little Mike Johnson was able to do because a small group of attention-craving far right legislators keeps derailing his plans. If we\'re lucky, that chaos will continue. It gives us all on the left a chance to unite.', 'created': '2024-11-08 06:24:52', 'submission_id': '1gm9ysi'}
{'comment': 'damn never realized Michelle is that tall', 'created': '2024-11-08 05:17:21', 'submission_id': '1gm9ysi'}
{'comment': 'The Dems put out detailed, well researched plans as platforms in every single state every election cycle and during the convention we lose our minds fighting over a national platform.\n\nWe already do this in a massive collaborative space.\n\nThe GOP has just smeared shit on 20 pages since Paul Ryan was on the scene whenever a policy question comes up. The Heritage Foundation gap-filled an agenda bc the felon they backed never has any plans.', 'created': '2024-11-08 11:05:18', 'submission_id': '1gm9ysi'}
{'comment': 'They say that "Republicans fall in line while Democrats fall in love." We don\'t have a unified view of the world, we are united by a diverse set of values. When enough of us are pissed off we unite to overcome the Republicans but it takes something really bad like the GFC or a pandemic to do it.', 'created': '2024-11-08 11:37:30', 'submission_id': '1gm9ysi'}
{'comment': 'I have been saying this for years. We also lack pundits that are able to know the facts and argue convincingly on news shows.\nWe need fast talking debaters that have an encyclopedic memory of facts and current data that can rapidly counter attack the lies in an entertaining fashion.\n\nAlso we need mantras to reach the low information voter to get the point across. It’s amazing how many people were convinced by “ open borders” on repeat nonstop.', 'created': '2024-11-08 11:39:51', 'submission_id': '1gm9ysi'}
{'comment': 'Problem is we can’t agree on those policies.', 'created': '2024-11-08 12:53:49', 'submission_id': '1gm9ysi'}
{'comment': 'The right is united in their goals. The left is a coalition of diverse opinions which makes coming up with such a document a difficult endeavor.', 'created': '2024-11-08 12:58:25', 'submission_id': '1gm9ysi'}
{'comment': 'The time to do this was before the election! Before!', 'created': '2024-11-08 12:39:14', 'submission_id': '1gm9ysi'}
{'comment': 'Can we call it “A More Perfect Union” or something like that? Project 2028 can eve the internal working name but I don’t think we should copy the republicans in that manner. It’s bad marketing.', 'created': '2024-11-08 14:05:14', 'submission_id': '1gm9ysi'}
{'comment': "We currently have the Obamas, Biden, the Clintons, Al Gore, Kamala, Pete Buttigieg, Gavin Newsom, Elizabeth Warren, AOC Stacy Abrams, Dick & Liz Cheney all of Trump's former cabinet members...we have all the people and their former staff to lead and create a Democratic version of Project 2025 for 2028 so let's do it!!!", 'created': '2024-11-08 06:57:06', 'submission_id': '1gm9ysi'}
{'comment': 'We are not a party. We are a loose-knit collection of various factions. Those factions have a lot of overlap, but at least as many areas where they are out on their own.\n\nThis makes us a bunch of people who feel like we\'re doing this alone. We don\'t have unity like the right does unity because it\'s antithetical to our way of thinking. We don\'t do "lockstep" and I don\'t think we can get there with the current ideology.\n\nWe need to fire the entire DNC as step one. This is a monumental fuck up that can\'t be let go. We\'re probably going to lose some people we like, but they are part of this problem.\n\nEither we get serious about taking power back, or we become the servant class.', 'created': '2024-11-08 12:51:26', 'submission_id': '1gm9ysi'}
{'comment': 'Seems pointless to me. I expect Hungary style sham elections or even a "national emergency" and no election at all. The nazis implementing project 2025 plan to cling to power forever.', 'created': '2024-11-08 10:03:52', 'submission_id': '1gm9ysi'}
{'comment': 'How can Dems: \nPlay dirty? \nPlay for keeps? \nPlay to win?\n\nThe Republicans did the equivalent of a Monopoly board flip back in 2010 and the Dems were stuck trying to put the board back together. The Dems had no strategy to counter the 2011 reapportionment, which led to large gerrymanders. Every Democratic solution always involves business and moneyed interests. The last three Presidential election cycles have not had any bold proposals with a follow-through relying on "I am not Trump."\n\nYou may want to take a look at this video: \n[https://www.youtube.com/watch?v=OFi73TzEN\\_8](https://www.youtube.com/watch?v=OFi73TzEN_8)', 'created': '2024-11-08 12:20:36', 'submission_id': '1gm9ysi'}
{'comment': 'First you have to be able to win and that takes votes. If we couldn’t get people to get out and vote for us over a rapist and an alleged couch fucker what chance do we have?', 'created': '2024-11-08 12:49:41', 'submission_id': '1gm9ysi'}
{'comment': 'Coming from someone from Spain and take on account I dont really know how the Biden administration performed but only on a surface level so feel free to point wathever mistake I made, I believe the Democrats made the same mistake our goverment is doing right now which is not having the bravery to tackle the problems the middle/lower class face from a popular point of view, like soaring inflation, economical inequality, homelesness, eroded public healthcare and education, opioid crisis and other stuff that affects that strata much more than the rest, sure the economy is doing good and growing but is the middle and poor classes being participant of that economic boost or were they set aside so high classes and elites could fill their pockets even more?.\n\nI believe Biden should have raised taxes to the very rich a lot more than he did, F.D.Roosevelt in 1936 levels of high, use that money to fund public education and healthcare, he should have done more to alleviate the student debt, tackle the problem with disinformation, stop people like Musk poisoning everything etc etc but either he didnt want to fix those problems or he wasnt allowed or he wasnt brave enough, the world is in a state where politicians NEED to take action instead of waiting to see if the problem fixes itself naturally, we are pass the time of empty promises, people need actions not words.\n\nIMO the Democrat party has made a mistake forgetting the working class struggle or not caring for it, sure the progressivenes agenda is fine but it cant be the only left leaning agenda they sport, people living paycheck to paycheck seeing their foodbasket grow smaller dont really care about any of that, that doesnt mean they are racist or homophobic, but you cant expect someone living on the edge to make that a priority. Go watch The Wire S1, S2 and S4, do you think the folks at street level, imporvished dockworkers and kids at underfunded schools care about that? No they dont and I dont blame them, the system is broken and the working masses are slipping through the cracks in bulk, the Democrat party has to put a net to stop them from crashing into the ground because even as a foreigner I know the GOP wont, they need to listen to people like Sanders/AOC a bit more and listen less to establishment and hollywood democrats.\n\nNow I dont expect Trump to fix any problem at all, hell I expect him to make everything so much worse for everyone except the 1% but Trump does give a way to vent their anger, like the good fascist he is he pointed at an enemy with his little fingers to redirect the frustration of the popular classes and his followers, being the uneducated cattle they are, swallowed his bullshit and asked for seconds.', 'created': '2024-11-08 11:46:35', 'submission_id': '1gm9ysi'}
{'comment': "The problem is, almost anything you'd put into such a document will alienate *at least* a third of the party.\n\n* Better urban transit? Center/center-right won't settle for anything less than a system like the Washington Metro. Greens will oppose it unless every station is 100% carbon-neutral, and the entire system is powered by wind or solar. Progressives derail the whole thing over gentrification concerns.\n* Free school lunches for kids? The center & center-right feel good & love it. Vegans will throw a holy fit unless the same program tries to strong-arm schools into reducing meat consumption, and Greens will refuse to support it unless it includes a clause prohibiting schools from installing new natural gas appliances.\n* HSR? Center & center-right love it. Greens bitch about the \\~50 foot wide corridor disturbing a few thousand linear feet of environmentally-sensitive land somewhere, then throw another fit about it not being carbon-neutral or powered entirely by wind & solar. Progressives bitch because it'll be too expensive for poor people to afford to ride.\n* Approximately half the stuff in Project 2025 is actually pretty appealing to the center & center-right (at least, in the fluffy terms used to describe it *by* Project 2025). The same stuff will completely *outrage* the left third or so of the Party.\n* Even if P2028 has pages copied *verbatim* from P2025, Republicans will call the copied sections socialist & convince voters they're bad.", 'created': '2024-11-08 06:37:43', 'submission_id': '1gm9ysi'}
{'comment': 'I told my coworker a version of this. We should beat them at their own game. So they are going to change laws for rich dudes and businesses and do all this other stuff. What do you do when a cult moves in? You start selling bibles my friends. We watch what they change and we take advantage of it as well and to the point they want to change it back because it no longer benefits them. To use the Bible example again. Ok they are mandatory now. And they need to meet certain standards. There was only one company that could take advantage of that initially. Well I say that market gets absolutely flooded. Oh and since we will be going full tariff. It will be US handmade by disabled veterans for Jesus or something and sold at an absolute premium to the private schools and given for a tax write off to the public schools. Fuck them. They aren’t clever. We were being the bigger people. We can still do that without getting walked on. Like, alright little bros we tried to let you play grown but you goofed so I’m gonna take you to the school of hard knocks real quick so you know to listen better next time. We had this shit setup this way for a reason and we’re moving in the direction we were for a reason. Now you done fucked it up and we have to come fix it while you sit in timeout and think about what you did. Absolute children.', 'created': '2024-11-08 17:00:22', 'submission_id': '1gm9ysi'}
{'comment': 'the Democratic Party needs to shift back towards FDR/Bernie if they want to win again.', 'created': '2024-11-08 07:46:20', 'submission_id': '1gm9ysi'}
{'comment': "Tbh, we need to stop being a big tent party by catering to the middle. We have better policies. We need to be the party of the people. We need to focus on kitchen table issues:\n\n- Jobs: training and transitioning programs for out of date technologies to keep workers marketable. \n\n- Wages: pass legislation that raises the minimum wage relevant to local costs of living adjusted to inflation, combined with wage increases for all americans relative to that raise (mandatory COLA raises).\n\n- Education: pass a spending bill that reforms the DoE, putting power back in the teachers' hands, sets standards for future learning, and funds schools so they can succeed.\n\n- Worker's Rights: pass a law that codifies worker protections, right to organize, and penalizes corporations for subvering legal unionization.\n\n- Pricing Controls: give the Department of Commerce the teeth and funding to regulate pricing and levy fines for gouging.\n\n- Taxes: frankly, the policy is fine, but we need to sell it better. We need to add a 90% marginal rate on corporations and sell it as part of a social programs omnibus.", 'created': '2024-11-08 15:28:42', 'submission_id': '1gm9ysi'}
{'comment': "The lack of a 'project 2028' was particularly horrifying during Obama's first year where the dems briefly had a supermajority. They could have passed anything they wanted, Abortion rights, a good healthcare bill, etc. Instead they squandered it trying to figure out healthcare and came up with a bill that was a convoluted mess that needed to be 'fixed' in reconciliation after they lost the super majority, which of course means it could be nixed by the Republicans without needing a supermajority of their own. Why the affordable care act was not ready on day one is a great travesty.", 'created': '2024-11-08 15:57:47', 'submission_id': '1gm9ysi'}
{'comment': 'The Lincoln Project most likely', 'created': '2024-11-08 06:36:37', 'submission_id': '1gm9ysi'}
{'comment': 'I don’t really agree that the response is… do what they did. Biden won, Kamala didn’t.\n\nThere’s a large portion of the population looking for a home with sound policy. IMO the Dems need some revitalization, not necessarily an increase in radicalization.\n\nI’m still curious whether a female president was the issue, the person, or the way the person was thrust on the constituency.', 'created': '2024-11-08 07:46:46', 'submission_id': '1gm9ysi'}
{'comment': 'These plans are common place. There are dozens of liberal think tanks that donate their plans to the candidates in exchange for money. Don’t worry. It exists.', 'created': '2024-11-08 08:04:41', 'submission_id': '1gm9ysi'}
{'comment': '2029', 'created': '2024-11-08 13:51:01', 'submission_id': '1gm9ysi'}
{'comment': 'Follow FDR’s second Bill of Rights.\xa0https://en.wikipedia.org/wiki/Second_Bill_of_Rights\n\nThat’s all we need.\xa0', 'created': '2024-11-08 13:58:14', 'submission_id': '1gm9ysi'}
{'comment': 'Take the bad book, make it better.\n\nI mean, literally. \n\nJust reverse write their ridiculous "project". \n\nWhy that was not ANY campaign managers first thought, is baffling to me, right now since..it just dawned on me. \n\nReverse engineering, is something these uneducated, zombie, mush brains..could never think possible.\n\nThey actually tried to get people to \'look at this! This, horrible, awful, oh man, these things!" Project 2025...which, if you\'re in marketing..while vile...likely got MORE people to find it, graze over it, and vote that way according to their interpretation/emotion/whatever grounding rhetoric their parents pushed on them.\n\nThey wrote a fake, nonsense, hate filled dumbed down Mien Kampf, and actually got the Democratic party...to be there constant, unaware, advertising campaign.\n\nThe anti-"project 2025" can and should still be written with the swiftness of a billion terabyte AI with a yearning to understand the phrase "A more perfect Union", and handed out faster than the rip off bibles "sold" before. \n\nMake it a playbook that works. That drives. That clearly lays out the exact process to "fix" this.\n\nDon\'t hate. Collaborate.', 'created': '2024-11-08 14:47:50', 'submission_id': '1gm9ysi'}
{'comment': 'https://preview.redd.it/v9ctkulhsozd1.jpeg?width=1147&format=pjpg&auto=webp&s=7e61a6e757f157ab2cb34abd98b9f53626c0d5d5', 'created': '2024-11-08 15:19:55', 'submission_id': '1gm9ysi'}
{'comment': 'We have the plan. But it’s in college language. We need networks of people who can translate the plan to friends and neighbors. We need to be willing to put the plan into emotions. I am so tired of the only place I see emotion on the Dem side is in the strident, manipulative, money-raising texts and emails. I’m so tired of my only role in the Dem party is being a donation source. Dems are still in the habit of talking to the pastors and the union shop stewards and letting them make the policies concrete for the people on the street. That clearly isn’t working anymore.', 'created': '2024-11-08 15:40:14', 'submission_id': '1gm9ysi'}
{'comment': 'Here are some policies to prioritize: UBI or at least increased minimum wage, Affordable Housing, Universal Health Care, High Speed Rail, Education funding from K-12 teachers for sure need a pay raise , college tuition reform… student loan forgiveness isn’t enough the price of college education needs to be fixed along with funding for trade schools, ranked choice voting, End district gerrymandering, end the electoral college', 'created': '2024-11-08 15:50:06', 'submission_id': '1gm9ysi'}
{'comment': "We need an organization of community service organizations nationwide aimed at giving the poor and needy supplies. People will like Democrats more if they show them real kindness and respect. Let's rebuild the Democrats' connection with the poor and working peoples of this country.", 'created': '2024-11-08 16:18:03', 'submission_id': '1gm9ysi'}
{'comment': 'Democrats are weak. Until we stop being weak and trying to always be agreeable and respectable— we will always lose.', 'created': '2024-11-08 16:25:25', 'submission_id': '1gm9ysi'}
{'comment': 'Not to be a dick but some really obvious reviewing on what/who won and what/who lost the last few elections would be the minimal start but I don’t that’ll even happen. I’m tapped out.', 'created': '2024-11-08 16:45:54', 'submission_id': '1gm9ysi'}
{'comment': 'When we are in recession in the next few years; we need a strong financial plan to get the country out of it, and we need to communicate that plan to all of the cracks and crevasses of the country.(right wing, dark web, mainstream media, social media, etc…)', 'created': '2024-11-08 16:51:32', 'submission_id': '1gm9ysi'}
{'comment': "It's interesting. Many people who i talked to said they voted trump because they didn't like Harris, but would absolutely vote Michelle Obama over Trump. Many voted for Bernie before going to the Trump side. There's an underlying theme here and we need to dig under it rather than pin blame.", 'created': '2024-11-08 17:31:06', 'submission_id': '1gm9ysi'}
{'comment': "Okay, so it sucks that we haven't been planning an evil takeover like the other side for four decades, but we have to start somewhere, and maybe we can do it in less than that amount of time given how communication has evolved in that same 4 decades. \n\nSo, what can we do now, besides better marketing?", 'created': '2024-11-08 17:43:34', 'submission_id': '1gm9ysi'}
{'comment': 'Fuck the DNC! We the people should choose our representatives and not the committee. They have basically fucked us for the last 3 elections.', 'created': '2024-11-08 17:51:14', 'submission_id': '1gm9ysi'}
{'comment': 'If we did this this election we would’ve won.', 'created': '2024-11-08 18:55:52', 'submission_id': '1gm9ysi'}
{'comment': 'I don’t have an answer but I suggest a project 2026. Every day matters. We need to take back congress with massive numbers. Let’s fucking go!!!', 'created': '2024-11-08 22:28:35', 'submission_id': '1gm9ysi'}
{'comment': 'We need to convert the Democratic party into a Labour party.', 'created': '2024-11-08 22:41:44', 'submission_id': '1gm9ysi'}
{'comment': 'Don’t use that branding', 'created': '2024-11-08 11:12:59', 'submission_id': '1gm9ysi'}
{'comment': "We dems have never been able to do that, and I think we'll be less able now. So many lost opportunties are gone.\n\nBut it's not like we didn't know. I have to assume there just isn't the political will to do it in the people who have the power to do it.\n\nIt's probably too late, barring something huge and unforseen happening to derail the right wing. I suppose that \\*could\\* happen. I'm going to hope for that, but I don't have much faith.\n\nThis has been decades in the making. We had plenty of chances to stop it. We didn't. Even just simple things that could have been down when there was a Dem majority in government. \n\nSo frustrating and heartbreaking.", 'created': '2024-11-08 13:35:50', 'submission_id': '1gm9ysi'}
{'comment': "It wouldn't matter. This country is begging for a fascist theocracy so wal mart is cheaper. By the time Christian Fundamentalist law catches up to the average voter we'll be in reeducation camps. Act accordingly", 'created': '2024-11-08 10:42:41', 'submission_id': '1gm9ysi'}
{'comment': "This is a great idea! But it's probably not going to happen because unfortunately the Democratic Party has such a wide desperate constituency that have all different kinds of views and issues it's very hard to bring them together on any set of points stand but that is one of the weaknesses of the Democratic Party the Republicans can unite around just about anything… We cannot because we are so divorced… Diversity is a great thing but it also Big challenges when trying to unite people around of ideas that will also appeal to people who are in the middle…", 'created': '2024-11-08 11:48:16', 'submission_id': '1gm9ysi'}
{'comment': 'Pretty bold to assume that we’ll ever have a fair national election again.', 'created': '2024-11-08 10:59:58', 'submission_id': '1gm9ysi'}
{'comment': 'Mark Cuban. Has the charisma, knowledge, experience, street cred, exposure, and philosophy.\n\nThe anti-Trump!\n\nGet him on board', 'created': '2024-11-08 12:47:35', 'submission_id': '1gm9ysi'}
{'comment': 'Love this question', 'created': '2024-11-08 13:54:21', 'submission_id': '1gm9ysi'}
{'comment': 'The Lincoln Project could start it', 'created': '2024-11-08 13:57:44', 'submission_id': '1gm9ysi'}
{'comment': 'This makes a lot of assumption that democrats will be able to pull together the votes to take control of all three branches of government by the next presidential term. And it would probably be project 2029.', 'created': '2024-11-08 14:35:27', 'submission_id': '1gm9ysi'}
{'comment': 'Democrats need to put aside what THEY want to do (trans rights, bathrooms, pronouns) and focus on what the people want (lower prices, healthcare, a home)', 'created': '2024-11-08 14:47:36', 'submission_id': '1gm9ysi'}
{'comment': 'We need to STOP tolerating republicans aka conservatives aka regressives and VOTE THEM ALL OUT!\n\n\n\nWe already know they are racist.\n\n\n\nWe already know they are less intelligent.\n\n\n\nWe already know they are anti Science.\n\n\n\nWe already know they are more religious.\n\n\n\nThey are regressive. And evil.\n\n\n\nAs such, they should not be allowed to have a say in matters of importance. Or hold positions of leadership.\n\n\n\nWhy? I think we can look around and see why.\n\n\n\nTo those who say "But... but... they\'re citizens and have the RIGHT to vote" - well... it seems that is a problem, doesn\'t it? For all they want to do is impose their version of xtian sharia law upon us all.\n\n\n\nWe do not defer to children for advice on important matters. So why do we include regressives?\n\n\n\nWe do not consult the taliban for advise on quantum physics. So why do we include regressives on genuinely important social issues?\n\n\n\nThey want to drag us back to the bronze age.', 'created': '2024-11-08 15:02:26', 'submission_id': '1gm9ysi'}
{'comment': 'To anyone thinking we don’t have an infrastructure like this, please consider joining your local union', 'created': '2024-11-08 15:05:39', 'submission_id': '1gm9ysi'}
{'comment': "You should prioritize education. If trump guts funding for schools special needs and impoverished students will suffer the most. Preschools will no longer get headstart great start funding which helps low income students....without these grants my kids Preschool is 3k a month. Millions of children will suffer under trump but if Democrats get in in 2028 there's a chance to fix it. Universal childcare will also help more women to get back into the workforce, and if trump is serious about paid maternity leave please don't get rid of that if he does implement it. Childfree women have the easiest time keeping and getting a job....those of us with kids/pregnant are constantly discriminated against.", 'created': '2024-11-08 15:20:16', 'submission_id': '1gm9ysi'}
{'comment': 'Who are you kidding? There will not be another free election in the US. All 3 branches of government are controlled by a President who has proclaimed that no one will ever have to vote again.', 'created': '2024-11-08 15:40:05', 'submission_id': '1gm9ysi'}
{'comment': 'step 1: white cis men MUST always dress slutty!!', 'created': '2024-11-08 15:58:33', 'submission_id': '1gm9ysi'}
{'comment': 'Honestly, this is an excellent idea. Maybe start as a PAC? \n\nI could start this.', 'created': '2024-11-08 16:25:19', 'submission_id': '1gm9ysi'}
{'comment': '1. Stop Donald Trump from taking away the right to vote. (Good luck doing that).\n2. Good luck. If I can survive until I can get the hell out of this wretched country, I won’t be returning.', 'created': '2024-11-08 17:01:53', 'submission_id': '1gm9ysi'}
{'comment': 'Love this idea!!! But it will be Project 2029 technically! 👏\n\nhttps://preview.redd.it/hnw48d32spzd1.jpeg?width=1164&format=pjpg&auto=webp&s=c523170e28a413c585e8adb14c7a2b5ee04bc301', 'created': '2024-11-08 18:40:14', 'submission_id': '1gm9ysi'}
{'comment': "The economy, if we can't afford housing, food, childcare, schooling, etc. people will give up lots of rights just to be able to afford basics. This was reflected in exit polling. The number one issue was the economy and the second was immigration. I'm not anti immigrant, but the anti immigrant sentiment in this country is huge, unfortunately. We still don't have parental leave, we still don't have affordable healthcare, we still don't have affordable college, we're falling behind in so many ways. Take your pick.", 'created': '2024-11-08 18:44:08', 'submission_id': '1gm9ysi'}
{'comment': 'Just saying “our own project 2028” sounds like when they wanted to have another hunger games but with the capitals children instead', 'created': '2024-11-08 19:32:22', 'submission_id': '1gm9ysi'}
{'comment': "You need project 2040 or something... The right has been playing the long game for a while now and they won't be easy to unseat.", 'created': '2024-11-08 19:35:19', 'submission_id': '1gm9ysi'}
{'comment': 'We could start by focusing on unity instead of griping about the left being too left and the moderates being too conservative. We need to get together.', 'created': '2024-11-08 19:54:48', 'submission_id': '1gm9ysi'}
{'comment': "Many people are checking and finding that their votes simply were not counted. Let's make this go viral and demand a re-vote or re-count.\n\n**Check your vote through vote.org:**\xa0\n\n(It seems that mostly mail-in ballots were affected)\xa0\n\n[vote.org/ballot-tracker-tools/](http://vote.org/ballot-tracker-tools/)\xa0\xa0\n\n**Contact these agencies**\xa0to report votes that were not properly counted, or that were changed in status after the fact:\n\n(Include any details or evidence you have about your claim. Be as specific as possible.)\n\n**The White House:**\n\n[https://www.whitehouse.gov/contact/](https://www.whitehouse.gov/contact/)\xa0\n\n**State Attorney General:**\xa0\n\nFind your AG:\xa0[https://www.naag.org/find-my-ag/](https://www.naag.org/find-my-ag/)\xa0\n\n(Go to your state AG site and find their contact page)\xa0\n\n**Federal Election Commission:**\xa0\n\n[enfcomplaint@fec.gov](mailto:enfcomplaint@fec.gov)\xa0\n\n**Your state’s voting site:**\xa0\n\n[ballotpedia.org/List\\_of\\_official\\_voter\\_registration\\_websites\\_by\\_state](http://ballotpedia.org/List_of_official_voter_registration_websites_by_state)\xa0\xa0\n\n(Find contact information on their sites, or find your Secretary of State)\xa0\n\n**Harris / Walz campaign:**\xa0\n\n[https://kamalaharris.com/contact-us/](https://kamalaharris.com/contact-us/)\xa0\n\n**ACLU:**\xa0\n\nLocal ACLU offices:\xa0[aclu.org/affiliates](http://aclu.org/affiliates)\xa0\n\n* Go to local page, and find contact\xa0\n* The ACLU is already suing Michigan for voter intimidation - be sure to report any tampering or illegal voting activity you witnessed\xa0\n\n**FBI tips:**\xa0\n\n[tips.fbi.gov](http://tips.fbi.gov/)\xa0\n\nSample letter:\xa0\n\nDear \\_\\_\\_\\_\\_,\xa0\n\n(Explain the circumstances surrounding your missing, deleted, or invalid vote.)\n\nImportant things to include:\n\n* Your voting method (in-person or mail-in)\xa0\n* \\*Your state of residence\xa0\n* Dates, times, and locations where you voted or where you dropped your ballot etc.\xa0\n* Screenshots or visual evidence of your claim\n\nI urge you to please investigate this claim as well as the thousands of other claims of people’s votes being deleted or marked invalid afterward. As there are several current reports of foreign election interference, and open investigations of voter intimidation, an investigation and recount for the election results are urgently necessary to protect the sanctity of our Democracy.\xa0\n\nI would sincerely appreciate a confirmation as receipt of this message.\xa0\n\nThank you for your help,\xa0\n\n\\_\\_\\_\\_\\_\\_\n\nDemocrats need volunteers to help cure ballots, which will help significantly.\n\nBallot Cure Phonebank:\n\nAZ [https://www.mobilize.us/jumpstartaz/event/717867/](https://www.mobilize.us/jumpstartaz/event/717867/)\n\nNZ [https://www.mobilize.us/2024nvvictory/event/724469/](https://www.mobilize.us/2024nvvictory/event/724469/)\n\nVA [https://www.mobilize.us/mobilize/event/725001/](https://www.mobilize.us/mobilize/event/725001/)\n\nOH [https://www.mobilize.us/mobilize/event/714404/](https://www.mobilize.us/mobilize/event/714404/)\n\nPhiladelphia [https://www.mobilize.us/mobilize/event/718650/](https://www.mobilize.us/mobilize/event/718650/)\n\nPA [https://www.mobilize.us/mobilize/event/676131/](https://www.mobilize.us/mobilize/event/676131/)", 'created': '2024-11-08 20:32:27', 'submission_id': '1gm9ysi'}
{'comment': "As far as policies go: poll constituents in the states and find out what they'll vote for most. I'd assume it's something like economics, abortion, and recreational drug use.", 'created': '2024-11-08 21:40:29', 'submission_id': '1gm9ysi'}
{'comment': 'The fascist religious bastards have the Supreme Court, the Senate, the Presidency and most likely the House of Representatives. The best thing to do is plan your escape and let them have this s**thole country they have created.', 'created': '2024-11-08 23:16:19', 'submission_id': '1gm9ysi'}
{'comment': 'Very simple. Just undo all the shit that Trump did. But you better have the house, and the senate and you better make sure you have a solid candidate for president which clearly can’t be a woman bc even women in this country are still sexist.', 'created': '2024-11-08 23:19:47', 'submission_id': '1gm9ysi'}
{'comment': 'If you watch the project 2025 training videos, it’s basically like a corporate on board/training course. Progressives don’t have anywhere near that kind of organizations.', 'created': '2024-11-09 00:26:30', 'submission_id': '1gm9ysi'}
{'comment': "Read Antidemocratic by David Daley, the far right started laying the ground work for Project 2025 way back in the 1970s. They played the long game after the voting rights act was passed. They've chipped and chipped away at our institutions until we reached this point. The left has mostly just allowed it to happen believing that the issues were settled. As a result, there is no left wing equivalent and it's going to take a lot of small incremental work to undo what's going to be done in the next several years", 'created': '2024-11-09 00:34:42', 'submission_id': '1gm9ysi'}
{'comment': 'The\xa0Lincoln Project?', 'created': '2024-11-09 00:51:32', 'submission_id': '1gm9ysi'}
{'comment': 'Why would you want to emulate project 2025? Democrats need a broadly appealing message and economic policies that people feel will lift them up. \n\nOr maybe they just got unlucky with worldwide inflation hitting while they were in power. \n\nAnyway, once Americans see that the GOP’s only policy remains trickle down, they’ll be looking for an alternative. The pendulum swings.', 'created': '2024-11-09 01:12:35', 'submission_id': '1gm9ysi'}
{'comment': 'Imma start my day boycotting at least 30% of my consumer goods and start shoving that money under my mattress. I’ll also cash in my 401 and in April I will send a letter to the IRS claiming that they owe me money', 'created': '2024-11-09 02:59:32', 'submission_id': '1gm9ysi'}
{'comment': "I was implying that, if Trump controls everything, he will install a faux dictatorship where he will mysteriously always win, and will pass it on to his next of kin when it's time for him to move on.", 'created': '2024-11-09 09:31:20', 'submission_id': '1gm9ysi'}
{'comment': "This is a great idea! But it's probably not going to happen because unfortunately the Democratic Party has such a wide disparate constituency that have all different kinds of views and issues it's very hard to bring them together on any set of points stand but that is one of the weaknesses of the Democratic Party the Republicans can unite around just about anything… We cannot because we are so diverse … Diversity is a great thing but it also has Big challenges when trying to unite people around a set of ideas that will also appeal to people who are in the middle…", 'created': '2024-11-08 11:48:16', 'submission_id': '1gm9ysi'}
{'comment': "This is a great idea! But it's probably not going to happen because unfortunately the Democratic Party has such a wide disparate constituency that have all different kinds of views and issues it's very hard to bring them together on any set of points stand but that is one of the the weaknesses of the Democratic Party the Republicans can unite around just about anything… We cannot because we are so diverse- Diversity is a great thing but it also has Big challenges when trying to unite people around a set of ideas that will also appeal to people who are in the middle…", 'created': '2024-11-08 11:49:18', 'submission_id': '1gm9ysi'}
{'comment': "Do you really think there's going to be a free and fair election in 2028? I don't. The GOP has gerrymandered, manipulated, and deceived America beyond repair, and MOST Americans are too lazy or ignorant to oppose or change that. Liberal democracy is dead and will remain dead until or unless there's a revolution. That's my opinion.", 'created': '2024-11-08 14:50:22', 'submission_id': '1gm9ysi'}
{'comment': 'Democrats won’t be in power for a generation. Free and fair elections are going to be a thing of the past; dissenters will be locked up or murdered. You see how Russia works? That’s us now.\n\nTuesday was America’s shot to denounce fascism; they instead chose to embrace it. Now they will reap what they sow.', 'created': '2024-11-08 14:55:44', 'submission_id': '1gm9ysi'}
{'comment': '#EDUCATION\n\nThis needs to be at the top of every Democratic platform going forward. The Republicans control the messaging. We need people to be better at determining true from false and demand more from both parties.', 'created': '2024-11-08 17:41:45', 'submission_id': '1gm9ysi'}
{'comment': 'The DNC is never going to change. If you want change, its needs to come from the ground up. Instead of asking them to fund a think tank how about asking fellow progressives/democrats to do so; Ordinary people steeped in the reality of life.', 'created': '2024-11-08 09:47:30', 'submission_id': '1gm9ysi'}
{'comment': "It's cute that you guys are acting like that there will be another chance to vote. \n\nMaybe make an action plan on facing reality?", 'created': '2024-11-08 06:28:14', 'submission_id': '1gm9ysi'}
{'comment': 'It’s called the progressive movement: follow their lead.', 'created': '2024-11-08 11:34:48', 'submission_id': '1gm9ysi'}
{'comment': 'these are good questions. One of the policies I want is a one term president', 'created': '2024-11-08 05:35:36', 'submission_id': '1gm9ysi'}
{'comment': 'Healthcare probably. American healthcare is a joke. You have made the most expensive possible system to the benefit of nobody besides rich shareholders. \n\nUniversal healthcare would be a strong step towards fixing what is broken in America (coming from someone who lives in a country with universal healthcare- Scotland - albeit with massive funding problems at the moment due to right wing idiots we didn’t elect).', 'created': '2024-11-08 14:45:54', 'submission_id': '1gm9ysi'}
{'comment': 'My fear is that now it’s too late. Who believes this radical right-wing crowd will permit any free election if it means they lose power?', 'created': '2024-11-08 14:49:45', 'submission_id': '1gm9ysi'}
{'comment': 'Trump and the Heritage Foundation is going to delete democracy from United States for decades to come. The type of government we will have from 2025 on will be a theocratic dictatorship. For you Christian Nationalists out there, do not celebrate yet, most of the leadership in the Heritage Foundation are latin mass Catholics.', 'created': '2024-11-08 15:10:23', 'submission_id': '1gm9ysi'}
{'comment': "The Republicans win using lies, bullshit, and outright hatred of marginalized groups they chose to use as scapegoats. I don't see how we can adopt their tactics and win anything. The people who are susceptible to obvious lies have formed a cult already that thinks we're monsters, and if we tried to tap into Americans' love of cruelty we'd be undermining all of our goals. \n\nI hate what this country has become, and perhaps what it always was. We're well on track if becoming Nazi Germany with nuclear weapons, and I don't see how this country or the world can come back from that.", 'created': '2024-11-08 16:56:48', 'submission_id': '1gm9ysi'}
{'comment': 'The environment. Each year is getting hotter than the last, and nothing else will matter if it’s not addressed.', 'created': '2024-11-08 17:35:54', 'submission_id': '1gm9ysi'}
{'comment': 'Hope this is a joke. \nIf not incredibly stupid.', 'created': '2024-11-08 17:38:42', 'submission_id': '1gm9ysi'}
{'comment': 'Will there be elections in 2028?', 'created': '2024-11-08 13:36:00', 'submission_id': '1gm9ysi'}
{'comment': 'Just chill man, let it ride', 'created': '2024-11-08 06:11:30', 'submission_id': '1gm9ysi'}
{'comment': 'Fair enough! ;P', 'created': '2024-11-08 07:02:13', 'submission_id': '1gm9ysi'}
{'comment': 'I’ll call it what I want!', 'created': '2024-11-08 06:11:29', 'submission_id': '1gm9ysi'}
{'comment': 'This exactly. Taking the moral high ground and playing by the established rules sounds fine, but it puts us at a huge disadvantage when the other team stopped playing by those rules a generation ago.', 'created': '2024-11-08 05:55:29', 'submission_id': '1gm9ysi'}
{'comment': 'We have think tanks and technological advantage with smart people who could revamp our entire targeting system in 5 years. Christ I work in data and have thought about going to work to help democrats out, but there is no money or not enough .\n\nThat’s the big blocker. The heritage foundation is well funded by billionaires in oil and gas. The Dems are offering half of what people make at conservative think tanks. If the DNC would pay me 80% of what I make today and committed to doing it right and funding it right for 5 years, i would leave my job tomorrow. I’m sure lots of other capable people would too. Instead we buy $100 million of junk mail a cycle', 'created': '2024-11-08 06:13:26', 'submission_id': '1gm9ysi'}
{'comment': "The cycle will continue. Republicans destroys and Democrats rebuild. There is nothing they can do that we can't fix. Just wait. Let them fail and clean up the mess when voters realize what a bad decision they made by the mid-terms.\n\nSpeak directly to the working class. Put Walz and Dems like him out front. Stop ignoring Bernie and embrace his ideas (which are popular with many young Democrats and independents).\n\nWe are really close to Idiocracy and much of America is turned off by people who appear too smart and consider them elitist. Meet the people where they are at and hope we can grow together. \n\nWith that being said, Kamala did great. I can't think of a better campaign. I don't know if she really won any Republicans or if DJT just lost them with his unhinged behavior. I personally didn't realize how many Americans just won't vote for a woman or a woman or color. Perhaps I am in a bit of a bubble.", 'created': '2024-11-08 14:23:16', 'submission_id': '1gm9ysi'}
{'comment': 'Hell, it didn\'t even start there. The Heritage Foundation has been around since 1973 and the groundwork for that was laid in 1970 with SCOTUS Justice Lewis Powell and his memo to the US Chamber of Commerce titled, "Assault on the American Free Enterprise System". You see, because of our involvement in Vietnam, Justice Powell was concerned that America\'s best and brightest students were becoming anti-business and laid the groundwork for wealthy business conservatives to set up professorships, and institutes on and off college campuses where conservative intellectuals could congregate and collaborate and write papers and books from a conservative, pro-business perspective.', 'created': '2024-11-08 12:41:09', 'submission_id': '1gm9ysi'}
{'comment': 'So basically they’ve been investing in bullshit and the dividends of a shit tornado just payed up big on tuesday.', 'created': '2024-11-08 06:09:29', 'submission_id': '1gm9ysi'}
{'comment': "Can't remember who said, 'Liberals have passion, but conservatives have discipline'.", 'created': '2024-11-08 10:34:29', 'submission_id': '1gm9ysi'}
{'comment': 'As soon as trash trump adds more Supreme Court justices we are screwed for 60+ more years.', 'created': '2024-11-08 13:05:54', 'submission_id': '1gm9ysi'}
{'comment': "They very strategically aimed at governorships especially during census years. This allowed them to gerrymander their seats. They strategically blocked judicial appointments while developing a slate of wing nuts to force through at the first opportunity. They consistently damaged the government and then ran on its dysfunction.\n\n\nWe need long term, consistent strategy. It can start from the top or start from the bottom but it needs people showing up every time and ours won't have the luxury of being bank rolled by billionaires.", 'created': '2024-11-08 13:48:59', 'submission_id': '1gm9ysi'}
{'comment': '1000% this! I couldn’t even understand why MAGA was going in on Joe Biden everyday .. he gave them literally whatever they wanted. Remember it took Liz Cheney to come and do something about a freakin insurrection.. outside of Kamala and Ketanji, the obamas, maybe AG James, everyone else, really bright, smart people, but terrified to rock the boat .. \n\nI’ll give Jack Smith some credit too, but Merrick Garland literally became their guy within 2 weeks of getting the job .. 🤣we’re going to have to put money behind the women, or abandon the party.', 'created': '2024-11-08 14:03:23', 'submission_id': '1gm9ysi'}
{'comment': 'We need to weaponize everything. The courts, our messaging, social media, the whole gamut of things one not thinking of.\n\nPlay time is over folks. It was 24 years ago but apparently this needs to be said again.\n\nI have concrete ideas here but I don’t want to talk into an ether. Let me know if anyone actually wants to hear them', 'created': '2024-11-08 15:21:33', 'submission_id': '1gm9ysi'}
{'comment': 'It\'s something I\'ve said for awhile about Democrats/left based movement. From a purely objective standpoint, ignoring all policies around the statements, if you showed a person\n\nMake America Great Again\n\nAnd\n\nDefund the Police\n\nWhich do you think would track better? And that\'s what\'s ass. We\'re all claiming Kamala just ran off of vibes, but Trump ran a fuster cluck of a campaign and won just off of vibes and because he denied every accusation thrown at him. And people shrugged and went "Yep,"', 'created': '2024-11-08 14:53:18', 'submission_id': '1gm9ysi'}
{'comment': 'The thing that makes it “work” for the right wing is that the people controlling the money don’t really have any core principles that can’t easily be subsumed by personal greed and the quest for power. They simply don’t care if there are ideological inconsistencies or inconvenient secondary effects of their policies. They will do or say anything to win.\n\nThat kind of moral flexibility isn’t really there on the left…And the left itself is a big mixed up grab bag of differing philosophies and world views. Remember Occupy Wallstreet falling apart because they tried using jazz hands to evaluate consensus on initiatives??? \n\nIf we’re going to build a framework it has to be laser focused on hitting certain specific legal precedents that the right use and abuse to capture and consolidate wealth and power in ways that diminish our democracy.\n\nCorporate personhood\nGerrymandering\nMoney is speech\nFirst past the post voting\nVoting not being done through mail and/or on a public holiday\nEtc\n\nPick like 5 things that you can create strong public messaging around, stuff that when people hear it all laid out they go, “Really? That’s some bullshit, hell yes let’s fix it.”\n\nKeep away from lightning rod issues that create knee jerk reactions. Ignore specific environmental concerns, once corporations aren’t people they can be properly regulated. Stay away from religious or broad social issues. Stay focused on rebalancing the fundamentals of our democracy, the stuff that’s creating all these weird distortions we’ve been dealing with.', 'created': '2024-11-08 16:52:51', 'submission_id': '1gm9ysi'}
{'comment': 'Getting liberals to agree with even each other is like herding cats. This has always been an issue with the left.', 'created': '2024-11-08 17:58:00', 'submission_id': '1gm9ysi'}
{'comment': 'If you completely ignore the value differences between conservatives and progressives that sounds like a great plan but I’m not sure a liberal leaning party will ever concede to hero worship and authoritarian party leadership.', 'created': '2024-11-08 15:18:11', 'submission_id': '1gm9ysi'}
{'comment': 'Plus 2028 and beyond is out. Does anyone believe he’d actually leave unless dead?\n\nPlus, they won it all and will be replacing Ds cuz MAGAs only.', 'created': '2024-11-08 16:34:58', 'submission_id': '1gm9ysi'}
{'comment': "So let's build it. \n\nJust because we got complacent in the shadow of the great liberal movements doesn't mean the fight is out of us. If you're a women there are millions of women looking down who fought for the suffrage movement 100 years ago. They didn't struggle to get the right to vote, to pave the way just for us to roll over and give up. The countless civil rights protesters who fought and endured incredible hardship for their children, US, to have a better future. I'm not ready to just sit back and let all that drift away. The fight for civil liberties is never over.", 'created': '2024-11-08 18:45:00', 'submission_id': '1gm9ysi'}
{'comment': 'Yeah I agree. It seems like Dems want to play fair and seem non-biased and willing to meet half way, but that doesn’t work. Even Harris saying she would put a Republican in her cabinet and getting Liz Cheney’s support barely helped her out. His ass should have been prosecuted.', 'created': '2024-11-08 06:03:50', 'submission_id': '1gm9ysi'}
{'comment': 'Yeah. That’s easy to do with a blocking House and Senate for anything that could remotely impact T.', 'created': '2024-11-08 05:22:12', 'submission_id': '1gm9ysi'}
{'comment': 'Ugh, Garland was his biggest mistake. I’m sure picking him was one of his biggest regrets of his presidency. I wish he had gone with Doug Jones instead.', 'created': '2024-11-08 05:27:43', 'submission_id': '1gm9ysi'}
{'comment': 'Almost like it’s all by design🤔.', 'created': '2024-11-08 11:18:11', 'submission_id': '1gm9ysi'}
{'comment': 'We had four years to act and yet here we are. I’m actually pretty scared.', 'created': '2024-11-08 19:03:08', 'submission_id': '1gm9ysi'}
{'comment': 'No you got a really good idea, it definitely needs to be rebranding, reordering priorities and trying a whole new approach.', 'created': '2024-11-08 07:20:39', 'submission_id': '1gm9ysi'}
{'comment': 'We do need more unity and we need to restore wealth to working and middle class Americans and stop the "entitlement" message while the oligarchs keep getting massively rich....we are at the greatest wealth disparity our country has ever seen and it is only going to increase!', 'created': '2024-11-08 07:01:09', 'submission_id': '1gm9ysi'}
{'comment': "I think people will think you mean labor union. \n\nBut I like the idea in general. \n\nWalz had the weird thing going for a while. \n\nIt can be a word that is too hyperbolic because I think that will be easy to dismiss. Like dictator or fascist. They might be accurate, but i think most Americans wouldn't know what it means or would think that would never happen here.", 'created': '2024-11-08 07:07:41', 'submission_id': '1gm9ysi'}
{'comment': 'The need to become the workers party again. That who is going to be hurt the most by this new administration.', 'created': '2024-11-08 14:06:01', 'submission_id': '1gm9ysi'}
{'comment': None, 'created': '2024-11-08 20:19:19', 'submission_id': '1gm9ysi'}
{'comment': 'And it has to be a man.', 'created': '2024-11-08 11:54:57', 'submission_id': '1gm9ysi'}
{'comment': 'Reconnect with the working class.', 'created': '2024-11-08 16:12:52', 'submission_id': '1gm9ysi'}
{'comment': 'Oh sweet child….we’re not gonna have a 2028….they’re gonna see to it that there’s never another election. They used Trump to get in there, but Vance will soon take his place (they knew if they ran Vance he wouldn’t get elected) and we’ll have P25 for the rest of our days…', 'created': '2024-11-08 14:15:49', 'submission_id': '1gm9ysi'}
{'comment': 'We need a new heavily left leaning partisan think tank to counter the Heritage Foundation.\nIf there is one let me know.', 'created': '2024-11-08 11:45:33', 'submission_id': '1gm9ysi'}
{'comment': 'We need to start pooling resources.', 'created': '2024-11-08 14:37:11', 'submission_id': '1gm9ysi'}
{'comment': "they voted against human rights just for 5 cents cheaper eggs... (they won't get any cheaper)", 'created': '2024-11-08 17:07:04', 'submission_id': '1gm9ysi'}
{'comment': 'She did share economic plans but the media didn’t pick that up. Plus the Trump campaign didn’t have as much funding but were helped by Russia. Instead of texting incessantly, the Harris campaign could have been working social media and influencers more, not with direct, ads that asked more money but messaging that planted ideas.\xa0', 'created': '2024-11-08 11:54:28', 'submission_id': '1gm9ysi'}
{'comment': 'hahahaha! she is pretty tall--5\'11"', 'created': '2024-11-08 06:58:50', 'submission_id': '1gm9ysi'}
{'comment': 'Or is Kamala short. Or someone’s wearing high heels.', 'created': '2024-11-08 06:11:17', 'submission_id': '1gm9ysi'}
{'comment': 'We also need public speakers who use simple terminology and speak in terms that everyone can understand and make a strong emotional impact.', 'created': '2024-11-08 12:00:56', 'submission_id': '1gm9ysi'}
{'comment': 'Pete has done that pretty well. But he might be the only one.', 'created': '2024-11-08 13:27:51', 'submission_id': '1gm9ysi'}
{'comment': 'Then lets agree on foundational principles.', 'created': '2024-11-08 14:38:50', 'submission_id': '1gm9ysi'}
{'comment': "If you're including the Cheneys in this list you have learnt nothing from this election, they contributed nothing but more cynicism towards the Democratic brand. The rebuild will be a collective effort of all parts of the DEMOCRATIC party from the likes of Jared Golden (assuming he doesn't party switch) all the way to AOC/Sanders", 'created': '2024-11-08 07:04:55', 'submission_id': '1gm9ysi'}
{'comment': 'The democrats have been absolutely negligent with their original base - the working class. They tried a message of being for the "middle class", but middle class has become harder for people to attain. The modern middle class\' level of education serves as a line of demarcation for the right. It\'s something to swing people\'s fingers towards as something to separate the working class from what gets labeled as somewhat elite, city dwelling, liberals. The disdain for costal cities is directly caused by the shifting idea the educated middle class vs the struggling working class. The democrats have not done a good enough job to make the working class feel seen and understood. Starting with the bias to give Clinton the nomination in 2016, the democrats have been bleeding off the working class. They have been favoring the establishment, to their own detriment. Hopefully they finally fucking see that they\'re the ones shooting themselves in the foot.', 'created': '2024-11-08 13:49:19', 'submission_id': '1gm9ysi'}
{'comment': 'Most actual Democrats fall in line. The problem is that, like you said, the far corners of the party/the greens won’t like everything in the proposal, so they won’t vote for it because they’re children and don’t understand consequences. Politics isn’t about falling in love. Politics is about finding the best path forward that will get you as close to your ideal as possible.\n\nBut, there does need to be something in there for everybody to jump on board with. \n\nBut I don’t know if that will be enough for the petulant children that didn’t vote or voted for Stein because of whatever pet issue they have today. Thanks to them, there may be no more Palestinians to help. There may be no more Ukrainians to help. There may be no more public schools to educate children. Because of their vote, we got measurably further from their stated goals.', 'created': '2024-11-08 13:25:26', 'submission_id': '1gm9ysi'}
{'comment': "> The problem is, almost anything you'd put into such a document will alienate at least a third of the part\n\nWhile I don't think this is a reason to not try, I do echo the sentiment that the Democrats fill a particularly large tent of people from different walks of life. \n\nA fundamental problem here is that any one individual voter's caricature of their ideal presidential candidate is not necessarily the same caricature of the next voter, and sometimes those caricatures are at odds. However, every single vote is needed, and it is notably and consistently harder to get voters to vote for Democrats nationally. \n\nDemocrats' voters resent compromise. On some degree, I can understand that -- compromising with adversarial groups is pointless and fruitless and has led to a lot of strife. But sometimes, compromises need to be made with uncomfortable positions or potential allies, and this is simply unpalatable to some subset of voters.\n\nTo echo AoC, we need to be willing to build coalitions. Sometimes that means voters (people) have to make and commit to decisions they may not be happy with because it is needed to make positive change. But I worry that our electorate is simply incapable of this. Anything that can be digested quickly and easily is simply not given any further thought, and where the most immediate and basal of reaction takes center-stage at the exclusion of everything else drives voting decision.", 'created': '2024-11-08 07:56:14', 'submission_id': '1gm9ysi'}
{'comment': 'It’s funny to read an entire thread about not having a think tank in the Democratic Party because at the turn of the century all through the new deal there used to be a think tank inherently built into the party, which was the core of intellectual Marxist/academics/socialists that got exercised out by the Reagan years. Once they decided to just firmly ensconced themselves into Neoliberal centrism.', 'created': '2024-11-08 13:16:54', 'submission_id': '1gm9ysi'}
{'comment': "They're more of an anti-Trump conservative collective than a progressive group.", 'created': '2024-11-08 12:25:52', 'submission_id': '1gm9ysi'}
{'comment': 'Both were likely factors.', 'created': '2024-11-08 11:56:24', 'submission_id': '1gm9ysi'}
{'comment': 'What are the names of some of them? \nIf they exit they don’t have the pull like the Heritage Foundation.', 'created': '2024-11-08 11:47:31', 'submission_id': '1gm9ysi'}
{'comment': "I personally think we just need to let the misinformation role and use it. We have tons of fake stories of people suddenly regretting Trump, let's share those.", 'created': '2024-11-08 18:23:29', 'submission_id': '1gm9ysi'}
{'comment': "If you feel that way, then you need to focus on finding ways to do that. But we also have to accept that the party just isn't perfect. If we don't, we are all fucked.", 'created': '2024-11-08 18:22:42', 'submission_id': '1gm9ysi'}
{'comment': 'Good point! If I recall correctly, 1/3 of Congress is up for re-election or replacement in 2026.', 'created': '2024-11-08 22:46:55', 'submission_id': '1gm9ysi'}
{'comment': 'This seems like a very good idea.', 'created': '2024-11-08 22:46:21', 'submission_id': '1gm9ysi'}
{'comment': 'Yes! Folks should read George Lakoff’s “Don’t Think of an Elephant”\n\nhttps://www.chelseagreen.com/product/the-all-new-dont-think-of-an-elephant/', 'created': '2024-11-08 11:59:38', 'submission_id': '1gm9ysi'}
{'comment': 'When it’s the MAGA cultists that need the reeducation camp.', 'created': '2024-11-08 11:02:25', 'submission_id': '1gm9ysi'}
{'comment': 'Further. There is likelihood that this would be challenged in Supreme Court which will be controlled by mostly the republican right.', 'created': '2024-11-08 14:37:16', 'submission_id': '1gm9ysi'}
{'comment': 'We are a wide and disparate constituency, we are also a woe’d and desperate constituency', 'created': '2024-11-08 12:54:32', 'submission_id': '1gm9ysi'}
{'comment': 'Hey will you fund a progressive think tank?', 'created': '2024-11-08 12:48:51', 'submission_id': '1gm9ysi'}
{'comment': "Is the end of Democracy possible? Sure. However, i think it's more likely our institutions hold up just enough that we'll have an opportunity the next election. The GOP may be organized on messaging, but they are absolutely atrocious at formulating an actual unified plan and seeing it through. All these people know how to do is spew hate, obstruct and drive the economy into the ground. There's a reason so many high profile GOP members like Cheney, Romney, McCain, etc have stated how much they disprove if Trump. Trump stands to gain far more than the rest of the GOP. When shit hits the fan, I wouldn't be surprised at all of many in both the house and tenant dissent simply because they'll believe it's in their own best interest to do so.", 'created': '2024-11-08 09:40:27', 'submission_id': '1gm9ysi'}
{'comment': 'If Trump actually starts implementing half the things he’s promising to implement, they’re done. \n\nAmericans couldn’t handle 10% inflation. 30% and they’re done. Not even Trump can talk his way out of that. \n\nAnd that’s the thing - he says a lot of things. A lot. To many groups of people. Each group picks to listen to the one thing they like and they mute out the others. \n\nSo a national abortion ban? He’s done. Too many women voters who voted for him voted *for* abortion access. \n\nTariffs on everything as the only source of government income? Everything becomes more expensive? He’s done. \n\nDeporting millions of farm workers? Food prices soar? Also done. \n\nThe people who want those things don’t understand how it all works. “China will pay for the tariffs!” Nope. “Americans will take farm jobs!” Nope. \n\nThis rhetoric is *super* effective when you’re not in power but once you have power - the tarmac hits the road, all eyes on you, don’t screw up.', 'created': '2024-11-08 13:36:57', 'submission_id': '1gm9ysi'}
{'comment': 'Like one 6 year term?', 'created': '2024-11-08 12:51:26', 'submission_id': '1gm9ysi'}
{'comment': 'Yup. That “turn the other cheek” thing gets you nailed to a cross. Not the best strategy.', 'created': '2024-11-08 12:21:14', 'submission_id': '1gm9ysi'}
{'comment': 'Do you think anyone at the DNC reads these posts because shit, what you just said is one thing I think they need to hear!', 'created': '2024-11-08 08:10:53', 'submission_id': '1gm9ysi'}
{'comment': 'We *had* a technological advantage. The right is increasingly interested in tech companies and are just using their vast sums of money to buy them(ex. Elon Musk buying Twitter.)', 'created': '2024-11-08 15:44:14', 'submission_id': '1gm9ysi'}
{'comment': 'Feels like you need to say this louder for the people in the back. Thinking letters to the DNC would be a good start but it would probably fall on deaf ears.', 'created': '2024-11-08 14:42:13', 'submission_id': '1gm9ysi'}
{'comment': 'I was at the state committee level for where I live and the same problem existed here. We tended to throw most of our funds at campaigns and nobody really wanted to give us the authority or money to spin up centralized infrastructure that all of the local groups could use. It felt like such a missed opportunity. This was over 5 years ago.', 'created': '2024-11-08 16:46:49', 'submission_id': '1gm9ysi'}
{'comment': '>The heritage foundation is well funded by billionaires in oil and gas.\n\nThis, right here. Heritage and all the other conservative think tanks get these huge block grants, year after year, from billionaires and business tycoons. They say "Here\'s several million dollars. Do whatever it is you gotta do." What do they do? And basically, they build infrastructure. They build TV studios, hire intellectuals, set aside money to buy a lot of books to get them on the best-seller lists, hire research assistants for their intellectuals so they do well on TV, and hire agents to put them on TV. Why? Because, the conservative moral system, has as its highest value preserving and defending the system itself. And that means building infrastructure. As businessmen, they know how to do this very well.\n\nMeanwhile on our side, the progressive foundations and donors give their money to a variety of grassroots organizations. They say, "We\'re giving you $25,000, but don\'t waste a penny of it. Make sure it all goes to the cause, don\'t use it for administration, communication, infrastructure, or career development."', 'created': '2024-11-08 17:45:05', 'submission_id': '1gm9ysi'}
{'comment': "I hope we get an organization like this, I'd apply to do data analytics in a heartbeat if it was just a slight pay cut.", 'created': '2024-11-10 07:34:20', 'submission_id': '1gm9ysi'}
{'comment': "That's the problem of one party working for the rich while the other one works for the less well off. This country idolized rich people so it's really no surprise that many people vote for them thinking they will become rich too somehow", 'created': '2024-11-08 17:29:59', 'submission_id': '1gm9ysi'}
{'comment': 'Spielberg and Mark Cuban or whoever the richest humans on the Left are should bear hug Reddit.', 'created': '2024-11-08 21:46:45', 'submission_id': '1gm9ysi'}
{'comment': "To be fair the DNC seems to blow money as well. Harris raised roughly a billion dollars. I'm not sure how much was spent or where but they probably spent a lot on swing states, with nothing to show for it. A few years back they supported more extreme Republican candidates in the hopes it would help Democrats beat them but I think we can all agree that wasn't very smart. They need to think long term that's true.", 'created': '2024-11-09 08:08:47', 'submission_id': '1gm9ysi'}
{'comment': 'If we want to continue liberal ideology, I believe the left/dems need to repackage it into emotion-fused sound bites. No more over explaining, no more trying to reach voters through empathy (news flash 1/2 the country has none). They need to target Americans with "I\'m going to cut your taxes", "I\'m going to lower prices of xyz", and then add liberal policies while in office. The only issue is there is no "hate" per se to get Americans riled up.', 'created': '2024-11-08 15:21:05', 'submission_id': '1gm9ysi'}
{'comment': 'Your last point carries more weight than people are giving it. People will not vote for a woman, or a person of color. A woman of color? Forget any chance. \n\nThe message is key, but it’s secondary to the person.', 'created': '2024-11-08 16:03:35', 'submission_id': '1gm9ysi'}
{'comment': "Kamala really did so much with what she was handed. It's a shame that so much of the racism and sexism we thought we had mostly left behind wasn't behind us at all.", 'created': '2024-11-08 19:46:18', 'submission_id': '1gm9ysi'}
{'comment': 'Also, winning the popular vote 8 out of 9 times left us quite comfortable.', 'created': '2024-11-08 06:10:31', 'submission_id': '1gm9ysi'}
{'comment': 'A friend of mine puts it this way: Democrats fall in love, Republicans fall in line.', 'created': '2024-11-08 12:39:04', 'submission_id': '1gm9ysi'}
{'comment': 'More like obedience than discipline.', 'created': '2024-11-08 16:43:08', 'submission_id': '1gm9ysi'}
{'comment': '100%. Their ability to target state legislatures to control census maps has maintained the gerrymandering that benefits them just as much as the EC does', 'created': '2024-11-08 14:47:45', 'submission_id': '1gm9ysi'}
{'comment': 'Yeah. We’re scared of pissing off the degenerate magas and meanwhile they don’t give 1 single fuck about us. They actively want to piss us off', 'created': '2024-11-08 15:00:54', 'submission_id': '1gm9ysi'}
{'comment': "I would love to hear them but I don't have any power so I don't want to waste your time or energy. I would love to see the DNC leadership hold town halls, even virtual, this next year to listen to people's ideas!", 'created': '2024-11-08 16:45:21', 'submission_id': '1gm9ysi'}
{'comment': 'That’s not the only progressive slogan you could do here.\n\nI mean, Tax The Rich plays across the aisle, if you stop for a moment and actually talk to people, but if you want to go with positive connotation vibes there are alternatives', 'created': '2024-11-08 16:11:21', 'submission_id': '1gm9ysi'}
{'comment': 'Congress has still to be called, it might be close but I am not sure they are going to win it.', 'created': '2024-11-08 16:47:20', 'submission_id': '1gm9ysi'}
{'comment': 'But they didn’t even play unbiased. Trump was treated so favorably in comparison to any other defendant in every single case. It cemented that Dems look like a party for 2-tiered justice', 'created': '2024-11-08 13:20:49', 'submission_id': '1gm9ysi'}
{'comment': 'Thank you. I feel like I’ve been taking crazy pills. Been writing ideas nonstop since the election and it’s nice to hear that I’m not just completely off base here.', 'created': '2024-11-08 07:27:03', 'submission_id': '1gm9ysi'}
{'comment': ' Correct! That’s it. Just refine and repeat this message. And it’s a good point that the entitlement language needs to be attacked and changed. The working class deserves a more fair share of america’s wealth. They aren’t entitlements, americas work hard and deserve to be supported when they need it.', 'created': '2024-11-08 07:12:58', 'submission_id': '1gm9ysi'}
{'comment': 'I know, thus still workshopping. Thank you for the feedback. I guess I was trying to apply labels the way the right does. We are “pro-life”, which implies the opposition is “pro-death”, stupid but effective for them. \n\nI see the right as the dividing force. So I need a unity word and an anti- of that word to keep it very simple. My first impulse was adding the label Unionist and always mentioning that we are for uniting the country and general populace. Any opponents would be Anti-Union and pointed out for wanting internal divisions and a weakened place in the world. There is some kind of thread there, I just need help fleshing it out.', 'created': '2024-11-08 07:22:44', 'submission_id': '1gm9ysi'}
{'comment': 'Yes, agreed. There is something there. I’m not sure if that’s exactly it, but I see where you are going.', 'created': '2024-11-08 20:22:18', 'submission_id': '1gm9ysi'}
{'comment': 'It has to be a healthy, handsome man with Captain America vibes. \n\n"Democrats fall in love. Republicans fall in line." -- Bill Clinton', 'created': '2024-11-08 15:31:33', 'submission_id': '1gm9ysi'}
{'comment': 'It needs to be a populist too.', 'created': '2024-11-08 14:02:53', 'submission_id': '1gm9ysi'}
{'comment': 'Probably a good idea. Americans sadly won’t elect a woman right now.', 'created': '2024-11-08 12:07:13', 'submission_id': '1gm9ysi'}
{'comment': "Enough dooming. If people keep spouting this type of thing we won't fix anything in our party.", 'created': '2024-11-08 16:15:14', 'submission_id': '1gm9ysi'}
{'comment': 'Agree. Simplify the language down to the level of a fourth grader like Trump.', 'created': '2024-11-08 12:03:51', 'submission_id': '1gm9ysi'}
{'comment': "He's excellent - but I'm hoping for more pundits that can have podcast and appear on cable/you tube shows. Destiny and Medhi Hassan are pretty good.", 'created': '2024-11-08 13:32:41', 'submission_id': '1gm9ysi'}
{'comment': 'I\'d say a good start would probably be to get AOC, Bernie Sanders, Liz Cheney, and maybe a few in between like Mark Kelly, Tim Walz, & Kamala Harris, and have them hash out a collective Venn Diagram showing the overlapping goals & values they all enthusiastically agree about, the larger overlapping part they regard as tolerable if they\'re occasionally thrown a cookie for one of the things they hold dear that\'s slightly outside the common ground, and the stuff the consider flat-out unacceptable... then focus *hard* on the area where they all agree, and cautiously sprinkle in some vague mentions of the stuff in the "meh, I guess" zone.\n\nIMHO, hardcore greens are like academic Marxists (the harmless-but-annoying kind who mostly just gather on weeknights, drink cheap beer, and engage in angry literary and oratorical masturbation). They might make an occasional valid point, but it\'s a waste of time to even bother engaging with them directly or trying to win their votes, because no Democrat capable of winning an actual competitive election can ever satisfy their unbending purity requirements... and any association with them (even if it\'s merely to poke them with a long dirty pole) gives Republicans a strawman to beat up with attack ads.', 'created': '2024-11-08 17:18:15', 'submission_id': '1gm9ysi'}
{'comment': 'Well, then take up the challenge to shepherd it into being *more* like a "halfway house and support group for recovering Republicans".\n\nThere are tens of millions of GenX Republicans who came of age during the Reagan era, and kept ritualistically voting for Republicans even as the party moved in an uncomfortably Evangelical direction because... well... GenX apathy. Trump finally got their attention, and Lincoln Project built the bridge, paved the road, and subtly challenged their pre-existing beliefs one tasty nibble at a time.\n\nI\'d love to see the term "Lincoln Democrat" become a norm. Lifelong Republican identity is strong (like, "college football team" strong), and "conservative" has way too much negative baggage (for Democrats, because it mostly invokes memories of shamelessly-racist southerners... for ex-Republicans, because Evangelicals have poisoned the word to the point where moderate *Republicans* don\'t even really like it anymore). People like Liz Cheney threw the "Conservative" word around during the campaign, but I don\'t think even *she* likes it much.\n\nIn contrast, Abe Lincoln is America\'s Jose Marti (adored by Miami and Castro Cubans alike) and Sun Yat-Sen (venerated by Taiwan, respected by mainland China). He\'s someone *everyone* can find something to like about... and a strong argument could be made that if he were alive today, he\'d probably be a Democrat, too.\n\nFuture Lincoln Democrats might never be enthusiastically "progressive", but they\'re way more mellow than they\'re made out to be. They might have started out quoting Mises with the enthusiasm & zeal their left-wing peers had for Marx... then graduated into the biggest "jobless recovery" in American history, spent a year or so unemployed after the dotcom boom, and endured the Great Recession (and subsequent Enshittification of Everything). They\'re now old enough to have preexisting conditions. \n\nRoll out the big blue tent\'s purple carpet & welcome them, because once they cross the Lincoln Bridge, "They\'re Not Going Back". In races won & lost by a few percent, it doesn\'t take *that many* to shift the balance in states like Florida that are *already* gerrymandered with brittle R+1 seats that could *easily* become D+1 without anyone changing their actual ideology.', 'created': '2024-11-08 18:26:38', 'submission_id': '1gm9ysi'}
{'comment': 'From Google\n\n“Three of the most influential liberal think tanks in the United States are:\n\t1.\tCenter for American Progress (CAP): Founded in 2003, CAP is a prominent liberal think tank focused on advancing progressive policies on issues like economic inequality, climate change, healthcare, and social justice. It also has strong ties with Democratic policymakers, helping shape many policies related to domestic and international issues.\n\t2.\tBrookings Institution: Although Brookings is nonpartisan, many of its policy recommendations lean liberal, especially on social policy, economic regulation, and foreign affairs. Established in 1916, Brookings is one of the oldest and most respected think tanks in the U.S., publishing extensive research that informs policymakers and the public.\n\t3.\tEconomic Policy Institute (EPI): Established in 1986, EPI is known for its focus on economic policy, particularly labor rights, wages, and inequality. EPI advocates for policies that support middle- and low-income families and frequently influences debates on minimum wage, labor protections, and workers’ rights.”', 'created': '2024-11-08 20:40:32', 'submission_id': '1gm9ysi'}
{'comment': "Any suggestions? Speaking out after the two last elections didn't help. Starting to get fed up with the throat fucking they have been doing to us every election.", 'created': '2024-11-08 19:32:38', 'submission_id': '1gm9ysi'}
{'comment': 'The one saving grace is republicans absolutely can NOT actually govern', 'created': '2024-11-08 12:50:47', 'submission_id': '1gm9ysi'}
{'comment': 'I hope they start devouring each other.', 'created': '2024-11-14 08:33:26', 'submission_id': '1gm9ysi'}
{'comment': None, 'created': '2024-11-08 15:48:49', 'submission_id': '1gm9ysi'}
{'comment': 'DNC is stuck with the Obama playbook.', 'created': '2024-11-08 11:12:42', 'submission_id': '1gm9ysi'}
{'comment': 'Yeah, but 80% of the people who work at these companies are liberal, moderate or progressive. The brain power is the advantage. The owners are conservative, but Twitter is a bad company as a whole and as a platform. It’s tech and algorithms. It could be recreated 100 different ways', 'created': '2024-11-08 15:53:33', 'submission_id': '1gm9ysi'}
{'comment': 'While that is true, all of the engineers are liberals. Something like 85% of software engineers and 90% of data scientists are liberals.', 'created': '2024-11-08 16:10:53', 'submission_id': '1gm9ysi'}
{'comment': 'It’s 100% a missed opportunity. The right wing ecosphere is good at targeting and getting their message to people because they have a federated approach to getting key talking points out across the board.\n\nDems need to build a team that can get tik toks and YouTube views into the ears of people to counter gop fear tactics and not be in constant defense mode.\n\nGen Z has about a 3 minute attention span. Hit them hard with facts in small increments that show them why the GOP platform is bad for them.\n\n“Work in manufacturing.. here’s why it’s bad for you to vote for someone that wants to pull out of Ukraine”\n\nShorts that hit key topics quickly and get the point across to get it into the zeitgeist', 'created': '2024-11-08 16:57:37', 'submission_id': '1gm9ysi'}
{'comment': '"Taxing unrealized gains" doesn\'t have the same ring to it as "cutting taxes" does it?\n\nPut "taxing unrealized gains" in the platform for those of us who care. Everyone else should get a different message. Call it "paying back the national debt" or something.\n\n"Billionaires can afford to pay off 10% of the national debt in the next 2 years, and they will. This will boost the economy and free up money for small businesses, education, and healthcare to make our society more productive."', 'created': '2024-11-08 16:33:29', 'submission_id': '1gm9ysi'}
{'comment': 'I feel like the small sound bites- "I\'m going to lower your prices" is exactly what Kamala was doing.\n\nIn fact, people kept saying she didn\'t have policy because she was focusing on emotional soundbites.\n\nIf she\'d had a dick she would have won. Lets not lie about where this is coming from. The big demographics we saw that didn\'t vote for her were men of all ages.', 'created': '2024-11-08 22:57:51', 'submission_id': '1gm9ysi'}
{'comment': 'Votes are still being counted, so it is likely we might actually win the popular vote again but we certainly lost the electoral college.', 'created': '2024-11-08 08:09:39', 'submission_id': '1gm9ysi'}
{'comment': 'This reminds me of a comment I saw on LinkedIn. Notice "obedient citizens"\n\nhttps://www.linkedin.com/posts/peter-deshan-065b773_there-will-be-at-least-12-years-of-pure-prosperity-activity-7259895258329604096-r_5U', 'created': '2024-11-08 16:40:08', 'submission_id': '1gm9ysi'}
{'comment': 'That’s Clinton/Carville.', 'created': '2024-11-08 19:17:40', 'submission_id': '1gm9ysi'}
{'comment': "I don't know what's wrong with Democrats. Gerrymander! It's legal!", 'created': '2024-11-08 16:37:47', 'submission_id': '1gm9ysi'}
{'comment': 'I’d honestly read more if you have anything else.\n\nAnd I do agree that the party needs something to unify, because ultimately that’s what helps either side.', 'created': '2024-11-09 03:32:47', 'submission_id': '1gm9ysi'}
{'comment': None, 'created': '2024-11-08 20:42:43', 'submission_id': '1gm9ysi'}
{'comment': 'When the fuck are we going to start listening to Bill? Fuckin dude knows what he’s talking about.', 'created': '2024-11-08 16:07:31', 'submission_id': '1gm9ysi'}
{'comment': "I'm not sure how much of an effect that had. I'm sure it did, but in reality we are wondering why California Kamala didn't do as well as Scranton Joe in the rust belt.", 'created': '2024-11-08 16:14:02', 'submission_id': '1gm9ysi'}
{'comment': 'Or probably a republican, this feels like an “only Nixon could go to china” kinda thing', 'created': '2024-11-08 12:30:14', 'submission_id': '1gm9ysi'}
{'comment': 'Not the candidate necessary but perhaps their surrogates. Not everyone has a complex vocabulary and people hate being talked down to.', 'created': '2024-11-08 12:48:52', 'submission_id': '1gm9ysi'}
{'comment': "Kamala tried this. It didn't work.", 'created': '2024-11-08 20:17:12', 'submission_id': '1gm9ysi'}
{'comment': "Simply put, we need money. We need to emulate the right's media strategy", 'created': '2024-11-08 20:09:36', 'submission_id': '1gm9ysi'}
{'comment': 'Imagine if we had tried to appeal to the better angels of the British in 1776, or the Confederacy in 1861.', 'created': '2024-11-08 16:27:58', 'submission_id': '1gm9ysi'}
{'comment': "That's why all the rhetoric flying around that the left needs to act morally superior and *perfect* if they want to win trump voters back is such garbage. \n\n\nIf they were truthful about wanting less hate in politics, they wouldn't vote for trump in the first place. Trump's hate, rhetoric, and lies wins elections.", 'created': '2024-11-08 19:31:33', 'submission_id': '1gm9ysi'}
{'comment': 'Decency doesn’t win when the other side is better at the art of realpolitik', 'created': '2024-11-08 19:14:42', 'submission_id': '1gm9ysi'}
{'comment': 'Correct. Harris ran a great ‘08 style campaign. Those are dead now.', 'created': '2024-11-08 13:13:30', 'submission_id': '1gm9ysi'}
{'comment': 'What our side also needs is the equivalent of sports recruiters that go visit the farm teams and such to scope talent. You know, go to every volunteer org, PTSA, rotary club, community councils, etc and see how they need help, but also figure out who is likely to be good for a higher office in the future and help grow them.\n\nRight now, it feels like a free for all where it’s totally some grassroots effort bumping into the establishment or some hand picked candidate by someone who impressed someone in authority.', 'created': '2024-11-08 17:10:28', 'submission_id': '1gm9ysi'}
{'comment': 'God, that sounds awesome!!', 'created': '2024-11-08 16:41:29', 'submission_id': '1gm9ysi'}
{'comment': 'No. No way man. no one cares about the national debt.\n\nThe GOP uses it to support “government wastes your money” talking point. Talking about paying it back is like talking about paying your bills. Its a loser and is literally why you never hear the GOP talk about any of that ever. They just want to cut spending to point out how bad the government is with money so they can justify cutting taxes. \n\nWe need to be talking about making people’s lives better.\n\nUnder Democrats, your wages went up by x amount! Democrats will make sure YOU get a bigger slice of that american pie!\n\nWe’re going to make rich men work for you by making them pay their fair share!\n\nwe’re going to put the money that you made them to work making sure your kids get food at school( that you get healthcare, that you get a fair deal, that you have roads to drive in, that your bridges are safe, that our military is prepared against the threats from every corner of the globe\n\nThey’ve taken enough from you, America, Vote Democrat to bring home the bacon.', 'created': '2024-11-08 23:52:45', 'submission_id': '1gm9ysi'}
{'comment': 'I agree. Misogyny and racism are huge factors.', 'created': '2024-11-09 00:02:49', 'submission_id': '1gm9ysi'}
{'comment': 'As of now, there’s a 4 million vote difference and California alone is only 59% counted. I’m aware that CA isn’t 100% blue but still.', 'created': '2024-11-08 13:35:11', 'submission_id': '1gm9ysi'}
{'comment': 'Then Democrats need to have some of this as part of their strategy. The "Big Tent" needs to be shrunk, and one group needs to claim ownership. We have this huge party filled with all different kinds of people, but no one group is more "in charge" than the others. Nobody sets our values, nobody tells us what we stand for. I\'ll say one thing for Republicans, they believe in something. It\'s all a bunch of racist, sexist, bigoted bullshit, true. But they believe it and they govern in accordance with that belief.', 'created': '2024-11-10 19:39:17', 'submission_id': '1gm9ysi'}
{'comment': 'Thank you for the encouragement, I really appreciate it. Been thinking more about podcast as well since that is such a big medium. \n \nI don’t quite have all the skills myself, but I feel like I can contribute in some way. I’ll keep working on it. I live in Oregon if anyone wants to try and connect or help me bounce ideas around.', 'created': '2024-11-09 03:50:03', 'submission_id': '1gm9ysi'}
{'comment': 'Yes, that’s the idea. I do not think a third party is viable. So we would have to reshape the Democratic Party from within and add new labels etc. This is why I like the term “Unionist”. Republicans turned into MAGA Republicans. I think we need to start running Democratic-Unionist, or whatever the final form of this idea is. Yes, then you could steal a large swath of the rights votes with left wing populism. I can see it. Just have to refine the message and pick the right new buzz words. Have to keep as much of the existing base as possible and appeal to the workers in the other side. The ultra wealthy, American oligarchs, and foreign intervention are our greatest enemies.', 'created': '2024-11-08 21:40:09', 'submission_id': '1gm9ysi'}
{'comment': 'Clinton’s Sister Souljah moment, used to humble Jesse Jackson and his supporters, and his recent trip to Michigan where he espoused King David rhetoric are direct examples of what has gone wrong with the Democrats as a party and why they have lost so much support. We shouldn’t be looking to the Clinton’s in this time unless we want to go the way of the Whigs.', 'created': '2024-11-08 20:57:02', 'submission_id': '1gm9ysi'}
{'comment': 'It didn\'t work because too many GenZ, black, and hispanic men voted for Trump. Absolutely 100% guaranteed, their decision wasn\'t driven by, "Harris was too centrist".\n\nThe unpleasant truth is, MAGAvirus™ is spreading.\n\nI have absolutely no idea what to do about GenZ, black, and hispanic men... but at least for Boomers, GenX\'ers, and Millennials, there **is** a highly effective combined cure and vaccine... it\'s called, "The Lincoln Project".\n\n===\n\nAnother idea I\'ve been rolling around in my head for the past couple of days to suggest to them: take the general format of Scandinavian Demoscene parties, and hold one every 6 months in Orlando for making viral anti-Trump videos intended for Youtube and TikTok. Say, April & October (to avoid hurricane-season drama). They could do things like:\n\n* hour-long sessions about legal issues important to making political videos... not just things like avoiding slander & libel, understanding what a public figure is, and the First Amendment... but also less-sexy, but equally-important things like copyright, fair use, and asset-licensing.\n* A few sessions covering topics like CGI/animation, finding music compatible with free licenses, etc. Ideally, with a few presented by real animators who work for studios like DisneyPixar in Orlando.\n* Hands-on labs teaching people how to use free (as in beer, if not liberty) software to make CGI ads. Maybe one for AI, one for some animation suite, and one with a name like, "Unity: not just for games anymore".\n* Over the span of the weekend, have 3 (initially, 2) main video competitions:\n * Videos produced over the weekend. Judged primarily for concept & copywriting... shown mid-afternoon Sunday, awards at closing event.\n * Videos produced prior to the weekend. Concept, copywriting, and execution are all important. Must be properly licensed in advance for streaming on Youtube, which probably means they can\'t use copyrighted music or assets.\n * Videos that were first shown at the previous event... in both their original form and final form. Judged for concept, copywriting, and execution. Same copyright clearance rules as category 2. This batch should probably be done early in the event, to inspire attendees and set expectations.\n\nBesides keeping up the flow of anti-Trump videos during the dry season before the 2026 elections, it expands Lincoln Project\'s own talent pool for making future videos.\n\nWhy Orlando (ok, maybe Kissimmee)?\n\n* Proximity to DisneyPixar\n* If you\'re having an event that\'s going to totally consume most of the weekend, there\'s no point having it in a $500+/night hotel in downtown Miami. We\'re talking about people paying for their own rooms, not highly sought-after consultants charging it to an expense account. I\'d say, $250/night max, with something like a $99/night Hampton Inn or Holiday Inn Express across the street or next door. ;-)\n* Sane drive for Rick Wilson (whom I think lives somewhere around Tallahassee)... and presumably, a lot of the *other* people he works with.\n\nIf it\'s a big hit, maybe they could do an additional one sometime around June 2024 in California or Las Vegas.', 'created': '2024-11-08 23:51:33', 'submission_id': '1gm9ysi'}
{'comment': "Fuck that, millions of dollars have flew into the DNC coffers for years. We need major leadership changes and guarantees that our voices are heard and followed. It isn't a money issue, it is a elitist board that thinks they know best. People have been saying it is the economy and pricing of everything from food , Healthcare and childcare. I sympathize with fringe group rights and support their rights but f'me, Jim Bob doesn't give two shits about them.", 'created': '2024-11-08 22:27:27', 'submission_id': '1gm9ysi'}
{'comment': "Honestly, I'm a bit of a Tory when it comes to the Revolution. Britian at the time was doing more to protect Native land (one of the causes of the war actually, even alluded to in the Declaration of Independence) and moved to abolish slavery much sooner than we did. \n\nA world in which the Colonies were given seats in Parliament is probably better than what we got.", 'created': '2024-11-08 18:59:22', 'submission_id': '1gm9ysi'}
{'comment': 'Agree with that too. Essentially the DNC needs to modernize across the board', 'created': '2024-11-08 17:11:54', 'submission_id': '1gm9ysi'}
{'comment': "Another important factor is that they've GOT to appeal to people in more traditionally conservative areas. It's not just about role models or whatever but they usually know what will and won't work and how to message people better. \n\nA good example is how a lot of people on mainstream media struggle to reach average people and when the whole story about childless cat ladies or whatever else came up, the media will into a huge narrative about how this is wrong because of x, y, and z. But Tim Walz is from Nebraska and rural Minnesota so he simply got up there and said wow, these people are just weird. And it really hit hard not only because it was accurate, but because Republicans HATE being considered weird. **And he knew that**. Most of the stuff about being racist, sexist, not caring about the environment, or economic equality completely unphase them. But weird? Oh hell no they kept saying, those are Democrats.", 'created': '2024-11-09 08:25:50', 'submission_id': '1gm9ysi'}
{'comment': 'Not 4 million. Check again.', 'created': '2024-11-08 17:00:46', 'submission_id': '1gm9ysi'}
{'comment': "And Republicans are not shy about wielding power. They'll win an election 51/49 and act like they won in a landslide.", 'created': '2024-11-12 07:08:35', 'submission_id': '1gm9ysi'}
{'comment': 'Sounds awesome!', 'created': '2024-11-09 05:04:07', 'submission_id': '1gm9ysi'}
{'comment': "I think we need to create a group of us, make a plan, and try and present to the DNC. But we need people with experience, we need connections. I know the DNC isn't perfect, but we don't have a choice here.", 'created': '2024-11-08 22:41:50', 'submission_id': '1gm9ysi'}
{'comment': "One thing that didn't help Britain's case was King George's continued fucking with Spain and France, and expecting some colonies on the other side of the Atlantic to foot the entire bill, when neither Spain nor France initiated the conflict.", 'created': '2024-11-09 02:12:09', 'submission_id': '1gm9ysi'}
{'comment': "They've proven that you can campaign on your values and win, it's just a matter of what values you campaign on. What values do Democrats campaign on? What do we stand for? What do we believe? And because we have not set those values, because we have not set those beliefs, we have implicitly given MAGA and the GOP permission to set them for us.", 'created': '2024-11-12 15:07:41', 'submission_id': '1gm9ysi'}
{'comment': 'I would give anything for her to have been president', 'created': '2024-11-08 05:23:01', 'submission_id': '1gm9pyv'}
{'comment': 'We will resist like we’ve never resisted before', 'created': '2024-11-08 13:03:45', 'submission_id': '1gm9pyv'}
{'comment': 'The whole “R’s break shit and then get their cultists to complain that D’s didn’t fix it fast enough” cycle is really aggravating \n\nEspecially bc this election was the end point of fucking Reagan’s bullshit trickle down crap\n\nEdit: oh, and faux news and Sinclair - fuck them for writing/selling all the R garbage in the first place', 'created': '2024-11-08 18:58:42', 'submission_id': '1gm9pyv'}
{'comment': 'More Elizabeth Warren is not \nwhat we need.', 'created': '2024-11-08 17:36:43', 'submission_id': '1gm9pyv'}
{'comment': 'America prefers the apprentice guy. So sad.', 'created': '2024-11-08 08:49:49', 'submission_id': '1gm9pyv'}
{'comment': 'Me too and had they chosen Sen Warren instead of VP Harris in this year elections her democratic party populism combined with the Biden supporters could have taken PA MI WI AZ GA NV from Trump/Vance Ticket. Although Trump would have done Trump Stefanik to take Sen Warren down for this years election. 2028 might be the time to break the glass ceiling with the lessons of 2016 and 2024. VP The Castro twins Sen Booker who I met in 2022.', 'created': '2024-11-08 05:30:49', 'submission_id': '1gm9pyv'}
{'comment': 'The sad truth is that it would’ve been the Sam’s result. This country has proven that it would rather cut its own nose than have a woman be in charge.', 'created': '2024-11-08 14:57:36', 'submission_id': '1gm9pyv'}
{'comment': 'She still would have been beat, because America cannot tolerate a woman as President. Not now, and maybe not ever.', 'created': '2024-11-08 15:45:16', 'submission_id': '1gm9pyv'}
{'comment': 'I’m sorry, but we would be stupid to risk everything again and put a woman at the top of the ticket in 2028. We need to put a man on the ticket, establish national popularity with the Democratic Party, and only then should we put forth a female nominee for President. For the record, I think a female president would be phenomenal for this country, but we have to be realistic based on what we saw since 2016.', 'created': '2024-11-08 15:18:20', 'submission_id': '1gm9pyv'}
{'comment': 'Exactly right. It’s a painful lesson to learn, but America, even some Democrats, are not ready to make that leap - and maybe never will be.', 'created': '2024-11-08 15:46:56', 'submission_id': '1gm9pyv'}
{'comment': 'You are correct on that for the Republicans if they want to do a woman it has to be a trump loyalist something that would keep the white women within their loyalty base', 'created': '2024-11-08 22:33:53', 'submission_id': '1gm9pyv'}
{'comment': "I'm not sure you understood my comment. I'm saying the next democrat presidential candidate should be a male considering results of 2016 and 2024.", 'created': '2024-11-08 22:39:12', 'submission_id': '1gm9pyv'}
{'comment': 'these dumb dumbs have to learn a lesson.. unfortunately everyone else gets to suffer.. I predict scandal after scandal this next 4 years with no consequences..', 'created': '2024-11-08 05:55:34', 'submission_id': '1gm9dek'}
{'comment': "What will be even worse is the mass deportations. It will skyrocket labor costs in general, but especially in agriculture and construction.\n\n\nWorst case, there will just be shortages because we're already near full employment (thanks Biden), and critical work, like harvesting crops, just won't get done.", 'created': '2024-11-08 14:12:21', 'submission_id': '1gm9dek'}
{'comment': "All this for the price of groceries... hopefully the groceries they had in mind weren't:\n\n* Coffee\n* Tea\n* Olive oil\n* Chocolate\n* Spices\n* Bananas\n* Avocados\n* Tropical fruits\n* British cheese\n* Imported Wines\n* Italian pastas\n* Rice\n* Maple syrup\n* Greek yogurt\n* Olives\n* Sea salt\n* Couscous\n* Kimchi\n* Dates\n* Quinoa\n* Prosciutto\n* Chorizo\n* Cashews\n* Danish butter cookies\n* Dijon mustard\n* Coconut milk\n\nAnd the list goes on >:(", 'created': '2024-11-09 02:58:22', 'submission_id': '1gm9dek'}
{'comment': 'I gutted all 3 fiberglass showers in my house - having them tiled. Also purchased new double front doors. Gonna be all wrapped up this month.', 'created': '2024-11-08 05:10:43', 'submission_id': '1gm9dek'}
{'comment': 'ironically this will hurt amazon badly.', 'created': '2024-11-08 14:40:25', 'submission_id': '1gm9dek'}
{'comment': 'If you are able, please consider starting victory gardens of your most used fruits and vegetables to offset some of the higher prices to come.', 'created': '2024-11-08 18:05:44', 'submission_id': '1gm9dek'}
{'comment': 'From how the last admin worked - nobody sticks around for long … it will look like a busy airport where no one knows where everyone is going.', 'created': '2024-11-08 05:58:14', 'submission_id': '1gm9dek'}
{'comment': 'I am hoping for him to piss off his followers so much that we get our own French Revolution. Destroy the rich. Yeah i want to watch the world burn at this point.', 'created': '2024-11-08 08:25:24', 'submission_id': '1gm9dek'}
{'comment': ">\xa0\xa0these dumb dumbs have to learn a lesson.. unfortunately everyone else gets to suffer.\n\n\nThey will just blame Democrats, opposition politicians, immigrants, and minorities. It's not possible to reason out of a position that they didn't reason into.", 'created': '2024-11-08 16:57:54', 'submission_id': '1gm9dek'}
{'comment': 'And musk.', 'created': '2024-11-08 12:13:52', 'submission_id': '1gm9eh6'}
{'comment': 'So wait, Melania has to go?', 'created': '2024-11-08 09:45:30', 'submission_id': '1gm9eh6'}
{'comment': 'I would love to see him leave because I can’t stand him', 'created': '2024-11-08 17:10:51', 'submission_id': '1gm9eh6'}
{'comment': 'Same here. He gives the true meaning to racist.', 'created': '2024-11-08 17:12:19', 'submission_id': '1gm9eh6'}
{'comment': "AP estimates there's nearly 15 million more votes to count, most of that in west. It's just an estimate though and may not correctly account for all types of ballots out there. It won't change the outcome but there is still a small chance that Harris wins the popular vote. It's going to be super close in the end. \n\nImagine if we were popular vote only instead of Electoral College bullshit. Not only would a shit load more people have voted and turned out and been engaged but we'd also be shitting ourselves as they count this vote over the next week or so.", 'created': '2024-11-08 04:51:49', 'submission_id': '1gm8orn'}
{'comment': "Thank you for running the numbers. Doesn't make it any less infuriating, but at least the numbers make sense to me now.", 'created': '2024-11-08 05:04:36', 'submission_id': '1gm8orn'}
{'comment': 'I’m wondering with the remaining ballots to be counted—will she be able to overtake Trump and win the popular vote? I know it won’t change the outcome… but it’ll be a blow to Trump’s ego and he will have lost the popular vote in all three elections he’s run in.\n\nI don’t believe that 20M people sat this one out… but I do think a significant amount did. Would it have been enough to sway the electoral college in her favor? Idk, but her loss will be something that people will study for a long time to come.', 'created': '2024-11-08 05:13:39', 'submission_id': '1gm8orn'}
{'comment': "All votes aren't counted yet, and is it really surprising that people just didn't show up? 2020 was an anomaly of increased voter access. It's not surprising at all that people are lazy, and reverted to not caring, or not thinking it made a difference when there was no impending doom to live through.", 'created': '2024-11-08 04:59:03', 'submission_id': '1gm8orn'}
{'comment': "Right now Harris has 69M and most of the Western states aren't at 100%. \n\nHarris will probably end up with more votes than Trump.", 'created': '2024-11-08 04:52:28', 'submission_id': '1gm8orn'}
{'comment': 'Let’s not start this. The mail in system is having issues catching up, but the numbers are going to be closer to 2020 than not if they don’t surpass.\n\nVoters who don’t know anything about current events, politics, governance, world affairs, or the economy are unhappy with their lives and knew things were better for them or their friends personally in 2019 and are giving trump credit for it. Half that narrative is a lack of media doing their job and information silos.\n\nThey just wanted a change because things aren’t great for them.\n\nThey think Covid as not his fault because they don’t pay attention and know how trump bungled it. They don’t know we were heading into a recession before Covid. They don’t know that trumps few policies are actually terrible for the economy. They’re gonna find out though', 'created': '2024-11-08 04:52:16', 'submission_id': '1gm8orn'}
{'comment': 'Thank you for this post.\n\nLet’s not talk about turnout until after all the votes have been counted.\n\nWe got our butts kicked. Now we have to figure out why.\n\nWas this the best we could have hoped for in a difficult environment? \n\nWere there mistakes made during the campaign? \n\nWere there mistakes made during the Administration? \n\nWhat were the voters looking for that we weren’t giving them? \n\nI will say this: The butt kicking was on its way long before Harris entered the race and it probably would have been harder if she hadn’t.', 'created': '2024-11-08 05:33:23', 'submission_id': '1gm8orn'}
{'comment': "Those weren't all Democratic voters. They were the anti-Trump coalition. There were independent, Never-Trump, and squishy Republican voters in there, too. They voted for Biden, breaking with the GOP, and then decided it was a mistake because eggs.\n\nThey voted down ballot, but not for Harris or they didn't vote at all.", 'created': '2024-11-08 05:25:50', 'submission_id': '1gm8orn'}
{'comment': 'Thank you for this breakdown. It takes so damn long to count all the votes that I don’t want people to fill in the gap with speculation. No one benefits from that.', 'created': '2024-11-08 05:14:41', 'submission_id': '1gm8orn'}
{'comment': 'I’m just gonna throw this out there. Trump made a comment in a speech “you don’t have to vote. We have plenty of votes.” “Me and Mike Johnson have a secret.” The news “we’re seeing record turnout this election” to all of a sudden voters didn’t show up. Elon Musk and Trump being buddy buddy and the intel community has already said Musk is a national security threat. I’m not even a conspiracy theorist. I’m just reading between the lines. Each election more and more people vote but not this time? Every single person who has accurately predicted the election got it wrong? Yeah…let that sink in. Not to mention every single time Trump claims democrats are doing something shady it turns out to be him projecting. What did he say on election night? We’re cheating. Okay….im not accepting the results that easily given who were dealing with.', 'created': '2024-11-08 14:34:24', 'submission_id': '1gm8orn'}
{'comment': 'That 81m was when people still remembered how bad Trump was', 'created': '2024-11-08 06:11:31', 'submission_id': '1gm8orn'}
{'comment': '[removed]', 'created': '2024-11-08 04:52:38', 'submission_id': '1gm8orn'}
{'comment': 'Im telling you, the Trump campaign used their 2016 playbook. All you need is data sets, you target enough people in swing states you can win an election. Cambridge Analytica 2.0 is alive and well. The only thing is there’s no whistleblower to tell us about it this time. Watch The Great Hack on Netflix.', 'created': '2024-11-08 13:08:23', 'submission_id': '1gm8orn'}
{'comment': 'Here’s a real accountability question: why wasn’t the Trump trial stuff already done with?\n\nHe should have been charged with treason, it would have been an easy win, as he clearly was trying to overthrow the government!\n\nWhy did the AG and the DoJ drag their feet on the trials?', 'created': '2024-11-08 15:05:18', 'submission_id': '1gm8orn'}
{'comment': 'MAGA voting districts with MAGA poll workers probably made some Harris votes disappear. Who would even know if they did?', 'created': '2024-11-08 04:22:46', 'submission_id': '1gm8orn'}
{'comment': 'I remember in 2020 i came back from furlough the week of election. I asked if I could come back the following week, they said no. I took off anyway.\n\nI can imagine they threw some OT at some black people and they didn’t turn it down.\nHappened to me, imagine what they have lined up in their pockets', 'created': '2024-11-08 04:55:43', 'submission_id': '1gm8orn'}
{'comment': 'I still don’t believe it . Republicans have been working on cheating voters for years . With Russia and Musk help I don’t see how losing 15 million votes would be that hard for them .', 'created': '2024-11-08 14:32:40', 'submission_id': '1gm8orn'}
{'comment': 'There is a reasonable explanation: people were far more engaged in the election during the pandemic. This time, they weren’t.', 'created': '2024-11-08 05:20:59', 'submission_id': '1gm8orn'}
{'comment': 'A lot of people in safe blue states didn’t bother to vote I think.', 'created': '2024-11-08 05:30:13', 'submission_id': '1gm8orn'}
{'comment': 'I think it came down to people being upset about higher prices at the grocery store and the Harris campaign not effectively speaking to that issue.', 'created': '2024-11-08 05:07:41', 'submission_id': '1gm8orn'}
{'comment': 'With the massive lines and new voters how on earth did we end up with 13M less votes? That seems impossible', 'created': '2024-11-08 06:29:38', 'submission_id': '1gm8orn'}
{'comment': 'i mean those people need to look at the swing states, texas and florida only. they are all within, over or will be over the margins of 2020.\n\nfor all the good things biden/harris did, there were bad things too. and the bad things are usually to blame when candidates are not "re-elected," which is the case for harris. the incumbents fell. this has been the common theme worldwide. the pandemic messed up a lot.\n\ndems are to blame. all campaign the polls said the economy and border were the top concerns; but, towards the end, they hammered abortion and democracy. and what we\'re seeing is dems continue to shift blame. it\'s still early though. many are still devastated.', 'created': '2024-11-08 04:28:38', 'submission_id': '1gm8orn'}
{'comment': 'already people on the right are using this to bolster their claim that the 2020 election was rigged', 'created': '2024-11-08 05:58:59', 'submission_id': '1gm8orn'}
{'comment': 'Clearly it was easier to vote from the confort of your home. I will not accept this for 2026, 2028, 2030, 2032 or 2034🫰', 'created': '2024-11-08 05:50:29', 'submission_id': '1gm8orn'}
{'comment': 'so much for the whole Covid killed off a buncha trumps base Meme.\n\nlooks like we got trolled.', 'created': '2024-11-08 14:22:59', 'submission_id': '1gm8orn'}
{'comment': 'Thanks for posting this and breaking down the math for those who seem to be teetering on the edge of the conspiracy theory mind trap to rationalize how we got our asses kicked so badly this cycle. It seems clear that not only did a lot of Biden voters not show up but many of them switched their votes back to Trump this time around. Harris’ massive underperformance in blue states is far more indicative of a systemic issue within the Democratic Party rather than some national voter fraud conspiracy across multiple states. The sooner we accept that reality the faster we can move on to figuring out long term solutions and a pathway forward.', 'created': '2024-11-08 07:39:44', 'submission_id': '1gm8orn'}
{'comment': 'Where is these estimates that these many votes have yet to be counted come from?', 'created': '2024-11-08 06:13:37', 'submission_id': '1gm8orn'}
{'comment': '\n\nThe DNC', 'created': '2024-11-08 14:25:19', 'submission_id': '1gm8orn'}
{'comment': "So only 6 million dems didn't show up then. Not much better IMO\n\n>Harris — 75,054,105\n \n>Biden: 81,283,501", 'created': '2024-11-08 16:39:05', 'submission_id': '1gm8orn'}
{'comment': 'It’s not 20m dems, it’s 20mil overall voters that would assumingly lead democratic', 'created': '2024-11-08 16:42:15', 'submission_id': '1gm8orn'}
{'comment': 'Has anyone seen data on the impact of purging voter rolls in swing states?\n\nI and I’m sure many others were fully anticipating a higher voter turnout than 2020, so coming up 3 million short doesn’t ease my concern regarding voter turnout. \n\nThe GOP has ardent supporters who don’t like Trump, but they voted for him anyway. Every republican that I know, did this and I’m a boomer in the most republican leaning district in Georgia so I know a lot of people who did this. \n\nDems don’t do this. In 2016, the Bernie bros either didn’t vote or voted for Trump, after the dnc rigged the primaries & debates to ensure a Hillary nomination. Now we have the Palestinian issue, where I suspect they didn’t vote because both sides support Israel', 'created': '2024-11-08 18:04:59', 'submission_id': '1gm8orn'}
{'comment': "If it's true that this happened more because the country genuinely is moving to the right, and not because of lower voter turnout among dems, that's a really scary thing to confront. It means that this is likely the end of the democratic party, and we can't expect to win in 2028, or ever again.", 'created': '2024-11-08 18:29:50', 'submission_id': '1gm8orn'}
{'comment': "that's just 3 million votes that didn't get off the couch", 'created': '2024-11-09 00:11:12', 'submission_id': '1gm8orn'}
{'comment': 'The Biden bump is people traumatized by a bloviating boob telling to take bleach while bodies are filling up freezer trucks.', 'created': '2024-11-09 02:14:17', 'submission_id': '1gm8orn'}
{'comment': 'Remember how pathetic the "STOP THE STEAL!" idiots were 4 years ago?\n\nDon\'t be that pathetic. We lost, denial is how we keep losing.', 'created': '2024-11-10 18:30:15', 'submission_id': '1gm8orn'}
{'comment': 'Thank you! Voter fraud or cheating doesn’t explain the margins in blue states like NJ or NY, nor why Democrats won in some states that went for Trump. There was no widespread voter fraud or tampering, at least not on the scale to change the election. Chris Hayes made an excellent point today that incumbent administrations all over the democratic world have been ousted because of inflation and post Covid issues. We are not unique in this regard. Unfortunately the candidate not from the current administration just so happened to be Trump. Conspiracies will do nothing. We have work to do on damage control for the next four years.', 'created': '2024-11-08 07:07:48', 'submission_id': '1gm8orn'}
{'comment': 'THANK YOU. Holy shit I’ve been repeating myself over and over but no one freaking listens.', 'created': '2024-11-08 05:53:22', 'submission_id': '1gm8orn'}
{'comment': 'STOP IT! JUST STOP! There are good explanations for this everywhere if you just take five minutes to look. I am as liberal as the rest of us, but we can’t just give in to conspiracy theories every time something doesn’t go our way like the republicans. We need to look inward and do what’s required to win going forward.', 'created': '2024-11-08 05:36:32', 'submission_id': '1gm8orn'}
{'comment': 'Good to finally see some common sense here. There was no conspiracy. There was no election interference. We just fucking lost.', 'created': '2024-11-08 08:44:44', 'submission_id': '1gm8orn'}
{'comment': 'Keep pushing this!! \n\nI knew things were uncomfortably called too quickly.\n\nHow do we get this on the bigger radar?', 'created': '2024-11-08 14:50:58', 'submission_id': '1gm8orn'}
{'comment': 'I AGREE THERE SHOULD BE AN INVESTIGATION', 'created': '2024-11-08 15:40:26', 'submission_id': '1gm8orn'}
{'comment': 'Getting pretty tired of the same old shit from the DNC...ignoring the giant elephant in the room that\'s been growing since the 2007 recession. This country stopped working for working class people and those people respond to populists who say "tear the broken system down." Bernie had a populist message and an immense following because of it and the DNC squashed it to ram through the status quo candidates. A decisive amount of those sanders voters went to Trump in swing states historically. (I get that that is irrational, but most people are irrational. Clearly. Data is data. Sue me, I\'m cynical and if you aren\'t after this, get your head out of the sand and look at what just happened.)\n\nThe DNC needs to stop screwing us over if we want to win elections again. Kamala ran an amazing campaign. Walz was incredible. I was excited too. I\'m baffled at the stupidity in this country. I\'m dismayed by it. But kowtowing to the right, shifting messaging toward immigration to the right was stupid on the DNCs part. The DNC is not our friend. A housing stipend for first time homebuyers was a joke in the face of "I\'m gonna blow this evil system that\'s made you suffer apart" to people who vote on "vibes."\n\nIf we want to win elections, we need to look at what we are doing and get real with meaningful solutions that ACTUALLY improve people\'s lives. Otherwise this is the deal now.', 'created': '2024-11-08 09:07:07', 'submission_id': '1gm8orn'}
{'comment': None, 'created': '2024-11-08 06:28:26', 'submission_id': '1gm8orn'}
{'comment': '[removed]', 'created': '2024-11-08 09:33:28', 'submission_id': '1gm8orn'}
{'comment': 'The graph has no numbers', 'created': '2024-11-08 11:20:27', 'submission_id': '1gm8orn'}
{'comment': 'A reminder of who we just put back into the White House: https://m.youtube.com/watch?v=KMPA7Zk58ZQ', 'created': '2024-11-08 13:34:07', 'submission_id': '1gm8orn'}
{'comment': "What we've all learned from elections from the beginning of the country is that popular vote only matters state to state, overall popular vote means literally nothing, its just bragging rights. To win elections nationally it's state by state", 'created': '2024-11-08 14:31:09', 'submission_id': '1gm8orn'}
{'comment': "Here's a reasonable explanation: [https://www.youtube.com/watch?v=JmpgeCDBisg](https://www.youtube.com/watch?v=JmpgeCDBisg)", 'created': '2024-11-08 14:39:59', 'submission_id': '1gm8orn'}
{'comment': '[removed]', 'created': '2024-11-08 16:06:11', 'submission_id': '1gm8orn'}
{'comment': None, 'created': '2024-11-08 17:22:36', 'submission_id': '1gm8orn'}
{'comment': 'I can think of one reason…', 'created': '2024-11-08 18:36:57', 'submission_id': '1gm8orn'}
{'comment': "I've been ignoring the national numbers since they're not done yet. I have been looking at swing state numbers since they're mostly counted. Turnout is **UP** in every swing state. There are big changes in *who* turned out though.", 'created': '2024-11-09 03:36:05', 'submission_id': '1gm8orn'}
{'comment': 'I know this is a tired argument, but good god why can’t we get rid of the electoral college and come up with something at least somewhat representative of what the people want and not who has gerrymandered the system to win. Yes I know he won the popular vote this time. But I’m tired of a system that really only allows those living in swing states to essentially choose our leaders for us. 7 states should not speak for 50.', 'created': '2024-11-14 03:34:21', 'submission_id': '1gm8orn'}
{'comment': "How is this better? It means they showed up... and deliberately did not mark the box for Harris/Walz... That doesn't make me feel better", 'created': '2024-11-08 05:25:29', 'submission_id': '1gm8orn'}
{'comment': 'Maybe they really never did show up 4 years ago. Boy would that be egg on my face!!', 'created': '2024-11-08 12:50:20', 'submission_id': '1gm8orn'}
{'comment': 'This bar graph is literally way out of proportion with no numbers to help guide a proper comparison. \n\nThis graph is insinuating that Biden won nearly 130 million votes compared to Clinton and Obama’s ~65 million.\n\nIf she wants to go “wtf is this” about Bidens lead on this graph, why is she not saying the same thing about Trump because look at the jump in proportion too.', 'created': '2024-11-08 15:07:12', 'submission_id': '1gm8orn'}
{'comment': 'The same place they were for Hilary’s election which was sitting at home because everyone thought it was an assumed victory, then people showed up because they knew it was close, then people thought it wouldn’t be close again and the far right does well in bad times because they could play the blame game well and capitalize on peoples selfishness', 'created': '2024-11-08 13:06:11', 'submission_id': '1gm8orn'}
{'comment': 'He stole the election.\xa0 Read Greg palast He theorized that Trump would win . I knew shit was going down when I saw the fake bomb threats by Russia . So much shady shit happened this election\xa0', 'created': '2024-11-08 17:44:15', 'submission_id': '1gm8orn'}
{'comment': "Many people are checking and finding that their votes simply were not counted. Let's make this go viral and demand a re-vote or re-count.\n\n**Check your vote through vote.org:**\xa0\n\n(It seems that mostly mail-in ballots were affected)\xa0\n\n[vote.org/ballot-tracker-tools/](http://vote.org/ballot-tracker-tools/)\xa0\xa0\n\n**Contact these agencies**\xa0to report votes that were not properly counted, or that were changed in status after the fact:\n\n(Include any details or evidence you have about your claim. Be as specific as possible.)\n\n**The White House:**\n\n[https://www.whitehouse.gov/contact/](https://www.whitehouse.gov/contact/)\xa0\n\n**State Attorney General:**\xa0\n\nFind your AG:\xa0[https://www.naag.org/find-my-ag/](https://www.naag.org/find-my-ag/)\xa0\n\n(Go to your state AG site and find their contact page)\xa0\n\n**Federal Election Commission:**\xa0\n\n[enfcomplaint@fec.gov](mailto:enfcomplaint@fec.gov)\xa0\n\n**Your state’s voting site:**\xa0\n\n[ballotpedia.org/List\\_of\\_official\\_voter\\_registration\\_websites\\_by\\_state](http://ballotpedia.org/List_of_official_voter_registration_websites_by_state)\xa0\xa0\n\n(Find contact information on their sites, or find your Secretary of State)\xa0\n\n**Harris / Walz campaign:**\xa0\n\n[https://kamalaharris.com/contact-us/](https://kamalaharris.com/contact-us/)\xa0\n\n**ACLU:**\xa0\n\nLocal ACLU offices:\xa0[aclu.org/affiliates](http://aclu.org/affiliates)\xa0\n\n* Go to local page, and find contact\xa0\n* The ACLU is already suing Michigan for voter intimidation - be sure to report any tampering or illegal voting activity you witnessed\xa0\n\n**FBI tips:**\xa0\n\n[tips.fbi.gov](http://tips.fbi.gov/)\xa0\n\nSample letter:\xa0\n\nDear \\_\\_\\_\\_\\_,\xa0\n\n(Explain the circumstances surrounding your missing, deleted, or invalid vote.)\n\nImportant things to include:\n\n* Your voting method (in-person or mail-in)\xa0\n* \\*Your state of residence\xa0\n* Dates, times, and locations where you voted or where you dropped your ballot etc.\xa0\n* Screenshots or visual evidence of your claim\n\nI urge you to please investigate this claim as well as the thousands of other claims of people’s votes being deleted or marked invalid afterward. As there are several current reports of foreign election interference, and open investigations of voter intimidation, an investigation and recount for the election results are urgently necessary to protect the sanctity of our Democracy.\xa0\n\nI would sincerely appreciate a confirmation as receipt of this message.\xa0\n\nThank you for your help,\xa0\n\n\\_\\_\\_\\_\\_\\_\n\nDemocrats need volunteers to help cure ballots, which will help significantly.\n\nBallot Cure Phonebank:\n\nAZ [https://www.mobilize.us/jumpstartaz/event/717867/](https://www.mobilize.us/jumpstartaz/event/717867/)\n\nNZ [https://www.mobilize.us/2024nvvictory/event/724469/](https://www.mobilize.us/2024nvvictory/event/724469/)\n\nVA [https://www.mobilize.us/mobilize/event/725001/](https://www.mobilize.us/mobilize/event/725001/)\n\nOH [https://www.mobilize.us/mobilize/event/714404/](https://www.mobilize.us/mobilize/event/714404/)\n\nPhiladelphia [https://www.mobilize.us/mobilize/event/718650/](https://www.mobilize.us/mobilize/event/718650/)\n\nPA [https://www.mobilize.us/mobilize/event/676131/](https://www.mobilize.us/mobilize/event/676131/)", 'created': '2024-11-08 20:38:31', 'submission_id': '1gm8orn'}
{'comment': "People just want any reason to not admit that she was never popular. Not in 2020, not now. DNC dropped the ball trying to force her on us just because Biden picked her as VP to balance his ticket. We ran a minority woman against The Tangerine who already beat a white woman with a better resume and more popularity. There's a number of reasons she lost, but like you said, it's not because 20 million disappeared.", 'created': '2024-11-08 06:29:27', 'submission_id': '1gm8orn'}
{'comment': 'stop being resonable, I want someone to blame!', 'created': '2024-11-08 08:09:34', 'submission_id': '1gm8orn'}
{'comment': 'They abandoned her because she is a woman and they abandoned her because Latinos believe that a woman should be home in the kitchen.', 'created': '2024-11-08 18:30:24', 'submission_id': '1gm8orn'}
{'comment': "Not even a right ward shift. I have talked to many people who just didn't like her. Many people who i talked to even said if Michelle Obama ran they'd vote for her over Trump. \n\nI think we just had an uninspiring candidate. We need an Obama and the DNC needs to find that again.", 'created': '2024-11-08 16:55:09', 'submission_id': '1gm8orn'}
{'comment': 'Let’s not do this stuff those crazy right wingers do please.', 'created': '2024-11-08 08:50:44', 'submission_id': '1gm8orn'}
{'comment': "It's also absurd to suggest that all of the 2020 votes were by democrats. There were a lot of conservatives and nonpartisans voting trump out over covid. They might not have shown up this time, or they went back to trump while a lot of others didnt vote for trump or at all", 'created': '2024-11-08 13:50:01', 'submission_id': '1gm8orn'}
{'comment': 'Right it was 6,229,396 . \nSix million dems voted for Biden last time, but not Harris. Six Million.', 'created': '2024-11-08 18:06:20', 'submission_id': '1gm8orn'}
{'comment': 'If this is true, it’s the first time a Republican has won the popular vote since…the original Bush? 😒', 'created': '2024-11-08 20:10:16', 'submission_id': '1gm8orn'}
{'comment': 'Plus all the voter suppression from Republicans and misogynistic husbands forcing their wives to not vote.', 'created': '2024-11-09 00:09:34', 'submission_id': '1gm8orn'}
{'comment': 'dems showed up, they voted for the convict', 'created': '2024-11-08 06:58:51', 'submission_id': '1gm8orn'}
{'comment': 'While not as stark and dramatic, Democrats need to continue to ask why they lost. There is something that does not resonate with the people. The losing response is that they are stupid, uneducated, deplorable garbage that won\'t win votes. From what I can tell, the swing voters think Democrats are too progressive and too woke. So, they want lower egg prices, and get me in a home and less focus on Trans rights, and bathrooms. To be fair, I think the issue is whenever Democrats make progress, Reps set us a "Trans trap" that requires Dems to shift focus to defeat something that distracts and derails them.', 'created': '2024-11-08 15:29:31', 'submission_id': '1gm8orn'}
{'comment': 'Now those 20 million people will regret that decision for the rest of their lives!', 'created': '2024-11-08 17:08:45', 'submission_id': '1gm8orn'}
{'comment': "Why do we allow conservatives to vote or run for office in the first place? If we disallow them from having a say then we won't be in the mess of a sh1tsh0w.", 'created': '2024-11-08 17:24:51', 'submission_id': '1gm8orn'}
{'comment': 'Another thing to keep in mind, and slightly off-topic, is that as of almost noon Eastern on November 8, Kamala Harris only lost the election by approximately 280,000 votes.\xa0', 'created': '2024-11-08 17:38:29', 'submission_id': '1gm8orn'}
{'comment': 'People have short memories. \n\n4 years is enough time for some people to forget just how things were under trump', 'created': '2024-11-08 18:37:50', 'submission_id': '1gm8orn'}
{'comment': 'Well...racism is the reason I keep falling back to.', 'created': '2024-11-08 18:52:38', 'submission_id': '1gm8orn'}
{'comment': 'It won’t get better if Democrat Leaders don’t get their shit together and figure out how to use introspection and respond effectively. We have John Fetterman running around like a lunatic calling Green Party voters dipshits on Twitter…🙄', 'created': '2024-11-08 06:03:49', 'submission_id': '1gm8orn'}
{'comment': 'Nice rack of lamb on Ashley, though.', 'created': '2024-11-08 13:16:27', 'submission_id': '1gm8orn'}
{'comment': 'Well, where did they come from?', 'created': '2024-11-08 07:34:22', 'submission_id': '1gm8orn'}
{'comment': 'CA is only 58% right now! Also as long as the ballots are received by November 12, they are counted so it will take time to know the official count. I think she could potentially win the popular vote because of the mail in deadline.', 'created': '2024-11-08 05:32:23', 'submission_id': '1gm8orn'}
{'comment': 'I hope it’s found that Harris wins the popular vote so he can whine about it for the next four years.', 'created': '2024-11-08 05:39:09', 'submission_id': '1gm8orn'}
{'comment': 'I would advise caution in how stridently we talk about Harris getting so many fewer votes than Biden. It doesn\'t take a genius to look at that chart and see which year was a dramatic outlier. The Magats will giddily point to Biden getting 20-25 million more votes than any Democrat this century as more "proof" that 2020 was rigged.', 'created': '2024-11-08 06:13:58', 'submission_id': '1gm8orn'}
{'comment': 'Absolutely. I feel useless voting from a historically red state they holds a ton of electoral colleges. All the major cities in my state vote blue. It’s the rest of the sparsely populated towns or smaller towns that’re messing up the metrics for the rest of us.', 'created': '2024-11-08 12:03:36', 'submission_id': '1gm8orn'}
{'comment': "I think that's what we should be pushing for. People in swing states were probably super annoyed at the constant calls, flyers, etc. That should motivate them to not want to be swing states anymore.", 'created': '2024-11-08 15:04:23', 'submission_id': '1gm8orn'}
{'comment': 'Is the votes aren’t all counted why did she cede the election?\n\nHere’s another question: why wasn’t the Trump trial stuff already done with?\n\nHe should have been charged with treason, it would have been an easy win, as he clearly was trying to overthrow the government!\n\nWhy did the AG and the DoJ drag their feet on the trials?', 'created': '2024-11-08 15:07:46', 'submission_id': '1gm8orn'}
{'comment': 'I am new to election stuff so im sorry if this is stupid, but if Harris turned out to have more votes than Trump, would she be able to take office or is it set in stone? im trying to hope really hard right now', 'created': '2024-11-08 16:02:21', 'submission_id': '1gm8orn'}
{'comment': 'She conceded anyways so it’s over for us', 'created': '2024-11-08 19:08:31', 'submission_id': '1gm8orn'}
{'comment': "Unfortunately I don't think we'll ever be able to get rid of the electoral college since it's defined in the US constitution.", 'created': '2024-11-08 19:21:52', 'submission_id': '1gm8orn'}
{'comment': 'They won’t believe it if it does happen because they somehow forget every 4 years that it takes time to count, but I wouldn’t mind getting a little sad laugh out of it', 'created': '2024-11-08 14:06:34', 'submission_id': '1gm8orn'}
{'comment': "> Would it have been enough to sway the electoral college in her favor\n\nWhy would it not? It's not like Trump is some kind of unstoppable dreadnought. Biden did it in 20. As usual it's going to come down to a few hundred thousand votes in specific states.", 'created': '2024-11-08 15:26:41', 'submission_id': '1gm8orn'}
{'comment': 'Gotta love the urban tradition of waiting in line for 7-10 hours just to vote. I can’t imagine how many voters turn around and just go home.', 'created': '2024-11-08 12:34:23', 'submission_id': '1gm8orn'}
{'comment': 'Yes, it makes perfect sense to me that people were more engaged during a crisis. Covid affected everyone. \xa0Inflation affects some people disproportionately. Those who were motivated by the economy or immigration or other issues voted, but it was easy for a lot of people to become disengaged because things weren’t as dire as they were in 2020.\xa0\n\nPeople may feel more comfortable with Trump than they did during the pandemic because the rationale may be that the pandemic is over but immigration and the economy are pressing issues *now*.\xa0', 'created': '2024-11-08 05:08:27', 'submission_id': '1gm8orn'}
{'comment': 'Turns out vote by mail is extremely beneficial to turnout. We’ve known this in Colorado for years.', 'created': '2024-11-08 14:49:02', 'submission_id': '1gm8orn'}
{'comment': 'If all the votes aren’t in why did she cede the election?', 'created': '2024-11-08 15:09:27', 'submission_id': '1gm8orn'}
{'comment': 'My brother voted Biden in 2020 & didn’t vote in this election. At first because ‘they’re both so old’ but after the Harris switch because ‘Dems have been in power for a long time and haven’t done anything’\nSide-eye', 'created': '2024-11-09 02:20:19', 'submission_id': '1gm8orn'}
{'comment': "But people did show up. We don't know what the final count will be, but so far every swing state that isn't still being counted is up by a decent margin. PA, MI, WI, NC, GA all have more turnout than 2020, and 2020 was already a record breaking year.", 'created': '2024-11-09 03:39:17', 'submission_id': '1gm8orn'}
{'comment': "God I hope so that would give me some solace. But seems they've already called the popular vote for dump", 'created': '2024-11-08 05:09:03', 'submission_id': '1gm8orn'}
{'comment': 'I know the electoral college is what\'s "important" but if Harris wins the popular vote do you think that gives us ground for court cases/recounts.\n\nFor fucks sake Trump got a recount years after the election', 'created': '2024-11-08 06:35:39', 'submission_id': '1gm8orn'}
{'comment': 'But back in 2020, they DID think COVID was his fault and voted accordingly. These are not engaged people.', 'created': '2024-11-08 05:02:46', 'submission_id': '1gm8orn'}
{'comment': "The problem is we have a vastly uneducated uninformed incurious easily manipulated electorate who base their decisions on misleading 30 second TV ads and Facebook memes. Most don't do deep research on each candidate and there is little critical thinking involved. Until we strengthen public education in this country, rein in social media companies and AI, and require truth in advertising, I don't see how Dems will ever possibly win again.", 'created': '2024-11-08 13:24:09', 'submission_id': '1gm8orn'}
{'comment': 'They won’t. Trump will benefit from a good economy created by biden and they will remain complacent. Republicans are here to stay and the democratic party is dead in the water at this point', 'created': '2024-11-08 07:23:00', 'submission_id': '1gm8orn'}
{'comment': 'I think that if Biden had announced he wouldn’t be running for a second term before the primaries this would be a different race. Say Kamala had won that primary thats at least 9 months of increased name recognition. The alternative would be a candidate winning who electrified a majority of the Democratic populous. Both options are better than Biden waiting until he was forced to step aside 3 months before the election. \n\nIdk if he mistook his win in 2020 as popular support as opposed to a reaction to lack of support for trumps extremism, Covid, or recession, but U really do blame his ego for this loss. If the face of establishment politics Pelosi is forcing you out, you know it’s dire', 'created': '2024-11-08 09:58:23', 'submission_id': '1gm8orn'}
{'comment': "This happened because voters don't like it when their concerns are mocked (whether they're rational or not)", 'created': '2024-11-08 10:27:58', 'submission_id': '1gm8orn'}
{'comment': 'The problem with that theory is some of of the biggest shifts happened in blue districts', 'created': '2024-11-08 04:55:41', 'submission_id': '1gm8orn'}
{'comment': "The fact that that's even possible shows the electoral system was never really valid in the first place. If we can't be sure of one election under such auspices then we can't be sure of any.\n\nWe so desperately need a better system of government.", 'created': '2024-11-08 04:39:34', 'submission_id': '1gm8orn'}
{'comment': 'Personally i can attest that when I put my ballot for Harris in the machine, the poll worker took my ballot, opened the envelope, and fed it into the machine. I wasn’t allowed to. \n\nIt very much made me uncomfortable. Not saying that he had ill-intentions, just saying that voting should be private and that violated my privacy.', 'created': '2024-11-08 05:08:00', 'submission_id': '1gm8orn'}
{'comment': 'Sounds like an unsubstantiated claim of widespread voter fraud. Wanna storm the capitol about it?', 'created': '2024-11-08 12:44:50', 'submission_id': '1gm8orn'}
{'comment': "As a long time dem poll worker in a Maga district I can tell you this is not possible ... at least it's not in Ohio, not that it would be needed here.", 'created': '2024-11-08 16:40:06', 'submission_id': '1gm8orn'}
{'comment': 'Please stop. This is no better than the stop the steal nonsense', 'created': '2024-11-08 10:36:20', 'submission_id': '1gm8orn'}
{'comment': 'https://apnews.com/article/fact-check-20-million-missing-votes-election-2024-5c92a9b2530232fc8ac80968a1362518', 'created': '2024-11-08 05:27:17', 'submission_id': '1gm8orn'}
{'comment': '[removed]', 'created': '2024-11-08 05:43:45', 'submission_id': '1gm8orn'}
{'comment': 'Poll workers are always bi-partisan to ensure this doesn’t happen. And even if it was, I really doubt they could pull off fraud substantial enough to change the outcome of this. \n\nPlease don’t stoop to Republican levels and claim fraud for every election result you disagree with. People are just stupid and elected a shitty candidate, but that’s democracy 🤷\u200d♂️', 'created': '2024-11-08 04:27:32', 'submission_id': '1gm8orn'}
{'comment': "Look at the final counts in a couple weeks. There won't be 15 million missing votes.", 'created': '2024-11-08 15:27:24', 'submission_id': '1gm8orn'}
{'comment': 'Exactly!', 'created': '2024-11-08 17:09:34', 'submission_id': '1gm8orn'}
{'comment': 'They should\'ve been more engaged this time around. It\'s difficult to believe they somehow "forgot" the Trumpolini experience from 2017-2021. Obama made it clear at the DNC, saying we\'ve seen this movie before, & its sequel is usually worse. And Trumpolini advertised the sequel pretty loudly before the election. Democrats are smarter than MAGAts. I won\'t accept complacency as an excuse.', 'created': '2024-11-08 06:17:12', 'submission_id': '1gm8orn'}
{'comment': 'I thought she spoke fine on the issue… I just think in the end, voters either weren’t paying attention or just didn’t care what she had to say—especially those that aren’t actively engaged in politics to begin with. When you’re in crisis or struggling, you don’t think logically, you think with emotion. They wanted “change” and they’re going to get it but not in the way that they had hoped.', 'created': '2024-11-08 05:20:57', 'submission_id': '1gm8orn'}
{'comment': "same here I really don't believe in the conspiracy stuff. unfortunately, repubs won. in a landslide too. i think it's hard to come to terms with, but dems need to realize that for some reason, social rights is not really most voters' priorities. i don't like it and don't understand it myself, since social issues are important to me, but yeah", 'created': '2024-11-08 04:47:23', 'submission_id': '1gm8orn'}
{'comment': 'Dems are the only reason this economy is even somewhat stable. \n\nBlame them all you want for the good economy.', 'created': '2024-11-08 05:23:22', 'submission_id': '1gm8orn'}
{'comment': '2020 was rigged but 2024 wasn’t? 🙄😖', 'created': '2024-11-08 06:52:04', 'submission_id': '1gm8orn'}
{'comment': 'Early in-person voting!', 'created': '2024-11-08 11:33:27', 'submission_id': '1gm8orn'}
{'comment': 'Which was entirely expected after 2020 made voting a lot easier for many.', 'created': '2024-11-09 00:16:03', 'submission_id': '1gm8orn'}
{'comment': 'The only “rigging” was through obfuscation. Big media (Musky-Xtwit,, Fox, right-wing Christian groups) all spreading fear and creating panic about tasty cats & dogs, … spreading bizarre malignant fantasies. People couldn’t find the truth and refused to believe Democrats’ warnings.', 'created': '2024-11-08 07:39:23', 'submission_id': '1gm8orn'}
{'comment': 'Did you intend to respond to a different comment?', 'created': '2024-11-08 13:49:17', 'submission_id': '1gm8orn'}
{'comment': 'The DNC has policies helping working class people but they take time to implement and the media didn’t communicate any of that. We need to massively ramp up our propaganda game.', 'created': '2024-11-08 11:31:30', 'submission_id': '1gm8orn'}
{'comment': 'Get real. People clearly don’t want the Bernie style policies (not only that, but there is no reality in which much of what he proposes could ever get accomplished). Biden did more for working class people economically than any president in a long time. And you know what? They rewarded that by spitting in his party’s face this election. The answer to populism is not more populism. We need to reconnect with working class voters and meet them where they are on social issues.', 'created': '2024-11-08 10:35:12', 'submission_id': '1gm8orn'}
{'comment': 'You think the midterms will happen?', 'created': '2024-11-08 07:48:27', 'submission_id': '1gm8orn'}
{'comment': "... we're going to lose the house", 'created': '2024-11-08 18:26:27', 'submission_id': '1gm8orn'}
{'comment': 'This is mostly right, but Hillary was definitely not more popular than Harris', 'created': '2024-11-08 10:45:51', 'submission_id': '1gm8orn'}
{'comment': 'So, Democrats voted for a felonious racist because…?', 'created': '2024-11-08 07:27:17', 'submission_id': '1gm8orn'}
{'comment': 'It’s the right that starts all that chatter about invaded bathrooms, trans athletes in sports and doctors performing post birth abortions. Then Dems take the bait every time and spend disproportionate time talking about transgender rights and abortion, instead of talking about why eggs cost a nickel more, and how much more they would have cost under a Trump presidency. \nDems can’t help anybody if they don’t get elected.', 'created': '2024-11-08 16:39:34', 'submission_id': '1gm8orn'}
{'comment': 'Well, aren’t they dipshits?', 'created': '2024-11-08 07:33:51', 'submission_id': '1gm8orn'}
{'comment': 'Yeah Fetterman is not helping things with that stuff. Neither is Bernie immediately going knives out on the party', 'created': '2024-11-08 10:46:59', 'submission_id': '1gm8orn'}
{'comment': 'Pig.', 'created': '2024-11-08 15:36:46', 'submission_id': '1gm8orn'}
{'comment': 'Don’t they have a couple House seats in play there? We need every one we can get.', 'created': '2024-11-08 05:56:59', 'submission_id': '1gm8orn'}
{'comment': 'It would weaken Trump\'s argument that he is the "will of the people"', 'created': '2024-11-08 08:17:33', 'submission_id': '1gm8orn'}
{'comment': 'It would definitely make me a bit happier.', 'created': '2024-11-08 10:14:57', 'submission_id': '1gm8orn'}
{'comment': 'They are still going to pretend this election gives them a "mandate."', 'created': '2024-11-08 11:54:28', 'submission_id': '1gm8orn'}
{'comment': "There's no silver lining here but at least they can't complain about anything for the next four years. All their people are in power. We have nothing to do with what's about to happen.", 'created': '2024-11-08 14:41:45', 'submission_id': '1gm8orn'}
{'comment': 'Agreed, but fairly easy to argue that during Covid, we all had a lot more freedom/time to vote. Dems and Republicans all turned out. Why we still don’t have a national holiday where everyone gets the day off work to vote is beyond me.', 'created': '2024-11-08 07:13:42', 'submission_id': '1gm8orn'}
{'comment': "Yeah but that's basically saying the Dems cheated for Biden but didn't bother cheating for Kamala, which doesn't make sense", 'created': '2024-11-08 13:34:20', 'submission_id': '1gm8orn'}
{'comment': 'Are you a fellow Texan?! Because that’s exactly how I feel and why I want to move to a swing state. Honestly, if all the democrats moved out of TX to ideally the same swing state, we could not only move that state permanently to blue, but we could even get it more electoral votes and remove some from TX!', 'created': '2024-11-08 14:54:22', 'submission_id': '1gm8orn'}
{'comment': 'Popular vote would right a wrong that started two hundred years ago during slavery. It would cause both parties to move to the center and ultimately find candidates that are better suited to national office and not just which latest bomb throwing politician that can appeal to a handful of key states.', 'created': '2024-11-08 15:18:11', 'submission_id': '1gm8orn'}
{'comment': "Because of the Electoral College. We don't need to know 100% of the states that Harris won and Trump won by landslides. We just need a model to project that the margins in the battleground states are larger than the projected ballots still out there uncounted. For instance AP estimates that PA has 135,968 votes still uncounted but the margin is 136,619 so even 100% of the remaining vote wouldn't close the gap for Harris.", 'created': '2024-11-08 15:14:11', 'submission_id': '1gm8orn'}
{'comment': "One approach is change at the state level how electors are appointed. This is why Nebraska and Maine aren't completely winner take all. The problem with this is until the red states did it the big blue states like NY or CA or NJ wouldn't have an incentive to do it so it's likely not happening.", 'created': '2024-11-08 19:29:14', 'submission_id': '1gm8orn'}
{'comment': 'Maybe his supporters won’t believe it but but I’m sure he will lol. He’ll just lie and say it’s fraud. 😩', 'created': '2024-11-08 14:08:32', 'submission_id': '1gm8orn'}
{'comment': 'Except this year. Somehow it didn’t take time to count ofc.\n\nI saw someone saying there were no 2 am “ballot dumps” this election. Like what?? They are literally still counting.', 'created': '2024-11-08 16:45:00', 'submission_id': '1gm8orn'}
{'comment': 'Yeah, and I know third party probably didn’t affect this outcome too much if at all… but I was looking at how many people voted for Jill Stein and other third party candidates in the battleground states and I can’t help but think that with a portion of those votes combined with the people that stayed home, that could’ve been enough to go in her favor. Some of these swing states were close—under 100K or just over it.', 'created': '2024-11-08 15:33:18', 'submission_id': '1gm8orn'}
{'comment': 'Yeah, that probably accounts for some of the lower turnout. Most people just cannot stand in a line that long. Election Day needs to be a national holiday, but republicans probably won’t allow it to happen, because higher voter turnout is bad for them.', 'created': '2024-11-08 13:59:57', 'submission_id': '1gm8orn'}
{'comment': "One of my customers who lives in another county said he went at 5:30(before polls opened) and there was already a two hour wait. He left because he had to go to work, and barely made it back before the polls closed, and still waited 2 hours to vote. He complained a lot, but he's a MAGA, so voted for the people that made it so vote times would be long.", 'created': '2024-11-08 18:40:07', 'submission_id': '1gm8orn'}
{'comment': "Because it's possible to determine a winner through through mathmatical extrapolation. If there's no way to make up a defecit in the numbers with the remaining votes, then it is what it is. It's how networks call election the night of. Sometimes, for some states, they don't even wait or results, because it's a given that state goes to a certain candidate.", 'created': '2024-11-08 18:24:39', 'submission_id': '1gm8orn'}
{'comment': 'No, we need no excuses. \n\nWe learned nothing from Al Gore and Hillary Clinton except to hate on the Electoral College. \n\nJohn Kerry losing it all taught us lessons that paved the way for Obama.', 'created': '2024-11-08 05:37:32', 'submission_id': '1gm8orn'}
{'comment': 'Hopefully “dump” wasn’t a typo', 'created': '2024-11-08 05:21:18', 'submission_id': '1gm8orn'}
{'comment': "Winning the popular vote and losing the race is not solace, but condemning. It means we're not balanced as a country and we're polarized geographically. Ignoring and belittling the other side is what got us here. We can keep living in our bubble if we want to but don't expect anything but the same from the uncomfortable parts of society.", 'created': '2024-11-08 07:25:56', 'submission_id': '1gm8orn'}
{'comment': "maybe pick up a few more house seats. No it does not give grounds for legal battles unless there was actual coercion, bribery, or fraud taking place. Just because Trump plays that game doesn't mean the rest of us should.", 'created': '2024-11-08 13:02:46', 'submission_id': '1gm8orn'}
{'comment': "No. We lost. We accept the democratic process doesn't always go our way. We do not try to subvert the will of the people outside the bounds of the Constitution. Unfortunately, we failed to reach the right people in the right places. We learn from that. We don't try to do what the other side spent the last eight years doing because we didn't get our way like a bunch of petulant children.", 'created': '2024-11-08 12:19:43', 'submission_id': '1gm8orn'}
{'comment': 'Tear it all down republicans and greedy people will do something to rock the boat. Trumps tax cuts were going to hurt the economy before Covid. His isolationism will hurt the economy too. He’s incapable of not fucking it up', 'created': '2024-11-08 14:04:10', 'submission_id': '1gm8orn'}
{'comment': "The policies trump is proposing will be terrible for the economy. There will almost certainly be a recession or a big increase in inflation if he does even 10% of what he's been talking about. You're being way too pessimistic about our chances in 2026 and 2028.", 'created': '2024-11-08 15:24:04', 'submission_id': '1gm8orn'}
{'comment': 'Democratic leadership knew Biden was incompetent at campaigning. \n\nBiden knew Democratic leadership was incompetent at campaigning. \n\nThey were both right.', 'created': '2024-11-08 13:49:27', 'submission_id': '1gm8orn'}
{'comment': "We needed that primary, because I'm convinced Harris would've lost it. We needed someone who wasnt cameraphobic.", 'created': '2024-11-08 11:53:22', 'submission_id': '1gm8orn'}
{'comment': 'I think it was not just 1 factor, but this for sure was one of them. Imagine living paycheck to paycheck, everything is increasing in price, you complain.... What does the government do? They show you a graph and say "Nuh uh, according tk this, things are better". Maybe it\'s true and people always complain, but the other side is 100% validating your feelings. Who do you vote for?', 'created': '2024-11-08 11:59:03', 'submission_id': '1gm8orn'}
{'comment': 'Who in democratic leadership was mocking their concerns?', 'created': '2024-11-08 15:25:42', 'submission_id': '1gm8orn'}
{'comment': 'That and it’s totally made up because some people are in denial about the state of the party and how most Americans actually think and feel about certain issues.', 'created': '2024-11-08 05:45:21', 'submission_id': '1gm8orn'}
{'comment': 'Blue districts? Or blue states with red districts?', 'created': '2024-11-08 05:55:23', 'submission_id': '1gm8orn'}
{'comment': "It's not valid for the simple reason it gives minority states more voting power than people in heavily populated states. It's completely rigged in the GOP's favor, always has been.", 'created': '2024-11-08 05:59:57', 'submission_id': '1gm8orn'}
{'comment': "What state was that in?\n\nIn mine, they let us feed it into a ballot machine ourselves. A few people were yakking it up with a poll worker right at the machine, and easily saw my ballot, but I didn't care. I waited for the screen on the machine to tell me it successfully scanned.", 'created': '2024-11-08 05:58:57', 'submission_id': '1gm8orn'}
{'comment': 'This happened to me as well. Sample ballot instructions said I would transport my ballot to the scanner in a "privacy envelope" then scan it myself, but the guy was just doing everything on his own.', 'created': '2024-11-08 05:40:30', 'submission_id': '1gm8orn'}
{'comment': "That's good to hear. I still worry about whether or not that holds true throughout the country though. My state, NC, seemed like a safe voting operation because of the scanning machines, which make it extremely difficult to manipulate votes. But not impossible for folks like the guys who compromised the voting machine in CO.", 'created': '2024-11-08 17:07:13', 'submission_id': '1gm8orn'}
{'comment': "You don't think it's reasonable to suspect that the very people who \\*invented\\* voter and ballot fraud, who praise and worship cheaters and liars, who are obsessed with Trump's deflection tactics about ballot fraud and might want some payback, the same people who were eager to try to copy the firmware code out of a ballot machine (the one we know about).... that THOSE people might have done mischief while in charge of polling places?\n\nRead Jack Smith's Jan6 indictment. They had fuckers all over the US tampering with electoral votes and voting machines.", 'created': '2024-11-08 06:03:22', 'submission_id': '1gm8orn'}
{'comment': 'It doesn’t matter if you don’t want to accept it. Facts are facts. Just look at the data: \n\n2000 Gore 51 million votes\n2004 Kerry 59 million votes \n2008 Obama 69.5 m\n2012 Obama 65.9 m\n2016 HRC 65.8 m\n2020 Biden 81.3 m\n2024 Harris 69 m (so far)\n\nHarris received more votes than all democratic candidates ever, except Biden. Vote totals have never been this high. Everyone was at home during the pandemic and simply paid more attention. We may not like complacency but it can’t be ignored as a factor. Some people just didn’t care enough to bother.', 'created': '2024-11-08 06:41:28', 'submission_id': '1gm8orn'}
{'comment': 'Humans are emotional not rational, and many aren’t actively seeking reliable news. I hope the democrats are planning to work social media pretty hard.', 'created': '2024-11-08 11:28:35', 'submission_id': '1gm8orn'}
{'comment': 'She got more votes in Georgia than Biden did in 2020. Trump was just able to juice his turnout in the rural counties and get an extra 200k voters.', 'created': '2024-11-08 05:05:22', 'submission_id': '1gm8orn'}
{'comment': "There are different levels of priority on voting issues for most people. Cost of things is the top while concerns about LGBT rights are considered lower priority to most who aren't LGBT themselves. I think abortion is similar, even for women, especially if they live in a comfortably blue state, are old enough that they wouldn't get pregnant or just believe they are very responsible and will never have an unwanted pregnancy.", 'created': '2024-11-08 05:17:49', 'submission_id': '1gm8orn'}
{'comment': "It's not that difficult to figure out. Consider Maslow's hierarchy of needs: https://www.simplypsychology.org/maslow.html\n\nVoters who's basic physiological needs aren't being met (bread is too expensive, struggling to feed family) aren't going to have the bandwidth to care about higher level needs, i.e., social issues.", 'created': '2024-11-08 16:51:36', 'submission_id': '1gm8orn'}
{'comment': '60% of Americans are living check to check right now. For those of us lucky enough to have investments in the Market or Real estate the economy is good. For everyone else it’s pretty bad.', 'created': '2024-11-08 05:49:19', 'submission_id': '1gm8orn'}
{'comment': 'see this is where you are proving my point. dems, arguably most, don\'t listen. it\'s "i\'m not the bad guy. they are." or at the very least, you\'re not comprehending what is being said.\n\ni said that dems are to blame for their *campaign strategy*. i\'m not blaming them for the economy nor the high prices. i am blaming their **ineffective campaign message** on addressing the high prices and how things will get better.\n\ntowards the end of her campaign, harris really focused on abortion and democracy contrary to what the polls showed in that people were more concerned with the economy and border. and the polls consistently showed the economy and border ahead of anything else all throughout the campaign.\n\nand the voters have showed that they voted on change of leadership away from the incumbent on the matters of the economy and border.\n\nbut like i said, it\'s still early. a lot of you are still reeling and i get that.', 'created': '2024-11-08 05:40:47', 'submission_id': '1gm8orn'}
{'comment': 'Of course not. The right won 2024 so nothing to see here.', 'created': '2024-11-08 07:00:19', 'submission_id': '1gm8orn'}
{'comment': 'Love it.', 'created': '2024-11-08 15:02:54', 'submission_id': '1gm8orn'}
{'comment': 'All the "ground game" Biden did was ensure every voter had a mail in ballot.....', 'created': '2024-11-09 20:40:47', 'submission_id': '1gm8orn'}
{'comment': 'I’m not responding to OP, but to all the democrats I see spreading this garbage. OP does a good job addressing it.', 'created': '2024-11-08 14:10:51', 'submission_id': '1gm8orn'}
{'comment': 'Working class voters can\'t afford homes and live paycheck to paycheck. They/we/I went through a recession and have watched corporate America get bailed out over and over again by the system as it stands. We got occupy wall street and the tea party. People only got more desperate when covid and inflation went wild. That\'s where people are at. \nPeople want a living wage, affordable housing/food, access to healthcare and access to education....you know, things that invest in their real well being. The DNC abandoned the working class years ago. That\'s reality. By all means keep believing in fantasy land and wondering where it all went wrong...in reality-land, the fascists promised the world on a bed of lies and here we are where a slew of dip shit voters ushered them in across a staggering cross section of population demographics under "economic concerns."', 'created': '2024-11-08 10:51:24', 'submission_id': '1gm8orn'}
{'comment': 'Clinton was more popular than Harris in virtually every single major county that she won. Harris lost Miami-Dade to Trump among many others where Clinton strongly won them compared to Trump.', 'created': '2024-11-08 11:12:27', 'submission_id': '1gm8orn'}
{'comment': 'How can we get Dems to understand and not fall for this trap/diversion over and over again?', 'created': '2024-11-08 16:53:42', 'submission_id': '1gm8orn'}
{'comment': 'No they are not. They are participating in a democratic process and you don’t have to agree with their decision, but we need to stop blaming people for exercising their democratic right to vote when we lose elections.', 'created': '2024-11-08 08:20:19', 'submission_id': '1gm8orn'}
{'comment': "Yeah. I'm pissed my stupid district brought back Young Kim. I hate her so fucking much but Joe Kerr didn't really do much campaigning or maybe the DCCC* money was concentrated in closer races. Idk we were close to electing Gil Cisneros (who won closer to LA this time anyway) back in 2016. I hate parts of OC for being so stupidly red. Let's hope Derek Tran can beat Michelle Steele. She's leading by \\~2% with 70% of the vote in. I hate her and wish I could have helped to vote her out too.\n\n*edit thank you for that!", 'created': '2024-11-08 06:06:57', 'submission_id': '1gm8orn'}
{'comment': "He'll claim it regardless of if it's true. And people will believe him.", 'created': '2024-11-08 13:20:30', 'submission_id': '1gm8orn'}
{'comment': 'Funny how when Obama had a mandate the GOP was like "no"', 'created': '2024-11-08 16:48:33', 'submission_id': '1gm8orn'}
{'comment': '“Will of the people” is such a dumb term anyway. The “people” are all Americans and we will never all uniformly agree. What we mean when we say “Will of the people” is the “will of MY people” and in reality he doesn’t even know that. Trump gets, what… 73ish million votes? That’s still only just barely over one fifth of the population of the US.', 'created': '2024-11-08 17:59:26', 'submission_id': '1gm8orn'}
{'comment': 'I would feel a lot better about the American public. Also, early in-person voting has advantages.', 'created': '2024-11-08 11:21:05', 'submission_id': '1gm8orn'}
{'comment': 'The thought before this election was that if every eligible voter turned out to vote, the GOP would never again be in power.', 'created': '2024-11-08 07:32:46', 'submission_id': '1gm8orn'}
{'comment': 'None of it makes sense. The argument is complete bullshit. It’s pretty simple. More people voted for Trump this time (likely), and less people voted for Kamala for several reasons. \n\nAlso, it’s so one-sided. Like we could easily take their line of thinking and apply it to our side. “Kamala lost millions of votes that Biden had, the election must be rigged!” See, it’s that easy. But we don’t do that, because we’re not sore-loser assholes, and understand how damaging it is (because we’ve spent the last 4 fucking years hearing them bitch and moan).', 'created': '2024-11-08 14:27:17', 'submission_id': '1gm8orn'}
{'comment': 'I most definitely am. Any suggestions on a swing state to pick?', 'created': '2024-11-09 01:46:10', 'submission_id': '1gm8orn'}
{'comment': "There's a morale thing to ceding this way though, psychology is worth thinking about.\n\n \nAlso estimated isn't the same as known. What if it ended up being 136,620?", 'created': '2024-11-08 15:45:38', 'submission_id': '1gm8orn'}
{'comment': 'Combine that system with an expansion in the number of Representatives in the House and suddenly you have a more (albeit still very flawed) electoral system.', 'created': '2024-11-09 02:53:04', 'submission_id': '1gm8orn'}
{'comment': "Yeah I don't think they called 2020 until the Saturday after if I'm remembering right. It's just the way the votes fell that made it able to call more quickly this time. Also that democrats respect the process.", 'created': '2024-11-08 16:59:04', 'submission_id': '1gm8orn'}
{'comment': "It's always been this way unfortunately. I think 3rd parties have a legitimate purpose in our political system but I would never think of doing it if I lived in a swing state without the protection of a ranked choice voting regime. The stakes are way too high, and although we've always had people making the argument that the candidates are the same, I seriously question the sanity of anyone trying to make that argument in the face of Tuesday's choice. Trump is a known quantity, and it's almost all bad.", 'created': '2024-11-08 15:48:58', 'submission_id': '1gm8orn'}
{'comment': "The voter turnout leaning blue myth needs to go away because it's not even true anymore. Voter turnout in the swing states are equal or actually exceeds the 2020 rates and still shifted red.", 'created': '2024-11-08 17:40:46', 'submission_id': '1gm8orn'}
{'comment': "In Gore's case, we also hated on SCOTUS.", 'created': '2024-11-08 06:27:09', 'submission_id': '1gm8orn'}
{'comment': 'What lessons was that? I was in high school at the time and not plugged into politics.', 'created': '2024-11-08 06:33:56', 'submission_id': '1gm8orn'}
{'comment': 'I think it means the electoral college is rigged to give some votes more power than others. Hamilton had it right.', 'created': '2024-11-08 13:09:14', 'submission_id': '1gm8orn'}
{'comment': 'It would have been a different disaster with Gavin Newsom.', 'created': '2024-11-08 13:47:48', 'submission_id': '1gm8orn'}
{'comment': "I would imagine any big manipulation of physical ballots would be noticed, either way. \n\nTrump himself has been squealing about election cheating year after year, so there are many people looking for it and there hasn't been anything on large scale. Individual ballot boxes sabotaged or someone voting twice, yes. But that's about it.", 'created': '2024-11-08 13:35:37', 'submission_id': '1gm8orn'}
{'comment': 'Districts. The Bronx and queens shifted almost 22% to the right', 'created': '2024-11-08 06:07:34', 'submission_id': '1gm8orn'}
{'comment': 'Not to mention all the gerrymandering by gop. I don’t understand why the democrats continue to let the gop get away with shit.', 'created': '2024-11-08 06:44:06', 'submission_id': '1gm8orn'}
{'comment': 'No, it\'s "always been rigged" in the *minorities* favor and, indeed, always has been. That wasn\'t a "bug" in regard to the Founders, but a feature. Exactly like how the Senate gives two equal votes to every State while the House is divided according to population. The entire point of the House was "to be closer to the people" and the entire point of the Senate was as a backstop.', 'created': '2024-11-08 06:50:20', 'submission_id': '1gm8orn'}
{'comment': 'No it’s definitely not reasonable. It’s a denial response and totally unhinged.', 'created': '2024-11-08 06:43:41', 'submission_id': '1gm8orn'}
{'comment': 'This is seriously as deranged as MAGA stuff. There is not a conspiracy. If they were going to rig the election, why didn’t they have all the GOP senators lose as well? Why is the house so close?', 'created': '2024-11-08 10:41:00', 'submission_id': '1gm8orn'}
{'comment': "It still doesn't justify Trumpolini getting about the same number of votes as 2020 & Harris getting close to 15 million less. I don't perceive Democrat voter apathy here (not to that level). They knew what was at stake. Something else is involved.", 'created': '2024-11-08 18:36:50', 'submission_id': '1gm8orn'}
{'comment': 'Yup, exactly.', 'created': '2024-11-08 12:58:02', 'submission_id': '1gm8orn'}
{'comment': '>> just believe that they are very responsible and will never have an unwanted pregnancy.\n\nIt’s such a naive line of thinking because abortions can be medically necessary even in *wanted* pregnancies. The girl that died from miscarriage complications due to the abortion ban in Texas had just thrown a baby shower the previous day.', 'created': '2024-11-08 07:14:38', 'submission_id': '1gm8orn'}
{'comment': 'Not to mention abortion laws passed in several states, so that concern was addressed.', 'created': '2024-11-08 16:53:22', 'submission_id': '1gm8orn'}
{'comment': "https://youtu.be/Rw9DWrN8oRI?si=KkIlds1gYWrpXUyT\n\nOh shit that's wild you wrote ALL of that and it only took two seconds for me to prove that even on the last day she was talking very specifically about the economy.", 'created': '2024-11-08 05:50:23', 'submission_id': '1gm8orn'}
{'comment': 'Agreed', 'created': '2024-11-08 15:31:59', 'submission_id': '1gm8orn'}
{'comment': 'Keep saying they abandoned the working class. This is patently false. The party platform is still focused on helping the poorest people in our society. Listen to the way you just talked about the “dipshit” voters—that’s the problem.', 'created': '2024-11-08 11:00:13', 'submission_id': '1gm8orn'}
{'comment': 'I’m just talking favorability numbers. Obviously HRC performed better. This environment was just punishing for the incumbent party', 'created': '2024-11-08 11:13:54', 'submission_id': '1gm8orn'}
{'comment': 'I blame people that allowed Trump to be elected. That is my prerogative and I’m sorry if you don’t approve, but I really don’t care.', 'created': '2024-11-08 08:22:19', 'submission_id': '1gm8orn'}
{'comment': 'I used to live in your district, and Young Kim is the worst. I also hope Derek bears MAGA Michelle! He was in the lead on election night—didn’t realize Michelle is currently in the lead now. 😫😫', 'created': '2024-11-08 07:22:54', 'submission_id': '1gm8orn'}
{'comment': '*DCCC money', 'created': '2024-11-08 20:03:42', 'submission_id': '1gm8orn'}
{'comment': 'But we’ll know.', 'created': '2024-11-08 14:03:29', 'submission_id': '1gm8orn'}
{'comment': "That's long been the way of thinking. I'm not sure I believe that anymore.", 'created': '2024-11-08 13:45:36', 'submission_id': '1gm8orn'}
{'comment': 'We should though', 'created': '2024-11-08 18:27:35', 'submission_id': '1gm8orn'}
{'comment': "The latest version of their process uses something they call AP VoteCast. Basically they use computer generated models based on surveys and estimates of voter patterns in the regions in question to determine whether a race can be called in the position it's in. It's kind of complicated but they have a pretty strong track record and I think they're worthy of our trust. \n \nYou can read more here if you're interested: [https://www.ap.org/elections/our-role/ap-votecast/](https://www.ap.org/elections/our-role/ap-votecast/)", 'created': '2024-11-08 15:54:32', 'submission_id': '1gm8orn'}
{'comment': 'Also, I think there were much more mail in ballots because people were wary of going to the polls during Covid. I think that’s why it didn’t take as long to count votes as it did in 2020.', 'created': '2024-11-08 17:35:32', 'submission_id': '1gm8orn'}
{'comment': 'Exactly—this wasn’t the election to “prove a point” or say, “both candidates are bad.” This time America knew what Trump is and they voted (or didn’t vote at all) for him anyway. I just can’t get past the ones that stayed home or decided to vote third party. This wasn’t a normal election and I now we’re all gonna be suffering the consequences. I don’t think they have a right to complain when shit hits the fan.', 'created': '2024-11-08 15:52:31', 'submission_id': '1gm8orn'}
{'comment': 'That election was given to Bush with the help of SCOTUS. \n\nhttps://www.britannica.com/event/Bush-v-Gore', 'created': '2024-11-09 21:17:36', 'submission_id': '1gm8orn'}
{'comment': 'Democrats had run a very top down campaign that paid little attention to what the people wanted. They weren’t engaging voters and were writing off districts they shouldn’t have.', 'created': '2024-11-08 06:36:31', 'submission_id': '1gm8orn'}
{'comment': "Sure we can fixate on something that will never change, especially when congress is in Republican control or you can try to look deeper at the system and what it means to make it better.\n\nStates have always been mini experiments where they can do interesting things on their own and have a lot of independence as entities. In this light it makes sense that they each have at least 3 electoral votes (1 for the two senators and each for representatives).\n\nNow imagine a society so polarized, that whatever issue one side has, the other automatically takes the opposite. It's so bad that they can't even live in the same space. This is how populists rise to power. Trump is everything we see as bad yet somehow he is everything that the other side sees as good. He is just a mirror that reflects back onto ourselves. If we can't see each other has humans, and sit down together to work things out we're doomed as a society.\n\nI really believe that there are a lot more populists down the pipeline who can further drive the wedge between our society. They could be republican or democrat. The more emotionally and geographically polarized we are the more susceptible we are. On top of that, I know there are foreign powers out there who will do anything to see that happen.\n\nSo what will you do?", 'created': '2024-11-08 16:11:58', 'submission_id': '1gm8orn'}
{'comment': 'Who is talking about Gavin Newsom here?', 'created': '2024-11-08 14:28:07', 'submission_id': '1gm8orn'}
{'comment': "Absolutely. Gerrymandering has the largest impact by far in Pennsylvania. North Carolina and Michigan, all states Dems just lost. It's absolutely out of control and completely anti-democratic...\n\nI recall in 2018 where in Wisconsin, dems won both all statewide offices and the statewide vote and only captured a measly 36 out of 99 seats due to extreme GOP gerrymandering. We can't completely blame dems on this though. In most states, the statewide legislature gets the honor of drawing the lines, so if it's in a red state, the dems hands are tied to a degree. They would have to challenge the drawn maps in court which they would also likely lose depending on the judge's bias.", 'created': '2024-11-08 08:58:08', 'submission_id': '1gm8orn'}
{'comment': "Gerrymandering is bad, sure. But it has no impact on the presidency. Dems lost because she lost 7-8 million Dem votes (we'll get a better picture next week.) All the Dem states had significantly lower percentage victories this year.\n\nYou can look forever for some nefarious reason. We just didn't get the same level of support we had in 2020. Since Trump may have maybe 76 million votes it was going to be tough to win the EC, but Dems lost every swing state. That is atrocious and we need to understand why so many Dem voters disappeared.", 'created': '2024-11-09 05:23:14', 'submission_id': '1gm8orn'}
{'comment': 'We have to pull our party away from catering to the fringe of people who think like this or we will never win again. All the ideals in the world don’t do you any good if you can’t win the freaking game.', 'created': '2024-11-08 14:36:56', 'submission_id': '1gm8orn'}
{'comment': 'oh shit that\'s wild that she took 1 minute 42 seconds to talk about the economy. that very same speech, she spent 5+ minutes on democracy and the "promise of america" and so on. you\'re too emotional and making the same mistake as your first reply. you need time. i\'m gonna help you with that by ending this unproductive argument.', 'created': '2024-11-08 06:40:31', 'submission_id': '1gm8orn'}
{'comment': "Well they're not gonna be helping anyone by losing elections. It's a nice sentiment to have while the Republican house, Senate, president, and supreme Court are hauling those folks off to camps here in reality-land though.", 'created': '2024-11-08 11:03:09', 'submission_id': '1gm8orn'}
{'comment': 'Among dems and independents, Clinton was far more popular and had a way better resume. Clinton was only more disliked by cult45 who drank all the cool aid', 'created': '2024-11-08 11:16:29', 'submission_id': '1gm8orn'}
{'comment': 'Keep telling yourself that, and we will keep losing elections.', 'created': '2024-11-08 15:36:03', 'submission_id': '1gm8orn'}
{'comment': 'I’m very energized to get them the fuck out in 2026. I feel powerless like I have no idea how to go about doing this without spending so much money but I want to start now. I want to use the next 1.5 years ignoring the fucker in the WH and building up our power for congress.', 'created': '2024-11-08 15:11:54', 'submission_id': '1gm8orn'}
{'comment': "Yep. That'll help my mental state and I'm sure a lot of others, at least.", 'created': '2024-11-08 14:34:26', 'submission_id': '1gm8orn'}
{'comment': 'I still do, mostly because of how few youth voters turnout, and people in certain industries (like service industry) tend to not show up. Lots of folks also torn up by misinformation just couldn’t bring themselves to vote. Pisses me off, but what can you do. \n\nThis election falls on the shoulders of white people. Period. Living in a red state, I’ve seen a lot of people that were quiet before the election that now are walking around with their chests puffed out, grinning. So many of them just easily manipulated by their media choices. And frankly, I think they don’t care unless whatever it is directly affects them. Not enough people thinking for themselves. A lot of people on the fence just don’t wanna be left out or look bad in front of their peers. It’s cyclical, so in those rural bubbles, they will continue to be pressured to follow in their families/friends footsteps (or do whatever their “church” tells them to do).', 'created': '2024-11-09 00:49:28', 'submission_id': '1gm8orn'}
{'comment': "That's true too. Apparently a lot of places made it easier to vote in 2020. I'm in MS so it was the same as usual except they had hand sanitizer at the door.", 'created': '2024-11-08 18:12:16', 'submission_id': '1gm8orn'}
{'comment': '> Democrats had run a very top down campaign that paid little attention to what the people wanted. \n\nWhich they still seem to be doing, at least at the presidential campaign level. There seems to be the general idea that progressive values can be imposed in that top-down way, without any actual education to explain the policies. This hands the right a list of talking points on a silver platter, that resonate with average voters.', 'created': '2024-11-08 07:42:42', 'submission_id': '1gm8orn'}
{'comment': 'Electoral college is for the presidency. The "state experiments" can stay in the legislative sphere where two senators and at least one rep can represent each state. No one is fixated on something that will never change because it can. And should. But my comment was to explain why it\'s not a geographic thing. Hamilton advocated for direct election of the president. That\'s how it should be.', 'created': '2024-11-09 02:45:10', 'submission_id': '1gm8orn'}
{'comment': 'It doesn’t have to be Newsom. My point is that there was no mythical Democrat who could have saved the ticket.', 'created': '2024-11-08 14:35:13', 'submission_id': '1gm8orn'}
{'comment': 'This is not true. State level results were mixed to decent for Democrats. In North Carolina, we basically swept statewide office elections and broke the GOO supermajority in the state legislature', 'created': '2024-11-08 10:38:15', 'submission_id': '1gm8orn'}
{'comment': 'Yeah, not saying this wasn’t a terrible mistake by the country. But if you think running on faux-socialism is the answer, you don’t understand how people perceive these issues.', 'created': '2024-11-08 11:10:10', 'submission_id': '1gm8orn'}
{'comment': 'Mind your own fucking business Jethro', 'created': '2024-11-08 16:58:59', 'submission_id': '1gm8orn'}
{'comment': "We have to take Congress, the house, and the senate bank in 2026 or atleast 2 of the 3. The dems won't be down long. I hate that we have to wait two years tho.", 'created': '2024-11-09 02:05:49', 'submission_id': '1gm8orn'}
{'comment': "I think I understand what you mean. But let me make sure. You're saying that senator and reps are only concerned with Congress and the legislative branch? And that the electoral college is not the appropriate way to select a president and should be abolished?\n\nThe reason why I brought up the states is that the states wouldn't agree on being united unless their independence as entities was respected. As you know, the electoral college was created to among other things address the states concern that more populous states would dilute the influence of smaller states. It is kind of a fair argument in a certain light.\n\nI won't address whether it should be changed but to go back to whether it can be changed.. well you'll need those senator and reps to do it. At least 2/3 from both the Senate and house. Could we get there by just blue states and swing states? Not even close. So it really goes back to geography and finding agreement with each other as a society.", 'created': '2024-11-09 03:02:49', 'submission_id': '1gm8orn'}
{'comment': "A primary would've picked the best on the list, and it for sure wasn't Kamala.", 'created': '2024-11-08 17:25:29', 'submission_id': '1gm8orn'}
{'comment': 'It won’t feel like a long wait when we’re organizing and volunteering harder than them. I’m looking at ways to do this already, if you look up how to volunteer for the dems there are opportunities! And there was a zoom call for post election discussions which I’m assuming were therapeutic with such a group.', 'created': '2024-11-09 02:11:53', 'submission_id': '1gm8orn'}
{'comment': "He's going to fuck everyone with this", 'created': '2024-11-08 04:27:18', 'submission_id': '1gm8nhd'}
{'comment': 'we should start hoarding now so those who voted for trump can figure things out on their own lmao!!!\n\nblack friday and xmas incoming. perfect time...\n\n', 'created': '2024-11-08 04:30:35', 'submission_id': '1gm8nhd'}
{'comment': 'Buy American-made products when you can.', 'created': '2024-11-08 14:45:03', 'submission_id': '1gm8nhd'}
{'comment': 'Might as well buy for next Christmas now!', 'created': '2024-11-11 17:37:29', 'submission_id': '1gm8nhd'}
{'comment': 'lol', 'created': '2024-11-11 23:59:49', 'submission_id': '1gm8nhd'}
{'comment': 'Haha yeah only I’m serious because of the tariffs and stuff.', 'created': '2024-11-12 04:20:34', 'submission_id': '1gm8nhd'}
{'comment': 'My hope is that the shellacking we took over inflation forces Democrats, especially in major metro areas, to take housing a lot more seriously. As a San Franciscan and a teacher, it is pathetic how bad local politicians (none of whom are Republicans) can be on this issue.\n\nThis has to change. We will not be taken seriously as the party of working people if only those with $100k+ salaries can afford to live comfortably in our cities.', 'created': '2024-11-08 05:12:28', 'submission_id': '1gm8ogy'}
{'comment': None, 'created': '2024-11-08 05:27:53', 'submission_id': '1gm899o'}
{'comment': "Like all of you, I wasn't expecting this result. I thought it would be close. I thought it would be a nail biter. But this wasn't close. We were completely off base. We're throwing around a lot of theories but nobody really knows why. Well, after looking deeply into the PA numbers specifically, I'm starting to get some clarity.\n\nI dug into CNN's exit poll numbers, and tried to extrapolate some actual absolute numbers. I think the percentages are hard to read because it doesn't show whether people actually flipped sides or just turned out differently.\n\nI compared [2020 PA results](https://www.cnn.com/election/2020/results/president) with [2024 PA results](https://www.cnn.com/election/2024/results/pennsylvania/president), and then extrapolated absolute values based on their PA exit polls for [2020](https://www.cnn.com/election/2020/exit-polls/president/pennsylvania) and [2024](https://www.cnn.com/election/2024/exit-polls/pennsylvania/general/president/0), and it was pretty enlightening.\n\n|Pennsylvania|Votes 2020 %|Votes 2024 %|2020 Biden %|2020 Trump %|2024 Harris %|2024 Trump %|Votes 2020|Votes 2024|Diff |2020 Biden|2020 Trump|2024 Harris|2024 Trump|Diff Dem|Diff Rep| Dem Swing |\n|------------|------------|------------|------------|------------|-------------|------------|----------|----------|--------|----------|----------|-----------|----------|--------|--------|--------|\n|White |81.00% |82.00% |42.00% |57.00% |43.00% |55.00% |5,538,931 |5,593,325 |54,394 |2,326,351 |3,157,190 |2,405,130 |3,076,329 |78,779 |-80,862 |159,641 |\n|Black |11.00% |9.00% |92.00% |7.00% |89.00% |10.00% |752,200 |613,902 |-138,299|692,024 |52,654 |546,372 |61,390 |-145,652|8,736 |-154,388|\n|Latino |5.00% |6.00% |69.00% |27.00% |57.00% |42.00% |341,909 |409,268 |67,358 |235,917 |92,316 |233,283 |171,892 |-2,635 |79,577 |-82,212 |\n|Total | | | | | | |6,838,186 |6,821,128 |-16,546 |3,459,923 |3,378,263 |3,343,433 |3,477,695 |-69,508 |7,451 |-76,959 |\n\n\\* Disclaimer, this is all based on exit poll data for PA and the CNN percentages are rounded so there's going to be some margin of error, but these numbers are so huge that even if they're off by quite a bit it still paints the same picture.\n\nFirst, while general turnout around the country was heavily depressed, PA didn't budge. The Dem+Rep vote was 6,838,186 in 2020 and 6,821,128 in 2024, so down 17k, and that could even end up being close to the same turnout after overseas and provisional ballots are finished counting. People definitely stayed home in a lot of the country, but at least in PA they were just as motivated to turn out since they know they're a swing state and it looks like they took it seriously. We can't say that people didn't care in PA. And the narrative that people stayed home doesn't really fit with other swing states either. Michigan, Wisconsin, Georgia, and North Carolina all actually had more turnout than 2020. Arizona and Nevada are both being counted so I can't check them. National turnout was down, but the people who's vote mattered the most did their job and they turned out.\n\n|State |2020 Dem |2024 Dem |2020 Rep |2024 Rep |2020 Total|2024 Total|Diff |\n|--------------|---------|---------|---------|---------|----------|----------|-------|\n|Pennsylvania |3,459,923|3,347,132|3,378,263|3,485,374|6,838,186 |6,832,506 |-5,680 |\n|Michigan |2,804,040|2,728,417|2,649,852|2,807,720|5,453,892 |5,536,137 |82,245 |\n|Wisconson |1,630,866|1,668,757|1,610,184|1,697,237|3,241,050 |3,365,994 |124,944|\n|Georgia |2,473,633|2,543,455|2,461,854|2,660,995|4,935,487 |5,204,450 |268,963|\n|North Carolina|2,684,292|2,687,549|2,758,775|2,877,625|5,443,067 |5,565,174 |122,107|\n\nSecond, demographics swung, but not the way you might think. With the white vote, the vote was 81% white in 2020 and 82% in 2024, not a significant difference and since turnout was about the same the absolute number is about the same too. 5,538,931 in 2020 and 5,593,325. It actually increased by 54k. Also, Trump actually *lost* a lot of white voters. Trump had 57% of white PA voters in 2020 and 55% in 2024 while Harris actually *gained* white voted by a tiny bit, 43% vs 42%. In absolute numbers, Harris gained 78k while Trump lost 80k. We actually swung lots of white voters, and really, it seems like it's the only demographic that might have flipped sides vs just different people staying home/turning out.\n\nNow here's where the numbers get very enlightening. How could Harris lose when white voters shifted towards her by 160k??? Well Black people turned out way less. It was 11% in 2020 and 9% in 2024, so there were a lot fewer black people turning out in general, and of the black people that did turn out, it went from 92% in 2020 to 89% in 2024 for Harris and 7% Trump in 2020 to 10% in 2024. In absolute numbers that ends up being 145k fewer votes for the Dems and 8k more votes for Trump. Ok so a few thousand extra voters showed up for Trump, but Dems lost them by 6 digits. This isn't a case of Trump getting a ton of Black voters to his side, it's a case of them not showing up for Democrats, and more specifically it was Black men. Black men went from 5% turnout in 2020 to 3% turnout in 2024 while Black women stayed steady at 6% and didn't budge in their support.\n\nNext enlightening numbers. The Hispanic vote. The Latino vote turned out a little bit more than in 2020. 5% in 2020, 6% in 2024. In absolute numbers, 67k more Latinos turned out in 2024. But their demographic swung HARD towards Trump. 69% Dem in 2020 vs 57% in 2024, and 27% Trump in 2020 vs 42% Trump in 2024. In real numbers that ends up being about 2k fewer votes for Dems, a rounding error, but 80k more votes for Trump. He didn't really flip Latino voters either, he got a ton of new voters to turn out. Pretty much all the extra turnout from the Latino demographic went to Trump.\n\nSo big takeaways. We actually convinced white voters to vote for Harris. Black men did not turn out. A bunch of new Latino voters showed up for Trump. Now if we think about that a bit more, it actually makes sense doesn't it? When people think about the blue wall swing states do we think about the Latino vote? Especially the rural Latino vote? No, we stereotypically think majority white and some urban black voters. But it's not. The Latino vote matters. We ignored them, and Trump found them. The Latino vote matters, even in places we stereotypically assume are white, and if you don't reach out to them you lose them. We reached out to the white middle class a lot. I felt like they were the focus of the election for the swing vote strategy. Looks like it actually worked, but in the process we completely ignored significant minority populations.\n\nA lot of the Latino population is rural, and we ignored them, so who did get their message out to them in our vacuum? Right wing media. Fox news in every restaurant, Trump flags on every block, Democrats nowhere to be found. Republican strategists have been talking about getting the Latino vote for several election cycles and it looks like they finally did it.\n\nAs for the black vote, we lost black men hard. They weren't convinced by Trump, they just weren't convinced by Democrats. The economy was the big deciding issue in this election. Biden improved the economy vs 2020, but Black people are historically left out of those gains. Sure the economy got better in general, but did it get better for Black men? Did we speak to issues that affect black men specifically? Did we really include them in the conversation? Black women were, but maybe Black men, not so much... We told women in republican households that their voting choice is theirs not their husbands, but the same is true for black men. The choice is theirs and we didn't do enough to convince them that we were going to help them this time around instead of ignoring them.\n\nWe lost because we did the flashy easy thing. We focused on social issues which Trump is awful on, and we focused on the cities where we already have good support. We gave up on people in rural areas. We didn't address the needs of the most disenfranchised voters directly. We didn't reach out to populations that are historically ignored. We became a party of niche issues and ignored the voters we needed the most. We ignored people and this is what happens when we do that.\n\nThat's just Pennsylvania. I haven't looked at other swing states, but judging by the national exit polls, I'm guessing it will be the same story.", 'created': '2024-11-08 03:36:41', 'submission_id': '1gm899o'}
{'comment': "Impressive, both in effort & execution.\n\nThat's a 'follow'. **✓**", 'created': '2024-11-08 05:12:03', 'submission_id': '1gm899o'}
{'comment': 'Can you do Michigan and Wisconsin next?\n\nAlso curious to see overall turnout, like what percentage of eligible Latinos voted, as well as whites and blacks.', 'created': '2024-11-08 05:18:26', 'submission_id': '1gm899o'}
{'comment': 'Wow. Thank you for the analysis. Big props friend.', 'created': '2024-11-08 04:59:59', 'submission_id': '1gm899o'}
{'comment': 'I think a lot of it comes down to something much simpler.\n\nIf given a choice between a woman and a fascist. Most Americans will vote for the man.', 'created': '2024-11-08 12:08:27', 'submission_id': '1gm899o'}
{'comment': 'Look into if the absentee ballots where all counted. They conveniently didn’t count them here in Iowa. Could explain why 20 million voters “didn’t show up”', 'created': '2024-11-08 14:31:14', 'submission_id': '1gm899o'}
{'comment': 'That’s all good and useful data. But I still believe we lost for 2 main reasons:\n\n1) Democrats did not organically choose Kamala Harris in the primaries. If we had had primaries, would she even have been the chosen one? And she had 5 months to run against a man who had a ground game going for years and\n2) it’s the economy, stupid. I talked to an elderly black cashier who said she had always voted Democratic not this year bc “we have to get the right person elected to do something about these prices.” People are ignorant about the complicated causes of inflation so they blamed Biden- Harris.', 'created': '2024-11-08 07:06:16', 'submission_id': '1gm899o'}
{'comment': 'Never forget. It wasn’t the people who didn’t vote for the Republican candidate that elected the dictator. \n\nIt was the REPUBLICANS that voted in tens of millions for the dictator.', 'created': '2024-11-08 13:54:47', 'submission_id': '1gm899o'}
{'comment': 'This. This is what we need.', 'created': '2024-11-08 04:05:00', 'submission_id': '1gm899o'}
{'comment': 'I’ll tell you what it was. She was a woman and men weren’t voting for her. Her numbers were very similar to Clinton’s. The election results as they were coming in even reminded me of Clinton’s results. Men have a problem with a female president. As far as I’m concerned they’re all pussies and they are going to pay for it big time. 😡😡😡', 'created': '2024-11-08 22:34:25', 'submission_id': '1gm899o'}
{'comment': 'Jesus make a graph!', 'created': '2024-11-08 08:59:51', 'submission_id': '1gm899o'}
{'comment': 'One thing to note: exit polls numbers acquired after the night of the election are typically adjusted to match the official vote outcomes. The raw unadjusted numbers are sometimes very difficult to find a few days beyond the election, but might tell a different story. Not sure which these are, but just something to be aware of.', 'created': '2024-11-08 14:59:55', 'submission_id': '1gm899o'}
{'comment': "this is INSANE that Trump found 80k+ new Hispanic voters from somewhere. Where are they coming from? How could Dems miss this trend? These were new voters so there had to be active outreach since the summer. Weren't any alarm bells going off in Shapiro's office?", 'created': '2024-11-08 21:15:45', 'submission_id': '1gm899o'}
{'comment': 'Shout out to Dems always fact based always linking articles always being sensible.', 'created': '2024-11-08 14:48:25', 'submission_id': '1gm899o'}
{'comment': 'We need to make sure we are able to clean the mess. But remind them who did this.', 'created': '2024-11-08 17:25:16', 'submission_id': '1gm899o'}
{'comment': 'Here’s the problem. There are too many people that only have one thing they care about:guns, gas, abortion, “economy”, immigration, anti trans, etc. Those people are willing to vote for someone that promises that even if they agree with nothing else. \n\nOn the other side you have a smaller number of idealists that will not vote for someone they don’t align with 100%. \n\nThis creates crazy uphill battle for the Dems. Dems have to be perfect. GOP candidate just needs to be loud and promise one thing that rings true. \n\nThe reality is that other than hate and Christofascism, the GOP doesn’t follow through with anything. When they don’t, the blame the Dems and the voters believe them. It’s insane. \n\nDems need to be loud and start promising low taxes, increased wages, immigration reform, and “freedom”. They need a loud, celebrity type to get the populist vote.', 'created': '2024-11-08 20:53:31', 'submission_id': '1gm899o'}
{'comment': 'There’s danger in comparing 2020 to 2024. 2020 was an anomaly. Everyone keeps asking about where the 15 million votes went. Guess what? There are 15 million more votes than normal in 2020 compared to 2016. That’s because it was all vote by mail. Trump probably would’ve won in 2020 without that difference in voting.', 'created': '2024-11-08 16:51:31', 'submission_id': '1gm899o'}
{'comment': 'The way Wisconsin is spelled…', 'created': '2024-11-08 23:28:21', 'submission_id': '1gm899o'}
{'comment': 'People are uninformed and didn’t realize that was the trade. They just thought prices high<president’s fault<vote for the other guy', 'created': '2024-11-08 13:09:15', 'submission_id': '1gm899o'}
{'comment': 'Hillary won the popular vote.', 'created': '2024-11-08 06:59:26', 'submission_id': '1gm899o'}
{'comment': 'Succinct and true.\xa0', 'created': '2024-11-08 06:01:30', 'submission_id': '1gm899o'}
{'comment': 'Correction: REPUBLICANS are uninformed and didn’t […]', 'created': '2024-11-08 13:53:51', 'submission_id': '1gm899o'}
{'comment': 'It was much more the first than the second.', 'created': '2024-11-08 14:47:18', 'submission_id': '1gm899o'}
{'comment': 'Don’t forget the role of the Catholic Church with Latino voters.', 'created': '2024-11-08 06:18:27', 'submission_id': '1gm899o'}
{'comment': 'i really like your analysis and appreciate this kind of detail. that said, i\'m tired of the radio buttons. "if the campaign had done this . . . if the campaign had done that . . . " it does feel like pushing the buttons on a radio where as one goes down the one that was down will pop up. could just as easily be " she lost middle-class whites because she focused so hard on the traditional democratic communities."\n\n \ni\'d love to hear detailed analysis on the people who didn\'t turn out at all. and why; perhaps by cross-tab again.', 'created': '2024-11-08 04:07:52', 'submission_id': '1gm899o'}
{'comment': 'Really fascinating.\n\nI’m wary of “fighting the last war” in every election, but if this data holds up in the final tally, that’s invaluable data to learn from for the future.\n\nIt’s fascinating to think about how much of the Right is just instinctively “anti-Latino.” The “garbage island” fiasco came out of that instinct, the assumption that you’ll never pay a price punching south of the border. (I know PR is within the US and not outside the border. It just works as a broader statement.)\n\nAnd with the deportation plan almost certainly tailored to target Latino communities, how the **f** does **that** play out???', 'created': '2024-11-08 05:28:58', 'submission_id': '1gm899o'}
{'comment': 'The Trump campaign did nothing but demonize Mexicans and say that immigrants are eating cats and dogs. \n\nIs it that he reached out to them, or that a lot of rural Latinos listen to talk radio, and work blue collar jobs where they are exposed to Fox News and other right-wing coworkers? I’d say the latter.', 'created': '2024-11-08 11:28:20', 'submission_id': '1gm899o'}
{'comment': 'I don\'t know, I started seeing lots of videos from black men in my TikTok algorithm saying that they won\'t vote for a black woman ever, because "I\'ll never hear the end of it at home." It was super disturbing.', 'created': '2024-11-08 13:20:44', 'submission_id': '1gm899o'}
{'comment': 'Where are the Asian estimates please?', 'created': '2024-11-08 07:54:46', 'submission_id': '1gm899o'}
{'comment': 'Thank you!\n\nLooks like Latinos swung hard to Trump and Black turnout was down. Harris improved white margins, but not enough to offset this. \n\nThis is why both campaigns thought Harris was going to win until the votes were counted. \n\nAlso, I wonder if Black turnout was really down or if we are simply seeing demographic changes in Pennsylvania. Philadelphia and Pittsburgh are losing population. I’m curious what Georgia looks like. \n\nThe math shows that a lot of liberal assumptions about the electorate were simply wrong.', 'created': '2024-11-08 14:57:14', 'submission_id': '1gm899o'}
{'comment': ">As for the black vote, we lost black men hard. They weren't convinced by Trump, they just weren't convinced by Democrats.\n\n\nIn other words Kamala failed miserably with black people, but black males more specifically. Without the black vote Democrats cannot win and this is a clear indication of that. I remember allegations that the black caucus were all in on Kamala, and that's one of the reasons there were no primaries after Biden dropped out. According to sources the black caucus wasn't willing to support anybody else, specially other Democrats eyeing 2028 chances.\n\n\nOur next candidate NEEDS to carry the black vote and get black men to the polls or we'll take another beating at the polls.", 'created': '2024-11-08 14:33:35', 'submission_id': '1gm899o'}
{'comment': "Bucks county outside Philly I believe never has voted (R) went red in '24 for Trump?", 'created': '2024-11-08 15:24:18', 'submission_id': '1gm899o'}
{'comment': "That's really interesting. I know that the Harris campaign ground game was deeply focused on a lot of those states that outperformed the national average, so it makes sense. \n\nBut if even a historically powerful ground game versus no ground game fails to win, we have to ask ourselves if it's even worthwhile to have a ground game. Biden had none, he won. Kamala had the best ground game since 2008 and she lost.", 'created': '2024-11-08 19:16:33', 'submission_id': '1gm899o'}
{'comment': "look at the lib votes compared to from 2020 to 2024, 50% loss, those people would vote for Trump and or Republican ; also look at the Green vote which was ZERO in 2020 and 40K +/- ; I agree with you, low black turnout, Latinos swung toward trump and he gets the 150K lead in PA, and other similar states ; i disagree with you, harries did go to rural areas in GA, she had AOC, Bill Clinton, Obama, but i think a 100 day campaign didn't help. Also i feel the Economy really had a huge impact Biden was unpopular, inflation and interest rates high", 'created': '2024-11-09 00:25:54', 'submission_id': '1gm899o'}
{'comment': 'This is an excellent post. It honestly makes sense to me and jives with the concerns I had since early in 2023 that the Dems responses to people’s complaints about the economy were going unheard. Fact is, while unemployment is low, even among Blacks and Latinos, jobs are getting harder to find, especially for younger men. In addition, with the COL going up, even if you have a job, it is harder to make ends meet. \n\nI kept telling people to not focus solely on voting percentages and that you needed to look at turnout. I was told to shut up, even on Reddit. However, if a Black voter doesn’t vote at all, while it it is not as bad as voting for Trump, it is still not good for Harris, as it still leave you a vote short. If you are losing new voters to Trump, now you have to find two votes! It is pure math. There is some total that equals 100 and you want your side to have the higher amount. \n\nNow as the numbers continue to roll in from the West (CA,AK, AZ, NV and WA), Harris’s vote total will rise m; in the end she will end up around 72.5 M votes and he will end up with around 74.5 to 75.5M. I point this out because that is about 50 to 48 vote percentage, or about what the polls were showing. So all the people hating on the pollsters who did not want to face reality need to take a long hard look at themselves.', 'created': '2024-11-08 13:26:50', 'submission_id': '1gm899o'}
{'comment': "|Michigan|Votes 2020 %|Votes 2024 %|2020 Biden %|2020 Trump %|2024 Harris %|2024 Trump %|Votes 2020|Votes 2024|Diff |2020 Biden|2020 Trump|2024 Harris|2024 Trump|Diff Dem|Diff Rep|Swing |\n|--------|------------|------------|------------|------------|-------------|------------|----------|----------|--------|----------|----------|-----------|----------|--------|--------|--------|\n|White |81.00% |77.00% |44.00% |55.00% |44.00% |55.00% |4,417,653 |4,262,825 |-154,827|1,943,767 |2,429,709 |1,875,643 |2,344,554 |-68,124 |-85,155 |17,031 |\n|Black |12.00% |12.00% |92.00% |7.00% |89.00% |11.00% |654,467 |664,336 |9,869 |602,110 |45,813 |591,259 |73,077 |-10,850 |27,264 |-38,115 |\n|Latino |3.00% |6.00% |55.00% |44.00% |39.00% |58.00% |163,617 |332,168 |168,551 |89,989 |71,991 |129,546 |192,658 |39,556 |120,666 |-81,110 |\n|Total | | | | | | |5,453,892 |5,536,137 |82,245 |2,804,040 |2,649,852 |2,728,417 |2,807,720 |-75,623 |157,868 |-233,491|\n\nSome similarities, some differences. Turnout not only matched 2020 turnout but beat it by a lot. The white vote did not budge one bit, but a lot more of them stayed home. That actually ended up being a net gain for Democrats because Reps win the white vote so fewer of them means a smaller vote difference.\n\nThe black vote turned out the same but swung a little towards Trump. The numbers here are less dramatic so I'm cautious due to the margin of error.\n\nLatino vote turned out way more and follows a similar trend to PA. Both Dems and Reps gained, but Reps gained much much more.\n\n|Wisconsin|Votes 2020 %|Votes 2024 %|2020 Biden %|2020 Trump %|2024 Harris %|2024 Trump %|Votes 2020|Votes 2024|Diff |2020 Biden|2020 Trump|2024 Harris|2024 Trump|Diff Dem|Diff Rep|Swing |\n|---------|------------|------------|------------|------------|-------------|------------|----------|----------|--------|----------|----------|-----------|----------|--------|--------|--------|\n|White |86.00% |84.00% |59.00% |40.00% |46.00% |53.00% |2,787,303 |2,827,435 |40,132 |1,644,509 |1,114,921 |1,300,620 |1,498,541 |-343,889|383,619 |-727,508|\n|Black |6.00% |6.00% |92.00% |8.00% |77.00% |22.00% |194,463 |201,960 |7,497 |178,906 |15,557 |155,509 |44,431 |-23,397 |28,874 |-52,271 |\n|Latino |4.00% |6.00% |60.00% |37.00% |57.00% |43.00% |129,642 |201,960 |72,318 |77,785 |47,968 |115,117 |86,843 |37,332 |38,875 |-1,543 |\n|Total | | | | | | |3,241,050 |3,365,994 |124,944 |1,630,866 |1,610,184 |1,668,757 |1,697,237 |37,891 |87,053 |-49,162 |\n\nA bit more different this time. Turnout again is high, even higher than 2020. White vote was again depressed like in Michigan and Latino vote was higher just like everywhere else, but how the demographics swung is very different. The biggest difference is that the white vote really swung towards Trump by A LOT. Another big difference is that a lot more Black voters swung towards Trump, and it's not just that they didn't turn out for Dems, more of them turned out for Trump too. Latinos didn't swing towards trump that dramatically here...\n\nSomething is different around wisconsin, but it may come down to the rural and urban divide. In both MI and PA the turnout from urban, suburban, and rural was about the same actually, but who was voting changed. What's different about WI is that the urban/rural numbers changed by a large amount. In 2020 it was 30% Urban, 49% Suburban, 22% Rural. In 2024 it was 35% Urban, 34% Suburban, 31% Rural. Basically the suburbs didn't turn out, and the cities did a bit more, but rural voters really turned out. I'm not sure why WI is different, but one thing we do know is that Republicans flipped on mail in voting this election and started encouraging more of their voters to mail in their ballot. That could have benefited them more in urban areas. Why that same trend isn't in MI or PA I'm not sure.", 'created': '2024-11-09 01:12:08', 'submission_id': '1gm899o'}
{'comment': 'That doesn’t explain the house and senate. It wasn’t because she’s a woman. It’s because she isn’t a hateful prick.', 'created': '2024-11-08 14:44:33', 'submission_id': '1gm899o'}
{'comment': 'Unfortunately I think you are right. If the Democrats understand this, the candidate for 2028 will be young, white, and male.', 'created': '2024-11-08 13:27:41', 'submission_id': '1gm899o'}
{'comment': "the data tabulated here from PA makes it clear that Repubs made a targeted effort to recruit new Latino voters, maybe the preponderance will be male. Not to be stereotypical but there's residual sexism & chauvinism in the community, especially among those who are Conservative.", 'created': '2024-11-08 21:21:13', 'submission_id': '1gm899o'}
{'comment': 'I think it\'s incredibly naive to think that. Plenty of women got votes. She didn\'t get votes because she was a deeply unpopular candidate who was VP for a deeply unpopular president. \n\nI feel like this continual harping on "everybody hates women" is missing the true issues and detrimental to actually getting a women elected. Stop giving a shit about gender and focus on policy and actions and we\'ll get a lot further', 'created': '2024-11-08 18:24:43', 'submission_id': '1gm899o'}
{'comment': 'Someone should sue the living F out of them', 'created': '2024-11-08 16:19:11', 'submission_id': '1gm899o'}
{'comment': 'Drumpf cound not have been worse on covid, yet the Dems carried all the baggage. Looking at the state numbers beyond President, it wasn;t that bad. Here in Connecticut, we increased our lead in the general assembly, and at the Federal level did very well. The ideas are correct, it just hard to compete against a cult. Once Drumpf is gone they have nobody that can fill tose shoes. He is a once in a lifetime personality, unfortunately it was during our lifetime...', 'created': '2024-11-08 12:39:14', 'submission_id': '1gm899o'}
{'comment': 'a couple of billionaires bought this election. almost every commercial here in MI was a PAC commercial full of nothing but flat out lies. it was nonstop. people are stupid and fell for it. truth in advertising is dead.', 'created': '2024-11-08 17:03:29', 'submission_id': '1gm899o'}
{'comment': 'So when the economy tanks who will they blame this time?', 'created': '2024-11-08 13:49:10', 'submission_id': '1gm899o'}
{'comment': 'To be fair, she had *3* months to run her campaign against one that had been going on for nearly a decade', 'created': '2024-11-08 13:54:05', 'submission_id': '1gm899o'}
{'comment': '3. Democrats have a trust issue with voters. During election years, we hear a lot about things that affect the lives of working people (for instance in 2020, they promised increased minimum wages, subsidies for childcare, and paid leave). But once elected, none of these things actually change or if they do, it is in such an incremental way that it doesn’t actually affect opinion (benefits that only affect people working for large corporations with delays for implementation). This has happened repeatedly on different issues. It doesn’t matter that the reason we don’t get these policies enacted is republican obstruction or Sinema or Manchin. The end result is a long string of broken promises. People don’t believe that democrats will ever actually do anything they talk about.', 'created': '2024-11-08 09:14:06', 'submission_id': '1gm899o'}
{'comment': 'Plus misogyny.\xa0', 'created': '2024-11-08 11:40:37', 'submission_id': '1gm899o'}
{'comment': "People were not working too. People were at home and have all the time in the world to mail their ballot. I didn't vote this year because I am in a very blue state and usually too tired to drive to voting place to vote when I know my vote won't matter. \n\nBut I hope you don't disregard possible electoral fraud if there are signs of it.", 'created': '2024-11-08 20:10:58', 'submission_id': '1gm899o'}
{'comment': 'Sorry. I got it right the first time I wrote it.', 'created': '2024-11-09 00:51:32', 'submission_id': '1gm899o'}
{'comment': "This is the answer. Most Americans aren't avidly following things and aren't educated in law, economics, geopolitics, etc. They care about kitchen table issues and vote their wallets.", 'created': '2024-11-08 14:21:22', 'submission_id': '1gm899o'}
{'comment': 'That’s happening around the world. American voters are not unique.', 'created': '2024-11-08 14:47:39', 'submission_id': '1gm899o'}
{'comment': "What's going to be the rationale in 4 years when prices are still high and they still re-elect the Republicans?", 'created': '2024-11-08 16:29:10', 'submission_id': '1gm899o'}
{'comment': '…Americans won’t vote for a woman that’s the Democratic Party candidate. \n\n\nI can assure, bet you, the country’s first female potus will be a red republican white woman.', 'created': '2024-11-08 19:07:46', 'submission_id': '1gm899o'}
{'comment': 'Not where it mattered.', 'created': '2024-11-08 07:22:13', 'submission_id': '1gm899o'}
{'comment': 'They said "elect".', 'created': '2024-11-08 08:55:24', 'submission_id': '1gm899o'}
{'comment': 'I think racism overtakes sexism. I think the biggest factor for the swing voters was their ignorance of fundamental economics. When the trump magic promised doesn’t happen, they’ll flip to the opposition next time. For some, a black female is a deal breaker more than a black man or white woman. Had trump won re-election in 2020 and this was Kamala vs Pence, with the same inflation and prices, she wins the blue wall states, and a few other swing states. Probably still loses Georgia and NC.', 'created': '2024-11-08 13:24:07', 'submission_id': '1gm899o'}
{'comment': 'Love participation trophies', 'created': '2024-11-08 15:13:50', 'submission_id': '1gm899o'}
{'comment': 'They had a chance with Geraldine Ferraro in the 1980s and they didn’t vote for the ticket she was on even though she was on it as VP. Republicans will never vote for a woman even if she is loyal to them. Women are supposed to be wives and mothers and that’s it.', 'created': '2024-11-08 20:13:23', 'submission_id': '1gm899o'}
{'comment': 'It’s not the Catholic Church. Latino Catholics are little different from non-affiliated Latinos.\n\nIt’s the explosive growth of Evangelical and Charismatic Churches in the Latino community that is pushing them right.', 'created': '2024-11-08 14:59:09', 'submission_id': '1gm899o'}
{'comment': 'The Pope said that abortion was a sin. Those words absolutely had an impact.\n\nhttps://www.pbs.org/newshour/world/wrapping-up-belgium-visit-pope-doubles-down-on-his-views-and-calls-abortion-doctors-hitmen', 'created': '2024-11-08 13:01:46', 'submission_id': '1gm899o'}
{'comment': '', 'created': '2024-11-08 08:33:19', 'submission_id': '1gm899o'}
{'comment': 'Certain Latino communities. The Latino vote is not homogeneous. And Latino men won’t vote for a Black woman.', 'created': '2024-11-08 11:39:46', 'submission_id': '1gm899o'}
{'comment': 'Yeah, I appreciate the breakdown of numbers here but I don’t agree with the conclusions the OP draws from the numbers. \n\nWhat evidence is there that Harris “ignored” the Latino vote? Latinos chose Trump, I suspect for social/cultural reasons. I’m in Pennsylvania and the anti-transgender political ads ran non stop here.', 'created': '2024-11-08 12:16:30', 'submission_id': '1gm899o'}
{'comment': 'Going to say, I feel like a lot of people are missing the real problem: Right wing media absolutely infects every single social media platform and “news” these days. Like I don’t know how Democrats ever come back without doing something about Fox News, OAN, and the online sources. And it’s only going to get worse because now we’re under single party rule and they have said they will start banning anything that’s not right wing. I don’t know we combat that, or ever come back from what just happened.', 'created': '2024-11-08 15:01:02', 'submission_id': '1gm899o'}
{'comment': 'Latino VOTERS are CITIZENS. They don’t necessarily care about immigration issues. Even many of those who are naturalized take the attitude “I did it the right way.” \n\nMany feel insulted when Democrats assume that they are.\n\nThere’s also bigotry in Latin America. Mexican on Central American bigotry is a thing. So is old fashioned black on white on indigenous bigotry. Mexicans don’t want Guatemalans in their country. (See Mexico’s border with Guatemala.) \n\nAnd in the USA, brown on brown bigotry is definitely a thing. Some of the most racist shit I have heard about Black people has come from Asians and I grew up in the South. Liberals who believe “only white people can be racist” are high on their own supply.', 'created': '2024-11-08 15:07:15', 'submission_id': '1gm899o'}
{'comment': 'Good point. I think that Asian voters tend to be isolated to CA and a few eastern states, but their numbers are small. However I would like to get a view on how they voted in GA, VA, MI and NJ.', 'created': '2024-11-08 13:32:42', 'submission_id': '1gm899o'}
{'comment': "I don't have numbers ready but Asians broke hard for trump as well", 'created': '2024-11-08 13:52:30', 'submission_id': '1gm899o'}
{'comment': ' But what has Trump said to help the job market? Nothing other than deporting people so you can have their jobs of picking vegetables.', 'created': '2024-11-08 13:48:15', 'submission_id': '1gm899o'}
{'comment': 'So informative. Thank you!', 'created': '2024-11-09 05:40:48', 'submission_id': '1gm899o'}
{'comment': 'With political discourse as polarised as it is, I would be surprised to find many people not voting one colour all down ticket', 'created': '2024-11-08 14:45:34', 'submission_id': '1gm899o'}
{'comment': 'Pete’s ears perked up.', 'created': '2024-11-08 14:45:22', 'submission_id': '1gm899o'}
{'comment': 'I’m not american, this is the view from outside the house. Maybe I am naive, but a lot of reporting outside of America is showing a lot of Americans saying “a woman shouldn’t be president” and “I think she’d be too emotional.”\n\nIf the focus was on policy, I’d say that she didn’t have much but what she did have was soundly rejected for a “strong man” alternative.', 'created': '2024-11-08 18:41:41', 'submission_id': '1gm899o'}
{'comment': 'Seems a general blood bath for dems in all branches except some state level offices. Senate, house, and president all red', 'created': '2024-11-08 13:44:46', 'submission_id': '1gm899o'}
{'comment': 'Democrats somehow.', 'created': '2024-11-08 13:53:24', 'submission_id': '1gm899o'}
{'comment': "Exactly man. I don't trust the Democrats to ever actually do anything. Minimum wage is still $7.25 in my state. That's fucking absurd. \n\nDemocrats ALWAYS have an excuse why they can't get policy passed, or infight to the point of deadlock. Yet Republicans ALWAYS find a way to strongarm in their bullshit even when not fully in power because the Dems just roll over every time", 'created': '2024-11-08 18:20:29', 'submission_id': '1gm899o'}
{'comment': 'Dems have been bait-and-switch since 1992: Run as a progressive, then govern as a kowtowing centrist.', 'created': '2024-11-08 13:26:06', 'submission_id': '1gm899o'}
{'comment': 'I can’t upvote this enough. And let’s not forget the debacle that’s been the promise to forgive student loan debt.', 'created': '2024-11-08 12:21:43', 'submission_id': '1gm899o'}
{'comment': 'Ugh. Again with this. \n\nWomen also voted. And they voted against her. And both men and women voted for *other* women. \n\nWomen and men voted *for* abortion and *against* Harris. \n\nShe’s the VP of an unpopular, senile, incumbent. She had 100 days to make it happen. It was impossible. \n\nObama would’ve also failed. \n\nShe was given an impossible talk. It was never happening. She was setup to fail from the start.', 'created': '2024-11-08 13:53:23', 'submission_id': '1gm899o'}
{'comment': 'I’m not educated in law, geopolitics, or economics. I do not have a degree. I have industry certifications. \n\nI still understand right from wrong. I still understand what national secrets are. I understand what a sex offender is. \n\nI believe that mainstream media did the country a disservice in not reporting on Trump in such a way that the common person could understand.', 'created': '2024-11-08 15:19:48', 'submission_id': '1gm899o'}
{'comment': "They also have no morals. Very selfish people. They don't care who he attacks as long as it's not them and they get something out of it.", 'created': '2024-11-08 18:46:57', 'submission_id': '1gm899o'}
{'comment': 'I didn’t say they were?', 'created': '2024-11-08 14:54:17', 'submission_id': '1gm899o'}
{'comment': 'They will find another vulnerable group to try and scare people with. They just will move on. I think a lot of people would have just voted for any white man against a black woman no matter what and look for reasons to justify it.', 'created': '2024-11-08 18:33:32', 'submission_id': '1gm899o'}
{'comment': 'This is what Trump voters themselves said was their major issue', 'created': '2024-11-08 16:38:41', 'submission_id': '1gm899o'}
{'comment': 'But in the meantime Trump will have seated five extreme Supreme Court judges that will destroy us.', 'created': '2024-11-08 13:43:55', 'submission_id': '1gm899o'}
{'comment': "100% if the prices in '28 are higher than '24 again donnie/JD or who ever wont win it for GOP.", 'created': '2024-11-08 15:20:05', 'submission_id': '1gm899o'}
{'comment': 'I can tell you the Hispanic Latino community is not on board with Transgender policies and a lot of Woke Dem concepts.', 'created': '2024-11-08 15:25:08', 'submission_id': '1gm899o'}
{'comment': 'But do you think the Catholic Church will say a damn thing when the deportations start? Latin Americans are overwhelmingly Catholic. Guess who will be shipped off to the “camps”?', 'created': '2024-11-08 14:13:24', 'submission_id': '1gm899o'}
{'comment': "Unfortunately for them they won't be voting for anyone ever again in this country now. The Trump administration has publicly espoused their plans for denaturalizing certain US citizens and deporting them. Even if they can't successfully deport them, a lot of these Latinos just voted their own citizenship away.", 'created': '2024-11-08 13:58:15', 'submission_id': '1gm899o'}
{'comment': '>The Latino vote is not homogeneous\n\n>And Latino men won’t vote for a Black woman.\n\nWhat', 'created': '2024-11-08 15:15:29', 'submission_id': '1gm899o'}
{'comment': "Dems just need to find a populous centrist White Male married man with kids and blonde wife to run for president in '28.", 'created': '2024-11-08 15:26:23', 'submission_id': '1gm899o'}
{'comment': 'Latinos are moving to Trump for the exact same reason that working class whites did 8 years ago. \n\nWe shouldn’t be surprised because they have a lot in common.', 'created': '2024-11-08 15:09:03', 'submission_id': '1gm899o'}
{'comment': "A big chunk of them did it the right way after overstaying a visa (the wrong way). There's a lot of Latino citizen immigrants that don't want other immigrants to obtain what they have. They interact, socialize with, even have family members who are, undocumented and like that they, in their minds, have a higher social status (because they're citizens).", 'created': '2024-11-09 02:32:57', 'submission_id': '1gm899o'}
{'comment': 'Many Asian voters in Pittsburgh & Philly.', 'created': '2024-11-08 15:51:28', 'submission_id': '1gm899o'}
{'comment': "If neither side is making a convincing case, people will choose the side that is a change. Harris was VP. Granted, there's not a whole lot she can do in that role, but she is still part of the administration in power. Voting for her is not a vote for change. People, in general, not just Republicans, aren't generally forward thinking enough to realize that change might make things worse.", 'created': '2024-11-08 14:41:46', 'submission_id': '1gm899o'}
{'comment': 'Pete is great, but America just showed us how misogynistic it is. Don’t make it show us it’s homophobia too.', 'created': '2024-11-08 15:09:25', 'submission_id': '1gm899o'}
{'comment': 'I would love to vote for Pete. He would probably be my number one choice.\n\nBut no. He is gay. And if this election has taught us anything, it’s that a LOT of voting Americans will not vote for any minority anymore. Obama winning broke something inside them.\n\nWe just need to find a nice, young, white, Protestant, male to run like it’s still the goddamn 1950s.', 'created': '2024-11-08 18:02:11', 'submission_id': '1gm899o'}
{'comment': "Actually not true. Super tough Senate map and a lot of House races in CA to be called. It appears ticket splitting was actually a thing this year. A red wave would have had 56-57 senate seats and the House a no doubter...didn't happen.", 'created': '2024-11-08 13:51:50', 'submission_id': '1gm899o'}
{'comment': 'Except Republicans don’t always find a way to strongarm their bullshit. They famously failed to repeal the ACA and replace it with their plan. They had an historically difficult time choosing a Speaker last year and even he didn’t last a year.', 'created': '2024-11-09 02:43:42', 'submission_id': '1gm899o'}
{'comment': 'You are ignoring that the President cannot do these things by fiat. Biden tried multiple times to cancel student debt, and was blocked at every turn. Even in the Senate, you had to deal with Manchin and Sinema. I am torn between resisting and throwing a wrench in everything Drumpf does, or sitting back and letting the country burn.', 'created': '2024-11-08 12:34:07', 'submission_id': '1gm899o'}
{'comment': 'Please tell me what else Democrats could have done? Republicans have sued them every time they’ve tried to forgive student loan debt and they keep winning because the courts are packed with Republican judges. Why are you blaming Democrats for not doing something they are trying to do?', 'created': '2024-11-08 18:05:19', 'submission_id': '1gm899o'}
{'comment': "You don't think women can't be mysogynistic, too? Boy, I got news for you!", 'created': '2024-11-08 18:40:54', 'submission_id': '1gm899o'}
{'comment': 'If they talked about trumps crimes the same way Trump talked about Harris’s accomplishments he wouldn’t have been allowed to run.', 'created': '2024-11-08 15:56:50', 'submission_id': '1gm899o'}
{'comment': 'There’s nothing really wrong with voting with your wallet. I encourage people to vote for their interests but be informed. The president doesn’t control the price of eggs but they can influence inflation by policy. Biden inherited a shit show and we are finally getting back to normalcy or seemingly relative normalcy when it comes to costs. And trump is going to come in a fuck it all up again. Just for another democrat to have to come in and clean up the mess and the cycle continues again and again.', 'created': '2024-11-08 15:51:30', 'submission_id': '1gm899o'}
{'comment': "I agree with you. Media is a huge problem. American traditional and alternate media both suck as real information sources. But an average person with an average busy life doesn't have time or energy for a deep dive. They save that for the grind.", 'created': '2024-11-08 16:23:12', 'submission_id': '1gm899o'}
{'comment': "I would humbly suggest Democrats listen to ordinary people who voted for Trump (not the lunatic far right, they're a lost cause). Blue and purple specks in red country know plenty of good people who either sat this one out or voted Trump. Not out of hate or spite, but for other reasons. Ignore the trolls, Nazis and assholes and see what real normal people are saying.", 'created': '2024-11-08 19:47:29', 'submission_id': '1gm899o'}
{'comment': "Chill, they aren't arguing with you just adding commentary", 'created': '2024-11-08 15:40:47', 'submission_id': '1gm899o'}
{'comment': 'You think Trump voters are being truthful?', 'created': '2024-11-08 17:26:15', 'submission_id': '1gm899o'}
{'comment': 'Crazy idea - Biden talks with Sonia Sotomayor who is 70 now and ask if she is willing to give up her seat for Kamala Harris.', 'created': '2024-11-08 15:22:36', 'submission_id': '1gm899o'}
{'comment': 'The oldest of which is 59, right now Thomas is 83, you have 20+ years of a conservative majority and that’s assuming that no other republicans nominate justices during that 20+ year period.', 'created': '2024-11-08 15:02:05', 'submission_id': '1gm899o'}
{'comment': 'How do they feel about mass deportation? That’s what the rubes and Peewee German are clamoring for. They can think about how much they hate trans folk when they are “de-naturalized” and their loved ones are shipped off.', 'created': '2024-11-08 15:55:55', 'submission_id': '1gm899o'}
{'comment': "Most voters aren't forward thinking enough to see the effects of their own causes. Especially when they're subject to propaganda.", 'created': '2024-11-08 14:43:31', 'submission_id': '1gm899o'}
{'comment': 'We don’t know that, and if there’s one thing we can count on from the upcoming administration, there will be infighting amongst them.', 'created': '2024-11-08 18:13:29', 'submission_id': '1gm899o'}
{'comment': 'Puerto Rican-Americans in Florida are not going to have much in common with Colombian-Americans in California.', 'created': '2024-11-08 18:10:56', 'submission_id': '1gm899o'}
{'comment': 'Blonde might be over the top. But yes to populist. Not so sure about centrist.', 'created': '2024-11-08 18:09:28', 'submission_id': '1gm899o'}
{'comment': 'Ignorance?', 'created': '2024-11-08 16:39:34', 'submission_id': '1gm899o'}
{'comment': 'I definitely agree with this. Being hardcore religious to watching Fox all day long they have a lot in common.', 'created': '2024-11-08 16:02:28', 'submission_id': '1gm899o'}
{'comment': 'Yeah exactly, Eastern states.', 'created': '2024-11-09 05:11:29', 'submission_id': '1gm899o'}
{'comment': 'It has to be Josh Shapiro then. Oh wait…', 'created': '2024-11-08 16:39:54', 'submission_id': '1gm899o'}
{'comment': 'I got downvoted in another Dem sub post for suggesting “Pete is amazing, but it won’t be him in 2028.” That’s the issue fellow Dems. I guarantee you the first female potus will be a “magapublican” white woman \n\n\nWe need to put our ears on the ground in counties that flipped and truly support those folks and their needs, whether they are anti-gay or anti-abortion.', 'created': '2024-11-08 19:13:05', 'submission_id': '1gm899o'}
{'comment': '*Andy Bashear has entered the chat', 'created': '2024-11-09 02:34:51', 'submission_id': '1gm899o'}
{'comment': "Again, I disgree. We did eek out some wins in the senate but when all is said and done the Republicans will have control of all 3 branches of government. That's a red wave in my book", 'created': '2024-11-08 14:16:30', 'submission_id': '1gm899o'}
{'comment': 'You’re ignoring the fact that it was an election promise that was made that smarter people than you or I (that were running the Biden campaign) should have known could not be fulfilled.', 'created': '2024-11-08 18:31:39', 'submission_id': '1gm899o'}
{'comment': 'Yes it’s all misogyny. Which is why they voted for Elisa Slotkin in MI. The Democratic *female* candidate. Who beat the white Republican male. Those misogynists!\n\nAnd who is the Governor still there with net positive approvals? Mhm.', 'created': '2024-11-09 03:38:50', 'submission_id': '1gm899o'}
{'comment': "You're not wrong. It would help if the Democratic party understood that and had both a coherent, relatable, comprehensible message and a clear plan they can lay out. I think Walz came closest but he was sadly underutilized.", 'created': '2024-11-08 16:25:58', 'submission_id': '1gm899o'}
{'comment': "And Biden's policies will continue to be positive long enough into Trump's presidency that his followers will think he did it. 🙄", 'created': '2024-11-08 17:47:24', 'submission_id': '1gm899o'}
{'comment': 'Ordinary people are about to see how well Trump will protect their interests.', 'created': '2024-11-08 20:37:32', 'submission_id': '1gm899o'}
{'comment': 'When it comes to an anonymous survey that asks for their opinions yes I do. They want their grievances to be heard', 'created': '2024-11-08 17:29:23', 'submission_id': '1gm899o'}
{'comment': 'Or anyone else. Trump shoved ACB down our throats after he lost his election bid. We still have a majority in the senate.', 'created': '2024-11-08 15:25:49', 'submission_id': '1gm899o'}
{'comment': 'Sonia Sotomayor who is 70 vacates for sake of country and gives it Kamala Harris 60?', 'created': '2024-11-08 15:23:24', 'submission_id': '1gm899o'}
{'comment': 'Yeah no shit. I’m pointing out that you said they shouldn’t be lumped together and then immediately lumped them together', 'created': '2024-11-08 18:12:19', 'submission_id': '1gm899o'}
{'comment': 'Democrats do not have a message problem. They have a Democrat media message.. problem. Long story short. There is no Liberal Media.', 'created': '2024-11-08 16:30:19', 'submission_id': '1gm899o'}
{'comment': "That's what would happen normally. But I don't think that will happen this time. Those tariffs are going to increase prices from the word go, and that's going to have cascading effects. 2026 is, if Trump does what he promises, going to be an economic hardship like we've never seen.\n\nI've already started buying things I want from Amazon (ie flashlights, solar chargers, etc) under the idea that they'll spike in price when the tariffs hit, and I'm planning on stocking up on nonperishables like canned goods, flour, etc.", 'created': '2024-11-08 19:12:30', 'submission_id': '1gm899o'}
{'comment': 'You’re probably right but I hope you’re wrong haha.', 'created': '2024-11-08 17:55:34', 'submission_id': '1gm899o'}
{'comment': 'If he does what he says he will it won’t take long to tank the markets and economy.', 'created': '2024-11-08 18:30:17', 'submission_id': '1gm899o'}
{'comment': "Yeah, you're right. But that doesn't change the basic tenets of human communication.", 'created': '2024-11-08 20:38:32', 'submission_id': '1gm899o'}
{'comment': "And....by that logic, you think that as long as they're assured anonymity, they would freely be honest about their motivations really being because they're just racist, sexist, and homophobic? Just another redditor who must never step outside and interact with other human beings ever, huh", 'created': '2024-11-08 17:36:51', 'submission_id': '1gm899o'}
{'comment': 'Well, even though they are diverse in many ways, do you see Latino men in America voting for a Black woman to be a president?', 'created': '2024-11-08 18:14:55', 'submission_id': '1gm899o'}
{'comment': 'Agree to disagree about the messaging. But I definitely agree on the media.', 'created': '2024-11-08 16:32:48', 'submission_id': '1gm899o'}
{'comment': 'Ughhh 😩', 'created': '2024-11-08 22:47:25', 'submission_id': '1gm899o'}
{'comment': 'Elon Musk said a few days ago he is going to tank the economy and build it back up again. This frightening prospect makes me glad I have a small camper to live in.', 'created': '2024-11-08 20:10:13', 'submission_id': '1gm899o'}
{'comment': "lmao because I disagree with you I must never go outside huh? Your telling them what they think is part of why we lost but go ahead and tell them you know better and ignore what they are saying, I'm sure that will win elections in the future! Be sure to insult people on the same side as you too, alienating people is a great way to get people to the polls next time!", 'created': '2024-11-08 17:39:08', 'submission_id': '1gm899o'}
{'comment': 'We need candidates that aren’t boring for the media to want to talk about them. Trump demands the medias attention. Status quo is boring for outsiders. It’s just pretty simple marketing. You know the stupid saying negative coverage is better than no coverage or however it goes.', 'created': '2024-11-08 17:01:41', 'submission_id': '1gm899o'}
{'comment': 'Get ready for drama again then. I, for one want my politics and politicians "boring" I don\'t want them sucking up all the air everyday and wondering what they\'re going to do next causing problems. \n\nIf that\'s what America wants then they sure got it coming! I\'m pretty sure most of them will regret it soon though just like last time. I just can\'t believe they didn\'t learn their lesson the first time...', 'created': '2024-11-08 17:58:29', 'submission_id': '1gm899o'}
{'comment': 'Obama wasn’t boring or controversial. But he demanded attention by his presence and how he spoke.', 'created': '2024-11-08 18:20:04', 'submission_id': '1gm899o'}
{'comment': 'I think all the presidents before Trump were just so much more presidential and civil but it seems that has been lost', 'created': '2024-11-08 18:22:25', 'submission_id': '1gm899o'}
{'comment': 'In a perfect world that should be enough. But unfortunately I think dems are going to need to match energies but that doesn’t mean they have to be disrespectful or non presidential.', 'created': '2024-11-08 18:38:27', 'submission_id': '1gm899o'}
{'comment': 'I wonder if they might have to though even though it turns me off', 'created': '2024-11-08 19:44:06', 'submission_id': '1gm899o'}
{'comment': 'Yeah I’ve heard it’s going to be Newsome getting a push. He can probably cause some excitement but I worry his record is going to kill him.', 'created': '2024-11-08 20:02:35', 'submission_id': '1gm899o'}
{'comment': "I've heard rumblings of the same. I do agree that I think there needs to be someone feisty that can fight back, politically speaking", 'created': '2024-11-08 20:15:12', 'submission_id': '1gm899o'}
{'comment': 'He also said that he was so sure that Trump would win. If Trump didn’t win, he’d give away his fortune.', 'created': '2024-11-08 03:37:25', 'submission_id': '1gm7vdp'}
{'comment': "They never say shit when they win. That's the hypocrisy of the MAGATS.", 'created': '2024-11-08 03:36:59', 'submission_id': '1gm7vdp'}
{'comment': 'Does this mean the election was RIGGED? Did Trump and the Republicans STEAL THIS ELECTION? /s', 'created': '2024-11-08 03:35:43', 'submission_id': '1gm7vdp'}
{'comment': "Win=elections were fair\nLoss=f democracy, let's tear this country down\n\nWelcome to Idiocracy", 'created': '2024-11-08 03:36:58', 'submission_id': '1gm7piy'}
{'comment': 'Funny how it’s only “fraud” when they lose… but not when they win.\n\nAlso lol @ that’s going to be our new Vice President. Let that sink in for everyone. 😩', 'created': '2024-11-08 04:19:50', 'submission_id': '1gm7piy'}
{'comment': 'It all disappeared like a miracle', 'created': '2024-11-08 04:23:09', 'submission_id': '1gm7piy'}
{'comment': "Has anyone by chance seen Seth Meyer's skit where Haley Joel Osment plays Vance, *christ* he looks and sounds just like him 🤣 I'm hoping they keep him around in since Vance will be around longer LOL.", 'created': '2024-11-08 06:56:12', 'submission_id': '1gm7piy'}
{'comment': 'Why is it all proud boy homophobes have pic of them in women’s clothes looking really happy and comfortable.', 'created': '2024-11-08 21:43:44', 'submission_id': '1gm7piy'}
{'comment': 'I don’t need to go on a diet - I’ll just paste this picture on my fridge and then immediately lose my appetite.', 'created': '2024-11-08 15:48:51', 'submission_id': '1gm7piy'}
{'comment': 'I don’t believe in Democracy', 'created': '2024-11-08 03:51:02', 'submission_id': '1gm7piy'}
{'comment': "It's almost as if it really is the people who choose their leaders, instead of having some super duper secret cobal of rich elite secret society, run by baby eating satan worshipping, communist, Liberals.", 'created': '2024-11-08 16:32:48', 'submission_id': '1gm7piy'}
{'comment': 'This pic is so funny!! It makes me lol every time I see it. 😊💙🇺🇦', 'created': '2024-11-08 05:41:44', 'submission_id': '1gm7piy'}
{'comment': "As a queer person, y'all posting this image over and over as an attempt to attack Vance is concerning.\n\nLegit making fun of him for wearing femme clothes. It makes me feel less safe in the only party even pretending to offer us safety.", 'created': '2024-11-08 07:40:32', 'submission_id': '1gm7piy'}
{'comment': 'Ya, we all knew it was crazy. If you knew that then this was expected. What’s the story? Dems>Reps?\n\nGood luck spending energy on that message', 'created': '2024-11-08 07:35:56', 'submission_id': '1gm7piy'}
{'comment': 'Our new president, eventually, because Trump is definitely going to die (old age, heart attack, what have you) between now and 2028……. Which is even fucking worse.', 'created': '2024-11-08 11:47:06', 'submission_id': '1gm7piy'}
{'comment': 'And just like that, republicans are ok with drag queens', 'created': '2024-11-08 12:27:36', 'submission_id': '1gm7piy'}
{'comment': 'It’s because they’re faux alpha males. These guys claim to be macho, but really they want to be topped by Trump.', 'created': '2024-11-08 21:46:47', 'submission_id': '1gm7piy'}
{'comment': 'I don’t trust anyone anymore', 'created': '2024-11-08 05:33:03', 'submission_id': '1gm7piy'}
{'comment': 'So, people want to worship Trump instead?', 'created': '2024-11-08 16:41:09', 'submission_id': '1gm7piy'}
{'comment': "> Legit making fun of him for wearing femme clothes\n\nExcept that isn't what is happening. We are making fun of him for being a hypocrite.", 'created': '2024-11-08 11:18:19', 'submission_id': '1gm7piy'}
{'comment': 'I don’t even think Trump will make it the entire term', 'created': '2024-11-08 12:28:04', 'submission_id': '1gm7piy'}
{'comment': 'If he does croak, then we get Shady Vance and guarantee he knows Fuck All about how to run the country. He will be asking every cabinet member how to do everything.', 'created': '2024-11-08 16:49:40', 'submission_id': '1gm7piy'}
{'comment': 'I do. There are those that "mucky the waters", and those that "clear things up".\n\nClean water is good for drinking.\nMucky water is good for hiding in.', 'created': '2024-11-08 07:47:26', 'submission_id': '1gm7piy'}
{'comment': "No, I was doing a bit about how republicunts think there's a secret government rigging the elections.", 'created': '2024-11-08 16:54:44', 'submission_id': '1gm7piy'}
{'comment': 'I agree with you', 'created': '2024-11-08 12:26:43', 'submission_id': '1gm7piy'}
{'comment': 'At this point, that toddling leather bag oozing makeup and dementia might not even make it to January. \n\nAnd that was their plan the whole time - find a complete and total moron to manipulate, and boy did they get the BIGGEST moron of them all, the biggest puppet.', 'created': '2024-11-08 12:29:40', 'submission_id': '1gm7piy'}
{'comment': 'I wish on some level that I believed that, but don’t underestimate the power of evil to keep people alive. Trump is a like a really stupid version of Emperor Palpatine.', 'created': '2024-11-08 21:41:10', 'submission_id': '1gm7piy'}
{'comment': 'Oh! Yeah, it’s weird.', 'created': '2024-11-08 17:16:34', 'submission_id': '1gm7piy'}
{'comment': 'Sadly, you do have a point. They chose Trump for a reason.', 'created': '2024-11-08 12:31:17', 'submission_id': '1gm7piy'}
{'comment': 'Oh yeah, especially overseas. Putin is doing his happy dance right now. A little bit of flattery and Trump will hand over the nuclear codes.', 'created': '2024-11-08 15:42:13', 'submission_id': '1gm7piy'}
{'comment': 'Meh. You do have a point. A coworker once told me that some people are too selfish to die.', 'created': '2024-11-08 21:47:23', 'submission_id': '1gm7piy'}
{'comment': 'Agreed.', 'created': '2024-11-08 17:17:10', 'submission_id': '1gm7piy'}
{'comment': 'I think it’s odd that conservative senior citizens don’t believe Trump will try to cut their benefits', 'created': '2024-11-08 17:18:41', 'submission_id': '1gm7piy'}
{'comment': 'https://preview.redd.it/n8vzxt3lepzd1.jpeg?width=2316&format=pjpg&auto=webp&s=5f854544123ca5ab5a396ee7a6828c06ac12a79a', 'created': '2024-11-08 17:23:41', 'submission_id': '1gm7piy'}
{'comment': 'That’s how I feel about some of my Republican coworkers.', 'created': '2024-11-08 18:03:51', 'submission_id': '1gm7piy'}
{'comment': 'Can I dm you a recent text I had with my boss? Apologies if that sounds weird.', 'created': '2024-11-08 18:15:45', 'submission_id': '1gm7piy'}
{'comment': 'Sure', 'created': '2024-11-08 18:28:14', 'submission_id': '1gm7piy'}
{'comment': 'Patience. \n\nIt’s a virtue. \n\nWhen these assholes finish burning America to the ground, we’ll restore it to its rightful glory. \n\nPatience, friends. Patience. \n\n10/10 they’ll destroy themselves if we just stay the fuck out of the way. There’s no loyalty amongst thieves. \n\nPatience.', 'created': '2024-11-08 06:06:03', 'submission_id': '1gm73jj'}
{'comment': 'this made me laugh, thanks', 'created': '2024-11-08 05:34:24', 'submission_id': '1gm73jj'}
{'comment': 'It may take decades or longer, but there will always be whispers and folktales of a mighty democracy that once stood here. \n\nBy this time, the history books will have already been rewritten and only teach about the great MAGA Reich and the oligarchs who controlled it. Public schools will be long gone, only correct political thinking will be taught. \n\nIn the meantime, Trump will create thousands of new jobs for the newly formed MAGA Gestapo. \nAfter the mass deportations have occurred, massive work farms for the women and children will begin. They will be slaves to the oligarchs, all wealth will go directly to them. \n\nAs seniors and those with disabilities are a drain and can’t contribute as much the MAGA Gestapo will gleefully and cruelly beat them to their death. Cruelty was what formed their wet dreams so this is a task they will undertake with great pleasure. \n\nPolitical dissidents will be sent to reeducation camps. \n\nMAGA Gestapo will report those not seen to be MAGA enough. \n\nHistory truly does repeat itself without guardrails. The voters have chosen this. \n\nThe resistance will always be here and will survive. In time may their strength rise up once again.', 'created': '2024-11-08 13:25:03', 'submission_id': '1gm73jj'}
{'comment': "I disagree. The voters were intimidated under threat of great bodily harm or death. That's not how a free and fair election works in a healthy democracy\n\nhttps://preview.redd.it/s5nt10ue7pzd1.jpeg?width=3032&format=pjpg&auto=webp&s=49f806fab116b83f2e5b76b563eac3d507e091e8", 'created': '2024-11-08 16:43:28', 'submission_id': '1gm73jj'}
{'comment': 'I understand that only 20% voted for him, but this was amplified by dems not voting or swing state machinations.', 'created': '2024-11-08 08:47:53', 'submission_id': '1gm6trk'}
{'comment': 'https://preview.redd.it/fs0j59mk0lzd1.jpeg?width=2976&format=pjpg&auto=webp&s=f79c9332c6201701b825ffcb09174d9f5fdfc97b', 'created': '2024-11-08 02:38:01', 'submission_id': '1gm6trk'}
{'comment': 'What is the second image from?', 'created': '2024-11-08 16:15:46', 'submission_id': '1gm6trk'}
{'comment': 'remember… MAGA thought this when Biden won that we would have a socialist republic. trump is an awful man, but we won’t be facist. however, we can’t get complacent.. vote and fight the government like hell. we are gonna need it.', 'created': '2024-11-08 02:43:04', 'submission_id': '1gm6trk'}
{'comment': 'What are you gonna do? He won the popular vote, so we can’t even bitch about the electoral college this time.', 'created': '2024-11-08 07:04:57', 'submission_id': '1gm6trk'}
{'comment': "They're both from Midsommar. That's Dani's sister, who was found like that after she sent Dani that messed up email.", 'created': '2024-11-09 07:08:03', 'submission_id': '1gm6trk'}
{'comment': "Trump already is a textbook fascist. He might not be a dictator yet, but has great chances if that's what he wants.", 'created': '2024-11-08 06:50:10', 'submission_id': '1gm6trk'}
{'comment': 'So we’re just going to ignore the past 5 years of him saying he’s going to be a dictator?', 'created': '2024-11-08 05:23:52', 'submission_id': '1gm6trk'}
{'comment': "He'll try to be a facist.", 'created': '2024-11-08 04:00:40', 'submission_id': '1gm6trk'}
{'comment': 'He has full control now though. The Supreme Court isn’t going to stop him, the legislative branch isn’t going to stop him. Who will?', 'created': '2024-11-08 03:13:44', 'submission_id': '1gm6trk'}
{'comment': 'This is the optimistic view. They have been planning this, remember. They don’t seem to care about anything or anyone. We’ll see, but optimism is probably part of why some democrats stayed home.', 'created': '2024-11-08 17:28:17', 'submission_id': '1gm6trk'}
{'comment': '>but we won’t be facist.\n\nYou mean our country?\n\nTrump has a pretty good start on this list\n\nhttps://preview.redd.it/zt48eyv2ypzd1.jpeg?width=320&format=pjpg&auto=webp&s=3c10abe7b7f18f31675583f4ff4a77d49053f026\n\nAnd then when you look at how much fascist rhetoric Trump has used, you might not want to bet on that sentiment.', 'created': '2024-11-08 19:12:56', 'submission_id': '1gm6trk'}
{'comment': "MAGA are professional fear mongers.\xa0 I don't think their opponents are that.\xa0 Canadian resident speaking.\xa0\xa0\n\n\nyou are probably right that your country won't have as many of the overtly visible features that Italy had in the 1940's.\xa0 \xa0I suspect you'll be getting a sort of hybrid of Poland's PiS (virulent Catholicism), Zimbabwe (Big Man chaos, corruption and citizen violence), and white supremacy.\xa0 \xa0\xa0\n\n\nlocal and state voting.\xa0 \xa0and speech while it's still possible.\xa0\xa0", 'created': '2024-11-11 03:49:43', 'submission_id': '1gm6trk'}
{'comment': 'there’s so many ways to stop him. my dad grew up under a dictatorial regime (enver hoxha). he knows men like trump are all bark no bite. trump spews bullshit and wants to look scary.', 'created': '2024-11-08 05:53:42', 'submission_id': '1gm6trk'}
{'comment': 'What part of “fight the government like hell” suggests ignores his unhinged plans?', 'created': '2024-11-08 18:32:05', 'submission_id': '1gm6trk'}
{'comment': 'He already is a fascist.', 'created': '2024-11-08 06:48:49', 'submission_id': '1gm6trk'}
{'comment': 'We the people will', 'created': '2024-11-08 04:08:50', 'submission_id': '1gm6trk'}
{'comment': 'he’s been so quiet. i think he is in it for the pardons.', 'created': '2024-11-09 16:44:28', 'submission_id': '1gm6trk'}
{'comment': 'my thing is if he was really gonna be a dictator, he would be so outspoken and running his mouth on major media outlets. he’s been away from the media.', 'created': '2024-11-09 16:45:36', 'submission_id': '1gm6trk'}
{'comment': 'I really hope so…I just can’t believe how many millions of people are on his side.', 'created': '2024-11-08 04:10:22', 'submission_id': '1gm6trk'}
{'comment': 'Apparently not.', 'created': '2024-11-08 08:33:40', 'submission_id': '1gm6trk'}
{'comment': 'It’s truly shocking how they know he’s evil and they LIKE it, and I hate a bunch of my own generation for becoming MAGA occupiers', 'created': '2024-11-08 04:13:12', 'submission_id': '1gm6trk'}
{'comment': 'trump was the backlash to Obama. trump ran on breaking down everything Obama did, and won… in 2016. 2020 was Covid, everyone hated everyone but it was still close. 2024 is just back to breaking down what was built up. “Fuck Obama care, I have something better” really moron? What is it…….', 'created': '2024-11-08 03:15:17', 'submission_id': '1gm6wm6'}
{'comment': 'Sometimes I like to close my eyes and pretend he’s still president', 'created': '2024-11-08 03:10:04', 'submission_id': '1gm6wm6'}
{'comment': '1. Trump\'s rise was in part due to the far right\'s having to "endure" a black president for eight years. 2. The corporate media worked overtime to sanewash Trump. 3. She is female.', 'created': '2024-11-08 02:51:05', 'submission_id': '1gm6wm6'}
{'comment': '>Factor by which Americans are more likely to disapprove of a woman’s election to the presidency than a person of color’s : three.\n\nSource: https://harpers.org/harpers-index/', 'created': '2024-11-08 02:29:38', 'submission_id': '1gm6wm6'}
{'comment': 'Patton Oswalt said it best in 2016: Tonight we learned that America is more sexist than racist, and it’s pretty fucking racist.', 'created': '2024-11-08 03:55:22', 'submission_id': '1gm6wm6'}
{'comment': 'Obama was after a republican messed things up. Harris was after Biden was getting things settled down. Dems get lazy when things settle down.', 'created': '2024-11-08 04:33:25', 'submission_id': '1gm6wm6'}
{'comment': "Because she's a woman. That's literally it. She could have done everything perfectly and she still would have lost. Because even the best woman (which I'm not saying Kamala is) is still considered less fit for office than the worst man. Hilary was the most qualified person to ever run for president, and she also lost. We will not see a woman president in our lifetimes. The bar is impossibly high for female candidates, and that is by design.", 'created': '2024-11-08 05:50:08', 'submission_id': '1gm6wm6'}
{'comment': 'Obama: 2/2. \nTrump: 2/3.\n\nObama will always be above you, bro!\n\nWe know he lives rent free in your head.', 'created': '2024-11-08 06:37:49', 'submission_id': '1gm6wm6'}
{'comment': 'Where did everything fall apart? It started the day Paul Ryan didn\'t stand up to Trump when he should have. Paul Ryan enabled the malignant cancer that is Donald Trump. Paul Ryan condemned Trump for his racist remarks before he became president but failed to follow through once Trump was in office. He accommodated Trump and the rest is history because then all others in Republican leadership fell in line. \n\nI know we like to condemn Trump supporters and how they vote. But who we should really be blaming is the Republican leadership. These "leaders" didn\'t lead when it mattered most and now their constituents voted in someone who may turn into an authoritarian. It\'s not Trump supporters fault, it\'s their leadership that should have grown a backbone and should have known better.', 'created': '2024-11-08 03:02:45', 'submission_id': '1gm6wm6'}
{'comment': 'Because nobody thought the change ideology was what is important right now.\n\nEconomy and immigration was the priority for voters', 'created': '2024-11-08 02:36:35', 'submission_id': '1gm6wm6'}
{'comment': 'https://preview.redd.it/78u35a9i0lzd1.jpeg?width=2976&format=pjpg&auto=webp&s=8ecba54d92e2c0d927613e1bda03819b7bf8ea47', 'created': '2024-11-08 02:37:38', 'submission_id': '1gm6wm6'}
{'comment': 'I dunn. What I do think is that the DNC needs to let go of the establishment/status quo and stop being so held back by the big donors. We need someone who will break the status quo like Trump, except instead of kicking immigrants out, temporarily lowering prices with tax cuts (that hurt the government), and retracting rights our candidate would be for trust-busting and returning economic power/wealth to the people, with an increase in rights and toleration along for the ride,', 'created': '2024-11-08 04:53:46', 'submission_id': '1gm6wm6'}
{'comment': 'Wasn’t anything to do with change. Biden has to shoulder the blame for this loss. He was supposed to be a one-term “transitional” candidate. But then he got high on his own supply and decided to run again. There was no contestation at the primaries. He got nominated. Then the debate in June caused everyone to simultaneously shit their pants and pressured him to withdraw his candidacy, which he did…with only 100 days til the election.\n\nHarris was put in an impossible situation. There were dozens of better choices out there but because of the time factor and the fact that she was nominated for the vice presidency the Dems had no choice. \n\nIf Biden had just declined to run again before the primaries a legit primary election could have been held and the best Democratic candidate could have been chosen, and had a full campaign season to work with.', 'created': '2024-11-08 02:37:25', 'submission_id': '1gm6wm6'}
{'comment': "Obama was very charismatic. That was much more important than his policies or his accomplishments. One could say Biden arguably accomplished more in his presidency, but there was no way in hell he was winning a second term because he just didn't have Obamas charisma. Obama was articulate, had a winning personality, and appealed to voters. Another thing is he ran a very good campaign and won the primaries. Harris did neither. Maybe if she had run in the primaries and been campaigning for longer, it would have made a difference, I don't know, but being railroaded into voting for her, I think, is one reason 5 million dems didn't vote, and why even more may have voted 3rd party. And we should also address the elephant in the room: Harris is a woman. That may be a reason she didn't sway enough Independents and undecided voters to win. I'm not sure this country is ready for a female president, as loath as I am to say it. Honestly, I thought anyone could beat Trump at this point, and I am both surprised and disappointed by this outcome.", 'created': '2024-11-08 03:16:21', 'submission_id': '1gm6wm6'}
{'comment': 'Because we chose Obama. Winning a primary means you gathered nationwide coalition. Folks just never really got that into Kamala sadly', 'created': '2024-11-08 03:09:40', 'submission_id': '1gm6wm6'}
{'comment': 'Because the change ideology got the attention of the working class after 8 years of Republican control. Obama is also Obama and Harris is Harris. Shes a fine public speaker but she can get caught in awkward moments when it comes to interviews where it seems like she doesn’t want to answer the question. Obama could really grab hold of a narrative and inspire you. We also weren’t living in a time where toxic masculinity runs rampant.', 'created': '2024-11-08 05:47:14', 'submission_id': '1gm6wm6'}
{'comment': 'Look Obama was an inspiring politician in many ways; however, what did he *really* achieve while in office? \n\nProgressive bits that were overturned instantly under trump. \n\nNo reforms to the undemocratic systems or processes that were in place, like EC, Supreme Court lifetime positions, no representation for PR or DC, etc. \n\nSo many illegal drone strikes.\n\nSo much money spent on war and military industrial complex. \n\nObamacare was a step in right direction but didn’t go nearly far enough \n\nCorporate profits protected at every turn \n\nTotal mishandling of Flint Michigan in favour of corporations \n\nPFAS and more chemicals and sewage in waterways than ever before. Again, thanks corporations that Obama sucked up to \n\nHardly moved the dial on climate change. \n\nNot nearly any enough work on unions of workers. \n\nYes things would probably be marginally be better he he been in power for the last 8 years. But imagining the things that are impacting millions of voters or Americans would’ve been solved with Obama is horseshit.', 'created': '2024-11-08 17:44:11', 'submission_id': '1gm6wm6'}
{'comment': 'Hypothetically, if Barack Obama ran in 2024 and was at the age he ran and won, idk if he would even win. Since Trump, this country is very racist. Sad but true, Trump normalized racism!', 'created': '2024-11-08 03:38:56', 'submission_id': '1gm6wm6'}
{'comment': 'Democrats ignored the pure hatred that brewed during Obama’s presidency. 50% of the country hated him for being black. Obama kept winning because he was EXTREMELY likeable, and because of the recession he pulled us out of. But make no mistake, the racists were LIVID. And by 2016 they had their champion and they were READY… and we weren’t. \n\nKamala is a woman, of color, married to a Jew, coming out of a Vice presidency where the economy and housing are problematic for many people, and had only 3 months to campaign. It was all stacked against her. And I couldn’t believe the dems would make the same mistake as in 2016. \n\nWe needed a young male hero, a fighter who wouldn’t be above going toe to toe with Trump and his people. Who wouldn’t be above going on podcast interviews. The democrat elitism is a dead strategy.', 'created': '2024-11-08 06:16:45', 'submission_id': '1gm6wm6'}
{'comment': 'If the GOP tries for a 3rd term, we want a 3rd term lol', 'created': '2024-11-08 13:10:38', 'submission_id': '1gm6wm6'}
{'comment': "He was a charismatic man who understands people. That's why he won. He built a network under to support him. People are not rational. They are fools. They will follow anyone who makes this feel good even when breathing their last breath.", 'created': '2024-11-08 13:45:10', 'submission_id': '1gm6wm6'}
{'comment': 'Biden could stop this with a few well placed …. official acts. Couldn’t he?', 'created': '2024-11-08 22:57:03', 'submission_id': '1gm6wm6'}
{'comment': "Obama was elected because literally any Democrat with a pulse could've won in 2008. He won fucking Indiana.\n\nPart of that was Obama's charm and wit. But most of it was that it was a highly favorable year for Democrats.\n\nIn retrospect, it should've been Hillary/Obama on the ticket. Then Obama runs in 2016.", 'created': '2024-11-08 06:08:51', 'submission_id': '1gm6wm6'}
{'comment': 'https://preview.redd.it/jppz1box6mzd1.jpeg?width=439&format=pjpg&auto=webp&s=437ff9a68d530c59a9435a00177e00443bca5ca9\n\nObama is MISSED even though Biden did well - except in fighting evilness = tRump!', 'created': '2024-11-08 06:36:22', 'submission_id': '1gm6wm6'}
{'comment': '[removed]', 'created': '2024-11-08 07:26:19', 'submission_id': '1gm6wm6'}
{'comment': 'He has a plan! Well, more of a concept of a plan...', 'created': '2024-11-08 03:17:14', 'submission_id': '1gm6wm6'}
{'comment': 'Enough people dying that hospitals aren’t crowded anymore.', 'created': '2024-11-08 04:40:19', 'submission_id': '1gm6wm6'}
{'comment': 'If 2020 was a reaction to Covid, then 2024 was a reaction to inflation. Who knows what the future holds. I think people like to construct narratives around elections, but I don’t think the world is driven by ideological trends as much as people think it is. It’s a lot more chaotic and numbers driven.', 'created': '2024-11-08 05:53:44', 'submission_id': '1gm6wm6'}
{'comment': 'If the GOP changes the law to allow Trump run for a third term, Obama should run against him.', 'created': '2024-11-08 06:46:47', 'submission_id': '1gm6wm6'}
{'comment': 'GREAT IDEA!', 'created': '2024-11-08 03:12:27', 'submission_id': '1gm6wm6'}
{'comment': 'He was really one of the greatest presidents, of my time, at least', 'created': '2024-11-08 05:50:31', 'submission_id': '1gm6wm6'}
{'comment': 'Reminds me of the SNL music video \n\nhttps://youtu.be/ZkPSbp3zTfo?si=OCrhqw-z4oAJj4MJ', 'created': '2024-11-08 05:44:32', 'submission_id': '1gm6wm6'}
{'comment': 'Same. JFC he was the best.', 'created': '2024-11-08 13:52:36', 'submission_id': '1gm6wm6'}
{'comment': 'Jesus fucking Christ OP', 'created': '2024-11-08 06:21:25', 'submission_id': '1gm6wm6'}
{'comment': '4. Misinformation was farrr less rampant when Obama was running, both times. Social media didn\'t truly mature until the 2016 election, which was the first election in which even older Americans got the majority of their "news" via social media.', 'created': '2024-11-08 03:20:51', 'submission_id': '1gm6wm6'}
{'comment': 'Insane. I truly can’t believe this level of sexism still exists in today’s society…. Well I actually can believe it now. The veil was lifted two days ago', 'created': '2024-11-08 02:39:36', 'submission_id': '1gm6wm6'}
{'comment': 'Thanks.', 'created': '2024-11-08 02:37:52', 'submission_id': '1gm6wm6'}
{'comment': 'Here! Here!', 'created': '2024-11-08 03:56:09', 'submission_id': '1gm6wm6'}
{'comment': "I've been saying that going by resume alone, Clinton had the most qualified one to ever run for office, and yet she lost to a moronic cult of personality. It's was naive of the DNC to think that a minority woman who performed poorly in primaries and was linked to an administration with low favorability would do any better. We need to play to win, not play on our hopes and dreams for the country. Kamala should have demanded a primary, instead she leaped at the chance to be springboarded to the presidency because she knew that she wouldn't have done well in a primary just like in 2020.", 'created': '2024-11-08 06:45:33', 'submission_id': '1gm6wm6'}
{'comment': 'Interesting that you finger Ryan but not someone like Mitch. It was he who destroyed the balance of scotus. It was he who so dreadfully turned the constitutionally mandated confirmation process into nothing but predictably partisan shit show. It was he who let Trump off both times where he was caught dead to rights in impeachable offenses.', 'created': '2024-11-08 04:00:48', 'submission_id': '1gm6wm6'}
{'comment': 'How can you say it’s not their fault when it’s what they voted for twice? They had alternatives. There were other republicans out there too. They chose trump', 'created': '2024-11-08 03:24:32', 'submission_id': '1gm6wm6'}
{'comment': 'That makes sense! GREAT logic too!', 'created': '2024-11-08 03:04:15', 'submission_id': '1gm6wm6'}
{'comment': ">Economy and immigration was the priority for voters\n\n\nI keep hearing this, but I think it's complete horseshit. A not even plausible excuse to simply vote the candidate of *fuck you*.", 'created': '2024-11-08 04:32:17', 'submission_id': '1gm6wm6'}
{'comment': 'And immigration only because of Trump. It wasn’t an issue until Trump. Now suddenly it’s important because… reasons.', 'created': '2024-11-08 04:44:06', 'submission_id': '1gm6wm6'}
{'comment': 'I wish. Will never happen. These people never seem to pay for their crimes', 'created': '2024-11-08 03:23:31', 'submission_id': '1gm6wm6'}
{'comment': 'This. Biden should have kept his promise from the beginning', 'created': '2024-11-08 02:42:12', 'submission_id': '1gm6wm6'}
{'comment': 'Do you think it was Biden himself, or was it his aides and the Democratic Party who pushed him to run again due to incumbent advantage? Honestly asking because Biden strikes me as someone who wants to do what’s best.', 'created': '2024-11-08 05:03:58', 'submission_id': '1gm6wm6'}
{'comment': 'Great explanation, and it’s so true. Biden should have realized the ramifications of not bowing out like he said he would. It’s so frustrating! A wonderful opportunity wasted, and now the country is in real danger with Trump in the Presidency.', 'created': '2024-11-08 02:52:48', 'submission_id': '1gm6wm6'}
{'comment': 'Thanks for the reason and logic. 😁', 'created': '2024-11-08 02:38:56', 'submission_id': '1gm6wm6'}
{'comment': 'There was a choice to pick other candidates, but none of them included the money that was already in Biden’s campaign fund.', 'created': '2024-11-08 04:19:42', 'submission_id': '1gm6wm6'}
{'comment': "So Dems NEED to find someone Obama's personality but isn't Obama...well...we've got four years to figure out who! There a plus!", 'created': '2024-11-08 03:19:30', 'submission_id': '1gm6wm6'}
{'comment': 'I just don’t get it though. We weren’t that into Kamala so we just said, “what the hell. Trump can’t be that bad.” I’m so baffled that enough of us were so complacent about a Trump presidency that we just let him walk in because Kamala wasn’t cool enough for us, or something.', 'created': '2024-11-08 04:42:58', 'submission_id': '1gm6wm6'}
{'comment': 'I just don’t get it though. We weren’t that into Kamala so we just said, “what the hell. Trump can’t be that bad.” I’m so baffled that enough of us were so complacent about a Trump presidency that we just let him walk in because Kamala wasn’t cool enough for us, or something.', 'created': '2024-11-08 04:43:12', 'submission_id': '1gm6wm6'}
{'comment': 'Yeah...as sad as it is true too.', 'created': '2024-11-08 03:10:41', 'submission_id': '1gm6wm6'}
{'comment': "exactly. she wasn't primaried and didn't get the grassroots support to propel her campaign. we had 0 time to know her. the whole situation was an absolute shitshow. Biden should have pulled out earlier to allow for a real primary", 'created': '2024-11-08 04:31:31', 'submission_id': '1gm6wm6'}
{'comment': 'Thanks for the opinion.', 'created': '2024-11-08 17:46:00', 'submission_id': '1gm6wm6'}
{'comment': 'Obama was busy fighting the fires or recession set off during the Bush administration.', 'created': '2024-11-08 20:48:05', 'submission_id': '1gm6wm6'}
{'comment': 'INTERESTING theory! I like it! Thanks for helping with looking at the alternative history! 100% agree Trump normalized racism!', 'created': '2024-11-08 03:48:30', 'submission_id': '1gm6wm6'}
{'comment': 'Pete?', 'created': '2024-11-08 13:33:30', 'submission_id': '1gm6wm6'}
{'comment': '2020 was a reaction to Ahmad Aubrey, Brianna Taylor, and George Floyd, along with Covid, and people having nothing to distract them from the political system. \n\n2024 was Trump pulling going against a candidate who had 100 to do what he had 4 years to do.\n\nWhich is run a campaign.\n\nImagine giving a fighter 100, days unexpectedly, and another has 1400 to train.', 'created': '2024-11-08 06:35:46', 'submission_id': '1gm6wm6'}
{'comment': 'This was our moment. It’s over. Future elections will be shams like Russia and Venezuela. You can sue, but with Trump judges, you won’t win. Sorry to say, but Kamala was right, “We’re not going back.” We’re not going back to a functional democracy. We’ve crossed the Rubicon.', 'created': '2024-11-08 08:55:14', 'submission_id': '1gm6wm6'}
{'comment': 'At that point they’re basically permitting a coup. You don’t stand someone against him in an illegal election held to legitimate a coup. \n\nYou amass troops loyal to the constitution, you forcibly remove those who are committing treason, and then try them accordingly whilst building a suitably large and reinforced gallows to administer sentences.', 'created': '2024-11-08 14:25:48', 'submission_id': '1gm6wm6'}
{'comment': "I'm mad Obama ever stepped down. \n\nEven more mad Biden is. \n\nIf the GOP want a dictator, we should just give them one.", 'created': '2024-11-08 14:07:03', 'submission_id': '1gm6wm6'}
{'comment': 'So come back Barack!', 'created': '2024-11-08 12:05:24', 'submission_id': '1gm6wm6'}
{'comment': 'Yeah back then it was just memes of Michele Obama as a man, and birther stuff. Plus it felt like a lot of their hate was directed at Obama himself. This time they have been brainwashed against all “libs” and are happy to see us hurt.', 'created': '2024-11-08 04:59:57', 'submission_id': '1gm6wm6'}
{'comment': '5. Price of eggs.', 'created': '2024-11-08 06:48:45', 'submission_id': '1gm6wm6'}
{'comment': 'They also got their tin foil hat news from 4chan and q-anon in 2017 instead of regular news outlets. Misinformation to the extreme!', 'created': '2024-11-08 14:01:05', 'submission_id': '1gm6wm6'}
{'comment': 'Well the veil was lifted in 2016 and fully gone two days ago.', 'created': '2024-11-08 03:08:57', 'submission_id': '1gm6wm6'}
{'comment': 'I can believe it because of my family and my inlaws', 'created': '2024-11-08 05:21:39', 'submission_id': '1gm6wm6'}
{'comment': "I agree with most of what you said, but I honestly don't know enough about Kamala to comment on your last sentence. I will say - I don't think there was time for a primary, but I also think that the way the whole thing played out was very, very stupid and completely unprecedented. I was legitimately shocked when Biden dropped out. As much hate as Biden was getting, I unironically think he still would have done better than Kamala simply by being a white man. I don't think he would have won, but I don't think turnout would have been as abysmal as it was. The unavoidable reality is that America hates women and POC, and having a black/Indian woman run, especially without a primary, was an awful call from a strategic standpoint. It's ridiculously unfair and disgusting and I hate it, but being a female POC was enough to tank Kamala's campaign even if she had done everything else right.", 'created': '2024-11-08 06:53:09', 'submission_id': '1gm6wm6'}
{'comment': "Don't get me wrong, the voters do have some blame. Trump voters should get more informed about...everything. But most of the blame should go to their leadership for not having a backbone.", 'created': '2024-11-08 03:37:25', 'submission_id': '1gm6wm6'}
{'comment': 'Thanks, I also forgot to mention that another pivotal event was the day John McCain died. That was the last of any real resistance against Donald Trump.', 'created': '2024-11-08 03:06:49', 'submission_id': '1gm6wm6'}
{'comment': "You can't have that attitude. People across the country are *struggling* just to get by", 'created': '2024-11-08 13:20:14', 'submission_id': '1gm6wm6'}
{'comment': "With that defeatist attitude, of course, they don't.", 'created': '2024-11-08 05:59:44', 'submission_id': '1gm6wm6'}
{'comment': "Biden has wanted to be president for most of his life and finally got the chance at what should have been the winding down of his political career. he was actually pretty good at it because he was steeped in government procedural policies... he knew where the levers were and how to work across the aisle. and if he'd only been 20 years younger he would have been unstoppable. i think he sincerely felt like he wasn't finished and that he just needed that 2nd term to tie everything together and get the country moved in the right direction. of course, there's ego involved and the people around him didn't want to tell him he shouldn't so most of them propped him up but the person i blame the most is his lovely wife Jill. i think she's the one who blew so much smoke up his ass that he couldn't see any other path.", 'created': '2024-11-08 09:07:44', 'submission_id': '1gm6wm6'}
{'comment': 'No, we need them NOW.', 'created': '2024-11-08 13:32:22', 'submission_id': '1gm6wm6'}
{'comment': "Well, charisma, at least. Why do you think Trump picked Vance as his vice? Charisma. Harris did have a certain amount of charisma, and she did well in the polls and debates, but as I said, the dems felt they hadn't chosen her and she really didn't have enough time to run an effective campaign. It wouldn't hurt if she took a page out of Trumps book and began campaigning a few years before the next election. At least that would give her more time to get voters used to the idea of a madam president. That's assuming we get another election in four years.", 'created': '2024-11-08 03:24:44', 'submission_id': '1gm6wm6'}
{'comment': 'I know. 80m of us got super energized and into politics in 2020 and then just didn’t care this time?', 'created': '2024-11-08 05:06:36', 'submission_id': '1gm6wm6'}
{'comment': "It's INTERESTING how one side starts fires, while the other sets them. Makes me curious yet sad to see what the orange will do...", 'created': '2024-11-08 22:47:54', 'submission_id': '1gm6wm6'}
{'comment': 'I absolutely love Pete, but it won’t work for the simple reason that he’s gay. The dems already get accused of having a gay agenda and trying to turn kids gay, and installing a gay candidate could hurt us. I’m sorry to say it but it needs to be a young, tough, white, straight, christian, gun owning, manly man.', 'created': '2024-11-08 14:28:40', 'submission_id': '1gm6wm6'}
{'comment': "I think we're close but haven't crossed it yet. Yes he has loaded the SCOTUS with his people but at some point, like so many he may ask too much even from them, sure they can pass laws to gerrymander elections, or perhaps even give him even more power but they are in their positions for life so in theory they could switch to limiting him in some way. sure he'd be pissed, but he won't be able to do anything.\n\nThe more right wing fascist he goes, the more people there are to the centre/left of him. God I hope people have the courage to stand up to him.", 'created': '2024-11-08 10:45:47', 'submission_id': '1gm6wm6'}
{'comment': 'And those that sue wil likely "fall from a window."', 'created': '2024-11-08 15:04:44', 'submission_id': '1gm6wm6'}
{'comment': 'This is the unfortunate truth', 'created': '2024-11-08 10:44:42', 'submission_id': '1gm6wm6'}
{'comment': "Interesting point. The Obama hate was awful but it really was just directed at one person. Now, it's directed at half the country.", 'created': '2024-11-08 18:23:11', 'submission_id': '1gm6wm6'}
{'comment': 'A bit of fascism is okay as long as I can save a dollar on this already very cheap food', 'created': '2024-11-08 18:21:54', 'submission_id': '1gm6wm6'}
{'comment': 'I\'m guessing she knew, as well as most close to Biden that he wasn\'t fit to serve another term long before he quit. Her duty as his VP should have been to speak reality sooner to him. If they planned this even longer than what we were told, to catch Trump off gaurd, then it was misguided and shortsighted. I based my opinion on this not being the first time the DNC has pulled fuckery to force their chosen canidate on us, instead of someone who\'s more progressive or someone who will piss off the mega donors. I wouldn\'t say America hates women, I\'d say that the role of POTUS is one that is also synonymous with strength. Every human, man and woman, on this planet judges men on their Strength, the same can\'t be said of women. If a woman is soft spoken, timid, or isn\'t confident, we don\'t judge her less for it. The same can\'t be said of men. I think a woman could definitely become POTUS, but she needs to exude the kind of strength that is universal to everyone. A generic DA or Senator isn\'t going to translate as "strength" to black, white, and latino men and women.', 'created': '2024-11-08 07:40:54', 'submission_id': '1gm6wm6'}
{'comment': 'Pleasure! True again!', 'created': '2024-11-08 03:07:39', 'submission_id': '1gm6wm6'}
{'comment': "You mistake me friend. I don't deny that the struggle exists. I deny that Donald Trump is the fix for it: There is no struggle, toil, hardship or malady for which the answer is *Donald Trump*. None. His stupidity is evident, as is his manifest incompetence, and both compete with his petty vindictiveness and staggering mendacity. You know it. I know it. They know it. It is merely a fig leaf, and a not very plausible one, at that, to hide the objectionable parts of their political anatomy.", 'created': '2024-11-08 13:56:41', 'submission_id': '1gm6wm6'}
{'comment': 'Just a realist as there is absolutely zero evidence to support or support that any of that would ever happen.', 'created': '2024-11-08 07:22:17', 'submission_id': '1gm6wm6'}
{'comment': 'Does Vance have charisma, though? I always feel like punching him in the nuts when I see him.', 'created': '2024-11-08 06:33:20', 'submission_id': '1gm6wm6'}
{'comment': "Yeah, I'm thinking about timing as well. It was EVERYTHING regarding this election and it was WAY too late. I agree with campaigning earlier.", 'created': '2024-11-08 03:26:52', 'submission_id': '1gm6wm6'}
{'comment': 'Vance does not have charisma. And you can bet that after 6 months Trump is going to HATE Vance because he’s young.', 'created': '2024-11-08 07:30:34', 'submission_id': '1gm6wm6'}
{'comment': 'Biden reached a lot of people who usually don’t engage in politics. You can reach those voters once but you better give them immediate tangible results. He did but voters didn’t feel that way so they sat out.', 'created': '2024-11-08 11:04:33', 'submission_id': '1gm6wm6'}
{'comment': "You said that the economy being people's biggest concern with voting was horseshit. Incumbents around the world are losing because it IS people's biggest concern. \n\nHe's absolutely not the fix for it, but the current administration has not done a good enough job of communicating both how inflation has been dealt with and what that means for the people, and what the plans were for the continued development of the working class' financial well being. Biden has done great with the economy he was given, but people will still blame him for it. Kamala being a part of the current administration was an albatross she couldn't shake in 100 days.", 'created': '2024-11-08 14:08:26', 'submission_id': '1gm6wm6'}
{'comment': "To be fair, since he got picked as VP, he was cleaning Trumps mess. He had to talk to the reporters to justify whatever ridiculously shit Trump said when he went off script, and he had to use his military career to try and flex, despite Walzs' longer and more distinguished military record. He's a world-class dick, just like his boss, but he can at least get through a debate.", 'created': '2024-11-08 06:40:05', 'submission_id': '1gm6wm6'}
{'comment': "Struggling Brits threw out the Tories, who offered a slightly less drastic form of Trumpism...\n\nThat the economy is the biggest concern in America *IS* horseshit. If the economy was their biggest concern, they'd actually vote to do something sane about it, like the Brits did. \n\nPeople are struggling, but their biggest concerns, the objectionable parts of their political anatomy, are racism and sexism and a straightforward *fuck you.* This is exactly and precisely as they did during the pandemic, where they refused, with great vehemence, those who were actually and actively working *to keep them alive* in favor of Ivermectin and in fear of Jewish space lasers and a host of quack remedies and conspiracies. Then, as now, their biggest concern, is expressing their childish rage by tantrum and by breaking things.\n\n>Biden has done great with the economy he was given, but people will still blame him for it. Kamala being a part of the current administration was an albatross she couldn't shake in 100 days\n\nIf people blame Biden it is either because they are aggressively stupid, willfully ignorant or wholesale swallow the simple-minded lies of Trump. Joe Biden, nor Kamala Harris, possesses no power, nor responsibility, to prevent citizens from believing wholesale untruths. That's on the liars and the sheep who believe them and deny reality, even as reality has them in a stranglehold, causing their very real suffering.", 'created': '2024-11-08 14:57:18', 'submission_id': '1gm6wm6'}
{'comment': "Blaming people for being poor and uninformed won't help us next election. We need to quit that.", 'created': '2024-11-08 14:58:35', 'submission_id': '1gm6wm6'}
{'comment': 'Blaming people for believing lies --- which transcends poverty, and extends to *the richest man in the world*--- is simple reality, which you cannot quit... That kinda unavoidable is kinda what makes it reality.\n\nTo elide all that and concoct some phantom responsibility that Joe Biden and/or Kamala Harris have, is just ostrich behavior, sticking your head in the sand hoping the danger of calling out people for there misbehavior will pass you by...', 'created': '2024-11-08 15:05:19', 'submission_id': '1gm6wm6'}
{'comment': "Sure, bud. Continue to place the responsibility of being informed on the people working 2 jobs, worried about whether their kids will eat. Let's see where it gets us. We can keep leaning into the typical Democrat stereotype, or we can go back to what I, and many others, grew up with. Someone fighting for the working class, unions, and, most importantly, making people feel seen and understood.", 'created': '2024-11-08 20:07:12', 'submission_id': '1gm6wm6'}
{'comment': "Thanks, Tovarisch, for your 'perspective'...'", 'created': '2024-11-08 21:34:28', 'submission_id': '1gm6wm6'}
{'comment': "Things are going to get very bad. Trump's election has given a green light to racism and violence (along with every other kind of out-group hate).", 'created': '2024-11-08 02:26:06', 'submission_id': '1gm6k7z'}
{'comment': 'I’m a black woman and already getting MAGA hate. Just an hour ago, some MAGAit hit my car, yelled “Trump 2024”, and drove off. It’s been two days since the election, and minorities are being targeted and bullied.', 'created': '2024-11-08 02:53:30', 'submission_id': '1gm6k7z'}
{'comment': 'This is some sick shit.', 'created': '2024-11-08 02:56:07', 'submission_id': '1gm6k7z'}
{'comment': 'MAGAts are not Americans, they are occupiers', 'created': '2024-11-08 03:43:44', 'submission_id': '1gm6k7z'}
{'comment': 'https://preview.redd.it/ipl326lm0lzd1.jpeg?width=2976&format=pjpg&auto=webp&s=81c6ec729c95c5b6dafc57b1a8e3df055d060d37', 'created': '2024-11-08 02:38:18', 'submission_id': '1gm6k7z'}
{'comment': '“Cutton”\n\nBut they got **me** fucked up if they think imma be in a field.', 'created': '2024-11-08 03:31:15', 'submission_id': '1gm6k7z'}
{'comment': 'Listening to a talk radio show this morning. Dude was adamant that Trump should reverse Ghouliani\'s verdict regarding Ruby Freeman and her daughter, sue her and throw them in jail. "We\'ll find some evidence" were his words. That\'s what we got for the next four years. Hunker down and dodge the vim and vitriol best you can.', 'created': '2024-11-08 03:00:15', 'submission_id': '1gm6k7z'}
{'comment': 'Sounds like someone upset about the price of eggs.', 'created': '2024-11-08 03:07:57', 'submission_id': '1gm6k7z'}
{'comment': "According to a Conservative Black Trump supporter radio host says it's ANTIFA again 🙄", 'created': '2024-11-08 03:27:12', 'submission_id': '1gm6k7z'}
{'comment': "A hateful, racist text written by someone so dumb that they couldn't even spell the word 'cotton'.\n\nYeah, that's pretty much what we warned MAGA was the whole damn time.", 'created': '2024-11-08 07:49:44', 'submission_id': '1gm6k7z'}
{'comment': 'Well, it could also be Chinese or Russian troll farms', 'created': '2024-11-08 02:30:19', 'submission_id': '1gm6k7z'}
{'comment': 'I’d be curious if it’s just black people getting these texts. If that’s the case, how are they being so perfectly singled out?', 'created': '2024-11-08 10:07:16', 'submission_id': '1gm6k7z'}
{'comment': 'Sounds like a pro MAGA troll. Best way to deal with a troll is to ignore it. After George Floyd, Trayvon Martin, etc you’d think people would be more sensitive.', 'created': '2024-11-08 02:33:17', 'submission_id': '1gm6k7z'}
{'comment': 'In all honesty they’re just going to galvanize the ones who stayed home to become active again', 'created': '2024-11-08 07:31:03', 'submission_id': '1gm6k7z'}
{'comment': '', 'created': '2024-11-08 21:25:56', 'submission_id': '1gm6k7z'}
{'comment': 'Yet many of them voted for what’s about to happen.😞', 'created': '2024-11-08 03:58:33', 'submission_id': '1gm6k7z'}
{'comment': 'Black people voted for this thou\xa0', 'created': '2024-11-09 06:12:39', 'submission_id': '1gm6k7z'}
{'comment': 'I’d bet this is more along the lines of foreign entities trying to create more division in our country.', 'created': '2024-11-08 02:18:31', 'submission_id': '1gm6k7z'}
{'comment': 'Yep. And they are going to be worse than they were in 2016. Because even Trump himself has amped up the hate rhetoric over the last few years.', 'created': '2024-11-08 19:45:06', 'submission_id': '1gm6k7z'}
{'comment': 'WTF that’s not ok.', 'created': '2024-11-08 03:49:03', 'submission_id': '1gm6k7z'}
{'comment': 'Buy a dash cam, leaving the scene of an accident is a crime.', 'created': '2024-11-08 04:38:07', 'submission_id': '1gm6k7z'}
{'comment': 'I’m so sorry. I’m afraid we’re in for a lot more of this.', 'created': '2024-11-08 04:38:29', 'submission_id': '1gm6k7z'}
{'comment': "Oh girl I'm so sorry. I just...I have no words", 'created': '2024-11-08 06:16:52', 'submission_id': '1gm6k7z'}
{'comment': 'I am so sorry, ma’am. People really suck sometimes.', 'created': '2024-11-08 07:52:15', 'submission_id': '1gm6k7z'}
{'comment': '8(', 'created': '2024-11-08 07:00:54', 'submission_id': '1gm6k7z'}
{'comment': 'What happened to this 20% black males.. sorry no empathy for them. Hope you at least voted. Stay safe. Welcome to facism.', 'created': '2024-11-08 05:22:11', 'submission_id': '1gm6k7z'}
{'comment': 'That’s awful! F\nThis is awful. The hate and racism is even more overt.', 'created': '2024-11-08 17:03:29', 'submission_id': '1gm6k7z'}
{'comment': 'I’m a middle aged white dude. I went to the grocery store last night and an older black woman was finishing loading her groceries. The store employee (20s white male) was in the parking lot collecting carts. She asked “you want this one too?” He flatly replied, “no.” The look on her face was one of heartbreak and exasperation. I said, “I’ll take that from you honey.” She smiled, gave it to me, and got in her car. A Karen was watching this as she was leaving the store and glowered at me as I passed her. I flatly told her to wipe the look of her face. She also had a look of exasperation after that, but for obviously different reasons. She said something but I didn’t have the energy to argue with someone of lesser intelligence at the time. \n\nFuck if this is what we’re in for the next four years. Guess I’m entering my villain era.', 'created': '2024-11-08 18:59:59', 'submission_id': '1gm6k7z'}
{'comment': 'And domestic terrorists', 'created': '2024-11-08 04:38:58', 'submission_id': '1gm6k7z'}
{'comment': 'Modern day Tories!', 'created': '2024-11-08 19:43:23', 'submission_id': '1gm6k7z'}
{'comment': "This has been how the GOP has operated for years. They create a crime and then they try to find evidence that doesn't exist because they either made it up or it is something they've done.. People come out of the woodwork saying they have evidence and then it all falls apart. They are then able to blame the deep state for cover ups.", 'created': '2024-11-08 03:55:36', 'submission_id': '1gm6k7z'}
{'comment': ">That's what we got for the next four years.\n\nYou are certainly optimistic!", 'created': '2024-11-08 19:44:02', 'submission_id': '1gm6k7z'}
{'comment': 'Bravo!', 'created': '2024-11-08 03:42:59', 'submission_id': '1gm6k7z'}
{'comment': 'They thought that one egg was 40 eggs.', 'created': '2024-11-08 16:09:25', 'submission_id': '1gm6k7z'}
{'comment': 'Makes total sense that the anti-fascists would do this /s', 'created': '2024-11-08 03:33:29', 'submission_id': '1gm6k7z'}
{'comment': '"It\'s all the fault of ANTIFA\'s president Emmanuel Goldstein, hate him for anything bad in your life...but love Trump with all your heart, or else!"', 'created': '2024-11-08 07:53:07', 'submission_id': '1gm6k7z'}
{'comment': 'Advancing maga interests.', 'created': '2024-11-08 05:21:53', 'submission_id': '1gm6k7z'}
{'comment': 'Making others miserable is kinda the point for trolls', 'created': '2024-11-08 02:41:57', 'submission_id': '1gm6k7z'}
{'comment': "i'm not so sure about that. their tactics might become more physically intimidating, even changing laws to arrest or strip you of your rights. voting is literally the most basic thing you can do for your own benefit and if someone cares so little that they can't manage the bare minimum, they certainly aren't going to suddenly become activists.", 'created': '2024-11-08 12:37:45', 'submission_id': '1gm6k7z'}
{'comment': 'This is who Republicans always were.', 'created': '2024-11-08 04:38:51', 'submission_id': '1gm6k7z'}
{'comment': 'Absolutely buy a dash cam. Even if things go so terribly sideways you end up unable to take legal action, the documentation will be valuable. This kind of hate should not go unwatched. How disgusting.', 'created': '2024-11-08 06:20:20', 'submission_id': '1gm6k7z'}
{'comment': 'At what point does the laws in this country are just meaningless? What are Democrats going to do about it? When will they do anything about it?', 'created': '2024-11-08 06:37:13', 'submission_id': '1gm6k7z'}
{'comment': 'Exactly this', 'created': '2024-11-08 05:22:57', 'submission_id': '1gm6k7z'}
{'comment': 'And traitors', 'created': '2024-11-08 21:13:45', 'submission_id': '1gm6k7z'}
{'comment': "I don't know what else to say. Trump really is a tyrant at heart but his fan base are exponentially worse human beings.", 'created': '2024-11-08 22:35:11', 'submission_id': '1gm6k7z'}
{'comment': 'And Trump', 'created': '2024-11-08 03:43:22', 'submission_id': '1gm6k7z'}
{'comment': 'Dude, if the Jim Crow south couldn’t stop people of color from fighting for their rights what makes you think some immature text messages will scare them into staying home?', 'created': '2024-11-08 13:25:10', 'submission_id': '1gm6k7z'}
{'comment': 'It’ll work until the crimes are accepted and legal…', 'created': '2024-11-08 06:37:44', 'submission_id': '1gm6k7z'}
{'comment': "ironically, the people of color in the jim crow south that you speak of literally gave their lives fighting for their human rights so you can't compare them to the apathetic people who would not even get up off their lazy asses to cast a vote, knowing full well their ancestors paid the price in blood for them to do so.", 'created': '2024-11-08 15:05:56', 'submission_id': '1gm6k7z'}
{'comment': 'We are living in a dystopia that we say these things with actual possibility...', 'created': '2024-11-08 06:41:19', 'submission_id': '1gm6k7z'}
{'comment': 'True, but insurance companies still want their money, and money always wins.', 'created': '2024-11-08 15:13:34', 'submission_id': '1gm6k7z'}
{'comment': 'Not quite. We’re on the edge of becoming one. We can see what it would look like, but we’re still a functioning country. Yes, not perfect, but cash still works. I can go outside and see a well built infrastructure that hasn’t been bombed down. I can still buy groceries and drive on smooth roads. I don’t see hoards of homeless camps everywhere or concentration camps. Just remember, to always appreciate the small things that we take for granted and it could ALWAYS be much worse.', 'created': '2024-11-10 03:27:22', 'submission_id': '1gm6k7z'}
{'comment': ' Not the left. The dnc.', 'created': '2024-11-08 22:21:50', 'submission_id': '1gm6c7h'}
{'comment': ">There is no single explanation for Donald Trump’s unambiguous win\n\nYes, there is. The Republicans weaponized rhetoric using the fascist playbook, and began doing so years ago. Only people didn't realize (and many still don't) that rhetoric can be one of the most powerful weapons of humanity.\n\nAnd so finally calling out Trump and his minions as fascists in this election was just too, little far too late. The cancer was already widespread. It was too late to build resistance among voters to fascism.\n\nTrump won because of what I would call the paradox of free speech (a corollary to the paradox of tolerance).\n\nFree speech is incredibly important to a democracy so that voters have the opportunity to be informed. \n\nBut when a major political party uses speech with ill intent, it can bring down a democracy.\n\nI'm sure our founding fathers never dreamed that a political party would use propaganda and lies to elect a tyrant. So there are no protections in our Constitution from this, and we really have not added any to our system of laws in the 240 years since then.", 'created': '2024-11-08 16:02:55', 'submission_id': '1gm6c7h'}
{'comment': "Please don't give up. Something fishy's going on. States were being projected while people were still voting or waiting in line to vote in those states. Bomb threats, etc.", 'created': '2024-11-08 02:45:09', 'submission_id': '1gm6c7h'}
{'comment': 'Don’t Alex jones this. We lost. It wasn’t even close in most instances. \n\nThe fact of the matter is that this election was lost in 2020 when Kamala, who was the most unpopular candidate during the primaries, was placed above more popular candidates to capitalize on women voters and minority voters instead of running a better one. \n\nShe failed to distinguish her brand, and did not have time to resonate with voters. Biden screwed us by being selfish. \n\nThe democrats didn’t latch onto the age thing with Trump either, and decided again to take some imaginary high road on his age. \n\nThe democrats decided to double down on stupid voting blocks that don’t make sense to support (illegal immigration? Really?) \n\nAnd most egregious of all, they failed to tout the successes of the economy- in comparison to the rest of the world we are doing well - everyone is suffering rn.', 'created': '2024-11-08 04:54:34', 'submission_id': '1gm6c7h'}
{'comment': 'North Carolina. They won governor, Lt governor, Attorney general and a house seat that kept the Rs from getting a veto proof majority again.', 'created': '2024-11-08 03:32:50', 'submission_id': '1gm60eb'}
{'comment': 'Here is the North Carolina Democratic Party (NCDP) website for anyone wondering. \nhttps://www.ncdp.org/\n\n\nHere is their Platform / Values\nhttps://www.ncdp.org/our-values/', 'created': '2024-11-08 13:47:24', 'submission_id': '1gm60eb'}
{'comment': "Thanks! Love to hear it! \n\nWould you mind linking their website or bylaws or platform or anywhere that's good to get an overview ?", 'created': '2024-11-08 05:04:50', 'submission_id': '1gm60eb'}
{'comment': 'Podcasts are just the new Talk Radio. \n\nWe went from Rush Limbaugh and Pat Robertson to Joe Rogan and Tucker Carlson.', 'created': '2024-11-08 02:01:00', 'submission_id': '1gm5yy4'}
{'comment': "Check out The David Pakman Show\n\nHe made a really good point after Vice President Harris' loss, part of the problem is that the right wing has created this vast media ecosystem of TV channels, radio, and podcasters and influencers that we just haven't really been able to match them on. \n\nLike what is our answer to Turning Point USA? The Daily Wire? Tucker Carlson?\n\nThey've established a whole ecosystem of rignt wing thought. \n\nThis is partly because of a steady stream of money from billionaires and, as was revealed earlier, the Russian state paying influencers to push their talking points. (Tim Pool, Dave Rubin, others)", 'created': '2024-11-08 10:48:26', 'submission_id': '1gm5yy4'}
{'comment': 'My spouse and I kept saying in the last two months "Why are Kamala and Tim not on every goddamned podcast???". Every one! Do interviews from the bus or plane as they head to somewhere else for a rally. Go back two and three times to the podcasts. Anyone who has any kind of substantial following should have had podcast or YouTube interviews with them. Fuck commercials and FB ads. This isn\'t the early 2000s.', 'created': '2024-11-08 06:57:26', 'submission_id': '1gm5yy4'}
{'comment': 'I think we need to stop blaming the message and reckognize the fucking idiots that cast their votes to bring us here.', 'created': '2024-11-08 07:15:14', 'submission_id': '1gm5yy4'}
{'comment': 'Right wing radio/podcasts are very suited to the kinds of people who listen to them. Right wingers love to absorb. People on the left love to talk. We honestly are not the kind to sit there and listen - we want to be involved ourselves.', 'created': '2024-11-08 11:39:45', 'submission_id': '1gm5yy4'}
{'comment': 'Be the change', 'created': '2024-11-08 04:20:01', 'submission_id': '1gm5yy4'}
{'comment': 'This is what men want unfortunately', 'created': '2024-11-08 05:47:30', 'submission_id': '1gm5yy4'}
{'comment': 'So we need progressive podcasts. Meet the public where they’re at.', 'created': '2024-11-08 18:37:39', 'submission_id': '1gm5yy4'}
{'comment': "Sadly, the deepest truth is, democrats are a don't innovate until needed type party. They don't want to rock the boat in some ways because they're already fighting and bickering in others. \n\nThe democratic party is a BIG TENT party. With so many pulling towards other goals. The idea is just to NOT add to the disunity.", 'created': '2024-11-08 07:01:36', 'submission_id': '1gm5yy4'}
{'comment': 'That would be a very shortsighted mistake that causes us to continue to lose over and over again. Burying your head in the sand while trying to shame the “other” is what got us in this mess in the first place.', 'created': '2024-11-08 15:00:50', 'submission_id': '1gm5yy4'}
{'comment': 'Twenty years ago, there was a left wing AM radio company that got shut down. \n\nIt was an incredibly unpopular decision, because "Nobody is listening to it" in Middle America.\n\nThe problem is that it was one of the best ways to provide content, news, and commentary to people out in the middle of nowhere- even in small towns and medium cities.\n\nThe problem was that rightwing AM radio isn\'t there to make money (which it did and does). \n\nThese stations and podcasts and shorts are all supported by right wing media companies and organizations. It doesn\'t matter if they make a "profit" or not. \n\nThe real profit was feeding millions of people in the middle of nowhere undiluted rightwing politics and rhetoric. Whether they were at work, out driving, working in their garage...\n\nRush was entrenched in their daily lives on the radio and on television.\n\nAnd these people often times nothing else to counter it.\n\nLosing these radio station was one of the big signs that the left has been conceding entire American regions for decades.\n\nThe left\'s failure to provide non-stop left wing political messaging (and not just "Ivy League types") has been part of the erosion of any left wing support from middle and southern America.', 'created': '2024-11-08 16:46:53', 'submission_id': '1gm5yy4'}
{'comment': "We're deep in the consumer age. People want what they're told to want. What is made to look desirable. You just need to tap into it. To adjust the angles to work in your favor. Altruistic intentions tend to be stepped over.", 'created': '2024-11-08 06:04:42', 'submission_id': '1gm5yy4'}
{'comment': 'Partly. \n\nBut also (partly) dumb people with too much free time will always believe belligerent bellowing blowhards who have a platform.', 'created': '2024-11-08 18:39:07', 'submission_id': '1gm5yy4'}
{'comment': 'Air America. \n\nRachel Maddow had a show on it — I think. I never listened to it. We just aren’t a talk radio tribe.', 'created': '2024-11-08 23:38:40', 'submission_id': '1gm5yy4'}
{'comment': 'I’m sorry but you’re really looking at this backwards. Men don’t want to be constantly shamed and vilified. Especially young men who don’t even have any connection to the “Patriarchy” that they are constantly being associated with. They’ve turned to the side that doesn’t constantly tell them they are the problem. It’s not that complicated.', 'created': '2024-11-08 15:03:27', 'submission_id': '1gm5yy4'}
{'comment': "That's what I'm talking about - it's not about talking to people already in the tent.", 'created': '2024-11-09 02:18:51', 'submission_id': '1gm5yy4'}
{'comment': 'You are misunderstanding my words. I am not vilifying them for what they consume or what they feel. I am simply stating that people, all people, are a product of what they absorb and what they interact with. \n\nThose in the "incel" crowd aren\'t inherently bad people. Nor do they innately want to embody the views we ascribe to them. But when your feed is PACKED full of Tate wannabes, Trump rhetoric, when your own life feels so far from what has been promised. You get angry and feel left out by those in power. And you attack those who you can justify. And this can happen to anyone. Not just men. Not just Caucasians. It happens to anyone who has less than what feels like a balanced life.', 'created': '2024-11-08 15:39:19', 'submission_id': '1gm5yy4'}
{'comment': 'https://preview.redd.it/y8en6odq0lzd1.jpeg?width=2976&format=pjpg&auto=webp&s=c3ac3b23ef62e2d38fa6a5bd24b78dc918efad71', 'created': '2024-11-08 02:38:54', 'submission_id': '1gm5z36'}
{'comment': None, 'created': '2024-11-08 23:45:06', 'submission_id': '1gm5z36'}
{'comment': '💯 Biden has nothing to lose and can claim president immunity', 'created': '2024-11-08 02:41:05', 'submission_id': '1gm5z36'}
{'comment': "Yes, too many Democrats are Trump's chumps.", 'created': '2024-11-08 02:44:00', 'submission_id': '1gm5z36'}
{'comment': 'Dark Blue voter in a Dark Blue area here. It\'s time for all of us to go touch grass. Seriously. The GOP has been playing political hard ball for years...redistricting (gerrymandering), voter suppression, manufactured culture wars, you name it. They have out-played the Democrats every step of the way. When they tap in to the primal fears of their base, we respond with grammatical corrections. The Democrats have been playing defense, on roller skates, for decades and now here we are. \n\nSo, while your point above is truly touching (and heartbreaking), it\'s time to shake it off. 24 months until mid-terms is not a lot of time but it\'s enough time to hold MAGA accountable for their plethora of soon-to-be broken promises. It\'s enough time to engage in our communities...to get the eligible voters registered and the registered voters to the polls. \n\nDon\'t break ties with your MAGA family members. As much as it may make you ill, keep up with "their" news, listen to "their" podcasts, and (constructively, with love and patience) engage, engage, engage. Be present and aware and visible in your communities. If you see a person of color or queer person being marginalized in any way, stand up and do the right thing. Lead by example. \n\nYou\'ve got this.', 'created': '2024-11-08 02:22:39', 'submission_id': '1gm5xk7'}
{'comment': 'Let’s create de facto free zones! Vive la resistance!', 'created': '2024-11-08 16:35:35', 'submission_id': '1gm5pja'}
{'comment': 'You like states rights? How ‘bout dese states rights!?', 'created': '2024-11-08 20:26:24', 'submission_id': '1gm5pja'}
{'comment': 'South Carolina’s “ballot tracker” just routes to your voter registration. 🤦\u200d♀️', 'created': '2024-11-08 01:23:42', 'submission_id': '1gm52v7'}
{'comment': "If the ballot tracker is not working for you, your states voter portal should have a voting history page. If it doesn't list the general election this means your vote has not been counted! \n\nGet your family and friends to check, too! Enough buzz could get us to a proper audit!", 'created': '2024-11-08 03:44:40', 'submission_id': '1gm52v7'}
{'comment': 'Tennessee just takes me to voter registration page. Doesn’t have any actual ballot information.', 'created': '2024-11-08 02:56:41', 'submission_id': '1gm52v7'}
{'comment': 'I tried to earlier, didn’t show me anything about my ballot 😞', 'created': '2024-11-08 03:44:10', 'submission_id': '1gm52v7'}
{'comment': 'I checked mine and my wife’s ballots for AZ… they are showing as Accepted.', 'created': '2024-11-08 05:28:53', 'submission_id': '1gm52v7'}
{'comment': 'Checked mine in Arizona. Ballot accepted.', 'created': '2024-11-08 05:40:03', 'submission_id': '1gm52v7'}
{'comment': "I'm in Ohio, and as far as I know, you can only track absentee ballots, and it doesn't show you who you voted for, just the various statuses of the process up to it being counted. Down the line, like in a month or two, I believe you can check to see if you voted otherwise, but that's about it.\n\n I wouldn't mind the ability to check on my vote, so long as it was secure, and I am the only one who could check it. I assume one can ask for this verification through some official channel though.", 'created': '2024-11-08 07:01:37', 'submission_id': '1gm52v7'}
{'comment': "I'm in PA and I checked my absentee ballot a few days before the election and it said Received. Now it says BALLOT-RETURNED. Wtf does that mean? I literally checked right before election day", 'created': '2024-11-08 11:54:50', 'submission_id': '1gm52v7'}
{'comment': 'I checked in Texas and mine was counted. It’s still good for folks to check though.', 'created': '2024-11-08 21:05:15', 'submission_id': '1gm52v7'}
{'comment': "Even people did, wouldn't be enough.", 'created': '2024-11-08 01:09:16', 'submission_id': '1gm52v7'}
{'comment': 'I think we need to stop trying to find reasons why we lost. If we keep going down this rabbit hole of “voter fraud” and doubting that our ballots were cast properly, then we’re no better than the republicans. We lost. Fear mongering, hate, racism, sexism, and misogyny won. We miscalculated how racist and sexist Americans really are. They fell for the lies of the republicans and MAGA. They truly believe that Trump and his cronies will do right by them and they will suffer the consequences.\n\nKamala and Tim ran an excellent campaign but in the end, Americans cared more about the price of eggs than they did about democracy and our basic human rights. The disinformation campaign is real and democrats need to find a way to combat it.', 'created': '2024-11-08 17:42:38', 'submission_id': '1gm52v7'}
{'comment': 'Go ahead pease. But I doubt we are missing 20 million ballots nationwide', 'created': '2024-11-08 07:57:36', 'submission_id': '1gm52v7'}
{'comment': 'Alabama is no help either. Imagine that.', 'created': '2024-11-08 21:37:03', 'submission_id': '1gm52v7'}
{'comment': "Those votes won't save us. We're boned. It's over.", 'created': '2024-11-08 10:47:28', 'submission_id': '1gm52v7'}
{'comment': "We already checked our votes in NC and they're showing as counted", 'created': '2024-11-08 16:28:29', 'submission_id': '1gm52v7'}
{'comment': "I am in Maryland, but they don't give you that info. You can look up mail-in ballot info in some counties it looks like, but the Board of Elections only tells you your registration info, polling location, and sample ballot. There is no record of voting or any way to check if my ballot was counted properly or not.\n\nI voted in person on election day, so maybe that's why? I have never done mail-in or early voting in my entire voting life.", 'created': '2024-11-08 18:43:19', 'submission_id': '1gm52v7'}
{'comment': 'I smell a rat. Or several rats😡.', 'created': '2024-11-09 00:30:40', 'submission_id': '1gm52v7'}
{'comment': '[removed]', 'created': '2024-11-08 02:32:24', 'submission_id': '1gm52v7'}
{'comment': 'Sorry but it’s too late. Party is over. Welcome facism', 'created': '2024-11-08 04:06:30', 'submission_id': '1gm52v7'}
{'comment': 'You should be able to see your voting record when you view your registration\n\nMight be different state to state but try again maybe', 'created': '2024-11-08 03:50:47', 'submission_id': '1gm52v7'}
{'comment': 'FYI, for Wisconsin at least, it takes up to 45 days for the most recent election to be added to the voting history', 'created': '2024-11-08 05:32:12', 'submission_id': '1gm52v7'}
{'comment': 'But does it tell you for which candidate you voted?', 'created': '2024-11-08 18:22:33', 'submission_id': '1gm52v7'}
{'comment': "I don't think you can ever verify *who* you voted for. Only that you voted.", 'created': '2024-11-08 11:13:06', 'submission_id': '1gm52v7'}
{'comment': 'returned is just their terminology for accepted and counted', 'created': '2024-11-08 16:29:35', 'submission_id': '1gm52v7'}
{'comment': 'Thank you for checking, friend.', 'created': '2024-11-08 21:05:37', 'submission_id': '1gm52v7'}
{'comment': 'The Presidency may be a foregone conclusion, but there are numerous House seats still in toss-up with votes to be counted that can go down to a very threadbare margin. A difference of a few votes in one direction may be enough for the infinitesimally small chance of the Democrats to gain the House. As it stands it involves flipping at least a few House seats that are currently leaning Republican and holding every other seat leaning Democrat.\n\nI want to be clear here, this is not a comment of hope or optimism. But if anyone here is upset with the outcome and wonders what they could do, this is something actionable and immediate.', 'created': '2024-11-08 04:08:27', 'submission_id': '1gm52v7'}
{'comment': 'if a sample amount of people find discrepancies, that will cause a bigger audit', 'created': '2024-11-08 03:00:37', 'submission_id': '1gm52v7'}
{'comment': 'Still need too , election fraud is real', 'created': '2024-11-08 01:10:36', 'submission_id': '1gm52v7'}
{'comment': 'This is factually incorrect.\n\nWith the winner-take-all system, the election hinges on just a few counties.', 'created': '2024-11-08 02:41:09', 'submission_id': '1gm52v7'}
{'comment': ">Kamala and Tim ran an excellent campaign but in the end, Americans cared more about the price of eggs than they did about democracy and our basic human rights. \n\nI do think it's true that they cared an awful lot about the price of eggs. But I don't think a lot of them realize they voted to kill off their democracy. \n\nTrump created this fictional reality of who he was, what he would do for people, and who Harris is. So a lot of people bought in to parts of that. \n\nThat being said, I'm sure there are millions of happy US fascists out there who did know what Trump was all about.", 'created': '2024-11-08 19:42:19', 'submission_id': '1gm52v7'}
{'comment': 'Not sure why you’re getting downvoted, this post is reaching legendary levels of copium. Dems haven’t ran a real primary since 2008, people like to have a say in who their candidates are. Our party has repeatedly subverted the will of the voters in exchange for running and backing candidates who they deem to be “more electable”. Trump might be an awful President, but he’s the awful president half the country actually had a say in being on the ballot.', 'created': '2024-11-08 07:56:54', 'submission_id': '1gm52v7'}
{'comment': 'Yeah different state to state I think. Couple other people see the same. Sc has cruddy systems. Ethics reports are a pain', 'created': '2024-11-08 03:55:17', 'submission_id': '1gm52v7'}
{'comment': 'It said 30 days literally earlier today when I looked.', 'created': '2024-11-08 05:51:08', 'submission_id': '1gm52v7'}
{'comment': 'No it doesn’t. Why would it say that', 'created': '2024-11-08 18:32:12', 'submission_id': '1gm52v7'}
{'comment': "Weird. I didn't know if it meant returned to them or me.\n\nBut I did call them and verify too", 'created': '2024-11-08 16:41:49', 'submission_id': '1gm52v7'}
{'comment': 'Oh yeah, for sure. In the end, fear mongering and misinformation won.', 'created': '2024-11-08 19:45:05', 'submission_id': '1gm52v7'}
{'comment': '> Dems haven’t ran a real primary since 2008\n\nThis is such bullshit and you know it.', 'created': '2024-11-08 11:13:56', 'submission_id': '1gm52v7'}
{'comment': 'same, it was 45 when I checked after reading this post.', 'created': '2024-11-08 05:53:44', 'submission_id': '1gm52v7'}
{'comment': "I'm just asking because I don't know how that works.", 'created': '2024-11-08 18:40:11', 'submission_id': '1gm52v7'}
{'comment': 'How? \n\n2008- Obama runs a grassroots campaign and shocks the party by taking the lead over Hilary early enough to cement himself as the nominee. He wins. \n\n2012- obviously he runs again as the popular incumbent. He wins. \n\n2016- Bernie starts out hot out of the gate in the primary elections and the party freaks out. donors pile behind Hilary and superdelegates back her despite Bernie’s popularity, because they deem her “more electable”. people are pissed, and third party candidates become wildly popular that cycle. She loses.\n\n2020- Bernie again starts out hot; a huge group of primary candidates gets whittled down and they all back Biden before Super Tuesday, in fears that Bernie might actually win again, again, because they think Biden is “more electable”. He barely wins, despite his age and an uptick in trumps support since 2016, even amidst all the scandals. \n\n2024- Joe drops out way too late, nobody dares to challenge him in the primary as the sitting president, and within hours after his departure, Kamala is given the nomination without any real say from the voters. She loses in a landslide shift to the right because Dems stayed home or voted third party.\n\nAt no time since 2008 did the will of the people get treated with respect in the primary elections of the Democratic Party. Instead they circumvented popular candidates and they lost 2/3 times because of it.', 'created': '2024-11-08 18:09:14', 'submission_id': '1gm52v7'}
{'comment': 'Oh ok - I just checked in maricopa county ballot status page …', 'created': '2024-11-08 18:41:42', 'submission_id': '1gm52v7'}
{'comment': 'Tbh, I don’t think Bernie would’ve beaten Trump and may even have lost the popular vote (Hillary at least got the popular vote). While I respect and might even agree with most of Bernie’s policies—he’s seen as too radical and at the time and maybe even now (although I question what I’m about to say next because they elected Trump for a second time), the country is generally center-left. People don’t want extremism from either side. Bernie would’ve lost against Trump in 2016 and likely 2020. Americans don’t care about slogans like, “defund the police.” And let’s be honest, he’s slightly older than Biden so the old age issue likely would’ve applied to him as well in 2020.\n\nI was one of those people that voted for Hillary over Bernie in the 2016 primaries and I voted for Biden over Bernie in the 2020 primaries.', 'created': '2024-11-09 12:02:48', 'submission_id': '1gm52v7'}
{'comment': '> 2016- Bernie starts out hot out of the gate in the primary elections and the party freaks out. donors pile behind Hilary and superdelegates back her despite Bernie’s popularity, because they deem her “more electable”. people are pissed, and third party candidates become wildly popular that cycle. She loses.\n\nPrimary voters chose Hillary.\n\n> 2020- Bernie again starts out hot; a huge group of primary candidates gets whittled down and they all back Biden before Super Tuesday, in fears that Bernie might actually win again, again, because they think Biden is “more electable”. He barely wins, despite his age and an uptick in trumps support since 2016, even amidst all the scandals.\n\nPrimary voters chose Biden.\n\n"My favorite candidate lost, so it must be rigged!"\n\nYou sound like Trump.', 'created': '2024-11-08 20:17:10', 'submission_id': '1gm52v7'}
{'comment': 'You’re belittling the impact of a grassroots campaign and that exact mentality is why Trump won again. The donors and superdelegates chose Hilary, and the donors and superdelegates chose Biden. Republicans don’t have superdelegates by the way, that’s an issue unique to democrats. By the time Biden even got to Super Tuesday all the other candidates backed out. You can keep burying your head in the sand and learn nothing from the last 8 years, but we’re going to keep running into guys like Trump if you do.', 'created': '2024-11-09 00:37:11', 'submission_id': '1gm52v7'}
{'comment': 'Keep believing in the illusion of choice you have. It’s working out great', 'created': '2024-11-09 00:42:37', 'submission_id': '1gm52v7'}
{'comment': ">The donors and superdelegates chose Hilary, and the donors and superdelegates chose Biden. By the time Biden even got to Super Tuesday all the other candidates backed out.\n\nYou're not even telling the truth.\n\nSuper Tuesday was March 3rd, 2020. Bernie dropped out more than a month later on April 8th, 2020.\n\nSuperdelegates make up less than 15% of the total delegates, and as of 2018 they aren't even allowed to vote in the first round at DNC.\n\n> You’re belittling the impact of a grassroots campaign and that exact mentality is why Trump won again.\n\nNot at all. A grassroots campaign can be a great thing, if it succeeds. We should encourage it, but recognize when it is failing.", 'created': '2024-11-09 05:11:52', 'submission_id': '1gm52v7'}
{'comment': 'That’s my point exactly, THE REST of the democratic primary group backed out before Super Tuesday to back Biden to support him AGAINST Bernie because of Bernie’s momentum. you’re failing to see the connection', 'created': '2024-11-09 07:18:21', 'submission_id': '1gm52v7'}
{'comment': "That isn't what you said, and even if that is what you meant, it's still a blatant lie/falsehood.\n\nSuper Tuesday was March 3rd, 2020\n\nSanders, Gabbard, Warren, Bloomberg were all still in the race at that point, and did not suspend until the days following Super Tuesday.", 'created': '2024-11-09 07:38:08', 'submission_id': '1gm52v7'}
{'comment': 'watch as the whole maga fantasy come crashing down over the next for years and prepare a great comeback plan.', 'created': '2024-11-08 01:30:10', 'submission_id': '1gm4vrp'}
{'comment': 'We a move to New Zealand!', 'created': '2024-11-08 01:52:00', 'submission_id': '1gm4vrp'}
{'comment': 'Hmm', 'created': '2024-11-08 01:01:16', 'submission_id': '1gm4vrp'}
{'comment': 'We all move to New Zealand!', 'created': '2024-11-08 01:52:28', 'submission_id': '1gm4vrp'}
{'comment': 'I was living in Europe 2016-2018 during that Trump administration and, while I was happy not to be in DC, looking back it wasn\'t any less painful. Constantly cringing at the news of him telling advisors and cabinet secretaries to do outrageous things, and the simply utter disrespect for people of other nations. Except Norwegians. "Why can\'t we get more Norwegians to emigrate?" 😔', 'created': '2024-11-08 01:59:45', 'submission_id': '1gm4vrp'}
{'comment': 'Midterms are (theoretically) in 2 years\n\nFirst chance to claw back something', 'created': '2024-11-08 00:58:35', 'submission_id': '1gm4mso'}
{'comment': 'No way. Authoritarians rely on apathy to gain and maintain power. The longer apathy lasts, the worse conditions will get.', 'created': '2024-11-08 01:59:34', 'submission_id': '1gm4mso'}
{'comment': "I'm thinking the opposite. Time to get MORE engaged!", 'created': '2024-11-08 02:28:34', 'submission_id': '1gm4mso'}
{'comment': "I've been very quiet on my social media...I've had a few drinks and I'm committed to flushing these turds from my life. I have a gay daughter who is 18. It's not a fad. This is who she is, and I need to stand up for her. Fuck these people, even my family members.", 'created': '2024-11-08 02:36:37', 'submission_id': '1gm4mso'}
{'comment': 'As a trans woman I have to tune in and be hyper vigilant so I know when I have to run', 'created': '2024-11-08 01:44:39', 'submission_id': '1gm4mso'}
{'comment': "Honestly with all the people wanting to protest, we tried that remember? I was at the women's march in 2017. It was so inspiring. And yet here we are.\n\nHillary won the popular vote. Biden got the most votes ever. Kamala won't even manage to win the popular vote when all is said and done. We had the opportunity to leave this man in our rear view mirror and we just didn't.\n\nI'm kinda over it right now. I wonder how many people complaining on here didn't vote that did in 2020. I imagine it's a nonzero number. There's a lot of blame to go around but a lot of this is on ourselves if we can't bother to show up when it matters.", 'created': '2024-11-08 01:38:06', 'submission_id': '1gm4mso'}
{'comment': "Personally, I think it's time to lock in for midterms. Rework the strategy to something that will actually do something, then stop the craziness of the coming 2 years at the midterms. Hopefully.", 'created': '2024-11-08 01:59:00', 'submission_id': '1gm4mso'}
{'comment': 'Take a few days or weeks off. I get it. We need to for our sanity’s sake. But once you feel recharged come back into the game. We need everyone back!', 'created': '2024-11-08 02:03:21', 'submission_id': '1gm4mso'}
{'comment': 'We’ve got a battle for house and senate in 2 years!\nAll elections matter!\nThe president isn’t “king” .\nPlease vote locally and for your state representatives!\nStudy civics and understand how bills get passed!', 'created': '2024-11-08 03:03:57', 'submission_id': '1gm4mso'}
{'comment': "Time to tune out. But if legislation to mass deport or take away queer rights come up, we get out and protest like never before.\n\nThose of you not tuning out, every bad policy and every downward economic trend needs to be blasted everywhere on social media non stop.\n\n2 years till midterms, it's our only hope at slowing the fascists down.", 'created': '2024-11-08 01:40:24', 'submission_id': '1gm4mso'}
{'comment': 'I stopped watching nightly news over a year ago. I stopped watching CNN and MSNBC around the same time. I only watch my local news at times- and read NYT. I used to watch Trump’s every move and was on twitter to bear witness to his insanity. I dropped out when he lost in 2020. I hate the talking heads. I have no intention to listen to Trump ever again.', 'created': '2024-11-08 02:05:23', 'submission_id': '1gm4mso'}
{'comment': 'Rest because you can’t pour from an empty cup. Then fight.', 'created': '2024-11-08 03:18:04', 'submission_id': '1gm4mso'}
{'comment': 'If you’re young and don’t have kids in school, run. Get out while you still can. I would', 'created': '2024-11-08 02:35:51', 'submission_id': '1gm4mso'}
{'comment': '\n\nKind of hard to ignore all of your rights and benefits, vanishing right before your eyes. Just saying', 'created': '2024-11-08 04:57:30', 'submission_id': '1gm4mso'}
{'comment': '2 years- midterms', 'created': '2024-11-08 03:39:45', 'submission_id': '1gm4mso'}
{'comment': 'I’ve removed all of my news apps, unfollowed new sites on socials, and hidden my republican family members on FB. my mental health is pretty low right now and I needed a detox from it all.\n\nHowever, the second that guy starts implementing Project 2025, in on the fight. I’m a teacher and my students and my job are on the line', 'created': '2024-11-08 04:05:02', 'submission_id': '1gm4mso'}
{'comment': "It's a health requirement for me at this point.", 'created': '2024-11-08 04:53:51', 'submission_id': '1gm4mso'}
{'comment': "I'm taking it day by day right now. For the sake of my sanity, I'm just focusing on work and going to recovery meetings. I'm trying to avoid thinking about the mess that lies ahead. There's nothing I can do about it right now. When the time comes to take action, I'll try my best to do my part. But I worked on the Hillary campaign in 2016. After Trump got elected, I protested and canvassed and made phone calls and basically made it my second job to prevent him and his ilk from gaining any more power. I'm burned out y'all. I'm trying to bounce back from a relapse I had on Sunday and I'll be no use if I'm dead. If I can offer any advice, it would be to do this shit like the drunks do: one day at a time.", 'created': '2024-11-08 03:26:16', 'submission_id': '1gm4mso'}
{'comment': 'Tuning out comes from a place of privilege. If you belong to a marginalized community, this is the wrong answer. If you care about those of us in these communities this is not the answer. We all feel immense despair or grief right now. But, if you think you’re tired now, you have no idea how much worse it will get. Did you protest? Good. Did you vote? I hope so. Did you volunteer? I hope so. Did you go to actual war? Nope, not with Republicans. We are all tired, but if you stop fighting for your rights, then you can rest knowing you will have none remaining. You’ll have no rights as a woman, no rights as a minority, no rights as a lgbtq person, no rights as an American because this is what they want!!!! They love that you’re going to give up! Are you really ok with that? You feel helpless or beat up, but it’s not over!! Take a breather, but never give up your human rights!!!!', 'created': '2024-11-08 04:20:11', 'submission_id': '1gm4mso'}
{'comment': 'Help others.', 'created': '2024-11-08 02:41:13', 'submission_id': '1gm4mso'}
{'comment': 'We have to make a change and fight for it. We can’t sit by in apathy and let things get worse. Then they really win. They want us to be apathetic. \n\nWe must protect our communities and get involved. We must band together. There are things we can do to protect our local governments and even fight back. \n\nWe need to figure out what went wrong this time and fix it. We need to be angrier and more ready to defend than ever.', 'created': '2024-11-08 02:54:01', 'submission_id': '1gm4mso'}
{'comment': "Not an option. We can't tune out, we have to fight this. He's our president (ugh) so as citizens it's now our duty to push back on his bs.", 'created': '2024-11-08 05:09:50', 'submission_id': '1gm4mso'}
{'comment': "I absolutely want to tune out. At the very least I need a long vacation, if nothing else just for my mental health. I'm thinking of it as a tornado of crap that is approaching our way. The best I can do right now is hide in the bunker and emerge two years from now to vote, taking a deep breath and hoping that the damage hasn't been too horrifying.\n\nIt doesn't help me at all right now to keep up with the news. On the contrary.", 'created': '2024-11-08 06:13:43', 'submission_id': '1gm4mso'}
{'comment': 'I am involved in local politics (in a dem heavy state) but I’ll keep fighting. I have no problem being vocal about how stupid these people are.', 'created': '2024-11-08 02:19:25', 'submission_id': '1gm4mso'}
{'comment': 'Tune out for a month or so then start looking at what’s going on. Keep communicating with likeminded people for support.', 'created': '2024-11-08 02:28:45', 'submission_id': '1gm4mso'}
{'comment': 'Thats what they want you to do. If you become apathetic, they win.\n\nYou dont have to follow along every day, but you need to be ready. When there is a vote, a protest, a call to action...Be ready to answer it.\n\nThey only win if we give up the fight.', 'created': '2024-11-08 03:17:29', 'submission_id': '1gm4mso'}
{'comment': '2 years', 'created': '2024-11-08 03:41:39', 'submission_id': '1gm4mso'}
{'comment': 'We’re electing a new governor in Virginia next year. We need to elect Abigail Spanberger.', 'created': '2024-11-08 05:16:10', 'submission_id': '1gm4mso'}
{'comment': "It's not a game. Tuning out is a luxury. You can do it if you want, whatever, but untold suffering is about to unfold and the chances are high things will be exponentially worse when you decide to tune back. So, whatever.", 'created': '2024-11-08 02:15:09', 'submission_id': '1gm4mso'}
{'comment': 'Be even more vigilant! Our blue governors have already issued "don\'t F with us" statements to the new administration, let\'s be there to support them!', 'created': '2024-11-08 03:20:05', 'submission_id': '1gm4mso'}
{'comment': 'We live in a representative democracy. We just sent at least 200 democrats to congress to represent our interests. It’s their job to fight. It’s why we pay them. I’m gonna go be a good husband, dad, neighbor and vote again in 2 years.', 'created': '2024-11-08 04:04:59', 'submission_id': '1gm4mso'}
{'comment': 'No. I’ll be doing the opposite of ignoring.\n\nI’ll be struggling against all of this.\n\nAnd so should you.', 'created': '2024-11-08 04:28:50', 'submission_id': '1gm4mso'}
{'comment': "I'm still in my venting phase, but I will probably tune out until closer to mid terms.\n\nI won't ignore the news, but I will try to avoid discourse. I may even get more shit done in the process, as I've been overly tuned to engage since Covid.\n\nI'll go back to talking in gaming and nerd communities, which are much more fun. Maybe fix up the house more, which I put on hold after a back injury.", 'created': '2024-11-08 04:42:08', 'submission_id': '1gm4mso'}
{'comment': 'No! You do NOT tune out. You talk with people, continue to educate the people around you and help us prepare for the next election.', 'created': '2024-11-08 04:55:37', 'submission_id': '1gm4mso'}
{'comment': "My plan is to be much more conscious and intentional about my involvement in politics. That means how much time (I'll limit it to a reasonable amount), and it also means how I let it affect me.\n\nKeep informed? Definitely.\n\nTake whatever action I can? Yes. But only if it's constructive and is actually going to make a difference.\n\nLet myself feel some frustration and anger when I hear bad news? Yes, some. I can't realistically expect to never be emotionally affected (and I wouldn't want that).\n\nAllow myself to dwell on stuff after the point when it has registered? No. That doesn't help anything. It just makes me suffer.\n\nDoom scroll? No.\n\nWrite off the next 4 years and put enjoying my life on pause? Heck no. I have limited time on this planet, and I'm not going to let these jerks rob me of January 2025 through January 2029.", 'created': '2024-11-08 07:00:00', 'submission_id': '1gm4mso'}
{'comment': "Nothing wrong with giving your state and federal congress-people and earful. Resistbot is still around to make that a little easier.\n\nTake breaks to recharge when you need to, but I think we can expect to see a ton of regressive bills coming through in the next 4 years. If nothing else I'll be reminding them that not all their constituents support those bills.", 'created': '2024-11-08 08:01:37', 'submission_id': '1gm4mso'}
{'comment': 'Chaos brings opportunity - Democrats just need to recognize it and seize it.', 'created': '2024-11-08 09:38:46', 'submission_id': '1gm4mso'}
{'comment': "I feel like I'm at a crossroads. I've lost faith in the nation and it's people, do I just give up? We are gonna be dealing with this for a lot longer than 4 years. Or, is this where I radicalize? I feel like there's no in-between lmao", 'created': '2024-11-08 01:58:05', 'submission_id': '1gm4mso'}
{'comment': "The urge to become really cynical is very strong. Sitting back and enjoying seeing the world burn is easy when you're far away on the Internet. It's different when my friend at work tells me she's scared after the election", 'created': '2024-11-08 03:29:46', 'submission_id': '1gm4mso'}
{'comment': 'Sure if you want to tune out so they continue to roll right over all your rights, good luck. People, you voted! You didn’t go to war for gods sake! I get it, there’s despair, but so many of you just want to throw in the towel now. No wonder the Right thinks we are wimps! Do they give up? Nope, they fight. But, I guess we learn to live under a dictator because we are sad. Jfc!', 'created': '2024-11-08 03:59:50', 'submission_id': '1gm4mso'}
{'comment': 'good luck, everyone will feel the pain of this shit show', 'created': '2024-11-08 04:03:41', 'submission_id': '1gm4mso'}
{'comment': 'No! That’s how we got here!', 'created': '2024-11-08 04:20:00', 'submission_id': '1gm4mso'}
{'comment': 'I’m considering the same thing. My husband is a bona fide Trumper who has cancer, my last dog is fading fast and I can’t handle much more. This absolutely sucks.', 'created': '2024-11-08 04:34:25', 'submission_id': '1gm4mso'}
{'comment': "We can't afford to tune out for the next 4 years. We need to keep fighting the good fight. We need to get people in local elected offices to be able to help more. If you know someone good convince them to run for city council or school board, or even do it yourself.", 'created': '2024-11-08 05:26:56', 'submission_id': '1gm4mso'}
{'comment': None, 'created': '2024-11-08 06:32:12', 'submission_id': '1gm4mso'}
{'comment': 'Oh, no, we need to keep track of every single gaff and fuckup Trump makes. It won\'t convince his supporters that he\'s a piece of shit, as evidence of his last term, but when you smack a stack in front of them, it looks better than standing there with you\'re mouth open or just saying "I just *know*"', 'created': '2024-11-08 06:43:41', 'submission_id': '1gm4mso'}
{'comment': 'Hell no. I’m going to disrupt and derail them every chance I get.', 'created': '2024-11-08 07:01:36', 'submission_id': '1gm4mso'}
{'comment': "I stopped watching the news and I've never felt better", 'created': '2024-11-08 13:53:06', 'submission_id': '1gm4mso'}
{'comment': "You won't be able to ignore Project 2025. It will be enacted.", 'created': '2024-11-08 14:04:10', 'submission_id': '1gm4mso'}
{'comment': '“Be engaged but not obsessed” is the best advice I heard.', 'created': '2024-11-08 14:11:33', 'submission_id': '1gm4mso'}
{'comment': "Take the time you need for your mental health, but we're going to need everyone to keep the damage to as little as possible.", 'created': '2024-11-08 14:40:48', 'submission_id': '1gm4mso'}
{'comment': 'I want to tune about but I will not be silent. I’m going to keep fighting.', 'created': '2024-11-08 16:01:08', 'submission_id': '1gm4mso'}
{'comment': "I'm in a red state, my vote means absolutely nothing.", 'created': '2024-11-08 19:16:47', 'submission_id': '1gm4mso'}
{'comment': 'This country could burn down for all I care.', 'created': '2024-11-08 03:39:25', 'submission_id': '1gm4mso'}
{'comment': "Yep, I'm out...", 'created': '2024-11-08 04:39:26', 'submission_id': '1gm4mso'}
{'comment': 'Yes. Absolutely. Go stoic.', 'created': '2024-11-08 01:52:57', 'submission_id': '1gm4mso'}
{'comment': 'That’s what alcohol is for', 'created': '2024-11-08 03:12:56', 'submission_id': '1gm4mso'}
{'comment': 'I’m waiting for the Simpsons to finally get it right in 2028. I’m not holding my breath we will ever have an election again. With all this talk of Project 2025 and Elon gutting our budget, I really just want to live under a rock the next 4 years.', 'created': '2024-11-08 03:31:01', 'submission_id': '1gm4mso'}
{'comment': 'Hate to say it but we really have no idea what might happen in the coming months, years. The worst president in our nations history has just won again. It is going to be a complete disaster for the environment, he will tear everything down in an attempt to help billionaires. Any govt office he sees as a former threat, gone. Any employee that resisted him, gone. The USA will change in ways we can’t imagine', 'created': '2024-11-08 03:49:14', 'submission_id': '1gm4mso'}
{'comment': "No because I realized I have this privilege and want to stick up for others who don't get the chance to ignore politics for four years. The work begins now, well it hasn't stopped, but it's time to start working harder.", 'created': '2024-11-08 04:04:22', 'submission_id': '1gm4mso'}
{'comment': 'I would take it easy from the bullshit for a while. Unfortunately you still need to participate and pay attention.', 'created': '2024-11-08 04:14:52', 'submission_id': '1gm4mso'}
{'comment': 'You bet', 'created': '2024-11-08 04:46:27', 'submission_id': '1gm4mso'}
{'comment': 'I feel the same way', 'created': '2024-11-08 04:54:06', 'submission_id': '1gm4mso'}
{'comment': 'Can’t tune out. *Especially* now. Don’t stick your head in the sand when things get rough.', 'created': '2024-11-08 05:37:46', 'submission_id': '1gm4mso'}
{'comment': 'Nah, I’m going head in the sand for a few weeks but will surface soon to begin the resistance and fight to get back.', 'created': '2024-11-08 06:40:07', 'submission_id': '1gm4mso'}
{'comment': "that's if the midterms are free and fair", 'created': '2024-11-08 06:48:34', 'submission_id': '1gm4mso'}
{'comment': 'On one hand I’d like to bury my head in the sand, but instead I’m actually gonna be hyper aware. I’m gonna set up email alerts on congress.gov, watch C-SPAN, the whole nine yards. I’m gonna keep track of what happens, because people have really short term memories.', 'created': '2024-11-08 07:02:20', 'submission_id': '1gm4mso'}
{'comment': 'Ha ha! Why do you think it will be different in four years?', 'created': '2024-11-08 07:07:24', 'submission_id': '1gm4mso'}
{'comment': 'Tune IN MFer', 'created': '2024-11-08 07:15:25', 'submission_id': '1gm4mso'}
{'comment': "That's pretty much what I'll do", 'created': '2024-11-08 07:33:09', 'submission_id': '1gm4mso'}
{'comment': "Honestly, I'm right there with you. I think the Democratic party has to fundamentally redefine the party and what it means to be an American Democrat. We as a society need a better way to interact and communicate. The Dem party needs to adapt to a new messaging model before the midterms. I think we really need to self reflect and stop blaming others. We can only win with vibes now", 'created': '2024-11-08 08:25:34', 'submission_id': '1gm4mso'}
{'comment': 'I understand the sentiment. The last thing I want to do is look and pay attention to this orange fuck but now more than ever we need to pay attention and come together.', 'created': '2024-11-08 09:05:23', 'submission_id': '1gm4mso'}
{'comment': 'Yes I\'m tempted too. But that would be playing right into their hands. If we tune out, the republicans win. I know it\'s tiring but this is gonna be a long, tiring political slugfest. I don\'t like it, but politics and creating progress is rarely "feel good" deal when doing the work. The happy feels happens after goals are achieved (end of segregation, women\'s right to vote, marriage equality, legalized abortion etc).\n\nNo way to sugarcoat it. This is gonna be a long, grinding fight.', 'created': '2024-11-08 09:14:28', 'submission_id': '1gm4mso'}
{'comment': 'I would gladly go into a coma for 4 years and wake up on Jan. 20, 2029.', 'created': '2024-11-08 09:20:11', 'submission_id': '1gm4mso'}
{'comment': 'I will do whatever I can for the midterms.', 'created': '2024-11-08 09:30:18', 'submission_id': '1gm4mso'}
{'comment': 'It’s so hard because we’re going to have to know what 💩 he’s doing next.', 'created': '2024-11-08 10:35:35', 'submission_id': '1gm4mso'}
{'comment': 'You should fear for the children. \n\nAnd the best thing you can do for them is to start making them resistant to fascist ideology. Particularly boys, since young males are historically more easily radicalized than young women.', 'created': '2024-11-08 10:43:55', 'submission_id': '1gm4mso'}
{'comment': 'As a Progressive middle aged white male, it\'s hit me with stunning clarity just how irrelevant I am within the electorate. Nobody else cares what a guy like me thinks or wants or even needs. Every other demographic slot has some need to fulfill that\'s recognized by someone else in the political spectrum, but not us. We may as well not even exist. \n\nSo, I\'m just going to try leaning into the "not existing" part for a while. I\'m going to treat politics like a hot stove in my mind that I\'m just not going to touch. \n\nAnd I know that this election wasn\'t about guys like me, I get it. We\'re probably the most self-sufficient piece of a very self-sufficient generation, But there\'s probably at least a few other people who feel this way. And I think now, with what we\'re facing, I need to just focus on my own mental well being first and foremost. I need to lean into self sufficiency for the next phase of my life. \n\nI dunno. Just seems better for my mental health for me to focus on the rest of life for a while. Come get me when someone gives a shit about guys like me again.', 'created': '2024-11-08 13:40:47', 'submission_id': '1gm4mso'}
{'comment': 'Since we can apparently no longer trust politicians to do literally anything rational anymore, I guess we the people are on our own to fend for ourselves within the limits of the law.', 'created': '2024-11-08 14:14:54', 'submission_id': '1gm4mso'}
{'comment': 'This is exactly what they want. We need to rest up and take care of ourselves for a bit, then we need to get back to the battlefield! \n\nHistory shows us that fascist regimes do not succeed. \n\nWe need to take a deep breath, step back, and use a more educated strategic approach. \n\nWhat I mean by this is that the means by which we got here are complicated and the solutions will be complicated. \n\nAnd most people do not have even a basic concept of how the government works, how politics work, what the constitution means, the history behind our current state. \n\nThis is intentional. It provides an opportunity for the minority to rule. \n\nHonestly, I didn’t really deep dive into politics until Trump got elected. His election was so far away from what I’d always believed was a given, and I wanted so badly to know how and why it happened. \n\nKnowledge is power. \n\nI’m not saying, “drop everything and dig in.” That not practical for so many people. But avoiding mainstream media is a good start. There are apps available that analyze and rate news articles based on their factuality and political bias. I use Ground News, though I’m sure there are others. \n\nI could go on forever, but basically, start paying closer attention to your local government. This has become more difficult in late because local journalism is dying, but keep an eye out. \n\nThis, in my opinion is a good place to start. 💪🏻', 'created': '2024-11-08 14:52:25', 'submission_id': '1gm4mso'}
{'comment': 'Absolutely terrible idea.', 'created': '2024-11-08 14:58:50', 'submission_id': '1gm4mso'}
{'comment': 'Who thinks we’re going to have real elections in the coming years? I don’t.', 'created': '2024-11-08 15:26:32', 'submission_id': '1gm4mso'}
{'comment': "That's how I'm handling it. Just ignore those mofos", 'created': '2024-11-08 15:37:51', 'submission_id': '1gm4mso'}
{'comment': 'Let the cultists and bed rotters burn hopefully they learn but try and help those who tried ( and children/ non citizens) and did not invite facism.', 'created': '2024-11-08 15:40:45', 'submission_id': '1gm4mso'}
{'comment': 'If we stop paying attention they win. But damn I know how you feel. I believe he will take revenge on news outlets, Liz Cheney, Adam Schiff and many others and start deporting people. What that looks like and how the economy and people respond to tariffs and deportation remains to be seen.', 'created': '2024-11-08 16:13:46', 'submission_id': '1gm4mso'}
{'comment': 'Yeah, me and my girlfriend are thinking of cutting off from the internet, were gonna try to either go somewhat off the grid, or moving to Alberta and just giving up', 'created': '2024-11-08 16:23:17', 'submission_id': '1gm4mso'}
{'comment': 'Honestly I’m just going to be glue in the system in every way I can. In past two days I have driven 1mph slower than the speed limit in the right lane. (Got a tone of fingers and ‘I’ll show you’ cutoffs🤪) I am switching to cash only. I cancelled Prime and everything else my family will let me. We won’t eat out again and will shop as local as we can. I will do the absolute minimum for my tenants and anyone else I encounter and do the maximum I can for me and my family. So I’m going to tune the fuck out all the way. I’m the gum not the glue.', 'created': '2024-11-08 16:34:38', 'submission_id': '1gm4mso'}
{'comment': 'Is there a way to block anything trump related from my phone, tv, Please help a newbie on this, something on router level and phone.', 'created': '2024-11-08 17:24:02', 'submission_id': '1gm4mso'}
{'comment': "By all means, do what you need to do to safeguard your mental health. Awhile ago I bought a Donald Trump toilet scrubber and rolls of Donald Trump toilet paper. I thought it was funny to wipe my ass with him and then clean the shitter with his head. This morning I threw it all away, because it makes me angry just to see that guy's face or name.\n\nBut please don't give up. Take your time away that you need, but then let's get back in the fight.", 'created': '2024-11-08 17:44:11', 'submission_id': '1gm4mso'}
{'comment': 'I look forward to hearing trump voters complain. I also want the dnc to completely dissolve and start over the leadership and donors clearly\nCan be trusted with our country anymore. They need a new guard. This is what happens when the old guard doesn’t pass the torch. Done.', 'created': '2024-11-08 18:47:45', 'submission_id': '1gm4mso'}
{'comment': 'I will have to take a break from news for a long time, I will likely only check in here as I find reddit useful on many levels. Watching the news channels and their analyses only aggrevates me & given my chroic medical conditon (crps) I have to protect myself from this chaos and what will follow. So I will tune out for a long time, create my own little bubble, play with my dog and listen to music instead of news. Anything but news is how I aim to remain sane.', 'created': '2024-11-08 19:05:30', 'submission_id': '1gm4mso'}
{'comment': "I get the appeal, but we can't do this. People tuning out is what caused this in the first place. Millions of dems stayed home.", 'created': '2024-11-08 19:06:30', 'submission_id': '1gm4mso'}
{'comment': "Many people are checking and finding that their votes simply were not counted. Let's make this go viral and demand a re-vote or re-count.\n\n**Check your vote through vote.org:**\xa0\n\n(It seems that mostly mail-in ballots were affected)\xa0\n\n[vote.org/ballot-tracker-tools/](http://vote.org/ballot-tracker-tools/)\xa0\xa0\n\n**Contact these agencies**\xa0to report votes that were not properly counted, or that were changed in status after the fact:\n\n(Include any details or evidence you have about your claim. Be as specific as possible.)\n\n**The White House:**\n\n[https://www.whitehouse.gov/contact/](https://www.whitehouse.gov/contact/)\xa0\n\n**State Attorney General:**\xa0\n\nFind your AG:\xa0[https://www.naag.org/find-my-ag/](https://www.naag.org/find-my-ag/)\xa0\n\n(Go to your state AG site and find their contact page)\xa0\n\n**Federal Election Commission:**\xa0\n\n[enfcomplaint@fec.gov](mailto:enfcomplaint@fec.gov)\xa0\n\n**Your state’s voting site:**\xa0\n\n[ballotpedia.org/List\\_of\\_official\\_voter\\_registration\\_websites\\_by\\_state](http://ballotpedia.org/List_of_official_voter_registration_websites_by_state)\xa0\xa0\n\n(Find contact information on their sites, or find your Secretary of State)\xa0\n\n**Harris / Walz campaign:**\xa0\n\n[https://kamalaharris.com/contact-us/](https://kamalaharris.com/contact-us/)\xa0\n\n**ACLU:**\xa0\n\nLocal ACLU offices:\xa0[aclu.org/affiliates](http://aclu.org/affiliates)\xa0\n\n* Go to local page, and find contact\xa0\n* The ACLU is already suing Michigan for voter intimidation - be sure to report any tampering or illegal voting activity you witnessed\xa0\n\n**FBI tips:**\xa0\n\n[tips.fbi.gov](http://tips.fbi.gov/)\xa0\n\nSample letter:\xa0\n\nDear \\_\\_\\_\\_\\_,\xa0\n\n(Explain the circumstances surrounding your missing, deleted, or invalid vote.)\n\nImportant things to include:\n\n* Your voting method (in-person or mail-in)\xa0\n* \\*Your state of residence\xa0\n* Dates, times, and locations where you voted or where you dropped your ballot etc.\xa0\n* Screenshots or visual evidence of your claim\n\nI urge you to please investigate this claim as well as the thousands of other claims of people’s votes being deleted or marked invalid afterward. As there are several current reports of foreign election interference, and open investigations of voter intimidation, an investigation and recount for the election results are urgently necessary to protect the sanctity of our Democracy.\xa0\n\nI would sincerely appreciate a confirmation as receipt of this message.\xa0\n\nThank you for your help,\xa0\n\n\\_\\_\\_\\_\\_\\_\n\nDemocrats need volunteers to help cure ballots, which will help significantly.\n\nBallot Cure Phonebank:\n\nAZ [https://www.mobilize.us/jumpstartaz/event/717867/](https://www.mobilize.us/jumpstartaz/event/717867/)\n\nNZ [https://www.mobilize.us/2024nvvictory/event/724469/](https://www.mobilize.us/2024nvvictory/event/724469/)\n\nVA [https://www.mobilize.us/mobilize/event/725001/](https://www.mobilize.us/mobilize/event/725001/)\n\nOH [https://www.mobilize.us/mobilize/event/714404/](https://www.mobilize.us/mobilize/event/714404/)\n\nPhiladelphia [https://www.mobilize.us/mobilize/event/718650/](https://www.mobilize.us/mobilize/event/718650/)\n\nPA [https://www.mobilize.us/mobilize/event/676131/](https://www.mobilize.us/mobilize/event/676131/)", 'created': '2024-11-08 20:55:54', 'submission_id': '1gm4mso'}
{'comment': 'Yes!!', 'created': '2024-11-08 21:21:14', 'submission_id': '1gm4mso'}
{'comment': 'You are not the only one. I did this for a lot of 2016-2020. For the next four years I plan to turn inward and focus on family and community and follow my county and state news.', 'created': '2024-11-08 21:46:02', 'submission_id': '1gm4mso'}
{'comment': 'I want to tune out now too, but to be honest I think we need to pay attention now more than ever.', 'created': '2024-11-08 21:51:38', 'submission_id': '1gm4mso'}
{'comment': 'Turned my FB profile and cover pic to black. I’m outta there. Too many Nazis.', 'created': '2024-11-08 21:58:40', 'submission_id': '1gm4mso'}
{'comment': 'I have PTSD from the last time.', 'created': '2024-11-08 22:44:18', 'submission_id': '1gm4mso'}
{'comment': "I'm probably not going to watch Meet The Press for a while, I expect at least until the Inauguration that the election will be the primary topic. I'm going to try to set aside money to donate for the Midterms.\n\nDon't expect to hear any protests from me when the deportations and Stop and Frisks start", 'created': '2024-11-09 14:08:01', 'submission_id': '1gm4mso'}
{'comment': "NO, you get 24 months like the rest of us. In fact, you need to be back on your ball in about 14 months to help with the rest of us to get the mid-terms on track. That's basically just over a year, then 9 months of hard work, to win them.", 'created': '2024-11-10 02:16:19', 'submission_id': '1gm4mso'}
{'comment': 'Good luck.', 'created': '2024-11-08 01:10:48', 'submission_id': '1gm4mso'}
{'comment': "I'm just gonna sit back and watch everything they invited to happen. I hope it's worth it to them.", 'created': '2024-11-08 02:28:34', 'submission_id': '1gm4mso'}
{'comment': 'Supreme Court ruling gives sitting president unlimited power. Good luck with fighting that', 'created': '2024-11-08 03:35:57', 'submission_id': '1gm4mso'}
{'comment': "i hate to say this, but the best thing to do is continue organizing, catering to key demographics and tackling the issues they face\n\nwhile it's good that some of you tried to constructively dissect what kamala did wrong in her campaign and she could have done better; to the others, don't play the blame game, since some demographics felt alienated or demonized, instead, grassroots movements/orgamizations should address the issues they face and find potential solutions", 'created': '2024-11-08 03:52:52', 'submission_id': '1gm4mso'}
{'comment': 'The height of privilege.', 'created': '2024-11-08 05:54:15', 'submission_id': '1gm4mso'}
{'comment': 'If you think you have that privilege, do what you need to for your own mental health. Good luck.', 'created': '2024-11-08 03:22:06', 'submission_id': '1gm4mso'}
{'comment': 'I’m gonna sit back and enjoy the shitshow 🍿', 'created': '2024-11-08 02:12:02', 'submission_id': '1gm4mso'}
{'comment': 'I think I have to tune out for my own mental health. Last time and for the past 8 yrs I heeded the call to fight back, resist, organize, knock on doors, get out the vote, etc.\nBut now I’m just exhausted and if millions of 2020 Biden voters couldn’t be bothered to do the bare minimum and come out to vote to save the republic, then I just don’t have the heart to think and talk about it anymore.', 'created': '2024-11-08 03:24:15', 'submission_id': '1gm4mso'}
{'comment': 'Any chance I get to vote and possibly make a change, I’ll do. I’m in NY so we have a decent chance of getting some good people in. (Thankfully we didn’t get that horrible Alison Esposito in my district, let’s go Pat Ryan)\n\nHopefully some of these Dems who didn’t vote, especially Gen Z like me, will be more motivated to get out in 2 years and contribute. I think many truly thought Harris had this in the bag and didn’t bother voting, so hopefully they’ll learn now.', 'created': '2024-11-08 04:41:44', 'submission_id': '1gm4mso'}
{'comment': "Bold of you to assume we'll have elections in 2026", 'created': '2024-11-08 01:47:28', 'submission_id': '1gm4mso'}
{'comment': 'There will be no more elections 😝', 'created': '2024-11-08 04:42:04', 'submission_id': '1gm4mso'}
{'comment': 'I’d love that optimism, but Florida is a red state. End of discussion.', 'created': '2024-11-08 03:13:03', 'submission_id': '1gm4mso'}
{'comment': 'Lawsuits, protests, sharing information about policies and people are continuous.', 'created': '2024-11-08 12:12:08', 'submission_id': '1gm4mso'}
{'comment': 'Yeah- if we still have real elections by that point. \n\nOur elections are incredibly distributed with no centralized power with incredibly thin margins. You really only need a handful of corrupt people in the right positions/ states. \n\nWith a corrupt attorney general we know Trump will select, I am not 100% confident America will have legitimate elections again.', 'created': '2024-11-08 18:29:13', 'submission_id': '1gm4mso'}
{'comment': 'Came here to say this. Take receipts and take em to the polls midterms', 'created': '2024-11-09 06:37:33', 'submission_id': '1gm4mso'}
{'comment': "Not for me, either. I'm doing ok and most likely won't be affected but I feel an obligation to fight for those who may be targeted.", 'created': '2024-11-08 02:57:22', 'submission_id': '1gm4mso'}
{'comment': 'This!', 'created': '2024-11-08 03:47:45', 'submission_id': '1gm4mso'}
{'comment': 'Civil Disobedience, ala Martin Luther King Jr, my friend. Remember though that fascists will resort to violence and will use the threat of that to control.', 'created': '2024-11-08 22:06:21', 'submission_id': '1gm4mso'}
{'comment': 'This is the only way we can right the ship', 'created': '2024-11-08 02:35:23', 'submission_id': '1gm4mso'}
{'comment': 'Thank you', 'created': '2024-11-08 04:56:39', 'submission_id': '1gm4mso'}
{'comment': 'As a gay woman, I thank you good Sir.', 'created': '2024-11-08 03:18:57', 'submission_id': '1gm4mso'}
{'comment': "I'm with ya girlie 💖🫂", 'created': '2024-11-08 02:28:27', 'submission_id': '1gm4mso'}
{'comment': 'This', 'created': '2024-11-08 02:36:43', 'submission_id': '1gm4mso'}
{'comment': 'With you on this. Ignoring is not an option', 'created': '2024-11-08 04:56:14', 'submission_id': '1gm4mso'}
{'comment': 'Or fight', 'created': '2024-11-08 03:08:07', 'submission_id': '1gm4mso'}
{'comment': 'The Dem turnout is unforgivable.', 'created': '2024-11-08 02:39:11', 'submission_id': '1gm4mso'}
{'comment': 'How can one person fail upward every single time ???', 'created': '2024-11-08 03:53:08', 'submission_id': '1gm4mso'}
{'comment': 'Im trying to keep reminding myself of Obama\'s last words to the nation the first go around. "The sun will always rise on a new day." Or something like that.\n\nHowever, Project 2025 scares the living s**t out of me.', 'created': '2024-11-08 05:39:45', 'submission_id': '1gm4mso'}
{'comment': 'one single march would never do it.', 'created': '2024-11-08 01:50:22', 'submission_id': '1gm4mso'}
{'comment': "Sadly, if something can't be done using a smartphone, lots of people can't be bothered. And there's no way they'll ever allow voting via phone. Sigh...", 'created': '2024-11-08 06:09:45', 'submission_id': '1gm4mso'}
{'comment': "Biden had the chance to put him in the rear view mirror. Hit him and the worst of J6 domestic terrorists and their abettors within the GOP House/Senate fast and hard with the full force of the law. Even more so when the Georgia tape and stolen docs came out. Trump should have been behind bars by 2022 at the latest and campaigned on it+Roe overturned and we may have actually had a BLUE WAVE midterm instead of just a Red trickle. But he and Garland slow walked everything for 'unity'. Fuck unity. No unity can be had with fascists. He should have broke their backs when they had the chance.", 'created': '2024-11-08 08:23:24', 'submission_id': '1gm4mso'}
{'comment': "I'm in Ohio. we'll be having a special election sooner rather than later for a senate seat.", 'created': '2024-11-08 04:50:19', 'submission_id': '1gm4mso'}
{'comment': 'Keeping a high level awareness of things is good. Maybe get a local newspaper subscription, but doom scrolling and being a professional news consumer is bad for ones mental health.', 'created': '2024-11-08 02:35:09', 'submission_id': '1gm4mso'}
{'comment': 'One should stay aware, and respond when they feel appropriate, but for some, such as myself, continuing engagement on a daily basis is not going to be healthy for my sanity.', 'created': '2024-11-08 04:48:46', 'submission_id': '1gm4mso'}
{'comment': 'I\'ve found, during Covid, watching late night monologues is an easier way to digest some of this news. Seth Meyers "A Closer Look" in particular is really good at putting issues in perspective. Jon Stewart and the daily show as well, although his brand of frantic panic can be a bit much at times. Colbert and Kimmel are also pretty fun for more standard late night fare.', 'created': '2024-11-08 04:51:47', 'submission_id': '1gm4mso'}
{'comment': 'Embrace for impact. We need each other and community.', 'created': '2024-11-08 03:20:09', 'submission_id': '1gm4mso'}
{'comment': "My wife and I don't plan on having kids this decade, maybe ever depending on politics. We're sticking this out and putting up a fight in our red state.", 'created': '2024-11-08 09:50:54', 'submission_id': '1gm4mso'}
{'comment': "I firmly believe the start of Project 2025 will be the beginning of the end for MAGA. Trump's win was not a win for Project 2025, it was a win for the Trump brand among low information voters. Project 2025 and Trump's economic policy are going to piss a lot of people off.\n\nTrump won largely because of grocery prices and how the economy felt.\n\nTariffs alone are going to royally fuck those up. Removing millions of under-paid undocumented laborers is going to royally fuck those up.\n\nWe need to capitalize on that before MAGA is forcing teachers like yourself to force it on students for generations.", 'created': '2024-11-08 09:56:28', 'submission_id': '1gm4mso'}
{'comment': 'My job is most definitely on the line. They want to make cuts to disability benefits, social security and medicare/medicaid. My job is to take care of the severely disabled, they rely on those programs. So once that happens they can’t afford me and that’s the end of my near decade career of being a caregiver.\xa0', 'created': '2024-11-08 18:32:57', 'submission_id': '1gm4mso'}
{'comment': "And we need to be ready to shine the light on MAGA Republicans when the economy goes to shit and prices skyrocket from their economic policies. We know the playbook, we know what will happen if they enact it, and we know they have the power to do so. We need to be ready for the resulting backlash.\n\nLow information voters supported Trump because of grocery prices and the economy. 2026 and 2028 after Trump's tariffs and deporting millions of undocumented laborers that will need to be replaced by higher paid citizens will be an easy win with these voters IF we can capitalize on it and stay ahead of it before they can blame it on another scapegoat marginalized group.\n\nAnd yes, angrier and louder, but about the specific issues that average American voters care about day to day. We need to shelve some of our social change policies for now until we have any actual legislative power and speak to the things average rural swing state voters care about or we will never have the power for them for decades after MAGA propaganda and education take hold. And for the issues we do focus on, we need to take it further and better differentiate. We need to push further left on workers' rights, healthcare, etc. \n\nWe need to actually push for change and progress that affects the every day lives of the people that voted for Trump and do so in concise and easy to grasp ways that don't require a dozen pages of reading to convey no matter how well researched and sourced it is. That just doesn't work.", 'created': '2024-11-08 10:07:27', 'submission_id': '1gm4mso'}
{'comment': "I'd probably feel a little better if I was in a dem state. but I'm in Ohio, and we got hit pretty bad this election. At least for the time being, our Governor is only a small piece of crap, not a major one.", 'created': '2024-11-08 04:53:36', 'submission_id': '1gm4mso'}
{'comment': 'Thank you 💙👆', 'created': '2024-11-08 14:52:57', 'submission_id': '1gm4mso'}
{'comment': 'I just need to tune out until January 20th. I need a mental health break and a recharge before I start to care again.', 'created': '2024-11-08 09:22:39', 'submission_id': '1gm4mso'}
{'comment': "At least there's a tiny bit of comfort in knowing others are wrestling with the same big questions", 'created': '2024-11-08 02:44:35', 'submission_id': '1gm4mso'}
{'comment': 'Reject reality, embrace the memes\n\n', 'created': '2024-11-08 14:15:38', 'submission_id': '1gm4mso'}
{'comment': 'But it could matter for the popular vote', 'created': '2024-11-08 21:52:55', 'submission_id': '1gm4mso'}
{'comment': "We don't know yet throw the bums out may return in 2 years, or democracy is really dead this time, and there is a military coup at some point. If it goes to shit a Phoenix will rise from the ashes of the eagle at some point", 'created': '2024-11-08 15:47:00', 'submission_id': '1gm4mso'}
{'comment': 'Rest, warrior. It’s not our time. I hope we listen.', 'created': '2024-11-08 05:13:38', 'submission_id': '1gm4mso'}
{'comment': "I want to check out too. I just don't think I can afford it wearing this skin color with an entire family to worry about. I'm trying to learn more about how people survived Jim Crow just to prepare myself.", 'created': '2024-11-08 05:35:43', 'submission_id': '1gm4mso'}
{'comment': "Same. I can't see his ugly orange face or hear his arrogant yet dumb voice again. I just can't.", 'created': '2024-11-08 15:04:54', 'submission_id': '1gm4mso'}
{'comment': 'Yep. 10’s of millions of democratic voters ACTIVELY stayed home on election day. \n\nOh well.', 'created': '2024-11-08 05:18:44', 'submission_id': '1gm4mso'}
{'comment': 'For now, I’m gonna pretend we will. And I will spend those two years reminding the MAGA in my life that the Republicans control the entire government and prices went up, etc.', 'created': '2024-11-08 02:36:39', 'submission_id': '1gm4mso'}
{'comment': 'States control elections. We’ll have elections in two years.', 'created': '2024-11-08 04:03:32', 'submission_id': '1gm4mso'}
{'comment': 'Hence “(theoretically)”', 'created': '2024-11-08 01:56:28', 'submission_id': '1gm4mso'}
{'comment': 'We’ll have elections like Russia. Only Trumpers can run and they’ll get 98% of the vote. Huge crowds will be bused in to cheer under penalty of law. “Democracy reigns!”', 'created': '2024-11-08 07:52:57', 'submission_id': '1gm4mso'}
{'comment': "We will have elections. They'll just be as legitimate as the elections in Russia.", 'created': '2024-11-08 04:01:03', 'submission_id': '1gm4mso'}
{'comment': 'This right here', 'created': '2024-11-08 04:58:13', 'submission_id': '1gm4mso'}
{'comment': 'Thank you! Same here, and I will be affected. But, I’m still going to fight. It’s a shame so many dems are giving up because they simply got their hopes up, had to go stand in line to vote, and lost. They act like they’ve been in actual war for a year! The real fight has only just begun, and they are tired. Give me a break! We fought him in 2016 when he had a trifecta, and we had some success. This is worse, but it’s only over when they put you in a camp or you’re no longer breathing. I feel it’s the younger generation that can’t be bothered. They don’t know what it was like before the LGBTQ community had rights, before women could have credit cards, before preexisting conditions were covered, when women had to get married because they couldn’t survive without a man, and much worse. Nope, “boss I’m tired, so I give up”. It’s lazy and the exact apathy that has brought us to the situation we now face.', 'created': '2024-11-08 04:07:58', 'submission_id': '1gm4mso'}
{'comment': "I truly appreciate it...we live in the south and her future is bleak. It's SOO depressing...I'm really struggling right now. I drive around and all I feel is anger at everyone that I look at. I work at a blue-collar job at a shipyard, and everyone is high-fiving about how great it is that trump won, and whew, they're so glad that Kamala didn't win.\n\nThey were voting to lower the cost of eggs, and I was voting for the human rights of the people that I love.\n\nI can't fucking take this and I want to LEAVE SO BAD. The Supreme Court is going to get so stacked that I won't live to see the end of this.\n\nI'm sorry to vent but I have no where else to do it, and I'm not really not finding any support from my so-called friends at work. They don't believe me when I tell them how bad it's going to be.", 'created': '2024-11-09 03:25:53', 'submission_id': '1gm4mso'}
{'comment': 'Have a shit ton of money and cater to basest and worst desires of the common people.\n\nEmotions and desires were always the weak points of democracy and rule by popular vote. I mean, it shouldn\'t be surprising, elections are basically popularity contests. And like prom in HS, it\'s rarely the smartest, most qualified or "great" person that wins prom king and queen. It\'s usually the assholes that are the most popular and are crowned.', 'created': '2024-11-08 09:20:48', 'submission_id': '1gm4mso'}
{'comment': 'Garland was an absolute disaster.', 'created': '2024-11-08 08:36:39', 'submission_id': '1gm4mso'}
{'comment': "These guys have kept me clinging on to my last shred of sanity.\n\nAlso John Oliver.\n\nThere's also many others on Youtube. Lovett or Leave It is great, current news as stand up comedy. Pod Save America is usually pretty funny as well, though it is much more serious and honestly will probably tune out of that for a bit.", 'created': '2024-11-08 09:45:02', 'submission_id': '1gm4mso'}
{'comment': 'I agree with you. These are low information voters who don’t have a stake in Republican vs Democrat from an ideological perspective - they’re just pissed off about economic conditions and wanted change. Exit polls suggest people liked Harris better and thought her policies were less extreme but they wanted the pre-pandemic economy back and they didn’t trust us to deliver it. They also obviously weren’t convinced enough that Trump was a threat because they remember his last presidency as being not that bad.\xa0\n\nIf the Republicans try to actually implement Project 2025 off the back of this, it will be them getting a hard kicking in 2026. I think they’re taking completely the wrong message from this election and they’ll pay for it.\xa0', 'created': '2024-11-08 17:30:10', 'submission_id': '1gm4mso'}
{'comment': "It'll all be the fault of Biden and the Demon-rats.", 'created': '2024-11-08 10:59:40', 'submission_id': '1gm4mso'}
{'comment': 'This may not be entirely true, millions of votes are still being counted in California and across other states. The end totals for popular vote is going to be much closer than it currently appears.', 'created': '2024-11-08 09:42:04', 'submission_id': '1gm4mso'}
{'comment': 'I find that so hard to believe.', 'created': '2024-11-08 12:48:06', 'submission_id': '1gm4mso'}
{'comment': "It won't even work, he's their god so he can't do any wrong and they will come up with anything to defend him, like they always have.", 'created': '2024-11-08 04:05:01', 'submission_id': '1gm4mso'}
{'comment': "That's the only good thing if they have full control.\nThere would only be them to blame.", 'created': '2024-11-08 17:26:17', 'submission_id': '1gm4mso'}
{'comment': "They won't give a shit or it'll be because Democrats, somehow. No accountability for anything, ever.", 'created': '2024-11-08 17:39:19', 'submission_id': '1gm4mso'}
{'comment': 'This is my comfort at the moment. Ignoring that Trump’s congress will have 0 motivation to certify election results that don’t benefit them.', 'created': '2024-11-08 12:49:57', 'submission_id': '1gm4mso'}
{'comment': '*pats head* that’s right Knick! We’ll have elections and rainbows and candy!', 'created': '2024-11-08 07:54:44', 'submission_id': '1gm4mso'}
{'comment': "I live in Texas. I don't think that's true.", 'created': '2024-11-08 16:50:44', 'submission_id': '1gm4mso'}
{'comment': 'Came here to say this.', 'created': '2024-11-08 04:46:02', 'submission_id': '1gm4mso'}
{'comment': 'Yep. Think of the Ukrainians fighting for soon to be 3 years with half-hearted at best help from the Biden admin and now will be totally abandoned/sold out to the Russkis by Trump unless EU/NATO comes up big (doubtful). Yet they will keep fighting to the last man. Can we do any less?', 'created': '2024-11-08 08:17:45', 'submission_id': '1gm4mso'}
{'comment': "Unfortunately, there aren't many of us. \nThose who do not have, step on those who have less, to feel that they have more. \nI don't have the answers. I'm just grateful I still feel compassion. \nJust not for drumps supporters.", 'created': '2024-11-08 06:33:40', 'submission_id': '1gm4mso'}
{'comment': 'Is an absolute disaster*', 'created': '2024-11-09 00:23:03', 'submission_id': '1gm4mso'}
{'comment': "And it won't matter if that is the narrative they push for low-information, politically disengaged voters.\n\nWe cannot underestimate how little a significant amount of voters actually pays attention to politics. We do not need to win over the most vocal and most extreme MAGA, just enough of the people in the middle who are just trying to get by day to day who do not follow the news. That is a sizable block of voters that Republicans won this year because Democrats were in charge and could not convince them the economy was getting better.", 'created': '2024-11-08 11:33:31', 'submission_id': '1gm4mso'}
{'comment': 'They’ll blame their uninformed choice on Dems. \nI’ve already seen a couple magats say it.', 'created': '2024-11-08 05:14:52', 'submission_id': '1gm4mso'}
{'comment': 'Yep, if prices go down it’s because of Trump. If they go up it’s a result of long term damage Biden did to the economy.', 'created': '2024-11-08 04:46:50', 'submission_id': '1gm4mso'}
{'comment': "He's going to die eventually, you know, and sooner rather than later. He's 78 and living on McDonalds.", 'created': '2024-11-08 06:14:41', 'submission_id': '1gm4mso'}
{'comment': 'He’s barely functional. He’s in shambles.', 'created': '2024-11-08 12:13:07', 'submission_id': '1gm4mso'}
{'comment': 'This!!!', 'created': '2024-11-08 17:42:36', 'submission_id': '1gm4mso'}
{'comment': 'I’ve seen it for a long long time, they are lost. It is exhausting to combat it but we must try for a better future.', 'created': '2024-11-08 05:20:00', 'submission_id': '1gm4mso'}
{'comment': 'literally lmao we seen this before in 2016 and 2020', 'created': '2024-11-08 04:47:30', 'submission_id': '1gm4mso'}
{'comment': "It's our job to remind them that Remind them inflation is at 2.4% right now and unemployment is 4.1%. Do not forget those numbers. Remind them that is where we were. Don't argue with their BS, just relentlessly repeat those two numbers like a brick wall with the statistics painted on it.", 'created': '2024-11-08 19:05:53', 'submission_id': '1gm4mso'}
{'comment': 'yea but unfortunately his impact on this country will last decades', 'created': '2024-11-08 06:15:27', 'submission_id': '1gm4mso'}
{'comment': 'i suspect it will be vance a lot sooner than later.', 'created': '2024-11-08 21:35:20', 'submission_id': '1gm4mso'}
{'comment': 'One reply: \n\nDems didn’t fill out the oval on your ballot 🤣', 'created': '2024-11-08 14:34:13', 'submission_id': '1gm4mso'}
{'comment': "We've seen this basically throughout our whole time as a nation.", 'created': '2024-11-08 17:39:59', 'submission_id': '1gm4mso'}
{'comment': 'Doesn’t do any good, like talking to a wall', 'created': '2024-11-08 21:34:31', 'submission_id': '1gm4mso'}
{'comment': None, 'created': '2024-11-08 06:33:10', 'submission_id': '1gm4mso'}
{'comment': 'agreed I was just specifically talking about Trump', 'created': '2024-11-08 17:41:35', 'submission_id': '1gm4mso'}
{'comment': 'If we do it enough it will wear them down, I reckon. \n\n"Sorry bro, inflation was at 2.4% and unemployment at 4.1% before Trump was elected. Then it exploded upwards. You got what you voted for."', 'created': '2024-11-08 22:07:01', 'submission_id': '1gm4mso'}
{'comment': "Centuries? This country is only 250 years old.\n\nBut I get it. The Supreme Court let him do whatever he wants and he'll have no restraints in Congress or anywhere else in the federal government. It's very fearful to think about. But at the same time, it also doesn't benefit our mental health. Just bunker down, hold on, and hope for the best.", 'created': '2024-11-08 06:45:01', 'submission_id': '1gm4mso'}
{'comment': 'I was trying to be more optimistic :((', 'created': '2024-11-08 06:41:12', 'submission_id': '1gm4mso'}
{'comment': 'Ecologically yes.', 'created': '2024-11-08 12:13:56', 'submission_id': '1gm4mso'}
{'comment': 'How was he not arrested for that?', 'created': '2024-11-08 00:30:31', 'submission_id': '1gm4blm'}
{'comment': 'Resign, make Harris first woman president for 2 months and force the MAGATS to reprint the number 48 instead of 47 on their stupid swag.', 'created': '2024-11-08 00:56:53', 'submission_id': '1gm4blm'}
{'comment': 'Do we know whether the increase in support for the traitorous convicted felon Trump among men of Latino descent in the affected counties was due to eligible voters who were being told in Spanish that the money was and is conditioned on voting for that candidate?', 'created': '2024-11-08 00:42:39', 'submission_id': '1gm4blm'}
{'comment': 'Won’t work. Trump will reverse it day 1, and it’ll just add jerkoff material for MAGAts', 'created': '2024-11-08 01:12:57', 'submission_id': '1gm4blm'}
{'comment': 'The Federal government is currently relying on SpaceX to shuttle astronauts from and to the International Space Station.', 'created': '2024-11-08 00:42:07', 'submission_id': '1gm4blm'}
{'comment': 'LOL. Not a bad idea. Not great but not bad.', 'created': '2024-11-08 00:59:46', 'submission_id': '1gm4blm'}
{'comment': 'Read more carefully.', 'created': '2024-11-08 02:36:02', 'submission_id': '1gm4blm'}
{'comment': 'Duh. I thought everyone already knew this? Or is the right still thinking he actually cares about their free speech?', 'created': '2024-11-08 00:11:42', 'submission_id': '1gm3sl5'}
{'comment': 'And, it worked.', 'created': '2024-11-08 00:22:44', 'submission_id': '1gm3sl5'}
{'comment': 'He has the help of the Russians. This was the plan all along.', 'created': '2024-11-08 00:42:38', 'submission_id': '1gm3sl5'}
{'comment': '...removed from phone, deactivated account.', 'created': '2024-11-08 00:43:53', 'submission_id': '1gm3sl5'}
{'comment': 'https://preview.redd.it/d1sjj7btckzd1.jpeg?width=2976&format=pjpg&auto=webp&s=c3dd1226db824c6802b2cde82121dd51743f9d92', 'created': '2024-11-08 00:24:50', 'submission_id': '1gm3sl5'}
{'comment': 'Elon Musk is basically living out his life like it’s a sandbox video game with the endless money cheat on. \n\n\nJust throw in some rockets, electric cars, and the occasional Twitter takeover, and boom he’s the real-life character that can literally do whatever he wants. \n\n\nThe rest of us are just here grinding for coins. 🎻🇺🇸🌍🔥', 'created': '2024-11-08 01:28:30', 'submission_id': '1gm3sl5'}
{'comment': 'Well no shit', 'created': '2024-11-08 00:10:41', 'submission_id': '1gm3sl5'}
{'comment': "I'm glad I deleted my account", 'created': '2024-11-08 01:39:35', 'submission_id': '1gm3sl5'}
{'comment': 'and get access to insider trading', 'created': '2024-11-08 00:50:32', 'submission_id': '1gm3sl5'}
{'comment': 'Fox News has the boomers and seniors, X has the millennials and the podcast bros have Gen Z. Right wing / Russian propaganda has finally won.', 'created': '2024-11-08 05:37:55', 'submission_id': '1gm3sl5'}
{'comment': 'And he succeeded…\n😒', 'created': '2024-11-08 01:02:07', 'submission_id': '1gm3sl5'}
{'comment': 'Someone else fronted money for him to do it too... 🇷🇺', 'created': '2024-11-08 01:40:57', 'submission_id': '1gm3sl5'}
{'comment': 'Elon is a sneaky mf. He accused the left of doing this exact thing', 'created': '2024-11-08 02:47:12', 'submission_id': '1gm3sl5'}
{'comment': 'No fucking shit I knew it as soon as they announced the purchase. They saw how effective Twitter was in 2020 in terms of the election and the protests and were like “holy shit we can’t have that happen again!” So he bought it to purposefully tank it. What a fucking tool.', 'created': '2024-11-08 04:16:22', 'submission_id': '1gm3sl5'}
{'comment': 'Fuck Elon and everyone who has a Tesla', 'created': '2024-11-08 05:00:40', 'submission_id': '1gm3sl5'}
{'comment': 'Spent $44billion and bought the federal government for himself and Putin.', 'created': '2024-11-08 11:00:03', 'submission_id': '1gm3sl5'}
{'comment': 'We knew that', 'created': '2024-11-08 01:18:09', 'submission_id': '1gm3sl5'}
{'comment': 'Are you also going to tell us Elon wants to remove regulations from the federal government?', 'created': '2024-11-08 01:59:13', 'submission_id': '1gm3sl5'}
{'comment': 'I deleted mine when he took it over and deleted Facebook and TikTok today…', 'created': '2024-11-08 06:48:02', 'submission_id': '1gm3sl5'}
{'comment': 'I thought we all knew this already. How is this news *right now*?', 'created': '2024-11-08 00:57:15', 'submission_id': '1gm3sl5'}
{'comment': 'Elon proved how stupid and gullible the right are. Other than that Elon is a dipshit.', 'created': '2024-11-08 12:37:45', 'submission_id': '1gm3sl5'}
{'comment': 'a couple of billionaires bought this election. almost every commercial here in MI was a PAC commercial full of nothing but flat out lies. it was nonstop. people are stupid and fell for it. truth in advertising is dead.', 'created': '2024-11-08 17:09:04', 'submission_id': '1gm3sl5'}
{'comment': 'Oh hello Internet Explorer', 'created': '2024-11-08 01:23:27', 'submission_id': '1gm3sl5'}
{'comment': '"Radio Télévision Libre des Mille Collines" for the 21 century', 'created': '2024-11-08 01:27:26', 'submission_id': '1gm3sl5'}
{'comment': 'No shit. And the fact people use twitter…I mean X, because everyone calls it that, for news is why we are the drunk at the party.', 'created': '2024-11-08 02:25:50', 'submission_id': '1gm3sl5'}
{'comment': 'It cost him billions but so far it worked', 'created': '2024-11-08 04:38:30', 'submission_id': '1gm3sl5'}
{'comment': 'Yeah', 'created': '2024-11-08 08:35:15', 'submission_id': '1gm3sl5'}
{'comment': '… whilst blaming everyone else else for doing exactly that. Again, this is what (most of) America seems to want right now. Pee your bed, sleep in it.', 'created': '2024-11-08 14:29:50', 'submission_id': '1gm3sl5'}
{'comment': 'I wonder what Jack Dorsey thinks about this now?', 'created': '2024-11-08 19:14:10', 'submission_id': '1gm3sl5'}
{'comment': 'And it worked!! Information is power. If you can control it you are power.', 'created': '2024-11-09 08:20:14', 'submission_id': '1gm3sl5'}
{'comment': 'No shit.', 'created': '2024-11-08 07:20:48', 'submission_id': '1gm3sl5'}
{'comment': 'Is broadcasting artificial?', 'created': '2024-11-08 12:00:14', 'submission_id': '1gm3sl5'}
{'comment': 'He tried very hard to escape his purchase contract, you may recall', 'created': '2024-11-13 16:54:24', 'submission_id': '1gm3sl5'}
{'comment': "Then why didn't this work for reddit which is lefty? Or Hollywood? Or academia or the media?\xa0\n\n\nThis is pure cope", 'created': '2024-11-08 02:28:13', 'submission_id': '1gm3sl5'}
{'comment': 'To perfection', 'created': '2024-11-08 02:02:12', 'submission_id': '1gm3sl5'}
{'comment': 'This is the way', 'created': '2024-11-08 04:45:56', 'submission_id': '1gm3sl5'}
{'comment': 'Sold my account (first name) for $5k before I pulled the escape hatch. Paired with my $100 check from Tesla for a bait-and-switch class action settlement, I’m loving all these ElonBucks. But also, fuck that guy.', 'created': '2024-11-08 06:41:01', 'submission_id': '1gm3sl5'}
{'comment': 'It’s like a dystopian, tech-billionaire meets alt-right superhero story no one asked for but somehow got anyway.\n\n\nMarvel/DC writers are like, “how do we top this new multiverse storyline?!”', 'created': '2024-11-08 01:34:26', 'submission_id': '1gm3sl5'}
{'comment': 'It’s easy to win when the other side doesn’t fight.', 'created': '2024-11-08 12:43:53', 'submission_id': '1gm3sl5'}
{'comment': 'That’s how you know what their plan is. Whatever they accuse the democrats of doing they will for sure be doing it.', 'created': '2024-11-08 06:18:23', 'submission_id': '1gm3sl5'}
{'comment': '', 'created': '2024-11-08 06:37:43', 'submission_id': '1gm3sl5'}
{'comment': 'Damn, how did you do the sale?', 'created': '2024-11-09 00:05:53', 'submission_id': '1gm3sl5'}
{'comment': "It's easy to win when the Republicans spent decades conditioning voters to be taken over by fascist rhetoric.", 'created': '2024-11-08 19:37:15', 'submission_id': '1gm3sl5'}
{'comment': 'Crypto. Didn’t trust any other mechanism with a random stranger, and cash wasn’t an option.', 'created': '2024-11-09 00:07:47', 'submission_id': '1gm3sl5'}
{'comment': 'What is the source for these numbers?', 'created': '2024-11-07 23:25:49', 'submission_id': '1gm2vx4'}
{'comment': 'That’s 2020, no good without 2024 numbers', 'created': '2024-11-08 00:54:56', 'submission_id': '1gm2vx4'}
{'comment': 'Everyone wants to wax poetic about how Harris didn’t make the right appeals or how Republicans are speaking people’s needs and anger, but the reality is far simpler.\xa0 The entire media ecosystem is lying about inflation, implicitly or explicitly, and economics in general.\n\nDonald Trump is responsible for inflation.\xa0 Grocery prices are not going back down.\xa0 Universal healthcare does not empower the middle class, but sustains profits for providers.\xa0 Obama bailed out billionaires, not the working class.\xa0 We can all cry and wring our hands, but until anyone is willing to tell the truth, degradation is the foreseeable forecast.\n\nTrump cannot fix the economic problems because of the people he owes and their views of minorities.\xa0 I do not believe it’s possible to fix the economy unless a woman becomes president.\xa0 Men at the top do not want economic mobility for the working class, but women are generally more ambivalent about it, because they benefit less from economic conservatism.\xa0\n\nThe truth hurts both sides who are invested in historical lies, and the truth is that the GOP was deliberately weak on policy because those policies would be too beneficial to minority groups.\xa0 That is how Trump seized control of the party with misinformation and lies.\xa0 One thing you don’t have to worry about is a successful Trump administration.\xa0 Things will get harder for a lot of folks, but the only thing we have to worry about is whether anyone is willing to tell the truth.', 'created': '2024-11-07 23:42:15', 'submission_id': '1gm2vx4'}
{'comment': 'IT IS THURSDAY. THEY ARE NOT DONE COUNTING BALLOTS. THERE WILL BE MILLIONS MORE FROM CALIFORNIA ALONE.!!!', 'created': '2024-11-08 02:31:30', 'submission_id': '1gm2vx4'}
{'comment': 'They did show up… We got punked. Donald Trump won the popular vote.. 😆. Yeah ok… Somebody better figure out a way for all of us to check to see if our votes were registered real quick or we will never have a real election again.', 'created': '2024-11-07 23:47:17', 'submission_id': '1gm2vx4'}
{'comment': 'That’s what I like to know', 'created': '2024-11-07 23:42:26', 'submission_id': '1gm2vx4'}
{'comment': 'Why don’t the minuses add up to 13-15 million?', 'created': '2024-11-08 01:37:22', 'submission_id': '1gm2vx4'}
{'comment': 'Black women voted Dems 92% and Black men voted Dems 78%. Latino women came in 3rd at 61%. They should be praised for holding it up. Don’t know wtf everyone else was doing.', 'created': '2024-11-08 01:54:55', 'submission_id': '1gm2vx4'}
{'comment': 'Everyone showed up and more. We just lost the popular vote because our candidate was worse than theirs to the majority of Americans.', 'created': '2024-11-08 03:00:45', 'submission_id': '1gm2vx4'}
{'comment': 'I don’t know but people all across social media are aggressively blaming huge chucks of the electorate, people whose support we *need* to win. Hopefully we can keep get the hate in check before we alienate even more of them and destroy whatever the hell is left of our broken party', 'created': '2024-11-08 05:46:45', 'submission_id': '1gm2vx4'}
{'comment': 'https://www.instagram.com/p/DCFtwnIMrGZ/?igsh=MWV6OW5udXU5bnB2aA==', 'created': '2024-11-08 06:19:49', 'submission_id': '1gm2vx4'}
{'comment': 'Honestly, imo not voting is the most stupid and irresponsible thing anyone can do.', 'created': '2024-11-08 14:36:59', 'submission_id': '1gm2vx4'}
{'comment': 'Can we stop doing this by racial groups, people don’t just think the same because of gender or racial group, it’s just an overall preference thing, sure some groups do vote more one way, but that is more in my opinion based of where people were raised and stuff, like city rural etc, saying who didn’t show up etc is dumb asf, as a country we didn’t show up.', 'created': '2024-11-08 01:02:44', 'submission_id': '1gm2vx4'}
{'comment': 'https://preview.redd.it/m1kjs2z1kkzd1.png?width=1566&format=png&auto=webp&s=3a515b7ce19d41cbe830e187e418f3772dd08af7', 'created': '2024-11-08 01:05:31', 'submission_id': '1gm2vx4'}
{'comment': 'official results reported by the Federal Election Commission (FEC)\xa0', 'created': '2024-11-08 01:04:24', 'submission_id': '1gm2vx4'}
{'comment': 'see you next year then', 'created': '2024-11-08 01:18:49', 'submission_id': '1gm2vx4'}
{'comment': 'FYI, the Reddit administrators shadowbanned you. Go here to learn how to lift that:\n\nr/shadowbanned', 'created': '2024-11-08 01:09:32', 'submission_id': '1gm2vx4'}
{'comment': "My experience so far is many people found the Democrat's super-progressive agenda a turnoff. They care about rising prices and buying a home, not transgenders issues. So, they sat the election out until someone said something that related to them.", 'created': '2024-11-08 01:23:41', 'submission_id': '1gm2vx4'}
{'comment': 'And I think California is looking for phonebank volunteers to call voters about ballot curing in tight House races', 'created': '2024-11-08 03:54:50', 'submission_id': '1gm2vx4'}
{'comment': "Election interference in basically every county in the country? Yeah right. If they can pull that off, they deserve it (/s)\n\n\nI voted for Harris, but it's not worth losing what's left of our faith in democracy by peddling stupid election interference conspiracy theories like a nutcase.\xa0\n\n\nThe people have spoken, and they will get what they voted for. As an American, I just hope it's not as bad as I fear.\xa0", 'created': '2024-11-08 00:36:43', 'submission_id': '1gm2vx4'}
{'comment': 'An overwhelming number of counties in the USA shifted right. Election interference could not account for this.', 'created': '2024-11-08 00:12:08', 'submission_id': '1gm2vx4'}
{'comment': 'Less people voted this year. Everyone that voted in 2020 did not in 2024. This graphic is hot showing 2024 data.', 'created': '2024-11-08 00:45:09', 'submission_id': '1gm2vx4'}
{'comment': 'Feel free to check up on your ballot at your elections office. You can do it during business hours or online pretty easy. Fact is that elections are well run and very secure. This was a free and fair election as far as any evidence I’ve seen. \n\nMistakes were made and democrats need to figure them out. I invite you all to join me in dropping your democratic registration for independent…I still plan on voting to the left in most cases but it’s time they present us good candidates with more progressive policies to earn our support.', 'created': '2024-11-08 00:12:55', 'submission_id': '1gm2vx4'}
{'comment': 'https://www.vote.org/ballot-tracker-tools/', 'created': '2024-11-07 23:56:57', 'submission_id': '1gm2vx4'}
{'comment': '[removed]', 'created': '2024-11-08 00:07:46', 'submission_id': '1gm2vx4'}
{'comment': '[removed]', 'created': '2024-11-08 00:42:55', 'submission_id': '1gm2vx4'}
{'comment': 'because the table data is from 2016 and 2020 and the 15m number is from 2020 to 2024 which has not been broken out by demographic yet.', 'created': '2024-11-08 01:41:45', 'submission_id': '1gm2vx4'}
{'comment': "The interview with an Asian woman I say today said she didn't vote for Kamala because the Dem party is too progressive and it makes her uncomfortable.", 'created': '2024-11-08 04:16:35', 'submission_id': '1gm2vx4'}
{'comment': "I don't think it is the candidate or worse. I think the party and platform is the problem and no one can sell transgender bathrooms are a priority to working-class people who are struggling to eat and buy a home.", 'created': '2024-11-08 04:10:32', 'submission_id': '1gm2vx4'}
{'comment': 'One is to hate them and the other is to understand why they did not want to buy. I think Democratic leadership does not want to do the second because what people may want is not their personal vision of the world they want to see. Until Dems create products people want to buy they will continue to go bankrupt.', 'created': '2024-11-08 15:58:20', 'submission_id': '1gm2vx4'}
{'comment': 'Once we understand why young men, Asians, and Hispanics left the democratic party, the sooner we can develop a counter-strategy. We should use any slice and dice available to get to the answer.', 'created': '2024-11-08 01:11:57', 'submission_id': '1gm2vx4'}
{'comment': "I understand what you're saying but these data points are what fuel both the Democrats and Republicans campaigns. There's an entire industry built upon these political campaigns. YOU and most Americans dislike being put into these boxes but they give many who work in these campaigns the information needed to build up or alter their political strategies. \n\nThe Dems will always suck at delivering their message until they actually pull through on what actually matters to Americans. \n\nDems will have to work REALLY REALLY hard in actually delivering on what they can do in their districts and counties.", 'created': '2024-11-08 01:12:04', 'submission_id': '1gm2vx4'}
{'comment': 'She had a plan to give a $25,000 tax credit to first time homebuyers. How is that not speaking to them?', 'created': '2024-11-08 01:37:51', 'submission_id': '1gm2vx4'}
{'comment': 'LOL, what super-progressive agenda? Harris ran a solidly centrist campaign.', 'created': '2024-11-08 16:35:23', 'submission_id': '1gm2vx4'}
{'comment': '6 seats flipped to Trump, how are we gonna win this?', 'created': '2024-11-08 04:35:44', 'submission_id': '1gm2vx4'}
{'comment': "Is it still a shift right if one side didn't show up? Not suggesting that there was foul play however a major voting block stayed on the sidelines this cycle.", 'created': '2024-11-08 01:03:36', 'submission_id': '1gm2vx4'}
{'comment': 'Nah this election just proves that half of American voters are racist misogynistic shitbags that voted for a criminal conman traitor.', 'created': '2024-11-08 00:14:53', 'submission_id': '1gm2vx4'}
{'comment': 'Man it really gets on my nerves when people confuse their opinions with facts… How the fuck do you know that election interference could not account for this?', 'created': '2024-11-08 00:27:56', 'submission_id': '1gm2vx4'}
{'comment': 'Detailed 2024 data is not available.\n\nhttps://preview.redd.it/y2azgwc9kkzd1.png?width=1566&format=png&auto=webp&s=cf552b87709d6756753a5b31e04bb431f9b4286e', 'created': '2024-11-08 01:06:53', 'submission_id': '1gm2vx4'}
{'comment': 'No suicide for me, thanks', 'created': '2024-11-08 00:41:24', 'submission_id': '1gm2vx4'}
{'comment': 'You can find legitimate information on 270ToWin', 'created': '2024-11-08 00:43:19', 'submission_id': '1gm2vx4'}
{'comment': 'Oh I read it wrong', 'created': '2024-11-08 01:44:53', 'submission_id': '1gm2vx4'}
{'comment': 'Agreed. By candidate I moreso meant what each candidate offered to the American people.', 'created': '2024-11-08 04:11:37', 'submission_id': '1gm2vx4'}
{'comment': "I am encountering so many Dems whose response is if they don't want to help trans people we don't want them or if they are not smart enough to understand us we don't want them or if they don't like the menu we made they can do elsewhere..... all of which they are doing.", 'created': '2024-11-08 01:45:55', 'submission_id': '1gm2vx4'}
{'comment': 'I wonder how many people heard that? Compared to how many heard Trump was offering no tax on tips?', 'created': '2024-11-08 04:18:42', 'submission_id': '1gm2vx4'}
{'comment': 'I saw an interview with an Asian-Indian woman who did NOT for for Kamala because she liked women in traditional roles of wife and mother and did not feel comfortable with changing gender roles and focusing on trans rights. So, not Kamala but the party and policies she was selling lost this vote.', 'created': '2024-11-08 16:56:44', 'submission_id': '1gm2vx4'}
{'comment': "We do what we can to prevent it from becoming seven flips, and then we work on the next election. My state has one in April for state supreme court, so I'll be out canvassing and calling for that", 'created': '2024-11-08 05:24:17', 'submission_id': '1gm2vx4'}
{'comment': "It's still a win if the other side forfeits", 'created': '2024-11-08 02:27:52', 'submission_id': '1gm2vx4'}
{'comment': 'It’s not as simple as that. States and counties that went blue for Obama went dark red. Areas that Hillary Clinton won by double digits went to Harris but by only a small margin—if they didn’t go red also. It isn’t purely sexism or racism. \n\nThe Democratic Party has ceded ground in the most important areas of politics. They have lost the media game completely. Sure they have legacy media but live streamers and talk radio are overwhelmingly alt right. People are getting neo nazi propaganda shoved into their ears everyday. The Dems barely put up a fight against it.', 'created': '2024-11-08 01:40:36', 'submission_id': '1gm2vx4'}
{'comment': '100%. I understand why people want it to be election fraud, but it’s more likely that we’re just now discovering that half of the population is terrible.', 'created': '2024-11-08 01:37:25', 'submission_id': '1gm2vx4'}
{'comment': 'Because what we’ve seen has been consistent all across every county in the country. It is representative of reality.', 'created': '2024-11-08 01:42:36', 'submission_id': '1gm2vx4'}
{'comment': 'It’s your job to explain how it did. Please explain to me how someone could hack into the voting systems of every county in 50 states, learn hundreds of different vote counting systems and do so without being caught or leaving an obvious paper trail behind', 'created': '2024-11-08 02:49:47', 'submission_id': '1gm2vx4'}
{'comment': 'Honestly this makes me think it was just Covid frustration in 2020.', 'created': '2024-11-08 01:19:03', 'submission_id': '1gm2vx4'}
{'comment': 'Which policies exactly? There was only focus on trans issues from one side and it wasn’t the democrats.', 'created': '2024-11-08 17:01:10', 'submission_id': '1gm2vx4'}
{'comment': "Not saying it isn't. However it would be misleading to characterize that as a shift to the right.", 'created': '2024-11-08 02:59:15', 'submission_id': '1gm2vx4'}
{'comment': 'I agree that is all part of it but it Harris was also black making it a double whammy of racism and misogyny.', 'created': '2024-11-08 01:45:57', 'submission_id': '1gm2vx4'}
{'comment': 'That’s what I’ve been grappling with. Losing my belief in the basic goodness of my fellow countrymen', 'created': '2024-11-08 04:11:15', 'submission_id': '1gm2vx4'}
{'comment': 'By spending four years suing the states to “stop the steal” and gathering intel on where to place the least number of people in crucial spots.', 'created': '2024-11-08 04:13:21', 'submission_id': '1gm2vx4'}
{'comment': 'so Democrats need another pandemic to win? :-)', 'created': '2024-11-08 01:27:45', 'submission_id': '1gm2vx4'}
{'comment': 'exactly. What policies? Americans never hear about them because the conservatives continually bait Dems into using their mike time on gender issues and trans rights which are not a priority to most Americans. It is like Trump getting up and saying something stupid every day and consuming 99% of the airtime and Kamala has some speech to some smart people about some complex subject that no one covers.', 'created': '2024-11-08 17:10:37', 'submission_id': '1gm2vx4'}
{'comment': 'We’ve got just the guy for the job', 'created': '2024-11-08 01:58:47', 'submission_id': '1gm2vx4'}
{'comment': 'Continually? Can you give an example?', 'created': '2024-11-08 17:44:35', 'submission_id': '1gm2vx4'}
{'comment': "OMG. You either don't get out of live in a Dem bubble like the Dem leadership that spends time studying you navel. Look at something besides CNN, what they majority of voters see.", 'created': '2024-11-08 18:08:46', 'submission_id': '1gm2vx4'}
{'comment': "So no, you can't give an example.", 'created': '2024-11-08 18:46:15', 'submission_id': '1gm2vx4'}
{'comment': "Friendly reminder that in 2026, [33 senate seats ](https://en.m.wikipedia.org/wiki/2026_United_States_Senate_elections) will be contested. The majority of them are Republicans in the south and Midwest.\n\nI know they're in mostly red states, but if Dems in those areas campaign hard we might be able to see some little victories happen before 2028.", 'created': '2024-11-07 23:59:45', 'submission_id': '1gm2djb'}
{'comment': 'It’s not going to be a presidency, it’s going to be a regime. Regimes don’t leave office unless they’re forcibly removed.', 'created': '2024-11-08 00:07:08', 'submission_id': '1gm2djb'}
{'comment': 'I’m sorry someone please explain this to me like I’m 5.', 'created': '2024-11-07 23:23:30', 'submission_id': '1gm2djb'}
{'comment': "That's the spirit!", 'created': '2024-11-08 00:10:37', 'submission_id': '1gm2djb'}
{'comment': 'Season 5 of Government Apprentice is going to be good \n\nHopefully they start with a recap \n\nPence,Huckabee,Omarosa,Giuliani,Hope Hicks,Bannon, Sean Spicer,Cohen \n\nWhat a cast reunion', 'created': '2024-11-08 01:27:26', 'submission_id': '1gm2djb'}
{'comment': 'Only one more leap year till the end of his presidency', 'created': '2024-11-08 01:54:43', 'submission_id': '1gm2djb'}
{'comment': 'What makes you think there will ever be another presidential election in the US?', 'created': '2024-11-07 23:18:37', 'submission_id': '1gm2djb'}
{'comment': 'There will be no more elections', 'created': '2024-11-07 23:31:59', 'submission_id': '1gm2djb'}
{'comment': 'Bold of you to assume his presidency will end in 2028', 'created': '2024-11-08 02:19:00', 'submission_id': '1gm2djb'}
{'comment': "The best part of Trump winning is that we don't have to hear from these fucking Republican grifters that were never-Trumping or never-again-Trumping their way to riches and couldn't help move the needle one iota in the end for Harris.", 'created': '2024-11-08 02:04:55', 'submission_id': '1gm2djb'}
{'comment': "Dems don't need to campaign. They need to show proof that Dems in their states care about their constituents more than the Republicans. \n\nWe need Dems to prove that $7.25 minimum wage is archaic and that gradular wage increases needs to be passed into legislation on a federal level, despite MAGA hating the Dems for it. It does help the working poor. Republican states insist this is not needed but once Republican constituents get access to higher minimum wages, they'll see and actually feel their worth. Republican states have held their citizens back for too long. It's time that Dems prove that wage increases across the board helps them.", 'created': '2024-11-08 00:40:44', 'submission_id': '1gm2djb'}
{'comment': 'Yeah he will assume vast new powers. Thanks Scotus!', 'created': '2024-11-08 17:39:30', 'submission_id': '1gm2djb'}
{'comment': 'A "mooch" is a unit of time, 11 days, representing the length of employment that Anthony Scaramucci had in the Trump Admin. 4 years + lame duck periods is around 138 mooches.', 'created': '2024-11-07 23:31:53', 'submission_id': '1gm2djb'}
{'comment': 'Congress would need a 2/3rds majority to modify the constitution to remove term limits.', 'created': '2024-11-07 23:36:05', 'submission_id': '1gm2djb'}
{'comment': 'Dictators depend on your apathy.', 'created': '2024-11-08 00:20:54', 'submission_id': '1gm2djb'}
{'comment': "People keep saying that, and while Trump wants it and thinks he can get away with doing that I don't think even Republicans will want that to happen. I'm cautiously optimistic that regardless of how horrible the Republicans are, the Senate will come together and block that if it's ever proposed.", 'created': '2024-11-07 23:40:07', 'submission_id': '1gm2djb'}
{'comment': 'Hopefully some people who said they actually got their family members to "see the light" end up being a permanent thing for them though. I\'m lucky that I come from an entire family of Democrats, and even my boyfriends family is all Democrat as well. \n\nEven though I can\'t relate, the stories I hear about the families that get torn up by politics enrage me. I know they get used to it and it\'s necessary for people\'s well-being but it just shouldn\'t have to be this way. (Don\'t get me wrong, I\'m enraged by the fact that the family members in the MAGA cult refuse to listen to anything the liberal family member has to say, not that the people who had to cut contact didn\'t try enough.)', 'created': '2024-11-08 05:56:37', 'submission_id': '1gm2djb'}
{'comment': 'It’s just insane because republicans offer exactly 0 solutions to make anyone’s life better, they only tap into the hate and bigotry of our people to get them to vote. Why do democrats have to be absolutely perfect on everything to just be competitive, when the other side doesn’t care at all. Maybe we just need to stop fighting so nice.', 'created': '2024-11-08 02:26:35', 'submission_id': '1gm2djb'}
{'comment': 'How would democrats prove this? The vast majority of southern states are republican controlled and will not pass minimum wage increases. \n\nDemocratic controlled states have passed it but that seems to be having a negligible effect on the attitudes of the average voter.', 'created': '2024-11-08 16:08:50', 'submission_id': '1gm2djb'}
{'comment': 'Dems need to care more about average Americans and their economic plight. Sure, supporting LGBTQ rights is important but it can\'t be the only issue people think about when they think "Democrat".', 'created': '2024-11-08 19:51:31', 'submission_id': '1gm2djb'}
{'comment': "I'm backing away slowly from the cliff (although I still think a dictatorship is a possibility, I don't think it's a certainty). However, the Constitution is a piece of paper that only works if the people in power are willing to or forced to abide by it. The traditional checks on power have been eroded.", 'created': '2024-11-08 00:02:40', 'submission_id': '1gm2djb'}
{'comment': None, 'created': '2024-11-07 23:41:20', 'submission_id': '1gm2djb'}
{'comment': 'Or 33 State Legislatures, of which I think Republicans currently control 30.', 'created': '2024-11-08 02:20:49', 'submission_id': '1gm2djb'}
{'comment': 'You think they care at all about the rules now? They’re going to do anything and everything they want.', 'created': '2024-11-08 02:27:39', 'submission_id': '1gm2djb'}
{'comment': "The only way that truly happens (though I've expressed that fear as well) is through outright violence, not legislation and removal of limits. And I think that's somewhat unlikely. Though we'll see pretty quickly how far Trump's cronies will go. They won legitimately this election. They may not feel like they have to cross that rubicon to stay in power.\n\n\nIt's far more likely that voting will get even harder through increased gerrymandering, suppression, intimidation tactics, which we're already dealing with.", 'created': '2024-11-08 00:22:40', 'submission_id': '1gm2djb'}
{'comment': 'You have way too much faith. You can not count on Republicans to do the right thing.', 'created': '2024-11-08 02:14:50', 'submission_id': '1gm2djb'}
{'comment': 'Lmao, yeah, thanks Susan Collins, why don’t you tell us a little more about how he’s “learned his lesson” and how the Senate will act as a check on his authority.', 'created': '2024-11-08 02:19:52', 'submission_id': '1gm2djb'}
{'comment': 'In another post I said something about being developmentally disabled with anxiety and chronic pain, and that I was planning on going to part time and getting social security and medicaid instead of constantly struggling, but I feel like now with the election results I have to wait a few more years before I can.\n\nThere was a reply saying I voted against my own interests because I voted Democrat, since Democrats are giving all the government funding to illegal immigrants. And since I fail to grasp this "logic", I don\'t deserve to get any services. \n\nAnd this was after they said they didn\'t understand why Democrats hated Republicans so much, when there are some really nice people on their side!🤦\u200d♀️', 'created': '2024-11-08 02:47:57', 'submission_id': '1gm2djb'}
{'comment': "Well, Missouri just passed legislation to raise their minimum wage from $12.30 to $13.74. BUT with Josh Hawley re-elected as their Senator, I think that will be repealed.\n\nAnd just look at some of the bad faith comments coming from these individuals who just don't understand.\n\nIt's really shameful that people don't even consider that not everyone can have BIG DREAMS, not everyone has the mental and physical capabilities to perform certain jobs or obtain all skills. These people who are in opposition of raising min wage are disgusting in my book. Their ignorance has no bounds.\n\nhttps://preview.redd.it/9b5rtokl1qzd1.jpeg?width=684&format=pjpg&auto=webp&s=c0f36fb13d27f889227c7284e6b75296d0c2a0f3\n\n[https://youtu.be/N0NReh1ynDU?si=YdzBk5kfXQCDrXdt](https://youtu.be/N0NReh1ynDU?si=YdzBk5kfXQCDrXdt)", 'created': '2024-11-08 19:32:40', 'submission_id': '1gm2djb'}
{'comment': "There's also still a chance to keep the House", 'created': '2024-11-07 23:41:52', 'submission_id': '1gm2djb'}
{'comment': '2/3 can call a vote but 3/4 of the legislatures would need to be Red to actually ratify, which I assume is a much bigger obstacle', 'created': '2024-11-08 02:28:02', 'submission_id': '1gm2djb'}
{'comment': "Trump and his goonss didn't care in 2016 either. But they still met a lot of obstacles at the time. And yes they're more prepared now with their precious Project 2025 but they'll still meet roadblocks. Plenty of lawsuits from States and Federal judges. \n\nI'm not saying its gonna be a good time but nor am I gonna assume the absolute worst case scenario", 'created': '2024-11-08 02:32:27', 'submission_id': '1gm2djb'}
{'comment': '"We" didn\'t let anyone down. Fifteen million Biden voters couldn\'t stand the idea of a woman being President (I honestly don\'t think race came in to it.)\n\nThey didn\'t vote for the only person who could have kept Donald Trump from being President and whatever happens is ever bit as much their responsibility as the "good germans" who turned a blind eye to Nazi atrocities during World War II.\n\nI voted for Kamala Harris, I have no children (speaking to the dismantling of public education the Oklahoma Secretary of Education Ryan Walter\'s today announced); my conscious is clear, good luck everyone else 👍', 'created': '2024-11-08 04:28:31', 'submission_id': '1gm23j3'}
{'comment': 'I know. So did i. But I found others did not listen. I felt we were betrayed', 'created': '2024-11-08 04:36:32', 'submission_id': '1gm23j3'}
{'comment': "It's actually about 3 million with 94% of the vote counted. [https://en.wikipedia.org/wiki/2024\\_United\\_States\\_presidential\\_election](https://en.wikipedia.org/wiki/2024_United_States_presidential_election)", 'created': '2024-11-08 23:35:56', 'submission_id': '1gm23j3'}
{'comment': 'True 👍', 'created': '2024-11-09 04:12:00', 'submission_id': '1gm23j3'}
{'comment': 'They did good enough in several places where it mattered. Just not the nominee. Split. Ticketed. Hard.', 'created': '2024-11-08 01:02:15', 'submission_id': '1gm1kp9'}
{'comment': 'I can’t read the article because I need a subscription. So how is that so if Trump won in North Carolina?', 'created': '2024-11-07 22:40:34', 'submission_id': '1gm1kp9'}
{'comment': 'Actually, they didn’t.', 'created': '2024-11-08 14:30:23', 'submission_id': '1gm1kp9'}
{'comment': '> Split. Ticketed. Hard.\n\nThat sounds awfully suspicious. . . .', 'created': '2024-11-08 02:47:22', 'submission_id': '1gm1kp9'}
{'comment': 'keep voting local.\xa0 \xa0got to keep North Carolina Dems motivated enough to do that.\xa0\xa0', 'created': '2024-11-11 21:19:29', 'submission_id': '1gm1kp9'}
{'comment': 'Dems won on every down ballot race that I’m aware of, and some of them by quite a decent margin.', 'created': '2024-11-07 23:01:43', 'submission_id': '1gm1kp9'}
{'comment': 'The Dems beat a bunch of Republicans that are like the worst of the worst. Morrow for example, running for school superintendent was at Jan 6th and called for Obamas assassination and is just a total nut job. Of course the “black nazi” Mark Robinson was also sent packing. Dems also picked up attorney general.', 'created': '2024-11-08 05:05:16', 'submission_id': '1gm1kp9'}
{'comment': 'Women please be safe out there. There’s a lot of “your body, my choice” going around. Remember this election. People are not okay. People are not thinking clearly.', 'created': '2024-11-08 01:22:52', 'submission_id': '1gm1c4n'}
{'comment': "Trump supporters are the kind of people who won't take no for an answer. Bullies only respect deadly force and the will to use it. Women need to learn and practice crippling and killing strikes, and be armed and ready to respond to assault, be it sexual or otherwise with deadly force.", 'created': '2024-11-08 01:16:24', 'submission_id': '1gm1c4n'}
{'comment': 'I’ve never been happier to be engaged to a man who fully supports women’s rights and is appalled at the state of country. I have four younger sisters and he’s going to train them all to use firearms', 'created': '2024-11-08 02:30:47', 'submission_id': '1gm1c4n'}
{'comment': "4Bs -\n\n1. Don't date men\n\n2. Don't get married to men\n\n3. Don't have sex with men\n\n4. Don't have children with men\n\nThe B stands for No in Korean - Bih. \n\n1. **No Dating (비연애)** \n2. **No Marriage (비혼)**\n3. **No Sex (비성교)**\n4. **No Childbirth (비출산)**\n\nAfter all the nonstop talk of incels and the woes of young men, this election will be the rise of women who have had enough with their rights being trampled. And I am here for it.", 'created': '2024-11-08 01:54:17', 'submission_id': '1gm1c4n'}
{'comment': 'Good for them!', 'created': '2024-11-07 23:29:36', 'submission_id': '1gm1c4n'}
{'comment': 'I wanted to have a family but at this point I’m not going to risk the chance of someone dying. I’ll just stay single at this point.', 'created': '2024-11-08 01:41:26', 'submission_id': '1gm1c4n'}
{'comment': 'I know this is not popular among the left, but consider joining us at r/liberalgunowners.\n\nAt min, just get to know firearms and complete basic training.', 'created': '2024-11-07 22:51:07', 'submission_id': '1gm1c4n'}
{'comment': 'What I don’t understand is these stupid med literally are like “sex is to make babies” but that they won’t be happy if their wives only have sex with them when they want to make babies', 'created': '2024-11-08 03:13:43', 'submission_id': '1gm1c4n'}
{'comment': 'They went so lightning quick to “it doesn’t matter we’ll have sex with you anyway” a whiplash of terror. Disgusting', 'created': '2024-11-08 02:47:18', 'submission_id': '1gm1c4n'}
{'comment': 'Why not? There is no 100% safe way to prevent pregnancy. Pregnancy is not safe. Abortion is illegal in many states. So makes sense.', 'created': '2024-11-08 03:11:44', 'submission_id': '1gm1c4n'}
{'comment': '4B is about american women according to that picture. due to trumpers stupidity this will be part of how women fight back!', 'created': '2024-11-07 22:26:36', 'submission_id': '1gm1c4n'}
{'comment': 'Also \n\nNo men will touch when abortion is made illegal', 'created': '2024-11-07 23:26:40', 'submission_id': '1gm1c4n'}
{'comment': 'If I were in my childbearing years with what is happening, I would not have intercourse. I do not need a dick for sexual satisfaction.', 'created': '2024-11-08 09:42:04', 'submission_id': '1gm1c4n'}
{'comment': 'As someone who grew up with Abstinence Only sex education it feels like we are coming full circle', 'created': '2024-11-08 05:35:37', 'submission_id': '1gm1c4n'}
{'comment': 'The Lysistrata treatment. Nice.', 'created': '2024-11-08 01:15:40', 'submission_id': '1gm1c4n'}
{'comment': "I see a lot of men saying that women are also going to hurt themself with this. They don't seem to understand that dick is actually very plentiful and low value. We don't really need men to get off, and who wants an emotional connection with these losers?", 'created': '2024-11-08 03:56:30', 'submission_id': '1gm1c4n'}
{'comment': 'Goodness I hope this movement takes off.', 'created': '2024-11-08 03:15:14', 'submission_id': '1gm1c4n'}
{'comment': "Because we don't have bodily autonomy anymore. It's the only form of significant protest we have.\xa0", 'created': '2024-11-08 13:19:42', 'submission_id': '1gm1c4n'}
{'comment': 'Plan B has a shelf life of 4 years…probably longer', 'created': '2024-11-08 05:40:41', 'submission_id': '1gm1c4n'}
{'comment': 'I 100% agree with this movement, but we must acknowledge the genuine risk this puts these women under. I\'ve already seen some right-wing young men say that women don\'t "have the choice" in the matter. These deranged pigs heard about this movement, and their genuine response is to sexually assault women.', 'created': '2024-11-08 01:51:39', 'submission_id': '1gm1c4n'}
{'comment': "I'm for this.", 'created': '2024-11-08 00:05:04', 'submission_id': '1gm1c4n'}
{'comment': "I've been advocating for this since Dobbs. \n\nWomen don't need men for anything, we're redundant. Men still need women. This is probably only going to work for men in a relationship though, the average Trump voter is a hairy palmed incel and having no women in their life will just be the status quo. \n\nHit'em where it hurts girls!", 'created': '2024-11-07 23:12:22', 'submission_id': '1gm1c4n'}
{'comment': 'Good for them.', 'created': '2024-11-08 00:21:06', 'submission_id': '1gm1c4n'}
{'comment': '“Kick them in the balls, keep kicking them until they pass out.”\n\nI love my mother. She told me and my sister this as babies through young adulthood. I think packing heat will absolutely help.', 'created': '2024-11-08 01:45:33', 'submission_id': '1gm1c4n'}
{'comment': "Over 50% of white women and 45% of women overall voted for Trump. I'll just leave it at that", 'created': '2024-11-08 02:58:55', 'submission_id': '1gm1c4n'}
{'comment': "They should include their 2A with that 4B because these men won't take no for an answer.", 'created': '2024-11-08 02:44:43', 'submission_id': '1gm1c4n'}
{'comment': 'I agree with this 100%.', 'created': '2024-11-08 02:26:45', 'submission_id': '1gm1c4n'}
{'comment': 'Good! Fuck em.', 'created': '2024-11-07 23:54:12', 'submission_id': '1gm1c4n'}
{'comment': 'People can obviously choose not to have sex, but isn’t abstinence kind of what the Christian fundamentalists want?', 'created': '2024-11-08 01:00:22', 'submission_id': '1gm1c4n'}
{'comment': None, 'created': '2024-11-08 05:00:33', 'submission_id': '1gm1c4n'}
{'comment': 'Lystristrata!!!!!', 'created': '2024-11-08 13:08:07', 'submission_id': '1gm1c4n'}
{'comment': 'For all the women in stand your ground States......feel free to use that law to the fullest extent.', 'created': '2024-11-08 18:59:10', 'submission_id': '1gm1c4n'}
{'comment': None, 'created': '2024-11-07 22:28:25', 'submission_id': '1gm1c4n'}
{'comment': 'I just want to point out that over 53% of women voted for Trump. \n\nThis isn\'t a men-vs-women thing, and it doesn\'t serve any purpose to frame it like that. \n\nIn AZ, women chose reproductive rights AND Trump. \nIn MI, women voted for Democrat Elisa Slotkin AND for Trump.\n\nYou can frame it as "men vs women" if you want, that\'s your choice, but I think you\'re angry at the wrong thing.', 'created': '2024-11-08 05:01:29', 'submission_id': '1gm1c4n'}
{'comment': "As a man I support y'all. I have been practicing celibacy for 4 years now but not for political reasons. I understand the plight and as a member of the LGBTQ I'm with u. My rights and rights of others in the LGBTQ will be taken away by Donald Trump and his cronies.", 'created': '2024-11-08 17:27:11', 'submission_id': '1gm1c4n'}
{'comment': 'As a white liberal male who voted for Harris and just wants to have a wife, family, and home. This honestly sucks to hear. I get it. And support these women. Guess I’ll just fuck myself for the time being. I’m 31. I just want a fucking future man. Doesn’t look like I’ll ever have one, or a family at this point. Shit sucks', 'created': '2024-11-08 19:39:34', 'submission_id': '1gm1c4n'}
{'comment': 'We owe the world for this horror.', 'created': '2024-11-08 04:57:40', 'submission_id': '1gm1c4n'}
{'comment': None, 'created': '2024-11-07 23:14:16', 'submission_id': '1gm1c4n'}
{'comment': '4b is tiny in South Korea. There are more Buddhist monks and nuns in Korea than in 4b.', 'created': '2024-11-08 02:49:49', 'submission_id': '1gm1c4n'}
{'comment': "As a guy, I pray this movement grows and grows. Also, are there things I can wear that make women feel safe? Like it's a universal tell? Sorry for my ignorance.", 'created': '2024-11-08 21:43:25', 'submission_id': '1gm1c4n'}
{'comment': "Rape is too much of a thing and I think you should all go get guns and self defense training asap but I don't know how how to say that in a nice or respectful way at this point so I apologize if that comes off weird from some random man on the internet lol.", 'created': '2024-11-08 21:53:13', 'submission_id': '1gm1c4n'}
{'comment': 'This is awesome!!! Those young males are going to be hurting…Blue Balls.🤣🔥🤣', 'created': '2024-11-09 00:45:12', 'submission_id': '1gm1c4n'}
{'comment': 'If this is how they are going to act and if they view women as "property" I have the right to defend my property with what ever force is needed. You better believe I shall do so.', 'created': '2024-11-12 15:53:35', 'submission_id': '1gm1c4n'}
{'comment': 'As a married dude, I’m getting my popcorn for this.', 'created': '2024-11-08 02:28:03', 'submission_id': '1gm1c4n'}
{'comment': '[removed]', 'created': '2024-11-07 22:42:02', 'submission_id': '1gm1c4n'}
{'comment': 'Not all men supported Trump. This is plain sexist.', 'created': '2024-11-07 23:12:58', 'submission_id': '1gm1c4n'}
{'comment': "This is honestly pretty stupid from so many different angles. \n\n1. Why would these people engage with Trump supporters to begin with if they care that much? Just don't date MAGAs. Why TF does that have to be a whole movement against all men?\n\n2. Over 50% of white women voted for Trump! Maybe liberal men should refuse to engage with white women since WW decided it'd be a good idea to vote in policies to crash the economy? \n\n3. Well these conservatives are also trying to put in more pro-christian policies and restrict other religious freedoms. OK cool now let's have atheists and Christians not date each other too. \n\n4. This will literally only push men further to the right. You'll have a bunch of liberal men getting punished for no reason by the left, and then a bunch of conservatives just waiting to welcome them with open arms. Great idea!!!!!", 'created': '2024-11-08 06:16:35', 'submission_id': '1gm1c4n'}
{'comment': "Half of those probably didn't even vote", 'created': '2024-11-08 04:48:02', 'submission_id': '1gm1c4n'}
{'comment': 'The IMMEDIATE response! Absolutely horrifying.', 'created': '2024-11-08 02:47:36', 'submission_id': '1gm1c4n'}
{'comment': 'Beware, for sure. It sounds like to me, we will looked on as "theirs". "Your body, belongs to all males, to do, as they will."', 'created': '2024-11-08 03:46:53', 'submission_id': '1gm1c4n'}
{'comment': 'You misunderstand, they’re thinking clearly. They’re just not ashamed anymore. Good luck America', 'created': '2024-11-08 04:40:20', 'submission_id': '1gm1c4n'}
{'comment': 'Some MAGA men waited until after the election to show their true colors. It’s really disturbing how safe they feel now just being outright disgusting to women.', 'created': '2024-11-08 04:22:56', 'submission_id': '1gm1c4n'}
{'comment': 'Just as Brexit emboldened racists in the UK, this election will likely embolden rapists. After all, the president did it - how bad can it be?', 'created': '2024-11-08 10:37:53', 'submission_id': '1gm1c4n'}
{'comment': 'Also, yall be careful if/when they ban porn… lots of those assholes will have a lot of free time and physical energy with no outlet they used to… we must protect the women!', 'created': '2024-11-08 07:49:23', 'submission_id': '1gm1c4n'}
{'comment': 'I swear to god, if I hear that phrase uttered in real life, someone get bail money ready cause I’m absolutely throwing hands at whatever fucker said that.', 'created': '2024-11-08 14:55:17', 'submission_id': '1gm1c4n'}
{'comment': 'Learn how to handle a firearm just in case.', 'created': '2024-11-08 03:04:44', 'submission_id': '1gm1c4n'}
{'comment': 'That’s why I’ve seen it as “4B & CCW”.', 'created': '2024-11-08 03:17:00', 'submission_id': '1gm1c4n'}
{'comment': "**This** is what the second amendment is for. They can't force you if yours is deadly.", 'created': '2024-11-08 21:44:10', 'submission_id': '1gm1c4n'}
{'comment': 'Best idea. It’s the true equalizer when you’re physically overmatched. I taught my wife to shoot, turns out she’s ten times more accurate than I am. Put me to shame at the range.', 'created': '2024-11-08 04:27:08', 'submission_id': '1gm1c4n'}
{'comment': 'Lysistrata 2025', 'created': '2024-11-08 03:03:31', 'submission_id': '1gm1c4n'}
{'comment': ">The B stands for No in Korean - Bih. \n\nSince we're adopting it from Korea, you might say it is now a 4N concept.", 'created': '2024-11-08 02:09:49', 'submission_id': '1gm1c4n'}
{'comment': 'As a man, I fully support this movement. Please be aware that there are plenty of men who hate these fucks too and are fighting on your side and for your rights. We will fight back together so hard they will slither back to the cesspools they came from. \n\nIncel Lives Don’t Matter.', 'created': '2024-11-08 05:23:56', 'submission_id': '1gm1c4n'}
{'comment': None, 'created': '2024-11-08 04:24:36', 'submission_id': '1gm1c4n'}
{'comment': 'Too bad they didn’t just turn out and vote. Now everyone is gonna be backed up and extra grouchy', 'created': '2024-11-08 03:42:27', 'submission_id': '1gm1c4n'}
{'comment': None, 'created': '2024-11-08 01:53:09', 'submission_id': '1gm1c4n'}
{'comment': "Biological families aren't safe to have anymore. Chosen families, with dear and trusted friends, are the only way to go now.", 'created': '2024-11-08 09:47:59', 'submission_id': '1gm1c4n'}
{'comment': 'And as Robert Evans mentions, at a bare minimum, you should know how to dress wounds, in particular, gunshot wounds and have an IFAK with you at all times.', 'created': '2024-11-08 00:49:37', 'submission_id': '1gm1c4n'}
{'comment': 'Indeed, Its time to arm up we have to protect ourselves. Project 2025 is terrifying', 'created': '2024-11-08 01:36:47', 'submission_id': '1gm1c4n'}
{'comment': "I've never wanted to own a gun. My relatives do but I haven't. Now I'm considering it.", 'created': '2024-11-08 00:45:08', 'submission_id': '1gm1c4n'}
{'comment': 'Already working on my permit. Huzzah.', 'created': '2024-11-08 01:56:33', 'submission_id': '1gm1c4n'}
{'comment': 'This is the first time in my life I am actually considering getting a gun. I am totally against violence, but I will not tolerate someone forcing himself on me again.', 'created': '2024-11-08 04:17:47', 'submission_id': '1gm1c4n'}
{'comment': 'Other countries give gun access to the general public but they have very nice laws in place that effectively eliminate school shootings. As long as the laws are in place I have no issue against guns, and it should be expected that many more women will buy them now.', 'created': '2024-11-08 04:30:50', 'submission_id': '1gm1c4n'}
{'comment': "I've been in that sub before and it never felt liberal AT ALL. the politics in there every time i've participated have been right wing.", 'created': '2024-11-08 01:16:27', 'submission_id': '1gm1c4n'}
{'comment': "Guns aren't going anywhere. I think it's a small minority of people who actually believe in gun control being restricting access of all guns from everyone. I live in a rural area (and a swing state that went red), so this could be experience bias, but I think when people say gun control they mean CONTROL, not taking them away. Waiting periods, background checks, maybe let's not have assault rifles, etc. \n\nGuns aren't going anywhere, they've become too much a part of American identity. So I think it's important everyone become responsible and educated. Even if you're not an owner yourself, I encourage people to be aware of the laws and have a general working knowledge of firearms.", 'created': '2024-11-08 02:40:52', 'submission_id': '1gm1c4n'}
{'comment': "Kamala Harris owns guns. A lot of Democrats, liberals, independents, and we all know Republicans do, own guns.\n\nI am 54 years old, I am a female, and I have been using guns since my single digits. \n\nI know you mean well, but I don't want anybody coddling me.", 'created': '2024-11-08 03:39:54', 'submission_id': '1gm1c4n'}
{'comment': None, 'created': '2024-11-08 03:41:55', 'submission_id': '1gm1c4n'}
{'comment': 'Always been there. You can vote Blue and own an arsenal of guns like I do. This is America after all. Join us!', 'created': '2024-11-08 04:19:42', 'submission_id': '1gm1c4n'}
{'comment': "If you're like most of us and aren't comfortable using a gun I would recommend some self defense. Feels like a good idea in today's climate if you're a woman or minority.", 'created': '2024-11-08 05:19:44', 'submission_id': '1gm1c4n'}
{'comment': 'Thank you.', 'created': '2024-11-15 18:54:22', 'submission_id': '1gm1c4n'}
{'comment': "Fun fact, it's relatively cheap and easy to obtain a Class 3 license which allows one to buy fully automatic weapons.", 'created': '2024-11-08 02:11:51', 'submission_id': '1gm1c4n'}
{'comment': None, 'created': '2024-11-07 23:40:36', 'submission_id': '1gm1c4n'}
{'comment': 'This is why girls have always traveled in groups', 'created': '2024-11-08 03:06:04', 'submission_id': '1gm1c4n'}
{'comment': 'missed the biggest chance to fight back on tues. Also by electing this facist you basically will lose all ur rights', 'created': '2024-11-07 23:51:58', 'submission_id': '1gm1c4n'}
{'comment': "None of the women who are actually doing this would have fucked trumpers anyway right?...\n\nSo they're punishing liberal dudes because we lost the election? Is that the angle? I just don't get it.", 'created': '2024-11-08 02:56:00', 'submission_id': '1gm1c4n'}
{'comment': 'Would have been far simpler to just vote…', 'created': '2024-11-08 13:24:25', 'submission_id': '1gm1c4n'}
{'comment': 'My husband and I were talking about having another baby, but now we’re trying to decide if we want to risk my health/life getting pregnant again or if we want to stay a single-child home and get a vasectomy. \n\nWe live in a state with a “soft” abortion ban, it’s scary out there.', 'created': '2024-11-08 01:21:14', 'submission_id': '1gm1c4n'}
{'comment': 'You would think. Plenty of MAGA/men don’t make that connection because as it stands now, if they get a girl pregnant, it’s not the man’s problem. \nThey walk away to let her deal with it, if a baby comes or not. \n\nThe threat of making a child is not a real risk for them now. I don’t see how illegal abortion would thwart them. \n\nSome men just think about sticking it in and don’t think beyond that.', 'created': '2024-11-08 00:48:47', 'submission_id': '1gm1c4n'}
{'comment': 'It’s more than avoiding pregnancy.', 'created': '2024-11-08 06:58:10', 'submission_id': '1gm1c4n'}
{'comment': 'We could do like a group of women did in India and find rapists in a dark alley somewhere and give them a lesson', 'created': '2024-11-08 02:30:49', 'submission_id': '1gm1c4n'}
{'comment': "I'm in", 'created': '2024-11-08 02:27:20', 'submission_id': '1gm1c4n'}
{'comment': 'Totally. But what a fucked up reason to have to have sex with men…. Otherwise they will rape you. God thank god I’m a lesbian.', 'created': '2024-11-08 03:33:33', 'submission_id': '1gm1c4n'}
{'comment': 'I mean, what you’re basically implying is “It’s unsafe for you to refuse sex, you’d better just ‘consent’ to sex you don’t want.” It’s not women’s fault if men choose to rape.', 'created': '2024-11-08 09:55:52', 'submission_id': '1gm1c4n'}
{'comment': 'I agree and I hope enough women stick to it.', 'created': '2024-11-08 05:01:00', 'submission_id': '1gm1c4n'}
{'comment': "That is not true. You need to say that it's the percentages of those who voted, not women overall.", 'created': '2024-11-08 06:35:02', 'submission_id': '1gm1c4n'}
{'comment': '…no, that’s the opposite of the idea', 'created': '2024-11-08 00:17:19', 'submission_id': '1gm1c4n'}
{'comment': 'Sure, until skyrocketing recreational lesbianism and the dildo/rabbit black market destroys all of their marriages because they had zero self-awareness and critical thinking skills to consider how it would impact them.\n\n…one can only dream\n\nEdit: Who am I kidding, it’ll just be a swinger culture behind closed doors.', 'created': '2024-11-08 01:16:06', 'submission_id': '1gm1c4n'}
{'comment': 'Until they marry off their girls at 15, yes. After that you better pop out kids and obey your husband.', 'created': '2024-11-08 01:10:47', 'submission_id': '1gm1c4n'}
{'comment': 'Nope, they want women to have no options so they have to rely on men for protection. It’s only “abstinence” until that man wants to breed. \n\nBut women still have enough independence to opt out of the whole dating-marriage-baby business, so voluntary abstinence is gonna piss all these men off.', 'created': '2024-11-08 05:29:47', 'submission_id': '1gm1c4n'}
{'comment': 'The MAGAts are not Christian fundamentalists. They’re more “grab em by the pussy” than they are “sex is only for marriage.”', 'created': '2024-11-08 09:58:42', 'submission_id': '1gm1c4n'}
{'comment': 'They do, but governments around the world are alarmed at declining birth rates. No more slaves for the capitalist machine equals less money. I guarantee money trumps anything the Christofascists want.', 'created': '2024-11-08 01:49:54', 'submission_id': '1gm1c4n'}
{'comment': 'that is very true', 'created': '2024-11-08 01:05:35', 'submission_id': '1gm1c4n'}
{'comment': 'Lysistrata; isn\'t that a mouthwash?\n\n(From an episode of "Gilligan\'s Island") 😁', 'created': '2024-11-08 07:22:58', 'submission_id': '1gm1c4n'}
{'comment': "That is not correct, it's the percentage of voters, not the general population.", 'created': '2024-11-08 06:37:04', 'submission_id': '1gm1c4n'}
{'comment': '53% of *white* women. Not of women. 45% of women.', 'created': '2024-11-08 10:01:32', 'submission_id': '1gm1c4n'}
{'comment': "It's clearly a form of protest and I'm not sure what part is hard to understand?", 'created': '2024-11-08 00:05:06', 'submission_id': '1gm1c4n'}
{'comment': 'This isn’t the best take. Those men that voted for him are mostly pathetic incels that couldn’t get a woman to touch their pee pees in the first place. It’s absolutely open season to rape any woman they want now and there will be no consequences for it. It will likely be encouraged after the national abortion ban takes place to help grow the population which will be used for uneducated slave labor for the oligarchs they just voted for. They do not give a single fuck if the woman (or child for that matter) is republican or democrat or anything else.', 'created': '2024-11-07 23:34:27', 'submission_id': '1gm1c4n'}
{'comment': '>All they are doing is punishing the men who voted for Trump.\n\neh, i think the \'this will show them\' is somewhat silly, but i\'m all about not sleeping with anybody you don\'t want to sleep with. and it doesn\'t surprise me at all that \'couldn\'t give a shit about something so critical to me\' is not a sexy thing to learn about any man. but i think the framing it as being about who voted for what, or who failed to vote, is just going to set up a kind of meta-stealthing, "oh yeah, i totally didn\'t vote for the guy, *now* will you let me fuck you?"\n\nas far as i can see, any pregnancy by any man is going to be equally dangerous and abortion is going to be just as banned for every woman.', 'created': '2024-11-07 23:42:24', 'submission_id': '1gm1c4n'}
{'comment': "I'm confused why the downvote? I mean I get it. The version of 4B now is a valid choice for body autonomy that is going to erode during this next administration, but the truth of the matter is that 4B is a blip of radical anti-trans feminism in South Korea that has very little to do with the population decline and gender disequality issues. It's being given more weight in social media than it has actual impact in Korea.", 'created': '2024-11-08 06:13:00', 'submission_id': '1gm1c4n'}
{'comment': 'The movement here is not meant to make any point about Korea or claim it’s huge there. It was just the inspiration for a movement here. But also there have always been women living/loving a life that doesn’t seek comfort or validation from men, and now there’s just a name and a movement to unify around this notion. Help women to realize this is a better way to live while they’re younger, too.', 'created': '2024-11-08 10:05:23', 'submission_id': '1gm1c4n'}
{'comment': "I'm glad you're having fun.", 'created': '2024-11-08 03:58:07', 'submission_id': '1gm1c4n'}
{'comment': 'It’s women refusing to use give men their body to gain back some control over it. The idea can be to punish men. Also, many women just don’t wanna fuck MAGA men', 'created': '2024-11-07 23:14:28', 'submission_id': '1gm1c4n'}
{'comment': 'I read it and I got the gist that they are punishing men in general because they mostly voted Trump. Also I think MAGA fanatic and Trump voter are two different things although they overlap.', 'created': '2024-11-07 22:55:55', 'submission_id': '1gm1c4n'}
{'comment': 'And plenty of women voted trump too. I support the movement though. It’s really just their personal choice at the end of the day on who they want to have sex with', 'created': '2024-11-07 23:26:50', 'submission_id': '1gm1c4n'}
{'comment': "sucks, doesn't it. idk what you want me to tell you though. if i make up my mind that i'm not risking a pregnancy that i don't want and have no means of ending if it happens to me, that's my right until someone revokes consent law as well.", 'created': '2024-11-07 23:44:53', 'submission_id': '1gm1c4n'}
{'comment': "But all women are suffering from him being in power. If you want booty, I guess you'll need to convince the Trumper's around you to get out of the cult. Women have to look out for themselves at this point.", 'created': '2024-11-08 00:14:18', 'submission_id': '1gm1c4n'}
{'comment': None, 'created': '2024-11-07 23:34:52', 'submission_id': '1gm1c4n'}
{'comment': '"Not all men" is a poor rejoinder.\n\nThe 4B movement is about systemic disenfranchisement of female bodily autonomy, and the response is likewise systemic, as that is the only way that boycott-like behavior ever proves effective.', 'created': '2024-11-07 23:41:51', 'submission_id': '1gm1c4n'}
{'comment': 'Maga women can risk their lives then we don’t have too', 'created': '2024-11-08 10:09:29', 'submission_id': '1gm1c4n'}
{'comment': 'Dude! 1 out of 5 women have a miscarriage(s) which are out of their control! If they don’t get health care for it, they could die! If they get sepsis and live, then they have a HUGE medical bill and they may never have another child.', 'created': '2024-11-08 15:28:35', 'submission_id': '1gm1c4n'}
{'comment': 'Exactly what they have been waiting for. Now they get to say it out loud.', 'created': '2024-11-08 03:36:25', 'submission_id': '1gm1c4n'}
{'comment': 'They showed it before.', 'created': '2024-11-08 04:34:25', 'submission_id': '1gm1c4n'}
{'comment': 'Definitely if/when a national abortion ban takes place. Women are going to take up celibacy big time.', 'created': '2024-11-08 07:58:06', 'submission_id': '1gm1c4n'}
{'comment': 'Porn may be "banned" but they will still have access to it. History proves there will always be porn and women to suck their dicks. Crude, but true.', 'created': '2024-11-08 09:53:21', 'submission_id': '1gm1c4n'}
{'comment': 'Use your 2nd amendment rights and shoot the fucker. Seriously, then use your stand and defend defense.', 'created': '2024-11-08 17:58:00', 'submission_id': '1gm1c4n'}
{'comment': 'I hate guns and competely agree.', 'created': '2024-11-08 03:15:15', 'submission_id': '1gm1c4n'}
{'comment': '4B & a 9', 'created': '2024-11-08 03:26:27', 'submission_id': '1gm1c4n'}
{'comment': 'I’ve been saying this since I read that play in high school. Of course I didn’t follow my own suggestion - I still had hope for men. \n\nNot today. Clinton results are the same as Harris, but Biden (old fart white man - who I voted for) was millions over them. \n\nI can’t believe Democrats aren’t seeing this clear as day, and blaming it on everything else - mostly that Harris didn’t run a solid campaign. It’s idiotic that anyone can believe that Biden was somehow a better campaigner candidate, and that that was the reason millions of dems sat it out.', 'created': '2024-11-08 13:14:52', 'submission_id': '1gm1c4n'}
{'comment': 'I concur.', 'created': '2024-11-08 09:54:37', 'submission_id': '1gm1c4n'}
{'comment': 'Very accurate. But Bih has an edge to it I personally dig. I have a shirt that simply has "**비"** or \'Bih" on it. I love it.', 'created': '2024-11-08 02:16:49', 'submission_id': '1gm1c4n'}
{'comment': 'Top tier pun, well dun', 'created': '2024-11-08 15:18:45', 'submission_id': '1gm1c4n'}
{'comment': 'That sounds like a good bumper sticker/shirt I’d definitely wear/put on our car!\n\nEdit: the incel lives don’t matter part, not your entire comment lol', 'created': '2024-11-08 07:51:07', 'submission_id': '1gm1c4n'}
{'comment': 'Except Incel Democrats who sat this out, are making their voices matter.', 'created': '2024-11-08 13:17:09', 'submission_id': '1gm1c4n'}
{'comment': 'When I got married and had my kid one of the things that I always felt was that she chose to give me the privilege of carrying my child! it was the greatest honor she could have given.', 'created': '2024-11-08 14:36:45', 'submission_id': '1gm1c4n'}
{'comment': 'Sounds like ripe recruiting grounds for prison. Don’t drop the soap, eh?', 'created': '2024-11-08 07:52:42', 'submission_id': '1gm1c4n'}
{'comment': 'Yeah uh, religion is part of the problem here.', 'created': '2024-11-08 14:03:58', 'submission_id': '1gm1c4n'}
{'comment': 'Lmfao. Not a chance.', 'created': '2024-11-08 01:53:59', 'submission_id': '1gm1c4n'}
{'comment': 'Take a first aid/CPR class.', 'created': '2024-11-08 01:16:42', 'submission_id': '1gm1c4n'}
{'comment': 'Yes, IFAK and train on use', 'created': '2024-11-08 03:11:49', 'submission_id': '1gm1c4n'}
{'comment': "Do what I did after the first debate and take up archery! You get to learn a projectile weapon, work out your upper body, and pretend you're an archer of Lothlorien.", 'created': '2024-11-08 18:59:53', 'submission_id': '1gm1c4n'}
{'comment': 'That’s not violence that’s self-preservation and survival. A rapist won’t understand anything else.', 'created': '2024-11-08 04:23:52', 'submission_id': '1gm1c4n'}
{'comment': 'Yup! I was there for a bit. I’m a former LEO and former Army MP. EVERY time I advocated for common sense gun laws I was shit on.', 'created': '2024-11-08 02:27:34', 'submission_id': '1gm1c4n'}
{'comment': "That hasn't been my experience. In my experience that sub has been very liberal on all fronts except for the party lines regarding gun regulation. They're pro-choice, pro-migrant, pro-LGBTQ, etc -- they just don't think that govt regulation on guns and gun ownership are the right solutions.", 'created': '2024-11-08 15:14:06', 'submission_id': '1gm1c4n'}
{'comment': 'That sub got taken over by concern trolls and right wingers a good while ago.', 'created': '2024-11-08 15:22:50', 'submission_id': '1gm1c4n'}
{'comment': "> Guns aren't going anywhere.\n\nRemember how it was a Republican governor who did California's gun control, and why?\n\nTrump will take everyone's guns.", 'created': '2024-11-08 07:46:07', 'submission_id': '1gm1c4n'}
{'comment': 'What does every fascist government have in common?\n\nCitizens are NOT allowed to have personal firearms.\n\nGuns are definitely going going gone.', 'created': '2024-11-08 07:55:09', 'submission_id': '1gm1c4n'}
{'comment': 'I don\'t think this "get armed now" push among libs&lefties is because they think the guns are gonna get taken. I think it\'s because they know we\'re not safe. The day RBG died was the day my wife and I decided to get sterilized and armed. I don\'t think anyone is gonna fight the cops or the military, but part of the danger of times like this is that violence by fash against demonized groups is tolerated, and for goddam sure I\'m not gonna let any of my friends or family be their victims.', 'created': '2024-11-08 15:17:16', 'submission_id': '1gm1c4n'}
{'comment': 'Yup', 'created': '2024-11-08 03:54:14', 'submission_id': '1gm1c4n'}
{'comment': 'It isn’t cosplaying it’s quite literally what the country was built on and is important 🤷 now more then ever considering democracy is at risk', 'created': '2024-11-07 23:45:22', 'submission_id': '1gm1c4n'}
{'comment': '> Cospsying as a soldier is what maga does. rest of us try to be responsible gun owners.', 'created': '2024-11-08 00:21:10', 'submission_id': '1gm1c4n'}
{'comment': 'Owning a firearm isn\'t "cosplaying as a soldier".', 'created': '2024-11-08 00:10:37', 'submission_id': '1gm1c4n'}
{'comment': "Pretty sure she didn't vote for Trump. Nor did I or my daughter. We can't control what others have done, only what we can do going forward", 'created': '2024-11-08 02:27:54', 'submission_id': '1gm1c4n'}
{'comment': "The idea is not to punish the liberal dudes. The idea is to make sure that nothing happens that would make a man feel like he owns any woman. First order: no pregnancy-- which means we have to learn to do hetero sex only with vasectomy, or without PIV(Basically sex that's all foreplay-- which actually can be surprisingly good. Reading some books on tantra will give you some ideas).", 'created': '2024-11-08 09:55:58', 'submission_id': '1gm1c4n'}
{'comment': 'Punishing or blaming men for everything is just going to continue to push them to the MAGA side.', 'created': '2024-11-08 04:26:00', 'submission_id': '1gm1c4n'}
{'comment': "lot's of women voted for the kamala. trump got in bet the trumpers that voted in, won't be getting in, a woman anyway. OUR bodies, OUR choices.", 'created': '2024-11-08 13:58:59', 'submission_id': '1gm1c4n'}
{'comment': "Alot of MAGA Men don't make a lot of connections 2+2 = \n\nThey do make for good You tube videos and Tosh .O had a bunch on \n\nLighting fires using gas\n\nShooting guns into bullet proof vests to see if they really work \n\nBut they finally made it to the big time on national TV trying to invade the Capitol building in 2021", 'created': '2024-11-08 02:10:31', 'submission_id': '1gm1c4n'}
{'comment': "Oh, I don't think they should sleep with these freaks. I think these women should get CPLs and get proper self-defense training. Any man who attempts to rape a woman deserves more than a couple bullets in the chest imo.", 'created': '2024-11-08 13:47:01', 'submission_id': '1gm1c4n'}
{'comment': "Okay. Of those who voted, 53% of white women and 45% of all women voted for Trump. The rest of the women in the country didn't care enough to vote at all.", 'created': '2024-11-08 09:07:12', 'submission_id': '1gm1c4n'}
{'comment': 'True. But to be clear - you’re *still* gonna frame it as men vs women? Same % rules apply for both groups, right?', 'created': '2024-11-08 12:57:58', 'submission_id': '1gm1c4n'}
{'comment': 'Yep my bad. \n\nSo. 45% of women. Some of those women - in AZ - voted to keep control of their bodies, by making abortion available *and* they voted for Trump. \n\nSo. \n\nPlease frame *that* as “men vs women”', 'created': '2024-11-08 13:00:21', 'submission_id': '1gm1c4n'}
{'comment': 'Look, im a dem but your take of all trump voters being incels is not true at all. Theres plenty of trump supporters in relationships. Go read a texas news stations facebook post and comment section like san antonios KSAT News. Atleast half of the women there love trump too, and ted cruz 🤢.\n\nYou cant fix stupid, but dont generalize too much. Blanket statements and over confidence will just lead to complacency.', 'created': '2024-11-08 01:41:58', 'submission_id': '1gm1c4n'}
{'comment': 'Just know that 4b in Korea has a history of homophobic and anti trans messaging and activity that used to actively try to dox queer folks. So know the roots of the movement you are co opting.', 'created': '2024-11-09 05:07:09', 'submission_id': '1gm1c4n'}
{'comment': 'These are new US values - celibacy and division. Not my fault. I did my part to vote against the orange chicken.', 'created': '2024-11-08 11:40:07', 'submission_id': '1gm1c4n'}
{'comment': '[removed]', 'created': '2024-11-07 23:17:28', 'submission_id': '1gm1c4n'}
{'comment': 'Well, choice goes without saying. It’s a hasty generalization to lump all men together because just over half voted for Trump. Heck, more women voted for Trump, you don’t seem liberal men boycotting women.', 'created': '2024-11-07 23:30:26', 'submission_id': '1gm1c4n'}
{'comment': 'Yes but women have allies in men. I’ve been married for 26 years so I have no skin in the game. Just calling it how I see it.', 'created': '2024-11-08 00:31:26', 'submission_id': '1gm1c4n'}
{'comment': "Saying it's a foolish choice in no way implies they don't have a right to make it.", 'created': '2024-11-08 00:14:07', 'submission_id': '1gm1c4n'}
{'comment': 'As I replied to someone else, choice goes without saying. It’s still sexist.', 'created': '2024-11-07 23:35:45', 'submission_id': '1gm1c4n'}
{'comment': 'It wasn’t meant to be a witty response. 128M men in the US. 35M voted for Trump. So yeah, not all men.', 'created': '2024-11-08 01:26:15', 'submission_id': '1gm1c4n'}
{'comment': 'There are tons of states with abortion access tho? Why would women there stop having sex?', 'created': '2024-11-08 15:58:45', 'submission_id': '1gm1c4n'}
{'comment': "Oh, they've been saying it out loud plenty. Apparently the majority of us wanted to hear it. I'm just so sad and angry.", 'created': '2024-11-08 17:06:30', 'submission_id': '1gm1c4n'}
{'comment': 'Guns scare the shit out of wife and I. We both have our own gun.', 'created': '2024-11-08 04:54:08', 'submission_id': '1gm1c4n'}
{'comment': "It's always better to know than not, just in case.", 'created': '2024-11-08 03:56:11', 'submission_id': '1gm1c4n'}
{'comment': 'Hate guns, learned how to use one by taking a course, and now I own one. Hope to never have to resort to using it.', 'created': '2024-11-08 04:18:23', 'submission_id': '1gm1c4n'}
{'comment': 'That would be a lot to fit into a bumper sticker.', 'created': '2024-11-08 09:36:04', 'submission_id': '1gm1c4n'}
{'comment': 'it’s a twist on Tom Morello’s “Nazi Lives Don’t Matter”. Incels, Nazis, all the same.', 'created': '2024-11-08 16:41:02', 'submission_id': '1gm1c4n'}
{'comment': 'lol', 'created': '2024-11-08 02:28:15', 'submission_id': '1gm1c4n'}
{'comment': "Exactly. It's not liberal IN THE FUCKING SLIGHTEST", 'created': '2024-11-08 02:52:12', 'submission_id': '1gm1c4n'}
{'comment': "It's liberal except when it comes to gun control, IMO. The key thing is that it doesn't usually have the other ugly social beliefs that usually come with gun ownership. Like, you won't see them casually joking about gunning down Trans/gay/lib/whatever folks like you might in a normal gun sub.", 'created': '2024-11-08 19:01:27', 'submission_id': '1gm1c4n'}
{'comment': 'It depends on what you consider common sense. Background checks, red flag, and training/mental health sure. If you go in there and start talking about things like banning scary features like they’ve tried in certain states yeah you’re going to get pooped on because those are mostly bad ideas.', 'created': '2024-11-08 04:23:04', 'submission_id': '1gm1c4n'}
{'comment': "LOL when did you go there, because for at least the last time Trump was president they've been right wing rhetoric all the time every time", 'created': '2024-11-08 16:34:10', 'submission_id': '1gm1c4n'}
{'comment': "I'm genuinely completely ignorant of what happened in CA. I'm not sure what you're referring to at all, and Google didn't turn out anything using the limited information in your comment. Could you give me specific context here so I know what I'm looking for?\n\nYou and another commenter seem to be pointing out the same thing however, and it's something that I missed in its entirety. I have completely taken for granted the fact a fascist government would not want its citizens owning firearms. I have to walk back my confidence that guns aren't going anywhere.", 'created': '2024-11-08 08:04:43', 'submission_id': '1gm1c4n'}
{'comment': None, 'created': '2024-11-08 00:01:06', 'submission_id': '1gm1c4n'}
{'comment': 'What does a hobby have to do with politics then?', 'created': '2024-11-08 00:22:13', 'submission_id': '1gm1c4n'}
{'comment': "I didn't mean literally... \n\nPoint being, no one that's currently taking away their rights is going to be affected by this at all.\n\nThe people that are actually changing laws to take away women's rights, and the people who cheer them on, are going to literally laugh at this. It means nothing to them. How is that effective?", 'created': '2024-11-08 10:07:26', 'submission_id': '1gm1c4n'}
{'comment': "100%.\n\nReddit can keep downvoting but that doesn't change the truth. \n\nAnd they're ignoring the 52% of white women who voted Trump! Lol!", 'created': '2024-11-08 06:09:43', 'submission_id': '1gm1c4n'}
{'comment': '[How White Women Doomed Kamala Harris and the Democrats — Again](https://newrepublic.com/post/188061/white-women-harris-trump-exit-polls)', 'created': '2024-11-09 00:13:24', 'submission_id': '1gm1c4n'}
{'comment': "So, I'm a 46 year old college freshman. I was sitting in the hub at school on Wednesday studying. Two women in their early 20s walked by and I overheard a bit of their conversation. They both flat out said they were going to dump their boyfriends because the boyfriends voted for Trump. The women couldn't believe the dudes would shit on their rights like that.", 'created': '2024-11-08 02:59:06', 'submission_id': '1gm1c4n'}
{'comment': 'Haha nah I get you. Yikes. This whole season of America is getting seriously dystopian seriously fast. It’s really creeping me out and I’m in the UK! But the states is like our older brother… so if our brother ain’t good, we don’t feel good.', 'created': '2024-11-08 14:20:16', 'submission_id': '1gm1c4n'}
{'comment': "It does make a difference since so many didn't vote for whatever reason.", 'created': '2024-11-08 16:01:41', 'submission_id': '1gm1c4n'}
{'comment': "I didn't say anything about that, just correcting the statement.", 'created': '2024-11-08 15:59:45', 'submission_id': '1gm1c4n'}
{'comment': 'This is really just about women no longer allowing men to destroy our lives. We are better off without most of them. Men gain from their relationships with women while women often don’t gain from our relationships with men. They’re cut off. We should have not one ounce of mental space for these emotionally immature men who won’t work on their shit, who are selfish and who vote against our interests and who can’t wash their hands properly. So done.', 'created': '2024-11-08 13:07:42', 'submission_id': '1gm1c4n'}
{'comment': 'Wow. When you downvote Korean feminists trying to clarify misinformation you really demonstrate a failure in intersectionality.', 'created': '2024-11-10 18:36:17', 'submission_id': '1gm1c4n'}
{'comment': "i think the primary point should be that women now need to look out for themselves. nobody else is going to. there aren't any other options.", 'created': '2024-11-07 23:47:55', 'submission_id': '1gm1c4n'}
{'comment': 'It won’t change anything unless a large percentage of women actually go along with it. Women on the Right are not participating for sure', 'created': '2024-11-07 23:19:16', 'submission_id': '1gm1c4n'}
{'comment': 'They should boycott conservative women I wouldn’t blame them one bit I mean if they are having children with women who won’t support their daughters rights that’s a huge issue.', 'created': '2024-11-07 23:32:12', 'submission_id': '1gm1c4n'}
{'comment': "I don't personally have a problem with most men. But I'm older and live in a blue state. Even a national abortion ban won't affect me. But I feel for women in red states and worry about the young girls and ladies I know. If boycotting all men is what makes these women feel some semblance of control, then more power to them. We do need male allies.", 'created': '2024-11-08 02:02:43', 'submission_id': '1gm1c4n'}
{'comment': 'This is just a strong reaction that some women are having in regards to their rights being taken away. It is counter productive to lump all men together. Boycotting MAGA men would be the most effective for this movement. But if they wanna boycott all men, that’s their choice too. It’s just too toxic for me. I’ve been on incel forums (out of curiosity). It’s doesn’t help anyone', 'created': '2024-11-08 00:00:25', 'submission_id': '1gm1c4n'}
{'comment': "If you had no skin in the game, then you had no reason to comment. We don't have allies in men so long as women don't have reproductive freedoms.", 'created': '2024-11-08 00:40:39', 'submission_id': '1gm1c4n'}
{'comment': 'So is not voting for a woman', 'created': '2024-11-08 01:12:24', 'submission_id': '1gm1c4n'}
{'comment': "Doesn't change the fact that the 35MM are perfectly good with creating systemic injustice, and have the power to do it now that their candidate is in office.", 'created': '2024-11-08 19:04:21', 'submission_id': '1gm1c4n'}
{'comment': 'Good. Please take a firearms instruction/safety class to become intimately familiar and comfortable with operating your guns. Then obtain your CCL if it is required by your state. *And carry them with you.*\n\nBetter to be prepared than wishing you had it with you if/when a situation arises meriting the use of a firearm for self defense.', 'created': '2024-11-08 06:56:54', 'submission_id': '1gm1c4n'}
{'comment': 'Maybe we should start a sub for women liberal gun owners.', 'created': '2024-11-08 03:06:54', 'submission_id': '1gm1c4n'}
{'comment': "I've been a member and regular user there since 2020, when I first got armed. With the exception of gun control, I've found it to be a middle-of-the-road liberalism sub. What right-wing politics have you seen there?", 'created': '2024-11-08 18:06:29', 'submission_id': '1gm1c4n'}
{'comment': 'It was Reagan who was governor of California when that state implemented gun control, in response to the Black Panther Party doing open carry "copwatching" and community food banks.\n\nThat\'s what got California its gun control laws. Racism.\n\n[Mulford Act](https://en.wikipedia.org/wiki/Governorship_of_Ronald_Reagan#Mulford_Act) if you want to look it up. And apparently that was the start of modern gun control legislation in America.', 'created': '2024-11-08 08:09:12', 'submission_id': '1gm1c4n'}
{'comment': 'The other side is armed to the hilt. It’s called leveling the playing field.', 'created': '2024-11-08 00:13:01', 'submission_id': '1gm1c4n'}
{'comment': '[removed]', 'created': '2024-11-08 00:07:59', 'submission_id': '1gm1c4n'}
{'comment': "The hope is that women won't be trapped with pregnancies or in relationships with men who wish then harm.\xa0", 'created': '2024-11-08 10:24:08', 'submission_id': '1gm1c4n'}
{'comment': "A lot of conservative men put centrist or apolitical on their profiles to avoid the dry desert they would face from women. They cosplay as progressive or centrist to get sex. Women aren't willing to play discernment right now after seeing the overwhelming amount of men who voted for Trump so they are just shutting off completely.\n\nLiberal men will definitely feel the whiplash but so will conservative men. Conservative women are not as sex positive so they will not get as many hookups that they have been able to squeeze out from liberal women. All men will suffer from less sex as a result of liberal women shutting down.\n\nThis is where allyship will be crucial because liberal men will have to decide if they can stand in unison with liberal women who collectively feel unsafe in this country right now or if they will prioritize getting sex.", 'created': '2024-11-08 10:55:24', 'submission_id': '1gm1c4n'}
{'comment': 'Those women are delusional and voted to cut their own throats.', 'created': '2024-11-08 09:56:40', 'submission_id': '1gm1c4n'}
{'comment': 'You are free to do as you wish. \n\nI just don’t understand why women - all of those that voted for Trump - get a pass. They’re still part of your sisterhood or whatever. \n\nBut all men - even those that voted for Harris - are just as bad as the ones that voted for Trump. Apparently.\n\nI think it would be good for all to do some introspection and reflection about why this happened. \n\nI don’t think it’s as simple as “men want to control women’s bodies”. The fact that Trump won Michigan decisively while Elisa Slotkin won means it’s not that simple. \n\nSame in Arizona. \n\nYou wanna blame all men for all woes in society?\n\nGuess what. They’ve been hearing that for 20+ years now. You can’t escalate this rhetoric further.', 'created': '2024-11-08 13:22:08', 'submission_id': '1gm1c4n'}
{'comment': 'Agreed', 'created': '2024-11-08 01:46:54', 'submission_id': '1gm1c4n'}
{'comment': '[removed]', 'created': '2024-11-08 00:52:56', 'submission_id': '1gm1c4n'}
{'comment': 'I personally voted for both Clinton and Harris. I did so because I hold democrat values and their policies aligned with mine and I believed they were the best, most qualified candidates. I didn’t vote for them *because* they are women. That would also be sexist.', 'created': '2024-11-08 01:29:53', 'submission_id': '1gm1c4n'}
{'comment': 'You won’t find disagreement from me there', 'created': '2024-11-08 19:32:35', 'submission_id': '1gm1c4n'}
{'comment': 'Thank you. I have looked in to this, need to get it done.', 'created': '2024-11-08 07:04:14', 'submission_id': '1gm1c4n'}
{'comment': "but i'm a dude", 'created': '2024-11-08 03:07:35', 'submission_id': '1gm1c4n'}
{'comment': 'Literally EVERY topic i ever saw brought up in there was massively right wing\n\ntaxes, social policy, environmental regulations, etc \n\nliterally fucking everything.', 'created': '2024-11-08 18:15:48', 'submission_id': '1gm1c4n'}
{'comment': None, 'created': '2024-11-08 00:19:26', 'submission_id': '1gm1c4n'}
{'comment': 'So to be clear. you are advocating the use of guns for political violence?', 'created': '2024-11-08 00:21:21', 'submission_id': '1gm1c4n'}
{'comment': "Then they can just date the liberal guys they're also refusing to have sex with. Oh wait...", 'created': '2024-11-08 16:05:36', 'submission_id': '1gm1c4n'}
{'comment': 'We will also need to broaden our definition of family. If we want a family but want to avoid pregnancy? Adoption and fostering is the way to go. Give the Vances and Huckabee Sanderses of the world, who insist that only biological kids count, the finger. Chosen families are families too.\n\n\nI had a conversation with a friend last night who happens to be conservative, and one thing that stood out was how much he romanticized the concept of family. How he pitied anyone without adult children, in particular, for being socially isolated. I told him that I was hoping for friends and a chosen family to fill that void. He insisted that blood relations are a special relationship, while friends leave you.\n\n\nSo that\'s it: blood relations are superior *because they can\'t leave you*. It\'s an oddly possessive way to look at relationships.\xa0\n\n\nThat\'s what gives me the ick about families, I think: this undercurrent of possession. It\'s why some parents treat their children like their property. Many families will only love you as long as you conform to their values. They don\'t *actually* value you as a person or respect your autonomy. Any love that comes from such a family feels tainted and contingent. Transactional, if you will. "My love in exchange for staying the person I think you should stay."', 'created': '2024-11-08 11:22:19', 'submission_id': '1gm1c4n'}
{'comment': 'So liberal men will have to "stand in unison" with these celibate liberal women, while both groups have zero power, until what? For 4 years? 8? 12? Liberals just lost all their power in this country. There\'s literally nothing we can do about it.\n\nAnd this is to deter conservative men from pretending to be liberal on dating apps? \n\nThis kind of thinking is why we lose elections.', 'created': '2024-11-08 16:03:41', 'submission_id': '1gm1c4n'}
{'comment': 'Women have nothing left but their own bodily autonomy and you want us to be sympathetic that your feelings are hurt because women want to protect themselves?', 'created': '2024-11-08 00:56:17', 'submission_id': '1gm1c4n'}
{'comment': 'Nah. I voted to protect my wife and daughters and I support this.', 'created': '2024-11-08 01:21:59', 'submission_id': '1gm1c4n'}
{'comment': "Yep. That's why women are doing this - they may recognize that there are men who won't behave this way, but the only way to have an impact and call attention to systemic injustice is to take action that calls attention to said injustice. \n\nThis is about optics and changing hearts and minds, not about categorizing all men.", 'created': '2024-11-08 19:58:16', 'submission_id': '1gm1c4n'}
{'comment': 'Oops. Maybe a sub for “REAL liberal gun owners”?!?', 'created': '2024-11-08 03:11:52', 'submission_id': '1gm1c4n'}
{'comment': 'Nope I’m advocating for protecting yourself from the loons on the other side.', 'created': '2024-11-08 00:20:27', 'submission_id': '1gm1c4n'}
{'comment': "They can still date them, as long as they don't get pregnant.\xa0\n\n\nSex without PIV. It's a great suggestion.\xa0", 'created': '2024-11-08 16:08:25', 'submission_id': '1gm1c4n'}
{'comment': 'need a cousin? i can pretend.', 'created': '2024-11-08 12:08:06', 'submission_id': '1gm1c4n'}
{'comment': 'Totally agree about chosen families. Couples without kids and single people with pets are families too! I would love to get rid of “baby” and “family” being synonymous… the more I think about it the weirder it is. Like where did start a family or have a family come from if it’s only ever meant “baby”', 'created': '2024-11-08 19:03:37', 'submission_id': '1gm1c4n'}
{'comment': 'Liberal women no longer care about winning elections right now. All they care about is protecting themselves for the next 4 years then everything else comes second. This country had a chance to protect their rights and they overwhelmingly voted AGAINST them. They are afraid and their view of men is shattered because they witnessed an overwhelming amount of them voting against their rights for cheap eggs.', 'created': '2024-11-08 16:11:20', 'submission_id': '1gm1c4n'}
{'comment': 'OK now we are just going in circles. Take care. Have a great day.', 'created': '2024-11-08 20:04:59', 'submission_id': '1gm1c4n'}
{'comment': "sure :). i haven't shot since i was teenager (40 now) so i'd be one of the newbie owners. \n\ni also tend to delete and recreate accounts every year or so. so no moderating for me.", 'created': '2024-11-08 03:13:14', 'submission_id': '1gm1c4n'}
{'comment': 'I’ll join that too. The sub is for sure very 2nd amendment protective, but broader politics is not conservative there.', 'created': '2024-11-08 03:14:09', 'submission_id': '1gm1c4n'}
{'comment': 'Anyone who thinks this would actually catch on, or actually do anything to further a cause, lives in a fantasy world.', 'created': '2024-11-08 16:13:02', 'submission_id': '1gm1c4n'}
{'comment': 'Maybe I watch too many cat rescue videos, but most often when I think of "family" I think of a momma cat and her kittens. "We rescued this sweet little family from a storm drain" etc.', 'created': '2024-11-08 19:20:55', 'submission_id': '1gm1c4n'}
{'comment': "The view of liberal men is shattered? \n\nWhy's that now?", 'created': '2024-11-08 16:14:41', 'submission_id': '1gm1c4n'}
{'comment': 'if by "2nd amendment protective" you mean "literally repeating NRA talking points". my experience of that sub was that it wasn\'t liberal *in any way*', 'created': '2024-11-08 03:19:12', 'submission_id': '1gm1c4n'}
{'comment': "Reread my comment. It's their view of men that is shattered in general. They are shell shocked. \n\nThe best way to describe it is when a snowboarder has a critical accident that causes an injury. They rest, take time to heal, and then eventually get back to snowboarding again. \n\nLiberal women will get back to snowboarding (sex) in their due time but for now allow them their space to heal from their injury.", 'created': '2024-11-08 16:19:20', 'submission_id': '1gm1c4n'}
{'comment': "Not a single liberal woman I know is doing this. You're talking as if it's some global movement where most women are involved. \n\nDisproportionately punishing liberal men, for something conservative men did, does not make any sense. If you think it does, good luck in 4 years.", 'created': '2024-11-08 16:26:53', 'submission_id': '1gm1c4n'}
{'comment': "You commented that I am talking as if this is some kind of global movement on a post that is literally talking about the global 4b movement that liberal women are adopting after the election. \n\nAnd if it isn't obvious, women don't give a damn about 4 years from now when they are just trying to get through each day. \n\nWe don't agree but I respect your thoughts. Take care.", 'created': '2024-11-08 16:31:27', 'submission_id': '1gm1c4n'}
{'comment': 'No one is doing this. Not one person you know is actually doing this. Why are we playing pretend? \n\nAlso I\'m not in any way saying women should not be afraid. I\'m not in any way saying what happened is okay. I\'m literally just pointing out that this whole concept is absolutely ridiculous and will affect no change. My girlfriend is sitting next to me and when I told her about this, the very first thing she said was "well that\'s fucking stupid".\n\nI\'m also done arguing over this. Have a great day.', 'created': '2024-11-08 16:47:32', 'submission_id': '1gm1c4n'}
{'comment': 'Mass deportations + Tariffs. This means that not only would foreign products cost more, but also domestic products. Of course we are way past that, people wanted this, let em have it.', 'created': '2024-11-07 22:32:34', 'submission_id': '1gm0vpt'}
{'comment': 'RIP the construction industry.', 'created': '2024-11-08 01:41:35', 'submission_id': '1gm0vpt'}
{'comment': 'The economy will suffer horribly from this', 'created': '2024-11-08 03:24:33', 'submission_id': '1gm0vpt'}
{'comment': 'People in red states thought the economy was "bad." Mass deportations are going to crater their local economies. Less undocumented people willing to work shit jobs for small pay, means businesses will increase prices to try to attract citizen workers. Or small businesses will close down because they can\'t find workers for the pay rate they need. Plus the logistical nightmare and humanitarian crises. Also these states and cities will have to increase their taxes to fund increases in man power for police, sheriffs etc.\n\nNot to mention it will give more power to local police to stop and harass non white people (despite being actual citizens).\n\nRed states are about to experience how mass deportations will tank their local economy. This is gonna be worse than Trump\'s first term. But at least Blue states will probably reinvoke being sanctuary cities. Come January 2025, things are gonna get crazy.', 'created': '2024-11-07 22:02:46', 'submission_id': '1gm0vpt'}
{'comment': 'Did they learn nothing from Florida?', 'created': '2024-11-08 03:13:37', 'submission_id': '1gm0vpt'}
{'comment': 'Make America be able to cut our own grass again.', 'created': '2024-11-08 03:56:00', 'submission_id': '1gm0vpt'}
{'comment': 'Wait until the native Americans learn this one simple trick.', 'created': '2024-11-08 03:42:11', 'submission_id': '1gm0vpt'}
{'comment': '💔💔💔', 'created': '2024-11-08 06:20:52', 'submission_id': '1gm0vpt'}
{'comment': "~50% of the US agricultural sector's workforce is illegal immigrants. \n~20% of the construction sector is illegal immigrants, this varies widely by region and complexity of the job apparently.\nFood service numbers seem to be hard to pin down, but 20% being undocumented seems to be the common-ish figure.\n\n\nPrice of eggs gonna be fukn wild, and trying to buy a house to store your eggs is gonna be insane.", 'created': '2024-11-08 17:04:34', 'submission_id': '1gm0vpt'}
{'comment': "Good luck...his happy horseshit is easy to say, but impossible to fo no matter how much handwringing it creates (or cheers for that matter...whether you love him or hate him, he's still full of shit and everyone needs to get a goddamned GRIP :/)", 'created': '2024-11-07 22:35:14', 'submission_id': '1gm0vpt'}
{'comment': 'Yes my 75 year old Trumpster sister will be eating shit for 3 meals daily', 'created': '2024-11-08 03:43:08', 'submission_id': '1gm0vpt'}
{'comment': 'I invite any unemployed Gen Z men who voted for Trump to step in and fill these job openings. Lol.', 'created': '2024-11-08 00:26:08', 'submission_id': '1gm0vpt'}
{'comment': "It's kind of amazing that people can't seem to understand that getting rid of huge numbers of workers, and particularly low wage workers, will not work out well for small businesses and mean that a ton of things are going to get a lot more expensive.", 'created': '2024-11-07 22:50:19', 'submission_id': '1gm0vpt'}
{'comment': 'Roofing, landscaping, construction, agriculture costs to skyrocket in Texas:', 'created': '2024-11-07 22:21:00', 'submission_id': '1gm0vpt'}
{'comment': 'I’ve always thought the mass deportation thing was just dog whistle bullshit, because of that. It would hurt them too, they don’t want to lose money. And we know they don’t ACTUALLY give a shit about illegal immigration. I’m not saying they won’t do it, but you can never tell with these liars.', 'created': '2024-11-08 01:16:34', 'submission_id': '1gm0vpt'}
{'comment': 'Same thing you complete potatoes told the adults about Roe v Wade. Now women and girls are dying and doctors are fleeing red states. So much for "they won\'t \\*ackshually\\* do it bro, trust me bro".', 'created': '2024-11-08 03:46:46', 'submission_id': '1gm0vpt'}
{'comment': "You get grip. This isn't 2016 dude. The federal courts and the Supreme Court are full of maga conservatives now. Republicans have in motion to turn federal workers into political appointees. Chevron doctrine is dead. John Kelly types are no longer in Trump's circle. Everything is in place for Trump to do what he wants (at least in red states). In red states, sheriffs and local police will absolutely be on board in using whatever immigration type powers Trump gives them. Blue states not so much.\n\nThe only real silver lining is that it will pretty much be a red state vs blue state thing. Honestly I see this as a boon for blue states. The workforce for construction in housing and transit, agriculture, maintenance etc and those type of jobs need more workers and blue states are about to get an influx. A new influx of people are gonna spend more money in their local communities. The downside is demand for housing will go up, but since I see so many immigrants regularly sharing an apartment (like a 8 people in one apartment) I doubt housing will skyrocket much.", 'created': '2024-11-07 23:00:05', 'submission_id': '1gm0vpt'}
{'comment': 'If they were man enough to get a real job they wouldn\'t be having the "loneliness epidemic" that they said made them vote Trump.', 'created': '2024-11-08 03:43:39', 'submission_id': '1gm0vpt'}
{'comment': "They won't. They will keep staying on welfare and rely on Obamacare, until the gop finds a way to cut those too", 'created': '2024-11-08 04:34:47', 'submission_id': '1gm0vpt'}
{'comment': "They'll just have those Gen z men work in the militias to arrest the Gen z women to send to the labor camps and birthing quarries.", 'created': '2024-11-08 17:05:35', 'submission_id': '1gm0vpt'}
{'comment': "It's ok, when they go bankrupt they will always know it was Joe Biden and his policies that did this to them", 'created': '2024-11-07 23:48:12', 'submission_id': '1gm0vpt'}
{'comment': 'They will do it. His base will be overjoyed to see these people suffering mightily.', 'created': '2024-11-08 03:06:50', 'submission_id': '1gm0vpt'}
{'comment': 'The thing with immigration is Trump already proved that\'s one of things he\'s TRULY MOTIVATED by, he tried in his first term, but both lawsuits and "on the fence" republicans in his administration slowed him down/made it less effective. This time his circle is full of maga loyalists/true believers, the courts have been packed to the right to help him and they already have been planning it for years. The only immigration Trump supports is immigrants from more white and wealthy countries like Norway, Russia Germany etc.\n\nYeah, Trump lies a lot. But in general you can tell if a policy is something will pursue is does it 1 support White nationalism, 2 hurt minorities and people of color and 3 support Christian/evangelical groups prejudices. If it does two or more of those things, all systems are a go.\n\nNow if it\'s something that supports women (like protect children/life, or he is the father of IVF) or supports children (protector of the ACA, reform healthcare), we absolutely know it\'s bs and that\'s not a policy the support, but quite the opposite and something they want to get rid of. If they say they support affordable healthcare, that\'s a lie and the opposite is true (repeal it and make it more expensive which satisfies big pharma donors).', 'created': '2024-11-08 04:27:24', 'submission_id': '1gm0vpt'}
{'comment': 'This will never happen because big businesses are addicted to that labor. His billionaire friends will make a call and stop this 💩', 'created': '2024-11-08 03:14:31', 'submission_id': '1gm0vpt'}
{'comment': "Agreed, they won't. But I will gladly point out these jobs to any Gen Z dude (or any dude really) that complains about being unemployed.", 'created': '2024-11-08 04:49:08', 'submission_id': '1gm0vpt'}
{'comment': 'I was in the store and a little old black lady was so excited for him to deport the illegals.', 'created': '2024-11-08 12:03:04', 'submission_id': '1gm0vpt'}
{'comment': 'To be fair, numbers 1 and/or 2 automatically support 3 in America', 'created': '2024-11-08 15:28:12', 'submission_id': '1gm0vpt'}
{'comment': 'Billionaires love this one little trick with private prisons and that neat 13th amendment carve out allowing slavery as criminal punishment.', 'created': '2024-11-08 17:09:44', 'submission_id': '1gm0vpt'}
{'comment': 'The next four years is going to be D’s collectively yelling “WE FUCKING TOLD YOU SO!”\n\nWhich means we’ll probably lose again for being “stuck too much in the past” and being “insufferable know-it-alls”', 'created': '2024-11-07 22:26:00', 'submission_id': '1gm0yrs'}
{'comment': 'They are really running with the "out of touch" line. OK, we couldn\'t convince a majority of you not to do the wrong thing. That doesn\'t mean it wasn\'t the wrong thing. It doesn\'t mean shit isn\'t going to transpire *exactly how we said it would.*\n\nSo after you\'re done putting your hand on the hot stove come back and tell me how "out of touch" I was. If there is any path left to *actually do something about it* we can start there.', 'created': '2024-11-08 03:12:30', 'submission_id': '1gm0yrs'}
{'comment': '"My grocery bill was too high, so voted for someone who will drive it up even further."\n\nHarris even pledged to lower the price of groceries and lower taxes on the middle class.', 'created': '2024-11-08 02:57:20', 'submission_id': '1gm0yrs'}
{'comment': '"I did my own research - I checked out my MAGA feed."', 'created': '2024-11-07 23:48:46', 'submission_id': '1gm0yrs'}
{'comment': 'So very sad but true.', 'created': '2024-11-07 22:23:01', 'submission_id': '1gm0yrs'}
{'comment': 'I can critically Drink. And I have been since Tuesday morning lol.', 'created': '2024-11-08 02:54:48', 'submission_id': '1gm0yrs'}
{'comment': 'Over 2 million voted for 3rd party candidates and a write in option \n\nA lot of people reportedly were confused by Biden not being on the ballot', 'created': '2024-11-08 04:18:20', 'submission_id': '1gm0yrs'}
{'comment': 'Right about now is when Captain Picard and Co., should arrive from the future to set the world back on the right course… although in Star Trek WWIII started in like 2 years so maybe we don’t want that course. All I know is Picard would be very disappointed in us.', 'created': '2024-11-08 04:34:05', 'submission_id': '1gm0yrs'}
{'comment': 'Paul von Hindenburg should have had a more substantive platform', 'created': '2024-11-08 05:47:38', 'submission_id': '1gm0yrs'}
{'comment': 'Just remember that the right wing propaganda machine has a way to distort reality.', 'created': '2024-11-08 00:16:44', 'submission_id': '1gm0yrs'}
{'comment': "Yup. We'll be labeled as being divisive or elitists because of saying I told you so.\n\nI really do look forward to asking Trump voters how their grocery bills are doing, or what their taxes look like about a year from now. Should be interesting if nothing else. Some people just need to feel the pain before they wake up and realize the stupidity of their actions.", 'created': '2024-11-08 02:06:32', 'submission_id': '1gm0yrs'}
{'comment': 'This is honestly what I’m looking forward to the most. I plan to rub their noses in it at every opportunity. \n\n“Man have you seen how expensive eggs are!?”\n\n“These gas prices are out of control!”\n\n“Voting was cool, wasn’t it? Remember that?”\n\n“Oh my train to the camp is here. See ya! Enjoy polishing Trump’s nuts while you wait for your turn.”', 'created': '2024-11-08 00:30:37', 'submission_id': '1gm0yrs'}
{'comment': "No the next 4 years is going to be Republicans yelling back, this is all your fault you voted to pass all these laws and we're still suffering from them\xa0\n\n\nOr, why didn't you pass these laws when Biden was in office\xa0", 'created': '2024-11-07 23:03:38', 'submission_id': '1gm0yrs'}
{'comment': 'Well, to be fair, it did happen in 2006-8.\xa0\n\nThe problem is that of course by 2010 the same people had amnesia again.', 'created': '2024-11-07 22:54:49', 'submission_id': '1gm0yrs'}
{'comment': 'Yeah, I figure "He said he was gonna," is going to be the single sentence I use most in the next few years.', 'created': '2024-11-08 00:05:10', 'submission_id': '1gm0yrs'}
{'comment': 'Yuuuuuuup. Fuckers.\n\nR’s get to tell fairytales while D’s are stuck in reality', 'created': '2024-11-08 00:42:58', 'submission_id': '1gm0yrs'}
{'comment': 'And in the meantime we all suffer a tanking economy', 'created': '2024-11-07 21:59:04', 'submission_id': '1gm0kvr'}
{'comment': 'The problem is we are stuck in a cycle. The republicans tank the economy and democrats have to apply the medicine that stings. The electorate are children so they don’t like the sting of a vaccine or of antiseptics. Democrats don’t want to see the economy crater they’re blamed for the cure. Republicans reap the benefits. \n\nDemocrats had their big moment in the 1920s when the republicans destroyed the economy. Maybe that’s the solution, but it sure does seem pretty fucking callous when we tell people to shut up and die when they’re hurting.\n\nMaybe we need to stop bailing out the banks and let the cleansing wild fire of a mass depression reignite the minds of the working class but good damn isn’t that bleak?', 'created': '2024-11-07 22:07:38', 'submission_id': '1gm0kvr'}
{'comment': 'Will democracy survive this term? I hope so, but I’m skeptical.', 'created': '2024-11-07 22:16:52', 'submission_id': '1gm0kvr'}
{'comment': "I think people do NEED a hard dose of reality\n\nOnce immigrants are deported and it impacts family members of people who supported the twice impeached, bankrupt, sore loser, failed business, draft dodger - will realize. \n\nBut perhaps not because these are the same people who saw how kids were separated from parents and they still supported him.\n\nOnce immigrants are deported and their jobs aren't taken up by anyone and prices rise, the same people who voted for him would face the maximum impact.\n\nThen, when tariffs raise prices of everything, ditto.\n\nFinally when women's rights are curtailed drastically then only they'd realize their mistake.\n\nSo yeah Dems can make some noise but really can't do much at least for first 2 years.\n\nBut they need to better message that who owns the shi$ that is going to hit the fan.", 'created': '2024-11-07 22:32:08', 'submission_id': '1gm0kvr'}
{'comment': 'There’s a lot of similarities between the failure to properly prosecute Hitler after the Beer Hall Putsch and Trump after Jan 6th. There’s also good similarities between the deflation and harsh rhetoric that led to Hitler winning people by 1933 and the inflation and harsh rhetoric that led to Trump in 2024. Also similarities between Hitler becoming president and chancellor and Trump controlling all 3 branches of government and the bench. Only thing we can hope for now is that people in positions of power have some sanity left.', 'created': '2024-11-07 22:22:58', 'submission_id': '1gm0kvr'}
{'comment': 'Win what. The chance at democracy is gone…', 'created': '2024-11-07 22:54:33', 'submission_id': '1gm0kvr'}
{'comment': 'If Trump’s Economy tanks. America is finished', 'created': '2024-11-07 23:48:49', 'submission_id': '1gm0kvr'}
{'comment': 'This article is spot on. Republicans have made the error that Trump returning back to the presidency will help them push their agenda. To a certain degree, that’s obviously true. However, more than anything, Trump will want this last four years to be defined by HIS agenda. That agenda will tank their party, even more than their own agenda.\n\nThe best thing Democratic leadership can do is learn from this and move forward. Even if Kamala won, the truth is she was unlikely to have a congressional make up to fully support her agenda. In 2028, that vision is more than possible for the Democratic candidate but it requires, introspection, focus and a collective fight to limit the damage until then.', 'created': '2024-11-07 22:03:05', 'submission_id': '1gm0kvr'}
{'comment': "Sure, but the normal ebb and flow of American politics isn't sustainable when one party aggressively subverts democratic institutions and norms. After a certain point, it doesn't matter if the electorate is unsatisfied with the Republicans because we'll be living in a sham republic where your vote won't matter.", 'created': '2024-11-07 22:12:57', 'submission_id': '1gm0kvr'}
{'comment': None, 'created': '2024-11-07 22:25:39', 'submission_id': '1gm0kvr'}
{'comment': 'Apparently Is that really the issue? I just read an interesting insight into the election: for the first time since WWII every governing party facing election this year lost vote share. (and by the way we lost the least). So it has been a problem in democracies. I think it is more related to oligarchic control over mass media. At the very least we need decent election finance reforms, fairness doctrines in political broadcasting, and election day as a national holiday, so every one has a chance to go to the polls.', 'created': '2024-11-07 22:27:30', 'submission_id': '1gm0kvr'}
{'comment': 'Fox News will immediately begin telling its viewers that the country’s problems have been solved the second Trump is inaugurated.', 'created': '2024-11-07 23:46:02', 'submission_id': '1gm0kvr'}
{'comment': 'How many years will it take to climb out of that recession, though?', 'created': '2024-11-07 22:53:48', 'submission_id': '1gm0kvr'}
{'comment': 'Don’t know about that. And when he puts new SCoTUS judges in place we will have a conservative court for the next 40 years.', 'created': '2024-11-08 01:36:24', 'submission_id': '1gm0kvr'}
{'comment': 'Trump has said this will be our last election .. so', 'created': '2024-11-08 02:04:47', 'submission_id': '1gm0kvr'}
{'comment': 'I think we have to figure out how become more appealing to the red parts of America without just becoming like trump\n\nI don’t think becoming like trump will even work for the next republican \n\nI’m a liberal that doesn’t know how to move forward anymore , what we are doing as a party is NOT working.', 'created': '2024-11-07 21:56:43', 'submission_id': '1gm0kvr'}
{'comment': "Are we sure we'll get to have elections???", 'created': '2024-11-08 00:01:12', 'submission_id': '1gm0kvr'}
{'comment': 'How are we gone to win when there are no real guardrails anymore? Like seriously what is going to be done to provide safety for those who voted the other way in the election? Like for real. We are so divided right now, and to tell you the truth I’m scared because I don’t know what to do next. Leadership isn’t saying anything. \n\nI know I’m not the only one who feels this way.', 'created': '2024-11-08 01:53:15', 'submission_id': '1gm0kvr'}
{'comment': 'I think a lot of voters confused inflation with high prices. Inflation created high prices but inflation is now lowered but prices of 2019 will never return. People remember skyrocketing prices a year and two years ago but the prices have not reversed. I think when people vote because of inflation they mistakenly think prices will reverse. Inflation and current prices are just not the same. Income increases will have to catch up with prices increases but now with impending tariffs I can see employers being hesitant to do that because their costs will now increase. \n\nI have heard about tariffs but will he be providing any incentives for manufacturing in the USA? The whole point of tariffs is to punish American companies for buying international goods but is there a part B of that plan to accelerate US manufacturing and which would trigger job growth? I am genuinely asking.', 'created': '2024-11-07 23:17:45', 'submission_id': '1gm0kvr'}
{'comment': 'Will this be before or after he puts another three 40-year-old Justices on the Supreme Court? Wow, what a silver lining that is…', 'created': '2024-11-08 00:50:34', 'submission_id': '1gm0kvr'}
{'comment': "It'll be too late by then. We'll be living in a 3rd world country and if only if he doesn't turn this into a dictatorship first", 'created': '2024-11-08 01:49:44', 'submission_id': '1gm0kvr'}
{'comment': 'That would happen if we still had democracy', 'created': '2024-11-08 02:25:39', 'submission_id': '1gm0kvr'}
{'comment': 'Yup! Just like in 2018, Americans will wake the f up and realize that the republicans are literally doing nothing for them, cost of living will still be high, our institutions will be slowly eroding away, and then they will beg for the Dems to come save them in the midterms and then again in 2028.', 'created': '2024-11-08 04:21:59', 'submission_id': '1gm0kvr'}
{'comment': "Sure, and that's probably gonna happen. \n\nProblem though, I live here. I don't like the idea of it taking the house being burned down to learn a lesson if I also live in that house. \n\nAlso lets be honest, they're gonna blame biden for the damage trump's tariffs do.", 'created': '2024-11-08 15:48:40', 'submission_id': '1gm0kvr'}
{'comment': 'After his term usa will be blue foreher', 'created': '2024-11-07 22:10:28', 'submission_id': '1gm0kvr'}
{'comment': 'Woo. Hoo. Can’t wait. /s', 'created': '2024-11-07 22:46:59', 'submission_id': '1gm0kvr'}
{'comment': 'US economy will effect Europe i live in Sweden and some experts talking about inflation getting back high once again evenover here, So rough times are ahead for us all sad but true only hope we survive all this darkness!', 'created': '2024-11-07 23:38:58', 'submission_id': '1gm0kvr'}
{'comment': "The fucked thing is: it takes years to see economic policies play out in the real world. It is quite possible that we won't actually feel any negative effects from his economy when the next presidential campaign starts.\n\nLet's also not count on the economy tanking and hope that we can stop his plans from happening in the first place. Long shot, I'm well aware.", 'created': '2024-11-07 23:42:07', 'submission_id': '1gm0kvr'}
{'comment': 'Will it tank though? Biden basically brought the economy back from the Covid brink and passed sweeping legislation to help set the economy on the right path. All Trump has to do is not fuck with it (too much) and it won’t tank at all. Matter of fact, it may be even better and it will be something republicans end up running on in 2028.', 'created': '2024-11-08 00:58:42', 'submission_id': '1gm0kvr'}
{'comment': 'He’s going to ride Biden’s economy. He will back off tariffs by saying he reached some vague agreement with CHI-NA.', 'created': '2024-11-08 01:57:19', 'submission_id': '1gm0kvr'}
{'comment': 'It depends how much Trump dismantles the government. If we come out of this with 1/4th the size of our government we will have a very different reality to deal with.', 'created': '2024-11-08 02:18:32', 'submission_id': '1gm0kvr'}
{'comment': "The dude said he's going to have it fixed so good you're not going to have to vote in 4 years. He's just going to pass it to Eric. You will never vote again.", 'created': '2024-11-08 02:37:38', 'submission_id': '1gm0kvr'}
{'comment': 'Dont be too sure. Dems built a strong economy that will sustain, even through Trumps abuse.', 'created': '2024-11-08 02:49:19', 'submission_id': '1gm0kvr'}
{'comment': 'Even when it tanks they will find a way to blame us and it will only reinforce their desire to vote trunp', 'created': '2024-11-08 03:30:50', 'submission_id': '1gm0kvr'}
{'comment': 'And clean up shit just to be shit on b/c they care about peoples rights', 'created': '2024-11-08 03:42:11', 'submission_id': '1gm0kvr'}
{'comment': "Yup, only thing I hope is every working class that voted red starve like dogs. It's what they want, who am I to deny them a scorched economy?", 'created': '2024-11-08 06:16:58', 'submission_id': '1gm0kvr'}
{'comment': 'It won’t tank. He’ll drive up the debt and crow about how he solved the recession.', 'created': '2024-11-08 06:19:06', 'submission_id': '1gm0kvr'}
{'comment': 'As long as the eggs are cheap', 'created': '2024-11-08 07:03:31', 'submission_id': '1gm0kvr'}
{'comment': 'Sure, the only problem is he and his people could fix elections now. They have the presidency, both houses, and the Supreme Court, they can pass whatever they want. They can turn us into Russia, all of our elections from this point on could end up being just for show. Bobert is already trying to get Trump a 3rd term.', 'created': '2024-11-08 07:40:03', 'submission_id': '1gm0kvr'}
{'comment': "...And if the Dems modernize their messaging and don't forget about key demographics without alienating them fully.\n\nThe new registered Latino voters that turned out for Trump are no joke, and the Dems can't ignore this demo again going forward.", 'created': '2024-11-08 08:20:06', 'submission_id': '1gm0kvr'}
{'comment': 'I dont doubt that it will if he does even one third of his program. The problem is, is he gonna tank the whole world like in 2008?', 'created': '2024-11-08 11:38:14', 'submission_id': '1gm0kvr'}
{'comment': 'And then republicans will complain for four years that we’re not fixing it fast enough and they could fix it way better, get voted back in, and tank it again. \n\nWe’ve done this same dance for 40 years now. I’m tired of being the damn cleanup crew.', 'created': '2024-11-08 14:23:19', 'submission_id': '1gm0kvr'}
{'comment': 'The question is whether his cruelty will excite or turn off his supporters. People will tolerate a lot of evil as long as they can feel superior to someone else', 'created': '2024-11-13 16:41:50', 'submission_id': '1gm0kvr'}
{'comment': 'It’s time to close the freaking tax loopholes that only really work for the really rich. That alone would increase tax revenues. And that way, no one’s taxes are really increasing technically.', 'created': '2024-11-07 22:59:38', 'submission_id': '1gm0kvr'}
{'comment': 'We will win if he have a solid well put together candidate and campaign that represents the regular working class American. Without that, we won’t win. People are more skeptical of the Democratic Party than before and even many politicians are leaving to become independents.', 'created': '2024-11-07 23:30:05', 'submission_id': '1gm0kvr'}
{'comment': 'Right. I’m against that. Supposedly so are they, but…', 'created': '2024-11-07 23:01:43', 'submission_id': '1gm0kvr'}
{'comment': 'We need to fight and ensure that we learn the right lessons from this disaster. There’s a clear establishment push to incorrectly blame progressives.\n\nKamala ran an excellent campaign from the traditional, establishment DNC perspective. This doesn’t work anymore. Americans don’t want to hear consultant-generated, focus-grouped answers to key issues. They want populism. Republicans offer right-wing authoritarian populism, Democrats need to offer progressivism.\n\nWe need to offer a platform built on addressing wealth inequality: taxing the rich and corporations in order to improve public services and put money in average Americans’ pockets. Emphasize that there is a billionaire class that is pillaging working people and the country as a whole. Unabashedly support workers and unions at every turn. Put forward concrete proposals to reign in corporate greed and break up monopolies. Don’t be afraid to piss off donors as we’ve lost them anyway.\n\nDon’t cede core issues to Republicans. Don’t respond to disasters like this by moving to the center and becoming GOP-lite. Abandon this obsession with decorum that prevents us from calling a spade a spade.\n\nWe cannot be the second choice to Republicans, taking power only after four years of their free rein and the ensuing disaster. We cannot survive 10 steps back and 1 step forward.', 'created': '2024-11-08 03:48:43', 'submission_id': '1gm0kvr'}
{'comment': '[removed]', 'created': '2024-11-08 02:14:53', 'submission_id': '1gm0kvr'}
{'comment': 'Hopefully we survive... hopefully', 'created': '2024-11-08 04:00:14', 'submission_id': '1gm0kvr'}
{'comment': None, 'created': '2024-11-07 22:27:41', 'submission_id': '1gm0kvr'}
{'comment': ">The problem is we are stuck in a cycle. The republicans tank the economy and democrats have to apply the medicine that stings.\n\nExcept, if Republicans have their way, we won't be in that cycle anymore. They plan to fix the elections. \n\nAnd so they'll tank the economy. And then they'll try to fix it and make it worse. Because they care more about grifting off of it.\n\nLook at Venezuela. The country with the world's largest oil reserves, with only 28 million people. And the shitty economy because it's been mismanaged by authoritarians.", 'created': '2024-11-07 23:19:25', 'submission_id': '1gm0kvr'}
{'comment': 'This time we may be without our hardest workers the immigrants. Illegal or not they came here for a better life and they help provide us with a better life. That may be gone real soon. American birthrates are down. You keep out the immigrants, there will be no new innovation. No help with the hard work building homes, taking care of farms, etc. This is going to be even more painful and time consuming.', 'created': '2024-11-08 03:04:56', 'submission_id': '1gm0kvr'}
{'comment': 'Hasn’t that been going on for decades, though?', 'created': '2024-11-08 00:33:25', 'submission_id': '1gm0kvr'}
{'comment': 'People are uneducated and that has to change. We have to reach these people and teach them about the world.', 'created': '2024-11-08 11:38:32', 'submission_id': '1gm0kvr'}
{'comment': 'Maybe it’s time to secede from the country let them bail out themselves', 'created': '2024-11-08 16:43:10', 'submission_id': '1gm0kvr'}
{'comment': 'As a Latina, what people don’t realize is that most Latinos who vote, are people who came here through a legal process or are children and grandchildren of people who immigrated here through some kind of legal process. And most of those Latinos, have PTSD after either escaping violence and crime in their countries, oppressive socialist/communist regimes or extreme poverty in their countries. \n\nTrump was successful in convincing these Latinos that the same criminals and violence that they worked hard to escape from through an extended and complicated legal process, Biden is welcoming into the country with open arms without having to go through any of the difficult red tape they had to go through, and that the blue states are allowing these criminals to run rampant.\n(Crime PTSD)\n\nHe convinced Latinos that the democrats are socialists. (Oppressive socialist regime PTSD)\n\nHe convinced Latinos that the democrats are bad for the economy (poverty PTSD), and that the democrats love wars ( violence PTSD)\n\nThe democrats are too simple minded. They think that by having open borders, Latinos would vote for them. But they forgot that not all Latinos are created equal. \n\nThey do this with other groups as well. Latinos want to be considered Americans, they will not care about illegal immigrants more than any other American will. TBH I don’t even have a problem with the US securing its borders, and deporting illegal immigrants and I am the daughter of Hispanic immigrants. Every country has a right to secure their borders.\n\nI care about the issues that affects legal residents, nationals and citizens of THIS country. What directly affects my family and community. For me that is rights to make healthcare decisions about my own body, access to Obamacare and social security for my parents who’ve worked hard and paid taxes their entire life, upholding a democratic government. For me that means national security and not being friends with dictators, for me that means hopefully someday universal healthcare and the right to free education for all. Equal rights for all no matter your gender or sexual preferences.', 'created': '2024-11-07 23:10:13', 'submission_id': '1gm0kvr'}
{'comment': 'My biggest is concern is making sure the entire MAGA base especially the newer members do not get completely brainwashed into a white Christian nationalist ideology which has already been happening. They will use it to justify the suffering of others who don’t comply.', 'created': '2024-11-08 00:17:15', 'submission_id': '1gm0kvr'}
{'comment': 'Yes as someone who went down a Hitler rabbit hole last year. It’s looking more and more bleak.', 'created': '2024-11-07 22:55:46', 'submission_id': '1gm0kvr'}
{'comment': "One difference is that Hitler inherited an already ruined, hyperinflated economy shortly following a humiliating defeat in a major war from which they had to pay massive reparations. Economically, they didn't really have much to lose or much sense of financial security.\n\nRelatively speaking, we're pretty well off as a society compared to one whose currency is worth more as kindling for heat in winter than as a tool of barter. Historically speaking, tanking the economy like MAGA's policies propose to isn't a great idea even for dictatorships.\n\nHow that affects the future in this context exactly I can't say, but while there are parallels there are also differences that will affect how this plays out for better or worse.\n\nHistory doesn't repeat itself, but it does rhyme. This is one instance I'm pointing out that, to me, diverges from historical norms of how these kinds of regimes usually form in the first place. I'm hoping it's one that will play to our advantage.", 'created': '2024-11-08 01:06:15', 'submission_id': '1gm0kvr'}
{'comment': 'As they say if we dont learn from History we are doomed to repeat it :(', 'created': '2024-11-08 01:50:25', 'submission_id': '1gm0kvr'}
{'comment': "Exactly. This is all assuming that Republicans don't figure out how to fix the elections.\n\nIt's not like they won't be trying!", 'created': '2024-11-07 23:00:44', 'submission_id': '1gm0kvr'}
{'comment': None, 'created': '2024-11-07 22:28:10', 'submission_id': '1gm0kvr'}
{'comment': 'Wait till they change the constitution to remove democratic institutions. Our senators and congressional leadership will be assigned by the party. They don’t have 2/3rd in both chambers to change the constitution. yet.', 'created': '2024-11-08 02:53:24', 'submission_id': '1gm0kvr'}
{'comment': "Yep, he'll be riding off Bidens economy just like he did with Obamas and take credit for everything", 'created': '2024-11-08 00:45:59', 'submission_id': '1gm0kvr'}
{'comment': "This is what I'm concerned about.", 'created': '2024-11-08 04:41:20', 'submission_id': '1gm0kvr'}
{'comment': 'This. Trumpers don’t trust the media, celebrities or politicians anymore. \n\nThe endorsement of Taylor Swift, Beyonce, JLo, Selena Gómez, Rihanna and every other major celebrity out there did nothing to move the needle. \n\nDemocrat elitism is failing. We need a candidate who is not above going toe to toe with Trump. Democrats tried to give us a mother when America needed a father, as misogynistic as it may be to us, it doesn’t matter if we don’t win. When there are wars breaking out, talks of WW3, draft, and anxiety about the economy, people want a strong male hero. \n\nWe need a candidate who is not above going on podcasts instead of only major media companies. We need a candidate who will make Trump look weak, old and like a loser. Trumpers DO NOT CARE that he’s an evil criminal, they care that he projects strength and courage to speak out against anyone and anything. \n\nIn 4 years we need a young guy. Someone revolutionary, a leader, someone who’s going to make America feel like he’s going to bring change. I think back to the success of Nayib Bukele in El Salvador. Even though he’s a Trump supporter so hate to mention him. But we need someone like that, on our side. \n\nThey will groom Vance to run in 4 years, Vance is young. We cannot afford to put another dinosaur back in that position. \n\nNo more when they go low we go high.', 'created': '2024-11-07 22:52:36', 'submission_id': '1gm0kvr'}
{'comment': "exactly, he has said this would be the last one if elected, so, I guess we'll have to wait and see.", 'created': '2024-11-08 02:06:45', 'submission_id': '1gm0kvr'}
{'comment': 'I don’t know about that. These people are in a cult.', 'created': '2024-11-07 22:54:48', 'submission_id': '1gm0kvr'}
{'comment': 'If there are ever free elections again.', 'created': '2024-11-07 22:15:24', 'submission_id': '1gm0kvr'}
{'comment': '*till the first minor inconvenience', 'created': '2024-11-07 22:56:36', 'submission_id': '1gm0kvr'}
{'comment': 'You out too much faith in people', 'created': '2024-11-07 22:24:52', 'submission_id': '1gm0kvr'}
{'comment': 'After his term is over when the economy tanks 30% to 40% worse than 2008 well will have 3 maybe 4 8 years terms of Democrats. 30% of Republicans will finally open their eyes and see Trump and Republicans are a P O S and switch to Democrat. Democrats will have full control of DC during this time and will get a lot of good thing done. After Trump screws up this country really bad in 4 year the Republican party will die by 60% to 70% and Republicans will not get elected for along time. I think in the house and senate each Democrats will have like a 20 to 35 seat majority.', 'created': '2024-11-07 22:50:58', 'submission_id': '1gm0kvr'}
{'comment': "The tariffs would be pretty quick acting, I've read economics experts say it'd be so bad that it could cause a recession within the 1st year, but I don't remember if that included deportations fucking things up as well", 'created': '2024-11-08 00:49:55', 'submission_id': '1gm0kvr'}
{'comment': 'maybe', 'created': '2024-11-11 10:32:41', 'submission_id': '1gm0kvr'}
{'comment': 'I dropped my democratic registration for independent. It’s time they earn our support with good policy and candidates….give me something to vote FOR besides “other guy bad”', 'created': '2024-11-07 23:44:56', 'submission_id': '1gm0kvr'}
{'comment': "Not a single progressive has lost a seat and yet the DNC won't learn!", 'created': '2024-11-08 11:36:17', 'submission_id': '1gm0kvr'}
{'comment': 'They always survive. They face no hardships, yet they will inflict them upon us. Why do we pay the bills?', 'created': '2024-11-08 12:53:22', 'submission_id': '1gm0kvr'}
{'comment': 'It’s certainly not out of the question.', 'created': '2024-11-07 23:02:10', 'submission_id': '1gm0kvr'}
{'comment': "As someone who lives in an area with a large Latino population, I have to disagree.\n\nFirst - Most of the Latinos I know have crossed the border illegally and have become legal after several years. Perhaps it is the children of these people who think that they have come here legally.\n\nSecond - A large number of Latino voters have been shown to have voted based on economy while forgetting how bad it was when Covid was mishandled and the economy tanked.\n\nThird - perhaps due to culture, many Latinos I talked to didn't trust a woman to be President.\n\nBiden didn't change any policy. The policy was there for several years. the twice impeached, bankrupt, sore loser, failed business, draft dodger just used Emergency powers during Covid to shut down the border.\n\nWhat Dems failed to HIGHLIGHT was how the twice impeached, bankrupt, sore loser, failed business, draft dodger asked House republican poodles to stop the border bill from passing.", 'created': '2024-11-07 23:25:23', 'submission_id': '1gm0kvr'}
{'comment': 'I see that you updated your post.\n\n"universal healthcare and the right to free education for all. Equal rights for all no matter your gender or sexual preferences ..."\n\nwonder how are you going to sell this \'socialist\' agenda to the same Latinos that have socialism PTSD', 'created': '2024-11-07 23:40:35', 'submission_id': '1gm0kvr'}
{'comment': 'I don’t want to say the answer is that we lie too….but that’s kind of the answer. What a wild world we all stumbled into…', 'created': '2024-11-07 23:54:38', 'submission_id': '1gm0kvr'}
{'comment': 'And in his build the wall rhetoric and deportation of "Illegals" a documented or US born Latino looks just like an undocumented \n\nI was in rural Trump country last year and people would ask me a question at the store just to see what I talked like sorry MAGA no accent just your basic Midwest speaking voice \n\nHopefully the Latinos that helped vote him in are OK with ICE just walking up and asking for your I.D. when your just living your normal legal life \n\nDid all those parents and children that were separated LAST TIME he was President ever get reunited 💔', 'created': '2024-11-08 02:23:32', 'submission_id': '1gm0kvr'}
{'comment': 'Honestly can you provide examples on how he convinced them? You realize a facist regime will make up any rules they want to deport whomever.', 'created': '2024-11-08 05:20:26', 'submission_id': '1gm0kvr'}
{'comment': "but it will be without trump. that's their biggest asset right now", 'created': '2024-11-08 00:18:18', 'submission_id': '1gm0kvr'}
{'comment': "The question is who? Who will be that person that can step up? At one point I thought Newsome but California's over liberalism has really distorted that option. I can only think of Andy Beshear but he will need to be very moderate to bring back some old Dems... I just dont know, I feel so lost", 'created': '2024-11-08 02:05:18', 'submission_id': '1gm0kvr'}
{'comment': 'Wish I had your optimism', 'created': '2024-11-08 00:15:37', 'submission_id': '1gm0kvr'}
{'comment': 'If that is what you took away from the last election you are a very privileged person.', 'created': '2024-11-08 01:37:43', 'submission_id': '1gm0kvr'}
{'comment': 'I am on the verge of doing the same', 'created': '2024-11-07 23:53:13', 'submission_id': '1gm0kvr'}
{'comment': 'I literally live in Miami lol and before this in NY. It’s all Latinos here. Most came through refugee status, some through the proper system of having your family legally request you, some by overstaying their visas and then finding a legal route (like marriage), and very few I’ve ever met came through the border.', 'created': '2024-11-07 23:30:40', 'submission_id': '1gm0kvr'}
{'comment': 'Yeah I never will. At least not to the 45% who voted for them. Even though universal healthcare and education is a thing in most Latin American countries 🫠', 'created': '2024-11-08 00:18:50', 'submission_id': '1gm0kvr'}
{'comment': "Well, he can call Jesse 'The Jackass' Watters who knows an illegal immigrant when he sees one LOL\n\nHis words, not mine.\n\nThis moron said the exact words on a show on Fox '880 million' Lies channel\n\nEdit - Just googled and found a link\n\n[https://www.rollingstone.com/politics/politics-news/fox-news-jesse-watters-just-tell-undocumented-migrant-1234728259/](https://www.rollingstone.com/politics/politics-news/fox-news-jesse-watters-just-tell-undocumented-migrant-1234728259/)\n\n \nPerhaps he can assist the govt again and get Fox '880 million' Lies to pay some more money LOL", 'created': '2024-11-08 02:29:48', 'submission_id': '1gm0kvr'}
{'comment': 'https://www.forbes.com/sites/stuartanderson/2024/08/11/trumps-family-separation-immigration-policy-how-history-could-repeat/', 'created': '2024-11-08 02:25:30', 'submission_id': '1gm0kvr'}
{'comment': 'I completely agree with you. Every single person who voted for Trump bought into his lies at the cost of their own detriment. My mom is an immigrant of Dominican Republic but is natural-born citizen because her father was Puerto Rican. I Am Latina born in the USA. \n\nI don’t wanna hear a single Latino complaining about Latin people in concentration camps, about unfair deportations, denaturalizations, etc. I completed the assignment but they didn’t. I won’t be personally affected by it in any way.\n\nI’m just gonna sit there and eat my food and watch it all go down.', 'created': '2024-11-08 03:03:01', 'submission_id': '1gm0kvr'}
{'comment': 'Have you looked at Trump and Fox News’ propaganda at all? It’s terrifying. If I weren’t the type of person who fact checks and researches everything thoroughly, I’d believe the lies. They repeatedly played fake videos of illegal immigrants running rampant beating up police officers in NY, misinterpreted video of an “illegal immigrant” giving cameras the finger. Trump is constantly talking about how the dems are letting MS 13 and other violent gangs into the country and how they are terrorizing Long Island residents (which the second part of that is partially true). They play videos over and over of mobs of thieves running into high end stores and robbing them in California. They went nuts with the story about the Venezuelan gang that supposedly held up an entire apartment building in Colorado. \n\nIt doesn’t help that crime in NY and Cali has increased. We can’t ignore these facts. Although I’m not sure why. My mom went to NY last weekend and said all the stores had every single item locked behind glass. \n\nAs far as socialism, Cubans don’t like that Obama worked with Cuba’s government and got rid of the wet foot dry foot law, and opened up tourism to Cuba. The moment Obama repealed wet foot-dry foot, we lost the Cuban vote forever. And anything to them that even reminds them of socialism, they are phobic to. Trump shut down tourism to Cuba during his reign to show them that he won’t work with their government and Cubans ate it up. They hate when the US shows any willingness to work with Cuba’s regime.\n\nIronic being that Trump is Russia’s puppet and Russia and Cuba are communist bffs.\n\nVenezuela’s trauma is even more recent as they were a rich and prosperous democratic country not that long ago until socialism took over. Any whispers of socialism will make them run. All Trump and his people have to do is say the dems have a socialist agenda, and talk about us raising taxes and what not to convince them. Which they’ve been saying since 2016.\n\nSo what I am saying is that democrats need to start listening to what the other side wants judgements aside. If we don’t we will alienate the MAGA cult further.', 'created': '2024-11-08 05:48:36', 'submission_id': '1gm0kvr'}
{'comment': 'Yeah I don’t know. I absolutely love Newsom, in my opinion he’s the Trump equivalent to the democrats. But way better, and he’s a fighter, which I love. But he is ULTRA left and I don’t know that it’ll work.', 'created': '2024-11-08 02:48:59', 'submission_id': '1gm0kvr'}
{'comment': 'Maybe I am, don’t really know. I’m sure talking down to me about your opinion of my life is going to gain you a lot of ground…just like it did Tuesday night!', 'created': '2024-11-08 03:11:55', 'submission_id': '1gm0kvr'}
{'comment': "Latinos in Miami - mostly Cubans - tend anyhow to vote Republican.\n\nthere's your difference right there.\n\nThe ones I'm referring to are the ones from Mexico, Guatemala, El Salvador and other central american countries", 'created': '2024-11-07 23:37:45', 'submission_id': '1gm0kvr'}
{'comment': 'Crossing the border is likely more a Western phenomenon than an East Coast phenomenon.', 'created': '2024-11-08 05:34:37', 'submission_id': '1gm0kvr'}
{'comment': "If he can spot the undocumented Canadian I'll believe him", 'created': '2024-11-08 02:38:02', 'submission_id': '1gm0kvr'}
{'comment': 'https://preview.redd.it/3p5qt3dlhlzd1.jpeg?width=1080&format=pjpg&auto=webp&s=0aa4b047952bb4046383706fa549d29776ba1ecb', 'created': '2024-11-08 04:13:25', 'submission_id': '1gm0kvr'}
{'comment': 'Ok kid.', 'created': '2024-11-08 08:06:53', 'submission_id': '1gm0kvr'}
{'comment': 'Right, oppressive communist regime PTSD.\n\nThe ones here from Central American countries have violence, crime and poverty PTSD. Telling them that Biden is letting in MS13 and all these gang members and that they are running rampant in NY, is definitely going to have an effect on people who dealt with them first-hand.', 'created': '2024-11-07 23:43:41', 'submission_id': '1gm0kvr'}
{'comment': "regimes or gang violence PTSD? \n\nAre you saying that these same Latinos would have had no problems believing that Haitians were eating dogs and cats and other pets? \n\nif they didn't then why would they believe that gangs are being allowed in?\n\nIf so, then that really does not speak well of the group, no offense there. \n\nBut if one chooses selectively to believe things then there is no solution for this.", 'created': '2024-11-07 23:52:38', 'submission_id': '1gm0kvr'}
{'comment': 'That’s the thing, it’s not one group, it’s at least 20 different countries with wildly different governments, economies, struggles, even racial make up. \n\nWe have white Latinos, black Latinos, and everything in between. \n\nDid they believe Haitians were eating the dogs, I don’t know. Maybe they did. And they also believed all the other lies.', 'created': '2024-11-08 00:15:35', 'submission_id': '1gm0kvr'}
{'comment': 'And you are making my point. The following is not correct since one cannot brush Latinos as one group as you now mention.\n\nSo am wondering how you could make the following statement that speaks of all Latinos as one group.\n\n"As a Latina, what people don’t realize is that most Latinos who vote, are people who came here through a legal process or are children and grandchildren of people who immigrated here through some kind of legal process"\n\nAs far as them believing all kinds of falsehood, they wouldn\'t be alone as a group to do so.\n\nWelcome to the world of Social Media and inability of people to sort through falsehoods.\n\n \nAnd if people think the current situation is bad and people would vote for anyone, no matter how horrible, if that person promises them the world then wait till AI comes into picture and takes away jobs lie crazy at least in the beginning.\n\nThe social upheaval that would cause will likely be more painful than Industrial Revolution.', 'created': '2024-11-08 00:40:18', 'submission_id': '1gm0kvr'}
{'comment': "Most that sat this one out, I feel, didn't feel the ramifications of his last regime. Perhaps they were too young, or it became a faded memory. Anyway, I'll bet if we ever get to vote after this nightmare, they'll turn out.", 'created': '2024-11-07 22:22:42', 'submission_id': '1glzxa0'}
{'comment': "I don't think the problem is the messaging. I think the problem is that the message is not actually physically reaching people in the current media environment (including social media, podcasts, etc.). Democrats need to rethink how they can actually get whatever message they have to the people in an effective way.", 'created': '2024-11-08 00:39:30', 'submission_id': '1glzxa0'}
{'comment': 'Well first, the republicans policies are not more or less favorable to the “average Americans” because they don’t *truly* know what republican policies are. The republicans made a campaign out of absolute outright lies about their policies and plans, and the “average American” isn’t constantly scouring for information to educate themselves on politics like most of us on here are. They get their news from Facebook and that’s about it, maybe they catch Fox News playing on the TV at work or in their doctor office waiting room. \n\nYou can’t legislate people to educate themselves on presidential elections. You just have to do your best to appeal to them. The republicans ran an entire campaign on complete and total lies, and it worked. That’s very hard to combat. Between wildly undereducated voters, the fact that (somehow…) some democrats still can’t bring themselves to vote for a woman, and a portion of the population believing that the president sets prices of goods across the country, I think there you’ll find the missing votes.', 'created': '2024-11-07 22:33:42', 'submission_id': '1glzxa0'}
{'comment': 'The average American is highly influenced by the perception of how the economy is doing in the moment. And whether the current administration is actually responsible for bad economies or good economies, it doesn’t matter to them. They see, current economy is bad so I must vote other party. Or current economy is good, I must vote for the party in charge. This isn’t even mentioning people will only look at the micro level and not the macro level. People just don’t understand actual economic policies or they just look at one factor of the economy that’s not doing well and they say “economy doing bad”\n\nAmericans voted in Obama in 2008 because of the recession (and Obama was also a damn good candidate). A big reason why Trump lost in 2020 because the economy was starting to slow down due the start of A GLOBAL PANDEMIC. Now Dems lose because of the same thing. It takes time to recover from events like that and you are actually starting to see the signs of improvement\n\nIdk what the hell 2016 was tho\n\n\nEconomy is an important issue that affects everyone. But I don’t think people understand it well enough and that’s a problem for both parties', 'created': '2024-11-07 22:19:19', 'submission_id': '1glzxa0'}
{'comment': "Seems like yelling more and insulting people is what resonates. I don't want to hear anything from Democrats right now that doesn't end with a joke/insult about Donald Trump's hair and/or makeup.", 'created': '2024-11-07 21:42:48', 'submission_id': '1glzxa0'}
{'comment': 'I wrote a reply to some dumbass who said that Dems should stop pride parades because being vocal with it upsets conservatives. Their comment must have gotten removed but I still wanna post my reply lmao. Here it is:\n\n“That’s insane. You are essentially telling gay people to hide in the name of “it makes bigots mad”. The better plan would be to focus on issues the voters actually care about like economy, healthcare (which will be a top issue in the next election once trump repeals the ACA), immigration, abortion.. etc. We can do that while also continuing to standing up for people’s rights”', 'created': '2024-11-07 22:30:56', 'submission_id': '1glzxa0'}
{'comment': "You could start by not picking people b/c of their racial demographic, its insincere and people don't like it.", 'created': '2024-11-08 04:02:29', 'submission_id': '1glzxa0'}
{'comment': "Democrats did not lose because of their messaging.\n\nDemocrats lost because Trump and the Republicans used the fascist playbook to weaponize rhetoric. Democrats lost because Trump ran a successful con. Because extensive misinformation in an election can bring down a democracy.\n\nSo you can't tell voters that Democrat policies will be better. They've already succumbed to propaganda and lies. \n\nSo now we got to wait till things get bad, so people can learn on their own. Hopefully people will realize that they don't want to send the Nigerian Prince another check. \n\nThen we can talk to them about what Democrats will do for them.", 'created': '2024-11-07 23:35:33', 'submission_id': '1glzxa0'}
{'comment': 'We need more John Fetterman type Democrats who can speak to the large segment of the population who relates to him. \n\nMost red state, blue collar people would like him personally.', 'created': '2024-11-08 03:16:08', 'submission_id': '1glzxa0'}
{'comment': 'At a time when most Americans hate the establishment, we need to have candidates that represent change and dont represent the status quo. We needed a populist progressive candidate like Bernie Sanders.', 'created': '2024-11-08 00:03:09', 'submission_id': '1glzxa0'}
{'comment': 'I guess all that’s left is “We are not as Fascist as the other guys.”', 'created': '2024-11-07 23:56:01', 'submission_id': '1glzxa0'}
{'comment': 'I think the repubs are going to craft the message for us in the disastrous two years we have coming. I plan to sit back and watch the show.', 'created': '2024-11-08 00:04:09', 'submission_id': '1glzxa0'}
{'comment': "It's really not complicated. Dems, as well as incumbents all around the world, lost because of inflation.", 'created': '2024-11-08 01:24:49', 'submission_id': '1glzxa0'}
{'comment': "That's exactly my issue. What is the missing link here? Why are the policies which should benefit average Americans that are not appealing to them? \n\nWhat is the disconnection here? Because we are elites? Because only coastal people vote blue? Or what? \n\nWHAT IS IT???", 'created': '2024-11-07 22:18:45', 'submission_id': '1glzxa0'}
{'comment': 'It cannot be solved. The cult has the country now. Kamala ran a campaign that pushed a message of decency, hope and inclusion while Trump ran a hate-filled, lie-filled campaign of threats and racism. \n\nAmerica chose hate.', 'created': '2024-11-08 11:02:56', 'submission_id': '1glzxa0'}
{'comment': 'I’ve said this multiple times and I’m going to keep saying it, voters did not vote against Harris and Walz, they voted for Trump and his demagoguery. They liked what he’s selling, and it’s not anything that the Democrats can remotely offer. This country is in deep trouble spiraling towards authoritarianism. Democrats need someone more exciting to voters potentially, but their policies are not unpopular.', 'created': '2024-11-08 01:56:49', 'submission_id': '1glzxa0'}
{'comment': 'Improving messaging is futile if a significant portion of the population is living in a non-reality, deeply entrenched in propaganda-fueled beliefs. This is not, and has never been, merely a messaging issue. It’s a multi-faceted problem that involves:\n\n\t•\tSystematic brainwashing and the intentional dumbing down of the population—the GOP’s push to dismantle the Department of Education is a prime example. Keeping people uninformed makes them easier to manipulate.\n\t•\tExploiting genuine fears and anxieties—instead of offering solutions, they capitalize on people’s concerns to fuel anger and division.\n\t•\tStoking hatred and encouraging ‘othering’—this tactic keeps people divided and distracted, preventing them from questioning the structures that enrich the powerful.\n\t•\tUndermining racial equality—we must recognize that a large segment of white Americans remain uncomfortable with true equality, which the GOP manipulates to its advantage.\n\t•\tMainstream media’s deference to right-wing narratives—by failing to challenge the GOP’s misinformation, media outlets often amplify and legitimize these harmful ideas.\n\nNo amount of refined messaging can address these entrenched issues. Real change will only happen when the GOP’s grip on these tactics is broken and people recognize that they’ve been misled into supporting policies that do not benefit them.', 'created': '2024-11-08 02:29:26', 'submission_id': '1glzxa0'}
{'comment': "Democrats put a lot of political capital on gays, transgenders, students, blacks, Hispanics, and other minorities that either don't vote or are a small population while neglecting the actual people who do vote. They have nominated a woman twice and Americans have rejected that idea. I think the leadership lives in an East coast elite bubble.", 'created': '2024-11-07 21:33:40', 'submission_id': '1glzxa0'}
{'comment': 'They also need bold proposals that are difficult to counter AND FOLLOW THROUGH ON THEM! The Dems have been bait-and-switch since 1992: Run as progressives, then govern as "centrists" in the name of bipartisanship, conceding the best tenets of reform while the Republicans do not. In the 2010s, Republicans used that to play dirty, play to keeps, and most importantly, play to win. The "When they go low, we go high" only made the spinelessness sound noble. The last three elections have been about "We are not Trump," which means he\'s been setting the Democratic Party agenda.', 'created': '2024-11-08 03:01:00', 'submission_id': '1glzxa0'}
{'comment': "Focus on the economy and immigration. Clearly they don't care about rights or ethics.", 'created': '2024-11-08 00:27:31', 'submission_id': '1glzxa0'}
{'comment': 'Consultants and focus groups will be the death of us.\n\nAmericans want populism. Republicans offer right-wing authoritarian populism, while we offer… the status quo. We’re too afraid to break with wealthy and corporate donors to offer a progressive populist message.\n\nThe thing is, wealth inequality is reaching critical levels, and this is having downstream effects in areas critical to the average voter: wages, costs, rents, unions, healthcare, etc. Republicans can appeal to xenophobia and wedge issues, but Democrats can’t rebut this unless we’re able to offer a fundamentally progressive message that addresses the underlying issue of wealth inequality.\n\nTax corporations, tax the rich, put more money in public services and the pockets of average people. This is the winning message.', 'created': '2024-11-08 03:03:00', 'submission_id': '1glzxa0'}
{'comment': 'Future Forward found the economic messaging to be most effective', 'created': '2024-11-08 03:16:46', 'submission_id': '1glzxa0'}
{'comment': ' BTC had a good take on a few things that could change. \n\nhttps://youtu.be/-XGlZcV26-8?si=HnHKxkz_HSJA_SIf', 'created': '2024-11-08 03:17:06', 'submission_id': '1glzxa0'}
{'comment': 'This election clearly showed that this country is loaded with racist, misogynist, homophobic bigots. Maybe somebody should tell the Democratic Party leadership. I openly acknowledge my early and unwavering support of Kamala Harris, but let’s be honest, a Black woman winning in the current political climate is a pipe dream at best. We couldn’t even take down Trump, the worst President in history.', 'created': '2024-11-08 03:44:13', 'submission_id': '1glzxa0'}
{'comment': 'Democrats need to do like Senator Elect Andy Kim and actually go out and have conversations with everyone—the base, the middle, and even conservatives. Whatever is the most popular, run on those as the platform. Economy? Run on lower taxes for working class folks and affordable housing. Healthcare? Run on Universal Healthcare. Immigration? Run on improved border security and an overhaul of the immigration system. \n\nDon’t, however, over complicate the presentation. Bernie did a great job of sticking to his populist message that was easy to understand. “Billionaires are not paying their fair share and are getting richer while you’re getting poorer.” “We’re the only first world country without universal healthcare. Healthcare is a right, not a privilege.” Etc. If people need to see how it’s going to work, then you can have the details available. \n\nFinally, don’t disagree when people tell you something is broken. Show some empathy and admit that the system has failed them. Taking ownership goes a lot further than denial and passing blame to someone else.', 'created': '2024-11-08 06:39:11', 'submission_id': '1glzxa0'}
{'comment': 'A new message like, “we were only kidding about wokeism and equal rights”. What kind of message are you talking about? We have been honest with ourselves and others. Do we need to become better fascists to compete?', 'created': '2024-11-08 16:22:14', 'submission_id': '1glzxa0'}
{'comment': "No I don't think new message would help, they need to show ACTION.\n\nBiden sitting back not doing anything about rising cost of grocery.\n\nMerrick Garland not doing shit much, Biden should have nominated someone more aggressive.\n\nIf message is what need to be changed, then make it only message that interests everyone. Omit message about LGBT because it pisses half of the people off, omit message about abortion as well for same reason. I mean come on we need everyone's vote, not just 1 side.", 'created': '2024-11-10 10:55:06', 'submission_id': '1glzxa0'}
{'comment': 'The blue wall washed away. “It’s the economy…” \n\n\nIt’s time for a grand bargain deal bc SCOTUS is gone. SS will be stripped and we’ll be back to privatized social services and austerity for federal government services funding.\n\n\nWe have a deep talented pool of candidates. They need to be blue dogs. \n\n\nI don’t see a Pete Buttigieg or “Bernie-type” being our next move against JD Vance and a highly stacked Magapublican coalition in 3 years. \n\n\nPerhaps a split ticket Dem/Rep ? There still a lot of unhappy and unaligned “Rhinos” out there we can’t ignore.', 'created': '2024-11-07 22:27:38', 'submission_id': '1glzxa0'}
{'comment': "one fucking day too late, 'cause it's all over now. The mangled orange shitstain TOLD US that we'll never have to vote again after this election. Ratfuckery is afoot, and it's too late now. If the Senate goes, it's all over but the cryin.", 'created': '2024-11-08 02:15:56', 'submission_id': '1glzxa0'}
{'comment': 'Trump is popular. Americans arent really into a woman president. The Dems are fine.', 'created': '2024-11-08 02:24:27', 'submission_id': '1glzxa0'}
{'comment': 'The Dems messaging is fine. If it weren’t, Dems downballot would have done way worse than they have. We’ve had a lot of statehouse gains, even in places we didn’t expect them. We’re actually in better shape than we were in the aftermath of 2016. \n\nThe real problem is twofold: \n\n1) Trump is not a candidate, he’s a really well-known brand. He’s the leader of a cult. We’re finding out now that a ton of voters literally just filled in the bubble for Trump and left the rest of the ballot blank. These are voters that do not show up for anyone — on either side — besides him. \n\n2) The media ecosystem is now actively hostile to Democrats. The mainstream media sanewashed Trump, criticized Biden and Harris, and throttled any news that put the Democrats in a positive light. And the podcast universe is absolutely saturated with right-wing propaganda. Go to your Spotify or Apple Podcasts Top 10 and tell me how many of them are well-known right-wingers. Then tell me how many are liberal. Given that most people get their news from podcasts nowadays, that’s a huge problem. Our messaging and branding could be flawless and it won’t matter if nobody sees or hears it.', 'created': '2024-11-08 04:54:22', 'submission_id': '1glzxa0'}
{'comment': 'We need to embrace left wing populism and stop falling into the trap of centrism, because if we stand for nothing we could fall for anything', 'created': '2024-11-08 02:02:06', 'submission_id': '1glzxa0'}
{'comment': '[Bernie touched on this](https://fortune.com/2024/11/06/bernie-sanders-donald-trump-kamala-harris-2024-election-results-democratic-party-bandoned-working-cmiddle-class/)', 'created': '2024-11-08 16:34:56', 'submission_id': '1glzxa0'}
{'comment': 'In order to do that, Democrats have to first let go of their obsession with Deficits and National Debt and Taxation to “pay for.” I am not saying these are not important things, they are very important but should not be their first priority. (Learn from the Republicans. They have mastered this game when in power.)\n\nThis whole “tax the wealthy” to “pay for” lower income and middle class’ benefits is the biggest showstopper. \n\nLet’s all agree, no one wants to pay more in taxes, and no one especially wants to pay higher taxes for providing benefits to other groups of people than ours. This creates the biggest divide - Taxpayers & Taxeaters. \n\nNobody wants to see themselves as Taxeaters, especially the middle & working class. So they vote against their own interests. Everyone wants to be seen as a Taxpayer. \n\nThe truth is all of us are both Taxeaters and Taxpayers.', 'created': '2024-11-07 21:39:02', 'submission_id': '1glzxa0'}
{'comment': 'Democrats are solely responsible for letting evil win by sitting on their ass for 2 elections and just hoping that the people will do their work for them. EVERYTHING could have been prevented if they didn’t kill Bernie in 2016 and 2020. Biden is to blame too, after 4 years of being a fossil he drops out 5 months before the election and gives it to Harris, democrats well knowing America will never vote for a woman, which is still sad on Americans part but after that point of no return Trump already, they GAVE him presidency.', 'created': '2024-11-08 02:21:10', 'submission_id': '1glzxa0'}
{'comment': 'From my personal experience with people around me who have always been democrats, most got bullied and beat down so much by Trumpers, that they started to say things like, I’m not voting for either, they both suck. \n\nMy own husband was saying this towards the end and it crushed me, because their oppressive tactics worked. His best friend in the world whom he adores has been beating him up for months for supporting Kamala. My husband hates Trump still thank God, but he just started resenting politics altogether by the end. \n\nIn the last week the “I’m not voting for either one” came out of the mouths of at least 3-4 people in my very democrat family. We don’t even live in the same town, all hours away from each other. And 2/3 of the men have flipped to becoming full-on MAGA supporters after a lifetime of being democrats.\n\nWe’re not realizing that the blue people are being driven insane by Trump people to the point of not even wanting to go out and vote.', 'created': '2024-11-07 23:50:34', 'submission_id': '1glzxa0'}
{'comment': "while rump set off hate and fear in his group for 8+ yrs. hate and fear always drives people to the polls. I don't know how you can drive more dems to the polls without stooping to that level.\n\nMy biggest hope is when rump dies maga falls apart without it's leader. then it's pieces will be too small to worry about.", 'created': '2024-11-08 00:55:16', 'submission_id': '1glzxa0'}
{'comment': 'I had to convince on of daughters to vote. The last few years have been HARD for young people starting out. She wasn’t for Trump but didn’t see the point in voting. :/ I’m sure that was true for many. Inflation and high rents.', 'created': '2024-11-08 03:06:50', 'submission_id': '1glzxa0'}
{'comment': 'This ^\n\nI’m a democrat because I care about people and democrats talk about social safety nets, helping the most vulnerable in our society, protections for those who are marginalized. We care about equality and human rights, workers rights. \n\nDo you mean that we should just abandon our principles and purposes? Abandon the people who desperately need a voice?', 'created': '2024-11-08 05:12:36', 'submission_id': '1glzxa0'}
{'comment': "This is pretty much my point. They don't know the policies. They don't know what they have voted for and it's going to slap them in the face. They don't know the cost of tariffs or what it means for them.\n\nWe have data on specific issues like contraception and even abortion that we can see the majority of Americans support nationally but likely did not realize it was on the ballot because of Trump and Project 2025.\n\nLike ACA, most Americans support it, but the same people will say they don't support Obamacare.\n\nAnd Democrats wasted too much time trying to educate people who did not want or have time to be educated.\n\nWe need more targeted, concise, and in-your-face politics that appeal to the pains and frustrations of Americans who do not know how any of it actually works and do not care to know. Who do not know how tariffs actually work, but will care about how it feels for their wallet in two years.\n\nWe don't need to lie, but we do need to be louder and in-your-face about the specific issues that Americans care about, in this election's case how the economy feels and who is at fault.", 'created': '2024-11-07 22:56:10', 'submission_id': '1glzxa0'}
{'comment': '"Drill BABY DRILL"\n\n"DEPORT THE MIGRANTS"\n\n"TRANSGENDER"', 'created': '2024-11-08 03:18:07', 'submission_id': '1glzxa0'}
{'comment': '2016 is racism.', 'created': '2024-11-07 22:41:08', 'submission_id': '1glzxa0'}
{'comment': 'Seriously. When they go low, we go to the basement.', 'created': '2024-11-07 23:52:33', 'submission_id': '1glzxa0'}
{'comment': 'But it is important to have that representation. Black women are literally the ones keeping our party afloat.', 'created': '2024-11-08 05:03:29', 'submission_id': '1glzxa0'}
{'comment': 'I saw SO MANY trump ads during Sunday night football, all attacks, every single break. I can’t remember them now, because I had to leave the room or I would have thrown something at the tv. I saw very few Harris ads, with no teeth. Once again, we’ve shot ourselves in the foot.', 'created': '2024-11-08 02:50:52', 'submission_id': '1glzxa0'}
{'comment': 'Ernst Thälmann (leader of the democratic socialists in Germany) supported Hitler because he figured he would fail so miserably and be so disastrous for the country that the people would swing in the other direction. He actually campaigned on the slogan “After Hitler, our turn”. He was arrested in 1933 and was eventually shot on Hitler orders after 11 years in solitary confinement in a concentration camp.\n\nI wish everyone who protest voted because they thought it needed to get really bad first to “break” the country in order for the revolution to start would understand this. Hitler immediately locked up his critics and opponents. There was nobody to oppose him.', 'created': '2024-11-08 04:59:54', 'submission_id': '1glzxa0'}
{'comment': 'This is true, but democrats didn’t do enough to combat this cancer. They chose either a woman or an old candidate when America wanted a strong, virile hero, who could go toe to toe with Trump and his allies.', 'created': '2024-11-08 00:02:02', 'submission_id': '1glzxa0'}
{'comment': 'And importantly, real policy. Not just spending that mostly benefits the rich. Tax policy, and actually government programs where the government is doing the hiring, instead of throwing money at private companies. An actual new new deal.', 'created': '2024-11-08 03:51:33', 'submission_id': '1glzxa0'}
{'comment': 'Yes. And that will sell really well if the economy tanks as I expect it to.', 'created': '2024-11-08 02:03:11', 'submission_id': '1glzxa0'}
{'comment': 'Yes. Big ideas. A New New Deal.', 'created': '2024-11-08 03:07:59', 'submission_id': '1glzxa0'}
{'comment': 'Agree. Let it rain tariffs', 'created': '2024-11-08 02:31:21', 'submission_id': '1glzxa0'}
{'comment': "Apparently when I watched the clips from The View on YouTube, there was nothing but comments saying how Sunny Hostin and Joy Behar are out of touch with reality and are full of themselves... and are MILLIONAIRES.\n\nI literally looked up EVERY SINGLE FOX N̶e̶w̶s̶ pundits income and they ALL ARE MILLIONAIRES. Every person from Jesse Waters, Hannity, Tucker, Laura Ingraham, Jenean Pirro, Gutfeld, Bret. THEY ARE ALL OUT OF TOUCH SPRAY TANNED MILLIONAIRES TOO!\n\nI just don't understand why MAGA Trumpers are bitching about elites when Fox N̶e̶w̶s̶ don't have real JOURNALISTS, are not an actual N̶e̶w̶s̶ network and PRETEND to be in touch with their viewers. IT'S ABSOLUTELY INSANE!\n\nEven Dems have admitted that Oprah has been out of touch for over a decade.\n\n", 'created': '2024-11-07 22:36:25', 'submission_id': '1glzxa0'}
{'comment': 'I’m going to be honest even if people don’t want to hear it and I really hope people take it to heart. \n\nWe have been having populist elections for awhile now so it’s obvious a likeable candidate and voter base is important whether people like it or not. \n\nThere is nothing more insufferable and less sincere in the United States than your typical, educated white liberal who grew up in the suburbs. \n\nThere is nothing wrong with these people’s policies, personal belief system etc it is literally how they act. \n\nIf you are a far left left radical you don’t like them, if you are conservative you don’t like them, urbanites who aren’t transplants do not like them (these people are gentrifying your neighborhood) and rural folk can never even understand wtf they are talking about.\n\nThis is the problem & this is where the rebrand needs to come from. I doubt it will happen though. I think the democrats will just try to go even further right & loose again. \n\nPolicy wise Obama is not that different from any other candidate in his party. He went to Harvard which is super elitist but he seemed like the kind of person that anyone could sit down and grab a brew with. Unfortunately that matters. \n\nWhere democrats are targeting this aggression after we loss is a sign to me that we unfortunately will loose again. Enough with the parentifying missionary message PLEASE.\n\nWe have celebrities talking about how they will leave the country like anyone gives a fuck. I am so concerned how out of touch the only vaguely left leaning party with power is out of touch with normal people.', 'created': '2024-11-07 23:30:56', 'submission_id': '1glzxa0'}
{'comment': 'Democrats are wonks. People tune out policy details. Dems need to promote big ideas instead, ideas that are sweeping and represent a change from the status quo. We don’t even necessarily need details, since “concept of a plan” wasn’t a deal-killer for voters. But we should state ideas like breaking up monopolies. Say that we’ll use the proceeds from taxing corporate profits to subsidize wages or something.', 'created': '2024-11-08 03:14:55', 'submission_id': '1glzxa0'}
{'comment': "We cannot underestimate how uninformed most voters are. I believe there there are many low-information voters who supported Trump without realizing everything that he represents and all the policies that come with him because of his brand, their existing views of Democrats, the economy, etc. \n\nThis election was also extremely close. Millions of ballots are still being counted, so the totals we have right now are not the final result. But even if it were, and even if all Trump voters were well-informed about Trump, we're still looking at roughly half of voters not being okay with Trump and MAGA. Over seventy million people.\n\nThis is only over if we give up now.", 'created': '2024-11-08 11:28:33', 'submission_id': '1glzxa0'}
{'comment': 'That ignores that Harris lost because she did not get as many votes as Biden did in 2020, as well as how low-information a significant amount of Trump supporters are. Polls and focus groups have shown a significant amount of Trump supporters just saw him as better on the economy.', 'created': '2024-11-08 05:35:42', 'submission_id': '1glzxa0'}
{'comment': 'Or...progressive inclusive tolerance is one of the core values of the Democratic Party. Expanding our individual rights is the promise of America. Where else are Americans - where else is the world - going to find it?', 'created': '2024-11-07 21:50:17', 'submission_id': '1glzxa0'}
{'comment': "I disagree. A Bernie-like person would be an excellent candidate. People want healthy families and to be able to afford food and the occasional vacation. Some people want more, but those people shouldn't be our focus. Dem Gov Andy Beshear is loved in his state of Kentucky. He understands his rural constituents and gives them what they need while still giving everyone what they need, like universal pre k.\n\nDemocrats need to be progressive for everyone, not just marginalized and underprivileged groups. We've now learned that treating groups like golden children just causes divided and weakens us.", 'created': '2024-11-07 23:59:22', 'submission_id': '1glzxa0'}
{'comment': "> We’re actually in better shape than we were in the aftermath of 2016. \n\nPeople need to really stop looking at just the top of the ticket and take a good look at the landscape. Harris running as the Democrats' presidential candidate was unelectable, but other individuals running as Democrats were. The House is not looking great for the Democrats [but some seats as of this comment need to flip, and all other lean-blue races hold](https://apps.npr.org/2024-election-results/house.html) for the outcome to change. It's not going to happen, and I don't want to sell a promise that it will, but the ballot counting is still ongoing.\n\nVoters did not vote for Democrats. Voters voted for individuals who caucused with the Democrats, some of whom are completely antithetical to the stereotype associated with said voters' world views. Voters voted for policies the Democrats championed. Voters did everything but vote for Democrats at the top of the ballot.", 'created': '2024-11-08 05:39:49', 'submission_id': '1glzxa0'}
{'comment': '“While the Democratic leadership defends the status quo, the American people are angry and want change. And they’re right.”', 'created': '2024-11-08 16:35:44', 'submission_id': '1glzxa0'}
{'comment': 'Wrong. These social services is the reason we are not an extreme poverty-stricken 3rd world country. We have more than enough money to house, feed, nurse and educate every single American, but apparently we don’t have enough to satisfy the mega rich.', 'created': '2024-11-07 23:59:20', 'submission_id': '1glzxa0'}
{'comment': 'You bring up a good point!', 'created': '2024-11-08 00:07:22', 'submission_id': '1glzxa0'}
{'comment': 'I don’t know how a fossil could have led our economy out of the recession, high unemployment, and closing businesses happening 4 years ago as Trump exited the White House.', 'created': '2024-11-08 02:57:44', 'submission_id': '1glzxa0'}
{'comment': 'Do you think they regret not voting even now? Like an “ah shit” moment?', 'created': '2024-11-08 03:56:15', 'submission_id': '1glzxa0'}
{'comment': "I'd sooner believe it was sexism and the elitism of HRC. Bernie was a popular pick, and maybe if he'd been at the helm, Democrats could have been elected. Trump's 'drain the swamp' message rang true for a lot of people. We can't change the past, but we had better freaking learn from it.\n\nThe next candidate needs to be someone like Walz, Andy Beshear, and Bernie, someone that understands rural problems and can get programs enacted that benefit everyone. In the meantime, we focus on the next elections at every level, not the next presidency.", 'created': '2024-11-07 23:41:30', 'submission_id': '1glzxa0'}
{'comment': 'Misogyny and pay back by the racists.', 'created': '2024-11-07 23:55:19', 'submission_id': '1glzxa0'}
{'comment': 'Every ad the GOP runs is negative and every ad the Dems run is positive and what we want to do. And look what won. We need to vilify these people like they do with Nancy Aoc. After this last election I’m just done being the nice guy and I think a lot of us are done with the BS. It’s time to fight dirty.', 'created': '2024-11-08 03:20:04', 'submission_id': '1glzxa0'}
{'comment': 'I get where you’re coming from, and this was my view as well in 2016. But not this time. Trump ran an ugly, hate-filled campaign that was so widely televised it was impossible to avoid. He repeated ad infinitum his threat to sic the police and military on his critics and to be a dictator on day 1. The low information excuse just doesn’t stand up. \nYou can’t reason people out of something they weren’t reasoned into to begin with.', 'created': '2024-11-08 11:38:04', 'submission_id': '1glzxa0'}
{'comment': 'Final result is obvious. MAGA has the house, senate, presidency, and supreme court. This will not change. You may say the house isn’t final yet, but it will be and the republicans will be in control.', 'created': '2024-11-08 16:24:32', 'submission_id': '1glzxa0'}
{'comment': 'Democrats can be inclusive without making it a priority. Whenever people start listening to Democrats, MAGA will go bully a trans person and all the Dems run to defend them. The MAGA folks control the narrative and can get Dems to jump and run around in circles never getting their word out. The people who vote are working-class people who want to hear more about lower food prices and buying a home than making bathrooms inclusive.', 'created': '2024-11-07 22:15:14', 'submission_id': '1glzxa0'}
{'comment': 'I don’t disagree with what you have said. The point I am making is that those payments by the government without needing to increase tax on anybody.', 'created': '2024-11-08 00:59:19', 'submission_id': '1glzxa0'}
{'comment': 'And will get downvoted. No one wants to learn.', 'created': '2024-11-08 01:03:13', 'submission_id': '1glzxa0'}
{'comment': 'I didn’t say he couldn’t, being old isn’t bad, but he absolutely could not run again in voters eyes and dropped out way too late forcing Harris to be the candidate.', 'created': '2024-11-08 03:44:28', 'submission_id': '1glzxa0'}
{'comment': 'At least one of my cousins was freaking out when he won, just hours after saying “she didn’t vote for either because they both suck”.\n\nShe was talking about what to do now, what country to move to. I just wanted to scream at her YOU VOTED FOR HIM BY NOT VOTING AT ALL!', 'created': '2024-11-08 04:11:21', 'submission_id': '1glzxa0'}
{'comment': 'This is why I don’t understand. If someone really hated Trump, this was their chance to be rid of him forever. So instead people just sit it out?', 'created': '2024-11-08 04:32:13', 'submission_id': '1glzxa0'}
{'comment': 'I think both are correct. And the part about the messaging. A big chunk of the middle is loyal to neither party. Immediate pocketbook economics. When they don’t get the magic they were promised they’ll swing right back to vote blue in the midterms and 2028. I heard that some people, in exit polling, actually thought Kamala supported tax dollars for trans care. That ad was a cheap lie, but effective. Truth doesn’t matter to mentally lazy voters who aren’t going to seek the truth. Democrats need to play that same game for those same mentally lazy voters.', 'created': '2024-11-08 04:29:36', 'submission_id': '1glzxa0'}
{'comment': "This is exactly my thought. I support LGBTQ rights, I support expanding trans rights. But the average American did not care enough about that for it to win their vote, and it proved an effective MAGA strategy for derailing discussion about everything average Americans care about.\n\nWe can quietly support trans rights (hopefully) but it cannot be a main focus. It cannot distract from everything else. It cannot be the subject that MAGA can use to distract us from talking about everything else. Because that everything else includes a lot of things the average American, the average voter, cares more about.\n\nAnd that sucks. And it's okay to feel how much that sucks.\n\nBut what sucks an infinite amount more is MAGA staying in control for any amount of time more than the absolute minimum amount of time.\n\n**If MAGA stays in power, it doesn't matter if progressives supports trans rights, it doesn't matter how loudly or passionately they support it, MAGA will absolutely stomp it out in every way it can at every level of government and can block any challenges to it.**\n\nThat is the reality we are in now.\n\nThere is no best option here. We are living in worst-possible-case scenario here.\n\nOur choices here are no longer just whether or not we expand trans rights.\n\nOur choices are trans people being stomped out entirely, or quietly existing and being supported at the community level rather than higher level politics for a few years until progressives have the political power to support them politically.\n\nThat's it.\n\nThere's no other options.\n\nIt is defeat MAGA at all costs by hyper-focusing on the issues average and low-information voters care about, or MAGA shits on everything progressives care about for generations.\n\nThat is the reality. The sooner we can accept that and start getting our shit together, the better chance we have of defeating MAGA in the next two elections and of marginalized groups like trans people being able to exist in this country.", 'created': '2024-11-07 22:32:17', 'submission_id': '1glzxa0'}
{'comment': 'Fox News entertainment/state media showed the awful footage of San Francisco (and I’ve been there it’s a sad turn of affairs)… \n\n\nMost who left CA for other states were Republicans and they spread out far and wide in states where their dollar would stretch further and their local stores didn’t have locks and bolts on shelves.', 'created': '2024-11-07 22:32:06', 'submission_id': '1glzxa0'}
{'comment': "It's hard right now. We're scared, and like any scared animal, we lash out. We have to be conscientious in redirecting our feelings into mitigating the consequences of a Trump administration.\n\nAlthough, one thing to point out is when capitalism hoards profits and socializes losses. Big business is only going to get worse in the next administration, so we need to use our buying power to boycott badly-behaving companies. Encourage more unions and start small businesses that spend money in the community, especially with tariffs on the horizon.", 'created': '2024-11-08 01:15:12', 'submission_id': '1glzxa0'}
{'comment': 'I swear I think Trump is hypnotizing people and then they snap out of it after the election. Happened in 2016 and the EXACT SAME THING happened now. Some people never snap out.', 'created': '2024-11-08 05:12:15', 'submission_id': '1glzxa0'}
{'comment': "Why do WE need to change when they are the ones who have the wrong priorities? I don't want a populist party that wins with the right message; I want others to have better values.", 'created': '2024-11-08 00:39:46', 'submission_id': '1glzxa0'}
{'comment': 'That’s not the reality we live in. If we want to make legislative changes, we need majority backing of the country.\xa0\xa0\n\nIt’s as simple as that.\xa0 If we don’t get control of this, MAGA will take generational control and could last decades. Whatever marginalized groups we care about will have no chance under that.\xa0\xa0\n\nWe either need to do what it takes to get control, then bring back legislative support for them or MAGA will do everything in its power to wipe them out for years to come.\xa0 That is where we are right now whether any of us like it or not.\xa0\n\nThere is no “but we’re right!” here, that just lost us the election and gave potentially *EVERY* part of government to MAGA.\xa0\xa0\n\nTo put it another way, the trans community is absolutely fucked for years to come if we cannot gain a national foothold as soon as possible by making an appealing case to the average low information voter.\xa0', 'created': '2024-11-08 01:25:33', 'submission_id': '1glzxa0'}
{'comment': "Nope. I'm tired of being the adult in the room. It's gotten the left no traction. Time to change.", 'created': '2024-11-08 00:13:01', 'submission_id': '1glzgxy'}
{'comment': 'Nah. Maybe if both sides wanted the same thing. But obviously trump doesn’t care about bringing the country together so how is it supposed to work?', 'created': '2024-11-07 21:50:51', 'submission_id': '1glzgxy'}
{'comment': 'https://preview.redd.it/v7pc4i95dkzd1.jpeg?width=2976&format=pjpg&auto=webp&s=91842bbcb1460d2d970968c0576f100eaacf1f6e', 'created': '2024-11-08 00:26:41', 'submission_id': '1glzgxy'}
{'comment': 'Pathetic.', 'created': '2024-11-07 21:51:23', 'submission_id': '1glzgxy'}
{'comment': "No more Mr nice guy. It doesn't work!", 'created': '2024-11-08 01:27:20', 'submission_id': '1glzgxy'}
{'comment': 'Watching his speech is a reminder of why we lost. Talk about out of touch. The Democratic Party say things no one cares to hear— Trump & The Republican Party tell people exactly what they want to hear.', 'created': '2024-11-07 21:55:43', 'submission_id': '1glzgxy'}
{'comment': 'These statements are lost on the Republican party, as righteous and appropriate as they are. It’s what a President *should* say, but the meaning is lost on the MAGA crowd. Why even bother to say it?', 'created': '2024-11-08 02:15:04', 'submission_id': '1glzgxy'}
{'comment': "No. \n\nI know people want to assign blame. \n\nBut the cancer simply spread too far. The Republicans used the fascist playbook to weaponize rhetoric. And weaponized rhetoric is one of the most powerful weapons of humanity.\n\nSo the lesson to take from here is that there is a paradox of free speech. \n\nFree speech is extremely important for democracy, so that voters have the opportunity to make informed decisions. \n\nYet, speech that is used to misinform voters with ill intent can bring down a democracy. \n\nTrump and his surrogates created a fiction about who he is, and what he would do. And they created a fiction about Harris.\n\nIf it had been some other candidate, with other campaign strategies, they simply would have adjusted their fictional narrative.\n\nBut if you really want to blame someone, blame the media. For if instead of sane washing Trump for years, they had criticized him for his lies, and labeled him the fascist that he is, perhaps it would have made the difference. Perhaps some people would have been more resistant to the con. \n\nBecause that's what happened. Trump has been running a con on the United States. And *he got even better at it.*", 'created': '2024-11-07 21:30:22', 'submission_id': '1glzgxy'}
{'comment': 'There are three people responsible for this horrific shitshow we find ourselves in. \n\n- Mitch McConnell\n\n- POTUS 46\n\n- Merritt Garland\n\nThe utter failure of the DNC will go down in the annals of history. In the cold light of day I can see that the DNC is run by Oligarchs who just won to sustain their elevated position and luxury lifestyle. The Fascists will, for the most part, leave them be. Meanwhile we will have to bear the brunt of the ire of vindictive man-baby and his poxy minons.\n\nI do not see any future for the DNC unless it is purged. The leaders need to be fired, and we need a new approach where we have leaders who grok the life of the working woman and the working man. \n\nThis old fool has dropped us right in the shit, and as for his AG - what a pathetic loser. He should resign without delay.', 'created': '2024-11-07 21:01:00', 'submission_id': '1glzgxy'}
{'comment': 'Nah. We tried this and now we will be lucky to have free and fair elections after this. Time to hit them right the fuck back.', 'created': '2024-11-08 06:34:16', 'submission_id': '1glzgxy'}
{'comment': 'Exactly! Time to be petty af.', 'created': '2024-11-08 18:50:44', 'submission_id': '1glzgxy'}
{'comment': '“…tells people exactly what they want to hear” whether it’s based in reality or not\n\nR’s don’t care about truth or reality bc it’s inconvenient to the bs they’re selling\n\nD’s are stuck having/wanting/needing to tell the truth and live in the reality with facts and data\n\nR’s get to tell a fairytale', 'created': '2024-11-07 22:14:09', 'submission_id': '1glzgxy'}
{'comment': 'Yes this is right. We need to get it right in 2028.', 'created': '2024-11-07 23:31:21', 'submission_id': '1glzgxy'}
{'comment': 'What do competitive colleges do when their football team stops winning championships? They fire their coaches. It’s tough, but we need new blood in the leadership and we need to rebuild and modernize the Democratic Party for the sake of progressive American politics and the future of our democracy. Like it or not, the Republican Party beat us to doing this work internally after a failed Bush administration, and then dismal election results with McCain and Romneys run. And it worked for them, for better or worse.', 'created': '2024-11-08 00:03:02', 'submission_id': '1glzgxy'}
{'comment': 'Bro just dropped the hardest motivational quote', 'created': '2024-11-07 21:59:36', 'submission_id': '1glzmii'}
{'comment': 'https://preview.redd.it/p9uz0qi2dkzd1.jpeg?width=2976&format=pjpg&auto=webp&s=237fedb09b437ebf06ecc83b70f8343061a22d8b', 'created': '2024-11-08 00:26:16', 'submission_id': '1glzmii'}
{'comment': 'Honestly, given that this loss is his fucking fault, for breaking his promise to be a “transitional president”, then shitting his pants on live TV during the debate, and then dropping out of the race at the eleventh hour because he didn’t have the stamina to see it through to the end, President Biden can go fuck himself.\n\nHis ego, his belief that “only I can defeat Trump” has single-handedly fucked his entire legacy into the ground, and that’s a tragedy since he’s been by far the most successful and progressive President of my lifetime. But all he’ll ever be remembered for now, is handing us a Donald Trump Supreme Court that will persist for 40 years after both of them are dead.', 'created': '2024-11-08 02:33:15', 'submission_id': '1glzmii'}
{'comment': "He said it twice for emphasis. Let's not forget and continue the fight", 'created': '2024-11-07 22:47:33', 'submission_id': '1glzmii'}
{'comment': 'I think everybody who was going to vote for Harris did.\xa0 \xa0', 'created': '2024-11-08 03:16:50', 'submission_id': '1glzmii'}
{'comment': 'I’m kind of hoping that the Pennsylvania senate race goes to a recount.Might be interesting.', 'created': '2024-11-07 21:13:58', 'submission_id': '1glyvjc'}
{'comment': 'https://preview.redd.it/f08wmmledkzd1.jpeg?width=2976&format=pjpg&auto=webp&s=5e37fb27d3f8274ac15d6b07eb5b2e6d31279260', 'created': '2024-11-08 00:28:09', 'submission_id': '1glyvjc'}
{'comment': "Stop we lost. Even if a few votes weren't counted, the loss was by a lot.", 'created': '2024-11-07 21:32:10', 'submission_id': '1glyvjc'}
{'comment': 'This happens every election.', 'created': '2024-11-07 20:53:16', 'submission_id': '1glyvjc'}
{'comment': 'This.', 'created': '2024-11-08 02:07:42', 'submission_id': '1glyvjc'}
{'comment': 'The point is, even if those votes don’t give Harris the win, this is still cheating on Trump’s part. This should be disqualifying for him.', 'created': '2024-11-07 21:37:01', 'submission_id': '1glyvjc'}
{'comment': 'Blueanon', 'created': '2024-11-07 21:40:28', 'submission_id': '1glyvjc'}
{'comment': None, 'created': '2024-11-07 21:00:40', 'submission_id': '1glypdf'}
{'comment': 'I think the Democratic game plan might unfortunately be to sit back and wait for Trump to destroy the country, and then pick the pieces afterwards. \n\nThis is what the voters wanted. They need to experience it before they feel buyer’s remorse.', 'created': '2024-11-07 21:19:40', 'submission_id': '1glypdf'}
{'comment': 'Save money if you can for sure. When they create a market crash to consolidate assets to themselves … try to grab a piece of it.', 'created': '2024-11-07 21:25:26', 'submission_id': '1glypdf'}
{'comment': 'The economy is about to get very bad for Americans but it will also get very good for Elon. Thanks everyone that voted for Trump, you did this.', 'created': '2024-11-07 23:47:23', 'submission_id': '1glypdf'}
{'comment': 'And he still won. I used to believe in Karma, but I don’t know if danger yam will ever get his.', 'created': '2024-11-07 20:56:42', 'submission_id': '1glypdf'}
{'comment': 'The wool was just lifted from their eyes. This is just the beginning. Prepare for the worst in coming months.', 'created': '2024-11-07 22:02:19', 'submission_id': '1glypdf'}
{'comment': 'We already know what austerity and further privatization of social services does to economic growth. Right UK??', 'created': '2024-11-07 21:54:03', 'submission_id': '1glypdf'}
{'comment': 'Brace for "temporary hardship". Yeah, like Greece...', 'created': '2024-11-07 22:37:06', 'submission_id': '1glypdf'}
{'comment': 'This is the part of the poker game where the chip leaders go all in repeatedly to push all the struggling players out.', 'created': '2024-11-07 21:03:56', 'submission_id': '1glypdf'}
{'comment': 'Fuck Elon', 'created': '2024-11-07 21:30:58', 'submission_id': '1glypdf'}
{'comment': 'Alright I am panicking. I know many are, but can we, like…. Prepare for any of this!?', 'created': '2024-11-07 22:52:34', 'submission_id': '1glypdf'}
{'comment': 'There is a way to resist. If Democrats focus on **not** spending money and simply buying the bare essentials for the next two years, we can hurt the Fascists.\n\n- If you smoke, quit.\n\n- If you drink alcohol, quit.\n\n- If you like to buy take-out/dine in food and drink - stop\n\n- If you have a car, drive as little as possible.\n\n- Cancel all charitable donations\n\n- **Cancel Christmas** - be sure & tell Trump-voting relatives that you want nothing from them this year and will give them nothing in return. \n\n- Spend money only on what you absolutely need.\n\nI\'ve fired my cleaning service and pest control in WV, and am looking at every possible area where i can "cut the fat". By cutting down hard on spending, I hope to generate some cash reserves to help against the possibility of unemployment or pay cut in 25-26. \n\nThis will hurt them. Weaponized thrift can hurt Trump and Trumpists.', 'created': '2024-11-07 20:29:00', 'submission_id': '1glypdf'}
{'comment': 'Billionaires never suffer, but they should and more so.', 'created': '2024-11-07 23:04:31', 'submission_id': '1glypdf'}
{'comment': 'Crashing the economy to get richer.', 'created': '2024-11-07 23:22:42', 'submission_id': '1glypdf'}
{'comment': 'He said this same thing before the election. Did it not sink in. Trump and Musk were spinning two different stories. WTF would people be complaining about it for now. Never heard peep from either side when he originally came out with it.', 'created': '2024-11-07 23:20:22', 'submission_id': '1glypdf'}
{'comment': 'My only question is: How much will eggs cost?', 'created': '2024-11-07 23:27:38', 'submission_id': '1glypdf'}
{'comment': "Elmo will be pitching in, too, of course, just like ordinary folks. He'll be mothballing one of his eight private jets and downsizing to only fourteen homes, none larger than 30,000 square feet.", 'created': '2024-11-07 20:30:37', 'submission_id': '1glypdf'}
{'comment': 'Boomers and soon Gen X, say goodbye to your Social Security and Medicare. \n\nGen X - Z, say goodbye to your student loan forgiveness.', 'created': '2024-11-08 02:01:56', 'submission_id': '1glypdf'}
{'comment': 'Is he not opening himself up to huge legal liability if he does join the trump admin? Being the oversight for his own companies sounds like insider trading, or RICO to me. \n\nTrump has immunity, not his underlings.', 'created': '2024-11-08 00:24:35', 'submission_id': '1glypdf'}
{'comment': "Why does half the country half to suffer because of fucking idiots.\n\nTime to split into blue and red stares. We'll see which side turns into a 3rd world country and which advances into the future.", 'created': '2024-11-08 01:55:00', 'submission_id': '1glypdf'}
{'comment': 'Look, I don’t agree how Musk is going to do it, but we can’t keep spending more than we make. Trumps tax plan added 25% to the National Debt so he is going to *rob Peter to pay Paul* and transfer this money to the billionaires. Musk knew Harris was going to pass a heavy tax burden on billionaires. This is going to be a huge redistribution of funds. The targets of these cuts:\n\n- Social Security currently at $1.42 Trillion. If you collect it, get ready to have age out caps, no COL increases, and increased age when you collect (most likely 72).\n- Medicare is going to get a lot more expensive, or even cut. This is currently at $1.5 trillion\n- National Defense is at $1.6 trillion. They won’t touch this. To many people would lose their shit.\n- Banking deposit insurance will be cut. \n\nTake a look at your financial situation. Makes cuts, get rid of credit card debt. \n\nRealize something though…Trump and Musk both have egos. Don’t be shocked if this bromance comes to an end. Trump won on the economy. If he tanks it (which will take about 6 months to a year), Dems have the opportunity to take Congress.', 'created': '2024-11-08 01:02:20', 'submission_id': '1glypdf'}
{'comment': 'A billionaire whose companies are propped up by the massive government subsidies and tax credits is telling people to brace for hardship from spending cuts. \n\nYou think he’s going to cut those and make the market truly free and run by the invisible hand or will he make cuts to social programs that allow people to eat and live?', 'created': '2024-11-08 01:20:05', 'submission_id': '1glypdf'}
{'comment': '', 'created': '2024-11-08 02:18:12', 'submission_id': '1glypdf'}
{'comment': 'But I thought Trump was supposed to fix the economy!!!!!!!!!!!!?!??!??! \n\n/s', 'created': '2024-11-08 01:26:07', 'submission_id': '1glypdf'}
{'comment': 'But he’s an immigrant. Won’t he be deported?', 'created': '2024-11-08 00:34:49', 'submission_id': '1glypdf'}
{'comment': 'So you’re mad about the price of eggs but okay for hardship? Letting idiots breed like rabbits really fucking us over', 'created': '2024-11-08 00:50:56', 'submission_id': '1glypdf'}
{'comment': 'Not that anything is codified into law, but shouldn’t he have to give up his TSLA shares to take a role in the US Govt?', 'created': '2024-11-08 01:42:10', 'submission_id': '1glypdf'}
{'comment': 'Can you believe this level of incompetence for anything, much less a cabinet office?', 'created': '2024-11-08 01:55:26', 'submission_id': '1glypdf'}
{'comment': 'The Dems might have enough votes to impeach and convict Trump in 2027 if he follows through.', 'created': '2024-11-08 03:39:15', 'submission_id': '1glypdf'}
{'comment': 'I predict that Musk will wash out inside of a year.\n\n- He has never worked in government.\n- He is used to corporate America where everyone bends over backwards for the boss.\n- In government, he will need Congress for most of what he’s going to want to do.\n- He will tire of the political game when he realizes that lawmakers jealously guard their power.\n- Bonus: He doesn’t actually know how to run things himself. He has talents, but that’s not one of them. He has run one company by himself, and Twitter is basically a shitshow. He’s just not cut out for government.\n\nI think he’ll take an unofficial role (no paycheck), and when he becomes frustrated by government, he will drift away, and eventually we’ll ask, “Why haven’t we heard Musk talking about this stuff for a while?”\n\nThis is, of course, assuming the cuts he manages to make don’t immediately causes issues, resulting in Trump throwing him under the bus.\n\nRemember, folks; the one good thing about Donald Trump is that he destroys all the people close to him. It’s the only thing I like about him. Suck it, Rudy.', 'created': '2024-11-08 05:53:20', 'submission_id': '1glypdf'}
{'comment': 'https://preview.redd.it/vub4maiidkzd1.jpeg?width=2976&format=pjpg&auto=webp&s=66e539e4b8b4db5fb88aef6b826f33302ba16013', 'created': '2024-11-08 00:28:46', 'submission_id': '1glypdf'}
{'comment': 'If we didn’t have to also lay in the same bed with them, I’d say fuck ‘em. But, we’re also suffering along them. I guess the only way forward is through it, and have them find out what the rest of the world knows all too well… Time to grow up, America.', 'created': '2024-11-08 01:40:29', 'submission_id': '1glypdf'}
{'comment': 'Welcome to “you asked for it”.', 'created': '2024-11-08 02:32:01', 'submission_id': '1glypdf'}
{'comment': 'You know what, those rural idiots voted for him in droves, and at this point, I’m tired of fighting their ignorance. Let them feel the pain of voting against their own interests. F it', 'created': '2024-11-08 01:06:06', 'submission_id': '1glypdf'}
{'comment': 'Is it possible for us to block his appointment or are we just fucked?', 'created': '2024-11-07 23:37:53', 'submission_id': '1glypdf'}
{'comment': "Didn't they vote for Trump because the eggs were too expensive?", 'created': '2024-11-08 01:06:19', 'submission_id': '1glypdf'}
{'comment': 'The tariff thing is going to brutally affect Canada for sure. As a Canuck, I’m super afraid of what that shit is going to do to our economy…. \n\nOn the American side? \n\nOh my fucking god. You Folks are gonna get a massive beating.\n\nI’m thinking that what’s about to be unleashed is pure economic chaos.\n\nIt’s crazy… I’ve always been told that what most businesses want is stability… the chaos to come is going to shake the foundations of the world economy. I have a hard time understanding how sone of these companies think they’re going to weather the storm.', 'created': '2024-11-08 02:51:51', 'submission_id': '1glypdf'}
{'comment': 'FDT\nFEM', 'created': '2024-11-08 03:01:48', 'submission_id': '1glypdf'}
{'comment': 'MAGA is about to find out they were bamboozled. Will we go quietly into autocracy?', 'created': '2024-11-08 09:54:38', 'submission_id': '1glypdf'}
{'comment': 'I’m sorry but I’ve reached the anger stage now that I’ve had to watch two solid days of gloating. I only care about this at all because people who voted for Harris are going to suffer for this as well and they don’t deserve to lie in this bed other people made. I feel nothing for the people who voted Trump or stayed home. He said this before the election so it’s not like it’s a surprise. Fuck around and find out. 🤷🏻\u200d♀️', 'created': '2024-11-08 11:19:58', 'submission_id': '1glypdf'}
{'comment': 'LOL - can you imagine some poor MAGA supporter who voted because the fuel for his F-150 was more expensive in \'24 than it was in \'20 in 6-12 months seeing prices all around him going up saying "I thought donnie said he would fix everything?"', 'created': '2024-11-08 12:21:08', 'submission_id': '1glypdf'}
{'comment': 'This article is from before the election.\n\nBut yeah, I know all of this.', 'created': '2024-11-08 00:24:53', 'submission_id': '1glypdf'}
{'comment': "I think it's time for the working class to maybe I dunno start sticking up for ourselves! Like they can't do anything if we all say no and stop!", 'created': '2024-11-08 02:05:46', 'submission_id': '1glypdf'}
{'comment': 'Grassroots and populist messaging will save our party from this fever. We have to build with compassion and a focus on working class people.', 'created': '2024-11-08 02:44:39', 'submission_id': '1glypdf'}
{'comment': 'if they give their cult a piece of shit and say you must it to make America great again, they will happily do it', 'created': '2024-11-08 03:08:19', 'submission_id': '1glypdf'}
{'comment': 'And so it begins…', 'created': '2024-11-08 03:45:34', 'submission_id': '1glypdf'}
{'comment': 'Wasn’t Trump supposed to work wonders and shit miracles and now voters need to brace for hardship?', 'created': '2024-11-08 04:18:31', 'submission_id': '1glypdf'}
{'comment': 'I so badly want to see Musk and Dumpy get in a feud. The pissing match would be excellent!\n\n', 'created': '2024-11-08 04:27:08', 'submission_id': '1glypdf'}
{'comment': 'Oh he won’t have any hardships. Hardships are for plebians. And the republicans will just let it happen.', 'created': '2024-11-08 05:13:49', 'submission_id': '1glypdf'}
{'comment': 'Hardships for the poor WINDFALLS for the rich.', 'created': '2024-11-08 05:19:10', 'submission_id': '1glypdf'}
{'comment': 'Another billionair fine with corporate communism, but fuck the people! Am I right!!! High five!', 'created': '2024-11-08 05:41:41', 'submission_id': '1glypdf'}
{'comment': 'Why the hell do these people think they need more money? Their greed astounds me.', 'created': '2024-11-08 05:44:59', 'submission_id': '1glypdf'}
{'comment': 'People who voted for Trump because they want cheaper groceries and housing are in for a sobering surprise.', 'created': '2024-11-08 10:08:19', 'submission_id': '1glypdf'}
{'comment': 'I’m just looking forward to my incredibly cheap groceries. Fuck everything else.', 'created': '2024-11-08 13:32:45', 'submission_id': '1glypdf'}
{'comment': 'They’re going to be lined up to take their vigorous spanking, thank you sir may I have another. It would be funny, if it didn’t scare the piss outta me', 'created': '2024-11-08 15:35:18', 'submission_id': '1glypdf'}
{'comment': 'Analysis from the Washington Post noted that Musk’s cuts could gut programs like health care, food security and housing, impacting millions of Americans. Even previously untouchable sectors, such as Social Security and the military, may be affected.\xa0\n\nOh goodie.', 'created': '2024-11-08 01:54:15', 'submission_id': '1glypdf'}
{'comment': 'Surely to god Musk isn’t getting a senate confirmation?', 'created': '2024-11-07 23:55:40', 'submission_id': '1glypdf'}
{'comment': 'The first question I will ask people when they begin complaining about the economy/inflation/ or issues with government services is who they voted for. If they say Trump or didn’t vote I will tell them it was their fault and they have no right to complain.', 'created': '2024-11-08 00:18:14', 'submission_id': '1glypdf'}
{'comment': "#COME ON PATRIOTS LET'S MARCH PEACEFULLY TO THE CAPITAL, ARGHHHH!", 'created': '2024-11-08 00:32:57', 'submission_id': '1glypdf'}
{'comment': 'lolololol', 'created': '2024-11-08 00:44:39', 'submission_id': '1glypdf'}
{'comment': 'More than normal?', 'created': '2024-11-08 01:31:54', 'submission_id': '1glypdf'}
{'comment': 'First musk forces hard times on everyone and trump makes most of his followers thank him for it. Worked for Regan. Then left bush senior holding the bag. Only took 12 years to did ourselves of it', 'created': '2024-11-08 02:10:06', 'submission_id': '1glypdf'}
{'comment': 'We’re gonna, kinda fuck up your life for a while so we don’t have to pay taxes', 'created': '2024-11-08 02:13:35', 'submission_id': '1glypdf'}
{'comment': 'Brace for deportation, immigrant!', 'created': '2024-11-08 02:16:11', 'submission_id': '1glypdf'}
{'comment': 'Hurry to mars!', 'created': '2024-11-08 02:17:31', 'submission_id': '1glypdf'}
{'comment': 'cute', 'created': '2024-11-08 02:22:35', 'submission_id': '1glypdf'}
{'comment': 'Brace for hardship.....\nWhile bracing for sweeping cooperate tax cuts....\nWhile bracing for price busting tariffs....\nWhile bracing for mass deportation....', 'created': '2024-11-08 02:23:41', 'submission_id': '1glypdf'}
{'comment': "People, prioritize your peace. Political discord will be toxic and people will engage in discord like they are defending their sports team. It will be like movement Atheism in the 2010's. Once they have nobody to argue with, they will turn on each other. It will be a rough 2 - 4 years but, you can control what you allow in your life. Choose peace.\n\nWith that being said, I will be abstaining from political discord for a while!", 'created': '2024-11-08 02:55:16', 'submission_id': '1glypdf'}
{'comment': 'Full quote\n\n“We have to reduce spending to live within our means,” Musk said. “And, you know, that necessarily involves some temporary hardship, but it will ensure long-term prosperity.”', 'created': '2024-11-08 03:06:40', 'submission_id': '1glypdf'}
{'comment': 'Yeah trump\nWill only benefit the rich. He didn’t even deny that during the debate when called out.', 'created': '2024-11-08 03:18:10', 'submission_id': '1glypdf'}
{'comment': 'He just has to hurt the “right people” and it will be accepted if not celebrated.', 'created': '2024-11-08 03:22:05', 'submission_id': '1glypdf'}
{'comment': 'Well… if rev cuts are more military… I can live with it', 'created': '2024-11-08 04:38:10', 'submission_id': '1glypdf'}
{'comment': "Elmo, I bet you're going to suffer a lot worse in the long run.", 'created': '2024-11-08 05:08:34', 'submission_id': '1glypdf'}
{'comment': 'Desperate people are easier to control. Fascism 101.', 'created': '2024-11-08 06:48:50', 'submission_id': '1glypdf'}
{'comment': 'The new White House. Now with double the malignant narcissists!', 'created': '2024-11-08 10:05:21', 'submission_id': '1glypdf'}
{'comment': "I am sure he'll suffer just as bad!", 'created': '2024-11-08 13:54:35', 'submission_id': '1glypdf'}
{'comment': 'Couldn’t tax the wealthy of which have used the backs of those he is asking to accept hardship. No no no, not their problem', 'created': '2024-11-08 18:02:14', 'submission_id': '1glypdf'}
{'comment': 'From the mouth of the richest human in the world. And he’s a loon.', 'created': '2024-11-08 21:57:45', 'submission_id': '1glypdf'}
{'comment': 'He’s taking inspiration from Javier Milei, who did this in Argentina for better or worse', 'created': '2024-11-08 00:17:27', 'submission_id': '1glypdf'}
{'comment': "HAHA.. I don't feel remorse for those.. as a business owner.. I am getting get some sweet tax breaks, I will be making more money the next 4 years", 'created': '2024-11-07 23:02:23', 'submission_id': '1glypdf'}
{'comment': '“We have to reduce spending to live within our means,” Musk said. “And, you know, that necessarily involves some temporary hardship, but it will ensure long-term prosperity.”\n\nWhat a load of BS.', 'created': '2024-11-07 21:39:19', 'submission_id': '1glypdf'}
{'comment': 'Cool. They voted economy and wanted things to be better. Can’t wait til they see what they voted for.', 'created': '2024-11-07 22:22:18', 'submission_id': '1glypdf'}
{'comment': 'Apartheid South African migrant', 'created': '2024-11-07 23:58:50', 'submission_id': '1glypdf'}
{'comment': 'Sadly, people wanted this', 'created': '2024-11-07 22:12:06', 'submission_id': '1glypdf'}
{'comment': 'The people who voted for this were like “yeah you all need to brace for hardship…”', 'created': '2024-11-07 22:26:24', 'submission_id': '1glypdf'}
{'comment': "Trump really exposed the IQ of this country. We're an embarrassment to the world", 'created': '2024-11-08 02:42:39', 'submission_id': '1glypdf'}
{'comment': 'Brace for recession because I want to buy a ton of companies at discount prices.', 'created': '2024-11-08 00:36:29', 'submission_id': '1glypdf'}
{'comment': 'Imagine if Hillary said this. Or any Democrat.', 'created': '2024-11-08 02:38:58', 'submission_id': '1glypdf'}
{'comment': 'You know how Iron Man in the Marvel universe is now going to be Doctor Doom?.....', 'created': '2024-11-08 02:50:59', 'submission_id': '1glypdf'}
{'comment': "Whatever will get them what they want. Cheap eggs. Restorting toxic masculinity. Protecting wealth. Terrorizing people of color/women/etc.\n\nIt's basically not a party anymore. It's a coalition of selfish, narcissistic sociopaths working together for personal reasons.", 'created': '2024-11-08 04:13:29', 'submission_id': '1glypdf'}
{'comment': "They voted for hardship under the mistaken belief that they were voting to end hardship.\n\nThese people can't stomach higher interest rates to counter inflation, no way they'll be able to tolerate Musk's plans to counter whatever it is he's claiming to fight.", 'created': '2024-11-08 10:09:06', 'submission_id': '1glypdf'}
{'comment': "We are floating him. He faces no hardship though. There's a problem with that.", 'created': '2024-11-08 12:28:45', 'submission_id': '1glypdf'}
{'comment': "He even told them before. And he didn't sugarcode it.", 'created': '2024-11-08 13:55:07', 'submission_id': '1glypdf'}
{'comment': 'There’s a lot of truth here. Dems try to scare voters with hypothetical threats that actually WILL happen if MAGA takes power. But MAGA just went ahead and invented fake threats and claimed these are already happening now (eating pets, kids getting surgery at school, etc.). \n\nGuess which method seems to be more effective.', 'created': '2024-11-07 23:20:38', 'submission_id': '1glypdf'}
{'comment': 'They will blame everyone but the dear leader.', 'created': '2024-11-07 21:42:16', 'submission_id': '1glypdf'}
{'comment': 'Isn’t that what almost every modern Democratic President has had to do?', 'created': '2024-11-07 21:43:59', 'submission_id': '1glypdf'}
{'comment': 'If there’s an america to build back by then', 'created': '2024-11-07 23:44:30', 'submission_id': '1glypdf'}
{'comment': 'I’m sitting back and hoping a stroke or heart attack will do its thing. It would create a void in the Republican Party because they’ve had their heads up trumps ass so much they wouldn’t know what to do without him.', 'created': '2024-11-08 00:43:40', 'submission_id': '1glypdf'}
{'comment': ">I think the Democratic game plan might unfortunately be to sit back and wait for Trump to destroy the country,\n\nThey're still going to blame Biden for it and continue to vote for people to keep fucking up the economy. If this is the game, it's a fucking stupid one.\n\nDemocrats needs to vote. I'm sorry, if the candidate sucks you still need to vote. Not voting caused an even *worse* candidate to get elected. \n\nThat's how Trump got elected in the first place.", 'created': '2024-11-08 02:23:28', 'submission_id': '1glypdf'}
{'comment': 'I think you’re right but it has to get so bad that they’re suffering for a LONG time before his supporters even START to ask themselves, “did I make a mistake?”\n\nI bet it would take at least ten years.', 'created': '2024-11-08 00:20:17', 'submission_id': '1glypdf'}
{'comment': "I'm just waiting for the next pandemic, possibly a deadly Avian flu, while we have anti Vax wackos in power...", 'created': '2024-11-08 02:36:22', 'submission_id': '1glypdf'}
{'comment': 'Didn’t we already have buyer’s remorse & voted him out once already? Which makes this extra stupid', 'created': '2024-11-08 02:15:57', 'submission_id': '1glypdf'}
{'comment': 'There’s really no other choice.\n\nWithout the House or Senate, they’re going to be reduced to groveling to more moderate Republicans for two years.', 'created': '2024-11-08 02:46:00', 'submission_id': '1glypdf'}
{'comment': 'This seems to be true of everything with the right. "Pro birth wasn\'t supposed to affect me". "Anti immigrant laws weren\'t supposed to affect me!" "Anti gay laws weren\'t supposed to affect my family!" And on and on and on', 'created': '2024-11-08 02:55:35', 'submission_id': '1glypdf'}
{'comment': "As a voter who did everything I could to stop this, that's exactly my game plan.\n \nWe got blown out and now it's time to see what they do.", 'created': '2024-11-08 02:59:48', 'submission_id': '1glypdf'}
{'comment': "I'm sitting here watching my campfire. Symbolic that the country is about to burn down", 'created': '2024-11-08 04:01:32', 'submission_id': '1glypdf'}
{'comment': 'It’s what the GOP have done for decades. They block votes or filibuster good bills that would help Americans so that democrats don’t look good. This has worked because many American voters are not all that interested in the why.', 'created': '2024-11-08 05:04:26', 'submission_id': '1glypdf'}
{'comment': 'Well little bit more - Dems will see the first litmus test in Mid Terms \'26. Remember in \'18 it was start of that shift. Simple prices going up around the place (please please please dont let donnie roll out tariffs on everything) and think population wont say "Oh we are looking at the bigger picture here" when fuel is 50% more than in \'24?', 'created': '2024-11-08 12:33:05', 'submission_id': '1glypdf'}
{'comment': 'I rather find a few investment bankers on 5th Avenue and gnaw at their legs for a few hours. Make them feel pain.', 'created': '2024-11-08 00:16:07', 'submission_id': '1glypdf'}
{'comment': "I'm stockpiling canned foods starting NOW", 'created': '2024-11-08 04:53:54', 'submission_id': '1glypdf'}
{'comment': 'Billionaires love recessions. They can buy everything at cheap prices.', 'created': '2024-11-07 23:53:31', 'submission_id': '1glypdf'}
{'comment': "He'll die some day, and statistically before I do. That's the best we're going to get. I used to be enraptured by the idea that we might be able to end the process of aging and achieve biological immortality in my lifetime, now I think it's the worst idea in the history of bad ideas and we should actively disrupt any attempt to achieve it.", 'created': '2024-11-08 02:52:22', 'submission_id': '1glypdf'}
{'comment': 'Real-life villains have plot armor.', 'created': '2024-11-08 01:55:01', 'submission_id': '1glypdf'}
{'comment': 'Nope. The rich never do.', 'created': '2024-11-08 02:32:44', 'submission_id': '1glypdf'}
{'comment': "I love the double standard. They mocked Janet Yellen for saying the inflation was transitory.\n\nBut now? When Elon says Trump will bring on transitory pain, silence. It's our bitter medicine, and we need to swallow it quickly.\n\nInsanity.", 'created': '2024-11-08 04:52:04', 'submission_id': '1glypdf'}
{'comment': "I'll pass. 🤢", 'created': '2024-11-08 02:39:29', 'submission_id': '1glypdf'}
{'comment': 'Like they said I guess, try to cut back on what you can to save money. If it looks like another pandemic is coming, make sure you order enough masks and Clorox and TP and hand sanitizer before it’s impossible to get. Learn from the past, that sort of thing.\n\n\nWhatever happens do NOT cash out 401k for many reasons, but one is unemployment will be denied. At least in Massachusetts. 😑', 'created': '2024-11-08 03:40:37', 'submission_id': '1glypdf'}
{'comment': 'Be rich, white and a man? \nSorry I don’t have a better answer.', 'created': '2024-11-08 18:51:30', 'submission_id': '1glypdf'}
{'comment': 'Great idea. We have already started doing this. We are not rich but live relatively comfortably but are cutting back significantly. Not only because we expect the economy to go to hell under Trump but we also want money behind us if we need to move out of a red state. We go out at least a few times a week and usually travel twice a year…nope, not anymore', 'created': '2024-11-07 20:56:24', 'submission_id': '1glypdf'}
{'comment': 'this is actually a good idea, dont go out to eat, etc', 'created': '2024-11-07 23:43:23', 'submission_id': '1glypdf'}
{'comment': 'I’m supposed to be planning my wedding (we’re engaged but haven’t set a date yet) and since yesterday I’m seriously considering just eloping and having a party as a reception because man I don’t want to have to pay even more than I was already planning to.', 'created': '2024-11-08 01:48:59', 'submission_id': '1glypdf'}
{'comment': 'Increase spending on ammo....', 'created': '2024-11-08 02:39:13', 'submission_id': '1glypdf'}
{'comment': 'I’m planning on giving my charitable donations so that they are used outside the country. I feel like my country will be under “occupation” soon, and likely unrecognizable to me to some extent soon.', 'created': '2024-11-07 22:14:29', 'submission_id': '1glypdf'}
{'comment': 'Fuck that, every liberal/non-Trumpy move your 401k to no investment. Then when they crater the economy, sink it into index funds.\n\nI have always moved my money anytime a Republican enters office, within a year or so. Then near the end of their term, I reinvest it. Haven’t lost a dime and graph goes up and to the right.', 'created': '2024-11-08 05:34:47', 'submission_id': '1glypdf'}
{'comment': 'I’m going to keep spending, but even more targeted than before. I understand where you’re coming from - but I will make the choices on where to leave my $$ very carefully.', 'created': '2024-11-08 18:56:32', 'submission_id': '1glypdf'}
{'comment': 'Wait? What about gas?!', 'created': '2024-11-08 01:17:24', 'submission_id': '1glypdf'}
{'comment': 'Fuck Elmo.', 'created': '2024-11-07 20:32:31', 'submission_id': '1glypdf'}
{'comment': ' But he can pardon his underlings.', 'created': '2024-11-08 04:20:23', 'submission_id': '1glypdf'}
{'comment': 'Should’ve let the south go when we had the chance', 'created': '2024-11-08 02:44:57', 'submission_id': '1glypdf'}
{'comment': 'The real solution is to raise taxes on the wealthy, which is what Kamala planned to do.\n\nI hate that they talk about social security as though it’s normal government spending. We’ve all paid into it, cutting it is literally stealing from all of us.', 'created': '2024-11-08 02:54:53', 'submission_id': '1glypdf'}
{'comment': 'Assuming there’s a democracy left.', 'created': '2024-11-08 02:23:09', 'submission_id': '1glypdf'}
{'comment': "He's white", 'created': '2024-11-08 02:04:15', 'submission_id': '1glypdf'}
{'comment': "That's what they voted for, as evident this past Tuesday.", 'created': '2024-11-08 04:25:14', 'submission_id': '1glypdf'}
{'comment': "We're 100% fucked. Nothing we can do except protest and fuck shit up", 'created': '2024-11-07 23:50:37', 'submission_id': '1glypdf'}
{'comment': 'Other working class folks will kill ya for their billionaire overlords.', 'created': '2024-11-08 02:43:48', 'submission_id': '1glypdf'}
{'comment': 'The old bait and switch. One of a conman’s best tricks.', 'created': '2024-11-08 08:00:52', 'submission_id': '1glypdf'}
{'comment': 'Yes, eggs at $2 ea.\n\n... per egg.', 'created': '2024-11-08 15:05:48', 'submission_id': '1glypdf'}
{'comment': 'And the Trumpers are saying we have nothing to worry about, just trust God, stay positive, yadda yadda yadda.', 'created': '2024-11-08 04:27:00', 'submission_id': '1glypdf'}
{'comment': 'Yeah, fuck the rest of us I guess 🙄🙄\n\nHope your business fails with that attitude', 'created': '2024-11-07 23:50:08', 'submission_id': '1glypdf'}
{'comment': 'Long term prosperity for who??', 'created': '2024-11-07 22:10:59', 'submission_id': '1glypdf'}
{'comment': 'Wait... let me get this straight. Elon, Trump and the rest of their ilk foamed at the mouth about how Biden caused what we all knew was going to be a temporary but painful burden on the economy with balancing out this recession but now these very same BITCH ASS BILLIONAIRES are telling everyone to buckle down and sacrifice even more, bracing for more tax cuts on the rich? \n\nHA!!!! What losers!', 'created': '2024-11-08 00:10:39', 'submission_id': '1glypdf'}
{'comment': 'For people who might not know.\n\nYou balance a budget by cutting costs and increasing income.\n\nHarris wanted to increase taxes on the 500k and up crowd.\n\nMusk and Trump want the peasants to pay for it. America decided to side with the uber wealthy.', 'created': '2024-11-08 01:53:09', 'submission_id': '1glypdf'}
{'comment': "Reducing spending is tantamount to deflation and a recession. This won't end well for the administration in 4 years.", 'created': '2024-11-07 23:28:50', 'submission_id': '1glypdf'}
{'comment': "Reduce your spending so the billionaires can afford a new spaceship or yacht. Stop being so selfish you don't need luxuries like food.", 'created': '2024-11-08 01:59:01', 'submission_id': '1glypdf'}
{'comment': 'Oh, and you need to have plenty of children. - Muskrat', 'created': '2024-11-08 01:32:19', 'submission_id': '1glypdf'}
{'comment': 'While billionaires like himself enjoy tax breaks that put us in the position.', 'created': '2024-11-08 01:41:19', 'submission_id': '1glypdf'}
{'comment': "Lmao I'm agnostic but I'm pretty sure I died and went to hell.", 'created': '2024-11-08 04:00:04', 'submission_id': '1glypdf'}
{'comment': "Curb your spending unless you're buying a Tesla, people.", 'created': '2024-11-08 01:56:10', 'submission_id': '1glypdf'}
{'comment': 'In the meantime I will give myself government founding for my businesses', 'created': '2024-11-08 02:08:45', 'submission_id': '1glypdf'}
{'comment': 'Sounds like Communist propaganda. Usually when dictators make a nation switch to a communist structure they prepare the people for the short term hardship for the “betterment of the future of the people”. This is text book', 'created': '2024-11-08 03:31:58', 'submission_id': '1glypdf'}
{'comment': 'When living within his means, mean that he can only buy one country!', 'created': '2024-11-08 04:54:02', 'submission_id': '1glypdf'}
{'comment': 'Around the world people dont see the big issues. As the majority of voters on Tuesday said - prices around me were more expensive in \'24 than in \'20 and donnie told us "Ill fix it"', 'created': '2024-11-08 12:22:11', 'submission_id': '1glypdf'}
{'comment': 'Someone told me a story yesterday that Elon has a goal to be the world\'s first TRILLIONAIRE. I guess have unfettered access to the US Govt could get him there. \n\n"Wait, I have access to Fort Knox?" Elon', 'created': '2024-11-08 12:23:17', 'submission_id': '1glypdf'}
{'comment': 'I mean, I might lose my house, but whoo WASP male supremacy, I guess?', 'created': '2024-11-08 03:10:47', 'submission_id': '1glypdf'}
{'comment': 'Don’t forget slave owner, those emeralds don’t mine themselves', 'created': '2024-11-08 02:20:06', 'submission_id': '1glypdf'}
{'comment': 'Why do we all know how this will end for the working class in America. Im a member of a gun club and just sit in the corner drinking my socialized cost beer and keep looking for a decent plumber.', 'created': '2024-11-08 12:29:29', 'submission_id': '1glypdf'}
{'comment': 'Dont fret it - American living in UK - they fuked themselves with Brexit and now voted that Govt out with the next one who said "We will fix it" and second one taxes got raised.', 'created': '2024-11-08 12:30:51', 'submission_id': '1glypdf'}
{'comment': 'I fucking hate this country', 'created': '2024-11-07 23:49:00', 'submission_id': '1glypdf'}
{'comment': 'rump and his billionaire friends spent 8+ years grooming them. dems only spent a couple months.', 'created': '2024-11-08 03:58:34', 'submission_id': '1glypdf'}
{'comment': 'Americans cannot vote for future scenarios or hypothetical future disaster. If it is not in their face every moment they don’t care. It’s so short sighted.', 'created': '2024-11-08 06:23:30', 'submission_id': '1glypdf'}
{'comment': 'Yes but this time we are close to Trump having a popular mandate, along with almost all the power he needs to implement what he wants. Any resistance in this environment will be feeble.', 'created': '2024-11-08 00:37:31', 'submission_id': '1glypdf'}
{'comment': 'My father, who is a very staunch republican, will probably still say that he “doesn’t like big government spending, so I won’t vote democratic” in 2028. Even after we see what Trump will do to the economy. It probably never was about the price of gas, I’m convinced at least some of MAGA knew about these tariffs but just genuinely didn’t care.', 'created': '2024-11-08 04:20:28', 'submission_id': '1glypdf'}
{'comment': "There won't be. We won't survive this intact.", 'created': '2024-11-08 02:37:00', 'submission_id': '1glypdf'}
{'comment': 'Thiel and co. are banking on it. Watch them push him out in two years if he doesn’t die so Vance (their REAL pick) can step in.', 'created': '2024-11-08 02:23:46', 'submission_id': '1glypdf'}
{'comment': 'No - \'26 mid terms maybe they could give him a pass (I think Biden\'s handling of the Covid economy will really be motoring well in \'26) but if prices rise and MAGA people go in \'28 "boy why is my gas now 50% more than in \'24) they will again vote GOP out.', 'created': '2024-11-08 12:37:15', 'submission_id': '1glypdf'}
{'comment': 'Probably shits rampant at chicken farms right now', 'created': '2024-11-08 02:59:19', 'submission_id': '1glypdf'}
{'comment': 'I heard that H5N1 might be getting worse. We’ll see how this pandemic goes 🤷\u200d♀️', 'created': '2024-11-08 03:34:04', 'submission_id': '1glypdf'}
{'comment': 'People have very short term memories', 'created': '2024-11-08 03:43:56', 'submission_id': '1glypdf'}
{'comment': 'Um, I mean ok, but sounds pretty unpleasant for you too', 'created': '2024-11-08 03:08:27', 'submission_id': '1glypdf'}
{'comment': 'He’s been very out of breath and tired as of late. Maybe his heart is failing and Vance is just as bad but he doesn’t have the cult of personality trump has, and he isn’t belligerent like trump. He won’t be taken as seriously as trump, it’s one term thankfully….but we’ll have to see the country burn before there are pieces to pick up. I’m 27, I’m tired of once in a lifetime recessions, pandemics, the inability to survive on my own even with a good paying and highly skilled job. This is just going to make it worse and it sucks.', 'created': '2024-11-08 05:06:34', 'submission_id': '1glypdf'}
{'comment': "Women have started the 4B celibacy movement, men need to start making good liberal role models to counter the rightwing as well. We men need to do our part and try to show kindness where due. I'm embarassed that my gender has so many incels, we could be doing better.", 'created': '2024-11-07 21:37:14', 'submission_id': '1glypdf'}
{'comment': 'Absolutely. No more vacations and home-made dinners.', 'created': '2024-11-07 21:02:31', 'submission_id': '1glypdf'}
{'comment': 'Exactly what we are doing. We are saving as much as we can, buying as little as possible, and bettter embracing what we already have. We’ve talked as a family about where we might go to get out of our increasingly red state.', 'created': '2024-11-08 02:03:48', 'submission_id': '1glypdf'}
{'comment': 'Weddings are a waste of money anyway. Just have a fun party with your family and friends, make it a potluck and maybe get a keg and a couple of cases of wine or make it byob.\n\nYou’ll be just as married as you would be if you’d spent tons of money on it.', 'created': '2024-11-08 02:50:34', 'submission_id': '1glypdf'}
{'comment': "That's already a smart thing to do regardless of who's in power.", 'created': '2024-11-08 03:39:47', 'submission_id': '1glypdf'}
{'comment': 'This right here. Just to be safe, of course.', 'created': '2024-11-08 04:21:58', 'submission_id': '1glypdf'}
{'comment': 'And bacon. Lots of bacon.', 'created': '2024-11-08 05:03:37', 'submission_id': '1glypdf'}
{'comment': 'Some us are down here are holding out, he didn’t win every state by large margins. I hate how the party is quick to abandon large swaths of the country it’s probably why we lost in the first place. I live in Florida and the last three presidential cycles democrats have spent nothing here, we used to be a central place for candidates to come make their pitch now there’s nothing. We won’t win again if we continue to abandon places we think are just republican.', 'created': '2024-11-08 07:59:26', 'submission_id': '1glypdf'}
{'comment': 'We’ve paid into *everything*', 'created': '2024-11-08 18:41:29', 'submission_id': '1glypdf'}
{'comment': 'And rich', 'created': '2024-11-08 03:42:53', 'submission_id': '1glypdf'}
{'comment': "Don't ask questions you already know the answers to", 'created': '2024-11-07 22:14:27', 'submission_id': '1glypdf'}
{'comment': 'Billionaires', 'created': '2024-11-07 23:26:40', 'submission_id': '1glypdf'}
{'comment': 'Exactly. Let’s keep an eye on his net worth.', 'created': '2024-11-07 23:55:02', 'submission_id': '1glypdf'}
{'comment': 'Elon of course! Tesla and SpaceX both receive tons of money from government contracts or incentives, now that his best buddy is president, that government money should be pouring in.', 'created': '2024-11-08 00:14:32', 'submission_id': '1glypdf'}
{'comment': 'Bloody peasant', 'created': '2024-11-08 00:15:03', 'submission_id': '1glypdf'}
{'comment': 'Musk and anyone else who helps embezzle your money. Trump for sure.', 'created': '2024-11-08 05:28:30', 'submission_id': '1glypdf'}
{'comment': 'It’s an incredible self own!! We hate the Dems so let’s get our economy from a multi bankrupted criminal con man and a weird dude who overspent billions on a social media company to feed his ego.', 'created': '2024-11-08 04:55:51', 'submission_id': '1glypdf'}
{'comment': "Again, the algorithm's pick that up and spun it back to the working class that Harris wanted to increase taxes. Leaving out the part of the 500K and up crowd.", 'created': '2024-11-08 12:24:55', 'submission_id': '1glypdf'}
{'comment': "Yes it will. The rubes will blame liberals like they always have. There's always a boogeyman just around the corner for conservatives", 'created': '2024-11-07 23:47:50', 'submission_id': '1glypdf'}
{'comment': 'If we have a midterm election in 2026, the Democrats will take the House and possible the Senate if it is too bad.', 'created': '2024-11-08 00:46:09', 'submission_id': '1glypdf'}
{'comment': 'But ultimately, eggs will be cheaper, right? /s', 'created': '2024-11-08 03:07:25', 'submission_id': '1glypdf'}
{'comment': 'This won’t end ever', 'created': '2024-11-08 06:18:03', 'submission_id': '1glypdf'}
{'comment': "by that time the damage will have been done. it'll take decades to get the country back in shape after that, meanwhile a lot of people will die. that's one way to weed out the old and the infirm, you know, leeches on society.", 'created': '2024-11-08 12:49:38', 'submission_id': '1glypdf'}
{'comment': 'Didnt elon offer to impregnate Taylor Swift? He could be america\'s surragate "[prima nocta" ](https://en.wikipedia.org/wiki/Droit_du_seigneur)guy?', 'created': '2024-11-08 12:26:30', 'submission_id': '1glypdf'}
{'comment': "https://preview.redd.it/gl6p9jboxnzd1.png?width=474&format=png&auto=webp&s=aa49b4ce60195715d8014b2f99d524650722d46e\n\nand this is from Reagan and the 70's MEME", 'created': '2024-11-08 12:27:34', 'submission_id': '1glypdf'}
{'comment': 'I don’t think it will be too hard for him to convince Trump to hand him a blank check to spacex to use to get the new “space force” to conquer Mars or something similar so seems like an attainable goal', 'created': '2024-11-08 16:58:55', 'submission_id': '1glypdf'}
{'comment': 'Blood Diamond 2.0 "Elon\'s happy times version"', 'created': '2024-11-08 12:28:13', 'submission_id': '1glypdf'}
{'comment': 'We all know that economic hardship will fall on the working man', 'created': '2024-11-08 12:30:38', 'submission_id': '1glypdf'}
{'comment': "Thanks, but Trump said we'll never have to vote again. So the foundation of democracy itself is in danger here.", 'created': '2024-11-08 12:51:34', 'submission_id': '1glypdf'}
{'comment': "lol I hate people in general so it's convenient for me to say that I REALLY hate this country, because of the people in it.", 'created': '2024-11-08 00:13:08', 'submission_id': '1glypdf'}
{'comment': 'I’m so over how dumb everyone is. I seriously wish I could leave but I’m a poor pleb. I hear New Zealand is nice though.', 'created': '2024-11-08 02:31:45', 'submission_id': '1glypdf'}
{'comment': '8 years?\n\nDecades now.', 'created': '2024-11-08 10:12:27', 'submission_id': '1glypdf'}
{'comment': 'Not to mention dealt with in harsh ways.', 'created': '2024-11-08 16:54:42', 'submission_id': '1glypdf'}
{'comment': 'They are absolutely gonna mitch McConnell him', 'created': '2024-11-08 19:42:31', 'submission_id': '1glypdf'}
{'comment': "yes, but JD is not donnie. He can get them to chant but we will really forgot the Media loved all donnie stunts, he is promoting a Bible - Morning Joe is all they talk about. He is doing a gig at McDonald's MSNBC will talk about how E-coli now is spreading across McDonald's kingdom. donnie was all anyone talked about for last 15 months.", 'created': '2024-11-08 12:35:46', 'submission_id': '1glypdf'}
{'comment': 'Gas prices were high on day 1 of Biden’s presidency. A rational human would think, “hey, they’re probably high now because of the previous president’s policies.” But that’s not what happened. Those “I did this” stickers on gas pumps appeared IMMEDIATELY after he took office. It was the dumbest s$&! I’ve ever seen.\n\nI see ZERO chance that voters will be able to understand the correlation.', 'created': '2024-11-08 16:08:24', 'submission_id': '1glypdf'}
{'comment': "If I get tranquilized/euthanized I won't be here to witness the chaos that will ensue, sooo there's that 🤷🏻\u200d♂️", 'created': '2024-11-08 03:12:36', 'submission_id': '1glypdf'}
{'comment': 'The thing is that what made misogyny sexy to those kids was that it showed men having lots of sex. Like; that was the boast and they either used someone else\'s porn to "prove" it or uploaded their own porn. \n\nIf liberals can\'t or won\'t play the same game, we\'re not going to have the same wins.\n\nAnd yes, I know what it appears I\'m advocating. I\'m not real keen on it myself but ...', 'created': '2024-11-07 22:23:54', 'submission_id': '1glypdf'}
{'comment': "Maybe vacation in your blue state or other blue states? I think it's going to be important to be discerning about where we spend our money. Although I'm aware that is likely to mean buying gas in a red state.", 'created': '2024-11-07 22:19:16', 'submission_id': '1glypdf'}
{'comment': 'I’m really leaning towards something like that. Save the money to send the kids to college.', 'created': '2024-11-08 02:54:39', 'submission_id': '1glypdf'}
{'comment': 'Sure, but social security payments are fundamentally different. They are not a tax and they don’t go into the general fund.\n\nThe word “entitlement” has a negative association these days because people equate it with a false sense of entitlement, but Social Security is an entitlement in the same way that your savings account at the bank is.\n\nIf a bank announced that they needed to take 10% of everyone’s savings to stay in business, nobody would stand for it. Social security is supposed to be the same.', 'created': '2024-11-08 18:49:13', 'submission_id': '1glypdf'}
{'comment': 'And I bet all his citizenship issues are gone within 30 days', 'created': '2024-11-08 01:52:29', 'submission_id': '1glypdf'}
{'comment': 'They need to be made to own this mess, every fucking minute', 'created': '2024-11-08 04:30:30', 'submission_id': '1glypdf'}
{'comment': 'Yeah but the plan is that the bottom will fall out just after Dems get a little control back. Then all the blame can be lumped back onto the party that’s currently spinning out. The Democratic Party has a huge mountain to climb here for the next half decade and any slip-ups are gonna be broadcasted ten-fold by MSM and social media algorithms. It’s gonna be rough.', 'created': '2024-11-08 02:57:33', 'submission_id': '1glypdf'}
{'comment': 'No they won’t. This is a cult', 'created': '2024-11-08 06:18:34', 'submission_id': '1glypdf'}
{'comment': "That's the plan. The pain starts when Dems Congress so that Trump blames the Democrats and morons believe it.", 'created': '2024-11-08 16:40:39', 'submission_id': '1glypdf'}
{'comment': 'Guess the $130M Elon gave to trump could turn out to be his greatest investment returns.', 'created': '2024-11-08 17:46:54', 'submission_id': '1glypdf'}
{'comment': 'Read what inside the Dem camp Bernie is shouting about. "Get back in touch with the working class Dems". simple but hard concept after so many rub shoulders with Beyonce, Lady Gaga and Mark Cuban to suddenly have to talk with a guy who has paint on his sleeve.', 'created': '2024-11-08 14:47:46', 'submission_id': '1glypdf'}
{'comment': 'Ditto to that! Lol', 'created': '2024-11-08 04:01:58', 'submission_id': '1glypdf'}
{'comment': 'I get that', 'created': '2024-11-08 04:13:19', 'submission_id': '1glypdf'}
{'comment': 'No chance to move there. They are VERY strict on entry requirements and you can not over stay any visa you have or will get kicked out.', 'created': '2024-11-08 12:33:57', 'submission_id': '1glypdf'}
{'comment': "I remember that! In fairness by mid '21 I was paying $5 a gallon - but because of Covid-19 and work from I was driving 75% less. Now Im perfect at about 50% less driving from '19 and paying on Monday $2.85 a gallon which was '19 prices for me.", 'created': '2024-11-08 16:10:41', 'submission_id': '1glypdf'}
{'comment': 'Dare I say... who would have thought it would be the Liberal Left in leading the way for mature men to enter celibacy, get vasectomies, wear condoms and not have children at all, when the FAR MAGA RIGHT and their incels enjoy porn, sex, spreading their seed and having many many children due to maintaining their "patriarchal legacy" and not wanting OTHERS to succeed.', 'created': '2024-11-08 00:23:07', 'submission_id': '1glypdf'}
{'comment': "That's a really good idea; however, the objective is to bugger the economy and cause increased unemployment. Maybe when the Trumpists are unemployed, crime is surging and they cannot afford food to eat they may reconsider.", 'created': '2024-11-08 13:43:56', 'submission_id': '1glypdf'}
{'comment': 'Wont matter', 'created': '2024-11-08 06:18:57', 'submission_id': '1glypdf'}
{'comment': 'It’s pretty obvious he considers his support of trump an investment and is expecting a significant return.', 'created': '2024-11-08 18:24:38', 'submission_id': '1glypdf'}
{'comment': 'It’s not impossible. Trump is buddies with the world’s richest man, but somehow was able to convince poor and middle-class folks to vote for him….', 'created': '2024-11-08 15:24:51', 'submission_id': '1glypdf'}
{'comment': 'Well, the old Christian value of restraint and responsibility was probably never was actually. But generally speaking any actual value is usually embraced by liberalism and perversion is typically a conservative thing because they get off on repressing others while indulging themselves.', 'created': '2024-11-08 00:27:09', 'submission_id': '1glypdf'}
{'comment': 'This! There is no cultural voluntary celibacy. There IS, however, a lot of accidental pregnancies leading to forced/imposed marriages and a bunch of old people watching with glee as their traditions carry on.', 'created': '2024-11-08 02:32:06', 'submission_id': '1glypdf'}
{'comment': None, 'created': '2024-11-07 20:32:00', 'submission_id': '1glxwdb'}
{'comment': 'I hope she stays safe these next four years', 'created': '2024-11-07 20:10:54', 'submission_id': '1glxwdb'}
{'comment': 'Trump will send goons to get her, or doc her and sic the deplorables on her.', 'created': '2024-11-07 20:57:25', 'submission_id': '1glxwdb'}
{'comment': 'This honestly is the only bit of hope and comfort I’ve seen.', 'created': '2024-11-07 23:11:50', 'submission_id': '1glxwdb'}
{'comment': 'one of the things dems need to do is hold rump accountable for every disaster he causes immediately and continuously till the next election and beyond. Scream and yell about every problem he causes!', 'created': '2024-11-08 04:39:21', 'submission_id': '1glxwdb'}
{'comment': '> Dams of sand', 'created': '2024-11-07 20:21:10', 'submission_id': '1glxwdb'}
{'comment': 'https://preview.redd.it/p5268e4kdkzd1.jpeg?width=2976&format=pjpg&auto=webp&s=89dddf70dbab145db64fd82b638ab37756fd8182', 'created': '2024-11-08 00:29:01', 'submission_id': '1glxwdb'}
{'comment': 'Honestly I hope the Biden administration is implementing its own contingency plans too.', 'created': '2024-11-08 13:05:50', 'submission_id': '1glxwdb'}
{'comment': 'wonder if she got the text...', 'created': '2024-11-07 21:46:22', 'submission_id': '1glxwdb'}
{'comment': 'This is a comforting thought, but it’s going to be hard to implement those plans with zero political power or authority. Unfortunately. Unless they are the greatest political strategists of this century - which is doubtful, given the election results. I think her comments signal an entry into national politics for Ms. James.', 'created': '2024-11-08 16:00:23', 'submission_id': '1glxwdb'}
{'comment': 'I hope so. I just want their whole party to burn. I want these people to be as hated as they should be. This stuff coming out where the influencers rub it in our faces (the project 2025, saying women are property)… not saying I’m violent but it’s like they want to be killed. They hate themselves. No love in those souls.', 'created': '2024-11-08 00:55:27', 'submission_id': '1glxwdb'}
{'comment': "Won't they all go to SCOTUS though?", 'created': '2024-11-08 00:28:55', 'submission_id': '1glxwdb'}
{'comment': 'Donate to ACLU', 'created': '2024-11-08 02:47:07', 'submission_id': '1glxwdb'}
{'comment': 'As soon as Trump implements his tariffs and prices go up and not down a good portion of the Republican base will turn on him. His followers will always be in his pocket but as soon as people are affected negatively by his policies they will care.', 'created': '2024-11-07 22:43:43', 'submission_id': '1glxwdb'}
{'comment': 'How can she prevent SCOTUS just upholding P2025 at every turn?', 'created': '2024-11-07 23:37:01', 'submission_id': '1glxwdb'}
{'comment': 'if it were that easy I dont think theyd look so scared', 'created': '2024-11-08 06:03:39', 'submission_id': '1glxwdb'}
{'comment': 'This', 'created': '2024-11-08 13:57:20', 'submission_id': '1glxwdb'}
{'comment': None, 'created': '2024-11-08 02:09:14', 'submission_id': '1glxwdb'}
{'comment': 'It takes time. We might have a Democratic congress by then.', 'created': '2024-11-08 01:13:34', 'submission_id': '1glxwdb'}
{'comment': 'Bribe them. If the right can do it so can we.', 'created': '2024-11-08 00:44:45', 'submission_id': '1glxwdb'}
{'comment': 'SCOTUS is definitely an issue but they have not consistently ruled in Trump’s favor. I don’t think they can be counted on to do every single thing republicans want.', 'created': '2024-11-08 13:54:27', 'submission_id': '1glxwdb'}
{'comment': 'No, they’ll blame that on Biden and Demmyxratic Obstrucktionism', 'created': '2024-11-07 23:40:17', 'submission_id': '1glxwdb'}
{'comment': "till he's gone (dead or incapacitated) they will believe his lies.", 'created': '2024-11-08 04:40:40', 'submission_id': '1glxwdb'}
{'comment': 'hes convinced them suffering is for the better good...its a cult, remember?', 'created': '2024-11-08 06:02:18', 'submission_id': '1glxwdb'}
{'comment': 'He can just do what Hitler did and take out eye watering amounts of national debt and run public projects etc. His successor can worry about the consequences', 'created': '2024-11-08 10:48:33', 'submission_id': '1glxwdb'}
{'comment': 'It takes time for cases to be brought before SCOTUS. Litigation takes forever. And that works to our advantage for once.', 'created': '2024-11-08 04:07:22', 'submission_id': '1glxwdb'}
{'comment': 'Along with what others are saying, we just humor the Supreme Court really. They have absolutely no way to enforce their will whatsoever. The Supreme Court could say something and the state could ignore it and what would happen?', 'created': '2024-11-08 13:56:29', 'submission_id': '1glxwdb'}
{'comment': 'Yo, Gov. Healey you better be having Massachusetts join them. I want my tax dollars to make a difference.', 'created': '2024-11-08 04:44:05', 'submission_id': '1glxwdb'}
{'comment': 'His base will yes. They would drink his piss and believe it was lemonade. But the other people that voted for him will care when their lives are negatively impacted.', 'created': '2024-11-08 01:15:29', 'submission_id': '1glxwdb'}
{'comment': 'start the filing at the lowest blue court so it has the farthest to go to get to scotus. use their own tactics', 'created': '2024-11-08 04:42:41', 'submission_id': '1glxwdb'}
{'comment': "Yet another reason why Biden needs to be filling vacant court seats, and Sotomeyer needs to retire so he can nominate someone on the way out. Trump is already likely to be able to replace Thomas, we don't need another RBG situation with Sotomeyer. SCOTUS is screwed for the rest of my life most likely, but we can maybe make it less screwed.", 'created': '2024-11-08 07:28:37', 'submission_id': '1glxwdb'}
{'comment': "Healey won't back down.\n\n\nShe is one hell of a fighter.", 'created': '2024-11-08 17:47:45', 'submission_id': '1glxwdb'}
{'comment': 'This is my only hope.', 'created': '2024-11-08 17:11:25', 'submission_id': '1glxwdb'}
{'comment': 'Absolutely no way in hell if Sotomayer leaves now that Biden would get a nominee through. History proves that.', 'created': '2024-11-08 07:42:24', 'submission_id': '1glxwdb'}
{'comment': 'It’s too late for that. Sotomayor’s seat would be filled by a conservative, don’t kid yourself. Lame duck Biden can’t get a nominee appointed.', 'created': '2024-11-08 16:05:37', 'submission_id': '1glxwdb'}
{'comment': 'ACB was shoved through last term.', 'created': '2024-11-08 18:58:16', 'submission_id': '1glxwdb'}
{'comment': 'Yeah because republicans allow conservatives to get away with that shit but always block democrats. See Merrick Garland at the end of Obama’s term.', 'created': '2024-11-08 19:43:43', 'submission_id': '1glxwdb'}
{'comment': 'It wasn’t even the end of his term! He still had almost a year left. Fuck Mitch McConnell.', 'created': '2024-11-08 19:58:25', 'submission_id': '1glxwdb'}
{'comment': 'Convenes not conceives.', 'created': '2024-11-07 20:42:40', 'submission_id': '1glx8t4'}
{'comment': "I live in Colorado and am considering a west coast move because I don't think we can stand as this island for very long. I think that if Project 2025 doesn't provide for it, Projects 2026 or 27 will plot to starve us out.", 'created': '2024-11-07 23:37:14', 'submission_id': '1glx8t4'}
{'comment': 'https://preview.redd.it/iljumqapdkzd1.jpeg?width=2976&format=pjpg&auto=webp&s=4404f422b6925ae35da64df3032143b3255b43c8', 'created': '2024-11-08 00:29:49', 'submission_id': '1glx8t4'}
{'comment': 'Lining up for 2028 I see. Good for him.', 'created': '2024-11-08 02:16:05', 'submission_id': '1glx8t4'}
{'comment': 'Either way, it’s quite impressive.', 'created': '2024-11-07 20:53:47', 'submission_id': '1glx8t4'}
{'comment': 'I still can’t believe that many people sat this one out and didn’t even vote. Welp, they have no right to complain now when shit hits the fan - they let others decide the outcome for them.\n\nI can almost understand not liking either candidate and wishing there was a viable third option - but c’mon, this was NOT the election to protest and not vote. If those same people from 2020 that voted for Biden but sat this one out had actually turned out, we would’ve had a very different outcome this election. You reap what you sow.', 'created': '2024-11-07 19:46:57', 'submission_id': '1glxawa'}
{'comment': "I believe a lot of those weren't in swing states though. [I'm listening to this podcast right now](https://podcasts.apple.com/us/podcast/no-she-didnt-lose-15m-democratic-votes/id1147092464?i=1000676045153), and the host found that Kamala's numbers in the swing states actually beat Biden's. So those votes wouldn't have helped us.\n\nAlso, Kamala is probably going to beat Trump’s 2020 popular vote total.", 'created': '2024-11-07 20:41:44', 'submission_id': '1glxawa'}
{'comment': 'It\'s fishy man, that\'s all I\'ll say. \n\nI mean this fraudster piece of shit was facing real jail time. You telling me he wouldn\'t fix an election to avoid prison?\n\nHe faked his own assassination attempt. He will do anything it takes. \n\nWhat\'s worse is if he got caught you know he\'d just be like "they did it to me in 2020"\n\nI\'m just surprised everyone is rolling over so easily on what\'s obviously sus as all fucking hell. I mean he won every single battleground state? He\'s 80, in the worst mental shape of his life, he\'s got nothing going for him, and he won every single one? And the popular vote?\n\nNah, it\'s fishy. I\'m sure his DOJ will investigate it.', 'created': '2024-11-08 02:30:31', 'submission_id': '1glxawa'}
{'comment': 'Do any of you know any people personally who voted for biden and then did not vote for Kamala?\n\nI know exactly zero.\n\nI know multiple prior Trump voters who sat this one out, and multiple first time Kamala voters.\n\nSomething is fishy.', 'created': '2024-11-07 20:18:11', 'submission_id': '1glxawa'}
{'comment': "Some Democrats think it's about the way they feel. That's before Election Day. When that day comes you do your job.", 'created': '2024-11-07 19:32:58', 'submission_id': '1glxawa'}
{'comment': 'Trump in 2024 came in nearly 3 million votes lighter than 2020.\n\nHowever, the tally for Harris came in just under 15 million votes lighter thyan Biden in 2020.\n\nNot 10 million. 15 million.\n\nAnd that is with the Democratic Party larger overall than in 2020.\n\nWe are looking at how the COLLATION computers processed her votes.\n\nSame time, Wikipedia pages that present voter registration data by state are among the missing. Same for routine links and references online. \n\nUtterly gone.', 'created': '2024-11-08 00:44:17', 'submission_id': '1glxawa'}
{'comment': 'https://preview.redd.it/484670cndkzd1.jpeg?width=2976&format=pjpg&auto=webp&s=117697e2abb2ebada8933c0d06e8e438f1da05d8', 'created': '2024-11-08 00:29:30', 'submission_id': '1glxawa'}
{'comment': 'Probably about a million sat home...not the 15 million number. Still bad.\xa0', 'created': '2024-11-07 20:15:55', 'submission_id': '1glxawa'}
{'comment': 'i still call bullshit. votes were being deleted or erased or certain machines werent being tallied or something...\ni just dont believe that many democrats "just didnt show up"...', 'created': '2024-11-08 00:50:49', 'submission_id': '1glxawa'}
{'comment': 'Sadly the spoiled brats were not willing to be part of the team effort.', 'created': '2024-11-08 03:12:24', 'submission_id': '1glxawa'}
{'comment': 'I’M HAVING FUCKING NEUROLOGICAL PROBLEMS BUT I WAITED FOR 2 HOURS TO VOTE FOR HARRIS! AND I LIVE IN A DEEP RED STATE! WHAT IS THEIR EXCUSE?!', 'created': '2024-11-08 03:22:35', 'submission_id': '1glxawa'}
{'comment': 'I feel like a god damn broken record player when I say this. \n\nAll the ballots have not even been completely counted. California is literally only at 60% of votes. Please guys stop pushing this until we actually see the numbers when they are done. I’m really tired of people just assuming when the results aren’t even all counted..', 'created': '2024-11-07 23:27:08', 'submission_id': '1glxawa'}
{'comment': "Again why are we assuming the majority were Democrats and not centrists who didn't care?", 'created': '2024-11-07 23:50:31', 'submission_id': '1glxawa'}
{'comment': 'All the votes have not been counted— CA is still counting votes, it’s a large state and full numbers won’t be released until tomorrow or Monday. It’s probably more like 5 million.', 'created': '2024-11-08 00:04:00', 'submission_id': '1glxawa'}
{'comment': 'I had an argument with a Democrat who was Muslim and said he would not vote for Kamala Harris due to the Hamas Israeli war. I tried to explain why this was not logical, but there was no convincing him. I would be curious to find out how many Muslim and ultra Liberal Democrats did not vote as a protest. For voters who sat out the election or voted for Trump, thinking he would be better, thanks for absofuckinglutely nothing.', 'created': '2024-11-08 16:24:29', 'submission_id': '1glxawa'}
{'comment': 'TOO MANY MUSK BROS, misogynistic aholes, Latinos voting against their own interests ( naively thinking that being born here or having a green card etc will save them from the upcoming brown purge!) And yes, too many registered Dem voters watching the Harris rallies having so much more enthusiasm and support that they decided "They got this..they don\'t need MY 1 measly vote" and BOOM! A Trump victory. I\'m so fucking disgusted rn I could spit fire! 🔥', 'created': '2024-11-08 19:48:25', 'submission_id': '1glxawa'}
{'comment': "Didn't The Boys writers incorporate a lot of Trump qualities into Homelander lol", 'created': '2024-11-08 00:12:44', 'submission_id': '1glxawa'}
{'comment': 'Can we wait for the tallies to be completed before pointing fingers and decrying X number of people didn’t vote?', 'created': '2024-11-07 20:03:01', 'submission_id': '1glxawa'}
{'comment': '[removed]', 'created': '2024-11-07 20:35:26', 'submission_id': '1glxawa'}
{'comment': 'Eight years and those Biden voters decided nah', 'created': '2024-11-08 07:33:08', 'submission_id': '1glxawa'}
{'comment': 'Yup.', 'created': '2024-11-08 11:59:19', 'submission_id': '1glxawa'}
{'comment': "Final counts aren't in yet.", 'created': '2024-11-08 16:54:25', 'submission_id': '1glxawa'}
{'comment': "It's 🐟🐟🐟🐟🐟 fishy", 'created': '2024-11-08 20:39:58', 'submission_id': '1glxawa'}
{'comment': "That's me looking at MAGAs voting for their own demise.", 'created': '2024-11-09 00:33:53', 'submission_id': '1glxawa'}
{'comment': 'That says that people were not convinced by Trump (his existing fans just came again). Rather, it says that democrats did not like Harris. Maybe the biggest failure was not having a mini primary to select Biden’s replacement, as suggested by Carville?', 'created': '2024-11-09 00:46:41', 'submission_id': '1glxawa'}
{'comment': 'I hate this thought. But what if early voting is the problem? What if the Hispanic men who saw that shit at MSG who may have changed their minds already voted?? A lot of crap happens between the earliest vote and the day of the election. A lot can change people’s minds. I won’t ever understand this country I came from. I have no idea what the solution is. I’m sorry I’m just spiraling like everyone else in my circle. 😭', 'created': '2024-11-07 20:15:36', 'submission_id': '1glxawa'}
{'comment': 'Can we please stop complaining about this until the votes are actually counted? I get wanting to figure out why we lost, but jumping on turnout before California has finished counting is bordering on disinformation. Far too many people think ‘15 million’ democrats didn’t show up. By this time in 2016 Hillary had still “lost the popular vote”. \n\nTurnout looks on track to hit 150 million, compared to 155 during Covid. Kamala is going to slot 4-5 million votes short of Biden and Trump will beat his last performance by 2ish.\n\nI don’t think ‘people sat this one out’ is the lesson to learn here. The question is why so many independents were happy breaking so heavily towards Trump.', 'created': '2024-11-07 21:51:31', 'submission_id': '1glxawa'}
{'comment': 'How could anyone genuinely dislike Kamala Harris ?\n\nShe has embodied public service.', 'created': '2024-11-08 00:46:24', 'submission_id': '1glxawa'}
{'comment': 'Hundreds of ballots were also burned', 'created': '2024-11-07 23:15:19', 'submission_id': '1glxawa'}
{'comment': "It's almost like our democratic party played an incredibly stupid game and won an incredibly stupid prize! Maybe they'll listen to the voters next time instead of billionaires!", 'created': '2024-11-09 01:27:32', 'submission_id': '1glxawa'}
{'comment': 'Are we sure they sat out or is it voter suppression?', 'created': '2024-11-08 16:47:11', 'submission_id': '1glxawa'}
{'comment': 'Interesting listen. Yea I kept hearing this, but I also know that the west coast was still counting votes when that belief started flying around', 'created': '2024-11-07 23:42:11', 'submission_id': '1glxawa'}
{'comment': 'That is false.\n\nThe official numbers have Harris down 18% versus Biden in 2020.\n\nWith a larger Democratic Party at that. And Republicans at 11% supporting her.', 'created': '2024-11-08 01:11:23', 'submission_id': '1glxawa'}
{'comment': None, 'created': '2024-11-08 02:04:59', 'submission_id': '1glxawa'}
{'comment': 'I don’t but I could see people sitting out, not necessarily voting for Trump.', 'created': '2024-11-07 23:29:31', 'submission_id': '1glxawa'}
{'comment': "Check my other comments. Oh, hell........................\n\nHarris ended up 15 million votes short of Biden from 2020.\xa0Trump was down 3 million votes from what he got in 2020. \n \nWe knew months ago that Trump's billionaires were all in to get him elected. Elon Musk went public. Peter Thiel is the one with a history of infiltration and questionable actions plus access to computer skills. \n \nConsider the vote totals from 2020 and 2024. Harris and Biden critically. \n \nBiden beat Trump in the 2020 popular vote by 81,283,501 to 74,223,975. \n \nHarris in 2024 came in at 66,415,077 votes. Which is nearly 15 million fewer votes than what Biden got in 2020. And that 2020 election happened before the January 6th Insurrection. Before Project 2025 was published. Before acceleration of the main force hurricane cycle. \nThe 2024 Democratic Party is also larger than it was in 2020. \n \nWhat we are seeing in 2024 is Trump at 71,352,277. He is down from 2020 by nearly 3 million votes. The Republican / Fox News NEGATIVE COALITION-BUILDING strategy held it together for him at this lower level of overall support. \n \nTo be clear: Trump did not get more votes this go-around. \n \nAnd even Hillary Clinton in 2016 got 65,853,514 votes. \n \nHarris shortfall compared to Biden = minus 18% = a near collapse of the Democratic Party \n \nReally ??? \n \n15,000,000 votes fewer than Biden................... how does that make sense ? \n \nThe Democratic Party in 2024 is also larger than it was in 2020. \n \nAnd the abortion amendment votes came in ahead of Harris everywhere in the battleground states. So we know that those voters went to the polls. Check out Florida for one.Amendment voters = 6,061,672. Same election where Harris = 4,676,871. \n \nSo how was cutting the Harris vote totals done ? \n \nWell first off, it's not going to be the READER machines that process the paper ballots. These are very simple machines. They are easy to check. \n \nBut at the COLLATION computers all that goes out the window. These are the computers that process the final totals coming out of the READERs. \n \nCorrupting these COLLATION computers requires one infiltration per election software company. And the actual code for corruption fits into these computers' firmware. Election officials at the states are never going to see anything they can use. \n \nAt the same time it would appear that this plausible election corruption project had a real world concealment component. \n \nThe standard Wikipedia pages that publish Registered Voters By State by year have disappeared. And references to these Wikipedia pages have also been deleted systematically. \n \nQuite a process, that. \n \nWell beyond the expertise and manpower resources of the main Republican Party apparatus. And far as I can tell the RNC crew are also light on super-financed psychopaths. You have to ask: were Peter Thiel and his buds willing to sit back and let the dice roll for whether Donald Trump lost the election, had to endure the insurrection trial, and then got carted off to prison. \n \nAlso quite visibly, these collapses of Democratic Party presidential votes in 2024 relative to 2020 were observed uniformly across the battleground states. \n \nThis speaks to the pattern of infiltration with sabotage located to the COLLATION software. And particularly to that firmware. The infiltrator(s) would have had to go all-or-none with one code alteration migrated to all the target COLLATION machines. \n \nTrump at 71,352,277 votes in 2024 was a weak candidate. \n \nYet the Republican Party lives. By a miracle ??? Perhaps not.", 'created': '2024-11-08 00:59:43', 'submission_id': '1glxawa'}
{'comment': "What about Harris filling two stadiums at the same time while Trump's was half full and emptying rapidly?", 'created': '2024-11-07 23:40:18', 'submission_id': '1glxawa'}
{'comment': 'Right? Exactly this. Every single person I know (including some people that were 1st time voters for Biden) voted again this year for Harris. Most people I know who voted for Trump either switched to Harris for this election or did not vote at all. I just don’t understand how this happened. It just doesn’t add up .', 'created': '2024-11-07 20:33:01', 'submission_id': '1glxawa'}
{'comment': "Kind of a good point, at least I don't know anyone that publicly admitted to voting for Biden then Trump. Really does seem like just low turnout though. It was actually a noticeable pattern when analyzing the early votes last week. The percentages were all lower than 2020 and 2022. The speculation was that maybe the Dems were waiting for election day since 2020 they voted by mail because of covid, but it just didn't materialize.", 'created': '2024-11-07 23:00:39', 'submission_id': '1glxawa'}
{'comment': 'Totally', 'created': '2024-11-08 00:29:23', 'submission_id': '1glxawa'}
{'comment': 'Unfortunately I’ve known two', 'created': '2024-11-08 07:33:37', 'submission_id': '1glxawa'}
{'comment': "This don't need to argue or debate, many people agree, something's not right.", 'created': '2024-11-07 21:29:55', 'submission_id': '1glxawa'}
{'comment': '"Democrats fall in love... Republicans fall in line"\n\nThat\'s always been the problem. I don\'t want to be like them where there is no diversity of thought, but on election day you have two options. One is going to shape the nation for 4+ years. Not a time to sit on principles. Dems, I think are prone to letting "the perfect become the enemy of the good."', 'created': '2024-11-07 20:33:58', 'submission_id': '1glxawa'}
{'comment': 'According to ABC News, hundreds of ballots were also burned after someone set them on fire.', 'created': '2024-11-07 23:17:21', 'submission_id': '1glxawa'}
{'comment': '5M is still a lot :(', 'created': '2024-11-08 04:17:30', 'submission_id': '1glxawa'}
{'comment': 'Why? What difference does it make? Millions didn’t vote in defense of democracy. All these rallies, this massive ground game, small time donor records broken, massive funding advantage and for what? All that effort to still watch our nation burn to the ground because people were too lazy to go vote?\n\nI’d at least have some respect for them if they went to vote for the Democratic senate candidates, house candidates to give us the majorities as check to Trump but they didn’t even do that.', 'created': '2024-11-07 20:10:43', 'submission_id': '1glxawa'}
{'comment': 'We also need a catchy slogan the fact that we don’t have one after all these years is insane. We need better merchandise too.', 'created': '2024-11-07 20:37:05', 'submission_id': '1glxawa'}
{'comment': "Early voting is not the problem. No one is required to early vote. You shouldn't be voting early if you think there is a chance your vote could change. Removing early voting only serves to disenfranchise people.", 'created': '2024-11-07 20:19:40', 'submission_id': '1glxawa'}
{'comment': 'I understand the point you’re making but I would argue that regardless of the number of Biden 2020 voters that didn’t vote is 2M, 4M or even 10M+, that’s still millions of people that did not vote. If you take a portion of that (let’s say, the 2M number) and give it to the swing states, that could have been enough to tip the electoral college in her favor, despite potentially still losing the popular vote anyway.\n\nI’m not disagreeing with you that Trump made gains with independents and other groups of people in key counties in key states, but those millions that didn’t vote could have been enough to swing those battleground states in her favor.', 'created': '2024-11-07 23:48:53', 'submission_id': '1glxawa'}
{'comment': "Yep, tons of ballots were still being counted but people were going off the numbers from yesterday morning and still are. The gap is likely not going to be anywhere near as off. Of course I'm sure there were a decent chunk of people favoring Kamala that didn't vote and maybe had they, she could have won, but that happens every election.", 'created': '2024-11-07 23:10:56', 'submission_id': '1glxawa'}
{'comment': 'Disinformation and propaganda mostly. We have no recourse in action to counter it effectively', 'created': '2024-11-08 00:19:22', 'submission_id': '1glxawa'}
{'comment': 'I know—it’s so sad. She would’ve made a fantastic president in my opinion.', 'created': '2024-11-08 00:55:42', 'submission_id': '1glxawa'}
{'comment': 'They’re mad because she didn’t blow enough smoke up their ass.', 'created': '2024-11-08 03:18:19', 'submission_id': '1glxawa'}
{'comment': 'I mean there’s been voter suppression for decades, particularly in the south. I truly don’t believe that the southern states are as “red” as they are. It’s just the republicans have made it their mission to suppress the vote in the south with gerrymandering and other laws to make voting harder for groups that would normally vote democratic.', 'created': '2024-11-08 16:49:24', 'submission_id': '1glxawa'}
{'comment': 'What part of that contradicts anything I said?', 'created': '2024-11-08 01:21:29', 'submission_id': '1glxawa'}
{'comment': 'Because Trump increased his numbers there.', 'created': '2024-11-08 02:12:45', 'submission_id': '1glxawa'}
{'comment': 'He came in 3 million shy compared to 2020.\n\n74 million down to 71 million.', 'created': '2024-11-08 01:01:31', 'submission_id': '1glxawa'}
{'comment': 'How do we get this investigated? Get it on the news? \n\nDemocrats are being timid about questioning the integrity of the results because they don’t want to seem like MAGA, but the fact MAGA cried foul when there wasn’t substantial foul play doesn’t mean there isn’t now. \n\nIf a MAGA said it was raining yesterday while the sun was out, that doesn’t mean we can’t acknowledge the rain if it’s obviously pouring today.', 'created': '2024-11-08 01:09:49', 'submission_id': '1glxawa'}
{'comment': 'Trump is at 73.3M now. They’re still counting', 'created': '2024-11-08 04:41:00', 'submission_id': '1glxawa'}
{'comment': 'The desperation in 2020 was real. This year’s joyfulness was apparently very relaxing. Anyway, dark times ahead…', 'created': '2024-11-07 21:52:52', 'submission_id': '1glxawa'}
{'comment': 'Check for my long comment.\n\nYou are quite right. And there is evidence of a large scale cover-up.', 'created': '2024-11-08 01:06:03', 'submission_id': '1glxawa'}
{'comment': 'Totally as in you know people who voted biden but not kamala or totally fishy?', 'created': '2024-11-08 00:30:32', 'submission_id': '1glxawa'}
{'comment': 'I want to win', 'created': '2024-11-07 21:06:30', 'submission_id': '1glxawa'}
{'comment': 'That flipped in 2016 and is no longer valid. Hillary was roundly expected to be the nominee after having run in 2008 and been SoS under Obama. In that case, they fell in line.\n\nIn the lead up to 2016, the media flirted with Trump, nobody thought they would win and we\'ve all read the shit that republicans said about him at the time (compared to now). But they absolutely fell in love.\n\nIt could be even further suggested that the "fall in line" theme carried over with both Biden and Harris, since they were the "expected" nominees.', 'created': '2024-11-07 21:19:29', 'submission_id': '1glxawa'}
{'comment': "The bigger number is overall eligible voters that never come out no matter what. 2020 had the highest turnout in history and still 35% of eligible voters didn't show up. The 5 million is part of THAT crowd mostly. They just had nothing better to do in 2020 than vote.\n\nTake 2020 out of the equation and this election is not out of the ordinary in comparison to previous elections.", 'created': '2024-11-08 16:54:06', 'submission_id': '1glxawa'}
{'comment': 'Agreed. I mean there definitely was split ticket voting for sure, NC went for Trump but democrats swept the statewide elections; dems won Governor, Lt. Governor, Secretary of State and broke the Republican super majority in the state legislature so there was SOME split ticket voting going on but not nearly enough.', 'created': '2024-11-08 00:22:43', 'submission_id': '1glxawa'}
{'comment': 'According to ABC News, hundreds of ballots were also burned after someone set them on fire.', 'created': '2024-11-07 23:18:07', 'submission_id': '1glxawa'}
{'comment': 'Because we literally do not know the actual number and you might be spreading misinformation.', 'created': '2024-11-07 20:45:06', 'submission_id': '1glxawa'}
{'comment': 'Yeah I know and agree with everything you said, which is why I hate this thought that keeps coming back as I process this horrific election. I just don’t know how so many people of color still voted for him. I don’t get it. I’ll never get it.', 'created': '2024-11-07 20:31:54', 'submission_id': '1glxawa'}
{'comment': 'I genuinely mean this, so please don’t take it sarcastically, but it’s a personal balance and you’re welcome to believe that. I don’t.\n\nThe reason I don’t is fairly simple: the Covid election was a turnout anomaly, tied with 1960 as the highest since 1900. This election currently has turnout on par with 2016 and 2012, only a notch behind 2008, with many votes still to count.\n\nWhen trying to figure out why we lost, I don’t think “man we failed to keep up historically high, pandemic-level turnouts” is a valuable lesson. The only thing that matters here is the **massive** margin swing.\n\nOnce you start looking at the swing, imo it shows us Kamala’s campaign was working (she lost 3% on Biden’s share in the battlegrounds vs 6.7 nationally, and even more in low-saturation markets like Texas and New York) but that she either didn’t have the time to get all the way there, or that she really never stood a chance because the country was simply shifting way further right than anyone realised and the headwinds against her were too strong. So *then* you ask; why is the country shifting right? Not; why didn’t lefties show up?', 'created': '2024-11-08 00:21:20', 'submission_id': '1glxawa'}
{'comment': 'According to ABC News, hundreds of ballots were also burned after someone set them on fire.', 'created': '2024-11-07 23:16:19', 'submission_id': '1glxawa'}
{'comment': 'I think this should be a wake up call for lazy dems in blue states to get out and vote, even if your state is safe blue. To win the popular vote is still really important because it shows the where the majority of people stand.', 'created': '2024-11-08 07:49:33', 'submission_id': '1glxawa'}
{'comment': 'Don’t we? Is a potential answer there not to engage more with demographics and content creators we initially chose to distance from?\n\nBecause I agree, I think the way Americans consume news is massively changing. For all his faults, and they are many, Elon is right about that. Dems need to be in people’s ears on podcasts, daytime shows, FOX, and talk radio fighting their corner properly, Buttigieg style.', 'created': '2024-11-08 00:23:36', 'submission_id': '1glxawa'}
{'comment': '*"Kamala\'s numbers in the swing states actually beat Biden\'s...."*\n\nDown by 18% overall = a collapse of GOTV for the Democratic Party\n\nExcept that did not happen. So what is left is infiltration and sabotage at the collation computers. \n\nHigh risk. Criminal. To avoid Trump getting convicted and jailed. And the GOP going out of business, roughly speaking.', 'created': '2024-11-08 03:48:47', 'submission_id': '1glxawa'}
{'comment': 'No.\n\nTrump ended up 3 million votes behind his numbers from 2020.\n\nHe was a weak candidate from the get go.', 'created': '2024-11-08 03:50:04', 'submission_id': '1glxawa'}
{'comment': "> How do we get this investigated?\n\nCan't. Harris conceded.", 'created': '2024-11-08 07:32:10', 'submission_id': '1glxawa'}
{'comment': "Like you, feel something fishy. I can't see any swing voter voting Trump period. Something is off....", 'created': '2024-11-08 00:55:39', 'submission_id': '1glxawa'}
{'comment': 'You keep repeating that. What are just hundreds of ballots going to change? We lost by MILLIONS not hundreds.', 'created': '2024-11-07 23:42:57', 'submission_id': '1glxawa'}
{'comment': 'If the total count isn’t enough to change the outcome I don’t really care. \n\nMisinformation won this election, so pardon me for not really caring about that right now either. \n\nJust about the only situation I care about regarding uncounted votes at the moment is whether she would eke out a popular vote win. I doubt that will happen, and I only hope it does as it will motivate the hell out of people to resist. \n\nBut that still doesn’t change who gets into the White House.', 'created': '2024-11-07 21:06:48', 'submission_id': '1glxawa'}
{'comment': "I've had this discussion before with a black friend of mine. Mind you this was only her take on it. But she said many people of color want to be accepted by white people. They want to be seen as better than the others of their race. It's the same with women who voted for Trump. Everyone wants to master's favorite pet and none of them realize they will never accept you because they don't see you as anything more than your race or gender.", 'created': '2024-11-07 21:47:26', 'submission_id': '1glxawa'}
{'comment': 'I mean, you’re making all valid points. I’m not sure I agree with all of them, but you do make sense. I’m not saying that poor voter turnout is the entire reason why she lost, but I do think it was a factor.\n\nEven if we’re comparing it to pandemic-level turnout, knowing what Trump is, anyone that voted for Biden in 2020 and thought to sit this one out sounds crazy to me. Even if it wasn’t enough to swing the election, just the fact that so many people DID sit this one out surprised me.\n\nOf course there is reason for concern why Trump still got so many votes, especially in the battleground states, and could potentially overtake his 2020 number—definitely something for the democrats to look at for future elections.', 'created': '2024-11-08 00:34:58', 'submission_id': '1glxawa'}
{'comment': '> why didn’t lefties show up?\n\nWell, that\'s an easy answer: "I will put a Republican in my cabinet."\n\nConservatives don\'t flip, they fall in line. And trying to appeal to them kills turnout in the people who would actually vote for you.', 'created': '2024-11-08 07:30:15', 'submission_id': '1glxawa'}
{'comment': "Overall, Harris lost 18% compared to Biden's total for 2020.\n\n81,283,501 for Biden beat Trump at 74,223,975. \n \nHarris came in at 66,415,077. That is the current stated tally. Relying on the collation computers to summarize the READER machines.\n\nTrump in 2024 fell to 71,352,277.", 'created': '2024-11-08 00:55:35', 'submission_id': '1glxawa'}
{'comment': '400 balllots in WA that were replaced and were counted.', 'created': '2024-11-08 03:14:01', 'submission_id': '1glxawa'}
{'comment': 'I do agree with that. Lots of younger voters like millennials and Gen Z get their “news” from TikTok, Facebook, Instagram, X, etc. I’m a millennial but I verify anything that I see on Instagram that may seem questionable or not from a reputable news source. I mostly watch cable news like MSNBC—but I feel like an outlier for my generation.\n\nI do love that Buttigieg goes on Fox News lol. At least the audience gets a little bit of actual facts being thrown at them for a few minutes.', 'created': '2024-11-08 00:40:43', 'submission_id': '1glxawa'}
{'comment': 'Well I should be more clear we have recourse but we don’t want to offend people by dumbing down our message. It’s no secret that Trump thrives off speaking in the same way his supporters do whether on purpose or not dumbing down the message so it’s easier to digest will help. The current democratic leadership doesn’t seem to understand or know how to accomplish this', 'created': '2024-11-08 00:35:45', 'submission_id': '1glxawa'}
{'comment': 'Overall or in the swing states?', 'created': '2024-11-08 04:08:22', 'submission_id': '1glxawa'}
{'comment': 'That was Thursday numbers. Today with Friday numbers he is down by nearly a million votes.\n\nNow the votes are just trickling in.\n\nStill, against a larger Democratic Party he was a weak candidate everywhere. An embarrassment.\n\nHammering Harris was most clear at Florida. 6 million voted for the abortion prop. Only 4.7 million were tallied for Harris at the COLLATION machines.\n\nThe READER machines worked perfectly....', 'created': '2024-11-08 19:01:58', 'submission_id': '1glxawa'}
{'comment': 'They is probably way more ballots missing', 'created': '2024-11-07 23:43:57', 'submission_id': '1glxawa'}
{'comment': 'Got it. You’re fine bending the truth, provided that it suits your ends. Cool.', 'created': '2024-11-07 21:25:02', 'submission_id': '1glxawa'}
{'comment': 'Increased Mail-in during COVID significantly lowered barrier to voting in urban areas. You see those long lines they always show on the news in cities and college campuses? How many 100s, 1000s, potentially 1,000,000s of urban/suburban potential Clinton/Harris voters see that and think "Nah, look how many people there are, we\'ve got this, they don\'t need my vote." Meanwhile in rural counties where Trump\'s voters are, lines are short and plenty of polling locations dotted across vast countryside. No wait, no barrier to entry = Rs dominate Election Day in-person. Best D\'s can try is to build up a wall/comeback through Early Vote (depending on which gets counted first).', 'created': '2024-11-08 01:56:51', 'submission_id': '1glxawa'}
{'comment': 'I really get that, I just think I’ve lost faith in assuming Trump being awful would increase turnout. Turnout only goes up by reaching the most inaccessible voters by very definition, if you haven’t already convinced 70% of available voters that Trump is a deranged lunatic it’s already not a powerful enough message to break through to the lowest propensity voters in my view. \n\nJust to clarify though, I think Trump winning by razor thin margins in the swing states compared to how he shifted the nation is a good sign. Kamala has seeded some serious doubt about Trump there in order to have closed the gap where she did, so whoever runs next will have an easier time than they’d have otherwise had. The margin also suggests the shift is more transitory everywhere else, to me, since in 100 days a lot more people were casting a vibes based vote than we’d like to think, even in Texas, NY and Florida. The fact the swing states (who were pummelled with election material) came even this close suggests when Americans were forced to think about it the results are a lot closer.\n\nCause god, a 6.7 national swing **hurts** deep down, if you can’t look at that as a silver lining.', 'created': '2024-11-08 00:41:48', 'submission_id': '1glxawa'}
{'comment': 'Are you really replying to a comment that tells you not to focus on turnout until **every vote is counted** by citing current turnout stats?\n\nDave Weigel has current turnout estimates at 157 million. There’s only been 138 million votes counted so far.\n\nStop citing your irrelevant half-info as fact.', 'created': '2024-11-08 01:08:36', 'submission_id': '1glxawa'}
{'comment': "Votes are still being counted. She's up to 69 million as of now.", 'created': '2024-11-08 05:11:28', 'submission_id': '1glxawa'}
{'comment': 'There are almost certainly as many democrats that can be reached with "dumbed down" discourse as republicans. The fact that you considered not wanting to offend people by dumbing it down means you\'re depth of thought is already deeper than many.\n\nAlso, there\'s no reason not to have the messaging out there in a range of complexity.', 'created': '2024-11-08 16:47:19', 'submission_id': '1glxawa'}
{'comment': 'If there were literally millions of ballots missing we would know.', 'created': '2024-11-08 00:02:13', 'submission_id': '1glxawa'}
{'comment': "Exactly, if you're fine with that why not go the whole way and call the election a fraud and blame the voting machines", 'created': '2024-11-07 21:43:40', 'submission_id': '1glxawa'}
{'comment': 'Also valid points… but that mentality of “we’ve got this, they don’t need my vote” is also one of the many reasons why Hillary lost the election in 2016–because they thought she had it in the bag. So I don’t really see that as a valid excuse not to vote unless there was something physically barring them from being able to wait on the lines for hours.', 'created': '2024-11-08 02:00:56', 'submission_id': '1glxawa'}
{'comment': 'That’s what I thought—that he’s so horrible, even if they didn’t like Kamala, they would vote for her anyway. I really thought there was a “silent” Republican vote that would turnout for her, but I guess that wasn’t the case. I thought that reproductive rights would be the top issue for voters as it has been in the past and I was wrong about that too.\n\nYeah, I was listening to a segment on MSNBC and they said that given the political environment she was in and the little time she had to campaign, she actually over performed.\n\nI am hopeful though that in these next two years the Republicans will be so bad that we’ll gain back seats in Congress that we lost just like we did in 2018.', 'created': '2024-11-08 00:49:01', 'submission_id': '1glxawa'}
{'comment': "Work, school, kids need to be picked up and looked after, plenty of reasons. Certainly more than retired boomers out in the sticks have reasons (though they prob don't need to wait for hours anyway, as I said before).", 'created': '2024-11-08 05:06:37', 'submission_id': '1glxawa'}
{'comment': 'We will. I don’t know if you’ve seen Elizabeth Warren’s post election message but give it a search.\n\nLike she says, we won the house back in 2018, the presidency in 2020 and the senate in 2021. If we organise we’ll do the same again. The country is going to go through hell for a few years, but the next election will face no incumbents for the first time in a long time so it’s anyone’s game. \n\nIf Dems can take the message to centre back on everyday lives and the economy, and to engage in areas of media they’ve been avoiding, there’s real opportunity.', 'created': '2024-11-08 00:55:26', 'submission_id': '1glxawa'}
{'comment': 'Well, hopefully they were able to take advantage of early voting then if their state allowed it. Or, you can request a mail in ballot so you don’t have to find time to go vote in person, again, depending on the state. Otherwise, idk then.', 'created': '2024-11-08 05:08:23', 'submission_id': '1glxawa'}
{'comment': "I hope Warren's assumption that we'll get free and fair elections in 2026 and 2028 is right.\n\ni just don't believe it right now.", 'created': '2024-11-08 01:11:39', 'submission_id': '1glxawa'}
{'comment': 'I haven’t, thanks! I’ll definitely give it a look 😊. \n\nYup, exactly. While I think these next four years will be worse than the first four years with Trump, we just have to power through it and hope that our institutions hold so we can take our country back in the midterms and in the next presidential cycle.\n\nAlso, thank you for being respectful lol—sometimes people get a little crazy on here 🙄.', 'created': '2024-11-08 01:00:23', 'submission_id': '1glxawa'}
{'comment': "> If we organise we’ll do the same again.\n\nIf there's a fair election.\n\nWhich there won't be.", 'created': '2024-11-08 07:31:12', 'submission_id': '1glxawa'}
{'comment': 'You’re welcome, and thank you back!\n\nSometimes I worry I come across a bit debatey (hence my comment clarifying I was being genuine earlier haha) but there’s so many vital bits of info buried in the nuance of massive conversation topics like this, and sometimes in trying to explain myself while remaining brief I sound a bit combative. But I really do think there’s some clear lessons from Tuesday and that’s making it so much harder to see narratives pushed by disingenuous people sticking in others’ minds.', 'created': '2024-11-08 01:13:27', 'submission_id': '1glxawa'}
{'comment': 'You were fine! I appreciate the insight :) sometimes it’s good to get a sense of things from other’s perspectives and not get swept up in the different narratives. For sure, I definitely agree that there are serious lessons to be learned from this election and hopefully can be applied going forward 😊.', 'created': '2024-11-08 01:22:45', 'submission_id': '1glxawa'}
{'comment': 'Inflation, it was global but it affects the incumbent.', 'created': '2024-11-07 19:55:22', 'submission_id': '1glx476'}
{'comment': 'Kamala Harris really did do well, given the circumstances. \n \nThe election was unwinnable and she nearly did it anyway.', 'created': '2024-11-08 01:07:40', 'submission_id': '1glx476'}
{'comment': 'And Dems held back this macro trend better than almost everyone else.', 'created': '2024-11-13 18:00:39', 'submission_id': '1glx476'}
{'comment': 'https://preview.redd.it/wnahz6esdkzd1.jpeg?width=2976&format=pjpg&auto=webp&s=467e137a336b15fd89934a35e2c112cb070932ec', 'created': '2024-11-08 00:30:18', 'submission_id': '1glx476'}
{'comment': 'The kind of porn republicans like is already illegal', 'created': '2024-11-07 19:56:48', 'submission_id': '1glx2s7'}
{'comment': 'Please understand that this is so they can re-determine what is porn.', 'created': '2024-11-07 19:48:42', 'submission_id': '1glx2s7'}
{'comment': "so then trump will say gay and trans people are inherently pornographic so then we'll be illegal", 'created': '2024-11-07 19:46:14', 'submission_id': '1glx2s7'}
{'comment': 'Fitting punishment for all young bros who voted Trump.', 'created': '2024-11-07 19:38:59', 'submission_id': '1glx2s7'}
{'comment': 'Every one should know that the ban on porn is just a leeway into criminalizing any LGBT content and gay marriage. They will do everything that is in Project 2025.', 'created': '2024-11-07 19:57:55', 'submission_id': '1glx2s7'}
{'comment': "But what will the insecure dude bros do if they can't jerk off to gay porn?? Fuck them I hope they lose a ton of shit. Unfortunately we have to suffer with them. Talk about selfish.", 'created': '2024-11-07 19:46:12', 'submission_id': '1glx2s7'}
{'comment': 'The ironic thing is that many of the Only Fans and other amateur creators are definitely Trumpers. Sorry, Trailer Park-Sharon, you will have to get a real job like the rest of us.', 'created': '2024-11-07 19:26:42', 'submission_id': '1glx2s7'}
{'comment': "Welp. That'll turn the young men Democratic.", 'created': '2024-11-07 19:43:26', 'submission_id': '1glx2s7'}
{'comment': 'https://preview.redd.it/q2nk7qz1vizd1.jpeg?width=854&format=pjpg&auto=webp&s=5ef7bc4e011510c5270dfcb7ae756681b1890657', 'created': '2024-11-07 19:23:31', 'submission_id': '1glx2s7'}
{'comment': 'Good. I want the people who voted for this man, those who stayed home, to understand what they did.', 'created': '2024-11-07 19:37:30', 'submission_id': '1glx2s7'}
{'comment': 'VPN says nah.', 'created': '2024-11-07 19:53:34', 'submission_id': '1glx2s7'}
{'comment': 'Already is in my state, fuck em, let them feel their own wrath. Im done.', 'created': '2024-11-07 19:48:59', 'submission_id': '1glx2s7'}
{'comment': 'Let them. Let these young MAGA gen z’s learn the power government can have, let them learn this isn’t a game or a reality tv show.', 'created': '2024-11-07 20:14:48', 'submission_id': '1glx2s7'}
{'comment': 'Oh, no. What will Matt Gaetz and his ilk do then? Poor little boys better download all they can now.', 'created': '2024-11-07 19:54:58', 'submission_id': '1glx2s7'}
{'comment': "The dude famous for booking pornstars is gonna be responsible for banning porn. Conservatives just can't stop self owning themselves", 'created': '2024-11-07 23:03:49', 'submission_id': '1glx2s7'}
{'comment': 'Oh flap, noo.', 'created': '2024-11-07 19:28:50', 'submission_id': '1glx2s7'}
{'comment': 'Can we talk about something we all know, but we don\'t ever really talk about?\n\nWhy is it that these "deeply religious" and "family values" men crash Grindr every time they go to a convention? \n\nEvery single time there are reports that the app crashes at the RNC. \n\nDo we seriously have generations of gay men, in Congress, who refuse to come out of the closet, but then pass legislation and intentionally harm the same people they are cheating on their wives with? \n\nSay what you want about Buttigieg, but that man is at least living his best life. \n\nIt is just something to think about because I have known gay men my entire life, I was primarily raised by a lesbian, and they were the kindest, most gentle people, you would want to be around. I have watched so many of them die lonely, afraid, and scared of what would happen to their partner once they were gone. \n\nIt is just so odd that you have that many gay men rallying against other gay men and proactively working to harm them. \n\nAnyway, I dont think the morality part of 2025 is going to go anywhere. At best they will do what Texas did which is require ID to access porn, and a simple VPN will bypass that, and a lot of web browsers have VPN already installed.\n\nIf they go for the porn industry, it is protected by the mob and other organized crime groups, as well as people with deep, deep, pockets. The second largest industry is the video game industry, and Rockstar, alone, could tie the government up for the next decade in court cases.\n\nSo, I am not overly worried about this part of it. I would be more worried about them wanting to enforce morality at all. \n\nWe need look no further than the Taliban for what happens to women in a world with the morality police.', 'created': '2024-11-07 20:27:34', 'submission_id': '1glx2s7'}
{'comment': 'This must be that freedom thing that his sentient dingleberries keep yelling about', 'created': '2024-11-07 20:00:41', 'submission_id': '1glx2s7'}
{'comment': 'Fine with me. This is the find out phase.', 'created': '2024-11-07 19:59:06', 'submission_id': '1glx2s7'}
{'comment': 'Well I have an active imagination so I am coveted. But yes I am going to laugh at these fools.', 'created': '2024-11-07 19:55:34', 'submission_id': '1glx2s7'}
{'comment': 'Pornhub and associated sites are banned or self-banning in Alabama.\n\nSo, in fact, the Alabamafication of America marches on. Like a viral disease.', 'created': '2024-11-07 21:54:25', 'submission_id': '1glx2s7'}
{'comment': 'Lollllll what are the incels and nazis going to do now??', 'created': '2024-11-07 22:07:50', 'submission_id': '1glx2s7'}
{'comment': 'The guy that pays to fuck porn stars?', 'created': '2024-11-07 22:24:24', 'submission_id': '1glx2s7'}
{'comment': 'In short, download what you can and invest in VPN stocks.', 'created': '2024-11-07 19:44:56', 'submission_id': '1glx2s7'}
{'comment': "He wants to do all these different things in his 4 year term. Let's see what he actually gets done. The monumental cost of mass deportation of migrants. Lol. Priorities should be the economy, social security, and healthcare as he said he would fix. He will be inheriting from Biden, a country in better shape than he left it in his first term. Let's see what superman does aside from causing divide and hate.", 'created': '2024-11-07 23:20:16', 'submission_id': '1glx2s7'}
{'comment': 'Dont forget guns cause its coming . Look at project 2025', 'created': '2024-11-07 20:45:58', 'submission_id': '1glx2s7'}
{'comment': 'Stricter "obscenity" laws -> Regular sexual interest outlawed -> Convenient tool to target enemies & higher populations for prisons\n\nI can see the GOP\'s motivation for enacting it.', 'created': '2024-11-07 20:46:59', 'submission_id': '1glx2s7'}
{'comment': "The closeted porn loving Puritan Congressman won't vote for this.", 'created': '2024-11-07 21:43:31', 'submission_id': '1glx2s7'}
{'comment': 'Explains why porn sites are mergering with X ! / S', 'created': '2024-11-07 20:04:00', 'submission_id': '1glx2s7'}
{'comment': 'Except kiddy porn which all their men of faith seem to enjoy', 'created': '2024-11-08 03:50:29', 'submission_id': '1glx2s7'}
{'comment': "For us smarties out there we can use VPNs. Trump voters though; let em' suffer.", 'created': '2024-11-07 20:59:09', 'submission_id': '1glx2s7'}
{'comment': 'What about his home videos with Ivanka', 'created': '2024-11-07 21:04:33', 'submission_id': '1glx2s7'}
{'comment': 'Banned for the masses, but not the elites. Always remember, "Rules for thee, but not for me.".', 'created': '2024-11-08 04:27:55', 'submission_id': '1glx2s7'}
{'comment': '\n\nhttps://slate.com/news-and-politics/2023/04/abortion-pill-ban-comstock-act-history-mifepristone-kacsmaryk.html\n\nPorn ban, abortion ban is all on the table… they just lied their way to the White House. \n\nThe next 4 years is going to be leopards coming for a lot of faces.', 'created': '2024-11-08 05:44:47', 'submission_id': '1glx2s7'}
{'comment': 'Will they ban VPNs?', 'created': '2024-11-08 08:11:13', 'submission_id': '1glx2s7'}
{'comment': 'Lot of gen z men that are gonna be pissed when their goon material is banned.', 'created': '2024-11-07 21:58:19', 'submission_id': '1glx2s7'}
{'comment': 'Damn I haven’t used my memory to jerk off in like 20 years', 'created': '2024-11-07 20:35:45', 'submission_id': '1glx2s7'}
{'comment': 'Let me go ahead and get a VPN…', 'created': '2024-11-07 19:54:15', 'submission_id': '1glx2s7'}
{'comment': 'If course it will. It is all spelled out in Project 2025.', 'created': '2024-11-07 20:50:07', 'submission_id': '1glx2s7'}
{'comment': 'Of course Trump wouldn’t support pornography, it takes interest away from his lucrative sex trafficking business. Why watch it when you can pay for the real thing?', 'created': '2024-11-08 00:44:32', 'submission_id': '1glx2s7'}
{'comment': 'But you can still buy a porn star right?', 'created': '2024-11-08 02:37:56', 'submission_id': '1glx2s7'}
{'comment': 'OMG that would great to watch people become unhinged over this. Like when we get to watch all the idiots that voted for him realize it was all lies and things will just keep getting worse.', 'created': '2024-11-08 15:13:23', 'submission_id': '1glx2s7'}
{'comment': 'Wait till all the older women who like “bodice-ripper” novels find their favorite books are banned from the library. (I’m looking at you, Mom, though she didn’t vote for Trump.)', 'created': '2024-11-07 20:24:53', 'submission_id': '1glx2s7'}
{'comment': "He's gonna take it all for himself", 'created': '2024-11-07 19:56:53', 'submission_id': '1glx2s7'}
{'comment': 'I downloaded all mine already.', 'created': '2024-11-07 19:58:50', 'submission_id': '1glx2s7'}
{'comment': "Goid. Ban it. Let's live with the consequences of our vote.", 'created': '2024-11-07 22:22:06', 'submission_id': '1glx2s7'}
{'comment': 'Can the dumpsters still have sex with their cousins?', 'created': '2024-11-07 23:27:35', 'submission_id': '1glx2s7'}
{'comment': "I hope so, leopards gonna eat great for next 4 years and I'm gonna rub it in whatever face they have left.", 'created': '2024-11-07 23:32:31', 'submission_id': '1glx2s7'}
{'comment': 'I am skeptical this will happen. He probably uses it himself 🤣', 'created': '2024-11-07 23:33:05', 'submission_id': '1glx2s7'}
{'comment': "Damn, he's even taking jobs away from his own wife and mistress?", 'created': '2024-11-08 00:09:14', 'submission_id': '1glx2s7'}
{'comment': 'Get a VPN.', 'created': '2024-11-08 02:34:37', 'submission_id': '1glx2s7'}
{'comment': 'I’ve heard some talk of sex strikes floating around, and I think it’s a great idea.', 'created': '2024-11-08 16:31:16', 'submission_id': '1glx2s7'}
{'comment': 'Women, come join us in r/liberalgunowners .', 'created': '2024-11-07 21:11:47', 'submission_id': '1glx2s7'}
{'comment': "This is unironically good in the sense that commercially produced porn is actively harmful to a lot of women and often trades in exploitation and sex trafficking, not to mention the harmful stereotypes and normalization of brutalization in sex. It's bad in the sense that this is a slippery slope and we go from porn to other obscene materials (like books...or people) real quick. Then again...they were already burning and banning books weren't they? And apparently this is their plan to outlaw lgbtq. This fucking country.", 'created': '2024-11-07 19:58:15', 'submission_id': '1glx2s7'}
{'comment': 'You can bet Republican politicians will still be able to get their fix though. It’ll probably get them off even harder knowing it’s illegal.', 'created': '2024-11-07 21:46:52', 'submission_id': '1glx2s7'}
{'comment': 'Can’t wait for all the closeted republicans to get caught up (some being politics)', 'created': '2024-11-07 21:47:25', 'submission_id': '1glx2s7'}
{'comment': "This is something conservatives have been wanting for at least 100 years now. Always dictating based on what their religion views as bad. It's ridiculous the amount of our fellow Americans don't even care about an inch of history.", 'created': '2024-11-08 01:16:12', 'submission_id': '1glx2s7'}
{'comment': 'Bridge to far', 'created': '2024-11-08 01:32:26', 'submission_id': '1glx2s7'}
{'comment': "I could see this happening in some radical red states, but definitely won't happen at the federal level. This is a multi-billion $ industry and I just don't see this getting any real traction.", 'created': '2024-11-07 20:21:44', 'submission_id': '1glx2s7'}
{'comment': "I don't like porn but I'm not going to stop others from looking at it", 'created': '2024-11-07 20:59:07', 'submission_id': '1glx2s7'}
{'comment': 'One of the things I’m not totally opposed too.\nLot of these under 35 incel males may actually have to talk to women and understand more progressive women’s point of view.', 'created': '2024-11-07 20:05:24', 'submission_id': '1glx2s7'}
{'comment': 'Oh well, it will last as long as prohibition', 'created': '2024-11-08 02:40:49', 'submission_id': '1glx2s7'}
{'comment': 'Of all the atrocities about to happen, this is what we are going to worry about?', 'created': '2024-11-07 19:35:18', 'submission_id': '1glx2s7'}
{'comment': "Lol, but it won't stop it...", 'created': '2024-11-07 21:03:38', 'submission_id': '1glx2s7'}
{'comment': "There's more to it including opposition media if Trump can change libel laws", 'created': '2024-11-08 04:53:29', 'submission_id': '1glx2s7'}
{'comment': 'It’s coming: Make America Goon Again', 'created': '2024-11-08 07:07:17', 'submission_id': '1glx2s7'}
{'comment': 'LOL, I hope the Republicans expend a lot of energy on this effort and their energy sapped on the other issues.', 'created': '2024-11-08 16:05:58', 'submission_id': '1glx2s7'}
{'comment': 'I doubt this.', 'created': '2024-11-08 18:57:18', 'submission_id': '1glx2s7'}
{'comment': 'Utah has entered the chat', 'created': '2024-11-10 17:05:24', 'submission_id': '1glx2s7'}
{'comment': 'I hear they will legalize eating babies too!!! I’m being sarcastic and highlighting how fear mongering the crowds isn’t helpful. How about we all wait and see this all play out. Right now he’s not even the president and I see posts on all the Socials about how people have less rights now. Not sure what rights have been taken away by a president elect unless Biden has already wrote an executive order doing something crazy.', 'created': '2024-11-08 17:47:22', 'submission_id': '1glx2s7'}
{'comment': "Porn won't be banned. It's literally a first amendment right.", 'created': '2024-11-07 20:06:31', 'submission_id': '1glx2s7'}
{'comment': 'No one is banning porn.\xa0 Gtfoh', 'created': '2024-11-07 20:28:40', 'submission_id': '1glx2s7'}
{'comment': 'Took me a sec lmao', 'created': '2024-11-07 20:21:03', 'submission_id': '1glx2s7'}
{'comment': 'Do NOT check their hard drives. Worst mistake of my life. 💀', 'created': '2024-11-07 20:53:58', 'submission_id': '1glx2s7'}
{'comment': 'Bingo! Project 2025 literally says that any LGBTQ+ propaganda or material will be labeled as porn.', 'created': '2024-11-07 19:51:38', 'submission_id': '1glx2s7'}
{'comment': 'That’s the plan.', 'created': '2024-11-08 05:45:41', 'submission_id': '1glx2s7'}
{'comment': 'Good luck to them getting laid with all the abortion bans not to mention the imminent contraception bans.', 'created': '2024-11-07 19:54:23', 'submission_id': '1glx2s7'}
{'comment': "I dont see how the porn ban would be constitutional we've had cases over this already", 'created': '2024-11-08 00:14:45', 'submission_id': '1glx2s7'}
{'comment': 'If only it happened before the election', 'created': '2024-11-07 20:21:24', 'submission_id': '1glx2s7'}
{'comment': 'it\'ll turn some of them all "repeal consent law!"\xa0\n\n\njust watch.', 'created': '2024-11-08 00:27:33', 'submission_id': '1glx2s7'}
{'comment': "It most likely won't they have $billions to fight it \n\nJust like gun industry the illegal drug trade there's too much money at stake \n\nThey'll pay off some Senators off or find out who's had a same sex relationship \n\nWe all know the biggest talkers about family values have sex in rest stop bathrooms", 'created': '2024-11-07 19:38:58', 'submission_id': '1glx2s7'}
{'comment': 'Voice of reason, here!', 'created': '2024-11-08 01:15:30', 'submission_id': '1glx2s7'}
{'comment': '“I got mine” is the GOP motto.', 'created': '2024-11-08 00:50:25', 'submission_id': '1glx2s7'}
{'comment': "for sure, and I knew a lot of married men in my church growing up who I'd see on Gay dot com and the like.", 'created': '2024-11-07 20:29:35', 'submission_id': '1glx2s7'}
{'comment': 'So siblings 👌\n\nPorn 👎\n\nGot it.', 'created': '2024-11-07 23:13:54', 'submission_id': '1glx2s7'}
{'comment': 'But I was told to put everything I had in canned food and shotguns! (Gremlins 2 reference)', 'created': '2024-11-07 19:56:19', 'submission_id': '1glx2s7'}
{'comment': 'Hear, hear!!', 'created': '2024-11-08 01:42:02', 'submission_id': '1glx2s7'}
{'comment': "He isn't going to do anything but whatever lines his pockets. He will also say it's his economy from day 1", 'created': '2024-11-08 04:31:24', 'submission_id': '1glx2s7'}
{'comment': 'Without porn, the internet would likely not exist...', 'created': '2024-11-08 01:17:39', 'submission_id': '1glx2s7'}
{'comment': 'I wanted to upvote this, but then it felt like I supported this b/c it’s horrible but I can see this being a reality.', 'created': '2024-11-07 23:12:45', 'submission_id': '1glx2s7'}
{'comment': ">bodice-rippers\n\nThat's a whole other narrative, innit. 😔", 'created': '2024-11-07 22:05:15', 'submission_id': '1glx2s7'}
{'comment': 'Yes but only if their uncle can watch.', 'created': '2024-11-08 07:44:05', 'submission_id': '1glx2s7'}
{'comment': "They'll skip actual porn and go straight to banning queer people from life.", 'created': '2024-11-07 20:34:08', 'submission_id': '1glx2s7'}
{'comment': 'What? They will just bribe their way out of it. If you have money, you can get away with anything. For a price.', 'created': '2024-11-08 07:46:55', 'submission_id': '1glx2s7'}
{'comment': 'Imprisoning LGBTIA+ people just…because? I think it’s worth a conversation is that’s the ultimate goal of Project 2025, under the ruse of outlawing porn because Jeebus to parlay that into only not straight porn is illegal to them make being anything but straight illegal.', 'created': '2024-11-07 23:06:30', 'submission_id': '1glx2s7'}
{'comment': 'Legal barriers could easily be erected to make it not worth it for distributors. Age verification, public registry, etc? I could see the same arguments used for gun control being used for "porn control" just to "own the libs."', 'created': '2024-11-07 20:21:18', 'submission_id': '1glx2s7'}
{'comment': 'You think they care about the constitution?', 'created': '2024-11-07 20:34:36', 'submission_id': '1glx2s7'}
{'comment': "It's a first amendment right because SCOTUS previously ruled as such. But porn could easily fall under the category of obscenity if they choose to make it that way.\n\nOf course, the rationale behind banning porn at all is so they can redefine LGBTQ people as inherently obscene.", 'created': '2024-11-07 21:48:04', 'submission_id': '1glx2s7'}
{'comment': 'Read project 2025 and they are already bragging it’s really the plan after all and Trump saying he never heard of it and didn’t know what it was. They can ban it in different ways also. Age verification, Public registries etc… and make it not worth it for companies to put up with government harassment among other things. Don’t underestimate what they can and can’t do if they really want to.', 'created': '2024-11-07 20:37:19', 'submission_id': '1glx2s7'}
{'comment': 'Which is a gateway to giving prison to anyone who is lgbtq+, because just being gay or trans in public will fall under that definition', 'created': '2024-11-07 20:34:25', 'submission_id': '1glx2s7'}
{'comment': 'hahahah you guys are fcking crazy. fr', 'created': '2024-11-07 23:44:03', 'submission_id': '1glx2s7'}
{'comment': 'so no porn to release their pent up frustration, women unwilling now that contraception and abortion is not an options, the "alpha males" have shown they feel entitled to a woman\'s body, a rapist is now president with no consequences; so... the outcome here is rape', 'created': '2024-11-07 20:46:49', 'submission_id': '1glx2s7'}
{'comment': 'The guys on the Gen z sub are losing their minds because they think women are to blame for them becoming Trump supporters. Basically not enough women wanted to have sex with them and democrats were too mean to straight white boys so they decided to support the orange rapist.', 'created': '2024-11-07 21:10:56', 'submission_id': '1glx2s7'}
{'comment': 'The victims here are NOT going to be young men I fear...', 'created': '2024-11-07 20:17:46', 'submission_id': '1glx2s7'}
{'comment': 'You’d be surprised to know, women showed up for Trump almost as much as they showed up for Kamala. Statistically, this was not a silencing of women. They showed up and voted for this too.', 'created': '2024-11-07 20:58:37', 'submission_id': '1glx2s7'}
{'comment': 'No. It just means more rapes.', 'created': '2024-11-08 01:26:26', 'submission_id': '1glx2s7'}
{'comment': 'Whoosh.', 'created': '2024-11-07 20:54:16', 'submission_id': '1glx2s7'}
{'comment': 'They have a tame supreme court.', 'created': '2024-11-08 02:40:45', 'submission_id': '1glx2s7'}
{'comment': 'Besides, with today’s *sponsor*….', 'created': '2024-11-08 13:00:59', 'submission_id': '1glx2s7'}
{'comment': None, 'created': '2024-11-07 19:44:23', 'submission_id': '1glx2s7'}
{'comment': 'I think it was just a coincudence that Grinder spijed and crashed during the GOP convention.', 'created': '2024-11-07 20:32:55', 'submission_id': '1glx2s7'}
{'comment': 'This is actually 100 percent true.', 'created': '2024-11-08 02:51:12', 'submission_id': '1glx2s7'}
{'comment': 'Long time since I heard that term... 8-)', 'created': '2024-11-08 01:43:32', 'submission_id': '1glx2s7'}
{'comment': 'This is it.\n\nThe one Justice Potter Stewart quote comes to mind: “what’s obscenity. I will know it when I see it.”', 'created': '2024-11-08 02:52:55', 'submission_id': '1glx2s7'}
{'comment': "Only the libs aren't the biggest consumers of porn.", 'created': '2024-11-07 20:25:46', 'submission_id': '1glx2s7'}
{'comment': 'I see, “We the People” all over the Trump merch so obviously.\n\n/s', 'created': '2024-11-07 23:10:25', 'submission_id': '1glx2s7'}
{'comment': "Porn should have an age restriction.\xa0 13 yr olds should have a very difficult time accessing it.\n\n\nEveryone loves porn.\xa0 It's not going anywhere.", 'created': '2024-11-07 20:42:21', 'submission_id': '1glx2s7'}
{'comment': "And soon we'll need whole prisons just for gays and trans people. Glad everyone gets the danger we're in.", 'created': '2024-11-07 20:45:51', 'submission_id': '1glx2s7'}
{'comment': "On God. Can't wait to be criminalized for fucking existing...", 'created': '2024-11-07 20:46:23', 'submission_id': '1glx2s7'}
{'comment': 'They should really lean in to all aspects of the bible as well - ban pork and shrimp; make it illegal to mix fabrics or eat fat.', 'created': '2024-11-08 12:03:19', 'submission_id': '1glx2s7'}
{'comment': 'Why don\'t you read Thomas\'s concurring opinion in Dobbs. He refers to several cases that he\'d like the court to "reexamine" .these include gay marriage and anti-sodomy laws. In other words, Thomas would like to see the protection for people having gay sex become a State\'s rights issue where it could be criminalized. This isn\'t hysterical overreaction, it\'s the written words of a supreme court justice.', 'created': '2024-11-08 01:48:54', 'submission_id': '1glx2s7'}
{'comment': 'And also don’t forget all the closet cases in trumps administration that will now have to go to adult stores to get their gay and transgender porno flicks.', 'created': '2024-11-07 21:33:26', 'submission_id': '1glx2s7'}
{'comment': 'Or a woman standing over a would be rapists corpse because she ‘stood her ground’.', 'created': '2024-11-08 01:53:53', 'submission_id': '1glx2s7'}
{'comment': 'All they have to do is choose a wife then sex is guaranteed. /s', 'created': '2024-11-08 00:00:59', 'submission_id': '1glx2s7'}
{'comment': 'Well the White women who supported Trump are in for a wild ride', 'created': '2024-11-07 23:37:20', 'submission_id': '1glx2s7'}
{'comment': 'That sounds like a perfect combination for Soldiers to fight Christian wars', 'created': '2024-11-07 22:33:57', 'submission_id': '1glx2s7'}
{'comment': 'So they aren’t taking any responsibility for their own actions? I wonder where they learned that?\n\n/s', 'created': '2024-11-07 22:54:47', 'submission_id': '1glx2s7'}
{'comment': 'I hate my generation\n\nThere’s a reason I’m an “old school” Gen Z that behaves like a child from the 2010s and that I refused to grow up, because I never wanna be like those idiots', 'created': '2024-11-08 01:12:16', 'submission_id': '1glx2s7'}
{'comment': 'has anyone asked them "wait, you thought he was promising sex?"\xa0\xa0', 'created': '2024-11-08 00:25:43', 'submission_id': '1glx2s7'}
{'comment': "Don't bite the hand that feeds you. If women wanted male support for women issues, the last thing you do is demonize them. I've spoken to many Republicans and Trump supporters. Besides policy, many of them vote Republican because the leading figures there respect them. They don't want to be demonized, devalued, or attacked. Why would they want to support a political party who cares little of them? Granted, Kamala tried to reach them. But this has been years in the making. They have figures like Andrew Tate and Charlie Kirk to idolize. Who do they have on our side?\n\nIf this lesson can't be learned by next election, it would be no surprise why Democratic candidates are losing the male vote. Until then: women are on their own.", 'created': '2024-11-07 23:17:28', 'submission_id': '1glx2s7'}
{'comment': "That's my first thought. They'll work out those baser instincts in real life on real, unconsenting victims", 'created': '2024-11-07 20:54:12', 'submission_id': '1glx2s7'}
{'comment': 'Ladies, I suggest you begin packing some heat on you', 'created': '2024-11-07 23:34:37', 'submission_id': '1glx2s7'}
{'comment': 'I hope you are right, I feel this is very different though for a myriad of reasons.\n\nHoping a lame duck Biden and a pissed off Harris can try and right as much as possible before they turn over the reigns but I’m not hopeful.', 'created': '2024-11-07 23:01:28', 'submission_id': '1glx2s7'}
{'comment': "The point I'm making isn't about the consumers, but the nature of arguing points limiting constitutional rights. Except they won't care about the hypocrisy of the whole thing.", 'created': '2024-11-07 20:31:00', 'submission_id': '1glx2s7'}
{'comment': 'Not saying you are wrong but how would anyone know that for certain?', 'created': '2024-11-07 23:09:16', 'submission_id': '1glx2s7'}
{'comment': 'They already have restrictions no one under 18. They or the Republicans are talking about banning it. This can be done in many different ways without even saying that’s what they are doing. There’s no reason to not believe they will do what they say they will do', 'created': '2024-11-07 20:45:07', 'submission_id': '1glx2s7'}
{'comment': 'It’s ok, they’ll just privatize it for profit, have unlimited free labor and justify it as it’s only the sinners that are exploited.\n\nI’m pretty sure we’re supposed to all forgive our sins per Jesus but, you know…capitalism.\n\nI wish I could add an /s in good conscience.', 'created': '2024-11-07 22:57:48', 'submission_id': '1glx2s7'}
{'comment': 'For-profit prison companies already on it.\xa0\n\nhttps://www.bloomberg.com/news/articles/2024-11-07/private-prison-stocks-soar-after-trump-win-on-deportation-plans\xa0\n\nThey make money from having people imprisoned.\n\nI’ll just say that again for people that weren’t paying attention. **They make money from having people imprisoned.**', 'created': '2024-11-08 15:05:00', 'submission_id': '1glx2s7'}
{'comment': 'Ooooo time to invest in for profit prisons.', 'created': '2024-11-08 02:11:04', 'submission_id': '1glx2s7'}
{'comment': '💔', 'created': '2024-11-08 19:16:02', 'submission_id': '1glx2s7'}
{'comment': 'oh no no no. rules for thee. there will probably be some Truth social secret login to the people on the inside', 'created': '2024-11-07 22:00:08', 'submission_id': '1glx2s7'}
{'comment': 'spousal rape has also been endorsed by their lord trump', 'created': '2024-11-08 00:03:33', 'submission_id': '1glx2s7'}
{'comment': 'Oh well. Imo, anyone who voted for him with their heart deserves every negative consequence coming their way.', 'created': '2024-11-08 22:40:41', 'submission_id': '1glx2s7'}
{'comment': 'It’s nice to know that they aren’t all like that.', 'created': '2024-11-08 01:18:12', 'submission_id': '1glx2s7'}
{'comment': 'I guess we’ll find out if daddy Trump gets them all girlfriends and Teslas.', 'created': '2024-11-08 00:28:31', 'submission_id': '1glx2s7'}
{'comment': 'Okay, thinking that white men are being "demonized" is part of the problem here.\n\nIf women are complaining about rape and domestic violence, and you take that personally, it might be because you see no problem with committing those crimes. It\'s DEFINITELY because you don\'t want to take any sort of responsibility for preventing those things, though, and that\'s kinda bad enough.\n\nMen are not dumb; they are the lowest common denominator. There\'s a reason y\'all used to be sent off to fight wars -- a situation where you need to pick a fraction of the population to fight and die, men are both *the most expendable* and the easiest to "mass produce" for the purposes of war.\n\nThose traits are NOT as useful for most things in a modern society where the stakes are often not that dire and haven\'t been for a VERY long time.\n\nFor some reason, these men have been taught to idolize a time period that most of these people wouldn\'t survive a week in and completely forgotten the lessons thereof. Again, they are being catered to as low-hanging fruit, because men don\'t require things like "childcare" or "birth control" -- they can be kept in a lonely, horny, angry state indefinitely, with very little care or feeding, and it makes them very easily manipulated into believing SO. MANY. THINGS.\n\nThe reason these ideas are so appealing to a bunch of young men who have no families to support is not because these things make any sense, it\'s because they\'re the group that is *easiest to brainwash.*\n\nNow, yes, we have GOT to do better as a society to keep toxic people from reaching those groups, and we need to figure out how to get them to see they\'ve been hoodwinked so we can break the spell they\'re under. That said, people still have to be held responsible for their own stupid-ass choices, and this is going to be THE dumbest choice these people ever made.\n\nWe\'ve all had the past decade to see exactly what kind of man he is. Showing up late to the party is NO excuse.', 'created': '2024-11-08 00:04:13', 'submission_id': '1glx2s7'}
{'comment': "Trump straight up said he didn't care about his base yet they all dropped to their knees for a little suck. They can clutch pearls and kick rocks for their hysteria.", 'created': '2024-11-07 23:20:34', 'submission_id': '1glx2s7'}
{'comment': 'What the actual fuck?', 'created': '2024-11-08 19:19:21', 'submission_id': '1glx2s7'}
{'comment': "And the rest of us left behind will be guarding them while we are guarded. \n\nIt truly is the handmaid's tale.", 'created': '2024-11-07 23:48:29', 'submission_id': '1glx2s7'}
{'comment': 'Endorsed and practiced.', 'created': '2024-11-08 00:14:45', 'submission_id': '1glx2s7'}
{'comment': 'I’m proud that I preserved our original culture and never devolved like them, I don’t care if it’s a lonely existence', 'created': '2024-11-08 01:59:56', 'submission_id': '1glx2s7'}
{'comment': '>Okay, thinking that white men are being "demonized" is part of the problem here.\n\n>If women are complaining about rape and domestic violence, and you take that personally, it might be because you see no problem with committing those crimes. It\'s DEFINITELY because you don\'t want to take any sort of responsibility for preventing those things, though, and that\'s kinda bad enough.\n\n \nThis... is the underlying issue. \n\nAssumptions. \n\nNow, I\'m not saying that rape and domestic violence are not issues worth talking about. They are. But the way they’re talked about sometimes feels like it’s pointing fingers at all men. When you lump every guy who feels uncomfortable or defensive into a box labeled ‘probably guilty’ or ‘doesn’t care about helping,’ you’re oversimplifying a complicated issue.\n\nJust because some men get defensive doesn’t mean they’re against fixing these problems. A lot of them just feel unfairly categorized. We can tackle big issues like gender violence without putting a label on an entire group, and we should be able to have conversations that recognize that everyone’s got their own experiences and reactions. When you generalize like that, it just makes people shut down and back away from the conversation instead of joining in to help solve things. Now to be fair: there are also a lot of men who get defensive BECAUSE they are guilty of it. \n\nAnd this isn’t just about white men, either. I’m not white, and I can see the way men in general are sometimes painted in a negative light. Sure, white men often take the brunt of it, but this affects guys from all backgrounds. Just look at Twitter on November 19 (International Men’s Day), or trends like the one where women said they’d pick a bear over a man. I know that’s just social media fun, but it still hints at a real divide between men and women. I get that women have their reasons, and I respect that, but we can’t ignore the ways that some of this stuff backfires and makes it harder to bridge the gap between us. Not to mention that people who point this stuff are called \'incels\' or \'pick me\', instead of tackling the issue. [This video perfectly sums up what I\'m trying to say. Keep an open mind, and maybe we can learn about this in the future!](https://youtu.be/tSw04BwQy4M?si=_CTW8bHD3t7t3R4U)\n\n>Men are not dumb; they are the lowest common denominator. There\'s a reason y\'all used to be sent off to fight wars -- a situation where you need to pick a fraction of the population to fight and die, men are both\xa0*the most expendable*\xa0and the easiest to "mass produce" for the purposes of war.\n\n>Those traits are NOT as useful for most things in a modern society where the stakes are often not that dire and haven\'t been for a VERY long time.\n\nInterestingly enough, Republican men (or at least the younger ones) are some of the most anti-war people you can think of. They\'re isolationists: against the idea of getting involved in foreign countries wars, sending them money and weapons, etc. That being said, even though masculine traits were used for wars, doesn\'t mean they don\'t have their uses in the modern day. Strength, courage, resilience, and assertiveness still have significant value in modern society, from emergency services, construction, military, to even sports. I don\'t think there\'s anything wrong with masculine traits. I think they just want to be valued for it, and again... not held against it. That being said, I understand liberals concerns for toxic masculinity ( like aggression, dominance, and harmful behavior and attitudes from it). Having spoken to many Trump supporters online... they\'re quite the boisterous bunch. Quite angry too XD\n\n> Again, they are being catered to as low-hanging fruit, because men don\'t require things like "childcare" or "birth control" -- they can be kept in a lonely, horny, angry state indefinitely, with very little care or feeding, and it makes them very easily manipulated into believing SO. MANY. THINGS.\n\nActually, I agree. And I think it\'s because of this that the political messaging we do cater to men doesn\'t sway them away. I think Kamala\'s campaign TRIED to do that, but.... well, it was a desperate attempt: caring less about men\'s issues and more about "Hey men, we care about you.. helping women". And while that is the goal... you still have to present it in a way that\'s not using men as a tool.', 'created': '2024-11-08 02:00:34', 'submission_id': '1glx2s7'}
{'comment': 'Donald Trump has always emphasized traditional masculine values, something traditional male voters resonated with. Donald Trump portrays himself as a \'strongman\', something men are allured to. You know what men don\'t like? To be accused of having \'toxic masculinity\'. That\'s a term that I don\'t think many people understand: both to those are accused of it, and to those who use it to accuse others. Nobody likes to be told that who they are is inherently wrong. So while Donald Trump says "I don\'t care about you, I just want your vote. I don\'t care.", they still think he\'s a better alternative.', 'created': '2024-11-07 23:49:21', 'submission_id': '1glx2s7'}
{'comment': 'yes, the rapist Donald Trump does indeed endorse it', 'created': '2024-11-08 00:27:18', 'submission_id': '1glx2s7'}
{'comment': 'Good for you! All the hate they have will eat them up inside and they’re going to have egg on their faces when the tariffs backfire.', 'created': '2024-11-08 02:24:58', 'submission_id': '1glx2s7'}
{'comment': 'The guy who wears pancake makeup, girdles, diapers and lifts is “traditionally masculine”? The guy who’s never done a days work in his life? The guy who eats pizza with a knife and fork? Puh-leeeeez! He’s hateful and phony, a braggart, a criminal and a rapist. And they looooove that he gets away with it! He’s their anti-hero, their bizarro world Superman. He is toxic. If men are trying to emulate him, they are toxic as well.', 'created': '2024-11-08 07:39:01', 'submission_id': '1glx2s7'}
{'comment': 'As a woman, I will say that you need to actually educate yourself on things instead of just mansplaining.', 'created': '2024-11-08 19:22:05', 'submission_id': '1glx2s7'}
{'comment': 'People will talk about how normalized Trump is to my generation, but he was never normalized to me because I’m clever', 'created': '2024-11-08 12:53:46', 'submission_id': '1glx2s7'}
{'comment': 'Free paywall workaround:\n\nhttps://archive.is/Edgek', 'created': '2024-11-07 19:14:03', 'submission_id': '1glx0ig'}
{'comment': 'Needed something positive. I feel way worse than 2016.', 'created': '2024-11-07 19:28:42', 'submission_id': '1glx0ig'}
{'comment': 'This is why state and local elections are very important', 'created': '2024-11-07 19:50:11', 'submission_id': '1glx0ig'}
{'comment': 'Dang, I better start saving money so I can move to Cali when they succeed from the USA.', 'created': '2024-11-07 19:58:07', 'submission_id': '1glx0ig'}
{'comment': 'I seriously want California to secede now… my 2015 self would not even consider such a thought but now I don’t see another way of trying to protect our rights and our undocumented population, who deserve so much better than this.\n\nI don’t think it would work, I shudder to think of how Trump would respond, but this state is one of the last vestiges of the country I thought I knew, and that I loved.', 'created': '2024-11-07 20:37:17', 'submission_id': '1glx0ig'}
{'comment': 'This is why born and raised here, I have zero plans to ever move. I love it here.', 'created': '2024-11-07 20:21:58', 'submission_id': '1glx0ig'}
{'comment': 'Every blue state should be doing this', 'created': '2024-11-07 21:03:22', 'submission_id': '1glx0ig'}
{'comment': None, 'created': '2024-11-07 20:34:55', 'submission_id': '1glx0ig'}
{'comment': 'I just signed the petition for CalExit. I hope a western union with a New England coalition can somehow be created. I want to be done with the rest of the country.', 'created': '2024-11-07 20:33:44', 'submission_id': '1glx0ig'}
{'comment': 'Newsom is such as bad ass. My son already moved to California and we might have to be right behind him.', 'created': '2024-11-07 20:37:48', 'submission_id': '1glx0ig'}
{'comment': 'Newsome/Buttigieg 2028', 'created': '2024-11-07 20:04:56', 'submission_id': '1glx0ig'}
{'comment': 'Hope New York does the same', 'created': '2024-11-07 23:35:36', 'submission_id': '1glx0ig'}
{'comment': 'Can we run him in 2028', 'created': '2024-11-08 03:11:40', 'submission_id': '1glx0ig'}
{'comment': 'I moved to California two months after the 2016 election. It’s process, but so worth it.', 'created': '2024-11-07 23:42:03', 'submission_id': '1glx0ig'}
{'comment': 'To those saying we should all move there: \n\nIf we all moved to California, we would be leaving so much behind to destruction. We have to fight for our local communities, because who will do it if we go? We will not give in.', 'created': '2024-11-08 00:17:09', 'submission_id': '1glx0ig'}
{'comment': "He's likely the strongest candidate for 2028 as much as he gets heat on Reddit. Many on Reddit are still obsessed with Bernie (claiming she lost for not running left and like he did, even though she outperformed Bernie in Vermont lol) and on the other side of the party, Buttigieg (not like Manchin but appealing to highly educated high earner type people, so he's unlikely going to win over the demographics KH did weaker than Biden with).", 'created': '2024-11-07 23:25:04', 'submission_id': '1glx0ig'}
{'comment': 'https://preview.redd.it/i6x1p8dudkzd1.jpeg?width=2976&format=pjpg&auto=webp&s=38bfa609df27696798ff57345c9f60fb37ee38c8', 'created': '2024-11-08 00:30:37', 'submission_id': '1glx0ig'}
{'comment': 'I thank him for his effort, but how can state protections be enforced if the federal government takes them away?', 'created': '2024-11-07 20:38:57', 'submission_id': '1glx0ig'}
{'comment': "Newsom seems great....but he's from Cali. He's an easy target for fear mongering. \n\nDems need to get their shit together and pick a safe effective candidate..... or John Stewart. Idc", 'created': '2024-11-08 00:59:02', 'submission_id': '1glx0ig'}
{'comment': 'Newsom would have been a good candidate for president. But I heard that a lot of people see it differently. But boy, this guy knows it’s stuff and has interviews under tight control.', 'created': '2024-11-08 01:56:36', 'submission_id': '1glx0ig'}
{'comment': 'He is a good man, actual leader!!', 'created': '2024-11-08 01:01:13', 'submission_id': '1glx0ig'}
{'comment': 'As the federal government guts institutions states should work together to set up replacements (I’m thinking a consortium similar to the California CAFE Waiver)', 'created': '2024-11-08 02:11:57', 'submission_id': '1glx0ig'}
{'comment': 'So now states rights matter? I honestly wish the democrats had the foresight to be the party of states rights because your ‘federal government should be allowed to do everything while it’s in charge’ only works great when you have an Obama or Biden in office and a Pelosi/Schumer as speaker.\xa0\n\nIt goes to hell and shit when someone like Trump seizes control of the Oval Office and the Congress.\xa0\n\nNow they’re going to sign a national abortion ban at the federal level. If only there was a party that advocated for states rights to prevent government overreach… if only\xa0', 'created': '2024-11-08 05:32:12', 'submission_id': '1glx0ig'}
{'comment': 'Thank you Governor Newsom.', 'created': '2024-11-08 14:45:32', 'submission_id': '1glx0ig'}
{'comment': 'Newsom please remember the legacy of 1990s Democratic TX Gov. Anne Richards. \n\n\nCA. going more “purple”… history lesson to learn! deja vu 🤨', 'created': '2024-11-08 21:00:07', 'submission_id': '1glx0ig'}
{'comment': "Trumps disruption will effect population centers the most. Shunning transition teams I can't imagine the chaos that will have. \n\n\n\n[https://www.yahoo.com/news/trumps-shunning-transition-planning-may-221904264.html](https://www.yahoo.com/news/trumps-shunning-transition-planning-may-221904264.html)", 'created': '2024-11-09 21:16:14', 'submission_id': '1glx0ig'}
{'comment': 'I live in California. Newsom recently signed two pieces of pro-corporation, anti-consumer legislation that have gutted consumer protections here. He’s a corporate guy through and through, and is the last thing the party needs.\n\nDownvoted for pointing out Newsom is anti-consumer. He is.', 'created': '2024-11-07 20:52:18', 'submission_id': '1glx0ig'}
{'comment': 'Because now we know what to expect, unfortunately.', 'created': '2024-11-07 19:45:31', 'submission_id': '1glx0ig'}
{'comment': 'Get in now so you don’t have to worry about it last minute', 'created': '2024-11-07 21:53:49', 'submission_id': '1glx0ig'}
{'comment': "It'll be cheaper if you move to WA, plus they have had a greater shift to blue while CA has been creeping towards red. Hopefully the whole west coast will rebel though!", 'created': '2024-11-07 23:39:35', 'submission_id': '1glx0ig'}
{'comment': 'This! Exactly what I’m thinking. I’m in GA. Seems most viable plan since I can’t afford to move to a different country.', 'created': '2024-11-08 05:47:46', 'submission_id': '1glx0ig'}
{'comment': 'Californian here. If we secede, I want to take OR and WA with us. West coast blue wall.', 'created': '2024-11-08 01:10:02', 'submission_id': '1glx0ig'}
{'comment': 'I am just putting this out there a little early. JB Pritzer , 2028.', 'created': '2024-11-08 04:14:39', 'submission_id': '1glx0ig'}
{'comment': "Please don't. We need you to maintain emissions standards.", 'created': '2024-11-07 23:58:17', 'submission_id': '1glx0ig'}
{'comment': 'If there is a western union take everything up to New Mexico.', 'created': '2024-11-08 03:02:28', 'submission_id': '1glx0ig'}
{'comment': 'There’s not going to be a legitimate election in 2028 sadly', 'created': '2024-11-07 20:33:46', 'submission_id': '1glx0ig'}
{'comment': 'That would not win.', 'created': '2024-11-07 21:14:49', 'submission_id': '1glx0ig'}
{'comment': 'How about NJ if they succeeded in warding off the GOP candidate in 2025', 'created': '2024-11-08 05:01:02', 'submission_id': '1glx0ig'}
{'comment': 'Good point and I wonder if Gov Newsom has the power to take on MAGA Trump wing of the GOP', 'created': '2024-11-08 05:00:26', 'submission_id': '1glx0ig'}
{'comment': "I really like him, dude is one of the best talkers we have besides Pete and he isn't afraid to call out the bullshit from republicans and we desperately need someone like that now since America cares more about if u can put on a goddamn show than it does actual policy, his only downside is he's already talked about like some liberal monster that destroyed California", 'created': '2024-11-08 02:16:30', 'submission_id': '1glx0ig'}
{'comment': "The way this usually works is if the feds were to ban abortion, for example, the state police are ordered not to investigate or arrest and also not to cooperate with federal arrests. The same way in a lot of states the fbi can arrest you for pot but the state won't. \n\nIt's shockingly easy for a state as big as CA to thumb its nose at the feds.", 'created': '2024-11-08 00:02:28', 'submission_id': '1glx0ig'}
{'comment': 'The only way they ever have… guns', 'created': '2024-11-07 21:15:58', 'submission_id': '1glx0ig'}
{'comment': "Andy Beshear would be the safe choice, dude is an awesome governor with his only real downside being he's kinda boring, but no baggage", 'created': '2024-11-08 02:28:01', 'submission_id': '1glx0ig'}
{'comment': "Right but I think it was argued in reverse back then, like we fought for federal over states to prevent RED states from taking advantage of their constituents and I think that worked for things like LGBTQ marriage equality and until recently, Roe (I shudder every time I think of this, I hope the shock of that never leaves us). I see where we're at now and I obviously wish we thought about the flipped side of this.", 'created': '2024-11-08 06:04:11', 'submission_id': '1glx0ig'}
{'comment': 'Yeah we had no idea how bad Trump could be in 2016', 'created': '2024-11-07 20:18:52', 'submission_id': '1glx0ig'}
{'comment': 'Californian here, been considering heading up to WA for the colder climate & the cheaper CoL.', 'created': '2024-11-07 23:53:25', 'submission_id': '1glx0ig'}
{'comment': 'Take the border states too we could lock down 3/4th of the border and secure incentivized trade routes with Mexico along with the missle ranges and bases in New Mexico and Arizona why stop there take everything left of Texas and around Illinois. We can’t leave our Illinoisan brothers to rot in a sea of red.', 'created': '2024-11-08 02:54:43', 'submission_id': '1glx0ig'}
{'comment': 'New England here, let’s talk coalition.', 'created': '2024-11-08 04:28:13', 'submission_id': '1glx0ig'}
{'comment': 'Pls take Minnesota too Ty <3', 'created': '2024-11-08 04:19:11', 'submission_id': '1glx0ig'}
{'comment': "Good point but then Trump's power will oppose that. What will be better is OR WA CA West Coast Blue wall forming coalition with Northeast Blue Wall NJ,MD,DE,RI,NYS,ME,NH, VA possibly PA. Followed by MN,IL possibly WI and MI the Great Lakes BLue wall. What might cause it is the Trump plan of Jailing opponents which Harris called Retribution.", 'created': '2024-11-08 04:58:51', 'submission_id': '1glx0ig'}
{'comment': "CA, WA, OR, NM, CO = western states\n\nMN, NY, ME, VT, CT, RI, MA, NH, DC, DE, MD = eastern states\n\n \nEverything else can be theirs, we won't pay taxes to support them. Blue people in any red state will be given financial aid to come and live freely in whatever western or eastern state they desire. I will gladly share my home with them. The other remaining states can be the new Confederacy since they already have so many of those flags lying around.", 'created': '2024-11-08 03:49:17', 'submission_id': '1glx0ig'}
{'comment': 'Newsome would have won this year. We just learned a similar lesson to 2016 and sadly it has to do with people refusing to vote for women.', 'created': '2024-11-07 23:21:06', 'submission_id': '1glx0ig'}
{'comment': 'We know he has the balls too', 'created': '2024-11-08 05:36:27', 'submission_id': '1glx0ig'}
{'comment': "Yeah. He's been getting tougher on lax cities / districts in regards to the negative quality of life stuff that many people dislike and the right puts a spotlight on to scare people away from voting for Democrats (and paint California as a hellworld). If those cities do start looking better and seeming safer within the next couple of years, that may help though. Just not much time.", 'created': '2024-11-08 03:51:18', 'submission_id': '1glx0ig'}
{'comment': 'What is Petey B’s future now that he won’t be in the next administration? Obviously he’ll still be involved, but how? Indiana ain’t going to vote for him in the Senate, and Michigan (current home) won’t have an opening for quite a while. Sooooo, the House? Lives in a deep red district, but Bergman is 79 years old. Might happen. It’s either that, MI Governor in 2026, or a podcast.', 'created': '2024-11-08 06:33:53', 'submission_id': '1glx0ig'}
{'comment': 'That\'s what Inslee did here in Washington. "Oh, you\'re looking for private medical information? States rights. Suck it!".', 'created': '2024-11-08 00:32:02', 'submission_id': '1glx0ig'}
{'comment': 'Most police are republicans voters tho.', 'created': '2024-11-08 02:39:00', 'submission_id': '1glx0ig'}
{'comment': "I voted for Andy twice but I don't know if his wholesome brand translates well for national politics. He can win republican voters in KY though.", 'created': '2024-11-08 02:51:57', 'submission_id': '1glx0ig'}
{'comment': 'Californian here as well. My liberal brother lives in WA and can’t wait to come back to California when the kids are old enough. Outside of metropolitan areas, it’s still very conservative. \n\nBut I agree, I’d move up there easily. I love the weather, the CoL, the nature, all of it. My brother owns a home there and wouldn’t be able to afford here. So for now, he is staying. \n\nAnd I am going to visit him in a couple weeks! I plan to toot around his area and look at real estate. You never know.', 'created': '2024-11-08 01:08:14', 'submission_id': '1glx0ig'}
{'comment': 'Moving to Illinois from the deep south next month. Yes please take us with you', 'created': '2024-11-08 03:10:42', 'submission_id': '1glx0ig'}
{'comment': 'I’m down for the coastal coalition plus Minnesota and Illinois.', 'created': '2024-11-08 05:40:45', 'submission_id': '1glx0ig'}
{'comment': 'NJ here and let me guess you want NE Blue Wall with NYS,CT,MA,RI,VT,NH and ME? What state from New England are you from?', 'created': '2024-11-08 05:02:31', 'submission_id': '1glx0ig'}
{'comment': 'Minnesota is in!', 'created': '2024-11-08 05:39:35', 'submission_id': '1glx0ig'}
{'comment': 'The United Coasts of America. We will also include the states (don’t forget VA) that voted blue on Tuesday. The money we save NOT propping up failing red states will be used to relocate democrats from all red states.\n\nCalifornia grows food and we can afford to buy it from other countries AND the poor red states will have no choice but to trade with us.', 'created': '2024-11-08 04:31:22', 'submission_id': '1glx0ig'}
{'comment': 'I feel like if states are seceding then it’s bad enough for other states to divorce the union.', 'created': '2024-11-08 03:53:55', 'submission_id': '1glx0ig'}
{'comment': 'Did you leave out NJ and IL from that. Correct list for the Eastern and Great Lakes MN, NY, ME, VT, CT, RI, MA, NH, DC, DE, MD = eastern states with NJ and IL', 'created': '2024-11-08 05:01:43', 'submission_id': '1glx0ig'}
{'comment': "He would've also lost... rest of the country hates liberal CA politics.", 'created': '2024-11-07 23:41:33', 'submission_id': '1glx0ig'}
{'comment': "2028 will be hard to prepare for with the Olympics in LA, no? I mostly live in LA and I feel like it's literally part of my life every day since everything is in preparation for the Olympics. Public transportation is changing rapidly for the better! :)", 'created': '2024-11-08 05:56:02', 'submission_id': '1glx0ig'}
{'comment': "He'd be another awesome candidate to run as president but yea, this stupid ass country isn't electing a gay dude right now, hell governor might even be a stretch unless he was running in a solid blue state", 'created': '2024-11-08 06:37:55', 'submission_id': '1glx0ig'}
{'comment': 'So? They are employees of the state or locality, not the feds.', 'created': '2024-11-08 04:58:21', 'submission_id': '1glx0ig'}
{'comment': "If you want someone that's gonna be a pitbull going on the attack than it'd have to be Newsome, hes awesome at it,I think by the time trump is done fucking up the country most won't care that he's a liberal from Cali", 'created': '2024-11-08 02:57:59', 'submission_id': '1glx0ig'}
{'comment': "Yeah, PNW is conservative AF outside the big cities. It's just sparsely populated.", 'created': '2024-11-08 03:05:36', 'submission_id': '1glx0ig'}
{'comment': 'It’d be a hard gambit to secure the upper north but if things are bad enough to where California actually secedes and uses its military to hold off an invasion from the east then I think states like Oregon Wyoming Montana would throw themselves into the fray and begin the western union, Utah and Mormons might be for it or stay neutral, they arent Christian so if p2025 wants Christian nationalism they would not be down with having Judeo Christianity forced on em and think about all the native Americans that want to rise up against a rogue America..give em an opportunity for more war chiefs to made and give better terms along with the deported families that have a personal grudge against being removed by ice agents and then Canada could back us I don’t think Trudeau is okay with a dictator next door so Trudeau would be an ally and so would the eu.', 'created': '2024-11-08 03:16:27', 'submission_id': '1glx0ig'}
{'comment': 'I was going to add Illinois but I didn’t want to be greedy. Illinois is in.', 'created': '2024-11-08 05:13:26', 'submission_id': '1glx0ig'}
{'comment': 'I’ve since decided we should add NM CO HI and Puerto Rico. They will all be considered islands, some surrounded by water and some by morons.', 'created': '2024-11-11 17:47:42', 'submission_id': '1glx0ig'}
{'comment': 'I’m from MA and I’m including NJ and VA, MD, DC in my plan. Along with MN IL NM CO HI and Puerto Rico. I’m calling it the United Coasts of America, but it’s really all the blue states.', 'created': '2024-11-11 17:50:40', 'submission_id': '1glx0ig'}
{'comment': 'Ty we will bring the fresh water. <3', 'created': '2024-11-08 05:41:54', 'submission_id': '1glx0ig'}
{'comment': 'That\'s a good point! I also think current red folks in blue states could pay for their own relo since they\'ll have all that "tax cut" money. We would use our surpluses to help our friends in the red states come over. Also while we\'re at it, we can\'t forget Alaska and Hawaii, and then we\'d adopt Puerto Rico as an official state in our New United States of Democracy.', 'created': '2024-11-08 05:51:41', 'submission_id': '1glx0ig'}
{'comment': "omg I'm so sorry!! I did not intentionally do that. I'm not looking at a map so this was off the top of my head. But that collective list of states sounds really fun.", 'created': '2024-11-08 05:06:08', 'submission_id': '1glx0ig'}
{'comment': 'I suppose the ghost of Ross Perot could have entered too.', 'created': '2024-11-07 23:42:38', 'submission_id': '1glx0ig'}
{'comment': 'This is why when Biden picked Harris, Newsome’s best case was 2030s, and worst case was never. Harris was either going to carry the torch through the 2020s, or flame out, dooming any California politicians on a national stage for a decade. Looks like we got the latter.', 'created': '2024-11-08 06:23:01', 'submission_id': '1glx0ig'}
{'comment': 'Doesn’t matter. They’ll enforce what they choose to. We’ve already seen this in Oregon, with silent protest from police and the union. No one responds to calls anymore. It’s still happening almost a decade after the defund police stuff, yet they have been getting more and more money each year. They’re being over-funded and still choose not to do their jobs. Meanwhile, fire services are being cut.', 'created': '2024-11-08 05:03:41', 'submission_id': '1glx0ig'}
{'comment': ' Agreed. Newsome has gone on Hannity and he did that debate with DeSantis and did well. I know Kamala did well in that Bret Baier interview but she could have gotten out more.', 'created': '2024-11-08 03:32:52', 'submission_id': '1glx0ig'}
{'comment': 'Sweet!', 'created': '2024-11-08 05:43:42', 'submission_id': '1glx0ig'}
{'comment': 'I did forget HI. HI and Puerto Rico are in. I’m side eyeing Alaska. They are red, so they would need a compelling argument. Yes, it’s a land of rich resources, but also Putin wants it so if the people there are still stupid, is it worth fighting for it?', 'created': '2024-11-11 17:46:05', 'submission_id': '1glx0ig'}
{'comment': "We're talking about a situation where we want them to not enforce so... okay?\n\nIn Oregon it was local sheriffs getting mad they weren't allowed to racially profile people. And iirc it ended when the state threatened their funding. Maybe a few super magas risk their jobs to arrest people and then... can't prosecute them? Whatever.\n\nIn our systems states really have a lot more power than people realize. They are still in many ways sovereign nations and the counties in them just aren't. \n\nPlus... p2025 defunds the fbi. So the feds really won't have any teeth to go after criminals breaking federal law in blue states that choose to ignore it.\n\nIn the words of the Colorado governor in regards to pot: you made the law, you come enforce it.", 'created': '2024-11-08 05:26:40', 'submission_id': '1glx0ig'}
{'comment': "Oh he fucking destroyed densantis, also he'd do well with the podcast bros", 'created': '2024-11-08 03:35:35', 'submission_id': '1glx0ig'}
{'comment': 'Leopards are starving but they have a face buffet now….', 'created': '2024-11-07 19:32:10', 'submission_id': '1glwsm0'}
{'comment': "Detroiter here. I remember Trump's Muslim bans in 2017. Many Muslim citizens and people with green cards were denied re-entry to America, and stuck in their home countries for weeks. What was even worse, many Arabs were detained by ICE, and deported if they had criminal convictions. A Chaldean American from Sterling Heights, who had never even been to Iraq, was deported there and died after two weeks because he was diabetic and schizophrenic. The ACLU blocked the first two versions of Trump's Muslim ban, and blocked some deportations. But the Supreme Court ultimately ruled to uphold Trump's Muslim Ban 3.0. This time it will be harder for the ACLU to fight for them, and their efforts to stop the Muslim Ban will be rejected. We have more partisan and extremist judges now than ever before.", 'created': '2024-11-07 20:24:45', 'submission_id': '1glwsm0'}
{'comment': 'Yes because voting for the guy who, let me check my notes, hates Muslims will somehow help Muslims. \n\nSeems legit.', 'created': '2024-11-07 20:19:38', 'submission_id': '1glwsm0'}
{'comment': 'The depths of human stupidity never ceases to amaze me. Well, you got it... A total powder keg is about to happen in the Middle East.', 'created': '2024-11-07 20:13:26', 'submission_id': '1glwsm0'}
{'comment': "I will never understand why someone votes for the worse option just because the other one isn't perfect. A vote for the U.S. President is not a popularity contest. You're supposed to vote for the candidate that better represents your interests. Between Harris and Trump, the better option would have been Harris. But now they got themselves Trump, and they're gonna be surprised when he prioritizes beachfront properties over lives.", 'created': '2024-11-07 20:40:16', 'submission_id': '1glwsm0'}
{'comment': 'Cutting off your nose to spite your face.', 'created': '2024-11-07 19:21:10', 'submission_id': '1glwsm0'}
{'comment': 'File this under "WE FUCKING TOLD YOU SO"', 'created': '2024-11-07 20:21:01', 'submission_id': '1glwsm0'}
{'comment': 'Acting in bad faith rarely leads to anything good. Now we just sit back and watch.', 'created': '2024-11-07 19:52:37', 'submission_id': '1glwsm0'}
{'comment': 'Get ready for 4 years of “finding out”', 'created': '2024-11-07 20:57:43', 'submission_id': '1glwsm0'}
{'comment': 'Shit like this makes accelerationism look sensible.', 'created': '2024-11-07 19:51:24', 'submission_id': '1glwsm0'}
{'comment': 'Have 0 sympathy. They did this to themselves.', 'created': '2024-11-07 19:42:33', 'submission_id': '1glwsm0'}
{'comment': 'Muslims voting for Trump, women voting for Trump, Latinos voting for Trump, financially less fortunate people voting for Trump. We are a very confused nation right now.', 'created': '2024-11-07 23:28:33', 'submission_id': '1glwsm0'}
{'comment': "What's that saying about leopards and eating faces?", 'created': '2024-11-07 20:43:12', 'submission_id': '1glwsm0'}
{'comment': "They got their wish. Now it's time they pay for it.", 'created': '2024-11-07 21:14:58', 'submission_id': '1glwsm0'}
{'comment': 'No… they voted for this. Time to pay the piper', 'created': '2024-11-07 20:57:02', 'submission_id': '1glwsm0'}
{'comment': 'I might change my tune later.\n\nBut for now, I’m done. Let them reap what they sowed. We screamed from the rooftops about what a second Trump presidency would do. Screamed it for YEARS. This didn’t just start with Harris being the nominee.\xa0\n\nI canvased. I door knocked. I cold called. I donated.\xa0\n\nI’m done. I’m a white male, so I personally didn’t have much skin in the game. I did it for the others I saw as most vulnerable. For those that Trump and his ilk have actively talked about hurting. And a lot of them, in turn, just shrugged their shoulders.\n\nSo ok, I’m shrugging mine in return.', 'created': '2024-11-07 23:38:14', 'submission_id': '1glwsm0'}
{'comment': 'They’ll reap what they sowed', 'created': '2024-11-07 20:00:01', 'submission_id': '1glwsm0'}
{'comment': "I seriously doubt that Trump's deportation plans end with Hispanics from south of the border (although that's bad enough). I also think that just because the current administration is facilitating harm to people over there is sufficient reason for a protest vote that will result in harm to yourself over here. That's just plain stupid.", 'created': '2024-11-07 20:37:57', 'submission_id': '1glwsm0'}
{'comment': 'Leopards eating faces.', 'created': '2024-11-07 21:05:14', 'submission_id': '1glwsm0'}
{'comment': "I'm so fucking tired of religion, religious people, ans them using one issue with their religion to fuck everything else up for everyone. I'm tired of acting like we have to respect other people's delusions, no matter how it negatively affects us.", 'created': '2024-11-07 21:29:16', 'submission_id': '1glwsm0'}
{'comment': '99% of Trump voters voted against their own interest', 'created': '2024-11-08 01:38:29', 'submission_id': '1glwsm0'}
{'comment': '"May have".... yeah like it wasn\'t obvious', 'created': '2024-11-07 21:00:41', 'submission_id': '1glwsm0'}
{'comment': 'Play stupid games, win stupid prizes', 'created': '2024-11-07 20:24:44', 'submission_id': '1glwsm0'}
{'comment': 'At the risk of getting flamed and banned, we need to recognize that the majority of Muslims are not allies to a liberal or democratic society. \n\nWe need to recognize that about a lot of groups we have embraced and coddled and big-tented only to see them flip us off because they hate women, LGBTQ+, and people with darker skin than themselves.', 'created': '2024-11-07 20:31:17', 'submission_id': '1glwsm0'}
{'comment': 'And now Brian Hook is part of Trump\'s "peace" team. Surprise, surprise.', 'created': '2024-11-07 19:57:51', 'submission_id': '1glwsm0'}
{'comment': 'Are we supposed to feel bad or..?', 'created': '2024-11-07 21:31:50', 'submission_id': '1glwsm0'}
{'comment': 'Netanyahu, Putin, Le Quiang, … every leader with a potential gain from a weak and disorganized America worked endlessly to influence this election; and ignorant Trumpies fell for it like shit into the toilet. And now, I guess, the shitter is where we’ll stay. Get used to the smell.', 'created': '2024-11-07 21:20:51', 'submission_id': '1glwsm0'}
{'comment': 'One Quranic verse literally says:\n\n"O believers! Stand firm for Allah and bear true testimony. Do not let the hatred of a people lead you to injustice. Be just! That is closer to righteousness. And be mindful of Allah. Surely Allah is All-Aware of what you do."\n\nI guess their hatred for liberalism, feminism, LGBTQ, and women blinded them, and they ended up screwing themselves over.', 'created': '2024-11-07 20:45:20', 'submission_id': '1glwsm0'}
{'comment': 'Their protest helped get Trump elected. One of trump’s biggest donors is Miriam adelson who is Jewish. Trumps son in law is friends with Netanyahu. The situation will probably get worse. Good job guys.', 'created': '2024-11-07 22:28:55', 'submission_id': '1glwsm0'}
{'comment': 'protest votes in a two-party first pass the post system while Donald Trump is on the ballot was reckless beyond comprehension. \n\nNow the palestinians are doomed. \nand the right wing is chanting "your body my choice all over the internet." \n\nI\'m terrified for what comes next. \nwe\'ve been so happy and so stupid for so long most of us don\'t even have concepts for just how bad it could possibly be. \n\nOpen a history book and look for the worst things that humans have ever done to each other and understand that that is rock bottom and we very well could be going there. \n\nyou got two months to prepare for the worst.', 'created': '2024-11-08 03:12:55', 'submission_id': '1glwsm0'}
{'comment': 'This type of logic is insane. As a Michigander and a Muslim, I have no sympathy for these people. They refused to look at it pragmatically and will face the consequences. I hope that protest vote will be worth it to them.', 'created': '2024-11-07 22:28:54', 'submission_id': '1glwsm0'}
{'comment': 'Tons of Trump supporters are going to see direct consequences of their choice, but most will never connect the dots\n\nWe fought a World War over a scenario like this, but I don’t expect my fellow Americans to understand shit about history, science or economics at this point\n\nMost have proven they are idiots', 'created': '2024-11-07 21:40:37', 'submission_id': '1glwsm0'}
{'comment': 'People of Michigan. I want your input on something. I wonder if all along Democrats have falsely assumed that Muslims were more liberal than they actually are. Considering that a Muslim led Michigan city recently banned pride flags, perhaps assuming that Muslims would vote blue because of Trump was a false assumption all along. \n\n[Michigan Muslims ban pride flag](https://www.theguardian.com/us-news/2023/jun/17/hamtramck-michigan-muslim-council-lgbtq-pride-flags-banned)', 'created': '2024-11-08 01:16:01', 'submission_id': '1glwsm0'}
{'comment': 'No way. 🤯\n\nExactly 0 people saw this happening.', 'created': '2024-11-08 01:22:45', 'submission_id': '1glwsm0'}
{'comment': 'We told them. The entire fucking time. I’m sorry, I just can’t. Tlaib did it to herself & to her people. That’s the worst part. They think they’ll be immune from trump’s muslim ban? Bet yall he’ll find a way to revoke their citizenship.', 'created': '2024-11-07 22:45:13', 'submission_id': '1glwsm0'}
{'comment': '', 'created': '2024-11-07 21:01:59', 'submission_id': '1glwsm0'}
{'comment': 'The Middle Eastern conflict has been going for decades if not centuries, anyone who thinks that whomever is president is suddenly going to make it all go away is fooling themselves and destroying our own country by voting in a fascist.', 'created': '2024-11-08 01:50:35', 'submission_id': '1glwsm0'}
{'comment': 'They forgot that Trump imposed a Muslim ban when he was in office the first time...', 'created': '2024-11-08 02:11:17', 'submission_id': '1glwsm0'}
{'comment': 'People aren’t war gaming this properly. After Inauguration Day, representation in Congress if we don’t retake the House will not be a thing. Even the MAGAs will just be figureheads. The multi-cultural republic we’ve built since the passage of the Civil Rights Act will soon be over. What comes next doesn’t have the rules you believe in still.', 'created': '2024-11-08 01:13:25', 'submission_id': '1glwsm0'}
{'comment': 'They made a choice and now will have to live with the consequences. Our biggest issue is millions of democrat voters just didn’t show up at all.', 'created': '2024-11-08 01:34:41', 'submission_id': '1glwsm0'}
{'comment': "Welp, let's see how much better it gets under Trump.", 'created': '2024-11-07 20:54:43', 'submission_id': '1glwsm0'}
{'comment': 'You get what you fucking voted for.', 'created': '2024-11-07 21:30:40', 'submission_id': '1glwsm0'}
{'comment': 'May the leopards prey upon their faces', 'created': '2024-11-07 21:50:08', 'submission_id': '1glwsm0'}
{'comment': 'Ppl on TT were arguing with me about how now that Trump is in, Hamas has said they wanna end the war. They also tried telling me the same thing was said by Russia about their conflict. Now idk if this is true but weird that these two wars that have been going on now for how long???… suddenly want to end both because Trump is in now. Well duh, now they can say Trump is the reason the wars ended. These people are gullible, stupid, incoherent, incompetent, self absorbed pricks.', 'created': '2024-11-07 20:25:52', 'submission_id': '1glwsm0'}
{'comment': 'MAGAs fell into the trap and every dictator in the world is celebrating right now.', 'created': '2024-11-07 21:57:21', 'submission_id': '1glwsm0'}
{'comment': 'Yeah no shit- we’ve been saying how dumb this was for months', 'created': '2024-11-07 22:06:54', 'submission_id': '1glwsm0'}
{'comment': "And it worked. So he's incentivized to do it again if necessary.", 'created': '2024-11-07 23:24:38', 'submission_id': '1glwsm0'}
{'comment': 'To be clear, Rashida Talib cannot be impeached. This is how members of Congress are expelled: https://constitution.congress.gov/browse/essay/artI-S5-C2-2-6/ALDE_00013585/#:~:text=Each%20House%20may%20determine%20the,two%20thirds%2C%20expel%20a%20Member.&text=The%20House%20and%20Senate%20power,reprimand%2C%20fine%2C%20or%20expel.', 'created': '2024-11-08 01:12:22', 'submission_id': '1glwsm0'}
{'comment': 'Could you share the link for this screenshot? I wanna hate-read the whole article', 'created': '2024-11-07 22:16:29', 'submission_id': '1glwsm0'}
{'comment': "Protect Rashida Tlaib at all costs! I can't imagine how terrifying it is for her right now.", 'created': '2024-11-08 02:16:35', 'submission_id': '1glwsm0'}
{'comment': 'Reap what you sow. Wait ti they get deported. They thought Biden was bad. Read up on project 2025. It’s happening and we can’t stop it.', 'created': '2024-11-08 00:10:06', 'submission_id': '1glwsm0'}
{'comment': 'Face, meet leopards.', 'created': '2024-11-08 02:06:52', 'submission_id': '1glwsm0'}
{'comment': 'We knew that this was going to happen.', 'created': '2024-11-08 02:40:17', 'submission_id': '1glwsm0'}
{'comment': 'Our country is so screwed. I hope every single idiot that voted for Trump suffers more so than the rest of us.', 'created': '2024-11-08 16:15:23', 'submission_id': '1glwsm0'}
{'comment': "My bunions are killing me....cut off your toe and they'll stop hurting.", 'created': '2024-11-07 21:52:04', 'submission_id': '1glwsm0'}
{'comment': "Its not really surprising, even though everyone is screaming Trump would be worse on Gaza than Biden, no one is actually watching Trump be worse towards Gaza. There was no full scale invasion of Gaza during Trump's time so everything is just speculation to them. I work with several Arab Americans in Detroit and they told me that they felt that Biden and Harris are talking out of both sides of their mouths: Saying they want a cease-fire and for Israel to stop bombing civilians, but then also saying they support Israel and sending the bombs that are being dropped on women and children in refugee camps. They also think that Trump is the candidate of less wars so in their minds voting for Trump was a desperation attempt at any sort of change because nothing has really changed up until now.\n\nNetanyahu was definitely slow rolling the cease-fire talks though until after the election and now definitely until inauguration. I think it just stands now that Palestinians won't see any relief for a couple months still if any.\n\nAlso, Muslims and Arab-Americans are pretty socially conservative, did you guys see the video about them banning the LGBTQ flag in the Detroit suburbs and all the slurs about the community they were saying? I am surprised they didn't start voting GOP sooner.", 'created': '2024-11-07 23:04:57', 'submission_id': '1glwsm0'}
{'comment': "OH WELL. \n\nI don't feel sorry for anybody who went this route for their vote. And there were lots of people who did this.", 'created': '2024-11-08 02:23:12', 'submission_id': '1glwsm0'}
{'comment': 'Absolute morons', 'created': '2024-11-08 02:27:41', 'submission_id': '1glwsm0'}
{'comment': 'I guess nobody gives a flying fuck what will happen to Ukraine.', 'created': '2024-11-08 02:29:59', 'submission_id': '1glwsm0'}
{'comment': 'https://preview.redd.it/yz4g3itdlkzd1.jpeg?width=960&format=pjpg&auto=webp&s=d6602e815cfbba9cc52ca4a3ec5625b2398c47bf', 'created': '2024-11-08 01:12:55', 'submission_id': '1glwsm0'}
{'comment': 'I legit think that some of these new young voters don’t remember the Muslim ban he proposed.', 'created': '2024-11-08 01:19:09', 'submission_id': '1glwsm0'}
{'comment': 'People are just so fucking stupid. I hate people. Ugh', 'created': '2024-11-08 01:20:59', 'submission_id': '1glwsm0'}
{'comment': "Whelp, they sealed the fate of Palestinians. Netanyahu will 'get to do whatever the Hell he wants' now.", 'created': '2024-11-08 00:04:08', 'submission_id': '1glwsm0'}
{'comment': 'Hope their woefully misinformed protest vote was worth it.', 'created': '2024-11-08 00:35:23', 'submission_id': '1glwsm0'}
{'comment': 'I don\'t know how to stress enough to people that political strategists will always, always, always prioritize voters who have voted their way in the past. Every time you sit out an election or make a "protest" vote you decrease you tell political strategists you aren\'t worth their time because they\'re only concerned with people who DO vote. Why do Democrats continually try to court centrists? Because they SHOW UP.', 'created': '2024-11-08 01:00:50', 'submission_id': '1glwsm0'}
{'comment': 'Good Job Rashida for not endorsing Harris. Now all your people will die.', 'created': '2024-11-08 03:49:56', 'submission_id': '1glwsm0'}
{'comment': '', 'created': '2024-11-07 22:09:13', 'submission_id': '1glwsm0'}
{'comment': 'This is truly the real-life version of the trees voting for the axe.', 'created': '2024-11-08 00:29:55', 'submission_id': '1glwsm0'}
{'comment': 'https://preview.redd.it/r5gdla9zdkzd1.jpeg?width=2976&format=pjpg&auto=webp&s=72eaeff1abedcbbcbc24622b20a6736ea148cec9', 'created': '2024-11-08 00:31:22', 'submission_id': '1glwsm0'}
{'comment': 'No shit.', 'created': '2024-11-08 03:39:31', 'submission_id': '1glwsm0'}
{'comment': '18 million less is a big issue', 'created': '2024-11-08 03:41:07', 'submission_id': '1glwsm0'}
{'comment': 'That reasoning is fucking stupid but they dont want to discuss the actual reason they had an aversion to voting for Kamala. Hope they remember how quickly Trump put in a Muslim ban because he’s likely to do it even quicker now. Also their choices have led to likely a significant amount of danger to Rashida. Hope it was worth it.', 'created': '2024-11-08 05:37:28', 'submission_id': '1glwsm0'}
{'comment': "These folks and the Cranky Tankies are going to be first in line at the Leopard buffet. \n\nWell, them and all the idiots in the working class who voted for Trump and don't understand what's going to happen when the tariffs ate into their company's profits and thus into their wages, which aren't going to be helped if they go through with the proposed canceling of all overtime pay and union busting. \n\n2025, until it all crashes because let's be honest there won't be any Fair elections anytime in the near future, is going to be nothing but Leopard buffets", 'created': '2024-11-08 05:51:29', 'submission_id': '1glwsm0'}
{'comment': 'People always voting against their own interests in America. It’s sad how stupid most people have become here. But most of them are religious people, so we should know by now that they are by far the most gullible group of people in the country, if not the world.', 'created': '2024-11-08 09:29:36', 'submission_id': '1glwsm0'}
{'comment': 'I didn’t think those leopards would eat MY face…', 'created': '2024-11-08 16:22:15', 'submission_id': '1glwsm0'}
{'comment': "Yeah but the price of eggs is apparently more important. Honestly, the *'panem et circenses (bread and circus)* rings so true after 2000 years. All people want is sound bites and single words or feelings. \n\nIf people are that easy to dupe, I think it's time I make some money from these Muppets, might as well think like the billionaire class.", 'created': '2024-11-08 16:33:18', 'submission_id': '1glwsm0'}
{'comment': 'I have no support for people who”make a statement” which affects the entire world. I hope EVERYONE who cast a vote for him suffers from his policies. I am angry, enraged that Americans decided that RAPE IS OK! Fuck this and I don’t know if it’s possible to fix this. We are now and forever being controlled by OLIGARCHS . Great FUCKING job America', 'created': '2024-11-08 17:44:34', 'submission_id': '1glwsm0'}
{'comment': 'I believe the biggest problem with the votes were men and women refusing to vote, not only for a woman, but a black woman. It’s reprehensible', 'created': '2024-11-08 19:27:03', 'submission_id': '1glwsm0'}
{'comment': 'This is a perfect example of purity test democrats. They want 3 things and only get 2 so they sabotage the entire party in protest. \n\nPeople say “they’re so stupid they voted against their own interests”. They’re not stupid. They’re no compromise ideologues just like the MAGA people. They will burn everything down if they don’t get everything they want. It doesn’t matter if their cause is morally righteous or not. They are saboteurs.', 'created': '2024-11-08 20:56:10', 'submission_id': '1glwsm0'}
{'comment': 'Tlaib, the representative who refused to condemn chants of “Death to America!!” occurring in her (American) communities?', 'created': '2024-11-08 22:26:43', 'submission_id': '1glwsm0'}
{'comment': 'Not that many voted for trump, the number split I saw was like 45 harris 45 stein 10 Trump and even if all had voted for Harris it wouldn’t have offset Trump’s lead which came more mostly from white males but seriously the campaign has noone to blame but themselves', 'created': '2024-11-07 21:53:36', 'submission_id': '1glwsm0'}
{'comment': 'No shit.', 'created': '2024-11-07 21:57:15', 'submission_id': '1glwsm0'}
{'comment': 'One candidate would actually listen with enough pressure consistently applied through traditional means like protests/marches, and the other candidate would send tear gas and tell you to go fuck yourself. \n\nSo disappointing that so many people just get frustrated and just give up. Did everyone forget that it takes a concerted effort to get things done? Nothing happens at the snap of a finger, just ask anyone who was part of the Civil Rights Movement.', 'created': '2024-11-08 01:03:54', 'submission_id': '1glwsm0'}
{'comment': 'Trump withholds medical equipment from Michigan during covid until the governor makes a public video praising him. Michigan votes for him.', 'created': '2024-11-08 01:09:04', 'submission_id': '1glwsm0'}
{'comment': 'Trust me, MAGA is going to push to vote out Tlaib anyway. They are going to try and permanently flip the swing states red. \n\nAs far as the Muslims in Michigan go, they will be under magnifying glass. Get a speeding ticket you are on a terrorist watch list.', 'created': '2024-11-08 02:03:11', 'submission_id': '1glwsm0'}
{'comment': 'Fuck Tlaib. She’s a big part of people being anti-Biden around those parts.', 'created': '2024-11-08 01:51:38', 'submission_id': '1glwsm0'}
{'comment': 'A protest vote? These folks wanted Trump, let’s not pretend otherwise.', 'created': '2024-11-07 22:17:21', 'submission_id': '1glwsm0'}
{'comment': 'I mean she deserves it. Incredibly dumb move that’ll end up her being called a terrorist and getting kicked out with Omar', 'created': '2024-11-07 22:07:30', 'submission_id': '1glwsm0'}
{'comment': 'They are too dumb to realize how much blood they have on their hands. And how much personal misery they just signed up for. I’ll have zero sympathy for them when they pay the price. They screwed us all.', 'created': '2024-11-07 22:23:28', 'submission_id': '1glwsm0'}
{'comment': 'No fucking shit.', 'created': '2024-11-07 22:32:08', 'submission_id': '1glwsm0'}
{'comment': 'Like they weren’t told this is what’s going to happen.\n\nThey destroyed themselves and we just get to tsk tsk them because of it.', 'created': '2024-11-08 02:11:49', 'submission_id': '1glwsm0'}
{'comment': 'It wasn’t the Muslim vote in Michigan. A majority of voters decided to elect a lying, raping, felonious, international laughingstock. That’s how much the majority of the voting public cares about whatever it is that Democrats have been selling.', 'created': '2024-11-08 04:42:39', 'submission_id': '1glwsm0'}
{'comment': 'Let’s not blame the Muslims here even if they all voted Harris it wouldn’t have saved her', 'created': '2024-11-07 22:40:03', 'submission_id': '1glwsm0'}
{'comment': 'We all remember awhile ago when Netanyahu was here in the states and was invited to Mar a Lago by Trump right? Direct violation of the Logan Act and nobody cared. Nothing makes sense anymore.', 'created': '2024-11-07 23:34:20', 'submission_id': '1glwsm0'}
{'comment': 'As someone who comes from a Muslim family in Maryland: oh well! \n\nI’m done trying to explain this bullshit to Muslims who voted against their interests, and to women who vote against theirinterests, and to other minorities who vote against their interests. \n\nIf Palestinians get blown to bits because Muslims in Michigan wanted to “protest“ vote—if that is truly what happened—then that blood is on their hands.\n\nI’m tired; they’re gonna have to fucking figure it out the hard way.', 'created': '2024-11-08 01:10:48', 'submission_id': '1glwsm0'}
{'comment': 'Totally meaningless. Michigan didn’t end up mattering.', 'created': '2024-11-08 01:39:10', 'submission_id': '1glwsm0'}
{'comment': 'Boo f’in hooo\n\nI don’t care what happens now', 'created': '2024-11-07 23:34:53', 'submission_id': '1glwsm0'}
{'comment': "Reminder: the House isn't looking great for Dems but it isn't called yet.", 'created': '2024-11-07 21:16:54', 'submission_id': '1glwsm0'}
{'comment': "Ain't no Magic Wanda folks.", 'created': '2024-11-07 21:58:56', 'submission_id': '1glwsm0'}
{'comment': 'She lost Deaeborn', 'created': '2024-11-08 05:05:38', 'submission_id': '1glwsm0'}
{'comment': "If they think for a second, he will help the Arabs under attack over there. They are dead rough. If anything, he'll help by giving Israeli even more weapons. Hell, he may add Arabs here in the States to his deport list. \n\n\nI can see it now. Everyone who voted for him, not just Arabs but everyone, saying this isn't what we voted for. The sad truth is, yes, it is. We warned you. And we should never let them forget, or else it happens again.", 'created': '2024-11-08 10:56:36', 'submission_id': '1glwsm0'}
{'comment': 'Karma. Can really hurt sometimes.', 'created': '2024-11-08 11:12:05', 'submission_id': '1glwsm0'}
{'comment': 'Well you get what you vote freely for. Tragically. I was in Michigan not long ago. I really thought Harris would get it.', 'created': '2024-11-08 13:13:31', 'submission_id': '1glwsm0'}
{'comment': 'Lots of faces gonna be eaten by leopards.', 'created': '2024-11-08 13:27:59', 'submission_id': '1glwsm0'}
{'comment': 'You get what you voted for. They should be happy and proud of what Trump, Bibi and the Republicans do. They voted for this. They were told and offered a different path, they turned it down. They own this and what happens to their Representative.', 'created': '2024-11-08 13:47:14', 'submission_id': '1glwsm0'}
{'comment': 'Now their family members are getting deported', 'created': '2024-11-08 14:52:14', 'submission_id': '1glwsm0'}
{'comment': 'I wouldn’t trust any analysis that mentions impeaching a representative, since members of Congress can’t be impeached.', 'created': '2024-11-08 14:59:10', 'submission_id': '1glwsm0'}
{'comment': 'Muslim vote percentage to democrats unchanged since 2020', 'created': '2024-11-08 22:59:10', 'submission_id': '1glwsm0'}
{'comment': 'https://preview.redd.it/36r0hire9kzd1.jpeg?width=1170&format=pjpg&auto=webp&s=a6906014b7bd68fdf5d9cc64198f2377f3e42dec', 'created': '2024-11-08 00:05:46', 'submission_id': '1glwsm0'}
{'comment': 'They deserve it.', 'created': '2024-11-07 22:44:01', 'submission_id': '1glwsm0'}
{'comment': 'Bummer. Fuck em. They can lay in that piss. We all suffer consequences in life, this is a biggie.', 'created': '2024-11-07 23:43:47', 'submission_id': '1glwsm0'}
{'comment': 'Don’t coming knocking on my door asking for help. It’s your vote, you get to enjoy your vote!', 'created': '2024-11-07 23:44:41', 'submission_id': '1glwsm0'}
{'comment': 'Fucking morons.', 'created': '2024-11-07 22:02:01', 'submission_id': '1glwsm0'}
{'comment': '', 'created': '2024-11-07 22:17:06', 'submission_id': '1glwsm0'}
{'comment': 'Idiots', 'created': '2024-11-07 22:29:31', 'submission_id': '1glwsm0'}
{'comment': 'Fuck em.', 'created': '2024-11-07 23:21:16', 'submission_id': '1glwsm0'}
{'comment': 'Delusional reasoning will backfire here immensely', 'created': '2024-11-07 23:44:12', 'submission_id': '1glwsm0'}
{'comment': 'Well, they can use their values to keep their children warm allll winter long. For the next 4 winters, at least.', 'created': '2024-11-07 23:45:44', 'submission_id': '1glwsm0'}
{'comment': "Just don't raise a finger when the guy they voted for unconstitutionally denies their human rights.\n\nSeriously. \n\nLet them feel the consequences of their actions. \n\nIf you know someone who didn't vote for him, and you care about them, and they're in GQP crosshairs, help them. \n\nThe ones who voted for him can deal with the fallout from their decisions.", 'created': '2024-11-07 23:46:21', 'submission_id': '1glwsm0'}
{'comment': 'Yup. Morons.', 'created': '2024-11-08 00:16:43', 'submission_id': '1glwsm0'}
{'comment': 'The guy who hates Muslims and banned them from entering our country, who is aligned more than any other US politician with Netanyahu, and who is promoting the annexation of the West Bank was elected with the help of Muslims. Good going guys you just fucked yourself.', 'created': '2024-11-08 00:51:17', 'submission_id': '1glwsm0'}
{'comment': "Fuck em. They FAFO'd. We'll see them in 4 years if we even get another chance. We'll see if trump lives up to that promise.", 'created': '2024-11-08 01:10:06', 'submission_id': '1glwsm0'}
{'comment': 'Netanyahu also prolongs it for his own personal survival with nationalism being used to keep him supported.', 'created': '2024-11-07 22:08:36', 'submission_id': '1glwsm0'}
{'comment': 'Shouldn’t be that surprising when portions of the constituency buoyed Republican talking points.\n\nEnd of the day I’d be surprised if anyone does anything. Americans really need to stop thinking they understand anything that happens in the Middle East.', 'created': '2024-11-07 23:20:04', 'submission_id': '1glwsm0'}
{'comment': 'This is so fucked up', 'created': '2024-11-07 23:42:51', 'submission_id': '1glwsm0'}
{'comment': "curious as to where this is from, I'm having a hard time believing it, it makes much more sense to me that they'd all just skip out on voting as a form of protest", 'created': '2024-11-07 23:46:33', 'submission_id': '1glwsm0'}
{'comment': 'Yea just wait until the Latinos who are actually citizens start getting deported because bubba don’t care it’s about the color of your skin.', 'created': '2024-11-08 00:23:30', 'submission_id': '1glwsm0'}
{'comment': 'Is this verifiable information? I’m asking seriously because it certainly wouldn’t surprise me if true, but I also want to make sure we don’t unintentionally point fingers at a really vulnerable group of people.', 'created': '2024-11-08 00:42:43', 'submission_id': '1glwsm0'}
{'comment': 'A great many groups of people voted against their own interests by voting for trump. They will learn the error of their ways soon enough.', 'created': '2024-11-08 00:44:54', 'submission_id': '1glwsm0'}
{'comment': 'Im glad under the redistricting she’s no longer my rep.', 'created': '2024-11-08 01:09:27', 'submission_id': '1glwsm0'}
{'comment': 'Fuck it. Fuck them.', 'created': '2024-11-08 01:33:06', 'submission_id': '1glwsm0'}
{'comment': 'I will be working on my very happy signs to use and laugh in their faces 😎', 'created': '2024-11-08 02:42:02', 'submission_id': '1glwsm0'}
{'comment': 'Fuck around and find out 🤷🏽\u200d♀️', 'created': '2024-11-08 04:35:32', 'submission_id': '1glwsm0'}
{'comment': 'Oh you mean every fucking thing that people said would happen if they sat out or voted for Trump is going to happen? Here’s the world’s tiniest violin playing fuck around and find out.', 'created': '2024-11-08 20:15:46', 'submission_id': '1glwsm0'}
{'comment': "Democrats blaming the voter and not the candidate. Sigh I guess Democrats won't ever learn their lesson. I'll take the downvotes keep throwing elections and blaming it on the people you alienated.", 'created': '2024-11-08 01:02:22', 'submission_id': '1glwsm0'}
{'comment': 'Sorry, but if your family’s already dead voting one way or another, doesn’t make them less dead.', 'created': '2024-11-08 03:08:10', 'submission_id': '1glwsm0'}
{'comment': 'This is sad.', 'created': '2024-11-07 21:45:51', 'submission_id': '1glwsm0'}
{'comment': 'This Monday morning quarterbacking is about as accurate as the polls.', 'created': '2024-11-08 04:16:48', 'submission_id': '1glwsm0'}
{'comment': 'Didn’t anyone remeber the consequences of protest votes in 2016', 'created': '2024-11-09 01:51:50', 'submission_id': '1glwsm0'}
{'comment': None, 'created': '2024-11-08 01:02:33', 'submission_id': '1glwsm0'}
{'comment': 'This is a pretty brain-dead take. Around a million less people showed up to vote for Trump, and 15 million less showed up for Harris.\n\nThe resulta are more about how Harris turned to the right and alienated a huge voter base by appealing to Republicans to somehow vote for her....which none did. She carried fewer republican votes than Biden did.', 'created': '2024-11-07 19:53:32', 'submission_id': '1glwsm0'}
{'comment': 'Not only correct, but Authentic, Well Said', 'created': '2024-11-08 00:35:32', 'submission_id': '1glwsm0'}
{'comment': 'Whoever thought this was a good idea is dumb. Sorry not sugar coating it anymore. It’s biting off your nose to spite your face.', 'created': '2024-11-08 00:45:54', 'submission_id': '1glwsm0'}
{'comment': 'Yet more people voting against their self-interest. Every single piece of relevant and reliable information to make an informed vote is available almost instantly. Yet, here we are. And yes, sometimes if one issue is driving your vote, you have to pick the least bad option.', 'created': '2024-11-08 00:58:58', 'submission_id': '1glwsm0'}
{'comment': 'Muslim voters and their supporters have agency and are smart enough to know what they were voting for and I wish them luck! I won’t be donating to the ACLU to give them free legal aid like I did 2017 or giving any shits this time though.', 'created': '2024-11-08 01:01:03', 'submission_id': '1glwsm0'}
{'comment': 'US Flag for 2024-2028: a face with a leopard eating it on a yellow background. “Don’t eat on me!” inscribed below.', 'created': '2024-11-07 23:43:44', 'submission_id': '1glwsm0'}
{'comment': 'I wonder how many Latino people who voted Trump have relatives or friends who are in the US illegally, and now will be at a much higher risk of being deported', 'created': '2024-11-08 00:17:54', 'submission_id': '1glwsm0'}
{'comment': 'Leopards eating good', 'created': '2024-11-08 00:32:50', 'submission_id': '1glwsm0'}
{'comment': 'I read an article yesterday with a non-citizen immigrant that supported Trump (though obviously not a voter) and his mass deportation plan because he thought it wouldn’t include him since he hadn’t committed any crimes…', 'created': '2024-11-08 04:04:45', 'submission_id': '1glwsm0'}
{'comment': 'The future is a leopard eating a human face, forever.', 'created': '2024-11-08 02:13:10', 'submission_id': '1glwsm0'}
{'comment': 'This is the plan with mass deportations. Racial profiling and herding bodies. Mass court hearings, No due process. Citizens and green card holders will “accidentally” get caught up in the shuffle by design. Good luck spending weeks or months in some foreign land with no money or documents trying to find a US consulate or embassy to help you get back into America. Maybe they will have a database of names and orders not to help you. \n\nAnd If you get back in, your job is gone, bills and credit sold off too collections, car and house in foreclosure process, kids in foster care…etc \n\nThe cruelty will be the point', 'created': '2024-11-07 21:40:07', 'submission_id': '1glwsm0'}
{'comment': 'Maybe Muslim ban 2.0 will jog some memory.', 'created': '2024-11-07 20:27:53', 'submission_id': '1glwsm0'}
{'comment': 'My kids are 3rd generation from one of the countries he successfully banned. They know their history, but their entire lives have been in America. We are so scared.', 'created': '2024-11-07 23:31:42', 'submission_id': '1glwsm0'}
{'comment': "And here's the irony: How many of them voted for their abuser?", 'created': '2024-11-08 14:13:52', 'submission_id': '1glwsm0'}
{'comment': 'And in 2024, they voted for a return to this.', 'created': '2024-11-08 13:48:23', 'submission_id': '1glwsm0'}
{'comment': 'He’ll probably start deportations in Dearborn as a thank you', 'created': '2024-11-07 21:35:26', 'submission_id': '1glwsm0'}
{'comment': 'Literally the first thing he did as president was to ban Muslims from coming to the country.\n\nI’m so tired of having to try to convince people to save themselves only to constantly be rebuked.', 'created': '2024-11-07 20:31:25', 'submission_id': '1glwsm0'}
{'comment': "It's like voting to enshrine abortion into your state laws and then vote for the guy who led to them killing Roe v Wade.", 'created': '2024-11-07 22:38:22', 'submission_id': '1glwsm0'}
{'comment': "It's like voting for the guy who killed Roe v Wade, while also voting to enshrine abortion rights at a state level.", 'created': '2024-11-07 22:40:16', 'submission_id': '1glwsm0'}
{'comment': 'Remember the Muslim ban?', 'created': '2024-11-08 03:52:38', 'submission_id': '1glwsm0'}
{'comment': 'I swear I’ve lost faith in humanity. People are fucking stupid', 'created': '2024-11-08 18:11:11', 'submission_id': '1glwsm0'}
{'comment': 'There are folks who are like Biden and Harris were elusive on their hate whereas Trump is straightforward on his hate', 'created': '2024-11-07 22:50:33', 'submission_id': '1glwsm0'}
{'comment': 'Iran gonna be coming at Trump REAL HARD. They want revenge. And there will be bloodshed.', 'created': '2024-11-08 09:55:44', 'submission_id': '1glwsm0'}
{'comment': "Thankfully, due to climate change, Emporer Lump says there will be more of it! Good news for all of us rich people that there wasn't enough of before.", 'created': '2024-11-07 23:52:42', 'submission_id': '1glwsm0'}
{'comment': 'https://preview.redd.it/4lyqg39xhlzd1.jpeg?width=589&format=pjpg&auto=webp&s=4ed98f1ae1b7690f26ad325a8babd6bea463833c', 'created': '2024-11-08 04:15:17', 'submission_id': '1glwsm0'}
{'comment': "Bug election.\n\na) Entomologist ( who will take care of bugs) . (Kamala)\n\nb) Raid ( which destroys bugs ) (Trump)\n\nIt's like bugs having an election and they decided to vote for Raid because they think it will be better for them and they hate the Entomologist.", 'created': '2024-11-08 01:25:54', 'submission_id': '1glwsm0'}
{'comment': 'I have lost faith in people.', 'created': '2024-11-08 02:23:03', 'submission_id': '1glwsm0'}
{'comment': '', 'created': '2024-11-07 23:27:12', 'submission_id': '1glwsm0'}
{'comment': 'Especially since Trump doesn’t have the luxury of riding the wave of Obama’s booming economy the first 3 years this time. His stupidity will be on full display from start to finish.', 'created': '2024-11-08 09:53:12', 'submission_id': '1glwsm0'}
{'comment': "That's what I was saying in 2016!!! History DOES repeat itself!", 'created': '2024-11-07 20:19:53', 'submission_id': '1glwsm0'}
{'comment': 'We all told them this they like “no hurt feelings this why u lose! We are most important!”', 'created': '2024-11-07 21:35:03', 'submission_id': '1glwsm0'}
{'comment': 'Exactly.', 'created': '2024-11-07 21:40:48', 'submission_id': '1glwsm0'}
{'comment': '“Am I so out of touch? No, it’s the voters who are wrong!”', 'created': '2024-11-08 00:58:30', 'submission_id': '1glwsm0'}
{'comment': "I hope it's only 4 years. I'm not convinced they'll ever leave the White House.", 'created': '2024-11-08 01:16:40', 'submission_id': '1glwsm0'}
{'comment': "I'm fully onboard now. Burn it to the ground.", 'created': '2024-11-08 01:25:41', 'submission_id': '1glwsm0'}
{'comment': 'It was a suicidal strategy. Really bizarre.', 'created': '2024-11-07 20:52:53', 'submission_id': '1glwsm0'}
{'comment': 'i DO have sympathy for the Muslims who voted for Harris.\n\nBut yes, ZERO sympathy for those who withheld their vote for Kamala.', 'created': '2024-11-07 20:55:25', 'submission_id': '1glwsm0'}
{'comment': 'Same. “You voted for it”', 'created': '2024-11-07 21:35:49', 'submission_id': '1glwsm0'}
{'comment': 'Thats how I feel.', 'created': '2024-11-07 19:57:59', 'submission_id': '1glwsm0'}
{'comment': 'It was both maddening and hilarious seeing comments on Muslim YouTube channels where people were bashing Harris while praising Trump with lines like, “At least with him, you know what you’re getting because he’s not afraid to speak his mind.', 'created': '2024-11-08 01:51:37', 'submission_id': '1glwsm0'}
{'comment': '[removed]', 'created': '2024-11-07 20:49:48', 'submission_id': '1glwsm0'}
{'comment': 'Problem is we’re all in the same boat. I’m fucking pissed and the last thing I want to say is I told you so. I’m just flabbergasted by how dumb people really are.', 'created': '2024-11-08 00:49:54', 'submission_id': '1glwsm0'}
{'comment': 'Facts!', 'created': '2024-11-08 02:24:43', 'submission_id': '1glwsm0'}
{'comment': "This supports the idea that fascism will always return to the world one way or another. And it must return. As must war and destruction. Because without it, people become very stupid and deluded. Violence is a reality check. And we're about to see it unfold with the Muslim community before many other minority groups.", 'created': '2024-11-08 00:23:04', 'submission_id': '1glwsm0'}
{'comment': 'Thank you for your efforts.', 'created': '2024-11-08 02:28:02', 'submission_id': '1glwsm0'}
{'comment': 'I’m getting the same way about climate issues. Switched to an EV. Cut way back on travel plans and switched to trains as much as possible. Considering more options for de-combusting my lifestyle…but I need to save up a bit first. \n\nMeanwhile half the country is chanting “drill baby drill”. \n\nThe bullies and idiots seem to have won. Might as well enjoy the ride down.', 'created': '2024-11-08 06:34:04', 'submission_id': '1glwsm0'}
{'comment': 'Maybe take a break and come back when you are ready. Come join the Meidas Touch and the Hopium Chronicles on Substack. You will be supported there.', 'created': '2024-11-08 06:03:25', 'submission_id': '1glwsm0'}
{'comment': 'I am not a white male. I also voted for the rights of others, not just mine. I get the frustration. I get the anger. I hate that more members of my ethnicity veered toward trump this time around.\n\nYou know what? I have more in common with people like you than the Latinos who voted for trump. You are more my brother than they are.', 'created': '2024-11-08 09:55:10', 'submission_id': '1glwsm0'}
{'comment': "I think I could have written this paragraph, only I'm female.", 'created': '2024-11-08 17:29:50', 'submission_id': '1glwsm0'}
{'comment': 'Yes: "For they have sown the wind, and they shall reap the whirlwind." Hosea 8:7.', 'created': '2024-11-08 00:29:59', 'submission_id': '1glwsm0'}
{'comment': 'Personally, I never believed it was just about illegal immigrants. Of course you can’t win an election if you start targeting every minority group, so you exaggerate the threat of an unpopular group and shape that into a boogeyman. Once you consolidate enough power, you start picking off the other groups one by one. *Legal* immigrants are next and it’s already happening quietly, with Stephen Miller’s plans to “turbocharge” the [denaturalization project](https://theimmigrationhub.org/press/gop-plans-to-turbocharge-trumps-denaturalization-project-threaten-the-nations-core-values/).', 'created': '2024-11-08 02:12:52', 'submission_id': '1glwsm0'}
{'comment': 'chomp chomp chomp\n\n"Hey, this isn\'t supposed to be happening to me!"', 'created': '2024-11-07 23:50:25', 'submission_id': '1glwsm0'}
{'comment': 'Spot on. Islam at its core is a deeply conservative religion. These same Michigan Muslims are dreadfully intolerant, one decent sized town that is nearly Muslim majority went as far as attempting to ban the display of pride flags in their community a few years back. As long as democrats continue to bank on “minority=democrat because equal rights” we will lose, it’s a dying message. We have to become the party of law and order, unions, and celebrate the traditional family if we want to see millions of votes swing back our way.', 'created': '2024-11-07 20:39:17', 'submission_id': '1glwsm0'}
{'comment': 'A lot of Latino men voted for Trump. This was part of the reason the blue county I live in flipped red in NJ which made the news.', 'created': '2024-11-08 00:08:44', 'submission_id': '1glwsm0'}
{'comment': 'Yep. Time to let the wolves eat them as these Muslim Americans have thrown themselves off the boat and dragged all of us into the worst possible timeline', 'created': '2024-11-07 22:12:54', 'submission_id': '1glwsm0'}
{'comment': 'Hey people are waking up. Good. \n\nIt’s weird to me that people need to *discover* this. So weird. Like a big conspiracy and we need to talk in hushed voices about it. \n\n“Guys. Guys. Hear me out. They don’t want you to know this, but people that “honor” kill their daughters for kissing a boy, hang gay people from cranes, stone women to death, force the others to cover themselves up, might not be the progressive allies we’ve been told they were!” \n\nBut but but. They’re brown! And poor! And oppressed! How can this be????\n\nAnd yes we both are at total risk at being banned for speaking what is an obvious truth but truth took a back seat to optics and social media virtue signaling decades ago.', 'created': '2024-11-07 22:07:14', 'submission_id': '1glwsm0'}
{'comment': '[removed]', 'created': '2024-11-07 20:45:27', 'submission_id': '1glwsm0'}
{'comment': 'Yeah I was going to say this but I think the I/P stuff is a convenient cover. I honestly think a bigger reason behind this is that several Muslim voters are socially conservative in nature and more likely to, I dunno, prefer Trump to Harris? Crazy thought. Muslim ban doesn’t register because either a) they don’t think they’ll be affected by it (jury’s definitely out on that one) or b) they hate the liberal agenda just *that* much to where they’re willing to roll the dice.', 'created': '2024-11-07 23:18:52', 'submission_id': '1glwsm0'}
{'comment': "Nope. We tried our best and now we sit back and watch as they beg for help once more. Nothing left to help with. The holocaust of the Muslims is here, and there's nothing left to do. They're gone.", 'created': '2024-11-08 00:20:02', 'submission_id': '1glwsm0'}
{'comment': 'No fucks left from me 🤷🏻\u200d♀️', 'created': '2024-11-08 02:14:52', 'submission_id': '1glwsm0'}
{'comment': 'I will never understand this as long as I live. These people should never play chess. They can’t think beyond the next move. I’m sorry for your community.', 'created': '2024-11-07 23:43:07', 'submission_id': '1glwsm0'}
{'comment': 'Thanks for your work trying to convince them, and I’m sorry you all may have terrible consequences. We didn’t want this. But I hope we will one day learn, rise, and fight.', 'created': '2024-11-08 19:54:39', 'submission_id': '1glwsm0'}
{'comment': 'Sadly true. If Tlaib were a true champion for her constituents, she would have worked hard to elect Harris because now they are truly fucked both here and in the Middle East.', 'created': '2024-11-07 23:39:44', 'submission_id': '1glwsm0'}
{'comment': 'He will also kick Tlaib to the curb.', 'created': '2024-11-08 00:54:42', 'submission_id': '1glwsm0'}
{'comment': 'I wrote it.', 'created': '2024-11-07 22:49:09', 'submission_id': '1glwsm0'}
{'comment': 'Why? She made her bed. She gets to lie in it.', 'created': '2024-11-08 08:55:50', 'submission_id': '1glwsm0'}
{'comment': 'The list of whom to help get back (illegally deported citizens etc) should be prioritized by if they voted for Trump or not. Oh you voted for Trump? Well the ACLU and other organizations might get to you in a few years once they help the people who didn’t actively fuck themselves over.', 'created': '2024-11-08 01:08:55', 'submission_id': '1glwsm0'}
{'comment': 'I love a good tsk tsk (giving not receiving).', 'created': '2024-11-08 04:15:54', 'submission_id': '1glwsm0'}
{'comment': "Exactly, can't blame a particular group of people for the loss. Everyone left the dems for Trump or didnt bother voting.", 'created': '2024-11-08 05:37:44', 'submission_id': '1glwsm0'}
{'comment': 'Exspelled.', 'created': '2024-11-09 06:18:14', 'submission_id': '1glwsm0'}
{'comment': "I think your take is dead wrong. Harris promoted solid Democratic plans and values, such as Social Security, reproductive rights, middle class tax cut, common-sense gun safety regulations such as a renewed Assault Weapons Ban, etc. Her appeals to Republicans were more about voting for decency and democracy without any compromise on Harris' proposals. \n\nMoreover, Harris has millions more votes to come in, from CA (only 55% counted thus far), AZ and NV. I do think she will end up with less than Biden in 2020, but certainly not 15 million less. \n\nIn any case, the national vote totals don't win or lose the election. In Michigan, Harris lost by about 80,000 votes. That means that if 40,000 people switched from Harris to Trump in protest, or if there was a combination of some switched votes and some no votes for either candidate that ordinarily would go to the Democrat, again in protest, it may have made the difference in MI. The point of the post therefore stands. Similar examination is needed in WI and PA too.", 'created': '2024-11-07 20:23:47', 'submission_id': '1glwsm0'}
{'comment': 'The convenient thing about the 15 million people who didn’t show up is that we have no idea why they didn’t show up, so you can attribute their reasoning to whatever you want!', 'created': '2024-11-07 20:11:14', 'submission_id': '1glwsm0'}
{'comment': "We're just talking about Michigan here. Arabs voting for Trump as a protest were the sole reason why Kamala lost the state.", 'created': '2024-11-07 20:53:56', 'submission_id': '1glwsm0'}
{'comment': 'It’s ok, the ACLU will be powerless. Are you under the impression we’ll be able to address the coming government with our complaints? If we do not retake the House there is zero chance of anything other than MAGA dominance.', 'created': '2024-11-08 01:16:46', 'submission_id': '1glwsm0'}
{'comment': 'It ain’t just going to be illegals!\n\nhttps://preview.redd.it/i5x0zkrn2lzd1.jpeg?width=960&format=pjpg&auto=webp&s=502de72fc65136235d384a7ad1b0f8d5c63cd1bc', 'created': '2024-11-08 02:49:45', 'submission_id': '1glwsm0'}
{'comment': 'I wouldn\'t be shocked if those people voted for Trump while harboring illegal alien people in their house. So now , their pissed off neighbors are going to report them and they end up serving a prison sentence ( since "harboring" is a crime) while the people with them gets deported.', 'created': '2024-11-08 01:21:59', 'submission_id': '1glwsm0'}
{'comment': 'The ones here legally will get caught up too. Miller already said they will be working on a way to revoke citizenship for legal immigrants.', 'created': '2024-11-08 03:09:00', 'submission_id': '1glwsm0'}
{'comment': "Too bad, so sad. They're getting what they voted 🤷🏽\u200d♀️", 'created': '2024-11-08 02:18:48', 'submission_id': '1glwsm0'}
{'comment': 'Latinos went in much greater numbers for Trump. . A big change in the traditional Democrats coalition. The legal folks hate the illegal influx of migrants.', 'created': '2024-11-08 03:50:49', 'submission_id': '1glwsm0'}
{'comment': 'I am pretty sure it’s a good amount. They don’t think it will impact them because they supported him and they think he means illegal ones. Well once the illegal ones are gone..he will go after the legal ones.', 'created': '2024-11-08 03:26:28', 'submission_id': '1glwsm0'}
{'comment': 'Not sorry for their stupidity.', 'created': '2024-11-08 17:52:06', 'submission_id': '1glwsm0'}
{'comment': 'I doubt even legal citizens are safe if they’re people of color. Idk why these people don’t understand this. They will NEVER let them into their club. Or even their country, if it’s up to them.. and now it sort of is.', 'created': '2024-11-08 09:39:59', 'submission_id': '1glwsm0'}
{'comment': 'Muslim Ban 2.0 was short lived. All it did was add North Korea and Venezuela to the list of "shithole countries." The Supreme Court ruled to uphold Trump\'s Muslim Ban 3.0 in 2018.', 'created': '2024-11-07 20:30:10', 'submission_id': '1glwsm0'}
{'comment': "Perhaps a bit late, though....but they'll find a reason why it's not their fault, anyhow.", 'created': '2024-11-07 23:47:12', 'submission_id': '1glwsm0'}
{'comment': "Doubt it; not any more than the minority and race-baiting. It is what it is. This is what most of America voted for. All Dem energy now needs to be on building a better brand and more viable candidate for uneducated redneck voters who won't look at nuance or context or subtle issues.", 'created': '2024-11-08 14:15:22', 'submission_id': '1glwsm0'}
{'comment': 'I’m so sorry.', 'created': '2024-11-07 23:44:40', 'submission_id': '1glwsm0'}
{'comment': "I'm so sorry a bunch of fucktards messed things up for you. I will remember your family in my prayers. I hate this for you.", 'created': '2024-11-07 23:49:09', 'submission_id': '1glwsm0'}
{'comment': 'You have nothing to be afraid of.', 'created': '2024-11-08 04:29:01', 'submission_id': '1glwsm0'}
{'comment': 'Good. Sorry if I sound annoyed and angry.\nBut maybe you deserve what you vote for? That’s how you learn.', 'created': '2024-11-08 00:48:22', 'submission_id': '1glwsm0'}
{'comment': 'And they will deserve it.', 'created': '2024-11-08 02:17:23', 'submission_id': '1glwsm0'}
{'comment': 'I’m getting tired of reminding people of all the crap he did his first term. How do they forget everything that’s happened the last 8 years?! It’s exhausting.', 'created': '2024-11-07 21:50:59', 'submission_id': '1glwsm0'}
{'comment': "Same. People make the bed they sleep in. The more you don't make it it smells.", 'created': '2024-11-08 00:11:23', 'submission_id': '1glwsm0'}
{'comment': 'And the guy who will sign a national abortion ban in the coming months, rendering your voting to enshrine abortion into the states constitution a useless exercise', 'created': '2024-11-07 23:07:28', 'submission_id': '1glwsm0'}
{'comment': 'So funny you mentioned this. I was listening to an interview of a female trump voter who said she is pro choice but her main issue was inflation. She believes Trump that he won’t sign\na national abortion ban and that in her state she has the right to an abortion. I am like well good luck!!', 'created': '2024-11-08 03:18:23', 'submission_id': '1glwsm0'}
{'comment': 'But my egggs and those scary immigrants who are cutting my lawn!!! Who won’t be there anymore when they are deported. Oh who will not cut my lawn?', 'created': '2024-11-08 03:22:26', 'submission_id': '1glwsm0'}
{'comment': 'That I REALLY don’t get. They are soooo naive.', 'created': '2024-11-08 02:52:23', 'submission_id': '1glwsm0'}
{'comment': '2024 mirrored 2016 a lot. One of the most crucial ways was the absolutel lack of confidence in our own policies Democrats had in the preceding 2 years, for no good reason.\n\nWe ran away from Obama in 2014 and stayed away pretty much all the way until the general election.\n\nWe ran away from Biden’s accomplishments all the way to the point Kamala couldn’t be seen an an experienced partner to one of the most progressive Presidents we’ve ever had.\n\nImagine if for 4 years we talked about how great Biden had done. That the Afghanistan pull out was handled perfectly given the circumstances we were put in by Republicans.\n\nImagine if for 4 years we actually embraced the economic recovery for what it was. Imagine if we had actually worked to convince people that Democrats were doing a good job.\n\nInstead all you can say about the Biden Presidency was that too many people came to our country, we had high inflation, and two wars. Not the fact that our workforce grew and unemployment is still low, that wages have risen, and that America isn’t actually fighting any wars.', 'created': '2024-11-08 02:07:17', 'submission_id': '1glwsm0'}
{'comment': 'Don’t forget 2004 !', 'created': '2024-11-07 20:32:11', 'submission_id': '1glwsm0'}
{'comment': 'Rinse Repeat Rinse Repeat...', 'created': '2024-11-08 00:12:59', 'submission_id': '1glwsm0'}
{'comment': 'When you see hundreds of examples of basically this sentiment — “you came and destabilized my country, well I vote in your country and I destabilize your country habibi” and they vote for trump?? Yes they are wrong.', 'created': '2024-11-08 01:07:04', 'submission_id': '1glwsm0'}
{'comment': 'Sorry … “at least” 4 years', 'created': '2024-11-08 02:16:15', 'submission_id': '1glwsm0'}
{'comment': 'Why do you think they are in the position they are in? They’ve done this for years.\xa0', 'created': '2024-11-07 22:32:56', 'submission_id': '1glwsm0'}
{'comment': 'Holding things for ransom is the strategy..', 'created': '2024-11-08 00:18:15', 'submission_id': '1glwsm0'}
{'comment': 'Absolutely, the big difference is those who voted for Trump screwed themselves as well as everyone else.', 'created': '2024-11-08 01:30:25', 'submission_id': '1glwsm0'}
{'comment': 'This is the Way', 'created': '2024-11-07 20:59:55', 'submission_id': '1glwsm0'}
{'comment': 'Yup. I know plenty who voted Harris.', 'created': '2024-11-08 00:49:26', 'submission_id': '1glwsm0'}
{'comment': 'That’s how we all feel unfortunately', 'created': '2024-11-07 21:07:46', 'submission_id': '1glwsm0'}
{'comment': 'Yes. And it hurts to say it. It hurts so fucking bad. I personally work with two trans coworkers, and two gay coworkers, one of which is happily married. I can’t imagine the feelings they had on Wednesday morning. We work at the post office in the Deep South,and as I was walking past her case, I just stopped and gave her a quick shoulder hug, didn’t say anything. She returned it and sighed.\xa0\n\nBut we work with coworkers that would gladly vote to take away her marriage, despite them being nice to all of them on the surface.\n\nIt’s just…I wanna unplug from all this. But I think I can still be there for my coworkers, at least.', 'created': '2024-11-08 17:37:10', 'submission_id': '1glwsm0'}
{'comment': 'You will also hear many of them say "I\'m voting for Trump because he hates Bengalis" if they\'re Pakistani, or "He\'s not that bad. At least he hates Iraqis" if they\'re Yemeni, so on and so forth. Hatred of different ethnicities was a main reason many of them went for Trump.', 'created': '2024-11-07 20:50:11', 'submission_id': '1glwsm0'}
{'comment': "Exactly. If we want to include imagery of the traditional family including those of Jared Polis and Pete Buttigiege, then fine. But they honestly won't be able to take center stage. We thought we could make it normalized for the country in a single generation when it took generations of activism just to GET gay marriage and that was against a lot of resistance and resentment.\n\nWe just learned how bigoted our country is. It's time to step carefully.\n\nAnd may all the gods assist us.", 'created': '2024-11-07 20:43:42', 'submission_id': '1glwsm0'}
{'comment': 'Counterpoint aren’t most major religions “conservative” at their core?', 'created': '2024-11-07 20:57:01', 'submission_id': '1glwsm0'}
{'comment': None, 'created': '2024-11-07 23:42:14', 'submission_id': '1glwsm0'}
{'comment': 'Given how the unions treated Biden this election cycle after everything he did for them, I’d say we should consider jettisoning unions for the deadweight they are. The vast majority of Americans are not in unions. And it has been a century since unions got the country 5 day workweeks and the like. Nowadays, they’re all about economic protectionism, stalling technological advancement, holding the economy hostage with destructive strikes and taking billions to bail out just their own pensions- all while gleefully voting for Trump.', 'created': '2024-11-08 01:08:53', 'submission_id': '1glwsm0'}
{'comment': 'This is the best post.', 'created': '2024-11-08 00:52:24', 'submission_id': '1glwsm0'}
{'comment': "Because a true liberal virtue is that when we see a people getting treated unfairly, we want to stop it and join with them. \n\nAnd let's face it. The only thing Trumplicans don't like about Muslims is that they're mostly brown and they won't answer to their preachers or White Jesus. Otherwise, their politics align perfectly which is why they've always got on so well with Saudi Arabia. \n\nI don't want to see that particular liberal virtue tossed to the way side. I DO want to see it utilized with more caution and discernment.", 'created': '2024-11-07 22:28:50', 'submission_id': '1glwsm0'}
{'comment': "It's a little of both. They're here and they don't realize we've had things like reservations before in this country where the German Nazis got the idea for the concentration camps. Or again, they're aware of that history but are too stupid/arrogant to realize how it will apply to them.", 'created': '2024-11-07 23:29:14', 'submission_id': '1glwsm0'}
{'comment': "I hope they don't expect help from us.", 'created': '2024-11-08 02:27:34', 'submission_id': '1glwsm0'}
{'comment': 'I appreciate it. Like I understand being angry that the war is still going on, but Kamala was open about wanting the war to end/talking about a ceasefire and Trump is all buddy buddy with Bibi. They will unfortunately learn the hard way. IMO I did all I could trying to convince them.', 'created': '2024-11-08 03:20:15', 'submission_id': '1glwsm0'}
{'comment': "Don't pity them. We tried and failed. And now they're finished. That's life. The fallacy of the fool is their legacy", 'created': '2024-11-08 00:21:19', 'submission_id': '1glwsm0'}
{'comment': 'Do you not believe she did this purposely to throw the election?', 'created': '2024-11-08 00:33:45', 'submission_id': '1glwsm0'}
{'comment': 'I’m saying when the Muslim ban happens again, which was one of Trump’s promises on the trail, I’m not going to care. Because I respect their votes.', 'created': '2024-11-08 01:54:14', 'submission_id': '1glwsm0'}
{'comment': 'Stephen Miller the Deportation Czar', 'created': '2024-11-08 05:21:35', 'submission_id': '1glwsm0'}
{'comment': 'Wow they will go after poc and lbgtq next, then find a reason to exile whites that voted dem. Then at last they will have their Ultra white ultra right christian nationalist nation.', 'created': '2024-11-08 07:41:52', 'submission_id': '1glwsm0'}
{'comment': 'I’m betting family members will out each other out of spite with “If I’m going, you’re coming with me”.', 'created': '2024-11-08 02:15:04', 'submission_id': '1glwsm0'}
{'comment': 'My niece is as white as can be, but she was born outside the country and had to be naturalized. If she was naturalized, her 5 year old self would have to leave her family of four here in the US, right? And it would be up to the country she was born in whether they allow the parents to come with her. I hope something like this isn’t possible, but if you can de-naturalize someone as Stephen Miller is suggesting, then why wouldn’t it be?', 'created': '2024-11-08 05:19:45', 'submission_id': '1glwsm0'}
{'comment': 'The ones born in the United States to parents that were illegal at the time or maybe still are will also be deported even though they have US citizenship. Many of them could’ve voted for Trump and their own deportation.', 'created': '2024-11-09 06:29:01', 'submission_id': '1glwsm0'}
{'comment': 'The only silver lining in this shitty oppressive timeline will be the schadenfreude we experience when Trumps policies hurt the very people who voted for him. If they can vote my bodily autonomy away, then I can savor this and not even feel bad about it.', 'created': '2024-11-08 04:47:42', 'submission_id': '1glwsm0'}
{'comment': "He no longer has anything to lose. He can't run again.", 'created': '2024-11-08 03:28:43', 'submission_id': '1glwsm0'}
{'comment': 'That was a different Supreme Court. This one will let him do whatever he wants.', 'created': '2024-11-07 20:49:51', 'submission_id': '1glwsm0'}
{'comment': "That's why we have to get in their face and remind them they voted for this.", 'created': '2024-11-08 02:22:34', 'submission_id': '1glwsm0'}
{'comment': 'Why do you think that?', 'created': '2024-11-08 05:20:09', 'submission_id': '1glwsm0'}
{'comment': "I'm sure millions more feel the same way. We all felt stabbed in the back by people who we thought should be our allies.", 'created': '2024-11-08 01:14:22', 'submission_id': '1glwsm0'}
{'comment': "I hear you, but these folks will never acknowledge that they've made any kind of mistake, nor will their support for Trump waver. I know a guy, a Chaldean guy (might as well be Muslim if you don't know what Chaldeans are) who got swept up in the deportations that were happening in during Trump's first term. Homeboy had some 20 year old conviction for something stupid. This guy was a business owner, and quite rich. I talked to him when it was going on, he was trying to fight it. He was dismayed at how unfair it all was for him. I asked him if he voted for Trump. He said yes. I asked if he still supports Trump after all of this. He said yes. \n\nThere's a complete cognitive dissonance with this crowd that is mind boggling. I'd argue, there isn't much that will get through to them. The country could go to shit over the next 2-3-4 years, and they'll still be screaming from the mountaintops that it's the fault of those wacky liberals.", 'created': '2024-11-08 02:47:11', 'submission_id': '1glwsm0'}
{'comment': 'Can be confirmed now. People have goldfish memories.', 'created': '2024-11-07 22:15:17', 'submission_id': '1glwsm0'}
{'comment': "I'm more pissed at his win this time then last time.\n\nYou should see the texts I've sent my parents (both of whom voted for Trump)\n\nI've disowned them and canceled all family events", 'created': '2024-11-08 00:19:04', 'submission_id': '1glwsm0'}
{'comment': 'United States of Amnesia', 'created': '2024-11-08 01:07:49', 'submission_id': '1glwsm0'}
{'comment': "Where is a good concise list of all the terrible and stupid shit he did? The problem was that he was doing some absurd shit every 1.34 days, and it all came so rapid fire that you already forgot the stupid shit he did on Tuesday by Friday. I'd love a cliff notes list of highlights (or lowlights if you will) from his first term.", 'created': '2024-11-08 02:49:04', 'submission_id': '1glwsm0'}
{'comment': 'Eggs are $4 a dozen. That’s what they remember.', 'created': '2024-11-08 04:25:15', 'submission_id': '1glwsm0'}
{'comment': 'Exactly. The only question is whether he signs a national abortion ban before or after signing the bill that repeals the Affordable Care Act.', 'created': '2024-11-08 00:47:07', 'submission_id': '1glwsm0'}
{'comment': "State's could just ignore it under the 10th. Also, if a President can overturn any law or Constitutional law, any State could be fucked.", 'created': '2024-11-08 01:13:51', 'submission_id': '1glwsm0'}
{'comment': 'She’s gonna be pissed when she can’t get life saving healthcare and everything is even more expensive than it has been the past few years. And I’m here for it.', 'created': '2024-11-08 09:48:48', 'submission_id': '1glwsm0'}
{'comment': "Messaging and getting that messaging to low information voters proves difficult...\n\nThat's where dems lost imo...they lost the battle of simple sound items because trump filled the field with shit EVERY FUCKING DAY", 'created': '2024-11-08 02:16:19', 'submission_id': '1glwsm0'}
{'comment': "Maybe we shouldn't be courting these self absorbed narcissistic leftys that are essentially the same exact person as on the far right.\xa0\n\nHorseshoe theory 101", 'created': '2024-11-07 20:39:08', 'submission_id': '1glwsm0'}
{'comment': 'Blaming voters will never get the democrats into government under any democracy', 'created': '2024-11-08 01:14:22', 'submission_id': '1glwsm0'}
{'comment': 'It really hurts, very sad. This has made me question everything. Like you said, I wish there was a way to just completely disconnect and pause our lives. But we still have work to do and we\'re still getting bills. \n\nThat comment about "we work with coworkers that would gladly vote to take away her marriage, despite them being nice to all of them on the surface...." So true. We like to think of the Trumpers as people who go around saying "fuck you libtards!" and make fun of anything we could be made fun of for, but many of them are friendly people who we can have a nice chat with at work and events. They don\'t talk politics, but they do go into the voting booth. I\'m keeping the people I know are good people close to me. But I\'m keeping everyone else at arm\'s length. I think this election killed my trust in people and everyone is guilty until proven innocent. (And there\'s no way to really prove anyone as innocent, since ballots are secret.)\n\nI\'ve been door knocking, making phone calls, and writing postcards since 2008. I\'ve done my part. I\'ve done MORE than my part. I feel like all my work has been wasted and wonder if there\'s any hope for convincing any of these people. I\'m not going to have sympathy for them when Trump\'s policies hurt them. They saw what things were like from 2017 to 2021 and still voted for him because they want cheaper eggs and think someone from another country is going to break into their house and rape them and steal all their most prized possessions. Ugh, I\'m so angry.\n\nIt didn\'t have to be like this. But the chance for it not to be like this has passed and the American people blew it.', 'created': '2024-11-08 18:07:57', 'submission_id': '1glwsm0'}
{'comment': 'Bingo.', 'created': '2024-11-07 21:00:20', 'submission_id': '1glwsm0'}
{'comment': 'When you believe barriers broken are celebrated by all you are in for a rude awakening. We operate out of our own bubbles and sense of moral superiority. Surely others will follow as all is revealed. \nHow bout….the resentment felt by those who feel dismissed and marginalized and misunderstood? Give them a champion who recognizes and plays on that smoldering anger?', 'created': '2024-11-08 04:19:22', 'submission_id': '1glwsm0'}
{'comment': 'Yeah but I think because we group Muslims in with minorities people automatically assume they’re Democrats? Same with Blacks and Latinos. When really, the only thing keeping some of those voters in the fold is that they see the GOP as the party of white racists. I’m black, I see this with family and with other people I know - they’re actually extremely conservative and evangelical but they refused for vote for Republicans because they think Republicans hate them.\n\nWe may have reached a turning point where various minority groups don’t give a shit about that now. Or at least, they don’t think it’ll affect them. Maybe this was a one-off and things will revert in the next couple of years (it is worth noting that Black voters still overwhelmingly went for Harris, even though Trump had a higher share of Black men than normal for a GOP candidate), but if this was a turning point, we’re going to have to change a lot of priors about the electorate.', 'created': '2024-11-07 23:25:40', 'submission_id': '1glwsm0'}
{'comment': "Yeah I often wonder about this. What makes Muslims more conservative than any other religious people, automatically? Can't Muslims just ignore the stuff in their holy book that they don't like, the same way Christians do all damn day long?", 'created': '2024-11-07 21:26:56', 'submission_id': '1glwsm0'}
{'comment': 'The Democratic Party cannot survive as is without connecting to working class white men. None of what I said limits access to health care or our ability to expand it. None of it limits education. None of it limits taxing corporations. None of it attempts infringe upon individual home life for marginalized people. None of attempts to drive them out of their workplace. None of it infringes upon religion. None of it jeopardizes US infrastructure. None of it disregards climate change.', 'created': '2024-11-08 00:02:09', 'submission_id': '1glwsm0'}
{'comment': 'I will stand with anyone who is discriminated against due to their identity. That does not mean we have to accept or tolerate bigots from any group as part of our fold. Religious beliefs are a choice. How you treat others due to those beliefs is very much a choice. If you use your beliefs to harm others, you should not be welcome here.', 'created': '2024-11-07 22:45:10', 'submission_id': '1glwsm0'}
{'comment': 'In this case, the liberal virtue is letting them learn by reaping the consequences of their choices.', 'created': '2024-11-07 23:48:57', 'submission_id': '1glwsm0'}
{'comment': 'Ahh yes. This phenomenon even has its [own name](https://en.m.wikipedia.org/wiki/Paradox_of_tolerance)\n\nAnother blind spot for Progs.', 'created': '2024-11-07 22:58:42', 'submission_id': '1glwsm0'}
{'comment': 'I think we’re going to see a lot of “I never voted for *that*” in the coming years if Trump and Co. are successful in implementing what they say they’re going to do (a Muslim ban, ending birthright citizenship, denaturalization and mass deportations of people who were previously citizens, etc.). When, yeah, you absolutely fucking voted for that. You just didn’t think it would affect you.', 'created': '2024-11-08 00:14:37', 'submission_id': '1glwsm0'}
{'comment': "Help will not be coming for them anymore. They made sure of that. Not that we want to anyway. Can't help folks who signed their death warrant", 'created': '2024-11-08 04:09:54', 'submission_id': '1glwsm0'}
{'comment': 'Stay safe, friend.', 'created': '2024-11-09 17:50:55', 'submission_id': '1glwsm0'}
{'comment': 'Oh, I got you. My sarcasm didn’t come through properly since I failed to say you don’t have to worry about donating to the ACLU because there be no ACLU. If they are not disbanded and rounded up, they will be impotent. Unless democrats somehow pull off a miracle and gain control of the House, all three branches of government will be controlled by MAGA authoritarians whom will be disinterested in policing themselves. They would have zero reason to do so.', 'created': '2024-11-08 03:03:14', 'submission_id': '1glwsm0'}
{'comment': "The master race. A nation of lawn cutting, church praying, sieg loyalty every morning to a picture of Trump kind of nation. If you don't do those things, it's back for some re-education.", 'created': '2024-11-08 16:38:06', 'submission_id': '1glwsm0'}
{'comment': 'Truly the only thing that will be satisfying about all of this shit.', 'created': '2024-11-08 09:37:38', 'submission_id': '1glwsm0'}
{'comment': 'When you see them suffer, enjoy the moment and laugh. They voted for it, they voted for a crueler world, only fair they endure it.', 'created': '2024-11-08 16:40:16', 'submission_id': '1glwsm0'}
{'comment': 'If they do put a national abortion ban in place…you are going to see large turnouts for democrats in midterms or 2028. It would be the dumbest political move by an admin. Now that’s if we have elections.', 'created': '2024-11-08 15:52:08', 'submission_id': '1glwsm0'}
{'comment': 'You so sure about that? He’s made breaking the law into his super power.', 'created': '2024-11-09 14:25:31', 'submission_id': '1glwsm0'}
{'comment': 'Never let em forget it. This is what THEY WANTED.', 'created': '2024-11-08 09:32:34', 'submission_id': '1glwsm0'}
{'comment': 'Because the rule of law will prevail.', 'created': '2024-11-08 07:20:00', 'submission_id': '1glwsm0'}
{'comment': 'Yup. Everyone who fucked around for this election are about to find out.', 'created': '2024-11-08 02:11:28', 'submission_id': '1glwsm0'}
{'comment': 'If he was a naturalized citizen, the convictions from 20 years ago wouldn’t matter.', 'created': '2024-11-08 04:23:42', 'submission_id': '1glwsm0'}
{'comment': 'Goldfish have better memories.', 'created': '2024-11-08 02:51:01', 'submission_id': '1glwsm0'}
{'comment': 'I’m sorry you’ve had to do this- I don’t understand why anyone would vote for 🍊💩', 'created': '2024-11-08 02:10:08', 'submission_id': '1glwsm0'}
{'comment': 'Good for you! The holidays will be cheaper that way lol', 'created': '2024-11-08 02:12:11', 'submission_id': '1glwsm0'}
{'comment': 'Exactly. He was more unknown in 2016. 2024 is much more known.', 'created': '2024-11-08 02:51:32', 'submission_id': '1glwsm0'}
{'comment': 'I know. My MIL complains about the prices of groceries every week. She only votes Republican and loves Trump. She also can’t do anything herself and tries to pity all of her kids to do everything for her while sitting on her ass watching Fox News all day and enjoying her social security and Medicare. 🙄She used to complain about the price of insulin until Biden and the Dems fixed that, but she refuses to understand that.', 'created': '2024-11-08 04:58:56', 'submission_id': '1glwsm0'}
{'comment': 'Well the black man made the affordable care act so that may be number 1, but don’t worry, he has the concepts of a plan', 'created': '2024-11-08 00:51:10', 'submission_id': '1glwsm0'}
{'comment': 'Yup and Mike Johnson even said that out loud. Can’t believe Dems didn’t bring it up. He said he wanted to repeal Obamacare and then get rid of the chips and science act.', 'created': '2024-11-08 03:19:46', 'submission_id': '1glwsm0'}
{'comment': 'States can try to ignore it, but if trump gets the dictatorship he wants, what would the consequences be', 'created': '2024-11-08 01:14:55', 'submission_id': '1glwsm0'}
{'comment': 'That’s not how the 10th amendment works so that would be futile.', 'created': '2024-11-08 16:44:46', 'submission_id': '1glwsm0'}
{'comment': '> filled the field with shit EVERY FUCKING DAY\n\nFor 8 years. _Eight_ years, since the very start of his presidency in 2017, maybe more if we want to include the preceding campaigning year.\n\nHarris had to form a presidential campaign in 100 days and run head-first into _EIGHT_ years of this.\n\nThere is a lot to be said about the outcome of this election. What I worry is that voters at large will continue to fail to recognize they are as much a part of the entire electioneering process as their candidates, and cannot simply absolve themselves of their (lack of) participation because they were not sufficiently appealed to.', 'created': '2024-11-08 04:15:29', 'submission_id': '1glwsm0'}
{'comment': "They don't even show up to vote. It's a waste of calories, they are non-participants. \n\nMcDonalds doesn't spend money advertising to Vegans. It's pointless.", 'created': '2024-11-07 20:54:31', 'submission_id': '1glwsm0'}
{'comment': 'Bingo', 'created': '2024-11-07 20:55:21', 'submission_id': '1glwsm0'}
{'comment': "So the party on the left shouldn't court the left? Who is left to court then? Right wingers who will vote Republican anyways?\n\nThe party failed because they courted centrists two out of the last two elections, and the one they did win was because the centrist candidate they selected strategically moved further left. But yeah, let's learn nothing from this election and keep courting imaginary centrists as always, that will surely fix this party /s.", 'created': '2024-11-08 00:08:39', 'submission_id': '1glwsm0'}
{'comment': 'Cyber warfare is the best answer I got but no one is ready for that conversation. \n\nWe need to learn how to operate in this post truth world. Drop idealism, engage cut throat realpolitik. The RW propaganda machine is a decade ahead. I don’t know how to catch up but this is the conservation I think is needed 🤷🏻\u200d♀️\n\nElon buying twitter changed everything. Dems are still playing by the old rules. That america is now dead.', 'created': '2024-11-08 01:18:19', 'submission_id': '1glwsm0'}
{'comment': "Facts don't care about feelings, remember?", 'created': '2024-11-08 02:23:29', 'submission_id': '1glwsm0'}
{'comment': 'I did see a good ask historian question on why the Islamic world did not go through a secular period. Like the western world has. I’m not sure if that question has been answered.', 'created': '2024-11-07 21:28:53', 'submission_id': '1glwsm0'}
{'comment': 'Because the Quaran is a big rule book. Like, there\'s a lot of "rules" in the Bible but it\'s weighted out by Stories. The Quaran doesn\'t share a history. It\'s Mohammad getting a bunch of rules from the angel Gabriel.', 'created': '2024-11-07 22:25:31', 'submission_id': '1glwsm0'}
{'comment': 'The difference is they generally don’t.\xa0', 'created': '2024-11-07 22:34:33', 'submission_id': '1glwsm0'}
{'comment': "I'll only help those I care about, and if they didn't vote for trump. \n\nAnyone who did vote from trump and gets targeted gets no help from me.", 'created': '2024-11-07 23:49:53', 'submission_id': '1glwsm0'}
{'comment': 'Thanks for sharing that link.', 'created': '2024-11-07 23:50:40', 'submission_id': '1glwsm0'}
{'comment': 'And every time we will tell them: Yes. You did. Because the warning signs were there and you called us libtards.', 'created': '2024-11-08 00:23:15', 'submission_id': '1glwsm0'}
{'comment': 'I agree. I know I sound really mean and angry..but I want to see his supporters suffer.', 'created': '2024-11-08 15:53:04', 'submission_id': '1glwsm0'}
{'comment': 'Lol Democrats didn’t turn out when fucking Democracy and still having a county was on the ballot. Right wing is going to be in power for a long time and that’s even if they simply don’t cancel elections.', 'created': '2024-11-08 20:13:01', 'submission_id': '1glwsm0'}
{'comment': 'Just left the grocery store and briefly had words with the cashier. I commented about something SINCE TUESDAY and she replied “well he’s going to leave it to the states” he says that yes. I was not going to get into the abortion debate but I left her with, PEOPLE ARE APPARENTLY OK WITH RAPE BUT I AM NOT! Do I feel better, NO, because I’m surrounded by these fucking idiots! I will not lay down and roll over for these clowns!', 'created': '2024-11-08 17:50:12', 'submission_id': '1glwsm0'}
{'comment': 'You must be new here.', 'created': '2024-11-08 18:12:56', 'submission_id': '1glwsm0'}
{'comment': "I don't know if he was or wasn't.", 'created': '2024-11-08 04:32:12', 'submission_id': '1glwsm0'}
{'comment': 'We lost a MIL to Fox News. It’s incredibly sad. She is the same person, still kind, but nonsensically a Trump supporter.', 'created': '2024-11-08 07:24:15', 'submission_id': '1glwsm0'}
{'comment': 'Civil War most likely.', 'created': '2024-11-08 01:16:11', 'submission_id': '1glwsm0'}
{'comment': 'Sadly, it seems like it doesn\'t matter how precedent or the Constitution actually works anymore. So a State could use it regarldess if it\'s "legal" or "Constitutional".', 'created': '2024-11-08 16:58:34', 'submission_id': '1glwsm0'}
{'comment': "I dunno about that. Greens seem to be getting around 2% in each election. I don't know if that means that Greens only number in the 2% range or if there are more, but they don't show up.", 'created': '2024-11-07 21:12:30', 'submission_id': '1glwsm0'}
{'comment': "Everyone is talking about our lord and savior Bernard Sanders yet he's going to do the exact same bullshit he does every time...fuck off to Vermont for 3 years while blaming everyone except himself and his trash can supporters (which I used to be)", 'created': '2024-11-07 20:59:54', 'submission_id': '1glwsm0'}
{'comment': 'The left =/= far left', 'created': '2024-11-08 00:24:25', 'submission_id': '1glwsm0'}
{'comment': 'After the Second Great Recession that’s about to unfold, people will be begging Democrats to come fix the economy and the country just like Dems always do. Trump doesn’t have the luxury of riding the wave of Obama’s booming economy this time around. There will be no one to blame but Donold Trump, the Republican Party, and their shit policies. Well, that’s if we don’t end up in a Second Civil War or Third World War these next few years. But either way, I doubt many people will still be supporting them besides all the diehard Magats out there.', 'created': '2024-11-08 10:11:24', 'submission_id': '1glwsm0'}
{'comment': 'Sad but true it seems. There’s an insidious cancer that’s spreading and we’ve reached a prisoner’s dilemma. The “when they go low, we go high” approach has not been working out so well.', 'created': '2024-11-08 02:03:24', 'submission_id': '1glwsm0'}
{'comment': 'Lewis’s book is well worth the read\n\nhttps://www.theatlantic.com/magazine/archive/2002/01/what-went-wrong/302387/', 'created': '2024-11-07 22:27:50', 'submission_id': '1glwsm0'}
{'comment': 'They weren’t even warning signs. He straight out said what he plans to do. If you can get past the word salad.', 'created': '2024-11-08 03:55:03', 'submission_id': '1glwsm0'}
{'comment': 'I took an oath to defend and uphold the Constitution. The rule of law will prevail.', 'created': '2024-11-09 00:23:46', 'submission_id': '1glwsm0'}
{'comment': 'If he was voting he was a naturalized citizen. Unless of course he was voting illegally, which will get you deported.', 'created': '2024-11-08 07:27:17', 'submission_id': '1glwsm0'}
{'comment': 'My MIL is still a nice person, but she refuses to educate herself. I really thought she might be reasonable but she’s not. My dad moved to FL 8 years ago and drank the Fox News koolaid. I used to respect him for his work ethic and the way he used multiple news sources to educate himself. Not anymore. It’s truly disappointing.', 'created': '2024-11-08 14:40:39', 'submission_id': '1glwsm0'}
{'comment': "Greens always have that amount. 15 million dems didn't vote.", 'created': '2024-11-07 22:07:30', 'submission_id': '1glwsm0'}
{'comment': "Well, you're doing a poor job. One star.", 'created': '2024-11-11 20:02:56', 'submission_id': '1glwsm0'}
{'comment': 'This', 'created': '2024-11-08 04:07:27', 'submission_id': '1glwsm0'}
{'comment': 'there are 15-20 million votes still outstanding to be counted.', 'created': '2024-11-08 06:04:02', 'submission_id': '1glwsm0'}
{'comment': "In states that are already blue. Swing states like where I live we still had people sit out. It also doesn't help that jews didn't vote blue this election and a lot of states the Jewish vote will determine if a state if blue or not. I'm Jewish and Puerto Rican (with a more Jewish following on social media) and due to the rise in antisemitism in the usa and the democratic party not doing anything about it and majority of democrats being antisemitic themselves...pushed jews to vote red. I don't think democrats realized that when democrats were celebrating Oct 7th...Republicans were coming to the Jewish peoples side and mourning with them. Then trump gets elected and hamas surrenders and we will hopefully get our hostages back. If democrats apologize to the Jewish community and fight against antisemitism then there's a chance they'll get the Jewish vote.", 'created': '2024-11-08 16:07:18', 'submission_id': '1glwsm0'}
{'comment': 'What are you talking about? Which Democrats were “celebrating“ October 7? Biden practically bent over and spread ‘em for Bibi. Bibi’s response was, “you want to get fucked, I’ll show you how it’s done.” \n\nBibi didn’t give a shit about the hostages. He was just trying to stay out of jail and found common cause with TFG.', 'created': '2024-11-09 14:47:18', 'submission_id': '1glwsm0'}
{'comment': 'https://preview.redd.it/o7btfl21ekzd1.jpeg?width=2976&format=pjpg&auto=webp&s=db3273acd6a2aae29442b79725dca001661e5908', 'created': '2024-11-08 00:31:40', 'submission_id': '1glwjt7'}
{'comment': 'Hot take but I feel this ALL goes back to the Citizens United case. It wasn’t long after the Supreme Court green lit unlimited campaign funds (that may or may not come from abroad) that one party got really cozy with our perceived enemy', 'created': '2024-11-08 17:43:27', 'submission_id': '1glwjt7'}
{'comment': 'https://preview.redd.it/9rxsexbzzkzd1.jpeg?width=3050&format=pjpg&auto=webp&s=414f46755d8e6fd3fe1bf7590243a9479c854dff', 'created': '2024-11-08 02:34:41', 'submission_id': '1glwjt7'}
{'comment': 'We need an alternative to the ACLU. \n\nI’m not giving money to an organization that fought in court to allow the “unite the right” Nazi rally in Charlottesville.', 'created': '2024-11-08 16:18:56', 'submission_id': '1glwebd'}
{'comment': "I was thinking the same thing. Let's support the organizations that are doing this work. Would love to see ideas for other organizations we could support. \n\nHere's a link to the ACLU: [https://www.aclu.org/action](https://www.aclu.org/action)", 'created': '2024-11-08 00:49:05', 'submission_id': '1glwebd'}
{'comment': '', 'created': '2024-11-07 18:51:02', 'submission_id': '1glw975'}
{'comment': 'Biden should [say this](https://www.youtube.com/watch?v=Yi0uX2sZuFg) during the inauguration.', 'created': '2024-11-07 20:53:46', 'submission_id': '1glw975'}
{'comment': 'As George W Bush said, “Fool me once, shame on you. Fool me twice…you can’t get fooled again.” Oh wait, apparently we can…', 'created': '2024-11-07 23:34:45', 'submission_id': '1glw975'}
{'comment': 'The candidate may have been better, but the turnout was not', 'created': '2024-11-07 21:48:27', 'submission_id': '1glw975'}
{'comment': '', 'created': '2024-11-07 20:57:46', 'submission_id': '1glw975'}
{'comment': 'Thanks, you made me laugh.', 'created': '2024-11-07 22:38:40', 'submission_id': '1glw975'}
{'comment': 'But if we hit the electrical socket just enough times then the bad brown and trans people will suffer even more. We just have to tolerate a little pain first.', 'created': '2024-11-08 15:21:58', 'submission_id': '1glw975'}
{'comment': None, 'created': '2024-11-07 22:06:10', 'submission_id': '1glw975'}
{'comment': 'This but the outlet is a chocolate cake', 'created': '2024-11-07 21:14:21', 'submission_id': '1glw975'}
{'comment': 'Perfect! \n\n', 'created': '2024-11-08 01:05:31', 'submission_id': '1glw975'}
{'comment': "Because the Democratic candidates in 2016 and 2024 had one thing in common...\n\nAmerica isn't what I thought it was.", 'created': '2024-11-08 02:42:20', 'submission_id': '1glw975'}
{'comment': 'Every blue state needs to do this', 'created': '2024-11-07 19:08:10', 'submission_id': '1glvz6w'}
{'comment': 'https://preview.redd.it/d7o08d76ekzd1.jpeg?width=2976&format=pjpg&auto=webp&s=d7baeda37b3970d9eaa0227f4f10408c8e07740d', 'created': '2024-11-08 00:32:27', 'submission_id': '1glvz6w'}
{'comment': 'No more celebrity presidents please.', 'created': '2024-11-07 18:29:01', 'submission_id': '1glvfbf'}
{'comment': '*Mark Cuban.\n\nJeez i fucked that one up', 'created': '2024-11-09 01:15:29', 'submission_id': '1glvfbf'}
{'comment': 'https://preview.redd.it/bkx4f8flrizd1.jpeg?width=640&format=pjpg&auto=webp&s=bb2d05aec9ddff1a8c0957d00fe7a70d34d0ae08\n\nYeah how about no?', 'created': '2024-11-07 19:04:11', 'submission_id': '1glvfbf'}
{'comment': 'https://preview.redd.it/ouoqk69cekzd1.jpeg?width=2976&format=pjpg&auto=webp&s=739a2a57c52b18047e65174fcd7daf57bc103e7f', 'created': '2024-11-08 00:33:23', 'submission_id': '1glvfbf'}
{'comment': 'Celebrities are the only way democrats are going to get elected. Nobody gives a shit about experience or policy. George Clooney or Taylor Swift had a better chance of winning this.', 'created': '2024-11-07 20:11:56', 'submission_id': '1glvfbf'}
{'comment': 'Unfortunately, celebrity seems to aid in winning elections. Its really all about what that celebrity has built their identities on. I tend to believe the left could accept celebrities who have built their identities on politics. If its just a movie star that has taken zero political action in their career then yea i would agree that our party wouldnt benefit from such a candidate.', 'created': '2024-11-07 18:33:15', 'submission_id': '1glvfbf'}
{'comment': 'That comment was about Tony’s Tom Brady roast that a lot of comedians have said was a good. Stewart did not say that it was okay for Tony to say these things but if youve seen Kill Tony you know this is what he does. \n\nA political rally isnt where this type of rhetoric belongs and Stewart says thats why its so crazy the Trump campaign allowed him to speak bc yes the dude says racist shit in an attempt to make it a joke.', 'created': '2024-11-07 19:22:05', 'submission_id': '1glvfbf'}
{'comment': 'WOW I really hate how deceptively Variety phrased that headline, as it\'s entirely based on Stewart\'s one line "I find that guy very funny" (and he says the line itself in a very joking non-genuine tone, and in response to a different clip). And it ignores everything else he said around it. \n\nI noticed on the Daily Show he usually doesn\'t want to make the same media commentary that every late night show has already covered, so he tries to find some unique angle or bigger picture, and here yeah it was basically what OP\'s reply says.', 'created': '2024-11-07 19:41:09', 'submission_id': '1glvfbf'}
{'comment': 'Oh, well if that’s the case, then I apologize and this is a perfect example of why screenshots are misleading. \n\nMy bad.', 'created': '2024-11-07 19:23:18', 'submission_id': '1glvfbf'}
{'comment': 'Tell 15 million democrats to vote last tuesday', 'created': '2024-11-07 18:40:02', 'submission_id': '1glvf0t'}
{'comment': "Trump will dump and screw him over like he does everyone else.\n\nHe certainly can't share the spotlight with anyone. Elon on the other hand...", 'created': '2024-11-07 18:20:08', 'submission_id': '1glvf0t'}
{'comment': "Make sure that you take care of all your preventive health care needs. I'm making sure my son gets his HPV vaccine as soon as he turns 9 this winter. HPV related oral and pharyngeal cancers aren't something to risk. \n\nI'm a dentist in a non-fluoridated community. I prescribe a lot of 5000 ppm dentrifice to moderate/high caries risk teen/adult patients. For all patients, I recommend not rinsing out toothpaste after brushing to allow more contact between the teeth and the fluoride paste. Most of my colleagues are cheerleaders for prevention of caries and other preventable oral diseases and would be giving the public the same recommendations. There's some chatter about hydroxyapatite as a fluoride sub, but the contact time for effectiveness is longer and the more effective version (nano hydroxyapatite) causes lung inflammation and free radical liver damage...not exactly the safe alternative they make it out to be. I do not use it for that reason. \n\nFluoride studies are generally crap. The controls aren't good and the study is designed with a bias. Fluoridation of community water supply saves taxpayer dollars. I've seen lots of numbers but one that's easy to repeat is that every $1 spent on community water fluoridation saves the government $20 in Medicaid dental spending. It annoys me that R's tout themselves as fiscal hawks and then suggest this crap.", 'created': '2024-11-07 20:41:50', 'submission_id': '1glvf0t'}
{'comment': 'Pay for the return of that worm.', 'created': '2024-11-07 18:34:27', 'submission_id': '1glvf0t'}
{'comment': 'This is a top priority question.', 'created': '2024-11-07 18:09:13', 'submission_id': '1glvf0t'}
{'comment': 'Hope that Trump was lying to him and just trying to get his voters.', 'created': '2024-11-07 19:00:39', 'submission_id': '1glvf0t'}
{'comment': 'Let him ruin everything so Maga can see how bad they fucked up.', 'created': '2024-11-07 23:40:59', 'submission_id': '1glvf0t'}
{'comment': 'I’m concerned. I don’t even fully understand what he wants to do but sunshine and kale don’t cure everything.\nI have beef w big pharma too, but we also need them. It is thanks to big pharma that cutting edge migraine medications are now on the market. These meds have truly improved my life. I never thought i would be pro big pharma but I’m hoping they step in and flex.', 'created': '2024-11-07 18:58:31', 'submission_id': '1glvf0t'}
{'comment': 'Get his ass in court. I may be wrong, (I often am) but it seems to me that the recent Supreme Court Chevron ruling (subjecting executive branch policy to judicial review) could help stop or slow l some of the things they have planned. Stephen Miller, too. \n\nIf someone knows better, put me in my place! I want to understand exactly where we stand. I fear the checks and balances will be so limited right now the conservative court may have actually accidentally thrown us a bone.', 'created': '2024-11-07 18:16:06', 'submission_id': '1glvf0t'}
{'comment': 'I guess we can figure out how to fluoridate our own water', 'created': '2024-11-07 19:35:46', 'submission_id': '1glvf0t'}
{'comment': 'Laugh? Do the opposite of what he says? All we can really do now is sit back and watch the world burn.', 'created': '2024-11-07 20:50:58', 'submission_id': '1glvf0t'}
{'comment': 'Remember that the drug companies will probably tell Trump don’t fuck with our industries or we will pull our campaign funds from Republicans in the midterms.', 'created': '2024-11-08 00:19:14', 'submission_id': '1glvf0t'}
{'comment': 'He\'s already walking back and hiding from a bunch of his statements. The dude was full of it and is terrified of accountability. He\'ll make some gesture like cutting some employees and adding a commission on vax safety and then "gracefully" depart or something.', 'created': '2024-11-07 18:37:14', 'submission_id': '1glvf0t'}
{'comment': 'Hope the worm has a good thanksgiving dinner.', 'created': '2024-11-07 19:11:38', 'submission_id': '1glvf0t'}
{'comment': 'Get mouthwash with fluoride.', 'created': '2024-11-07 21:26:30', 'submission_id': '1glvf0t'}
{'comment': 'Encourage the worms to eat faster?', 'created': '2024-11-07 22:01:53', 'submission_id': '1glvf0t'}
{'comment': 'What do you mean what can we do? Lol we just lost an election.. aint shit we can.', 'created': '2024-11-07 19:09:28', 'submission_id': '1glvf0t'}
{'comment': 'All we can do is watch the literal shit show 2.0 of the Trump Administration..', 'created': '2024-11-07 22:21:39', 'submission_id': '1glvf0t'}
{'comment': 'Be prepared to go to Mexico for treatments, medications & vaccines. There are some good doctors & private hospitals there now.', 'created': '2024-11-07 23:01:37', 'submission_id': '1glvf0t'}
{'comment': 'Let him fuck shit up and use it as a campaign issue in 2026', 'created': '2024-11-08 00:15:43', 'submission_id': '1glvf0t'}
{'comment': 'If the senate confirms him? I guess we can move to another country, but there is no guarantee that will protect us from all the new measles and polio outbreaks', 'created': '2024-11-07 18:20:19', 'submission_id': '1glvf0t'}
{'comment': 'Nothing, captain brain worms is going to be solely deciding healthcare policy for the US. Get ready for leeches to make a comeback.', 'created': '2024-11-07 18:36:17', 'submission_id': '1glvf0t'}
{'comment': 'Hopefully we get some drugs approved like psychedelics. And let’s hope the raw milk people weed themselves out of the gene pool', 'created': '2024-11-08 00:07:29', 'submission_id': '1glvf0t'}
{'comment': "I actually don't think he would be half bad in an environmental role but keep this man far away from anything health related.", 'created': '2024-11-07 23:18:14', 'submission_id': '1glvf0t'}
{'comment': 'Root for the worm', 'created': '2024-11-08 00:42:21', 'submission_id': '1glvf0t'}
{'comment': 'Tell me how someone with no degree or experience in science or healthcare can just suddenly take over public health..', 'created': '2024-11-08 00:59:57', 'submission_id': '1glvf0t'}
{'comment': 'Hope the worm laid eggs and they finally do their job.', 'created': '2024-11-08 01:19:51', 'submission_id': '1glvf0t'}
{'comment': 'Biden needs to use executive orders to lock everything behind as much legal red tape as possible. Bog down the dismantling of our institutions the same way Trump bogged down his legal cases.', 'created': '2024-11-08 01:24:17', 'submission_id': '1glvf0t'}
{'comment': 'Haha he got used and will be spit out. If he does manage a cabinet spot he’ll last as long as the others after Trump throws him out or he resigns once he sees all the others weren’t lying.', 'created': '2024-11-08 04:55:47', 'submission_id': '1glvf0t'}
{'comment': 'Quack medicine is what these people want', 'created': '2024-11-07 20:42:14', 'submission_id': '1glvf0t'}
{'comment': 'Nothing you can do. Anyone who isn’t useful to Trump will be tossed out', 'created': '2024-11-07 18:56:02', 'submission_id': '1glvf0t'}
{'comment': '', 'created': '2024-11-07 21:19:15', 'submission_id': '1glvf0t'}
{'comment': 'Write your senator and congressman flood them with mail not to confirm if nominated', 'created': '2024-11-07 22:17:46', 'submission_id': '1glvf0t'}
{'comment': 'Ride the lightning pretty much', 'created': '2024-11-07 23:05:42', 'submission_id': '1glvf0t'}
{'comment': "There has to be checks and balances for the top government departments so they don't turn into quackeries.", 'created': '2024-11-07 23:12:13', 'submission_id': '1glvf0t'}
{'comment': 'Not a thing. The time to do something is during the campaign, particularly getting out the vote.', 'created': '2024-11-07 23:28:08', 'submission_id': '1glvf0t'}
{'comment': 'https://preview.redd.it/iud13fzdekzd1.jpeg?width=2976&format=pjpg&auto=webp&s=655bd8d35e3d706f33c4c3a95652bc6e764717c1', 'created': '2024-11-08 00:33:40', 'submission_id': '1glvf0t'}
{'comment': 'Nothing. Democrats lost and will not control anything other than potential filibustering in the Senate. \n\nSit back and watch Rome burn. That’s all one can do.', 'created': '2024-11-08 01:31:13', 'submission_id': '1glvf0t'}
{'comment': 'Make him the butt of every possible joke. Hold a contest to name his brainworm. \n\nBut the moral hazard argument suggests we just let him fuck around and find out. It might improve the herd.', 'created': '2024-11-08 02:59:28', 'submission_id': '1glvf0t'}
{'comment': 'Putting a bunch of dead animals in his path to distract him seems like the best strategy at this point.', 'created': '2024-11-08 03:15:22', 'submission_id': '1glvf0t'}
{'comment': 'The water bit is nutty, but I will say..as someone who has little to nothing nice to say about this guy, the fact that he wants to see things like synthetic dyes removed from processed foods ((dyes that other civilized countries outlaw because of their toxicity,)) is a good thing.', 'created': '2024-11-08 05:46:54', 'submission_id': '1glvf0t'}
{'comment': 'Give him a vaccine.', 'created': '2024-11-08 05:59:39', 'submission_id': '1glvf0t'}
{'comment': 'He’s a disgrace to his family’s name, and hope that he’ll fade into the background', 'created': '2024-11-07 18:55:04', 'submission_id': '1glvf0t'}
{'comment': 'Nothing. Absolutely nothing.', 'created': '2024-11-07 20:14:14', 'submission_id': '1glvf0t'}
{'comment': 'so i read somewhere yesterday on reddit or ig that one of the trump guys had said rfk will not be head of the fda so we’ll see. i shudder to think', 'created': '2024-11-07 18:31:36', 'submission_id': '1glvf0t'}
{'comment': "Not sure -- he's likely to worm his way into the Trump administration somehow.", 'created': '2024-11-07 21:37:02', 'submission_id': '1glvf0t'}
{'comment': 'https://preview.redd.it/b2ljqdumkjzd1.jpeg?width=1170&format=pjpg&auto=webp&s=cf6679dc97542ce3e07f0fb461b5a8595c9f06fe', 'created': '2024-11-07 21:46:55', 'submission_id': '1glvf0t'}
{'comment': 'Get the worm out of his head', 'created': '2024-11-07 22:33:50', 'submission_id': '1glvf0t'}
{'comment': 'It\'s time to start digging up all of those "so many skeletons in my closet, that I could rule the world if they could vote", if you know what I mean.', 'created': '2024-11-07 22:40:18', 'submission_id': '1glvf0t'}
{'comment': ' Nothing. He will do his thing then cause deaths and act like he had no idea just like his time in Africa.', 'created': '2024-11-07 22:41:59', 'submission_id': '1glvf0t'}
{'comment': "He's missing 6 parts of his brain... I dont think much of him, and he tries to think much about many things - and he is usually wrong.", 'created': '2024-11-07 22:46:17', 'submission_id': '1glvf0t'}
{'comment': 'Jim Jones drank his own Koolaid?', 'created': '2024-11-07 22:52:05', 'submission_id': '1glvf0t'}
{'comment': 'Embarrassment to family.', 'created': '2024-11-07 22:52:43', 'submission_id': '1glvf0t'}
{'comment': 'See if we can find that worm and let it finish its meal or, find the rest of the pod for that whale whose carcass he decapitated or Find the mama bear of that dead cub.', 'created': '2024-11-07 23:00:51', 'submission_id': '1glvf0t'}
{'comment': 'If their bromance continues, God help us all!', 'created': '2024-11-07 23:04:48', 'submission_id': '1glvf0t'}
{'comment': 'Will the new meat group be split into whale and bear groups? or are we keeping it generic… “may contain worms” \n\n\nNew labeling for FDA: “it’s edible if you want it” or maybe just the emoji : 🤷🏻\u200d♂️food? \n\n\nNow with vitamin K (fn Simpsons predictions)', 'created': '2024-11-07 23:21:54', 'submission_id': '1glvf0t'}
{'comment': 'Not give into his nonsense inevitably shown by media', 'created': '2024-11-07 23:28:53', 'submission_id': '1glvf0t'}
{'comment': 'Get your SHOTS now before this conspiracy theorist gets in power!', 'created': '2024-11-07 23:58:01', 'submission_id': '1glvf0t'}
{'comment': 'put contaminated road kill in front of his house and let him brain worm himself to death.', 'created': '2024-11-08 00:26:49', 'submission_id': '1glvf0t'}
{'comment': 'Have him arrested for the murder of his second wife?', 'created': '2024-11-08 00:27:41', 'submission_id': '1glvf0t'}
{'comment': 'Laugh at him.', 'created': '2024-11-08 00:43:01', 'submission_id': '1glvf0t'}
{'comment': 'Elon will play along until he gets the government contracts and positions he wants….then, who knows', 'created': '2024-11-08 00:50:08', 'submission_id': '1glvf0t'}
{'comment': "Try to make a stink about him. Get the information out there about what he represents. Big Pharma for all it's faults doesn't want a nutcase in charge, and they own a bunch of people who will have Trumps ear.", 'created': '2024-11-08 01:20:58', 'submission_id': '1glvf0t'}
{'comment': 'The entire thing will be a clown show, sit back and watch.', 'created': '2024-11-08 01:36:38', 'submission_id': '1glvf0t'}
{'comment': 'Did Sirhan have a son...?', 'created': '2024-11-08 01:51:58', 'submission_id': '1glvf0t'}
{'comment': 'Ignore him', 'created': '2024-11-08 02:41:53', 'submission_id': '1glvf0t'}
{'comment': 'I know a way, but I might get a visit from a three letter agency if I say.', 'created': '2024-11-08 06:10:51', 'submission_id': '1glvf0t'}
{'comment': '[removed]', 'created': '2024-11-08 22:16:24', 'submission_id': '1glvf0t'}
{'comment': 'Nothing. The only check against him was not letting him get into power. Your country fucking failed hard.', 'created': '2024-11-07 22:42:21', 'submission_id': '1glvf0t'}
{'comment': 'Nothing.', 'created': '2024-11-07 18:24:54', 'submission_id': '1glvf0t'}
{'comment': 'Or just 100k in the right places 😭', 'created': '2024-11-07 18:59:05', 'submission_id': '1glvf0t'}
{'comment': 'Yes, that could have put Kamala into office. But they sat it out. This is the America they want. Plain and simple. They wanted this, either through inaction or directly voting for the chubby Orange Cassidy.', 'created': '2024-11-07 21:20:51', 'submission_id': '1glvf0t'}
{'comment': 'How long before Elon and Donny start beef?', 'created': '2024-11-07 18:53:27', 'submission_id': '1glvf0t'}
{'comment': "I doubt Trump will make many decisions. He likes campaigning and going to his rallies. He's been campaigning nonstop for 10 years. I think he'll just keep doing that while the Heritage Foundation and Steve Bannon pull the strings.", 'created': '2024-11-07 21:03:17', 'submission_id': '1glvf0t'}
{'comment': 'Yeah. Seconded. RFK was helpful in securing the idiot hick vote but now he is a liability.', 'created': '2024-11-07 18:44:39', 'submission_id': '1glvf0t'}
{'comment': 'Maybe Elon will work his the same magic with the economy as he did with Twitter. It’s only worth about 80% less than what it was before he bought it. Seriously. This country elected a convicted felon and a known fraud to “fix” an economy that wasn’t broken - and is bringing Elon around for his business acumen- it would be funny if it was so terrifying. But yeah. I think even trump knows brain worm Bobby is kook.', 'created': '2024-11-08 01:15:39', 'submission_id': '1glvf0t'}
{'comment': 'We can only hope', 'created': '2024-11-07 22:27:34', 'submission_id': '1glvf0t'}
{'comment': 'One can only hope. My children are grown and my grandchildren (thank God) live in another country, but I fear for all children if this son-of-a-bitch is given any kind of freedom with our healthcare.', 'created': '2024-11-08 02:28:31', 'submission_id': '1glvf0t'}
{'comment': "This. I think we should bait Stephen Miller into the spotlight. I think he can't resist being called sexy at which point Trump will turn on him.", 'created': '2024-11-08 06:25:46', 'submission_id': '1glvf0t'}
{'comment': 'I cant wait for when trump dumps elon, trump making him his bitch in that old wh photo was great', 'created': '2024-11-07 23:09:50', 'submission_id': '1glvf0t'}
{'comment': "What do you think of mouth rinses containing fluoride? Do they help? My water source is not fluoridated. And I've been using nHA toothpaste tablets for about a year now. I'm thinking I'll switch back to fluoride containing toothpaste.", 'created': '2024-11-08 02:29:01', 'submission_id': '1glvf0t'}
{'comment': 'It died from malnutrition', 'created': '2024-11-07 18:36:40', 'submission_id': '1glvf0t'}
{'comment': 'He showed loyalty to Trump..he will make him health czar. Republicans are already talking about how brilliant he is and how their minds have been blown of the knowledge he has on health. So he will be involved. Just get whatever vaccines and eat healthy and do what you can do.', 'created': '2024-11-08 02:06:36', 'submission_id': '1glvf0t'}
{'comment': 'Yep, let it all burn and hope the leopards eat the maga faces first', 'created': '2024-11-08 03:20:59', 'submission_id': '1glvf0t'}
{'comment': "They will NEVER put 2+2 together. They'll never admit or believe that the man they voted for is responsible for their suffering.", 'created': '2024-11-08 05:43:38', 'submission_id': '1glvf0t'}
{'comment': 'No checks and balances this time. None... he has immunity to do what he wants.', 'created': '2024-11-07 22:47:18', 'submission_id': '1glvf0t'}
{'comment': 'The top court in the land is a conservative majority that loves Trump. He is poised to add 2 more extremely young, right wing judges…the court isn’t saving you. \n\nGet all your shots up to date, lose weight, exercise and start eating right. Be as healthy as you can to give yourself the best chance of beating whatever you catch.', 'created': '2024-11-07 18:35:58', 'submission_id': '1glvf0t'}
{'comment': "He owns the Supreme Court, are you kidding me? Trump controlls the US and 80% of the population adores him. This is the new reality and he's running again in 2028. Dems need to get their spines together, admit defeat across the board, and start recruiting The Rock, Sam Elliot, George Clooney, Leonardo, Kevin Costner, or some celebrity who's played a tough action hero and / or cowboy and if possible hosted a reality TV business type show. Mark Cuban is good but he's terrible on camera and very stiff and lacks charisma. O'Leary is a Republican through and through so out of the question but that is how you win. \n\nPut in Denzel, The Rock, Same Elliot (probably too old), Clooney, DiCaprio, tell them to make a cowboy series, a business reality TV show and get angry, go hang out in some bars and go dancing at clubs in the lead up to the next election and that person will win. By then Chump will be a drooling maniacal 83 (but likely still worshipped as the risen messiah), but one of those candidates might be able to pull out a win if he emphasizes the state of the economy and how worse off everyone will be (remember protests, George Floyd, etcetera).\n\nDems can come back but only if they get real and start planning now.", 'created': '2024-11-07 21:33:26', 'submission_id': '1glvf0t'}
{'comment': 'That’s a pretty good idea.\n\nThat would be the pragmatic thing to do, if we want to keep up the public health benefits. Just enable as many people as possible to add fluoride to their own drinking water.', 'created': '2024-11-08 00:34:25', 'submission_id': '1glvf0t'}
{'comment': "I really hope you're right, right now. Because that is something that gives me despair as someone whose parent is type 1 diabetic.", 'created': '2024-11-07 18:45:55', 'submission_id': '1glvf0t'}
{'comment': 'You’re wrong. They weekend at Bernie’s him. He their useful stooge. We are all fucked. They had 4 years planning this.', 'created': '2024-11-07 21:24:59', 'submission_id': '1glvf0t'}
{'comment': "First they put shit on the walls of Congress\n\n\nNow they've put shit in the Oval Office", 'created': '2024-11-08 02:25:55', 'submission_id': '1glvf0t'}
{'comment': "This is the correct answer. The Senate might be in GOP hands but they are far more leveled than the House and the White House. I don't think they're going to win enough seats for him to survive a few Republican defections.", 'created': '2024-11-07 23:08:12', 'submission_id': '1glvf0t'}
{'comment': 'So funny thing... Jokes aside, when my conspiracy theorist mom told me this I called bullshit. But apparently they are currently in use as a last resort for blood clots or smth like that. There is a whole industry around it and it appears legitimate as it can be.', 'created': '2024-11-08 02:24:35', 'submission_id': '1glvf0t'}
{'comment': 'And they deserve the consequences of it. Sorry not sorry.', 'created': '2024-11-08 03:42:35', 'submission_id': '1glvf0t'}
{'comment': 'Defeatist.', 'created': '2024-11-07 22:04:58', 'submission_id': '1glvf0t'}
{'comment': "We have less than a month. There's always a way to resist the powers that be, we don't have the luxury right now to not plan.", 'created': '2024-11-07 18:27:14', 'submission_id': '1glvf0t'}
{'comment': '>Or just 100k in the right places\n\nWisconsin alone is 29k. Michigan is another 80+k. I sorry, but PA is even larger. Harris needed 400k votes at least more in those 3 states, and she lost even tho she got more votes than Biden in Wisconsin than 2020. The problem is, Trump got more....', 'created': '2024-11-08 02:25:00', 'submission_id': '1glvf0t'}
{'comment': 'With this election, sitting out is a vote for Trump.', 'created': '2024-11-08 01:37:29', 'submission_id': '1glvf0t'}
{'comment': "Agreed, i don't see that bromance lasting at all, egos are too big", 'created': '2024-11-07 18:56:39', 'submission_id': '1glvf0t'}
{'comment': "Pfft, don't wait. Tell every Trumper that Vance is gonna run a soft coup and invoke the 25th Amendment. See how they like when their emperor is sidlined", 'created': '2024-11-07 22:18:04', 'submission_id': '1glvf0t'}
{'comment': "I've had the same thought. It's just a matter of time.", 'created': '2024-11-07 20:42:27', 'submission_id': '1glvf0t'}
{'comment': 'How long will Vance hold. Easy opponent for next time. Yes. There will be a next time and that’s the mentality we need. *You wanna get nuts, let’s get nuts!*', 'created': '2024-11-07 23:11:32', 'submission_id': '1glvf0t'}
{'comment': 'Soon. Elon is a subsidy and attention whore and familiarity breeds contempt since Trump is the same way.', 'created': '2024-11-07 22:46:32', 'submission_id': '1glvf0t'}
{'comment': 'He had a seat at the table in 2016 but left.', 'created': '2024-11-08 00:37:13', 'submission_id': '1glvf0t'}
{'comment': 'As long as Elon keeps playing puppy, it’ll work out', 'created': '2024-11-08 00:23:30', 'submission_id': '1glvf0t'}
{'comment': None, 'created': '2024-11-08 01:32:57', 'submission_id': '1glvf0t'}
{'comment': 'Great point I wonder if Trump will continue his rallies even though he’s not running again. I would bet yes he needs the adulation.', 'created': '2024-11-07 22:39:41', 'submission_id': '1glvf0t'}
{'comment': '2 years and a day until Vance can step in without it being considered a term.', 'created': '2024-11-07 22:50:53', 'submission_id': '1glvf0t'}
{'comment': 'Yeah, Bannon is the one to worry about but also remember ultimately, OldDon doesn’t like messy looking ugly people around him. Bannon is messy ugly', 'created': '2024-11-07 22:58:33', 'submission_id': '1glvf0t'}
{'comment': 'If only he would have just become a standup comedian. Sigh…', 'created': '2024-11-07 23:40:12', 'submission_id': '1glvf0t'}
{'comment': 'Liability? Under trumps influence MTG interrogated Dr Fauci like he’s a terrorist. They don’t see that as a liability', 'created': '2024-11-07 18:59:07', 'submission_id': '1glvf0t'}
{'comment': 'Toothpaste has a higher ppm fluoride than rinse, so I recommend not rinsing toothpaste over mouthwashes in most circumstances. Mouthwash can have an acidic pH also which is counter to what we want for caries prevention.', 'created': '2024-11-08 02:42:23', 'submission_id': '1glvf0t'}
{'comment': 'Hahhaha', 'created': '2024-11-08 01:19:35', 'submission_id': '1glvf0t'}
{'comment': '80% of the population adores him?', 'created': '2024-11-07 22:40:52', 'submission_id': '1glvf0t'}
{'comment': 'If you put Burt Reynolds, Sam Elliot and the Rock on TV in favor of democrats, the republicans would find a way to call them sissies, and the narrative would stick.', 'created': '2024-11-08 00:32:35', 'submission_id': '1glvf0t'}
{'comment': "Sorry. Not Denzel. You know why.\n\nClooney is hated by the Right also and they will trot out everything. DiCaprio also. \n\nWhile I agree that it's time for Dems to RUN famous candidates instead of gathering their endorsements, we probably need Brad Pitt or McCaughnhey. \n\nThere's a story I've heard a maga tell about Pitt that Pitt once went and threatend Weinstien for harrassing Gwyneth Paltrow back when they were dating. Who knows if it's true but Pitt is from the midwest and has that story.", 'created': '2024-11-07 23:24:08', 'submission_id': '1glvf0t'}
{'comment': 'Realist.', 'created': '2024-11-07 22:27:46', 'submission_id': '1glvf0t'}
{'comment': 'Yea I think I saw a number in the 200s but regardless, still less than a million 🥹 it’s a real shame.', 'created': '2024-11-08 03:02:29', 'submission_id': '1glvf0t'}
{'comment': 'Of course. And yet how many voters did?', 'created': '2024-11-08 12:53:29', 'submission_id': '1glvf0t'}
{'comment': 'I hope they rip each other to pieces.', 'created': '2024-11-07 19:26:59', 'submission_id': '1glvf0t'}
{'comment': '“The Eyeliner Sideliner” - I like it!', 'created': '2024-11-08 02:18:17', 'submission_id': '1glvf0t'}
{'comment': "Putting them against each other really is the strongest play. I don't know how susceptible they will be, but their base is super gullible.", 'created': '2024-11-08 00:00:43', 'submission_id': '1glvf0t'}
{'comment': 'they\'d think "soft coup" is some kinna egg thing', 'created': '2024-11-08 03:11:53', 'submission_id': '1glvf0t'}
{'comment': '\n\nI’m ready', 'created': '2024-11-07 21:25:10', 'submission_id': '1glvf0t'}
{'comment': 'If there is a plan, they will remove trump two years in and try to get Vance a solid 10 year administration', 'created': '2024-11-08 01:30:07', 'submission_id': '1glvf0t'}
{'comment': "Who says he's not running again? The Constitution's only in play when SCOTUS decides it's helpful to him.", 'created': '2024-11-07 22:58:22', 'submission_id': '1glvf0t'}
{'comment': 'I think there\'s a good chance a wad of cholesterol from the steady stream of fast food burgers will off him before his term is up. That\'s what I\'m hoping for - that he fucking dies and soon. Boebert is already pushing for a third Trump term. Never mind the 22nd ammendment says no person shall hold the office of president for more than 2 terms. I\'m pretty sure that if somehow Trump lived that long SCOTUS would come up with some ridiculous excuse why its perfectly consititional for him to run again even though the "textualists" of the court have plain language in the 22nd ammendment expressly forbiding it. Pray the fucker dies from a heart attack or something, and soon. Ideally, painfully.', 'created': '2024-11-08 02:18:58', 'submission_id': '1glvf0t'}
{'comment': 'Jesus Christ. Our system of checks and balances is a joke :(', 'created': '2024-11-07 23:17:58', 'submission_id': '1glvf0t'}
{'comment': 'What does that mean?', 'created': '2024-11-07 23:28:09', 'submission_id': '1glvf0t'}
{'comment': 'Isn’t he? 🤢🤮', 'created': '2024-11-08 00:01:51', 'submission_id': '1glvf0t'}
{'comment': 'And fresh out of prison.', 'created': '2024-11-08 01:18:24', 'submission_id': '1glvf0t'}
{'comment': 'A liability for attention drawing away from Trump', 'created': '2024-11-08 01:31:37', 'submission_id': '1glvf0t'}
{'comment': 'Thanks.\n\nMy dentist gives me samples of major brand "gum health" toothpaste, and it contains stannous fluoride which darkens my teeth if I use it regularly. Is it different than the kind you prescribe?', 'created': '2024-11-08 03:06:19', 'submission_id': '1glvf0t'}
{'comment': "Look at the electoral results. Most of the country voted for him. It was a massive landslide. Kamala didn't stand a chance and most if not all the polls were flat out wrong. The opposite of what they predicted came true.", 'created': '2024-11-08 13:05:17', 'submission_id': '1glvf0t'}
{'comment': 'Not necessarily. Obama ran and won. By the time 2028 rolls around Trump will be even more incoherent than he is now and even his already thin comb over won\'t be enough to spread around and his spray tan will sink into deep grooves and flake. The reality is that someone needs to run against him and a woman won\'t win. So why not cultivate a realistic alternative who can run against him now? \n\nBurt is either too old to walk or dead, Sam Elliot is too old although he talks tough and is a cowboy. The Rock is tough but might be too intelligent for the no college degree "don\'t make me think" crowd but if he does a reality TV business show about his investments and life for a year or two before he might work. We need a tough guy cowboy barroom brawler type who\'s angry all the time, will sing and dance and carry on and talk at a fourth grade level just like Trump if we are going to ever have a viable candidate again. \n\nBIden was a "tough guy" from Scranton, had a solid and deep political base and career, could talk tough with all the "come on!" and was associated with Obama so won that first go-round. We need the fresh equivalent with some charisma or preferably a TV / movie guy with swagger and appeal to uneducated rednecks who (let\'s get real) make up most of America. They don\'t care about issues they don\'t understand, that\'s why they vote against their own best interests. They vote on appeal. Who seems more fun? Who seems more of a tough guy cowboy type? That\'s what wins.', 'created': '2024-11-08 12:59:41', 'submission_id': '1glvf0t'}
{'comment': 'Whoever is hated by the right is irrelevent. Really. Kamala spent most of her campaign trying to cater to Republicans and "undecided" voters (which really means Republicans who don\'t want you to know that or think they\'re actually caring or can read and write) and it got her nothing. McCaughnehey is a good idea but he will be portrayed as weak and wimpy and a sissy boy. He needs to do a reality TV show about his cowboy lifestyle and redneck upbringing or more movies and some action tough guy stuff now if he\'s going to be considered viable. Biden was tough and so forth but was middle of the road, a centerist. McCaugheny is a Dem right leaning as well or a centerist at best, but doesn\'t come across as a barroom brawler tough guy (at least not yet). Good idea, might work if he\'s catered to and taken seriously now and prepped. \n\nWill the Dem leaders do it? Not likely. They\'ll likely prop up whoever is the viable insider politician instead. They don\'t know how to brand or appeal to working class uneducated redneck types and that\'s why they lost. Enough is enough. Stop giving it to Cheetoh Con Man.', 'created': '2024-11-08 13:04:24', 'submission_id': '1glvf0t'}
{'comment': 'Pessimist.', 'created': '2024-11-07 23:28:38', 'submission_id': '1glvf0t'}
{'comment': 'While Peter Thiel watches … mmm *oligarch cage fighting* can become a thing. Trump as Caesar, little wig and all.\n\n\nThey need somewhere to drain their steroids. They should do it on each other.', 'created': '2024-11-07 23:14:50', 'submission_id': '1glvf0t'}
{'comment': 'I do too, but money talks', 'created': '2024-11-08 01:09:40', 'submission_id': '1glvf0t'}
{'comment': 'Ok. It’s possible. Unlikelihood is not 0… but that’s quite a few election midterms cycles and full elections to hold on too.\n\n\nVance is an android 🤖 but his battery won’t go that far.', 'created': '2024-11-08 01:44:26', 'submission_id': '1glvf0t'}
{'comment': 'Will likely be Vance or someone else.', 'created': '2024-11-07 23:06:01', 'submission_id': '1glvf0t'}
{'comment': 'Rip the amendment away somehow, and decide between Bill and Obama on who should beat him for a 3rd term.', 'created': '2024-11-08 05:46:00', 'submission_id': '1glvf0t'}
{'comment': '22nd amendment say a president can serve a max of two and a half terms. The half is only if taking over from the president.', 'created': '2024-11-08 00:18:12', 'submission_id': '1glvf0t'}
{'comment': "The best fluoride is one that someone will actually use so I lean toward sodium fluoride. Rx strength is 5000 ppm. \n\nStannous has a lot of great advantages (it's antibacterial so it reduces acid-causing bacteria) but compliance isnt as good bc it stains and doesn't taste great.", 'created': '2024-11-08 05:19:54', 'submission_id': '1glvf0t'}
{'comment': 'She got like 47% of the vote and he got just over 50%. That’s exactly what the polls said within the margin of error.\n\nAround 1/3 of registered voters didn’t vote, 1/3 voted for Trump, and slightly less than 1/3 voted for Harris.\n\nSo at best 33% of the country “adores” Trump, but I’d guess half of the people who voted for him don’t actually like him that much, but felt like he was the better choice of the two.\n\nThat leaves around 17% of American adults who “adore” Trump.', 'created': '2024-11-08 15:15:39', 'submission_id': '1glvf0t'}
{'comment': 'Too bad the kids (I’m in my 30s, but I guess an old man at heart) wouldn’t look up to like a Neil Young or Willie Nelson type. Obviously both are old, but those are some badass musicians of a different kind. Oh well. I appreciate your thoughtful response! I just don’t know if a celebrity would save us, but I would accept whatever it takes to defeat the rise of authoritarianism in the US', 'created': '2024-11-08 16:21:59', 'submission_id': '1glvf0t'}
{'comment': "Good points. The last one is dis-spiriting so I'd like to continue the somewhat fantasaical lead. I guess because it feels good right now and also ... IDK, conservatives did this for years and finally manifested it so let's dream up our own Anti-Fascist Santa Clause the way they conjured their Fascist Santa Clause.\n\nHow old is Bruce Springsteen?\n\nWhat about Chris Evans? Literal Captain America who continues to play strong men in roles and the occasional villain.", 'created': '2024-11-08 16:58:14', 'submission_id': '1glvf0t'}
{'comment': 'Gladiator vibes', 'created': '2024-11-08 03:02:48', 'submission_id': '1glvf0t'}
{'comment': "That is if elections even continue to happen, and if they do, they aren't rigged to hell. Keep in mind, he openly said that he's going to get rid of elections and we have a SCOTUS that has given him the tools to do so. We're fucked unless we get aggressive.", 'created': '2024-11-08 02:15:08', 'submission_id': '1glvf0t'}
{'comment': "Right, so hopefully the orange asshole dies soon from a heart attack or something. Given his diet is complete shit, I'm hopeful that he has a mac attack that takes him out. That's our best hope of limiting the damage that him and Vance can do - his poor life choices may help us.", 'created': '2024-11-08 02:27:03', 'submission_id': '1glvf0t'}
{'comment': 'Thank you. This is very helpful.', 'created': '2024-11-09 02:25:27', 'submission_id': '1glvf0t'}
{'comment': 'Look, Republicans got Reagan and he was wildly popular and the last President to have such a staggering landslide as Trump did. They both had an established BRAND. Reagan was a B or C level movie star (remember "Bedtime for Bonzo?") and he played barroom brawling tough guy cowboys. He was elected Governor of California and later ordered the National Guard to handle student protests. The police, no surprise, went beserko and opened fire on some of the kids as a result. Trump was a reality TV star portraying a tough talking "businessman" while in real reality had almost no business success of any kind but an ego the size of Venus. \n\nSo if Dems seriously want to compete in 2028 (which I doubt at this point), they need an equal force, not an opposing one that would be a sensitive caring woman of color with a brain (that didn\'t do too well). \n\nSpringsteen would fit the bill: tough guy, macho man music, swagger, long history. BUT he\'s in his seventies. It might work in four years or he might be pushing up daisies by that time as much as I love him. Bon Jovi could just as well be a candidate but would not appeal to redneck tough guy cowboy types who can\'t read or write. Willie Nelson is too old, also but would otherwise fit the bill if he took some acting classes and made some movies and got some angry self-righteous swagger. \n\nEvans seems like a cool guy, played Captain America, did lots of action movies, seems like Mom\'s apple pie (or rather mom\'s frozen Walmart apple pie covered with a pound of sugar). If he did a reality TV show about his investments, intervied about them (supposing he has some), became more visible over time and didn\'t come out as a potential candidate until "Surprise!" a year before the election. He might fit the bill. He\'s polished on camera as you\'d expect, in great shape physically, can talk in front of the camera without stuttering or being painful to watch (remember Bobby Jindal as the Republican answer to Obama? Painful to watch and then he was shown the door.) He just needs to generate real swagger, remind everyone of authentic scary-level tough guy credibility (like a reality TV show showing him working out, fighting in the ring with opponents, going over investments) and so on. Remember, Trump had about a decade hyping that "Apprentice" fantasy world where he was George Lakoff\'s archetypal "stern father figure" yelling "you\'re fired!" at celebritiy posers or cardboard extras in a stage office setting "awarding" non-jobs at prop companies. Evans would need some strong messaging to essentially say "see, I can do that, too! Plus I can legit fight and yell and carry on." \n\nI mean yes it sounds stupid, but it\'s the real world we live in now. If Dems want to win, start recruting what the GOP has been recruiting: tough guy tough talkers who appeal to uneducated redneck types who are fun and exciting to brain-dead voters but here\'s the switcheroo our Dem candidates would be the Trojan Horse in that they could legit read and write, be pro-education, pro-LGBTQ rights, pro science, but not push it on voters and just say they believe science is real "but you decide" and so forth. \n\nEvans is a good pick. Just with the Dem upper level would stop looking at Hakeem Jeffries and Buttigieg or Gretchen or Newsom who are fantastic guys and smart as all get out, but can\'t win against Trump. Newsom and Gretchen can\'t win nationally outside their bubbles, just like Jeffries (scary black male with no TV / movie experience) and Buttigied (gay intellectual = won\'t play in the south so why run him). Call a spade a spade, suck it up, and do what works. They\'ll likely run Jeffries or Buttigieg or Gretchen or Newsom (who I KNOW is jonesing to run hard as is Buttigieg and Gretchen). Put up what has a chance. Kamala lost bad, as in real bad, she got her clock cleaned and enough is enough. One crushing defeat should be enough motivation to go in the opposite direction and run what worked for the competiton. We have tough guy celebrities who are white men, they can be trained to compete and adapt, who are adept in business in The Real World, and can appeal to uneducated college drop outs, wannabe cowboys, and angry rednecks who are disenfranchised. Just position them in secret, train them in what to say and how to build their brand and commit to a Top Three pick and see who comes along. Now is the time to do this not six months before the General.', 'created': '2024-11-08 18:23:08', 'submission_id': '1glvf0t'}
{'comment': 'I dunno, people like him seem to live forever.', 'created': '2024-11-08 11:15:23', 'submission_id': '1glvf0t'}
{'comment': 'And to quote the late great Vernon Howard, "never tell vultures what you plan to have for lunch. If you tell them you are having coleslaw, they will swoop down and corner the cabbage market." \n\nIt needs to be started now, in secret, winnowing down to 3 potential leads for the new candidate. They won\'t do it because the leadership lacks vision and understanding of working-class "low information" uneducated rednecks. Take Stone Cold, make him angry, motivated, teach him a few debate tricks (speak in vague, broad platitudes for example), build a broad coaltion and how to discuss money and economics in fourth grade terms and spin him up like a top and let him rip. That\'s what we\'ll need. But they\'ll run Buttigieg and then lick their wounds when he flops on his belly because as smart as he is, he\'ll be seen as a gay liberal intellectual that\'ll just alienate them more. Same with Downey JR - great actor but he can come across as snarky and they\'ll pose him as an elite snob. Why hand them another victory when you don\'t have to?', 'created': '2024-11-08 18:50:53', 'submission_id': '1glvf0t'}
{'comment': 'I think we have to start discussing how countries are starting to reject the idea of globalism', 'created': '2024-11-07 18:16:15', 'submission_id': '1glvdhr'}
{'comment': 'I think this election gives Democrats a very clear mandate. The social issues matter but they are a lower priority compared to basic needs like lower cost of living and jobs.\n\nIn longer term this is great because sadly Trump is going to screw up the economy. And all Democrats need to do is not get distracted by his immigration and anti-women agenda.', 'created': '2024-11-08 00:26:08', 'submission_id': '1glvdhr'}
{'comment': 'https://preview.redd.it/dajn6clfekzd1.jpeg?width=2976&format=pjpg&auto=webp&s=58d03f8378d75e74c255aaa7379564be91e8eb22', 'created': '2024-11-08 00:33:55', 'submission_id': '1glvdhr'}
{'comment': 'What is this saying?', 'created': '2024-11-08 21:26:00', 'submission_id': '1glvdhr'}
{'comment': 'Trump’s going to be president again because too many people were “burned out on politics”', 'created': '2024-11-07 22:37:31', 'submission_id': '1glvdhr'}
{'comment': 'I read this as “due to inflation felt globally, the government in the seat took a hit even though it was a direct impact of Covid”.', 'created': '2024-11-07 18:34:47', 'submission_id': '1glvdhr'}
{'comment': 'Hit me. What do you think that means and what do we learn from its rejection.', 'created': '2024-11-07 18:30:50', 'submission_id': '1glvdhr'}
{'comment': 'ssp3', 'created': '2024-11-07 19:08:15', 'submission_id': '1glvdhr'}
{'comment': 'It seems to me that globalism has been accepted since the time of adam smith? And it was Lenin (please forgive me for mentioning…) who first characterized its limitations in his Imperialism book? Be nice to see this as having a long view…', 'created': '2024-11-07 19:42:45', 'submission_id': '1glvdhr'}
{'comment': 'global use of propaganda on social media is very effective', 'created': '2024-11-07 23:05:38', 'submission_id': '1glvdhr'}
{'comment': "The fact that so many of us normies realized the truth of your first statement, yet not a single goddamn member of the DNC seemed to, is what has me unconvinced they won't *fucking do it again* as the popular Goofy meme says.", 'created': '2024-11-08 02:27:23', 'submission_id': '1glvdhr'}
{'comment': 'In terms of vote share lost, we did far better than almost everyone else in the developed world.', 'created': '2024-11-08 21:26:35', 'submission_id': '1glvdhr'}
{'comment': 'More accurately, Trump’s going to be president again because too many people were pissed about inflation and incorrectly took it out on the party in power.', 'created': '2024-11-07 22:42:05', 'submission_id': '1glvdhr'}
{'comment': 'Why was inflation felt globally? All these economies are interconnected so if there’s inflation in Europe America will feel it too. That’s being rejected.', 'created': '2024-11-07 19:35:41', 'submission_id': '1glvdhr'}
{'comment': 'I could be wrong but I’m going off perception here. I think most people believed globalism would present opportunities for everyday people to sell goods and services around the world and have access to goods and services that aren’t local to their country. \n\nIn actuality, globalism has cut out working class people in favor of cheap international labor which has let corporations dominate industries because of their ability to scale. \n\nTheres little room for the middle class in global economies. It’s really a haves and have nots. Folks are rejecting that. I think we (democrats) again assume every republican is a dumb hick who doesn’t know the meaning of a tariff. \n\nWhile those do exist, I think there are also republicans who say that might lead to more jobs home if the sale price with a tariff is more than a sale price with domestic labor', 'created': '2024-11-07 18:37:16', 'submission_id': '1glvdhr'}
{'comment': 'Globalization is fine so long as the goods and labor are sourced locally. If your shirt you’re selling is made from American sourced cotton and put together with American labor then yeah sell it wherever. You should be able to do that. \n\nThe issue and I’m thinking this is where Lenin has a problem is what happens when it’s not local? What happens when you’re not using an American farmers cotton or American labor yet you’re selling that good to us? That’s how you get into a wealth transfer and people are fed up with that.', 'created': '2024-11-07 19:50:50', 'submission_id': '1glvdhr'}
{'comment': 'Many times propaganda is a reflection of what people already think. We must be better at addressing why people feel the way they do', 'created': '2024-11-07 23:21:13', 'submission_id': '1glvdhr'}
{'comment': 'Okay, I see.', 'created': '2024-11-08 21:27:01', 'submission_id': '1glvdhr'}
{'comment': 'Tale as old as time... or at least American elections.', 'created': '2024-11-08 16:57:43', 'submission_id': '1glvdhr'}
{'comment': 'I’m struggling here because the first thing you said is correct. I buy goods from around the world and I represent clients that sell their goods around the world 🤷🏻\u200d♂️', 'created': '2024-11-07 18:47:35', 'submission_id': '1glvdhr'}
{'comment': 'Yes, production considerations do force the consideration of marginal gains. I believe Adam Smith deals especially with the case of components being cheaper to produce in one country versus another. It is Lenin who ties this up with oligarchic finance and imperialism. I am surprised that you seem to be finding “people are fed up with our exploitive billionaires making less money than some other country’s exploitive billionaires?? I had not considered the altruism of the poor.', 'created': '2024-11-07 20:56:52', 'submission_id': '1glvdhr'}
{'comment': 'Nut how many average Americans share your same economic fortunes? That’s the thing. Democrats appeal to the middle class but that’s a small piece of the electorate compared to working class people without a college degree', 'created': '2024-11-07 18:55:13', 'submission_id': '1glvdhr'}
{'comment': "Yeah, this idea doen't really hold water for me.", 'created': '2024-11-07 21:12:53', 'submission_id': '1glvdhr'}
{'comment': 'It’s not economic fortunes. Most people have internet access and can purchase items made around the world for very little. And my clients are mom and pop operations that are able to start companies with very little seed capital and access global markets very quickly.\n\nI won’t disclose clients here but these are not luxury items. They’re consumer goods.\n\nI understand there are economic classes, but that’s also nothing new and in fact wages have had a steady upward climb.\n\nNone of this is to say that these concerns aren’t real or felt, but it’s getting hard to look at someone standing in the rain with an umbrella in hand and tell them “you know you’d be drier if you just opened that up, and also I don’t control the weather.”', 'created': '2024-11-07 19:00:20', 'submission_id': '1glvdhr'}
{'comment': 'Although my state came out for Harris, I still feel the need to apologize to every woman I meet.', 'created': '2024-11-07 19:44:42', 'submission_id': '1glvcoa'}
{'comment': 'https://preview.redd.it/y3k2no3iekzd1.jpeg?width=2976&format=pjpg&auto=webp&s=9cfdeeeafdce7db9c899f95a5c142aa87f22d51c', 'created': '2024-11-08 00:34:18', 'submission_id': '1glvcoa'}
{'comment': "I'm reading Koba the Dread.\xa0 \xa0Its some kind of thing where the monsters that are documented to have actually been under the bed are less scary to me than the ones I make up in my head.\xa0\xa0", 'created': '2024-11-12 09:15:59', 'submission_id': '1glvcoa'}
{'comment': "Winning the house will at least take a few pounds off of our backs for the next 2 years.\n\n\nIt's the last shimmer of hope to still grasp onto lol.", 'created': '2024-11-07 18:58:41', 'submission_id': '1glv0v1'}
{'comment': 'Let’s say we win the house. It’ll be a small margin. Then the Dems use that to block Trump on some issues. What’s to stop Trump, with his court sanctioned presidential immunity, from locking some of them up to force GOP majority?', 'created': '2024-11-07 19:19:05', 'submission_id': '1glv0v1'}
{'comment': 'I’m all outta hope. Things are going to get worse before they get better.', 'created': '2024-11-07 19:00:19', 'submission_id': '1glv0v1'}
{'comment': 'That’s honestly my only hope at this point. It’s the only way to prevent the worst of Project 2025!', 'created': '2024-11-07 20:33:15', 'submission_id': '1glv0v1'}
{'comment': "I'm pessimistic at this point, but I'll say we maybe have a 35% shot of winning the House. If we purge the DNC leadership and pressure them to be super obstructionist, that will be a good thing.\n\n[Updated article](https://www.msn.com/en-us/news/politics/election-2024-live-updates-who-will-control-house-dozens-of-races-not-decided/ar-AA1tG4H1?ocid=BingNewsSerp)", 'created': '2024-11-07 17:52:22', 'submission_id': '1glv0v1'}
{'comment': "I'll take it at this point... praying for a miracle", 'created': '2024-11-07 20:22:15', 'submission_id': '1glv0v1'}
{'comment': "You mean we MIGHT win the House. We've already lost the Senate.", 'created': '2024-11-07 21:43:25', 'submission_id': '1glv0v1'}
{'comment': 'please please please', 'created': '2024-11-07 20:08:54', 'submission_id': '1glv0v1'}
{'comment': 'That would be wild, lose 3-4 senate seats, lose popular vote with White House, keep the house? Good luck to them but I’m not holding my breath', 'created': '2024-11-07 21:30:11', 'submission_id': '1glv0v1'}
{'comment': "I can't care anymore. Disappointment hurts too bad.", 'created': '2024-11-07 22:26:26', 'submission_id': '1glv0v1'}
{'comment': 'Where do you get 3 seats up? The link is to an interactive map, not exactly what is being projected. A quick Google search shows the Rs are up in the house and really close to getting a majority.', 'created': '2024-11-07 21:28:22', 'submission_id': '1glv0v1'}
{'comment': 'Hopefully we pull an upset in the house or keep the republicans at a 2-3 seat margin, that would at least limit Trump’s power.', 'created': '2024-11-08 00:32:31', 'submission_id': '1glv0v1'}
{'comment': 'Hear me out, I am hoping we lose the House, too. I want Republicans to own everything so every fuckup is in their name and I want the people that stayed home or voted for him to face the same suffering we will.', 'created': '2024-11-07 21:25:25', 'submission_id': '1glv0v1'}
{'comment': 'Not gonna happen. Let’s be realistic here folks.', 'created': '2024-11-07 19:58:16', 'submission_id': '1glv0v1'}
{'comment': 'I hate to be the bearer of bad news, but the republicans are up in most of the remaining races, including two democrats were expected to win.', 'created': '2024-11-07 23:29:30', 'submission_id': '1glv0v1'}
{'comment': 'Looking at it seems like they are gonna win majority plus six. hope not.', 'created': '2024-11-07 22:53:19', 'submission_id': '1glv0v1'}
{'comment': 'A sliver of good news. \n\nThank you internet stranger!', 'created': '2024-11-07 23:03:04', 'submission_id': '1glv0v1'}
{'comment': 'Not happening Based on the current trends, we are looking at 220 GOP - 215 Dem.', 'created': '2024-11-07 23:31:12', 'submission_id': '1glv0v1'}
{'comment': 'https://preview.redd.it/0r33muklekzd1.jpeg?width=2976&format=pjpg&auto=webp&s=de09dc7f6b1d8333af451faed26dca358d217618', 'created': '2024-11-08 00:34:50', 'submission_id': '1glv0v1'}
{'comment': 'I have no faith, but it would be nice to have some balance.\n\nWhat we need to very concerned about now is appointments. Will we have the Barr, Milley, Mattis types to prevent his worst impulses?\n\nI am hoping there are confirmation checks and balances, but if I remember correctly he used “acting” officials to skirt that process.', 'created': '2024-11-08 01:01:06', 'submission_id': '1glv0v1'}
{'comment': "Imagine the Republicans trying to pass a budget with another five-seat majority. Trump's not going to slash the budget until it balances: that might slow the economy. But with a narrow majority he can't lose the votes of the Chip Roys of the world.\n\nThey're going to shutdown the government for their own dysfunction and I'm going to laugh.\n\nAnd that's after a few dozen ballots just to elect a speaker mind you.", 'created': '2024-11-08 02:53:05', 'submission_id': '1glv0v1'}
{'comment': "All I know is I saw someone share something about volunteering to call voters in California for ballot curing and that's what I'm doing tomorrow night. It's not over 'til it's over.", 'created': '2024-11-08 06:42:14', 'submission_id': '1glv0v1'}
{'comment': 'MMW Trump will win a third term in 2028', 'created': '2024-11-08 03:33:18', 'submission_id': '1glv0v1'}
{'comment': "Why? Rs having a 2 seat majority and a Senate full of old school non-MAGA Rs + the filibuster would be ungovernable. They'd own doing nothing, not improving anyone's conditions and then being flattened in the midterms. \n\nMeanwhile Dems could also use a revitalized anti-Trump sentiment to surge at the state level, finally getting Trifectas in AZ, PA, WI, VA again etc", 'created': '2024-11-07 22:38:53', 'submission_id': '1glv0v1'}
{'comment': 'Us.', 'created': '2024-11-07 19:40:23', 'submission_id': '1glv0v1'}
{'comment': 'I do not believe the president has any authority to arrest anybody. Even if he was successful, a replacement would likely be (must be?) of the same party.', 'created': '2024-11-07 21:44:41', 'submission_id': '1glv0v1'}
{'comment': 'This might sound weird of me to say, but even thinking that "things are going to get worse before they get better" still contains some hope in it.\n\nTrue lack of hope would be to say "things are only ever going to get worse with no possibility of ever getting better".\n\nI think deep down we all still have some hope, even if we feel like we don\'t at the moment, and that\'s an important thing to hold on to, even if it feels very tenuous.', 'created': '2024-11-07 19:11:00', 'submission_id': '1glv0v1'}
{'comment': '>I’m all outta hope... they get better.\n\nPick a lane!', 'created': '2024-11-08 02:38:39', 'submission_id': '1glv0v1'}
{'comment': 'We get the house and Jefferies becomes speaker before Inauguration Day.', 'created': '2024-11-08 02:32:58', 'submission_id': '1glv0v1'}
{'comment': '35% is way higher than I thought, also if they only have 1-2 seat majority they might have trouble getting a speaker much less passing policy', 'created': '2024-11-07 21:30:58', 'submission_id': '1glv0v1'}
{'comment': 'You mean win the house. We don’t have the house right now so there’s nothing to keep, so in some ways this would be an improvement if we actually won it. I’m not really holding out too much hope though. I don’t want to feel utterly disappointed if this doesn’t come to pass. But it would be fantastic if it does.', 'created': '2024-11-07 23:12:13', 'submission_id': '1glv0v1'}
{'comment': '[Link](https://www.msn.com/en-us/news/politics/election-2024-live-updates-who-will-control-house-dozens-of-races-not-decided/ar-AA1tG4H1?ocid=BingNewsSerp)', 'created': '2024-11-07 21:42:13', 'submission_id': '1glv0v1'}
{'comment': 'I want Republicans to win by a single seat... which (humor me for a moment) sets an entire row of dominos to fall:\n\n* Repeat of 2021... but worse. For several weeks, Trump and the Freedom Caucus will try to bully House Republicans into electing a Trump-approved extremist as speaker. They\'ll lose, and lose, and lose.\n* Eventually, House Democrats hold their nose, and offer a few House Republicans like Dan Crenshaw a deal: switch parties, agree to rules guaranteeing members elected as Democrats can periodically force items to come before the House (even if the Speaker objects), and elect one of the party-switching ex-Republicans as Speaker.\n* Trump & Fox News go *nuclear* with rage.\n* Trump orders someone under him to take action against Dan (or whomever else is involved) that might or might not technically be constitutional... but it doesn\'t matter, because they refuse to obey & angrily tell Trump they aren\'t mobsters.\n* Trump tries harder and harder to find *someone* who\'ll carry out his orders against not only the House member(s) who switched, but everyone who refused to carry out his vengeance, until JD steps in and invokes the 25th Amendment declaring him to be mentally unfit.\n* The House and Senate are utterly and completely freaked out that a President -- even Donald Trump -- would *actually* try to do what Trump just did. The House impeaches him within hours (possibly, within *minutes*), and Senate Republicans take full advantage of the opportunity to beat Trump to a bloody political pulp before convicting him (which Mitch McConnell later describes as "the most satisfying thing I\'ve ever done").\n* During the aftermath, George W. Bush (and many, many other high-profile Republicans) angrily leave the Republican Party in disgust... saying Ronald Reagan would have been ashamed of the Party\'s present-day leaders, and calling Trump a pox on American democracy. By the end of 2025, the House and Senate are both firmly in the hands of Democrats (due to all the members and Senators who switched parties).\n* JD (and his new VP, Nikki Haley) spend the next 3 years walking on glass trying to do damage control, even as the party continues to hemorrhage both elected officials (at the federal, state, and local level) and registered voters in the aftermath of the worst scandal in American history. In 2028, they\'re shredded by the angry remnants of the now ultra-radical Republican Party who blame JD for removing their god, and Haley for trying to be an adult in the room.\n\nRight now, the Republican Party is celebrating victory... but below the surface, it\'s like tempered glass under *immense* tension. The slightest nick, and it\'ll shatter beyond repair. **This is the boss level of American political chess**, and the best (possibly *only*) opportunity the party will get to *completely* derail all the evil Trump and MAGA have planned for the next few years.\n\nThe single-seat Republican "win" is essential. If Democrats have a majority, House Republicans simply end up as an angry, embittered minority. Actual party-shattering *capitulation* requires a crescendo of events leading to a moment *so horrifying*, it scares the bejesus out of *Republicans* once they realize that they\'ve unleashed forces beyond their own ability to control.', 'created': '2024-11-08 00:34:41', 'submission_id': '1glv0v1'}
{'comment': 'Dangerous game -- with the House we still have a hand in and without it, rubber-stamp city...', 'created': '2024-11-07 23:51:37', 'submission_id': '1glv0v1'}
{'comment': 'Democrats are up in more than half of the remaining open races, and there are a bunch in California that are very close with only 50-60% of the vote in so who know how those will go. If all the races finish as they are now republicans will win the house but it’s not hopeless like your describing it.', 'created': '2024-11-08 09:57:13', 'submission_id': '1glv0v1'}
{'comment': 'The democrats will make a deal on the budget, on their terms and if needed. They’ll ensure that spending isn’t cut without giving trump anything of consequence.', 'created': '2024-11-08 10:04:23', 'submission_id': '1glv0v1'}
{'comment': "The filibuster is simply a gentlemen's agreement, the new Senate makes the rules for the session. The filibuster's gonna be gone so fast it'll make your head spin.", 'created': '2024-11-07 23:55:37', 'submission_id': '1glv0v1'}
{'comment': 'I know we at least can filibuster but Johnson in the house scares me. There’s just something super sinister about him.', 'created': '2024-11-07 23:03:29', 'submission_id': '1glv0v1'}
{'comment': 'Good optimism. I hope you’re right.', 'created': '2024-11-07 19:42:02', 'submission_id': '1glv0v1'}
{'comment': 'This should be true and was true up until recently but the SCOTUS decision said he can do anything and call it an official act. Even overthrowing democracy. He has zero guardrails because the senate won’t sentence him even if there is another impeachment', 'created': '2024-11-07 22:19:11', 'submission_id': '1glv0v1'}
{'comment': 'He can do basically whatever he wants as long as it’s for official reasons of his own choosing. He can order the military to detain them as national security threats and then pardon himself for breaking any laws in the process.', 'created': '2024-11-07 21:49:35', 'submission_id': '1glv0v1'}
{'comment': 'I like your style! Keep it up!', 'created': '2024-11-07 23:04:01', 'submission_id': '1glv0v1'}
{'comment': 'That’s where I’m at tho. I don’t know if this will ever get any better.', 'created': '2024-11-07 23:04:24', 'submission_id': '1glv0v1'}
{'comment': 'If they have a majority Jeffries is speaker, end of story. He had a united Dem caucus all 8,000 rounds of speaker votes during the McCarthy and Johnson shit shows', 'created': '2024-11-07 21:41:39', 'submission_id': '1glv0v1'}
{'comment': 'You know what, you have me on board lol', 'created': '2024-11-08 01:47:03', 'submission_id': '1glv0v1'}
{'comment': 'Under your theory the democrats do have the majority. They start 1 seat down but you have them getting a few, or at least 1, republican to switch parties making the democrats the majority. Unless what you meant was that the dems make a deal with a republican to give that person their votes for speaker and then that new speaker would give the democrats a little power.', 'created': '2024-11-08 10:00:48', 'submission_id': '1glv0v1'}
{'comment': 'I understand, just very disappointed this week and I want the blame to shift to the rightful people. Hoping for the best', 'created': '2024-11-08 01:48:21', 'submission_id': '1glv0v1'}
{'comment': "There is 0 chance Rs nuke the filibuster. They love it, they don't need it for judges or tax breaks and they know Dems could use it for 10x more.", 'created': '2024-11-08 05:56:19', 'submission_id': '1glv0v1'}
{'comment': 'He ran unopposed. I fucking hate that. We need to support the Dems in LA to provide a good chance at opposition.', 'created': '2024-11-08 03:53:37', 'submission_id': '1glv0v1'}
{'comment': 'The ruling says he might be able to avoid punishment for doing it, but that doesn’t mean he can just keep a congressman locked up for no reason.', 'created': '2024-11-08 09:44:17', 'submission_id': '1glv0v1'}
{'comment': "He can do whatever he want without personal liability. It's not exactly cart blanche to jail everyone.", 'created': '2024-11-08 02:09:52', 'submission_id': '1glv0v1'}
{'comment': 'Hear, hear!!', 'created': '2024-11-07 23:46:23', 'submission_id': '1glv0v1'}
{'comment': "Yeah, I'm talking about Democrats starting 1 down (causing Trump & Fox to celebrate & do a victory dance), then ultimately lose the House in the most humiliating & Trump-triggering way possible... goading a fragile, broken man into crossing a line a US President must **never** be allowed to cross.\n\nI suppose the plan could work if the Republicans end up +2 or +3, but the more Republicans who'd have to flip, the more dangerous the plot becomes.", 'created': '2024-11-08 16:17:20', 'submission_id': '1glv0v1'}
{'comment': 'Why not? Where did the ruling say immunity from criminal prosecution as long as it’s not jailing people?', 'created': '2024-11-08 02:16:36', 'submission_id': '1glv0v1'}
{'comment': "I think you're missing the point. The ruling was that anything he, or any president does is an official act, the mechanism to prosecute would be impeachment, and they wouldn't be personally liable to criminal charges. It doesn't give the president the ability to do anything they choose.", 'created': '2024-11-08 02:29:11', 'submission_id': '1glv0v1'}
{'comment': 'You think a GOP house would impeach?', 'created': '2024-11-08 02:29:53', 'submission_id': '1glv0v1'}
{'comment': 'Under this post it’s a democratic house not GOP. But you’re missing the point, the SC didn’t say he can do whatever he wants and it’s legal. We still have a constitution, trump could have the FBi arrest someone but they still need to bring him before a judge, indict him, etc, that person still retains his rights.', 'created': '2024-11-08 09:47:00', 'submission_id': '1glv0v1'}
{'comment': 'It’s a Democrat house until he detains enough to make it GOP again. And I’m pretty sure the Japanese had rights when they were locked up after Pearl Harbor. Didn’t stop that from happening. And that was before Presidential immunity was a thing.', 'created': '2024-11-08 12:08:43', 'submission_id': '1glv0v1'}
{'comment': 'In Pennsylvania the senate race is insanely close:\n\nMcCormick (Republican senator) at 48.9% vs Casey (democratic senator) at 48.5%…\n\nIn Florida we have to have 60% to pass amendments.\n\nAmendment 4: woman’s abortion rights, is at 57.1%\n\nAmendment 3: legalized marijuana, is at 55.9% \n\nThat is insanely tight and this is where we do our due diligence and check our vote counted', 'created': '2024-11-07 18:20:32', 'submission_id': '1gluv4m'}
{'comment': "I had voted early in Kansas so the voter check didn't work for me , I emailed someone at my election office yesterday. He said it'll be till the 15th before it shows that I voted.", 'created': '2024-11-07 17:56:44', 'submission_id': '1gluv4m'}
{'comment': 'Done. Tracked and verified.', 'created': '2024-11-07 19:01:17', 'submission_id': '1gluv4m'}
{'comment': 'https://preview.redd.it/8m9ct93oekzd1.jpeg?width=2976&format=pjpg&auto=webp&s=201af2a5ab2c700de9383f8a953f1a8f393df610', 'created': '2024-11-08 00:35:14', 'submission_id': '1gluv4m'}
{'comment': 'What’s the threshold for the amendments? 60 pc?', 'created': '2024-11-07 19:12:41', 'submission_id': '1gluv4m'}
{'comment': 'Thank you for your post - this appears to be affecting multiple states differently. Some of the races are tight - not specific to POTUS but even local leadership and amendments.', 'created': '2024-11-07 17:59:45', 'submission_id': '1gluv4m'}
{'comment': 'Yes - for Florida’s amendments\n\nOther states goes by majority which would have passed if it wasn’t for the 60% rule..', 'created': '2024-11-07 19:14:01', 'submission_id': '1gluv4m'}
{'comment': 'Sorry sorry- I misread and I thought maybe PA also had an amendment 4. Now I understand you were referring to Florida! But thanks so much for breaking it down.', 'created': '2024-11-07 19:22:53', 'submission_id': '1gluv4m'}
{'comment': 'Sorry for confusion! Just pointing out margins are tight on specific factors on everyone’s ballot!', 'created': '2024-11-07 19:31:44', 'submission_id': '1gluv4m'}
{'comment': 'So this is why Musk was leaping for joy.', 'created': '2024-11-07 19:05:55', 'submission_id': '1glu7y3'}
{'comment': 'Cool. So the price and eggs and milk will come down now, right?? Right???!?', 'created': '2024-11-07 21:22:35', 'submission_id': '1glu7y3'}
{'comment': "That's quite a payday for Leon.", 'created': '2024-11-07 18:44:00', 'submission_id': '1glu7y3'}
{'comment': 'While losing how much? DJT is below $29!', 'created': '2024-11-07 20:44:02', 'submission_id': '1glu7y3'}
{'comment': 'https://preview.redd.it/eqxq1e7tekzd1.jpeg?width=2976&format=pjpg&auto=webp&s=f51f4639d836cf13a7ff49ac8badeda8ed607cec', 'created': '2024-11-08 00:36:03', 'submission_id': '1glu7y3'}
{'comment': 'More accurately, North Carolina is like that, and that’s a far smaller population than an entire country. Someone smarter than me please do the math on what this shakes out to population-wise.', 'created': '2024-11-07 18:08:02', 'submission_id': '1gluieb'}
{'comment': 'https://preview.redd.it/d6qlio8rekzd1.jpeg?width=2976&format=pjpg&auto=webp&s=246af5747d7bcf5c5e334836d83d1b98a4d7442b', 'created': '2024-11-08 00:35:43', 'submission_id': '1gluieb'}
{'comment': 'I’m used to dismissing AOC as being out of touch with the country / NYC-centric.\n\n99% what she said is spot on. The other 1% idgaf because I’m in her coalition and we will deal with it.', 'created': '2024-11-07 18:38:14', 'submission_id': '1glu0i7'}
{'comment': 'Yes this is excellent.', 'created': '2024-11-07 19:06:18', 'submission_id': '1glu0i7'}
{'comment': 'Check that your voice was counted \n\nhttps://www.vote.org/ballot-tracker-tools/', 'created': '2024-11-07 17:47:37', 'submission_id': '1glu0i7'}
{'comment': 'Hate to tell everyone but Hispanics just shot themselves in the foot at the very minimum. Now Hispanics are saying don’t blame us. Well the Hispanic males rock and rolled it for Trump.', 'created': '2024-11-07 17:47:59', 'submission_id': '1glu0i7'}
{'comment': 'Can someone summarize?', 'created': '2024-11-08 00:11:00', 'submission_id': '1glu0i7'}
{'comment': 'https://preview.redd.it/jg0v1wtzekzd1.jpeg?width=2976&format=pjpg&auto=webp&s=373d7f33cdf18401c0be407b540a5a9b25d23789', 'created': '2024-11-08 00:37:04', 'submission_id': '1glu0i7'}
{'comment': "Yes. It's great. Don't even think about her for President any time soon, please. And sadly, not ever. The media successfully painted her as being a cute moron. Not in spite of her brilliance and tough questions at hearings but because of them. We've seen how powerful people like Pelosi and McConnell can be. May AOC wield power in the House", 'created': '2024-11-07 22:34:53', 'submission_id': '1glu0i7'}
{'comment': 'Give this woman the keys to the Democratic Party already', 'created': '2024-11-08 17:55:19', 'submission_id': '1glu0i7'}
{'comment': 'Honestly AOC has been redeeming herself as of late. She has been toning down her crazy rhetoric, and working with Democrats, even angering the far left wing.', 'created': '2024-11-08 04:20:43', 'submission_id': '1glu0i7'}
{'comment': 'They think they aren’t getting deported lol!', 'created': '2024-11-07 22:07:05', 'submission_id': '1glu0i7'}
{'comment': 'Why do you assume all Hispanics who voted will be deported?', 'created': '2024-11-07 18:14:18', 'submission_id': '1glu0i7'}
{'comment': "Return to focus on working class, stop being beholden to corporate donors, band together, lot of work to do, can't give up and roll over, essentially a longer and more detailed version of the Bernie statement.", 'created': '2024-11-08 01:58:39', 'submission_id': '1glu0i7'}
{'comment': 'Do we know whether the increase in support for the traitorous convicted felon Trump among men of Latino descent in the affected counties was due to eligible voters who were being told in Spanish that the money was and is conditioned on voting for that candidate?', 'created': '2024-11-08 00:37:23', 'submission_id': '1glu0i7'}
{'comment': 'It was a big deal to me that she chose to endorse Kamala. She is very smart. And she will be a needed leader over the next four years.', 'created': '2024-11-08 04:29:41', 'submission_id': '1glu0i7'}
{'comment': 'When did she ever have crazy rhetoric?', 'created': '2024-11-08 12:59:05', 'submission_id': '1glu0i7'}
{'comment': "'It's a damn shame...'", 'created': '2024-11-08 01:04:24', 'submission_id': '1glu0i7'}
{'comment': 'You think ICE is going to care about the difference between a guy named Jamie Hernandez and Jose Hernandez? They have a Z at the end of their name they will not check paperwork. You genuinely think the administration who has had “concepts of a plan” on healthcare FOR A DECADE have ANY idea how to execute a mass deportation operation like that without catching actual US citizens and costing trillions of dollars?\n\nUnbelievable. The people in this country simply do no think.\n\nBTW: I’m one of those US citizens that will probably get misreported because I actually have a Z at the end of my name.', 'created': '2024-11-07 18:56:48', 'submission_id': '1glu0i7'}
{'comment': 'The last time the United States did a "mass deportation" it was much smaller than what Trump\'s proposing. That, and he\'s claiming he\'s going to deport several million more people than DHS believes are even in the country illegally.\n\nThat previous deportation under Eisenhower ensnared a ton of US citizens. Doing what Trump\'s proposing within the timeframe he\'s proposing will *require* bypassing normal legal proceedings. It\'s pretty obvious they\'re gonna start grabbing random latinos off the street.', 'created': '2024-11-07 18:29:42', 'submission_id': '1glu0i7'}
{'comment': 'Red states purged people from voter roles prior to the election in the name of preventing "non-citizens" from voting, a practice that we [know disenfranchised citizens](https://www.npr.org/2024/10/29/nx-s1-5169204/virginia-noncitizen-voter-purge). Why would we presume that a Red administration would properly investigate their citizenship status before deporting them?', 'created': '2024-11-08 03:16:22', 'submission_id': '1glu0i7'}
{'comment': 'It’s just in the cards if you had bothered to pay attention. He’s already saying it’s number one priority. This is the reality now. I’m just a white American male that lives in the burbs. I’ve got my papers.', 'created': '2024-11-07 18:18:30', 'submission_id': '1glu0i7'}
{'comment': 'Yes this is the case. MAGA amd ICE see no difference…\nYou can always tell when someone has never been scrutinized due to their skin color… or attacked as an illegal due to their last name ( as I have been).', 'created': '2024-11-07 19:08:09', 'submission_id': '1glu0i7'}
{'comment': "Right?? I'm still waiting on the details on how exactly they're gonna do it", 'created': '2024-11-07 19:04:05', 'submission_id': '1glu0i7'}
{'comment': 'Remember this is a serial liar .. he will say whatever to get into power.. his goal is to grift and get rid of his criminal investigations.. this talk of mass deportation he won’t do.. just like the wall shit ..\n\nSuckers got sucked and let the enemy back into the house', 'created': '2024-11-07 20:48:22', 'submission_id': '1glu0i7'}
{'comment': 'Or…hear me out…or…this is Trump who just likes a photo opp so he will just find a few hundred young Latinos with tattoos from construction sites and deport them then tell his followers all is safe now. Phase 2 will beginnnnn TBD. \n\nTrump only cares about migrants because his base cares about migrants. I think the real work will be about closing the border. That’s a little easier logistically', 'created': '2024-11-07 18:33:10', 'submission_id': '1glu0i7'}
{'comment': 'They’ve already “accidentally” deported at least one citizen that I’ve heard about during his last reign of terror.', 'created': '2024-11-08 03:31:15', 'submission_id': '1glu0i7'}
{'comment': 'For years I got stopped and frisked when I would go see a client at a store in wall st (I was a social worker) and this happened pretty much every week and it was the same white cops who stopped me every damn time.\n\nI’d ask them what I do and they’ll just say “you looked suspicious” this was during the Occupy Wall St. days btw when the real criminals were walking free as a bird.\n\nPeople just don’t know bro…', 'created': '2024-11-07 19:10:58', 'submission_id': '1glu0i7'}
{'comment': 'Do you know how the Nazis started rounding up the Jews?', 'created': '2024-11-07 19:07:19', 'submission_id': '1glu0i7'}
{'comment': 'Oh... hope you don\'t mind, a semi informative impromptu history lesson. This is not meant to be an attack, just wanted to give some actual information on this.\n\n\nAlabama\'s never been blue. In modern terms of "Blue" at least in modern party values, which drastically changed in the 1960s.\n\n\nPre 1960s democrats were, the home of the white supremacist and low to mid income crowd, absolutely no civil rights. And disenfranchised blacks who where not allowed to vote essentially. (This applies to all of the south).\n\n\nThis flipped with Jfk, maybe southern democrats swapped to Republican just to keep Lbj from promoting more civil rights reforms. \n\n\nAlabama Barely won Carter, that was the last "blue" vote, and he won by being a fellow southerner. Even Bill Clinton didn\'t win Alabama and he\'s an Arkansas native. \n\n\nI\'m giving mainly just a cliff notes, because party value swapping is a long discussion, especially since certain important topics change with time. In the 1920s, gay rights and abortion rights was not on either the democrat or republican m.o\n\n\nAlabama had a white supremacist leader who wanted to reverse de-segregation. He threatened military action if blacks even attempted to enter universities that where whites only, (He couldn\'t actually do that. But he sure acted like he could, and the people believed and wanted him to) he won and led as the governor for multiple terms, ran as an independent during the 68 election and Won the Alabama vote.\n\nThere where two prior white supremacist third party candidates, Byrd and Thurmond. Who both won Alabama. So since the 20th century, the majority of Alabama has voted and won the white supremacist candidate vote 3 times. (With Trump I suppose you can say 6 now, tho he hasn\'t said word for word essentially that Whites are the master race).\n\n\nTldr. Alabama has never been in the modern sense "Blue" it\'s been a hard full red in practically all of the states history if the modern Gop values applied for all of its history.', 'created': '2024-11-07 17:19:34', 'submission_id': '1gltx9c'}
{'comment': "I'm a lifelong Democrat from Alabama and used to work for the party... We are the most ruby red state in the Union so to be honest it's a wasted effort. Republicans have generations of wealth power and connections built up. Just having a couple of Representatives in the United States House is a win by me. Sorry to burst your bubble", 'created': '2024-11-07 17:16:02', 'submission_id': '1gltx9c'}
{'comment': 'Alabama voted Democrat back when the Democrats were the party of the Confederacy. Alabama has never ever been progressive or liberal and never will be.', 'created': '2024-11-07 17:36:28', 'submission_id': '1gltx9c'}
{'comment': 'Remember when you all voted for mild mannered Doug Jones? Find that energy.', 'created': '2024-11-07 17:46:53', 'submission_id': '1gltx9c'}
{'comment': 'I was voting blue no matter who, but we probably would’ve done better if we just stuck with Biden, bc the country showed it doesn’t want a woman to lead. Hate to say but that dream needs to be let go of for the coming decades.', 'created': '2024-11-07 18:09:11', 'submission_id': '1gltx9c'}
{'comment': 'Honestly, this really goes to show that there need to be education requirements before people can vote. \n\nLike people need to actually graduate high school before they can have a say in how the country works. Maybe people should have to take remedial civics classes to be able to register to vote or renew.', 'created': '2024-11-07 18:12:56', 'submission_id': '1gltx9c'}
{'comment': 'And now we’re stuck with a mini Hitler for four years', 'created': '2024-11-07 17:25:38', 'submission_id': '1gltx9c'}
{'comment': 'Apathy is our new focus obviously.', 'created': '2024-11-07 17:58:29', 'submission_id': '1gltx9c'}
{'comment': 'The Alabama Black Belt is Solid Blue. \n\nIn fact, Alabama Democrats have been "packed and cracked" so bad even the rightwing US Supreme Court said, "Damn, Alabama, that\'s racist."', 'created': '2024-11-07 21:43:14', 'submission_id': '1gltx9c'}
{'comment': "Alabama has always been conservative. When the Democrat Party was the conservative party, they controlled conservative States like Alabama.\n\n*The people in Republican States didn't change, the parties did.*", 'created': '2024-11-07 22:32:44', 'submission_id': '1gltx9c'}
{'comment': 'https://preview.redd.it/smll1m68fkzd1.jpeg?width=2976&format=pjpg&auto=webp&s=89f9ba7fddfb028ea08cec67641b15cbebe2d2c5', 'created': '2024-11-08 00:38:22', 'submission_id': '1gltx9c'}
{'comment': 'I really wish blue states that could cut off all the red states that leach off of us.', 'created': '2024-11-07 21:29:37', 'submission_id': '1gltx9c'}
{'comment': 'I appreciate the distinction. I misspoke. How would you better frame the spirit of my query?', 'created': '2024-11-07 17:26:22', 'submission_id': '1gltx9c'}
{'comment': "The history of American Politics under Industrialization is no set beliefs, only acceptance of new legislation.\xa0 *Hey, we can mass produce\xa0drugs now!\xa0 Wait, some of these are dangerous, we need laws & enforcement of laws!*\n\n\nBlue and Red and Left & Right are dead thinking. They're out of date and were never really adequate.\xa0 *The Party's do not have fixed beliefs*, which would be required for such usage.\xa0 This is very different than being a\xa0Communist, with Founders and Manifestos & Goals.\n\n\n\n\nBut it's the short hand used anyways, creating more confusion than clarity.", 'created': '2024-11-07 17:30:24', 'submission_id': '1gltx9c'}
{'comment': 'Your opinion is appreciated. Really tired of being asked to believe Alabama is a lost cause. And I don’t just mean as a tick on a box on a national map of voting for president. The graphic info serves the larger question of opposing oppression at every level. I’m okay with burst bubbles knowing there is more liquid from which they are derived. I am glad for Figures and Sewell as well.', 'created': '2024-11-07 17:39:36', 'submission_id': '1gltx9c'}
{'comment': '🤔', 'created': '2024-11-07 18:07:41', 'submission_id': '1gltx9c'}
{'comment': 'I certainly was appalled at the ageism in the shafty deal ousting Papa Joe, but he was magnanimous in his response and he deserved not to have the stress of the campaign. Guess we needed white male against white male. America is unevolved. \n\nLetting go of the idea that a majority can let go sexism and racism is fine with me as long as we get a candidate who has also done so. She just happened to be more qualified and the ridiculous attention to gender and other bias overshadowed that. Our perception gathers evidence to support our beliefs.', 'created': '2024-11-07 18:20:37', 'submission_id': '1gltx9c'}
{'comment': 'Something I had not considered. Interesting.', 'created': '2024-11-08 01:00:16', 'submission_id': '1gltx9c'}
{'comment': 'dangerous idea rn with the p2025 plans Trump\'s ghouls have for education.\xa0 "can\'t vote until indoctrinated."', 'created': '2024-11-08 02:32:38', 'submission_id': '1gltx9c'}
{'comment': 'It would be a bad idea to chip away at any landmark civil rights legislation and such tests were made illegal by the Voting Rights Act of 1965. The republicans do plenty of chipping away at civil rights on their own they do not need help with that.', 'created': '2024-11-08 18:13:51', 'submission_id': '1gltx9c'}
{'comment': 'Yes, but in spite of him, beyond him, forget about him—how do we get those in Alabama who aren’t bigots to show up and say so at all levels of government? I KNOW they’re out there! Ten-years, twenty-years down—what would it take?', 'created': '2024-11-07 17:43:02', 'submission_id': '1gltx9c'}
{'comment': 'Even worse. He ENJOYS being televised on our screens that there won\'t be a day, an hour or minute that he won\'t be in our faces. \n\nI would HIGHLY RECOMMEND not being on social media and staying away from the "news" media for the next 4 years, for your sanity sake.\n\nWe were lucky to not have to deal with Biden on television. He did what he had to do and stayed productive and out of sight for most of his term. Trump? He\'s going to be ANNOYING AF!', 'created': '2024-11-07 19:33:06', 'submission_id': '1gltx9c'}
{'comment': 'Well, thanks for the chuckle anyway.', 'created': '2024-11-07 18:00:11', 'submission_id': '1gltx9c'}
{'comment': 'Hahaha your account name—like the ole yellow dog democrat. Is that a quote fe something or just paraphrasing? I didn’t realize this about the blackbelt.', 'created': '2024-11-08 01:05:32', 'submission_id': '1gltx9c'}
{'comment': 'Hmmm, I shall ponder this.', 'created': '2024-11-08 01:06:01', 'submission_id': '1gltx9c'}
{'comment': 'Indeed, very suspicious. Assuming they did it betting they could excuse themselves from it due to the results.', 'created': '2024-11-08 01:07:58', 'submission_id': '1gltx9c'}
{'comment': "At least try to make an intelligent conversation... You realize there are assholes in blue States right? Lifelong Democrat from Alabama here and I've met some of the worst people outside of Alabama believe it or not.", 'created': '2024-11-08 01:22:28', 'submission_id': '1gltx9c'}
{'comment': 'Huh, what? What do red states leach off of blue ones?', 'created': '2024-11-08 01:03:29', 'submission_id': '1gltx9c'}
{'comment': 'Hmm. Well as a whole, many democrats didn\'t vote at all, so on local state elections, this being Alabama. Any chance of having some Alabama democratic house of representative seats, where drastically lessened.\n\n\nHouse seats matter, especially with the current unknown situation, (I haven\'t checked for a few hours). But the House vote has yet to be finished, its looking like Republicans are going to keep the house. Which is, very bad.\n\n\nSo all I can say, in regards to the nation as a whole, is don\'t Not vote, just because you either don\'t agree with Dems/Harris but hate Reps so it\'s not like theyd vote Trump by default instead, so you just don\'t vote. Or ones who likely didn\'t vote because they thought. "Trump can\'t win again, Biden already proved that, so I\'m not going to bother to vote".', 'created': '2024-11-07 17:33:47', 'submission_id': '1gltx9c'}
{'comment': 'I used to work for Terry couple decades ago. What part of our beautiful state are you from?', 'created': '2024-11-07 17:44:50', 'submission_id': '1gltx9c'}
{'comment': '?', 'created': '2024-11-07 18:08:58', 'submission_id': '1gltx9c'}
{'comment': 'You’re 100% right, this country is so sad.', 'created': '2024-11-07 18:23:26', 'submission_id': '1gltx9c'}
{'comment': 'I meant after we get rid of the fascists.', 'created': '2024-11-08 02:34:35', 'submission_id': '1gltx9c'}
{'comment': "Except the need for education among voters is very clearly paramount, so we can't continue to throw the baby out with the bathwater.\n\nWe absolutely need to force voters to be educated, and we can do that in a way that doesn't violate their rights simply by anonymizing tests.\n\nIf we can anonymize voting ballots, then we can anonymize tests, and prevent discrimination and fraud from even being possible.\n\nTo protect the civil rights of everyone else, we have to treat the situation from an objective and pragmatic perspective instead of stubbornly holding on to bad and old ideas simply because they're what we grew up with. And if you want to be moral, you have to change", 'created': '2024-11-08 18:19:58', 'submission_id': '1gltx9c'}
{'comment': 'Not sure', 'created': '2024-11-07 17:50:51', 'submission_id': '1gltx9c'}
{'comment': "if people don't know what this is actually going to be like once it starts ... nobody knows anything and nobody stands up.\xa0 \xa0", 'created': '2024-11-08 02:34:12', 'submission_id': '1gltx9c'}
{'comment': "Yes, old Yellow Dog Democrat. We just don't pronounce it quite like that. 😉", 'created': '2024-11-08 01:35:00', 'submission_id': '1gltx9c'}
{'comment': 'Do some research bud! I’m done doing research for Hill-Billies', 'created': '2024-11-08 01:05:25', 'submission_id': '1gltx9c'}
{'comment': 'Whole lot of being bothered and not bothering going around.', 'created': '2024-11-07 18:09:32', 'submission_id': '1gltx9c'}
{'comment': 'The crotch of Dixie, a friend used to say', 'created': '2024-11-07 18:03:14', 'submission_id': '1gltx9c'}
{'comment': 'Hmmmm. This is the stance that I would like to examine. That bigotry is not to be overcome. Etc etc', 'created': '2024-11-07 18:27:40', 'submission_id': '1gltx9c'}
{'comment': 'Oh. yeah. I’m familiar with the drawl, YallerDawg. \n\nI meant “packed and cracked” and what you said SCOTUS said—those quotes. Were they direct quotes or just paraphrasing is what I was asking.', 'created': '2024-11-08 04:01:11', 'submission_id': '1gltx9c'}
{'comment': 'Okay, then George.', 'created': '2024-11-08 01:09:29', 'submission_id': '1gltx9c'}
{'comment': 'Check that your voice was counted\n\nhttps://www.vote.org/ballot-tracker-tools/', 'created': '2024-11-07 17:47:54', 'submission_id': '1glturx'}
{'comment': 'Except beating them before took 12 years and 80 million lives. And there’s no America to come save us.', 'created': '2024-11-07 21:19:35', 'submission_id': '1glturx'}
{'comment': 'Real question is not the best thing we can do sit back and let them bring the pain. Might just be me reeling at the moment but park off me wants to hole up and watch. Not work to stop a thing and then 2-3 years from now start to discuss why liberal ideas would have stopped this.', 'created': '2024-11-07 18:09:24', 'submission_id': '1glturx'}
{'comment': 'Yessir!', 'created': '2024-11-07 19:25:11', 'submission_id': '1glturx'}
{'comment': 'I love this but I want to talk about point #2 you made… \n\nI see a therapist regularly. Started in 2016, as I’m sure a lot of people did. I asked her about her opinion on the psychology of each political side and she stated that democrats in this country and liberals elsewhere are highly neurotic folks. We spiral on our mistakes and are probably perfectionists in other aspects of life, to an extent. Not all of us but I suspect a large portion identify this way. The current GOP experience a collective Dunning Kruger effect and overestimate their limited abilities. Imagining myself as such a person gives me anxiety honestly lol. I think it would be really hard to change what makes us liberal, the fact that we want to be deliberate and present the best ideas that help every hard working American is like really ingrained in our belief system. The GOP just has one thing “tax cuts for the rich” and everything else is their way of dividing the 99%. They don’t care about the working person so they do not need to aim for perfection because their position is relatively simple. \n\nI’d love to understand if others see it that way, but is this part of the issue with our side?? I feel like it’s inherent in our value system that we behave this way. \n\nAnother interesting note: I asked my therapist early on about her politics because I felt scared to see a person who wouldn’t understand my anxiety about being a woman of color, first gen American, LGBTQ, etc. she said that in her field, she hasn’t yet seen a MAGA type therapist, EVER in 30 years of practice. I think that’s interesting. I’m curious about the occupational divide in our current political climate.', 'created': '2024-11-08 04:30:31', 'submission_id': '1glturx'}
{'comment': 'What hope do you have? I’ve basically lost all hope and afraid that I’ll be 💀next year because they’ll come for me 🤷🏼\u200d♂️', 'created': '2024-11-07 23:09:22', 'submission_id': '1glturx'}
{'comment': 'https://preview.redd.it/61rai06afkzd1.jpeg?width=2976&format=pjpg&auto=webp&s=5c7832901dda77e4bd5b664ed4ea36cc55811bac', 'created': '2024-11-08 00:38:40', 'submission_id': '1glturx'}
{'comment': 'The nazis weren’t running THIS government though.', 'created': '2024-11-08 01:01:56', 'submission_id': '1glturx'}
{'comment': 'I know I\'m just one voice in a sea of many, but I want to also suggest: \n\nIf you find yourself in a place of privilege where you feel safe to voice your opinion without fear of reprisal - particularly us straight white men - your job from now until Jan 20th is to throw an axe at every Trump voter in your circle\'s disinformation bubble and make a note of what they *say* they voted for so you can personally hold their feet to the fire when the shit hits the fan. \n\nYou wanted this, didn\'t you? \n\nYou did this. This is the "economy" you voted for, are you proud of yourself now?\n\nWhat are you going to do to fix your mistake? Because "vote differently next time" isn\'t gonna cut it anymore. \n\nThere\'s real harm and weight about to be dropped on this nation because too many of our countrymen were wilfully ignorant or intentionally cruel. It\'s best for the ones you know to find out real quick which is which. If they want to change and want to fight, help them out, sign them up, and make an ally. (But don\'t trust them where anyone\'s safety could be involved). If they\'re happy with their choice as they see the damage done - let them know you know what they did, and they can\'t hide who they are any more. Broadcast that shit, for the people who need protection and whose lives are at risk, that they can better protect themselves going forward.\n\n\nAnd if you\'re not in a position to voice your opinion safely - keep your head down. Stay safe, stay quiet, keep your eyes peeled. If you have a friend who is trans, no you don\'t. You know an immigrant family from down the street - they were born here as far as you\'ve heard. Someone new invites you to a protest downtown - that sounds like a waste of time, you\'d never be interested in something like that. Trust nobody who doesn\'t have skin in the game. Clean your socials, put the mask back on, and protect yourself and your loved ones as best you can.\n\n\nWe all have hope that this won\'t go as bad as we think it\'s going to go. Don\'t let that hope prevent you from having a plan and preparing for the worst.', 'created': '2024-11-08 07:39:10', 'submission_id': '1glturx'}
{'comment': 'not helping brah - just got a text that says I need to start picking cotton. OMW!', 'created': '2024-11-07 21:41:45', 'submission_id': '1glturx'}
{'comment': 'It was, but I’m in a shithole state, so it didn’t move the needle.', 'created': '2024-11-07 18:31:51', 'submission_id': '1glturx'}
{'comment': 'Ought to be easier than that, huh?', 'created': '2024-11-07 21:33:35', 'submission_id': '1glturx'}
{'comment': 'Not a fucking chance. They’re going to own this. I don’t know about you, but I’m going to throw it all in their face every chance I get. I’m not about to let them forget that yet again, they lied through their teeth about a good economy so they could elect a fucking buffoon for President, run that into the ground, and destroy our country from the inside. I’ll be damned if the same people that pretend they didn’t elect GW are going to pretend they didn’t elect this piece of shit when the next used car salesman is preaching about the evil democrats.', 'created': '2024-11-07 19:33:28', 'submission_id': '1glturx'}
{'comment': 'I know this isn’t as satisfying of an answer as you want right now, but I hope it’s enough. There is most definitely a significant number of people that voted for him who are terrible human beings. There are many that know and looked the other way. Some of them are wholly incompetent and know nothing at all. Pretty much every independent/swing voter. Those people are so dumb, they have no idea they voted against you. There are millions who I find reprehensible for not voting, but they aren’t against you. And most importantly, there are 62 million + who are straight up on your side. You’re not alone.', 'created': '2024-11-07 23:34:42', 'submission_id': '1glturx'}
{'comment': 'Show that shit to everyone. They’ve gone mask off.\n\nEdit: I’ve been saving screen shots left and right to share with all the “reasonable” conservatives.', 'created': '2024-11-07 22:54:41', 'submission_id': '1glturx'}
{'comment': 'Me too but we had amendments that are so close to pass:\n\nWoman’s right to abortion (57.1%) and marijuana (55.1%)\n\nWe need 60% to pass.', 'created': '2024-11-07 18:34:42', 'submission_id': '1glturx'}
{'comment': 'I’m not sure how we stop it if there’s actually no elections from now on. Getting strangers organized to do anything is near impossible.', 'created': '2024-11-07 21:42:09', 'submission_id': '1glturx'}
{'comment': 'Your daughter will be lucky to have you. I wish you all the easiest pregnancy. All my kids are the result of ivf, it is so hard but so worth it. 💙', 'created': '2024-11-07 17:30:07', 'submission_id': '1glto1l'}
{'comment': 'https://preview.redd.it/u3oacz2mfkzd1.jpeg?width=2976&format=pjpg&auto=webp&s=4a0b1d4f251fa3c4a3f4e3aa33f58dfe61be023f', 'created': '2024-11-08 00:40:32', 'submission_id': '1glto1l'}
{'comment': "The... What I suppose is to be kintsugi...doesn't mean it's mended and stronger It just means that it's still broken but beautiful.", 'created': '2024-11-07 18:54:10', 'submission_id': '1gltg0s'}
{'comment': 'It’d be crazy to think we were going to win every election. It just stings a little more knowing this is the one we lost. Time to regroup and keep moving forward till we have to go out and vote again.', 'created': '2024-11-07 21:59:56', 'submission_id': '1gltg0s'}
{'comment': 'https://preview.redd.it/oklyjz3ofkzd1.jpeg?width=2976&format=pjpg&auto=webp&s=aed25483ea1b84274303958334696bcde4441558', 'created': '2024-11-08 00:40:50', 'submission_id': '1gltg0s'}
{'comment': 'We all suffer because of what they voted for...', 'created': '2024-11-07 16:09:44', 'submission_id': '1glsabg'}
{'comment': 'Some of my coworkers are excited. I hate them.', 'created': '2024-11-07 17:12:50', 'submission_id': '1glsabg'}
{'comment': 'I get wanting to have the trumplicans get what they voted for; they deserve whatever horrors fall upon them. \n\nUnfortunately, the rest of us will be screwed too, so I’m hoping it won’t be that bad (but not counting on it). \n\nAnd I blame the 15 MILLION who didn’t vote.', 'created': '2024-11-07 16:49:45', 'submission_id': '1glsabg'}
{'comment': 'Oh yea we as a country get what we deserve and funny enough it’ll be his supporters who are hit the hardest. My heart goes out to anyone who didn’t support him but it’s going to good time watching them lose their healthcare, get deported regardless of legal status, and having their family members die from being unable to get an abortion. You reap what you sow', 'created': '2024-11-07 16:02:19', 'submission_id': '1glsabg'}
{'comment': "The problem is, we will all get it now. I'm numb, to be honest. Angry and want to burn shit down. I no longer want to live in this country. I don't know what else to do. I have family who are vulnerable... hell, as a naturalized American citizen, I'm vulnerable. I want to keep everyone protected. I dont know how to do that anymore", 'created': '2024-11-07 17:57:15', 'submission_id': '1glsabg'}
{'comment': 'They will, its coming, and it will be bad', 'created': '2024-11-07 16:54:49', 'submission_id': '1glsabg'}
{'comment': "The saddest part is WE get what they did and didn't vote for...", 'created': '2024-11-07 18:12:06', 'submission_id': '1glsabg'}
{'comment': 'I told someone today "I hope you get everything you voted for, all of it."\n\nThey said I was being mean.\n\nYou voted for it, I hope you get to wallow in it because the FA stage is always so much more fun than the FO part.\n\n*edit - spelling*', 'created': '2024-11-07 18:49:50', 'submission_id': '1glsabg'}
{'comment': 'Time for the “Find Out” part of FAFO.', 'created': '2024-11-07 17:15:52', 'submission_id': '1glsabg'}
{'comment': "My parents voted for him, because they think he will fix the economy. No, the only thing that's going to happen is you are going to lose your social security and your health insurance.", 'created': '2024-11-07 19:18:18', 'submission_id': '1glsabg'}
{'comment': "Let them crash and burn\n\nWorry about ourselves first.\n\nEverything is a 2 way street now. Respect, solidarity, empathy, etc.\n\nDon't give them anything anymore. Let the leopards out in full force and eat them.", 'created': '2024-11-07 18:52:37', 'submission_id': '1glsabg'}
{'comment': 'Check your ballot status\n\nhttps://www.vote.org/ballot-tracker-tools/', 'created': '2024-11-07 17:43:00', 'submission_id': '1glsabg'}
{'comment': "I am absolutely fresh out of fucks to give. I wish the absolute worst for all of them and plan on laughing hysterically when it happens. I'm fortunate enough that his policies likely won't impact my life. So yeah, fuck em all.", 'created': '2024-11-07 21:04:16', 'submission_id': '1glsabg'}
{'comment': 'The problem with this is that WE ALL get what they voted for.\xa0', 'created': '2024-11-07 22:39:48', 'submission_id': '1glsabg'}
{'comment': 'We will, and they will.', 'created': '2024-11-07 17:17:01', 'submission_id': '1glsabg'}
{'comment': "Don't forget about 3rd party voters", 'created': '2024-11-07 18:54:07', 'submission_id': '1glsabg'}
{'comment': 'You are right. I have no sympathy for them. They got what they wanted -- not like he tricked them into anything. He promised, and he will deliver. \n\nI feel for those of us who have to sleep in the bed those people made.', 'created': '2024-11-07 20:57:07', 'submission_id': '1glsabg'}
{'comment': "I'm so gutted. I can't wrap my head around the 10 million people who didn't vote and those who voted for a criminal.", 'created': '2024-11-07 21:02:07', 'submission_id': '1glsabg'}
{'comment': 'There’s a deep pool of talented Dems that will easily go up against JD Vance. \n\n\nEasier to hit back when you know the known players.\n\n\nTry to pull the rug on their finances, as best you can! and support local special interest groups.', 'created': '2024-11-07 21:33:22', 'submission_id': '1glsabg'}
{'comment': 'My sentiment exactly.', 'created': '2024-11-07 22:11:54', 'submission_id': '1glsabg'}
{'comment': 'Absolutely. While I don’t want problems with my life, I’ll find a way through.\n\n100%, i want the leopard to eat all of their faces. I’m done. I’m absolutely done with caring about their well being.\n\nThis next 4 years will be about survival. \n\nActually, 2 years because I will fight like hell in the midterms and I will fight like hell for the next election, if we get one.', 'created': '2024-11-07 22:23:32', 'submission_id': '1glsabg'}
{'comment': 'I hope\nThey suffer c. Diff.', 'created': '2024-11-07 23:19:42', 'submission_id': '1glsabg'}
{'comment': 'I get we’re upset and frustrated, and we’re allowed to be angry. But let’s all remember that it’s not just the people who voted for him or people who didn’t vote that are going to suffer from there policies. Everyone is going to suffer.', 'created': '2024-11-07 23:41:07', 'submission_id': '1glsabg'}
{'comment': 'They will reap what they sow…and then blame democrats', 'created': '2024-11-08 00:37:12', 'submission_id': '1glsabg'}
{'comment': 'This country sucks the foreigners are laughing at us right now.', 'created': '2024-11-08 01:13:45', 'submission_id': '1glsabg'}
{'comment': 'I mean this is how democracy works. More people wanted to go this direction (looks like the popular vote went this way too). We can’t be upset about this. This is exactly what we fight for, for democracy. We can’t win every time. \n\nWe also should not wish for things to go bad in the next 4 years. I think we probably won’t be surprised if things go bad, but we shouldn’t hope for that to happen.', 'created': '2024-11-07 18:46:12', 'submission_id': '1glsabg'}
{'comment': "This is what always costs democrats the elections. Undecided voters voted for Trump not because of any of most of the above issues, they voted for Trump because the Democrats literally didn't offer them any hope on issues that affect them every day.\n\nCost of living in Democratic states is more than Cost of living in most Republican states. This is the primary reason we saw lower margins even in Democratic ruled states. Biden did zero planning in regards to voter appeasement. Good initiatives like student debt cancellation were good in principle but actually created a lot of resentment.", 'created': '2024-11-07 18:36:24', 'submission_id': '1glsabg'}
{'comment': 'This is not the way. If those people get it, so do others around them. \n\nWe should not look down on red states. Those bad policies impact *everyone* living there, including children. \n\nWhat we hope is that when these policies become reality, there is reflection. And we fight like hell to change it.', 'created': '2024-11-07 19:25:19', 'submission_id': '1glsabg'}
{'comment': "The only hope is to win the house. Otherwise, it's going to be really bad.", 'created': '2024-11-07 20:08:16', 'submission_id': '1glsabg'}
{'comment': "I don't want economic collapse, even to watch Trump voters suffer.", 'created': '2024-11-07 20:31:15', 'submission_id': '1glsabg'}
{'comment': 'We need to win back the working class.', 'created': '2024-11-07 21:08:19', 'submission_id': '1glsabg'}
{'comment': 'I want them to get what they deserve. Thou shall reap what you sow', 'created': '2024-11-07 23:41:23', 'submission_id': '1glsabg'}
{'comment': 'I agree with you, however, the rest of us will suffer as well.', 'created': '2024-11-08 01:59:12', 'submission_id': '1glsabg'}
{'comment': 'I feel so bitter right now.', 'created': '2024-11-08 02:47:36', 'submission_id': '1glsabg'}
{'comment': 'Yeah, I’m pretty much tired of yelling into the void that is their “brain”', 'created': '2024-11-08 02:49:45', 'submission_id': '1glsabg'}
{'comment': ">Our job is to make sure there isn’t a shred of doubt whose fault this all is\n\nCould you set me straight first thing because all I've read on reddit for the past 2 days is that it's all the fault of Biden, Harris, Democrat elites, trans people, the media, pollsters etc. Call me crazy but I think people are missing the forest for all the trees.", 'created': '2024-11-08 03:47:51', 'submission_id': '1glsabg'}
{'comment': "I think you'll be disappointed. They voted for it because they want it.", 'created': '2024-11-08 08:33:01', 'submission_id': '1glsabg'}
{'comment': 'There will be a reckoning in 2 years at the midterm elections.', 'created': '2024-11-08 19:44:27', 'submission_id': '1glsabg'}
{'comment': "This isn't the answer either \n\nEveryone is emotional \n\nDems had 4 yrs to plan for this and the plan was Joe Biden again \n\nDidn't work out she had months to campaign and show what she was about and it wasn't enough time even with the same numbers as 2020 she'd probably gotten the popular vote but like Hillary not the electoral \n\nAlso aprox 1.5 mill voting 3rd party or wrote in", 'created': '2024-11-07 20:47:54', 'submission_id': '1glsabg'}
{'comment': 'He’s probably just going to be incompetent.', 'created': '2024-11-07 21:41:58', 'submission_id': '1glsabg'}
{'comment': 'Yeah, but pointing and laughing tends to ease the pain.', 'created': '2024-11-07 19:52:30', 'submission_id': '1glsabg'}
{'comment': 'Don’t hate them. If anything, pity their ignorance. Keep your head down and hold on to your beliefs and *know* that the Democrat party is the closest thing to what America stands for.', 'created': '2024-11-07 17:20:05', 'submission_id': '1glsabg'}
{'comment': "Again, it's not 15 million, CA is only half reported. It will be around 5 million or so.", 'created': '2024-11-07 18:54:59', 'submission_id': '1glsabg'}
{'comment': 'Yep. 15 million people did not vote. Incredible.', 'created': '2024-11-07 17:17:44', 'submission_id': '1glsabg'}
{'comment': 'Nope. Do not misplaced the blame. 72 million people voted for him.', 'created': '2024-11-08 00:01:08', 'submission_id': '1glsabg'}
{'comment': 'You’re right. I work with a vet who voted for Trump. He doesn’t believe the tangerine president will mess with his benefits.', 'created': '2024-11-07 16:37:24', 'submission_id': '1glsabg'}
{'comment': "Yeah. Same here. I feel for people hurting because they couldn't vote or who voted Blue. Anyone else...this is what they wanted. They screwed us up royally, and I hope they're happy.", 'created': '2024-11-07 21:03:13', 'submission_id': '1glsabg'}
{'comment': 'That’s what I’m thinking. All the Harris voters I know live in my blue state, make good money or have parents who do, and have secure jobs and college education. Meanwhile from what I’ve seen, many low-income people especially in rural areas voted Trump and they’ll likely be hit the hardest if things don’t go well. \n\nIt’s sad because many truly believe Trump will be able to give us 2019 prices back, but truth is no president will be able to. This economy misinformation is partly what got him so many votes.', 'created': '2024-11-07 19:33:33', 'submission_id': '1glsabg'}
{'comment': "It's not necessarily his supporters who are hit the hardest, especially if you start talking about what they want to do to gay and trans people.", 'created': '2024-11-07 20:16:29', 'submission_id': '1glsabg'}
{'comment': "It's incredible to see people fall for his tariff nonsense after what he did to our soybean farmers less than 8 years ago. How quickly we forget...", 'created': '2024-11-07 20:20:10', 'submission_id': '1glsabg'}
{'comment': 'Yah I feel that too. Not even sure if I want to stay in America.', 'created': '2024-11-07 18:08:54', 'submission_id': '1glsabg'}
{'comment': "Yeah, I can't bring myself to actually wish harm on women but if we're going to prioritize....", 'created': '2024-11-07 18:24:15', 'submission_id': '1glsabg'}
{'comment': "I agree. I hope they start with social security because I sure don't want to be contributing towards these people's retirements.", 'created': '2024-11-07 20:15:06', 'submission_id': '1glsabg'}
{'comment': '“I hope you get what you voted for” is being mean? But they wanted it? Which is why they voted for it? But hoping they get what they want is mean? \n\nIf that’s not someone telling on themselves I dunno what is.', 'created': '2024-11-08 06:29:40', 'submission_id': '1glsabg'}
{'comment': 'Republican states are shitholes with no work and low pay. High taxes too surprisingly.\n\nFunny how red states always blame democrats for their shitty red states, hello, we dont control your state government and policy, you do when you keep voting republicans over and over.\n\nSource, ive lives in four of them.\n\nIts all farming, low income retail, so many people on welfare, and they tax the hell out of their tiny cities where the few democrats who live there work because its the only place with some money.', 'created': '2024-11-07 19:07:45', 'submission_id': '1glsabg'}
{'comment': "It's been pity for a long while. I'm tired of being told to hold in my anger, hate someone who wants to destroy my life or that of family members, damn straight that's a healthy emotion to have there.", 'created': '2024-11-07 18:20:02', 'submission_id': '1glsabg'}
{'comment': 'It’s clearly not. We have no power in government right now. Being kind during the harassment did nothing. Peacefully protesting lead to tear gas and profanity. Fuck these people. Trump is America now. It’s not just a random fluke. Three times. Over a decade he got\n60 to 70 million votes.', 'created': '2024-11-07 20:34:37', 'submission_id': '1glsabg'}
{'comment': "No pity. We f\\*ing told them, but they wouldn't listen. He f\\*ing told them and they ignored it - told us he was joking or he didn't mean it. They *knew*.", 'created': '2024-11-07 20:58:33', 'submission_id': '1glsabg'}
{'comment': 'This country sucks', 'created': '2024-11-08 01:13:26', 'submission_id': '1glsabg'}
{'comment': "Thank you for starting this. I've done the same in several other subs. \n\nThe full count isn't event done, and there's many discrepancies and issues arising as it goes on.", 'created': '2024-11-07 19:17:19', 'submission_id': '1glsabg'}
{'comment': 'That would be less of a disappointment.', 'created': '2024-11-07 18:56:01', 'submission_id': '1glsabg'}
{'comment': 'False see above. Share true information 😉', 'created': '2024-11-07 19:56:54', 'submission_id': '1glsabg'}
{'comment': 'We knew they would. They’re part of a cult. We could have overcome that if the ones who voted in 2020 had shown up and done their bit for democracy.', 'created': '2024-11-08 03:51:19', 'submission_id': '1glsabg'}
{'comment': 'Along with Social Security and Medicare going bye bye. 🤷🏼\u200d♀️', 'created': '2024-11-07 18:11:36', 'submission_id': '1glsabg'}
{'comment': 'Here’s the sad thing though, they will still blame the democrats, immigrants, black & brown people. Tangerine will just say “I take no responsibility” and these people will believe him.', 'created': '2024-11-07 18:22:44', 'submission_id': '1glsabg'}
{'comment': 'If Trump crashes the economy, you might see 1980 prices.', 'created': '2024-11-07 19:59:14', 'submission_id': '1glsabg'}
{'comment': 'Regardless majority of them will lose their healthcare and benefits and I’m all for it at this point. Especially the veterans, can’t wait until it’s slashed or completely done away with', 'created': '2024-11-07 20:44:09', 'submission_id': '1glsabg'}
{'comment': "Yeah, I've been at this for forty years, both personally and professionally. The last straw for me was seeing the interview with the young woman at ASU who said she voted for Trump because he was going to protect her right to an abortion. If she can't be bothered to make one google search I'm not wasting my limited time and energy to help her when she doesn't give a shit about helping herself.", 'created': '2024-11-07 18:28:40', 'submission_id': '1glsabg'}
{'comment': 'Okay - I get it. I’m really pissed too.', 'created': '2024-11-07 18:21:18', 'submission_id': '1glsabg'}
{'comment': 'I agree - they certainly did know.', 'created': '2024-11-07 22:37:05', 'submission_id': '1glsabg'}
{'comment': 'Damn how is the count still going on? Is there that many votes?\n\nAlso what are some of the issues, I’m curious because I’ve seen other people say that too.', 'created': '2024-11-07 19:30:37', 'submission_id': '1glsabg'}
{'comment': 'I wonder if the new norm is that presidents will get less support when they run for reelection?', 'created': '2024-11-07 21:11:57', 'submission_id': '1glsabg'}
{'comment': 'Yeah, my boomer coworker thinks Trump’s tariffs will help bring back jobs', 'created': '2024-11-07 18:28:01', 'submission_id': '1glsabg'}
{'comment': 'I wonder if he’ll somehow fuck things up so bad that he loses lots of supporters. I feel like Trumpies would never blame him for anything (it would be Biden’s fault somehow) so it would have to be pretty significant for them to get angry at him.\n\nI can only try and look at the bright side and think that during and after the Great Depression we got FDR and the New Deal, so maybe if we have another crash we’ll get some new, great president to make us great again (can’t believe I just said that). At this point I’m just gonna overdose on my hopium and act like it’s true lol', 'created': '2024-11-07 20:21:33', 'submission_id': '1glsabg'}
{'comment': 'They’re uneducated and clueless.', 'created': '2024-11-07 20:01:52', 'submission_id': '1glsabg'}
{'comment': 'You have to be kidding me. She thought TRUMP was going to protect abortions?', 'created': '2024-11-07 20:35:49', 'submission_id': '1glsabg'}
{'comment': "Yes. From what I've researched, the West Coast takes a lot longer due to sheer volume of people and doesn't start counting counting until 8pm on election night (if my facts aren't 100% here in apologize).", 'created': '2024-11-07 19:35:58', 'submission_id': '1glsabg'}
{'comment': 'Someone from Kentucky said their state had ballot machine issues for several hours and some sites only open until 6? \n\nVoters from PA, UT and NC missing ballots.\n\nr/KamalaHarris has links to check. \n\nIf you think an election crime occurred, contact the FBI at 1-800-CALL-FBI or tips.fbi.gov or contact your local FBI field office.\n\nhttps://www.fbi.gov/investigate/public-corruption/election-crimes', 'created': '2024-11-07 19:56:14', 'submission_id': '1glsabg'}
{'comment': 'I don’t get where they get their info from. Unemployment still at historic lows.', 'created': '2024-11-07 19:34:39', 'submission_id': '1glsabg'}
{'comment': 'They only believe what’s been parroted in their circle jerk.', 'created': '2024-11-07 20:03:05', 'submission_id': '1glsabg'}
{'comment': 'This same boomer coworker blames Biden for his money problems', 'created': '2024-11-07 19:38:44', 'submission_id': '1glsabg'}
{'comment': 'It’s not all boomers. GenX and young males voted the most for him. \n\nMost likely they use CC, don’t budget and buy for instant gratification.', 'created': '2024-11-07 20:05:07', 'submission_id': '1glsabg'}
{'comment': 'Smh', 'created': '2024-11-07 20:05:19', 'submission_id': '1glsabg'}
{'comment': 'To the surprise of absolutely no one at all with functioning eyes, ears and a brain', 'created': '2024-11-07 16:28:45', 'submission_id': '1glsaqu'}
{'comment': 'So he lied and his cult fell for it.\n\nI am so shocked.', 'created': '2024-11-07 16:15:51', 'submission_id': '1glsaqu'}
{'comment': "Did anyone actually believe Trump's denial? It was so fucking obvious that he was lying. He lies with the skill of a 3 year old.", 'created': '2024-11-07 16:45:43', 'submission_id': '1glsaqu'}
{'comment': 'But the price of eggs tho', 'created': '2024-11-07 16:26:43', 'submission_id': '1glsaqu'}
{'comment': 'Amazing to me that women didnt vote... particularly white women with all the women right issues that is at stake. They voted biden but not kamala. Edit: for people saying women did vote clearly im not talking about for Trump.', 'created': '2024-11-07 16:05:09', 'submission_id': '1glsaqu'}
{'comment': 'As much as I hate to say this, I hope they do it and burn it all to the ground. Not that I want the country to go that way or wish ill will on anyone. But I think for people to fully understand the consequences of these talking points and slogans, they’ll have to experience it. A large group of voters have no idea how the govt works, what it does, and how everything is connected. So let it burn. Let them find out when a hurricane destroys their home and there’s no FEMA to help them.', 'created': '2024-11-07 16:26:14', 'submission_id': '1glsaqu'}
{'comment': 'For those who do not know how to get around paywalls, here you go:\n\nDonald Trumps has won the election, and Republicans are now comfortable openly admitting that\xa0[Project 2025](https://www.rollingstone.com/t/project-2025/)\xa0was the plan all along.\xa0\n\nThe\xa0[draconian policy package](https://www.rollingstone.com/politics/politics-features/project-2025-plan-remake-america-explained-1235056542/)\xa0prepared by The Heritage Foundation in preparation for a second Trump administration was so extremist that in the final months of the campaign the former president took great pains to publicly distance himself from the project. Its contents, which include a broad expansion of executive powers; a de facto national abortion ban, increased restrictions on contraception; brutal policies against undocumented migrants; and the elimination of several federal agencies (including the Department of Education), didn’t sit well with prospective voters.\n\nTrump feigned ignorance of the plan,\xa0[despite his close ties to those involved in crafting it](https://www.rollingstone.com/politics/politics-features/donald-trump-project-2025-1235053996/), while Democrats did all they could to warn about the conservative blueprint for a second Trump term.\n\nSure enough, less than 24 hours after the election was called for Trump, his allies, advisers, and prominent supporters were celebrating the now-open road to Project 2025’s implementation.\xa0\n\nOn Wednesday, former Trump adviser\xa0[Steve Bannon](https://www.rollingstone.com/t/steve-bannon/)\xa0— who just weeks ago completed a\xa0[four-month prison sentence](https://www.rollingstone.com/politics/politics-features/steve-bannon-civics-lessons-teaching-prison-trump-1235144548/)\xa0on a contempt of Congress conviction —-\xa0[lauded](https://www.rawstory.com/steve-bannon-project-2025-admission/)\xa0Christian Nationalist Matt Walsh, a commentator at The Daily Wire, on his\xa0*War Room*\xa0broadcast.\xa0\n\nWalsh had\xa0[written on X](https://x.com/MattWalshBlog/status/1854164649433858119), formerly Twitter: “Now that the election is over I think we can finally say that yeah actually Project 2025 is the agenda. Lol”\xa0\n\n“Matt Walsh, I think, is a very smart and funny guy,” Bannon said. “Put that everywhere,” he added, with instructions to his staff to promote the post on his social media.\n\nRight-wing podcast Benny Johnson also gloated about the project. “It is my honor to inform you all that Project 2025 was real the whole time,” he\xa0[wrote](https://x.com/bennyjohnson/status/1854082770592526445).\n\nIn a separate post, Tarrant County GOP Chair Bo French\xa0[wrote](https://x.com/Bo_French_TX/status/1854209779478261990), “So can we admit now that we are going to implement Project 2025?”\xa0\n\nRegardless of whether Trump explicitly endorses Project 2025 as a guide for his second administration, the overlap in its proposals, staff, and goals means the two are inextricably linked.\xa0 Republicans just don’t have to pretend anymore.', 'created': '2024-11-07 16:14:01', 'submission_id': '1glsaqu'}
{'comment': 'I really really hate this so much', 'created': '2024-11-07 18:09:29', 'submission_id': '1glsaqu'}
{'comment': 'Well duh.. what the F did you expect. R’s lie, R’s cheat, R’s steal, 3 facts that never change.', 'created': '2024-11-07 18:13:14', 'submission_id': '1glsaqu'}
{'comment': "Here's the thing: the MAGA voters already knew. They wanted this", 'created': '2024-11-07 20:22:51', 'submission_id': '1glsaqu'}
{'comment': 'I begged people to read it. No one bothered. I get to live with the results of their idiocy.', 'created': '2024-11-07 20:57:59', 'submission_id': '1glsaqu'}
{'comment': "Wait, so this wasn't a surprise? People took him seriously when he said he wouldn't? What? Lol.\n\n\nCongress is (likely) all Red, and we have Trump. Every line of project 2025 is going to be pushed in congress, and if it makes it to Trump, it will instantly be checked off on, he isn't about to veto anything.", 'created': '2024-11-07 16:45:34', 'submission_id': '1glsaqu'}
{'comment': 'and they wont care one bit. well not yet, give it a year or two then it will be the dems fault.', 'created': '2024-11-07 17:08:01', 'submission_id': '1glsaqu'}
{'comment': 'Not surprising. Republicans are going to push all their agendas through \n\nY’all should be very afraid', 'created': '2024-11-07 19:09:24', 'submission_id': '1glsaqu'}
{'comment': 'Honestly this election, and what seems like most elections, is decided by low information voters.\n\nThey don’t have any clue about politics or policies.\n\nThey just say- “how do I feel right now?”\n\nAnd if the answer isn’t “great” they vote for the other candidate than the one in office.\n\nThey don’t know about project 2025.', 'created': '2024-11-07 22:06:38', 'submission_id': '1glsaqu'}
{'comment': 'I thought Trump never saw it and never read it… fucking liar.', 'created': '2024-11-07 18:42:57', 'submission_id': '1glsaqu'}
{'comment': 'Please Check that your voice was counted\n\nhttps://www.vote.org/ballot-tracker-tools/', 'created': '2024-11-07 17:48:29', 'submission_id': '1glsaqu'}
{'comment': "#IT'S TIME TO START PREPARING FOR THE MIDTERMS NOW VERSUS LATER.", 'created': '2024-11-07 19:40:10', 'submission_id': '1glsaqu'}
{'comment': 'I mean lolz we tried to warn them all', 'created': '2024-11-07 19:50:38', 'submission_id': '1glsaqu'}
{'comment': "This will be the first of many surprises for many people who didn't vote for Harris. \n\nWait until they figure out that other countries don't actually pay the tariffs!", 'created': '2024-11-07 22:30:55', 'submission_id': '1glsaqu'}
{'comment': 'I am going to derive such great pleasure telling these people "we told you so" every chance I get', 'created': '2024-11-07 23:24:57', 'submission_id': '1glsaqu'}
{'comment': "Can't we just fire them all once democrats regain the presidency?", 'created': '2024-11-07 18:01:02', 'submission_id': '1glsaqu'}
{'comment': 'The fact that these morons thought this was fake…I want to shake them all so hard', 'created': '2024-11-07 22:00:03', 'submission_id': '1glsaqu'}
{'comment': 'Who’s ready for a fight! We need to prepare to fight for our nation. Being diplomatic isn’t going to work with nazis. He have to mobilize!', 'created': '2024-11-07 22:02:34', 'submission_id': '1glsaqu'}
{'comment': 'Not surprised.\n\nProbably during his inauguration speech, Trump will make clear his intent to never leave office.', 'created': '2024-11-07 22:19:02', 'submission_id': '1glsaqu'}
{'comment': 'Of course they do. I’ve spent days warning conservatives and they all fucking act so gleefully ignorant to the project 2025 plan. True dummies.', 'created': '2024-11-07 22:26:32', 'submission_id': '1glsaqu'}
{'comment': 'Good. Let it rip MFrs!! Destroy the country and all the fucking fools who voted for them!', 'created': '2024-11-07 23:05:27', 'submission_id': '1glsaqu'}
{'comment': '\n\nIm not trying to be facetious here… but no one with more than 2 brain cells actually thought he *wouldn’t* implement this….', 'created': '2024-11-07 17:23:57', 'submission_id': '1glsaqu'}
{'comment': 'I know we will all hurt from it, but the MAGAs deserve it. I hope they feel the hellscape that we will feel', 'created': '2024-11-07 20:00:04', 'submission_id': '1glsaqu'}
{'comment': 'Color me a shade of not the least bit surprised.', 'created': '2024-11-07 22:17:41', 'submission_id': '1glsaqu'}
{'comment': "They cheated. I know it. Everyone is overlooking the obvious clue. It's the Supreme Court ruling giving the sitting president unlimited power. Do you for one second think that they would have done that if they thought a democratic president would have access to it?? No, they knew.", 'created': '2024-11-07 19:57:37', 'submission_id': '1glsaqu'}
{'comment': "Well, those same women will now have a choice to care for a kid or abandon it in a orphanage. Cause that's the choice now they will have in red states. Abortion is off the table for them as choice if they don't have the money.", 'created': '2024-11-07 19:24:38', 'submission_id': '1glsaqu'}
{'comment': 'Yup even Bannon\n\nhttps://preview.redd.it/gi4mzau8xizd1.jpeg?width=828&format=pjpg&auto=webp&s=8a6e4616cb5dde015eab02c1e0523ceee065d070', 'created': '2024-11-07 19:36:09', 'submission_id': '1glsaqu'}
{'comment': 'Quelle surprise.\xa0 (For those who voted for Trump, that means "what a surprise.")', 'created': '2024-11-07 20:34:39', 'submission_id': '1glsaqu'}
{'comment': 'National-wide abortion ban coming right up. But he said….', 'created': '2024-11-07 23:53:31', 'submission_id': '1glsaqu'}
{'comment': 'the morons on here and on facebook who tried to argue with us saying it was nothing but a Democrat hoax.....we tried to tell you the truth.', 'created': '2024-11-08 08:08:30', 'submission_id': '1glsaqu'}
{'comment': 'They can fucking try all they want.', 'created': '2024-11-07 16:53:20', 'submission_id': '1glsaqu'}
{'comment': "Harris Stress Project 2025, but 10 million decided not to vote to make a difference. I don't get it.😒", 'created': '2024-11-07 20:58:36', 'submission_id': '1glsaqu'}
{'comment': 'I’m fully convinced my friends are going to die because of Project 2025. I don’t know what to do.', 'created': '2024-11-08 00:03:39', 'submission_id': '1glsaqu'}
{'comment': 'Shocked. s/', 'created': '2024-11-07 22:21:48', 'submission_id': '1glsaqu'}
{'comment': '', 'created': '2024-11-08 00:29:08', 'submission_id': '1glsaqu'}
{'comment': '"But Trump said he had nothing to do with it!" \nYou reap what you sow Republicans, now deal with it...', 'created': '2024-11-08 01:49:55', 'submission_id': '1glsaqu'}
{'comment': "So when they cut granma's social security, they'll blame the Dems, right ?", 'created': '2024-11-08 04:57:01', 'submission_id': '1glsaqu'}
{'comment': 'No?\n\n\nHow could we have known?\n\n\n(Obviously sarcasm)', 'created': '2024-11-07 17:55:28', 'submission_id': '1glsaqu'}
{'comment': 'Duh', 'created': '2024-11-07 18:24:36', 'submission_id': '1glsaqu'}
{'comment': 'Paywall...', 'created': '2024-11-07 18:50:33', 'submission_id': '1glsaqu'}
{'comment': 'Couldn’t have predicted this', 'created': '2024-11-07 19:54:45', 'submission_id': '1glsaqu'}
{'comment': 'Besides everything else that’s on that agenda, I’m really worried about the elimination of SS. What about everyone who’s almost at retirement age and paid into it for their whole lives? It’s unreal and so many people will die. I’m really trying to understand what was the upside to those who voted for him? What do they envision “getting” out of his win? They (and everyone else) will be losing so much.', 'created': '2024-11-07 20:08:01', 'submission_id': '1glsaqu'}
{'comment': 'Well duh.', 'created': '2024-11-07 21:30:58', 'submission_id': '1glsaqu'}
{'comment': 'What you want and get are two different things.', 'created': '2024-11-07 21:50:00', 'submission_id': '1glsaqu'}
{'comment': 'Ah duh', 'created': '2024-11-07 23:10:06', 'submission_id': '1glsaqu'}
{'comment': 'Wait til Schedule F is implemented. 😮', 'created': '2024-11-08 00:32:44', 'submission_id': '1glsaqu'}
{'comment': 'https://preview.redd.it/he9fwtbqfkzd1.jpeg?width=2976&format=pjpg&auto=webp&s=a3fa35f496c4008274edcc8f7282a8bdf6efd8c5', 'created': '2024-11-08 00:41:11', 'submission_id': '1glsaqu'}
{'comment': 'People with sense believed it when they saw the binder.', 'created': '2024-11-08 02:57:51', 'submission_id': '1glsaqu'}
{'comment': 'Duh.', 'created': '2024-11-08 06:03:27', 'submission_id': '1glsaqu'}
{'comment': 'Matt Walshes post was satire, jesus christ yall.', 'created': '2024-11-07 16:36:05', 'submission_id': '1glsaqu'}
{'comment': '"It’s safe to assume 100% of the propaganda the left has told you is a lie. Just go on enjoying your life. Nothing will change except the economy will improve." u/slaytonisland\n\nSo was it a lie or nah? Or were you fed propaganda? Which one is it', 'created': '2024-11-07 21:54:12', 'submission_id': '1glsaqu'}
{'comment': "Lucky for me, I'm expating. I get to watch all the morons that voted for the boot get strangled by it from afar", 'created': '2024-11-07 19:49:57', 'submission_id': '1glsaqu'}
{'comment': "These are all just arseholes trying to be funny. There's no official confirmation here. They do this knowing that left wing media will write about it for clicks and we'll all fall for it. Is ridiculous.", 'created': '2024-11-07 23:07:21', 'submission_id': '1glsaqu'}
{'comment': "I mean, you do know they're trolling Democrats right? I'm not saying they're not going to pursue it at all. I'm saying that these posts are specifically to get under Democrats skin. Don't fall for it.", 'created': '2024-11-07 22:30:00', 'submission_id': '1glsaqu'}
{'comment': '67 million of us.', 'created': '2024-11-07 21:40:36', 'submission_id': '1glsaqu'}
{'comment': 'So you’re saying MAGA didn’t see it coming at all.\n\nEdit: spelling', 'created': '2024-11-08 01:10:56', 'submission_id': '1glsaqu'}
{'comment': "Way more than the cult fell for it. 20mil Dems didn't believe it enough to get off the couch, or didn't see it as a dealbreaker.", 'created': '2024-11-07 17:24:13', 'submission_id': '1glsaqu'}
{'comment': "he screamed that the USA is going to shit constantly till people believed it. Democrats were pushing hope for the future. fear and hate win over hope EVERYTIME. doesn't even matter if your lying constantly, if you get enough to believe the fear and hate they show up. without going batshit crazy I don't know how you fix it.", 'created': '2024-11-07 18:22:54', 'submission_id': '1glsaqu'}
{'comment': 'The press is complicit too. When he said he knew nothing about Project 2025 the questions should have started. “So you’re saying that, as a candidate for president, you know nothing about the plan for your administration that many of your closest advisors authored? Don’t you think someone in your position should at least be aware enough to carry on a conversation about this document that has so many Americans worried about a potential second Trump administration? Will you state, unequivocally, here and now, that you will not implement any facet of Project 2025? \n\nThe press lets these motherfuckers off with so much shit.', 'created': '2024-11-07 23:16:12', 'submission_id': '1glsaqu'}
{'comment': '', 'created': '2024-11-07 16:47:32', 'submission_id': '1glsaqu'}
{'comment': 'Lol they want it.', 'created': '2024-11-07 22:59:03', 'submission_id': '1glsaqu'}
{'comment': "Or maybe his cult loved what's in Project 2025. Conservatives have long wanted to abolish the Dept of Education, from Pat Robertson to Newt Gingrich. Maga wants to hurt people and P2025 will.", 'created': '2024-11-08 02:55:24', 'submission_id': '1glsaqu'}
{'comment': 'Yes I got in a fight with my mother in law about it 😖', 'created': '2024-11-07 18:00:52', 'submission_id': '1glsaqu'}
{'comment': 'Yes. Saw it all over social media. "He doesn\'t even know project 2025, he just wants agenda 47!".\xa0\n\n\nThey\'re morons.', 'created': '2024-11-07 20:42:41', 'submission_id': '1glsaqu'}
{'comment': "It was not a rational decision. You had a lot of people that felt ignored so they threw a tantrum and smashed a bunch of stuff. As they realize that the things they want are now broken they're going to want it fixed but that's not how it works.", 'created': '2024-11-07 19:31:50', 'submission_id': '1glsaqu'}
{'comment': "They don't listen. They believe what they want. Then when they're wrong they blame us while we're busy blaming each other.", 'created': '2024-11-07 18:53:33', 'submission_id': '1glsaqu'}
{'comment': '70 million burdens on America believed him.', 'created': '2024-11-07 20:57:58', 'submission_id': '1glsaqu'}
{'comment': "My best friend literally told me that he didn't mean what he says (in reference to him admiring Putin and Kim Jung Un). She said, he's too smart to really believe that they're good people. SMH I haven't been able to talk to her since the election.", 'created': '2024-11-07 21:10:35', 'submission_id': '1glsaqu'}
{'comment': 'He’s such a lying grifter…honestly people must be completely devoid of brain cells to believe a word he says. Or they’re just so blinded by hatred that they threw logic out the window.', 'created': '2024-11-07 21:20:33', 'submission_id': '1glsaqu'}
{'comment': 'A lot of people probably just used that as an excuse so they don’t have to admit they’re flaming racists.', 'created': '2024-11-08 02:31:15', 'submission_id': '1glsaqu'}
{'comment': 'Which will absolutely go up.', 'created': '2024-11-07 19:32:06', 'submission_id': '1glsaqu'}
{'comment': 'And gas.', 'created': '2024-11-07 19:24:58', 'submission_id': '1glsaqu'}
{'comment': 'Are you ready for the recession?', 'created': '2024-11-07 23:25:02', 'submission_id': '1glsaqu'}
{'comment': "No, you need to understand that women DID vote. And that's the sad reality. A lot of women broke for Trump in this election and I will never understand why women love seeing other women suffer so much.", 'created': '2024-11-07 17:43:35', 'submission_id': '1glsaqu'}
{'comment': "I'm a very pissed off white woman who voted for Harris. I sat with my other white woman friend to watch the results. We are both very depressed now.", 'created': '2024-11-07 19:19:22', 'submission_id': '1glsaqu'}
{'comment': 'As a 31yo white woman, I am so upset with those that voted Trump.', 'created': '2024-11-07 22:10:15', 'submission_id': '1glsaqu'}
{'comment': 'I voted for Kamala. I’m so devastated that 51% of women decided to believe trump’s lies', 'created': '2024-11-07 19:11:39', 'submission_id': '1glsaqu'}
{'comment': 'Women did vote. Just a lot of them voted for Trump', 'created': '2024-11-07 19:05:10', 'submission_id': '1glsaqu'}
{'comment': "You have to understand for people like that, their whiteness comes before everything else. They think it'll insulate them from the unholy shitstorm they just let loose and it... won't. A lot of them are brainwashed to just accept a lower status because of their gender from the time they're babies too, that's a big factor.", 'created': '2024-11-07 17:34:14', 'submission_id': '1glsaqu'}
{'comment': 'Why are you surprised? White women will never vote for a black woman to have more power than they have\n\nThey would rather vote against themselves', 'created': '2024-11-07 21:41:24', 'submission_id': '1glsaqu'}
{'comment': 'I am tired as a blue state of funding the red states. Let’s start paying proportional taxes and not allow them to continue to be on welfare.', 'created': '2024-11-07 18:20:07', 'submission_id': '1glsaqu'}
{'comment': 'When natural disasters hit next year and onward, my sympathy for them will be none, especially after their attitude and actions towards those trying to help under Biden. Fuck them.', 'created': '2024-11-07 18:04:32', 'submission_id': '1glsaqu'}
{'comment': "I don't think it's a coincidence that this happens ~80 years after the Nazis fell.\n\nBecause 80 years is an average human lifespan.", 'created': '2024-11-07 20:37:34', 'submission_id': '1glsaqu'}
{'comment': 'I catch myself rooting for him to just fuck it all up at this point, maybe that’ll wake some idiots up', 'created': '2024-11-07 16:29:59', 'submission_id': '1glsaqu'}
{'comment': '>But I think for people to fully understand the consequences of these talking points and slogans, they’ll have to experience it.\n\nBut they won\'t understand then, either. Uninformed people don\'t get informed just because they\'re suffering; more often, they just get dumber, angrier, and more reactionary.\n\nThis is why I don\'t support the "let it burn" philosophy - it invites extreme suffering without any hope of redemptive growth. If I wanted Americans to suffer for no good reason, I would be a republican.', 'created': '2024-11-07 20:08:03', 'submission_id': '1glsaqu'}
{'comment': "This Simpsons scene sums up my feelings and probably the feelings of a lot of other people at the moment: [https://www.youtube.com/watch?v=Yi0uX2sZuFg](https://www.youtube.com/watch?v=Yi0uX2sZuFg)\n\n(Even though we're all screwed in the end, demographically I'm probably a bit less screwed than many fools who voted for Trump).", 'created': '2024-11-07 16:33:46', 'submission_id': '1glsaqu'}
{'comment': "So, you're saying you think that BIPOC, queer people, disabled people and other marginalized groups who have no ways of escape being used as collateral damage to prove a political point is justified?", 'created': '2024-11-07 23:16:57', 'submission_id': '1glsaqu'}
{'comment': "1 out of 5 Americans can't name the sitting President on the first try. 2 out of 5 Americans can't name the three branches of government. 3 out of 5 can't explain the difference between them. 4 out of 5 can't name the leader of each branch. \n\nThe people that were born here are the ones that should be taking the citizenship test.", 'created': '2024-11-07 23:13:14', 'submission_id': '1glsaqu'}
{'comment': 'I kind of agree with you and simultaneously don’t want it to happen but yea people need to see consequences of their actions. And when they complain I look forward to being petty as …', 'created': '2024-11-08 03:01:54', 'submission_id': '1glsaqu'}
{'comment': 'They weren’t even pretending before the election. Donald Trump just feigned ignorance for a few months. Hell, Vance wrote the foreword for 2025', 'created': '2024-11-07 17:51:09', 'submission_id': '1glsaqu'}
{'comment': 'I am so f$%ing scared for our country and, as a woman, for myself.', 'created': '2024-11-07 18:13:34', 'submission_id': '1glsaqu'}
{'comment': 'So has anyone actually close to his current admin come out in support of it? All I see in this article are pundits and people that haven’t been involved in any administrative capacity for years. Genuine question.', 'created': '2024-11-07 20:40:44', 'submission_id': '1glsaqu'}
{'comment': 'Same and people told me I was "over-reacting" and "fear-mongering" and "Trump didn\'t even write that, who cares..."', 'created': '2024-11-08 01:57:23', 'submission_id': '1glsaqu'}
{'comment': 'I can’t believe the Dems we didn’t vote for didn’t clean up Donald Trump’s mess this time.\xa0', 'created': '2024-11-07 17:55:09', 'submission_id': '1glsaqu'}
{'comment': 'Idk about y’all’s state, but I’m in Michigan and there doesn’t seem to be a single possible way to see if my ballot was counted. I voted in person. It says nothing.', 'created': '2024-11-07 18:47:54', 'submission_id': '1glsaqu'}
{'comment': 'Not gonna be midterms. We won’t last that long.', 'created': '2024-11-07 21:05:26', 'submission_id': '1glsaqu'}
{'comment': 'We might need to revolt? I’m disabled, but am still a great shot!', 'created': '2024-11-07 21:57:39', 'submission_id': '1glsaqu'}
{'comment': "It's cute you think there will be midterms.", 'created': '2024-11-07 20:39:22', 'submission_id': '1glsaqu'}
{'comment': "It's the only consolation from this election--so many voters will have to come to terms with the bleak reality of what they *actually* voted for out of nothing but their own spite.", 'created': '2024-11-08 02:06:13', 'submission_id': '1glsaqu'}
{'comment': "Let's hope they're still remains a presidency", 'created': '2024-11-07 18:42:17', 'submission_id': '1glsaqu'}
{'comment': 'Project 2025 says the correct term is “Führer”', 'created': '2024-11-07 21:04:48', 'submission_id': '1glsaqu'}
{'comment': "The women who voted for Donald Trump should be forced to live like it's 1930s", 'created': '2024-11-07 19:30:01', 'submission_id': '1glsaqu'}
{'comment': 'Sorry, no fault divorce is also off the table, as is not being forced to marry their rapist.', 'created': '2024-11-07 21:06:52', 'submission_id': '1glsaqu'}
{'comment': 'There is this scene in the handmaids tale where June spends a few days hiding in the newsroom of a paper. Her backdrop is bullets riddled and blood stained walls. I can’t stop thinking about how this seems like an inevitability now.', 'created': '2024-11-07 22:22:55', 'submission_id': '1glsaqu'}
{'comment': 'They control the house - Senate & the oval office. If they gain the simple majority in both houses they can install young MAGA supreme Court justices to terrorize the United States of America for generations. They will try and some of this shit will likely happen', 'created': '2024-11-07 16:59:18', 'submission_id': '1glsaqu'}
{'comment': 'They control all branches, and have already seated hundreds of judges who violate their oaths by being Trumpers.\n\nThere will be no guardrails on this presidency.', 'created': '2024-11-07 21:02:08', 'submission_id': '1glsaqu'}
{'comment': 'https://www.msnbc.com/rachel-maddow-show/maddowblog/wake-trumps-win-project-2025-becomes-relevant-anew-rcna179099', 'created': '2024-11-07 18:51:47', 'submission_id': '1glsaqu'}
{'comment': "Steve Bannon don't think its a joke. Other republican leaders don't think it's a joke. The heritage foundation doesn't think it is a joke.\n\n\nThey are outright saying it's their goal. And you still say its satire?\xa0\n\n\nWalsh is 'trolling the libs' by saying the quiet part out loud now the election is over. That's not satire.\xa0", 'created': '2024-11-07 17:05:27', 'submission_id': '1glsaqu'}
{'comment': 'It was a joke, he was not serious, which is the first step towards implementing it. I trust Trump and his ilk like a wet fart.', 'created': '2024-11-07 16:54:04', 'submission_id': '1glsaqu'}
{'comment': 'Matt Walsh is an idiot.', 'created': '2024-11-07 18:10:12', 'submission_id': '1glsaqu'}
{'comment': 'You\'re right and you\'re wrong. \n\nOn its face, you\'re correct that the Walsh tweet was satire. It\'s part of the "overreacting emotional libs" genre of satire, just like Trump\'s "dictator on day one" thing was.\n\nOn the other hand, jokes are how fascists soft-disclose their plans. It\'s one of their most common tactics. You say it as a joke to soften the crowd, you let the discourse roll around in the gray area between irony and sincerity, and then you implement the plan. It\'s how they communicate the most extreme elements of their plans to their base while maintaining plausible deniability. I\'m reminded of Sartre\'s quote about antisemites (which applies to basically all fash and similar ultra-reactionaries):\n\n> Never believe that anti-Semites are completely unaware of the absurdity of their replies. They know that their remarks are frivolous, open to challenge. But they are amusing themselves, for it is their adversary who is obliged to use words responsibly, since he believes in words. The anti-Semites have the right to play. They even like to play with discourse for, by giving ridiculous reasons, they discredit the seriousness of their interlocutors.', 'created': '2024-11-07 20:18:10', 'submission_id': '1glsaqu'}
{'comment': 'Lucky…', 'created': '2024-11-07 20:57:08', 'submission_id': '1glsaqu'}
{'comment': 'Yep even though majority of them do have eyes and ears they’re missing the brain part', 'created': '2024-11-08 01:19:50', 'submission_id': '1glsaqu'}
{'comment': 'Bro quit fucking blaming democrats, and actually blame the PARTY for implementing an incredibly disliked candidate, wayyy too late in the election year.\n\nThe Democratic Party shit the bed.', 'created': '2024-11-07 18:43:07', 'submission_id': '1glsaqu'}
{'comment': 'Obama ran on hope tho and do did Bill Clinton and they won on hope.', 'created': '2024-11-08 02:56:53', 'submission_id': '1glsaqu'}
{'comment': "This assumes that asking him a question will get him to answer that question. He'd talk about windmills, “childcare is childcare”, the fake news media, how he survived two assassination attempts, Arnold Palmer’s 🍆, how much he likes the number 25, how he saw someone eat 25 hotdogs once, etc. until we all die of boredom.\nI can’t believe anybody believes ANYTHING he says. \n\nFurthermore, he has no problem with lying or breaking oaths so there’s no way that disavowing or swearing to anything would mean a hill of beans.\n\nI don’t want to live on this planet anymore.", 'created': '2024-11-08 03:07:52', 'submission_id': '1glsaqu'}
{'comment': 'dont do that yo, it wont matter when dems take the senate in 2 years because no one cares about midterms', 'created': '2024-11-08 14:32:23', 'submission_id': '1glsaqu'}
{'comment': '🎯', 'created': '2024-11-07 22:31:31', 'submission_id': '1glsaqu'}
{'comment': 'In the same breath they say, "I like him because he tells it like it is", and then, "He doesn\'t mean what he says".\xa0', 'created': '2024-11-08 01:17:35', 'submission_id': '1glsaqu'}
{'comment': 'Well of course they will, we just voted in the same idiot who caused the first price jump.', 'created': '2024-11-07 20:58:36', 'submission_id': '1glsaqu'}
{'comment': "Domestic produce probably won't see a ton of price increases. I don't know much about US dairy farming, but if we produce our eggs in the US, the prices will probably be kinda stable. I could also imagine a scenario where Trump's admin subsidizes the pricing of some specific grocery items, specifically to trick voters into thinking his policies are helping. \n\nBut anything that's produced abroad, or for which the materials come from abroad, will absolutely get more expensive.", 'created': '2024-11-07 20:02:42', 'submission_id': '1glsaqu'}
{'comment': 'Women that voted for Trump like young teenagers bleeding out in hospital parking lots while they beg for care from doctors who are unable to help them.\n\nThey like to see more dead teens suffering and screaming in pain. This is what Trump voters want.', 'created': '2024-11-07 18:22:47', 'submission_id': '1glsaqu'}
{'comment': "They used the religion tactic... whatever happened to the separation of church & state? How do Christians blindly follow this man who created his own Bible? Is it just because they're devout Republicans? I honestly don't get it.", 'created': '2024-11-07 21:07:22', 'submission_id': '1glsaqu'}
{'comment': 'You don’t understand why idiot women who regret their kids and choice of husband despise competent women who didn’t settle for hillbilly trash and live better, more free, healthy lives?\n\nWatch any of these so called daytime mom shows. It’s jealously.', 'created': '2024-11-07 20:56:22', 'submission_id': '1glsaqu'}
{'comment': "I'm so depressed as well. Depressed, scared, shellshocked... you name it. God help us!", 'created': '2024-11-07 21:08:22', 'submission_id': '1glsaqu'}
{'comment': '51% of registered women, which includes millions of mail-in ballots sent to households with abusive partners.', 'created': '2024-11-07 23:08:47', 'submission_id': '1glsaqu'}
{'comment': 'I am surrounded by them in NY. They have money which helps them lift above the problems of the regulars, they are horrified of criminals coming to get them, act nice to gay people, minorities and the poorer people that serve them but make jokes and vote in ways that hurt those same groups.', 'created': '2024-11-07 17:42:28', 'submission_id': '1glsaqu'}
{'comment': "Americans see gender first. \n \nIf you're a white woman, white is the modifier. Genders and their inherent class associations are ingrained. This is why transgender people make so many Americans uncomfortable because the concept attacks the top level of what class you belong in. \n \nA lot of people dislike gay men, but they're still men. Some may not like black men but they are still men. Also, race can change over time. People mix, have kids, racial differences merge. But men are men and women are still women. The top level hierarchy remains mostly static, except for the aforementioned trans element. \n\nAmerica is built on class. Every level has people below them to feel superior towards. Unfortunately most people think it's gender/racial when it's really rich/poor.", 'created': '2024-11-07 22:48:18', 'submission_id': '1glsaqu'}
{'comment': '“Socialism is bad! Unless it benefits me.”', 'created': '2024-11-07 18:26:10', 'submission_id': '1glsaqu'}
{'comment': 'Let’s cut red states off! I’m with you 💯', 'created': '2024-11-07 21:47:13', 'submission_id': '1glsaqu'}
{'comment': 'Not that I want Putin to achieve his wettest dream, but can the northeast states secede into the New England Commonwealth, and keep the money ?', 'created': '2024-11-08 04:59:17', 'submission_id': '1glsaqu'}
{'comment': "As someone from Louisiana, I completely understand and am fine with it. I'm tired of going to vote and knowing nothing I vote for is going to happen. I'm ready for everyone to get exactly what they want.", 'created': '2024-11-08 00:38:59', 'submission_id': '1glsaqu'}
{'comment': 'Nothing will wake these people up. NOTHING. They could end up starving in the gutter and they would still think he was some kind of Messiah who never did a thing wrong.', 'created': '2024-11-07 16:35:57', 'submission_id': '1glsaqu'}
{'comment': 'If there’s one thing the GOP is good at is going to far and over playing their hand.', 'created': '2024-11-07 16:37:32', 'submission_id': '1glsaqu'}
{'comment': "They won't get it. And then the dems will be stuck trying to clean up the mess. As usual.\xa0", 'created': '2024-11-08 01:22:48', 'submission_id': '1glsaqu'}
{'comment': 'Not at all. Please don’t misinterpret what I’m saying.', 'created': '2024-11-07 23:24:01', 'submission_id': '1glsaqu'}
{'comment': 'Amen to that!', 'created': '2024-11-07 23:24:27', 'submission_id': '1glsaqu'}
{'comment': ">Hell, Vance wrote the foreword for 2025\n\nI don't think this is accurate. Vance wrote the foreword for a new book by Kevin Roberts, who wrote P2025. I don't think that - or what he says therein - is any *better*, but it's important that we stick to facts.", 'created': '2024-11-07 20:12:30', 'submission_id': '1glsaqu'}
{'comment': ">Hell, Vance wrote the foreword for 2025\n\nI don't think this is accurate. Vance wrote the foreword for a new book by Kevin Roberts, who wrote P2025. I don't think that - or what he says therein - is any *better*, but it's important that we stick to facts.", 'created': '2024-11-07 20:13:20', 'submission_id': '1glsaqu'}
{'comment': "These are all just arseholes trying to be funny. There's no official confirmation here. They do this knowing that left wing media will write about it for clicks and we'll all fall for it. Is ridiculous.", 'created': '2024-11-07 23:07:13', 'submission_id': '1glsaqu'}
{'comment': 'This is one way to check ballot status, not sure if it’s only absentee or both absentee and in person\n\nhttps://mvic.sos.state.mi.us/Voter/Index/', 'created': '2024-11-07 18:52:32', 'submission_id': '1glsaqu'}
{'comment': "If there's not an election Republicans are going to f*** around and find out that Democrats own just as many guns as they do if not more", 'created': '2024-11-07 21:03:27', 'submission_id': '1glsaqu'}
{'comment': "One can still hope that the Nazi dictator doesn't get his way", 'created': '2024-11-07 21:03:01', 'submission_id': '1glsaqu'}
{'comment': 'Yeah I\'m really watching to see if they stick to their "playbook", because they have a full plan for the first 180 days of complete executive overhaul', 'created': '2024-11-07 20:11:27', 'submission_id': '1glsaqu'}
{'comment': 'Well, if they enact project 2025, it will be the 30s ,just 1830s...', 'created': '2024-11-08 01:46:57', 'submission_id': '1glsaqu'}
{'comment': "Trump made inroads with incels. Well, now said incels cna keep f*king the couch like JD, cause women won't date Trumpists cause you know, if they are pregnant from them, they will be forced to carry to term or marry them...\n\n\nIf incels think they will change girls minds by voting for Trump, we'll they did, they made women now voluntary nuns for the next 4 years. And the incels will remain incels.", 'created': '2024-11-08 01:55:07', 'submission_id': '1glsaqu'}
{'comment': 'In other words, the checks and balances are all in their power.', 'created': '2024-11-07 17:40:18', 'submission_id': '1glsaqu'}
{'comment': "Yup. That's literally how they brainwashed the right. So many on that side laughs and says what Trump and the GOP says is a joke, not realizing these people are saying exactly what they mean and it is stone cold reality.", 'created': '2024-11-07 20:13:34', 'submission_id': '1glsaqu'}
{'comment': 'There is that failure from the Trump electorate, to believe that words delivered as a "joke" are just that... a joke... it\'s a failure to read below the surface, look at the Puerto Rican joke at the MSG rally, it\'s a tiny minority that got upset, the Hispanics still turnout out in higher number than they ever did for him. It\'s terrible to give the benefit of the doubt especially if you are at the wrong end of this "joke"', 'created': '2024-11-07 17:34:09', 'submission_id': '1glsaqu'}
{'comment': 'Yes, something can be satire and also bear some resemblance to reality at the same time. Imagine Harris wins and immediately afterwards Michael Moore posts "sike, we actually are coming for your guns". For sure, I know many Dems that would like to do exactly that. But he\'s not actually speaking for them, or Harris, or anyone. He\'s just putting out bait for the conservative media sphere, which of course they\'d quickly fall for.\n\n***FOX ALERT: "Coming for your guns: Michael Moore says the quiet part out loud"***', 'created': '2024-11-07 21:23:31', 'submission_id': '1glsaqu'}
{'comment': "That's just their MAGA talking point.", 'created': '2024-11-07 17:41:16', 'submission_id': '1glsaqu'}
{'comment': 'So we\'re back to that "oh it\'s not our fault, she was an awful candidate all along!" BS again. Didn\'t even need to change the pronoun for you one-trick ponies.', 'created': '2024-11-07 18:44:58', 'submission_id': '1glsaqu'}
{'comment': '"Incredibly disliked candidate" according to who? I liked her. I liked that she\'s not a serial rapist and convicted felon. I liked that she\'s doesn\'t spew racist shit all the time.', 'created': '2024-11-07 22:03:46', 'submission_id': '1glsaqu'}
{'comment': "The PARTY doesn't get to vote. The voters do. They didn't, so yeah, we *can* blame their apathetic lazy asses for this.", 'created': '2024-11-07 19:56:34', 'submission_id': '1glsaqu'}
{'comment': 'I’m sorry…but no. 15 million democrats didn’t even bother trying to vote. If you had to vote for either, you should have voted for the one that gave you the best chance to strive for change, not the one who is going to impose draconian policies. If I had to vote for either Trump or a rock, I’d vote for a rock.', 'created': '2024-11-07 19:36:31', 'submission_id': '1glsaqu'}
{'comment': 'When democrats stay home, you don’t blame them? What?', 'created': '2024-11-07 19:42:27', 'submission_id': '1glsaqu'}
{'comment': "That's not borne out by evidence. The evidence suggests that voters dumped the incumbent party because consumer prices are high. It happened all over the world this year. Doesn't matter that the economy is actually stronger in terms of buying power than pre-covid; people see grocery prices higher than they expect, people kick out the current party.", 'created': '2024-11-07 20:00:08', 'submission_id': '1glsaqu'}
{'comment': 'You really can’t call her a disliked candidate. She is popular, and her opponent was fucking trump, hated around the world, and he’s a convicted felon and rapist. There’s no competition.', 'created': '2024-11-07 23:50:29', 'submission_id': '1glsaqu'}
{'comment': '>I don’t want to live on this planet anymore.\n\nPlease stay!!\n\nAlso, make him lie.', 'created': '2024-11-08 05:27:44', 'submission_id': '1glsaqu'}
{'comment': 'Don’t forget that he plans on deporting all of the workers who run these farms. \n\n“Immigrant labor accounts for 51 percent of all dairy labor, and dairies that employ immigrant labor produce 79 percent of the U.S. milk supply. If the U.S. dairy industry lost its foreign-born workforce, it would nearly double retail milk prices and cost the total U.S. economy more than $32 billion.”\n\nhttps://www.nmpf.org/issues/labor-rural-policy/labor-and-immigration-reform-efforts/', 'created': '2024-11-07 21:02:45', 'submission_id': '1glsaqu'}
{'comment': "No they won't. Farms need *things to operate.* Those things are going to become more expensive with Trump's tariffs. Eggs, and everything else, will go up.", 'created': '2024-11-07 22:51:34', 'submission_id': '1glsaqu'}
{'comment': 'When input costs go up, output costs go up. We import a lot of stuff. Input costs will go up.', 'created': '2024-11-07 20:56:56', 'submission_id': '1glsaqu'}
{'comment': 'Yes, punishment for the women who dare to have sex, especially young, unwed women. The evangelicals love that stuff.', 'created': '2024-11-07 19:04:01', 'submission_id': '1glsaqu'}
{'comment': 'Yes I was on another forum where somebody actually said "Yes, I\'m a Trump voter and if my wife or daughter needs an abortion, I am rich enough to take them to a blue state so I\'ll be fine."\n\nThese are truly evil people. Truly selfish, evil people. There is no other way to state it.', 'created': '2024-11-07 18:25:45', 'submission_id': '1glsaqu'}
{'comment': "But because they are nice to minorities 'in front of them' they can't be bigots despite their actions at other times....at least in their minds.\n\nIt's a problem with defining bigotry(of any type) by, roughly, only direct/overt/personal metrics or by, broadly, metrics that include discriminatory effects, whether overt or covert, direct or indirect, personal or impersonal.", 'created': '2024-11-07 18:14:29', 'submission_id': '1glsaqu'}
{'comment': 'I mean I honestly don’t blame them. The rhetoric is that blue states take from red even though everyone with a brain knows that is a lie. So here in Mississippi where those California tax dollars go to work on keeping us from devolving into a total third world state, people around here bash California. Call it a hell hole. And like they have nice things. Good roads, great social safety net, a higher standard of living overall, and we bash them here. I would be fucking tired of helping people for the last 50 years and them just continuously shitting on me.', 'created': '2024-11-07 21:01:49', 'submission_id': '1glsaqu'}
{'comment': 'Privatize the gains, socialize the losses.', 'created': '2024-11-07 23:13:54', 'submission_id': '1glsaqu'}
{'comment': 'I’m personally fine shifting to some type of Democrat FEMA, so if you are a Democrat affected by a storm in Louisiana, we’ve got you covered. Your MAGA neighbors? Something, something boot straps.', 'created': '2024-11-08 04:39:38', 'submission_id': '1glsaqu'}
{'comment': 'Why? Facts lost two elections for Dems now. It’s obvious the average American doesn’t deserve the truth.', 'created': '2024-11-07 20:59:50', 'submission_id': '1glsaqu'}
{'comment': 'Yeah that’s what I kinda gathered from Bannon’s comment “Haha you’re so funny Matt”', 'created': '2024-11-07 23:08:33', 'submission_id': '1glsaqu'}
{'comment': "This isn't just one way, it is the *only* way that I have found after more than a day of searching. And it's not actually a way. There is zero information about in-person ballots being counted, even a little bit. Nothing. \n\nSo that is to say, there is not a way for me to know that my vote actually counted because I voted in person. Awesome.", 'created': '2024-11-07 19:22:46', 'submission_id': '1glsaqu'}
{'comment': "I'll believe that when I see it.", 'created': '2024-11-07 21:51:35', 'submission_id': '1glsaqu'}
{'comment': "Hope doesn't stop Nazis.\n\nWe just proved that.", 'created': '2024-11-07 21:52:09', 'submission_id': '1glsaqu'}
{'comment': 'He has full power now. Be afraid.', 'created': '2024-11-07 17:47:33', 'submission_id': '1glsaqu'}
{'comment': 'In other words, there will be ZERO checks and balances. I feel like this is a nightmare, and I want to wake up.', 'created': '2024-11-07 21:14:17', 'submission_id': '1glsaqu'}
{'comment': 'Yep. Or, put another way, there are no more (or will be no more) checks and balances.', 'created': '2024-11-07 22:34:10', 'submission_id': '1glsaqu'}
{'comment': 'They already were because the left refuses to exercise them.', 'created': '2024-11-07 21:02:28', 'submission_id': '1glsaqu'}
{'comment': "I get what you are saying, but it's a false equivalence. Democratic leaders weren't sitting down with people planning to get rid of guns in private jets and saying the person in charge of a plan to get rid of guns is laying out the plan they will follow.\xa0\xa0\n\n\nWhat you are doing is a false equivalence that only superficially appears valid. I get why it might seem convincing or a good comparison,\xa0 but your hypothetical isn't the same beyond the veneer.\xa0\n\n\nThis kind of thing is just another form of dog whistling. Crypto fascists are good at saying things with tiny amounts of plausible deniablility. They do it to make it harder to even understand the issue, or what is or isn't true. Knocking opponents off balance while winking and nudging their supporters.\xa0", 'created': '2024-11-07 22:14:41', 'submission_id': '1glsaqu'}
{'comment': 'The problem is imo that it is leaderships fault. Biden should have never ran again. He had trump level numbers and by association, Kamala too. There should have been serious talks 2 years ago about this and had primaries for someone new. We keep the same playbooks over and over. Biden said he was going to be a one term. We need huge change and the bully pulpit was not used. We cow towed and wanted to reach across the isle instead of using his new found powers.', 'created': '2024-11-07 22:37:16', 'submission_id': '1glsaqu'}
{'comment': '"I will put a Republican on my cabinet"\n\nWhoever came up with that line killed America. Whoever didn\'t stop her from saying it held the country down for them to do it.', 'created': '2024-11-07 20:35:39', 'submission_id': '1glsaqu'}
{'comment': 'You truly think having a black woman as the democratic nominee was a good idea? We have the literal fucking KKK here in the States, Most people voting for trump, etc. \n\nHer public opinion polls were in the dumps. She was despised by many many people.\n\nSay what you like. There can be multiple reasons the Democrats lost. I’m providing insight. You’re trying to argue.', 'created': '2024-11-07 19:19:45', 'submission_id': '1glsaqu'}
{'comment': 'According to ABC News, hundreds of ballots were also burned after someone set them on fire.', 'created': '2024-11-07 23:23:41', 'submission_id': '1glsaqu'}
{'comment': 'Yup. I would have voted for an avocado over trump, or voted for your rock, or even an actual leopard.', 'created': '2024-11-08 14:44:11', 'submission_id': '1glsaqu'}
{'comment': 'So we get a convicted felon, racist con man because the price of eggs is too high.\xa0', 'created': '2024-11-08 01:13:42', 'submission_id': '1glsaqu'}
{'comment': 'Hispanics voted to get deported. The con even fooled them💀', 'created': '2024-11-07 21:42:21', 'submission_id': '1glsaqu'}
{'comment': 'That\'s an excellent point. I was thinking about tariffs, not labor supply.\n\nMy hunch is that the deportations will have less of an impact on domestic agriculture than anticipated, because the one rule that fascism must follow is "thou shalt not endanger capital". In fact, it may be that the profit margins for it will skyrocket, because the undocumented migrants doing the labor now will be converted into prisoner-slaves, and sold/leased/given to the Ag owners.', 'created': '2024-11-07 21:09:35', 'submission_id': '1glsaqu'}
{'comment': "Right, which fits with what I said. Anything that is produced abroad, or anything whose materials (inputs) are produced abroad, will see price increases. Domestic produce (by which I mean eg vegetables dairy meat etc that's grown processed and packaged in the US) probably won't see as much of a price increase, since it has far fewer foreign inputs.\n\nThe vast majority of consumer goods will of course see price increases. I had been specifically responding to a comment about eggs.", 'created': '2024-11-07 21:03:11', 'submission_id': '1glsaqu'}
{'comment': 'Unfortunately this stuff is POPULAR. It is a grim reality.', 'created': '2024-11-07 19:38:43', 'submission_id': '1glsaqu'}
{'comment': 'Exactly this. Money makes you different. When you have it, you want more. When you are in the top 10 here in the states, you can join the presidential club and make policy that gets you more.', 'created': '2024-11-07 23:08:38', 'submission_id': '1glsaqu'}
{'comment': "You know how there are people that are mean to pets, but not in front of people because they are narcissists that don't want the scorn? Those people treat minorities the same way.", 'created': '2024-11-07 23:07:12', 'submission_id': '1glsaqu'}
{'comment': "2 things:\n\n- I submit that truth is important in its own right, separate from its impacts\n\n- Even if we're selectively utilizing truth and falsehood for strategic political purposes, it's still important to keep ourselves accurately informed for practical purposes. Obviously this is a public forum, but it's also a liberal in-group community, and misinforming each other is counterproductive.", 'created': '2024-11-07 21:05:41', 'submission_id': '1glsaqu'}
{'comment': 'I hate this so much. We really do have *Blurred* transparency.', 'created': '2024-11-07 19:30:38', 'submission_id': '1glsaqu'}
{'comment': 'I’m afraid of Dems and citizens sitting back idly as it happens. We need to fight like hell. If it takes a civil war, so be it. But considering how many couldn’t even get out and fill out circles on Election Day, I’m not hopeful about people resisting.🙄', 'created': '2024-11-07 18:11:40', 'submission_id': '1glsaqu'}
{'comment': 'I don’t really agree that it’s a false equivalence. But that’s not really the point, anyway.\n\nLook, I fully understand why it’s important to take Project 2025 seriously. I’m not against that. I just think the specific framing of “look, here’s Matt Walsh giving proof that Trump was lying all along” when he’s so clearly being intentionally provocative for the amusement of his own audience is kind of a dumb way to go about this. I’d be far more interested in looking at who Trump hires for key staffing positions as a clear indicator of his intent.\n\nThey’re winking and nudging because this sort of misdirection works. It eats up the news cycle and ultimately confuses people even more about what’s true and not true. What exactly is the upside to taking Walsh’s words at face value? What’s the downside to simply ignoring his bait? Are there no other ways to see Trump’s agenda being implemented?\xa0', 'created': '2024-11-07 23:02:59', 'submission_id': '1glsaqu'}
{'comment': 'Na, the mobilization in the party was there immediately when Harris started to run. High enthusiasm, high cash flow, high volunteer support. All this "she was never primaried" or "the campaign was too short" stuff has appeared in the last two days in any sort of force. People are looking for any sort of excuse to claim it wasn\'t dem voters who screwed us over.', 'created': '2024-11-07 22:41:20', 'submission_id': '1glsaqu'}
{'comment': 'That was enough to keep 20mil Dems on the couch? My god, we are a touchy lot then.', 'created': '2024-11-07 20:42:50', 'submission_id': '1glsaqu'}
{'comment': 'No you are trying to absolve the voters from blame, even though 20mil of Dems decided fascism and P25 was better than electing a black woman. Your words are not insight, they are excuses and some of them even flat-out falsehoods.', 'created': '2024-11-07 19:29:41', 'submission_id': '1glsaqu'}
{'comment': "So great, we're at the mercy of racists for the foreseeable future. And her approval ratings weren't in the dumps - they were higher than Biden's.", 'created': '2024-11-07 19:44:34', 'submission_id': '1glsaqu'}
{'comment': 'Hispanics voted thinking they’ll be safe and only undocumented immigrants will be deported.', 'created': '2024-11-07 21:55:02', 'submission_id': '1glsaqu'}
{'comment': 'It still has foreign inputs. John Deere tractors while assembled here have foreign inputs. So all tractors will get more expensive. If all tractors get more expensive and those are some of the largest costs to a farmer it would be remiss to say that their inputs costs are not gonna greatly go up.', 'created': '2024-11-07 21:13:17', 'submission_id': '1glsaqu'}
{'comment': 'It’s popular because we tolerate cheering for dead teenagers.\n\nYou’re not going to solve that by pacifism. Sorry.', 'created': '2024-11-07 20:57:02', 'submission_id': '1glsaqu'}
{'comment': 'They cheated. I know it. Everyone is overlooking the very obvious reason. The Supreme Court. They NEVER would have enacted that law giving complete power to a sitting president if they thought for a second that a democratic president could use it. Think about it.', 'created': '2024-11-07 19:51:38', 'submission_id': '1glsaqu'}
{'comment': 'People are too comfortable to form any form of resistance...for now', 'created': '2024-11-07 20:02:35', 'submission_id': '1glsaqu'}
{'comment': 'I had been thinking a lot for a while, I\'m thinking it\'s bad idea to immediately start civil wars, they would easily say "See? they\'re enemy, arrest them" when there\'s "nothing bad happening" going on in their view.\n\nI think it just better to try cope with all the changes, wait until MAGAts wake up to changes they don\'t like, like tariff caused everything too expensive, then ask them to join us in war against Trump\'s government. But I don\'t know if that would work, since with Schedule F, they would first toss all the Democrat leadership into jail freely and easily then we have no one to go up against them. It turns into Russia situation where Putin wins all the time because no one goes up against him anymore.\n\nI\'m at loss, I don\'t know what we can do.', 'created': '2024-11-08 22:10:41', 'submission_id': '1glsaqu'}
{'comment': "> I’m afraid of Dems and citizens sitting back idly as it happens.\n\nHarris conceding shows that she doesn't actually believe the things she was saying about Trump.\n\nIf she did, she'd be pulling out all the stops, or fleeing the country.", 'created': '2024-11-07 20:38:44', 'submission_id': '1glsaqu'}
{'comment': "Ok, I get your point and think you might be more right than me. I touched on the same things but didn't get to what you are saying.\xa0\n\n\nThe key is indifference and not engaging the gish gallops and just doing what you want instead of responding to bait, yeah?", 'created': '2024-11-08 01:30:13', 'submission_id': '1glsaqu'}
{'comment': "Yeah, a Dem presidential candidate saying that they don't have a problem with Republican policies and want to appeal the the moderate Nazis would kill voter turnout.\n\nWho knew, right?", 'created': '2024-11-07 20:50:05', 'submission_id': '1glsaqu'}
{'comment': 'If you can’t see how disastrous it was to choose Kamala, then you’re blonde, mentally inept, or both.\n\nI never once stated 20 million non voters wasn’t an issue. But y’all act like it’s a single fucking issue. Quite delusional that I’m stating facts but you want to argue. Guess what? Trump is our president- again. So why good does this bullshit argument even do?)', 'created': '2024-11-07 19:35:08', 'submission_id': '1glsaqu'}
{'comment': 'They are not safe lol!', 'created': '2024-11-07 21:55:36', 'submission_id': '1glsaqu'}
{'comment': 'I agree. The Democratic Party is incredibly weak. We lose our minds when they do the bare minimum because we’re used to so little.', 'created': '2024-11-07 21:29:36', 'submission_id': '1glsaqu'}
{'comment': 'Harris conceding shows that she meant exactly what she said about her valuing the democratic process. If the Democrats took over the government in a coup, we will have destroyed the democratic system that we were trying to protect. This is a lose-lose situation. Our ONLY chance to preserve it now is to try to do damage control for however long Trump is in office, and win the next election. This does NOT mean that Trump is not a danger, it just means that Democrats are unwilling to disregard the will of the people, even if I believe the people will come to regret their decision.', 'created': '2024-11-07 21:39:33', 'submission_id': '1glsaqu'}
{'comment': 'You mean the same way Republicans don’t believe what they’re saying about the left or they would actually do something besides pretend to be real men?', 'created': '2024-11-07 21:03:23', 'submission_id': '1glsaqu'}
{'comment': "Yeah, I just worry that we (and I'm mostly talking about MSM here) are going to fall for all the same old tricks again. Spending four years chasing every single bullshit statement from Trump and his supporters like dogs after cars, fully exhausting ourselves only to find in the end that none of it meant anything.", 'created': '2024-11-08 02:08:20', 'submission_id': '1glsaqu'}
{'comment': 'Well, now you have a full cabinet of Republicans, so wonderful play there.', 'created': '2024-11-07 20:59:55', 'submission_id': '1glsaqu'}
{'comment': "I've only ever seen that mentioned once before now.", 'created': '2024-11-07 22:06:23', 'submission_id': '1glsaqu'}
{'comment': 'Blonde...?', 'created': '2024-11-07 19:36:51', 'submission_id': '1glsaqu'}
{'comment': "Yeah that first line just told me everything I need to know about you and now I definitely know you're full of shit. Hope you enjoyed your nap last Tuesday.", 'created': '2024-11-07 19:37:20', 'submission_id': '1glsaqu'}
{'comment': '\nYep, they’ll soon find out, and when they do, I don’t want to hear any complaints.', 'created': '2024-11-07 22:12:43', 'submission_id': '1glsaqu'}
{'comment': "> Harris conceding shows that she meant exactly what she said about her valuing the democratic process.\n\nThat is not mutually exclusive with not believing what she was warning everyone about with Trump.\n\nConceding and then fleeing the country is the only consistent thing to do there.\n\n> win the next election\n\nIt's cute you think there will be another election.", 'created': '2024-11-07 21:50:25', 'submission_id': '1glsaqu'}
{'comment': 'My current best guess at a strategy is to just keep asking why until people back themselves into a corner.\xa0\n\n\n"Why? Can you explain that? What makes you think that?"\n\n\nNon confrontational that puts the onus on the claimant.\xa0\n\n\nIt\'s hard. The dynamic is the same fucking one I dealt with as a survivor of over a decade of narcissistic abuse. My only chance at reducing harm is to appease the other party, to make them feel good about themselves while I try and move the interaction towards one where the other party won\'t actively seek to harm me.\xa0\n\n\nI\'ve got a lot of experience and an aversion to doing so. But my sense of personal responsibility has to come out ahead. I\'m taking action to be more effective.\xa0\n\n\nIt hurts.\xa0', 'created': '2024-11-08 02:40:14', 'submission_id': '1glsaqu'}
{'comment': "That's my point.", 'created': '2024-11-07 21:52:28', 'submission_id': '1glsaqu'}
{'comment': '> "I will put a Republican on my cabinet"', 'created': '2024-11-07 22:08:24', 'submission_id': '1glsaqu'}
{'comment': 'I guess the commenter refers to the derogatory stereotype and movie cliché of the stupid blonde woman.', 'created': '2024-11-07 21:49:29', 'submission_id': '1glsaqu'}
{'comment': 'Bringing up Designated Survivor reminds me that the line of succession is just as terrifying as the dictator who just got elected. Imagine fucking JD Vance being president. Somehow that might be worse than Trump.', 'created': '2024-11-07 15:59:58', 'submission_id': '1gls2jo'}
{'comment': 'I really hate the algorithms that don’t allow messages like this to get out!', 'created': '2024-11-07 16:04:55', 'submission_id': '1glrx0u'}
{'comment': 'No thank you. Our party needs a reckoning, not more “resistance.”', 'created': '2024-11-08 00:24:36', 'submission_id': '1glrx0u'}
{'comment': 'I’m out we’re fucked', 'created': '2024-11-08 02:06:29', 'submission_id': '1glrx0u'}
{'comment': 'Good luck! There will be no more party if he pursues their agenda. And, if you’re not interested, you still felt the need to have a snide response anyway. Don’t be a part of the problem!', 'created': '2024-11-08 00:30:29', 'submission_id': '1glrx0u'}
{'comment': "What is the source for the graphic you've attached?", 'created': '2024-11-07 15:38:17', 'submission_id': '1glruhr'}
{'comment': "We need to get our heads checked. Stop looking for a group to blame. It's looking like we lost 8 figures of votes. He did not gain any. He just lost less. \n\nWe are not getting Christians. We're running through Rolodex of who to blame instead of taking a moment to realize that you do not lose this big thanks to 1 thing or 1 people.", 'created': '2024-11-07 15:48:46', 'submission_id': '1glruhr'}
{'comment': 'They are efficiently stupid. We are inefficiently intelligent.', 'created': '2024-11-07 16:24:51', 'submission_id': '1glruhr'}
{'comment': "Voting for an amoral cunt to prove you are devoted to God. We're toast.", 'created': '2024-11-07 17:04:48', 'submission_id': '1glruhr'}
{'comment': 'Meanwhile, in reality -\nhttps://youtu.be/ERUngQUCsyE\n\nI know they care not that he isn’t religious. They simply want the win to enforce their BS views on the world. He is an unserious vile human and anyone who voted for him is a cretin. They are exhausting. Their rhetoric is exhausting. There is more evidence to support the existence of the Flying Spaghetti Monster. \n\n*Under his noodly appendage.*', 'created': '2024-11-07 15:53:05', 'submission_id': '1glruhr'}
{'comment': 'At this point, we need to ask ourselves if the party apartatus is at all useful anymore. Democratic policies poll well among a majority of the electorate, and yet the DNC is consistently incapable of winning elections we should be winning easily. The DNC has managed to successfully alienate a lot of progressive ls but also the general electorate.', 'created': '2024-11-07 20:35:23', 'submission_id': '1glruhr'}
{'comment': 'Sorry, I dont know how to edit my post.\n\nGraphic source:\nhttps://www.nbcnews.com/politics/2024-elections/exit-polls', 'created': '2024-11-07 16:27:53', 'submission_id': '1glruhr'}
{'comment': "We talked about this. It's not one reason but a myriad of small reasons including the 14 million assholes that sat this election out. Fuck them", 'created': '2024-11-07 17:06:39', 'submission_id': '1glruhr'}
{'comment': 'Thank you.', 'created': '2024-11-07 15:57:06', 'submission_id': '1glruhr'}
{'comment': "R'amen.", 'created': '2024-11-07 15:57:47', 'submission_id': '1glruhr'}
{'comment': "Dems should take it as a silver lining that this was not an election Trump won, it was one we lost. \n\nThere's a path forward to build off that.", 'created': '2024-11-07 17:32:18', 'submission_id': '1glruhr'}
{'comment': 'And now every American who supports trump will get exactly what they deserve. He promised to do a bunch of shit. Now do it.', 'created': '2024-11-07 18:33:11', 'submission_id': '1glruhr'}
{'comment': 'What is the source for this graphic?', 'created': '2024-11-07 15:36:13', 'submission_id': '1glribr'}
{'comment': 'White men are naturally going to respond better to economic populism compared to social justice issues as campaign rhetoric because for the most part, they\'re not personally harmed by social inequality. They *are* directly impacted by the state of the economy.\n\nThe Democrats absolutely shouldn\'t abandon social justice issues, but putting more emphasis on economic and labor issues should recapture that demographic. \n\nLook at the "blue wall" - Bernie Sanders did very well there in the 2016 primary, and Biden took it in 2020 because he hit more of a labor oriented tone there than Hillary did in 2016.\n\nThe Democrats basically need to shift away from their 21st century alignment and go back to the New Deal era.', 'created': '2024-11-07 16:25:43', 'submission_id': '1glribr'}
{'comment': 'I think we have ignored the issue of poverty too much and they feel disenfranchised', 'created': '2024-11-07 16:46:07', 'submission_id': '1glribr'}
{'comment': "They're terminally online red-pilled dipshits who are mad that women don't want to fuck them. Somehow, it's the Democrats' fault.", 'created': '2024-11-07 16:16:25', 'submission_id': '1glribr'}
{'comment': 'It’s fear of DEI/diversity/affirmative action. Young men are being told by 100x media right wing media that they have to work harder to get the same job as women and POC.\n\nEven calling it a persecution complex, to me, belittles young men’s fears about their ability to be successful in life. It doesn’t matter whether you think it’s a valid fear or not, it is out there and the democrats haven’t really don’t anything to counteract that messaging.', 'created': '2024-11-07 15:46:49', 'submission_id': '1glribr'}
{'comment': 'Read the book Black Pill, by Elle Reeve.', 'created': '2024-11-07 16:27:25', 'submission_id': '1glribr'}
{'comment': "Tell a sexually frustrated asshat who can't get a girl because he's such a prick that it's all the lefts fault because they spend all their time demonizing white men and glorifying WOMEN the very people who reject your pp\n\n\nOf course you'll vote for the party that doesn't take no for an answer\xa0", 'created': '2024-11-08 00:24:39', 'submission_id': '1glribr'}
{'comment': "I wouldn't look to try to diagnose the issue in that way.\n\nThe lesson here is that Republicans adopted the fascist playbook and weaponized rhetoric. And rhetoric is one of the most powerful weapons of humanity. They create this fictional narrative of themselves as champions of everybody, while the opposition is evil.\n\nUnfortunately, our constitution and system of laws has almost no protection against that. In fact, Republicans have worked for decades to make it *easier* for this to happen.\n\nMeanwhile, we know that historically, the young are the most easily radicalized, particularly young males. We need to improve our education system to make young adults more resistant to fascist propaganda and lies. And we need laws to prevent the widespread use of misinformation in elections.", 'created': '2024-11-08 10:52:05', 'submission_id': '1glribr'}
{'comment': 'Whether they put it forth as policy or not, the attitude is deeply associated with liberalism and democrats. There are 0 republicans voicing the things democrats are.\n\nI’m liberal and always vote democrat but I absolutely buy this explanation. You see this phenomenon all over the place and it’s inextricably linked to democrats. It just is.\n\nNo one pays attention to the actual politicians. But they pay attention to those attaching themselves to the party that do say these things.', 'created': '2024-11-08 14:13:26', 'submission_id': '1glribr'}
{'comment': 'The Democratic Party has turned a blind eye to working class Americans and reinforced the status quo for the benefit of the corporate donor class. These young men recognize the Democratic Party will do nothing to address their material conditions. This makes them angry and feeling disenfranchised. The right uses false consciousness to capture their attention and redirect their anger, they feel the republicans will address their material conditions even tho that is not true. There’s a reason that young men supported Bernie in 2016, but moved to Trump rather than backing Hillary. Until the Democratic Party moves away from neoliberalism and towards progressive politics and recaptures the working class they will continue to lose. Instead what will likely happen is the Democratic Party will learn nothing and ratchet to the right becoming diet republicans and will lose by even steeper margins in upcoming elections. IMHO the Democratic Party is done, it will collapse on itself as it refuses to part from big money interests and democrats will start running as republicans while a new party based on left populism rises from the ashes.', 'created': '2024-11-07 15:48:35', 'submission_id': '1glribr'}
{'comment': 'They aren’t being persecuted they FEEL persecuted. It’s not about material barriers it’s social barriers. People don’t get that so we’re kinda screwed. \n\nThey are just tired of being shit on for acting in a way that only recently became not ok. They are not voting rationally.', 'created': '2024-11-08 00:22:16', 'submission_id': '1glribr'}
{'comment': 'To be honest, this isn’t the first time white males have been threatened in American history……..', 'created': '2024-11-07 15:44:53', 'submission_id': '1glribr'}
{'comment': 'Wall Street Journal (https://www.instagram.com/wsj/p/DCCNogDNgAK/)', 'created': '2024-11-07 15:39:44', 'submission_id': '1glribr'}
{'comment': 'Frankly I dont buy it. In my experiencing canvassing,\xa0liberal economic policy was never brought up by young men. If anything they seemed to be repeating elon musk talking points. It was always about free speech, complaining about cancel culture, etc.', 'created': '2024-11-07 17:34:59', 'submission_id': '1glribr'}
{'comment': 'Some states have exploited the impoverished by making it harder to vote, even if they wanted to, which is another factor to figure out.', 'created': '2024-11-08 00:30:04', 'submission_id': '1glribr'}
{'comment': "i think it does matter if it's not a valid fear. ask yourself what would placate boogeymen like 'women get all the jobs' and 'they're eating the cats'. \n\nseriously. how do you reassure people like that if the thing that they fear isn't even happening? i guess you pass laws that say only men are allowed to have jobs, and you deport or incarcerate anybody who even looks like they MIGHT be haitian. \n\n \nof course, once you've done that they'll have the burden of being the only breadwinners in their homes and they'll be persecuted and pissed about that. the services that new americans provide them won't be available since there won't be any new americans willing to do that stuff, and they'll get themselves pissed and aggrieved about that. so . . . . what next? you pass a law that says men can pimp out their partners to pay for the partners' board and lodging, or what? \n\n \nvalid fears are a different thing. but if the fears were merely valid, then what the hell was wrong with the proposals that harris offered?", 'created': '2024-11-07 21:17:21', 'submission_id': '1glribr'}
{'comment': 'I took a 6 hour DEI course and only the two white guys whined and whined why their boys couldnt have an assured position on a future (imaginary) BOD... "we\'re being descriminated against!"', 'created': '2024-11-07 21:46:48', 'submission_id': '1glribr'}
{'comment': 'Logical competent worthwhile human beings know how to perform a diagnoses of a situation.\n\nAre they “in danger”?\n\nWell let’s see; who is in full control of every meaningful institution in the country?\n\nExactly. Not only not in danger, but anyone telling them otherwise is laughing at them for being gullible useless trash.', 'created': '2024-11-07 17:25:19', 'submission_id': '1glribr'}
{'comment': 'This. \n\nFascism and other strongman rhetoric is always effective at radicalizing young males who feel marginalized or isolated.', 'created': '2024-11-08 10:55:17', 'submission_id': '1glribr'}
{'comment': 'This is just straight up ignorant. The corporate donor class overwhelmingly supports Republicans and Republican policies. Every single Democratic economic policy is designed to address the material conditions of the working class. Pro-union, affordable childcare, affordable healthcare, increased wages, increased protections for workers, while the entire economic policy of the right is to give more tax breaks to the corporations so a little might trickle down to us lowlanders, which is why corporations return the favor and donate massive amounts of money to get Republicans elected. It\'s so frustrating that the right just had to say things like "Democrats don\'t like the working class, we do", and ignorant, gullible people magically believe them even though ALL the facts and evidence prove them wrong. Propaganda works better than truth against an ignorant electorate.', 'created': '2024-11-07 21:08:16', 'submission_id': '1glribr'}
{'comment': 'Not only is it not true, EVERY policy that damages the working class for the last 60 years has been utterly right wing.\n\n“Muh pocketbook” is the dumbest fucking reason anyone but the rich could ever use to vote R.', 'created': '2024-11-07 17:22:25', 'submission_id': '1glribr'}
{'comment': 'Propaganda is a hell of a drug.', 'created': '2024-11-08 02:10:11', 'submission_id': '1glribr'}
{'comment': "That's my point - our campaign rhetoric has drifted to culture war stuff over economic issues. They don't like the culture war stuff and went with the populist.\n\nMorally, we can't abandon these social issues, but rhetorically shifting toward the economy is how you plug that hole.", 'created': '2024-11-07 17:38:21', 'submission_id': '1glribr'}
{'comment': "Young men need role models that can address their needs in a healthy way. Someone like Tim Walz or Mike Rowe of Dirty Jobs. Show them where to look for job opportunities in unlikely places and life advice for how to treat people like equals. Gently correct undesirable behavior with relatability and positive encouragement. Ignoring them or belittling them only creates more problems.\n\nHonestly, instead of detention, schools should require counselors to assess students and offer more productive reform. Using detention is about as productive as incarceration for changing behavior, so let's change our teaching methods.", 'created': '2024-11-08 01:07:10', 'submission_id': '1glribr'}
{'comment': "We need to quit scoffing at their problems. Obviously they have been privileged, so making everything suddenly harder for them makes them resentful. We need to redirect; it works for toddlers, so implement something similar.\n\nFor instance, what if we encouraged more young men to become teachers. Or nurses. Or any other in demand job. They want stability, so make room for everyone without sacrificing a demographic. We don't have to belittle them to help level the playing field. \n\nGolden children, or golden demographics, cause resentment. We don't have to sacrifice progress, we just need to adjust our system. A way to do that would be to require resumes or applications to be anonymous. No name and no demographic information that could be used to create a bias. Voice distortion could have a use in making phone interviews or camera-less video interviews more anonymous. It's extra work, but it could lower the perception of favoritism.", 'created': '2024-11-08 00:50:00', 'submission_id': '1glribr'}
{'comment': "Basically, in most speeches have a paragraph about 'we support equal rights* for all Americans, especially those rights in our Founding Documents' (allows arguments about how 'life, liberty and pursuit of happiness' interact w.r.t., say, gun control/2A or with medical privacy/access) but focus on wages, costs and improving the material conditions of the 99% for most of the rest.\n\n*by equal rights I mean something more than strict 'letter of law' and 'personal interaction', encompass 'spirit of law', but not sort of turning back on itself in forced 'equality of outcome'.\n\nBy the latter, some talking points that come to mind are the 'confusion' of DEI with quotas (disingenuous, but quotas are the 'easy' 'fix'), or of 'trans prisoners getting medical care' using today's boogeyman to up the ante on the classic 'why should prisoners get care veterans don't?' - they should not, but the answer is not deny the first, but promote the second.", 'created': '2024-11-07 18:57:01', 'submission_id': '1glribr'}
{'comment': "that just isn't true. harris said ALL the right things. build housing, pay for post-secondary certifications, support for new parents, price gouging, rent racketeering, small business grants . . . \n\nthey decided they would rather have unlimited guns and freedom to say anything that they like.", 'created': '2024-11-07 21:04:55', 'submission_id': '1glribr'}
{'comment': 'I think youre overstating any candidates ability to control the narrative with right wing and corporate control of the media.', 'created': '2024-11-07 18:22:45', 'submission_id': '1glribr'}
{'comment': 'they had access to tim walz and (i assume) mike rowe.', 'created': '2024-11-08 01:49:14', 'submission_id': '1glribr'}
{'comment': None, 'created': '2024-11-08 03:57:18', 'submission_id': '1glribr'}
{'comment': '"We need to quit scoffing at their problems."\n\nIts not scoffing, its called "triaging". All they need to do is explain how their hangnail is supposed to outweigh the gunshot victim on the importance scale. To explain to the competent adults why we\'re LITERALLY supposed to let people die in order to correct what amounts to an inconvenience. Especially considering Republican policies killing unions are the bulk of the reason young men can\'t get well paying jobs.\n\nIronically I am a hospital exec. We try CONSTANTLY to recruit men. We\'re in the bible belt. Conservatism tells them that\'s women\'s work, and thus beneath them. \n\nSo until and unless they grow up, what the fuck are the people who ACTUALLY do things that benefit America supposed to do?', 'created': '2024-11-08 02:34:57', 'submission_id': '1glribr'}
{'comment': 'Times have changed, so we need to adapt to them better. MSM isn\'t watched anymore, but social media is rampant. We need to make information ridiculously simple to access. A bunch of short podcasts that each tackle a different policy. Same with YouTube videos. Like 5 minutes or less. Get them curious, and then offer them a place to get more detailed information. \n\nHow often did people say, "Where\'s her policy information?" The message wasn\'t where people needed it. I don\'t have cable, and YouTube is free.', 'created': '2024-11-08 00:27:41', 'submission_id': '1glribr'}
{'comment': 'Three months is not long enough to establish trust, and Mike Rowe was on TV that not many people have anymore.', 'created': '2024-11-08 02:15:20', 'submission_id': '1glribr'}
{'comment': 'I can understand very easily where you\'re coming from. But angry men lash out at women and minorities instead of figuring out why things aren\'t working out and how to course correct. We have to address this problem for the betterment of society as a whole.\n\nWhen you say, "F them," they\'re saying it right back. You don\'t have to be their therapist or even like them or be near them if you don\'t have to be. But don\'t go out of your way to antagonize them, please.\n\nI really do understand how you feel. It\'s just not productive, and I have a child that needs a better world. Our real enemies are the people at the top. We\'re squabbling while they exploit us and our world for all we\'re worth. We need to keep that in mind at all times. We are all of us isolated and afraid, so we need to reach out and make new connections. Show people passively what\'s so great about feminism and that rising tides lift all boats.', 'created': '2024-11-08 04:25:43', 'submission_id': '1glribr'}
{'comment': "I am an adult who also understands the issue. The people were talking about don't though. There is a problem and we've got to triage as you've said. The growing up part is actually the problem. Parents aren't as involved because they're having to work more, schools are underfunded and understaffed, and these guys are scared because they don't have a guaranteed place.\n\nHonestly, we need help from the media. Men need to see other men as teachers and nurses in the shows they watch. Also, mock job fairs where students can ask questions from people in the field they are curious about or didn't even know that existed. Helping children identify what they enjoy and why then trying to match that to their personality with a few options could prevent floundering. Encourage a gap year to save up money and try a few different jobs with apprenticeships or internships so young adults didn't take on large amounts of debt for a degree in a field they don't actually like.\n\nAlso, we need to normalize living with parents to save up money and multigenerational homes again.\n\nThere are so many problems and just as many solutions. Treating every child equally is a great place to start. No child left behind was a great concept, if lacking in execution. I don't want to treat anyone as special, so we just have to explain our reasoning in as much detail in as simple of a way as possible. It'll be tedious, but we can't take shortcuts.", 'created': '2024-11-08 03:22:05', 'submission_id': '1glribr'}
{'comment': 'Well we just elected someone whose stated goal is the utter destruction of education for ANYONE but the rich. Good luck to us all.', 'created': '2024-11-08 03:40:42', 'submission_id': '1glribr'}
{'comment': 'Democrats do need to work on appeal to young American men....\n\nExcerpts:\n\nMen between the ages of 18 and 29 turned away from Democrats in droves, shattering illusions that Gen Z—a cohort that statistically reads fewer books, comprehends less information, and predominantly gets their news from social media—skews more progressive than previous generations. The key demographic of young men has shifted nearly 30 points to the right since 2020, when they voted for President Joe Biden by a margin of 15 percent, according to the AP.\n\nMillennial men also continued the growing trend of deference toward Trump at the ballot box. In 2020, men between the ages of 24 and 39 voted for President Joe Biden by a margin of 20 percentage points, according to data from the Pew Research Center. Even that result was a radical shift from the demographic’s politics four years earlier, an increase of eight percentage points in Trump’s favor from 2016.', 'created': '2024-11-07 15:23:19', 'submission_id': '1glrj38'}
{'comment': 'As a young (white) man, particularly in the swing state of NC, it’s very sad how many “friends” and acquaintances I found to proudly support Trump this year. I cut the majority of them off, but guess what? They’re gonna be around to vote in 2028, and we need to start planning NOW how we’re gonna win those votes.', 'created': '2024-11-07 18:25:22', 'submission_id': '1glrj38'}
{'comment': 'So they’ve doubled down on misogyny. I’ve seen so many women coming out saying they’re 4B all the way now. These boys couldn’t find an intelligent woman to court before, sure as hell ain’t finding one now. \n\n[4B Wiki](https://en.wikipedia.org/wiki/4B_movement) for those that don’t know.', 'created': '2024-11-07 15:59:40', 'submission_id': '1glrj38'}
{'comment': 'I’ve heard it as a joke but now I’m starting to think we need to regular podcast equipment! \n\nIn all seriousness, young men have been seriously poisoned by podcasters and content made by people who didn’t mature past GamerGate (yeah remember that?) and sought to spread their overtly pro-patriarchy and anti-woman agenda', 'created': '2024-11-07 20:37:41', 'submission_id': '1glrj38'}
{'comment': None, 'created': '2024-11-07 20:40:39', 'submission_id': '1glrj38'}
{'comment': 'Sad to say but most young men are either Tankies or fascists (same thing).', 'created': '2024-11-08 06:18:28', 'submission_id': '1glrj38'}
{'comment': "First i think ot should be said that the majority of young men, especially, have no issues with gender rights. Could it be that the democratic party doesn't and isn't speaking with them? If you look at the communities the democratic official states it serves (https://democrats.org/who-we-are/who-we-serve/), there is no explicit mention of men or young men... I mean objectively speaking how are young men suposed to recieve that message as anything other then you don't belong with us. If we want to win im 2026 and 2028, we need to understand where the root of the issues lie, why, and how to address them.\n\nIm not saying hey let's bring down women either. Women need to be lifted up and celebrated for there victories. But you are fooling yourself if you think that we cant lift up young men as well as women. \n\nA few more stats for to think over. \n\nwomen graduate from college at a 2:1 ratio compared men. It should be celebrated that women are achieving such rates, buuuutt the question needs to be ask why is the male number so low?\n\nMen are 3x as likely to kill themselves \n\nMen are 5x more likely to be incarcerated\n\nThe majority of homelessness are men\n\nWatch this video letme know what you think: \n\nhttps://youtu.be/jzLmznS91kM?si=ZTUz5N3At_fBtANx\n\nOne last thing I'll leave you with. Look at some of the more unstable place around the world. Syria, Somalia, Yemen, Iraq. What do they all have in common. Large populations of young men who feel adrift without purpose....", 'created': '2024-11-08 02:55:32', 'submission_id': '1glrj38'}
{'comment': 'The Dems aren’t addressing their material conditions, the Democratic Party is captured by big money interests and refuses to move away from neoliberalism, they keep ratcheting right losing their base and normalizing fascist policies', 'created': '2024-11-07 16:00:30', 'submission_id': '1glrj38'}
{'comment': 'Yeah Im 31 and I feel like Im 25\n\nThese dudes 18-26 are straight up fuck bois that can get wrecked for all I care\n\nI knew something has felt off for a while within that young eff boy culture but yeah Im super pissed and willing to go toe to toe with these idiots about culture', 'created': '2024-11-07 17:24:19', 'submission_id': '1glrj38'}
{'comment': 'Their number one excuse is the loneliness epidemic.\n\nUnless you’re advocating sexual slavery like the right, what do the dems offer them?', 'created': '2024-11-07 20:03:20', 'submission_id': '1glrj38'}
{'comment': 'Yeah I support this and hope more women come around to denying these F-bois what the really want from women \n\nDont be objectified by fascist idiots', 'created': '2024-11-07 17:26:12', 'submission_id': '1glrj38'}
{'comment': 'I agree and can see that in the music industry. I’m a 36 M and I never realized that about the industry, especially after the MeeToo movement. Young men are very impressionable and if they can’t find media to relate to they will start looking where it is available. I’m referring to Andrew Tate and Sharpio guys', 'created': '2024-11-07 21:53:24', 'submission_id': '1glrj38'}
{'comment': 'You were downvoted but it is true. They’re trying to court centrist and center right voters but those people would just support the Republicans. And in doing so they don’t connect to young or disaffected.', 'created': '2024-11-07 19:36:59', 'submission_id': '1glrj38'}
{'comment': 'Yeah, I\'m a white guy (although, I\'m a Xennial, so I don\'t fit into that generation/demographic), and I guess I don\'t know or care how Democrats can appeal to young white men, specifically. I agree that the focus should be on the working class, and Democrats should focus their economic agenda on bolstering the working class. However, Joe Biden as president did that, and Kamala Harris campaigned on an economic agenda of creating a strong, thriving working class. Jobs, union support, tax breaks for middle-class Americans, investments in manufacturing, student loan forgiveness, etc. Biden did/was doing all of those things when he wasn\'t obstructed, and Harris campaigned on continuing that agenda. That should be good enough. I never thought I\'d see the day when progressives had to reexamine their platforms so that they can appeal to young white men. Give me a break. "Okay, these initiatives will help all young adults, but for you young white men out there, this one\'s for you! A free gaming system every time a Democrat is elected to the presidency." Like frickin Oprah? "YOU get an Xbox! And YOU get an Xbox!" Sorry if I sound crass, but appealing to the least marginalized group in the country at the expense of those who are marginalized seems like a Republican thing to do.', 'created': '2024-11-07 19:32:01', 'submission_id': '1glrj38'}
{'comment': "An actual fucking future, but they're too stupid to get that.", 'created': '2024-11-07 23:42:32', 'submission_id': '1glrj38'}
{'comment': "No, it's a load of shit. The entire fucking campaign was on material conditions affecting the working class.\n\nFuck your gaslighting", 'created': '2024-11-07 23:45:01', 'submission_id': '1glrj38'}
{'comment': 'Same age white guy here, I have a HS-age son. I’m not asking anyone to “agree” just to listen. These guys feel abandoned and shunned by progressive society. They feel scapegoated and guilted for things they had no part in. “Patriarch” “Bigot” “Misogynist” “Colonizer”. Add that the only people making online content just for them are RW shitlords. Who is the progressive voice for young white dudes? Who is their example? Their mentor on the left in the culture sphere? Trump and these edgelords wink and tell them they should be kings. They’re sometimes funny, irreverent, snarky and mean—for a squishy brained kid, that’s catnip. We have GOT to quit surrendering these guys to the abyss…', 'created': '2024-11-07 22:11:23', 'submission_id': '1glrj38'}
{'comment': 'I’m sorry but I’m not gaslighting. The proof is in your own comment. I don’t think the Harris campaign ever even said the words “working class”. \n\nTrump won because he weaved an easy to digest narrative about how working people were done wrong and he will save them. People don’t want a list of policies, they want change, and what’s what Trump promised. \n\nHarris campaigned with one of the most hated politicians and was unable to differentiate herself from Joe Biden who admittedly did some great things for our country but is political poison for half the voters. Her rhetoric was weak and not motivating. Every time she said “opportunity economy” another hundred potential voters tuned out.', 'created': '2024-11-07 23:50:18', 'submission_id': '1glrj38'}
{'comment': "Maybe they shouldn't be pieces of shit. They are ABSOLUTELY BIGOTS AND MISOGYNISTS", 'created': '2024-11-07 23:41:37', 'submission_id': '1glrj38'}
{'comment': "You are gaslighting. The campaign talked about the working class a lot.\n\nYOU FAILING TO LISTEN DOESN'T MEAN THEY DIDN'T TALK ABOUT IT.\n\nFuck your gaslighting", 'created': '2024-11-07 23:51:09', 'submission_id': '1glrj38'}
{'comment': "missing the point, bigotry is learned not inherited. No one is talking to my demographic (straight white guys) aside from manosphere far right talking heads in the form of youtube videos and podcasts. \n\nThere's no progressive equivalent to promote those values. Not in the spaces my demographic mainly interact with.", 'created': '2024-11-08 04:55:04', 'submission_id': '1glrj38'}
{'comment': 'I voted Harris. I feel your pain. We need to do better in the future.', 'created': '2024-11-07 23:52:44', 'submission_id': '1glrj38'}
{'comment': "She broke fundraising records from small donors bro. The professional analysis I'm seeing is that all this recrimination among ourselves is pointless.\n\nThe professionals think the issue was the difference between economics reality and perception of economic reality.", 'created': '2024-11-07 23:56:10', 'submission_id': '1glrj38'}
{'comment': 'That’s exactly what I’m saying. \n\nWhen distrust in government and institutions are at an all time high, housing prices and rent prices are skyrocketing and people perceive their ability to buy what they need to survive is becoming more and more difficult who’s going to be motivated to vote for the person who appears to be lock and step with an 80+ year old career politician? \n\nPeople saw what Trump was saying and they liked it, Harris wasn’t able to connect to with voters.', 'created': '2024-11-08 00:05:38', 'submission_id': '1glrj38'}
{'comment': 'Harris was literally talking about subsidizing first time home buying, getting three million more homes built, etc.\n\nAnd that 80 year old is the most progressive president since FDR in terms of getting things passed.\n\nPeople are just fucking stupid.', 'created': '2024-11-08 01:21:11', 'submission_id': '1glrj38'}
{'comment': ' No offense intended whatsoever but you’re proving my point. The things you listed do not get people excited to get out and vote. Trump says you’ve been done wrong, I know why, I know how to stop it, what to do and it’s gonna be huge. \n\nNobody gets excited for grants to start a business, opportunity economy and so on. We are living in an age of populism— since the dawn of the 21st century democracy and liberalism have been on a steady decline. You need to create a story/ narrative that people can latch on to and promise them fundamental change.\n\nAnd I agree about Biden being one of our most progressive Presidents. It’s just too bad that all of the good he’s done with either be undone immediately or Trump & Republicans will take credit for it. Biden was meant to usher us out of the age of Trump and he failed. Harris’s loss in this election cements that Biden’s legacy will not be one of a dedicated servant to his country who made the tough decision to save the country, but instead he’ll he lost to the dustbin of history. And it’s because the Democratic Party has rejected the people who got them to where they are today.', 'created': '2024-11-08 01:27:41', 'submission_id': '1glrj38'}
{'comment': "The democratic party didn't reject the people. Your narrative is horse shit.", 'created': '2024-11-08 01:52:40', 'submission_id': '1glrj38'}
{'comment': "15 million imbecile Democrats didn't vote because they're pissy little nothings who don't understand a damned thing about real politics.", 'created': '2024-11-07 15:51:43', 'submission_id': '1glroky'}
{'comment': '…. lost because we ran a woc. The gender gap in voter mobilization was as loud as can be. We lost bc yet again… the campaign let this become about not-trump instead of the clear case we are better for your wallets.', 'created': '2024-11-07 17:36:55', 'submission_id': '1glroky'}
{'comment': 'Democrats will do anything to rationalize not running a populist candidate who espouses true change. Let’s run further to the right! That will surely work!', 'created': '2024-11-07 17:34:32', 'submission_id': '1glroky'}
{'comment': 'This mentality is surely going to win the next election!', 'created': '2024-11-07 17:33:28', 'submission_id': '1glroky'}
{'comment': 'No. We lost because Trump and his surrogates created a fiction about who he is, and what he would do as president. And another fiction about who Harris would be as president. \n\nIt was all a sham. A con. And regardless of who the Democratic candidate would have been, he would have been able to adjust that narrative. Because too many Americans are receptive to to the fascist playbook.\n\nAnd while we thought Americans would finally see through it with a third election. Instead what happened was *Trump got better at it!*\n\nIf you want to blame anyone, blame the media. The large majority of them sane washed Trump for years. When they should have been calling him out constantly on his lies, and labeling him a fascist.', 'created': '2024-11-07 20:54:58', 'submission_id': '1glroky'}
{'comment': 'Anyone who doesn’t know Dems are better for anyone with a real job can’t be reached.', 'created': '2024-11-07 21:08:19', 'submission_id': '1glroky'}
{'comment': "Now's the time to build up that populist candidate that everyone somehow wants but not enough to vote in a primary for", 'created': '2024-11-07 19:48:27', 'submission_id': '1glroky'}
{'comment': "I don't care about their feelings. If you are a Democrat and it's Election Day you have one job and it isn't about you. It's about winning. Nothing happens if you don't win.", 'created': '2024-11-07 17:42:20', 'submission_id': '1glroky'}
{'comment': "You have to think about who the Democratic base is. The poor, disabled, poc... There are a lot of voting systems in place that prevent these people from being able to vote. We need to hit the ground running about making voting easy. Fight tooth and nail for expanded mail-in voting. Make sure people understand how to fill out a ballot properly so it doesn't get thrown away or need curing. Donate and volunteer for organizations that help provide acceptable IDs. Try to get longer early voting and more polling locations that are convenient. \n\nThere are a million little things that add up to 15 million fewer voters. Voter apathy is certainly a problem, but explaining our message on policy can wait for a primary candidate. For now, we keep focusing on getting out the vote.", 'created': '2024-11-07 22:18:15', 'submission_id': '1glroky'}
{'comment': 'I recently read that a Puerto Rican couple voted for Trump because he supports "traditional values" and specifically "traditional marriage" so once again (as I suspected) the bigots spoke loud and clear. I\'m so tired of this shit.', 'created': '2024-11-07 20:05:29', 'submission_id': '1glrez5'}
{'comment': 'Me when Stephen Miller starts his denaturalization program: 🥱', 'created': '2024-11-07 21:48:48', 'submission_id': '1glrez5'}
{'comment': 'I now support mass deportations! Let’s get it done!', 'created': '2024-11-07 22:44:05', 'submission_id': '1glrez5'}
{'comment': 'From my time as a Republican, my anecdata suggested that there were a lot of conservative Hispanics and other immigrant groups who shared the basic Republican sentiment that "illegals" should be rounded up and deported. They themselves came here through the legal process, so all the "illegals" should get kicked out. This, of course, ignores the fact that people seeking asylum are allowed to be here and they\'re coming here the way our law prescribes. Not that any of that matters to them.\n\nAlso, the idea that they were concerned about the economy is absurd. No they weren\'t. They didn\'t like how the economy was going -- I\'m sure they held that sentiment. But to say that they were concerned about it is just factually incorrect. It\'s an idea that can be disproven with evidence, which is that they helped Trump win.\n\nAt best, it might be fair to say that they were concerned about the economy but to a lesser extent than their other priorities, including actively not being concerned with the economy. It\'s like how maybe pro-life people are concerned about the lives of the unborn, but that\'s a lower priority to them to virtue signaling about how pro-life they are. They\'d virtue signal from atop a mountain of dead fetuses that their disastrous abortion policies helped make possible if more people could then see them virtue signal.', 'created': '2024-11-07 21:12:49', 'submission_id': '1glrez5'}
{'comment': "They're assholes - saved you a click.", 'created': '2024-11-07 15:57:46', 'submission_id': '1glrez5'}
{'comment': 'If there’s any solace I find in this election is that his own supporters will be hit the hardest', 'created': '2024-11-07 15:57:03', 'submission_id': '1glrez5'}
{'comment': 'As a latino, I feel very low. I vote blue', 'created': '2024-11-08 04:50:47', 'submission_id': '1glrez5'}
{'comment': 'Just wait. These stupid fucks will be deported whether they are citizens or not he’s not gonna stop at just illegal migration. Wait and see.', 'created': '2024-11-08 08:37:35', 'submission_id': '1glrez5'}
{'comment': 'They want their family members deported because they want to identify as white.', 'created': '2024-11-07 20:05:18', 'submission_id': '1glrez5'}
{'comment': 'Hope those who voted for Trump aren’t close to anyone who is an illegal immigrant.', 'created': '2024-11-07 15:56:08', 'submission_id': '1glrez5'}
{'comment': 'If your family came here illegally and you vote to stop others from being able to the same. You’re a piece of shit', 'created': '2024-11-08 01:55:06', 'submission_id': '1glrez5'}
{'comment': 'I have a theory... but its definitely not PC', 'created': '2024-11-07 16:02:53', 'submission_id': '1glrez5'}
{'comment': 'They wanted a free ride back home?', 'created': '2024-11-09 09:27:28', 'submission_id': '1glrez5'}
{'comment': 'Well, the dems will not need to worry about their vote next time, they will be gone…..', 'created': '2024-11-08 08:14:07', 'submission_id': '1glrez5'}
{'comment': 'It’s cuz the democrats don’t address their material conditions, and instead reinforce status quo neoliberalism for the benefit of their corporate donors. Trump wins because he engages in populist messaging (even tho he is lying).\nBut instead of acknowledging this failure, democrats seem to wanna point blame at minority groups, that’ll definitely bring them back, good job', 'created': '2024-11-07 16:02:24', 'submission_id': '1glrez5'}
{'comment': 'That\'s mind boggling. Again, the idea that the maga way represents their idea of "traditional" slays me. How do we get low info voters and apathetic citizens to pay attention?', 'created': '2024-11-07 20:23:36', 'submission_id': '1glrez5'}
{'comment': "(roughly) half of the people who voted voted against him.\xa0 \xa0how likely do you think it is that the privacy of everyone's votes will survive?\xa0 \xa0they're most probably going to cross that line too when they decide who to deport.", 'created': '2024-11-08 02:14:03', 'submission_id': '1glrez5'}
{'comment': 'The term illegal’s will defined very loosely, they might not be able to stay even though they are currently legal.', 'created': '2024-11-08 08:16:06', 'submission_id': '1glrez5'}
{'comment': 'Pretty much. They only care about themselves.', 'created': '2024-11-07 16:00:31', 'submission_id': '1glrez5'}
{'comment': 'Thanks, I thought so.', 'created': '2024-11-07 16:38:25', 'submission_id': '1glrez5'}
{'comment': 'Yep. And I’m okay with that.', 'created': '2024-11-07 19:21:15', 'submission_id': '1glrez5'}
{'comment': 'some of them.\xa0 \xa0there\'s going to be massive collateral damage as well.\xa0 \xa0\n\n\nthe people that miller deports or sticks into camps - *in winter* - wont be a problem for him.\xa0 they won\'t survive or won\'t be in the country at all by next time.\xa0 \xa0unless people find an ethics and an integrity outside their own "money in my wallet" ideas and get onto the anti-him train he\'s not going to suffer much.\xa0\xa0', 'created': '2024-11-08 02:11:32', 'submission_id': '1glrez5'}
{'comment': 'When illegals come here, they stay with family. Those family members likely voted for trump. They are morons. They voted for trump because they think the economy would be better under him, even though he hates them and wants them deported. I had no issues with Latinos and was disgusted trump called them all criminals and rapists. But now that they shit on the democrats and voted in a dictator, they can all fuck off.', 'created': '2024-11-07 16:03:11', 'submission_id': '1glrez5'}
{'comment': "That's a load of dishonest horseshit", 'created': '2024-11-07 16:09:55', 'submission_id': '1glrez5'}
{'comment': 'This whole argument is like telling someone to suck your dick or you’ll set the whole house on fire while we’re all inside', 'created': '2024-11-07 18:16:08', 'submission_id': '1glrez5'}
{'comment': 'Aaaand the top comment here is “they’re assholes.” Great strategy to win them back huh', 'created': '2024-11-07 17:04:32', 'submission_id': '1glrez5'}
{'comment': 'Ask the Murdoch family.', 'created': '2024-11-07 20:32:05', 'submission_id': '1glrez5'}
{'comment': 'Of course he’s going to do that. They’re gonna monitor women’s periods. If you think he won’t go that far guess again.', 'created': '2024-11-08 08:39:03', 'submission_id': '1glrez5'}
{'comment': "Honestly, very likely. I doubt he could corrupt the millions of individual poll workers out there.\n\nTrump's bad but exaggerating his power doesn't help.", 'created': '2024-11-08 03:58:22', 'submission_id': '1glrez5'}
{'comment': ">They only care about themselves.\n\nApparently not, they voted against their own interest thinking that they won't be at the wrong end of Trump's policies.", 'created': '2024-11-07 17:36:42', 'submission_id': '1glrez5'}
{'comment': 'Same type guy was elected in the Philippines, shows they can be easy wooed by tough talking con men there was also a lot of misinformation out there about Kamala which is pretty bizarre, like she was at Diddys parties... low IQ voters', 'created': '2024-11-07 19:41:57', 'submission_id': '1glrez5'}
{'comment': 'Sadly, Trump supporters vote against their own interests. I work with a (white) boomer who whines about money….He’s going to feel the burn when Trump cuts social security.', 'created': '2024-11-07 16:11:59', 'submission_id': '1glrez5'}
{'comment': 'Dems lost the working class, and young people. It’s not dishonest, lay off the copium. They ran dogshit messaging, ran a dogshit campaign, and you can spend 1 billion dollars on ads but if your message sucks it’s not going to work. Y’all lost 15 million votes between 2020 and 2024.', 'created': '2024-11-07 16:12:31', 'submission_id': '1glrez5'}
{'comment': '“Vote for me or the we let the fascists win and take away your rights. Oh no, we aren’t gonna address the economic or human rights concerns you have, and we are just gonna concede on immigration policy to the fascists”', 'created': '2024-11-07 18:20:40', 'submission_id': '1glrez5'}
{'comment': 'It’s their job to earn peoples vote, that’s how campaigning works. Expecting groups of people to vote for you when you don’t show any interest in dealing with their concerns is incredibly naive and arrogant.', 'created': '2024-11-07 18:22:48', 'submission_id': '1glrez5'}
{'comment': "Fuck their feelings, i hope the leopards rip their faces off. We've tried to be nice, we've tried to educate, we've tried to stick to our policies that would help them\n\nthey chose misogyny and hate. fuck them.", 'created': '2024-11-07 17:13:05', 'submission_id': '1glrez5'}
{'comment': 'apparently calling them rapists, criminals and garbage is better?', 'created': '2024-11-07 17:22:02', 'submission_id': '1glrez5'}
{'comment': 'Reminds me of the people who supported Hitler', 'created': '2024-11-07 17:37:15', 'submission_id': '1glrez5'}
{'comment': 'True!', 'created': '2024-11-08 02:56:57', 'submission_id': '1glrez5'}
{'comment': "And perhaps they won't be, to be honest. But the fact alone they disregard others is showing.", 'created': '2024-11-07 22:11:06', 'submission_id': '1glrez5'}
{'comment': 'how do they not get this? its mind boggling', 'created': '2024-11-07 19:42:28', 'submission_id': '1glrez5'}
{'comment': "Bro, they literally talked constantly about the issues you claim they didn't. You're just wrong.", 'created': '2024-11-07 16:44:15', 'submission_id': '1glrez5'}
{'comment': 'It’s peoples job to come together for the greater good. You want to be coddled and are willing to ruin it all. If you think like this you honestly deserve the horrors that you voted in. The only issue is that there are innocent people at home and abroad who will die because of this selfish bullshit entitled way of thinking.', 'created': '2024-11-07 18:54:33', 'submission_id': '1glrez5'}
{'comment': 'Well I hope you aren’t running the Democratic Party then, or whatever replaces it', 'created': '2024-11-07 19:06:31', 'submission_id': '1glrez5'}
{'comment': '[Association of German National Jews](https://en.m.wikipedia.org/wiki/Association_of_German_National_Jews)', 'created': '2024-11-07 20:52:14', 'submission_id': '1glrez5'}
{'comment': 'Trump sold them a dream. I have coworkers who are willing to suffer, if Trump gives them something….Look at the poor Christian conservatives who depend on government assistance.', 'created': '2024-11-07 19:47:38', 'submission_id': '1glrez5'}
{'comment': 'Just keep ratcheting right, surely that’ll work for you sooner or later, neoliberalism is gonna destroy the Democratic Party. Calling it now, the Dems will continue to learn nothing, will shed their base, move right and continue to lose moving the Overton window further right. We have you moderate/centrist neoliberals the reigns for 3 presidential elections now, and you lost to Donald fuxking trump 2x and barely scraped out a win in 2020. The Democratic Party has a messaging problem, and until you all introspect and acknowledge it you will continue to lose. Seeing all the “Arabs/latinos voted against their own best interests, can’t wait to see how they react to their families getting deported” is really telling. They don’t owe you their vote, you have to win it. But as the saying goes, scratch a liberal and a facist bleeds, and y’all are proving that right now by blaming minorities for not voting hard enough.', 'created': '2024-11-07 17:04:06', 'submission_id': '1glrez5'}
{'comment': 'I voted for Harris. We tried your way and lost everything. Also I’m a trans woman in Ohio, I stand to lose a lot with this result. Grow up, neoliberalism is a failure, if anyone is entitled and willing to lose everything it’s you for defending institutional neoliberalism and losing election after election just expecting people will vote for you without representing them at all. We need change, we need new party leadership, they failed us and it’s valid to be upset, but instead of blaming the people you failed to reach with your messaging, maybe fix your fucking messaging, jfc all the neoliberals in here blaming the left and blaming minorities for not voting for them is fucking ridiculous, GIVE THEM SOMETHING TO VOTE FOR.', 'created': '2024-11-07 18:58:49', 'submission_id': '1glrez5'}
{'comment': 'I hope that WA,OR,CA just break away and say "Fuck all ya\'ll, we\'re tired of your horseshit. fuck off"', 'created': '2024-11-07 19:09:04', 'submission_id': '1glrez5'}
{'comment': 'Whew chile!', 'created': '2024-11-08 01:57:20', 'submission_id': '1glrez5'}
{'comment': "> Just keep ratcheting right\n\nStopped reading right there, because that's ALSO NOT WHAT IS FUCKING GOING ON AT ALL.\n\nPew Research: https://i.imgur.com/uFg9xX7.png\n\n\nWalz is a massive union supporter\n\nBiden is the first president - sitting or retired - to join a union picket line\n\nHarris when she was in the senate was the 4th most left wing: https://www.govtrack.us/congress/members/report-cards/2018/senate/ideology \n\nYou are simply completely, utterly, totally full of shit. **Because you don't want to admit that the problem isn't policy, it's corporate media ownership and misogyny**", 'created': '2024-11-07 17:12:20', 'submission_id': '1glrez5'}
{'comment': 'Not before Trump destroys the country. Lmao we’re all fucked and you’re talking about messaging.', 'created': '2024-11-07 17:12:55', 'submission_id': '1glrez5'}
{'comment': 'While the red wave is going to be financially rough on the same Americans that voted for it, the REAL losers on Tuesday are the Ukrainian and the Palestenian people. They are going to be slaughtered in approximately three months.\n\nAnd the American electorate will ignore or simply not care, or maybe even cheer. Who knows anymore.', 'created': '2024-11-07 15:51:43', 'submission_id': '1glr21p'}
{'comment': "This on so many things (like the economy). They'll have their faces eaten and wonder why it happened. We'll be laughing at their stupidity as we sink with them. My personal thing is Ukraine, but I already know the orange administration won't give them what they need.", 'created': '2024-11-07 15:39:41', 'submission_id': '1glr21p'}
{'comment': 'Fuck Trump and Fuck the ones who voted for him, as well as the democrats that didn’t vote at all.', 'created': '2024-11-07 20:58:30', 'submission_id': '1glr21p'}
{'comment': 'Trump met with Netanyahu and wanted Trump to win this election, so he kept this war going. Now that Trump won, Netanyahu says he’s taking steps to end the war. Trump will let Netanyahu end the war any way he wants. How is this not election interference. Many voters didn’t vote based on this issue alone. The non-voters played right into their hands. Trump and Netanyahu could have stopped this massacre all along.[source via NPR IG](https://www.instagram.com/p/DCCfi40PRxu/?igsh=MzRlODBiNWFlZA==)', 'created': '2024-11-08 00:34:57', 'submission_id': '1glr21p'}
{'comment': 'I feel like idiot is to kind of a word', 'created': '2024-11-07 21:13:11', 'submission_id': '1glr21p'}
{'comment': '2016 groundhogs day', 'created': '2024-11-07 20:33:20', 'submission_id': '1glr21p'}
{'comment': 'Now they are out there protesting at the Trump tower in Chicago lol\n\nClueless', 'created': '2024-11-07 16:45:02', 'submission_id': '1glr21p'}
{'comment': 'If the USA was attacked by a terrorist group, it would take us 20 plus years and 2 (two) Democratic administrations to end our assault on the countries the Republicans held accountable. By Republican standards, the Israelis are just getting warmed up.\n\nWow. Brilliant.', 'created': '2024-11-07 15:34:15', 'submission_id': '1glr21p'}
{'comment': 'The most frustrating thing is Trump, again, is taking office post-recovery. The economy is moving in the right direction. I give it two months after being sworn in before Trump is boasting about how much better everything is “already” and his brain dead supporters will believe he did something.', 'created': '2024-11-08 03:31:36', 'submission_id': '1glr21p'}
{'comment': "I'm sure the Gazans will be so grateful these narcissistic assholes made such an effective stand on their behalf with their protest voting or protest abstentions as they're being nuked by the Trump administration.", 'created': '2024-11-07 17:56:05', 'submission_id': '1glr21p'}
{'comment': 'Exactly!! Stupid Stupid Stupid', 'created': '2024-11-07 15:09:30', 'submission_id': '1glr21p'}
{'comment': "These people not voting are just as bad as the right. They're all dead to me.", 'created': '2024-11-08 21:48:10', 'submission_id': '1glr21p'}
{'comment': 'A section of our party cannot acknowledge the most basic of our accomplishments. \n\nThat denial of reality led to 15 million democrat voters staying home. \n\nParty has to change or people like me will leave it to whoever is left.', 'created': '2024-11-07 19:15:59', 'submission_id': '1glr21p'}
{'comment': "Yeah. I keep seeing shit about how the Democrats need to learn lessons.\n\nFucking brilliant. We probably won't have elections soon and that'll sure learn someone!", 'created': '2024-11-07 21:23:31', 'submission_id': '1glr21p'}
{'comment': ' Exactly this. Asian descent was hardly present in the polls', 'created': '2024-11-08 00:21:21', 'submission_id': '1glr21p'}
{'comment': 'The US will start sending troops to support Russia soon enough 🤷🏻\u200d♂️', 'created': '2024-11-08 05:13:19', 'submission_id': '1glr21p'}
{'comment': '[removed]', 'created': '2024-11-08 16:29:06', 'submission_id': '1glr21p'}
{'comment': '[removed]', 'created': '2024-11-08 22:16:55', 'submission_id': '1glr21p'}
{'comment': 'WWIII any one?', 'created': '2024-11-10 18:00:22', 'submission_id': '1glr21p'}
{'comment': 'who else can we blame? blame the Trumpers', 'created': '2024-11-07 23:51:28', 'submission_id': '1glr21p'}
{'comment': 'Funny how no one mentions that the attack happened on Putins birthday. I guess that\'s to wild for the "jet feul can\'t melt steel " crowd.', 'created': '2024-11-08 00:17:40', 'submission_id': '1glr21p'}
{'comment': 'We have to realize that people want to vote FOR something. She needed to take a stance. Its less about issue to issue to specific than it is any kind of leadership. For god sakes take a position.', 'created': '2024-11-07 16:36:36', 'submission_id': '1glr21p'}
{'comment': 'SHUT THE FUCK UP.\n\nIf the Democratic party continues to live on autopilot like they have since 2016 they will never win again. Populism works, clearly, do it.', 'created': '2024-11-07 16:09:03', 'submission_id': '1glr21p'}
{'comment': 'Was this one of the issues? Maybe, but it was far from the main one.\n\nEconomic and immigration messaging killed the Dems. Badly.', 'created': '2024-11-07 20:24:37', 'submission_id': '1glr21p'}
{'comment': 'Jill Stein didn’t cost Harris a single state. Not even Michigan.', 'created': '2024-11-08 02:24:15', 'submission_id': '1glr21p'}
{'comment': 'Maybe the DNC could ya know, not give us shit candidates? That might be a good idea.', 'created': '2024-11-08 03:15:14', 'submission_id': '1glr21p'}
{'comment': 'You can’t\n\nhttps://preview.redd.it/6aad4nsgulzd1.jpeg?width=831&format=pjpg&auto=webp&s=5357c6b4451042b4cbc4e9bcdf1bdf65d82a31e8\n\nblame and how did this strategy work out for y’all in 2016? Oh yeah, it didn’t. Stop blaming people for voting their conscience when the issue was you white people.', 'created': '2024-11-08 05:25:36', 'submission_id': '1glr21p'}
{'comment': 'Blaming voters is always a stupid strategy. No one owes a vote to the democrats, and rather than pointing fingers we should be analyzing what happened thoroughly.', 'created': '2024-11-07 21:54:47', 'submission_id': '1glr21p'}
{'comment': "I think it's possible Ukraine might be able to hold on with Europe backing them. They've all been aware of the risk. It's true we've been the major players there and this is a case where in one sense Trumplicans have been correct: Europe has relied heavily on our military prowess and spending. Before going nuts on me keep in mind that I know that 99% of the Trumplican philosophy on this is absurd and awful. But it's an absolute fact that we've always had the biggest military and therefore the most to offer. That's one reason why Putin has made attacks on the EU vis a vis Brexit and other effots that are best categorized as psy-op. The EU will now really be targeted by Russia and China. And the US won't give a shit as a whole. I hope the EU really is prepared. All I can say is that it's possible that a rush to build up their military would be good for their economy.", 'created': '2024-11-07 21:27:44', 'submission_id': '1glr21p'}
{'comment': "Also don't forget the domino effect. If Ukraine falls, Putin will be emboldened to seize more territories and pull other shit. China will also see it as an opportune time to go for Taiwan (and maybe challenge the Philippines and Japan for control of seas). We're literally on the cusp of another world war. Like what the actual fuck man", 'created': '2024-11-07 22:06:50', 'submission_id': '1glr21p'}
{'comment': 'I think Trump will cut funding and threaten NATO, which will force Ukraine to concede Crimea, Donetsk, and Luhansk. In exchange, Putin will cede Zaporizhzhia and Kherson. Those dont matter because he has his land corridor to Crimea, and he can have sanctions lifted, which will help him politically... Trump will praise Putin for such a "generous" deal and get closer to him, undermining NATO. Finally, Putin will wait until his military is recovered and fully resupplied... and then it will invade again from a much stronger tactical position... and Trump will succeed in "ending the war". \n\n\nHe will fully embolden Israels worst excesses unapologetically.', 'created': '2024-11-09 00:09:06', 'submission_id': '1glr21p'}
{'comment': 'You would agree trump is going to make America Isolationist so rest of the world will not be part of much of the US policies.', 'created': '2024-11-07 16:00:03', 'submission_id': '1glr21p'}
{'comment': 'I’ve already heard (even before yesterday) from MAGA supporters, “screw Ukraine we need that money here! Groceries are too high! Rent is too high!” \n\nAs if the two are related…', 'created': '2024-11-07 21:36:00', 'submission_id': '1glr21p'}
{'comment': 'trump seems to be telling Zelensky to sue for peace in Ukraine and give up the current Russian occupied territory as some sort of buffer occupation zone between Ukraine and Russia. Am I reading this correctly?', 'created': '2024-11-07 15:58:49', 'submission_id': '1glr21p'}
{'comment': "Yes but sadly a lot of voters didn't even know what they voted for. They will not have the introspection to realize it's their own fault", 'created': '2024-11-08 01:34:25', 'submission_id': '1glr21p'}
{'comment': 'BUT THE TRANSGENDERS', 'created': '2024-11-08 03:03:00', 'submission_id': '1glr21p'}
{'comment': 'this is what Reagan did to Jimmy Carter and Iran', 'created': '2024-11-08 03:04:08', 'submission_id': '1glr21p'}
{'comment': "They'll stop real fast after inauguration and the military shows up.", 'created': '2024-11-07 21:29:11', 'submission_id': '1glr21p'}
{'comment': 'That is the problem with the Palestinians. They have let proxies fight their war from the very beginning in 1946.', 'created': '2024-11-07 20:15:33', 'submission_id': '1glr21p'}
{'comment': 'They’re so smug talking about how we didn’t present a good candidate. Let’s see how Mr. Felony, 8 trillion deficit, concept of a plan, tariff loving rapist does.', 'created': '2024-11-08 01:11:44', 'submission_id': '1glr21p'}
{'comment': "Replying to myself here cause I already wrote a damn novel up there but...\n\n\nI feel people really need to understand that while I and everyone should acknowledge that the LGBT community is not a monolith, it is equally true that one tactical vote or endorsement does not mean you have renounced your core values.\n\n\nFfs I am voting in Romania this year for what is essentially an old-school US Republican with a soft progressive cherry on top (civil unions). And that's to ward off pro-Russia parties.\n\n\nI don't like it, but I don't want to become a Russian satellite country so I vote and campaign and try to soothe anyone who might be, as am I, upset with the candidate's flaws.\n\n\nI just don't understand why these other people can't think that way.", 'created': '2024-11-08 16:37:08', 'submission_id': '1glr21p'}
{'comment': "I voted for something. I voted for democracy, I hope I'll be able to do it again.", 'created': '2024-11-07 22:06:01', 'submission_id': '1glr21p'}
{'comment': "You're voting for I was raised middle class. Isn't that inspiring?", 'created': '2024-11-07 19:29:54', 'submission_id': '1glr21p'}
{'comment': 'Well congrats! Because of people like you, we’ll very likely never be able to vote for Dems again because we the guy you just helped get elected says *no one will have to vote ever again.* It’s more likely than not you’ll get your wish. \n\nThanks for your contribution to the death of democracy.', 'created': '2024-11-07 22:09:48', 'submission_id': '1glr21p'}
{'comment': "Populism sells sand to those dying of thirst. It wins on voter stupidity. It works, but it sucks and the results are usually bad.\n\nI don't have an easy fix (populist solution) to sell, but I know our electorate won't improve if we encourage selfish stupidity as a policy platform.\n\nConnect good leadership with better communication to connect to voters and relate to voter concerns without silly stories about your middle-class background... that's the ideal.", 'created': '2024-11-07 18:01:48', 'submission_id': '1glr21p'}
{'comment': 'Yeah bro, if you guys take the party then we’ll never win again\n\nAnd we’ll deserve it lmfao', 'created': '2024-11-07 19:16:58', 'submission_id': '1glr21p'}
{'comment': "Democrats and blue voters spent the last 12 years villanizing Men, and White People in general. And it is the main reason we lost everything. Picture this: \n\n\n1.) You're a man, and white. You've heard nothing but hate against you for simply existing from one side, and nothing but praise from the other. Who you gonna align yourself with? Especially Gen Z, your ENTIRE conscious life you've heard nothing but hate and disgust levied at you from democrats, openly, with no regard or balance. Its awful. \n \n2.) You're a white women, you also have a white husband, father, brother, son. You hear all the time how they are satan incarnate simply for existing - all bad in the world is their doing somehow. You see them mentally suffering, their demographic has the highest suicide rate in the country, and no one cares. Yes, the blue side says they will protect you specifically, but what about them? Do you just let your men get shit on? Or...you do you vote for the party that makes those men in your life feel needed and gives them just enough drive to keep living? A dilemma. \n\nThis is the issue. We are the party of opportunity, equality, patience, and love... Unless you're white and especially not if you're a white male. We spare no thought for you. Blue regularly shits on the majority demographic, and expects them to still vote Blue. \n \nRed isn't the only party guilty of racist and sexist rhetoric. We need to fix this, we need to be better.", 'created': '2024-11-08 06:55:07', 'submission_id': '1glr21p'}
{'comment': '>Blaming voters is always a stupid strategy. No one owes a vote to the democrats, and rather than pointing fingers we should be analyzing what happened thoroughly.\n\nAh another dumb take. You know besides America, most other fucking countries view voting as a duty. You vote for your interests, who gives af about whether someone you will never meet strokes your fucking ego. That is the root of the issue. America is all about voter ego, instead actual fucking issues. Trump and republicans know this. Until that changes, red states are gonna keep fucking themselves and blue states will just continue working around it.', 'created': '2024-11-07 22:29:44', 'submission_id': '1glr21p'}
{'comment': 'But this is analyzing an aspect of what happened for a part of democratic voters. Although it’s pointing out how ineffective their position they took is for their goal, I see educating about consequences is important. These are adults. Can we not talk to them like adults?', 'created': '2024-11-07 22:12:23', 'submission_id': '1glr21p'}
{'comment': "This is the one time that everyone actually did. You just failed to see it. A vote for the DEMOCRATIC party (it's right in your face) was a vote for democracy.\xa0\n\n\nAll over Europe parties that used to be rivals are forming alliances to shield democracy from pro-Russia parties.\n\n\nAmerican entitlement hit f***ing hard this year...", 'created': '2024-11-08 17:05:36', 'submission_id': '1glr21p'}
{'comment': 'I hope you are right. Your scenario also demonstrates that the days of information sharing between the US and our longstanding European allies is going to be greatly reduced or nonexistent.', 'created': '2024-11-07 21:55:55', 'submission_id': '1glr21p'}
{'comment': '>Europe has relied heavily on our military prowess and spending. Before going nuts on me keep in mind that I know that 99% of the Trumplican philosophy on this is absurd and awful. But it\'s an absolute fact that we\'ve always had the biggest military and therefore the most to offer.\n\nThe crazy thing with this logic, is previously (and in most circumstances) republicans loved having a big military and being the military leader of the world. Like that was one the selling points of republicans ("Vote for me so I can keep our military strong and big, and we stay as the top leaders of the free world with our and always lead other countries"). It was just basic "alpha" style mentality. But Trumpian logic on Ukraine is basically "Enough with being the alpha dog, let\'s be the betas" on voters who fucking constantly claim being alphas lol', 'created': '2024-11-07 22:12:17', 'submission_id': '1glr21p'}
{'comment': 'Joey B should steal that $200B Russian slush fund and give it to Ukraine in his last days', 'created': '2024-11-08 00:32:18', 'submission_id': '1glr21p'}
{'comment': 'Yes, and no because aren’t we giving almost everything to them on the lend lease act so as long as Ukraine doesn’t just cease to exist, we’re getting paid back so I don’t understand peoples gripe with it at all', 'created': '2024-11-08 02:31:43', 'submission_id': '1glr21p'}
{'comment': 'I think Biden will force through as much support for them as he can. Hopefully.', 'created': '2024-11-08 06:53:59', 'submission_id': '1glr21p'}
{'comment': 'imagine how europe would fare', 'created': '2024-11-07 23:54:17', 'submission_id': '1glr21p'}
{'comment': 'Not much else in Europe to invade that isn’t in NATO. Moldova. Then it’s turn south to Asia. Or test NATO and risk annihilation.', 'created': '2024-11-08 07:57:43', 'submission_id': '1glr21p'}
{'comment': 'He will sell out the United States, let alone Ukraine, to be able to neck with Putin.', 'created': '2024-11-07 16:16:05', 'submission_id': '1glr21p'}
{'comment': 'Trump sold or just gave national security secrets to the Saudis (Hello, 9/11?) and Putin, so you best check yourself before you clown further.', 'created': '2024-11-07 22:13:12', 'submission_id': '1glr21p'}
{'comment': "He's not gonna be an isolationist. He's basically gonna make the American military be either a war profiteer or a puppet. He will let Ukraine fall and let Putin take even more territories, probably let China take Taiwan and all the while try to or suggest nuking other countries", 'created': '2024-11-07 22:15:48', 'submission_id': '1glr21p'}
{'comment': 'I think Russia will have a large say in American politics over the next for years. \n\nBut no matter how much trump wants American isolation, that hasn’t been a reality since the 40’s, and given the interconnectedness of our economy with our allies and other countries, it isn’t much of a possibility going forward, at least not the version he’s been selling for the past nine years.', 'created': '2024-11-07 16:36:48', 'submission_id': '1glr21p'}
{'comment': "As if we are giving Ukraine pallets of money.... We're paying US workers to build weapons in US plants to give the Ukrainians weapons to defend themselves. \n\nPeople are so fucking stupid it hurts.", 'created': '2024-11-07 21:52:14', 'submission_id': '1glr21p'}
{'comment': 'Thinking is not their strong suit. I just hope Ukraine makes it.', 'created': '2024-11-07 21:49:36', 'submission_id': '1glr21p'}
{'comment': 'That’s the problem , they’ve been fed so many lies and misinformation they can’t make a sound decision based on facts.', 'created': '2024-11-07 21:50:11', 'submission_id': '1glr21p'}
{'comment': 'But I mean it is related (but not in the way they think it is), the war in Ukraine cause gas prices to increase. So Putin and Russia would be at fault not Ukraine. \n\nBut that isn\'t even the point. Russia, a long time enemy of the US, is invading Ukraine and still wants to bring down the US, but somehow Trumpian voters think it\'s a good idea to support the country that wants to nuke you and take other countries, instead of supporting the country getting invaded and just wants peace. It\'s just bizarre, I don\'t understand Trumper\'s supporting Russia and not Ukraine. Even Mcconnel is on the "let\'s support Ukraine" side.', 'created': '2024-11-07 22:20:49', 'submission_id': '1glr21p'}
{'comment': 'I can trade this HIMARS for groceries!', 'created': '2024-11-08 02:25:17', 'submission_id': '1glr21p'}
{'comment': "Whatever it takes to end the war. As long as it's decisively not in Ukraine's favor.", 'created': '2024-11-07 16:02:10', 'submission_id': '1glr21p'}
{'comment': 'He will stand at the top of the stairs to AirForce1, wave a piece of paper and declare ‘Peace in MY(!) time!’', 'created': '2024-11-08 14:05:18', 'submission_id': '1glr21p'}
{'comment': '...? What about them?', 'created': '2024-11-08 05:00:09', 'submission_id': '1glr21p'}
{'comment': "I mean even if you don't love everything about her policy she's a fucking normal human woman who would try to do a good job running against a criminal fascist dictator wannabe.", 'created': '2024-11-10 09:37:29', 'submission_id': '1glr21p'}
{'comment': 'I voted, your shitty candidate just forgot to tell normal Americans reasons to vote for her.', 'created': '2024-11-07 22:20:00', 'submission_id': '1glr21p'}
{'comment': 'No, Republicans spent the last 12 years reinforcing this message that you are continuing to double down on. They focused on the demonization of men and white people, amplified the message, and it won them the election.', 'created': '2024-11-08 14:43:33', 'submission_id': '1glr21p'}
{'comment': 'This whole smug approach to politics is why we can’t win. No one cares that she was the smartest or most qualified candidate. You have to offer voters something other than “not Trump” and we have been allergic to doing that since he started running. The party has to decide what/who it’s for and not merely what it’s against.', 'created': '2024-11-08 16:22:19', 'submission_id': '1glr21p'}
{'comment': "Yeah. What's sad about that is I'm really worried about Americans being able to flee there as opposed to just Canada or Mexico. I'm hoping my daughter can get to Germany on a student visa and her boyfriend can go with her on a work visa (he's in construction). \n\nI do think it's likely this regime will end up invading Mexico in a few years. As I recall a major lithium mine was discovered there and Mexico nationalized it rather than letting US corporations come in and privatize it.", 'created': '2024-11-07 21:59:20', 'submission_id': '1glr21p'}
{'comment': "omg. this is a new point I hadn't thought of. the information sharing... I feel like we need a comprehensive list of what \\*could\\* be a consequence of this election result.", 'created': '2024-11-09 13:37:06', 'submission_id': '1glr21p'}
{'comment': "This is because even Americans on the right got tired of wars that were obviously for corporate benefits. I heard LOTS of complaints about soldiers guarding opium fields in Afghanistan for the pharmaceutical industry. Even the oil industry.\n\nAll of that is valid but it made it too easy for Russia to convince Americans that any time we engage in combat or gave military aid it was because of the evil war hawks. So we'll stay out of the way for Russia to war hawk the globe.", 'created': '2024-11-07 22:43:31', 'submission_id': '1glr21p'}
{'comment': "Because they're being told that we're giving them cash as part of Russian propaganda and that we could sell what we give that at a higher value elsewhere. Although that where is not mentioned. \n\nBut mostly. It's because of Russian propaganda being issued from Their Team", 'created': '2024-11-08 02:35:15', 'submission_id': '1glr21p'}
{'comment': 'Russia has already had a palpably big say in American politics the last 4 - 8 years.', 'created': '2024-11-07 21:28:25', 'submission_id': '1glr21p'}
{'comment': 'Then when they realize things are going to get worse, they’ll blame Biden. They won’t have a reason… they’ll just blame him.\n\n(They meaning Trump supporters)', 'created': '2024-11-07 22:12:22', 'submission_id': '1glr21p'}
{'comment': "Ukraine will probably make it because Russia's military is not as strong as it once was, and other European countries see the wisdom of isolating the fighting to Ukrainian territory instead of letting the war come to their countries.", 'created': '2024-11-08 05:41:49', 'submission_id': '1glr21p'}
{'comment': 'They’re looking at their own wallets and bank accounts.', 'created': '2024-11-07 22:22:25', 'submission_id': '1glr21p'}
{'comment': '', 'created': '2024-11-08 14:44:36', 'submission_id': '1glr21p'}
{'comment': "No one knows. But it's provocative.", 'created': '2024-11-08 06:19:17', 'submission_id': '1glr21p'}
{'comment': 'The entire thing seemed to boil down to “she has to be flawless, he can be lawless”.', 'created': '2024-11-10 09:39:16', 'submission_id': '1glr21p'}
{'comment': 'Agree, we should have better candidates but it’s also ridiculous to think a candidate needs to pander to 100 different causes when the other option will destroy so much and is completely smug to their base. The dem average voter that was apathetic and did not turn out, actually elected Trump.', 'created': '2024-11-08 19:23:50', 'submission_id': '1glr21p'}
{'comment': 'Except Trumpers are all in when he wants to nuke other random countries. Republicans are still warhawks, except when it comes to Ukraine and Putin', 'created': '2024-11-08 00:03:30', 'submission_id': '1glr21p'}
{'comment': "Yep. Or when they realize they're wrong, they won't accept it. They just dig in deeper, lie or change the subject. Reality doesn't matter.", 'created': '2024-11-07 22:22:09', 'submission_id': '1glr21p'}
{'comment': "Which would be Russia's fault not Ukraine's.", 'created': '2024-11-07 22:32:05', 'submission_id': '1glr21p'}
{'comment': "it's insane, and now we have a Bond villain caricature as the shadow President.", 'created': '2024-11-10 09:41:06', 'submission_id': '1glr21p'}
{'comment': 'It’ll never happen because people have too much to lose. It won’t be until the leopards start eating their faces that any talk of rebellion begins.', 'created': '2024-11-07 15:12:17', 'submission_id': '1glr4bo'}
{'comment': '[why the democrats lost](https://podcasts.apple.com/us/podcast/opening-arguments/id1147092464?i=1000676045153)', 'created': '2024-11-07 15:31:58', 'submission_id': '1glr4bo'}
{'comment': 'Watch Andor', 'created': '2024-11-07 15:26:32', 'submission_id': '1glr4bo'}
{'comment': 'TLDR; the 15 million votes were injected into the race at 3am.', 'created': '2024-11-07 17:00:19', 'submission_id': '1glr4bo'}
{'comment': 'Yeah, I’ve seen it.', 'created': '2024-11-07 15:31:15', 'submission_id': '1glr4bo'}
{'comment': 'I was talking to my Republican dad before the election, and he told me, "I like that Walz guy." He saw a clip of Tim talking about free gun locks and how you can be pro-2A and advocate for responsible gun laws.\n\n\nI really hope Tim Walz doesn\'t disappear from national politics.', 'created': '2024-11-07 15:37:05', 'submission_id': '1glqsfq'}
{'comment': 'He could have been an amazing VP. I saw him as a first VP of our time to not just sit in the background but be a constant voice with the working class people. Instead we got a guy who talks conspiracies about people eating pets.', 'created': '2024-11-07 15:16:52', 'submission_id': '1glqsfq'}
{'comment': 'He probably should hold the least shame.\n\nEdit: But something needs to change.', 'created': '2024-11-07 15:14:27', 'submission_id': '1glqsfq'}
{'comment': 'They really tried to save this country and make it better for all of us.\n\n72 million Americans were like "no thanks we\'d rather destroy this country instead"\n\nDisgusting and heartbreaking.', 'created': '2024-11-07 14:51:50', 'submission_id': '1glqsfq'}
{'comment': 'Y’all do realize he’s still Governor of Minnesota. Honestly, he should run for President in 2028 and actually run on the great things he did/does in Minnesota. We need a populist candidate who actually has done the work to help working class people.', 'created': '2024-11-07 16:27:47', 'submission_id': '1glqsfq'}
{'comment': "It's a sad day in America for democracy.", 'created': '2024-11-07 15:09:11', 'submission_id': '1glqsfq'}
{'comment': "I've come to the sad conclusion that the majority of Americans cannot support a female president. They chose not voting (just look at the drop in Democratic voters from 2020 to 2024) or chose supporting the crude and criminal ignoramous instead.", 'created': '2024-11-07 15:29:57', 'submission_id': '1glqsfq'}
{'comment': 'Never in my wildest dreams thought that Trump would win. You know he’s a terrible person. Are so many people in this country really that poor a judge of character? \n\nWhat kind of nasty shit is going on in your life that you think Trump is the right choice? It gives me the willys.', 'created': '2024-11-07 15:54:03', 'submission_id': '1glqsfq'}
{'comment': 'Me too! Such a nice man, and a lovely family. I think he would have done a great job. Clearly the Republicans are not into “kind” and “decent”. They’d much rather have a corrupt convicted felon.', 'created': '2024-11-07 15:16:32', 'submission_id': '1glqsfq'}
{'comment': 'I am not going to fault Walz or Harris very much for this heartbreaking result, though I might question the decision to try and campaign with conservative Liz Cheney. Given the circumstances, they ran a damn good campaign, but they were strapped for time. I do think that in retrospect, Biden *really* should have announced he was not running for reelection in SOTU 2023. He had low approval ratings then, and faced some serious criticism about his advanced age. Then, a successor could have emerged, and had time to dial in the message. It pains me to speak ill of Biden, since he got some really good policies through, but I think his reluctance to go through as a “transitional president” will tarnish his reputation as president.', 'created': '2024-11-07 16:45:36', 'submission_id': '1glqsfq'}
{'comment': 'Love Tim Walz but I feel more sad for me and us', 'created': '2024-11-07 15:32:41', 'submission_id': '1glqsfq'}
{'comment': 'I really hope that this is not the last we see of Tim Walz. He was a bright spot in all this.', 'created': '2024-11-07 19:15:45', 'submission_id': '1glqsfq'}
{'comment': 'He was so badly underutilized and could have been a tremendous asset.', 'created': '2024-11-07 15:28:04', 'submission_id': '1glqsfq'}
{'comment': 'Tim Walz should run next time.', 'created': '2024-11-07 16:31:09', 'submission_id': '1glqsfq'}
{'comment': "The best thing to come out of the election is that everyone knows about Tim Walz now. My wife's minnesotan and loves him but now everyone gets to.", 'created': '2024-11-07 20:00:11', 'submission_id': '1glqsfq'}
{'comment': 'SNL had a timely skit. The real Tim Kaine - you remember him, don\'t you? - appeared on a "What\'s My Name?" show spoof, and reminded the contestant that he had repeatedly posted on the internet that this was the most important election in American history - you know, back in 2016 - "What\'s my name?" Contestant really didn\'t have a clue. 😁\n\nTim Kaine is still a senator. This new Tim is still a governor. Life goes on.', 'created': '2024-11-07 15:48:50', 'submission_id': '1glqsfq'}
{'comment': 'I feel sad for America', 'created': '2024-11-07 16:05:40', 'submission_id': '1glqsfq'}
{'comment': 'Walz is really the man, visited Minnesota 3 years ago and loved it and him as governor would be icing on top. I’d love to live there and part of that is the leadership of Walz.\n\nFlat out Walz is the man.\n\nI’ll say though with Walz, Beshears, and Shapiro I feel the future is bright for democrats.\xa0', 'created': '2024-11-07 18:09:30', 'submission_id': '1glqsfq'}
{'comment': "Don't worry, he'll make a cameo on SNL in November 2028 and we will remember him fondly.", 'created': '2024-11-07 20:01:45', 'submission_id': '1glqsfq'}
{'comment': 'I feel bad for him, because he genuinely seemed so excited to be VP.', 'created': '2024-11-07 15:48:08', 'submission_id': '1glqsfq'}
{'comment': 'At least he has a good job to return to as MN Gov., and I think his current term runs through 2026.', 'created': '2024-11-07 17:17:24', 'submission_id': '1glqsfq'}
{'comment': "People are greedy. when they talk about the economy, they talk about how much they make, and how much things cost.\n\nme and my family are poor, once those tariffs come in, it'll just make our lives even harder than they are. \n\nI was so shocked when we lost, we were blinded by joy and trumps oldness to realize that regardless of what we've done, we would've lost.\n\nThe moment the Affordable Care Act was removed, once my dad couldn't afford his anxiety, depression, and heart medication, he will be selling his home and the home he inherited from my great aunt and were moving to Iceland.\n\nI recommend anyone starts making a plan to leave for a better country once we're 100% sure things aren't gonna get better in time. even if Project 2025 is true, we still have time to leave this once land of the free.", 'created': '2024-11-07 17:28:30', 'submission_id': '1glqsfq'}
{'comment': 'He and Harris both did a great job. They were just in a tough position.', 'created': '2024-11-07 19:59:44', 'submission_id': '1glqsfq'}
{'comment': 'He did a great job as a running mate. Great guy.', 'created': '2024-11-07 21:52:15', 'submission_id': '1glqsfq'}
{'comment': 'I feel bad for both of them.', 'created': '2024-11-07 17:50:56', 'submission_id': '1glqsfq'}
{'comment': "He would've been an amazing VP. It sucks.", 'created': '2024-11-07 21:45:59', 'submission_id': '1glqsfq'}
{'comment': 'Tim is such a unicorn. Rural and progressive appeal in one package. What a loss.', 'created': '2024-11-07 23:06:53', 'submission_id': '1glqsfq'}
{'comment': 'Caption: Chancellor Valorum watching Palpatine take over the Republic.', 'created': '2024-11-07 15:20:40', 'submission_id': '1glqsfq'}
{'comment': 'America chose the rapist, so America deserves the rapist', 'created': '2024-11-07 15:23:28', 'submission_id': '1glqsfq'}
{'comment': "Any speculation on what he does next? IIRC he's term limited, but it seems like this whole process has really raised his standing in politics.", 'created': '2024-11-07 15:57:15', 'submission_id': '1glqsfq'}
{'comment': 'Me too. He was a good guy who cared about kids. Vance is a rich asshole who only cares about women having kids forcibly then never helping them again.', 'created': '2024-11-07 22:40:34', 'submission_id': '1glqsfq'}
{'comment': "I want Waltz to announce his run for 2028 right now. Just like Trump did in 2020. Waltz can then become the face of the party and act as a thorn in Trump's side, even if it is simply by tweeting obnoxious shit and pointing out all the illegal shit and lies Trump spews. He can begin fund raising right away and build up the energy gradually. \n\nNo offense to Kamala, but she has the lowest total votes of any Democrat since Kerry 20 years ago. Sadly her time in national politics is likely over and she should respectfully move aside. \n\nThen Waltz can pick a running mate like Pete B or AOC or Wallred (they can be the Coach/Player team 🤣)", 'created': '2024-11-07 22:58:43', 'submission_id': '1glqsfq'}
{'comment': 'He should take up Bernie’s mantle of sane white guy who can talk about a variety of issues and still be progressive.', 'created': '2024-11-07 23:06:13', 'submission_id': '1glqsfq'}
{'comment': 'I think Walz should run for President, in 2028. He should start that campaign now, or in early 2025 at the latest. Under the "Trump doctrine", he will be immune from prosecution for the entire time he is running. He might even be able to use that immunity to do some good.', 'created': '2024-11-07 23:24:58', 'submission_id': '1glqsfq'}
{'comment': 'He would’ve won easily as a presidential Candide out of an actual primary, ANYONE would have', 'created': '2024-11-08 00:03:54', 'submission_id': '1glqsfq'}
{'comment': 'Do you think the Dems would have won if Walz had been put in as the Presidential candidate and retained Harris as VP candidate? I think so.', 'created': '2024-11-07 15:53:06', 'submission_id': '1glqsfq'}
{'comment': 'Good dude. He’s still got a part to play in rebuilding whatever’s left when dotard leaves.', 'created': '2024-11-07 16:03:25', 'submission_id': '1glqsfq'}
{'comment': 'I’m personally so proud of the Walz family. They did great, they are such decent people doing some good in the world.', 'created': '2024-11-07 16:28:40', 'submission_id': '1glqsfq'}
{'comment': 'Tim was a wonderful choice.\nInexperienced? Yes. \n\nBut for the people. \nAnd people have made their decision, which I disagree with.\n\nHe has nothing to blame on himself.', 'created': '2024-11-07 17:16:54', 'submission_id': '1glqsfq'}
{'comment': "Why didn't he run for Prez?", 'created': '2024-11-07 19:31:20', 'submission_id': '1glqsfq'}
{'comment': 'One of very few politicians that seems like someone that it would be fun to just hang out and watch a football game with.', 'created': '2024-11-07 19:49:54', 'submission_id': '1glqsfq'}
{'comment': 'OM, this finally broke me. What a lovely man. Gives me hope that there are good men out there running for office.', 'created': '2024-11-07 22:49:20', 'submission_id': '1glqsfq'}
{'comment': 'He’s not emotion for himself. He’s worried about America.', 'created': '2024-11-08 03:05:23', 'submission_id': '1glqsfq'}
{'comment': "What are the more affordable areas in Minnesota? I feel sad, but would appreciate having a sensible governor, I mean we can't have that in a President or VP apparently. I will not storm a capitol, I will not decry fraud. \n\nBut, Minnesota is looking pretty good right now. I don't fully understand where the party went. I didn't know we were this fractured.", 'created': '2024-11-07 16:26:12', 'submission_id': '1glqsfq'}
{'comment': 'He’s gonna need two casseroles and a bottle of a Heinz', 'created': '2024-11-07 16:27:28', 'submission_id': '1glqsfq'}
{'comment': 'Tim Walz is working class rural America. Or at least the best version of it.', 'created': '2024-11-07 16:30:57', 'submission_id': '1glqsfq'}
{'comment': 'They’ll be back. I don’t know in what form, but we haven’t seen the last of them. And thank goodness for it.', 'created': '2024-11-07 17:18:38', 'submission_id': '1glqsfq'}
{'comment': 'Check that your voice was counted\n\nhttps://www.vote.org/ballot-tracker-tools/', 'created': '2024-11-07 17:47:07', 'submission_id': '1glqsfq'}
{'comment': 'He became one of my favorite people this year. I wonder if he has any plans for 2028? Or has he been tarnished?', 'created': '2024-11-07 19:27:33', 'submission_id': '1glqsfq'}
{'comment': 'Why tf did they pick a progressive governor and never use him for progressive shit. Might as well picked Shapiro if you were just gonna pander to the right.', 'created': '2024-11-08 01:40:48', 'submission_id': '1glqsfq'}
{'comment': "Unlike in 2016, I'm not finding myself anymore sorry for them than I feel for the rest of us. Maybe it's because their campaign was so short, maybe because at least Kamala got to be the VP. \n\n \nInteresting what folks are saying about VPs fading into obscurity. I could not for the life of me remember who Hillary's VP pick was. Had to google it just now and the name barely rang a bell.", 'created': '2024-11-08 03:17:18', 'submission_id': '1glqsfq'}
{'comment': 'well he shouldnt have been so nice to JD Vance at the debate', 'created': '2024-11-07 16:59:27', 'submission_id': '1glqsfq'}
{'comment': 'He’s a good man, he tried but 15 million no shows will cause a loss', 'created': '2024-11-07 19:23:04', 'submission_id': '1glqsfq'}
{'comment': 'What about a Buttigieg/ Walz ticket ?', 'created': '2024-11-08 07:33:04', 'submission_id': '1glqsfq'}
{'comment': 'Was the votes there and not tallied up properly like someone interfered or was people afraid of a woman leader idk and don’t get it', 'created': '2024-11-07 15:35:18', 'submission_id': '1glqsfq'}
{'comment': 'I feel sad that of all people they picked him', 'created': '2024-11-07 18:16:50', 'submission_id': '1glqsfq'}
{'comment': 'Do you think he has a chance in 4 years?', 'created': '2024-11-07 17:16:44', 'submission_id': '1glqsfq'}
{'comment': "One person's post resonated with me mentioned how much animosity there is amongst many midwesterners to celeberties and coastal elites. Walz seemed to be a good choice to balance the bill but not enough. Much as I would love it if we could have more diversity at all levels of government, if Democrats want to win the hearts of these very important demographics we may need a Walz/Biden type at the top of the ticket.", 'created': '2024-11-07 18:34:14', 'submission_id': '1glqsfq'}
{'comment': 'Such a shame! I truly believe that they were actually winning. Trump made it clear that he was planning to finish what he started after the 2020 election.', 'created': '2024-11-08 03:56:53', 'submission_id': '1glqsfq'}
{'comment': "We need to all stop being silent with the people around us. They are not. When smart people don't get involved, the idiots end up calling all the shots. That's exactly how fascism started the first time.", 'created': '2024-11-08 03:57:26', 'submission_id': '1glqsfq'}
{'comment': 'Hes gonna have a rough time. This blows.', 'created': '2024-11-08 06:31:58', 'submission_id': '1glqsfq'}
{'comment': 'He just seems fit for that position, JD and his creepy fuck me eyes just seems very out of place for VP', 'created': '2024-11-08 16:25:12', 'submission_id': '1glqsfq'}
{'comment': 'I’m going to miss him so much', 'created': '2024-11-08 23:19:58', 'submission_id': '1glqsfq'}
{'comment': 'Doubtful. Unlike some VP picks that disappear into obscurity, Walz was the most popular of the 4 candidates.', 'created': '2024-11-07 16:57:14', 'submission_id': '1glqsfq'}
{'comment': "I wonder if things would have been different if the ticket had been reversed with Waltz as the presidential candidate. He's got a lot of charisma and so much of America is still virulently racist and sexist. I really wish Biden has stuck to his promise of only running for a single term.", 'created': '2024-11-07 18:51:23', 'submission_id': '1glqsfq'}
{'comment': 'I don’t think it will be the last time we’ll hear from Walz.', 'created': '2024-11-07 21:59:24', 'submission_id': '1glqsfq'}
{'comment': 'I’d back him as our next president.', 'created': '2024-11-08 01:16:15', 'submission_id': '1glqsfq'}
{'comment': 'I Think Pete Buttigieg and Tim Walz could make a good team', 'created': '2024-11-07 22:28:29', 'submission_id': '1glqsfq'}
{'comment': "Waltz/AOC '28!", 'created': '2024-11-07 22:55:12', 'submission_id': '1glqsfq'}
{'comment': "AND he wouldn't abandon small town and rural America.", 'created': '2024-11-07 15:30:54', 'submission_id': '1glqsfq'}
{'comment': 'This beautiful bastard probably puts it all on his own back. At least someone knows what leadership is.', 'created': '2024-11-07 17:06:57', 'submission_id': '1glqsfq'}
{'comment': 'This beautiful man doesn’t deserve any negative criticism!', 'created': '2024-11-07 19:21:47', 'submission_id': '1glqsfq'}
{'comment': 'No shame, valiant efforts from all, this one just wasn\'t in the cards. And to be fair, Walz does have "resting sad face"', 'created': '2024-11-07 19:25:38', 'submission_id': '1glqsfq'}
{'comment': 'What about the millions of Democrat voters who didn’t show up for Kamala and Tim? That to me is worse than the Trump voters. By not letting their vote count they just handed the country over to Trump on a silver platter.', 'created': '2024-11-07 15:18:24', 'submission_id': '1glqsfq'}
{'comment': 'And over a dozen million idiots watched on the sidelines after a decade of talking about the big game.', 'created': '2024-11-07 15:30:10', 'submission_id': '1glqsfq'}
{'comment': "72+15 million \n15 million people who didn't vote this year but did vote in 2020 :| \nThanks 87 million people in the USA who didn't vote or voted for trump. Other countries/continents will have a harder time now and suffer because of you because wääähhhhhhhhhh can't vote for a woman, lets vote for the convicted felon, rapist, madman, hitler and dictatorship loving, senile grandpa. \nThis makes me quite annoyed as a German, sorry.\n\nhttps://preview.redd.it/vklgfgh1phzd1.png?width=2673&format=pjpg&auto=webp&s=a3d5d10e4a796f74be235210c0a0e470d9021ff1", 'created': '2024-11-07 15:25:28', 'submission_id': '1glqsfq'}
{'comment': 'Too many of those 72 million thought that the economy sucked because of Biden, and not because of greedflation and corporate fuckery. They and the rest of us are in for a huge reckoning when groceries become even more expensive, poor middle-class taxes go up again, and when unemployment likely goes up.', 'created': '2024-11-07 20:09:44', 'submission_id': '1glqsfq'}
{'comment': "Not just 72 million MOST American voters. It's revolting.", 'created': '2024-11-07 17:32:33', 'submission_id': '1glqsfq'}
{'comment': "Trump got less votes, it's just the people that stayed home", 'created': '2024-11-07 17:30:37', 'submission_id': '1glqsfq'}
{'comment': "He'll be gov till 2026. And then probably win reelection again as people will see how shit things went. He might even run for senate.", 'created': '2024-11-07 20:00:50', 'submission_id': '1glqsfq'}
{'comment': 'tbf I like him more than Kamala (still like her and gladly voted for her)', 'created': '2024-11-07 20:54:50', 'submission_id': '1glqsfq'}
{'comment': 'Definitely.', 'created': '2024-11-07 15:18:33', 'submission_id': '1glqsfq'}
{'comment': 'I agree, we all thought it was voter complacency in 2016 bc dems assumed Clinton would win and couldn’t be bothered to go vote. But, if it’s happening again, then it’s not a coincidence, it’s bc it’s a woman.', 'created': '2024-11-07 15:43:50', 'submission_id': '1glqsfq'}
{'comment': 'The amount of voters that didn’t show up is insane. In the tens of millions. \n\nWhat’s interesting to me is that I just found out Biden was actually an outlier with his 81M+ votes and Harris’s numbers were average for a Democrat candidate in the recent times (all the others I think from Obama in 2008 to Harris were around 60-65M votes). But that doesn’t change the fact that the huge drop in numbers from Biden to Harris was disappointing and caused by a combination of misogyny, apathy and downright laziness by the Dems this time.\n\nEdit: Oops, I put Bush instead of Obama lmao I’m tired today', 'created': '2024-11-07 15:45:28', 'submission_id': '1glqsfq'}
{'comment': "I sadly agree with you. This whole thing gave me 2016 vibes. I can't believe 15M dems just didn't show up.", 'created': '2024-11-07 15:37:26', 'submission_id': '1glqsfq'}
{'comment': 'In my opinion, not voting was just their way of saying no to Kamala without actively voting for Trump', 'created': '2024-11-07 16:06:29', 'submission_id': '1glqsfq'}
{'comment': 'Every time I see people say "when will dems learn", the only thing I think of is putting women at the top of the ticket.\n\nKamala ran an amazing campaign and picked a perfect VP, and America was too stupid to look past her gender.\n\nI know this for a fact because I work in construction and talked to several men. One voted for Biden and said, he just doesn\'t trust Kamala, and couldn\'t name one thing about here. Another said "the Bible says women shouldn\'t lead". But he\'s always been a dumbass', 'created': '2024-11-08 00:13:11', 'submission_id': '1glqsfq'}
{'comment': 'I voted, so don’t come at me. I think a big part of the drop off was frustration that Biden didn’t move things further, didn’t accomplish what his voters were hoping, and saw no difference in Harris. Right or wrong, at least on the dem side, I think they were ok with a female president, but weren’t motivated enough to vote for Harris.', 'created': '2024-11-07 15:35:12', 'submission_id': '1glqsfq'}
{'comment': 'I’m disappointed in the millions of illegals republicans said we have that didn’t show up.', 'created': '2024-11-07 15:55:15', 'submission_id': '1glqsfq'}
{'comment': 'They wanted to punish America for whatever their perceived grievances are.', 'created': '2024-11-07 16:29:55', 'submission_id': '1glqsfq'}
{'comment': 'I’m reading that white Evangelical Christians and young uneducated Latino men were a factor.', 'created': '2024-11-07 16:29:47', 'submission_id': '1glqsfq'}
{'comment': "Stupid people and bad people. I'm getting shit for painting tens of millions of people with such broad strokes, but what else is there?\n\nWe've seen for eight years that he's a liar and terrible person. One quick search will show that he was a pretty bad president and that Biden is doing a fine job in most aspects.\n\nSo either you saw the MSG rally and felt empowered to round up tens of millions of people and make America white again or you're an idiot and believe what he's saying that he can fix it. They believe that somehow everything wrong right now magically is the fault of Harris when it had been all Biden's fault.", 'created': '2024-11-07 21:45:37', 'submission_id': '1glqsfq'}
{'comment': "> Are so many people in this country really that poor a judge of character?\n\nyes\n\nand/or\n\nthey don't care about character, they only care about the power to e bigots.", 'created': '2024-11-07 16:39:07', 'submission_id': '1glqsfq'}
{'comment': 'She was the candidate by the time of the convention, which is the time she would have been named candidate.. anyway', 'created': '2024-11-07 19:12:20', 'submission_id': '1glqsfq'}
{'comment': 'As a Minnesotan, and as much as we wanted him to be the VP, we are blessed he is back home. 💙', 'created': '2024-11-08 01:18:50', 'submission_id': '1glqsfq'}
{'comment': 'The campaign did him dirty. He started out with some fire, and then he honestly became boring, because I think he was advised to hold back on everything that made him fun and compelling.', 'created': '2024-11-08 04:22:40', 'submission_id': '1glqsfq'}
{'comment': "I concur with you about this. My family and I are preparing to leave and I am gonna be seeking asylum from the United States given the political climate. To me we as Democrats need to focus on the values that we want in the country and communicate as loud as possible the issues that the country is facing AS THEY HAPPEN and be vocal. We don't need big names and we can't be nice. We need to be feisty, have passion and people willing to fight through tyranny. \n\nWith Project 2025 I am thinking a Mass Exodus from America will occur and the economy of the United States will die without the middle class. This is the beginning of America's flame starting to burn out so focus on what YOU can do to survive and just appreciate and enjoy living to its fullest and appreciating the family and support around you if you have it.", 'created': '2024-11-07 17:50:24', 'submission_id': '1glqsfq'}
{'comment': 'I didn’t vote Trump. I’m a terrified old white woman.', 'created': '2024-11-08 02:39:30', 'submission_id': '1glqsfq'}
{'comment': "He said to Harris during the VP vetting that if Harris didn't pick him for VP, his plan was to finish the last 2 years of his second term as Governor of MN and then retire. I could still see him doing that, maybe working a job outside politics because they're not wealthy. They sold their house when he became governor, so I'm thinking he'd need a job to find a new place to live.", 'created': '2024-11-07 16:43:12', 'submission_id': '1glqsfq'}
{'comment': 'He arrived back home last night here in Minnesota. We are proud of our governor. He would’ve made the best VP. 💙', 'created': '2024-11-08 01:22:11', 'submission_id': '1glqsfq'}
{'comment': 'That would be awesome!', 'created': '2024-11-08 03:53:47', 'submission_id': '1glqsfq'}
{'comment': 'I agree. He certainly should!', 'created': '2024-11-08 03:52:27', 'submission_id': '1glqsfq'}
{'comment': 'I agree. We needed someone like him.', 'created': '2024-11-08 03:51:58', 'submission_id': '1glqsfq'}
{'comment': 'I think we definitely would have had a better chance.', 'created': '2024-11-07 16:37:24', 'submission_id': '1glqsfq'}
{'comment': "No, the dems did not lose because of the candidate. It was really just people's perception of the economy. Nothing they do or say will get through to people who don't follow politics. They go to the supermarket, sees the eggs are more expensive and votes against the incumbent party.\n\nHarris was set up to fail, there really was not much the campaign could have done.", 'created': '2024-11-07 18:46:32', 'submission_id': '1glqsfq'}
{'comment': 'It’s hilarious that you think he’s ever leaving office', 'created': '2024-11-07 16:08:16', 'submission_id': '1glqsfq'}
{'comment': 'May as well move north before mass migration starts due to climate change.', 'created': '2024-11-07 16:33:27', 'submission_id': '1glqsfq'}
{'comment': 'Millions of people who voted in 2020 stayed home', 'created': '2024-11-07 15:53:38', 'submission_id': '1glqsfq'}
{'comment': "I hope so.\xa0\xa0\n\n\nIf we're being brutally honest, I was more excited for Tim Walz than Kamala Harris. She ran a helluva campaign and I'm happy I voted for her, but I wasn't fully onboard until she picked Tim. He has the progressive working-class appeal the party desperately needs.", 'created': '2024-11-07 22:51:06', 'submission_id': '1glqsfq'}
{'comment': 'Do u think Josh Shapiro will disappear?', 'created': '2024-11-08 03:24:31', 'submission_id': '1glqsfq'}
{'comment': 'Usually, older white guys are more popular. It’s sad that we can’t accept women in leadership positions but most women work and run households.', 'created': '2024-11-08 17:51:36', 'submission_id': '1glqsfq'}
{'comment': None, 'created': '2024-11-07 19:53:29', 'submission_id': '1glqsfq'}
{'comment': 'We probably would have won if he did a single term as promised and we actually got a primary \n\nThe DNC loves to fuck itself over tho', 'created': '2024-11-07 19:53:48', 'submission_id': '1glqsfq'}
{'comment': "> I really wish Biden has stuck to his promise of only running for a single term.\n\nAlthough I also wish he'd reconsidered and done it before the primary, I'm not sure any previous statement rose to the level of promise. In fact I only ever heard about it yesterday, and I'm a wonk who reads almost everything. Slate dug into it and it really appears to be mostly hearsay combined with a lot of Mandella effect. It just seems like something he would have promised due to concerns about his age.\n\n>Politico ran a piece in late 2019 under the headline “Biden Signals to Aides That He Would Serve Only a Single Term.” That piece includes the following assertion, attributed to an anonymous adviser: “If Biden is elected, he’s going to be 82 years old in four years and he won’t be running for reelection.” Fair enough. But the piece also includes this quote, attributed to another Biden adviser: “He’s going into this thinking, ‘I want to find a running mate I can turn things over to after four years but if that’s not possible or doesn’t happen then I’ll run for reelection.’ But he’s not going to publicly make a one term pledge.” And Biden personally told reporters that Politico’s report wasn’t accurate the same morning it was published.\n\nhttps://slate.com/news-and-politics/2024/06/biden-president-trump-rematch-one-term-promise-nate-silver.html", 'created': '2024-11-08 01:18:27', 'submission_id': '1glqsfq'}
{'comment': 'Yeah it just might have worked tbh.', 'created': '2024-11-07 21:01:28', 'submission_id': '1glqsfq'}
{'comment': 'Absolutely. Two people who have proven they can pierce the right-wing media filter and win allies in the process.', 'created': '2024-11-07 22:35:12', 'submission_id': '1glqsfq'}
{'comment': "From your lips to God's ears.", 'created': '2024-11-07 22:57:38', 'submission_id': '1glqsfq'}
{'comment': 'Rural Americans had a choice between a corrupt billionaire who would not fight for them and steal from them like he did for his entire life vs someone who grew up in that area and has spent his entire life fighting for their rights.\xa0\n\n\nThey made their choice, so they have to suffer the consequences. Too bad, we also have to suffer the consequences the same way.\xa0', 'created': '2024-11-07 15:41:40', 'submission_id': '1glqsfq'}
{'comment': "You don't leave politics to a card game.", 'created': '2024-11-08 01:32:01', 'submission_id': '1glqsfq'}
{'comment': 'Absolutely no excuses for 15 million voters to not show up.', 'created': '2024-11-07 15:24:46', 'submission_id': '1glqsfq'}
{'comment': 'I still find it hard to believe that many democrats actually stayed home. There has to be some foul play here.', 'created': '2024-11-07 17:28:10', 'submission_id': '1glqsfq'}
{'comment': "I don't feel bad for those voters.\xa0\n\n\nI hope they continue living their shitty lives sponging off the government and welfare checks not being able to afford anything and not having a good life.\n\n\n\xa0That's what they deserve for not voting.\xa0\nNow everyone that actually did vote to save democracy?\nYeah, I feel bad for them.\xa0\n\n\nAs for the huge Hispanic county in PA and Latinos across the nation, I won't feel bad them either whenever they end up getting deported.\n\n\nHow utterly stupid do you have to be to vote for someone that constantly insults you?\xa0\n\n\nPretty f*cking stupid.\n\n\nAlso, I heard that a lot of them voted for The Orange Dump because, and these are their words not mine, but they said because they believe women should be staying in the house. So f*ck those voters too. There all gonna get what they have coming to them.\xa0\n\n\nF*cking dullards.", 'created': '2024-11-07 15:47:41', 'submission_id': '1glqsfq'}
{'comment': 'I desperately want to see stats on who those idiots were.', 'created': '2024-11-07 17:54:48', 'submission_id': '1glqsfq'}
{'comment': "While I agree that those people should have showed up, we also need to make sure that we're offering a platform that people want. Trumps platform is obviously something people think they want, so we have to be able to convince people of the same.", 'created': '2024-11-07 15:34:30', 'submission_id': '1glqsfq'}
{'comment': 'Yeah they lost this election for us. I don’t want to hear a single fucking one of them have an opinion either. Don’t vote then shut up you know?', 'created': '2024-11-07 18:00:19', 'submission_id': '1glqsfq'}
{'comment': "Yup MAGA did what we expected they backed their guy\n\nWe didn't back our girl", 'created': '2024-11-07 20:27:32', 'submission_id': '1glqsfq'}
{'comment': "We're not going to get anywhere by pointing fingers. All that does is embolden the MAGA cultists who have been watching everybody do just that yesterday and laugh their asses off.\n\nWe need to focus on solutions instead.", 'created': '2024-11-07 15:19:46', 'submission_id': '1glqsfq'}
{'comment': 'Yup. No excuse for not showing up and voting, they had a chance to use their voice and decided not to, so I better not hear complaining from them these next 4 years.\n\nIt’s like seriously, I bet at least one swing state would’ve flipped if every one of those Dem voters actually went out there and voted.', 'created': '2024-11-07 15:33:28', 'submission_id': '1glqsfq'}
{'comment': "Fuck them too, they also deserve what they have coming. The ones who actually voted to protect the people are the only ones who have any right to think they don't deserve this.", 'created': '2024-11-07 16:49:14', 'submission_id': '1glqsfq'}
{'comment': "This is on them, too. It's on everyone except the people who voted D.", 'created': '2024-11-07 19:29:04', 'submission_id': '1glqsfq'}
{'comment': 'Yeah dude sucks for them but it’s actually the people who DID vote for trump to blame.\n\n\nStop trying to divide and start fucking attacking', 'created': '2024-11-07 15:43:44', 'submission_id': '1glqsfq'}
{'comment': 'No. Please no. Minnesota likes our senators. Alot. Walz can run for prez in 28 though.', 'created': '2024-11-08 05:19:10', 'submission_id': '1glqsfq'}
{'comment': 'i like tim walz more than kamala too', 'created': '2024-11-08 03:24:41', 'submission_id': '1glqsfq'}
{'comment': 'The thing about Tim is he’ll be just fine. On the SmartLess podcast, and several other interviews I’ve heard with him, It is very obvious. He is just a regular guy.\n\nDo I think he would’ve made a great vice president, absolutely!\n\nHis core values and view of the world are singularly unique. I phone banked over 1200 calls fit Kamala and Tim. In doing so, I spoke to almost 500 voters in the past 12 weeks.\n\nAdditionally, I was lucky enough to hear him speak in Columbus, GA, and got to shake his hand.\n\nWhile, I’m sure he’s justifiably disappointed, he really didn’t have designs on being vice president as few as six months ago, so I know he will be just fine.\n\nhttps://preview.redd.it/hymacejpqhzd1.jpeg?width=1031&format=pjpg&auto=webp&s=c39e669e32789c5864cf99252d11ecc094ab5489', 'created': '2024-11-07 15:39:29', 'submission_id': '1glqsfq'}
{'comment': "I've been telling people this for 8 fucking years.\n\nit was not complacency\n\nit was never complacency", 'created': '2024-11-07 16:38:21', 'submission_id': '1glqsfq'}
{'comment': "If you look at the turnout before 2020, this year's is completely normal. \n\n2020 was the outlier not the norm to hold future elections to, unfortunately.", 'created': '2024-11-07 19:49:24', 'submission_id': '1glqsfq'}
{'comment': "I totally get this but they weren't motivated enough to keep Trump out? 15M people... That's what absolutely throws me and why I think it is ingrained misogyny.", 'created': '2024-11-07 16:10:34', 'submission_id': '1glqsfq'}
{'comment': "In other words, Biden made the same mistake as Obama. He didn't wave his magic wand and immediately fix whatever particular issue is bothering the specific nonvoter.\n\nRunning the furthest-left economic administration we've seen since LBJ wasn't enough.", 'created': '2024-11-07 17:48:13', 'submission_id': '1glqsfq'}
{'comment': 'You are very lucky to have him!!', 'created': '2024-11-08 17:29:43', 'submission_id': '1glqsfq'}
{'comment': 'If I’m honest, I wish the campaign was more about them. It seemed to me the whole campaign was about how bad trump is. Which is good, but I don’t really feel like it swayed voters. It seemed to be a we’re not trump so vote for us!” Type thing. I wish it was more focused on them as people.', 'created': '2024-11-08 04:38:36', 'submission_id': '1glqsfq'}
{'comment': 'I disagree. If the concern was more about the economy and they believed that Biden/Harris was the cause, then they would have actually voted and voted for Trump. Since they voted not at all, I believe they did not want to vote for a female minority and they could not bring themselves to vote for a prick.\n\nIf they had had the option of another old, white man, then racism and sexism is removed from the calculus.', 'created': '2024-11-07 21:41:13', 'submission_id': '1glqsfq'}
{'comment': 'Should I give up already?', 'created': '2024-11-07 16:27:25', 'submission_id': '1glqsfq'}
{'comment': 'Thus the evidence that a primary would have improved the chances somewhat.', 'created': '2024-11-08 12:14:58', 'submission_id': '1glqsfq'}
{'comment': 'I hope not, he serves us excellently in PA', 'created': '2024-11-11 04:41:04', 'submission_id': '1glqsfq'}
{'comment': "I think Harris's margin was similar in Vermont, but Bernie understands the average American voter better than most of the Democrats do.", 'created': '2024-11-07 21:08:33', 'submission_id': '1glqsfq'}
{'comment': "Yeah it seems pretty clear that the average voter doesn't care about issues related to race/gender/sexuality/abortion, it's all too distant from their daily lives to matter to them. They care about the stuff Bernie talks about...jobs, the economy, the struggling working class. Universal healthcare is also a winning policy but for some reason most Democrats won't push hard for that.", 'created': '2024-11-07 21:22:31', 'submission_id': '1glqsfq'}
{'comment': 'Populism is bad and we shouldn’t encourage it\xa0', 'created': '2024-11-08 03:03:34', 'submission_id': '1glqsfq'}
{'comment': "Yeah, we'll never know for sure, but what we do know is that the US is tragically not ready for a female president yet.\n\nRegardless of the reasons, both Hillary and Kamala got roughly the same amount of votes in 2016 and 2024. 2024 is far more telling given the stakes involved... We chose a male rapist felon over a qualified woman.", 'created': '2024-11-07 21:35:15', 'submission_id': '1glqsfq'}
{'comment': 'I agree. This bungled last minute hand off screwed us, even though it was the best we could do under the circumstances.', 'created': '2024-11-07 21:07:10', 'submission_id': '1glqsfq'}
{'comment': "I keep reading that Biden promised not to run a second time, but I don't remember this.. Do you have a link?", 'created': '2024-11-08 03:24:21', 'submission_id': '1glqsfq'}
{'comment': 'Honestly, it blows my mind that they thought Biden could win again just giving what the general feel was. I’m fine with letting him run again, but tell him you know what you made promises to be a transitionary candidate. You’re more than welcome to run in the primary and if you win and you are no nominee and will throw our full weight behind you, but because of what you said and how it can be misconstrued, even if you didn’t mean it that way we’re gonna have a primary.', 'created': '2024-11-08 02:47:48', 'submission_id': '1glqsfq'}
{'comment': None, 'created': '2024-11-08 00:18:47', 'submission_id': '1glqsfq'}
{'comment': 'He’s only good as a talking head nothing more/nothing less. He’s not a populist and has no real working class agenda other than being a gay milquetoast white man. Also, us Black folks ain’t supporting his ass lol', 'created': '2024-11-08 05:22:14', 'submission_id': '1glqsfq'}
{'comment': "We need to take a page from Trump's playbook and just be as obstructive and obnoxious as possible. Constantly call out his bullshit. Block anything and everything possible at the state level, filibuster everything in Congress. \n\nObfuscate. Annoy. Antagonize.", 'created': '2024-11-07 23:00:24', 'submission_id': '1glqsfq'}
{'comment': 'Rural America doesn\'t exactly hear anything other than conservative bullshit. I actually live here, I know. From radio to tv ads to billboards to GOTV to sporting events to preaching to teaching.... it\'s all conservative good, liberal bad. \n\nOur local conservative officials usually run unopposed. Our local "Democratic party" is a couple old waaaaaay out there hippies who gatekeep and don\'t have contact with the state party.\n\nMeanwhile rural America has been decaying under Republican one party rule. Our jobs disappear, our hospitals close, our infrastructure crumbles. The county I live in has almost 30% in poverty.\n\nWhere are the Dems with a counter message? Or a message of any kind that applies to our situation?\n\nI live in Illinois.', 'created': '2024-11-07 15:52:48', 'submission_id': '1glqsfq'}
{'comment': 'WE have to suffer the consequences. I’d be happy if it was only them but we are stuck with this and can’t do anything about it. If we had the money we’d leave. We discussed as a family last night and decided New Zealand would be a great place to emigrate to.', 'created': '2024-11-07 20:17:25', 'submission_id': '1glqsfq'}
{'comment': 'Right. There is NO excuse. Thanks to them the country now has to endure four years of misery under the leadership of a convicted felon and a corrupt Senate and Supreme Court.', 'created': '2024-11-07 15:28:45', 'submission_id': '1glqsfq'}
{'comment': 'That is too strong of a statement without knowing why those voters didn’t show up. \n\nThe election lies in 2020 were followed by “election integrity” efforts. GOP state legislatures insisted changes were necessary in order to restore voters’ faith in elections. The same is true for some state and county election boards, some of those had changes in board members. There were groups with volunteers in various counties across the country that were using registered.voter lists and party affiliation to submit dozens of voter roll challenges at a time under the guise of election integrity. \n\nVoter intimidation could also have been a factor. It’s not a secret that some MAGAs are violent, racist, misogynist, and deranged. Add the fact that the focus was completely on swing states this time and some in other states may have chosen not to risk it.', 'created': '2024-11-07 17:07:52', 'submission_id': '1glqsfq'}
{'comment': "https://www.gregpalast.com/heres-what-we-do-now/\n\n\nSomeone just sent me this. It's a really interesting read. I'm curious if they just didn't show up or if the massive voter purges were a bigger factor", 'created': '2024-11-07 16:01:03', 'submission_id': '1glqsfq'}
{'comment': 'I am more pissed at them than those who voted for Trump honestly.', 'created': '2024-11-07 15:52:42', 'submission_id': '1glqsfq'}
{'comment': "All because they couldn't vote for a woman. Despicable", 'created': '2024-11-07 17:29:25', 'submission_id': '1glqsfq'}
{'comment': "It won't be 15 million when all the votes are counted but it will still be an embarrasingly bad number.", 'created': '2024-11-07 21:55:24', 'submission_id': '1glqsfq'}
{'comment': 'I tried to get the people around me to vote too... I only ended up getting one person. 2 of them were "too busy" to take 10 minutes to go vote.... yeah there were lines and stuff but I walked in, had my voter ID that was mailed. I went to my ward, signed in and voted. Walked out within 10 minutes. It\'s honestly not hard', 'created': '2024-11-07 17:56:42', 'submission_id': '1glqsfq'}
{'comment': "It's not 15 million, when all the votes are tallies in CA and nationally. It'd be around 5 million or so, still a loss. She gotten about the same amount of Biden votes in swing states.", 'created': '2024-11-07 18:44:03', 'submission_id': '1glqsfq'}
{'comment': 'There’s not but what do we expect when we weren’t given the choice on candidate? Biden is to blame for that. A lot of democrats didn’t like Harris and they forced her on us. Same thing they did with Clinton', 'created': '2024-11-07 17:00:14', 'submission_id': '1glqsfq'}
{'comment': 'It’s suspicious, isn’t it? I wouldn’t put anything past MAGA.', 'created': '2024-11-07 17:45:21', 'submission_id': '1glqsfq'}
{'comment': 'Well said.', 'created': '2024-11-07 16:16:26', 'submission_id': '1glqsfq'}
{'comment': 'Yes, it’s going to be very interesting.', 'created': '2024-11-07 18:04:54', 'submission_id': '1glqsfq'}
{'comment': 'Yes - I think the message was great but the messenger was not. In other words, many people were simply not going to vote for a woman President, much less a brown one.', 'created': '2024-11-07 15:37:03', 'submission_id': '1glqsfq'}
{'comment': 'Exactly right.', 'created': '2024-11-07 18:03:08', 'submission_id': '1glqsfq'}
{'comment': 'Exactly right.', 'created': '2024-11-07 22:37:49', 'submission_id': '1glqsfq'}
{'comment': "You literally cannot create a solution without figuring out what went wrong, and you need it to be very detailed.\n\nWhy did 15,000,000 people not vote? Why did 3,000,000 Trumpers not vote? \n\nUntil we know the answers to that, we aren't going to know anything.", 'created': '2024-11-07 15:26:34', 'submission_id': '1glqsfq'}
{'comment': 'I agree with you - next month, maybe. But for today and the days that follow, hell yes I’m pointing fingers! Not to negate your advice, but right now I am way too angry at the Dems who just didn’t show up. And, I don’t give a damn about what MAGA thinks - every single last one of them is a fascist who has willingly sold out their country to Trump, the wannabe dictator. Their opinion about Democrats is meaningless.', 'created': '2024-11-07 15:26:29', 'submission_id': '1glqsfq'}
{'comment': 'That’s the problem . We don’t point fingers and try to play nice and try to be the bigger person. We are not getting anywhere doing this. So the solution is to point fingers. They knew better. Democrats need to stop playing nice period and that includes calling out the dumbass democrats who stayed home. They voted for Trump with their non vote. They will be the first people on here complaining for the next 4 years too.', 'created': '2024-11-07 18:10:43', 'submission_id': '1glqsfq'}
{'comment': 'There’s no more solutions. This is it.', 'created': '2024-11-07 15:21:55', 'submission_id': '1glqsfq'}
{'comment': '100%.', 'created': '2024-11-07 15:24:31', 'submission_id': '1glqsfq'}
{'comment': 'Yes, I agree. The situation is appalling, it really is.', 'created': '2024-11-07 15:35:16', 'submission_id': '1glqsfq'}
{'comment': 'Exactly right.', 'created': '2024-11-07 16:56:25', 'submission_id': '1glqsfq'}
{'comment': 'I agree - he’s very grounded and has a wonderful support system around him. He wasn’t seeming the praise and glory of the Vice Presidency, so he can go back to his happy life and move on from this.', 'created': '2024-11-07 15:41:30', 'submission_id': '1glqsfq'}
{'comment': 'He was a great example of the average working man. He spoke like a union rep—articulate and blunt. I hope this is not the end of his time in the limelight.\n\n', 'created': '2024-11-07 20:44:43', 'submission_id': '1glqsfq'}
{'comment': 'Yeah, you know what, I’m sure for some or many, you’re correct. This sucks.', 'created': '2024-11-07 16:13:11', 'submission_id': '1glqsfq'}
{'comment': 'That’s right. Too many of biden’s voters weren’t satisfied with the returns on their expectations.', 'created': '2024-11-07 19:49:41', 'submission_id': '1glqsfq'}
{'comment': "The campaign was about more than that, but let's face it -- most voters aren't ACTUALLY interested in policy talk. They just aren't.", 'created': '2024-11-08 04:46:19', 'submission_id': '1glqsfq'}
{'comment': 'Good call-out on the margin, and I agree with you. I trust\xa0his read of the\xa0people.\xa0\xa0\n\n\nI think it\'s\xa0telling that the DNC Chair just put out a message calling Bernie\'s criticism "straight up BS." Now is the time to listen -- not retract to a defensive posture.\n\n\n\nhttps://thehill.com/homenews/campaign/4979136-dnc-chair-jamie-harrison-responds-bernie-sanders', 'created': '2024-11-07 22:25:30', 'submission_id': '1glqsfq'}
{'comment': 'https://preview.redd.it/ao668iopdkzd1.jpeg?width=828&format=pjpg&auto=webp&s=ee5f1aa94fa91dd906f0df1bc082dc3cad4c1bea\n\nThe counting is still not done but as it stands Trump is down 1.6 million votes\n\nHarris is down 13 million votes from Biden\n\nGen Xers love trump\n\nWomen and black people liked Harris. That’s it.', 'created': '2024-11-08 00:32:01', 'submission_id': '1glqsfq'}
{'comment': 'Alright. Stop running women. \n\nIt’s fucked up but it’s not what the country wants.\n\nStop running them', 'created': '2024-11-07 22:57:05', 'submission_id': '1glqsfq'}
{'comment': 'Oh that’s easy. Sticking to the plan and not shoehorning a candidate into the top of the ticket without a primary', 'created': '2024-11-08 00:20:18', 'submission_id': '1glqsfq'}
{'comment': '> Our local "Democratic party" is a couple old waaaaaay out there hippies who gatekeep and don\'t have contact with the state party.\n\nUnfortunately, that\'s not uncommon. I live in a Cleveland suburb and am one of three young people active (and the only young woman) in our city\'s Democratic club. It\'s mostly retired people.', 'created': '2024-11-07 19:28:40', 'submission_id': '1glqsfq'}
{'comment': 'Every state Dem party needs to turn inward and replace county leadership with passionate youth and provide mentorship and Logistical support. We have to start a counter culture movement based on workers rights, Medicare for all, social security expansion, and housing solutions.', 'created': '2024-11-07 19:14:37', 'submission_id': '1glqsfq'}
{'comment': "Even if they felt like a win was guaranteed, didn't 2016 teach them anything?", 'created': '2024-11-07 15:35:35', 'submission_id': '1glqsfq'}
{'comment': '>Thanks to them…\n\nThe 72.5million that voted for the convicted felon, J6 Leader, etc carry the brunt of the blame. The counting isn’t complete but it is looking like a large number of Libertarian voters chose to vote for DJT this time. That is making it appear he lost less voter support than he did.', 'created': '2024-11-07 17:20:36', 'submission_id': '1glqsfq'}
{'comment': 'I wish it was only 4 years. But his election will be felt for at least a generation or further and it really is the beginning of the end for the good ol US.', 'created': '2024-11-07 20:19:18', 'submission_id': '1glqsfq'}
{'comment': 'and frankly that’s the best case scenario 🙃🙃🙃', 'created': '2024-11-07 16:14:37', 'submission_id': '1glqsfq'}
{'comment': 'It will be more than 8', 'created': '2024-11-07 16:50:45', 'submission_id': '1glqsfq'}
{'comment': 'It’s cute you think it’ll just be four years. Democracy is over in America.', 'created': '2024-11-07 17:06:15', 'submission_id': '1glqsfq'}
{'comment': '4? 🤔', 'created': '2024-11-07 16:25:17', 'submission_id': '1glqsfq'}
{'comment': 'Have you ever thought to take a step back?\xa0', 'created': '2024-11-07 16:41:01', 'submission_id': '1glqsfq'}
{'comment': 'Here in Erie County, PA over 20,000 ballots were either mailed to the wrong person or not mailed out at all. Which led to a scramble for those 20,000 voters to not only be notified, but they were also required to go down to the county courthouse and fill out a provisional ballot.\n\nOn election day there were still 7,500 ballots that were never returned.\n\nThis seems pretty significant since Trump won the county by less than 2,000 votes. \n\nI\'m not one to complain about election integrity or "the steal." But it sure as hell feels like not everyone who wanted to vote got the chance.', 'created': '2024-11-07 17:19:03', 'submission_id': '1glqsfq'}
{'comment': 'Idiots who did not vote to save the country from fascism are to blame. \xa0Spare us the entitled bs.', 'created': '2024-11-07 17:10:41', 'submission_id': '1glqsfq'}
{'comment': 'I liked Harris a lot, but I can understand why some might not. Voters want to feel involved in the process and not being able to choose probably turned them away.', 'created': '2024-11-07 17:04:34', 'submission_id': '1glqsfq'}
{'comment': 'It’s MAGA, of course they’ll cheat. It’s all they ever do. I hope Congress looks into this. The news anchors were stunned when Trump’s “miraculous comeback” happened.', 'created': '2024-11-07 17:46:29', 'submission_id': '1glqsfq'}
{'comment': 'Yes, I think race and gender both played a role. As well as complacency. It seemed we moved to the right a bit to try to grab those deflecting but ended up alienating our own people, especially those more left. We need to get back to Obama era policies. Socialized Healthcare, making sure that small businesses can grow and flourished. Etc.', 'created': '2024-11-07 15:43:05', 'submission_id': '1glqsfq'}
{'comment': ">Why did 15,000,000 people not vote? Why did 3,000,000 Trumpers not vote?\n\nVoting against something/someone is a stronger motivator than voting for something. Our fear pathways are very strong.\n\nWhy did more of ours stay home? Because Democrats have this unrealistic expectation that our candidate has to be perfect. I mean, Kamala was perfectly suited for the job. But no, people have to paint her like a witch because she recognizes I/P is a delicate geopolitical issue. \n\nLike, I don't know what Democrats want in that regard. The Democratic talent pool is super deep. Way deeper than Republicans'. (Believe me, JD Vance would get his ass handed to him in a presidential election. He the charisma of Hillary Clinton and the policy literacy of Sarah Palin.) But it doesn't seem deep enough for our own voters.", 'created': '2024-11-07 15:49:09', 'submission_id': '1glqsfq'}
{'comment': "No amount of finger pointing and casting blame is going to change the election results. What matters now is fighting back against the impending tyranny.\n\nPeople are already making Reddit threads about getting their fucking neighbors deported. That's CLEARLY more important right now.", 'created': '2024-11-07 15:29:21', 'submission_id': '1glqsfq'}
{'comment': 'Yeah and I totally get it. I so wish they won, but I just feel like they were flawed in many ways. But if they decide to run in 2028, they’ll get my vote!', 'created': '2024-11-08 04:47:16', 'submission_id': '1glqsfq'}
{'comment': 'Minority women liked Harris. White women did not.', 'created': '2024-11-08 03:26:19', 'submission_id': '1glqsfq'}
{'comment': None, 'created': '2024-11-08 00:55:57', 'submission_id': '1glqsfq'}
{'comment': None, 'created': '2024-11-08 00:24:52', 'submission_id': '1glqsfq'}
{'comment': 'Also a problem where I am from. The local democratic organization is really cliquey and a lot of gatekeeping going on. They are suspicious of new people who want to get involved, and they really do nothing but sit around a couple times a year and bs over coffee.', 'created': '2024-11-07 21:57:35', 'submission_id': '1glqsfq'}
{'comment': 'You have a city democratic club? Amazing.', 'created': '2024-11-07 21:11:36', 'submission_id': '1glqsfq'}
{'comment': "This is a good suggestion. I understand monetary resources are finite, but there are lots of people out here who are reachable if only there were people trying to reach them. \n\nRepublicans have been building in a very similar way out here from the ground up almost completely uncontested since Reagan was in office. Plus conservative churches lure people in with food pantries and other assistance only available to members, then indoctrinate. When victory or defeat is so often by a slim margin but winner takes all, it's dumb to abandon 20% of the population.", 'created': '2024-11-07 21:05:34', 'submission_id': '1glqsfq'}
{'comment': 'We BEGGED people to vote. Unfortunately the tsunami of political texts might have been a turnoff for a lot of Democrats. I hated the manipulative language they used but goddammit, there was no way I wasn’t voting for her even though I live in friggin’ Alabama.', 'created': '2024-11-07 17:07:06', 'submission_id': '1glqsfq'}
{'comment': 'I guess not. 2016 to 2020 was an absolute nightmare, capped by a pandemic that killed thousands of Americans. And what happened January 6th? - Trump fomented a riot, and his followers defecated on the Senate floor. And now they want 4 more years of that? No thank you.', 'created': '2024-11-07 15:39:42', 'submission_id': '1glqsfq'}
{'comment': "They burnt their hands on the oven, forgot they got burned, and are now touching it again despite being warned that it's even hotter now.", 'created': '2024-11-07 21:41:58', 'submission_id': '1glqsfq'}
{'comment': 'I tell you, the post mortem on this election is going to be agonizing.', 'created': '2024-11-07 17:21:41', 'submission_id': '1glqsfq'}
{'comment': 'I disagree. If democrats show up we win. That’s just statistics. Republicans obviously suck for who they voted for but if the democrats showed up like they did in 2020 we could have won. This is on them and I hope they don’t come on here with their criticisms of a Trump admin since they stayed home. I’m far more pissed off at the non voting Dems.', 'created': '2024-11-07 18:02:04', 'submission_id': '1glqsfq'}
{'comment': 'I think we’ll fare better this second time around, I really do. For one thing, we’re more prepared. We’ve seen this play out before - it was ugly and stressful, but whatever he tries to pull won’t be a novelty. It won’t be easy, but once he’s out of office, after making a huge mess of it like the last time, the Democrats will have had 4 years to prepare and will be ready.', 'created': '2024-11-07 22:41:02', 'submission_id': '1glqsfq'}
{'comment': 'Right - it’s gonna get a lot worse!', 'created': '2024-11-07 16:15:18', 'submission_id': '1glqsfq'}
{'comment': 'I don’t think so, for some reason. I think 4 years of Trump/Vance will do it. In the meantime, we need all of those Latina and Black mothers to slap their sons upside the head and tell them to get with it.', 'created': '2024-11-07 16:56:01', 'submission_id': '1glqsfq'}
{'comment': 'Have you ever thought to take a step forward?', 'created': '2024-11-07 16:56:53', 'submission_id': '1glqsfq'}
{'comment': 'That is an odd way to handle their own mistake. Idk anything about Erie, but it’d definitely be a major pain in the ass to have to go downtown to the county courthouse in my county, especially if it was limited to normal 8-4 Mon-Fri business hours, and for a provisional ballot. They should have included an option for a provisional ballot in person on Election Day at the person’s normal polling location.', 'created': '2024-11-07 18:06:47', 'submission_id': '1glqsfq'}
{'comment': 'Just telling it like it is. We aren’t like the other side if we don’t like the candidate we just don’t vote. They vote regardless. I didn’t like her but I still voted for her but about 15 million didn’t feel the same way', 'created': '2024-11-07 17:17:28', 'submission_id': '1glqsfq'}
{'comment': 'It is stunning, and it doesn’t pass the stink test.', 'created': '2024-11-07 17:49:42', 'submission_id': '1glqsfq'}
{'comment': 'If that was the reason, then it’s absolutely fair to look at the millions of Democratic voters who stayed home and tell them that they fucking failed this country and the problems we will face in the coming decades are their fault.\n\nHarris/Walz had a perfectly respectable platform, but a lot of people wanted to feel like the main character.\n\nI don’t give a shit that they didn’t like Harris as much as they wanted to, or thought that she wasn’t a perfect candidate, you have to be able to have the basic understanding to see how another Trump presidency and the policies it has called for is going to impact this country: the economy **will** crash, consumer and public health protections will be slashed, minorities of every kind are going to be put in harm’s way, global stability is threatened, the climate will absolutely cross the tipping point. Basically anything that can go wrong probably will.', 'created': '2024-11-07 15:53:53', 'submission_id': '1glqsfq'}
{'comment': "yep. peace doesn't sell to people. Ds started fixing things and people got complacent. rump has one thing: a base he keeps pissed off so they show up. It's very hard to sell peace to lazy people.", 'created': '2024-11-07 16:10:34', 'submission_id': '1glqsfq'}
{'comment': 'Non based take. \n\nWe tried twice. Hilary did a load better than Harris which only means that a black woman is absolutely off the table. \n\nI’m not burning down the country because people dont want someone. Women and minorities are elected frequently in congress and the senate. \n\nIf you want to win the head of office you gotta be the time the nation wants. It sucks to say but it’s been proven that a progressive candidate has no chance as the president of the United States. \n\nDon’t say Obama he was a moderate that war drummed to gain progressive support.', 'created': '2024-11-08 01:24:52', 'submission_id': '1glqsfq'}
{'comment': 'Simple \n\nPeople didn’t turn out because of corruption once again. \n\nI voted for Harris because I dislike trump and already voted for him in 2016.\n\nHe lost votes from last time. People were disillusioned and didn’t show up to vote. People who voted for Biden voted for trump because Harris was a weak, non traditionally elected president that got sweeped in 2020 by Biden.', 'created': '2024-11-08 00:27:21', 'submission_id': '1glqsfq'}
{'comment': "I have no idea what this couple does to be honest. You'd think the state organization would get involved if nothing is happening but...🤷\u200d♀️", 'created': '2024-11-07 22:10:22', 'submission_id': '1glqsfq'}
{'comment': "If anything this current election underscores the heads of the Dems truly are out of touch with the realities outside of their strongholds. Rural is reachable with effort. They need to think with a large net over a long period of time. If it's not into late, that is. Those of us with these mentalities go against their ability to profit off the party and therefore we will not be recruited.", 'created': '2024-11-07 21:15:51', 'submission_id': '1glqsfq'}
{'comment': 'Voting should be mandatory. Voting should also be a federal holiday.\n\nThe only excuse to not make it mandatory and a federal holiday is so that they can make it more difficult to vote... so that we get outcomes like this, where 1/5 of the country decides for the other 4/5', 'created': '2024-11-07 18:20:21', 'submission_id': '1glqsfq'}
{'comment': 'Millions', 'created': '2024-11-07 15:44:43', 'submission_id': '1glqsfq'}
{'comment': 'I know conceding is the right thing to do, but MAGA has done and said so many sketchy things that the extra wide swings in the rust belt states deserved more attention before conceding, at least machine recounts. Their accusations are confessions. All the ways they thought Democrats could have cheated in 2020 gave them an opportunity to get information about how the systems work. Idw to think there was voter fraud involved but it’s plausible on the county level in the smaller counties and they’ve shown they’re more than willing to ignore the will of the voters.', 'created': '2024-11-07 17:30:31', 'submission_id': '1glqsfq'}
{'comment': 'I am not going to read the news for the next four years. It’s the only way I’ll be able to make it through.', 'created': '2024-11-07 17:56:42', 'submission_id': '1glqsfq'}
{'comment': 'Democrats are not responsible for Trump making it into the White House, his supporters are as well as GOP politicians, rightwing media, and the crooked judge in FL as well as the SCOTUS majority. \n\nBlaming and being angry at democrats that did not vote will not solve a problem. It really sucks but it is what it is. I’m sure they’re being harder on themselves than anyone else could be. There is a positive though! They’ll definitely show up in 2028 after spending 4 years regretting not voting this year.', 'created': '2024-11-07 18:46:06', 'submission_id': '1glqsfq'}
{'comment': 'Be disappointed in the Dems that did not vote, be pissed at the people that voted for DJT. \n\nMisinformation and disinformation have been drowning out accurate information for years. There were also at least 4 countries pushing troll campaigns. Those aren’t necessarily about the misinfo, their main goal is to increase animosity and division. A topic with a large number of people that have strong feelings about it provides an opportunity for trolls to take advantage of those strong emotions. \n\nIn 2016, the trolls intensified the anger towards Hillary and the DNC. That lead to an “All or None” mentality with a noticeable number of “Bernie or no Democrat” voters. “All or None” was the stance of Uncommitted but with foreign policy as the “All” and their votes as the “None”. It’s highly likely trolls were targeting that group because of the strong feelings and the complete lack of logic in either outcome being equally bad. Strong emotions can cloud judgement.', 'created': '2024-11-07 18:33:41', 'submission_id': '1glqsfq'}
{'comment': 'You’re assuming there will be free and fair elections in four years. There will not.', 'created': '2024-11-07 17:07:12', 'submission_id': '1glqsfq'}
{'comment': "The courthouse is located across the street from a college campus, so parking is practically impossible in that area of downtown. People avoid going Downtown for the most part. So I'd assume some just didn't want to deal with the hassle.", 'created': '2024-11-07 19:02:33', 'submission_id': '1glqsfq'}
{'comment': 'This is asinine at best. Entitled bs- you’re not marrying the candidate. Just choosing the one closest to ideal. \xa0 This only helps the other side and hurts the marginalized .', 'created': '2024-11-07 17:42:11', 'submission_id': '1glqsfq'}
{'comment': 'I understand people are upset about the people who stayed home, but we really have to consider the kind of person Trump is. He’s been confirmed to be a fraud all his life. He cheats at everything! And we saw from 2020 that politics is included. He has too many close ties to the speaker of the house, the Supreme Court, and Musk. If you don’t think there’s foul play, then I don’t think you know what Trump is capable of.', 'created': '2024-11-07 18:10:31', 'submission_id': '1glqsfq'}
{'comment': "I agree with you as someone who is definitely more left than center. I voted for Harris. And we can blame them all day but at the end of the day we have to figure out how to fix it. We have to get people to want to get to the polls. We have to provide solutions, show how the other side doesn't actually provide a better economy and occasionally play dirty like they do.", 'created': '2024-11-07 15:57:18', 'submission_id': '1glqsfq'}
{'comment': 'Progressive president you’re hilarious', 'created': '2024-11-08 02:50:09', 'submission_id': '1glqsfq'}
{'comment': None, 'created': '2024-11-08 00:34:20', 'submission_id': '1glqsfq'}
{'comment': "I'm not sure they're in touch with the reality of life for a lot of people even inside their strongholds. If only they would stop looking down and finger wagging so they can *listen*. Then act. It's not complicated.", 'created': '2024-11-07 21:20:24', 'submission_id': '1glqsfq'}
{'comment': 'Yes, millions of people died horribly from that pandemic. Trump mishandled the entire situation, which was no surprise at all.', 'created': '2024-11-07 15:48:16', 'submission_id': '1glqsfq'}
{'comment': 'It will be annoying AF, but keeping up with news and current events is necessary. DJT won this election with nothing but lies, misinfo/disinfo and completely uninformed voters, the only real tool for combatting that ATM is staying informed. \n\nIf it’s really annoying BS, the monologues of the various late night shows (Colbert, Kimmel, Meyers) are my go-to because at least they mix in jokes. They’re not technically news but it’s better than fully checking out.', 'created': '2024-11-07 19:53:31', 'submission_id': '1glqsfq'}
{'comment': 'Same here. It’s going to take a lot of discipline, but it’s the only way I can keep sane.', 'created': '2024-11-07 18:04:31', 'submission_id': '1glqsfq'}
{'comment': 'Democrats that didn’t vote are absolutely responsible. If they show up we win every time. That’s just statistics. It’s their fault. Being angry and blaming non voters will solve a problem. Hold those that stay home but like to sit here and complain a problem. They are not being hard on themselves are you kidding? They didn’t want Kamala in charge so they got exactly what they wanted. You need to wake up. I’m as liberal as it gets but the people you should be mad at are fellow democrats. Republicans were always going to vote republican because they back their candidate trash and all. Democrats that don’t like their candidate just don’t vote.\n\nI agree I think 2028 will have big numbers for Dems but if we get into a cycle of showing up because shit got bad, then not showing up, then showing up that’s toxic.', 'created': '2024-11-07 20:44:12', 'submission_id': '1glqsfq'}
{'comment': 'No we are', 'created': '2024-11-07 20:28:49', 'submission_id': '1glqsfq'}
{'comment': 'That is how it is for the courthouse where I live except there isn’t a university and the main pay-to-park lot a quarter mile away is closed for construction projects. \n\nPA has around 51k less votes compared to 2020, the other 4 swing states that have been called had increases in total votes. Trump and Stein were the only 2 with increases compared to 2020.', 'created': '2024-11-07 23:05:05', 'submission_id': '1glqsfq'}
{'comment': 'Yes but explain that to the 15 million that didn’t show up. Democrats don’t vote if they don’t like the candidate. They should have completely gotten away from this administration and propped up someone else like walz as the candidate', 'created': '2024-11-07 17:54:03', 'submission_id': '1glqsfq'}
{'comment': 'Exactly. He’s been a cheater all his life and gotten away with it - why start now? /s', 'created': '2024-11-07 18:12:28', 'submission_id': '1glqsfq'}
{'comment': 'The data supports me. \n\nTrump lost supporters from last time. \n\nBy the time the counting is done Harris will be close to his number in the popular vote \n\nNo one gave a fuck about Harris.', 'created': '2024-11-08 00:35:16', 'submission_id': '1glqsfq'}
{'comment': 'And the bird flu has been found in pigs recently. That’s exactly how the 1918 pandemic began. Let the fun begin!', 'created': '2024-11-07 17:58:57', 'submission_id': '1glqsfq'}
{'comment': 'Check the numbers. Harris picked up more votes than Biden’s 2020 totals in GA, NC, and WI (TBD for AZ & NV). \n\nTotal votes in PA were 51k less than 2020 but Harris received 115k less votes than Biden in 2020. She received 84k less than Biden in Michigan but there were 89k more total voters compared to 2020. \n\nThose voters can make it up to everyone at least a little by changing their party affiliation to Republican on Inauguration Day. We all should. It’d send a message to GOP Congress that the MAGA base isn’t the only way they can get primaried.', 'created': '2024-11-08 00:04:10', 'submission_id': '1glqsfq'}
{'comment': 'PA is the only swing state out of the 5 called that did not have an increase in total votes compared to 2020. PA & MI are the only 2 out of the 5 swing states Harris did not receive more votes than Biden. The popular vote has Harris’s total low but the voters that sat out in non-competitive states did not change the outcome of the election. \n\nCan we at least put Jill Stein higher on the list than the democrats that didn’t vote? As an added bonus, linking her name to Harris not winning may put an end to Stein’s fundraising through campaigning schemes.', 'created': '2024-11-07 23:52:16', 'submission_id': '1glqsfq'}
{'comment': 'Then they better not complain or have an opinion. If they stayed home because they don’t like Kamala then they support Trump whether they like it or not. That’s what staying home supported.', 'created': '2024-11-07 18:07:20', 'submission_id': '1glqsfq'}
{'comment': 'This is why we are on the verge of climate collapse, this is why kids are shot in schools, this is why worker protections will continue to weaken, this is why our Supreme Court will be even more radical, \xa0this is why Ukraine and Europe are in grave danger, this is why we are inching closer to dictatorship, this is why corporations are people my friend, this is why the safety net will be further weakened, this is why millions with pre-existing conditions will lose health care…..But go ahead and stay home because you didn’t get a damn pony.', 'created': '2024-11-07 18:24:44', 'submission_id': '1glqsfq'}
{'comment': None, 'created': '2024-11-08 00:41:07', 'submission_id': '1glqsfq'}
{'comment': 'Yep. The darkness will grow.', 'created': '2024-11-07 18:03:47', 'submission_id': '1glqsfq'}
{'comment': 'I didn’t stay home. I voted Harris. They will learn quick when prices get even more out of control with the new tariffs', 'created': '2024-11-07 18:29:59', 'submission_id': '1glqsfq'}
{'comment': 'Harris was weak. Millions of voters didn’t turn out. Trump likely peeled Centrist Biden voters because Harris was a terrible candidate.', 'created': '2024-11-08 00:42:17', 'submission_id': '1glqsfq'}
{'comment': 'Didn’t mean you specifically. \xa0 Meant the entitled ones who instead of contributing to progress have caused us to regress. \xa0', 'created': '2024-11-07 18:37:23', 'submission_id': '1glqsfq'}
{'comment': 'The internet has turned into a shithole full of lies and propaganda fueled by algorithms.', 'created': '2024-11-07 16:09:08', 'submission_id': '1glqrno'}
{'comment': "Having no primary and only 107 days to campaign definitely didn't help.", 'created': '2024-11-07 16:30:27', 'submission_id': '1glqrno'}
{'comment': "Eggs cost $3 at Walmart.\n\nGas is the exact price today as it was 15 years ago. \n\nTrump told his minions to vote against the bipartisan border bill.\n\nAnyone using the economy and border as justification for a Trump vote is full of shit.\n\n15 million democrats who stayed home because they didn't want to vote for a woman should be ashamed of themselves.", 'created': '2024-11-07 15:09:57', 'submission_id': '1glqrno'}
{'comment': 'Ask yourself: why did he win?', 'created': '2024-11-07 16:27:41', 'submission_id': '1glqrno'}
{'comment': "need to clarify about this 15 million votes thing. that is the nationwide total votes that dems lost from 2020. they could all be from the pacific states and new york for all we know. the battleground states, where it matters, mostly showed the increase of turnout as reported. republicans flipped swing voters that they lost in 2020 while gaining most of the new voters.\n\nharris lost because she finished her campaign mostly focusing on abortion, democracy and trump's character. in hindsight and to some critics who always knew, she needed to end strongly with the economy and border. and that makes sense as those were always the weakest points. voters voted accordingly.\n\nit is so crushing too. we know how hard she worked, and just a miscalculation in the end tanked it all.\n\nit's looking like a red wave. wrath of the culture war. gotta learn from this and buckle up these next 2 years lol.", 'created': '2024-11-07 16:07:28', 'submission_id': '1glqrno'}
{'comment': 'Take a malignant narcissist, add in a pathological liar, stir in a population that is semi-literate, add a touch of short sighted capitalism and throw in social media channels that the semi-literate gobble up in their spare time. Shake viciously and then add a heavy dose of totalitarian media manipulation. Bingo! The greatest con job the modern world has ever seen!', 'created': '2024-11-07 20:25:00', 'submission_id': '1glqrno'}
{'comment': "1. During the past 4 years, not hammering home the message of corporate greed as a result of high prices. There was one anti-price gouging bill when Trump was president. Dems should have been trying to get those through over and over again and getting on every platform they could to criticize GOP over their failure to pass something.\n2. During the past 4 years, not bragging more about what they are doing for infrastructure, record high job growth and stock market gains. Trump would have been tooting his own horn over and over.\n3. After the border bill failed due to Trump's meddling, Biden should have declared a national emergency at the border and sent troops down.\n4. Having a woman candidate. Some people(backwards ass) won't vote for a woman. Already saw it happen with Hillary.\n5. Putting too much emphasis on MSM and not the internet.\n6. Not fighting dirty. Trump fights dirty all the time, learn something.\n7. Not putting more effort into getting workers back on their side.", 'created': '2024-11-07 15:54:25', 'submission_id': '1glqrno'}
{'comment': 'Just one more for the pile, a 10+ year campaign versus a 90 day campaign.', 'created': '2024-11-07 21:07:42', 'submission_id': '1glqrno'}
{'comment': 'Bros, Hispanic men and evangelicals refused to vote for a woman of color.', 'created': '2024-11-07 15:33:49', 'submission_id': '1glqrno'}
{'comment': 'There’s many factors. I did see a video where Brian Cohen talked about needing more left/progressive people speaking out and putting out constant propaganda. He makes a good point. The top podcast in America are mostly right-wing. To make matters worse. You got Elon letting people talk wild stuff and so much disinformation on X it’s ridiculous.', 'created': '2024-11-07 22:07:41', 'submission_id': '1glqrno'}
{'comment': "4 things.\n\n\\#1 Democrats didn't get out and vote. There were 15 million less democrats voting this time vs 2020.\n\n\\#2 Trump sold America the oldest marketing trick in the book. Someone is getting something you should or shouldn't be getting. It always hit people emotionally.\n\n\\#3 Kamala never addressed issues that were hitting EVERYONE and that was inflation and how to stop it. Trump said it was immigrants causing it. He would get rid of them. Abortion and healthcare isn't a big deal to most, while it is a big deal to some women. Most people can't afford healthcare cause insurance is at the top of inflation 400% higher than previous years. Lower rent and every day goods are what people need now.\n\n\\#4 Kamala is a woman, a woman of color. America is still a very sexist country cause America is slow to adopt progressiveness and cultural norms. America is a huge Christian and Catholic country too. Women are second to men in religion. Lots of push back from men too who see their status at the top shrinking and they are frustrated. Women are also held to a higher standard than men.", 'created': '2024-11-07 22:52:21', 'submission_id': '1glqrno'}
{'comment': "People are extremely hateful. I was walking past a little old black lady in aldis who was on the phone saying she couldn't wait for trump to deport the illegals.\xa0\n\n\nThat's when I knew we were fucked. And my BF got mad at me for noticing her saying that and told me it's not my business.\n\n\nEveryone just showed their true colors and I've been warning about it for years.", 'created': '2024-11-07 23:10:30', 'submission_id': '1glqrno'}
{'comment': "Many, mostly covid. Biden-Harris inherited the worst and most of covid, and it is ultimately associated with them. Also, incumbent parties during covid all around the world are being voted out, so this ain't an outlier. \n\nThere is also Russian interference in Georgia,Arizona, and Michigan. Fake bomb threats were called in and were sourced back to Russia.\n\nThere is also the ballot burning around the country,like in Washington\n\nOne of the biggest is the news.\nCorporate media like the NYT,CNN, and others have failed to report on Trumps controversial moments and the terrible things he says.\nThere are also puppet news stations like FOX and Newsmax that only show pro-Trump propaganda.\nMost people get news from,well, the news. People read headlines that are mostly vague. People don't look into things and take them at face value.\nPeople see these vague headlines, and they don't look closely and just assume things, usually the opposite intention of the articles. \nBut overall, the news has simply failed to do its job..\nReport facts!\n\nAlso, Kamala Harris's campaign was only around 100 days. This is short for campaigns, especially compared to Trump...\nWho has been running his campaign for 4 years.\n\nOverall, it is many issues, and people can point fingers and blame at so and so.\nThis doesn't really matter, kamala did everything right. It just wasn't the right time.\n\nThe fact is, Trump won, and we just need to bounce back from this temporary setback and rebound during the 2026 midterms and hopefully win in 2028. People will regret voting for trump, no doubt about it.", 'created': '2024-11-08 05:13:02', 'submission_id': '1glqrno'}
{'comment': 'It annoys me beyond words to read on here that it’s “only because she’s a woman, and woman of color”. Stop being so full of yourself and playing the victim card. Yes, a few assholes might have decided to not vote for her because she’s not a white dude, but that’s not the main reason! \n\n- 1st reason: Dems not reading the room after the 2022 midterms (if not earlier) that no one wanted Biden anymore — paired with a false sense of loyalty to him (talk about country over party…) \n- 2nd reason: Biden not properly establishing a successor as he had promised he would, and him hanging on way too long / dropping out with no time & no process left.\n- 3rd reason: paired with 1 & 2, Dems once again pushing a candidate top-down. \n- 4th reason: once again a campaign focused too much on the opponent rather that saying HOW democrats / Kamala would make things better for people (and differently from Biden) \n- 5th reason: our brand is completely f*cked! We’re so desperately trying to not offend anyone that in the end no one is happy and we keep revolving around our nice phrases that don’t mean anything to the average voter. Not even talking about (young) men’s perception of Dems — that’s a whole other topic. \n\nAsk yourself: what does the Democratic Party currently actually stand for? What actually changed from 2016 to now? Nothing if you ask me (same old Clinton-Obama-Pelosi-Schumer brigade, just look at the DNC lineup)', 'created': '2024-11-07 16:45:01', 'submission_id': '1glqrno'}
{'comment': 'Half the people are dumber than average and half of those people are even dumber.', 'created': '2024-11-07 16:19:23', 'submission_id': '1glqrno'}
{'comment': 'its the american people who voted, and it still baffles me that they prefer to continue to be manipulated and lied to into a false hope of a horrible dictator. Instead of waking up in reality that this is the real world of the country its in the shithole in', 'created': '2024-11-07 21:01:32', 'submission_id': '1glqrno'}
{'comment': "Most of the people who chose her didn't actually get up off their fat fucking lazy asses and vote.", 'created': '2024-11-07 21:47:41', 'submission_id': '1glqrno'}
{'comment': 'Because 14 million Biden voters didn\'t turn out for her.\xa0\xa0\n\n\n\xa0With the Democratic breed, conditions have to be just right for them to come out and vote. Not too left, but not too center, and maybe a little right, but not too right. Woke, but not too woke. And God forbid you not be "inspiring." Or whatever that means.\xa0\n\n\n\xa0The Republican breed, on the other hand, will vote for a bucket of cold diarrhea.\xa0\n\n\n\xa0I\'m not angry with Trump voters. They did what I knew they they would do.\xa0\n\n\n\xa0I\'m pissed with those who didn\'t show up. I don\'t want to hear about the short campaign, or Biden should have dropped out sooner. Voters should be primed to show up ANYWAY. This is why Trump got 3 supreme Court pics. This is why Roe got overturned.\xa0\n\n\n\xa0I thought we learned this lesson in 2016, but I guess not!\xa0', 'created': '2024-11-07 22:17:01', 'submission_id': '1glqrno'}
{'comment': "Apathy, so many who voted for Biden didn't show", 'created': '2024-11-07 22:45:25', 'submission_id': '1glqrno'}
{'comment': 'Fox entertainment.', 'created': '2024-11-07 23:40:51', 'submission_id': '1glqrno'}
{'comment': 'Brainwashing… the left presented facts against Trump, the right made up lies and pushed them to the most vulnerable groups\n\nAlso, 15M of us didn’t fucking vote… now we all are punished', 'created': '2024-11-07 18:13:52', 'submission_id': '1glqrno'}
{'comment': 'Because the vast majority of American men are insecure about their manhood and chose to flog their country by attaching themselves to a convicted rapist?', 'created': '2024-11-07 16:14:47', 'submission_id': '1glqrno'}
{'comment': '15 Million Dems sat out the most consequential election of our collective lifetimes. A large swath of Gen Z, who we previously labeled as a generation of intelligent, motivated progressives, either stayed home or broke for Trump. Latino men chose a racist despot over their own pride in a bid to be accepted as white. \n\nAnd I really will never forgive any of them. They chose this administration with their actions, or their inaction. So, let ‘em suffer. Let them suffer physically, financially, emotionally. It’s callous as fuck, I absolutely agree, and if what’s been planned will come to pass, then I am certainly going to suffer right alongside them; but it might well be the only way for any of these people to truly learn the consequences of their decisions.', 'created': '2024-11-07 16:25:07', 'submission_id': '1glqrno'}
{'comment': 'Anyone else feel like it’s not over yet?', 'created': '2024-11-07 18:39:28', 'submission_id': '1glqrno'}
{'comment': 'Bernie is right when he says the democrats are losing the working class vote', 'created': '2024-11-07 17:41:31', 'submission_id': '1glqrno'}
{'comment': 'Because 15,000,000 stayed home instead of voting.', 'created': '2024-11-07 20:54:54', 'submission_id': '1glqrno'}
{'comment': "Harris lost because of those Democrats who didn't care to vote. And this means that those Democrats are happy with having Trump and not Harris. Isn't it amazing? We didn't lose because of Republicans, we lost because of us.", 'created': '2024-11-07 22:17:05', 'submission_id': '1glqrno'}
{'comment': 'The two greatest reason is she lost are:\n1. Rupert Murdoch.\n2. Jeff Bezos.\n\nRighties never even saw Trump’s disgusting antics or heard his anti-American statements.', 'created': '2024-11-07 23:39:37', 'submission_id': '1glqrno'}
{'comment': "She's female. \n\nThat's the reason. \n\nRace/ ethnicity made a bit of difference, but not nearly as much as the lack of penis.", 'created': '2024-11-07 15:23:23', 'submission_id': '1glqrno'}
{'comment': 'Don\'t search for one reason because there are likely many, but yes, "the price of eggs and the border" is a big factor. These were frequently rated as the top issues for voters. Rightly or wrongly, voters also believed that the current administration did poorly on these things. Harris was interpreted as the incumbent (probably in part because she didn\'t have time for a full campaign to define her own way and in part because the biggest tick on her resume was being VP in the current administration) so that counted against her. The perceived state of the economy has long been a VERY strong predictor of electoral outcomes.\n\nAlso, it\'s worth realizing that the average voter is not analyzing policy. If they don\'t like the status quo, they vote for change. They don\'t understand the status quo policy. They don\'t understand the change policy. They didn\'t like how things were, so they voted for change (or, for many, they simply didn\'t vote to endorse the status quo which translated to a Trump win). Many people\'s memory of Trump is also complicated... they were fine until COVID hit and they blame many of the bad times on COVID itself so in our "distant" memory that gave Trump a pass for many.\n\nIf it wasn\'t just the economy, the question is: was the problem her messaging or her platform? Harris ran a pretty good campaign all things considered. So, while there are many things one could say about messaging, that\'s probably not "the" downfall. So then it really just comes down to what was it about her platform that failed. Democrats don\'t need to adopt Trump\'s platform, but they do have to acknowledge that despite good campaigns, they are struggling to win the electoral college outside of 2020 when there were major relaxations of in person voting requirements that likely impacted turnout combined with bad times in the form of COVID for the incumbent. It seems to me like the Democrats need to ask themselves why their platform lost appeal in every demographic except black women. That\'s not some fluke, it was across the board. (And the fact that all demos saw an increase for Trump indicates that the answer here was not *just* turnout. It\'s not just that "less democrats showed up". People voted differently.) And the idea that the Democrats\' platform is lacking is [something that has been talked about a lot in the past decade](https://x.com/BernieSanders/status/1854271157135941698).\n\n> In a scenario like this, he will basically have unchecked power.\n\nWhile I completely appreciate that he has a tighter control over his party than before, there is still a limit. Congresspeople are still going to have a limit in terms of what we will get them re-elected in their own districts and the SCOTUS, while definitely Trump-friendly, has also pushed back at Trump at times. So, while I\'m not painting a rosy picture, there are *some* checks on his power. A lot of Trump supporters I talked to rest their support on a belief that Trump does not mean all of the things he says. If Trump actually, for example, put Cheney in front of a firing squad, he would lose a majority support in congress and SCOTUS. If he tried to nationally ban abortion, it\'s plausible that he\'d struggle to get the last few congresspeople necessary to get a full majority. If he make a bill to fully fund a wall or a budget that exclusively partners with SpaceX, he could probably get that through if that\'s how he wants to spend political capital.\n\n> Does it boil down to misogyny and racism on why Kamala lost?\n\nI haven\'t really seen any evidence to support this. If anything, race and sex helped her since black women is AFAIK then ONLY demographic that Trump didn\'t make gains with. But in listening to voters, I really did not hear anybody bring up race or gender as a priority. Obviously there were some attacks to that effect, but people readily volunteered other reasons that sounded the same across demographics and sounded the same as when Biden was running. Ultimately, her polling wasn\'t that different from Biden. It was lukewarm all along.', 'created': '2024-11-07 18:08:07', 'submission_id': '1glqrno'}
{'comment': 'Apathy.', 'created': '2024-11-07 18:19:22', 'submission_id': '1glqrno'}
{'comment': 'liberalism is dead and populism is all that matters, if we get another shot at this populist messaging has to be the laser focus of messaging.', 'created': '2024-11-07 19:13:47', 'submission_id': '1glqrno'}
{'comment': "because she's a woman. Hillary Clinton was the most qualified person to run for president in my lifetime, and she's white, so I don't think it's race, though it partially is. This country is misogynistic and racist. I've seen several posts in various places saying I knew a lot of men hated women, but I didn't know how many women hated women.", 'created': '2024-11-07 19:28:22', 'submission_id': '1glqrno'}
{'comment': 'Because America is full of cruel proud boys. And women can be proud boys if they support the proud boy agenda.', 'created': '2024-11-07 19:28:50', 'submission_id': '1glqrno'}
{'comment': 'Most Americans are poorly educated and basically stupid. They are also very hateful.\nThey want scapegoats for their problems yet ignore the real causes (Republican politicians).', 'created': '2024-11-07 21:20:12', 'submission_id': '1glqrno'}
{'comment': 'Woman and a person of color\xa0', 'created': '2024-11-07 22:07:26', 'submission_id': '1glqrno'}
{'comment': "money rules the world and America hates women, that's all", 'created': '2024-11-07 23:00:57', 'submission_id': '1glqrno'}
{'comment': 'Sexism and racism.', 'created': '2024-11-07 23:23:06', 'submission_id': '1glqrno'}
{'comment': 'I have been thinking about it a lot. The part to take into consideration with it is the turnout. I honestly thought the turnout was going to be record breaking and it wasn’t. I think the people supporting both candidates ended up being the loud minority for each party. \n\nI was so excited when she became the candidate. I did not think Biden had it in him for another term and I felt so many others would think the same. I would have voted for him. I would have voted for almost anyone over Trump. A dog, a banana, but not like zombie Hitler. \n\nMy excitement led me to not ask too many questions or dig deep into her candidacy. She was cool and collected in the debate and in interviews. That was enough for me. I realize I have been in an information silo. I live somewhere that is heavily Trump so I did not think too much about that. There were Harris signs in yards too, so it supported the narrative I saw on Reddit and what I heard on NPR. I go on Facebook and Instagram but I have unfriended or unfollowed anyone that openly supports Trump. \n\nI was shocked and heartbroken when I started seeing the results come in. I have been processing it and I think if we could have had a primary round like the Republicans did we could have won. Her not being Biden or Trump was not enough for everyone.', 'created': '2024-11-07 23:45:15', 'submission_id': '1glqrno'}
{'comment': 'There’s been a massive rightward shift in the country. Yes, a lot of it is inflation (every incumbent party during this high period of post Covid inflation lost), but most Americans don’t like the woke liberal left and that really hurt democrats in the voting booth.', 'created': '2024-11-08 12:05:10', 'submission_id': '1glqrno'}
{'comment': 'Because America itself is irredeemable \n\nAmericans? On an individual basis shall they be judged, because the alternative is to wish we did not exist at all', 'created': '2024-11-08 13:11:18', 'submission_id': '1glqrno'}
{'comment': 'Because she is a she. That simple. Incels are not voting for a woman.', 'created': '2024-11-07 15:53:22', 'submission_id': '1glqrno'}
{'comment': 'There wasnt a Democratic primary and Harris was appointed. “Democracy” was the number one issue for people this cycle and i think that can be viewed in a few ways. \n\n1. Dems worried about Trumps threat to democracy.\n2. MAGA being lied to that Dems threat democracy.\n3. 15 mill 2020 Biden voters, most likely Gen Xers, who’ve lived their entire lives never seeing a candidate appointed like Harris was. Ive heard from multiple people that this was a big deciding factor for them.\n\nWe vote with empathy here but not everyone does. That has to be recognized if we wish to win elections. People dont like the “status quo” and Dems embody that. Trump’s popularizing natural makes him seem like he does not. We have to expand our coalition to include everyone and never again allow the Dem establishment to choose our candidate for us.\n\nThis is not to say i didnt think Harris was a good candidate. She was. I just dont believe a lot of Americas agreed with the process especially judging by how conniving the DNC has been in past elections.', 'created': '2024-11-07 17:12:34', 'submission_id': '1glqrno'}
{'comment': 'Global anti-incumbent trends were too strong. \n\nSame reason the UK Tories got wiped out and Canadian Liberals are next.', 'created': '2024-11-07 18:18:31', 'submission_id': '1glqrno'}
{'comment': 'Dems lost because they don’t understand political marketing.', 'created': '2024-11-07 18:58:05', 'submission_id': '1glqrno'}
{'comment': 'all I know is, this has torn my family completely apart and now my English husband has fucking had it with this country and is going back to England to live whether I go with him or he has to drag me kicking and screaming', 'created': '2024-11-07 20:05:43', 'submission_id': '1glqrno'}
{'comment': "Sexist fucking idiots imagine it's better to have a demented, criminal man in the White House than a smart, accomplished woman. Especially a woman of color. And many of these fucking idiots are other women and men of color. Half the people in this country have a debilitating mental disorder. And I say this as a middle class, middle aged white guy who voted a straight blue ticket.", 'created': '2024-11-07 20:51:13', 'submission_id': '1glqrno'}
{'comment': 'Lust for white supremacy and hatred of (black) women.\n\nIt didn’t matter what her policies were.', 'created': '2024-11-07 20:53:10', 'submission_id': '1glqrno'}
{'comment': "America is racist and misogynistic. There's nothing else I can find that explains it. It's just our identity, I guess.", 'created': '2024-11-07 17:38:06', 'submission_id': '1glqrno'}
{'comment': 'Here is a typical Black experience: working 2-4x harder to get a job that a white person can get and retain with ease in spite of horrendous behavior, get rejected, and still be expected to put on a brave face and not act like an 8-year-old. That’s what happened on a massive scale.', 'created': '2024-11-07 18:14:46', 'submission_id': '1glqrno'}
{'comment': 'There is no single reason why she lost, but a multitude of tiny factors that resulted in death by ten thousand cuts.\n\nOur nation is huge and diverse and the Democratic tent encompasses so many special interests that it’s all but impossible to run a campaign without running afoul of several of them.\n\nI’ve seen people say she lost for cleaving too closely to Biden and that she distanced herself too much from him.\n\nI’ve seen people say that she didn’t have a plan for the economy and I’ve also seen people claim that her plan wasn’t good enough.\n\nThat she talked too much about abortion and not enough about the economy and vice versa.\n\nHonestly she did her best with our huge tent of special interests and the people who DIDN’T vote for her are the reasons that she lost.\n\nThose people are the ones who did this to the nation. They’re the ones who saw her through a misogynist lens. They all know who Trump is. They all had a chance to learn about her and her plans. They all chose to screw POC, women, and LGBTQIA over.\n\nThey chose to vote for a racist fascist rapist. And the reasons they did it are myriad. Probably the single biggest one is that Harris was seen as responsible for inflation. Because they’re economically illiterate and don’t understand that inflation started thanks to Trump’s first term. They’ll never learn, they will always blame the party currently in power for all of their financial woes.\n\nTheir ignorance has doomed all of us and most of them will never learn better. This is who we are as a country, with so many people who are financially desperate and rightfully angry about it. Ironically it keeps the wealthy in power, but they’ll never see that either.\n\nAs far as I’m concerned, she lost due to the ignorance of our electorate.', 'created': '2024-11-07 16:35:25', 'submission_id': '1glqrno'}
{'comment': 'The answer is in your title, she.', 'created': '2024-11-07 20:40:34', 'submission_id': '1glqrno'}
{'comment': 'The people yearn for fascism', 'created': '2024-11-07 18:29:43', 'submission_id': '1glqrno'}
{'comment': '15 millions Dems stayed at home.', 'created': '2024-11-07 19:57:53', 'submission_id': '1glqrno'}
{'comment': 'Worst campaign message ever that’s why. She and the democratic party focused too much on scare tactics (how bad it will be if Trump wins) rather than inspiring people. Kamala made mediocre promises vs the extravagant lies Trump told voters; this also played a major role in convincing the crowd to vote for Trump. Kamala kept it too real instead of building a fantasyland America like Trump did.', 'created': '2024-11-07 21:37:58', 'submission_id': '1glqrno'}
{'comment': "Because she's a woman. That's literally it. Women are held to impossibly high standards while literally the worst man can make every possible mistake and still win in a landslide. America is a misogynistic country and we will not see a woman president in our lifetimes.", 'created': '2024-11-08 00:23:59', 'submission_id': '1glqrno'}
{'comment': 'I heard on MSNBC today that Democrats voter turnout was down.', 'created': '2024-11-08 01:11:59', 'submission_id': '1glqrno'}
{'comment': 'My hypothesis is that two of the big factors are apathy on the side of progressive voters and rage- and bigotry-fueled enthusiasm on the side of MAGA.', 'created': '2024-11-07 17:28:27', 'submission_id': '1glqrno'}
{'comment': 'Because Gretchen Whitmer is the true Prince that was Promised prophesied in the Simpsons', 'created': '2024-11-07 18:15:35', 'submission_id': '1glqrno'}
{'comment': 'People political animals. And as all animals, people have a good feel for big changes.\n\nIn 2014-2024 years World:\n\n* Too quickly changed for aging and more conformist audiences.\n* Approached WW3.\n\nDuring this time Americans, not so much consciously as subconsciously, wanted mix of familiar AND understandable/controllable decisive new/changes.\n\nDemocrats gave Americans\xa0familiarity and control by overall cautious, but their version of "decisive new" was too incomprehensible for so many.\n\nRepublicans didn\'t have better answers. But they promised exactly what people wanted. \n\n* Good old familiarity of the USA golden age. \n* Better alternative to democrat\'s over-caution.\n* Absence of incomprehensible\xa0ideological decisions, only familiar for most human imperfections.', 'created': '2024-11-07 18:20:30', 'submission_id': '1glqrno'}
{'comment': 'I guess try to imagine knowing nothing. \n\nYou don\'t know what the federal reserve is. \n\nYou don\'t know how the Supreme Court works or what it does. \n\nYou don\'t know what the three branches of government are - *less than half* of Americans can name them.\n\nWhen you get angry about the economy, you don\'t think about interest rates or soft power or Citizens United. You think about Washington. And you see an old, bumbling man saying he "fixed" the economy, but you see that everything got way more expensive, and he was busy trying to cancel everyone\'s student loan debts.\n\nKamala talks about opportunity, but Biden\'s America seems to have less opportunity than Trump\'s. Housing is more expensive than ever. She sounds like a politician, always flop-flopping. Meanwhile, Trump says he wants to protect American workers, and you don\'t know any better. He tells good stories, he\'s funny sometimes, and something we liberals might need to realize is that he embodies a different form of honesty that Kamala Harris does. He appears authentic, the way Bernie Sanders does, and that\'s what allows him to sneak countless insidious lies into his media appearances.\n\nI think we get way too in our heads about the systemic issues that the Democrats are chipping away at. Remember, most people don\'t even know the basics of how the federal government is structured, so how on Earth are they going to understand a systemic issue? They\'re not.\n\nWhat we need is a Bernie-type messenger to arise all on his (or her, but it has to be organic) own, and for the people to tell us what they want to hear. Because an avalanche of facts isn\'t gonna cut it, unfortunately.', 'created': '2024-11-07 18:42:21', 'submission_id': '1glqrno'}
{'comment': 'Guys I don’t think it’s crazy to think there was election interference from Russia and Elon. The math does not make sense. How are there 20+ million new registered voters and he still won?? Why are people in swing states saying they didn’t get confirmation of their ballots being accepted???', 'created': '2024-11-07 18:52:24', 'submission_id': '1glqrno'}
{'comment': 'Moderate, status quo Dems won their senate/governor race in pretty much all the swing states. While Harris lost all of them. This is your answer. \n\nHarris wasn’t a great option. Picking Walz as her VP was a bad choice. Shapiro would have been better. Biden should have dropped out and had primaries. He should have picked a moderate man from a swing state like Mark Kelly or Jon Ossoff to replace him. Harris didn’t boast Biden’s accomplishments and didn’t take responsibilities for his faults. Biden went too left with covid lockdowns, trans issues, the border and crime.', 'created': '2024-11-07 19:45:58', 'submission_id': '1glqrno'}
{'comment': 'The supposed religious, worshiping false gods that bleed \n\nThe poor uneducated found their savior in greed\n\nThe undecided actually only got divided and conquered quick \n\nBy a mirror with the word enemy written in crayon above it', 'created': '2024-11-07 20:17:17', 'submission_id': '1glqrno'}
{'comment': '1. People didn’t see or want to believe that things were improving economically from COVID and don’t understand how tariffs work;\n\n2. People thought she/Biden accomplished no forward progress in the past 4 years;\n\n3. Some groups didn’t care for reproductive rights;\n\n4. People didn’t like her (I don’t know why, I felt she did an admirable job “introducing” herself);\n\n5. People stayed home and fucked everything.\n\nSadness and heartbreak.', 'created': '2024-11-07 20:19:16', 'submission_id': '1glqrno'}
{'comment': 'I adore Kamala **BUT I think she failed to win the battle of attention.**\n\nFor low-information voters, Trump\'s antics and extreme rhetoric is *funny* or *authentic*. Because low-information voters probably don\'t think of politics in the historical or international context, they fail to see how his rhetoric could actually be a prelude ushering us into a post-truth authoritarian hellscape.\n\nThinking that labeling Trump a fascist would be effective demonstrates to me a failure to understand where voters are. I would bet money that a plurality of Americans could not give even an approximate definition of "fascist". Meanwhile Trump doubled down on his attention advantage by going on new forms of media, which while exceedingly dumb (Adin Ross), get a lot of eyeballs. A lot of people saw him shooting the breeze on podcasts and found him likeable or at the very least non-threatening. \n\nBeyond embracing new types of media, I think Democrats need to find a key policy message to hammer into people\'s minds beyond defending the status quo. Ideally something that had wide populist appeal and is simple to understand. \n\nThis all on top of the fact that it\'s really hard to be an incumbent right now and the lack of time Kamala had to build a campaign.', 'created': '2024-11-07 20:26:02', 'submission_id': '1glqrno'}
{'comment': 'Propaganda FFS. Just stop denying it FFS.', 'created': '2024-11-07 21:00:07', 'submission_id': '1glqrno'}
{'comment': 'We are a joke society—drawn to lurid lies. Bannon has quipped that he admires the devil—because the devil gets more publicity.', 'created': '2024-11-07 21:06:58', 'submission_id': '1glqrno'}
{'comment': 'I would say misogyny and racism, and a big lack of either education or intelligence. We suck.', 'created': '2024-11-07 21:42:50', 'submission_id': '1glqrno'}
{'comment': 'I don’t get why Kamala campaign switched from snarkily saying Trump is weird and trying to appeal to normal people that way to pandering to the small fraction of Republicans who like the Cheneys', 'created': '2024-11-07 21:43:13', 'submission_id': '1glqrno'}
{'comment': "After 40 years of growing up in American I can tell it's because people refuse to get better. They're afraid and ignorant and feel a sense of shame about both so they did this instead. We do not forgive them. We will not forget. \n\nBut I do understand their issues - I can't believe so many Native American men voted for him. I'm heartbroken dude.", 'created': '2024-11-07 21:45:19', 'submission_id': '1glqrno'}
{'comment': 'That’s umpossible', 'created': '2024-11-07 21:55:10', 'submission_id': '1glqrno'}
{'comment': 'The price of eggs? As if Biden caused a bird flu outbreak and millions of chickens had to be destroyed.\n\nEven if he had, if people vote based on the price of a dozen eggs that went up a buck, we have real problems.\n\nPrice of eggs was a cover story for exit pollsters and facebook posts. **Racism and sexism being the real reason.**', 'created': '2024-11-07 22:49:15', 'submission_id': '1glqrno'}
{'comment': '52% of the voting public are chickens voting for Colonel Sanders, because the other choice was, shock horror! a woman 😱', 'created': '2024-11-07 22:55:27', 'submission_id': '1glqrno'}
{'comment': 'People are stupider than we give them credit for. Democrats are relying on people having integrity and rudimentary intelligence. Republicans know their base are gaping asshole morons who rely on feelings.', 'created': '2024-11-07 23:49:24', 'submission_id': '1glqrno'}
{'comment': 'My take: there are quite literally millions upon millions of Americans who have no idea what is going on in this country. Like moths to a flame, they are attracted to grand promises, division, and spectacle, feeding off hate, fear, and personal grievances. They are in not just a bubble, but an iron dome immune to facts (at least our biases remain on planet earth.) Apathy and a huge lapse in critical thinking affect enormous swaths of the population, combined with a healthy dose of casual racism, transphobia, religious extremism, and sexism. “Vibes” and “own the libs” are policy points for them, living in a fantasy land of what their version of “great again” was and should be. “Alpha male” influencers brainwashing gen x with fear and misinformation is taking over, while otherwise marginal issues like “men in women’s sports” is seen as a genuine threat to American prosperity. Of all the Trump voters I’ve talked to, both briefly and at length, I have serious suspicions that it’s as simple as this. Unfortunately, some type of soul searching must be done because this is the electorate Democrats need to win. Fortunately, the rulebook has been in front of us all along: say anything, no more “woke” peddling, and kick ‘em when they’re down. That is simply what a majority of Americans prefer.', 'created': '2024-11-07 23:55:24', 'submission_id': '1glqrno'}
{'comment': 'In the show, Lisa was the president following trump. He had to become president again to fulfill the prophecy.', 'created': '2024-11-08 02:19:32', 'submission_id': '1glqrno'}
{'comment': 'I am wondering if any self reflection will involve admitting that Biden was a lousy candidate for a 2nd term. I was amazed at how many people on the left, as well as news media were “shocked” to see the horrible performance in the debate with Trump. \n\nThis is completely disingenuous. Everybody knew he was getting more and more senile by the day. He couldn’t even find his way off of a stage. \n\nAnointing Harris after the convention was also disingenuous. There should have been a long ramp up to allow a fair and honest and open primary process. \n\nI think a lot of people decided not to trust the party and stayed home from voting, because of those horrible moves.', 'created': '2024-11-08 02:20:08', 'submission_id': '1glqrno'}
{'comment': 'So many reasons, but most of it boils down to base human nature.', 'created': '2024-11-08 04:08:29', 'submission_id': '1glqrno'}
{'comment': 'white racism...', 'created': '2024-11-08 04:22:56', 'submission_id': '1glqrno'}
{'comment': 'Racism, it boils down to racism almost every time.', 'created': '2024-11-08 06:29:30', 'submission_id': '1glqrno'}
{'comment': "And there's fuckery somewhere", 'created': '2024-11-08 06:29:39', 'submission_id': '1glqrno'}
{'comment': "Democrats didn't play dirty. They should have posted pictures of him and all those young girls he abused, including Ivanka sitting on his lap and his hands all over her. Him walking into the dressing room while young girls are getting ready for the pageant half naked and him boasting about that. Hammer the 6 bankruptcies he had. There was so much they could have done but like Hillary Clinton they chose to take the high road and lose. The Democrats also dont fight in red states, they avoid them like the plague. They need to get in there and spend money and convince some of those rednecks that they are being dupped by the Magats.", 'created': '2024-11-08 11:41:49', 'submission_id': '1glqrno'}
{'comment': 'Theft by Donald Trump and his cohorts, possible outside interference, possible sabotage of the electoral machines, and so much more \n\nThose are the things that I think are the reason why not just kamala, but the people lost', 'created': '2024-11-08 14:19:16', 'submission_id': '1glqrno'}
{'comment': 'Misogyny and racism is alive and well in America.', 'created': '2024-11-08 15:35:40', 'submission_id': '1glqrno'}
{'comment': "I'm at a point where I can't even tolerate the news! This just happened to pop up on my phone. I won't even look at the local news! This is beyond comprehension! I believe that the people who elected him will be the ones who suffer the most! Very sad!! Okay I'm going back under my rock right now, because I just don't even want to know! And I was watching MSNBC and CNN all day long! I'm done!", 'created': '2024-11-08 18:21:00', 'submission_id': '1glqrno'}
{'comment': 'i feel like part of it too is that it was announced that biden wasn’t running and that she was the nominee kind of late. this left her with not as much campaign time, whereas trump has had a longer time to campaign, especially in swing states. i know my parents were not happy that she wasn’t voted on as the democratic nominee for president during the primary elections. yes, she was on the ballot with biden, but there were definitely complaints. i also feel as though social media has gotten worse, a lot of people i went to high school with voted trump (this is our first presidential election that we could vote in) and they’ve been following some of those right-wing meme pages and they get all of their news from there. there definitely was NOT as much MAGA stuff up as there was in years past (Pennsyltucky) which is super weird that the turnout was like this.', 'created': '2024-11-07 16:16:50', 'submission_id': '1glqrno'}
{'comment': 'She lost when she failed to differentiate herself from an unpopular administration that she was the VP of. On Oprah she basically said the only thing different she would do from Biden was appoint a Republican to her cabinet. Thats not good enough when the admin is blamed for inflation, high prices, and the economy and Americans are hungry for change. \n\n"I\'m the candidate of change!" \n\n"What would you do different from Joe?"\n\n"I can\'t think of anything". \n\nAlso, running on Abortion, preserving democracy, and not being Trump proved to not be enough when Inflation/Economy and Immigration were high on voters\' minds. It\'s important to remember that Kamala was a bad primary candidate in 2019 and had record low approval ratings as a VP, so when she got appointed and voters didn\'t get to select a candidate in a primary 3 months before an election, it was a tall order to overcome.', 'created': '2024-11-07 18:29:39', 'submission_id': '1glqrno'}
{'comment': 'She lost because people didn’t bother to vote.', 'created': '2024-11-07 19:23:13', 'submission_id': '1glqrno'}
{'comment': 'Well, at least the senate filibuster still exists...', 'created': '2024-11-07 19:25:31', 'submission_id': '1glqrno'}
{'comment': 'Maybe running the candidate who came in dead last in the last Democratic primary was a bad idea. The majority of the electorate never liked her beyond the party faithful. At the core of the loss was Biden breaking his promise not to run for a second term and giving us only a few months to prop up another candidate, but almost equally as bad was the party establishment anointing Kamala with zero say from Democratic voters because "it was her time." It was late in the cycle but there should have been an emergency primary. Other countries run their primaries in a similarly accelerated fashion and we should have followed their lead. \n\nThe fact that she had trouble articulating her positions and shied away from media also certainly played a part, as did Trump\'s outright lies about her platform. \n\nMaybe some people didn\'t vote for her because she\'s a woman, but there\'s no way that\'s the prevailing reason she lost and anyone who believes that is fooling themselves. She was a deeply unpopular VP in a deeply unpopular administration. The writing was on the wall from the beginning.', 'created': '2024-11-07 19:29:14', 'submission_id': '1glqrno'}
{'comment': "Housing costs\n\nHousing costs\n\nHousing costs\n\nHousing costs\n\nHousing costs\n\n\nBlue states need to start building ASAP. California and NYC being utterly unaffordable sends a terrible message about what blue policies do, even if it's not necessarily true", 'created': '2024-11-07 19:31:38', 'submission_id': '1glqrno'}
{'comment': '15 million said nothing could be worse than Project 2025 except voting a Black Woman President. We went through this with Hillary. We have learned NOTHING!', 'created': '2024-11-07 19:31:40', 'submission_id': '1glqrno'}
{'comment': 'Because the DNC didn’t do a primary or run a candidate which pisses people off. They changed candidates 4 months before the election to someone no one would have chosen, and who didn’t get a single delegate in the 2020 primary. So 15 million fewer democrats showed up to vote. And then that also pissed off a lot of people who also then did a rebellion vote for Trump. \n\nThey’re all mostly wrong because 100% of the Kamala Walz Policy packaged was liked by 80% of people. \n\nBare in mind 90%+ of democrats/ republicans vote dem or repub regardless.', 'created': '2024-11-07 19:44:27', 'submission_id': '1glqrno'}
{'comment': 'Democrats didn’t vote', 'created': '2024-11-07 19:55:47', 'submission_id': '1glqrno'}
{'comment': 'Tbh I think a lot of it boils down to "she". Lots of misogyny in America still. Not all of it, obviously. Someone else mentioned they tried to appeal to the human side of people when they should have been appealing to the pocket books of voters. Idk.', 'created': '2024-11-07 20:00:41', 'submission_id': '1glqrno'}
{'comment': 'Racism, sexism, 15 million democrats staying home, and then white women and men and Latinos voting en masse for Donald', 'created': '2024-11-07 20:14:55', 'submission_id': '1glqrno'}
{'comment': "It was STOLEN \n\n20 MILLION VOTES MISSING\n\nMy vote was lost but my wife's was counted, we voted at the same time and place with nary a hiccup. Check your voting histories, this stinks to high heaven.", 'created': '2024-11-07 21:53:09', 'submission_id': '1glqrno'}
{'comment': 'Because apparently you have to lie, name call, make false promises, and mud sling. You can’t talk about your policies, you can’t even have policies. What am I going to do about health care? Fuck health care. I’m gonna lock up immigrants with rabid possums. Student loan forgiveness? Not on my watch. You’re paying double book nerds. My stance on abortion? trump is a fucking throat slut. You have to give the people what they want.', 'created': '2024-11-07 16:17:53', 'submission_id': '1glqrno'}
{'comment': 'What I can\'t understand is how 15 million fucking people just disappeared. America saw how bad Trump and crew were in 2020 and they said NO MORE. Now, he\'s a worse person, with a criminal record, taking away rights through the Supreme Court even after his presidency was over, and with a team twice as bad as before... and FIFTEEN MILLION people who were with us in 2020 said "nah, that\'s fine" and stayed home.', 'created': '2024-11-07 17:20:14', 'submission_id': '1glqrno'}
{'comment': "Because Americans are evil garbage people. How have you lived on this planet without realizing that. It's been true for 400 years, even before it was a country.", 'created': '2024-11-07 15:53:12', 'submission_id': '1glqrno'}
{'comment': 'Election fraud.', 'created': '2024-11-07 16:29:48', 'submission_id': '1glqrno'}
{'comment': 'Remember. It’s not the party’s fault. It’s those damn voters who got it wrong.', 'created': '2024-11-07 16:03:53', 'submission_id': '1glqrno'}
{'comment': 'Pandering to much to the Republicans to steal trump voters instead of playing to your own base', 'created': '2024-11-07 17:40:47', 'submission_id': '1glqrno'}
{'comment': 'It gets easier to understand when you come to the realization that we have a huge majority of the people in our nation that are just absurdly, profoundly, stupid.', 'created': '2024-11-07 19:00:09', 'submission_id': '1glqrno'}
{'comment': 'She lost because: \n\n* Not enough Democrat voters came out to vote for her. \n* America has a dark racist and misogynistic past that this election it embraced fully. Not enough women came out to vote for her - but they came out and voted for Trump in record numbers. Hispanic / Latino voters came out in massive numbers to vote for Trump regardless of his anti-immigrant hate. \n* Not enough LGBTQ voters came out to vote for her. \n* Not enough black men came out to vote for her. \n* She is a woman. \n* She is a woman of color. \n* Trump voters embrace his misogyny (dislike or hate of women for those who don\'t know), racism, and hate in general and see it as being a "tough guy." This is behavior they admire.', 'created': '2024-11-07 19:22:37', 'submission_id': '1glqrno'}
{'comment': 'The Democratic Party does. not. listen. \nIf you want people to vote for you, you have to understand their issues and come up with solutions. By far the dominant message was "project 2025 = bad." It didn\'t resonate with labor, men, younger people. \nThe communicated priorities weren\'t the priorities of the majority of voters; it really is that simple. Blaming it on anything else is the path to more losses.', 'created': '2024-11-07 19:37:37', 'submission_id': '1glqrno'}
{'comment': '15 million did not vote. Dems hand pick a candidate. Dems don’t listen to their base. They take advantage of fringe groups and assume their votes. Be like 2008, Hillary was the anointed one but Obama beat her. Dems need to give their base what they want versus what the powers want.', 'created': '2024-11-07 19:55:10', 'submission_id': '1glqrno'}
{'comment': "It's because she's a woman. If you want to put it simply.", 'created': '2024-11-07 19:55:49', 'submission_id': '1glqrno'}
{'comment': "It's conservatives. They are the root of all evil. \n\nIf we not allow them to either vote or run for office, then we should be on a better path.", 'created': '2024-11-07 20:48:35', 'submission_id': '1glqrno'}
{'comment': 'Sat and listened to a US expert here in Sweden and he said the loss can\'t be blamed on Kamala Harris but they had lost anyway, Trump is "punk" and hip and it worked on the younger ones they liked the message and then he said Biden would resigned before but he messed up and didn\'t do what the party wanted!', 'created': '2024-11-07 15:39:38', 'submission_id': '1glqrno'}
{'comment': 'Sorry to break it to you, but a good chunk of people are still quite racist and misogynistic. A black woman was never going to win. It’s sad, but true. And surprisingly educated left leaning people.', 'created': '2024-11-07 19:39:27', 'submission_id': '1glqrno'}
{'comment': 'Our timeline has shifted', 'created': '2024-11-07 17:17:42', 'submission_id': '1glqrno'}
{'comment': 'Yeah, Hillary is white', 'created': '2024-11-07 18:03:14', 'submission_id': '1glqrno'}
{'comment': '[removed]', 'created': '2024-11-07 19:25:17', 'submission_id': '1glqrno'}
{'comment': '[removed]', 'created': '2024-11-07 20:30:32', 'submission_id': '1glqrno'}
{'comment': 'It boils down simply to misogyny. Sprinkle in a little racism for Kamala and it’s actually a bit insane that we ever thought she would win. \n\nWe have to stop thinking people think like us, and we have to start taking into account how the right thinks. \n\nAmerica will have a female president, but it’s a long road away. And when we are literally fighting against bigotry personified, we should’ve adjusted our tactic and made different choices. \n\nThey hate women? Put in a male candidate\n\nThey hate POC? Make sure he’s white\n\nThey love Christianity? Make sure he’s Christian\n\nThey hate politicians? Find a non politician\n\nThey like a straight shooter? Make sure he’s a straight shooter. \n\nThey hate illegal immigration? Close the border and deport illegal immigrants!\n\nThey hate trans in women’s sports? Take it easy on the trans topics until you win.\n\nThey hate the media? Go on podcasts. \n\nThey hate us funding wars? Chill on the funding\n\nWe need to give them as little ammo as possible to use to convince the left leaning voters, moderates and weaker democrats to not go out and vote. \n\nWe need to be a party who fights back. \n\nCeleb culture is over. Having Beyonce, Rihanna, JLo, Selena Gómez, Billie Eilish and Taylor Swift and almost every Hollywood actor endorse Kamala didn’t do a damn thing. I could almost argue it hurt us.\n\nPeople don’t trust the media or celebrities or politicians anymore. The Democrats’ elitism is failing. \n\nWhen are we going to stop playing checkers and start playing Chess?', 'created': '2024-11-07 22:12:45', 'submission_id': '1glqrno'}
{'comment': 'Harris loss because millions of Democrats stayed home. That’s it. There’s no conspiracy theory. There’s no fraud. Just millions of apathetic Democrats.\n\nDemocrats are notorious for not voting, been that way for decades.', 'created': '2024-11-07 22:16:01', 'submission_id': '1glqrno'}
{'comment': "A combination of inflation and a terrible campaign. \n\nMost people don't pay attention to politics, Trump's superpower is that he got people who did not pay attention to pay attention because he is entertaining like it or not.\n\nRun candidates that are entertaining and offer competent policy, it's really that simple and it's shocking that the party cannot figure that out even though the only time they ever tried that they won North Carolina and Iowa.\n\nThe only good news is, there is seemingly no heir apparent so we might finally have a real primary again.", 'created': '2024-11-07 22:45:11', 'submission_id': '1glqrno'}
{'comment': 'How fucked are we? Thats the question I’m grappling with… I’m a woman who would love to have kids in the next 4-7 years but am also on Medicaid at the moment due to layoffs. I’m scared my insurance is fucked and my right to choose what happens to my body is going to be in jeopardy', 'created': '2024-11-07 22:47:12', 'submission_id': '1glqrno'}
{'comment': '', 'created': '2024-11-07 23:03:33', 'submission_id': '1glqrno'}
{'comment': "Boiling down to misogyny is stupid. Hilary won the popular vote in 2016. Nikki Hayley lasted the second longest against other male candidates in the republican race this election. This is not why Kamala lost. It's probably a combination of inflation, border issue's, Trump being more charismatic, and people being fed up with sjw culture.", 'created': '2024-11-07 23:33:21', 'submission_id': '1glqrno'}
{'comment': 'Christians, racists, lack of education, multiple reasons…. What’s done is done, gotta move on……', 'created': '2024-11-08 00:14:47', 'submission_id': '1glqrno'}
{'comment': 'I think that the algorithms should have to show an equal and opposite to every post. Like an internet version of the fairness doctrine. They should all have to allow equal time.', 'created': '2024-11-08 00:49:45', 'submission_id': '1glqrno'}
{'comment': 'I have a son who is a Gen-X’r. He blames his generation for dropping the ball. \n\nI’m a Boomer and I blame my generation for messing things up too.', 'created': '2024-11-08 01:08:24', 'submission_id': '1glqrno'}
{'comment': 'Lisa isn’t black. She’s still out there!', 'created': '2024-11-08 01:30:22', 'submission_id': '1glqrno'}
{'comment': 'I wanna be really clear that no matter how bad it gets or who suffers, his base will not apply responsibility to him. Everything could absolutely burn down to ashes but in no circumstance will they actually accept the idea that they got swindled.', 'created': '2024-11-08 01:56:42', 'submission_id': '1glqrno'}
{'comment': 'Some exit poll results:\n\nPeople like Kamala more than they liked Trump. People thought Trump was more extreme. People didn’t even like what he proposed to do.\n\nBut they saw him as a Change candidate. And they believe they were better off four years ago. Many were hurt by the inflation in a serious way.\n\nhttps://preview.redd.it/qq9jayx7ukzd1.jpeg?width=414&format=pjpg&auto=webp&s=89413ce2720104d52becab9c7d889e3458f27875', 'created': '2024-11-08 02:02:25', 'submission_id': '1glqrno'}
{'comment': 'Conservatives are all banded together and will go out and vote no matter what while democrat votes have socialists, liberals etc sometimes they will vote \n\nDemocrats stopped campaigning about raising the minimum wage and taxing the rich \n\nPeople have very short term memories', 'created': '2024-11-08 02:09:40', 'submission_id': '1glqrno'}
{'comment': 'A pattern that I\'ve noticed with debates is the fact that despite the good and valid points made with the MAGA types, is that they find a way to deny, deflect or attempt to weaponize those points in one form or another. After reviewing the results of this election, I also feel that there is a strong case that the Democratic Party and its constituents have approached conflicts with MAGA in the wrong way. I could just be waffling however, there is some evidence to support it as well. A 2012 Harvard study shows that people are more likely to vote along the lines of someone they feel they have the most in common with socio-politically, there are several others that do as well. When you look at the data from the election, and you see the overwhelming support given to the Purulent Pumpkin, it was mostly white men and women, and Hispanic men (men in general were also swayed to him in varying numbers). What could they possibly have in common with Cheeto Benito? We draw the lines to Nationalism, Christianity, Prejudice and they themselves typically reference "the economy" despite evidence to the contrary. The fact is that they do not have all that much in common with a consistent failure in the business world that spews intolerant and vitriolic rhetoric. A study with the University of Basel, shows that caucasians are the most likely to have a low sense of self/low self-esteem, Hispanic males follow closely thereafter. People with low self-esteem and misguided empathy are the perfect source for narcissists. Source being the externalized fountain of self-esteem for a narcissist. I think that their behaviors are indicators that they are in fact individuals that lack self-esteem as well as people that have relegated themselves to being the "flying monkeys" of communal narcissists. When you present facts, they tend to deflect or deny outright and cite "I heard from a friend that a guy" type nonsense. When confronted with all of the behaviors that the Diaper Dictator exhibits, they excuse it, they reference some random person that doesn\'t have a position of power, they do not by any means contend with the cognitive dissonance that should come with knowing something is wrong. Instead they attack and project their own wrongdoing and prejudice on others. They project their fear onto people, and then accuse them of being controlled by their fear. The list of hypocritical actions, beliefs and statements is books in length across the board, from ethnicity to sexuality and onward. The problem with confronting this kind of behavior, people rallying around communal narcissists like wannabe Thomas Edison, and Persimmon Pol Pot, is that they themselves become an extension of the narcissists they\'ve rallied to. Normal means of debate, argument and discourse do not work on narcissists and their flying monkey cohorts. Words become twisted and cherry-picked, reactions to poor behavior become self-victimization, and accountability becomes unjust, through their lenses of collective narcissism. They will trust the words of their in-group, well before they ever concede to well-researched and proven data. The problem with all of that is this:1. Narcissists thrive in situations where they can be both victim and villain. Accountability measures do not work on them. If it looks bad, and is condemned by the in-group, it can be excused as someone else\'s fault. If their actions have consequences, they are the victim of some imperceivable enemy or circumstance. They are experts in making narratives work for them, and when you have 72 million flying monkeys it is incredibly easy to rewrite entire histories.\xa02. They are impervious to facts outside of their scope of understanding and perspective. Their moral and perceptual needle moves only when they want it to. Even in the face of overwhelming evidence.3. Intergroup hostility and conflict, fuels and empowers narcissists and their low self-esteem cronies. Direct attack only gives them ammunition, it gives them more words and actions to deem others less human, or more ways to claim victimhood. In reality they are projecting what they themselves are guilty of.\xa04. Narcissists have no empathy, and those that anoint themselves as their flying monkeys have more empathy only for those within their perceived group and less for those outside of it. So, appealing to humanity, presenting facts, and regular means of bridging the gaps between people does not work on them.\xa05. They rely on division to maintain their power. The greater the divide in their favor, generally speaking, the greater their power is. I think this election proves that. Because not only was the division of the whole, in their favor, so was the division sewn between members of the Democratic party.\xa0What does that mean for those that voted against Clementine Castro? It means that the rules of engagement have to change, if I am right and we are up against collective narcissism in White Christian Ultranationalist clothing.', 'created': '2024-11-08 02:11:24', 'submission_id': '1glqrno'}
{'comment': 'The democrats don’t message well to the uneducated. Reagan’s shadow of mistrust in government will kill us until they pound the truth like Republicans pound lies.', 'created': '2024-11-08 03:52:47', 'submission_id': '1glqrno'}
{'comment': 'There wasn’t an actual electoral process. She wasn’t vetted by the party…', 'created': '2024-11-08 05:02:34', 'submission_id': '1glqrno'}
{'comment': 'I think she lost because the democratic party is terrified to move to the left and keeps pushing themselves towards the right.', 'created': '2024-11-08 05:04:10', 'submission_id': '1glqrno'}
{'comment': 'One point to make is that DJT got 3 million LESS votes in 2024 than he did in 2020 when he lost to Biden. He won this time because of the electoral college and distribution of his votes.', 'created': '2024-11-08 09:16:41', 'submission_id': '1glqrno'}
{'comment': "You need to watch some of Elon Musks interviews. He is a decent guy, but has become a Trump supporter.\nBasically, i think the Democrats don't face up to reality. Won't confront it. Won't acknowledge it. So now they've lost. And we are all in more danger because of it. Don't you love democracy!", 'created': '2024-11-08 11:20:34', 'submission_id': '1glqrno'}
{'comment': 'My thought is this, be as bad as a Trump supporter because that seems to work \n\nDon’t get me wrong. I don’t mean adopt their abhorrent beliefs, I mean be as fricking ruthless and cruel and angry as those “whatever you want to call them” (Nazi Lite?)', 'created': '2024-11-08 13:16:00', 'submission_id': '1glqrno'}
{'comment': 'Hi, I just read this and this may helps [https://timesofindia.indiatimes.com/world/us/us-presidential-election-2024-results-11-reasons-why-kamala-harris-lost-badly/articleshow/115023169.cms](https://timesofindia.indiatimes.com/world/us/us-presidential-election-2024-results-11-reasons-why-kamala-harris-lost-badly/articleshow/115023169.cms)', 'created': '2024-11-08 17:37:21', 'submission_id': '1glqrno'}
{'comment': 'It’s every single thing you said mixed with Elon’s disinformation campaign. Oh and people are fucking stupid. I am going to be there saying I told you so', 'created': '2024-11-12 03:32:57', 'submission_id': '1glqrno'}
{'comment': 'Because “she” is a she; America is not ready for a woman President, and may never be ready. And yes, the cost of gas and groceries is too high. And yes, “illegals” flooding our borders has been mismanaged. - All of these issues are reasons that Trump won.', 'created': '2024-11-07 15:53:20', 'submission_id': '1glqrno'}
{'comment': 'She didn\'t lose; Trump *won*. She had enough reasons to win based on the case to be made against Trump, the true facts about the economy (it\'s not that bad, many new jobs, etc.) and basic matters of equality, respect, choice, etc. She didn\'t lose. Trump won, meaning the sheer number of people piling on that glom fest is growing. Trumpism won.\n\nThis is a bellwether or harbinger of what is growing and is likely to get worse: exhaustion and simple inability to think through the basic substance of the key issues. The only way forward is to include instruction *in how to think* along with position statements and talking points. There is no other way. People must be taught how to to think. It\'s actually much more doable than it might seem. \n\nJust to give you one example of this idea of teaching how to think (and I realize it sounds odd): when Obama used to say that "x is a *false choice*", he was teaching others how to think. Think about this: he was showing how to life out of the stuck debate and choices, bring into view the conditions of choice, consider that the choice can be ill-constituted (he said "false", which is a bit of a misnomer, but it works). \n\nAs it happens, the one teaching out to think more right now is Trump. He\'s bringing the broader things into view, via a sweeping assessment, and rushing in with condemnation, cherry picking, etc. But he doesn\'t call it those things. Yet he does teach others how to do this. It\'s not quite the same as calling cherry picking what it is, but it is a kind of instruction in thought.', 'created': '2024-11-07 16:46:22', 'submission_id': '1glqrno'}
{'comment': 'It was rigged. Many votes weren’t counted.', 'created': '2024-11-07 20:07:45', 'submission_id': '1glqrno'}
{'comment': 'She lost bc she isn\'t "yellow". I kept telling everyone, never underestimate the racism and sexism of america...', 'created': '2024-11-07 16:40:09', 'submission_id': '1glqrno'}
{'comment': "simple: hate sells (even made up), sanity doesn't. average people get lazy when things are going ok.", 'created': '2024-11-07 16:42:45', 'submission_id': '1glqrno'}
{'comment': 'Multitude of things. \n1.Sexism in America and racism makes it white men wont vote for her purely because she’s a women of color.\n\n2.trump is unique as he’s not a typical politician. He’s a manipulator and an actor. He’s charismatic. He appeals to dumb people. And America has lots of idiots and ppl without common sense. \n3. She’s connected to Biden who despite he’s great work people only see the bad. “Cost of living is high so it must be Biden. Kamala is the current vp so she won’t make things better” ppl see her as Biden again and don’t want the status quo.\n\n4. Biden saying he’d be a one term president and then running again then dropping out and the DNC had to do an emergency scramble to find a replacement candidate and at the time it was Kamala but had we had a chance to do a true democratic convention and debates to CHOOSE our democratic candidate like the RNC did lot of people would’ve been better off knowing it was a formal process. Example Kamala basically didn’t “earn the nomination” she only got it because she’s the current Vp. We coulda had a formal convention and maybe had Gretchen whitmer, Gavin newsom , dean phillips, the other lady, even Kamala but no one got a chance to present themselves like the GOP did in primaries. \n\n4.the super short campaign despite the massive endorsements from celebrities the surge of votes from groups like young white men and Latinos went to the gop. Even black men went to the gop. The democrats need to find a way to reevaluate themselves if the want to stand a chance in 2028 as maybe now in an election without trump maybe the DNC has a chance. As I dont Think anyone can replicate trump. If the democrats want to bring a new savior to them maybe they need to play with a new character like maybe have their own celebrity like oprea, Taylor, Beyoncé, the rock, etc. if these still an America by then.', 'created': '2024-11-07 17:06:29', 'submission_id': '1glqrno'}
{'comment': 'I sincerely believe part of it is the culmination of the right wing’s multi-pronged approach to disinformation that they’ve been building over decades. They’ve recreated America’s dominant religion, while also overtaking sources of information of media. They’ve played a long game of espousing values in bad faith while ensuring no one believes us about their own hypocrisy. Winning again is going to require organizing in groups beyond just political parties and hitting them from every angle in the war for the public trust. We need to regain at least 10% of the trust of the whole.\n\nThere’s that quote about fascism that’s like finding out 1/3 of your people are willing to destroy another 1/3 your people while the last 1/3 watches. It’s worth thinking in those numbers of how many we need to convert.', 'created': '2024-11-07 17:23:26', 'submission_id': '1glqrno'}
{'comment': "There's a strange lack of 15 million democratic votes...", 'created': '2024-11-07 17:33:32', 'submission_id': '1glqrno'}
{'comment': 'I’m wondering why no one seems to be mentioning the fact that Trump has had 4 years to figure out the best way to cheat and win this election. He told his voters he didn’t even need them to go vote.. why? Why would any candidate running for literally anything, right down to fucking high school class president, NOT want their base to go out and vote?! Because they’re cheating. Because they know they’re gonna win. That’s the only logical explanation here. \n\nAre we just afraid of appearing as sore losers if we question this outcome? \n\nHe played a game of chess, strategically positioning his loyalists where it mattered and suddenly Republicans win the first popular vote in two decades. And what’s more, took the House, Senate and Congress too…\n\nHe did what he does best; cheat, lie, and steal.', 'created': '2024-11-07 17:48:26', 'submission_id': '1glqrno'}
{'comment': "Listen to what Bernie said. He definitely could've won, too.", 'created': '2024-11-07 19:37:51', 'submission_id': '1glqrno'}
{'comment': 'BECAUSE WE LIVE IN A COUNTRY FULL OF RACIST AND MISOGYNISTIC INDIVIDUALS. WE ALSO LIVE IN A TIME WHERE SINGLE ISSUE VOTERS CAUSE MORE HARM THAN GOOD', 'created': '2024-11-07 20:32:33', 'submission_id': '1glqrno'}
{'comment': 'Racism and Sexism is the name of the game currently in the United States and most of society showed us in this election they want to be boot-lickers to a demented dictator rather than uphold and "appreciate" the liberties, SS, and other basic necessities that our Founding fathers and other Americans fought for for centuries. We need to look at ourselves as a society in the mirror and another civil war will need to occur before people truly see the demon they let into the lives willfully this election. \n\nAs Democrats we need to be yelling from the rafters about the atrocities and mutiny occurring and start creating targeted messaging in 2026 and 2028 focused on the Working class and what hardships they face. We as normal citizens either need to flee the country and take our skills elsewhere (letting the economy die) or stay and fight by moving to democratic states and starting to build up from there by getting involved in the political space.', 'created': '2024-11-07 17:30:35', 'submission_id': '1glqrno'}
{'comment': 'I\'ve a replied to practically all of these types of question/statement post. I\'m tired so I\'ll keep it short. \n\n\nThe Democratic Party at a government level is weak, and has been weak for a very long time. It\'s the Party of the "nice guys". Well, we have Maga now, so being nice isn\'t going to work. Obviously don\'t stoop to their level. But we can match their game on an intelligent level, as Maga is below average intelligence, but they use populism and violent rhetoric to make up for it.\n\n\nAlso, Obviously as this is the 2nd time, and it wasn\'t a matter of she almost won, she lost, significantly. The U.S all a whole, does not want a woman president yet, sad but true. The DNC if it gets is shiz together needs to be strong again, 1930-1965 era strong. (At a government level) The candidate will likely have to be White, male, 50s to 60s. It\'s not a matter of who it should or shouldn\'t be, even if we have an amazing out of nowhere female candidate. This election shows that is Does Not matter. It has to be White male older etc who runs in 2028. Or Maga will just repeat its victory.', 'created': '2024-11-07 17:49:24', 'submission_id': '1glqrno'}
{'comment': 'I’ve seen a lot of arguments that the Democrats are too esoteric whereas the Republicans are clearer. Trump is really off the cuff but in a way that makes him seem more authentic.', 'created': '2024-11-07 17:57:56', 'submission_id': '1glqrno'}
{'comment': "We didn't do enough to appeal to blue collar union workers and the base, we may have been doing to much with such a broad coalition, with center-right and centrist caucuses. Maybe there is a lesson in that, but it's one we'll need to keep in mind in 2028. That is, if there is still a sturdy enough foundation for the republic to stand on.", 'created': '2024-11-07 18:43:37', 'submission_id': '1glqrno'}
{'comment': "Aside from so many great points, I think it's also important to remember that she only had time to run a 3 month campaign where Trump had, and did, run a 3 YEAR campaign - almost 7 if we include presidency ( I do)", 'created': '2024-11-07 19:32:15', 'submission_id': '1glqrno'}
{'comment': 'MAINSTREAM MEDIA IS BEING CONTROLLED BY THE BILLIONAIRE CLASS. SOCIAL MEDIA ALLOWS FALSE PROPAGANDA TO GO UNCHECKED CAUSING THE STUPID TO BECOME EVEN MORE STUPID', 'created': '2024-11-07 20:33:22', 'submission_id': '1glqrno'}
{'comment': 'Brown woman bad', 'created': '2024-11-08 02:33:18', 'submission_id': '1glqrno'}
{'comment': "The campaign started well by emphasizing love and unity. They mostly continued that sentiment.\n\nAnd then the everyday Democrats decided it'd be fun to mock everyday Republicans. Great game, much fun.\n\nYa'll fucked up.\n\nTrueBlue.", 'created': '2024-11-07 15:52:52', 'submission_id': '1glqrno'}
{'comment': 'Uneducated people voting R against their self interests and lazy people not voting D against their self-interests.', 'created': '2024-11-07 18:38:39', 'submission_id': '1glqrno'}
{'comment': "Cuz you didn't vote and most voters didn't care about the policies Harris was proposing.\n\nShe should have said literally this is how I will reduce the cost of eggs. \n\nIt doesn't matter anyways, Trump's supporters are finally going to understand what Tariffs means and how it impacts them, oh well too bad so sad!\n\nThey'll finally learn about what Project 2025 is! Enjoy!\n\nAnd all those Illegals and maybe even naturalized citizens are getting kicked out! Good job for sealing their own fates.\n\nThey fucked around and now its time to find out.", 'created': '2024-11-07 18:31:27', 'submission_id': '1glqrno'}
{'comment': "Those same 10 to 15 million didn't show up to vote for Hillary (but ***did*** show up for Obama and Biden), so yes, I'm sorry, but it is sexism. The mental gymnastics people are employing right now to say that it's everything but them being women -- actually scares me. It's like they aren't learning a lesson and like that loose definition of insanity, may even try to run a woman again next time despite the fact that this isn't a game, and otherwise democrat stronghold (it's not even a real swing state) Pennsylvania's track record on electing women. \n\nPeople are trying so hard to say it's not because they're women that they're explanations on what went wrong are contradicting each other, further emphasizing that it's because they're women. They keep getting mad at me but I was right that she was going to lose for the same reason Hillary already lost the attention of approximately 15 million people herself but I voted for both Hillary and Kamala and 15 million people (is not a coincidence) failed to despite outnumbering conservatives, at some point we're supposed to learn the lesson; in this country even the absolute worst man (I actually have Desanis in mind more than Trump) or a guy with hallucinogenic levels of dementia can beat a woman.", 'created': '2024-11-07 19:59:05', 'submission_id': '1glqrno'}
{'comment': '[removed]', 'created': '2024-11-07 17:05:19', 'submission_id': '1glqrno'}
{'comment': 'It was NOT the campaign! The message was clear if you ever watched 10 minutes of a rally speech. Harris hit every point.\n\nThe Democratic Party isn’t the issue. There is too much fake news and right wing propaganda being shared and pushed to Americans today. Straight from Russia with love.\n\nGet off Reddit for a minute and see the shit they are viewing on Fox News, Newsmax, and Truth Social then tell me why it’s the Democrats fault or the campaigns. And there are hundred podcasts and radio stations that are just Right Wing propagandists…it’s fucking everywhere!\n\nAnd keep in mind that many voters are low information voters. they are ignorant of the facts. It’s that simple. And the average IQ is only 100. That leaves a lot of stupid out there.\n\nStop attacking your own and look at what is happening to us as a people.\n\n15 million democrats said “not my problem” and they didn’t vote. Well they will find out what real problems are and learn a valuable lesson with Trump and Republicans in full control. MAGA is here now for at least 2 years.\n\nConcentrate on self improvement and making things better in your community because that is all we have now.', 'created': '2024-11-07 17:16:11', 'submission_id': '1glqrno'}
{'comment': None, 'created': '2024-11-07 17:39:20', 'submission_id': '1glqrno'}
{'comment': 'Right wing propaganda machine tricked everyone the Democrats were to blame about everything.', 'created': '2024-11-07 17:54:01', 'submission_id': '1glqrno'}
{'comment': "She lost because the Republicans cheated, we just don't know how.", 'created': '2024-11-07 18:45:23', 'submission_id': '1glqrno'}
{'comment': 'Remember, they said "after Trump"... Maybe this is a prediction for 2029.', 'created': '2024-11-07 17:21:53', 'submission_id': '1glqrno'}
{'comment': "There is no rational reason to vote for Donald Trump. There is no question for which the sane answer is Donald Trump.\n\nIf this is the case, and it is, then there is no explicable answer to the question, *why did she lose*... other than, she lost because Americans have lost their minds. It's just that simple.\n\n\n*Those who can make you believe in absurdities, can make you commit atrocities*", 'created': '2024-11-07 17:24:59', 'submission_id': '1glqrno'}
{'comment': '15 million democrats stayed home, and over 70 million Americans decided that voting for a rapist was somehow acceptable.', 'created': '2024-11-07 17:26:48', 'submission_id': '1glqrno'}
{'comment': 'Inflation, full stop.', 'created': '2024-11-07 17:03:10', 'submission_id': '1glqrno'}
{'comment': 'Because the oligarchy can manipulate the stupid woman hating racists so easily', 'created': '2024-11-07 17:53:21', 'submission_id': '1glqrno'}
{'comment': 'I think you are onto something. Elections were never this insane before social media, (says the woman on social media), and I remember a lot of elections.', 'created': '2024-11-07 17:51:35', 'submission_id': '1glqrno'}
{'comment': 'At 4:00 PM PST just before the Georgia polls closed, I predicted Trump will win the state 51-47. Trump won the state 51-48.\n\nI based my prediction from one question in the exit poll:\n\nDo you think the money from FEMA is reaching the hurricane victims? \n47% YES \n51% NO', 'created': '2024-11-07 22:21:05', 'submission_id': '1glqrno'}
{'comment': 'it’s insane how many people see the shit trump has done and will do and say “oh he’ll never do that!”\n\nthey’re really gonna regret voting for him very soon.', 'created': '2024-11-07 20:50:23', 'submission_id': '1glqrno'}
{'comment': 'Yep. Too many idiots that think what they see on Facebook is real. This is where they learn ignorance is a very expensive luxury.', 'created': '2024-11-07 18:04:27', 'submission_id': '1glqrno'}
{'comment': 'Harris significantly outperformed in the Helene affected areas of Western NC. \n\nPeople losing their internet really hurt Trump.', 'created': '2024-11-07 18:19:41', 'submission_id': '1glqrno'}
{'comment': "It is interesting. An answer I got often for why people didn't like Kamala while canvassing was she is dishonest. \n\nI never really dug into that one, but I didn't know what she and the dems were being dishonest about.\n\nI would be interested in having an honest conversation about that. I probably disagree, but I think I am open to hearing what they are talking about.", 'created': '2024-11-07 18:23:32', 'submission_id': '1glqrno'}
{'comment': 'Yep. And a complete lack of factual integrity by both politicians and media on the right. So many issues I heard “independents” complain about democrats for were just things the right said democrats were doing. But “doing your own research” has nothing to do with actual research.', 'created': '2024-11-07 18:26:32', 'submission_id': '1glqrno'}
{'comment': 'This is the correct answer. The propaganda machine has been FIERCE these past couple of years', 'created': '2024-11-08 00:02:43', 'submission_id': '1glqrno'}
{'comment': 'The his is the best answer but it’s across all media. The right in America is a propaganda machine.', 'created': '2024-11-07 22:42:28', 'submission_id': '1glqrno'}
{'comment': 'Amen', 'created': '2024-11-07 20:36:32', 'submission_id': '1glqrno'}
{'comment': 'Yup', 'created': '2024-11-08 02:42:15', 'submission_id': '1glqrno'}
{'comment': "It's also turned into a perfect vehicle for interference from hostile foreign actors. I'm old enough to have caught the end of the red scare. Back then our leaders were so paranoid about foreign influence that they violated people's constitutional rights to try to reduce it. Now they actively encourage it, engage in it, and often financially profit from it. FU Tim Pool/Bennie Johnson.", 'created': '2024-11-08 03:32:36', 'submission_id': '1glqrno'}
{'comment': 'The Engineers of Chaos by da Empoli is a fascinating lol at how this was done', 'created': '2024-11-08 10:59:43', 'submission_id': '1glqrno'}
{'comment': 'But you can’t have a shithole unless you are a country full of shit\n\nI don’t blame social media, I blame the scum that voted for scum', 'created': '2024-11-08 13:12:50', 'submission_id': '1glqrno'}
{'comment': 'It’s insane. Watch the wrong video and they go straight into brainwash mode with suggested content everywhere. People are being directed to content to massage their perception of the world in a certain direction. \n\n\nHowever for 20 years and longer we have close races with recounts and this clown suddenly wins all races outside the margins for recounts?\n\nSomething is off. He was way too calm and smug about winning. Last time we saw someone who cheated and lost. This time I feel we got someone who cheated and got away with it. Nobody seems to be auditing the count either they’re just rushing to certify and clear the machines.', 'created': '2024-11-08 21:37:30', 'submission_id': '1glqrno'}
{'comment': 'This is the answer', 'created': '2024-11-07 17:54:13', 'submission_id': '1glqrno'}
{'comment': "Thank god we're the right ones and everything we consume is factual, my fellow Dems!", 'created': '2024-11-08 19:01:59', 'submission_id': '1glqrno'}
{'comment': 'remember all the AI generated posts? like\n\nI voted blue today? \n\nI voted for Kamala,\n\nand there were all these offers on how to make money creating bots? \n\nwell here is one answer.', 'created': '2024-11-07 23:04:03', 'submission_id': '1glqrno'}
{'comment': "I think this is one of the key reasons. I truly believe the Vice President started a movement for positive change, freedom and liberty. Movements take more than 100 days to gain enough stream. She ran a brilliant campaign and is one of the most inspirational leaders I have experienced in my lifetime.\n\nHer concession speech helped with the process of pulling myself out of a rut. The people I care about matter too much to me to throw in the towel. I am aknowleding the fear and grief I began to feel on Tuesday night. Wednesday was almost unbearable. That was until I heard the VP speak. \n\nAnd today I woke up with some of the same emotions, but sparks of hope are starting to ignite a candle in the darkness. There will be some more days where it feels like too much--that's part and parcel of the progressive cause. Our county is not only Trump and the people who voted for him. It is so much more than that. \n\nThe gay community knows a lot about resilience. We've seen so much loss and hurt over our lifetimes, but we are survivors. We have also had a taste of what it felt like to live a normal life. We're not going back applies more now than ever. We might get knocked down. It may seem hopeless sometimes and the road will be hard to travel on, but I know there are tens of millions of Americans who share many of the same progressive values. Thinking about that gives me strength.", 'created': '2024-11-07 19:52:00', 'submission_id': '1glqrno'}
{'comment': 'I mean, would a primary have yielded a different outcome? Would Biden have simply been better? He might’ve been', 'created': '2024-11-07 18:43:28', 'submission_id': '1glqrno'}
{'comment': 'IMO more time would just create more opportunities for the right wing machine to turn people against her. It took them a month to figure out how to critique her and now all conservatives online parrot the exact same things.', 'created': '2024-11-07 20:52:45', 'submission_id': '1glqrno'}
{'comment': "Maybe if Biden hadn't blatantly lied about not running again in 2024, there could have been a chance. But the DNC establishment refused to cede even a modicum of power to someone not on the corporate payroll.", 'created': '2024-11-07 19:57:15', 'submission_id': '1glqrno'}
{'comment': '[removed]', 'created': '2024-11-08 01:40:54', 'submission_id': '1glqrno'}
{'comment': 'my sister called me to gloat and said “i can’t wait for a cheaper cost of living” and i had to ask her if she was stupid and if she knew what trumps economic policies were going to be', 'created': '2024-11-07 16:18:05', 'submission_id': '1glqrno'}
{'comment': 'People are totally misremembering how much stuff cost only a few years ago. Some guy on Facebook was confidently telling me how he can’t wait to get back to gas being a dollar a gallon like it was under Trump. We haven’t had dollar gas since Bill Clinton was in office.', 'created': '2024-11-07 18:56:14', 'submission_id': '1glqrno'}
{'comment': 'I think people just hear "eggs are expensive" and believe it, even though they could go to the store and look for themselves with their eyes. I think many people are financially illiterate or don\'t budget or track their own costs. I heard a guy on the radio yesterday say he voted Trump because of the economy, saying "I saw eggs at 7-11 and they were $6." Who buys their eggs at the gas station?', 'created': '2024-11-07 16:17:29', 'submission_id': '1glqrno'}
{'comment': 'Do you think that’s what it boils down to on why they stayed home?', 'created': '2024-11-07 15:11:41', 'submission_id': '1glqrno'}
{'comment': "If our only lesson from this loss is to just not run a woman or a POC we will lose again. There are many deep reasons why we lost and it is the DNC's job to figure it out and move forward. Whether it's true grievances or perceived grievances.\xa0 if we ever want to win again we need to gain the trust of over 50% of the population so they believe our message is the correct message.\xa0", 'created': '2024-11-07 16:38:48', 'submission_id': '1glqrno'}
{'comment': 'You\'re falling into a classic trap here - you\'re dismissing the idea that voters could have chosen primarily based on the economy because the economy is factually not that bad. But that\'s not the right argument. Voters en masse legitimately feel like the economy is bad, even though it\'s not. This is for a few reasons, but I think the biggest ones are "some prices are higher than they used to be" and "they\'re bombarded with people saying the economy is bad".\n\nVoters ain\'t rational. Even your proposed explanation recognizes that, because misogyny ain\'t rational. **The electorate\'s perception of the economy\'s health is not based on the economies actual health.**\n\nThe overwhelming majority of voters think the economy sucks, for one reason or another, and they punished the incumbent party. **The same thing happened with every democracy in the developed world after the post-covid-inflation spike.**', 'created': '2024-11-07 17:36:13', 'submission_id': '1glqrno'}
{'comment': 'I wasn’t a Biden supporter nor a Kamala one but damn if they didn’t win me over.\n\nNothing short of amazing to describe what they accomplished.\xa0', 'created': '2024-11-07 18:07:40', 'submission_id': '1glqrno'}
{'comment': 'If you ask a personalized question such as "why are YOU voting for trump" and you get the same exact answer verbatim from every person in a party... it\'s propaganda. \n\nEconomy, and immigrants. When 9/10 said person has NEVER interacted with a migrant. Nor do they have any idea what DOW Jones is, and or what it does.\n\nIf you hear: \nBorder\nEconomy\nTaxes\nOr Cultural issues \n\nit is in fact manufactured propaganda.', 'created': '2024-11-07 20:42:51', 'submission_id': '1glqrno'}
{'comment': 'Because most Americans are stupid racists', 'created': '2024-11-07 16:35:53', 'submission_id': '1glqrno'}
{'comment': 'Republicans have very selective memories. They remember the prices at their lowest levels when they were in power. They remember the prices at their highest levels when Democrats are in power. Some of the older of us or historians may recall the oil crisis of the 1970s this started back in 1971when Republicans were in power btw.', 'created': '2024-11-07 16:22:44', 'submission_id': '1glqrno'}
{'comment': 'Do we really believe 15m stayed home after record donations and record voter registrations? Seriously, I’m not buying it, but I don’t want to sound like a Conspiracy theorist. 🤕', 'created': '2024-11-07 20:01:34', 'submission_id': '1glqrno'}
{'comment': "I think it's less because she's a woman and more so because she's a black woman. We as a party need to figure this out. Where did these Democrats go? How many voted for Trump (I suspect not many) and how many didn't vote and WHY? They aren't talking either. 15mil people are all of a sudden silent? Speak up!! what was it? You weren't going to get everything on your Christmas list so you decided not to show up? Is it really because she's a black woman? We need to know the deciding factors for these people so we can elect the person who will get them to come out and vote. I'm sorry if it has to be a white male so be it. People are racist and if we don't cater to that racism we lose. Some battles are meant to be fought on a different day. I don't want to go backward, but maybe we have to take a few steps back to move 10 steps forward. Where are the analysts? What were these 15million people thinking?", 'created': '2024-11-08 02:12:34', 'submission_id': '1glqrno'}
{'comment': 'Hit the nail on the head!', 'created': '2024-11-07 17:38:53', 'submission_id': '1glqrno'}
{'comment': 'Not 15 million, 5 million or so when all the votes in CA are counted.', 'created': '2024-11-07 18:48:23', 'submission_id': '1glqrno'}
{'comment': 'Pretending things didn’t get more expensive is part of why we did so bad. It really sucks to those who are hurting to get told by a political party that they’re imagining it and they’re dumb for falling for thinking their stress frustration and suffering is real', 'created': '2024-11-07 19:49:22', 'submission_id': '1glqrno'}
{'comment': 'Many Americans real income is still below pre-pandemic. Incumbent parties everywhere have been losing big numbers post Covid inflation.', 'created': '2024-11-08 02:16:13', 'submission_id': '1glqrno'}
{'comment': "15 million democrats who stayed home because they didn't want to vote for a **BLACK** woman should be ashamed of themselves. To be specific", 'created': '2024-11-07 19:36:55', 'submission_id': '1glqrno'}
{'comment': 'Dems didn’t stay home. Talk to Ketamine elmo and Vlad and the Rs about missing votes.', 'created': '2024-11-07 17:45:30', 'submission_id': '1glqrno'}
{'comment': 'Housing prices and rent are unaffordable for millions of young people. Movies. Dining out. Cars. Concert tickets. Sporting events. Millions of millennials are living with their parents in their 20s and 30s because they can’t afford anything else. Trump says “America has lost its way and I’m going to help you.” Kamala says “we have the best economy in the world with a high stock market and low unemployment.”\n\nWhich message do you think will resonate with a 25 year kid old who can’t afford to rent an apartment with his girlfriend?', 'created': '2024-11-07 20:05:52', 'submission_id': '1glqrno'}
{'comment': 'How can you state multiple ways in which the democrats in office have failed to assist working class people, and then blame the electorate instead of critiquing the nominee or the campaign she ran on. How can you not hold them accountable to their monumental failing? It was their election to lose.', 'created': '2024-11-07 21:42:32', 'submission_id': '1glqrno'}
{'comment': 'I really think it’s time for us to stop blaming other democrats and start getting better, stronger, more aggressive and determined democratic leaders that know how to handle pieces of shit like Trump and get people angry enough to vote. We need better policies. We need to focus on the middle working class because that’s how we will get votes. We need to dumb down our campaigns because if Trump has proven anything it’s that Americans are dumb and need things simplified and straight forward. Blaming the people who stayed home does fucking nothing. Blaming it on mysogyny is stupid and just pushes potential voters farther away from the dem party. I’m a dem myself but holy fuck we need to get our shit together', 'created': '2024-11-08 00:02:58', 'submission_id': '1glqrno'}
{'comment': 'It’s going to be a long two years. Do you think Biden’s timing in dropping out and how that all played out mattered? Maybe an open convention would have made a difference? 🤷🏾\u200d♂️', 'created': '2024-11-07 16:18:48', 'submission_id': '1glqrno'}
{'comment': "The border issue is bullshit. Undocumented immigrations are significantly down from the 80's and 90's. Most people have no idea how the overall economy works and they didn't get good advice from a mumbling old man with dementia.\n\nPeople voted their bigotries.", 'created': '2024-11-07 18:08:58', 'submission_id': '1glqrno'}
{'comment': "I keep seeing this 15 million number going around, but it's just not even true. It will be 5 million or so when all the votes are counted, CA is only 55% reported.", 'created': '2024-11-07 18:52:18', 'submission_id': '1glqrno'}
{'comment': 'No, she did not lose because of her policy focus. She lost because she is a woman. \n\nThat\'s it. No deeper analysis needed. "They\'re eating the cats. They\'re eating the dogs." <-- that won. \n\nBiden might have won. Tim Walz probably would have won, or Shapiro or any male. It\'s just that stupid, that sad.', 'created': '2024-11-07 17:06:26', 'submission_id': '1glqrno'}
{'comment': 'People need to stop comparing her election to 2020. 2020 had a really high voter turnout for Democrats because people were so freaked out by Trump. She would be more appropriate to compare to 2016 or any election beforehand. If you actually look at it that way, you’ll see her turn out, was actually pretty much as expected, but Republicans had exceptionally high turnout.', 'created': '2024-11-07 23:33:02', 'submission_id': '1glqrno'}
{'comment': 'It’s time to stop talking about Trump and start getting aggressive and relentless just like the reps have been to us. We need to put them in their fucking place instead of being the good guys trying to warn people about the bad guy. They clearly don’t care that he’s a bad guy. We need to show them what we will change other than Trump not being president', 'created': '2024-11-08 00:06:29', 'submission_id': '1glqrno'}
{'comment': 'New York is becoming a swing state', 'created': '2024-11-07 19:51:03', 'submission_id': '1glqrno'}
{'comment': ">The greatest con job the modern world has ever seen!\n\nExactly! \n\nTrump and his surrogates created a fictional narrative. A fiction about who he is, and what he would do for them. And a fiction about Harris. \n\nAnd people bought it either wholesale. Or they picked and choose the parts they wanted to believe.\n\nAnd if it had been a different candidate, his people simply would have adjusted the narrative. \n\nThe problem is that our constitution and system of laws doesn't have any safeguards to protect us against what I would call the paradox of free speech. \n\nFree speech is incredibly important to a democracy, so that voters can have the opportunity to be informed. \n\nBut speech intended to misinform voters about an election can bring down a democracy.\n\nThat is the lesson we should take from all of this.", 'created': '2024-11-07 20:46:16', 'submission_id': '1glqrno'}
{'comment': 'All of this. Plus Biden not sticking to one term and the Dems panicking and switching candidates at the last minute. And not understanding the electorate so their messaging was off. People cared less about hearing about abortion and democracy and wanted to hear more about prices and housing costs.', 'created': '2024-11-07 16:44:42', 'submission_id': '1glqrno'}
{'comment': 'Trying to appeal to Republican voters while ignoring our left flank.\n\nThe Democrat party has gotten more and more conservative in my lifetime and clearly it isn’t working.', 'created': '2024-11-07 16:49:27', 'submission_id': '1glqrno'}
{'comment': 'You and I think alike. Well said', 'created': '2024-11-07 17:34:34', 'submission_id': '1glqrno'}
{'comment': "It's amazing it was as close as it was with those types of campaign length then.", 'created': '2024-11-08 19:13:21', 'submission_id': '1glqrno'}
{'comment': 'What if I told you Mexico had a female president?', 'created': '2024-11-07 16:04:58', 'submission_id': '1glqrno'}
{'comment': 'As someone with a Latin mother, unfortunately their mentality often leads them to towards thinking dodgy men make good leaders', 'created': '2024-11-07 18:40:14', 'submission_id': '1glqrno'}
{'comment': 'Would you support a 2028 Kamala run?', 'created': '2024-11-07 20:01:38', 'submission_id': '1glqrno'}
{'comment': 'Exactly. Also it’s much easier to vote for a candidate than against one. The messaging should have been less directed at why trump was bad and more about why we should’ve chose Harris.', 'created': '2024-11-07 17:29:01', 'submission_id': '1glqrno'}
{'comment': 'This is spot on. It should be pinned or its own post that creates this conversation for people that can’t wrap their heads around it (and this is about as simple as the summary gets lol)', 'created': '2024-11-07 21:13:19', 'submission_id': '1glqrno'}
{'comment': "The Democratic Party doesn't choose yeah candidates, it annoints. As Bernie Sanders and all his supporters found in 2016. \n\nThe Democratic Party used to be the party of labor, the middle class, and the working class. Trump has appeal to all those people because the Democratic Party abandoned them.", 'created': '2024-11-08 04:07:04', 'submission_id': '1glqrno'}
{'comment': 'Great, let’s continue talking down to people and calling them names. That’s how we’re gonna convince people to reconnect with the Democratic Party….', 'created': '2024-11-07 16:47:55', 'submission_id': '1glqrno'}
{'comment': 'Because it wasn’t Biden? Because they definitely focused on not getting anyone’s hopes up in thinking this was in the bag', 'created': '2024-11-07 22:48:05', 'submission_id': '1glqrno'}
{'comment': 'It’s kinda scary how much power he’s going to have this time around. I’m like 99 percent sure he’s going to have JD run in 2028 to keep his legacy going (assuming he doesn’t pull some bullshit to stay in power indefinitely or start a war to stay in power like how FDR stayed president during WWII) and it’s like even if a democrat does win, will it even matter? Sorry if that sounds overly pessimistic…', 'created': '2024-11-07 16:29:33', 'submission_id': '1glqrno'}
{'comment': 'Why is that though? The dems are the only ones supporting the working class.', 'created': '2024-11-07 20:59:34', 'submission_id': '1glqrno'}
{'comment': 'Yes. Apparently a lot of men love penises.', 'created': '2024-11-07 18:41:15', 'submission_id': '1glqrno'}
{'comment': 'It’s insane in the year 2024 how behind we are as a country. The inability to have a female leader is just one on a laundry list of issues we have. And this new Administration/Congress will take us back to the 1700s if they get everything they want…', 'created': '2024-11-07 15:26:17', 'submission_id': '1glqrno'}
{'comment': 'How do you explain her poor turnout compared to Hilary?\n\n\nAt least Hilary won the popular vote', 'created': '2024-11-07 19:39:17', 'submission_id': '1glqrno'}
{'comment': "Yep. I'm so upset that more white women voted for Trump than Harris. Like why? They even voted yes to protect their rights then went ahead and voted for the man who wants to take them and grab their p*ssies while he does it. Us women need to get it tf together already. The ERA was never adopted into the constitution. The only people's rights who are set in stone are white men.", 'created': '2024-11-07 19:43:03', 'submission_id': '1glqrno'}
{'comment': 'Would you support another Kamala run in 2028?', 'created': '2024-11-07 20:11:44', 'submission_id': '1glqrno'}
{'comment': "This is not a productive conclusion. Sure, gender could be one of the reasons why voters didn't turn out for Harris, but this can't be the sole explanation for her losing. Did the additional 15 million voters who voted for Biden in 2020 not vote in 2024 just because Harris is female? No. There are so many other factors that have to be understood if democrats want a better outcome in 2026 and 2028.", 'created': '2024-11-07 19:50:54', 'submission_id': '1glqrno'}
{'comment': 'you can see clear evidence of how america treats its women. now a convicted rapist in the white house smh its depressing', 'created': '2024-11-07 16:08:23', 'submission_id': '1glqrno'}
{'comment': 'This!!! \n\nSome Democrats do. Bernie Sanders understands retail politics. Playing the Wall Street bad card over and over may seem repetitive but it established his brand.', 'created': '2024-11-07 19:05:59', 'submission_id': '1glqrno'}
{'comment': 'They\'re in **complete denial**.\n\nConservatives have huge progaganda machines present everywhere 24/7 radicalizing people and relentlessly selling their ideas and hatred, exploiting people\'s fears and frustrations, you just can\'t escape being constantly subjected to it, and dems are refusing to acknowledge its extreme efficiency, take effective counter-measures and continue to be like "*this is fine*" like in the meme with the dog in the fire.', 'created': '2024-11-07 21:11:27', 'submission_id': '1glqrno'}
{'comment': 'just go..', 'created': '2024-11-07 21:00:51', 'submission_id': '1glqrno'}
{'comment': 'Exactly. They can nitpick the campaign and policies all they want. But if this was a white guy running for the dems, tell me he wouldn’t have won.', 'created': '2024-11-07 18:42:19', 'submission_id': '1glqrno'}
{'comment': 'Not me', 'created': '2024-11-07 18:50:07', 'submission_id': '1glqrno'}
{'comment': 'Ignorance. Well said.', 'created': '2024-11-07 16:44:43', 'submission_id': '1glqrno'}
{'comment': 'There’s really nothing more to say. We can talk all day about what lessons to take away from this, but in the end the real reason was fucking ignorance and I don’t know what we could possibly do about it.', 'created': '2024-11-07 17:40:26', 'submission_id': '1glqrno'}
{'comment': 'That and there are 70M Americans who don’t care about reproductive rights, civil rights, immigrants rights, education, gun control, etc. \n\nThey believe republicans are better for the economy. Which is wrong. \n\nThey believe immigration and presidents control the cost of goods/ inflation and lack of religion contributes to the weather. \n\nThey believe Trump will pay them more money, lower their taxes and kick out the gays. \n\nRegardless, their lives are so lacking. Even if Trump destroys the shithole formerly known as the USA. It’s got to be better than their current experience. \n\nWrong. F around and find out.', 'created': '2024-11-07 21:49:54', 'submission_id': '1glqrno'}
{'comment': "And the part no one wants to acknowledge: behind fascism there's always a very influent propaganda machine pushing for it and radicalizing people. The conservative propaganda machine in america is huge, powerful, ubiquitous and never stops. The dems let it do its thing unchecked and now it's time to reap the consequences.", 'created': '2024-11-07 21:31:28', 'submission_id': '1glqrno'}
{'comment': 'By like 15 million..', 'created': '2024-11-08 01:28:48', 'submission_id': '1glqrno'}
{'comment': 'Not to mention trump has been so calm lately and told his crowd that him and Mike Johnson have a little secret?', 'created': '2024-11-07 18:53:06', 'submission_id': '1glqrno'}
{'comment': 'I feel like this was just a catastrophic failure. I’m trying to avoid the news myself when I can. I can’t believe this country would choose this chaos again. The people that voted for him deserve him. I’m contemplating moving to another country.', 'created': '2024-11-09 16:52:03', 'submission_id': '1glqrno'}
{'comment': 'I honestly believe this. Especially when we have seen the ballot boxes being set on fire. I also know many people with absentee ballots who had to travel back to their state to vote because their ballot kept getting lost. Unfortunately there is nothing we can do about it! And unlike the Repubs, we refuse to stoop to their level', 'created': '2024-11-07 22:53:56', 'submission_id': '1glqrno'}
{'comment': 'A lot of them are.', 'created': '2024-11-07 18:53:53', 'submission_id': '1glqrno'}
{'comment': 'Honestly, yeah. We are not a country full of good people. I need to stop thinking this is the case.', 'created': '2024-11-07 19:28:43', 'submission_id': '1glqrno'}
{'comment': 'How so? Curious your take on the matter.', 'created': '2024-11-07 16:32:01', 'submission_id': '1glqrno'}
{'comment': 'This!!!!', 'created': '2024-11-07 16:06:15', 'submission_id': '1glqrno'}
{'comment': "Yep. I blame yet again the far left and women. More white women voted for Trump than Harris lol. Like really? With abortion on the ballot in sooo many states? They literally voted for amendments to secure their rights then voted for the man who might take them anyhow. I'm ashamed in our country and especially in my fellow women. Jfc I didn't think women would would be so okay with the man who wants to take rights and grab us by our p*ssies while he does it.", 'created': '2024-11-07 19:41:21', 'submission_id': '1glqrno'}
{'comment': 'I thought it was long established that you don’t bother trying to convert people. You get your people to show up.', 'created': '2024-11-07 21:00:29', 'submission_id': '1glqrno'}
{'comment': 'Can I ask what about Kamala’s policy was bad? I really don’t think people vote on policy.. they vote on whatever perceived notion they have on the candidate', 'created': '2024-11-07 22:49:33', 'submission_id': '1glqrno'}
{'comment': "actually that's completely wrong, they moved left. Student loan forgiveness, pro-union, healthcare expansion, reduced prescription drug, tax credits for starting small businesses and for new parents, increased taxes on Uber rich etc...", 'created': '2024-11-10 08:38:12', 'submission_id': '1glqrno'}
{'comment': "Trump is a raving old man with dementia. He didn't teach shit. Billionaires dumped money into social media scare tactics and Americans are stupid and bigoted. \n\nThat's how muslims in Michigan and Latinos everywhere voted for their own oppression. They all think the gestapo won't come for *their* family because they work every day. It's never been like that in dictatorships.", 'created': '2024-11-07 18:24:05', 'submission_id': '1glqrno'}
{'comment': 'You mean because she isn’t white right?', 'created': '2024-11-07 18:54:56', 'submission_id': '1glqrno'}
{'comment': 'It’s honestly heartbreaking.', 'created': '2024-11-07 16:45:21', 'submission_id': '1glqrno'}
{'comment': 'Narcissists are the kings of cheating. They scheme like a regular person wouldn’t believe. I’ve seen it myself. They aren’t afraid of consequences and don’t feel empathy. I fully believe he is capable of election fraud and something with this feels very off.', 'created': '2024-11-07 18:48:35', 'submission_id': '1glqrno'}
{'comment': 'If a person lacks the reasoning and critical thinking abilities, they are a sponge for lies and conspiracy theories. Our education system has failed us. Memorizing facts rather than teaching discretion in analyzing new information.', 'created': '2024-11-07 21:42:36', 'submission_id': '1glqrno'}
{'comment': 'Democrats should have taken action to mitigate that. Local news channels have been being purchased by billionaires for the last 2 decades or so. Democrats suck at the information game and they made no effort to protect the information system. They approach politics like the populace is a bunch of damn Care Bears just waiting for the chance to shine- that’s bull shit. \n\nInformation wins wars. Information wins elections. Information does not equal happy pictures and PowerPoint presentations. It’s drip fed to people constantly on a minute to minute basis- it’s ugly and manipulative. We kind of started to play ball, but it was too little and too late.', 'created': '2024-11-07 17:34:24', 'submission_id': '1glqrno'}
{'comment': 'and because she doesn’t make false promises', 'created': '2024-11-07 18:57:17', 'submission_id': '1glqrno'}
{'comment': 'But really, it is. People are getting their information now in complete information silos like Facebook and TikTok, fueled by algorithms that keep them in a confirmation bias bubble. They have no clue what’s actually going on and can only follow what’s being force fed to them by corporations that gain from having that level of control over their thinking. \n\nI have no idea how we fix this. It would take shutting down all social media and letting everyone go cold turkey detoxing off this madness. But that will never happen. I don’t know where we go from here. It sucks.', 'created': '2024-11-07 18:28:52', 'submission_id': '1glqrno'}
{'comment': 'The 2000 Presidential election. \n\nBut I agree social media is an absolute scourge on humanity.', 'created': '2024-11-07 20:08:22', 'submission_id': '1glqrno'}
{'comment': 'Especially the young black and Latino males that apparently showed up for him! Unbelievable.', 'created': '2024-11-08 07:19:52', 'submission_id': '1glqrno'}
{'comment': 'Oh but “he knows how to run a country” 🙄🙄\nThat’s literally what I’ve seen people say as the reason they voted for him despite the shit he has said', 'created': '2024-11-07 22:37:38', 'submission_id': '1glqrno'}
{'comment': 'Source?', 'created': '2024-11-07 19:33:48', 'submission_id': '1glqrno'}
{'comment': 'Interesting take .', 'created': '2024-11-08 07:22:06', 'submission_id': '1glqrno'}
{'comment': "Every primary platform we use to communicate over the Internet is owned by a mega corporation owned by a billionaire. Everything about these platforms are set up to drive engagement because the longer eyeballs stay on the screen the more ads are seen and the *less* time said user is at a competitor.\n\n24/7.\n\nThese digital platforms have replaced typical third spaces otherwise, like hanging out at the mall or going to the movies or whatever else. And consistently spending time on these platforms lead to an unnatural and unhealthy consumption of media that doesn't really fit with the world as it actually is, and the vast majority of the population, who thinks tariffs result in lower prices, simply do not have the capacity to know better.\n\nThe electorate at large is broken and the Democrats as a group campaigned in part on appealing to the betterment of people. It's hard to sell that message against a 24/7 deluge of negative messaging.\n\nThese platforms are effectively Fox News 2.0.\n\nI'm not really here to discount the reality that as much as this is true for right wing ideology as it is for left wing. However I think that groups which subscribe to logic and reasoning and evidence are better spaces to stay in.", 'created': '2024-11-07 18:32:46', 'submission_id': '1glqrno'}
{'comment': 'Straight up, when someone says that she’s “dishonest” or she’s “dumb” or a “uniquely bad candidate,” I just ask them why do they think that? What did she say or do to justify that kind of belief? And it’s amazing how often they either can’t cite anything (“umm… she just is”) or they point to some bullshit from a right-wing source. It’s way more pervasive than we realize. \n\nI really don’t know what to do here. It’s like the lesson to take from this election is that liberals need their own Elon Musk and Rupert Murdoch. But dammit, I don’t want us to become that. Call me naive, but I don’t want the Democrats to resort to just bald-face lying to people and stoking their fears and anger by scapegoating others. What’s the point of all this if we become just like them?', 'created': '2024-11-07 20:41:19', 'submission_id': '1glqrno'}
{'comment': "I had a couple of people tell me that they didn't like what she did to Calif but I was offered no details as to what that meant.", 'created': '2024-11-07 20:20:23', 'submission_id': '1glqrno'}
{'comment': "She's black and they want to believe that she is dishonest - or whatever mud is thrown at her.", 'created': '2024-11-07 20:16:26', 'submission_id': '1glqrno'}
{'comment': 'Pretty laughable when you consider how often Trump lies. They really do believe he is telling the truth.', 'created': '2024-11-08 14:16:52', 'submission_id': '1glqrno'}
{'comment': ' It’s not just democrats, ALL politicians campaign in poetry and govern in prose. That is because there is rarely a time in Washington when compromise isn’t a factor. There’s always either a divided Congress or some other reason why they need to compromise. That’s the way it is.', 'created': '2024-11-07 19:03:34', 'submission_id': '1glqrno'}
{'comment': "Her vibe was very off. She has this smarmy thing going on. Idk if it's narcissism or something else but it's very creepy. There's a reason she dropped out quick 4 years ago. No one wanted her. Why we thought she could win now is hilarious. How dumb.", 'created': '2024-11-08 19:05:17', 'submission_id': '1glqrno'}
{'comment': 'Can you share some of your reasons to hope? Sadly I’m still deep in a depressive rut and I’ve been avoiding consuming media as it’s a lot to take!! I just don’t see how this is going to be good and 4 years is a long time to see him make fascist moves that will affect anyone who is not rich…and women, immigrants etc', 'created': '2024-11-07 22:42:23', 'submission_id': '1glqrno'}
{'comment': "The Democratic leadership could have held an emergency primary. Instead, they set Kamala up for failure IMHO. \n\nThey didnt' want to sacrifice Buttigieg, Newsome or other potential candidates. \n\n \nInstead of pressuring Biden to be content as having been a one term president, they coalesced and defended Biden's abilities, voter approval and marched forward --like in 2016 when superdelages were rushing to support Hillary.. this whole mess started in 2016-- when a ridiculous candidates like trump tried to run for president. Trump was supposed to run, and lose and start another successful reality show--- that it.", 'created': '2024-11-08 03:54:51', 'submission_id': '1glqrno'}
{'comment': 'No, Biden was performing 5 points behind Harris. He would have dragged down the house and senate races even more. Switching to Harris was the correct decision, he just should have done it a lot sooner.', 'created': '2024-11-07 18:50:06', 'submission_id': '1glqrno'}
{'comment': "Hot take but I think if you let people vote on who they like most then you'll get a candidate that people like, and not one that caused 15 million less people to vote for them compared to last election.\n\n\nShe did demonstrably poorly in the 2020 primary. That's data, and the data says people don't like her", 'created': '2024-11-07 19:34:00', 'submission_id': '1glqrno'}
{'comment': 'Possibly. It might have made someone else the candidate who would have had a chance:\n\nWarnock\n\nJeffries\n\nTime Kane', 'created': '2024-11-07 19:23:20', 'submission_id': '1glqrno'}
{'comment': "I don't think he lied. I think his wheels blew out.", 'created': '2024-11-07 20:11:53', 'submission_id': '1glqrno'}
{'comment': 'Fuck off', 'created': '2024-11-08 01:41:36', 'submission_id': '1glqrno'}
{'comment': "The cost of living will increase over $1,500 per year for the average American. Yet somehow I'm sure they will still blame Biden.", 'created': '2024-11-07 16:23:40', 'submission_id': '1glqrno'}
{'comment': 'If Trump enacts his economic policies, there is a real chance we will see hyperinflation', 'created': '2024-11-07 17:20:31', 'submission_id': '1glqrno'}
{'comment': 'Sorry, but yes your sister is stupid. That’s how we’re in this mess. Too many people lack critical thinking and are easily subject to crowd manipulation. We literally have a majority of our population that has been spoon fed propaganda for decades, massaging their dumb smooth mushy brains and blocking them from developing their own critical thinking skills that can lead to rational, logical thought. People just simply are uneducated and fucking stupid.', 'created': '2024-11-07 19:02:43', 'submission_id': '1glqrno'}
{'comment': "Trump's tariffs are going to only make things worse. Honestly I hope they do as a lesson to anyone who thought a twice impeached convicted felon belongs back in the White House.", 'created': '2024-11-07 17:45:41', 'submission_id': '1glqrno'}
{'comment': 'Prices never go down (minus a depression style recession) is what people don’t get. It’s the slowing of inflation that needed to get tamed, and this was accomplished. We are now in the Goldilocks 2% range. \n\nThe problem is people don’t understand how the economics work and all they see are higher prices compared to x amount of years ago—so somebody had to get blamed', 'created': '2024-11-07 18:38:15', 'submission_id': '1glqrno'}
{'comment': 'She also doesn’t understand fundamental economics. Prices don’t “go down,” and the cost of living doesn’t “go down,” except in times of deflation. And deflation isn’t good for the economy. Like, at all. It’s a depression signal. Shit has to be going really wrong for prices to drop across the board.', 'created': '2024-11-07 17:55:11', 'submission_id': '1glqrno'}
{'comment': "It's superstition, like wearing a lucky hat. Prices were lower when he was president, so let's elect him again!", 'created': '2024-11-07 18:59:55', 'submission_id': '1glqrno'}
{'comment': 'She sounds stupid. I just removed a friend from my friends list for posting "smell that? Lower gas and grocery prices in the air"', 'created': '2024-11-07 20:05:13', 'submission_id': '1glqrno'}
{'comment': 'The tariffs will really hurt us- not only economically but it will hurt our relationships with other countries as well. People who think they are going to have a cheaper cost of living are in for a rude awakening.', 'created': '2024-11-07 19:18:42', 'submission_id': '1glqrno'}
{'comment': "The Wall Street Journal, Financial Times and Goldman Sachs all said the economy would do better under Harris than under T\\*\\*\\*\\*. And the Fed just cut interest rates for the second time this year (quarter percent....... doesn't sound like a lot but can make mortgage payments $100 less).", 'created': '2024-11-07 20:56:33', 'submission_id': '1glqrno'}
{'comment': "I got into an argument with some MAGA on Twitter, before I finally deleted that stupid app. The dude posted his shopping cart and blamed Biden for it costing him $75. He then posted a receipt. Know what he bought? Case of beer, two pound bags of beef jerky, precut fruit, Smuckers Uncrustables and a few jugs of Pure Leaf iced tea.\n\nDon't blame the government because you don't know how to shop and buy overpriced shit. Our family of 4 spends about $200-$250 a week on groceries and that includes diapers. 15 years ago when I was in college I spent $100 a week on food for just myself.", 'created': '2024-11-07 19:33:35', 'submission_id': '1glqrno'}
{'comment': 'Yeah, I\'m a cashier and I hear that nonsense too at Home Depot. Been working there for over 8 years, and I\'m pretty damn sure I know what the price of some common items were back when Trump was president. \n\nDon\'t get me wrong, some prices did go up but it was very minor. Like say, the cost of a standard key copy went from $2.19 to around $3. Meanwhile bags of Scott\'s mulch have consistently been $3.97, yet people go "I remember when it was $2!" Like bro, you bought that mulch during one of our mulch sales. It\'s always that price then. We\'re just not having the sale now. 🤦\u200d♀️\n\nNow Lumber was interesting. There\'s this one type of plywood near the registers that I use as a barometer for how the price of lumber fluctuated during COVID. It was around $11 in 2019. Then surged to FORTY DOLLARS during the home renovation boom/lumber shortage that COVID caused. Now that that\'s over with, it\'s down to $12 last I was there. Maybe it\'s up a little more now since I\'ve been out on leave due to an injury for the past few weeks but it cant be much.', 'created': '2024-11-07 19:35:43', 'submission_id': '1glqrno'}
{'comment': "I honestly don't know. But Hillary got 65 million votes and Kamala got 67 million. While Biden got over 80 million.\n\nKamala is way more likable than Hillary was back in 2016 and both times we felt like it would be a guaranteed win. I also feel like the energy and enthusiasm behind her was off the charts. Way better than the previous two Democratic candidates. \n\nMaybe I'm reading too much into it and voters were just complacent or lazy? If hypothetically another election was held today would more voters turn out?", 'created': '2024-11-07 15:19:03', 'submission_id': '1glqrno'}
{'comment': 'Yeah we have the lesson now, 2016 and 2024 a woman cannot be president of the United States. Even on the right look what they did to Nikki Haley.', 'created': '2024-11-07 16:24:05', 'submission_id': '1glqrno'}
{'comment': 'Bigotry/Misogyny won the election.', 'created': '2024-11-07 16:47:07', 'submission_id': '1glqrno'}
{'comment': "America's not ready to have a woman as President, and a black one at that. That's it. Plain and simple. If Shapiro had been selected as the candidate, he'd have won. MAGAs don't give a shit about Trump's policies. They want him because he'll always support them in their racist, violent, and hateful ways.", 'created': '2024-11-07 15:32:49', 'submission_id': '1glqrno'}
{'comment': 'No, there’s a dozen different factors and a nontrivial one is that she switched modes, stopped appealing to her base, and started trying to attract a bunch of losers who were never going to vote other than Trump.', 'created': '2024-11-07 15:29:03', 'submission_id': '1glqrno'}
{'comment': 'Yes and those single issue voters. They don’t like Kamala for one thing so they don’t support her. As you can see republicans support their candidate regardless of how fucked up they are. I do believe there’s a lot of liberal men that are very anti women. They may support abortion access for them but do they want one in charge?', 'created': '2024-11-07 17:55:57', 'submission_id': '1glqrno'}
{'comment': 'Yes!', 'created': '2024-11-07 16:45:18', 'submission_id': '1glqrno'}
{'comment': 'Honestly I think the disastrous next 4 years will be so awful that it will actually wake people up. MAGAs will never admit that Trump sucks, but maybe those on the fence might realize how horrible he is.', 'created': '2024-11-07 16:46:13', 'submission_id': '1glqrno'}
{'comment': 'I am really curious how Pete Buttigeg would fare. I think he is pretty charismatic and he is really good at explaining policies and stuff to people in lay terms. I agree that part of the reason dems performed badly this time around is they overestimate how smart our population is.', 'created': '2024-11-08 01:34:50', 'submission_id': '1glqrno'}
{'comment': 'Yeah it might even be more than that. There are millions of people who are eligible to register to vote and just choose not to as well. \n\nEven in 2020 we had the largest voting numbers and it is still only 80% of eligible voters. \n\nhttps://data.ccrpc.org/dataset/voter-participation', 'created': '2024-11-07 21:07:30', 'submission_id': '1glqrno'}
{'comment': 'So is there a chance she overtakes the popular vote? Not that it really matters.', 'created': '2024-11-07 18:52:23', 'submission_id': '1glqrno'}
{'comment': 'So your hypothesis is they fucked up vote counts in all 50 states? Cmon man.', 'created': '2024-11-07 18:07:48', 'submission_id': '1glqrno'}
{'comment': "His timing of dropping out didn't help. But the Dems misunderstood the message the electorate wanted to hear as well. They were banking on the Dobbs decision because of overperformance in 2022. And should have focused every single message on the economy and immigration. I still don't know that they could have won this time but maybe they would have stemmed the bleed a little. Edit: spelling.", 'created': '2024-11-07 16:47:33', 'submission_id': '1glqrno'}
{'comment': "it did matter. we all underestimated that. not to the extent that dems were bothered by it; but, it really just added fuel to an already raging fire with everyone else.\n\nlike what did people not like throughout biden's term who weren't dems? the covid mask and vaxx mandate. the border. the culture war of extreme wokeness. the high prices. hiding biden's health. skipping a primary to supplant harris. that's a roadmap of built mistrust. it's like, one thing after another after another, etc.\n\nshe needed to have a strong sense of what she wanted to do to help with the high prices like she has a strong know how of the abortion issue. now that i think about it, it's possible that she didn't have confidence on her economic agenda. she just listed a bunch of things she would do to help with costs. and that's why she didn't hammer on it more towards the end. she would need a lot of help from congress, and maybe she was afraid to make promises she could possibly not keep. just speculating though.", 'created': '2024-11-07 16:46:35', 'submission_id': '1glqrno'}
{'comment': 'Should have dropped out in time for a real primary well in advance. Late stage open convention would’ve been an even worse alternative, probably.', 'created': '2024-11-08 02:18:13', 'submission_id': '1glqrno'}
{'comment': 'I agree with you. It’s such a nonsense made up problem that isn’t backed up with any actually stats. If gop really wanted to do something about it they would increase penalties for anyone employing illegals. Of course they don’t want to do that. \n\nHaving said that though we certainly know it’s a hot topic in voters minds and she didn’t make a case for anything and kinda flailed.', 'created': '2024-11-07 20:52:38', 'submission_id': '1glqrno'}
{'comment': 'people voted for a lot of things, but the economy and border were the biggest. the border problem lessened when biden took executive action. in 2024. people voted criticizing he and harris for not doing anything in 2021-2023. the border bill was killed in 2024. so voters saw that the executive action and border bill were campaign issues that biden/harris finally paid attention to. those were the optics.', 'created': '2024-11-08 01:07:51', 'submission_id': '1glqrno'}
{'comment': 'Missing the forest for the trees. We have to analyze how to change messaging instead of throwing our hands up and saying "well people are racist and sexist thats why we lost."', 'created': '2024-11-07 17:19:42', 'submission_id': '1glqrno'}
{'comment': "biden would not have won. walz wouldn't either. shapiro might have.\n\nbut don't blame outward excuses like gender and race for why she lost. she lost because voters decided she was the incumbent. she was not biden, but she did not end her campaign with a strong message for the economy and the border. she chose abortion and democracy. i forget if it was the ellipses rally in dc but one of her ending rallies...she did say her focus on day 1 will be abortion.\n\nshe made a mistake at the end. a costly one. dems need to look within or their not gonna win '28. they need to put the culture war on the back burner, and speak up when the far left is looking to cancel everyone over little things. they should make the economy, border and abortion their main policy. use democracy and foreign policy as a caveat. stick to that all the way until election day.", 'created': '2024-11-08 01:04:36', 'submission_id': '1glqrno'}
{'comment': "I refuse to believe that 15 million Biden/Harris voters just exited the voting pool because they became sexist over the course of 4 really good years under the same administration they turned out for in 2020. I cannot believe every news outlet and government agency isn't investigating voter suppression.\n\n15 million is just too many people to become spontaneously sexist and vanish.", 'created': '2024-11-07 17:25:01', 'submission_id': '1glqrno'}
{'comment': 'i see that too. with all the scandals they go through. hopefully they will hold like texas. texas got red issues but held thanks to all the bad left optics. even cruz held on. new york must do the same. survive.', 'created': '2024-11-08 01:12:33', 'submission_id': '1glqrno'}
{'comment': 'How? Biden is the most progressive president so far. Liz Cheney supported us without asking for any concessions.', 'created': '2024-11-07 20:43:19', 'submission_id': '1glqrno'}
{'comment': 'That doesn’t mean shit. The ones who voted for Trump were either people born here and raised by Trump supporters or people who left Mexico for whatever reason. They are here now, that’s what matters and they clearly prefer Trump.', 'created': '2024-11-07 16:14:28', 'submission_id': '1glqrno'}
{'comment': 'American Hispanics are not the same. You know this.', 'created': '2024-11-07 16:48:33', 'submission_id': '1glqrno'}
{'comment': 'The ones who are heavy on machismo culture didn’t vote for her and those are the ones we have here', 'created': '2024-11-07 17:00:23', 'submission_id': '1glqrno'}
{'comment': "Yes I would. She will probably learn some lessons on message moving forward. I'm not sure this racist, sexist country is ready for her.", 'created': '2024-11-07 20:59:15', 'submission_id': '1glqrno'}
{'comment': 'Simple, want them to connect with the Democratic party? Run a male candidate.\n\nYou only need to convince the book readers. The rest just vote on emotional reasons. The Democrats try to represent minorities and people of color. Then they make the mistake of thinking the people they represent share their values. Misogyny is a strong cultural component of people of color. Muslim men are going to vote for a woman? Latino men? Not according to the data.\n\n"They\'re eating the cats. They\'re eating the dogs." <-- that\'s how you win over voters.', 'created': '2024-11-07 17:10:34', 'submission_id': '1glqrno'}
{'comment': 'Screw that. It\'s past time to admit that Americans are lazy idiots that don\'t want to think. They want pie in the sky promises and platitudes delivered by an old white guy. They have some hazy ideas about America being "great" in the 50s or 60s but if you asked those same people what the tax and labor laws were like then you would get zilch.', 'created': '2024-11-07 18:17:00', 'submission_id': '1glqrno'}
{'comment': 'Trump is using their own stupidity against them.', 'created': '2024-11-07 17:35:01', 'submission_id': '1glqrno'}
{'comment': 'America is progressive but not nearly as progressive as we’d like it to be/perceive it to be. We are far beyond other nations in the world which gives off an illusion that we’re progressive in every sense of the word. We’re not.', 'created': '2024-11-07 17:58:10', 'submission_id': '1glqrno'}
{'comment': 'Hillary had 65.8 million votes. \nKamala has 68.1 million currently. \n\nJoe Biden (who is the owner of a penis) had 81.2 million votes.', 'created': '2024-11-07 19:55:56', 'submission_id': '1glqrno'}
{'comment': "Me personally? I think she's smart and capable. If she's the nominee, I'll vote for her. If we still have elections.", 'created': '2024-11-07 20:24:52', 'submission_id': '1glqrno'}
{'comment': "It's a conclusion, not a solution.", 'created': '2024-11-07 20:11:37', 'submission_id': '1glqrno'}
{'comment': 'It also came from foreign influence. And I don’t really know what you wanted the Dems to do about it, especially the domestic stuff. You can’t abandon liberal democratic principles to save liberal democracy, that’s a catch 22.', 'created': '2024-11-07 21:35:17', 'submission_id': '1glqrno'}
{'comment': 'As I wrote elsewhere:\n\nI\'m not a conspiracist or a sore loser in general, but am I the only one who finds this whole election extremely sus? I mean, just look at the circumstances:\n\n1. Trump\'s comments about he and Mike Johnson\'s "little secret". What was that about? Something that has been in the works for the last four years?\n\n2. Trump\'s complacency: Lately, he has been totally blasé about if people are voting or not. Like it won\'t matter anyway. He has been totally disinterested in doing rallies, complaining about that he much rather would go home and sleep etc.\n\n3. Trump was unusually calm on Truth Social during election night. Like he was sure of a victory from the get-go.\n\n4. It\'s on par for him to accuse others of thing he himself does. And surely enough, he whined about election fraud this time around as well.\n\n5. Extremely high enthusiasm for Harris throughout, over 75000 people at her closing speech etc. Her momentum has been off the charts the last weeks. Yet, som reports says that 15 million Dems didn\'t bother to vote. 15 millions??\n\n6. Trump\'s last rallies have drawn extremely small crowds, half-filled small venues etc. Very low energy and enthusiasm. Yet he wins in a landslide, the senate, the house, popular vote, everything??\n\n7. As someone noted in another sub: In Nevada, Trump won but more people also voted to protect abortion rights in the constitution. Why wasn\'t these people voting for Harris?\n\nI don\'t know about you, but taken together all this is extremely suspicious. Do we know for a fact that nothing has been tampered with? That the voting machines can be trusted 100%?', 'created': '2024-11-07 16:34:15', 'submission_id': '1glqrno'}
{'comment': 'I wonder if it will be the far left that bails us out of this Nazi regime as well.', 'created': '2024-11-07 21:12:17', 'submission_id': '1glqrno'}
{'comment': "Did I say she had a bad policy? \n\nI don't think most voters even knew what her policies were that's the problem. She said nothing but she's from a middle class family and clearly failed to inspire not politically involved people to vote for her. \n\nDonald Trump got millions of non-voters to support him, You're not going to beat him unless you are willing to play the game.", 'created': '2024-11-07 22:54:47', 'submission_id': '1glqrno'}
{'comment': 'He did teach, and continues to teach, how to cherry pick and push the boundaries. He taught how you can get impeached and carry on. He taught how you can veer over many white lines and carry on.', 'created': '2024-11-08 05:12:26', 'submission_id': '1glqrno'}
{'comment': 'Yep…it’s way too late. The Right Wing machine is just lying to them…you can’t win when they don’t trust normal news.', 'created': '2024-11-07 19:03:00', 'submission_id': '1glqrno'}
{'comment': 'Ditto. I have no idea what the solution is. They won’t believe legitimate journalists, but they’ll completely buy into anything some right wing mouthpiece with a microphone on YouTube or TickTock has to say? \n\nWell, they’re about to reap what they’ve sown - I just wish the rest of us weren’t going to have to suffer for it. \n\nI’m really pissed.', 'created': '2024-11-07 19:33:43', 'submission_id': '1glqrno'}
{'comment': 'Even though I have no solution, I’m comforted to know someone else was thinking the same. I actually was enraged yesterday afternoon & when I rage I act usually. I started looking into any activism cause that battles misinformation, but I really couldn’t find anything out there, unless I missed something. 😕', 'created': '2024-11-07 21:41:18', 'submission_id': '1glqrno'}
{'comment': 'Let’s start a subreddit with the purpose of trying to figure out how to fix this', 'created': '2024-11-07 20:37:17', 'submission_id': '1glqrno'}
{'comment': 'Or we could go back to when reporting news meant facts not opinions. Fox shouldn\'t be allowed to have news after their brand, it\'s misleading. As are other "news" outlets.', 'created': '2024-11-08 03:54:01', 'submission_id': '1glqrno'}
{'comment': 'Do they still teach kids in school how to check your sources, which websites are educational/legitimate, etc.?', 'created': '2024-11-08 04:26:07', 'submission_id': '1glqrno'}
{'comment': 'And then along comes Elon, the purchase of twitter before the election and then him climbing up the ol’ orange Rump hole.', 'created': '2024-11-08 07:07:28', 'submission_id': '1glqrno'}
{'comment': 'You should add Reddit to that list', 'created': '2024-11-07 19:47:48', 'submission_id': '1glqrno'}
{'comment': 'I’ve heard so many reasons voters claim they voted for him and so far a total of zero were based on actual reality. \n\nIdk what the solution is or if there is a single fix-all, but calling BS every time someone repeats BS is going to be necessary since the White House will be cranking out lies all the time again. \n\nWe’ve made it easy for morons to gain inflated egos without providing anything of substance. I switched my approach with in person debates earlier this year. It’s not on me to prove I’m right, it’s on the MAGA supporter to prove they’re not wrong. “Nope! That is a lie. Saying it’s true does not make it true. Where is the proof?” I haven’t ruled out FB memes as their main source but at least they know to not pull up a FB meme as proof they’re not FOS.', 'created': '2024-11-08 23:23:02', 'submission_id': '1glqrno'}
{'comment': 'On the other side, there is a large portion of the US that only gets their information from the main channel networks and the newspaper! If it’s not reported at all or not accurately, a lot of people don’t see it or will take those outlets as truth.', 'created': '2024-11-07 22:36:08', 'submission_id': '1glqrno'}
{'comment': 'idk why they seriously thought HE was for them… like HE HATES MINORITIES. WHY ARE YOU VOTING FOR SOMEONE WHO WANTS TO DEPORT YOU (EVEN IF YOU’RE A US CITIZEN) AND TAKE YOUR RIGHTS AWAY???\n\namerica is actually fucking braindead. i can’t believe this', 'created': '2024-11-08 08:07:10', 'submission_id': '1glqrno'}
{'comment': "What exactly do you think they're gonna regret? What's trump gonna do that will make them regret voting for him? Like be serious. I genuinely wanna know", 'created': '2024-11-08 19:03:20', 'submission_id': '1glqrno'}
{'comment': 'he does NOT know how to run a country and idk why they think he can… republicans are braindead', 'created': '2024-11-07 22:39:43', 'submission_id': '1glqrno'}
{'comment': 'And he gave them a stimulus check. Unfortunately this is a very real reason for many people that voted for him.', 'created': '2024-11-08 07:20:57', 'submission_id': '1glqrno'}
{'comment': '[removed]', 'created': '2024-11-08 02:48:35', 'submission_id': '1glqrno'}
{'comment': 'the thing about TikTok, Facebook, X is that a despicable amount of accounts come from troll farms... some of them are so lazy the don\'t even make an effort to put a profile pic and a few picture or vidoes-- its just user35325 ... \n\nnone of the se forums are a "townsquare" where people debate.. like you said. its an algorithm designed to keep you angry, excited and engaged. \n\nEdward Bernays would be proud', 'created': '2024-11-08 03:50:26', 'submission_id': '1glqrno'}
{'comment': 'Yes. The one person I followed up with gave me a non answer. I guess the "Lyin Kamala" stuff worked. I did get some feedback that she knew Biden was in decline and didn\'t say anything. That is kind of lame. You expect she will call Barb in a Detroit suburb with that info? Pretty sure Reagan was diagnosed with Alziemers in the White House and we were never told. I think any party would play it the same. \n\nI guess we will see. No way Trump\'s mental state is good for four more years. I am sure they will "hide it" for a bit.', 'created': '2024-11-07 20:48:07', 'submission_id': '1glqrno'}
{'comment': 'I dunno… Michelle Obama’s “when they go low, we go high” hasn’t been working out so well for us. It’s gotten worse even. Game theory also says that if we just continue to take it without fighting back in a meaningful way, it only continues to embolden the other side. If there is a way to counter them without getting our hands dirty, I’d love to know.', 'created': '2024-11-08 00:43:39', 'submission_id': '1glqrno'}
{'comment': 'Don’t forget that she is a woman… people can’t seem to get over that fact as well', 'created': '2024-11-07 22:39:53', 'submission_id': '1glqrno'}
{'comment': 'I guess I disagree. I 100% percent get that she rubbed some people the wrong way. I strongly wish Biden would have kept his promise and let us have an actual primary. I likely still would have been a Harris supporter, but it would have depended on who else ran.\n\nMaybe it is the same way I can’t stand Trump, but a lot of people like him.', 'created': '2024-11-08 19:14:05', 'submission_id': '1glqrno'}
{'comment': "And that's assuming it ends in 4 years. Will there even be another election?", 'created': '2024-11-08 06:36:41', 'submission_id': '1glqrno'}
{'comment': 'The problem is "progressives" talk shit and post watermelons but they don\'t *fucking vote*.', 'created': '2024-11-07 19:42:52', 'submission_id': '1glqrno'}
{'comment': "Do we trust polls at all any more?\n\nThey are maybe just representative of the folks that answer. We saw tonight a lot of folks didn't answer.", 'created': '2024-11-08 02:22:28', 'submission_id': '1glqrno'}
{'comment': 'Am I the only one who thought this shorter campaign was an advantage to Harris? To sweep in at the end and blow Trump away with a far better alternative? It sure looked that way. I would not have wanted to have it drag out. 107 days was plenty long for me.', 'created': '2024-11-08 16:50:21', 'submission_id': '1glqrno'}
{'comment': 'I didn’t like her until she came on the scene. I didn’t know her. It was like they hid her. I changed my mind quickly.No she doesn’t have Obama like orator skills, but there was absolutely nothing wrong with her laugh. Anyway, we should have had a primary. I could not believe how much talent Dems had until she was picking a VP. Finding Biden’s replacement should have been in the works the day Biden took office. I truly thought he would not run again. Biden only won because of Covid and Trump practically killing us all with his complete incompetence.', 'created': '2024-11-07 22:35:43', 'submission_id': '1glqrno'}
{'comment': "She got 3 million more than Hillary on 2016 so far. And the counts aren't finished. Just pointing that out", 'created': '2024-11-07 20:15:23', 'submission_id': '1glqrno'}
{'comment': 'Yup, a real Democratic primary would have been helpful.', 'created': '2024-11-07 19:41:55', 'submission_id': '1glqrno'}
{'comment': 'Do you not remember in 2020 that he promised he was only going to run for 1 term, and would not seek relection?', 'created': '2024-11-07 20:25:04', 'submission_id': '1glqrno'}
{'comment': 'They will blame Obama', 'created': '2024-11-07 16:41:43', 'submission_id': '1glqrno'}
{'comment': 'they will. they’ll say we’re still under his policy or something.', 'created': '2024-11-07 16:24:08', 'submission_id': '1glqrno'}
{'comment': 'I’m already working on some “I did that“ Trump stickers. I plan to put them on everything as the costs go up. At least that’ll be fun.\n\nI think I’m going to make a template and keep track of the costs of typical items now compared to what they will be. Whenever possible, I will include the old price on the sticker.', 'created': '2024-11-07 19:23:48', 'submission_id': '1glqrno'}
{'comment': 'It’s ok. At least the rich will get tax breaks.', 'created': '2024-11-07 18:31:06', 'submission_id': '1glqrno'}
{'comment': 'Democrats have been unfairly labeled as the party that’s weak on the economy', 'created': '2024-11-07 19:35:29', 'submission_id': '1glqrno'}
{'comment': 'Source?', 'created': '2024-11-07 19:49:41', 'submission_id': '1glqrno'}
{'comment': 'Between the tarrifs and deporting the people who work in our fields, we are in real trouble.', 'created': '2024-11-07 18:55:12', 'submission_id': '1glqrno'}
{'comment': 'At this point I’m saying fuck it. Let shit get bad bad. The people of this nation need to be taught a hard felt lesson in hopes of waking them up. They’re fucking morons. Yes a lot of innocent people will hurt as well. And we get to blame them for their fuck up. Fuck it let it get worse to show the people the true fruits of their labor. Fucking assholes.', 'created': '2024-11-07 19:05:35', 'submission_id': '1glqrno'}
{'comment': 'The bond market already is showing significant signs over the past 24hrs it is ready to see inflation go up.', 'created': '2024-11-08 01:35:36', 'submission_id': '1glqrno'}
{'comment': 'As if Kamal’s proposed retail price controls hadn’t ALREADY been proven to be the worst economic policy in history that lead to hyperinflation across Germany and other dictator-lead states. Learned nothing from her great father: \n\nhttps://youtube.com/clip/UgkxmKTDI5OXnUDil—MBiT3F5FglPzZIdKe?si=bhdsIJXvCypr7V6X', 'created': '2024-11-08 11:47:33', 'submission_id': '1glqrno'}
{'comment': 'As if Kamal’s proposed retail price controls hadn’t ALREADY been proven to be the worst economic policy in history that lead to hyperinflation across Germany and other dictator-lead states. Learned nothing from her great father: \n\nhttps://youtube.com/clip/UgkxmKTDI5OXnUDil—MBiT3F5FglPzZIdKe?si=bhdsIJXvCypr7V6X', 'created': '2024-11-08 11:47:33', 'submission_id': '1glqrno'}
{'comment': 'Not a chance, There will be hyperinflation under Trump.', 'created': '2024-11-07 18:21:52', 'submission_id': '1glqrno'}
{'comment': 'That would be great if the rest of us could opt out. Unfortunately, they signed us up for this disaster too.', 'created': '2024-11-07 19:51:28', 'submission_id': '1glqrno'}
{'comment': 'she’s only 18 so i feel like i should give her some slack but im also not letting her live it down.', 'created': '2024-11-08 03:21:32', 'submission_id': '1glqrno'}
{'comment': 'Same feels I had when someone showed a picture they took of their "$8 eggs HOW DARE THEY BE EXPENSIVE".....well those eggs were blue eggs hand picked from heritage Araucana chickens. These blue eggs are expensive because they come from a small farm with specialty chickens. And honestly, $8 for a dozen of rare blue chicken eggs is not bad. But people are fucking stupid and on average only read at a 6th grade level - spoiled little titty babies IMO. They are SO concerned about prices - well NGL kinda looking forward to the schadenfreude w/ them really seeing what high prices really look like when 1) tariffs increase everything and 2) all produce/perishable prices jack up massively due to migrants who pick our food not being around to pick all our food and it rots in the field.', 'created': '2024-11-08 01:53:46', 'submission_id': '1glqrno'}
{'comment': 'She was attached to Biden. The non voters are still idiots.', 'created': '2024-11-07 15:35:55', 'submission_id': '1glqrno'}
{'comment': 'I do. I believe half the country isn\'t ready for a woman president. Too misogynistic. (I\'m a man from Texas btw, we are NOT all ass-hats). Woman candidate with a few well placed misogynistic remarks, throw in a healthy dose of fear and bam, we have our election results. I just thought we were further along as a whole than that. Sadly. We are not.\n\nEdit to add "not" in front of ass-hats. Just realized I mistyped.', 'created': '2024-11-07 17:23:03', 'submission_id': '1glqrno'}
{'comment': 'Numbers seem to be down for BOTH parties this election. Unfortunately more down for Democrats. Non-American observing from a distance. I did try upvoting every post encouraging people to show up. Particularly ones that pointed out the paralells between 2016 with so much media and poll coverage giving the impression that a Dem victory was "inevitable". Gerrymandering, intimidation are also factors are probably also factors but if the Dems actually show up they can win. I think the answer to your last question is yes! These things seem to be cyclical. In 2016 not as many motivated Dems. 2020 they were more motivated and won. Unfortunately got complacent about actually showing up at the polls this year.', 'created': '2024-11-07 15:58:44', 'submission_id': '1glqrno'}
{'comment': "The simple comparison is a man vs a woman. That's it. It's not policy or anything complicated. People don't know policy. It's simply sexism.", 'created': '2024-11-07 17:03:10', 'submission_id': '1glqrno'}
{'comment': 'I’m not sure when kamala ever felt like a “guaranteed win”.', 'created': '2024-11-07 20:49:47', 'submission_id': '1glqrno'}
{'comment': "Are we sure that Kamala was more likable than Hilary? I mean Kamala didn't even make it to the primary in 2020 election and Hilary made it to the general in 2016. (As a caveat I personally didn't like Hilary in 2016 because she def had this air of entitlement that the Presidency was owed to her) Kamala also had record low approval ratings as VP. I'll be honest, I never really liked her either due to her prosecutorial attitude and how bad she is a retail politicking. I backed her and voted for her of course, but we def needed a better candidate and that falls on Biden for dropping out only 3 months before the election. There was a lot of enthusiasm after she became the candidate, and the polls tightened but I think it just was a rise from Bidens approval ratings which are in the toilet but not nearly enough to get her over the line.", 'created': '2024-11-07 18:36:42', 'submission_id': '1glqrno'}
{'comment': '[removed]', 'created': '2024-11-07 16:57:04', 'submission_id': '1glqrno'}
{'comment': 'Sadly i think the democrats need to run a male candidate to win again, America is still far too religious for a female candidate, they are at a major disadvantage out of the gate due to religion', 'created': '2024-11-07 19:28:42', 'submission_id': '1glqrno'}
{'comment': 'I’d argue that if Nikki Hayley became the candidate she would have won against Biden or Kamala by a landslide.', 'created': '2024-11-07 20:58:43', 'submission_id': '1glqrno'}
{'comment': 'Sad but true. I hate that people actually want that type of behavior to be acceptable in society. Honestly considering leaving the USA. I don’t want to see what we descend into after this.', 'created': '2024-11-07 15:34:33', 'submission_id': '1glqrno'}
{'comment': 'Misogony seems to be real and run deep even in women. Trump outperformed with women despite abortion ban and condescending messaging. Female candidates especially at the top of the ticket are a losing proposition for both parties. Sarah Palin, Caitlin Jenner and for the older or historians amongst us may remember Geraldine Ferraro were all busts. I really flinched when Democrats strong armed Joe Biden out. I personally didn\'t say or post anything at the time I hoped this time things would be different. Unfortunately clearly they are not. The important battle states are still very socially conservative. While I would absolutely love it if really progressive candidates from diverse backgrounds could win it seems now they cannot. If the Dems want to actually win got use the "classic candidates".', 'created': '2024-11-07 16:13:00', 'submission_id': '1glqrno'}
{'comment': 'Outside of some generational charismatic candidate I am not sure that anyone would have won 3 months before an election when the current Admin had such low approval ratings and seemingly voters were tired of Democrats being in charge (based on the national rightward shift map that came out recently). Given how unpopular the Biden admin was, 3 months is a monumental order to define yourself enough nationally to get elected President when we have a guy (Trump) that has been running for President since 2016.', 'created': '2024-11-07 18:42:34', 'submission_id': '1glqrno'}
{'comment': 'If the ticket was Walz/Harris instead of Harris/Walz it would have won.\n\nThe racism and sexism in this nation is embarrassing. \n\nAnd the evangelicals...\n\nhttps://preview.redd.it/0miw37q2yjzd1.jpeg?width=500&format=pjpg&auto=webp&s=c51d6e0c62d61e91e3d4cc897e3011dfe643b60e', 'created': '2024-11-07 23:02:24', 'submission_id': '1glqrno'}
{'comment': 'Right when she was getting people like the Cheneys involved.', 'created': '2024-11-07 15:30:17', 'submission_id': '1glqrno'}
{'comment': 'I agree that we aren’t getting 100% turnout, but to LOSE 15m votes from four years ago after reporting the donation and registration records doesn’t make sense to me. I hope I don’t sound like a nut job.', 'created': '2024-11-07 21:09:10', 'submission_id': '1glqrno'}
{'comment': 'Nope, but from what I’ve read, several. \n\nKentucky, Pennsylvania, Utah, North Carolina mentioned, with voters saying their ballot was never counted. Kentucky had several hours of machine glitches. Look around the other subs.', 'created': '2024-11-07 18:59:43', 'submission_id': '1glqrno'}
{'comment': 'All politicians make promises they have no sure idea they can keep. She should have made the promises.', 'created': '2024-11-07 18:55:32', 'submission_id': '1glqrno'}
{'comment': 'It would have been nice but its a racist and sexist country and now Trump is back and he’s going to dismantle a lot. If we had run 2 white men, we might not be in this position. This wasn’t the time for dei.', 'created': '2024-11-07 17:25:55', 'submission_id': '1glqrno'}
{'comment': 'Sure, you can do that. You can go on assuming that people are rational and informed and vote in their own self interests. It\'s just not true. And that approach has failed over, and over, and over. You know what wins? "They\'re sending rapists and criminals. They\'re poisoning the blood of this nation." That wins.', 'created': '2024-11-07 17:58:59', 'submission_id': '1glqrno'}
{'comment': 'They did not vanish. They just didn\'t show up to vote for her. They stayed home. They were not spontaneously sexist. Last time they voted for Joe Biden, a man. \n\nHere\'s what you\'ll hear a lot of: "I\'m okay with a woman president, but not \\_that\\_ woman." Then you start trying to find a woman they would vote for. You won\'t find one.', 'created': '2024-11-07 17:57:36', 'submission_id': '1glqrno'}
{'comment': 'Biden isn’t progressive. The Democrat party is centrist at best. In most countries our Democrat party would be considered center-right. Harris dropped her push for Medicare for all, almost instantly, because of push back as an example. \n\nIn hindsight, touting Dick Cheney’s endorsement like it was a good thing should have been our warning sign.', 'created': '2024-11-07 21:15:31', 'submission_id': '1glqrno'}
{'comment': 'Catholicism and Homophobia go a long way. As well as general sexism. They see a candidate who wants to support queer rights, and doesn’t make her faith a major part of her campaign, and don’t want her. So they turn to the guy who wants to erase homosexuality and pretends to be a Christian', 'created': '2024-11-07 16:17:42', 'submission_id': '1glqrno'}
{'comment': 'Don’t generalize. I’m Hispanic and voted for Harris. All this demonizing of them isn’t going to help.', 'created': '2024-11-07 22:12:58', 'submission_id': '1glqrno'}
{'comment': '> You only need to convince the book readers. The rest just vote on emotional reasons. \n\nThat’s actually a really good way of putting it. Never thought of it like that before.', 'created': '2024-11-07 20:44:21', 'submission_id': '1glqrno'}
{'comment': 'That part in particular did leave me scratching my head as well: the energy. Kamala had so much more energy behind her campaign, the 15 million people that didn’t vote boggles my mind. Plus the fact that Trump won the popular vote is extremely strange…', 'created': '2024-11-07 16:39:21', 'submission_id': '1glqrno'}
{'comment': 'I’ve noticed all of these and I’m totally with you. Even his acceptance speech he seemed totally blasé. Something feels so OFF to me???', 'created': '2024-11-07 18:44:24', 'submission_id': '1glqrno'}
{'comment': "This! Thank you so much I thought I was alone in these thoughts. I told my SO it's awfully funny they have been quiet about voter fraud this time. I'm surprised he isn't complaining about the states he did lose. It's odd that he won the popular vote after losing it twice. Just doesn't add up. I think his little secret will come out and it will at least involve Russia helping him yet again. \n\nRussia won more than we lost. They will destroy Ukraine and won't stop there. We just sealed entire country's fate bc we allowed Russia and their propaganda to brainwash droves of our citizens. Even Reagan would be ashamed.", 'created': '2024-11-07 19:38:49', 'submission_id': '1glqrno'}
{'comment': "They didn't bail us out this time. They let them win so no they won't", 'created': '2024-11-08 00:03:17', 'submission_id': '1glqrno'}
{'comment': 'I took incompetent as bad policy lol\n\nI agree with you tho. The only things I remember about her economic policy was money to first time home buyers, money for having a kid and money to the people who want to start a small business. I’m a 27 year old female, I don’t plan to have kids in the next 4 years. I work in corporate and live in a large city where home buying is rare/renting is the norm. Technically none of the policies she stated over and over again apply to me, so I could see people who aren’t as in-tuned to politics as me that would be turned off as how could she help me?', 'created': '2024-11-07 23:00:34', 'submission_id': '1glqrno'}
{'comment': 'Same. I’m bracing myself for the inevitable shit storm that’s going to ensue from him getting back at the levers of power. We’re all going to suffer, but many of the people who voted for him are going to suffer worse it seems. There was a time when I would have genuinely thought that really sucked. But now? Meh. Too bad. Their ignorance and refusal to accept the truth got them what they wished for. They made their bed, now they get to lie in it, shit and all.', 'created': '2024-11-07 19:37:24', 'submission_id': '1glqrno'}
{'comment': 'A lot of times when I try to engage with independents they say that they don’t feel like mango man is taken seriously. They point to the “fine people” and “bloodbath” comments. They say they hear it on the news and then when they go and watch it they feel like it’s taken out of context and the media is misleading them. The two issues with this are, it diminishes the threat Trump is and they lose trust in media. No idea how to overcome but those are examples of where Trump gets a pass', 'created': '2024-11-08 01:50:41', 'submission_id': '1glqrno'}
{'comment': "It's because there is no money to be made down that route", 'created': '2024-11-07 23:12:13', 'submission_id': '1glqrno'}
{'comment': 'You can legislate what algorithms are allowed to do, what demographic data companies are allowed to collect and analyze, you can require companies to be completely transparent with their customers about how the algorithm manipulates what they’re seeing so people can at least try to under they’re living in bubbles. None of those infringe on any right the idiotic legal concept of corporate personhood might confer on social media companies.', 'created': '2024-11-08 08:57:54', 'submission_id': '1glqrno'}
{'comment': 'They determine what is true or false by using confirmation bias. They don’t rely on legitimate journalists so no need to cite those. \n\nAn approach that has been working much better for me is I do t put the burden of proof on myself anymore. They’ll just disregard it as “Fake News” right away, no need to waste my time with that or waste my time providing anything of substance. Now, if they something I know is BS, I just call BS without necessarily explaining how I know it’s BS. It’s not on me to explain it. If they’re confident it’s true, they need to prove it or take the other option of not repeating it again. \n\nAnother approach is basically like a 4 year old in the “Why?” phase. They state something and the response is a single word question. There are pronouns without nouns regularly.', 'created': '2024-11-08 23:32:24', 'submission_id': '1glqrno'}
{'comment': 'Staying informed is the best thing any of us can do to at least not end up in our own version of an alternative reality or in the alternate reality they’re in. \n\nWe are all being duped into accepting he can be a legitimate president. There aren’t many disqualifiers for US president but Acts of Treason is definitely on the short list. The senate portion of the impeachment for J6 ended up being after DJT’s term had ended. McConnell was clear that it was no longer possible to remove him and the criminal justice system would handle criminal acts. Corrupt justices on the Supreme Court delayed that case by 6 months after DJT’s defense team had already delayed it for 3 months. \n\nHe is not a legitimate president and will still be referred to as Former President as far as I’m concerned. It’s an easy way to remind people he is the guy responsible for Jan6. \n\n\n\nSpeaking up to call BS every time a lie is repeated is a must, not arguing, just calling BS. The “report” options on social media also need to be utilized when community rules are being violated.', 'created': '2024-11-09 00:47:08', 'submission_id': '1glqrno'}
{'comment': 'We did it Reddit!', 'created': '2024-11-07 22:47:23', 'submission_id': '1glqrno'}
{'comment': 'True. But somehow Reddit is more sane than some of the other platforms. It’s not filled with lies and misinformation. But all social media has some kind of bent to it that isn’t great for social or political discourse.', 'created': '2024-11-07 20:18:58', 'submission_id': '1glqrno'}
{'comment': 'Right??!!! Please someone help\nMe make it make sense!!!! It doesnt make sense. It won’t make sense. I’ve heard so much at my workplace. So many reasons why . Unfortunately, he gave me a stimulus check is a big one , “he’s just like me “ is another. I saw an Asian couple that could barely speak English wearing all\nAmerican flag colors and saying they wanted to be American supporting- maybe people like this thought they were voting for the most “American president” just trying to brain storm.', 'created': '2024-11-08 19:24:29', 'submission_id': '1glqrno'}
{'comment': 'Exactly! I can’t remember where I saw the interview/news article, but the guy was Latino in PA and he said that he didn’t like what Trump said about PR, but he knows how to run a country which is why the guy voted for him… the guys started reason was that Trump has run the country before, so he knows how to do it again 🙄. Literal morons', 'created': '2024-11-07 22:44:47', 'submission_id': '1glqrno'}
{'comment': 'Seriously Gen z fucked us this time for real and there’s no sugar coating it. They’re as brain washed as the right.', 'created': '2024-11-07 20:33:29', 'submission_id': '1glqrno'}
{'comment': 'Oh no not this shit, this is *exactly * the divide and conquer demonize divide demoralize bullshit that gets people at each others throats instead of pulling in the same direction. \n\nProgressives vote.\n\nModerates vote.\n\nIts the disinterested low information voters who don’t pay attention to politics who don’t vote. \n\nIts the people who say “I’m just not political” that don’t vote. Its the people who don’t think about elections unless they’ve got a ballot literally in their hands like 2020 that don’t vote.\n\nThere’s a reason why populism works. It’s popular. And now more than ever with competition from every corner we’re going to need popular politics to stay competitive.', 'created': '2024-11-08 01:01:17', 'submission_id': '1glqrno'}
{'comment': "No it's not.\n\nIn the end, her name recognition became a problem to a lot of low-info voters. Majority of voters described her as too liberal despite her running one of the most moderate campaign.\n\nShe was left with no time to find her footing and experiment with different messaging, no space for any error.", 'created': '2024-11-08 17:04:52', 'submission_id': '1glqrno'}
{'comment': 'Apples to oranges comparison. Hillary won the popular vote- I don’t even want to know how much Kamala lost that one by.\n\nEdit- also look at the numbers of who actually voted. According to axios’s article from yesterday, 2016 had about 10 million less voters actually cast a ballot than this year.', 'created': '2024-11-07 20:45:51', 'submission_id': '1glqrno'}
{'comment': 'There are 13 million more voting age Americans plus mail in voting. What exactly do you think this proves?', 'created': '2024-11-07 22:48:56', 'submission_id': '1glqrno'}
{'comment': 'I mean, she is a woman of color, which is a double-strike against her; and she\'s running against a man who symbolizes racism/hate but also the "tough guy" barroom brawler cowboy type every uneducated man yearns to be. So if you\'re going to run against that, and a celebrity as well with solid branding, you need another celebrity tough guy with business experience: The Rock, Sam Elliot (redneck cowboy credentials), Kevin Costner (cowboy, action hero, not racist since he kissed Whitney Houston in voter\'s eyes), Denzel Washington would win in a heartbeat if he would ever run, Leonardo could run if he did a reality TV show about his investments first and did a few cowboy movies first or action movies with lots of fights, Brad Pitt could run if he was in a reality TV series about business investing (like Shark Tank or something for a year or two), Clooney could do it if he did the same. \n\nThis all sounds silly but nobody took Trump seriously at first and now he literally owns the US government and about 80% of its people worship him. So if you want to beat him you need an equal mirror: an angry, tough guy, swaggering character who yells, carry ons, portrays a business expert in a TV show where he talks about his investments, and threatens opponents (to fit the new age of rage politics).', 'created': '2024-11-07 19:54:41', 'submission_id': '1glqrno'}
{'comment': 'I remember him calling himself a "transitional president". I do not recall him promising not to run for two terms. Can you find a source for that?', 'created': '2024-11-07 20:28:15', 'submission_id': '1glqrno'}
{'comment': 'They will blame Jimmy Carter', 'created': '2024-11-07 22:53:54', 'submission_id': '1glqrno'}
{'comment': '“He couldn’t do anything in 4 years because of bidens policies” even tho they will have control of all chambers.', 'created': '2024-11-07 17:54:51', 'submission_id': '1glqrno'}
{'comment': 'Because Trump will say that as will all his cronies.', 'created': '2024-11-07 20:04:18', 'submission_id': '1glqrno'}
{'comment': "W move. This is what reps did for 4 years. We need to buckle down and do the same. Trump is a self imploding president anyway so he'll make things easy.", 'created': '2024-11-07 21:07:59', 'submission_id': '1glqrno'}
{'comment': 'most people aren’t rich so this doesn’t matter', 'created': '2024-11-07 23:14:44', 'submission_id': '1glqrno'}
{'comment': 'Well the next few years will prove that to be incorrect. Especially when the poor uneducated people who voted for Trump are hit first.', 'created': '2024-11-07 19:37:16', 'submission_id': '1glqrno'}
{'comment': 'Yeah - like if the kid wants to put their hand on the stove...let them put their hand on the stove. Telling them the stove is super hot is obviously not working.', 'created': '2024-11-08 01:36:40', 'submission_id': '1glqrno'}
{'comment': "Those he emulates, Orban (Hungary) and Erdogan (Turkey) had genuine bonafide hyperinflation. Autocrats have total control and have to spread sugar: very low interest rates (when we already have very high employment) and money spent on supporters. If Trump ends up controlling the Fed, there is a very good chance we end up with hyperinflation. My bet is 20% plus or minus a couple of % in two years.\n\nPutting in my calendar -- if I'm wrong, I'll apologize!", 'created': '2024-11-07 18:58:52', 'submission_id': '1glqrno'}
{'comment': "Yeah, I shouldn't have been so rash with my wording there. I'm sorry, I know how it feels to have trump supporters in the family. Hopefully she can see the bigger picture", 'created': '2024-11-08 03:25:30', 'submission_id': '1glqrno'}
{'comment': 'How the fuck does an 18 year old woman become a Trumper?? The young men I get because of all the “bro” podcasts and shit. But a young woman? How??', 'created': '2024-11-08 06:07:28', 'submission_id': '1glqrno'}
{'comment': 'Agreed re non voters are idiots. Honestly people need a much better understanding of 3rd party voting as well. I’m exhausted of being told “last chance to save democracy” too, but this wasn’t the election for a protest type vote', 'created': '2024-11-07 20:51:29', 'submission_id': '1glqrno'}
{'comment': "Yeah it's depressing and sad that we have no evolved as a country. \n\nI was in college when Obama was elected and I thought back then that we finally reached a good place. Now college kids are voting for Trump because they can't stand the thought of a woman in charge. \n\nThen there's Pete Buttigieg. He's smart, a kick ass speaker and incredibly likable. But now it's blatantly obvious he will never get the chance to run this country because of his sexual orientation.", 'created': '2024-11-07 17:30:26', 'submission_id': '1glqrno'}
{'comment': "I agree. There's that thing with the firefighters union - every election for like the past 50 years they have endorsed a democratic candidate. The only 2 times they declined to endorse were 2016...and 2024. I wonder what the difference could be there. Misogyny is strong even among democrats.\xa0\n\n\nIAFF endorsement history:\n\n\n1984: Mondale\n1988: Dukakis\n1992: Clinton\n1996: Clinton\n2000: Gore\n2004: Kerry\n2008: Obama\n2012: Obama\n2016: No one\n2020: Biden\n2024: No one", 'created': '2024-11-07 19:02:45', 'submission_id': '1glqrno'}
{'comment': 'I’m a woman and said that when she decided to run. I like her but I thought it was too risky.', 'created': '2024-11-07 17:59:05', 'submission_id': '1glqrno'}
{'comment': 'I saw an article that claimed we don’t know the full number of votes yet because they have yet to be tabulated and that’s why the turnout numbers seem so low.', 'created': '2024-11-07 17:56:51', 'submission_id': '1glqrno'}
{'comment': '3020 had widespread mail in ballots. That dramatically decreases the barrier to vote and participate. Not all places which did mail in ballots in 2020 continued it into 2024.', 'created': '2024-11-07 18:34:42', 'submission_id': '1glqrno'}
{'comment': "Nicki didn't get anywhere in the primary AMD she wouldn't in a general election because she is just as unelectable.", 'created': '2024-11-07 23:56:23', 'submission_id': '1glqrno'}
{'comment': 'If justice still existed in the USA, his career would be long dead by now, and he\'d never be allowed to run for office again, especially after Jan. 6th. Unfortunately, many Americans fell for his lies about America entering its "golden age" again. What\'s funny, and kinda sad, really, is that even after that happens, they won\'t blame him. They won\'t. They\'ll always, always, always blame someone else, preferably Democrats.', 'created': '2024-11-07 15:41:45', 'submission_id': '1glqrno'}
{'comment': 'I have been thinking about who the dems should run for president in 28. I know Gavin Newsom was thinking about it. I don\'t believe it should be anyone from either coast, too "elitest" and "out of touch" with middle America. It needs to be someone from one of the Midwest states.', 'created': '2024-11-07 17:42:38', 'submission_id': '1glqrno'}
{'comment': 'We have never had anywhere close to 100% turnout that’s what the graph shows you. She “lost” 15 mil for a hundred different reasons. Not all 15 mil of those just sat on the couch and said f this. I’m sure of them voted for a 3rd party. I’m positive that both previous rep and dem voters also swapped for the first time.', 'created': '2024-11-07 21:35:38', 'submission_id': '1glqrno'}
{'comment': 'So how exactly would that happen? Is there any mechanism that would explain how that could have the system impact we saw? Because it sounds like anecdotes to me.', 'created': '2024-11-07 20:24:13', 'submission_id': '1glqrno'}
{'comment': 'It wouldn’t matter if only one ballot machine was working in Kentucky. It wouldn’t have been blue. Lol', 'created': '2024-11-07 21:01:02', 'submission_id': '1glqrno'}
{'comment': 'So her main weakness was she couldn’t lie with a straight enough face so defaulted to truth?', 'created': '2024-11-07 23:52:14', 'submission_id': '1glqrno'}
{'comment': "true but we now see that she's a prosecutor more than a politican. even more crushing to me lol. like she's so good and too good for the job that requires some bad.", 'created': '2024-11-08 01:10:35', 'submission_id': '1glqrno'}
{'comment': 'Politics is about appealing to the most people possible. Just because a white man is more appealing to white men, doesnt make them racist. The same way a black woman appealing to black women isnt racist. Humans share experiences and are tribal based on gender and sex, but that doesnt mean it is racist or sexist, just that they can relate better to those who look like them.', 'created': '2024-11-07 18:11:22', 'submission_id': '1glqrno'}
{'comment': 'You think people purposefully vote against their self interest? No they vote for what they think will help them and their families. Trump campaigned on "bringing costs down for families." Kamalas economic message was "the economy is amazing." If you are struggling which one is in your self interest to vote for? Im not even talking policy, only messaging.', 'created': '2024-11-07 18:07:57', 'submission_id': '1glqrno'}
{'comment': "Yes I think people have to understand that self identifying as non sexist doesn't make one non sexist. Actions and behaviors and speech does. Any hang up over Harris' gender or sex leading to one to abstain from voting is sexist, and even good and well meaning people can be.\n\nEveryone is susceptible to implicit biases. Only some have the self reflection to notice that.", 'created': '2024-11-07 18:38:28', 'submission_id': '1glqrno'}
{'comment': 'Nailed it. AOC? Whitmer? Warren? Klobuchar? Too liberal, not experienced enough, too old, etc etc. There will be an excuse to sideline every possibility.', 'created': '2024-11-07 21:32:54', 'submission_id': '1glqrno'}
{'comment': 'A lot of Biden’s policies align with center-left governments like UK, France, and Germany, while in Scandinavia he would be a centrist. I think we need to stop repeating the false claim that dems would be center-right in Europe. \n\nThey are even more progressive than Europe on issues like abortion, trans rights, and marijuana. As far as the social safety nets Europe has, I’m sure the democrats would like to implement some of those, but it’s just not possible with our congress right now. Biden’s plan for universal day-care for example. \n\nI think Kamala would have liked to continue progressive policies. She co-sponsored the green new deal, she supported prison reform and legal marijuana. The issue is needing to moderate to suit the needs of the ever more Conservative Party. To say the democrats have grown more conservative is putting the blame on the wrong party.', 'created': '2024-11-07 21:56:39', 'submission_id': '1glqrno'}
{'comment': "Who is generalizing? I'm looking at the god damned data bro. It speaks for itself. Men of color abandoned Harris. Get real.", 'created': '2024-11-07 22:41:31', 'submission_id': '1glqrno'}
{'comment': "It really doesn't add up. Someone else pointed out that Trump's own lawsuits in 2020 gave him an unique and detailed insight into the voting process, how things are done behind the scenes and so on. He's had four years to hatch a scheme based on that.", 'created': '2024-11-07 16:47:37', 'submission_id': '1glqrno'}
{'comment': "VERY off! Don't really know what to do about it other than hoping that it's being looked into.", 'created': '2024-11-07 18:51:15', 'submission_id': '1glqrno'}
{'comment': "Someone in some thread (so many talking about this, can't keep track of it all) suggested voting machine software tampering by flipping the votes. Think about it; the blowout result, all the latino voters etc: Maybe it was Kamala who should have gotten that. Suddenly it all makes perfect sense: If he knew this was afoot, it made sense for him to behave like a total ass in the last weeks, dancing on stage for 40 mins, mimicking oral sex etc.", 'created': '2024-11-08 00:23:16', 'submission_id': '1glqrno'}
{'comment': "Posts like this have started to pop up here on Reddit in the last 24 hours or so. Spread the word to make more people aware of it! Here's screenshots from a another commenter that wrote about it:\n\nhttps://preview.redd.it/ui9egyafyizd1.png?width=1077&format=pjpg&auto=webp&s=f77b9eb7a856f7d22e27c178a28fe6ffdcbdf82f", 'created': '2024-11-07 19:42:24', 'submission_id': '1glqrno'}
{'comment': "Someone in some thread (so many talking about this, can't keep track of it all) suggested voting machine software tampering by flipping the votes. Think about it; the blowout result, all the latino voters etc: Maybe it was Kamala who should have gotten that. Suddenly it all makes perfect sense: If he knew this was afoot, it made sense for him to behave like a total ass in the last weeks, dancing on stage for 40 mins, mimicking oral sex etc.", 'created': '2024-11-08 00:24:24', 'submission_id': '1glqrno'}
{'comment': 'Hopefully in 2028 we will have a real primary where we can find the candidate who can best sell themselves and their vision for the future to everyday Americans.', 'created': '2024-11-07 23:20:12', 'submission_id': '1glqrno'}
{'comment': 'And I believe they will have to lie in that bed for a very long time, because I don’t think Trump has any intention of leaving in 2028. He’s learned from\n2020, and he’ll be successful next time.', 'created': '2024-11-07 22:01:28', 'submission_id': '1glqrno'}
{'comment': 'They deserve it.', 'created': '2024-11-08 15:36:27', 'submission_id': '1glqrno'}
{'comment': 'And then he says things over and over and over until the people who feel powerless bc they are suffering (poorer people that are being hit by inflation the hardest) think it’s true. It’s cultism 101.', 'created': '2024-11-08 07:16:56', 'submission_id': '1glqrno'}
{'comment': 'Totally agree. Toss in the Russian nonsense and the “drinking bleach” and recently the Liz Cheney “firing squad” stuff and countless other examples - it’s about credibility. Plenty of real things to complain about - serious things - but the media insists on lying about stupid things. The laughable MSG “Nazi” rally childish narrative totally overshadowed some of the truly horrible things said at the rally. And I’m not talking about a bad joke by a comedian. \nCountless comments from morons like Guiliani and other speakers to criticize and to be legitimately worried about but no - the media decides to create a comical, irrelevant connection to a rally held over 80 years ago. \nAnyone really wonder why we lose ?', 'created': '2024-11-08 18:36:20', 'submission_id': '1glqrno'}
{'comment': 'Ah! The KISS principle. Keep it simple stupid. Makes sense. I have found that when you ask them questions about why they think something will work or is beneficial to them, they can’t answer. Deer in the headlights. They just know that some guy on a blog somewhere said it, so it must be true, never realizing that said “guy” is making money by being outrageous, feeding into their fantasies and anger, and driving his subscriber base.', 'created': '2024-11-09 16:18:46', 'submission_id': '1glqrno'}
{'comment': 'lol did we?', 'created': '2024-11-08 16:37:58', 'submission_id': '1glqrno'}
{'comment': 'I’m sorry but there are a lot of lies and misinformation here. \n\nJust different flavors. I bet you TikTok and Facebook users probably have the same thoughts about their platforms.', 'created': '2024-11-07 20:21:51', 'submission_id': '1glqrno'}
{'comment': "I was making a statement of fact not trying to prove anything except that a lot of people think she didn't do as well because she is a woman. I hate to admit it but maybe that had something to do with it. I voted for her. I was in shock she didn't win. I think the only thing the Democratic party is going to learn from this is they won't have a woman on the ticket again for at least 8 years. It's sad but not beyond the realm of possibility. I'm guessing Gavin Newsom will be in the running next time.", 'created': '2024-11-07 23:18:32', 'submission_id': '1glqrno'}
{'comment': 'I vote for Ryan Reynolds', 'created': '2024-11-07 20:01:31', 'submission_id': '1glqrno'}
{'comment': '[Biden Suggests He Would Only Serve One Term if Elected President,](https://www.usnews.com/news/elections/articles/2019-12-11/joe-biden-suggests-he-would-only-serve-one-term-if-elected-president) literally the first result on google.', 'created': '2024-11-07 20:34:04', 'submission_id': '1glqrno'}
{'comment': 'And Biden was only able to actually enact policy during his first two years because of the 118th congress being an absolute shit show during his second half, after that they had to do executive orders which will expire. We have too many fucking dumb shits in our nation who don’t understand how our governmental system works.', 'created': '2024-11-07 19:04:05', 'submission_id': '1glqrno'}
{'comment': 'Yup. They’re gonna be blaming everyone and the idiots who voted for him believe it.', 'created': '2024-11-07 18:43:38', 'submission_id': '1glqrno'}
{'comment': 'That went right over your head lol', 'created': '2024-11-08 03:20:56', 'submission_id': '1glqrno'}
{'comment': 'I agree with you. My comment sounded like I didn’t believe we get hyper inflation. Besides what you mentioned I like to know how he’s going to put high tariffs/taxes on goods and that won’t cause inflation.', 'created': '2024-11-07 19:14:38', 'submission_id': '1glqrno'}
{'comment': "Most people voting never experienced the 16% inflation of the 1970s. They MIGHT of read about it in a history class...maybe. But it's conceptual only to people. Well people get to see what inflation double that of peak COVID will look like. I don't really have the sympathy for all the people who will be shocked by this. Like I've been telling people...my bleeding heart is out of blood.", 'created': '2024-11-08 01:40:05', 'submission_id': '1glqrno'}
{'comment': 'no worries! my parents are both still like that so i see where she gets it from', 'created': '2024-11-08 03:26:00', 'submission_id': '1glqrno'}
{'comment': 'Rank voting, actual 3rd party grass roots activism, picking better candidates than Stein or West, presenting a more concise message is all on the table now.', 'created': '2024-11-07 20:57:54', 'submission_id': '1glqrno'}
{'comment': "The exact same discussion I was having woth my sister and cousin yesterday. I asked if they thought Pete had a chance if we have anymore elections. Not being funny with that last line, I'm being serious.", 'created': '2024-11-07 18:12:22', 'submission_id': '1glqrno'}
{'comment': "Pete has the power of the penis, though. I think he's got a shot. They did vote a black man in after all. I think it's womanhood that's the biggest obstacle. They don't love black or gay or woman, but combine any two and it's a real problem.\n\n\nWhite and male and gay though? That's 2 out 3 things they like!", 'created': '2024-11-07 19:05:25', 'submission_id': '1glqrno'}
{'comment': 'Maybe in a hundred years we will be ready. This country is fucking ass backwards.', 'created': '2024-11-07 19:06:35', 'submission_id': '1glqrno'}
{'comment': "Yeah its going to take a few days. I still can't believe Arizona and Nevada still aren't done counting when the majority of the country is in the high 90s. I swear their election offices are run by the sloths from Zootopia.", 'created': '2024-11-07 18:39:47', 'submission_id': '1glqrno'}
{'comment': "That is the scary thing to me to be honest. I see... four paths forward from here.\n\nA) Trump's okay term - mostly the world calms down for a bit (Russia will need to swallow it's conquest of Ukraine for a year or three, China will prepare a military build up but no invasion), no major economic crash, but the obvious potential building due to rampant corruption and lack of regulation - continues onto another Republican term most likely - better pray it's not a right-wing nationalist who wins their primary. Potential for electoral corruption - may not see fair races for democrats. Democracy of the US is fragmented and barely holding on at all, if there.\n\nB) The above, but the elections are blatantly rigged, alongside GOP pushes for Trump to run for a 3rd term - and no one stops him in GOP states, some blue states don't put him on the ballots - leading to potential civil disunity/conflict, ultimately Trump gets a 3rd term and the democracy of the US is gone completely - descending into a form of oligarchy or autocracy, potentially a blatant Roman style dictatorship - President for Life.\n\nC)Trump's dismal term - there could be an economic disaster, military disaster, climate disaster that goes out of control - the typical reaction would be that the GOP will suffer in elections as a consequence, and they will lose seats in the midterms maybe, and most likely the dems or some big independent (like a movie star or taylor swift style person) will re-secure the white house. Democracy is fragmented but holding on, and whatever disaster the dems have to deal with will likely cause a GOP president NEXT election in 2032.\n\nD) The terrifying Option - The above, but when things go to shit, the far right is ready for it - and identifies targets within our population to ostracize and blame - illegal immigrants, muslims, jews... etc.. and they will go after them, use the hate to either win the next election or put it on hold through some emergency order, and boom. Democracy is gone, and fascism is immediate.\n\nFrom here? I see them all as potentially equal paths. It's terrifying to me. The only way to get a 5th option, would be massive, and I do mean massive civil resistance, including a lot of the folks who just voted for Trump. If even 50 million of those who voted for Trump buy into Project 2025 - we will probably have massive civil conflict from here on how regardless.", 'created': '2024-11-08 02:44:08', 'submission_id': '1glqrno'}
{'comment': 'Maybe Mark Kelly. White male, former NASA astronaut. I know he was a contender for Harris’ VP pick before she went with Walz. I could see him winning. Although my only concern with him is he’s more centrist. We have liberal wing of the party that likes to protest vote unless we nominate a total hippy for office or something. We have to somehow get all Dems on board to vote for whoever the candidate is. No more fucking sitting it out or protest voting. We just can’t afford this anymore.', 'created': '2024-11-07 18:41:41', 'submission_id': '1glqrno'}
{'comment': 'Yes, no one from the Bay Area even if they are awesome.', 'created': '2024-11-07 19:24:35', 'submission_id': '1glqrno'}
{'comment': 'Again, I know we’re not ever getting 100%. Not sure why you keep bringing that up. I could understand losing votes to Trump if that is what they chose, but they didn’t. His numbers are lower too. Overall voter turnout is 12-15% lower than last election. Combine that with record voter registrations and record campaign donations and in my mind, that doesn’t add up.', 'created': '2024-11-07 22:24:32', 'submission_id': '1glqrno'}
{'comment': 'It matters to them.', 'created': '2024-11-07 21:38:36', 'submission_id': '1glqrno'}
{'comment': 'Sounds a little racist. Fine lines you’re drawing.', 'created': '2024-11-07 18:19:07', 'submission_id': '1glqrno'}
{'comment': '\\> You think people purposefully vote against their self interest?\n\n100%, yes I do. Union members voted for an administration that will destroy their unions. Latinos voted for a man who will deport them, because a criminal felon does not care about the details of their legal status. \n\nMessaging lies wins. "Bringing costs down for families" from the guy who crashed the economy when he was in office. He\'s not going to bring down costs. He doesn\'t even have to. Just ask Elon Musk. People need to brace for the hard times of the corrective measures they need to put in place.', 'created': '2024-11-07 21:49:50', 'submission_id': '1glqrno'}
{'comment': '“The issue is needing to moderate to suit the needs of the ever more Conservative Party. “\n\nThat’s my point. The Republican Party moved further right and instead of staying where they were or reaching further left, the Democrats followed the Republicans. \n\nThey didn’t have to do that, and I would\nargue this election proves it doesn’t work. The numbers indicate a serious enthusiasm problem. \n\nI’ll repeat what I said in another thread, 15 million people gave the Democrats a chance and voted for Biden in 2020. That chance got squandered- in part because Democrats were playing by the rules of politics circa 2000. \n\nDemocrats need to listen to the progressive side of the party and realize Republicans aren’t playing by the old rules. \n\nPeople can blame the electorate, their media literacy, algorithms, etc all they want. Or we can listen to them and figure out how to get them excited again. The former isn’t going to win elections.', 'created': '2024-11-07 22:09:57', 'submission_id': '1glqrno'}
{'comment': '55 percent isn’t crazy. Still almost a coin flip', 'created': '2024-11-07 23:49:38', 'submission_id': '1glqrno'}
{'comment': 'Could even be why trump was so adamant Biden get back in the race. Just to recap a few things, amongst politicos we know that corporate conglomerates conspired against the American people to artificially raise prices on goods more so than was caused by "inflation". This was for a two part purpose. 1. To recover loses from the pandemic and possible reinstatements of regulation by Biden that trump had rolled back. 2. To make trump look better, statistically voters vote on issues affecting them, like their wallet, and low info voters blame Biden for raising costs instead of focusing their efforts on new regulations to curb price gouging. So a low info voter would believe they were better under trump. Corporate media like CBS, NBC, and ABC are responsible for purposely muddying the waters on this issue to the American public because they are interlocked with the conglomerates who were price gouging. These companies enjoyed their record profits, while Democrats took the blame even though it was republicans who kept congress from passing legislation to fix the issue. Granted this did keep us from a true recession, but the negative impacts to the average american were comparable. And without awareness of this fact a low info voter would assume trump was doing something better.\n\nGetting back to my main point, Trump seemed weirdly worried when Biden dropped out. But looking back I don\'t believe trump thought he was going to lose, but that his win would be less believable after Harris\'s popularity surge. When trump used the same rhetoric on Harris that he used on Biden it wasn\'t because the attacks were working per say. Rather it\'s what he had to keep saying, for it to track with his Qanon canon for after republicans stole the election. Had Biden stayed in the race and lost by these same numbers as Harris, trump would point to America not wanting Bidens failed policies, also use it to claim proof of his debunked claims of election fraud previously. But instead he gets Harris the complete opposite of him. Harris builds up momentum similar to Obamas \'08 run, and I can say from many states I was in that she flipped voters and turned out new voters, on top of the voters Biden had the moment she announced she was running. \n\nI knew and accounted for republicans registering new voters at decent rates. I knew that AIPAC and Netanyahu were conspiring against the Democrats to get trump reelected by going into Palestine much like they did to Ford in the 60s. Wherein Israel could finally take Palestine, while using its lobbying arm of AIPAC to keep American politicians from doing anything (very few stay in office once AIPAC targets you, and MANY on both sides are on their payroll), which AIPAC knew would anger and suppress young Democratic voters, which it did. I also knew of all the republican legislature tactics they put in place after 2020 to take as many votes away from the Democratic voters as possible. \n\nHowever, even with ALL of that accounted for losing by 15 million votes makes absolutely no sense. I could see a couple million, heck even 5 million, but 15 million gtfo of here, the numbers quite literally do not add up. I think we need to genuinely consider that maybe the cult of followers of trump who believe the prior election was stolen from them, tried to steal the last election with a coup, worked with foreign countries to interfere with our elections since 2015 , and promised to go to any lengths necessary to put trump back into office, may have been successful on that promise and stolen the election.', 'created': '2024-11-07 18:40:30', 'submission_id': '1glqrno'}
{'comment': 'Urghhh', 'created': '2024-11-07 18:44:43', 'submission_id': '1glqrno'}
{'comment': 'Don’t know but some people are writing to VP Harris & Bidens office to express their concern. It’s totally valid to be concerned. To be concerned is not at all ‘stooping to their level’ and doing what they did. It’s not about denying the election cos we’re pissed and causing violence. It’s like you’ve been playing chess for years and all of a sudden you meet an opponent who keeps trying to bend the rules all the time and gets angry and rude during the game and then causes huge fusess calming you cheat when you didn’t. Then one day, after he was seemingly failing and playing badly, he starts winning a ton of games all of a sudden. And you’re like, hey buddy, I know your so obssessed with cheating, but any chance _you’re the one cheating_? It’s healthy to question his intentions when he has proven that he doesn’t obide by morals, values or empathy and seemingly neither do those around him. Narcissists are very calculated, love to cheat and to scheme (know that by experience!) , so it is well within reason to at least question this man’s antics in order to gain power, especially after such an unexpected landslide. Also Musk trying to buy votes and Russia sending bomb threats? I mean c’mon. He has also been saying weird shit too like ‘you don’t need to vote’ and ‘we have a little secret’ and all this shit too. In fact I could write a ton of things he’s done which seem suss. Also his demeanour seemed totally unfazed after the election. Almost as if they all knew. I dunno how they could but I think it’s healthy to at least question it and not avoid doing so just because of January 6th. I’m not saying I think it was rigged necessarily, but I think something about it feels off and I don’t think people should ban talking about it just cos of Jan 6th.', 'created': '2024-11-08 00:16:20', 'submission_id': '1glqrno'}
{'comment': 'Exactly. Apparently when he last accused of cheating the electoral, that’s exactly what he said. He accused them of turning his votes into theirs. Interesting specification there…. And we all know this guy constantly projects… with Elon and Russian tech on his side? Flipping votes is not past them at all.', 'created': '2024-11-08 00:26:56', 'submission_id': '1glqrno'}
{'comment': 'https://preview.redd.it/3ssus9pgyizd1.png?width=1080&format=pjpg&auto=webp&s=00dfeee64310961e0d9df31ea635b701aa656a1d', 'created': '2024-11-07 19:42:37', 'submission_id': '1glqrno'}
{'comment': 'And have wayyy more cronies he pays to keep him there. The US has no lack of weirdos willing to jump on board with him. They will all bow down to how he rigs elections and bam- no more democracy. We can only hope his age will stop this madness', 'created': '2024-11-08 07:09:56', 'submission_id': '1glqrno'}
{'comment': 'He is already 78 and seems more than 4 years older than he was when he left office. His dream of a third term doesn’t have to end though, at the rate his mind is slipping and karma being a bitch, the nonstop lies can be directed at him instead of coming from him. \n\nHell, half the population seems to lack a longterm memory that can go back more than 2-3 years. In 2 years we’ll start claiming this is his third term in office and George Washington said there’d be a 3 term limit during his speech at the airport during the Revolutionary War.', 'created': '2024-11-08 23:44:57', 'submission_id': '1glqrno'}
{'comment': 'They automatically reject reliable sources so I decided to see what they consider reliable sources. I’ve yet to be provided with a source IRL to find out what their reliable sources are. My guess is it’s not that easy to find a meme they’re quoting from FB or they know I’ll call BS if they pull up a meme as the proof. I swear there is an entire group of people that heard, “if it’s on FB, it must be true!” and did not catch that was sarcasm. \n\nThe perk of putting the burden of proof on them without giving them anything to try to argue against is it requires very little effort. The biggest effort is keeping them from shifting topics to what they think will be a “gotcha” without closing the original topic they didn’t provide anything to back up. They have to admit they don’t have proof or not object when I point out it’s false if they can’t prove it.', 'created': '2024-11-10 06:51:06', 'submission_id': '1glqrno'}
{'comment': 'We ALWAYS do it!', 'created': '2024-11-08 20:27:24', 'submission_id': '1glqrno'}
{'comment': "It's not because she's a woman, it's not even because she's a black woman. \n\nThe problem is deeply rooted within the Democratic party itself, we have not had an actual primary for 16 years because party leadership is obsessed with whose turn it is. If the Democrats want to win in 2028 they need to start a 24/7 campaign to find an outsider who can effectively communicate their vision to the masses including non college educated.", 'created': '2024-11-07 23:51:25', 'submission_id': '1glqrno'}
{'comment': "I don't think he'd have a chance: not a tough guy archetype, or barroom brawler, or vulgar cowboy type. Cracking jokes that most uneducated drop outs or angry rednecks won't understand won't win.", 'created': '2024-11-07 21:34:28', 'submission_id': '1glqrno'}
{'comment': '"Several sources within the Biden campaign\xa0told Politico\xa0that the 2020 Democratic candidate would not run for reelection in 2024" so he never ran on it. Some unnamed people within the campaign said he wouldn\'t.', 'created': '2024-11-07 20:36:23', 'submission_id': '1glqrno'}
{'comment': 'Exactly and that’s why republicans are anti education. They know the less citizens know about economics and government the more shit they can get away with.', 'created': '2024-11-07 20:47:09', 'submission_id': '1glqrno'}
{'comment': 'Don’t let them get away with it. Hold them to account. They have no excuses this time.\n\nWe need to start pushing this message on day one of his presidency. Note the gas prices and how they change over time. Take pictures of local prices for later comparison. There’s no way I am going to stay silent during this disaster.', 'created': '2024-11-07 19:25:32', 'submission_id': '1glqrno'}
{'comment': 'What are you trying to say?', 'created': '2024-11-08 09:00:22', 'submission_id': '1glqrno'}
{'comment': 'My grandmother told us stories of the Weimar hyperinflation -- wheelbarrows full of paper money.', 'created': '2024-11-08 20:01:18', 'submission_id': '1glqrno'}
{'comment': 'Yeah I live in a super red state, so I understand. I was scared to even have a sign for Kamala in fear someone would poison my dogs or something.', 'created': '2024-11-08 03:27:14', 'submission_id': '1glqrno'}
{'comment': 'Let’s hope it’s in the table for states to start considering so we can have a bigger conversation about the whole system. The people have been asking for changes for as long as I’ve been voting. Realistically who knows what will be allowed to be presented at the table starting Feb.', 'created': '2024-11-07 21:32:09', 'submission_id': '1glqrno'}
{'comment': "I'll never forget JD Vance saying the Democratic party is filled with childless cat ladies and then specifically referencing Pete. Like wtf gay men are women now?\n\nHis military background should be a positive too. Even though half the country is okay calling vets suckers and losers, so who knows...", 'created': '2024-11-07 19:36:09', 'submission_id': '1glqrno'}
{'comment': 'Yup! I hope I see it before I die but I think we are a ways away. Hell in terms of years it wasn’t that long ago we couldn’t even have our own credit card or own our own business.', 'created': '2024-11-07 20:48:19', 'submission_id': '1glqrno'}
{'comment': 'If I remember correctly, those states have it in their laws to not begin counting until the very last ballot is in or something. So on election night, they have to wait for the last person in line at the last precinct to vote. With mail-in ballots as well they have to wait for some to come in too. Or something.', 'created': '2024-11-07 19:55:10', 'submission_id': '1glqrno'}
{'comment': 'Yes but the conversation was about the bigger picture. I didn’t comment on some of the states you listed, like PA for example, because that’s a state that would actually matter. Yes of course the people in Kentucky would be mad- I never said they shouldn’t be. I said it would make zero difference to current results', 'created': '2024-11-08 00:05:21', 'submission_id': '1glqrno'}
{'comment': 'The good news is we are more sexist than we are racist. Lots of minority dudes voted for the racist dude that promised to deport them. So that’s progress', 'created': '2024-11-07 23:58:03', 'submission_id': '1glqrno'}
{'comment': 'I agree its a very fine line, but everyone identifies more with people who are like them. Its how humans are wired. Identifying with people like you is not racist. Judging others based on their race is racist. The line is muddy and its sort of a gray area.', 'created': '2024-11-07 18:24:38', 'submission_id': '1glqrno'}
{'comment': "So what was Kamala' alternative message?", 'created': '2024-11-07 23:24:59', 'submission_id': '1glqrno'}
{'comment': 'If he told them that Washington declared himself king, they’d believe him.', 'created': '2024-11-09 15:51:30', 'submission_id': '1glqrno'}
{'comment': 'Wait - do you think it’s possible that, because he lies so much and is all over the place on policy, that makes it possible for them to project their own wants onto him? It sounds crazy, and I’m not saying this the way I want, but does his insanity allow them to practice wishful thinking? Trump is so grandiose and outrageous, he must be the only one capable of providing what I want. Kind of like when he promised to protect women in a vague and unrealistic way, and women flocked to him?', 'created': '2024-11-09 16:13:07', 'submission_id': '1glqrno'}
{'comment': 'Bill Burr?', 'created': '2024-11-07 22:13:14', 'submission_id': '1glqrno'}
{'comment': "So you're telling me that despite [many sources reporting this](https://thehill.com/homenews/campaign/474027-biden-indicates-he-will-only-serve-one-term-as-president-report/) and it coming from many people within his campaign, you don't think he really meant it? Did you believe it when Trumps cronies were saying he doesn't know anything about project 2025 too? Interested in buying a bridge?", 'created': '2024-11-07 20:42:42', 'submission_id': '1glqrno'}
{'comment': 'Yep. It’s the same reason why radical Islamic theocracies don’t allow women to have education. If they were smarter they would wise up and realize that being oppressed is fucking bullshit.', 'created': '2024-11-07 20:49:43', 'submission_id': '1glqrno'}
{'comment': "The commenter was being sarcastic and you replied as if they were serious in saying it's all ok since the rich will get tax breaks.", 'created': '2024-11-08 12:02:52', 'submission_id': '1glqrno'}
{'comment': '🤣 There won’t be anymore voting. He controls it all. He’s in til death or replacement.', 'created': '2024-11-07 21:37:58', 'submission_id': '1glqrno'}
{'comment': 'It’s all good. It’s all far beyond any of us anyway. \nThey’ve worked their game for longer than most people even realize.', 'created': '2024-11-08 02:13:06', 'submission_id': '1glqrno'}
{'comment': 'So home prices in florida are about to drop 30% is what you’re saying?', 'created': '2024-11-08 00:15:58', 'submission_id': '1glqrno'}
{'comment': "I mean, they did bring inflation down. Trump is selling negative inflation, which the crowd does not understand is a very bad thing. Everybody wants to roll prices back because they know they're not going to get a raise. I thought Harris was running on the platform of more money for working families, shifting more of the tax burden to the stratospheric players (1%), and increasing wages by pushing up the minimum wage. You know, the wave that lifts all the boats, not trickle down economics. \n\nBut people want things to go back to the way they were, instead. Which is just not going to happen. But hey, if you run on a campaign of selling people everything they want, how can you lose? It's not like Trump has to deliver or anything. He can do whatever he wants.", 'created': '2024-11-07 23:48:19', 'submission_id': '1glqrno'}
{'comment': 'At this point he could probably tell them Abe Lincoln is his uncle and some would believe him. If his skin tone is natural, anything is possible.', 'created': '2024-11-10 07:04:55', 'submission_id': '1glqrno'}
{'comment': '>Wait - do you think it’s possible that, because he lies so much and is all over the place on policy, that makes it possible for them to project their own wants onto him? It sounds crazy, and I’m not saying this the way I want, but does his insanity allow them to practice wishful thinking? \n\nThat was actually a big part of his 2016. He’d say things vague enough that people had to interpret what he meant and it’d be whatever version they wanted it to be. Like some weird version of AdLibs. If a lot of people had the same interpretation and other people liked that interpretation, he switched to using the interpretation for some things. \n\nHe also uses vague wording as way to deny he meant what people thought he meant (even if it was obvious what he was referring to). Telling Christians they won’t have to vote again after this election is an example of that. \n\nHis campaign agendas have been more like rough drafts of an outline with only headings and subheadings. The “How?” for achieving what he claims he will is very rarely present at all or it’s vague. (ie Build a wall and make Mexico pay for it) \n\n>Trump is so grandiose and outrageous, he must be the only one capable of providing what I want. Kind of like when he promised to protect women in a vague and unrealistic way, and women flocked to him?\n\nI think it’s because he is a “self-made billionaire”. That somehow gives him instant credibility that he is very intelligent and he can do whatever he says (or they think he says) he will do.', 'created': '2024-11-10 07:02:39', 'submission_id': '1glqrno'}
{'comment': '"Former Vice President\xa0Joe Biden\xa0has reportedly signaled that he\xa0would\xa0only\xa0serve\xa0one term in the White House if elected in 2020 as the top-tier Democratic candidate faces questions about his age.\xa0\nFour people who regularly speak with the 77-year-old Biden\xa0told Politico\xa0that it is unlikely he would run for reelection in 2024, when he would be in his 80s.\xa0"\n\nI\'m saying he probably wasn\'t talking like her wanted to run but almost certainly didn\'t rule it out, then that sentiment leaked and all the news outlets ran with it without getting him to give a clear answer one way or the other.', 'created': '2024-11-07 20:53:42', 'submission_id': '1glqrno'}
{'comment': 'My husband works with a lot of men from over there that have immigrated over here. They hate women so much they will vote for the very people that call them trash and want to deport them. It’s solely about controlling women.', 'created': '2024-11-07 20:52:18', 'submission_id': '1glqrno'}
{'comment': 'I didn’t realize they were being sarcastic', 'created': '2024-11-08 12:03:35', 'submission_id': '1glqrno'}
{'comment': 'It’ll be a fire sale on homes! Except with water', 'created': '2024-11-08 00:45:52', 'submission_id': '1glqrno'}
{'comment': 'My family, bless their hearts, used to idolize the uber rich. Same reason, making money had to mean they were smarter and better than the rest of us. In reality, many were ruthless crooks and social climbers, but you couldn’t make my family see that.', 'created': '2024-11-10 16:18:09', 'submission_id': '1glqrno'}
{'comment': 'Either him or his campaign lied. Either way it shakes out, they are *liars*.', 'created': '2024-11-07 21:00:59', 'submission_id': '1glqrno'}
{'comment': 'It’s not a new problem at all. The confederate military was not made up of slave owners. They duped the lower class into fighting a war on their behalf, some fought in it as well. The lie was thorough enough for people to still claim it’s their heritage from a war that lasted a few years more than a century and a half ago. Looking around me and hearing the long list of lies people fell for to vote for Trump, I can totally see how people were duped into fighting a war for slave owners. I was thinking that before this election TBF, they fall for some ridiculous BS from politicians as long as there is a R next to the name. \n\nAL Senator Tommy Tuberville of FL’s campaign manager realized keeping him away from microphones and depending on the (R) to be enough was Tuberville’s best bet for winning the election. He was not wrong.', 'created': '2024-11-11 03:44:25', 'submission_id': '1glqrno'}
{'comment': "If there are liars here, it's the reporters that took rumor and reported it in such a way that people took it as a fact and promise.", 'created': '2024-11-07 21:10:55', 'submission_id': '1glqrno'}
{'comment': "Oh there is more than enough blame to go around. The reporters who stated as such, and Biden's campaign team for not actively working to clear those rumors up.", 'created': '2024-11-07 21:18:54', 'submission_id': '1glqrno'}
{'comment': 'Republicans are against child tax credits, against student loan forgiveness, against tax breaks for home buyers, against tax breaks for small businesses, against combatting corporate price gouging.\n\nSo what exactly are they doing to help the middle and lower classes again?', 'created': '2024-11-07 14:59:23', 'submission_id': '1glqm1y'}
{'comment': 'The democrats are being completely defined by the Republican media machine.\n\nNow it appears they are going in for the kill. I see post after post about how they “lost the working class”, “only focus on lgbtq rights”, “wokeism lost them the election” - these are all republicans framing the democrats and using the results of the election as proof. This is propaganda at its finest. \n\nThis will be a tough hill to climb, but we can recover.', 'created': '2024-11-07 15:24:23', 'submission_id': '1glqm1y'}
{'comment': 'Yes, there are times when I wish that Bernie Sanders would just keep his mouth shut. He is too far to the left to win anywhere other than where he is - and he’s dreaming if he doesn’t realize that.', 'created': '2024-11-07 17:52:53', 'submission_id': '1glqm1y'}
{'comment': 'This is it, this is the end of US Democracy. Trump got the Senate, the White House and likely is going to get the House as well. All of the safeguards they put in place after 2020 to make sure that the Vice President doesn’t have any real power and the certification of election results run smoothly, they can undo that in the first week.', 'created': '2024-11-07 16:08:24', 'submission_id': '1glqm1y'}
{'comment': 'i hate to get on semantics; but, harris didn\'t close the campaign well on the economy. isn\'t that sort of losing "connection" to the working class in a way? i could argue that she had a strong "connection" over abortion rights lol.\n\nyou\'re not wrong though. dems need a modern media ecosystem to counter maga\'s. need workers to spam places with fact bomb comments for maga repliers to fight them over. just turn notifications off and let them stew while moving on to the next.', 'created': '2024-11-07 16:25:27', 'submission_id': '1glqm1y'}
{'comment': 'Exactly. They simply aren’t. What they are doing is exploiting fear, stoking racism, and glorifying ignorance to help achieve their goal of cementing in unchecked control. They do these things for the short term gain.', 'created': '2024-11-07 15:10:00', 'submission_id': '1glqm1y'}
{'comment': 'To help them? Nothing. But they lie harder than any other living beings about how the Republicans policies that actively fuck anyone working a real job are all the Democrats fault.\n\nAnd since the average Republican is never going to be man enough to admit the people he supports are worthless lying garbage, he buys it.\n\nPeople keep ignoring sunk cost fallacy. It’s the core driver of Republican support.', 'created': '2024-11-07 20:51:07', 'submission_id': '1glqm1y'}
{'comment': "When democrats lose the blue wall to a staunch anti-union guy when we have done so much for the middle class in the last four years, we need to realize our messaging isn't working. The IIJA and Chips and Science act were huge for the middle class. Yet here we sit.", 'created': '2024-11-07 15:38:42', 'submission_id': '1glqm1y'}
{'comment': 'Exactly my point. \n\nAnd we will recover. We need to start talking more about “media literacy” and how to combat propaganda. We can sustain with the status quo of our responses.', 'created': '2024-11-07 17:38:56', 'submission_id': '1glqm1y'}
{'comment': 'I actually don’t buy that the economy is really the issue that people voted on. It’s the issue that was fed to folks as a matter of simplicity. GOP=low taxes and low prices. DEM=excess spending, high taxes, handouts is powerful messaging but easily refutable with objective reality. \n\nThe issue is that people don’t operate in objective reality and therefore it’s impossible to message. \n\nWe’ve got to address critical thinking, low information, and propaganda before we can make actual change.', 'created': '2024-11-07 17:47:09', 'submission_id': '1glqm1y'}
{'comment': 'See I know a ton of stuff about dem policy but even I don’t know the IIJA\n\nEdit: oh that just the infrastructure law name', 'created': '2024-11-07 17:12:33', 'submission_id': '1glqm1y'}
{'comment': 'Here in Pennsylvania the cost of groceries is astronomical compared to a few years ago, and I said to my husband that this is what will kill the Democrats. And I was right! I have friends that have 6 children - their monthly grocery bills are literally a second mortgage. Taxes have gone up, gas for the cars has gone up, oil to heat the house has gone up…it is really killing the middle class here in Pennsylvania.\n\nThis, and being a woman is what I think seriously undermined her candidacy.', 'created': '2024-11-07 17:58:11', 'submission_id': '1glqm1y'}
{'comment': 'Absolutely. So, who really controls grocery prices? Does the President sit with a magic button in the Oval Office that sets prices, or is it the powerful corporations that own these grocery chains?\n\nWe know the answer—it’s the corporations. And the real solution? Let’s hold corporations accountable for not taking advantage of inflation. As inflation falls, so should prices, but instead, many corporations have chosen to keep prices high. Why wouldn’t they? If they know they can charge you $6 instead of $2.50 without pushback, why would they drop prices? And it’s easy for them: people tend to blame the President, not the corporations.\n\nThis is exactly the point—it’s impossible to communicate effectively when people don’t recognize the underlying reality.\n\nVice President Harris has acknowledged that costs are too high and offered a plan to address it… and yet here we are.\n\nAlso - taxes went up specifically because of Trump’s 2017 tax cut for the wealthy. \n\nI agree that misogyny remains problematic.', 'created': '2024-11-07 18:15:08', 'submission_id': '1glqm1y'}
{'comment': "Exactly. And now Pennsylvanians will get to see what Trump's tariffs will do for their grocery bill.", 'created': '2024-11-07 20:17:43', 'submission_id': '1glqm1y'}
{'comment': 'It seems to me that the feeble Merrick Garland will ensure that POTUS 4547 will face no charges. \n\nThe only person in America who would be more useless to the cause than Merrick Garland is Judge Aileen Cannon, the kind of Judge that it seems to me Pablo Escobar knew all too well.', 'created': '2024-11-07 13:58:19', 'submission_id': '1glps9i'}
{'comment': "He can't pardon himself from state crimes, only federal. ie: New York", 'created': '2024-11-07 14:14:41', 'submission_id': '1glps9i'}
{'comment': "Of course he's going to pardon himself. On day one. Who's going to stop him? And probably all the Jan 6 insurrectionists and Rudy Giuliani and every other thug and goon who beat someone up or stole money or slandered in the name of MAGA. Who is going to stop him? There are no guardrails now. He answers to no one.", 'created': '2024-11-07 17:15:09', 'submission_id': '1glps9i'}
{'comment': 'He can do anything he wants. SCOTUS said he has immunity. He will take advantage of that and weaponize it against the American people, while democrats write a stern letter to the editor.', 'created': '2024-11-07 17:51:09', 'submission_id': '1glps9i'}
{'comment': 'He can and he will. As well as pardoning all of his minions and all Jan 6ers.\n\nI really wish the courts could have moved faster to get a sentencing or something done before the election. There had to be something they could do to prevent this nightmare we are about to experience.', 'created': '2024-11-07 14:12:22', 'submission_id': '1glps9i'}
{'comment': 'Nothing. NPR already said that Jack Smith was winding down his investigations and would be closed before he takes office because of SCOTUS’ immunity ruling. It’s the dumbest fucking thing ever. I can’t believe this is the country we’ve become. It’s like a game of Who’s Line is it Anyway? Say and do whatever the fuck you want because consequences don’t matter and the points don’t matter!', 'created': '2024-11-08 00:15:17', 'submission_id': '1glps9i'}
{'comment': 'ENGLAND IF YOURE LISTENING!!!! We would REALLY love to see the unredacted version of the evidence.\n\nThanks', 'created': '2024-11-07 22:25:32', 'submission_id': '1glps9i'}
{'comment': 'Lmao. Nothing is gonna happen to him. You all are fools to think that any of that shit he did matters. Embarrassing. Quit dreaming and start fighting.', 'created': '2024-11-08 03:10:27', 'submission_id': '1glps9i'}
{'comment': 'Doesn’t matter if he can, he will. What is the backlash? Bring it up to the Supreme Court so they can verify he can do this?', 'created': '2024-11-07 17:19:40', 'submission_id': '1glps9i'}
{'comment': 'So in the very remote case he does get convicted, what would happen?', 'created': '2024-11-07 17:20:36', 'submission_id': '1glps9i'}
{'comment': "Not a goddamned thing; if he was EVER going to see one second inside a cell he'd already be there.", 'created': '2024-11-08 03:47:39', 'submission_id': '1glps9i'}
{'comment': 'He was absolutely useless.', 'created': '2024-11-07 14:28:21', 'submission_id': '1glps9i'}
{'comment': 'Future Supreme Court Member Aileen Cannon to you!', 'created': '2024-11-07 16:00:46', 'submission_id': '1glps9i'}
{'comment': 'Oh don’t worry, I have no doubt an exception will be made for him to pardon himself of state convictions. Thomas and Alito have probably already written their opinions for immediate release when it inevitably heads their way.', 'created': '2024-11-07 16:20:44', 'submission_id': '1glps9i'}
{'comment': 'Agreed. The courts should of sentenced him a day after he was found guilty in New York and thus avoiding the whole SCOTUS clusterfuck.', 'created': '2024-11-07 15:02:23', 'submission_id': '1glps9i'}
{'comment': "What is the SC gonna do? Vote 6-3, that's it, we're done.", 'created': '2024-11-07 17:25:48', 'submission_id': '1glps9i'}
{'comment': "Sentencing will be suspended until he's OOO, so let's say he finally drops out of office in 2032, he'll be 87. Chances are he's going to die in office because by the time the GOP is done Women (& perhaps AA & Latinos?) will have lost the right to vote.\n\nIn the future there will be elections, but they won't mean anything.", 'created': '2024-11-07 17:25:15', 'submission_id': '1glps9i'}
{'comment': "Oh, I thought she was gonna be 4547's AG.", 'created': '2024-11-07 16:04:38', 'submission_id': '1glps9i'}
{'comment': 'When he pardons J6 assholes, the cases in the states like GA and WI will magically disappear.', 'created': '2024-11-07 17:07:46', 'submission_id': '1glps9i'}
{'comment': '2028 is as far as he can go, unless they sweep in like hugo chavez to change the constitution for that asshole to have a third term.', 'created': '2024-11-07 17:49:02', 'submission_id': '1glps9i'}
{'comment': 'Agree. This was our moment. It’s over. Future elections will be shams like Russia and Venezuela. You can sue, but with Trump judges, you won’t win. Sorry to say, but Kamala was right, “We’re not going back.” We’re not going back to a functional democracy. We’ve crossed the Rubicon.', 'created': '2024-11-08 09:03:55', 'submission_id': '1glps9i'}
{'comment': "If he's still alive, rest assured they will.", 'created': '2024-11-07 17:52:56', 'submission_id': '1glps9i'}
{'comment': 'Hey a great point, I concur!', 'created': '2024-11-07 10:04:07', 'submission_id': '1glm75u'}
{'comment': 'Yes. He was a two term POTUS in one term, he accomplished so much to get us on back on track.', 'created': '2024-11-07 16:37:22', 'submission_id': '1glm75u'}
{'comment': 'I guess. Except him not keeping his promise to be a one term president is what got us into this mess. Kamala had 100 days to mount an offensive to an 8 year campaign.', 'created': '2024-11-07 15:41:29', 'submission_id': '1glm75u'}
{'comment': 'Thank you Joe', 'created': '2024-11-07 13:21:13', 'submission_id': '1glm75u'}
{'comment': 'Biden coin, a whole lot better than Dogecoin and Trump coin.', 'created': '2024-11-07 19:07:18', 'submission_id': '1glm75u'}
{'comment': 'Awesomeness.', 'created': '2024-11-08 05:04:52', 'submission_id': '1glm75u'}
{'comment': '[removed]', 'created': '2024-11-07 12:49:33', 'submission_id': '1glm75u'}
{'comment': '[removed]', 'created': '2024-11-07 12:24:23', 'submission_id': '1glm75u'}
{'comment': "That wasn't the problem. Kamela ran a good campaign, but at the end of the day she is still a woman and the USA will not vote for a woman president. It would likely have been closer if Joe had stayed.", 'created': '2024-11-07 16:33:12', 'submission_id': '1glm75u'}
{'comment': 'Joe definitely voted for Kamala, your anger is misplaced. We have to peacefully hand it over or they will try to one-up us in 4 years.', 'created': '2024-11-07 14:53:22', 'submission_id': '1glm75u'}
{'comment': 'Far fewer people need to move to say, Montana if you wanted to affect the election.', 'created': '2024-11-07 10:11:31', 'submission_id': '1glm617'}
{'comment': 'i’ve been in philly for 20+ years. please come here and be good citizens who care about the city. we really need it. there are a lot of old lifers here who vote maga and throw their trash in the streets.', 'created': '2024-11-07 14:17:59', 'submission_id': '1glm617'}
{'comment': 'I’m currently in Florida, plan to move to California after college. I know my vote will be blue in a sea of blue, but I want to live in a safe blue state just in case gay marriage and other things get fucked up.', 'created': '2024-11-07 13:33:34', 'submission_id': '1glm617'}
{'comment': 'Nah, I’m done with America and the idiots that live here, we are going back overseas. Shouldn’t have come back to the US in the first place, but we tried to trust that people would change. Fact of the matter is that the U.S. is overrun with uneducated, hatful, racist fucks, and I’m done.', 'created': '2024-11-07 14:12:20', 'submission_id': '1glm617'}
{'comment': 'As a Pennsylvanian I like this idea. We’re surrounded by scumbag nazi rejects here.', 'created': '2024-11-07 16:36:31', 'submission_id': '1glm617'}
{'comment': "I moved to the Poconos in 2022. I'm surrounded by natural beauty, wildlife, trees, waterfalls, and lakes.\n\nAs well as some truly unhinged and unfortunate humans.", 'created': '2024-11-07 16:29:06', 'submission_id': '1glm617'}
{'comment': '...unless you live in GA. We need more Dems, too.', 'created': '2024-11-07 12:59:41', 'submission_id': '1glm617'}
{'comment': 'NC or GA too. Hell, there can be that much difference in climate between WI and PA lol', 'created': '2024-11-07 14:18:42', 'submission_id': '1glm617'}
{'comment': "I moved to Florida with this logic. Didn't work; the state turned from purple to dark red.", 'created': '2024-11-07 18:46:03', 'submission_id': '1glm617'}
{'comment': "For what purpose? \n\nYou think these groups that have hundreds of executive orders ready for Trump to sign, also don't have plans he can use to stay in power? \n\nhttps://www.npr.org/2024/10/30/g-s1-30917/how-a-little-known-organization-is-poised-to-shape-a-second-trump-administration\n\nhttps://www.politico.com/news/2024/05/08/oil-industry-orders-trump-day-one-00156705\n\nhttps://www.cnn.com/2024/08/15/politics/russ-vought-project-2025-trump-secret-recording-invs/index.html\n\nBetween playing golf, watching cable news, and posting on social media, if they had Trump some documents to sign and tell him it'll make him president forever, he's going to sign it!", 'created': '2024-11-07 11:47:49', 'submission_id': '1glm617'}
{'comment': "No, we just need to abolish the electoral college. Oh wait, trump won the popular vote as well. Our country is regressing and I can't believe that we've gotten where we are now after electing Barack Obama twice. But then we're here partly because of that.", 'created': '2024-11-07 14:40:03', 'submission_id': '1glm617'}
{'comment': 'American democracy is over at this point. If you can move out of the country you should.', 'created': '2024-11-07 13:33:12', 'submission_id': '1glm617'}
{'comment': "If you look at the inroads conservatives made though, every single state lost ground to Republicans this year. Even Oregon and California have more red than usual. 44% of votes cast in California went to Trump, for example. 44% of Californians who voted, a true stronghold of blue, voted for him. Let that sink in for a minute. We couldn't even resoundly crush Trump in the bluest of the blue states.\n\nThis should be a massive wake up call to the DNC", 'created': '2024-11-07 16:29:17', 'submission_id': '1glm617'}
{'comment': "If Dems just voted we wouldn't need to.", 'created': '2024-11-07 18:30:27', 'submission_id': '1glm617'}
{'comment': 'I unironically would encourage people to leave red states and move to purple ones if they have reason to.', 'created': '2024-11-08 00:00:39', 'submission_id': '1glm617'}
{'comment': "I understand, but real talk, please don't.\n\nAll the rich New Yorkers and New Englanders have been moving here for decades and are already overcrowding us. Housing prices have gone up like 300% in 20 years and the people moving to the area now are able to afford the $2,000/month tiny rental apartments they're building everywhere. But if you want a house, you have to be able to offer twice the asking price. Unless you're Mennonite or Amish in my area, the locals can't afford to live here anymore.", 'created': '2024-11-07 14:06:38', 'submission_id': '1glm617'}
{'comment': 'NOT moving to a f’ing red state. F*** em all.', 'created': '2024-11-07 16:33:09', 'submission_id': '1glm617'}
{'comment': 'Looking into moving from Indiana to Michigan. I wish I could head to Ohio, but I think my vote would be as pointless as it is in Indiana.', 'created': '2024-11-07 17:19:50', 'submission_id': '1glm617'}
{'comment': 'Can I ask that you all move to ohio instead\n \n-get rid of any possible future jd vances\n-turn ohio back into a swing state\n-I get to live in a swing state like when I was a kid', 'created': '2024-11-07 18:54:14', 'submission_id': '1glm617'}
{'comment': "Because I can barely afford to live in a bumfuck Midwest town, homelessness would immediately go through the roof with demand for housing throughout the state, which will allow the oligarchs licking their lips to exploit us more than ever, and it would only get worse and worse and worse once he's back.\n\nWe need actual solutions, people.", 'created': '2024-11-07 14:18:49', 'submission_id': '1glm617'}
{'comment': 'They all talk funny though.', 'created': '2024-11-07 16:18:36', 'submission_id': '1glm617'}
{'comment': 'Wisconsin!', 'created': '2024-11-07 16:58:03', 'submission_id': '1glm617'}
{'comment': 'I also love Pittsburgh. It’s an idea! I’m in a red state so I can’t help where I’m at.\xa0', 'created': '2024-11-07 17:14:14', 'submission_id': '1glm617'}
{'comment': 'In terms of physical living space that might work, because if I remember correctly XKCD calculated that you could technically fit the entire human population in Rhode Island although they would not have much room to move. Population density would obviously be absolutely insane.', 'created': '2024-11-07 17:36:01', 'submission_id': '1glm617'}
{'comment': 'I was planning on it anyway. Lovely place.', 'created': '2024-11-07 18:04:56', 'submission_id': '1glm617'}
{'comment': 'I posted earlier that I was thinking of moving to Pittsburg. It’s really an amazing city. The fact it went red really put the breaks on! But, if me and a few hundreds thousand did it, that would help. Housing prices are dirt cheap!', 'created': '2024-11-07 18:53:00', 'submission_id': '1glm617'}
{'comment': 'Too late now\nWe probably won’t have midterm elections', 'created': '2024-11-07 21:44:55', 'submission_id': '1glm617'}
{'comment': 'Unfortunately the map will change. I remember moving to Florida excited to live in a swing state. So much for that…', 'created': '2024-11-07 22:09:41', 'submission_id': '1glm617'}
{'comment': 'It worked for Vermont.', 'created': '2024-11-07 22:15:10', 'submission_id': '1glm617'}
{'comment': 'Hell no. I’m out of here. I’m pretty much done with Merica now. I lost all hope', 'created': '2024-11-07 22:34:02', 'submission_id': '1glm617'}
{'comment': "Hmmm, Pennsylvania or the Mediterranean. Hmm. What to do, what to do? That's a tough one.", 'created': '2024-11-07 23:13:06', 'submission_id': '1glm617'}
{'comment': 'I was legit looking and the place I liked the most was Camp Hill. Plus the weather didn’t seem too bad. I’m from Texas and don’t want/like crazy cold temps', 'created': '2024-11-08 00:31:15', 'submission_id': '1glm617'}
{'comment': 'Hey /u/FancyJassy \n\nAs someone considering this sort of move seriously, and as a very disaffected Californian who\'s grown very tired of a very corporate / moderate / not-grassroots CA Democratic Party, I wonder if you know of which swing states have th "best" Dem Party for grassroots organizing. \n\nI know a little about the Farmer-Democrat Party being quite working class and easy to enter and reform, but I know little about the Dem Party in Wisconsin, Michigan, and Pennsylvania. \n\nAny thoughts?', 'created': '2024-11-08 01:23:25', 'submission_id': '1glm617'}
{'comment': "Nah, I'm out. We fought the fight and got stabbed in the back by our own. As far as I'm concerned, the fascists can have it. I had to leave Florida because of them, if I have to have California, I'm out of here.", 'created': '2024-11-08 06:16:33', 'submission_id': '1glm617'}
{'comment': 'Too bad Harris couldn’t have picked someone from PA as a running mate. Maybe like some super popular governor or something', 'created': '2024-11-07 16:15:24', 'submission_id': '1glm617'}
{'comment': 'I spent my first 20 years in the Commonwealth. No thanks.', 'created': '2024-11-07 10:27:57', 'submission_id': '1glm617'}
{'comment': "If you want to own the presidency you'd have to move to Texas, but not if you're from California", 'created': '2024-11-07 14:20:37', 'submission_id': '1glm617'}
{'comment': 'Still wouldn’t affect the election. Too few electoral votes.', 'created': '2024-11-07 10:40:40', 'submission_id': '1glm617'}
{'comment': 'Very smart person. But cooooooold winters. On a side note, there was an article that says Americans tired of living in liberal states like California, NY, and Illinois and moving to Florida and Texas have gained electoral votes, increasing the Republican’s advantage.', 'created': '2024-11-07 11:06:27', 'submission_id': '1glm617'}
{'comment': "Actually, if 100,000 voting liberals moved to MT, that would've saved our Dem senator AND I'd have more neighbors who aren't frightening AF.", 'created': '2024-11-07 23:14:36', 'submission_id': '1glm617'}
{'comment': 'No one in Montana wants you moving there, already too many Californians are and are making the COL go up like crazy.', 'created': '2024-11-07 16:57:02', 'submission_id': '1glm617'}
{'comment': 'and pittsburgh is a highly underrated city btw!', 'created': '2024-11-07 20:29:28', 'submission_id': '1glm617'}
{'comment': "Yeah. Can't blame you there. Right now, the only states that I would feel safe in are the northeastern strongholds and California. Maybe Minnesota for now.", 'created': '2024-11-07 16:05:06', 'submission_id': '1glm617'}
{'comment': "Sadly, this is where I am too. Too many idiots that either voted for the traitor or stayed their ass home and helped elect him. I may at some point come back to the idea that this country is still worth fighting for, but it ain't going to be any time soon.", 'created': '2024-11-07 14:54:56', 'submission_id': '1glm617'}
{'comment': 'I’m thinking unless you move to Russia , the idiot is taking us out of NATO so if wherever you move gets attacked , this country is not helping you. All countries for themselves now wo our military surplus', 'created': '2024-11-08 05:35:22', 'submission_id': '1glm617'}
{'comment': 'Me too! This country is a freaking joke!', 'created': '2024-11-07 22:49:20', 'submission_id': '1glm617'}
{'comment': 'he’s probably not going to be capable of a second term, our fight will be against vance and co. luckily for us even a lot of magas hate vance.', 'created': '2024-11-07 14:19:10', 'submission_id': '1glm617'}
{'comment': 'Defeatism and despair isn’t helpful. People fought Trump in his first term and they will fight him in his second.', 'created': '2024-11-07 16:57:32', 'submission_id': '1glm617'}
{'comment': "Yeah here's a good read on what's going to go down from The Atlantic: [https://www.theatlantic.com/ideas/archive/2022/08/trump-2024-reelection-viktor-orban-hungary/671264/?utm\\_campaign=the-atlantic&utm\\_content=true-anthem&utm\\_medium=social&utm\\_source=facebook](https://www.theatlantic.com/ideas/archive/2022/08/trump-2024-reelection-viktor-orban-hungary/671264/?utm_campaign=the-atlantic&utm_content=true-anthem&utm_medium=social&utm_source=facebook)", 'created': '2024-11-07 14:19:19', 'submission_id': '1glm617'}
{'comment': 'The electoral college should still be abolished tbh. Just bc he won the popular vote doesn’t change that', 'created': '2024-11-07 23:15:41', 'submission_id': '1glm617'}
{'comment': 'I have dual citizenship. My new country’s government just collapsed… I can only take so much stress in one week', 'created': '2024-11-07 13:36:56', 'submission_id': '1glm617'}
{'comment': 'California has only reported in ~50% of their vote. Those numbers are going to change.', 'created': '2024-11-07 17:25:32', 'submission_id': '1glm617'}
{'comment': 'Same here. I only know 1 person in Michigan and 1 person in Pennsylvania. My family are MAGA living in Gym Jordan’s district and I just can’t go back there after I retire. I just don’t want to leave my friends behind in Indiana.', 'created': '2024-11-07 18:15:27', 'submission_id': '1glm617'}
{'comment': 'Honestly, Harris herself was the problem. Not personally (I love her), but just by being the current VP. Anyone in the administration was going to lose. Biden fucked us by not dropping out before there was time to run primaries and find the ideal candidate. And, unfortunately, that will likely now be his legacy.', 'created': '2024-11-07 21:50:56', 'submission_id': '1glm617'}
{'comment': 'I’d love two free dem senators. Hell, put a few million Californians in Montana, Wyoming, Idaho, the Dakotas, we’ve got ourselves 10 Dem locked seats in the senate.', 'created': '2024-11-07 10:46:00', 'submission_id': '1glm617'}
{'comment': 'Dunno about PA, but Ohio has been getting nicer weather the past 4-5 years.', 'created': '2024-11-08 10:18:23', 'submission_id': '1glm617'}
{'comment': 'They still sell real estate for money. I don’t think they have to worry though. It’s just a theoretical.', 'created': '2024-11-07 18:00:58', 'submission_id': '1glm617'}
{'comment': 'I would also feel good in Oregon and Washington. It’s called the left coast for a reason\xa0', 'created': '2024-11-07 16:24:36', 'submission_id': '1glm617'}
{'comment': 'Come to New England, we’re cool as fuck.', 'created': '2024-11-07 16:35:42', 'submission_id': '1glm617'}
{'comment': 'I would never fight for this country, it’s not worth it.', 'created': '2024-11-07 14:55:55', 'submission_id': '1glm617'}
{'comment': "Dictators don't have to be loved to maintain power. They just have to be feared. \n\nJust need a police state!", 'created': '2024-11-07 14:21:12', 'submission_id': '1glm617'}
{'comment': "Realism and pragmatism are not defeatism and despair. \n\nYes. People will need to fight Trump during a second presidency if they want the US back. But moving to Pennsylvania ain't going to do anything.", 'created': '2024-11-07 18:06:11', 'submission_id': '1glm617'}
{'comment': 'He didn’t win it in 2016. If there was no EC, he might have lost interest and gone away.', 'created': '2024-11-08 04:49:23', 'submission_id': '1glm617'}
{'comment': "You got sometime before the USA starts to fall but if you can get an exit plan within 1-2 years you should. Don't put down roots here keep your finances liquid", 'created': '2024-11-07 13:46:22', 'submission_id': '1glm617'}
{'comment': 'I am going back to Europe this winter to see how things are going there. Surely not so great over there, too, at this moment. Nato, Russia, Ukraine and the economy.', 'created': '2024-11-08 20:43:01', 'submission_id': '1glm617'}
{'comment': 'Still likely talking millions of people abstaining at the very least. My overall point is still valid I think', 'created': '2024-11-07 17:26:24', 'submission_id': '1glm617'}
{'comment': "I feel the same about family. I am still living where I grew up due to that support. Most of my family are pretty liberal, but we live in dark red counties. I wish I could put them all in a suitcase and take them somewhere better. Outside of family, most people I've really bonded with over the years were ones that I worked with on the campaign trail. I just really value friendships that are based on more than video games and sports. I pretty much have the opposite of your problem. Liberal family and conservative friendships that like to argue. We're both stuck. Ugh.", 'created': '2024-11-07 22:49:23', 'submission_id': '1glm617'}
{'comment': 'That’s why the Republicans do not want Puerto Rico to gain statehood.', 'created': '2024-11-07 11:07:22', 'submission_id': '1glm617'}
{'comment': 'True about the Senators', 'created': '2024-11-07 10:49:30', 'submission_id': '1glm617'}
{'comment': "I've been saying this for a long time. With the advent of zoom and home sourcing it's more possible than its ever been. Dems used to own the freaking Senate and they could again. Political relocation is a bone fide strategy. Libertarians did it decades ago in NH with their free state project. A 60 seat Dem majority in the Senate would hamstring the GOP for decades, the same way Dems are hamstrung now. It would also help bring us back closer to the center because they'd have to negotiate to get anything at all done.", 'created': '2024-11-08 01:38:12', 'submission_id': '1glm617'}
{'comment': 'Ah yeah I forgot about those lol. Ofc those are included too.', 'created': '2024-11-07 17:04:15', 'submission_id': '1glm617'}
{'comment': 'Not all of Oregon and Washington is blue. Lots of red counties with conservative legislators. Those conservative legislators filibuster or don’t show up to session (pending active legislation that has consequences). Yes, electoral votes go to the Democratic ticket- but in my county, 2/3 voted trump. \n\nWe have a conservative congressional rep that votes with Marjorie Taylor Greene. And state rep is a Republican. Is it better overall than a red state? For many individuals it is because we have enshrined same sex marriage and abortion. But we’ve passed certain laws and regulations that counties or cities don’t have to follow (eg marijuana/psilocybin bans) or that state overturns passed measures (decriminalizing drugs). Rural hospitals have closed or there’s not enough reproductive care. Still have book bans. \n\nMoving to swing state has more power. But Oregon and Washington is still a safe haven for many.', 'created': '2024-11-07 18:52:01', 'submission_id': '1glm617'}
{'comment': 'If I could afford it I’d be in Boston now. Dem states are prohibitively expensive for the people who need it the most.', 'created': '2024-11-07 18:06:00', 'submission_id': '1glm617'}
{'comment': '🤜🏻 fuck yeah we are! Even NH is a safe bet because you can always go over the border into MA or VT if they enact any draconian measures.', 'created': '2024-11-08 04:47:24', 'submission_id': '1glm617'}
{'comment': "Nobody fears Donny. He's an old fat man who won't be surviving the pressures of the presidency.", 'created': '2024-11-07 16:07:52', 'submission_id': '1glm617'}
{'comment': "*Luckily* that will be predominantly difficult in the areas they'd need to lock down, like California and New York.", 'created': '2024-11-07 15:36:40', 'submission_id': '1glm617'}
{'comment': 'I already live there.. but my plan was to return one day to the US, and for sure retire in the US.\n\nNo matter where I go, it’s still home and nothing can replace that.', 'created': '2024-11-07 13:50:32', 'submission_id': '1glm617'}
{'comment': 'Or DC for that matter.', 'created': '2024-11-07 12:37:14', 'submission_id': '1glm617'}
{'comment': 'It was one of the first things Mitch McConnell said after the election. He was grateful that the filibuster would remain so Puerto Rico wouldn’t be a state. Lindsey Graham has been vocal about this as well. It’s be smart if Dems ran in this.', 'created': '2024-11-07 15:21:21', 'submission_id': '1glm617'}
{'comment': 'With how fast Latinos are moving right, Puerto Rico becoming a state might help them', 'created': '2024-11-07 18:18:21', 'submission_id': '1glm617'}
{'comment': 'We want our independence not statehood. American government is extremely corrupt. Yall destroyed our island with capitalism.', 'created': '2024-11-07 14:27:26', 'submission_id': '1glm617'}
{'comment': 'Ironically the Republican party equivalent in Puerto Rico wins the bulk of the "statewide" elections.', 'created': '2024-11-07 21:19:55', 'submission_id': '1glm617'}
{'comment': 'Not all of California is blue either.', 'created': '2024-11-07 21:39:04', 'submission_id': '1glm617'}
{'comment': 'Nobody can afford Boston. Central Massachusetts is a bit cheaper, as is much of Rhode Island.', 'created': '2024-11-07 21:29:28', 'submission_id': '1glm617'}
{'comment': '🤛 hell yeah! I’m in northern NH. There’s some backwards redneck fucksticks here, but I was born and raised in North Carolina so I’m used to them.', 'created': '2024-11-08 05:06:05', 'submission_id': '1glm617'}
{'comment': 'The other poster was talking about Vance.', 'created': '2024-11-07 18:09:15', 'submission_id': '1glm617'}
{'comment': "Depending on where there is you are probably better off staying. Coming here especially for retirement will be fraught with problems. There really isn't a future here for someone who will be on a fixed income.", 'created': '2024-11-07 13:56:01', 'submission_id': '1glm617'}
{'comment': 'Hey, that’s unfair, capitalism destroyed the whole country, not just Puerto Rico!', 'created': '2024-11-07 16:44:57', 'submission_id': '1glm617'}
{'comment': 'I want you to have whatever you choose, Hawaii, as well.', 'created': '2024-11-07 14:36:03', 'submission_id': '1glm617'}
{'comment': 'God that would be a sight \n\nDemocratic federal Republican Stateside', 'created': '2024-11-08 00:16:33', 'submission_id': '1glm617'}
{'comment': "Vance is less committed than Trump. Some day he'll break and do what Pence did. Trust me on that. He's not like the rest of them. Even if he'd like to be", 'created': '2024-11-07 21:10:32', 'submission_id': '1glm617'}
{'comment': "No Vance is the opposite of Pence. Pence was a Trumper from the beginning who had a line (a very far right) that he couldn't cross. Vance started as an anti Trumper who got broken in and is now fully a maga lap dog. So long as he can get even more money and power, Vance is all in on the maga train and for him there's no line that's too far to cross", 'created': '2024-11-08 00:27:41', 'submission_id': '1glm617'}
{'comment': 'Yea he acts more like one of the orange’s trapped kids', 'created': '2024-11-08 05:41:00', 'submission_id': '1glm617'}
{'comment': 'Filibuster everything.', 'created': '2024-11-07 13:33:54', 'submission_id': '1glm557'}
{'comment': 'Elon Musk will insist on slashing Social Security, Medicare and Government employees putting millions of Americans out of work and when Americans do contact the government for help there will be no one on the other line. Putin won the US presidency.', 'created': '2024-11-07 15:44:12', 'submission_id': '1glm557'}
{'comment': "Idiot Trump has 4 years to slash and burn his way through the Federal government like he promised. COVID pointed out that he doesn't care if a million old people die suffocating in hospital hallways. Rich people have all the healthcare they want and those are his true constituents - worldwide.\n\nWe now have a demented sociopath in office without any kind of checks and balances envisioned by the Founding Fathers. His dystopian cronies and enablers have fed his madness with what he wants to hear, and we are in trouble.", 'created': '2024-11-07 13:50:39', 'submission_id': '1glm557'}
{'comment': "Nothing. It's best to let Republicans accomplish their wish list so that Democrats can run on something in 2026 and 2028.", 'created': '2024-11-07 16:21:37', 'submission_id': '1glm557'}
{'comment': 'Sorry. Boomers did it to themselves. I’m going petty. Good luck. Hate to be this way but the country has shown we are not better than it. Everyone out for themselves I guess so good luck older generations and gen z. Will have to deal with it and no one bailing you out this time.', 'created': '2024-11-07 15:08:11', 'submission_id': '1glm557'}
{'comment': '[were gonna make those sons of bitch work for it ](https://youtu.be/o74bAOIlfZA?si=MMLhWSTQ6fJSKWCk)', 'created': '2024-11-07 13:41:50', 'submission_id': '1glm557'}
{'comment': "What DT and his Project 2025 fetish loving cronies don't realize is that is that it is not just the elderly that rely on Social Security. If anything that is just the tip of the iceberg individuals such as those who have physical disabilities, neurodiversity (intellectual disabilities), veterans, the unemployed, individuals living in poverty/low income, individuals struggling with substance abuse, immigrants and refugees all benefit from some slight to heavy dependence on Social Security to keep them in the black.\n\nLong story short gutting Social Security like a fish would destroy the nation's economy and lead to rising numbers of marginalized individuals ending up in extreme crushing debt and widespread poverty. All of which can and will be reflected in the midterms and coming elections.", 'created': '2024-11-07 18:53:12', 'submission_id': '1glm557'}
{'comment': 'We could have voted three days ago?', 'created': '2024-11-07 18:09:42', 'submission_id': '1glm557'}
{'comment': 'Let them take it away. See how long republicans support the administration then. It’s what they voted for. I didn’t want it to go away either. But we actually believe in the will of the people, unlike the right.', 'created': '2024-11-07 18:26:58', 'submission_id': '1glm557'}
{'comment': 'Is flipping the House off the table now?', 'created': '2024-11-07 15:30:01', 'submission_id': '1glm557'}
{'comment': 'Too late. Sorry :/', 'created': '2024-11-07 16:34:17', 'submission_id': '1glm557'}
{'comment': 'Time for the deep state to act…', 'created': '2024-11-07 12:02:27', 'submission_id': '1glm557'}
{'comment': 'If they wanna take then they will have to [work for it ](https://youtu.be/o74bAOIlfZA?si=MMLhWSTQ6fJSKWCk)', 'created': '2024-11-07 13:42:16', 'submission_id': '1glm557'}
{'comment': 'All the trump voters will enjoy cheap gas after they loose health insurance through medicaid 🤗', 'created': '2024-11-07 20:07:43', 'submission_id': '1glm557'}
{'comment': "There's going to be a fucking war and it will not be civil!", 'created': '2024-11-07 19:08:25', 'submission_id': '1glm557'}
{'comment': "Yep they're coming for SS. Nothing to stop them now..", 'created': '2024-11-07 13:48:50', 'submission_id': '1glm557'}
{'comment': 'Nothing. Zero. Zilch. Nada. Null. Nichts.', 'created': '2024-11-07 16:12:29', 'submission_id': '1glm557'}
{'comment': 'Nothing let them take them away', 'created': '2024-11-07 13:16:14', 'submission_id': '1glm557'}
{'comment': 'Republicans can just change the senate rules to eliminate that', 'created': '2024-11-07 16:14:41', 'submission_id': '1glm557'}
{'comment': 'I made peace with the fact I will never get social security- and have planned for that. \xa0The Trump voting boomers - they are living on it.\xa0', 'created': '2024-11-07 16:11:43', 'submission_id': '1glm557'}
{'comment': 'But, how? Yeah use the courts- for those in the legal practices… but what about us little guys? Where do we join the resistance?', 'created': '2024-11-07 14:24:32', 'submission_id': '1glm557'}
{'comment': 'Not looking good. 99% sure republicans will take the majority', 'created': '2024-11-07 15:36:01', 'submission_id': '1glm557'}
{'comment': 'Time to whip out the hurricane machine', 'created': '2024-11-07 22:41:04', 'submission_id': '1glm557'}
{'comment': 'Exactly. It’s not like this Supreme Court can just ignore written law. Right?', 'created': '2024-11-07 16:02:02', 'submission_id': '1glm557'}
{'comment': 'The filibuster is valuable to Republicans.\xa0 The Republican party is the "traditional" party that likes things to stay as they were.\xa0 The filibuster is a useful tool for them to slow down changes and they\'ll want it going forward.\xa0 It might be more valuable to them than it is to Dems, although it does also promote a touch of stability that Dems appreciate.', 'created': '2024-11-08 01:18:56', 'submission_id': '1glm557'}
{'comment': 'Not if we filibuster them getting rid of the filibuster!!!', 'created': '2024-11-07 16:20:21', 'submission_id': '1glm557'}
{'comment': "Republicans aren't going to change the rules to eliminate that.", 'created': '2024-11-07 16:29:49', 'submission_id': '1glm557'}
{'comment': 'Yup. We keep bailing out boomers but no other generation. After this election I’m going petty. They can enjoy the fruits of their decisions.', 'created': '2024-11-07 16:22:12', 'submission_id': '1glm557'}
{'comment': 'Courts we can do what we can. For us little guys protest block walk perhaps we can make a discord to further discuss this. Have a chat for the US and a different chat for each state', 'created': '2024-11-07 14:26:47', 'submission_id': '1glm557'}
{'comment': 'In 2020 they ruled against Trump election it was a 9-0 against the case. We should focus on keeping the Supreme Court hands tied and any other court', 'created': '2024-11-07 16:25:25', 'submission_id': '1glm557'}
{'comment': "Remember when everyone said they'd never overturn roe because it was too valuable to campaign on?", 'created': '2024-11-08 01:19:43', 'submission_id': '1glm557'}
{'comment': 'Senate rules making actions are not able to be filibustered.', 'created': '2024-11-07 16:21:03', 'submission_id': '1glm557'}
{'comment': 'yes, yes they are', 'created': '2024-11-07 16:49:20', 'submission_id': '1glm557'}
{'comment': 'Peaceful protest we take a page from the civil rights movement', 'created': '2024-11-07 14:27:35', 'submission_id': '1glm557'}
{'comment': 'Well, anything is possible.\xa0 I figure my prophecies are just as good as everyone else\'s.\xa0 I even had a little angel pop through a portal and whisper to me, "filibuster will stay, but MTG will have an aneurysm from consuming gallons of fluoride reacting to conspiracy theories about conspiracy theories."', 'created': '2024-11-08 01:25:26', 'submission_id': '1glm557'}
{'comment': 'What if I told you the civil rights act was passed because of rioting, and not peaceful protests.', 'created': '2024-11-07 16:00:57', 'submission_id': '1glm557'}
{'comment': "Well, so far since the 90s I'm rolling almost perfect on my predictions of how low the republicans will go, though not always in timing.\n\nExpect them to always do the short sighted power grab.", 'created': '2024-11-08 01:26:55', 'submission_id': '1glm557'}
{'comment': 'Can you please explain more?', 'created': '2024-11-07 16:18:20', 'submission_id': '1glm557'}
{'comment': 'Oh honey, look it up yourself. The school system clearly failed here.', 'created': '2024-11-07 17:50:13', 'submission_id': '1glm557'}
{'comment': 'You’re confused? They’re the ones that are really confused. Especially if they are an LGBTQ+ person. Leopards will enjoy dining on their face.', 'created': '2024-11-07 09:23:42', 'submission_id': '1glkrhk'}
{'comment': "That's the spirit! Definitely going to get him upgraded to the first class car on the way to the camp!", 'created': '2024-11-07 08:41:48', 'submission_id': '1glkrhk'}
{'comment': 'Chickens for KFC!!!!', 'created': '2024-11-07 08:22:38', 'submission_id': '1glkrhk'}
{'comment': 'There were Jewish Nazis, too. At least at first. In the end they ended up in the camps, too.', 'created': '2024-11-07 11:33:25', 'submission_id': '1glkrhk'}
{'comment': 'They never think the leopards are gonna eat their face', 'created': '2024-11-07 12:01:24', 'submission_id': '1glkrhk'}
{'comment': 'I think there was something like a 12-17% turnout for Trump by LGBTQIA voters. It’s mind blowing that someone would vote against themselves. But here we are. 🏳️\u200d🌈', 'created': '2024-11-07 12:02:10', 'submission_id': '1glkrhk'}
{'comment': 'This is gonna sound petty and spiteful as fuck, but I hope for their sake Obergefell falls. "Ohhh no they took away my right to marry. I did Nazi see that coming"\n\nProject 2025 is going to be serious fucking wake up call for a lot of brainwashed, face-eaten suckers and now I\'m basically here for the carnage (I am an already vaccinated married white man who has already had my only planned kid, I make pretty good money and will likely end up putting my kid in a fucking private school if I have to when DoE falls, which sucks) because I will literally be the least affected. And now I will absolutely say, "remember when you voted for Chester Cheat-o? You got what you wanted, fucking enjoy."', 'created': '2024-11-07 12:03:22', 'submission_id': '1glkrhk'}
{'comment': 'As a gay woman, leopards will eat their face. Also I’m thinking the MAGAs that came across this were having a real hard time deciding whether to take this flag down. On one hand, it’s rainbow. On the other hand, it’s for trump', 'created': '2024-11-07 08:09:32', 'submission_id': '1glkrhk'}
{'comment': 'Assuming they are really part of LGBTQ, they must value money more than gay rights.', 'created': '2024-11-07 13:38:59', 'submission_id': '1glkrhk'}
{'comment': 'So is your neighbor, apparently.', 'created': '2024-11-07 08:16:54', 'submission_id': '1glkrhk'}
{'comment': 'Roaches for Raid!', 'created': '2024-11-07 12:52:55', 'submission_id': '1glkrhk'}
{'comment': 'That’s unusually queer!', 'created': '2024-11-07 12:00:03', 'submission_id': '1glkrhk'}
{'comment': 'Faces for the leopards.', 'created': '2024-11-07 13:43:17', 'submission_id': '1glkrhk'}
{'comment': 'That is going to be akin, and I do not mean this disrespectfully or to minimize what happened, but this akin to a Jewish person in Nazi Germany hanging the Star of David flag on their front porch with "Jews for Hitler" on it.', 'created': '2024-11-07 13:47:17', 'submission_id': '1glkrhk'}
{'comment': 'I am gladly going to remind every T voter that this is what they voted for when the consequences of their vote arrive at their door, figuratively and literally.', 'created': '2024-11-07 14:53:39', 'submission_id': '1glkrhk'}
{'comment': "Strait ,gay, trans don't ever fuck a Republican they are usless to anyone. They do not respect you .\nBe polite, where you have to buy their shit otherwise . Find people who respect your values.", 'created': '2024-11-07 16:12:56', 'submission_id': '1glkrhk'}
{'comment': 'It seems he’s confused as well. A lot of people have watched and listened and still not heard what trump has been yelling at everyone.', 'created': '2024-11-07 13:00:30', 'submission_id': '1glkrhk'}
{'comment': 'SLUGS FOR SALT!', 'created': '2024-11-07 13:55:19', 'submission_id': '1glkrhk'}
{'comment': 'Not as confused as your neighbor.', 'created': '2024-11-07 15:01:28', 'submission_id': '1glkrhk'}
{'comment': 'Definition of stupidity', 'created': '2024-11-07 18:00:40', 'submission_id': '1glkrhk'}
{'comment': 'Chickens for McNuggets', 'created': '2024-11-08 04:14:39', 'submission_id': '1glkrhk'}
{'comment': 'Does JD Vance live there?', 'created': '2024-11-07 09:07:03', 'submission_id': '1glkrhk'}
{'comment': 'Oh, he’ll have a whole new outlook after he’s released from forced conversion therapy', 'created': '2024-11-07 11:39:04', 'submission_id': '1glkrhk'}
{'comment': 'There are some really stupid people in this country', 'created': '2024-11-07 13:22:47', 'submission_id': '1glkrhk'}
{'comment': 'You live next to kate jenner? Nice neighborhood', 'created': '2024-11-07 13:07:36', 'submission_id': '1glkrhk'}
{'comment': 'literally their second biggest issue after the border.', 'created': '2024-11-07 13:20:38', 'submission_id': '1glkrhk'}
{'comment': 'When his life is made more difficult you just shrug and say “well you voted for this”.', 'created': '2024-11-07 13:28:29', 'submission_id': '1glkrhk'}
{'comment': 'Leopards ate my face…', 'created': '2024-11-07 13:34:28', 'submission_id': '1glkrhk'}
{'comment': 'A flag completely safe from political vandals', 'created': '2024-11-07 13:36:42', 'submission_id': '1glkrhk'}
{'comment': 'Deer for expanded hunting seasons! \nConstruction workers for sunscreen bans!\nNurses for no overtime pay!', 'created': '2024-11-07 13:44:33', 'submission_id': '1glkrhk'}
{'comment': 'In 2016, he ran on protecting LGBTQ folks from radical Islamists. \n\nIt’s the same thing you’ll see amongst my demographic: white women. Many of us will give in to the fear of brown men attacking us in the parking lot. \n\nThere’s a reason Fox News has a true crime podcast.', 'created': '2024-11-07 13:50:30', 'submission_id': '1glkrhk'}
{'comment': "In my neighborhood there's a married gay couple who have been flying a Trump flag for months", 'created': '2024-11-07 14:26:50', 'submission_id': '1glkrhk'}
{'comment': 'can we make one that says MAKE AMERICA GAY AGAIN\n\nid really like to put that up to battle against my neighbors big Maga Banner.\n\nplssssss', 'created': '2024-11-07 16:22:25', 'submission_id': '1glkrhk'}
{'comment': 'Get ready to see more of this. \n\nLGBT people will be the first to be attacked by MAGA. Some are going to try and protect themselves by pretending to support Trump. \n\nIt’s time to recalibrate how we interact with society and realize that some things that seem absurd might be a survival tactic.', 'created': '2024-11-07 17:24:15', 'submission_id': '1glkrhk'}
{'comment': '“The tree for the axe” 🤝', 'created': '2024-11-07 18:01:27', 'submission_id': '1glkrhk'}
{'comment': 'That’s like saying “Jews for Hitler”', 'created': '2024-11-08 01:30:19', 'submission_id': '1glkrhk'}
{'comment': 'So is your neighbor.', 'created': '2024-11-08 01:59:05', 'submission_id': '1glkrhk'}
{'comment': 'This is the sort of idiot who thinks their proximity to bigotry will somehow save them from harm. They will be the first to be eaten by the leopard.', 'created': '2024-11-08 03:44:18', 'submission_id': '1glkrhk'}
{'comment': 'Ah yes.. if I’m sufficiently loyal, they will spare me.', 'created': '2024-11-08 04:07:46', 'submission_id': '1glkrhk'}
{'comment': 'Yeah, they don’t speak for this community with their temu flag', 'created': '2024-11-07 13:22:50', 'submission_id': '1glkrhk'}
{'comment': 'So you’re saying there’s going to be a house on the market soon? LAMF!', 'created': '2024-11-07 13:29:47', 'submission_id': '1glkrhk'}
{'comment': 'They are a small minority in our community and they can fuck right off. A tree voting for the ax!', 'created': '2024-11-07 14:02:43', 'submission_id': '1glkrhk'}
{'comment': 'They will be too when they have their rights taken away.', 'created': '2024-11-07 14:12:41', 'submission_id': '1glkrhk'}
{'comment': 'You’re confused, imagine their headspace!!', 'created': '2024-11-07 14:22:57', 'submission_id': '1glkrhk'}
{'comment': 'That person is gonna be so shocked when he takes away their rights all because they let their own bigotry define them.', 'created': '2024-11-07 14:30:35', 'submission_id': '1glkrhk'}
{'comment': 'An attempt at protective coloration? The leopards will find them extra delicious, as we know they love to eat their own too.', 'created': '2024-11-07 14:39:30', 'submission_id': '1glkrhk'}
{'comment': 'This may be a means of self protection, tbh. \xa0Like hey hey, no, we’re on the “good side” of things!\xa0\nSort of like ppl having thin blue line stickers on their cars even tho they hate the cops. Wanting the cops to think they are pro cop so they leave them alone.\xa0', 'created': '2024-11-07 14:46:45', 'submission_id': '1glkrhk'}
{'comment': "Cult members don't usually see the irony in their actions.", 'created': '2024-11-07 14:48:15', 'submission_id': '1glkrhk'}
{'comment': 'Real “Jews for German Nationalism” vibes.', 'created': '2024-11-07 15:07:25', 'submission_id': '1glkrhk'}
{'comment': 'See, the fact that everyone here just assumes that gay = democrat is part of the reason the democrats keep losing. Black men, Latinos, immigrants, LGBT, all these demos that democrats assume should vote for them, and they keep going more and more for republicans.', 'created': '2024-11-07 15:14:22', 'submission_id': '1glkrhk'}
{'comment': "Sell Americans on the promise of cheap goods and they bite.\n\nI see people driving $50k-$60k cars complaining about the cost of eggs and gas. If you have a vehicle that when the price of groceries go up you can't afford them...YOU made the bad choice.", 'created': '2024-11-07 15:50:20', 'submission_id': '1glkrhk'}
{'comment': 'Not as confused as he is', 'created': '2024-11-07 15:53:58', 'submission_id': '1glkrhk'}
{'comment': "This like saying my dog won't bite despite it eating your face.", 'created': '2024-11-07 17:03:17', 'submission_id': '1glkrhk'}
{'comment': 'They are confused as well', 'created': '2024-11-07 17:12:22', 'submission_id': '1glkrhk'}
{'comment': 'Probably willing to sell out their freedoms for tax breaks.', 'created': '2024-11-07 17:24:44', 'submission_id': '1glkrhk'}
{'comment': 'Leopards are going to feast well.', 'created': '2024-11-07 17:38:47', 'submission_id': '1glkrhk'}
{'comment': 'Slugs for salt.', 'created': '2024-11-07 18:10:17', 'submission_id': '1glkrhk'}
{'comment': 'I think they are orders of magnitude more confused than you.', 'created': '2024-11-07 18:22:03', 'submission_id': '1glkrhk'}
{'comment': 'Your neighbor is a moron. Does that clear up your confusion?', 'created': '2024-11-07 18:22:33', 'submission_id': '1glkrhk'}
{'comment': 'So is your neighbour, apparently.', 'created': '2024-11-07 18:26:50', 'submission_id': '1glkrhk'}
{'comment': 'I got into an argument with a LGBTQ Trump supporter at one point. Every single answer he gave me absolutely blew my mind. I wish I could repeat some of them back to you, but the mental gymnastics that he went through to validate his perspectives was honestly just sad. I’m just sad right now. How did that win?', 'created': '2024-11-07 18:27:02', 'submission_id': '1glkrhk'}
{'comment': 'Huh. Imagine that. Usually scat queens are a little more discreet.', 'created': '2024-11-07 18:38:15', 'submission_id': '1glkrhk'}
{'comment': 'The "uncle tom" phenomena. If I just be one of the good ones I will be ok...oops', 'created': '2024-11-07 18:44:20', 'submission_id': '1glkrhk'}
{'comment': "They are confused not you. Fuck Trump, his cultist losers, and everyone that didn't vote this election.", 'created': '2024-11-07 18:49:48', 'submission_id': '1glkrhk'}
{'comment': 'Missed opportunity for “Make America Gay Again!”', 'created': '2024-11-07 18:53:51', 'submission_id': '1glkrhk'}
{'comment': 'This seems like an oxymoron to me.', 'created': '2024-11-07 19:07:32', 'submission_id': '1glkrhk'}
{'comment': 'People really love to vote against their interests I guess?', 'created': '2024-11-07 19:07:41', 'submission_id': '1glkrhk'}
{'comment': "My husband's cousin and his husband are the same. They don't realize that part of the agenda is to dissolve their marriage and take their adopted children away from them. Being republican won't make them immune to hate and destruction. They will have nowhere to turn when the leopard starts eating their face.", 'created': '2024-11-07 19:11:19', 'submission_id': '1glkrhk'}
{'comment': 'Slugs for salt', 'created': '2024-11-07 19:11:30', 'submission_id': '1glkrhk'}
{'comment': 'Let’s be real, they’ll say ‘it’s not going to affect them’', 'created': '2024-11-07 19:48:06', 'submission_id': '1glkrhk'}
{'comment': 'It means they are racist/fascist and just happen to be lgbtq+', 'created': '2024-11-07 20:03:37', 'submission_id': '1glkrhk'}
{'comment': 'I guess they forgot about the mass graves that were being set up in this century.', 'created': '2024-11-07 20:14:32', 'submission_id': '1glkrhk'}
{'comment': 'I’m estranged from my relatives. Every so often I look at the social media of one, who has a homosexual adult child who married last year. They are trump supporters, and I can see them having a flag like this. I just don’t understand.', 'created': '2024-11-07 20:24:39', 'submission_id': '1glkrhk'}
{'comment': 'Probably so that Trump and the new administration will not round him up and kick him out of the country and claim he’s an illegal immigrant', 'created': '2024-11-07 22:54:39', 'submission_id': '1glkrhk'}
{'comment': 'There is a gay organization called "Log Cabin Republicans" that has supported to GOP for a long time. As a gay man I find them and other collaborators like them to be reprehensible and traitors to the cause.', 'created': '2024-11-08 01:19:18', 'submission_id': '1glkrhk'}
{'comment': 'Brainwashing. Pure brainwashing.', 'created': '2024-11-08 06:22:48', 'submission_id': '1glkrhk'}
{'comment': "Unfortunately being LGBTQ+ doesn't mean you can't be stupid. It's not LGBT-*IQ-of-100*\\+.\n\nEdit: Before anyone comes at me, I am pretty obviously part of this particular club. I don't claim to be super smart but I'm at least not dumb enough to be like *that.*", 'created': '2024-11-07 13:08:36', 'submission_id': '1glkrhk'}
{'comment': 'Turkey voting for thanksgiving.', 'created': '2024-11-07 10:10:22', 'submission_id': '1glkrhk'}
{'comment': 'Either trying to ward off the pogroms or they’re just stupid as fuck.', 'created': '2024-11-07 12:25:50', 'submission_id': '1glkrhk'}
{'comment': "It's like Jews for Hitler", 'created': '2024-11-07 13:10:03', 'submission_id': '1glkrhk'}
{'comment': "White gay men, sadly can be like this because they are white men and generally move through society without restrictions, unless they choose to broadcast their sexuality or can't hide it. This doesn't surprise me at all.", 'created': '2024-11-07 13:20:52', 'submission_id': '1glkrhk'}
{'comment': 'So is your friend', 'created': '2024-11-07 11:58:27', 'submission_id': '1glkrhk'}
{'comment': 'It’s so they can fly their LGBT colors but also not get rounded up by Trump death squads. We’re all coping in our own way right?', 'created': '2024-11-07 14:00:01', 'submission_id': '1glkrhk'}
{'comment': 'can’t beat em? join em. 🙄 🤦', 'created': '2024-11-07 14:17:36', 'submission_id': '1glkrhk'}
{'comment': "If you can't beat 'em, join 'em \n\nWe're all lunatics now, fellow Americans. Travel abroad - you're a Trump lover.", 'created': '2024-11-07 14:21:34', 'submission_id': '1glkrhk'}
{'comment': 'The leopard will never eat MY face.', 'created': '2024-11-07 14:21:58', 'submission_id': '1glkrhk'}
{'comment': 'Faces for Leopards.', 'created': '2024-11-07 14:23:59', 'submission_id': '1glkrhk'}
{'comment': 'WHAT?\n\n\n\nI', 'created': '2024-11-07 14:28:25', 'submission_id': '1glkrhk'}
{'comment': 'Inb4 leopards', 'created': '2024-11-07 14:57:33', 'submission_id': '1glkrhk'}
{'comment': '“Surly the leopards won’t eat MY face, that’s why I’m voting for the leopard face eating party”', 'created': '2024-11-07 15:10:09', 'submission_id': '1glkrhk'}
{'comment': 'They are one of the “good ones”', 'created': '2024-11-07 15:10:51', 'submission_id': '1glkrhk'}
{'comment': 'My guess they produced these flags in a run size of 10', 'created': '2024-11-07 15:11:28', 'submission_id': '1glkrhk'}
{'comment': 'He will also be confused when the leopards come for his face', 'created': '2024-11-07 15:30:58', 'submission_id': '1glkrhk'}
{'comment': 'So are they', 'created': '2024-11-07 15:34:31', 'submission_id': '1glkrhk'}
{'comment': 'Turkeys that are pro thanksgiving', 'created': '2024-11-07 15:37:38', 'submission_id': '1glkrhk'}
{'comment': "Well at least they aren't going around destroying other people's pride flags like the local MAGAts did to mine last night.", 'created': '2024-11-07 15:42:48', 'submission_id': '1glkrhk'}
{'comment': "I'm confused too, but we can't afford to spend the next few cycles shouting at them for voting for Trump. We have to figure out why and come up with a better message.", 'created': '2024-11-07 15:45:17', 'submission_id': '1glkrhk'}
{'comment': "Your neighbor is the one that's confused.", 'created': '2024-11-07 15:50:05', 'submission_id': '1glkrhk'}
{'comment': 'The closer you are to the cultural default the easier it is to imagine that you’re part of the in crowd. Professional gay men with bodies who respond to diet and exercise have had an uneasy alliance with the rest of the community at least since AIDS treatment started being available.\n\nOn the Lesbian side, there are the gun-toting, rural dykes for whom the military was the first place they could be themselves, who saw DADT as just the rules of the game and saw acceptance and equality as civilian concerns. \n\nI think both groups miss that they are tolerated because of their usefulness to the white, cis-gendered men in power, and those men in power are looking forward to not needing them any more.', 'created': '2024-11-07 15:57:05', 'submission_id': '1glkrhk'}
{'comment': "They'll see, they'll see.", 'created': '2024-11-07 16:04:09', 'submission_id': '1glkrhk'}
{'comment': 'Do you know them? It would be fascinating to know what they believe is so good about Trump that they would ignore the people around him would be against them. \n\nUntil we figure out how this logic works we will never be back.', 'created': '2024-11-07 16:12:00', 'submission_id': '1glkrhk'}
{'comment': 'Fools', 'created': '2024-11-07 16:33:16', 'submission_id': '1glkrhk'}
{'comment': 'No one votes against their own interests like republicans. Been happening for decades.', 'created': '2024-11-07 16:41:01', 'submission_id': '1glkrhk'}
{'comment': 'They believed the fox when he said the sky was falling and became his dinner!', 'created': '2024-11-07 16:41:21', 'submission_id': '1glkrhk'}
{'comment': 'may the leopards feast upon their face', 'created': '2024-11-07 16:44:35', 'submission_id': '1glkrhk'}
{'comment': '"Maybe if I act like I\'m really pro-Trump, they won\'t round me up with the rest of \'em."- usual collaborator thinking', 'created': '2024-11-07 16:48:01', 'submission_id': '1glkrhk'}
{'comment': "Let him. Then make sure you laugh in his face when the party he supports turns on him. Be there, not to support, but to kick him as hard as you can while he's down. \n\nMaybe next time he won't be so fucking stupid and actually will vote in his best interests.", 'created': '2024-11-07 16:53:52', 'submission_id': '1glkrhk'}
{'comment': 'Maybe they’re just afraid of commitment? \n\n“Sorry babe, can’t get married. That dang law…”', 'created': '2024-11-07 17:17:33', 'submission_id': '1glkrhk'}
{'comment': 'Stockholm Syndrome', 'created': '2024-11-07 17:19:11', 'submission_id': '1glkrhk'}
{'comment': 'Wait, our marriage is annulled by the State? Why?', 'created': '2024-11-07 17:21:22', 'submission_id': '1glkrhk'}
{'comment': 'Moron. There is no other explanTion', 'created': '2024-11-07 17:21:34', 'submission_id': '1glkrhk'}
{'comment': "To me, it's like putting a swastika on yamaka. These people seem to discount all of Trump's worst rhetoric...or even worse, they don't even hear it because our current media ecosystem white washes Trump's insanity and glorifies him into some sort of folk hero. I'm sorry but a lot of these people deserve whatever happens. Ignorance is not bliss, it's the kind of thing that enables tyrants and we have a duty to inform ourselves", 'created': '2024-11-07 17:31:43', 'submission_id': '1glkrhk'}
{'comment': 'When all their rights start to be cut, then they will take down the flag.', 'created': '2024-11-07 17:41:12', 'submission_id': '1glkrhk'}
{'comment': 'You should by them a book on 1930s Germany\n\nIt’s going to really be important in the next 4 years', 'created': '2024-11-07 18:08:53', 'submission_id': '1glkrhk'}
{'comment': 'It’s probably a straight white male who’s also a member of the gravy seals. Just like all of the white dolls holding signs at rallies that said “Blacks for trump”.', 'created': '2024-11-07 18:09:05', 'submission_id': '1glkrhk'}
{'comment': 'It’s an oxymoron- emphasis on the “moron”', 'created': '2024-11-07 18:31:38', 'submission_id': '1glkrhk'}
{'comment': 'He’s one of those um…\n\nMorons. They’re called morons.', 'created': '2024-11-07 19:30:36', 'submission_id': '1glkrhk'}
{'comment': 'Ugh and they are advertising that they are a target from trump', 'created': '2024-11-07 19:30:57', 'submission_id': '1glkrhk'}
{'comment': '', 'created': '2024-11-07 19:46:27', 'submission_id': '1glkrhk'}
{'comment': 'So are they. 🙄', 'created': '2024-11-07 20:53:45', 'submission_id': '1glkrhk'}
{'comment': "It's like someone who is Jewish hanging a swastika flag on their porch. WT actual F?", 'created': '2024-11-07 21:31:31', 'submission_id': '1glkrhk'}
{'comment': 'Your neighbor is a moron. That’s why he hung that flag. Your neighbor is gonna get a big surprise when he’s on a cattle car going to a concentration camp.', 'created': '2024-11-07 21:33:58', 'submission_id': '1glkrhk'}
{'comment': 'Your neighbor is a moron!', 'created': '2024-11-07 21:37:49', 'submission_id': '1glkrhk'}
{'comment': 'Yay Trump. Round me up and put me in an internment camp!', 'created': '2024-11-07 21:41:12', 'submission_id': '1glkrhk'}
{'comment': 'As a Bisexual Man I can tell u very few in the LGBTQ supported Trump.', 'created': '2024-11-07 21:44:34', 'submission_id': '1glkrhk'}
{'comment': 'WTF??!', 'created': '2024-11-07 23:03:52', 'submission_id': '1glkrhk'}
{'comment': "I feel ashamed of my LGBT community, I really do. What the hell is wrong with this person? See now, this is proof that stupidity transcends identity.\n\n\nBut man do I feel happy for the leopards... I mean they are eating, they are hanging out in the sun, they're having the time of their lives. They're gonna have a great four years, bellies full and healthy fur, man. I sure wish I were a leopard right now.", 'created': '2024-11-07 23:12:51', 'submission_id': '1glkrhk'}
{'comment': 'The more I see if this and how badly we lost in the election, the more I think they put something in our water. Ok, taking the tin foil hat off now.', 'created': '2024-11-08 00:21:24', 'submission_id': '1glkrhk'}
{'comment': 'The Q is for anon in this case', 'created': '2024-11-08 00:29:34', 'submission_id': '1glkrhk'}
{'comment': 'He’s one of trump’s suckers and losers.', 'created': '2024-11-08 00:30:42', 'submission_id': '1glkrhk'}
{'comment': 'I’ve got a neighbor who hung a pink “Women for Trump”. Equally confused.', 'created': '2024-11-08 00:59:54', 'submission_id': '1glkrhk'}
{'comment': 'im confused too', 'created': '2024-11-08 03:05:21', 'submission_id': '1glkrhk'}
{'comment': 'My ex-boss was a gay Republican. He still voted for the Democrats because he couldn’t deal with the religious zealots in the GOP but he was a conservative and would’ve voted for them all along if they’d just moderated on social issues related to gay rights.\n\nSome people might be willing to give Trump the benefit of the doubt as he’s not a religious zealot himself. Besides, he’s a lame duck so some might think he’s no longer beholden to anyone. But it does seem strange. Maybe we are going through a realignment of sorts.', 'created': '2024-11-08 20:40:45', 'submission_id': '1glkrhk'}
{'comment': 'The same phrase pops to mind every time I see or hear of such hatred of this kind...\n"Thou protest too loudly".', 'created': '2024-11-10 05:45:53', 'submission_id': '1glkrhk'}
{'comment': 'I’m just going to sit back and laugh when people who voted for him get screwed over. I’m sure 2 younger far right Supreme Court judges will take good care of this person.', 'created': '2024-11-07 12:46:39', 'submission_id': '1glkrhk'}
{'comment': "It's because people are not critical thinkers and look for someone to tell them what they want to hear on one side and are also willing to lie to their neighbors to get what they want on the other. It's a short sighted strategy and one in which everybody starts lieing to eachother.", 'created': '2024-11-07 12:47:10', 'submission_id': '1glkrhk'}
{'comment': 'Jews for Hitler!', 'created': '2024-11-07 12:23:16', 'submission_id': '1glkrhk'}
{'comment': None, 'created': '2024-11-07 11:23:39', 'submission_id': '1glkrhk'}
{'comment': 'Are they actually LGBTQ, or is this like a bunch of white people wearing “blacks for Trump” shirts', 'created': '2024-11-07 15:29:13', 'submission_id': '1glkrhk'}
{'comment': 'Wait till they learn PrEP and PEP is no longer covered under health insurance.', 'created': '2024-11-07 15:50:30', 'submission_id': '1glkrhk'}
{'comment': 'https://preview.redd.it/c8mamza1whzd1.jpeg?width=2000&format=pjpg&auto=webp&s=c314276637bff249eef6c5df259c4360eeb0808f', 'created': '2024-11-07 16:07:16', 'submission_id': '1glkrhk'}
{'comment': "Don't worry his fellow Trumpets will reward him for his loyalty once Trump enacts project 2025. On day one of his second term.\n\nWhat goes around comes around. Remember they voted for people to do the same to them.\n\nhttps://preview.redd.it/ep0l64c90izd1.png?width=1080&format=png&auto=webp&s=2864a213a48fb81061a7992f87de39962fb5c0d1", 'created': '2024-11-07 16:31:48', 'submission_id': '1glkrhk'}
{'comment': "It's a lie. They think that's funny.", 'created': '2024-11-07 17:05:44', 'submission_id': '1glkrhk'}
{'comment': "Don't worry, the purge is coming.", 'created': '2024-11-07 17:15:57', 'submission_id': '1glkrhk'}
{'comment': 'Ernst rhom', 'created': '2024-11-07 17:41:56', 'submission_id': '1glkrhk'}
{'comment': "to answer your question, they're anti trans", 'created': '2024-11-07 18:18:50', 'submission_id': '1glkrhk'}
{'comment': "Don't be. There have always been log cabin republicans and self-loathing gay people. They acknowledge their queerness, sometimes, and consider their way of living should be how everyone should live their lives. They often lack self esteem and value cowardice and bullying. Many of them are in office and support draconian, anti-queer legislation. \n\nIt's rooted in the same authoritarian and control impulses of anyone MAGA. Freedom must be clipped, they say, because individuals don't know what is best for them and control of their own bodies.\n\nCoalitions are so important in politics. You're never going to get 100 percent of any group. It's a waste of time to try and convince people who have already make up their minds and that discard any information that runs counter to their belief system. The log cabin types are set in their ways. They don't care that they support people who want to take away rights and not expand freedom. It's not worth our time to try and convince them.", 'created': '2024-11-07 19:22:53', 'submission_id': '1glkrhk'}
{'comment': 'I’m quite sure it’s they who are confused! They should have subtext to explain their backstory on their flag, “We are just proud enough to wave the rainbow pride flag, yet feel most comfortable when we are bullied, devalued, mistreated, and marginalized.”\n\nOr….”We’re EXTRA diversified in that some of us KNOW we are voting against our better interests, and some of us haven’t figured that out yet, but ALL of us share a common unifying characteristic: We are all complete idiots!”\n\nOr,…the simplified subtext version should say, “We’re Gay & Lesbian (etc.) AND support Trump. Isn’t that QUEER?”\n\nThey must be a break away from the group that had everyone scratching their heads decades ago, the Log Cabin Republicans (gay republicans) who must have felt so unwelcome by their own political party that forming a separate branch was necessary so that they wouldn’t be accidentally taken for the “regular” assholes! They wanted to make sure that everyone knew they shared the same conservative viewpoints as any other self-respecting Republican and also believed government should stay out of our bedrooms, but yet wanted everyone to know exactly what kind of sex they were having in their bedrooms at the same time! Experiencing unresolved cognitive dissonance must be just a way of life for them.', 'created': '2024-11-07 22:35:04', 'submission_id': '1glkrhk'}
{'comment': 'So is your neighbor.', 'created': '2024-11-07 22:43:07', 'submission_id': '1glkrhk'}
{'comment': 'They want to be accepted so bad by a party that hates them so much.', 'created': '2024-11-07 22:48:13', 'submission_id': '1glkrhk'}
{'comment': "I have a hard time believing this neighbor is queer... as a gay woman with many friends, acquaintances, vaguely familiar persons, and coworkers in the LGBTQ community, I've never met a single LGBTQ person who supports Trump. In fact, my circle was extremely vocal about voting for Harris and several even spent the summer campaigning. Maybe it's bias of who I surround myself with, but I highly doubt it as I do know a disappointing number of persons who do support Trump (although I'm no longer friendly with any of them).", 'created': '2024-11-07 22:49:57', 'submission_id': '1glkrhk'}
{'comment': "Another self-loathing gay. After they re-criminalize sex and take away marriage equality, he'll still support Trump.", 'created': '2024-11-07 23:34:11', 'submission_id': '1glkrhk'}
{'comment': 'He’s probably scared or delusional. Sorry I’m trying to be positive but this whole- put prayer in the schools and at the same time take away free lunches from school children - when the Bible specifically says don’t pray in public and help the needy - has completely addled my brain. I want a Christian Nationalist to explain this to me. I quit expecting one to explain why they hate gay people while supposedly following the teachings of Jesus a long time ago. The free lunch program and praying in public thing- I’m going to need an answer to this!', 'created': '2024-11-08 18:12:38', 'submission_id': '1glkrhk'}
{'comment': 'You’re not the one that’s confused they are. If f…around and find out was a flag.', 'created': '2024-11-08 18:53:27', 'submission_id': '1glkrhk'}
{'comment': 'https://preview.redd.it/bph7rp66jjzd1.png?width=2668&format=png&auto=webp&s=e306b6647b35308e9588c388814b73e96c04ae91', 'created': '2024-11-07 21:38:50', 'submission_id': '1glkrhk'}
{'comment': "I'm guessing Bay Area?", 'created': '2024-11-07 08:34:46', 'submission_id': '1glkrhk'}
{'comment': 'I hope he gets forced into a conversion camp', 'created': '2024-11-07 15:40:14', 'submission_id': '1glkrhk'}
{'comment': "Lobsters for butter sauce. They always think they're safe to be destructive only to be shocked that hateful people are hateful!", 'created': '2024-11-07 19:38:24', 'submission_id': '1glkrhk'}
{'comment': "Hey💡 What happened to all of the gay men in Handmaid's Tale? Lesbians were forced to be handmaids. Were gay men forced to marry? \n🤔", 'created': '2024-11-07 18:28:13', 'submission_id': '1glkrhk'}
{'comment': "This is going to be my mantra for the next 4 years - possibly beyond. There's going to be a lot of leopards dining well.", 'created': '2024-11-07 23:53:13', 'submission_id': '1glkrhk'}
{'comment': 'Until the leopard eats they face.', 'created': '2024-11-07 17:12:42', 'submission_id': '1glkrhk'}
{'comment': 'Oh yay, gay summer camp! Sounds like fun!', 'created': '2024-11-07 09:29:02', 'submission_id': '1glkrhk'}
{'comment': 'MAGA is like a clown car. We need to stop being surprised when another clown pops out of the car.', 'created': '2024-11-07 14:39:15', 'submission_id': '1glkrhk'}
{'comment': 'The one with the bucket !', 'created': '2024-11-07 16:07:51', 'submission_id': '1glkrhk'}
{'comment': 'More like Chic-Fil-A', 'created': '2024-11-07 11:53:41', 'submission_id': '1glkrhk'}
{'comment': 'Roaches for Raid!', 'created': '2024-11-07 13:21:33', 'submission_id': '1glkrhk'}
{'comment': 'Slugs for salt!', 'created': '2024-11-07 13:25:27', 'submission_id': '1glkrhk'}
{'comment': 'I was in Munich last week. Visited the Dachau memorial. I walk through the gates where 200,000 people were sent in Nazi Germany. A gate which says, "Arbeit macht frei" ("Work makes [one] free).\n\nAnother fascist lie. One guy escaped within the first couple years, and they fixed it so there were no more escapes. Only 30,000 people walked out at the end. Several thousand of them died because of complications of malnutrition and disease. \n\nThe story of Dachau is even more gruesome. It was the first concentration camp, and they used it as the model to build all the rest and trained new concentration camp commanders there. And then they also built 140 satellite work concentration camps in the region around Dachau.\n\nPeople really need to understand. Flirting with fascism is not like playing with a match. It\'s like playing with a nuclear weapon.', 'created': '2024-11-07 11:55:58', 'submission_id': '1glkrhk'}
{'comment': 'And homosexuals were also sent to those camps.', 'created': '2024-11-07 16:38:29', 'submission_id': '1glkrhk'}
{'comment': 'Probably poor education. The education system is already bad enough. It’s going to get worse under Trump.', 'created': '2024-11-07 16:21:01', 'submission_id': '1glkrhk'}
{'comment': 'I would guess they focused more on money and economics as opposed to social issues, and thought that T would benefit them economically.', 'created': '2024-11-07 17:06:01', 'submission_id': '1glkrhk'}
{'comment': 'I’m sad for the other people who will be hurt. But I plan to laugh in the face of anyone who voted for him and is negatively affected.', 'created': '2024-11-07 12:32:31', 'submission_id': '1glkrhk'}
{'comment': 'Cool just for this person gay people in general should suffer', 'created': '2024-11-07 13:54:00', 'submission_id': '1glkrhk'}
{'comment': 'So damn true! I also won’t be affected because I have an out (marrying a foreign partner who will take me to his country). I also make good money and can move to a better state if needed in the short term. I agree there is a part of me down for watching it burn so all these stupid fucks get fucked bad with all this and I’m more than happy to remind them of it.', 'created': '2024-11-07 15:23:38', 'submission_id': '1glkrhk'}
{'comment': 'I’m really worried about gay marriage being banned. But hopefully the Supreme Court would just leave it to the states like they did abortion. Then I can move to a blue state', 'created': '2024-11-07 13:35:38', 'submission_id': '1glkrhk'}
{'comment': 'Thankfully I live in a blue urban area so not a lot of MAGAs around (this guy being an exception). But yeah, I can imagine it would confuse a lot of MAGAts if they saw it. \n\nI can’t imagine the mental gymnastics that this guy goes through to rationalize this. Thankfully I haven’t really talked to him since I moved in.', 'created': '2024-11-07 08:24:05', 'submission_id': '1glkrhk'}
{'comment': 'I as an asexual guy think this flag is a lie. Like the white people with Blacks for Trump shirts.', 'created': '2024-11-07 15:58:20', 'submission_id': '1glkrhk'}
{'comment': 'The world we live in right now ugh 😑', 'created': '2024-11-07 16:40:52', 'submission_id': '1glkrhk'}
{'comment': "Nah, I'm done being polite.", 'created': '2024-11-07 19:18:48', 'submission_id': '1glkrhk'}
{'comment': 'until they report you to the proud boys for being disloyal to trump.', 'created': '2024-11-07 17:18:00', 'submission_id': '1glkrhk'}
{'comment': 'Dave Rubin?', 'created': '2024-11-07 10:36:08', 'submission_id': '1glkrhk'}
{'comment': 'Except this probably won’t protect them. We’ve seen before that MAGA attack their own. And they’re advertising that they’re LGBTQ, which is something that MAGA *really* hates.', 'created': '2024-11-07 16:44:47', 'submission_id': '1glkrhk'}
{'comment': '🎯 I’ve struggled to find an American young person who will take a job raking leaves.', 'created': '2024-11-07 16:14:33', 'submission_id': '1glkrhk'}
{'comment': 'Well I thought it was funny', 'created': '2024-11-07 13:29:59', 'submission_id': '1glkrhk'}
{'comment': 'Sorry about your flag.', 'created': '2024-11-07 16:49:48', 'submission_id': '1glkrhk'}
{'comment': 'Not really. I don’t really see them much.', 'created': '2024-11-07 16:54:25', 'submission_id': '1glkrhk'}
{'comment': 'But I know gay people who voted for him. Interested to see what happens when they invalidate their marriage', 'created': '2024-11-07 16:34:25', 'submission_id': '1glkrhk'}
{'comment': 'Yea I think it’s sarcastic gloating', 'created': '2024-11-07 16:15:17', 'submission_id': '1glkrhk'}
{'comment': 'Nope. Cincinnati.', 'created': '2024-11-07 08:53:15', 'submission_id': '1glkrhk'}
{'comment': 'They were stoned to death.', 'created': '2024-11-07 19:18:22', 'submission_id': '1glkrhk'}
{'comment': 'They ended up on the wall', 'created': '2024-11-07 20:01:19', 'submission_id': '1glkrhk'}
{'comment': 'They were hanged', 'created': '2024-11-08 01:17:43', 'submission_id': '1glkrhk'}
{'comment': 'The Wall...', 'created': '2024-11-08 16:10:34', 'submission_id': '1glkrhk'}
{'comment': '\n\nThat what they did to them brutally of course.', 'created': '2024-11-08 18:54:59', 'submission_id': '1glkrhk'}
{'comment': 'Gives a whole new meaning to "Fire Island".', 'created': '2024-11-07 09:45:36', 'submission_id': '1glkrhk'}
{'comment': 'That was Boy Scouts in my dsy', 'created': '2024-11-07 17:13:08', 'submission_id': '1glkrhk'}
{'comment': "I'm really not anymore, but the clowns always seem to be surprised when a leopard eats their face as soon as they pop out of the car.", 'created': '2024-11-07 14:44:42', 'submission_id': '1glkrhk'}
{'comment': 'Ain’t that the truth', 'created': '2024-11-07 19:29:09', 'submission_id': '1glkrhk'}
{'comment': "The irony is that Chick Fil A's CEO donated a ton of his proceeds to anti-LGBTQ+ hate groups.", 'created': '2024-11-07 14:50:30', 'submission_id': '1glkrhk'}
{'comment': 'It only kills the bad roaches, I’m safe.', 'created': '2024-11-07 16:33:37', 'submission_id': '1glkrhk'}
{'comment': 'I’ve been to Dachau also. Mathausen was even worse. The Nazis were so horrific. \n\nThis is what happens when you provide mass deportations but you have nowhere to send the deportees to.\n\nI fear before this is over the US will have death camps.', 'created': '2024-11-07 12:17:36', 'submission_id': '1glkrhk'}
{'comment': "I'm reading Rise and Fall of the Third Reich, very slowly because its dense and long, but it lays out the blueprint and the parallels with now are disturbing to say the least. I recommend it to everyone who wonders how this happens.", 'created': '2024-11-07 15:13:58', 'submission_id': '1glkrhk'}
{'comment': "Thanks America... I'm racist, sexist and stupid", 'created': '2024-11-08 20:10:10', 'submission_id': '1glkrhk'}
{'comment': 'I’m pretty sure you’re right (and anecdotally reading an article on Gay Trump supporters this economic outlook was why one supporter was voting for Trump). How exactly they think this will be the case I’m unsure when his one economic solution is “tariffs” that the cost the consumer will wear, but for the price of safety they jeopardise their freedom. Make it make sense.', 'created': '2024-11-07 20:51:37', 'submission_id': '1glkrhk'}
{'comment': "Me too. I have gay married uncles (and they are prepared but it's still horrible).", 'created': '2024-11-07 13:13:32', 'submission_id': '1glkrhk'}
{'comment': 'We tried to educate them, we tried to warn them, trump showed them the man he really is, and blatantly told them what he plans to do, but they still didn’t want to believe it all, they voted for him. \n\nThey made their bed, now they have to lie in it. \n\nThey’re gonna regret their decision down the line, when trump completely disrupts the entire world.', 'created': '2024-11-07 15:27:37', 'submission_id': '1glkrhk'}
{'comment': 'Yep. There’s a few of them in our marginalized community, and I hope those are the ones that are taken to the camps first!!!', 'created': '2024-11-07 14:05:10', 'submission_id': '1glkrhk'}
{'comment': "Wouldn't count on that.", 'created': '2024-11-07 13:39:35', 'submission_id': '1glkrhk'}
{'comment': 'National Abortion ban coming soon.', 'created': '2024-11-07 13:47:09', 'submission_id': '1glkrhk'}
{'comment': 'After the *Dobbs* decision (where Clarence Thomas suggested SCOTUS might want to reconsider *Obergefell*) Biden signed the Respect for Marriage Act into law which codified some parts of *Obergefell* into law. So even if SCOTUS overturned the decision the existing marriages would have to be recognized *and* same-sex marriages from other states where it’s legal would also have to be recognized. The law also applies to interracial marriages so Thomas has a bit of a personal incentive not to find it unconstitutional. It’s not as persuasive as, say, a free RV, but it’s the best Congress could do.', 'created': '2024-11-07 14:21:05', 'submission_id': '1glkrhk'}
{'comment': 'My gay (ex?) friend and his husband moved to Florida during Covid and became total trumpers. They watch Fox News and when I tell them it’s propaganda, they say they know and don’t care. Funny enough, they wanted to adopt children, but have been turned down time and time again and they say it’s because they aren’t Christian and they’re gay. Well yeah and you voted for the party that took away those discrimination protections.', 'created': '2024-11-07 09:34:47', 'submission_id': '1glkrhk'}
{'comment': 'I’m being completely serious when I say that maybe this is a MAGA just trolling with it. It’s something they would do…', 'created': '2024-11-07 20:11:35', 'submission_id': '1glkrhk'}
{'comment': 'Right!? I\'ve had a job since I was 16 (15 probably). My Dad had to get 2 jobs when I was a kid from time to time and that was with my mom working a fulltime job. We lived in an upper middle class neighborhood. Had an in ground pool in the backyard. The interesting part is most of the laziest people I find are republicans. If you want the "American Dream", you have to be financially responsible. To this day my Mom drives a Kia forte...she lives on 17 acres of land and takes international vacations. She doesn\'t buy bullshit, so she can have and do other awesome things.', 'created': '2024-11-07 16:53:19', 'submission_id': '1glkrhk'}
{'comment': 'I don’t think so. They also have two large American flags hanging from their porch.', 'created': '2024-11-07 16:48:32', 'submission_id': '1glkrhk'}
{'comment': '☹️', 'created': '2024-11-07 23:56:37', 'submission_id': '1glkrhk'}
{'comment': "Speaking of which, the way things are going, MAGA might have their very own Boy Scouts soon...'Trump Youth' it could be called!", 'created': '2024-11-07 18:02:18', 'submission_id': '1glkrhk'}
{'comment': 'And this is why I have never and will never eat Chick-Fil-A. \n\nWhen I am upset when I see Gay friends eating, the reply is “but it’s so good!”', 'created': '2024-11-07 18:08:08', 'submission_id': '1glkrhk'}
{'comment': "That's precisely why I corrected it from KFC", 'created': '2024-11-07 18:56:24', 'submission_id': '1glkrhk'}
{'comment': 'Not really. He said he would, there were some token donations, but everything else points against having a substantial change of heart. There is a difference between agreeing that Lesbians and Gay folks deserve homes and 3 square meals a day and really being converted to the LGBTQ+ message that anyone you know and love can be experiencing the world, love, and gender in profoundly different ways than you are and they are right too.', 'created': '2024-11-07 15:08:55', 'submission_id': '1glkrhk'}
{'comment': "I think it's likely they won't follow through with all the deportations. It's a logistics nightmare.\n\nAfter a year or so, I think it's more likely they'll shift the blame to Mexico, and simply invade Mexico. MAGA would follow Trump into Mexico right now. \n\nPolitically, fascists can build a stronger nationalistic devotion when they use their military. It also feeds the military industrial complex.\n\nAlso note they could implement a compulsory draft for undesirables. Be a good way to get rid of people.\n\nTime to make North America Great Again!", 'created': '2024-11-07 12:22:38', 'submission_id': '1glkrhk'}
{'comment': 'I can not bring my self to go to somewhere like dachau, the holocaust museum in DC was quite enough', 'created': '2024-11-07 13:31:55', 'submission_id': '1glkrhk'}
{'comment': "Seriously. They're already planning the deportations. Start with the ones that are the least controversial and work their way up.", 'created': '2024-11-07 16:31:48', 'submission_id': '1glkrhk'}
{'comment': 'Strongmen: Mussolini to the Present\n by Ruth Ben-Ghiat is also very good. So easy to see Trump and Republicans using a lot of the strategies that dictators used before Trump', 'created': '2024-11-07 18:13:08', 'submission_id': '1glkrhk'}
{'comment': "It's terrifying", 'created': '2024-11-08 20:11:22', 'submission_id': '1glkrhk'}
{'comment': 'So you wouldn’t, for even your own self preservation. Say march or make any move to stop that? Movements in America have taken place outside of elections. Suffrage and civil rights are prime examples. It might be too soon and everyone is upset but this is not the way forward.', 'created': '2024-11-07 16:08:22', 'submission_id': '1glkrhk'}
{'comment': 'The Republicans tend to attract the dumb people, likes flies on manure.', 'created': '2024-11-07 09:40:39', 'submission_id': '1glkrhk'}
{'comment': "That's the sad and scary thing about this election. Majority of the people who voted orange boy in don't see they are hurting themselves and people close to them. It's like Jews turning in Jews to the Nazis.", 'created': '2024-11-07 12:29:56', 'submission_id': '1glkrhk'}
{'comment': 'Well I’ve met “Log Cabin Republicans” but never a MAGA gay person. This would be a new wrinkle.', 'created': '2024-11-07 16:51:10', 'submission_id': '1glkrhk'}
{'comment': 'Frowny emoji indeed', 'created': '2024-11-08 02:37:31', 'submission_id': '1glkrhk'}
{'comment': 'Bingo! I saw that documentary recently about German youth', 'created': '2024-11-07 18:19:09', 'submission_id': '1glkrhk'}
{'comment': "I mostly don't eat at Chick Fil A because I have heard from people that their food is greasy and I am trying to reduce my BMI as much as possible. \n\nBesides any major business regardless of what service they provide that makes a bunch of hullabaloo about donating their proceeds to keep alive views of bigotry ain't worth a lick of spit.", 'created': '2024-11-09 02:47:48', 'submission_id': '1glkrhk'}
{'comment': 'They’ll be getting 3 hots and a cot at picking camp. Not so lucky if farmed to Vlad to replace his battered army.', 'created': '2024-11-07 18:22:12', 'submission_id': '1glkrhk'}
{'comment': 'The best we can hope for is Trump’s continued lack of discipline and unwillingness to do anything that requires concentration. Oddly enough, that means hoping Trump doesn’t die of old age during his term.', 'created': '2024-11-07 12:58:52', 'submission_id': '1glkrhk'}
{'comment': 'Trump doesn’t concern himself with logistics so that’s not much of a deterrent.', 'created': '2024-11-07 14:16:22', 'submission_id': '1glkrhk'}
{'comment': "They've already started planning. They have their first deportations set to go on day one. It begins with the ones people aren't too upset over, but trust me, it will slowly eat its way up as people become more desensitized to the idea.", 'created': '2024-11-07 16:33:07', 'submission_id': '1glkrhk'}
{'comment': 'OMG imagine if Trump actually went into Mexico and MAGA followed him like the Pied Piper? We’d finished building that wall so fucking fast… 😹', 'created': '2024-11-08 04:53:17', 'submission_id': '1glkrhk'}
{'comment': 'I’m joining the post election mass call tonight by Indivisible. I’ve gone to the rallies, I’ve protested Trump many times, I stay involved as much as I can as a disabled gay woman. What are you doing? \n\nJoin the call with us. [Indivisible Post-Election Mass Call](https://www.mobilize.us/electionresponsecenter/event/734596/?utm_source=indivisible&utm_medium=web)', 'created': '2024-11-07 16:24:21', 'submission_id': '1glkrhk'}
{'comment': '>The best we can hope for is Trump’s continued lack of discipline and unwillingness to do anything that requires concentration. \n\nUnfortunately, money behind the party is ready for that. Hundreds of executive orders ready to go\n\nhttps://www.npr.org/2024/10/30/g-s1-30917/how-a-little-known-organization-is-poised-to-shape-a-second-trump-administration\n\nhttps://www.politico.com/news/2024/05/08/oil-industry-orders-trump-day-one-00156705\n\nhttps://www.cnn.com/2024/08/15/politics/russ-vought-project-2025-trump-secret-recording-invs/index.html\nThis is one of the architects of Project 2025, who formed a second organization to create executive orders out of it.\n\nSo for Mexico, all Trump would need would be a general that would "make it so." I would bet they have a good general to be the head of the joint Chiefs already picked out.', 'created': '2024-11-07 13:16:10', 'submission_id': '1glkrhk'}
{'comment': 'hes got a whole team of bad agents propping him up, he doesnt need to do anything other than distract and create fear while they get to work', 'created': '2024-11-07 15:43:42', 'submission_id': '1glkrhk'}
{'comment': 'Thank you for linking more resources. I’m gonna attend!', 'created': '2024-11-07 17:21:51', 'submission_id': '1glkrhk'}
{'comment': 'I think there’s the possibility that Trump would still sabotage. I think of Steve Bannon thinking he could get his policies in until Trump tossed him out. All we have to do is say that Project 2025 is running him and not him running Project 2025. Then he might disavow it. The more pressure Heritage Foundation puts on him, the more likely he is to sabotage 2025.\n\nETA: I also think there’s the possibility that Trump will be so focused on going after personal enemies that policies will take a backseat.\n\nETA: thank you for the award!', 'created': '2024-11-07 13:19:02', 'submission_id': '1glkrhk'}
{'comment': 'Someone with naziesque loyalty like he literally was wishing for?!', 'created': '2024-11-07 17:40:54', 'submission_id': '1glkrhk'}
{'comment': 'Fantastic! There’s over 1.5 million already registered.', 'created': '2024-11-07 18:07:10', 'submission_id': '1glkrhk'}
{'comment': ">All we have to do is say that Project 2025 is running him and not him running Project 2025.\n\nYou need to look at that article I gave you the link to. \n\nVought created a new organization name, Center for Renewing America. And that's the organization creating the executive orders and another communications necessary to implement Project 2025. \n\nSo sure, they are already one step ahead of you there. Trump can keep denying Project 2025.", 'created': '2024-11-07 13:42:27', 'submission_id': '1glkrhk'}
{'comment': "You're still counting of Trump being in charge. He won't be. Vance is going to 25th amendment him", 'created': '2024-11-07 16:49:19', 'submission_id': '1glkrhk'}
{'comment': "The thing is, he has dementia. It's not just a joke, he has significant clinical signs of dementia, and it's far worse now than in his first term. And now, his VP isn't Pence, who, horrible as he is, still did the right thing on January 6th. It's Vance, who *wrote the forward* to Project 2025. *That's* who Republicans *really* want in charge. But they knew he wouldn't beat Trump, so they had him join him. \n\nBefore, when Trump was their most useful puppet, Republicans all rushed to defend his sanity and stability. But now they have Vance ready to step up. He's younger, healthier, more intellectually capable, and apparently unburdened by scruples of any kind, and while Trump is, as you note, primarily driven by self-interest, Vance is genuinely dedicated to the Republicans' long-term plan. \n\nI suspect that within a month after the inauguration, we'll hear Republicans expressing their concerns about Trump's mental state, and calling for the 25th amendment to be invoked. And then it's full steam ahead.", 'created': '2024-11-07 16:40:01', 'submission_id': '1glkrhk'}
{'comment': 'I just got a text about it 20 minutes ago...', 'created': '2024-11-07 19:00:45', 'submission_id': '1glkrhk'}
{'comment': "the problem people have, us included, is that we always underestimate Trump and his narcissism.\n\nTrump got what he wanted from them, he is no longer interested in pushing their agenda forward unless it is going to make him money now.\n\nTrump has no loyalty to anyone but himself, not even his wife or kids. He is Scrooge McDuck on steroids.\n\nHeritage Foundation, Steve Bannon, Vought, any of these guys are fist pumping thinking they are about to change the world, don't realize the rattlesnake they have been scaring everyone with is about to turn around and bite them in the face.\n\nTrump wants absolute power and control so he can funnel money to himself and become the richest man in the world. That is all that drives him. He wants the praise, he wants the recognition, he wants people to worship him like they do Putin, Xi, and Un. \n\nHeritage cannot give him that and he will turn on them, just like he does everyone else. No one is going to take credit for his accomplishments but him.\n\nHe is going to do it his way, it is his theme song.", 'created': '2024-11-07 13:53:35', 'submission_id': '1glkrhk'}
{'comment': "He's a demented rubber stamp. That's all he ever was. He'll just sign whatever is put in front of him and march around announcing how hard he just worked. He doesn't care what the orders say", 'created': '2024-11-07 16:55:19', 'submission_id': '1glkrhk'}
{'comment': 'I don’t understand why you think the change in name changes anything?', 'created': '2024-11-07 14:59:17', 'submission_id': '1glkrhk'}
{'comment': 'Personally, I am betting on Trump’s narcissism. Trump is paranoid as all heck and if Vance steps an inch over the line, I wouldn’t be surprised if Trump calls for his followers to treat Vance like Pence.', 'created': '2024-11-07 17:24:42', 'submission_id': '1glkrhk'}
{'comment': 'If anyone tries to 25th amendment Trump, he will immediately take to the social platforms and call for violence from his followers. His followers are his followers, not Vance’s or anyone else’s. That’s how he managed to oust so many moderate Republicans. The extreme Republicans would be short sighted to think he wouldn’t do it to them. Trump has no loyalty to a party or policy except his own ego.', 'created': '2024-11-07 16:57:17', 'submission_id': '1glkrhk'}
{'comment': 'Awesome!!', 'created': '2024-11-07 19:10:02', 'submission_id': '1glkrhk'}
{'comment': ">the problem people have, us included, is that we always underestimate Trump and his narcissism.\n\nI don't underestimate that all. \n\nThese organizations are smart, because they're creating a menu of executive orders he can issue. \n\nSo in between golf matches and watching cable news, he can pick some, sign them, and issue them. To make himself look important. To create the illusion that he's working.\n\nAnd you are mistaken. At their core, narcissists like Trump have extremely fragile, insecure cores. So most of what they do goes into puffing that out. This is why they need adoration and flattery. Because it makes them feel less insecure.\n\nSo yes. Money and power do matter to Trump in that regard. But so does creating a facade of being presidential.", 'created': '2024-11-07 14:14:07', 'submission_id': '1glkrhk'}
{'comment': "Those guys are smart enough to massage Trump's ego and make him feel like he's the mastermind.", 'created': '2024-11-07 16:35:57', 'submission_id': '1glkrhk'}
{'comment': 'Elon better watch out as well.', 'created': '2024-11-08 09:04:02', 'submission_id': '1glkrhk'}
{'comment': "Exactly. Trump will be delighted that they have a menu of executive orders for him to choose from. That he can just sign, do a camera op, and look presidential. And then go back to playing golf, watching cable news, and posting on social media.\n\nHe's half extreme narcissist. Half lazy shit!", 'created': '2024-11-07 18:08:30', 'submission_id': '1glkrhk'}
{'comment': "Haven't you watched trumpism over the last 9 years? \n\nAnything that allows them to believe Trump is all it takes. So he'll say it's a different organization, and they'll say okay.", 'created': '2024-11-07 15:09:36', 'submission_id': '1glkrhk'}
{'comment': 'Sure. But as soon as journalists start talking about the organization, it will still be about who is in control. For instance, it didn’t matter one iota whether it was Priebus or Kelly as chief of staff. Trump will eschew his responsibilities and any influential person is likely to be among the first picked off.', 'created': '2024-11-07 15:12:52', 'submission_id': '1glkrhk'}
{'comment': ">But as soon as journalists start talking about the organization\n\nTalking to whom? \n\nThe people that voted for Trump aren't going to be listening to news organizations that push Project 2025, less Trump wants them to. \n\nAnd we have tens of millions of other people who just don't care, and didn't vote. \n\nI don't know why you think this matters The final presidential election's over. What Democrats think isn't going to really matter anymore.", 'created': '2024-11-07 18:20:26', 'submission_id': '1glkrhk'}
{'comment': 'Trump doesn’t care about what Dems think but he cares about looking like he’s not in control. Narcissistic people are insecure at their core. If Trump wasn’t insecure about control, he wouldn’t have fired Bannon or the many many others. Trump doesn’t care about whether the person seeing him is a Democrat, a child or even an immigrant. He’s always exposed for who he is and psychologically he needs to control that.', 'created': '2024-11-07 20:17:49', 'submission_id': '1glkrhk'}
{'comment': ">Trump doesn’t care about what Dems think but he cares about looking like he’s not in control.\n\nSo who is this mystery group he's going to look like he's not in control? Only Democrats are really going to hear about it.", 'created': '2024-11-07 20:36:38', 'submission_id': '1glkrhk'}
{'comment': 'Trump cares about every single article published about him. His whole adult life, he spends every morning going over all articles where he is mentioned. The man’s ego is more fragile than tissue paper. But clearly there’s no discussion here. Let’s end this conversation amicably. I care more about your future votes than a theoretical discussion where neither of us, as far as I know, can completely predict Trump’s actions.', 'created': '2024-11-07 20:42:59', 'submission_id': '1glkrhk'}
{'comment': "This is you imposing how important it is to you that Project 2025 be exposed. And so you're imagining it must be that important to Trump that people don't know about it.", 'created': '2024-11-07 20:48:03', 'submission_id': '1glkrhk'}
{'comment': 'As I said, let’s just disagree amicably.', 'created': '2024-11-07 21:17:45', 'submission_id': '1glkrhk'}
{'comment': 'Here’s my fear though (and please talk me off this cliff): Will we have a fair and free election in 4 years?', 'created': '2024-11-07 10:43:32', 'submission_id': '1gljz1k'}
{'comment': 'This is different. Americans showed their true colors. Jan 6th… and still he was their guy. We can’t trust our fellow Americans anymore. They used to have standards', 'created': '2024-11-07 07:34:35', 'submission_id': '1gljz1k'}
{'comment': 'I miss when America was a beacon of freedom and the place to be', 'created': '2024-11-07 12:09:03', 'submission_id': '1gljz1k'}
{'comment': 'I really wanna believe in the best and hope that Trump won’t actually be awful but it’s so hard to put aside the alt right lying, racism, Nazism, propaganda, treason, abuse out outright hypocrisy that they’re rooted in. It’s hard to put blind faith and HOPE they will do half decent for America when Americans willingly voted for a criminal. I really have even less hope now then 2016 because at least then he was still serving seeking a second term looking for reelection and did not control all the branches. Now, he’s even more rooted and in conspiracy and alt right-ism, plus he has the full power of all the branches, the courts, doesn’t have to appease anyone anymore, January 20th might be doomsday but If he can be semi rational and not lean into that alt right then it won’t, I hope Trump is just selfish more than anything.', 'created': '2024-11-07 10:12:34', 'submission_id': '1gljz1k'}
{'comment': 'He has the chance to do a very funny thing by resigning and making Kamala the first female president (for 2 months)', 'created': '2024-11-07 14:49:27', 'submission_id': '1gljz1k'}
{'comment': "This is a terrible situation. Disaster. But I'm now really counting on the fact that Trump is operational malfeasance and probably suffering from dementia.\n\nHe'll start with the deportations. Just like the border wall, there's a strong chance, they'll fuck up operationally and call it a win after a few hundred or so.", 'created': '2024-11-07 11:28:08', 'submission_id': '1gljz1k'}
{'comment': "Our focus is electing a Congress that can hold him accountable in two years. Between now and then our goal is to stay connected, to organize, to protest, to speak out. It's going to be a shitty next few years but so were the first few years after 2016 as well. People got hurt by Trump's early policies. They will again. We're still on a war footing though. We can make this a setback and not a loss by staying in the fight. We've struggled as a party to speak to working class people on a national level but that's not the same case with Congress where it is more of a local level. Our first goal is to get leadership back in the House and Senate.\n\nWe should be alarmed about Project 2025 but so far there's not enough seats in the GOP controlled Senate to enact broad change. There's a chance that the House will either be narrowly Democrat controlled or narrowly Republican controlled and again that will prevent broad change. They will try though. Make no mistake. We will be there every step of the way speaking out and protesting and doing whatever we can even when it feels utterly ineffective because the unity is whats matters.\n\nFuck these fascists.", 'created': '2024-11-07 18:01:42', 'submission_id': '1gljz1k'}
{'comment': 'Ole Uncle James always has good advice. \n\nhttps://youtu.be/nqCUIzN9Ya4?si=4my6EqJ7G4VMQYGG\n\nI gave me hope. Yeah it sucks but here’s a way forward', 'created': '2024-11-07 12:56:16', 'submission_id': '1gljz1k'}
{'comment': 'Tbh he will probably die in office. He is not in great health. Then we have Vance and the puppet masters to deal with.', 'created': '2024-11-07 14:53:01', 'submission_id': '1gljz1k'}
{'comment': "I think Biden should had made the decision he made in the beginning, not 2 or months before. There should had been a primary and let the people choose the person they wanted. A lot of democrats that spoke to me just plain blank said they didn't like she was forced at them. That's not my feelng is what I hear and been told. Coworkers, friends and regular people.", 'created': '2024-11-07 18:07:58', 'submission_id': '1gljz1k'}
{'comment': "What makes you think there's going to be an election in 4 years that a Democrat could win? \n\nIn the 2024 election, the Republican leadership was no longer engaging in democratic elections in good faith. They broke oaths to keep Trump eligible for the election. They used fascist propaganda and lies to make sure that he won. \n\nOf course they're going to fix it from here.", 'created': '2024-11-07 11:57:31', 'submission_id': '1gljz1k'}
{'comment': "It's just the cycle as usual.\n\n2028 likely Dems take it, 2026 could even go well with the House and possible Senate control.\n\nbut then 2032 Dems could squeak out a close win or go back to a GOP win, then rinse and repeat.", 'created': '2024-11-07 09:40:31', 'submission_id': '1gljz1k'}
{'comment': "That's assuming the fuckery doesn't include completely destroying the electoral process. I suspect they will begin there. \n\nThey have Congress, SCOTUS, and immunity.", 'created': '2024-11-07 15:39:18', 'submission_id': '1gljz1k'}
{'comment': '“If the country doesn’t fall apart” is doing A LOT of heavy lifting here.', 'created': '2024-11-07 18:25:28', 'submission_id': '1gljz1k'}
{'comment': 'This post really helped\xa0', 'created': '2024-11-07 16:40:44', 'submission_id': '1gljz1k'}
{'comment': 'The Supreme Court does not change every 4 to 8 years. We’re about to have 5 young-ish far right, crooked judges. I don’t think trump leaves the white house alive. I think he either runs again or just decides he’s president for life. But the biggest problem is how brainwashed these people are. Fox News, elon, whatever other far right news they’re hooked on, has them so terrified of socialism, communism, $4 gas and $3.50 eggs, immigrants, trans people that they happily elected a convicted felon, rapist, who tried to overthrown the election. Those people are not fucking coming back.', 'created': '2024-11-07 15:39:35', 'submission_id': '1gljz1k'}
{'comment': 'Sigh.. it does not seem like many in this thread have studied what happens when authoritarians win a second election with a mandate and immunity. \n\nI love your optimism and faith in the system. But please all prepare yourselves - do some reading on history and especially the histories of authoritarians and have contingency plans ready', 'created': '2024-11-07 18:17:47', 'submission_id': '1gljz1k'}
{'comment': "I'm already tired of the BS the world is ending attitudes from everyone. Seriously. Grow a pair. We need you for the coming fight.", 'created': '2024-11-07 08:13:50', 'submission_id': '1gljz1k'}
{'comment': 'This isn’t about whether or not Project 2025 is fully enacted. This is about the fact that 15 million Americans are motivated enough to vote against Trump, but only if their alternative is an old white man, that 72 million Americans openly embrace theocratic fascism, and that the rest of the voting population couldn’t give less of a fuck. \n\nThe American experiment died that night. Most Americans don’t care about freedom, the rule of law, the U.S. Constitution and its story, the American Dream, or democracy. Most Americans are apathetic and couldn’t care any less about what happens, and a respectable chunk of them are racists. \n\nThe Democrats will never win an election again. It doesn’t matter how good our candidates are and how bad the GOP’s are. It doesn’t matter that every Republican president over the past 50 years has left the U.S. economy worse off than when they first came into office. It doesn’t matter that the GOP has openly embraced theocracy. They won, despite reality, despite facts, despite the truth showing who they really are and what they really want.\n\nAmerica is dead.', 'created': '2024-11-07 15:27:49', 'submission_id': '1gljz1k'}
{'comment': 'This country is already falling apart. Be prepared for one party rule from here on out.', 'created': '2024-11-07 17:01:35', 'submission_id': '1gljz1k'}
{'comment': 'Yeah if we do have elections in the future democrats need to be more united in our efforts. And the leadership needs to decide who they’re pushing as a candidate now', 'created': '2024-11-07 15:16:54', 'submission_id': '1gljz1k'}
{'comment': 'All Dems need to start thinking grand bargain deals with big issues. Americans are willing to play ball with the team that moves forward. \n\n\nStart thinking like centrists. Learn from our leading Governors in “red” states & know the bench is deep and powerful for Dems.\n\n\nOur next opponent is JD Vance. 3-4 years to topple his views.', 'created': '2024-11-07 16:26:18', 'submission_id': '1gljz1k'}
{'comment': 'Trump is getting old, soon he will be as they say too old for this. People like you and then they just dont. He wont stay forever. Time will work against him.', 'created': '2024-11-07 18:02:06', 'submission_id': '1gljz1k'}
{'comment': 'Read Project 2025 and then get back to me on everything is going to be just fine. A new President won’t be able to fix a complete dismantling of our government agencies like dept of education, etc…we are fucked. And that is just a chapter of the 900+ page document. \n\nIt’s best if you just turn off the news once he takes office. You won’t be happy for 4 years if you don’t.', 'created': '2024-11-07 19:20:10', 'submission_id': '1gljz1k'}
{'comment': 'No this seems like cope. If half of P2025 is passed it is game over.\n\nThe electorate is trash, everyone swallow this pill right now', 'created': '2024-11-07 21:09:56', 'submission_id': '1gljz1k'}
{'comment': 'Mayor Pete 2028.', 'created': '2024-11-07 10:57:44', 'submission_id': '1gljz1k'}
{'comment': None, 'created': '2024-11-07 14:48:15', 'submission_id': '1gljz1k'}
{'comment': 'A reminder to run for a second term? Even though you said you wouldn’t, preventing a normal convention and selection of a new candidate to represent your constituents through the democratic process.', 'created': '2024-11-07 16:19:52', 'submission_id': '1gljz1k'}
{'comment': "Thankfully, it is mostly handled by the individual states.\xa0 Not that we feel much trust for the red states, but they've been fair and free so far despite being red.\xa0 Trump will try and test our institutions and constitution, but let's hope they're strong enough that he can't single-handedly break them.", 'created': '2024-11-07 12:14:03', 'submission_id': '1gljz1k'}
{'comment': 'Yes. Trump will be terrible, but having elections every 4 years is not going to change. Don’t be concerned about whether we have one, be concerned more about whether the Democratic Party can get back its base and if it has a spine to fight back.', 'created': '2024-11-07 15:57:17', 'submission_id': '1gljz1k'}
{'comment': 'No. Not now.', 'created': '2024-11-07 21:07:43', 'submission_id': '1gljz1k'}
{'comment': "It's never been fair or free, never. That's an ideal, as long as even one person is opressed liberty will be a dream never a reality.\xa0", 'created': '2024-11-07 14:54:40', 'submission_id': '1gljz1k'}
{'comment': 'I get that, and it will always be a stain on this country that I will always have to remember. But we have to also keep in mind that many Americans were just too self righteous or lazy (which is pretty bad) and not just mindless hateful drones. And a large portion still went for Kamala, millions. It may be very low, but it was still a big number. I do though think her campaigning wasn’t the best for the more young white males who she needed to win over, but the next dem president I’m sure can fix this, america will have a dem female president one day, and this country will damn witness it', 'created': '2024-11-07 07:38:41', 'submission_id': '1gljz1k'}
{'comment': "Yep, I no longer care about other Americans, their welfare, or the long term future of this country. I hate the people that voted for Trump, and to a lesser extent, the people who couldn't bother to save our democracy or our environment.", 'created': '2024-11-07 15:11:23', 'submission_id': '1gljz1k'}
{'comment': 'The next Dem potus will have to be more iron fist with their power, to check what’s about to go down.', 'created': '2024-11-07 16:28:26', 'submission_id': '1gljz1k'}
{'comment': 'Making Trump have to ditch all of his created #47 stuff as he would be #48. \n\nThe ultimate Dark Brandon move - I like it.', 'created': '2024-11-07 15:01:41', 'submission_id': '1gljz1k'}
{'comment': 'Haitians here on temporary visas will be sent back…to utter hell.', 'created': '2024-11-07 15:34:53', 'submission_id': '1gljz1k'}
{'comment': "According to the Actuarial table, a 78 year old man has a 78% chance of making it to 82. So I wouldn't count on it. Hopefully, he declines so much that he can't tell friend from foe anymore, and his administration becomes weak enough to be checked by Congress and/or the states.\n\nhttps://www.ssa.gov/oact/STATS/table4c6.html", 'created': '2024-11-07 15:43:08', 'submission_id': '1gljz1k'}
{'comment': '15 million registered democrats did not bother to vote. This isn’t Joe Biden fault. This is a trend that has taken place since 2004 elections.', 'created': '2024-11-07 20:06:01', 'submission_id': '1gljz1k'}
{'comment': 'i thought this too. i also refuse to side idly by at this point, we need to understand how to fuck with their system. he will never have a coalition of the most intellectual people, we know that. that is precisely what we need to rely on. homo sapiens killed off the neanderthals who were physically stronger and bigger - how? intelligence and the ability to strategize.\n\nedit to add: every moment he fucks up, EVERY slip up, every verbal gaffe, EVERYTHING needs to be put on full blast on every platform that exists. if we go underground with different apps and social media options, so be it. we will come back. this is the beginning of the end, i really think we are still in a position to be able to stop this. if not, i hope we can break off into 2 countries and let their religious theocracy stay within the confines of the south. enough is enough.', 'created': '2024-11-07 17:51:22', 'submission_id': '1gljz1k'}
{'comment': 'I hope you’re right and that we don’t go full out project 2025.', 'created': '2024-11-07 12:32:45', 'submission_id': '1gljz1k'}
{'comment': 'Yepp, 2030 feels to me like a dem year so hopefully', 'created': '2024-11-07 09:43:48', 'submission_id': '1gljz1k'}
{'comment': 'Nah that’s not happening. The dems are screwed.', 'created': '2024-11-07 12:57:46', 'submission_id': '1gljz1k'}
{'comment': 'I hope I did, incase this is sarcasm', 'created': '2024-11-07 19:44:57', 'submission_id': '1gljz1k'}
{'comment': '>The Supreme Court does not change every 4 to 8 years.\n\nThat can be rectified through several methods both legislative and executive if the dems have power and the will to use them.', 'created': '2024-11-07 17:20:34', 'submission_id': '1gljz1k'}
{'comment': None, 'created': '2024-11-07 09:23:01', 'submission_id': '1gljz1k'}
{'comment': 'It’s his younger prototypes we have to work against', 'created': '2024-11-07 19:46:32', 'submission_id': '1gljz1k'}
{'comment': 'Yeah right, like Americans who wouldn’t vote for a brown woman will vote for a gay man.', 'created': '2024-11-07 15:35:36', 'submission_id': '1gljz1k'}
{'comment': '>\xa0preventing a normal convention\n\nI don\'t believe a normal convention (I assume you mean primary because there was a normal convention) would help at all. Primaries are mostly about someone getting their policy out there. The problem here is that policy very clearly didn\'t matter, because Kamala\'s policy was almost infinitely better than Trump\'s and yet people didn\'t care one bit, even though she talked about it constantly. Virtually every speech she made hammered the economic platform. \n\nNewsom or whoever coming in after winning a "normal" primary and saying "I want to address cost of living by going after price gougers and building housing" (which would have been the Dem platform anyway) might have gotten more votes due to the lack of misogyny/racism, but 15 million more votes? I\'m dubious. \n\nThe only benefit of a normal primary would be more time to get the message out. But the message doesn\'t matter if nobody cares to listen, and that\'s what happened with Kamala so I\'m not confident a normal primary would help.', 'created': '2024-11-07 17:21:26', 'submission_id': '1gljz1k'}
{'comment': 'You are missing the part where it doesn’t matter what the states do if the Federal government decides not to honor it.\n\nWe are in a very real quandary, where a party that hates democracy and has shown disdain for the Constitution will have control and ver all three branches of the government. The constitution is little more than a contract that the government entered into in 1788. What happens when all three branches just decide not to honor the contract, who is realistically going to stop them?', 'created': '2024-11-07 13:31:23', 'submission_id': '1gljz1k'}
{'comment': "The guy who tried to overturn the last election is now in charge again, madder than ever, surrounded by loyalists, and has nothing to lose.\n\nThat he's going to fuck with our elections is a foregone conclusion.", 'created': '2024-11-07 17:20:31', 'submission_id': '1gljz1k'}
{'comment': "I mean nothing in life is ever fair, but at least on the world stage the United States was seen as a democracy. I'm reading the news in Europe and they're also very concerned so I think this is something to consider, since the concern is more widespread and not just a Reddit bubble.", 'created': '2024-11-07 18:30:17', 'submission_id': '1gljz1k'}
{'comment': 'I hope you’re right. Been trying to find some sort of peace and comfort, but this sucks lol. Watched Jimmy Kimmel earlier almost made me shed a tear how he talked about the effects of Trump winning.', 'created': '2024-11-07 07:49:51', 'submission_id': '1gljz1k'}
{'comment': 'I’ll upvote you for the hopium', 'created': '2024-11-07 07:51:57', 'submission_id': '1gljz1k'}
{'comment': "Unfortunately, there will be hits we're gonna have to take on the chin. Hard hits. But the Haitian community had revitalized Springfield, OH. That community will suffer as a result if their temp status is revoked.\n\nAnd Springfield will learn the hard way. That's the best to learn frankly.", 'created': '2024-11-07 15:38:22', 'submission_id': '1gljz1k'}
{'comment': 'Im serious❤️', 'created': '2024-11-08 06:46:17', 'submission_id': '1gljz1k'}
{'comment': 'Thank you for being brave enough to stand up and fight.', 'created': '2024-11-07 10:50:24', 'submission_id': '1gljz1k'}
{'comment': 'Yeah I’m gay and absolutely not. If they nominate him I might scream. I’m sorry to say we need a straight white man. I’m thinking Andy Beshear or Jeff Johnson. I’d want to say Gavin Newsom but I think being from California would be a weight on his neck.', 'created': '2024-11-07 16:19:13', 'submission_id': '1gljz1k'}
{'comment': 'You may be right. \nI believe Democrats have held incumbent political power long enough to be branded as the party of power and establishment, so Trump’s anti-establishment message worked. \nI guess my thinking was that the primary process would allow Democratic voters the ability to vote for the change candidate they have been longing for.', 'created': '2024-11-07 18:13:12', 'submission_id': '1gljz1k'}
{'comment': "Well, that's possible.\xa0 Some reasons to be hopeful though:\xa0\xa0\n1. Congress passed the\xa0Electoral Count Reform and Presidential Transition Improvement Act of 2022 to seal up some of the holes from Trump's first coup attempt, such as the VPs role being ceremonial but other vulnerabilities as well.\xa0 Notably, it had a good number of Republicans vote in favor.\xa0 \xa0\n2. Trump wants to stay in office forever.\xa0 Republicans in Congress likely want something different, such as eventually become President themselves or maintaining the status quo.\xa0 States also want to hang onto their power/independence.\n3. Likely that Trump won't seize total power before 2028 when he's forced to depart, and 2026 will see elections that hopefully add Democrats to congress.\xa0\xa0\n4. Reddit likes to paint some things as the end of the world, such as SCOTUS immunity ruling.\xa0 It was not absolute immunity, nor are they likely to grant Trump anything and everything that he wants.\xa0 Like Congress, SCOTUS like the power that they hold and don't want to surrender it, plus some might even actually respect the constitution.\xa0 Again, contrary to Reddit's message, there might be a larger world out there with different views.\xa0\n5. Trump and his cronies are kind of idiots.\xa0 There's a big difference between Trump and Hitler there.\xa0 Also, although racism lives, many people in the Nazi regime were encountering new ideas for the first time that the modern world has had some time to contemplate.", 'created': '2024-11-07 14:42:37', 'submission_id': '1gljz1k'}
{'comment': "I'm not disagreeing, we will have to wait and see how bad it gets.", 'created': '2024-11-07 23:43:12', 'submission_id': '1gljz1k'}
{'comment': 'Yeah it’s terrible, but hey atleast we know that it’s possible for him to lose after fresh breathe of air that Biden gave us', 'created': '2024-11-07 07:51:05', 'submission_id': '1gljz1k'}
{'comment': 'Thanks', 'created': '2024-11-07 07:59:20', 'submission_id': '1gljz1k'}
{'comment': 'Business owners who employ hard-working immigrants always try telling people. Who won’t listen.', 'created': '2024-11-07 15:54:12', 'submission_id': '1gljz1k'}
{'comment': 'Then no problem! As Biden said “setbacks are unavoidable, but giving up is unforgivable”', 'created': '2024-11-08 07:11:58', 'submission_id': '1gljz1k'}
{'comment': 'Anything that Congress is capable of passing, Congress is also capable of repealing.\n\nI trust no prior legislation when a party that doesn’t give two shits about the law is in complete power.', 'created': '2024-11-07 14:53:44', 'submission_id': '1gljz1k'}
{'comment': ">Trump and his cronies are kind of idiots.\xa0 There's a big difference between Trump and Hitler there.\xa0\xa0\n\nNazis were idiots as well. Idiots can do very horrible things when given the opportunity. \n\nThere is some reason to be optimistic though. American gun culture is unprecedented in history. The magas will have trouble enforcing their will on the electorate the way the Nazis did; Nazis were able to disarm their populace, but there's just too many guns here in the US, and the idea of an armed populace is too intrinsic to American identity to make it easy. A slice of their own base will reject any attempt to disarm Americans.\n\nDems need to arm up. Not because a bunch of people with AR15s will be able to challenge a tyrannical federal government in open conflict (tank > AR15, drone with hellfire missiles > AR15), but because it's a lot harder to suppress a peaceful protest when every other protestor is packing weaponry.", 'created': '2024-11-07 17:05:42', 'submission_id': '1gljz1k'}
{'comment': "Has there been anything since 2016 that didn't get as bad as you thought? I was prepared for the worst, but then it got so much worse. I don't think we even know all the ways yet in which MAGA will fuck us over.", 'created': '2024-11-07 23:47:42', 'submission_id': '1gljz1k'}
{'comment': 'Do you think Biden should have kept his word about serving one term and letting the democrats host a primary vote ? I wonder if that would have helped', 'created': '2024-11-07 07:53:27', 'submission_id': '1gljz1k'}
{'comment': 'To add, all it takes a Conservative think tank to bring a suit that gets rushed up the system to the SCOTUS for any fair voting laws to be completely erased.\n\nI fear people are not truly grasping how bad the situation we are in really is. It may already be too late to fix anything for the better.', 'created': '2024-11-07 15:36:26', 'submission_id': '1gljz1k'}
{'comment': "More guns is one of the few ways in which we can make the current situation even worse. Let's not get more guns.", 'created': '2024-11-07 18:27:02', 'submission_id': '1gljz1k'}
{'comment': 'Prob would have, I don’t think Kamala’s campaigning was that great', 'created': '2024-11-07 08:01:01', 'submission_id': '1gljz1k'}
{'comment': 'Every single lever of power will be controlled by those who do not have the best interests of the people at heart', 'created': '2024-11-07 16:02:22', 'submission_id': '1gljz1k'}
{'comment': 'Really? How will it make the situation even worse, in your view? The only possible way I can imagine is if it results in gun clashes between riot cops and protestors, which they then use as a justification for crackdown/martial law. But I don\'t think this is worth worrying about because the right will gladly false flag anyway to get their reason to crackdown since we know they already did it with the Floyd protests. Peaceful protestors got teargassed at their own church for a photo op, people walking down the street in Portland got scooped up by unmarked feds in black vans for maybe being at the protest earlier in the day, Trump already said he wants police to shoot protestors "in the leg" the first time around, and this time there\'ll be a lot less people willing to say "no." We can\'t assume good faith or adherence to the constitution from the Trump DoJ anymore. \n\nMeanwhile, the victims being armed means that it will take a lot more energy and personal risk to disappear them in the night. The enemy is going to be more cautious and less brazen, and thus move more slowly... If we\'re armed. When we need to keep them moving as slow as possible in hopes that we can retake a legislative majority over whatever fuckery they attempt in 2026 before they can fully dispense with the polite fiction of the legislative process to even begin to salvage it, this is important. The race here is between whether the baddies can dismantle rule of law fast enough or whether we can retake the legislative branch to try and reimpose checks and balances. The people they\'re trying to repress being armed helps buy us time by dint of making the baddies work more slowly and cautiously.\n\nRemember, fascists thrive on normalizing insane things and getting people to look away. A brownshirt tactical team breaking into a dissident\'s house and having a firefight that wakes your whole neighborhood is a lot harder to normalize than a pair of them knocking on your door and leading your unarmed ass away in handcuffs.\n\nThe game has changed, we\'re in early stage fascist takeover territory now. In a normal democracy, guns have no real political purpose, I agree. But we aren\'t in a normal democracy anymore. There\'s a reason why dictators always try to disarm their people first, and the reason I\'m somewhat optimistic now is how alien the idea of disarmament is to the American culture. \n\nI hate how insane it is that I even need to think about this. I want to think that guns should just be a fun hobby, I shouldn\'t have to rely on their presence to dissuade a tyrannical fascist government. But here we are. The last easy exit on this awful highway was two days ago and we missed it. \n\nBut hey, maybe I\'m wrong. What\'s your solution?', 'created': '2024-11-07 19:47:54', 'submission_id': '1gljz1k'}
{'comment': 'Her campaign was pretty good given how short a time she had. However, Tim Miller from Bulwark said it was good for 2008. And in hindsight, I agree.', 'created': '2024-11-07 11:19:30', 'submission_id': '1gljz1k'}
{'comment': "I didn't read the whole thing but FYI the government and especially the military Trump wants to deploy against his protesters have more guns available than you and your friends can fit into your homes. There won't be a shootout between a cop with a gun and you with your gun. They'll just send a drone.", 'created': '2024-11-07 20:22:49', 'submission_id': '1gljz1k'}
{'comment': "I literally addressed that exact example the first time. Drone > AR15. No way will a rifle of any sort be useful in open battle against a tyrannical federal government. The goal isn't to actually win a shootout with a military, that's impossible. \n\nThe goal is instead to make it harder to normalize shit and thus make them move more slowly and cautiously on the hope that we can win back the legislature in two years to try and stop the bleeding over whatever cheating they put into place, gambling on the Great Trump Depression to drive Americans back to us. \n\nYour neighbor's house getting blown up with a hellfire from a drone is a hell of a lot harder for the public to shrug off than them quietly disappearing in the middle of the night. The whole purpose of arming ourselves isn't to win a battle, it's to deter the enemy and make them move more slowly.\n\nAgain, what's your alternative strategy here? I'd love to hear an alternative that doesn't require us to buy expensive firearms to protect our civil liberties.", 'created': '2024-11-07 20:30:45', 'submission_id': '1gljz1k'}
{'comment': "I'm still wrapping my mind around it but just because I can't present another alternative doesn't mean that I can't criticize yours. If I said we all need to show up at the White House every day and piss against the fence, you would also laugh and tell me that this won't stop them, and you wouldn't have to present a better plan either because my pissing plan is just stupid. Same with yours. No more guns.", 'created': '2024-11-07 20:36:08', 'submission_id': '1gljz1k'}
{'comment': "Actually, pissing against the fence every day does feel like it could be a good idea if enough people do it as a protest. It's utterly harmless so they'll have to really reach to teargas you over it, would draw attention for how novel it is, and make the Trump regime seem like a joke, which is an excellent way to help defang fascists. This isn't a bad strategy. Especially if you're livestreaming it. \n\nIdeally it'd involve emptying bottles of piss or something that can't get you picked up for indecent exposure though. I think it needs more refinement, but the core idea seems workable.", 'created': '2024-11-07 20:51:14', 'submission_id': '1gljz1k'}
{'comment': 'That’s not feasible for those of us who have to worry about survival', 'created': '2024-11-07 11:56:04', 'submission_id': '1glk477'}
{'comment': 'This is cringe. Just run a populist, progressive candidate', 'created': '2024-11-07 12:27:35', 'submission_id': '1glk477'}
{'comment': 'I suggest a general strike.', 'created': '2024-11-07 08:18:53', 'submission_id': '1glk477'}
{'comment': 'Agreed.', 'created': '2024-11-07 14:01:07', 'submission_id': '1glk477'}
{'comment': 'SPD tried that, and look how that turned out for them. We need to be pragmatic right now.', 'created': '2024-11-07 14:00:39', 'submission_id': '1glk477'}
{'comment': 'Hey man, you did your part you voted and really that’s what matters, I don’t know what we can do at this point, our country will never be the same and that’s terrifying', 'created': '2024-11-07 07:10:05', 'submission_id': '1gljgh3'}
{'comment': "At this point there's really nothing to be done, except vote on mid terms or whenever they take place in Louisiana, to vote out Republican, senators and house members.", 'created': '2024-11-07 17:41:12', 'submission_id': '1gljgh3'}
{'comment': 'Help get those of us in the line fire out of the country', 'created': '2024-11-07 11:56:32', 'submission_id': '1gljgh3'}
{'comment': 'Dems: What can we do to *help* those we *love*\n\nRepubs: What can we do to *hurt* those we **hate**', 'created': '2024-11-07 12:48:47', 'submission_id': '1glj4sj'}
{'comment': 'Hate is a powerful motivator, and Americans *love* to hate. Might be what we do best.', 'created': '2024-11-07 06:30:37', 'submission_id': '1glj4sj'}
{'comment': "That moment was so bad that even Russian state media was commenting that it made him look completely unhinged, but apparently a majority of Americans still didn't mind. Even with the greater travesty of JD Vance admitting they blatantly made it up.", 'created': '2024-11-07 06:42:01', 'submission_id': '1glj4sj'}
{'comment': '“If you can’t dazzle them with brilliance, baffle them with bullshit.” — W.C. Fields', 'created': '2024-11-07 08:54:09', 'submission_id': '1glj4sj'}
{'comment': 'Fear, hate, and stupidity won.', 'created': '2024-11-07 10:50:23', 'submission_id': '1glj4sj'}
{'comment': "True but in actuality trump got fewer votes than last time. Democrats simply didn't show up. I can't wrap my head around that", 'created': '2024-11-07 13:52:08', 'submission_id': '1glj4sj'}
{'comment': "Metaphorically, Trump's election is like the 9/11 terrorist attacks.\n\nThe first plane, at first glance, could've been an accident, some sort of mistake, but something is very wrong.\n\nThen the second plane comes, and we all realize what is going on.\n\nAmerica is under a domestic terrorist attack.\n\n \nCassie looks down on you in shame.\n\nhttps://preview.redd.it/si5r2vqi3fzd1.jpeg?width=495&format=pjpg&auto=webp&s=7905d38e9ab31aae5584fd9144c01b9fe8eb5d40", 'created': '2024-11-07 06:44:02', 'submission_id': '1glj4sj'}
{'comment': 'I’m with the pod save America guys: **inflation**\n\n*Back up evidence*: conservative incumbent parties and liberal incumbents parties have been getting beat all over the globe.', 'created': '2024-11-07 16:38:34', 'submission_id': '1glj4sj'}
{'comment': "When things go south under the Trump administration using Project 2025 and those that voted for him are personally affected, they will STILL believe they made the right choice. Trump? He'll blame Democrats for the morass of chaos he and the Republicans created and getting our democracy back on track won't happen. We are at the end of this chapter and the page is going to turn...", 'created': '2024-11-07 18:44:56', 'submission_id': '1glj4sj'}
{'comment': "Harris's effective messages were drowned out by the less effective messages.", 'created': '2024-11-07 06:46:34', 'submission_id': '1glj4sj'}
{'comment': 'Thats not why we lost on Tuesday. We lost because democrats didn’t show up to vote. So a more accurate statement would be “Let me help you buy your first house” proved to be ineffective to get democrats to vote.\n\nThe 16 million democrats who stayed home were not excited by Harris or her campaign promises. There were hopes that the woman vote would save Harris or registered GOP voters would save Harris. But neither of those bets paid off.\n\nIn hindsight, democrats should’ve have a primary. A primary would have selected the candidate with the best chance to win on Tuesday. We know from 4 years ago, Harris did not win in the primary process, but we scrambled to replace Biden too late in the election cycle.\n\nBiden and DNC leadership that didn’t want a primary cost us the election. \n\nEverything I just said seems so obvious now in the context of the election results.\n\nThe DNC needs a massive shake up. I hear the DNC values seniority over new ideas. It’s why Hilary was anointed despite the broad popularity of Bernie (And we’re supposed to be the party that wants to save democracy?). That kind of shit needs to end if we hope to be competitive to the American voters. \n\nI’m sad that we’re getting 4 more years of Trump with a fully republican controlled federal government. And I’m sad we’re getting 30 years of a conservative scotus.\n\nBut, the main take away from a 2024 post mortem has to be: the DNC (and Biden) did not allow a process of selecting the best candidate. As a result 16 million democrats didn’t show up on Tuesday.', 'created': '2024-11-07 17:16:05', 'submission_id': '1glj4sj'}
{'comment': "People don't want to pay taxes and have someone else benefit from their money. I hear that all the time. Student loan forgiveness is very unpopular with the MAGAs too.", 'created': '2024-11-07 14:22:33', 'submission_id': '1glj4sj'}
{'comment': 'Anyone know anything about the next Omnibus not passing on December 20th? I just read a disturbing post on FB about it.', 'created': '2024-11-07 14:51:28', 'submission_id': '1glj4sj'}
{'comment': 'It’s because the cats and dogs message come out of a rich white man’s mouth and the first house message came out of a black woman’s mouth', 'created': '2024-11-07 22:32:46', 'submission_id': '1glj4sj'}
{'comment': 'Apparently fear is a much better motivator than hope. That really sucks. I wonder how the Dems could use that to their advantage next time but in a better way', 'created': '2024-11-07 14:30:55', 'submission_id': '1glj4sj'}
{'comment': 'One message came from a man and one came from a woman. For the average American it is that simple.', 'created': '2024-11-07 14:03:45', 'submission_id': '1glj4sj'}
{'comment': 'This is an issue with the older generations that own a lot of investment properties or have put their entire lives into their homes, these people go through great lengths to maintain property values and do not want their homes to devalue at all. I bet they pearl clutched at the idea of people building cheap homes to drive down the market. This was a bad thing to run on I think.\n\nBoomers need their real estate, it’s all they may have left. They don’t care if younger generations will never own homes.', 'created': '2024-11-07 06:40:36', 'submission_id': '1glj4sj'}
{'comment': "These memes highlight the irony behind the messaging, but I think it isn't what happened. I think most people had no idea he said that because in their political bubble, they were exposed to clips of Kamala stumbling over her words, claiming she couldn't communicate. They never heard about the home loans. \n\nMost people are too busy watching Netflix or playing games to peek behind the curtain to see what the other side sees.\n\nThere is widespread ignorance and technology is just making it worse every year.", 'created': '2024-11-08 00:19:47', 'submission_id': '1glj4sj'}
{'comment': 'Trump started campaigning right after the midterms. Dems should have had an open primary. Okay let’s look towards the 2026 elections.', 'created': '2024-11-08 18:32:38', 'submission_id': '1glj4sj'}
{'comment': 'And yet, I hear the ones who voted for him repeat over and over “I’m doing this for my kids, they can’t afford a house, they can’t move out, I’m worried about their future.” I’m so tired of trying to figure these people out.', 'created': '2024-11-10 16:38:27', 'submission_id': '1glj4sj'}
{'comment': 'If we deport all the people who labor on our farms, we may have no choice but to eat the cats and dogs.', 'created': '2024-11-07 16:25:38', 'submission_id': '1glj4sj'}
{'comment': 'PA companies are already telling workers they won’t get bonuses due to the tariffs they have coming over the next year they must prepare for. So goodbye, working class.', 'created': '2024-11-07 16:56:45', 'submission_id': '1glj4sj'}
{'comment': 'Everyone is going to suffer in one way or another until he dies. He has full power to change his length in office and abolish the 22nd Amendment.', 'created': '2024-11-07 17:00:55', 'submission_id': '1glj4sj'}
{'comment': 'Fear is a great motivator. But it\'s an ugly "tool" to use in an election. It\'s all the Republicans have. Even though we lost, I\'m glad our candidates didn\'t stoop to that level.\n\nWhen the MAGAts realize all of this is going to affect them too and they are not immune like they thought they were, it\'ll be a pleasure watching their faces when it finally dawns on them. I\'ve already seen it happen to someone I know personally even though Trump has yet to take office.', 'created': '2024-11-07 17:24:08', 'submission_id': '1glj4sj'}
{'comment': 'So many Americans are morons', 'created': '2024-11-07 17:31:19', 'submission_id': '1glj4sj'}
{'comment': "What can we do about so much hatred, disrespect, and disinformation? It feels there's no point in trying to counter it with hope, love and truth anymore.", 'created': '2024-11-07 17:17:02', 'submission_id': '1glj4sj'}
{'comment': "Has the Youtube algorithms taught you nothing. Fear makes a profit hope doesn't.", 'created': '2024-11-07 17:42:11', 'submission_id': '1glj4sj'}
{'comment': "It's sad but that's where we're at in America right now with the state of education and brainwashing due to propaganda on various social media websites", 'created': '2024-11-07 19:48:20', 'submission_id': '1glj4sj'}
{'comment': 'Biden Harris fucked up bigly. The 2024 bi partisan border bill should have been introduced just after the first 100 days of their administration in 2021. Then they could’ve taken the oxygen out of the subject matter and prevented Republicans from using that as a issue in 2024', 'created': '2024-11-07 21:33:58', 'submission_id': '1glj4sj'}
{'comment': 'We overestimated the effectiveness of hope and underestimated the effectiveness of fear.', 'created': '2024-11-07 22:14:54', 'submission_id': '1glj4sj'}
{'comment': 'Goddddddddddd', 'created': '2024-11-08 06:43:27', 'submission_id': '1glj4sj'}
{'comment': 'No, deeply held racist views will always reign supreme above all else', 'created': '2024-11-08 15:47:24', 'submission_id': '1glj4sj'}
{'comment': '[removed]', 'created': '2024-11-07 13:45:11', 'submission_id': '1glj4sj'}
{'comment': 'and they hate america.', 'created': '2024-11-07 17:10:25', 'submission_id': '1glj4sj'}
{'comment': 'They don’t want to be better off, they just want people worse off to remain where they are so they have people to look down on.', 'created': '2024-11-07 17:51:33', 'submission_id': '1glj4sj'}
{'comment': 'Hate and war is what Americans are best at. Accept it. The comical thing is that you want to also be seen as the savior of all mankind.', 'created': '2024-11-07 14:57:06', 'submission_id': '1glj4sj'}
{'comment': '[removed]', 'created': '2024-11-07 13:46:34', 'submission_id': '1glj4sj'}
{'comment': 'To be accurate, democrats also want to help those who we don’t love. So long as they need help.', 'created': '2024-11-07 16:18:36', 'submission_id': '1glj4sj'}
{'comment': '100%', 'created': '2024-11-07 14:53:28', 'submission_id': '1glj4sj'}
{'comment': "Same message, Republicans are still helping those they love, themselves. Only difference is Democrats would have helped their enemies too.\n\nAlso the Democrats love many more than themselves. I'm not saying otherwise", 'created': '2024-11-08 22:23:46', 'submission_id': '1glj4sj'}
{'comment': 'Republicans. You accidentally wrote Americans.', 'created': '2024-11-07 06:55:50', 'submission_id': '1glj4sj'}
{'comment': "It's so true. Women, native Americans, black people, immigrants of all kinds going back to Irish and Italians when they first came here and now hisoanic and muslims, gay people, trans people, poor people. Hate is definitely part of the culture", 'created': '2024-11-07 07:13:54', 'submission_id': '1glj4sj'}
{'comment': '[removed]', 'created': '2024-11-07 09:15:30', 'submission_id': '1glj4sj'}
{'comment': 'True that', 'created': '2024-11-07 14:52:47', 'submission_id': '1glj4sj'}
{'comment': 'I believe in the strength of our party to push through this. Other countries have had a trump like leader, and they were able to build back their democratic republics.', 'created': '2024-11-07 18:48:16', 'submission_id': '1glj4sj'}
{'comment': 'And a podium mic blowjob', 'created': '2024-11-07 08:30:42', 'submission_id': '1glj4sj'}
{'comment': 'Everything you said is absolutely correct. Yes, we should have had a primary process to pick our candidate. Yes Biden should’ve stepped down sooner to allow that to happen. I can understand a lot of people not being happy with not being able to choose their candidate.\n\nBut, you know what? Even if I was upset about how this all played out, the alternative of not showing up and allowing Trump to take office again was unthinkable! If 15 million Democrats weren’t able to bite their tongue and swallow their pride and just go vote for her so that we could preserve our democracy and our freedom, and prevent fascism from taking over, then, maybe we deserve to have fascism.', 'created': '2024-11-07 22:39:55', 'submission_id': '1glj4sj'}
{'comment': "Now they're going to be paying for Trumps billionaire tax cuts, his tarrifs on imported goods, they'll pay more taxes, the economy will tank, USA will loose allies, Russia will win the Ukraine war, the Dayton Agreement which is one of the US Foreign Policy's greatest achievments is worth a little less than used toilet paper, LGBTQ will loose rights, Women will loose rights (and die), USA might become a dictatorship and the list keeps going on.", 'created': '2024-11-07 16:07:45', 'submission_id': '1glj4sj'}
{'comment': 'Because they didn’t go to college', 'created': '2024-11-08 15:49:45', 'submission_id': '1glj4sj'}
{'comment': 'yep, Rs are party of screaming about problems (imaginary or not), Ds are party of calm working on problems. We need to yell louder about the good we do.', 'created': '2024-11-07 15:04:49', 'submission_id': '1glj4sj'}
{'comment': "They just had a news segment that noted the average home buyer age is now 38, up from what use to be some where in the late 20's range. \n\nAnother issue is corporate owned housing properties rather than small businesses doing the heavy lifting.", 'created': '2024-11-07 08:32:36', 'submission_id': '1glj4sj'}
{'comment': 'The Trump supporters complained, “Isn’t that just on foreign goods?”', 'created': '2024-11-07 16:57:51', 'submission_id': '1glj4sj'}
{'comment': 'All the companies have to do is raise the prices on the goods. 😉', 'created': '2024-11-07 17:29:22', 'submission_id': '1glj4sj'}
{'comment': 'No one was eating pets in Springfield stfu.', 'created': '2024-11-07 13:53:40', 'submission_id': '1glj4sj'}
{'comment': 'How about the 15 million plus Democrats who didn’t bother to show up and vote because they “hate” Kamala?\n\n\nI ask sincerely, as a once registered Republican that switched parties to vote Democrat from now on in hopes of staving off fascism. \n\nBut 15 million lazy hateful fucks let it walk right into 1600 Pennsylvania like he owns the fuckin place.', 'created': '2024-11-07 06:56:46', 'submission_id': '1glj4sj'}
{'comment': "No, I think they were right. \n\nLook at us. We love to hate Trump. Is it deserved? FUCK YES. But we love to hate on him. \n\nI think hate is a very strong motivator anymore. It sucks but ignoring it isn't going to fix anything.", 'created': '2024-11-07 07:01:25', 'submission_id': '1glj4sj'}
{'comment': 'Exactly. Thank you for correcting', 'created': '2024-11-07 16:28:03', 'submission_id': '1glj4sj'}
{'comment': 'This is all true. But we also have to accept that they associated crime, smash and grab and shootings with inner city blacks, that they associate illegal border crossings with democrats and our sanctuary cities, that they associate not being mainstream sexually and sometimes radically with democrats and they aren\'t wrong, and they associate homelessness and drugs also with democrats, and "free stuff" any social assistance with democrats. They pinned all that on democrats, so what\'s to like? Throw college educated into that mix too, which the majority of the population does not have a bachelor degree, so "elitism". If we fairly see all that from their POV, where they associate all that with costing the economy locally to federally, then they become against many of those who seek public assistance. They ran a lot of ads stating that Kamala was for giving prisoners free sex change operations, and showed an ad with a black guy supposedly in a prison (actor) putting on mascara as they said this. All of that was very effective when an ordinary person says but I go to work everyday, groceries and gas cost too much, my rent is far too high, and I can\'t afford my car payment, and I am none of those things. MAGA very effectively targeted minorities and those that can\'t vote because there was little to no risk to alienate them. There\'s ordinary mainstream, and then democrats to them are "everything else". Kamala falls into the elitism category, so does Trump, but CA is out of reach financially for a huge majority of midwesterners, they could never buy a house in CA. A Californian, seen as detached from their everyday financial difficulties, seen as another Pelosi, seen as a black and an Indian and obviously a woman. They like the image of trump with the machismo look and the "drain the swamp" lie. Having trump sell bibles they then go for the majority of the nation that aligns with christianity more than any other (or none) religion. It was a complete character assisination on democrats, and it was very effective.\n\nDemocrats have an image problem.', 'created': '2024-11-07 15:36:35', 'submission_id': '1glj4sj'}
{'comment': "Republicans didn't door knock or phone bank. Dems did.\n\nSorry but ground game means nothing anymore.", 'created': '2024-11-07 13:22:05', 'submission_id': '1glj4sj'}
{'comment': "I can only hope that the changes made per Project 2025 are reversible and the damage done isn't permanent. The mindset behind it is for control and once that sets in the challenge to get those who embrace it will be beyond reach. Don't forget the default is to not take responsibility but to blame and it's been going on for decades. What has to happen is the demographic that was most influenced by Trump's lies needs to change but from what I see, that isn't going to happen no matter what he does or how bad it gets....", 'created': '2024-11-07 19:33:14', 'submission_id': '1glj4sj'}
{'comment': 'I agree. Democrats ran a terrible campaign, allowing the fascists to win.\n\nWe are in the minority of Americans that put persevering democracy and freedom first. It is not a priority for the majority of Americans. And so that won’t allow us to win elections. We need to change our message and platform so it resonates with voters. It can’t be about saving democracy.\n\nIf our platform wasn’t “let’s save America from fascists” we might have been able to win and we would have saved America from fascists. lol.', 'created': '2024-11-07 23:47:50', 'submission_id': '1glj4sj'}
{'comment': "Maybe combine the two. Calmly work on the problems and loudly announce how they're fixing them", 'created': '2024-11-07 15:05:40', 'submission_id': '1glj4sj'}
{'comment': "Sadly, that's the next stage.", 'created': '2024-11-07 17:38:35', 'submission_id': '1glj4sj'}
{'comment': '[removed]', 'created': '2024-11-07 14:18:55', 'submission_id': '1glj4sj'}
{'comment': 'That stupid smirk of ego that gets displayed on his ugly orange mug of his makes my blood boil', 'created': '2024-11-07 08:29:38', 'submission_id': '1glj4sj'}
{'comment': "If people are stupid enough to **majoritarily vote for a fascist felon**, then unfortunately they are stupid enough to ignore the threat and sit on their ass because they don't like Kamala's vibes. Idiocracy is bringing hell on Earth", 'created': '2024-11-07 12:05:42', 'submission_id': '1glj4sj'}
{'comment': 'People sit out elections for all sorts of reasons. Bigotry is one I’m certain a sizable number of people who voted for Biden didn’t vote for Harris because she’s black or a woman or both. \n\nPeople also aren’t happy with the way the country is right now and a lot of time, they think voting out the current party is the way to go, as nonsensical as it may be. Lots of people vote with their emotions not their reason.', 'created': '2024-11-07 07:12:00', 'submission_id': '1glj4sj'}
{'comment': 'The more I think about it, the more I come to this conclusion: Rs spent the last 4 years screaming about problems (made up or ones they caused) while Ds calmly just worked at fixing them. We need to start screaming about all the shit Rs mess up. Ds just look at us and say "well it\'s going OK" and stop showing up.', 'created': '2024-11-07 14:54:24', 'submission_id': '1glj4sj'}
{'comment': "I don't even know if they all hate her. I think dumb is a better word than hate in those regards. They all had different dumb reasons. But your choice of lazy works well too.", 'created': '2024-11-07 07:11:46', 'submission_id': '1glj4sj'}
{'comment': 'Exactly right. I did the same - was a Republican for 38 years and switched parties in 2016. I cannot believe that 15 million Democrats thought it was ok to not show up, because a woman was running. It’s unbelievable.', 'created': '2024-11-07 16:02:49', 'submission_id': '1glj4sj'}
{'comment': 'For what it’s worth, it’s currently at only 13 MILLION os so. Still far too many.', 'created': '2024-11-08 01:05:24', 'submission_id': '1glj4sj'}
{'comment': 'As long as we have so many Dems that don’t give a shit about voting or Democracy we are never going to win. I can’t even count the people that told me they were not voting or didn’t even know we had a Woman running for POTUS! WTF!!!', 'created': '2024-11-08 17:02:53', 'submission_id': '1glj4sj'}
{'comment': "I wouldn't say I love to hate him. He's utter trash, but I don't love it. I would prefer him just to not be around.", 'created': '2024-11-07 08:28:50', 'submission_id': '1glj4sj'}
{'comment': 'No. No I don’t. I want to never see that idiots face in the news again.', 'created': '2024-11-07 13:37:20', 'submission_id': '1glj4sj'}
{'comment': 'One of “Trump’s last rallies he showed his maga cult a huge blown up picture of a Hispanic man and said this is your enemy, this brown skinned man, an immigrant is who and where you need to aim your hate.” If your life sucks now it’s this man’s fault. The crowd erupted! We are doomed America. Immigrants are so endangered. And the crowds continued to cheer. Sigh…', 'created': '2024-11-08 00:56:58', 'submission_id': '1glj4sj'}
{'comment': 'Should have realized that two elections ago.', 'created': '2024-11-07 15:49:00', 'submission_id': '1glj4sj'}
{'comment': 'And guess what people just voted for Donald Trump because they didn’t want high prices and guess what they’re gonna get even higher.\n\nAnother thing, it seems like we lost a lot of the Latino vote because they didn’t like the economy either. I guess they didn’t think that being deported meant them but they better keep their eyes open. \n\nI have lost all hope in a majority of the people of this country. They are such cowards they are going to vote based on their wallet instead of our freedoms. It is truly sickening.', 'created': '2024-11-07 17:46:41', 'submission_id': '1glj4sj'}
{'comment': 'Yeah it was a white American woman', 'created': '2024-11-07 14:24:29', 'submission_id': '1glj4sj'}
{'comment': 'Me too - so my advice to you is to not look at it! Seriously, just avoid it whenever you can and stay in your safe zone. Watching Trump every day is going to make you ill for real, so look at the news only if you have to.', 'created': '2024-11-07 16:05:07', 'submission_id': '1glj4sj'}
{'comment': 'I refuse to look at him. Period.', 'created': '2024-11-08 17:26:31', 'submission_id': '1glj4sj'}
{'comment': "Doesn't make them any less guilty and it should lie on their conscience, and I hope they do when trump comes for them.", 'created': '2024-11-07 11:54:49', 'submission_id': '1glj4sj'}
{'comment': 'Inflation down to 2.4%, stock market at all time highs, gas not expensive considering historical norms and the value of the dollar, unemployment closing in on 3%. What exactly aren’t people happy about with this country right now?', 'created': '2024-11-08 04:00:09', 'submission_id': '1glj4sj'}
{'comment': 'I just wanted to move on from him. I wanted to not have to think about him at all.', 'created': '2024-11-07 09:02:31', 'submission_id': '1glj4sj'}
{'comment': "It will be interesting to see just how much people's lives don't improve by mass deportations. Illegals generally live 10 or more to a household, pick veggies and fruits, clean hotels, do prep work in the back of restaurants, do construction work, are up on people's roofs or building houses in 100 degree heat, you get the picture. Does trump really think that young white men and women are going to start picking veggies and fruits in CA and FL?", 'created': '2024-11-08 05:39:27', 'submission_id': '1glj4sj'}
{'comment': 'The majority of people who voted for Dump Truck are disgruntled and have miserable lives, and they just wanted others to share in that misery. What they don’t understand is how miserable things can get for the working class and people below the poverty level, which will be anyone from the middle class down. One of the biggest things that Dump Truck was saying is that he was going to allow insurance companies to start denying people with pre-existing health problems. Which means everyone. that’s something that I fear the most for everyone because a lot of people depend on that to survive so we’re gonna see a lot of people needlessly die.', 'created': '2024-11-07 18:16:03', 'submission_id': '1glj4sj'}
{'comment': 'Definitely the plan! 💪🏻 stay strong', 'created': '2024-11-07 16:12:41', 'submission_id': '1glj4sj'}
{'comment': "Sounds like my wife. We record most of what we watch and I have to have the skip button ready anytime he's on. Now she says no news. I watch it alone.", 'created': '2024-11-12 05:46:37', 'submission_id': '1glj4sj'}
{'comment': 'Most of us did.', 'created': '2024-11-07 09:03:10', 'submission_id': '1glj4sj'}
{'comment': 'You too, my friend. 💕', 'created': '2024-11-07 16:15:49', 'submission_id': '1glj4sj'}
{'comment': 'It works for me. This election has made me so very sad and any image of t brings it all back.', 'created': '2024-11-12 05:56:49', 'submission_id': '1glj4sj'}
{'comment': 'Yeah something seems fishy, I’m not saying that this election was rigged, but we’ve gotta figure it out', 'created': '2024-11-07 07:15:29', 'submission_id': '1glhtv0'}
{'comment': "Nobody watched the debate, nobody bothered to inform themselves and listened to friends and family who heard rumors. It's a big failed game of telephone.", 'created': '2024-11-07 06:24:52', 'submission_id': '1glhtv0'}
{'comment': 'Kamala ran a campaign that embraced the status quo where the status quo was bringing unprecedented struggle to the American people. All she had were tax credits. That’s not change. That’s nothing to be energized about. \n\nTrump brought a message of change. People are so hungry for change that they will vote for Trump to get it. Trump’s campaign from a technical standpoint performed just like Obama in 2008. \n\nDemocrats need to run a progressive, populist candidate if they ever want a hope at winning again.', 'created': '2024-11-07 12:33:41', 'submission_id': '1glhtv0'}
{'comment': 'I think I was banking on the Anti-Trump votes more than pro-Kamala votes. Guess they just didn’t want to bother either way.', 'created': '2024-11-07 13:34:26', 'submission_id': '1glhtv0'}
{'comment': 'He did say he had a “little secret”', 'created': '2024-11-07 13:57:56', 'submission_id': '1glhtv0'}
{'comment': 'This. This. This. A lot of Americans do not stay informed on politics. They listen to sound bites, podcasts and random word of mouth. The dems also need to meet ppl where they are but who knows when they’ll even get the chance again.', 'created': '2024-11-07 08:09:04', 'submission_id': '1glhtv0'}
{'comment': 'Fuck anyone that voted for him.', 'created': '2024-11-07 14:15:23', 'submission_id': '1gliklk'}
{'comment': 'I doubt ACLU will be successful. At this rate, the only thing that will stop Donald Trump is the hand of death. And given that his mother lived to be 88 and his father lived to be 93, that won’t be anytime soon.', 'created': '2024-11-07 08:44:51', 'submission_id': '1gliklk'}
{'comment': 'How? By lawsuits!? Jesus, get with the times, Trump owns the courts. Trump stored sensitive security documents in his bathroom and the justice system could not do anything about it.', 'created': '2024-11-07 14:33:26', 'submission_id': '1gliklk'}
{'comment': 'Trump is an Authoritarian . Now backed by the powerful Heritage Foundation. Democracy in America is dead.', 'created': '2024-11-07 15:11:24', 'submission_id': '1gliklk'}
{'comment': "Let's go. We may have lost but sure as hell we didn't toss the white flag. We are gonna defend democracy, women and the LGBTQ, I'm a friend and a ally I'm a 23 year old father to a 3 year old daughter and a husband to a wonderful wife. We will do what we can today to protect tomorrow. Let's be ready to flip the house and the Senate in 2026 and flip the white house 2028", 'created': '2024-11-07 14:01:53', 'submission_id': '1gliklk'}
{'comment': "You have a gross misunderstanding. He owns the DOJ and the SCOTUS. Lawyers don't mean shit. File a lawsuit, he'll just send the gestapo.\n\n\nAmericans no longer have rights or a constitution. He vowed to destroy it, remember? Morons!", 'created': '2024-11-07 12:38:18', 'submission_id': '1gliklk'}
{'comment': 'Start now....', 'created': '2024-11-07 06:25:10', 'submission_id': '1gliklk'}
{'comment': 'Cool, so he’ll just end the ACLU on top of everything else.', 'created': '2024-11-07 08:06:37', 'submission_id': '1gliklk'}
{'comment': 'Take action now. The story of the vote counts not adding up is getting suppressed without any official investigation. We had to deal with the 2000 Mules bullshit for years. Give us a second to investigate the cheating in Philly that Trump warned us about!', 'created': '2024-11-07 14:12:21', 'submission_id': '1gliklk'}
{'comment': 'I predict that Trump will declare the ACLU a terrorist organization and have them dismantled.', 'created': '2024-11-07 15:44:03', 'submission_id': '1gliklk'}
{'comment': 'Good luck ACLU. You will absolutely need it.', 'created': '2024-11-07 16:28:44', 'submission_id': '1gliklk'}
{'comment': 'Trump is going to declare them a terrorist organization and have its members locked up.\n\nRemember? Once he is in office HE CAN DO ANYTHING, as long as he declares it an official act.', 'created': '2024-11-07 16:36:24', 'submission_id': '1gliklk'}
{'comment': 'Don\'t forget that despite Donald Dump\'s ego, the President is not the sole seat of power... sure, he got back to the oval office thanks to the oligarchy, but I\'m pretty sure he\'ll get "JFK\'d" if he starts fucking around with the military industrial complex. That doesn\'t help us citizens, but no one has been on our side for decdes...', 'created': '2024-11-07 17:26:56', 'submission_id': '1gliklk'}
{'comment': 'The ACLU will not exist by this time next year', 'created': '2024-11-07 17:31:14', 'submission_id': '1gliklk'}
{'comment': 'Good fucking luck! America is toast. The courts are not going to stop him or his agenda.', 'created': '2024-11-07 18:10:14', 'submission_id': '1gliklk'}
{'comment': 'Any other organizations to monthly donate, like FFRF?', 'created': '2024-11-07 17:44:41', 'submission_id': '1gliklk'}
{'comment': 'John Roberts: "And we\'re ready to say \'lol no\' on everything you do."', 'created': '2024-11-07 17:51:07', 'submission_id': '1gliklk'}
{'comment': '', 'created': '2024-11-07 12:51:16', 'submission_id': '1gliklk'}
{'comment': 'Yes, even if dementia immediately sets in with a vengeance, he will be a useful figurehead sitting in the Oval Office with his phone and computer unplugged as his minions go about implementing their agenda. Just like happened with old Fred but on a grand scale.', 'created': '2024-11-07 09:15:00', 'submission_id': '1gliklk'}
{'comment': 'ACLU is a strong organization that does a lot of good things in the name of human rights. Say what you will but they get my money.', 'created': '2024-11-07 16:43:14', 'submission_id': '1gliklk'}
{'comment': "This may be true but they have to try and hope the court isn't totally corrupt. If they have any love for democracy they'll do the right things.", 'created': '2024-11-07 13:27:01', 'submission_id': '1gliklk'}
{'comment': 'Lawyers do mean shit. Look at how many lawsuits for voting rights we won in the past year alone. Comments like yours are defeatist and destructive.', 'created': '2024-11-07 16:44:34', 'submission_id': '1gliklk'}
{'comment': 'let\'s hope that all parties get the "grassy knoll" they deserve', 'created': '2024-11-07 20:17:25', 'submission_id': '1gliklk'}
{'comment': 'I know the ACLU does. I just no longer trust this country’s system or culture.', 'created': '2024-11-07 16:45:16', 'submission_id': '1gliklk'}
{'comment': 'There’s a really important point she made in 2020 after Biden’s win: Republicans run a really strong digital campaign while Democrats are still campaigning like it’s 2005. 2005 was almost 20 years ago.', 'created': '2024-11-07 08:31:19', 'submission_id': '1glipvt'}
{'comment': 'You can’t win a fact based election iwhen the Fourth Estate—journalism, news outlets—have all but ceded their public responsibilities for sugar-high clicks and eyeballs.', 'created': '2024-11-07 13:14:14', 'submission_id': '1glipvt'}
{'comment': "Trump's tariffs will make most people poorer, and yet people voted for them because they were better off four years ago. Vibes and perception are more important than facts in elections.", 'created': '2024-11-07 15:32:09', 'submission_id': '1glipvt'}
{'comment': "I *want* AOC to be president, but after last night I'm not sure a woman can win", 'created': '2024-11-07 06:38:50', 'submission_id': '1glipvt'}
{'comment': 'ill watch tomorrow. shifting to counter culture mode with red wine', 'created': '2024-11-07 06:32:53', 'submission_id': '1glipvt'}
{'comment': 'Why are people still acting like the house is still up in the air. Stephanie ruhl show at 11 pm for example. Maybe it’s not official but it is over for practical purposes. GOP gained seats.', 'created': '2024-11-07 06:57:23', 'submission_id': '1glipvt'}
{'comment': "She makes a great point in her introspection of the progressive movement. I couldn't agree more that it's become unproductive and unable to see the difference between allies and opponents. As she said, there isn't one sole reason this happened so it'd be just as unproductive to throw the blame on them, but at a certain point the movement becomes more aligned with the other side of it is committed to stagnation on small differences. It's definitely time for establishment Dems to extend the olive branch and reconnect the party by building support for working class populism in the midterms. Embrace populism in everything, meaning from the platform to throwing elite celebrities out of our campaigns. The 2028 ticket absolutely needs to have a progressive on it, Walz didn't do it for anyone and obviously Kamala had her issues. Can't afford to ignore the progressives anymore with such a fractured base in just about every group.", 'created': '2024-11-07 08:11:00', 'submission_id': '1glipvt'}
{'comment': 'We lost the modern “airwaves” without a fight. There is no counter information campaign. Dems have learned nothing about messaging since “Obama care.” I remember when republicans were pushing to bring back coal jobs, while also fighting to make sure that black lung was not covered by Obama care. Did democrats do anything with that? Nope. \n\nFacebook is the modern AM radio and dems do nothing.', 'created': '2024-11-07 15:51:54', 'submission_id': '1glipvt'}
{'comment': 'She can grow all she wants , America is never going to change , the election has proven that . \nMost Americans do not care about most Americans,unless you have money. Good luck enjoying project 25 , say goodbye to the environment, but hey those corporations keep getting those tax breaks. \n\nCongratulations America you play yourselves.', 'created': '2024-11-07 07:36:47', 'submission_id': '1glipvt'}
{'comment': "hate and fear sells, even if imaginary. Peace and stability doesn't. People didn't show because they got comfortable. Not sure how you fire people up to vote for sanity. Maybe you need to scream more about what will happen?\n\nWell at least the next 2 years of insanity should fire them back up.", 'created': '2024-11-07 16:39:55', 'submission_id': '1glipvt'}
{'comment': 'The other guy was selling shoes between court cases. Like I’ve just accepted this country just doesn’t want to elect Democrats.', 'created': '2024-11-07 15:46:29', 'submission_id': '1glipvt'}
{'comment': 'Until someone in the party can figure out a way to counter and dismantle the Republican media machine once and for all, we’re going to face an uphill battle that gets steeper every 4 years. \n\nHow progressive the candidate is, or the level of our social media presence, is nearly irrelevant until this is done.', 'created': '2024-11-07 15:34:56', 'submission_id': '1glipvt'}
{'comment': 'Thanks for sharing! 🫶✌️', 'created': '2024-11-07 06:23:39', 'submission_id': '1glipvt'}
{'comment': "Why are you all acting like we're even going to have a 2028 election? \n\nHas literally everybody forgotten about how SCOTUS gave Trump presidential immunity, and the nasty shit in Project 2025?", 'created': '2024-11-07 14:31:25', 'submission_id': '1glipvt'}
{'comment': 'Fuck, no more taking chances on who America is ready to elect president. VP who cares go nuts.', 'created': '2024-11-07 11:42:59', 'submission_id': '1glipvt'}
{'comment': "contrary so some comments here, not catering enough to progressives (i'm assuming the far left) was not the reason why harris lost. omg. pushing more progressive culture war is one of the few reasons more turned out for republicans lol.\n\ni looked at the battleground vote counts in 2020 and compared to 2024. GA, NC and WI had gains for both parties. so no issues there. MI, dems lost about 90k votes from 2020. republicans gained about 145k. so that tells me there were likely swing voters that flipped from blue to red; and, there's still a surplus for republicans that i would designate to new voters that became eligible after 2020. it does not tell me that dems lost MI because the far left sat out over center lefts not doing more for them.\n\nPA did show some of that. about 130k votes lost for dems from 2020. 86k gained for republicans. so that tells me the difference, the leftover lost democrat votes, are likely people who sat out or something. however, harris would have still lost PA had she got that difference. AZ and NV don't matter at this point.\n\nso republicans had better turnout, but also flipped the swing voters they lost in 2020. that's not ignoring the far left, and they lashed out in spite by not voting. it's harris and the campaign deciding on the wrong message to end the campaign. it was wrong to finish strong with abortion and democracy. people voted for the economy and border, blamed the incumbent that includes harris with the caveat of stymying some of the culture war push.", 'created': '2024-11-07 13:01:28', 'submission_id': '1glipvt'}
{'comment': "Democrats need to start constantly attacking and criticizing JD Vance as soon as they tale office as he'll most likely be the opponent.", 'created': '2024-11-08 02:28:38', 'submission_id': '1glipvt'}
{'comment': 'I adore this woman so much. I’m really happy she updates us through live streams', 'created': '2024-11-07 19:22:40', 'submission_id': '1glipvt'}
{'comment': 'For fuck sakes. Do not start the AOC for president shit right now. Get it through your thick heads. A female president whether white or POC will ever be president in our lifetimes. Only way is if both parties nominate a female and we know that ain’t gonna happen. AOC in her capacity is fantastic though.', 'created': '2024-11-07 18:04:47', 'submission_id': '1glipvt'}
{'comment': "Cool, let me know when it's on youtube", 'created': '2024-11-07 06:33:04', 'submission_id': '1glipvt'}
{'comment': 'Thank you so much for posting this.', 'created': '2024-11-07 18:21:21', 'submission_id': '1glipvt'}
{'comment': '"We need to build more communities" vs "The enemy within"', 'created': '2024-11-08 03:19:59', 'submission_id': '1glipvt'}
{'comment': 'The next presidential nominate for the Democratic Party has to be someone who is Latino. Right now, I’m thinking it’s Ruben Gallegos of Arizona. However, we’re not going to win in 2028. We have lost so much support from the Latino community and we’re not getting that back sooner than a generation from now.', 'created': '2024-11-12 02:43:07', 'submission_id': '1glipvt'}
{'comment': "I hope the national environment will eventually get to a point where an AOC, Buttigieg, or whatnot can run and do well, but I'm not sure when/if that'll ever happen. If they can tap into the suburbs and have strong economic messaging, then theoretically, anyone has a bit of a shot.\n\nHowever, there might be a backlash against LGBTQI+ acceptance from certain key demographics given what happened on Tuesday, it might take a very strong leader (Obama, Clinton, FDR levels) to be able to mix progressive social policies with strong messaging on economics, the border, housing, and whatnot.\n\nThere has to be empathy in terms of understanding certain cultures and what's most important to them, and then figuring out how to balance the differing viewpoints into a concise and consistent message that unifies more than divides. Social policies, for example, are not uniform at all across cultures. Some cultures might be progressive, but there are many that are socially conservative. It is much more likely to be successful campaigning on economic issues because economic issues are generally easier to agree on than social issues.\n\nBoth Dems and Repubs have an empathy problem, but in different ways. Repubs on a macro level largely either don't care about social progress, or at worst want it to go backwards. However, they are better able to connect with economic minded voters and border voters due to how many of these folks not caring much about social issues. The Repubs have good-enough micro level understanding of these issues, which is partially why they dominate in the suburbs and with certain minority groups.\n\nDems on the other hand heavily struggle with micro level empathy and issue understanding. They (and me and many, many folks here) struggle heavily with understanding that many cultures and folks don't care much about social issues, especially when grocery and housing prices are high, regardless of reasons. When many working-class folks see the Dems constantly demonize Trump/Repub. voters because of social issues without giving proper economic and border solutions, the Dems are only hurting themselves and making it seem more and more that they are the party of the rich and spoiled when that's not complete reality.", 'created': '2024-11-07 21:07:55', 'submission_id': '1glipvt'}
{'comment': None, 'created': '2024-11-07 08:51:05', 'submission_id': '1glipvt'}
{'comment': 'But Kamala’s campaign actually made a difference. In the battleground states she kept Trump’s gain much tighter than in almost every other state (including blue ones).\n\nI think we have to figure out a better message and means to target the working class. Her economic messages clearly weren’t strong enough.\n\nI think we all have to admit too the headwinds were so tough against her. The social issues at stake are GREAT but not priority #1 when an entire class is struggling to put food on the table.', 'created': '2024-11-07 15:10:15', 'submission_id': '1glipvt'}
{'comment': 'It doesn’t matter how you campaign if the message doesn’t mean anything to 15 Million people. The only take away from this race is that people want a progressive, populist candidate that brings about change. People want change so bad that they voted for Trump to get it. It’s always been that simple. Run a progressive, you will win every single fucking time on the national stage.', 'created': '2024-11-07 12:29:57', 'submission_id': '1glipvt'}
{'comment': 'Makes you wonder if all the “ground game “ dems had was worth it at all', 'created': '2024-11-07 12:17:15', 'submission_id': '1glipvt'}
{'comment': 'Kamala had a very strong digital campaign.\n\nHer campaign is a great blueprint for moving forward. We just need to enhance on it', 'created': '2024-11-07 16:49:49', 'submission_id': '1glipvt'}
{'comment': 'They would criticize her for pearl earrings while ignoring the fact that he lives in a fucking gold plated mansion. The double standard is unreal', 'created': '2024-11-07 18:06:41', 'submission_id': '1glipvt'}
{'comment': 'What’s especially galling are the publications who are publishing pieces on the stakes *now*, when it’s too late.', 'created': '2024-11-07 18:13:09', 'submission_id': '1glipvt'}
{'comment': 'So it should be easier to run on an economic message in 2028, lets run a killer economic based campaign', 'created': '2024-11-07 17:17:11', 'submission_id': '1glipvt'}
{'comment': "She'll need to win a Senate or Governor's seat first. Show that she can win a statewide election then try for the White House. I hope she becomes President one day.", 'created': '2024-11-07 07:25:08', 'submission_id': '1glipvt'}
{'comment': 'I love AOC, but I think she would be better as a party leader than president. She could be the next Nancy Pelosi. Party leaders have more say in the long term than the president.', 'created': '2024-11-07 13:20:08', 'submission_id': '1glipvt'}
{'comment': 'Trust me republicans are going to elect the first woman president. They may be misogynistic but they always love to side with ‘one of the good ones’', 'created': '2024-11-07 14:23:52', 'submission_id': '1glipvt'}
{'comment': 'I know.', 'created': '2024-11-07 06:51:21', 'submission_id': '1glipvt'}
{'comment': 'I think VP > President can still work for her, she just needs to be more frorward facing politically during her vice presidency, Kamala (atleast for me) was rarely seen or mentioned until her run for president.', 'created': '2024-11-07 08:23:08', 'submission_id': '1glipvt'}
{'comment': 'I think she could be a wonderful president, but there is no way she would win the election with how the Republicans have demonized her. Sadly, her name on the ballot would cause enough anger and hatred to get each and every "center" and right-wing person to go out and vote. Maybe she could stand a chance if another woman served as president first, but I still am not confident in that situation.', 'created': '2024-11-07 14:35:30', 'submission_id': '1glipvt'}
{'comment': 'I have believed that for a bit but after hearing moderate split tickets and other voices I just don’t think that’s it. It may influence it for sure, but chalking it up to that isn’t it.\n\nI don’t think the votes for Trump means that everyone is MAGA now. I think people want change and he symbolized it', 'created': '2024-11-07 15:11:57', 'submission_id': '1glipvt'}
{'comment': 'Democrats should not be so simplistic to think that gender was the defining issue in this race.', 'created': '2024-11-07 14:59:08', 'submission_id': '1glipvt'}
{'comment': 'Yeah we shouldn’t run a woman for a few more cycles. I’m a woman and I hate saying that but clearly it’s just too risky right now.', 'created': '2024-11-07 16:39:08', 'submission_id': '1glipvt'}
{'comment': 'Honestly i think the most likely scenario for a woman to win is a republican woman. I think a democratic woman would have to be a generational political talent', 'created': '2024-11-08 02:05:14', 'submission_id': '1glipvt'}
{'comment': 'I think a ticket with Buttigieg and AOC would be a rockstar ticket.', 'created': '2024-11-07 19:08:20', 'submission_id': '1glipvt'}
{'comment': 'I’ve been non-stop drinking', 'created': '2024-11-07 15:24:03', 'submission_id': '1glipvt'}
{'comment': 'Of the VP choices that were floating around, Walz was certainly the most progressive of those choices. The problem is they brought him on, and then they neutered him. I think it was a mistake. \n\nI was saying this somewhere else, a criticism I have of Democratic strategy is we have got to stop trying to science our way to victory. Candidates are becoming too micromanaged in what they can say — you can literally hear the Democratic consultant whispering in the candidate’s ear as the words are coming out of their mouths. Everyone needs to stay on message at all times. Nobody is allowed to say anything unless it’s been poll tested to appeal to the largest amount of voters. The candidates just start to sound fake. They need to be given the freedom to talk like actual people.\n\nI especially liked AOC’s comments around 26:20 and messaging. Democrats are too passive in their messaging, and not being direct enough. When you’re dealing with a difficult topic like inflation for example, it’s not enough to just say “we’re combatting inflation”. We have got to communicate how inflation happened, who took advantage of inflationary pressure to price gouge consumers, and what specifically we are doing to fix it. Democrats let Republicans paint Biden as the cause of inflation without fighting back on the how and the why it was occurring. \n\nAnyways, I think AOC made some great points, and I do hope Democrats move to a more populist message and stop pushing themselves to the center-right. It isn’t working.', 'created': '2024-11-07 10:01:47', 'submission_id': '1glipvt'}
{'comment': "I don't think we should run establishment candidates for president anymore.\n\n\nWe also need to stop polishing the message. Unpolished real talk that doesn't talk down or try to hide warts will resonates better because it isn't artificial.", 'created': '2024-11-07 11:21:18', 'submission_id': '1glipvt'}
{'comment': 'This attitude will get us nowhere in 4 years. We have to be introspective.', 'created': '2024-11-07 15:16:57', 'submission_id': '1glipvt'}
{'comment': "Dawg you gotta dig deeper than this. There are so many reasons why we lost. One of them is running as the anti-Trump candidate is not enough. We need to give voters some sort of change/progress. \n\nNeoliberalism is dead. We can't keep pushing it", 'created': '2024-11-07 15:48:12', 'submission_id': '1glipvt'}
{'comment': 'All we can do is hope. We can’t give up', 'created': '2024-11-07 15:05:17', 'submission_id': '1glipvt'}
{'comment': 'Nobody is talking about culture wars. You clearly didn’t watch the video either. It’s about pushing a populist economic message. We are not reaching working class voters. \n\nI’ll tell you one thing, if the lesson from this election is we need to have a Democratic Party that is even further to the right than it is now, then why have a party at all? What are the principles the party even stands on. We already have a right wing political party. Go vote for them if that’s what you want. I’m not going to vote for a party that keeps moving to the right, because that party doesn’t speak to my values.', 'created': '2024-11-07 14:41:14', 'submission_id': '1glipvt'}
{'comment': 'Harris is absolutely not on the ticket in 2028. Gavin, Whitmer, Pete are some obvious options besides Shapiro.', 'created': '2024-11-07 10:27:23', 'submission_id': '1glipvt'}
{'comment': 'It will be a while before another woman will be on the Dem ballot', 'created': '2024-11-07 11:55:12', 'submission_id': '1glipvt'}
{'comment': 'No more women on the presidential ballot for now. It won’t work in this country- as backwards and against my views as it is to say that.', 'created': '2024-11-07 15:44:41', 'submission_id': '1glipvt'}
{'comment': "it's hard to get a message out when the billionaire owned press wants fascism since it'll be profitable for them.", 'created': '2024-11-07 16:45:41', 'submission_id': '1glipvt'}
{'comment': 'She needed big flagship policies. Something like M4A but she had nothing. Same mistake Clinton and Biden made.', 'created': '2024-11-07 16:48:19', 'submission_id': '1glipvt'}
{'comment': "Doesn't help she kept repeating the same speech for thirty minutes in every location she campaign in. She was pushing too hard on abortion that may turned several key voters off. That 15 million people not being interested.", 'created': '2024-11-08 01:45:34', 'submission_id': '1glipvt'}
{'comment': 'The dems seem to have chosen couch over country. Harris would have won *easily* if those 10+ million couch sitters would have voted.\n\nAs a dem, this is very, very disheartening, and the number one priority now is discovering why so many sat this one out. Analysis will be ongoing for months.', 'created': '2024-11-08 16:10:43', 'submission_id': '1glipvt'}
{'comment': 'I don’t think any messages even got to them! Theres a difference in encouraging people to vote for something instead of against something. \n\nThe DNC needs a more robust social media strategy like yesterday. Hire people who focus on the sociological and psychological uses of social media as well. \n\nYou have to meet people where they are!\n\n[This](https://democrats.org/share/) is what they offer for their social ambassadors program.', 'created': '2024-11-07 12:37:57', 'submission_id': '1glipvt'}
{'comment': 'Well they sure are going to get change now. Everything will change day 1. \n\nEnjoy the next few months because this will likely be the last calm in a long time.', 'created': '2024-11-07 14:23:33', 'submission_id': '1glipvt'}
{'comment': '> people want a ~~progressive~~, populist candidate\n\nFTFY', 'created': '2024-11-07 17:37:52', 'submission_id': '1glipvt'}
{'comment': 'That has to be the most ridiculous comment I’ve read in a long time. Progressive populist candidates never win on a national stage. Americans say over and over again they don’t want it, and then their backers say the system is rigged so they don’t get a fair chance. This is not something Americans want.', 'created': '2024-11-08 08:14:09', 'submission_id': '1glipvt'}
{'comment': 'Can we just be…content? Ever?', 'created': '2024-11-07 13:49:51', 'submission_id': '1glipvt'}
{'comment': 'Considering nearly the entire country shifted right, and the swing states were\nmost of the ones to shift to the right the *least* (NJ, NY, MN Harris underperformed by 5-10 points, but she lost most of the swing states by just around a point or less) then yes the ground game was effective there but it didnt make up enough of the difference. So what I gather is the ground game is not a - but the effect in that it helps is a lot more minor than it seems.', 'created': '2024-11-07 15:27:20', 'submission_id': '1glipvt'}
{'comment': 'It’s no twitter, that’s for sure', 'created': '2024-11-07 12:20:04', 'submission_id': '1glipvt'}
{'comment': 'We need to lick our wounds, regroup, and fight on.', 'created': '2024-11-07 21:35:45', 'submission_id': '1glipvt'}
{'comment': "I'm getting the impression that more experience is actually worse for president. Seems like swing voters prefer outsiders.", 'created': '2024-11-07 11:16:12', 'submission_id': '1glipvt'}
{'comment': 'I’m from New York, and based on what I know about state-wide politics in New York, AOC has very little chance of making it past a state-wide primary. The state really isn’t as far to the left as people think it is.', 'created': '2024-11-07 11:31:25', 'submission_id': '1glipvt'}
{'comment': "no. sorry ladies, we've lost to fascism both times we've ran a lady. no more women on top of the ticket for a few decades, the misogynists are too common.", 'created': '2024-11-07 16:47:18', 'submission_id': '1glipvt'}
{'comment': 'Exactly.', 'created': '2024-11-07 10:12:50', 'submission_id': '1glipvt'}
{'comment': 'Exactly this! When I saw her evolution speaking at the DNC, it seemed like she was making a play for leadership. She sounds genuine and like she’s moderating her message to appeal to the rest of the party. If she led the party, I could see the working class returning to us.', 'created': '2024-11-07 17:04:18', 'submission_id': '1glipvt'}
{'comment': "When has VP to President worked? I don't know if Biden counts here since there was a gap and COVID.", 'created': '2024-11-07 11:17:06', 'submission_id': '1glipvt'}
{'comment': 'We will keep losing elections if we think gender was the defining issue of this one', 'created': '2024-11-07 15:45:35', 'submission_id': '1glipvt'}
{'comment': "Careful friend. I've been drinking more than usual too but neither of us will find salvation at the bottom of a bottle.", 'created': '2024-11-07 15:33:51', 'submission_id': '1glipvt'}
{'comment': '>we have got to stop trying to science our way to victory. Candidates are becoming too micromanaged in what they can say\n\n\nThis, 100%.', 'created': '2024-11-07 11:23:13', 'submission_id': '1glipvt'}
{'comment': 'No. We need to learn how to fight the modern political war. Introspection gets us no where.', 'created': '2024-11-07 15:37:50', 'submission_id': '1glipvt'}
{'comment': 'So is hope going to save our Hispanic neighbors or will action?', 'created': '2024-11-07 15:09:49', 'submission_id': '1glipvt'}
{'comment': "I agree. The left needs to focus on becoming the working class party. Although I believe in left social justice issues, like women's rights, it's clear from this election that leading on that is not going make us win anymore. It was more meaningful when people were better off and weren't struggling as much so they had more bandwidth to care about other issues. But our citizens are really hurting financially so it makes sense that they are voting with their wallets.\n\nSo we really have to focus on left wing populism. People were excited about Andrew Yang's Universal Basic Income idea back in 2020. His support was a healthy mix of Republicans and Democrats. But he didn't make the cut for the DNC nomination. I think Bernie Sanders in 2016 was really getting lots of support from both sides, too. People are disgusted by the establishment and right now the right no longer is the establishment as MAGA candidates are winning more than the classic GOP candidates. They are leaving the out-of-date establishment Dems in the dust. We can't have Nancy Pelosi lead us anymore. I don't even think Obama is resonating with people, especially young people, as much anymore. Of course Millennials and Gen X Dems love him, but that's not getting out Gen Z for us.\n\nI don't know who on the Dem side will be the populist voice. AOC is great but I honestly don't want a woman to run again. Bernie is too old. Maybe some Democratic US House rep will come to the surface. I'm just not sure. Hopefully in 2 years the messaging will start coming together and left-wing candidates will start appearing.", 'created': '2024-11-07 15:50:54', 'submission_id': '1glipvt'}
{'comment': "you do know that the democratic party is already further left. so going slight right brings them to center left, which is where they should be. the governance should be between center left and center right. why do you think center-rights turned to the far right? because center lefts became further left.\n\nand all i said was harris didn't lose because she wasn't left enough. don't you even realize that this election was only close up to election day because she wasn't more left? she lost for other reasons. dems going further left would be a huge mistake.\n\nyou can reach the working class without having to go far left progressive. i mean voters just showed you that they don't want the far left at all.", 'created': '2024-11-07 15:22:02', 'submission_id': '1glipvt'}
{'comment': 'There are ways to get the message out. Jeff Jackson seems to do well and won the AG spot in NC. \n\nOtherwise, who else is doing it…AOC? Hell our folks barely talk to the media, barely interact with their constituents on social media, and we have ceded the messaging war to the other side.', 'created': '2024-11-08 00:21:38', 'submission_id': '1glipvt'}
{'comment': 'Yup. A grand message like Obama and JFK had. Or Reagan even.', 'created': '2024-11-07 18:48:38', 'submission_id': '1glipvt'}
{'comment': 'This is it. I would have loved a Harris administration and her policies were great IF you are someone who regularly follows politics. Democrats need to rebrand their message and push ideas that are appealing and can be easily digested by the everyday person.', 'created': '2024-11-07 18:04:07', 'submission_id': '1glipvt'}
{'comment': 'She didn’t have an economic philosophy, just tidbit policies that “poll well.” Trump has a philosophy for better or worse and people rallied around that.\n\nEdit: y’all can downvote me all you want but we’ve got to be open to uncomfortable truths if we want to regain power.', 'created': '2024-11-07 17:26:46', 'submission_id': '1glipvt'}
{'comment': 'The sad thing is that Obama\'s campaign was the first to use social media. In fact, the women who helped Cambridge Analytica create their campaign for Ted Curz worked on Obama\'s media team. In the documentary "The Great Hack," she said that she does not agree politically with Curz and Cambridge Analytica. They offered her good money, and she said the DNC expected her to work for them for free.', 'created': '2024-11-07 13:06:53', 'submission_id': '1glipvt'}
{'comment': 'Sure. Take away the wrong lesson. \n\nProgressive policies are popular across both ideological bases. No one wants small incremental change while politicians line their pockets. They want the system burned to the fucking ground and built around workers.', 'created': '2024-11-07 17:39:32', 'submission_id': '1glipvt'}
{'comment': 'Keep drawing the wrong conclusions. You’re all just as bad as MAGA in terms of being delusional.', 'created': '2024-11-08 12:37:33', 'submission_id': '1glipvt'}
{'comment': 'It\'s clear the voting majority isn\'t "content" with the current system. So if you\'re NOT looking for change, but the Republicans are, then you\'re going to lose 9/10 times', 'created': '2024-11-07 15:36:27', 'submission_id': '1glipvt'}
{'comment': 'You’re part of the problem. The current system DOES NOT WORK FOR 90% OF THE COUNTRY.', 'created': '2024-11-07 14:29:02', 'submission_id': '1glipvt'}
{'comment': 'Yup. This consensus has been true even among non swing voters, its simply that partisan voters are far less likely to switch sides.\n\nObama was a single term Senator, remember.\n\nBernie has anti establishment credibility from his decades of history being well, anti-establishment, even in elected office.\n\nBiden won in part because he adopted left leaning policies as part of his campaign relatively early, and that gave some energy to left leaning anti establishment folks. Look at his favorability at the height of the student debt cancellation efforts among key demographics.\n\nAOC may be able to establish Bernie Sanders style credibility with her record, but I must admit your point here is very strong.\n\nWe need to learn a thing or two as Democrats about messaging and what works.\n\nWe also need to realize: Believe it or not, people voted for Trump for reasons, and not all of who voted for him can simply be boiled down to racist, fascists, christian hardliners, and/or sexists. If we take time to understand the opposition and appeal to their weak base members (and they very much exist) we can still take back the country.\n\nWe need to think of strategies that will enable longer term power. The biggest issue Democrats have had for the longest time is winning 1-2 election cycles seemingly always means we lose the 3rd. Republicans are able to hold office much longer it seems and continue to keep their gains much longer.', 'created': '2024-11-07 16:10:54', 'submission_id': '1glipvt'}
{'comment': 'Yep. Her district shifted to be less blue. The Queens side even a light red. \n\nDon’t think she’ll ever reach beyond the House.', 'created': '2024-11-07 12:37:00', 'submission_id': '1glipvt'}
{'comment': 'Yeah after election night this year, I’m in absolute agreement with that statement.', 'created': '2024-11-07 14:37:17', 'submission_id': '1glipvt'}
{'comment': 'Al Gore would have if it weren’t for the Supreme Court.', 'created': '2024-11-07 12:33:33', 'submission_id': '1glipvt'}
{'comment': 'It doesn’t but VPs get the nomination. 1 John Adams 2 Thomas Jefferson 3 Martin van buren 4 Bush sr, are the only sitting VPs to be elected and 1 Nixon and 2 Biden are the only two former VPs to win. But with primaries being all states now VPs have more name recognition and so it’s easier to get nominated with a majority of VPs since Ford running. Johnson Humphrey Nixon Ford Mondale Bush sr gore Biden and Harris only missing Cheney who didn’t run but pence and Quayle didn’t win the nomination', 'created': '2024-11-07 11:38:01', 'submission_id': '1glipvt'}
{'comment': 'I gave myself two days. I’ve also been reaching out to people I care about for support. I’m sobering up Saturday and starting to get a plan together. Thank you for your concern and, if you ever need to talk, I’m here.', 'created': '2024-11-07 16:46:39', 'submission_id': '1glipvt'}
{'comment': 'I’ll find salvation, _or die trying_!', 'created': '2024-11-07 17:06:29', 'submission_id': '1glipvt'}
{'comment': 'This is how Jon Ossoff won and how Democrats are mostly afraid to campaign. Tell them right to their face why people shouldn’t ever vote for them. Stop trying to be so fucking nice.\n\nBeing nice all the time made us the opposition party. Time to start acting like it.', 'created': '2024-11-07 12:04:35', 'submission_id': '1glipvt'}
{'comment': 'How does introspection get us nowhere? Do tell.', 'created': '2024-11-07 15:51:50', 'submission_id': '1glipvt'}
{'comment': 'What we need is a progressive nominee for president in 2028 (if we have an election) Obama is the only Democrat nominee to campaign on change and he’s the only one to win decisively. Gorr, Kerry, Clinton, and Harris all wanted to broadly keep the status quo which causes some of our core voters to stay at home. We need a young Bernie figure, and as much as I hate to say it, this country is not ready for a woman to be president.', 'created': '2024-11-07 16:05:50', 'submission_id': '1glipvt'}
{'comment': 'That’s what I’m saying, don’t roll over and die. We have to keep trying', 'created': '2024-11-07 15:11:05', 'submission_id': '1glipvt'}
{'comment': "I disagree. Voters don't care about progressive social justice values. Their clearly care about issues that affect their wallets more than anything. Left-wing populism cares about giving more power and money to the working class. It doesn't have to do with social issues. It's clear that people are financial struggling. People don't care about social justice issues when they are struggling to pay bills.", 'created': '2024-11-07 15:42:22', 'submission_id': '1glipvt'}
{'comment': 'Please explain to me how the Democratic Party is further left. Since I started voting in 2004, democrats increasingly capitulate to right wing talking points instead of fighting for what we supposedly believe in, and look where it has gotten us. \n\nNewsflash: Kamala did not run a progressive campaign. She ran a pretty center right campaign. Her foreign policy was definitely not to the left. Talking about tax cuts instead of shoring up social programs was not to the left. That stupid border bill that everybody harps on was certainly not to the left, just a capitulation to Republican talking points. She wanted to appoint a Republican to her cabinet, and brings in the Liz Cheney to court a group of voters that clearly didn’t exist. The strategy didn’t work. She lost anyway. So if you’re just going to say the answer is “well we shouldn’t fight for what we believe in, we must move closer to Republican positions” then just go vote for Republicans. I’m not going to vote for a Democratic Party that moves further right than it already is.', 'created': '2024-11-07 15:30:12', 'submission_id': '1glipvt'}
{'comment': 'Literally nothing you just claimed is true.\n\nHarris had a full social media team, Walz and AOC were streaming on Twitch, etc.', 'created': '2024-11-08 00:25:08', 'submission_id': '1glipvt'}
{'comment': 'I absolutely agree. A $25,000 home buyer assistance that almost no one will qualify for is not grand overarching policy. \n\nThe Harris website had a lot of really great, little plans. But we really need a big program - a new deal for the 21st century - that really galvanizes the party around a shared vision. They tried it with the green new deal and it was a great start, but obviously centrist dems were not on board. The party needs to shift focus and get something going.', 'created': '2024-11-07 20:22:47', 'submission_id': '1glipvt'}
{'comment': 'Your last sentenced gutted me. Pay people what they’re worth! That said, I think highly-skilled people could be a little more discerning about their ethics. That hustle culture/girl boss era didn’t age well. I’ll have to check out that documentary!', 'created': '2024-11-07 13:10:59', 'submission_id': '1glipvt'}
{'comment': 'Progressive policies are popular, progressive politics are not.', 'created': '2024-11-08 02:06:34', 'submission_id': '1glipvt'}
{'comment': "Don't worry, the fascists will get to work where they have control gerrymandering districts to make sure Dems can't get re-elected. They, if anything are patient in how they operate. They've been picking away at this since Reagan.", 'created': '2024-11-07 14:29:18', 'submission_id': '1glipvt'}
{'comment': 'I agree. Being nice does not stop the bully. Being nice does not stop predator. Being nice does not protect people that need protection. \n\nStand up and fight. By fight, I don’t mean putting an exclamation mark on the teleprompter.', 'created': '2024-11-07 15:41:09', 'submission_id': '1glipvt'}
{'comment': "It's not even about being nice. Which I agree, we do need to stop being so nice. But it's really more about coming across as authentic and pushing back against falsehoods as they happen.\n\nI feel like democrats are just afraid of being called left wing, so they worm themselves into these mealy mouthed answers that comes across as fake. The town hall with Kamala was a great example. There were some really politically charged questions in there. But instead of expressly rebuking even the nature of the question, Kamala would try to deflect and ignore the question, and just stick to a poll tested talking point. It was completely obvious.\n\nOne example was like the college student asking how much assistance she planned to give to illegal immigrants. It was a completely disingenuous question. Kamala didn’t answer it though, she just went into a generic statement about immigration. She should’ve confronted the answer head on “actually, sir, the premise of your question is incorrect. My administration has no plans to give assistance to people who are here illegally. It’s just not true.” And then launched into what she would do about solving the immigration “problem”.\n\nActually I think one of the best examples of messaging gone right is a town hall Obama participated in, where he got a question about guns. It is a masterclass in how to message. Dismiss the disingenuous question, then point out the ridiculousness of the other side’s argument. It’s the kind of forceful pushback we need to see from democrats that we don't see enough of.\n\n[https://youtu.be/6imFvSua3Kg?si=e9M8oNeTCWJARF5U](https://youtu.be/6imFvSua3Kg?si=e9M8oNeTCWJARF5U)\n\nI feel like Pete Buttigieg also does a good job of this. But we have got to learn to push back. It’s one of my main problems I Have with the Democratic Party, and it’s been that way since I’ve started voting in 2004", 'created': '2024-11-07 19:47:59', 'submission_id': '1glipvt'}
{'comment': 'harris ran a center left to middle campaign. center right is saying she ran a republican campaign. cmon now lmao. anyways, this is an obvious agree to disagree.', 'created': '2024-11-07 15:43:13', 'submission_id': '1glipvt'}
{'comment': 'The race was lost long before Harris and Walz got there. They had no chance and did the best they could. You can’t convince voters in 100 days when you haven’t been campaigning up until then and your opponent has been doing it non-stop. \n\nThe race was lost in 2022 when Joe Biden wouldn’t step (or the people in his orbit force him) aside. He steps aside then, someone else can actually communicate with the voters properly and maybe you can build an audience naturally. Twitch streams take time to build on an audience…base watched, but there wasn’t time to get others to watch.\n\nThere has to be more focus by Dems all the time to get their message out…across the board…and a willingness to shift if it isn’t working or numbers are stagnating.', 'created': '2024-11-08 00:38:47', 'submission_id': '1glipvt'}
{'comment': '10000%. Pod Save America had a great discussion about this yesterday', 'created': '2024-11-07 22:05:17', 'submission_id': '1glipvt'}
{'comment': 'Only because the liberal establishment unifies instantly to decimate any inkling of a progressive movement.', 'created': '2024-11-08 02:22:40', 'submission_id': '1glipvt'}
{'comment': 'We need to weaponize the courts like they did. Truth be told, its why they keep on gaining ground even as their numbers shrink', 'created': '2024-11-07 16:12:30', 'submission_id': '1glipvt'}
{'comment': 'You’re saying the Republicans are center right?', 'created': '2024-11-07 15:47:18', 'submission_id': '1glipvt'}
{'comment': 'Actually, no. the "hurrdurr biden should have stepped aside" narrative is also wrong.\n\nbased on the professional analysis i\'m seeing, and there is every reason to believe it\'s accurate, there is literally nothing we can do\n\npost-covid inflation has lead to a global anti-incumbency backlash.', 'created': '2024-11-08 00:42:23', 'submission_id': '1glipvt'}
{'comment': "you can't weaponize the courts like they did, they're going to have total control of the supreme court for fifty fucking years now.", 'created': '2024-11-07 16:48:30', 'submission_id': '1glipvt'}
{'comment': "far left, center left, middle, center right, far right. you do things differently that's fine. again, agree to disagree...", 'created': '2024-11-07 15:51:41', 'submission_id': '1glipvt'}
{'comment': 'Yep, don’t need to change the messaging, or the policies, or anything else….its all something out of our control anyway, so why even try, right? Let’s just keep going in these 4 year cycles of switching things up over and over again while nothing really gets better for anyone except the ultra-wealthy. Sounds super-fun.', 'created': '2024-11-08 00:48:48', 'submission_id': '1glipvt'}
{'comment': 'The thing to do would have been to separate from the incumbent candidate. Having an open primary with a new Democratic candidate would have helped. Also going on The View and saying you can’t think of anything you’d do differently from the current administration is not smart if you know there is an anti-incumbency wave. She had to separate from Biden more forcefully but she didn’t do that.', 'created': '2024-11-08 08:11:15', 'submission_id': '1glipvt'}
{'comment': "Nope, that also would not work. the incumbent *party* has been getting hammered globally, it doesn't matter if you tried to separate candidate.", 'created': '2024-11-08 16:36:10', 'submission_id': '1glipvt'}
{'comment': 'While Supreme court is a non partisan position, opponent Branning is endorsed by Mississippi Republican party. Per her website she believes in traditional values of faith, family and freedom. She calls herself a constitutional conservative.\n\nDonate and volunteer for\n\nhttps://justicekitchens.tbgsites.com/', 'created': '2024-11-07 05:19:46', 'submission_id': '1gli5ik'}
{'comment': 'That’s a terrible headline', 'created': '2024-11-07 07:32:57', 'submission_id': '1gli5ik'}
{'comment': 'but a great cause.', 'created': '2024-11-07 08:16:26', 'submission_id': '1gli5ik'}
{'comment': 'Unfortunately, the working man here doesn’t want free healthcare and free education. To them, that only means higher taxes. Heaven forbid there’s less in their wallets. Americans are ignorant. The ones screaming that the USA is the greatest nation are the ones who have never even experienced another country. The older generation does not want to give a dime to a cause that does not benefit them directly. I’m hopeful that the younger people here will value education and healthcare for all, because it creates a greater society as a whole.', 'created': '2024-11-07 13:31:39', 'submission_id': '1glhv41'}
{'comment': 'Yes, they truly are ignorant.\n\nhttps://preview.redd.it/pj6o38i05hzd1.jpeg?width=2532&format=pjpg&auto=webp&s=ae53b72d46c43cfe5a63606da054c26a0db42e15\n\nHere is Denmark and us healthcare spending by gdp. Where Denmark is at 7-8 percent and us at 17-18 percentage. While I’m no economist, I just think America spends their money wrong. Healthcare is possible with minimum tax raises', 'created': '2024-11-07 13:37:12', 'submission_id': '1glhv41'}
{'comment': 'Have you seen our military budget?….', 'created': '2024-11-07 13:38:40', 'submission_id': '1glhv41'}
{'comment': 'No, and neither has the military. They have just spent whatever the fuck they wanted without accountability for 50 years.', 'created': '2024-11-07 20:52:04', 'submission_id': '1glhv41'}
{'comment': 'What does that have to do with this? Healthcare is cheaper for the government in Denmark than in the USA, and it’s a universal model? How could they possible not want to do like their Canadian neighbours', 'created': '2024-11-07 19:27:19', 'submission_id': '1glhv41'}
{'comment': 'My point was that our tax dollars go to the insane military budget. I was in agreement with poor spending.', 'created': '2024-11-07 20:10:22', 'submission_id': '1glhv41'}
{'comment': 'Agreed, your military budget is out of this world', 'created': '2024-11-07 20:45:35', 'submission_id': '1glhv41'}
{'comment': "I stopped using Amazon years ago as a personal protest against egregious accumulation of wealth. I hope more people follow suit considering what you've pointed out here. The only way to hurt a conservative is in the wallet since so many of them seem to have no heart.", 'created': '2024-11-07 05:02:01', 'submission_id': '1glhpc8'}
{'comment': 'Cancelled my WaPo subscription and now cancelling Amazon', 'created': '2024-11-07 04:58:28', 'submission_id': '1glhpc8'}
{'comment': 'Rich guy supporting supposed rich guy a tale as old as time', 'created': '2024-11-07 05:18:48', 'submission_id': '1glhpc8'}
{'comment': 'I hate that he owns Whole Foods too, used to be one of my fav places for produce when I could afford it', 'created': '2024-11-07 06:31:22', 'submission_id': '1glhpc8'}
{'comment': 'Ironic, making the request to boycott Amazon by using Xitter? Uninstalling X should be step one.', 'created': '2024-11-07 05:37:12', 'submission_id': '1glhpc8'}
{'comment': "I deleted my Amazon account. I tried to avoid shopping there anyway so it's no real loss. Also canceled Audible.", 'created': '2024-11-07 05:14:51', 'submission_id': '1glhpc8'}
{'comment': "It's getting increasingly hard to boycott when a handful of equally evil billionaires now own nearly everything between them.", 'created': '2024-11-07 07:02:31', 'submission_id': '1glhpc8'}
{'comment': "Question: I'm on on Prime and would like to delete my Amazon account but I have their credit card with Chase. What happens to my card if I delete my Amazon account?", 'created': '2024-11-07 10:29:14', 'submission_id': '1glhpc8'}
{'comment': "It cancelled both my prime membership and Wapost subscription. Haven't bought anything off Amazon and returned anything I could.", 'created': '2024-11-07 14:36:12', 'submission_id': '1glhpc8'}
{'comment': 'Boycotted a long time ago.', 'created': '2024-11-07 13:38:45', 'submission_id': '1glhpc8'}
{'comment': 'I canceled my prime account last night.', 'created': '2024-11-07 15:17:07', 'submission_id': '1glhpc8'}
{'comment': 'I cancelled "Prime" earlier today.', 'created': '2024-11-07 06:33:50', 'submission_id': '1glhpc8'}
{'comment': "You can. If it makes you feel good. \n\nBut it's not like it's going to have any impact on the next election. Which is going to be fixed for fascists. I fully expect them to nail that down in the 6 months, so they are ready for the midterms.", 'created': '2024-11-07 12:56:17', 'submission_id': '1glhpc8'}
{'comment': 'I’m personally not, but I won’t hate on anyone who chooses to do so.', 'created': '2024-11-07 14:03:42', 'submission_id': '1glhpc8'}
{'comment': "People can't even boycott Twitter. I'm exhausted 😞", 'created': '2024-11-07 14:44:40', 'submission_id': '1glhpc8'}
{'comment': 'Thank you. Going to cancel Amazon right now', 'created': '2024-11-07 16:18:18', 'submission_id': '1glhpc8'}
{'comment': 'Amazon’s profit comes from AWS, they host a 1/3rd of the Internet (including Reddit.) Ditching your Prime membership doesn’t play a role in AWS revenue. You’d need to boycott the Internet.', 'created': '2024-11-07 05:17:38', 'submission_id': '1glhpc8'}
{'comment': 'Yes F* Bezos \nCancelling Prime now', 'created': '2024-11-07 19:10:51', 'submission_id': '1glhpc8'}
{'comment': 'Yes. I am trying to figure out what I need to do to keep movies and audiobook purchases.', 'created': '2024-11-07 20:04:46', 'submission_id': '1glhpc8'}
{'comment': 'All of the ads in PA were “billionaires are bad” and abortion and….that wasn’t really compelling so maybe try something different', 'created': '2024-11-07 09:05:31', 'submission_id': '1glhpc8'}
{'comment': 'i quit prime about 3 years ago and now place 2-3 amazon orders a year. only when there’s something that would be really hard to get somewhere else and i need it quickly. and i’m doing fine.', 'created': '2024-11-07 13:57:35', 'submission_id': '1glhpc8'}
{'comment': 'Make sure you tell them why you’re canceling too.', 'created': '2024-11-07 05:25:24', 'submission_id': '1glhpc8'}
{'comment': 'Billionaire doing the GOPs bidding in exchange for never paying taxes, also a tale as old as time', 'created': '2024-11-07 06:32:45', 'submission_id': '1glhpc8'}
{'comment': 'The founder of Whole Foods before Amazon bought it out is a diehard libertarian unfortunately.', 'created': '2024-11-07 07:13:54', 'submission_id': '1glhpc8'}
{'comment': 'Did that a year ago and from the sounds of it, I’m glad I did. Propaganda machine', 'created': '2024-11-07 06:33:30', 'submission_id': '1glhpc8'}
{'comment': 'Anyone who uses Twitter is a traitor to democracy.', 'created': '2024-11-07 08:41:02', 'submission_id': '1glhpc8'}
{'comment': 'When one of those billionaires does the 3 things in a row I laid out above, he makes the decision so much easier.', 'created': '2024-11-07 07:14:05', 'submission_id': '1glhpc8'}
{'comment': 'Nothing. Don’t cancel it because that will hit your credit.', 'created': '2024-11-07 13:38:16', 'submission_id': '1glhpc8'}
{'comment': "No, it doesn't play a role in AWS revenue. It plays a role in the success of Amazon.com. And I wasn't talking about just, Prime. I was talking about Amazon.com in totality.\n\nNo one is trying to bankrupt Bezos. That's not happening in our life time. But we, as consumers can choose to support businesses that support our values, in all areas that we can actually make that choice.", 'created': '2024-11-07 05:22:59', 'submission_id': '1glhpc8'}
{'comment': "I haven't seen any billionaires are bad ads but women's healthcare is a pretty compelling issue for women and those who love them.", 'created': '2024-11-07 09:15:11', 'submission_id': '1glhpc8'}
{'comment': "If there are people who love billionaires I can't help them be less stupid.", 'created': '2024-11-07 12:04:23', 'submission_id': '1glhpc8'}
{'comment': "They don't ask. I canceled and CLOSED my account 2 weeks ago. I was prepared to tell them why but was not given an opportunity.", 'created': '2024-11-07 07:53:15', 'submission_id': '1glhpc8'}
{'comment': 'https://preview.redd.it/10xizto45izd1.png?width=1504&format=png&auto=webp&s=3848153fe004bde7674c44dabc21c319f73f8740\n\n\n\nAccording to Forbes, the tally of billionaires was 83 for Harris, 52 for Trump. None for Stein I guess?', 'created': '2024-11-07 16:58:24', 'submission_id': '1glhpc8'}
{'comment': 'They love billionaires because they want to be one.', 'created': '2024-11-07 13:09:17', 'submission_id': '1glhpc8'}
{'comment': 'You can send customer service your account number and say “I wanted to give you feedback on why I chose to cancel my subscription”. It’s not likely to do anything major but they will make a note.', 'created': '2024-11-07 07:59:49', 'submission_id': '1glhpc8'}
{'comment': 'Good luck with that. The gates to the club are closed.', 'created': '2024-11-07 14:57:33', 'submission_id': '1glhpc8'}
{'comment': 'It was 2 weeks ago. I no longer have access to the account nor know my account number. But I wish I thought of that at the time.', 'created': '2024-11-07 08:03:29', 'submission_id': '1glhpc8'}
{'comment': 'Ahh, well that’s okay. You still voted with your wallet and that’s something people need to start doing more of.', 'created': '2024-11-07 08:26:30', 'submission_id': '1glhpc8'}
{'comment': 'Mainly because of mail-in ballots that need to be counted in western states\xa0', 'created': '2024-11-07 04:46:18', 'submission_id': '1glhb94'}
{'comment': "Gallego looking good in AZ, NV is super tight, hoping we squeeze that out. Otherwise we're mostly waiting on CA for the House. Not sure why it takes so long to count. There is definitely a shot for us to get the House, but we may not know for sure until Friday as I understand it.", 'created': '2024-11-07 04:48:28', 'submission_id': '1glhb94'}
{'comment': 'Not to be a Debby Downer, but the house and presidency are usually won together.', 'created': '2024-11-07 05:29:01', 'submission_id': '1glhb94'}
{'comment': 'Some places are close enough for the provisionals. And CA has a lot of mail to come in. And NV has a really weird way a processing. 50 states == 50 rule books', 'created': '2024-11-07 05:15:44', 'submission_id': '1glhb94'}
{'comment': 'So PA Senate was called for McCormick (R), but he’s only up by 26,000 votes. Cambria county alone which is not a big city county still has 40,000 day of ballots to count due to an issue that is requiring them to all be hand tabulated. It’s traditionally a red county but has swung for Casey before. There’s also enough mail in and provisional ballots that could swing that back towards Casey that are still being counted in the population centers.\n\nNot saying it will change the outcome but there’s still votes being counted', 'created': '2024-11-07 07:51:11', 'submission_id': '1glhb94'}
{'comment': "C'mon California!", 'created': '2024-11-07 05:18:55', 'submission_id': '1glhb94'}
{'comment': "Right now, it's looking like it'll be 220 for Republicans and 198 for Dems. This country has truly lost it's goddamn mind.", 'created': '2024-11-07 11:50:39', 'submission_id': '1glhb94'}
{'comment': 'The house and senate take days to count.', 'created': '2024-11-07 04:39:12', 'submission_id': '1glhb94'}
{'comment': 'Wow, I’m retiring to New Mexico.', 'created': '2024-11-07 16:39:35', 'submission_id': '1glhb94'}
{'comment': 'I just need Kari Lake to loose her senate seat, just one hurrah out of this election, at least.', 'created': '2024-11-07 18:11:56', 'submission_id': '1glhb94'}
{'comment': 'We need to dismantle the 2 party system!', 'created': '2024-11-07 20:43:29', 'submission_id': '1glhb94'}
{'comment': 'Well the democrats are just going to vote for whatever the Republicans want anyways in the name of making friends "across the aisle"', 'created': '2024-11-07 05:13:10', 'submission_id': '1glhb94'}
{'comment': 'Thanks for the info! I hope we pull through, even if it’s razor thin.', 'created': '2024-11-07 04:50:21', 'submission_id': '1glhb94'}
{'comment': 'If we can get the house then we will be able to stop to have some type of counter to Trump, thankfully.', 'created': '2024-11-07 06:31:59', 'submission_id': '1glhb94'}
{'comment': 'I don’t think you’re being a downer, just a realist. I am still hopeful, though.', 'created': '2024-11-07 05:48:05', 'submission_id': '1glhb94'}
{'comment': "2012 is an example where Obama won the presidency but Democrats failed to win the house.\n2000 is an example where bush won the presidency but Democrats kept the house \nIt's improbable but not impossible and this election has been unpredictable", 'created': '2024-11-07 07:05:54', 'submission_id': '1glhb94'}
{'comment': 'i live in PA and we have been pulling our hair out with this race.', 'created': '2024-11-07 13:53:45', 'submission_id': '1glhb94'}
{'comment': "\n\n>This country has truly lost it's goddamn mind.\n\nYep. Between those who voted for Trump. And those who decided it's just another election, and I'll stay home. \n\nWhat's that? Roughly 2/3 of the country? \n\nThe fascists know that they won the big shebang!", 'created': '2024-11-07 12:07:24', 'submission_id': '1glhb94'}
{'comment': "And even if most legislation passed by a D House is blocked, amended or vetoed by Senate or Pres, they can put enough motions forward that force the Rs to declare what they stand for clearly so that in future elections, such as they might be, they can not run on vagaries. \n\nBut first, up the ground game so that you know what position is popular so that you can force either the Rs to do what is close to popular and consistent with D philosophy, or to block popular initiatives. \n\nScratch and claw back into control of both houses in the midterms and then go for president. Focus on gaining power before trying for any special policy, or would it be better to be grandiose and very different in policy? It seems that the political.culture is so...strained...that either approach will be tested severely by the 1/5 or so of the population that is committed to the 'MAGA' position. It took them 50 years to get here, it might take 50 to get out.\n\nAlso, I do not know the US well enough, but would a focus on democratization (more ballot initiatives, better/more representation, voter rights) be popular enough with the people to be the main focus of a presidential campaign? Tell the people you want them to have the power to change the Trump era policy of paying for gender affirming care for illegal migrant prisoners, for example?", 'created': '2024-11-07 07:30:45', 'submission_id': '1glhb94'}
{'comment': 'Republicans won a trifecta in 2000.', 'created': '2024-11-07 07:21:34', 'submission_id': '1glhb94'}
{'comment': "I'm just plain disgusted on some of my democrats that told me the next day, when I asked, if they voted and plain blank told me with a laugh, it was raining or I was tired. Makes no sense.", 'created': '2024-11-07 18:20:38', 'submission_id': '1glhb94'}
{'comment': 'I think the priority for the next presidential election should be to get the John Lewis Voting rights act, the Freedom to vote act, and mandatory voting (maybe create a national ID to try and get Rs to vote for it).', 'created': '2024-11-07 20:36:08', 'submission_id': '1glhb94'}
{'comment': 'Sorry, misread the results', 'created': '2024-11-07 12:50:48', 'submission_id': '1glhb94'}
{'comment': "Not to be. That Guy, but Al Gore won 2000, Bush's brother Jeb just gave him a little early birthday present by halting recounts.", 'created': '2024-11-07 17:53:24', 'submission_id': '1glhb94'}
{'comment': "It's freaking sad. \n\nI think a lot of people who didn't vote don't know how to recognize that the Republicans have been using the fascist playbook. Which should scare anyone away from Trump. Even if Trump hadn't given us plenty of hints he intends to stay in office permanently and implement some new right-wing Christian Utopian view for our government.", 'created': '2024-11-07 18:26:32', 'submission_id': '1glhb94'}
{'comment': "It's incomprehensible to most of us who voted how others can be so irresponsible, so lazy, and just plain so fucking STUPID. But that is apparently the world we live in. The movie Idiocracy is starting to look more and more like a Documentary Film with each passing year.", 'created': '2024-11-07 18:32:08', 'submission_id': '1glhb94'}
{'comment': 'Trump basically already has written mien kampf', 'created': '2024-11-07 07:16:35', 'submission_id': '1glgoi0'}
{'comment': 'I’m afraid we’ll never know.', 'created': '2024-11-07 07:33:54', 'submission_id': '1glgoi0'}
{'comment': 'Moot. We’ll never know.', 'created': '2024-11-07 08:11:00', 'submission_id': '1glgoi0'}
{'comment': '* Polls showed Harris ahead nationally and in most swing states.\n* She had 50,000 people at her rallies and he had less than half that, with people leaving early.\n* There was record early voting, most of it by people who usually vote Democratic.\n* There was record new registrations.\n* There was record in-person voting.\n* Orange turd told crowds more than once "You don\'t have to vote, we don\'t need your votes".\n\nYet 30 million people simply didn\'t show up?\xa0 And orange turd’s Russian allies were calling in bomb threats to Democratic polling places all across the country. *The vote numbers defy belief.*', 'created': '2024-11-07 05:18:11', 'submission_id': '1glgj2u'}
{'comment': 'Oh man, if Trump lost right now we’d still be prepping to defend against all the election fraud claims. Instead, we’re forced to hand the keys to our democracy peacefully, because it’s the right thing to do.', 'created': '2024-11-07 04:28:49', 'submission_id': '1glgj2u'}
{'comment': "I became a huge fan of Tim Walz the past few months. He's a class act and great guy, I wish I lived in Minnesota because of him.", 'created': '2024-11-07 04:29:54', 'submission_id': '1glgj2u'}
{'comment': "We could've had a man who took pride in his accomplishment of making sure no child goes hungry at school. Instead we get a VP who claims people in Springfield are eating cats.", 'created': '2024-11-07 06:24:05', 'submission_id': '1glgj2u'}
{'comment': "You're a good man Tim Walz, not the VP Americans deserve but the one they needed. Minnesota is lucky to have you as a governor.", 'created': '2024-11-07 04:49:15', 'submission_id': '1glgj2u'}
{'comment': 'They are so full of grace and class.\n\n\nIt breaks my heart because I know this time in our amazing country must end if the light intends to ever exist again.', 'created': '2024-11-07 05:21:36', 'submission_id': '1glgj2u'}
{'comment': "I'm going to miss Tim...", 'created': '2024-11-07 06:05:25', 'submission_id': '1glgj2u'}
{'comment': 'Class act. 🥲', 'created': '2024-11-07 04:17:27', 'submission_id': '1glgj2u'}
{'comment': 'Such class acts they are, can’t believe they have to run against the living scum that is Donald trump. You know if he lost he’d be belittling them and calling it fraud', 'created': '2024-11-07 08:04:14', 'submission_id': '1glgj2u'}
{'comment': 'Waltz 2028🥳', 'created': '2024-11-07 05:47:14', 'submission_id': '1glgj2u'}
{'comment': 'Tim Walz 2028!', 'created': '2024-11-07 12:01:50', 'submission_id': '1glgj2u'}
{'comment': 'Best 90 day campaign i have ever witnessed.', 'created': '2024-11-07 16:10:20', 'submission_id': '1glgj2u'}
{'comment': "He is right.\n\nTake the time you need to unplug and step away from the news (and here). I certainly will be shortly. Reality though it that the way all our worst fears come true is if everyone actually does lose hope and gives up on activism. We're going to need some form of opposition to this administration, in time. The fight never ends for the world you want, it was never going to end even had Kamala won.\n\nAdministrations never do the most extreme ambitions of their platforms, I honestly think the same holds true here. Yes there were some sane people in his first admin holding him back but it was mostly kooks and Yes Men like now and we got through it. \n\nJump back in when you're ready, going to be all hands on deck to defend democracy and decency in this country, just like the first time.", 'created': '2024-11-07 16:52:07', 'submission_id': '1glgj2u'}
{'comment': 'I will shit a brick of the DNC nominates her in 2028', 'created': '2024-11-07 05:30:28', 'submission_id': '1glgj2u'}
{'comment': "No, we can't win next term, republicans have to get eight years at least. We need to get into the American people's skulls that the Republicans caused this, not the Democrats. \n\nI'm tired of our party fixing the republican mistakes all the time, if we want to fix our country, we have to let them do such a shitty job that we will have such a majority in the states, no one will question the results.\n\n it's the only way we can be seen as the saviors of our country.", 'created': '2024-11-07 13:40:01', 'submission_id': '1glgj2u'}
{'comment': 'That "love of neighbor" bit needs to become part of Democratic messaging.', 'created': '2024-11-08 00:25:08', 'submission_id': '1glgj2u'}
{'comment': 'She should have gone with Shapiro.', 'created': '2024-11-07 04:36:03', 'submission_id': '1glgj2u'}
{'comment': 'Something weird’s def going on. Unless all those record dem voters suddenly voted Trump on Election Day, which would be hard to believe. \n\nGen Z fucked up bad though. I’m embarrassed of our turnout, it was crazy low. And just watch them complain for the next four years about how bad things are when they didn’t even bother voting🙄', 'created': '2024-11-07 05:28:35', 'submission_id': '1glgj2u'}
{'comment': 'Donald Trump and Mike Johnson apparently having a “secret plan”. \n\nVoter intimidation and bomb threats on Democratic counties by Republicans.\n\nThe media, whether mainstream or third party reporting this election having big voter turnout with long lines, many people at Kamala’s rallies compared to Trump’s rallies.\n\nGeneral optimism around Kamala’s bid for the election. \n\nSomething just doesn’t add up. I’m starting to wonder about the legitimacy of this election. I think there has to be a redo of the election. Then, maybe this would make people start giving a shit.', 'created': '2024-11-07 05:30:48', 'submission_id': '1glgj2u'}
{'comment': 'This kind of baseless conspiratorial thinking is completely counterproductive.', 'created': '2024-11-07 14:03:47', 'submission_id': '1glgj2u'}
{'comment': 'No offense, but where can I find the Russian bomb threats? I’ve been seeing people mention those a lot', 'created': '2024-11-07 12:01:38', 'submission_id': '1glgj2u'}
{'comment': 'I think that problem is not Dem base enthusiasm. People are mistaking 81 million votes for Biden as 81 million Democrats for Biden. There was definite blue enthusiasm for Harris. Hence the donations, the rallies, the strong ground game. Her message of joy and civility resonated with us. I also think that, this time around, the party at least managed to minimize the infighting. Even the Uncommitted movement endorsed her near the end. But it wasn’t enough. \n\nThe problem was with the independents and those with loose party affiliations. She tried to make a broad appeal using respect for the rule of law and the spector of January 6. But people just did not care. People can’t afford to care when they’re preoccupied with the economy. This is where the campaign may have made a mistake. They should have known that people are so, so willing to ignore Donald Trump’s many flaws, gaffes, and crimes. \n\nUltimately it comes down to the same thing, and I’m not sure it’s worth splitting hairs about whether Dems didn’t show up or whether the base is just not big enough, though I favor the latter. I think the party needs to find a stronger economic message. People act like she ignored the economy, which is just not true. She talked over and over again about her opportunity economy and specific tax credit proposals. I loved the idea of allowing Medicare to pay for home health. But people don’t *actually* want to hear policy. They want to feel like their anxieties are being seen. I heard her once say that economic policy requires a scalpel, not a sledgehammer. I 100% agree with her. But sometimes, people want to *feel* like someone is going to wield a sledgehammer for them.', 'created': '2024-11-07 15:57:15', 'submission_id': '1glgj2u'}
{'comment': "We shouldn't. He's still pending prison sentencing and the voters knew that. The justice system may think it's too risky to jail him, but I don't see how it's more risky than crowning him. We get a bunch of domestic terrorists and their psycho governors doing Civil War part 2, but mass deportation, suspension of the constitution and corporate ownership of the federal government which has debts owed to foreign loyalty is somehow the less democratic choice? That's a major reason why the democrats fail. Spineless. They never jailed Trump because they lived in fear, and now they cower while he tramples us all. \n\nThere was a point of legality addressed where a president can do something about a threat to democracy from within, and when that person owes debt to foreign countries the legal argument becomes fair. The democrats can do something about this. I don't think they will.", 'created': '2024-11-07 05:39:42', 'submission_id': '1glgj2u'}
{'comment': "Isn't it amazing that suddenly there's no election fraud?", 'created': '2024-11-07 16:51:12', 'submission_id': '1glgj2u'}
{'comment': 'I agree! He was the best part of the election for me by far.', 'created': '2024-11-07 07:13:18', 'submission_id': '1glgj2u'}
{'comment': 'Tim staying here as our Governor is one little silver lining this shit show of an election has.', 'created': '2024-11-07 20:31:02', 'submission_id': '1glgj2u'}
{'comment': "He's still the MN governor, so you will see him in state politics at least. Maybe he runs in 2028 but who knows.", 'created': '2024-11-07 07:01:36', 'submission_id': '1glgj2u'}
{'comment': "I'd be all for it, this election cycle made me a fan of Tim. And I think he's in a good position to run despite the 2024 loss.\n\nThe real funny would be choosing Kamala as VP.", 'created': '2024-11-07 07:27:55', 'submission_id': '1glgj2u'}
{'comment': "Doubtful and depend on what she does next. But I believe she would win if she runs in 2028, should've won had Trump won in 2020. She's a decent candidare dealt a unwinnable hand. I really like her as a human being, so I want to see more of her.\n\nThe inflation headwind is killing incumbent around the globe. If Trump implements his tarrifs, consumers are gonna really feel the inflation. By the end of his term, the economic sentiment will be so bad that Dems would win in a blowout.", 'created': '2024-11-07 07:04:56', 'submission_id': '1glgj2u'}
{'comment': 'There’s no way they’ll do that. I hate to admit it, but it seems we need to go with a straight white middle aged male. It seems to be the only thing America is ready for as POTUS. I honestly thought maybe we were finally ready for our first female president, but I was very wrong. Too much sexism and misogyny still in this country. Very sad things are still this way.', 'created': '2024-11-07 19:16:51', 'submission_id': '1glgj2u'}
{'comment': 'I hear what you’re saying there, but good god man, 8 years of Trump or Vance would simply devastate us. I don’t think we can survive that.', 'created': '2024-11-07 19:18:29', 'submission_id': '1glgj2u'}
{'comment': 'I don’t think the VP pick would’ve mattered. Incumbent parties throughout the world, justified or not, were punished due to inflation.', 'created': '2024-11-07 04:47:31', 'submission_id': '1glgj2u'}
{'comment': 'And lose progressives more? Pass.', 'created': '2024-11-07 04:39:06', 'submission_id': '1glgj2u'}
{'comment': 'It wouldn’t have mattered. He doesn’t appeal to the working class either. Dems lost the support of the majority of the working class across the board. And Shapiro wouldn’t have overcome her ties to Biden, who had an extremely low approval rating or everything else she had to try and overcome.', 'created': '2024-11-07 08:44:00', 'submission_id': '1glgj2u'}
{'comment': 'I’m honestly surprised by how many Gen Z voted for Trump, though specifically it was the majority of cishet white men. For being “the most progressive generation!!” We aren’t being very progressive when it’s actually time to show if we are or not', 'created': '2024-11-07 06:11:46', 'submission_id': '1glgj2u'}
{'comment': 'They just need to tip the scales just a tiny bit to win', 'created': '2024-11-07 05:46:14', 'submission_id': '1glgj2u'}
{'comment': 'Yeah I really don’t wanna pull the election fraud card but there was so much support going towards Harris I thought she’d at least not lose by that much', 'created': '2024-11-07 17:52:41', 'submission_id': '1glgj2u'}
{'comment': 'Let\'s be civil this is coming from a Republican a lot of former Dems did vote for Republicans they were tired of Biden and Kamala really didn\'t have a plan she would laugh at all the questions and avoid interviews. They are tired of the lies and smear campaigns against trump like the "very fine people" comment or project 2025 which have been debunked. Instead of attacking Republicans with lies focus on your own people and actually help Americans instead of giving billions to other countries.', 'created': '2024-11-07 13:25:17', 'submission_id': '1glgj2u'}
{'comment': 'You sound like Republicans for the last 4 years.', 'created': '2024-11-07 06:50:16', 'submission_id': '1glgj2u'}
{'comment': 'Lowkey blueAnon right now', 'created': '2024-11-07 15:08:18', 'submission_id': '1glgj2u'}
{'comment': 'They were reporting them live on msnbc while voting was still going on, on Tuesday.', 'created': '2024-11-07 14:11:21', 'submission_id': '1glgj2u'}
{'comment': 'Those are some interesting points. And I like your metaphor. I might steal it.', 'created': '2024-11-07 20:58:53', 'submission_id': '1glgj2u'}
{'comment': 'What’s Biden gonna do? Supreme Court says he can do whatever he wants', 'created': '2024-11-07 05:41:15', 'submission_id': '1glgj2u'}
{'comment': 'Right. I feel so abandoned. These spineless cowards don’t care if the rest of us suffer under a fascist. They GTFO as soon as possible and then expect us to vote for them. Its sickening honestly (and yes, I voted. And I actually like Kamala) just sad they really don’t care as much as they should about their base losing their rights. I’m so fucking over the when they go low we go high shit. I’m gen z & I legitimately don’t think I have a future anymore.', 'created': '2024-11-07 06:28:20', 'submission_id': '1glgj2u'}
{'comment': "I know he's still MN Governor. But he won't be my Governor, you know? Or my Vice President.\n\nI'm in Tennessee.", 'created': '2024-11-07 07:17:15', 'submission_id': '1glgj2u'}
{'comment': 'Honestly he’d probably have a better chance if she was VP and he was running for president. I love Kamala I just think the American people aren’t gonna vote a black woman for president, a white male unfortunately has a much better chance of getting elected. Love Tim walz tho of course', 'created': '2024-11-07 08:03:21', 'submission_id': '1glgj2u'}
{'comment': 'That what I think is gonna happen.', 'created': '2024-11-07 13:33:05', 'submission_id': '1glgj2u'}
{'comment': "I don't think all of America would survive, either. I would know that my family and I are poor.\n\nBut to revive our country and show just how bad that party—I shall not say its name — is, they need to let them have all the power for a while.\n\nWe need all those people who voted for them to suffer for what they have done, even if that means we have to suffer too.", 'created': '2024-11-08 13:38:01', 'submission_id': '1glgj2u'}
{'comment': "VP pick doesn't matter (I mean... look at Vance and his approval rating). It just turns out that the US lives in the stone age and still doesn't believe in women leaders. \n\nI don't think we will ever see a female president in our lifetimes.", 'created': '2024-11-07 05:45:53', 'submission_id': '1glgj2u'}
{'comment': 'It wasn’t so much that Gen Z voted for Trump, rather it was that Gen Z did not show up for Harris. It made it look like an ideological shift but in reality those on the left just didn’t show up.\n\nThe irony is that they relentlessly scapegoat Boomers, however they just fucked themselves harder than any Boomer ever could.', 'created': '2024-11-07 07:14:43', 'submission_id': '1glgj2u'}
{'comment': 'Even the Trump campaign seemed worried', 'created': '2024-11-07 19:48:12', 'submission_id': '1glgj2u'}
{'comment': "Bullshit. Trump got even fewer votes than he did 2020. This election wasn't because everyone loves Trump. It was apathy, shortsightedness, and bigotry.\xa0", 'created': '2024-11-07 14:59:43', 'submission_id': '1glgj2u'}
{'comment': 'I don’t claim it was cheating or anything. I accept it. I would’ve actually been less happy about his win if he didn’t get the popular vote tbh, because I always think it’s the most fair that the one with the most votes should win.\n\nI think you’re right that many people did vote red this time, but I think the majority just didn’t vote at all.', 'created': '2024-11-07 15:06:22', 'submission_id': '1glgj2u'}
{'comment': 'My family is doing it too. I had to shame them out of all their conspiracy theories. We had 15M people not show up across the country — that’s not a level of fraud our system can realistically support.', 'created': '2024-11-07 07:17:50', 'submission_id': '1glgj2u'}
{'comment': 'I’m sorry for thinking like this. I’m just so angry and sad at how the election turned out. I may have been too young to really understand Trump’s first term in office back in 2016, but I’m older now. I’ve been watching him closely, and he’s only gotten more dangerous. To think this guy won because he managed to get certain groups like Latino men and other minorities to vote for him is terrifying.', 'created': '2024-11-07 21:10:20', 'submission_id': '1glgj2u'}
{'comment': 'Gotcha, thank you', 'created': '2024-11-07 14:56:02', 'submission_id': '1glgj2u'}
{'comment': 'I mean you can follow him on social media. Seeing his face makes me happy for some reason, he looks like a very jolly fellow.', 'created': '2024-11-07 07:25:27', 'submission_id': '1glgj2u'}
{'comment': 'Shocks me considering how united we were in 2020 to get Trump out of office. I know that this election had a lot more complicated factors that alienated younger voters, but seriously, what happened? It’s not even the people who voted for Jill Stein, because Harris would have lost regardless of if she had those votes or not. Gen Z just didn’t care to vote. What the fuck happened? What happened to the united front who wanted Trump to get out of office? Why didn’t we keep him from coming back? \n\nWhile I know that democracy is frustrating and we have a two party system that slows the process of change, I think we need to remember that democracy is transactional and we need to be able to make compromises to get anything done. Progress will only come when there’s a presidential candidate who can be held accountable and can be pressured. \n\nSo in 2028 when the democrats reorganize and win back the White House due to Trump fatigue and overwhelming voter turnout (and there better be another election or so help me god), we can not repeat this in 2032 and so on. Whether it’s JD Vance, Ron DeSantis or some other fucking maga dingbat, we cannot constantly go back and forth like this. The Democrats need to figure their shit out and Gen Z and then Gen Alpha will need to wake the fuck up.', 'created': '2024-11-07 08:01:30', 'submission_id': '1glgj2u'}
{'comment': 'You forgot misogyny', 'created': '2024-11-07 19:50:00', 'submission_id': '1glgj2u'}
{'comment': "Thank you who knows the reason why she got less votes than Biden maybe less popular or people weren't motivated. I wish people who were freaking out about him winning would calm down. You've already lived 4 years under him you've experienced what he's like to all the people freaking out about project 2025 STOP IT he's condemned it already.", 'created': '2024-11-07 15:19:19', 'submission_id': '1glgj2u'}
{'comment': 'I wish I could move to Minnesota.', 'created': '2024-11-07 07:26:39', 'submission_id': '1glgj2u'}
{'comment': 'Kind of like Santa Claus with a good sense of humor', 'created': '2024-11-07 19:45:21', 'submission_id': '1glgj2u'}
{'comment': 'In 2020 we were still in the fresh hell that was Covid and Trump’s inadequacy and idiocy was on full display. It was fresh in ppl’s minds and enough ppl didn’t want to deal with it anymore. Ppl have a short memory and Jan 6 was too far in the back of ppls minds to have the same effect. The dems didn’t cater their message to what the masses were screaming about (as much of a bullshit reason as that is it’s still true) aka the economy. Even tho the economy was doing a good job rebounding from Covid, ppl still felt it in their wallets, the grocery stores, rent, etc.\n\nAnd rather than voting to protect women, save democracy or what’s just plain “right”, they wanted politicians that they felt like heard their grievances and would do something about it. And that’s one thing Trump is good at. Making ppl’s anger and emotions feel heard and that’s what they wanted, even tho he clearly does not give a single fuck about any of them and won’t *actually* do anything about it. And tbh enough ppl simply weren’t deterred by outright bigotry and vitriol coming straight from the mouth of a presidential candidate. \n\nI’m absolutely gutted. And I’m finding it hard to find the motivation to go to work or just get out of bed. I’m a black woman. I’ve spent the last two decades being so incredibly politically active. I’ve seen progress in America be slowly chipped away over the past decade and now feel like it will just go in reverse. I’m defeated and just have nothing left. For the first time in my life I feel like my fight is gone. More than half the voters asked for this. They chose “me” over “us” and I don’t know if I have it in me to keep fighting.', 'created': '2024-11-07 08:39:54', 'submission_id': '1glgj2u'}
{'comment': 'Trump lies and he can condemn it all he wants, but he is in on it and he was on his previous term office.', 'created': '2024-11-07 19:49:36', 'submission_id': '1glgj2u'}
{'comment': 'I’m going to keep this as simple as possible. \n\nTrump won because of the economy. Period.\n\nNow, I live in MAGA country, I voted blue & did my part. I’ve explained to them the truth on some economic matters. As well a correcting misinformation. Bottom line? When you got a point they are silent or they just don’t care.\n\nNothing sticks to Trump at this point in time. Even, when we, clearly have the moral high ground , truth & value rights over money depending on the issue. \n\nSo yes, this was a loss because of inflation. Inflation kills presidents. As your average American only cares about their wallet.', 'created': '2024-11-07 06:26:40', 'submission_id': '1glg3a0'}
{'comment': "There's an easier way. Just let Trump do his worst. 100 200 % tariffs; go for it. Deport 11 million people sure why not. Degund department of education? Fine do it. Our economy will implode under this man. Where we failed in 2016 is we allowed him to come out not looking like a complete failure. He was able to save face and continue his lies. We want Maga and the like to die out we must let them do their worst. We can rebuild we can heal but until the now we'll over 50% of this country that either supports him or thinks he's not bad enough to turn out and vote see first hand what an unfit moron he is we can't do anything", 'created': '2024-11-07 13:05:28', 'submission_id': '1glg3a0'}
{'comment': 'America just isn’t what it used to be anymore, we used to be on track for progress but then he-who-must-not-be-named entered the picture', 'created': '2024-11-07 04:14:06', 'submission_id': '1glg3a0'}
{'comment': 'I respectfully disagree. Most Americans support the overwhelming majority of the Democratic party’s platform, from LGBT rights to abortion to expanding Medicare/Medicare and Social Security to making the rich pay their fair share. Americans, and even MAGAs, support the Democratic party’s platform. The problem isn’t policy, it’s identity. Americans aren’t ready for minorities to actually take part in the American experiment. \n\nKamala had concrete plans to make housing affordable. She had concrete plans to make starting a family affordable. Biden has successfully landed us a recession-free COVID recovery. Every GOP POTUS since over the past 50 years has left their office with the U.S. in a recession. Every ounce of economic data proves that the GOP is shit for the economy and the average American, yet Americans believe the inverse. \n\nWhy? \n\nBecause the Democratic Party also supports social policies—policies that are based on ensuring social equality. This means that Democrats talk about trans rights, gay rights, police brutality. Most Americans aren’t affected by that, but still have to hear the discussions because Democrat politicians still talk about it, because it still exists. Trans people exist. Black people are incarcerated at higher rates than white people, and that still matters. But when most Americans aren’t trans, or black, or *insert specific minority*, they don’t care, they see it as irrelevant, and therefore see the Democrats as out-of-touch, and therefore see the GOP as being focused on the economy.', 'created': '2024-11-07 04:05:44', 'submission_id': '1glg3a0'}
{'comment': 'A big part of the problem is that some rich assholes allowed politics to turn into a reality show. It’s not entertainment. People should be able to just look at the facts and make their decision. It’s a sad state of affairs when people literally need shiny things with no substance dangled in their face, and dick jokes from their politicians.\n\nWe need a lot of good independent news media, and we need people educated on how to inform themselves. Republicans have this massive insane web of influencers and news media. Democrats need to do more of that.', 'created': '2024-11-07 05:17:10', 'submission_id': '1glg3a0'}
{'comment': "Agreed. We need to become the left-wing populist party. Enough of reform and focusing on social justice above everything else. And sorry we can't put a woman forward right now. It's not going to appeal to the more conservative party, especially groups entrenched with machismo culture. Latinos are becoming a huge part of the electorate and we had to admit that they are more socially conservative. \n\nAnd really, fuck the Democratic party's clinging to neoliberalism. That shit is outdated and appealing to NO ONE anymore. Because everyone is financially struggling. Most people don't care about social justice issues when they are having a hard time paying bills. We have to meet them where they're at, which is their wallets.\n\nBottom line: People are financially struggling so much that they really don't give a shit about anything else.", 'created': '2024-11-07 17:08:36', 'submission_id': '1glg3a0'}
{'comment': ">Today, most Americans can't afford to live without working 80 hours a week. -Most Americans are one medical issue away from homelessness. -Many have to choose to either eat, ration their medications, or abandon that medicine altogether. -Young people can't afford housing and forego having families due to financial concerns and struggles. -Many young people think they'll never actually be able to retire. -There is no limit now on how much our corporate oligarchs can donate to elections. -Increases in productivity over the last 50 years have not translated to wage increases for your average American. Hell, the minimum wage hasn't even came close to keeping up with inflation. -By design, those profits/missing wages have instead been siphoned off to the top earners, where we now have the top 1% owning more wealth than the bottom 90%.\n>\nMost Americans are absolutely pissed and feel disenfranchised about our political system, party, nation, and think that in the end their vote doesn't matter. \n\nAnd the voters decided the man backed by billionaires like Elon Musk, who resent having to pay their fair share to support this country, is the answer. \n\nThe issue is the Democrats put forward intelligent, experience people who try to appeal to people by being optimistic and engaging on policy. Our electorate has gotten more ignorant about civics and government, and attach outsized beliefs to the power of the presidency. \n\nThe weaponization of grievance and full throated bigotry isn't how we make this country better, so Democrats don't run on that. Using transgenderism as a foil is not how Democrats choose to win elections. It was a poor decision to not answer back to an ad run thousands of times that the policy being talked about was initiated by the Trump Administration. \n\nThere's an old thought that the people of a country get the leaders they deserve, but no country deserves the inept train wreck that's Donald Trump. But we have him again. With more knowledge of how to further abuse and corrupt the system, and this time with the law on his side, and a cadre of dedicated white supremacists like Steve Bannon and Steven Miller by his side. \n\nAnd with all respect, Bernie Sanders had as much chance of winning the presidency as I have.", 'created': '2024-11-07 04:37:13', 'submission_id': '1glg3a0'}
{'comment': 'Being a devil’s advocate here; Why didn’t the Dems run the video of Katie Johnson detailing her rape by Trump when she was 13?\nI mean…that seems kinda….relevant?', 'created': '2024-11-07 07:52:19', 'submission_id': '1glg3a0'}
{'comment': '[removed]', 'created': '2024-11-07 08:54:59', 'submission_id': '1glg3a0'}
{'comment': 'Well said! You address so many real issues we face.', 'created': '2024-11-07 03:39:00', 'submission_id': '1glg3a0'}
{'comment': "The DNC working together to screw Bernie out of the nom in 2016 was the signal that the Democrats didn't give a single shit what people wanted. If we had an economic populist who could drive young people to the polls in huge numbers, there is the very real possibility that we'd have the most powerful political machine ON THE PLANET right now, all built on grassroots support. \n\nInstead, we've continued to allow the DNC to fellate their mega donors and run people 'whos turn it is' instead of running who can win. The DNC is beholden to no one, and parties aren't regulated by the constitution or anything. The only way they change them is by regular voters starving them of money, openly and loudly decrying their choices, and not voting for their candidates. \n\nNo one can say for sure if Bernie could've won in 2016, but Hillary never had a shot and anyone on the street knew it. We have to start demanding a more progressive platform and lean into the organically popular candidates, or we will continue to get curb stomped. The way to keep the Rs down is to win and implement our overwhelming popular policies, then hang out success around Republican necks.", 'created': '2024-11-07 14:55:12', 'submission_id': '1glg3a0'}
{'comment': "harris just couldn't convince people she would be different than biden. people mostly voted against the incumbent no matter how much character flaws the other has. harris is also from california. california is not well liked despite it having the fifth largest economy of *the world*. not even kevin mccarthy could last as house speaker for a year. that's how much disdain most of the country has for california. dems only love them because they have their votes lol, and pelosi was really savy in getting to the top of the party.\n\nwith that said, newsom (pelosi's nephew) won't be a good candidate for president and vp. '28 should be about winning. shapiro, mark kelly, whitmer, etc.\n\ni also don't agree with it being about gender, race or any sort of unfairness. biden polled really bad. he should have dropped out ahead of the primary. people, myself included, really underestimated the handling of everything. people were already upset with the high prices, border issue and culture war. add on hiding biden's health and skipping the primary to install harris. most dems were fine, but few weren't in addition to independents and winnable republicans.\n\nso it was more about the incumbency, handling of harris' candidacy and she's from california.", 'created': '2024-11-07 05:48:19', 'submission_id': '1glg3a0'}
{'comment': 'Everyone is twisting themselves into pretzels and completely missing the forest for the trees.\n\nAs a political junkie for more than 40 years, I can explain this very quickly. Americans are not engaged beyond their bubble. They pay attention to memes and headlines mostly without reading the article or understanding them. Most of them have no idea who Kamala Harris is. This is why they saw this picture and saw an American icon they were told the Democrats tried to kill… and rent and groceries are high af. It’s that simple.\n\nhttps://preview.redd.it/er8wo9eymgzd1.jpeg?width=1272&format=pjpg&auto=webp&s=b61a38adff040e446cc568fb317b6de659c79356', 'created': '2024-11-07 11:54:38', 'submission_id': '1glg3a0'}
{'comment': 'Every Democrat who has won the White House since 1964 has been a centrist. There is no secret hunger for a Bernie Sanders style socialist out there. We must confront the obvious. America is a fairly conservative country. We must hold the center to keep it from drifting too far right. If you want something more liberal than that in the near future, you will need to move abroad.', 'created': '2024-11-07 17:02:25', 'submission_id': '1glg3a0'}
{'comment': 'Kamala was a very strong candidate with groundbreaking plans to help working people, women and minorities. She isn’t the problem.', 'created': '2024-11-07 22:44:59', 'submission_id': '1glg3a0'}
{'comment': 'If you think 15 million voters didn’t turn out because she’s a woman or not European than you’re absolutely delusional and part of the problem. She lost because she didn’t have an economic message and had no enthusiasm compared to Trump.', 'created': '2024-11-07 15:35:48', 'submission_id': '1glg3a0'}
{'comment': "Well, if inflation kills presidents, then Trump is doomed. His tariffs are going to send it skyrocketing to heights not even seen right after the pandemic. \n\nSo, we'll see if inflation really is the presidency killer, or will Trump dodge this one too like he does everything else.", 'created': '2024-11-07 12:06:18', 'submission_id': '1glg3a0'}
{'comment': None, 'created': '2024-11-07 15:00:26', 'submission_id': '1glg3a0'}
{'comment': 'The problem with that is it will take over four years before everything collapses. By that time, all of the undecided voters are going to say "hey, why is this idiot in office!" Then a democratic president will be elected, but they won\'t have control of the house of representatives so nothing will change. Then everything will collapse and the undecided voter will blame the democratic president and vote republican again.', 'created': '2024-11-08 00:49:04', 'submission_id': '1glg3a0'}
{'comment': ">Most Americans support the overwhelming majority of the Democratic party’s platform\n\nBut they didn't vote, so none of it matters.", 'created': '2024-11-07 07:09:46', 'submission_id': '1glg3a0'}
{'comment': '>The problem isn’t policy, it’s identity. Americans aren’t ready for minorities to actually take part in the American experiment. \n\nThat\'s absolutely true. My 93 year old grandmother, a staunch Democrat, been voting for ~75 years, didn\'t vote this year and in 2008. Why, you ask? In \'08, "I can\'t vote for *him*." This year, "I can\'t vote for *her*." Thinly veiled racism. It\'s the reason why 10-15 million registered Democrats didn\'t turn out and vote for Harris/Walz. They think the same as my grandmother. On paper, they\'re great candidates, then you see a picture, the attitude changes, and you get "I can\'t vote for *them*."', 'created': '2024-11-07 10:46:24', 'submission_id': '1glg3a0'}
{'comment': 'Exactly right.', 'created': '2024-11-07 04:15:08', 'submission_id': '1glg3a0'}
{'comment': None, 'created': '2024-11-07 14:36:12', 'submission_id': '1glg3a0'}
{'comment': 'Ppl think Harris is marxist. Idk where ppl get the idea someone like Bernie could win and i agree with the man lol', 'created': '2024-11-08 01:07:38', 'submission_id': '1glg3a0'}
{'comment': 'You think it owuld have mattered to his cult? Nothing will change their minds.', 'created': '2024-11-07 07:56:44', 'submission_id': '1glg3a0'}
{'comment': 'So as not to further encourage his supporters.\n\nBecause they are like that.', 'created': '2024-11-07 13:10:34', 'submission_id': '1glg3a0'}
{'comment': None, 'created': '2024-11-07 14:56:51', 'submission_id': '1glg3a0'}
{'comment': "Shapiro and Whitmer couldn't deliver their states to the presidential vote. Alas I fear their star has faded a bit.", 'created': '2024-11-07 11:21:49', 'submission_id': '1glg3a0'}
{'comment': 'https://preview.redd.it/a47wixo3ngzd1.jpeg?width=1290&format=pjpg&auto=webp&s=344e8554a3453d45f8ac056eebc66cd95b78cddb', 'created': '2024-11-07 11:55:24', 'submission_id': '1glg3a0'}
{'comment': "No economic message? No enthusiasm?\n\nHarris had extensive affordable housing plans, infrastructure plans, employment plans, plans to support labor and unions. She spoke about this and everything with energy and authority.\n\nTrump had meandering, incoherent ramblings about deportation and tariffs delivered with all of the energy of a sleeping cat in his last appearances. \n\nIt wasn't policy, and if it was messaging it was just about hate and scapegoating.", 'created': '2024-11-07 17:48:22', 'submission_id': '1glg3a0'}
{'comment': 'His supporters I’m sure will find a way for it to not to be his fault like everything else.\n\nAlso he won’t be able to run anyway after this term.', 'created': '2024-11-07 16:18:39', 'submission_id': '1glg3a0'}
{'comment': 'I dont think he\'d actually be able to accomplish anything. All we have to do is stay out of their way and their base will be pissed at them for once instead of us for stopping all his "beautiful policies"', 'created': '2024-11-07 17:37:15', 'submission_id': '1glg3a0'}
{'comment': "It really shouldn't take that long. Last time Trump knew to delay tariffs just to avoid hurting Christmas sales. Deporting, sure that will take time but once it starts people will react to being asked for papers everywhere. Tariffs, however, have an almost instant impact and don't require anything but his enacting them. If dems were smart they'd start pushing him if not daring him to enact those across the board tariffs.", 'created': '2024-11-08 02:58:33', 'submission_id': '1glg3a0'}
{'comment': 'They will vote though, for a white man. Americans would rather see a racist convicted rapists in the White House and allow to elect a party that will take away food stamps, privatize social security, Medicare/medicaid, privatize public education, than vote for a black woman. They care about policy, but not nearly as much as the racial identity of the politicians themselves.', 'created': '2024-11-07 13:27:35', 'submission_id': '1glg3a0'}
{'comment': 'Exactly. I keep going over the voting turnout between 2020 and 2024 and looking at the candidates. This is the only thing that explains why 15 million people didn’t vote for Kamala but did for Biden.', 'created': '2024-11-07 13:24:32', 'submission_id': '1glg3a0'}
{'comment': 'Marx is correct—the elites are using social issues to divide us while they take the last pennies out of our pockets. All of these MAGAs care more about not wanting to hear about trans people and “my pronouns are Xey/Xem” than they do that they’re now going to lose their food stamps, their government healthcare, their Social Security, and that all of their electronics are going to cost 400% more. But hey, at least your representative isn’t fighting for a gender-neutral restroom in your school.', 'created': '2024-11-07 04:18:55', 'submission_id': '1glg3a0'}
{'comment': 'As I’ve said before, a democratic nominee could descend from heaven with angel wings and these morally bankrupt republicans wouldn’t vote for them. The hate and stupidity is way too strong.', 'created': '2024-11-07 17:20:53', 'submission_id': '1glg3a0'}
{'comment': 'I hear you. And I agree, I don’t think winning republicans is the direction Dems should go. I think they need to strategize and speak to their base and left leaning independents. And while I personally feel like ppl shouldn’t need catered to and they should be able to see the impact and read up easily, that’s just not where the electorate is. The average low info American voter wants this shit spoon fed to them in a way that easily translates to impact on their daily lives. That’s what Rs have done, clearly mostly lies but a lot of these ppl fucking believe their bs.', 'created': '2024-11-07 17:55:15', 'submission_id': '1glg3a0'}
{'comment': "i disagree. it's not their job to do what harris, in hindsight, should have done. finish the campaign by strongly messaging and contrasting the economic and border policies. instead, harris chose abortion and democracy.", 'created': '2024-11-07 11:36:44', 'submission_id': '1glg3a0'}
{'comment': None, 'created': '2024-11-07 15:02:17', 'submission_id': '1glg3a0'}
{'comment': 'Jd Vance his makeup wearing frjedn will run in 2028', 'created': '2024-11-08 00:03:59', 'submission_id': '1glg3a0'}
{'comment': "I love them both and have voted for 1 but they'd be stronger candidates if they could have rallied their states' voters. I agree that they didn't have the job of the presidential messaging, but they did have the job of getting votes out. We're agreed on Mark Kelly.", 'created': '2024-11-07 11:44:21', 'submission_id': '1glg3a0'}
{'comment': "I thought her economic policy was sensible enough and the added bonus of abortion and democracy would help. I really thought January 6th opened people's eyes but it clearly didn't.\n\nPeople are voting only with their wallets right now.", 'created': '2024-11-07 17:02:29', 'submission_id': '1glg3a0'}
{'comment': '2024 turnout was less than 2020 in many states including Texas.', 'created': '2024-11-07 21:16:50', 'submission_id': '1glg3a0'}
{'comment': "just anyone not from california. even if pelosi tries something lol. newsom's not gonna win. he's gonna hurt the front of the ticket if vp as well.", 'created': '2024-11-07 11:47:10', 'submission_id': '1glg3a0'}
{'comment': "that's what is probably gonna burn people more. assuming democracy was more important. the polls all throughout the campaign said economy and border. abortion and democracy were lower.\n\ni think harris felt the surge of women voters and the gaffe's of trump's campaign and decided to end strong on those things rather than what the polls and hindsight said she should have.", 'created': '2024-11-08 00:55:16', 'submission_id': '1glg3a0'}
{'comment': 'You should have posted a picture of a janitor. Democrats are the clean up crew. Bush caused the financial crisis and Trump mangled the pandemic+race riots, and only then democrats were able to win, only to lose to Trump once things were cleaned up.', 'created': '2024-11-07 05:12:20', 'submission_id': '1glg1f7'}
{'comment': 'Hell yea!! We got this one step one day.', 'created': '2024-11-07 03:46:53', 'submission_id': '1glg1f7'}
{'comment': 'We will not got back! We need to keep fighting just like Vice President Kamala Harris told us to.', 'created': '2024-11-07 06:03:46', 'submission_id': '1glg1f7'}
{'comment': 'If democrats ever come back to power, they need to be ruthless with the republican party. The republican party needs to be uprooted and gutted. All the fuckers that support trump, vance and project 2025 need to be gone.', 'created': '2024-11-07 03:46:01', 'submission_id': '1glfu87'}
{'comment': 'My perspective as a European on the future of the Democratic Party \n\nI am from Denmark (europes Venezuela) \nWe had the danish peoples party become massive in 2014. They had very conservative politics regarding immigration and law. \nOn the other hand they had very left wing economic plans such as expanding healthcare for elderly. After 2014 Denmark election every party, even left wing parties who identify as socialist started to adopt a similar border/immigration policy. Only after that, the danish peoples part become irrelevant, and it is the only way that the Democratic Party can regain their strength. I bet you that is what the working man wants, free healthcare, free eduction for his kids, and tough border policy. \nMy final point is, that the bigger a problem immigration gets, the more the republicans will succeed', 'created': '2024-11-07 05:40:18', 'submission_id': '1glfu87'}
{'comment': 'I don’t buy the turnout argument. Much of that, pending on post-election PEW analysis, in my opinion might just be turnout from solidly blue or red states where people didn’t bother. \n\nThe swing state turnout rivaled that of 2020. That tells me Trump converted a lot of people bc I doubt he pulled out new voters from the woodwork.', 'created': '2024-11-07 03:48:40', 'submission_id': '1glfu87'}
{'comment': '\nAmerica, as a nation, actually agree on a few things, and a party that campaigned on those points would win comfortably. \n\nHowever, those things would affect BIG corporate donations to these parties that these corporate entities have in their pockets.', 'created': '2024-11-07 03:50:03', 'submission_id': '1glfu87'}
{'comment': '1000000% agree with 3, 4, and 5.', 'created': '2024-11-07 05:52:57', 'submission_id': '1glfu87'}
{'comment': 'These are tactical preparations for a future electoral campaign. We can no longer rely upon our institutions to save us. Things are quickly going to spiral into insanity, and we need to be thinking in terms of nonviolent resistance.', 'created': '2024-11-07 06:51:56', 'submission_id': '1glfu87'}
{'comment': 'This is it, this is the end of US Democracy. Trump got the Senate, the White House and likely is going to get the House as well. All of the safeguards they put in place after 2020 to make sure that the Vice President doesn’t have any real power and the certification of election results run smoothly, they can undo that in the first week.', 'created': '2024-11-07 15:26:18', 'submission_id': '1glfu87'}
{'comment': 'First you would need a free and fair election to regain power. I don’t believe we’ll see that again in my lifetime. We’ll be ruled by Trump, billionaire oligarchs like Musk, Thiel and Bezos or Trump’s kids for a generation. \n\nHalf of the country wants to live in an authoritarian dictatorship or religious theocracy; the rest of us are forced to ride along. You won’t have a choice anymore.', 'created': '2024-11-07 15:32:59', 'submission_id': '1glfu87'}
{'comment': 'thank you. i love you and love this community.', 'created': '2024-11-07 17:05:33', 'submission_id': '1glfu87'}
{'comment': "Bold of you to assume there'll be future elections.", 'created': '2024-11-07 11:19:49', 'submission_id': '1glfu87'}
{'comment': "The Democrats can support the LGBTQ community without cramming it down people's throats that don't agree with all of it. You aren't even allowed to have an opinion on the subject.", 'created': '2024-11-07 05:14:07', 'submission_id': '1glfu87'}
{'comment': 'The 14 million votes were fraudulent.', 'created': '2024-11-07 03:59:04', 'submission_id': '1glfu87'}
{'comment': "The Democrats and government had more than one chance to stop trump from running. Our government, Democrats included, FAILED us, starting with Garland. Government is supposed to protect us from exactly this sort of thing. I can't believe they actually let a fascist run and WIN.\n\nLet's wake up to the fact that we just saw our last, fair, genuine presidential election. Dictatorship is here to stay for a long time.", 'created': '2024-11-07 04:38:25', 'submission_id': '1glfu87'}
{'comment': 'With climate change, the border is rapidly going to get much worse. Here, the democrats could have merged those two topics into one coherent message. Rather, they were squishy on the border and ignored climate change.', 'created': '2024-11-07 15:35:22', 'submission_id': '1glfu87'}
{'comment': 'From what I see the problem was that too many men have a problem with a woman having power.', 'created': '2024-11-07 04:36:22', 'submission_id': '1glfu87'}
{'comment': 'Economy sways many and always will', 'created': '2024-11-07 04:17:27', 'submission_id': '1glfu87'}
{'comment': 'Well the billionaires really can’t have the United States and the capital structure collapsing as well as chaos here so they all have a vested interest.', 'created': '2024-11-07 13:18:04', 'submission_id': '1glfu87'}
{'comment': 'Democrats don’t cram LGBTQ politics down the throat of anyone. Republicans have successfully framed it like this, and your post is case in point as to how effective that’s been as a political strategy.', 'created': '2024-11-07 12:50:45', 'submission_id': '1glfu87'}
{'comment': 'I don’t think they crammed it down anyone’s throats. I barely heard anything out of Harris about trans rights', 'created': '2024-11-07 12:48:03', 'submission_id': '1glfu87'}
{'comment': "If they were, the Trump cult would've produced evidence of that years ago, dumbass.", 'created': '2024-11-07 04:02:22', 'submission_id': '1glfu87'}
{'comment': 'You wish', 'created': '2024-11-07 04:03:49', 'submission_id': '1glfu87'}
{'comment': 'It’s been 4 years and no evidence. Keep walking', 'created': '2024-11-07 13:29:45', 'submission_id': '1glfu87'}
{'comment': 'What exactly could the Biden admin and “Democrats” have done to prevent Trump from becoming the Republican candidate?', 'created': '2024-11-07 15:00:16', 'submission_id': '1glfu87'}
{'comment': 'There it is!! Thank you! Under-estimation of misogyny. A male with the exact same campaign would have won. No need to proceed with the post-mortem. It’s right there in the numbers.', 'created': '2024-11-07 06:48:20', 'submission_id': '1glfu87'}
{'comment': 'Nevertheless, the Democrats need to figure out how to get some of those men to support them', 'created': '2024-11-07 10:16:13', 'submission_id': '1glfu87'}
{'comment': "Explain them? It had never happened before Biden and won't happen again!", 'created': '2024-11-07 04:07:14', 'submission_id': '1glfu87'}
{'comment': 'Umm start the indictment years ago. Limit the powers of the executive and make it mandatory to have a trust, release taxes, and more ethical laws', 'created': '2024-11-07 15:20:15', 'submission_id': '1glfu87'}
{'comment': 'Misogyny and bigotry played a part but not as big of a part as the economy did. Your average American votes with their wallet and grievances and the Dems didn’t speak to those enough. Informed voters know the economy bounced back better after Covid than the rest of the world, but that doesn’t matter to the low informed voters who just know they can’t buy as much food at the grocery store and can barely pay their rent. Instead of blaming corporate greed and understanding inflation, they blame the party in power at the time. If Dems strategy and message revolved more around that, it would’ve affected more of the apathetic and low information voters.', 'created': '2024-11-07 09:07:12', 'submission_id': '1glfu87'}
{'comment': 'Dude, you’re the one making the claim, you’re the one that needs to show proof.', 'created': '2024-11-07 12:49:20', 'submission_id': '1glfu87'}
{'comment': 'You’re being unrealistic. Qualifications for president are set by the constitution. The Republican Party could have nominated Trump if he was in prison. Presidential powers are also set by the constitution and have been adjudicated for centuries. Congress’s only constitutional recourse for unethical behavior is impeachment and conviction.', 'created': '2024-11-07 16:11:42', 'submission_id': '1glfu87'}
{'comment': 'I mostly agree with your points. This election was the classic- “it’s the economy stupid”. The thing I challenge is the idea that Dems didn’t have a good answer on it. I don’t think it mattered… the people who voted Trump only have blame for Dems for high housing prices and higher costs.', 'created': '2024-11-07 13:27:17', 'submission_id': '1glfu87'}
{'comment': 'The white and Latino male vote spoke volumes and a damning indictment. Harris had caught up to Trump on polling regarding the economy.\n \nThe struggle itself was real, but it was well-communicated what the consequences of each would be on the economy and what their plans were.\n\nYou can’t poll misogyny and bigotry, it’s a lagging indicator.', 'created': '2024-11-07 14:51:00', 'submission_id': '1glfu87'}
{'comment': 'I don’t give a shit about republicans… I’m talking about democrats. Kamala was picked as Biden VP because he wanted a black woman and at the time she was the most desirable considering she ran against him. Eventually leading to her nomination. I’m saying a primary should have taken place and Kamala wouldn’t have been anywhere near the ticket. That’s just facts.', 'created': '2024-11-07 18:57:02', 'submission_id': '1glfu87'}
{'comment': '>Qualifications for president are set by the constitution.\n\nYup. Note that about a thousand Jan6 thugs have been sentenced to prison for "seditious conspiracy". That conspiracy was manifested as the Jan6 rebellion/insurrection/sedition. Trump later said publicly that he will pardon them all. Article 14, Section 3 says no one who gives aid or **comfort** to anyone who engages in rebellion may hold any government office. So all it would take is a federal judge to declare that according to Article 14, Section 3 Trump may not run for office since all the above requirements were met.', 'created': '2024-11-07 20:52:13', 'submission_id': '1glfu87'}
{'comment': 'Yeah I agree with that. Messaging probably wouldn’t have mattered bc dems were going to get blamed for that regardless since they were the party in power.', 'created': '2024-11-07 15:49:16', 'submission_id': '1glfu87'}
{'comment': 'I hear you. I’m a black woman. The misogyny and bigotry was my biggest concern when Biden stepped down and before Harris was official. It definitely played a part but I think to solely blame it on that is shortsighted as there was more than just one thing at play. 45% of women also didn’t vote for Harris. Some of that was still misogyny, but not all of it. Americans have been hearing about democracy falling and the divisive rhetoric for almost a decade now. A lot of ppl are kind of numb to that now and just don’t care as much about democracy falling, they care about their day to day - buying groceries, paying rent, etc. I thought Harris would’ve been a phenomenal president and she didn’t have to win my vote bc I knew the existential crisis that was Trump, but even I didn’t think the continuation of highlighting her plan to make it easier to buy a house and start a business was the best way to go when ppl are screaming about the cost of groceries, gas and rent. That’s just my opinion, I know we all have different thoughts on what happened. But ZERO doubt that the bar was set ridiculously higher for her bc of the misogyny and bigotry.', 'created': '2024-11-07 16:39:12', 'submission_id': '1glfu87'}
{'comment': 'But many of my friends, neighbors, peers, coworkers are in the MAGA cult.', 'created': '2024-11-07 03:59:10', 'submission_id': '1glfmla'}
{'comment': 'We lost. Do not deny the election results. We fucking lost and it sucks. But don’t give in. Don’t be racist. Don’t call 911 on everyone you come across who doesn’t speak perfect English. Don’t beat your wife or be mean to anyone who doesn’t agree with your opinion simply because you disagree.. \n In other words. Don’t be like them. We lost. But MAGA sux', 'created': '2024-11-07 04:55:06', 'submission_id': '1glfmla'}
{'comment': 'The time has come to steel yourself against your imaginations of the worst, and let go of your imaginations of how it could be best. Imaginations are not the rule of the day. Our duty is to protect the vulnerable and speak truth always.', 'created': '2024-11-07 03:27:19', 'submission_id': '1glfmla'}
{'comment': 'I don’t have the energy to fight anymore.', 'created': '2024-11-07 07:55:37', 'submission_id': '1glfmla'}
{'comment': "It's time to remember The Resistance from the first presidency. \n\n[https://en.wikipedia.org/wiki/The\\_Resistance\\_(American\\_political\\_movement)](https://en.wikipedia.org/wiki/The_Resistance_(American_political_movement))", 'created': '2024-11-07 03:56:59', 'submission_id': '1glfmla'}
{'comment': '> Phaemon\'s dog was right.\n\nI\'m done. We\'ve lost, the USA has lost, the World has lost. Nothing we do now will change anything. \n\nAnything we do is because, like Kent in "King Lear", it\'s better to be on the side of the right and the good, but there will be no victory. But do not delude yourself for one instant that we can win. The USA is too misogynistic and too racist to be saved in it\'s current form.', 'created': '2024-11-07 03:21:50', 'submission_id': '1glfmla'}
{'comment': 'Hm. Let me guess—you’re probably married and/or a white male. **Honestly, from one Democrat to another, get real and cut it out.** This kind of gaslighting only makes things worse. It’s frustrating enough to make me consider leaving the party if this is the type of response we’re offering.', 'created': '2024-11-07 07:25:53', 'submission_id': '1glfmla'}
{'comment': 'They’re going to shut down all avenues of resistance. Make no mistake.', 'created': '2024-11-07 08:00:13', 'submission_id': '1glfmla'}
{'comment': 'Are we supposed to keep donating or what?', 'created': '2024-11-07 04:12:45', 'submission_id': '1glfmla'}
{'comment': 'Fuck it.', 'created': '2024-11-07 04:32:01', 'submission_id': '1glfmla'}
{'comment': 'Stupid', 'created': '2024-11-07 04:43:54', 'submission_id': '1glfmla'}
{'comment': 'Using this post to encourage people to get out and run for office! That includes library boards, city and county councils, assessor- everything! If you go to Run for Something they can show you what is next up on the ballot.', 'created': '2024-11-07 07:50:21', 'submission_id': '1glfmla'}
{'comment': 'Just beginning?? I’m a black woman. I’ve been fighting for two decades. If ppl think the fight is “just beginning” that’s why we’re losing said fight. I’m defeated. I’m done fighting for people who don’t want to be fought for. Happy to let others who apparently didn’t know there was a fight going on pick up and lead the fight for a while. If that actually happens, maybe I’ll gain some motivation back to keep fighting. But I won’t hold my breath for either of those things to happen.', 'created': '2024-11-07 09:11:07', 'submission_id': '1glfmla'}
{'comment': None, 'created': '2024-11-07 03:52:27', 'submission_id': '1glfmla'}
{'comment': 'La luta continua!', 'created': '2024-11-07 07:40:24', 'submission_id': '1glfmla'}
{'comment': "Therapist here. I'm just sharing a post I wrote for those who may be struggling. ❤️ [https://hootiepatootieblog.com/handling-difficult-election-result](https://hootiepatootieblog.com/handling-difficult-election-results/)", 'created': '2024-11-07 09:23:17', 'submission_id': '1glfmla'}
{'comment': 'People change. GOP is notorious for thinking only about themselves. When MAGA policies hurt them, they might change. Trump is old and not in great shape. He was showing some bad signs during the campaign.', 'created': '2024-11-07 20:55:53', 'submission_id': '1glfmla'}
{'comment': "That's why we have to keep our chin up. If they start to fall into a dark place, we have to reach out for them. Give them something to return reality to and bring them back to normal. I thought it was our final fight as well, but it has only begun.\n\nI know it's not an ideal thing to do, but I think we can be stronger if we start by making sure people who come back to their senses feel welcomed. Even if they don't agree with you politically, at least returning to civil politics discussion would go a long way. We don't want to alienate them even further.", 'created': '2024-11-07 11:25:08', 'submission_id': '1glfmla'}
{'comment': 'Same. I’m done. I have no fight left.', 'created': '2024-11-07 09:16:50', 'submission_id': '1glfmla'}
{'comment': "Nope. Fed govt is compromised, but states aren't. We start there and work to secure seats with progressives and dems. Im sorry, but we need firebrand dems who spit vitriol and talk about money to appeal to masses then pass liberal ideology just like reps do to pass fascist ideology.", 'created': '2024-11-07 03:58:23', 'submission_id': '1glfmla'}
{'comment': 'That’s exactly what I said America is too racist and misogynistic', 'created': '2024-11-07 04:48:51', 'submission_id': '1glfmla'}
{'comment': 'Then we fight to pull its head out of its ass.', 'created': '2024-11-07 05:46:31', 'submission_id': '1glfmla'}
{'comment': 'For real. The fight is just beginning?? Where the *fuck* have they been the last decade??', 'created': '2024-11-07 09:16:26', 'submission_id': '1glfmla'}
{'comment': "I don't think the whole rely on state laws thing is going to work. Republicans having been preaching states rights only because they weren't in power. They aren't just going to be satisfied with policies in red states.", 'created': '2024-11-07 15:58:55', 'submission_id': '1glfmla'}
{'comment': 'You are 100% right. I feel the same way and wish their upbeat cheer would end.', 'created': '2024-11-07 07:29:00', 'submission_id': '1glfmla'}
{'comment': 'FAFSA and Pell grants are part of the federal DoE which he has pledged to cut. Yes it’s gone. Elections have consequences and unfortunately this one is going to have A LOT of them.', 'created': '2024-11-07 03:49:39', 'submission_id': '1glfdj5'}
{'comment': 'He will eliminate doe and Pell grants', 'created': '2024-11-07 05:01:37', 'submission_id': '1glfdj5'}
{'comment': 'I don’t want to be an alarmist, but since the election has concluded, right-wing pundits and Trump affiliates have fully endorsed Project 2025 (tho they are still being sly about it). \n\nIf it’s within those 900 pages, you should be concerned.', 'created': '2024-11-07 03:31:31', 'submission_id': '1glfdj5'}
{'comment': "Generally speaking, I don't think anything you're going to hear about the potential fears of another Trump term are going to be fear mongering. The only limitation is how much they can get done in a single term. And they might even remove that much.", 'created': '2024-11-07 03:45:32', 'submission_id': '1glfdj5'}
{'comment': 'It’s not the only way. You can talk to your guidance counselor and apply for scholarships. Also, when accepted your college of choice may have scholarships or aid. You may also look into low interest loan options. Loans can be helpful but you need to check interest rates/terms. Please continue on your journey and seek intelligent adult counsel!', 'created': '2024-11-07 03:38:34', 'submission_id': '1glfdj5'}
{'comment': 'Well, do you really need a costly education to replace an illegal immigrant who took your "great American job?"\n\nI think they have a plan...or at least a concept.', 'created': '2024-11-07 13:53:53', 'submission_id': '1glfdj5'}
{'comment': "You will still get financial grants and loans but the downside will probably be that it will cap out at a lot less than it did in the past. The other big one is loan forgiveness. That's out the window now unfortunately.", 'created': '2024-11-07 03:50:03', 'submission_id': '1glfdj5'}
{'comment': 'and the interest rates will be insane. don’t give up your dreams of higher education. it’s what the other side wants. and they will push boundaries even before he’s sworn in so make your voice heard and protest in any way that you’re able.', 'created': '2024-11-07 13:42:32', 'submission_id': '1glfdj5'}
{'comment': 'Well they need to change something, and the sooner the better. Get on alternative media too -- MSM is worthless, take a note from Obama and embrace the internet.', 'created': '2024-11-07 03:03:19', 'submission_id': '1glf04z'}
{'comment': 'You can’t fight lies and propaganda with truth .. these networks are the cancer — truth is not truth to these cultists … it’s done … only way is when their faces get eaten and everyone has to suffer together\n\nRussia very happy', 'created': '2024-11-07 03:44:15', 'submission_id': '1glf04z'}
{'comment': 'Need a populist', 'created': '2024-11-07 03:08:23', 'submission_id': '1glf04z'}
{'comment': 'They should change tactics and actually go into the poor, rural counties in which Donald Trump dominates.\n\nThese people are so much better served by liberal policies, and in many cases, depend on programs and government agencies championed by libs at the federal level.\n\nGet your hands dirty and attack his base. It should logically be yours, anyway. He’s merely tapped into their lack of education and ignorance. That’s not hard to overcome if you go in there and meet them where they’re at.', 'created': '2024-11-07 03:54:11', 'submission_id': '1glf04z'}
{'comment': 'Just focus on issues, Economy, Immigration Reform & Border Security, Healthcare, and Education', 'created': '2024-11-07 03:35:55', 'submission_id': '1glf04z'}
{'comment': 'Core base \nObviously that is the only way we can win. \nBut we have to define what our core base is before we start with that strategy. The exit polls show one thing, but you can get more white women if you start now.', 'created': '2024-11-07 02:37:31', 'submission_id': '1glf04z'}
{'comment': 'What even is the democrats core base? We have been using the California "rainbow coalition" since Reagan. But that has given the Republicans a distinct advantage in the electoral college, and made it very easy for us to lose groups since every part of our coalition disagrees with every other part. We need a to build a new more ideologically consistent coalition. Not double down on what didn\'t work', 'created': '2024-11-07 03:53:24', 'submission_id': '1glf04z'}
{'comment': "I'd say focus on issues, not demographics", 'created': '2024-11-07 03:15:14', 'submission_id': '1glf04z'}
{'comment': 'There seems to be a difference in the way both parties communicate with their constituents. The Dems speak with this lawyeresque high professor kind of language while the Magats speak like 2nd graders, a lot of words that your basic dumb downed followers can understand.', 'created': '2024-11-07 06:31:37', 'submission_id': '1glf04z'}
{'comment': "Harris didn't have much choice, given her super short run, but Dems should give up only focusing on swing states and go back to what Obama and Howard Dean when he was DNC chair did, and organize a 50 state strategy with field offices and volunteer canvassers everywhere there are voters. \n\nStop ceding any state to the GOP. Flyover states are never going to ever become blue again until candidates actually start showing up and putting forth an effort to try to get them back. There are too many Dems running for office and dem voters in these states that rightly feel abandoned. I know a LOT of them, and some who not long ago were voting for Obama and Clinton and now just voted for Trump.", 'created': '2024-11-07 06:58:53', 'submission_id': '1glf04z'}
{'comment': 'What is the source of this?', 'created': '2024-11-07 02:54:25', 'submission_id': '1glf04z'}
{'comment': 'There are several problems at play, but I think one of the biggest is that the left absolutely sucks at branding, and our messaging and slogans alienate people who might otherwise agree with us. I bet if you asked "do we need to reform the police?" the majority would say yes. If you instead say "ACAB" or "defund the police" you instantly lose half of those supporters because they don\'t stick around long enough to realize they agree with the policy suggestions behind those sentiments. Similarly, I believe (or at least hope) that sexists are a minority and that most people want equality, but when the rhetoric commonly blames and accuses men, you push away some who might have otherwise been easily convinced to join our fight.\n\nAnother major issue is that most people don\'t really fact check, so whoever tells "the truth" first is the one that\'s automatically believed and the other side faces the uphill battle of convincing people that they\'ve been fooled. The Republican Party knows this and capitalizes on it. They hit hard and fast with a barrage of lies that sound convincing, and it works every time. This is why "when they go low, we go high" doesn\'t work; we can\'t beat them at their own game because we aren\'t playing the same game. Democrats need to get better at going on the offensive and doing so early and often.\n\nTL;DR I don\'t think who we focus on matters as much as how we\'re reaching out to them.', 'created': '2024-11-07 05:51:26', 'submission_id': '1glf04z'}
{'comment': 'Maybe stop salami slicing the electorate and focus on the working class?', 'created': '2024-11-07 08:34:10', 'submission_id': '1glf04z'}
{'comment': "We need to be authentic and stick to our progressive principles. People don't want to be pandered to -- they want real candidates.", 'created': '2024-11-07 03:11:31', 'submission_id': '1glf04z'}
{'comment': 'Can we just finally acknowledge that Black women are now and have always been the base of the party? Like, *the base*. What happened to "vote like a Black woman"? \n\nAs far as I\'m concerned Black women should lead this party because what\'s good for them is good for *all of us*.', 'created': '2024-11-07 03:39:54', 'submission_id': '1glf04z'}
{'comment': 'Democrats need to:\n1. Have a primary\n2. Be quiet on fringe elements avoid celebrities. It doesn’t matter if an especially woke portion of college kids or Swifties like your message: those people don’t vote in significant numbers and they are fickle.\n3. Get a simple platform and drive that message consistently (pro union, pro medical care, pro balanced budget, pro small businesses, pro environment, pro education)\n4. Many men feel like victims of a system that has supported every group of people except themselves and young men in general are falling behind. That is the core MAGA demographic. It needs to be addressed.', 'created': '2024-11-07 06:28:09', 'submission_id': '1glf04z'}
{'comment': 'They’re too fucking nice. It’s time to start using the same tactics as the pubs and stoop to their level. I didn’t listen to her concession speech because I don’t think she should have. She should have done the same tactics and then some. Pulled out all the stops and scared the shit out of him. \n\nNope. We hand them the keys back that we had to get out of the trash 4 years ago.', 'created': '2024-11-07 13:07:52', 'submission_id': '1glf04z'}
{'comment': 'White women broke for Trump again, but Dems will blame black men again and give white women a free pass as is tradition.', 'created': '2024-11-07 04:40:48', 'submission_id': '1glf04z'}
{'comment': "Ignoring the majority wouldn't be a good plan either. Their better bet is to create a platform that actually focuses on key issues instead of avoiding them. Immigration and the economy were the priority topics this election and Harris didn't have an adequate answer for either of them.", 'created': '2024-11-07 04:16:54', 'submission_id': '1glf04z'}
{'comment': 'Democrats should not try to elect a female president for at least 12 years. Unfortunately.', 'created': '2024-11-07 04:12:15', 'submission_id': '1glf04z'}
{'comment': "I'm not sure right now. Given time, I'm sure we all would come up with a singular plan, but I love how everyone is conversing about this in a constructive manner. There are so many great ideas. That's what makes this country great. We don't need to make it great again. It was already great. \n\nI lost hope yesterday, but today, some of the hope I lost came back. Thanks to all of you. All is not lost. There will be better times ahead. We must stay strong and never give up.\n\nHaving said that, all I know as of this moment is that something needs to change, whether it be about the messages that are conveyed to the people of this wonderful country, on whom we focus, how we are conveying the messages along with any tactics, social media and networks being used. However, we should most importantly not exclude certain groups and only focus on others but rather learn how to better connect with those who need it and who would shift this already great country back into the light.", 'created': '2024-11-07 06:05:32', 'submission_id': '1glf04z'}
{'comment': "I'd rather we first focus on ensuring that our democracy is preserved at all. \n\nWe can't normalize what has happened here, IMVHO.", 'created': '2024-11-07 08:02:02', 'submission_id': '1glf04z'}
{'comment': 'They need to learn to talk to people and not at them. That means talk to everyone, even people in the red states. Everyone. But all to them, and while they’re at it stop the goddamn scolding.', 'created': '2024-11-07 12:50:25', 'submission_id': '1glf04z'}
{'comment': 'No. Democrats should try to appeal to white men, especially young men, by talking about the economy and the male loneliness crisis. We already have the votes of black men and most women secured. Now we have to expand into the demographic that cost Harris the election', 'created': '2024-11-07 02:45:00', 'submission_id': '1glf04z'}
{'comment': 'YES! Bernie won Vermont, AGAIN. He just basically said the same thing about the general election, again, like he did after 2016. Clearly, the trope from 2016/2020 of “tired of an old white guy” ( I do not agree with this but it’s obviously born out in data) is not true for the general electorate. He would’ve trounced Trump in the general election of 2016. And most likely we’d have won another term because he is an actual populist. He has nothing but support, policy, political clout and the political will to help the working class. The DNC and their donor class sabotaged him at every turn because they also do not a f*** about you and I and working class people.', 'created': '2024-11-07 07:39:03', 'submission_id': '1glf04z'}
{'comment': 'I think one thing that might possibly have been overlooked by the Democratic Party as a whole is the assumption of a guaranteed vote from women due to Roe. White women were 52% republican (some of that was probably husband pressure). \n\nBut for example, some women who are not child-bearing age may not care as much. Or who are in a marriage/relationship where they have already had all the kids they’re going to have and had already taken permanent birth control measures. Even if they may be pro-choice, some other voter issue may have taken precedence for them.\n\nKamala leaned hard into abortion as a main issue, and some voters may have felt she didn’t wade into her stances on economy or foreign policy enough for them possibly.', 'created': '2024-11-07 04:58:54', 'submission_id': '1glf04z'}
{'comment': 'No more centrist bullshit. Anti-War, full stop. Stronger gun regulations. Repeal citizens united. Paid tuition for low income families. No monopolies, checks on unfettered capitalism. Green new deal. New leadership across the board.', 'created': '2024-11-07 05:21:17', 'submission_id': '1glf04z'}
{'comment': "What organizations could people join that would enable us to change the Democratic party? I'm tired of seeing posts with no solutions offered.", 'created': '2024-11-07 04:30:01', 'submission_id': '1glf04z'}
{'comment': 'Trump is a political anomaly who received insane support from *billionaires*, mainstream media, and social media. Which all helped Project 2025 and Christofascist Leonard Leo along.', 'created': '2024-11-07 05:17:30', 'submission_id': '1glf04z'}
{'comment': 'Democrats have a Christian problem. Not sure how it can be solved.\n\n* White evangelical Christians (22% of the electorate) - votes 82% for Trump + they show up\n* Catholics (including most Latinos - 22%) - votes 60% for Trump\n* Other Christians/Protestants (20% of the electorate) - votes 60% for Trump\n\nThat is 64% of the electorate.... And they consistently show up and vote for him. The rest 36% Democratic Party wins somewhere between 70-80% of the votes. But that is not enough. And unfortunately, that 36% contains atheists, pro-choice, LGBT, Jews, Muslims, Arabs, African Americans, etc. There is no unifying thing that will make them come and vote.', 'created': '2024-11-07 09:28:45', 'submission_id': '1glf04z'}
{'comment': 'Trump is a cultural force. 4 years ago the #resistance was a cultural force too. Dems don’t need a cult, but they need to represent a cultural movement.\n\nKamala was same old same old culturally. So she didn’t get turn out. Trump didn’t improve his numbers meaningfully, but Dems didn’t show up because they forgot it was election day. It wasn’t of cultural significance to our sometimes voters.', 'created': '2024-11-07 13:52:45', 'submission_id': '1glf04z'}
{'comment': "Is everyone forgetting that Tim Walz was on the ticket? All this Democrats-eat-their-own navel gazing is a waste of time. Harris-Walz ran a flawless campaign. The problem is Trump/MAGA cult. No political party has had to run against a cult before. That's what we need to figure out.", 'created': '2024-11-07 15:18:24', 'submission_id': '1glf04z'}
{'comment': 'Way too soon. Wait until final vote tallies. She lost PA, WI and Michigan. Walz was supposed to be a difference maker in the Midwest and he wasn’t. It may have been as simple as the wrong VP pick. Shapiro may have delivered PA and he’s a smooth talker. Bottom line I believe she lost because young white men in our country feel lost. They don’t feel like they have any stability. They believed his lies. He will make it worse but they have to see it first hand I guess. After 2 years of his chaos common sense Democrats should regain Congress. Also he will predictably fuck things up again and a democrat will be needed in 4 years to clean up after him. I just hope it’s not because of another “once in a lifetime” pandemic or economic collapse.', 'created': '2024-11-07 03:46:53', 'submission_id': '1glf04z'}
{'comment': 'They need to go all in on a progressive agenda. Fuck this playing to the middle stuff.', 'created': '2024-11-07 03:53:25', 'submission_id': '1glf04z'}
{'comment': 'Honestly, Dems need to work more at having hardcore values. I still voted for them, but a lot of things upset me over the last 4 years that I begrudgingly went along with:\n\n\n- Border Security: This is clearly a huge issue for the other side, why do you insist on letting it be an absolute mess? Executive order that shit and fix what you can. Does the system suck? Yes. Until you can pass bipartisan legislation, don\'t let it run wild. You don\'t have to demonize them, but crossing the border illegally is still a crime, whether you like it or not. \n\n\n- Fiscal Responsibility: Point out companies making record profits, bring the facts to a debate! Don\'t just say "companies are price gouging, show it! You\'re the party of FACTS and science, show us the facts and science! Point out the companies who haven\'t paid a damn in taxes. You literally have the IRS available, private tax records be damned, give us a reason to get angry! If a mega corporation says they employ 6000 people and the 5500 non management hourly workers all get paid ~40,000/yr, and the company makes $500m a year, do the fucking math! A 10k raise for the year for each of those 5500 people is $55,000,000. Do all of those people probably need it? No. Is $10,000 very drastic. Yes. Push for a living wage comparable for the market they are employed in!\n\n\n- For all the good the Social Justice Warrior stuff is... Maybe tone it down. You don\'t need to include abortion rights as a separate topic, or trans affirmative care as a separate topic, loop it together. Body autonomy. America is the land of freedom, only parents of children should decide what their children are allowed to be doing. They shouldn\'t have things forced on them. \n\n\n- Religion is great, keep it out of the government and schools. Separation of church and state. Push for it! I literally **never** heard this topic this election cycle despite this Christian Nationalism being a main aspect of project 2025 and the Republican party as a whole. Everyone has the freedom here to practice what they want, or to not practice. You don\'t need to rely on a religion to teach morality and basic human decency, and relying on it for you personally isn\'t a crutch. \n\n\n- Just because you think that you made no mistakes, doesn\'t mean you didn\'t. When Harris was on the View and stated looking backshe wouldn\'t do anything different while also saying her administration would be different, that was very annoying. People obviously cared about illegal immigration. You wouldn\'t have changed what you did knowing the hindsight? It\'s okay to admit fault in a problem and to be dedicated in fixing it. We are all humans and make mistakes. Insisting you\'ve made no mistakes makes you feel un-human. \n\n\n- For gods sake, make men feel appreciated for the roles they serve. Criticize the rapey ones absolutely, but when you have supporters cheering about all men being trash, or men in general being trash, it really doesn\'t make a welcoming environment. For all of the talk Kamala made in the race about her parents, I hardly *ever* heard about her dad. Maybe he wasn\'t the greatest, I literally do not know. But I heard about her mom literally tons. You have to uplift and point out all the positive role models in your life male or female. Pandering to one side when you are already a woman is just ... Unfathomable. Guarantee if you make it a point to give men gratitude for the role they play in your life, or empower others to thank and praise the men in their own lives for helping them or whatever it may be... You\'ll gain some traction. So many men walk through life and get treated as it\'s a completely thankless job. Thank them where it\'s needed too. \n\n\n- Celebrate the achievements of former democratic presidents while acknowledging their shortcomings. Obama was great, we can\'t ride his coattails forever. He didn\'t do some things as well as he should\'ve. \n\n\n- Stop being anti-gun. Stop with the assault weapons bans. You\'re only banning guns that look scary. Plenty more have immense opportunities for hurt. Similarly, a lot of people, particularly in rural America, strongly associate their identity with firearms. The second you attack their firearms, you are attacking their identity and you shut them out. Is it fully right? No. Is it a compromise this country will have to make for a long time still? Yes. Stop making yourself a demon. The AG from California (state that hates guns) wants to put in an assault weapons ban. That literally just added fuel to the fire that "Californians are coming for your guns".\n\n\n- Similarly with California, stop looking to California for the answer. Silicon valley is not your friend. EVs are not your friend. EVs are still incredibly expensive and an incredible pain in the ass. Stop letting states impose a forced EV mandate when clearly it\'s very unpopular. European nations are also starting to roll these back. \n\n\n- Actually deliver on promises you make to young voters on issues they care about. The one thing Biden did for young people was the student loan forgiveness plan, and that completely fell through. He held up his hands and said "welp, that\'s all I can do." So many people, who voted for him, are rightfully pissed. Even when the supreme court decided that presidents can\'t be held accountable for illegal actions taken in office, he did nothing. Don\'t be afraid to weaponize Republican\'s own agenda and achievements of their party against them. \n\n\n- Make young people a visible part of your administration, whether it be part of the EPA, FDA, FCC, Press Office, etc. Show that you want them around. \n\n\n- Have a coalition of young leaders decide the direction of the party moving forward. No DWS, no Pelosi, no Schumer. AOC, Jeff Jackson, etc are the future of your party and can get young people excited for what\'s to come. Nothing is more annoying/cringe than seeing Schumer on TV acting like he knows what a selfie is or what a "brat summer" is. \n\n\n- Start showing your damn teeth. The Kamala campaign finally started showing their teeth way too late in general. Call it like you see it, post out facts, with either video or transcripts or audio or whatever. Call it like you see it and call out the bullshit. My biggest complaint (and prediction) is that they\'ll see the "being mean" part of this campaign as a failure and reel it back in. That was honestly one of the FEW ways it worked!\n\n\nThere\'s a lot of ways to go about this. And there\'s a lot of enthusiastic people out there, and a lot of angry people. Start channelling that anger *now.*\n\n\nBe the party of anger, of genuine outrage. If something gets out of hand and a show store or a Grocery Store gets looted, call that shit out! Protest behavior does not equal lawlessness. That\'s always inexcusable. \n\n\nI could say so much more... But I\'ll leave my 2¢ here. I\'ll see you all in 4 years when the shit show is over.', 'created': '2024-11-07 06:51:31', 'submission_id': '1glf04z'}
{'comment': "I will preface this with I have nothing against minorities or LGBT.\n\nThat said, pandering to these minority groups who all combined don't add up to either white men or white women alone is a shit strategy. Republicans will hit you every time for pushing too hard on LGBT agenda BS. Every. Damn. Time. Yes, these groups exist. Yes they have and deserve the same rights as everyone else. Leave it at that as that is all that needs to be said. Focus on issues that everyone faces, not niche issues affecting .5% of the population. I'm not saying don't tackle those issues but certainly it isn't what a platform should be built on. As seen even all the pandering in the world doesn't even win over all individuals in these groups, so picking up half or three quarters of what are already a small group isn't enough.\n\nIn short, Trump panders to everyone. Whether he actually gives a shit about any of them or will follow through with his promises is another story.", 'created': '2024-11-07 05:07:53', 'submission_id': '1glf04z'}
{'comment': 'Dems have the policies that are better for 99% of America. They are pro worker, fiscally responsible, focused on healthcare and socially liberal (ie small government and hands off). The problem is that we have so many voters here that want a fascist religious state. \n\nI think doubling down on the pro worker fiscal policies, supporting closing the border, and taking a “don’t ask don’t tell” approach to social issues is the answer. I’m not a fan of this but it’s 100x better that MAGA fascism.', 'created': '2024-11-07 05:17:02', 'submission_id': '1glf04z'}
{'comment': "All I know is we have to change tactics. Because for o me reason or another they're not working. Whether that means to go more progressive I don't know.", 'created': '2024-11-07 03:18:40', 'submission_id': '1glf04z'}
{'comment': 'Yes? I mean the whole “the definition of insanity…”', 'created': '2024-11-07 03:39:59', 'submission_id': '1glf04z'}
{'comment': 'Duh?', 'created': '2024-11-07 04:02:06', 'submission_id': '1glf04z'}
{'comment': 'Dems have always been better for the middle class but they just need to keep showing how much they care. One day people will understand.', 'created': '2024-11-07 04:20:16', 'submission_id': '1glf04z'}
{'comment': 'What base? That’s really the problem. We’ve lost the working class that undergirded our base and we now rely on a hodgepodge of conflicted interest groups. We need to rebuild a new base.', 'created': '2024-11-07 04:32:54', 'submission_id': '1glf04z'}
{'comment': 'First let the Trumpies suffer the consequences. I want to see how these shift once they realize Trump wasn’t fucking around', 'created': '2024-11-07 04:43:52', 'submission_id': '1glf04z'}
{'comment': None, 'created': '2024-11-07 06:49:32', 'submission_id': '1glf04z'}
{'comment': "According to exit polls, Latino men swung hard for Trump. Black men to a lesser extent. Anyone have a read on why? And was it that they flipped or was it that the left leaning people didn't turn out while the right leaning ones did?", 'created': '2024-11-07 09:52:04', 'submission_id': '1glf04z'}
{'comment': 'Who exactly are you appealing to and what are you expecting? The civil service will be replaced with Trump sycophants, they will be the people who will be running these sham "elections." Do you not understand what living under an authoritarian government means? You\'re just like so many other people I see saying "it\'s gonna be a tough 4 years..." Buckle up. This ain\'t just 4 years. Dear Leader and his cronies will be resoundingly re-elected in perpetuity. The yahoos are already whispering about Barron. We\'re in deep, deep, deep shit, friends.', 'created': '2024-11-07 10:33:13', 'submission_id': '1glf04z'}
{'comment': 'I can’t believe this … what’s the source ? I believe it but I want to share more', 'created': '2024-11-07 11:19:08', 'submission_id': '1glf04z'}
{'comment': 'I think the GOP has a base that just shows up to vote like the one issue Christians. These people will never vote democrat even if they offer a better plan and the candidate is not a felon. The anti abortion Christian’s, they will look past a candidate that has other major flaws and vote for them anyways. I heard the Amish came out for Trump. I mean Trump is opposite of the average Amish person in every way, but he received their vote, it’s got to be the one issue abortion. Also, voters have this unproven thought that democrats are not good for the economy. The media, especially Faux News doesn’t help either. Trumps faults needed to be on full display everywhere, most news ignored everything. Harris makes one little error and it’s all over the place.', 'created': '2024-11-07 11:55:07', 'submission_id': '1glf04z'}
{'comment': 'I think they should work on getting out the vote. Trump turned out most of his base but was still short of his 2020 vote count and Kamala fell 14 million votes short of Joe’s vote count in 2020.', 'created': '2024-11-07 12:49:16', 'submission_id': '1glf04z'}
{'comment': "Democrat Party is really into the minorities and has taken the base of white, poor or low-education men for granted and so those folks abandon the Party. The real issue is the other people Democrats champion don't bother to vote so they lose over and over.", 'created': '2024-11-07 13:14:04', 'submission_id': '1glf04z'}
{'comment': 'This will do nothing but move the American electorate further left. \n\nJust wait as Trump starts making cuts to programs like social security, Medicare and removing government agencies like the FDA. \nOr dismantling the ACA. \n\nDon’t forget that in Arizona they had a ballot measure that they voted yes to abortion rights. \n\nAnd Florida voted yes to legalizing recreational marijuana. \n\nThese are very progressive measures. \n\nJust wait until Donald Trump takes more rights and regulations away. \n\nThe American people won’t stand for it during the mid-terms. \n\nthe Trump Administration will finally destroy the Republican Party after this presidency.\n\nDemocrats are about to go on tear.', 'created': '2024-11-07 13:45:05', 'submission_id': '1glf04z'}
{'comment': 'Yes', 'created': '2024-11-07 14:15:01', 'submission_id': '1glf04z'}
{'comment': 'If you have not quite figured that one needs to stop focusing on"base" and focus on good policy that can attract a majority of American\'s even if not ideologically pure.\n\nIn other words, create a new base built upon reasonable and hopefully incremental change.\n\nThat is going the only way to defeat the structural changes that will be put into play to diminish Democratic influence.', 'created': '2024-11-07 14:30:08', 'submission_id': '1glf04z'}
{'comment': 'I believe they (re: Dems) should broadcast their message to everyone regardless of ethnicity, race, gender, sexuality etc. However, they need to be EXACT, because some people from certain ethnicity, race, gender, sexuality etc may not be progressive/open-minded. This is where the issue lies: they need to do some research on which certain types of people from certain ethinicity, race, gender, sexuality etc are progressive/open-minded and which ones arent', 'created': '2024-11-07 14:36:26', 'submission_id': '1glf04z'}
{'comment': "People seem to like extremism who scream out absurdities. Let's just act as shitty as we possibly can, that's apparently what wins the heart of Americans.", 'created': '2024-11-07 14:41:30', 'submission_id': '1glf04z'}
{'comment': 'Look, I don’t think it’s the message. I think it’s a case of cranialrectomitous among non cultist Americans. 15 million did not bother to vote.', 'created': '2024-11-07 14:53:46', 'submission_id': '1glf04z'}
{'comment': "I don't really think it matters anymore. We no longer have a functional democracy.", 'created': '2024-11-07 15:05:31', 'submission_id': '1glf04z'}
{'comment': 'They should start running PSYOPS campaigns just like the Republicans do. Ever since Cambridge Analytica we knew they have been convincing whites that they are being discriminated against. We know they are actively trying to convince Blacks and Latino not to vote. They are playing a mind game that the Democrats can’t even comprehend!', 'created': '2024-11-07 15:09:44', 'submission_id': '1glf04z'}
{'comment': 'We keep asking ourselves how could this happen as if Trump is winning despite his most vile qualities. The truth is Trump wins because of them. Half of this country operates on his level. I’m not sure if there is anything that can be done other than the creation of two countries and that is an idealistic pipe dream. Unfortunately these things need a major reckoning to correct themselves like WW2. For some reason humans can’t see it until millions of ppl die..yay!', 'created': '2024-11-07 15:27:06', 'submission_id': '1glf04z'}
{'comment': 'Democrats highlight class and race 24/7. Not a big surprise that white voters feel uncomfortable (I’m not saying it’s right, but you aren’t gonna get folks to show up for you if they feel guilty, angry, or attacked when you’re around). There’s also a history of Hispanics viewing themselves as white (hence the box: white, non-Hispanic). \n\nClass and race are all around us, but the GOP certainly doesn’t talk about it in the same way. They hardly even utter the words “middle class.” \n\nThey’ve got a guy who is a do-nothing, anti- everything at a time when folks are anti-government and fear change (free healthcare, free higher education, 50k tax cuts for small businesses, price gauging regulations on a free market). \n\nThese are popular for some young folks, not everyone.', 'created': '2024-11-07 15:40:46', 'submission_id': '1glf04z'}
{'comment': 'What the HELL is wrong with White women???', 'created': '2024-11-07 15:43:06', 'submission_id': '1glf04z'}
{'comment': 'Yea no shit.', 'created': '2024-11-07 15:44:33', 'submission_id': '1glf04z'}
{'comment': "I think the college educated class, especially those in the professional class is too small.\xa0 The major question is why aren't we the party of the working class when we support labor unions, progressive taxes, and social safety nets?\xa0 Biden was the most progressive President since LBJ and the most labor friendly since FDR. Harris walked a picket line. Obviously, inflation impacted the working class the most, so even if Biden did do a decent job ending inflation, people still feel the crunch.\xa0 If we go with Bernie, then the problem is our system is just not allowing large changes like Medicare for All, heck even a minimum wage increase wasn't possible. He blames Democrats, but we would have had to abandon some procedural traditions to get things done. So, A dictator that can just snap his fingers sounds appealing to many. Plus, Trump was able to demonize immigrants and pin our problems on them.", 'created': '2024-11-07 15:48:51', 'submission_id': '1glf04z'}
{'comment': "need to start Building from the ground up. I have no Idea who represents me in my state, and that's the point. Republicans did this and that's why they are in power.", 'created': '2024-11-07 15:55:58', 'submission_id': '1glf04z'}
{'comment': 'if my favorite football team gets the shit kicked out of them in the superbowl, i don’t blame the other team. that’s for damn sure.', 'created': '2024-11-07 15:57:36', 'submission_id': '1glf04z'}
{'comment': 'When they start the union busting, remind them', 'created': '2024-11-07 16:04:16', 'submission_id': '1glf04z'}
{'comment': 'They need to stop the centrist bullshit. Go left or go home\n\n\nEdit, a word', 'created': '2024-11-07 17:10:59', 'submission_id': '1glf04z'}
{'comment': "You'd figure trump campaigned hard enough for the dems with Latinos but.. well WTF is all I can offer.", 'created': '2024-11-07 17:14:05', 'submission_id': '1glf04z'}
{'comment': "hate gets votes over hope. don't know how we get out the vote without scarring people now days.", 'created': '2024-11-07 18:13:01', 'submission_id': '1glf04z'}
{'comment': 'Like it or not, white men have the most power and are the second biggest voting block in this country. It would be unwise to ignore them. Some of the concerns of Trump voters are valid and need to be addressed honestly. The majority of the country no longer trusts the Democratic party and that needs to be fixed.', 'created': '2024-11-07 19:03:50', 'submission_id': '1glf04z'}
{'comment': "Where's the White Man's percentage?", 'created': '2024-11-07 19:28:13', 'submission_id': '1glf04z'}
{'comment': 'No, we should pursue pragmatic, helpful policies, period. Mr. Trump will instruct the voters at length in the folly of their decision.', 'created': '2024-11-07 23:31:01', 'submission_id': '1glf04z'}
{'comment': 'Honestly, I think the biggest issue in this race was that many dems didn\'t feel like they had a choice. Kamala Harris didn\'t win the primary, she was thrust in front of us by a candidate that we already didn\'t want, and he said, "Here\'s your new best friend." Don\'t get me wrong, Biden did an exemplary job as president, and I think Harris would have been a great president, but the problem was she didn\'t rightfully win the frontrunner position. The misogynistic majority is disturbing, but given what was at stake, that\'s a completely different and, quite frankly, secondary issue. Any pasty old white man who could have taken the reins as long as he was charismatic enough to beat Trump I would have grudgingly accepted. Another issue was that the projections and the polls lolled us into a false sense of security. Many democrats and/or Independents believed they didn\'t need to vote cause Harris was already winning, and well, look where that got us. Too many democrats voted independent or didn\'t vote at all. We\'re now fucked.', 'created': '2024-11-07 05:56:12', 'submission_id': '1glf04z'}
{'comment': 'Stop anointing leaders and let a fair primary process unfold for start.', 'created': '2024-11-07 07:22:31', 'submission_id': '1glf04z'}
{'comment': 'More like focus on the working class people.', 'created': '2024-11-07 05:15:45', 'submission_id': '1glf04z'}
{'comment': 'When you lose the election bc 15 democrats stayed home, yeah stop having pressers with republicans and trying to appear moderate. Republicans aren’t voting democrat ever. Period. It made zero sense to be seen with the Cheneys', 'created': '2024-11-07 09:10:40', 'submission_id': '1glf04z'}
{'comment': 'I think they need to listen to Bernie and focus on the working class. Become the working people’s party again. Pick up where MLK left off. Grassroots action is needed. Embrace the internet to spread that message. \n\nKing became increasingly critical of our system of “monopolistic capitalism.” He believed that poverty and racial and class inequality were rooted in our economic system. He said we needed “a radical redistribution of power and wealth” in our society, and a “radical transformation of our socioeconomic system.”\n\nBe committed to balancing the economic inequalities and this time make sure it’s even across racial lines. That will help right the ship.', 'created': '2024-11-07 11:49:58', 'submission_id': '1glf04z'}
{'comment': "I do think if dems fail to recapture some white dudes, it's over. They cannot go full-on identiy politics next election cycle. They have to double-down on econ.", 'created': '2024-11-07 04:55:45', 'submission_id': '1glf04z'}
{'comment': 'Yes absolutely. This election was decided by men, and Democrats need to realize their messaging regarding men and men’s issues is both toxic and alienating.', 'created': '2024-11-07 07:24:44', 'submission_id': '1glf04z'}
{'comment': 'Yea, kind of, whatever that means, the democrat cause having clearly already been one that is for all Americans, so it\'s kind of redundant to but whatever you do, don\'t run a woman again (or decrepit guy), that\'s how I predicted the Trump win, and it\'s an "I told you so" no matter how much you down vote -- this isn\'t a fucking game, you can\'t just gamble on making history or pivoting, this is important. \n\nSelf-evidently republicans set the bar so low for men by successfully running an impulsive, corrupt, perpetually lying caricature with dementia against a woman (VP) with zero controversies, that you can more than easily run a suave fella out of Cali now. Well, not "now now," it\'s too late ... but if they *haven\'t* implemented such voter disenfranchisement, in the future.', 'created': '2024-11-07 08:17:14', 'submission_id': '1glf04z'}
{'comment': 'Yeah, a young white male.', 'created': '2024-11-07 09:37:53', 'submission_id': '1glf04z'}
{'comment': 'I can’t prove this, but maybe the Dems should consider NOT harassing the shit out of their voters for six months. \n\nSure, I’m voting blue every time. \n\nBut someone who doesn’t engage much could very easily have been annoyed to the point of not voting at all.', 'created': '2024-11-07 12:35:55', 'submission_id': '1glf04z'}
{'comment': 'When you only focus on your base, you ignore every one else, that’s not a united people approach \nTrump won because he kept his mantra generic and therefore appealed to a greater audience', 'created': '2024-11-07 14:43:13', 'submission_id': '1glf04z'}
{'comment': '[removed]', 'created': '2024-11-07 03:06:30', 'submission_id': '1glf04z'}
{'comment': 'We’re not getting another chance, it over.', 'created': '2024-11-07 03:05:41', 'submission_id': '1glf04z'}
{'comment': "\nWell first they need to figure out why 15M voters didn't turn out. \n\nTry not running a black woman next time.", 'created': '2024-11-07 03:07:31', 'submission_id': '1glf04z'}
{'comment': 'No, they should all go home and let the next generation to do the job.', 'created': '2024-11-07 04:29:05', 'submission_id': '1glf04z'}
{'comment': 'Liberalism is a dead horse. Embrace communism.', 'created': '2024-11-07 08:49:08', 'submission_id': '1glf04z'}
{'comment': 'Take the hint - stop nominating women.', 'created': '2024-11-07 05:09:25', 'submission_id': '1glf04z'}
{'comment': "The problem is that most of what you would call left wing media doesn't exactly like the Democratic party either. They don't embrace them like much of the conservative media does with the GOP. They think they're too far right. It might be easier if a more left wing member started doing it as a means of building rapport for a 2028 or 2032 run but it won't be as easy. \n\nThe other option is to create your own media empire but I don't think the world and the US needs Democratic Fox News. It's also a long term game where you won't see results for about 10 years.", 'created': '2024-11-07 04:53:44', 'submission_id': '1glf04z'}
{'comment': 'Agreed. Jump on that alternative media bandwagon', 'created': '2024-11-07 03:04:20', 'submission_id': '1glf04z'}
{'comment': "Jeff Jackson, NC's attorney general-elect, has been doing just that, and it works. Hope to see him as president someday.", 'created': '2024-11-07 12:09:26', 'submission_id': '1glf04z'}
{'comment': 'She did. Were you not on tiktok? Did you not see the endless interviews she did on podcasts?', 'created': '2024-11-07 10:34:27', 'submission_id': '1glf04z'}
{'comment': 'Nothing can be done now. \nMAGAs made sure that vote was our last.', 'created': '2024-11-07 17:18:19', 'submission_id': '1glf04z'}
{'comment': 'And you especially can’t fight lies with truth when republicans have been defunding schools for years, and we have an anti-intellectual culture.', 'created': '2024-11-07 07:57:25', 'submission_id': '1glf04z'}
{'comment': 'Well Trump has been calling them liars for 8 years now. If the only person they are listening to is telling them "don\'t trust the major news networks." We have a much bigger problem to resolve.', 'created': '2024-11-07 17:43:43', 'submission_id': '1glf04z'}
{'comment': 'You definitely cannot fight lies with deliberately ambiguous truths.', 'created': '2024-11-07 12:37:08', 'submission_id': '1glf04z'}
{'comment': '👍', 'created': '2024-11-07 13:01:51', 'submission_id': '1glf04z'}
{'comment': 'Progressive populism, FDR style but without the racism.', 'created': '2024-11-07 03:36:20', 'submission_id': '1glf04z'}
{'comment': 'It\'s really this simple. Obama ran on Medicare for All and hit it out of the ballpark twice. He got us like 10% of the way there and then Dems started running on "let\'s keep it more or less exactly the same while people continue to lose their homes over hospital bills. I mean, we already did a thing, why should we do more?" This is not winning anyone, clearly. For all the shit they give Republicans for their lack of a plan for healthcare.... What\'s theirs?', 'created': '2024-11-07 03:26:44', 'submission_id': '1glf04z'}
{'comment': 'I think we also need to stop only promising things we think we can deliver and say what we would *want* to do if we could do anything. Their side doesn’t get punished for promising big and not delivering. Meanwhile we’re promising in the weeds policies we think we can realistically get into a budget bill.\xa0\n\nObama was about delivering healthcare to everybody - people knew what that was and could articulate that was his vision in less than a sentence. It was tangible. He couldn’t get it 100% of the way there in real life but people got what his values were from putting it out there as a big idea.\xa0\n\nWe need to be out there with something that big and we need to push it all the time.\xa0', 'created': '2024-11-07 19:37:57', 'submission_id': '1glf04z'}
{'comment': 'People making less than 50k went to Joe, but then flipped this time around, because of the perceived economy. The messaging needs to be that the GOP didn’t fix shit.', 'created': '2024-11-07 04:56:53', 'submission_id': '1glf04z'}
{'comment': 'I think a lot of the issue is people overlooking how weak state level parties are in a lot of red and purple states. This is a huge issue with the state parties in the two places I’ve lived - Missouri and Ohio. They are completely and totally focused on their urban/suburban cores and have totally neglected county level parties and local races outside of the cities. \n\nThat’s such a big mistake. It would be painful, long work and involve taking a lot of losses, but if you get to a point where you’re losing rural places 60-40 instead of 80-20, those margins can start slowly tipping states more competitive. While also giving you a party more in touch with the whole of the country because they are out talking and competing in the whole of the country. I don’t know how to make this happen, but it is so necessary. Republicans have a very strong local politics game in the Midwest.', 'created': '2024-11-07 05:19:51', 'submission_id': '1glf04z'}
{'comment': "Fucking this. These people are literally ignorant, and I'm not saying that at all as an insult. They literally do not know the dem's policies, or they hear about some fearful stuff in smear ads and think it's terrible. They also feel very alienated from the party as a whole precisely because we aren't down there with them. They think we're electing their lives from cities, disconnected from their world and problems and don't feel seen or heard. Credit to conservatives, on a local level, they actually do help out those towns and listen to their constituents on things like drug rehabilitation programs and such.\n\nThe people have spent decades electing conservatives into local governments and created an actual grassroots movement that's deeply rooted there. The reason Trump got so popular is that they felt the people even they elected into the federal government weren't listening to them anymore and they believe Trump is the only person who truly hears them. None of us have met them where they're at or even hear why they would vote for someone like Trump. They aren't all racist bigots, they have very bad actors among them but the average small town republican just sees their towns become poorer and people moving into liberal cities and they feel left behind and unheard. Dems have to at least attempt to make inroads with these people, hear them out on certain things and show their policies can improve their lives", 'created': '2024-11-07 09:32:38', 'submission_id': '1glf04z'}
{'comment': "What drives me crazy is that they push all these ridiculous conspiracy theories when the real ones are staring us in the face. The banking and stock system *is* rigged against us to favor the rich. There *is* a pedophile ring of elites. The earth *is* flat, wait, no, scratch that one.\n\n\nWe should be unrigging the bank and stock systems. We should be going after Epstein's clients. These are real conspiracies that we could be addressing. They're the things that are actually happening, and it's happening at rich people parties in mansions, on yachts, and private islands, not in the basement of a pizza parlor.", 'created': '2024-11-07 10:01:28', 'submission_id': '1glf04z'}
{'comment': "Yeah, I know it sounds obvious, but a lot of what seen shows Latino voters, for example, didn't care about immigration but Democrats appealed to that. Democrats tend to generalize a lot. Reminds me, I think Democrats should start to have more detailed polls by nationality as well. Maybe race within nationality as well for Latinos. Nationality for Asians.", 'created': '2024-11-07 02:40:13', 'submission_id': '1glf04z'}
{'comment': 'The truth is that Dems just need to adopt an issue centric messaging platform instead of demographic centered messaging.\n\nDem policies are popular just not attached to the democrat brand. Abortion for example should’ve been bundled and marketed primarily as a health care issue as opposed to a women’s issue. Same with marijuana, crypto, etc.', 'created': '2024-11-07 03:26:52', 'submission_id': '1glf04z'}
{'comment': 'It shouldn’t be that hard. Like we can still support everyone - say hey, if you are a trans person who is in a polyamorous relationship with a non-binary person and a bi cisgender male, you are not the enemy…..\n\nBut we’ve got bigger fish to fry 🤷🏼\u200d♂️', 'created': '2024-11-07 04:48:36', 'submission_id': '1glf04z'}
{'comment': 'She spoke at length but said very little.', 'created': '2024-11-07 12:39:25', 'submission_id': '1glf04z'}
{'comment': 'Remember that the average American has a seventh to eighth grade reading level. \n\nhttps://www.crossrivertherapy.com/research/literacy-statistics#:~:text=Average%20Reading%20Level%20In%20The,according%20to%20The%20Literacy%20Project. \n\nSo speaking in a more elementary way will appeal to more Americans.', 'created': '2024-11-07 23:05:08', 'submission_id': '1glf04z'}
{'comment': 'Its a Georgia exit poll. Not sure why people are using it as if it was the results across the US.', 'created': '2024-11-07 15:40:06', 'submission_id': '1glf04z'}
{'comment': 'It’s exit polling from 10 different key states, not just Georgia. The description is at the top. \n\nhttps://www.nbcnews.com/politics/2024-elections/exit-polls?amp=1', 'created': '2024-11-07 23:03:23', 'submission_id': '1glf04z'}
{'comment': 'The Dems have *completely* ignored progressives for the past 3 elections.', 'created': '2024-11-07 09:38:59', 'submission_id': '1glf04z'}
{'comment': 'Problem is too many white people basically decide the election. It would be great to be able to double down on black women but there’s just not enough of them.', 'created': '2024-11-07 04:09:11', 'submission_id': '1glf04z'}
{'comment': 'So ashamed to be a white woman.', 'created': '2024-11-07 13:35:53', 'submission_id': '1glf04z'}
{'comment': 'If the female focuses on popular policies she will win! If she just focuses on the shit they’ve been doing the last 3 elections they will continue to lose. Sexism isn’t costing elections lack of focus on economic policies that help everyone does', 'created': '2024-11-07 06:24:36', 'submission_id': '1glf04z'}
{'comment': 'Toxic masculinity is a hell of a thing, and it’s one of the biggest things that Trump promotes. Toxic masculinity hurts literally everyone, including men of every demographic (especially young men). Trying to actively counter that trend might be a solid way for dems to appeal to men (especially younger or white men). I would wager most people semi-intimately know at least one or two men who have taken their own lives due to toxic masculinity (usually through refusal to seek therapy and solace), or who have turned to alcohol/drugs as a replacement for therapy. It’s an easy way to send a strong message that would likely connect emotionally with a lot of people.', 'created': '2024-11-07 04:24:10', 'submission_id': '1glf04z'}
{'comment': 'They just need to talk about the economy really. Women shouldn’t have to suck up to men after they spited women for their “loneliness”', 'created': '2024-11-07 03:01:53', 'submission_id': '1glf04z'}
{'comment': 'God now we are trying to get an incel vote now, alt media needs to be studied', 'created': '2024-11-07 03:37:44', 'submission_id': '1glf04z'}
{'comment': 'Nah. Democrats stand up for disenfranchised and young white men are not disenfranchised. We stand up for the vulnerable in our society, people with actual disabilities, or minorities, LGBTQ. Sorry man, your silly little inability to talk to people because you are socially awkward isn’t at the top of the list. \n\nThere are women dying right now in Texas because they can’t get the reproductive care they need. Black people are getting shot and killed for not using their blinker but you think we need to stop and listen to little Kevin with his social anxiety? Are you fuckin kidding me? \n\nMy first text this morning was from my friends trans son. He has to figure out if he needs to become a god damn refugee in order to get the medical care he needs. \n\nThe party has to stay focused and we need to continue to care for the people no one else will. Young white males whether they know it or not have got the world by the fuckin balls.', 'created': '2024-11-07 03:22:30', 'submission_id': '1glf04z'}
{'comment': 'Sherrod Brown lost in Ohio. Vermont is very liberal.', 'created': '2024-11-07 07:45:55', 'submission_id': '1glf04z'}
{'comment': 'Really shed a light on all those, "I\'m a Republican voting for Kamala" posts going around just for likes it seems. \n\nI think the white woman vote will set themselves on fire to keep others (people of color essentially) from having any say in their lives. How you get past that? Guess they\'ll get tired of their husband telling them they belong in the kitchen and beating them to get there but that bar is INSANELY low, no lie', 'created': '2024-11-07 07:19:06', 'submission_id': '1glf04z'}
{'comment': 'I think Democrats should work on mobilizing local votes early. It worked in GA. I plan on becoming more involved locally and showcasing wins.', 'created': '2024-11-07 04:45:28', 'submission_id': '1glf04z'}
{'comment': 'Shapiro is still a slick, liberal establishment figure to everyone outside of Pennsylvania. It wouldn’t have mattered. After the first few weeks they kept walz on a leash anyway. They should’ve let him continue on his repubs are weird media campaign, although it prob wouldn’t have really mattered as much in the end either. Dems have to do a better job at messaging and at reaching the average, low information voter.', 'created': '2024-11-07 09:51:13', 'submission_id': '1glf04z'}
{'comment': "But what would that base entail. Im.not against that, just pointing out that those two groups are the only ones that support them consistently. I do think we should focus on a general idea and not try to focus on social issues and appeal to everyone who doesn't work. I was thinking of one where it's mostly focuses on middle class and raising wages. That would not only help with those groups but expand on others as well. Trump focuses mostly on one particular group, it seems like, and that works for him. I think having one central policy that appeals to everyone but doesn't alienate those two groups would be ideal.", 'created': '2024-11-07 04:49:16', 'submission_id': '1glf04z'}
{'comment': "I mean so that theybshoulfnt focus on issues that don't affect the majority of their bases, such as xyz. Stop pandering to everyone basically because it's not working. They tried, and they still won't get the votes. Focus on the economy and crime.", 'created': '2024-11-07 06:58:32', 'submission_id': '1glf04z'}
{'comment': "A lot of people would rather feel that they are right than win. I don't think that vibe has shifted yet.", 'created': '2024-11-07 05:04:33', 'submission_id': '1glf04z'}
{'comment': "I don't pay attention to politics much. I mentioned this before since I am not a man. What do men want from Democrats that are not a national issue. For example, marriage rights for lgbtq. What would be something specific for men. The only thing I heard from another sub outside politics is the male bashing online. But that seems like a social issue online. I see bashing from both. And have been called out defending both. (Since I tend to be empathic). But I just can't see how it would be political. Any ideas?", 'created': '2024-11-08 19:23:55', 'submission_id': '1glf04z'}
{'comment': "Yeah I don't think anyone but spiteful bigots on the far right cared about spiting trans people more than, say, the economy.", 'created': '2024-11-07 03:21:52', 'submission_id': '1glf04z'}
{'comment': 'There will be more elections', 'created': '2024-11-07 03:35:37', 'submission_id': '1glf04z'}
{'comment': 'We still have state protections for now, time to fucking fill seats up with progressives.', 'created': '2024-11-07 03:50:10', 'submission_id': '1glf04z'}
{'comment': "When America starts getting affected by Trumps policies, I bet they won't be thinking Dems are too right to vote for then.", 'created': '2024-11-07 06:21:26', 'submission_id': '1glf04z'}
{'comment': 'Cuz the billionaire that own them know facts have a liberal lean and there’s no room for that with them.', 'created': '2024-11-07 05:17:08', 'submission_id': '1glf04z'}
{'comment': 'Waltz/Occasio-Cortez 2028!', 'created': '2024-11-07 11:50:33', 'submission_id': '1glf04z'}
{'comment': 'Same here, I really hope to see him run for president, but we need even more like him to embrace social media and really get the good messaging out.\n\nI also would not be angry at Roy Cooper making a presidential run. I really admire his ability to get things done with an absolute monster of a Gen Assembly.', 'created': '2024-11-07 14:31:39', 'submission_id': '1glf04z'}
{'comment': 'But you don’t understand. She didn’t call this person specifically, so her outreach was ineffective and insufficient.', 'created': '2024-11-07 15:27:36', 'submission_id': '1glf04z'}
{'comment': 'LITERALLY. Dems are gonna have to meet the American electorate where they’re at. Period. And that’s if it already isn’t too late. Bc it really just simply might be too late.', 'created': '2024-11-07 09:29:33', 'submission_id': '1glf04z'}
{'comment': 'yes, agreed', 'created': '2024-11-07 03:38:40', 'submission_id': '1glf04z'}
{'comment': 'Maybe keep the racism. Apparently that’s a good selling point for the American voter.', 'created': '2024-11-07 06:25:07', 'submission_id': '1glf04z'}
{'comment': "Exactly. This appeals to those two groups I mentioned as well as others. I think I worded my part wrong. I tried to edit afterward, but it didn't let me. I wasn't saying let's focus on black people and college educated only. It's just that I'm seeing that focusing on a wide range of issues that isn't working. Let's rebuild and focus on what works. It's just that when rebuilding, we shouldn't alienate those two groups.", 'created': '2024-11-07 04:54:27', 'submission_id': '1glf04z'}
{'comment': 'Be progressive, be be progressive!!!', 'created': '2024-11-07 06:57:21', 'submission_id': '1glf04z'}
{'comment': 'Yes. Yes. Yes. I have invoked those words, too.', 'created': '2024-11-07 07:46:31', 'submission_id': '1glf04z'}
{'comment': 'Racism is essential for populism though…', 'created': '2024-11-07 13:02:18', 'submission_id': '1glf04z'}
{'comment': "The plan is don't hurt their overlords by enacting meaningful healthcare reform that will reduce profits.", 'created': '2024-11-07 04:19:25', 'submission_id': '1glf04z'}
{'comment': 'Obama did not run on Medicare for All, he ran on universal healthcare. He very specifically did not call for single payer, it was “if you like your insurance, you can keep it” (which turned out to be easier said than done). He found that people who had health insurance through work were generally happy with it and didn’t want people to think they would lose that. Obama also campaigned against mandatory coverage, which Clinton advocated.', 'created': '2024-11-07 14:16:34', 'submission_id': '1glf04z'}
{'comment': 'Yes, so frustrating we have to try so much harder for dem votes than the other side has to for repub votes.', 'created': '2024-11-07 22:30:51', 'submission_id': '1glf04z'}
{'comment': 'Over the perception that they think eggs are more expensive and gas. \n\nThey need to have that same energy this next go round because booooooy they really played themselves here.', 'created': '2024-11-07 07:10:23', 'submission_id': '1glf04z'}
{'comment': 'Why is everybody saying they "flipped". If this were true Trump would have more voters than 2020. He doesn\'t. Nobody flipped. The ratios are only different/inverted because nobody showed up. That doesn\'t mean that Trump was appealing to more people. \n \nIt likely only means that 3 months wasn\'t enough time for Harris to effectively sell her plan.', 'created': '2024-11-07 15:28:36', 'submission_id': '1glf04z'}
{'comment': "I think the message should have been that we fixed a lot of the damage done by COVID but there's more to do and we're not done yet and we're not going to stop until things are even better than they were before COVID.\xa0\n\n\n\n\n\xa0Kamala addressed the housing crisis but it should have been the #1 issue front and center as the phase 2 of the economy. Instead we took the right wing's bait and focus on social issues. Yeah it felt good to fight back, but in the process it sucked all the air out and we didn't get the message out on the economy.\xa0\n\n\n\xa0The people that turn out for social issues have already heard everything. There's no more social issue outreach to be done. The only thing left that will move the needle is the economy, so when it comes to the presidential election that needs to be all we talk about when it comes to messaging and outreach.\xa0\n\n\nWe can talk about social issues in our own media and circles, but for the outbound message at large it needs to be the economy.", 'created': '2024-11-07 10:10:27', 'submission_id': '1glf04z'}
{'comment': 'It’s definitely gonna take time but republicans have been playing the long game for over 50 years. It’s gonna take Dems decades to make up this ground. But they need to start somewhere.', 'created': '2024-11-07 09:32:41', 'submission_id': '1glf04z'}
{'comment': 'They do. One of my friends works for the Democratic Party and he was talking about how the national dems are disconnected from the local dems. In PA particularly, RNC worked closely with the local republicans to increase voter registration, and encourage early voting. He is right. I am a registered dem but I had Republicans knocking on my door making sure I was registered and asking me to vote early.', 'created': '2024-11-07 14:41:21', 'submission_id': '1glf04z'}
{'comment': "Exactly, and the thing is, on the local level, Republicans actually deliver to these people on certain issues. They aren't saints but they're at least willing to help them out and hear them. Moreover conservatives have been making inroads into cities while dems haven't really compensated for that", 'created': '2024-11-07 09:38:44', 'submission_id': '1glf04z'}
{'comment': 'My question is what was the purpose of Tim Walz if it wasn’t for having the ability to talk to rural working class people? I am still baffled at his rollout. I think his initial rollout was better than Vance. Although I just didn’t hear much from him until like 2 weeks before the election. What was he doing the entire time?', 'created': '2024-11-07 14:48:44', 'submission_id': '1glf04z'}
{'comment': 'It’s time to stop appealing to “interest groups” altogether. We are ALL exploited and living at the whims of billionaires who don’t care whether we live or die. We ALL need a fair chance. We ALL need healthcare, housing, childcare, schooling. We all want to be married and live with our families in peace and make our own decisions.', 'created': '2024-11-07 04:42:43', 'submission_id': '1glf04z'}
{'comment': 'There’s reasons Latinos want illegals immigrants deported. Many Latinos who immigrated legally, or whose families did, have a strong respect for following legal channels and view undocumented immigration as undermining those who went through the process.', 'created': '2024-11-07 03:07:41', 'submission_id': '1glf04z'}
{'comment': 'Nationality? These people are US citizens. Did you mean racial or ethnic background?', 'created': '2024-11-07 23:00:32', 'submission_id': '1glf04z'}
{'comment': 'It’s honestly crazy how much voter support there was for individual progressive/Dem policies in states that Harris soundly lost.', 'created': '2024-11-07 04:14:34', 'submission_id': '1glf04z'}
{'comment': 'This is such a great point. It needed to be packaged as health care. Michelle Obama is also such an effective messenger. She talked about how it’s not just a woman’s issue but a men’s issue as well. Things like this just came out too late. I know it was a condensed campaign but there was still opportunities.', 'created': '2024-11-07 14:54:30', 'submission_id': '1glf04z'}
{'comment': "This. Unfortunately gender politics really got shoved to the forefront. And yes while I want them to have rights and freedoms, gotta secure the front first then bring them in when it's safe. That ways they can fight harder for them with little to no resistance. Not be all over the place with it.", 'created': '2024-11-07 07:16:31', 'submission_id': '1glf04z'}
{'comment': 'Agreed', 'created': '2024-11-07 06:45:03', 'submission_id': '1glf04z'}
{'comment': 'Thanks for the info.', 'created': '2024-11-07 15:56:28', 'submission_id': '1glf04z'}
{'comment': 'It’s not from Georgia but from 10 key states. \n\nhttps://www.nbcnews.com/politics/2024-elections/exit-polls?amp=1', 'created': '2024-11-07 23:02:51', 'submission_id': '1glf04z'}
{'comment': "Pretty much agree. We spent way to much time and effort chasing the RINO vote this time. One reservation is that we need to keep our progressivism simple and focused (like Bernie does). We can't get sucked down every culture war rabbit hole.", 'created': '2024-11-07 17:30:58', 'submission_id': '1glf04z'}
{'comment': 'It cost 2016, it didn’t cost this one.', 'created': '2024-11-07 06:45:44', 'submission_id': '1glf04z'}
{'comment': "Young men feel like they aren't being heard. That is a fact. They didn't vote to spite women, they simply didn't see the appeal. We need to change that.", 'created': '2024-11-07 03:08:11', 'submission_id': '1glf04z'}
{'comment': 'No. Fuck the intel vote. You can make inroads with young white males even without them', 'created': '2024-11-07 04:07:33', 'submission_id': '1glf04z'}
{'comment': 'lol, if Dems continue with this type of messaging they’ll continue losing. America has showed you who they are, Dems should operate in reality and adjust their messaging.', 'created': '2024-11-07 03:29:36', 'submission_id': '1glf04z'}
{'comment': 'If they want to win, as yuck as it may sound, they gotta get some of that young male vote.', 'created': '2024-11-07 04:19:33', 'submission_id': '1glf04z'}
{'comment': 'I think the main question is that people really don\'t care about things they don\'t think will ever happen to them, even if they are women of a child-bearing age and not anti-abortion. We still haven\'t evolved to think we could be victims of unpleasant things or even consider others who will. It\'s always a neighbour story. We always think we aren\'t going die and often put ourselves in unnecessary risk.\n\nSo take the abortion issue, a pro-choice Republican or independent keep voting red anyway. As usual, they really don\'t think they will be facing an abortion debacle or think other economic issues are more important than social ones. Moreover, the notion that there always will be "a way out" reinforces their disregard. If these Republicans and independents find themselves in a situation such as not being able to abort a *severely disabled* foetus, all they have to do is cross the line to the nearest blue state and get the procedure, and with a good probability of forgeting about it and voting red within two election cycles.', 'created': '2024-11-07 22:08:05', 'submission_id': '1glf04z'}
{'comment': 'None of the groups you mentioned are big enough in all states to win. Every available group is needed.', 'created': '2024-11-07 05:06:44', 'submission_id': '1glf04z'}
{'comment': 'Need to define the middle class first. Most Americans are under the impression that they are middle class. And the folks in that category intersect with a million other identities. Personally, I am a fan of organizing along class lines where the bottom 80% or so is prioritized using a platform of universalist, social democratic policies.', 'created': '2024-11-07 08:52:46', 'submission_id': '1glf04z'}
{'comment': 'That’s an empirical question we should study rather than assume the answer to.', 'created': '2024-11-07 15:02:44', 'submission_id': '1glf04z'}
{'comment': "They'll find a way. Democratic voters are not as reliable as Republican voters. They'll find excuses to stay home.", 'created': '2024-11-07 06:25:46', 'submission_id': '1glf04z'}
{'comment': 'In the online left spaces, absolutely they will. When things get bad, the narrative doesn\'t become "holy shit we need to elect Dems to fix this", it becomes "voting for democrats won\'t fix anything, the system is broken and we need to tear it down." These spaces don\'t promote action when things get bad, they promote nihilism', 'created': '2024-11-07 10:49:30', 'submission_id': '1glf04z'}
{'comment': "If Trump manages to get his economic or immigration policies in place, democrats might not need to change a thing. Mass deportations, tariffs, tax cuts for billionaires, they'll have horrendous effects on everyday consumers finances, and benefits will noticably go to already wealthy people. Democrats needed to pivot in 2024 because the economy wasn't perceived as great, and in many metrics isn't, but if the reality changes so negatively in 2026 or 2028 that even a return to 2024 seems enticing, less of a pivot is really necessary. Which I guess my point here being, any pivot from current policy stances really needs to consider how things unfold in the next few years.", 'created': '2024-11-07 14:49:05', 'submission_id': '1glf04z'}
{'comment': 'you are making 2 big mistakes here\n\n1. Thinking that uneducated GOP voters will ever believe that the cause of their problems is the GOP, even if the GOP controls all 3 branches of government\n\n2. Thinking the media will present news fairly if it means even a slight loss of profits, which it will, because the GOP is way more exciting television...because they ENRAGE a large portion of the populace, and nothing gets more views than rage', 'created': '2024-11-07 14:18:12', 'submission_id': '1glf04z'}
{'comment': "I don't. There were too many people who didn't vote because of one issue. Even they got down to the current level of the public, it would just turn those voters away even more. Not that anything would be good enough for a one issue voter. They are just as selfish as maga.", 'created': '2024-11-07 13:38:25', 'submission_id': '1glf04z'}
{'comment': 'I think what you’re saying is presenting a vision for everyone which includes everyone. Not specific policies for specific groups, no one wants that shit', 'created': '2024-11-07 05:02:57', 'submission_id': '1glf04z'}
{'comment': 'That’s basically why Obamacare was so too to less to begin with- conservative senators killed any possibility of more meaningful change. Throughout the 2000’s we’ve been held hostage by Manchin/Liebermann type democrats and people forget that.', 'created': '2024-11-07 04:38:25', 'submission_id': '1glf04z'}
{'comment': 'They don’t leave their community and watch faux news. They don’t know the struggles of others, only theirs', 'created': '2024-11-07 15:47:01', 'submission_id': '1glf04z'}
{'comment': 'Not going to lie..but Joe didn’t do Kamala any favors here. He could have easily helped with the housing crisis before it became a problem by knowing that with inflation going up that people who are renting end up getting a tax break or credit. Instead we sent Ukraine billions. I know the defense budget is different. But low information voters don’t see it that way.', 'created': '2024-11-07 14:37:12', 'submission_id': '1glf04z'}
{'comment': "They also don't want more of their countrymen to come here as they think it limit their opportunities at jobs and such. Happens in every immigrant community.", 'created': '2024-11-07 03:52:19', 'submission_id': '1glf04z'}
{'comment': 'Little do the legal immigrants know is that even the legal ones might get deported.', 'created': '2024-11-07 03:30:27', 'submission_id': '1glf04z'}
{'comment': 'This is not just for Latinos but for all immigrants. There is a sense of pride of going through the legal process and earning your citizenship or getting that green card / work visa. The NYC, NJ, and Illinois votes make sense. People in the main cities didn’t want migrants being bussed to their cities.', 'created': '2024-11-07 14:31:55', 'submission_id': '1glf04z'}
{'comment': 'Yes. I got that confused. I think we tend to generalize people by race when someone who is Chinese American has a different priority than maybe someone who is Jamaican American due to past experience or upbringing, etc. I have been told this many times.', 'created': '2024-11-08 19:15:05', 'submission_id': '1glf04z'}
{'comment': 'But people have always been shown to like progressive policies but not vote for them. Even conservatives in focus groups like them until there’s a D attached.', 'created': '2024-11-07 05:54:05', 'submission_id': '1glf04z'}
{'comment': "I don't think people actually give a shit about issues if the candidate doesn't inspire them(rightly or wrongly). This election especially, Harris was apparently very well liked by the Democrats who always show up, but had limited appeal outside of that. The two most successful Democratic candidates in recent years were Bill Clinton and Obama who oozed charisma. Compare that to John Kerry, Hillary Clinton and Harris who lacked a certain kind of charm that Biden, for his age and gaffes, still had.", 'created': '2024-11-07 14:45:31', 'submission_id': '1glf04z'}
{'comment': 'My fault, now that im looking closer I see that. Thought it was the same as the one posted yesterday.', 'created': '2024-11-08 00:51:07', 'submission_id': '1glf04z'}
{'comment': 'It didn’t cost 2016 either, although I’ll agree it played a bigger part. The way the DNC did Bernie had a *huge* impact in the 2016 election. And it cast a huge shadow over Hillary’s campaign.', 'created': '2024-11-07 09:36:26', 'submission_id': '1glf04z'}
{'comment': 'Probably but they also could’ve let the economic populist who had higher polls against Trump head to head run instead of rigging it against him every step of the way and this would never be an issue to begin with. So many Trump voters I’ve spoken too enjoy Bernie and he would’ve won 100%', 'created': '2024-11-07 06:53:19', 'submission_id': '1glf04z'}
{'comment': 'Young men had someone they could look to for examples of non toxic masculinity, Joe Biden. Dude protects his family and marginalized people, is kind but also doesn’t take shit and has no problem telling someone to get fucked. The reason he’s not appealing to young men is that his masculinity isn’t based on putting others down.', 'created': '2024-11-07 04:16:49', 'submission_id': '1glf04z'}
{'comment': 'A lot of them definitely voted to spite women... have you not been seeing the things they have done and said the past few years? People like Andrew tate is the person they look up to.', 'created': '2024-11-07 03:13:40', 'submission_id': '1glf04z'}
{'comment': "I mean, they just voted for celibacy, ultimately. So they're about to feel a whole lot lonelier. It's a problem of their own making at this point.", 'created': '2024-11-07 03:32:26', 'submission_id': '1glf04z'}
{'comment': 'I’m sorry no fuck that. I am not pandering to white men when the world has catered to them for all of human history. I agree that the focus needs to be on the economy and the middle/working class and if that resonates with white men specifically then great. And to be clear I’m not saying ignore them completely but I don’t care about white men being lonely when women are literally dying because they can’t get medical care.', 'created': '2024-11-07 03:16:30', 'submission_id': '1glf04z'}
{'comment': 'I 100% agree with you. Mother to Gen Z girl & Gen Z boy. The messaging over the past 20 yrs has been so pro-women. I get it since I know the history behind it and the need to get women into stem fields. But does an 8 yr boy get that? Does a now 21 yo boy get that.? The educational system is geared to women too. I remember being at JC Pennies shopping for kids were young and all the shirts for girls were like “Future super woman stem scientist ceo chief surgeon president”’and the boy’s were “I love Minecraft”, “No Homework please, gaming pro”. Like, gee, I wonder why they feel this way? I knew then that some politician would take advantage of this.', 'created': '2024-11-07 13:54:07', 'submission_id': '1glf04z'}
{'comment': "Yep. We can pander to white boys and still pass protections for those in need. Lets be honest, Trump is not going to do shit for white boys except give them lip service while ripping them off and removing others' rights away, and of course enriching himself. Time to play dirty and push policies through. Our federal govt might be compromised but our states are not just yet.", 'created': '2024-11-07 03:48:20', 'submission_id': '1glf04z'}
{'comment': "I noticed I kept repeating myself but noticed title worded wrong. I was multi-tasking, my bad. I was trying to say that they need to reevaluate everything as those are the only two stable groups, and yes, those aren't even large enough . If they focus on the economy and crime, then they can get a better result.", 'created': '2024-11-07 05:23:57', 'submission_id': '1glf04z'}
{'comment': "It's those damn useless fucking polls that make people get complacent and think I don't need to allow up, we got this! \n\nThat's the first start. Fuck them polls!", 'created': '2024-11-07 07:05:30', 'submission_id': '1glf04z'}
{'comment': "That's sad, disappointing, and true.", 'created': '2024-11-07 06:26:40', 'submission_id': '1glf04z'}
{'comment': 'Voters for Harris came out. Talk to Vlad and ketamine elmo about where the votes went.', 'created': '2024-11-07 17:20:06', 'submission_id': '1glf04z'}
{'comment': '"I agree with 98 things the Dems do, but not 2 of them, so I\'m gonna vote for the guy who has 100 things i am opposed to instead to teach them a lesson."', 'created': '2024-11-07 20:29:48', 'submission_id': '1glf04z'}
{'comment': 'You very well could be right about that. And I agree, more ppl are voting on “me” issues instead of “us” issues. They don’t understand how the “us” betters the lives of “me”. So I guess my point is more that the Dems have to change as the American electorate changes. And I still want them to focus on the collective “us” but the messaging has to be focused on how it impacts the daily lives of the “me” in an easily digestible language for the masses. Ppl don’t feel seen or heard by most politicians, and now view Dems as the “elite establishment” and that’s a problem. That’s why I say Dems have to meet the electorate where they are.', 'created': '2024-11-07 18:18:11', 'submission_id': '1glf04z'}
{'comment': "Exactly but at the same time not trying to pander to everyone. Democrats tend to pander to everyone. Like involve everyone but not pander to everyone. Republicans for example, can cater to Christians. Democrats are like Latino, lgtbq, poc, women rights, rural, small business, migrants, etc. It's a never ending list. Nothing uniting everyone.", 'created': '2024-11-07 05:20:56', 'submission_id': '1glf04z'}
{'comment': "I really was happy when Biden got shit done despite the Machins and the GOP trying to stop him. The CHIPs Act was a masterstroke in handling the GOP. He learned from the Obama years you couldn't get anything through if you wanted the GOP to be on board so he reached out but never counted on them.", 'created': '2024-11-07 04:55:31', 'submission_id': '1glf04z'}
{'comment': '>~~might~~ *will* get deported\n\n\nEveryone that\'s been told to "go back to where they came from" are either legally here, or are actual native Americans who were here LONG before the white folks showed up.\n\n\nIf there\'s a true trifecta, there will literally be zero guardrails. \n\n\nIt\'s going to get nasty', 'created': '2024-11-07 03:46:25', 'submission_id': '1glf04z'}
{'comment': 'True. Same with rewording policies when they become buzzwords. They’re all for it until they recognize a buzzword.', 'created': '2024-11-07 05:55:19', 'submission_id': '1glf04z'}
{'comment': 'Tim Walz seemed all man to me. He would have been a great role model. Now they are being influenced by creepy JD.', 'created': '2024-11-07 13:57:58', 'submission_id': '1glf04z'}
{'comment': 'Andrew Tate is a symptom rather than a cause. There are a lot of young men who feel unheard, like no one cares about them, and here comes Andrew Tate offering them his Poisoned Pill. We can convert these young men away from Andrew Tate-ism by telling them we hear them and care about them.', 'created': '2024-11-07 03:37:46', 'submission_id': '1glf04z'}
{'comment': "You're right, but *they* don't know that", 'created': '2024-11-07 03:34:06', 'submission_id': '1glf04z'}
{'comment': ">I mean, they just voted for celibacy, ultimately.\n\nMmm. What makes you think women are going to have any say in that at all?\n\nI've seen white women voluntarily putting on the hijab. It's no joke, shit is getting real. The popular vote said: We don't care about womens bodily autonomy. I think they mean it.", 'created': '2024-11-07 05:17:07', 'submission_id': '1glf04z'}
{'comment': 'Maybe, maybe not. 45% of women still voted for that clown', 'created': '2024-11-07 09:46:52', 'submission_id': '1glf04z'}
{'comment': "It's not either/or. We can lift EVERYBODY up- women, minorities AND white men.", 'created': '2024-11-07 03:36:43', 'submission_id': '1glf04z'}
{'comment': 'Honestly, yeah. Don’t even think it would be hard, just focus more on things like economics.', 'created': '2024-11-07 03:52:08', 'submission_id': '1glf04z'}
{'comment': "They need the entire coalition Biden brought together. There isn't currently a replacement group. It is a very fragile balancing act. Too far towards any one group and you lose a different group. There is not currently a way to win without reversing the slide among key constituencies including Gen Z and Hispanic men.", 'created': '2024-11-07 12:53:29', 'submission_id': '1glf04z'}
{'comment': "It's not the polls. It's stupidity, apathy, selfishness and voter suppression", 'created': '2024-11-07 07:14:23', 'submission_id': '1glf04z'}
{'comment': 'I was pretty worried at the end when the polls had them in a dead heat. It was basically Harris leading by 1% and that was very concerning since Democrats usually need to win the popular vote by 3-4% just to take the White House. I thought it was another 2022 when polls underestimated Democrats.', 'created': '2024-11-07 07:06:50', 'submission_id': '1glf04z'}
{'comment': '[removed]', 'created': '2024-11-07 18:12:58', 'submission_id': '1glf04z'}
{'comment': 'It’s not the polls. The polls showed pretty much how the race ended up.', 'created': '2024-11-07 15:25:45', 'submission_id': '1glf04z'}
{'comment': "At the end of it, they have to live with their choice, even if it is to stay home. People who don't take part in elections don't get to complain about the result.", 'created': '2024-11-07 06:28:41', 'submission_id': '1glf04z'}
{'comment': "I'm hurting right now. I really am. I'm not sure if anything I say is right anymore. But I'm hurting and angry people didn't show up. Especially if it's because of one issue. \n\nI've been ultra liberal most of my life. And I hear what my peers are saying and it's infuriating. Mostly because I agree with them on a lot, but too much was at stake. Now we have nothing.", 'created': '2024-11-08 10:20:48', 'submission_id': '1glf04z'}
{'comment': "The CHIPS act is incredible. But messaging about it is terrible. People in Arizona, where they built the new chip manufacturing facilities, the people who will benefit the most, don't even know Biden did this for them and voted for Trump.", 'created': '2024-11-07 13:25:53', 'submission_id': '1glf04z'}
{'comment': 'Well that’s what they voted for. I hate to sound like an angry person..you make your bed. Now sleep in it. I feel bad for the others that voted Kamala.', 'created': '2024-11-07 14:33:51', 'submission_id': '1glf04z'}
{'comment': 'That’s exactly it', 'created': '2024-11-07 06:22:17', 'submission_id': '1glf04z'}
{'comment': 'It’s Orwellian thought stopping tactics. America is fucked', 'created': '2024-11-07 13:08:48', 'submission_id': '1glf04z'}
{'comment': "We need less focus group polished messages and more straight talk. If anything, having an unpolished message is an advantage. People don't want someone\xa0who sounds perfect, they want someone that sounds like them.", 'created': '2024-11-07 10:20:42', 'submission_id': '1glf04z'}
{'comment': "That's it! It's Keanu Reeves fault for not being on social media. /s\n\nAlthough I have said that they need a positive role model, like Keanu before. Walz could have been it, but I don't see how that happens now.", 'created': '2024-11-07 03:48:23', 'submission_id': '1glf04z'}
{'comment': 'But I don’t think young men felt disenfranchised until Andrew Tate told them they were. They don’t seek out the right-wing pipe lines, they are sent down them.', 'created': '2024-11-07 05:58:02', 'submission_id': '1glf04z'}
{'comment': "Unfortunately, ya. And they'll retreat to their tech bro/crypto bro/incel groups for reassurance, sadly.", 'created': '2024-11-07 03:35:51', 'submission_id': '1glf04z'}
{'comment': 'This is what the Dems should strive for', 'created': '2024-11-07 04:04:59', 'submission_id': '1glf04z'}
{'comment': 'My cousin, who has 3 kids from 3 different men, has been on every government assistance program known to man, and has never had a job where she makes more than $10-$12/hour has been posting non stop about trump and how great trump is. \n\nI know so many people like this. She is just genuinely stupid and has no idea how anything works.', 'created': '2024-11-07 10:37:45', 'submission_id': '1glf04z'}
{'comment': 'Can’t really blame voter suppression, a lot of Trump gains happened in places where it is not hard to vote. Lots of places have early vote and vote by mail now, some have same day registration.', 'created': '2024-11-07 14:04:58', 'submission_id': '1glf04z'}
{'comment': '[removed]', 'created': '2024-11-07 18:14:40', 'submission_id': '1glf04z'}
{'comment': 'One valuable thing that pollsters stressed—particularly Nate Silver, I know lots of people don’t like him but he is really good at explaining the numbers stuff—is that 50/50 doesn’t mean it’s even, that it was quite likely that one candidate or the other would win all the swing states. What it meant was, we didn’t know which one. As far as polling goes, we may be entering a time when polling becomes less accurate as a result of the erosion of social trust.', 'created': '2024-11-07 14:08:45', 'submission_id': '1glf04z'}
{'comment': "That too. Definitely think he should have kept to that 1 term so they could have voted for their champion. Ultimately he's gonna ride off into the sunset and so will Kamala while the middle and lower scramble. \n\nReally gotta hope they get it together for mid-terms, (whatever that hellscape looks like)", 'created': '2024-11-07 23:50:33', 'submission_id': '1glf04z'}
{'comment': 'Exactly. And when Trump starts implementing this shit that affects ppl and they start complaining, the *first* question I will ask is “did you vote?”', 'created': '2024-11-07 09:24:49', 'submission_id': '1glf04z'}
{'comment': 'I feel the same. Solidarity friend 🫶🏽', 'created': '2024-11-09 22:43:50', 'submission_id': '1glf04z'}
{'comment': 'Walz can still be that. We don’t need to wait for the next election to start reaching people, in fact we really shouldn’t. He can get out there on social media, podcasts, twitch, etc.', 'created': '2024-11-07 04:19:48', 'submission_id': '1glf04z'}
{'comment': 'I feel like they did. Kamala’s plans for new home owners, taking on price-gouging at grocery stores, in home senior care, those benefit everyone, including young men. They just don’t care.', 'created': '2024-11-07 06:01:31', 'submission_id': '1glf04z'}
{'comment': "Because they don't want to learn, don't care to learn but want someone else to blame. That's literally the same playbook by these bible thumping conservatives. They blame everything going to hell on Biden, Satan, Kamala, The Gays, The Trans, but won't take a look in the mirror with their bullshit, their lies, and the excuses they keep making up for their lack of inability to actually do something. \n\nThe US was literally built on the foundation of the blood and dead bodies of slaves and the disenfranchised, yet REPUBLICANS can't even actually DO FOR THE PEOPLE but blame DEMS for everything that they fail at.", 'created': '2024-11-07 11:26:08', 'submission_id': '1glf04z'}
{'comment': 'That’s most of the base. Dumb poor white people who don’t realize if republicans ever really pushed their policies through, like might happen now, they are the ones who will be fucked the hardest. They are too stupid to understand that, which is why they are the target base for republicans.', 'created': '2024-11-07 13:45:36', 'submission_id': '1glf04z'}
{'comment': 'At the same time look at how many less tradionally democrat people did not vote. If we had the same numbers as when Biden was elected, we would have stood a much larger chance.', 'created': '2024-11-07 17:40:57', 'submission_id': '1glf04z'}
{'comment': "Sorry our message isn't unrestricted bigotry", 'created': '2024-11-07 18:15:18', 'submission_id': '1glf04z'}
{'comment': 'She didn’t talk about it enough. She spent so much time talking about being “joyful warriors” and bringing the country together instead off shoving her policy ideas down everyone’s throats in a way that was easily digestible. And I loved her and think she’d be a great president but there wasn’t enough messaging about what she would actually *do* that would help the average American.', 'created': '2024-11-07 09:45:26', 'submission_id': '1glf04z'}
{'comment': 'This is normal, 2020 was not.', 'created': '2024-11-07 17:56:09', 'submission_id': '1glf04z'}
{'comment': '[removed]', 'created': '2024-11-07 18:18:51', 'submission_id': '1glf04z'}
{'comment': '[removed]', 'created': '2024-11-07 18:28:56', 'submission_id': '1glf04z'}
{'comment': 'One of two good things to come out of Maryland (along with being one of the states who voted for Kamala).\n\nCan’t wait to re-elect Gov. Moore in 2026.', 'created': '2024-11-07 03:09:04', 'submission_id': '1glez47'}
{'comment': 'My guy you do realize that those Jan 6ers are about to be pardoned and given medals at some point after Jan 20th, right?', 'created': '2024-11-07 02:41:52', 'submission_id': '1gleqvu'}
{'comment': 'As a fellow new Jerseyan I’m also very happy to see Kim win!', 'created': '2024-11-07 07:18:23', 'submission_id': '1gleqvu'}
{'comment': 'Yes. That’s why I voted for Harris', 'created': '2024-11-07 02:46:08', 'submission_id': '1gleqvu'}
{'comment': 'I dont think trump cares enough', 'created': '2024-11-07 04:05:54', 'submission_id': '1gleqvu'}
{'comment': 'Trump doesn’t give a shit about anyone but himself. Unless those insurrectionists have enough money to pay him they’re like flies on his windshield.', 'created': '2024-11-07 05:29:21', 'submission_id': '1gleqvu'}
{'comment': 'He’ll do it just to piss off his opponents. He’s out for retribution for being prosecuted for his crimes. Merrick Garland’s fecklessness led to this.', 'created': '2024-11-07 13:41:13', 'submission_id': '1gleqvu'}
{'comment': 'The gloves have to come off. \n\nAll I keep seeing today is all of this "doom and gloom" and people giving up the fight left and right.\n\nWe lost. We got punched in the mouth and we\'re on the mat. Democracy in getting the 10-count as we speak. Are we going to just lay on the mat, let the count expire and lose for good? Or are we going to get up and take the fight back to them? If this was reversed do you think they would just lay down and take it? When they lost in 2020, did they just lay down and take it? No. They damn near pulled off a coup.\n\nNow I\'m not saying we need to do a coup. I\'m not even saying we need a protest. I\'m saying we all need to stop moping around like a bunch of giant pussies. We need to regroup and figure out how we\'re going to prevent them from completely screwing over America even more over the next four years. We need figure out who we\'re going get behind for 2028. We need to figure out how we\'re gonna take the house and senate in 2026. And we need to figure out how we can beat them going forward, because the current playbook aint working!\n\nDems need to stop messing around with this "nice guy" shit. Nice guys finish last and Republicans have not been playing nice for a long time. The DNC leaders need to start learning from mistakes instead of repeating them. Hillary losing to Trump in 2016 proved that America wasn\'t ready for a female president. Why did we not learn this lesson? Why did we gamble that maybe America doesn\'t really have a misogyny problem and play it back again this time? Why did we make it even harder by putting a non-white woman up this time?\n\nWe did it because she was the obvious best candidate in short notice. She also was probably the most deserving given the situation. We did it because we learned nothing in 2016. We did it because all things considered, it was the nice and right thing to do.\n\nBut as the saying goes: Nice guys finish last. And I can tell you, being a nice guy my whole life, there is a lot of truth to this statement.\n\nDo you know who isn\'t nice and doesn\'t play nice? Trump and MAGA. That\'s who. They didn\'t play nice. They acted like outright assholes, and the reaped the rewards that play yielded against an opponent playing the "nice card". We were honestly LUCKY we won in 2020. The only reason we did was because of how recent the Trump shit show was at that time. Four years removed, people forgot, because that\'s what people do.\n\nAs a white male it kills me to say this because I love women and I see women as equal. I see everyone that way. But Kamala was never going to win because of her gender and race. I knew it the day Joe dropped out. I hoped I was wrong but it turns out I was right.\n\nGoing forward, it\'s my opinion that we need a candidate like Jon Stewart for 2028. I know he says he doesn\'t want it, but that\'s exactly why he should get it. He\'s a prime candidate in my eyes and I know he would do a good job, because all it takes to do good job is to TRY to do a good job, and I know he would. If we can\'t get Jon, we need someone as charismatic and smart as Jon and he unfortunately needs to be straight white man. Don\'t get me twisted. As far as establishment candidates go, I would love Buttigieg (I even have a PETE 2020 shirt I still wear), but at this point I cannot trust he would win just because he happens to be gay. We\'re at that point now. It sucks. But here we are. We have to play the safe candidate for the next few cycles. We cant risk misogyny, homophobia, or racism be the reason we lose. We need to be smart and long play this if we want to win.', 'created': '2024-11-07 02:23:45', 'submission_id': '1glemcz'}
{'comment': 'Amen, brother', 'created': '2024-11-07 05:29:08', 'submission_id': '1glemcz'}
{'comment': "I'm so fucking angry. These fucks aren't gonna destroy my home without a fight!", 'created': '2024-11-07 07:05:22', 'submission_id': '1glemcz'}
{'comment': 'the doom and gloom can be cathartic, and looking to see where it went all wrong but it doesn’t matter right now. turn the page. people, if you voted not to be part of a dictatorship:facism etc then we need to get up and fight in whatever way or capacity works for you. feel the feels. get angry, sad whatever. the bs will start soon and we need to raise our voices or else we get run over. and yes i’m also all about fafo/leopard ate your face, and we’re all going to hurt let’s be honest. but do something. protest, speak up, don’t purchase anything you don’t need, save money, shop at places that support democracy. lean into organizations that align with your values and beliefs. we’re americans and we need to get up.', 'created': '2024-11-07 19:24:19', 'submission_id': '1glemcz'}
{'comment': 'I’m talking about drawing a line in the sand, dude…', 'created': '2024-11-07 03:35:45', 'submission_id': '1glemcz'}
{'comment': "I thought that same thing. This country just isn't ready for a woman to be president and biracial one at that. I do believe if she was a man, she would have won. I did feel the same when Biden dropped out. Trump should not have been allowed to run. Something shady went down somewhere. His sentencing should have been done, and he should have gone to jail. I will never understand how this happened.", 'created': '2024-11-07 03:10:08', 'submission_id': '1glemcz'}
{'comment': 'As a Jew, I don’t think this country is ready for a Jewish candidate anymore than a POC or woman. It will only increase antisemitism. Unfortunately we need a white Christian male.', 'created': '2024-11-07 11:49:49', 'submission_id': '1glemcz'}
{'comment': "Was this in reply to something that's been removed or I can't see? It's kind of confusing on its own... Or is this a reference I'm not getting?", 'created': '2024-11-07 04:19:11', 'submission_id': '1glemcz'}
{'comment': 'Shut the fuck up Donny', 'created': '2024-11-07 11:50:46', 'submission_id': '1glemcz'}
{'comment': "Man I didn't even think of that... Is the space laser thing that big or is there that much antisemitism it would cause an issue? Might not be as safe as a Christian, but if a black man won twice you don't think Jon could?", 'created': '2024-11-07 16:00:04', 'submission_id': '1glemcz'}
{'comment': 'It’s a big Lebowski quote. Sorry, I always drop those when I can. I’d suggest a watch to get a laugh in this time of need.', 'created': '2024-11-07 04:23:15', 'submission_id': '1glemcz'}
{'comment': 'Ahh I should have known with the dude part. All good man!', 'created': '2024-11-07 07:11:56', 'submission_id': '1glemcz'}
{'comment': 'Same. I try so hard to not think other people are just idiots but I cannot imagine how an intellect person looks at the two of them and hesitates even for a moment to vote blue.', 'created': '2024-11-07 04:26:46', 'submission_id': '1glebeb'}
{'comment': 'Mission #1 was stopping Trump and autocracy. We failed miserably.', 'created': '2024-11-07 03:27:32', 'submission_id': '1glebeb'}
{'comment': 'But... but... but...\n\nMy eggs were expensive.', 'created': '2024-11-07 04:34:23', 'submission_id': '1glebeb'}
{'comment': 'The "All Democrats do is hate themselves and lose" crowd are the people currently blaming the Democrats. They\'re talking about themselves.', 'created': '2024-11-07 07:08:31', 'submission_id': '1glebeb'}
{'comment': "It's almost like one group has systematically dismantled our education system to keep the masses under-educated *on purpose.*", 'created': '2024-11-07 10:34:55', 'submission_id': '1glebeb'}
{'comment': "I thought she ran a Great Campaign too but sadly it just wasn't enough & America might be fucked now", 'created': '2024-11-07 02:34:57', 'submission_id': '1glebeb'}
{'comment': 'They can kiss my ass. But they maybe wanted a different message. Either way the ones who did not vote allowed Trump to rule us. \nNow we fight like hell! \n\nI’m nervous because I work for the government and I am about to start working for the FBI soon. I’m not sure that will be a good idea because of Project 2025', 'created': '2024-11-07 02:35:30', 'submission_id': '1glebeb'}
{'comment': 'A lot of people "just couldn\'t bring themselves to vote for a Black woman".', 'created': '2024-11-07 04:25:30', 'submission_id': '1glebeb'}
{'comment': "But their eggs and gas will be cheaper now! Right?\n\n \nUnbelievable. This is just proof for the rest of our lives that all the middle and upper class care about are tabletop issues like inflation, the border, etc. We'll never win the presidency again unless we hit those hot button issues.", 'created': '2024-11-07 05:18:39', 'submission_id': '1glebeb'}
{'comment': 'If the US falls to fascism, it voted for that.\n\nIts your fault, for not going out and voting against it when you could, its your fault for voting for it, no matter how you spin it whatever happens its the US\'s fault, the US willingly and democratically chose what is coming.\n\nI hope you enjoy it because I sure as hell am done with the US.\n\nI feel sorry for anyone who went out and voted against Trump but there\'s more who don\'t care or who *want* Trump, so you are the minority and they were right all along about being "the silent majority". There\'s simply more people fine with this than there are people who aren\'t, this is ahat your country wants, stupid as it may be.\nNo EC to blame aswell more people want Trump and MAGAy\n\nTrump is america, America is what Trump represents, he is your president now, enjoy it.\n\nI\'m so fucking done luckily I can just block the US out of my life for a while, I feel sorry for those living there who might not even be able to flee the coming Theocracy, but you chose this.', 'created': '2024-11-07 13:06:47', 'submission_id': '1glebeb'}
{'comment': 'It was NOT the campaign! The message was clear if you ever watched 10 minutes of a rally speech. Harris hit every point.\n\nThe Democratic Party isn’t the issue. There is too much fake news and right wing propaganda being shared and pushed to Americans today. Straight from Russia with love.\n\nGet off Reddit for a minute and see the shit they are viewing on Fox News, Newsmax, and Truth Social then tell me why it’s the Democrats fault or the campaigns. And there are hundred podcasts and radio stations that are just Right Wing propagandists…it’s fucking everywhere!\n\nAnd keep in mind that many voters are low information voters. they are ignorant of the facts. It’s that simple. And the average IQ is only 100. That leaves a lot of stupid out there.\n\nStop attacking your own and look at what is happening to us as a people.\n\n15 million democrats said “not my problem” and they didn’t vote. Well they will find out what real problems are and learn a valuable lesson with Trump and Republicans in full control. MAGA is here now for at least 2 years.\n\nConcentrate on self improvement and making things better in your community because that is all we have now.', 'created': '2024-11-07 17:19:53', 'submission_id': '1glebeb'}
{'comment': 'Yep. She was the best choice we had at the time, and she did her best. But this election was lost 2 years ago, when President Biden broke his promise not to run for re-election. He single-handedly fucked his entire legacy into the ground, and he’s going to be remembered as the man whose ego enabled everything that comes next.', 'created': '2024-11-07 02:58:43', 'submission_id': '1glebeb'}
{'comment': 'I think the fact there are news stations that just make shit up was the downfall. We can’t continue as a democracy while pretending there are two realities. \n\nThe sad part is, every reasonable outlet is FINALLY pushing stories about how the Trump economic plan is going to harm America.', 'created': '2024-11-07 15:32:22', 'submission_id': '1glebeb'}
{'comment': 'She did run a great campaign. She should’ve just had a year and a half to do it and it should’ve started with a primary.', 'created': '2024-11-07 18:33:15', 'submission_id': '1glebeb'}
{'comment': "Why didn't more people vote?", 'created': '2024-11-07 13:16:25', 'submission_id': '1glebeb'}
{'comment': "It is always the responsibility of the candidate to convince the public to vote for them. Yes the public is full of morons, but that doesn't change that she needs to run a campaign that would make people vote for her.", 'created': '2024-11-07 06:34:48', 'submission_id': '1glebeb'}
{'comment': 'I dislike them as much as Maga. Pretty much the same at this point', 'created': '2024-11-07 03:14:44', 'submission_id': '1glebeb'}
{'comment': 'The irony is that, (electorally) we ended up in basically the exact same situation we would have been in If Biden had stayed in the race. Harris ran a much better campaign, had a way better debate the performance but the end of the day she got her butt kicked as bad, if not worse, than 81-year old Joe Biden would have. \n\nOne of the major "cons" of swapping Joe with Kamala became a reality: The idea that Kamala didn\'t get the nod on her own merit. A lot of Trump supporters I know said "Kamala was installed and no one voted for her" and "she did horrible in the 2020 primary and now she wants to skip the line to be president?!". There\'s no real argument to refute this, she was literally selected and pushed to the top of the ticket.\n\nWhen you have no type of primary and you force a candidate through you run the risk of the base rejecting your candidate and I think that was (partially)what happened here. For all of the very real issues with 81-year-old Joe Biden, at least people cast votes for him in the primary. I think that is partially why we saw such a huge drop off in turnout.', 'created': '2024-11-07 08:29:36', 'submission_id': '1glebeb'}
{'comment': 'I think Trump did us all dirty by only doing 1 debate. It\'s a way of winning by default when he simultaneously has the "stronger brand recognition" + people pissed off with the incumbents. And Kamala got fewer chances to reach people at the fringes of the electorate that we needed.', 'created': '2024-11-07 04:07:28', 'submission_id': '1glebeb'}
{'comment': '', 'created': '2024-11-07 07:57:36', 'submission_id': '1glebeb'}
{'comment': 'Well. We can add liberals who didn’t vote to the list of awful\n\nhttps://preview.redd.it/gbj6vqqargzd1.jpeg?width=1284&format=pjpg&auto=webp&s=1f9a28a995f19e8fde89daea64d8fbbca6ac3e94\n\npeople, so at least not everyone on the list is just racist and or misogyny.', 'created': '2024-11-07 12:18:55', 'submission_id': '1glebeb'}
{'comment': 'What would Bernie do?', 'created': '2024-11-07 14:23:37', 'submission_id': '1glebeb'}
{'comment': 'Until Democrats come up with a plan to making working-class Latino men the center of their messaging, there is no hope for us. I will not donate until there is a shift in this direction.', 'created': '2024-11-07 16:56:14', 'submission_id': '1glebeb'}
{'comment': 'If she lost 15 million votes then she objectively didnt run a good campaign', 'created': '2024-11-07 19:43:04', 'submission_id': '1glebeb'}
{'comment': 'Both liberals and MAGATS are the dumbest of the dumb. They sure did teach those Democrats a lesson.', 'created': '2024-11-08 00:02:39', 'submission_id': '1glebeb'}
{'comment': 'Stop it she lost I don’t give a shit if she checked the boxes for a “good campaign” it didn’t work. Why should I care how good her campaign when we still have all the still have to deal with Trump', 'created': '2024-11-07 04:45:35', 'submission_id': '1glebeb'}
{'comment': 'Don’t blame the voters blame the party who continually refuse to listen to voters and meet them where they are', 'created': '2024-11-07 03:12:07', 'submission_id': '1glebeb'}
{'comment': 'I would challenge your perception that 15 million didn\'t vote. Millions of voters wound up shifting from Biden to Trump, despite the insistence by some that voters were "calcified." \n \nI have been saying on Reddit since July that she had to have better messaging. I got a lot of posts and comments deleted and downvoted. Then when the polls began turning against her, my posts/comments were getting upvoted, but I think it was too late. It was very aggravating. The lesson was that the Reddit crowd didn\'t have much wisdom when it came to politics. Maybe 1 in 10 to 20 was insightful and astute, but that doesn\'t stop you from getting downvoted to oblivion, and it doesn\'t stop Democrats from thinking their campaign\'s omniscient until it\'s too late. \n \nIt wasn\'t that she was too left or too right. She just made so many mistakes.', 'created': '2024-11-07 03:38:34', 'submission_id': '1glebeb'}
{'comment': 'Been downhill since Obama and Bernie', 'created': '2024-11-07 05:17:43', 'submission_id': '1glebeb'}
{'comment': 'I voted for her but taking off the rose colored glasses there are things she could have done a lot better.', 'created': '2024-11-07 04:23:52', 'submission_id': '1glebeb'}
{'comment': '"Jill Stein ran a good campaign and closed out great. The American Population who didn\'t vote for her and threw under the bus today is very off putting" See how silly it sounds when you change Kamala to Jill Stein.. It\'s not the fault of the people when the Democrats put the weakest candidate from the 2020 primary as their front runner without a primary of their own. It\'s up to the party and the candidate to earn the votes of the Americans. If you just assume people will vote for a candidate that they did not get to pick, then you\'ll lose the election just like this time and to a lesser extent 2016 with the superdelegate nonsense', 'created': '2024-11-07 03:34:37', 'submission_id': '1glebeb'}
{'comment': 'Same, man, same. It’s like if someone asks if you want to walk in the park and have an ice cream or if you’d rather burn down your house and go live in a sewer instead. This isn’t a choice you have to even consider. It’s just THE EASIEST CHOICE IN HISTORY AND YET WE COLLECTIVELY FAILED I CANT FREAKING BELIEVE HOW STUPID PEOPLE ARE WTF', 'created': '2024-11-07 06:33:18', 'submission_id': '1glebeb'}
{'comment': 'I think it is BS that 15 million Dems did not vote. No one finds this suspicious? Come on! We ALL knew that every vote counted. It was all anyone talked about. There is NO WAY that 15 million Dems just didn’t vote. Absolutely no way. This needs to be looked into further. The fact that Elon Musk came in the scene for Trump all of a sudden is very suspicious to me, too. I can’t shake the thought that there is a correlation between the missing 15 million votes and Musk.', 'created': '2024-11-07 14:48:45', 'submission_id': '1glebeb'}
{'comment': "One of them was a woman and whether we like to admit it or not a lot of Democrats are fiscally left but don't want women in a position of power.", 'created': '2024-11-07 14:11:46', 'submission_id': '1glebeb'}
{'comment': 'i think we’d like to think the average American is actually smarter and an overall better person that they actually are.\n\nI think the sad reality is that your average American would gladly take 5 cents off gas even if it means burning the rest of the world and parts of the US. \xa0Trump’s 2nd term is a self inflicted wound where I don’t think any other subsequent president will be able to fix.\n\nThis maybe a turning point in the world where maybe American mentality is closer to Trump than to the likes of Obama, Biden and Harris. \xa0Everything is a zero sum game where bullying is', 'created': '2024-11-07 16:01:20', 'submission_id': '1glebeb'}
{'comment': 'Sherrod Brown lost and he was as pro union as they come but unions did not turn out for him\nnor Harris.\n\nI really do think race or white men preference for other white men trumps even their own well being (pun intended).\n\nWhen Trump takes office and Musk is whispering in his ear, I don’t think it will bode well for unions and especially the auto unions. \xa0But hey, chickens for KFC isn’t something new anyways.', 'created': '2024-11-07 16:36:44', 'submission_id': '1glebeb'}
{'comment': 'Maybe if mission one had been healthcare or workers. Or not alienating people who dont 100% align with us.\xa0', 'created': '2024-11-07 14:24:58', 'submission_id': '1glebeb'}
{'comment': 'They always do. They are experts at projection.\xa0', 'created': '2024-11-07 15:14:09', 'submission_id': '1glebeb'}
{'comment': "To start, I voted for Harris. But just be aware that while Project 2025 is scary, Heritage Foundation is a conservative think tank that's been around since the 70's and has had a hand in every conservative president's policies since Reagan. Every conservative president has adopted about 2/3 of their policies they put forward, including Trump already as per a 2018 article.\n\nProject 2025 might be their 'most ambitious' plan yet? I'm not sure. But they aren't knew and this is not new for the conservative party.", 'created': '2024-11-07 04:25:37', 'submission_id': '1glebeb'}
{'comment': 'And this country is populated by imbeciles.', 'created': '2024-11-07 05:40:32', 'submission_id': '1glebeb'}
{'comment': ">the US willingly and democratically chose what is coming.\n\nNo. The US Constitution and its system of laws is a social contract, that we all agree to follow because we wanted democracy. \n\nThe Republican Party did not engage in a democratic election in good faith. Senators and judges violated their oaths to keep Donald Trump eligible for the ballot so they could elect a tyrant. The used propaganda and lies to create fear, and still anger, and sow confusion.\n\nSo absolutely not. Nothing democratic about Trump winning this election.\n\n>There's simply more people fine with this than there are people who aren't, this is ahat your country wants, stupid as it may be.\n\nThat's a very simplistic understanding of how fascists yield rhetoric. A lot of these people who voted for Trump, believed the fantasy narrative that he and his surrogates created. \n\nA lot of the voters don't really understand what they voted for. This is how powerful rhetoric is. When rhetoric is weaponized, it is one of the most powerful weapons that humanity has. \n\nSo there's an important lesson here. And important for you to get it. In case right wing extremists start to wield rhetoric like this in your country.\n\n>I'm so fucking done luckily I can just block the US out of my life for a while,\n\nYeah, well, not for long. Trump will most likely withdraw from NATO. He will engage a lot of bromances. And start selling weapons to venom instead of our democratic allies. \n\nThis will be such a huge shift in power, it is likely the globe will plunge into authoritarianism in the next 20 years.", 'created': '2024-11-07 13:29:40', 'submission_id': '1glebeb'}
{'comment': '🎯🎯🎯🎯', 'created': '2024-11-07 23:19:49', 'submission_id': '1glebeb'}
{'comment': "I got loads of downvotes for being mad at Biden Admin\xa0 and the DNC from hiding his decline. I still voted for Harris. I'm guessing you did too.\xa0", 'created': '2024-11-07 03:27:53', 'submission_id': '1glebeb'}
{'comment': 'Biden looked and sounded old as hell in the debate. We all remember the existential fear we felt watching it. I understand he wanted to continue, but you’re right that he hurt his legacy, the party, and more importantly, the country by not stepping aside when he should have. They should’ve had a primary and selected the best candidate from a large group of competent Democrats (Not that Harris wasn’t competent). Even so there’s no excuse for Republicans voting for Trump or Democrats not turning out to finally drive the final nail into the coffin of MAGA. Where were the “Never Trump” Republicans? Where were the white women? Where was everybody? There’s no damn excuse for letting this piece of trash win. It’s an embarrassment and will be a mark of shame on America for as long as the world continues to exist that we reelected this ass clown.', 'created': '2024-11-07 04:58:28', 'submission_id': '1glebeb'}
{'comment': 'Naah! The Covid stimulus pumped a shit ton of money into the economy, which resulted in inflation. Now America voted its narrow short term self interest.', 'created': '2024-11-07 03:55:03', 'submission_id': '1glebeb'}
{'comment': ">When you have no type of primary and you force a candidate through you run the risk of the base rejecting your candidate and I think that was (partially)what happened here.\n\nI disagree. \n\nBecause Trump and his surrogates would have created a different fictional reality for the election. Regardless of the candidate or the campaign, or how the select candidate was selected.\n\nThe cancer of anger, hate, and confusion, was too widespread already.\n\nThe problem is that the US Constitution or system of laws just doesn't have anything to protect us against overwhelming, weaponized rhetoric with the ill intent of putting a tyrant into power.\n\nThat being said, I do blame the media. For sane washing Trump, while treating Harris very critically like a regular candidate. \n\nEvery time Trump spoke and did anything remotely fascist, they should have labeled him as such. That could have made the difference!", 'created': '2024-11-07 13:35:46', 'submission_id': '1glebeb'}
{'comment': 'Don’t worry, the Democratic Party has a LOT of experience shutting out liberals. They just can’t seem to stay away from trying to get those conservative votes. I guess they count more, or something. There’s got to be a reason.', 'created': '2024-11-07 15:57:39', 'submission_id': '1glebeb'}
{'comment': '[removed]', 'created': '2024-11-07 14:59:17', 'submission_id': '1glebeb'}
{'comment': 'Have you considered that some working class Latino men may be opposed to our closely held Democratic values? What if they don’t want women to be empowered? Maybe they don’t want women’s rights to be at the forefront of the Dem platform?', 'created': '2024-11-07 23:22:09', 'submission_id': '1glebeb'}
{'comment': 'The voters are both to the right and to the left. \n\nMy feed today has been nothing but “they went too far right!” “She was way too crazy left!” One right after the other, hundreds each.', 'created': '2024-11-07 03:25:26', 'submission_id': '1glebeb'}
{'comment': 'No trump got roughly the same number of votes in 2020 Harris got 15 million less. That means people just didn’t vote', 'created': '2024-11-07 04:47:55', 'submission_id': '1glebeb'}
{'comment': 'Biden ran a killer fucking campaign in 2020, surpassed Obama and Bernie can’t win a primary', 'created': '2024-11-07 16:04:10', 'submission_id': '1glebeb'}
{'comment': 'I really don’t know. We can’t just accuse people of mass voter suppression based on vibes. It’s not unrealistic that there were 15 million ambivalent, indifferent fascist sympathizers.', 'created': '2024-11-07 14:53:41', 'submission_id': '1glebeb'}
{'comment': "I'm suspicious. Those 50-something coordinated bomb threats were obviously a problem.", 'created': '2024-11-07 16:41:26', 'submission_id': '1glebeb'}
{'comment': 'The 15 million extra in 2020 was an outlier unfortunately. Harris got more votes than Clinton in 2016 and Obama in 2012 and was comparable to Obama 2008, so our normal coalition turned out in good numbers.\xa0\n\nDepressingly, I suspect the much higher count we got in 2020 was what we could achieve every time if states actively tried to make it easy to vote (relaxed mail in voting laws, etc) rather than suppressing as much as legally possible.\n\nTrump’s vote total slid from 2020 as well, just not as much as ours (because voter suppression tactics are laser targeted at Democrats).\xa0\n\nI do think some of it is that there were casual voters on our side last time who hate Trump but didn’t trust us enough on the economy so just stayed home, which is an issue we’ll need to address for 2026 (I honestly think we needed to be out of power to be credible with these voters given economic sentiment right now so they probably weren’t winnable this time), but it’s difficult to see these numbers vs 2020 when voter suppression tactics were temporarily relaxed and not acknowledge voter suppression is working.\xa0', 'created': '2024-11-07 15:36:54', 'submission_id': '1glebeb'}
{'comment': 'Biden was the most pro union president in recent times.\xa0\n\nWhat are you even talking about? Or has tik tok addled your brain', 'created': '2024-11-07 18:04:27', 'submission_id': '1glebeb'}
{'comment': 'And I’m not really sure how much appetite congress and the judges have for some of the most extreme parts of project 2025 which would heavily erode state rights. States like to be able to do what they want within their borders. They can’t get rid of the DOE *and* require states to comply with patriotic education or lose funding. Who gives out that funding?\n\nRemember, they will only have the house and senate for two years and Trump can’t find true loyalists because he attracts people who are power hungry themselves. His ship had more leaks than the Titanic by the time 2020 rolled around.\n\nThe right doesn’t remember, but I do.', 'created': '2024-11-07 08:41:16', 'submission_id': '1glebeb'}
{'comment': 'So fucking tired of holding my nose and voting', 'created': '2024-11-07 15:21:19', 'submission_id': '1glebeb'}
{'comment': "No because Latinos have voted for Democrats before but their support has been leaking away: \n\n\nObama got 71% of the Latino vote in 2012, Hilary got 66% in 2016, Biden got 59% in 2020. \n\nI believe Harris got 53% to Trump's 45%\n\n\\----------------------------------------------------------------------------------------------------------\n\nAs a dude, I generally sympthasize with women on the erosion of abortion rights and access. But this election showed that you can't depend on this issue alone to win presidential elections.\n\nIn 2028, there will be 5 million more Latino voters than in 2024 - plan accordingly.", 'created': '2024-11-07 23:40:04', 'submission_id': '1glebeb'}
{'comment': 'All of it is just excuses to try to cover up the real reason...\n\nRacism and sexism. \n\nEnd of story.', 'created': '2024-11-07 03:27:11', 'submission_id': '1glebeb'}
{'comment': "A lot of it feels very bot-like or scripted. All talking about it as if it's 2016.", 'created': '2024-11-07 04:01:12', 'submission_id': '1glebeb'}
{'comment': "Honestly, it's because she went sharply left with the price controls floated and the taxes and then right...", 'created': '2024-11-07 07:09:22', 'submission_id': '1glebeb'}
{'comment': "True. That's a good point.", 'created': '2024-11-07 07:01:52', 'submission_id': '1glebeb'}
{'comment': 'I mean he didn’t end the strike when he could have, basically neutral. Maybe he is the most pro union, but it’s not enough. \xa0I don’t have TikTok, but you seem to be described by my second sentence.\xa0', 'created': '2024-11-07 18:56:09', 'submission_id': '1glebeb'}
{'comment': 'I see your point. But can you see mine? I’m a Hispanic woman. I grew up around male family members who were all for the patriarchy. Several of my older female relatives spent all their time doing all the domestic work and all the childcare in their homes. Some also held down low paying jobs at the same time. We can’t just “center working class Hispanic men” unless there is alignment with women’s rights, women’s healthcare, Womens self-determination.', 'created': '2024-11-07 23:58:19', 'submission_id': '1glebeb'}
{'comment': 'Part of it. But also, embracing the Cheneys and everything wrong with Washington. Harris had an impossible task but she ran to the right and represented the status quo.', 'created': '2024-11-07 03:37:20', 'submission_id': '1glebeb'}
{'comment': "How can you say it's racism when the country has twice elected a black president? How can you say it's sexism when Hillary won the popular vote in 2016? \n\nThe country has shown it doesn't inherently have an issue voting for a woman or person of color.", 'created': '2024-11-07 04:30:51', 'submission_id': '1glebeb'}
{'comment': "If a reddit comment alienated you then we're really fucked.\xa0\n\nBunch of weak limp dems 🙄", 'created': '2024-11-07 19:02:52', 'submission_id': '1glebeb'}
{'comment': "I am not Hispanic so I cannot speak personally for such economic issues. However, I base thinking on what Mike Madrid and Fernand Amandi have stated. \n\nMike defined the problem well but I don't think he predicted how quickly Latino support for Democrats eroded. He predicted that Harris would win the election.\n\nAs a person whose ethnicity is 1/2 4th generation Polish, I fear for what is about to happen in Ukraine once Trump withdraws all support and that is my major concern.", 'created': '2024-11-08 00:40:11', 'submission_id': '1glebeb'}
{'comment': "She didn't embrace the Cheney's. They Cheney's embraced her. They were clear that they disagreed with her policy positions and under other circumstances they wouldn't have voted for her. They were only voting for her because Trump posed a real threat to the nation.", 'created': '2024-11-07 03:42:52', 'submission_id': '1glebeb'}
{'comment': 'What country are you talking about?', 'created': '2024-11-07 05:43:05', 'submission_id': '1glebeb'}
{'comment': 'Think of it like you can’t be racist because of your one black friend. America is very racist. We just proved that', 'created': '2024-11-07 15:54:44', 'submission_id': '1glebeb'}
{'comment': 'lol', 'created': '2024-11-07 19:12:28', 'submission_id': '1glebeb'}
{'comment': 'I share your concern for the brave Ukrainian people. There was a time when the American people knew that NATO was essential for keeping the world powers in balance. For keeping Putin in check. But MAGA and Q have had their brains scrambled and I shudder to think what Zelensky faces.', 'created': '2024-11-08 01:03:06', 'submission_id': '1glebeb'}
{'comment': 'I mean, she literally embraced Liz Cheney. Multiple times at multiple campaign stops.', 'created': '2024-11-07 15:53:34', 'submission_id': '1glebeb'}
{'comment': "We aren't talking about hugs and you know it", 'created': '2024-11-07 15:59:45', 'submission_id': '1glebeb'}
{'comment': 'Right. Those hugs were while they were campaigning together. \n\nI don’t know how she could have embraced her more. Maybe divorcing Doug and marrying her? Kicking walz and making Liz her VP pick maybe? \n\nBut yea. They fully embraced and campaigned with Liz Cheney.', 'created': '2024-11-07 17:36:46', 'submission_id': '1glebeb'}
{'comment': 'Trump could never do this and we are supposed to be ok with that? One party concedes when they lose and the other lies and incites an insurrection? We are supposed to be ok with that huh. Things can’t go back to normal and we can’t ever accept the people that are for this', 'created': '2024-11-07 02:22:27', 'submission_id': '1gle98w'}
{'comment': "What the fuck. What we could have had and what we are going to have. Buckle down. Gen Z and Gen Alpha are going to suffer the most. I am Gen X and I voted Kamala, but I can (probably? hopefully?) ride out the storm. I don't have children and am married. But the kids...the girls...", 'created': '2024-11-07 05:48:17', 'submission_id': '1gle98w'}
{'comment': 'I hope after her vice presidency she stays on in the political sphere. We need strong Dem leadership now more than ever. She may not lead the party, but she definitely still has a lot to contribute. \n\nBut before all that, I hope and pray she gets some much needed rest. She deserves it.', 'created': '2024-11-07 02:58:59', 'submission_id': '1gle98w'}
{'comment': 'We lost a phenomenal would-be president yesterday. I will be mourning far longer than I ever thought I would for a presidential election, or candidate. I believe she would’ve changed the world for the better and paved an incredible road towards progress. I am ashamed she conceded so quickly, especially knowing the alternative would not have. I am also skeptical of the legitimacy of this election, but I will not spiral and stoop to the same level Republicans did in 2020. I am hopeful our constitution will hold strong, and I hope I have the same opportunity to vote for such an amazing candidate in 2028. \n\nGodspeed.', 'created': '2024-11-07 02:28:19', 'submission_id': '1gle98w'}
{'comment': 'I hate that Trump loses and incites an insurrection… he wins and we get this kind of response to him. It sucks because obviously we shouldn’t be violent back but he shouldn’t be given what he couldn’t even give Biden. Disgusting human. Ran for President to stay out of prison and it worked. No accountability at all.', 'created': '2024-11-07 02:51:50', 'submission_id': '1gle98w'}
{'comment': 'I at least want to live long enough to realize I can at least die in this shitty world knowing I was my best self no matter the tribulations. Even now, she gives me that hope.\n\nUtterly disheartening she lost. Emptiness will persist for a long while.', 'created': '2024-11-07 02:44:15', 'submission_id': '1gle98w'}
{'comment': 'You know that fat fuck smiled while she said that. It’s not about the power to help others, but the power to help himself.', 'created': '2024-11-07 07:18:35', 'submission_id': '1gle98w'}
{'comment': 'Bless her little heart. Getting pretty tired of trying to see the bright side of the dumpster fire tho.\n\nDemocrats just keep thinking that America is really "mostly good people".\n\nIt just became clear that it\'s not.', 'created': '2024-11-07 02:58:32', 'submission_id': '1gle98w'}
{'comment': "I'm tired of being calm and collected. If Republicans can scream and throw a fit why can't I? Screw this country and everyone that voted for Trump. We have failed future generations, let's just hope they have more common sense in the future.", 'created': '2024-11-07 03:46:46', 'submission_id': '1gle98w'}
{'comment': 'Sigh. Trump will never do anything like this', 'created': '2024-11-07 03:09:19', 'submission_id': '1gle98w'}
{'comment': 'Thank you Kamala', 'created': '2024-11-07 03:26:57', 'submission_id': '1gle98w'}
{'comment': 'It’s funny because this is a completely normal speech- responsible, accepting, mature. We shouldn’t even be glad about that because it should be the norm, but unfortunately Chump showed that some people don’t maturely accept the results and instead throw hissy fits. That’s, in his words, SAD! \n\nBut that aside I’m proud of her. She put up a good fight for not having a lot of time and her rallies were packed. I was a first-time voter and I’ll always be glad she was my first ever presidential vote.', 'created': '2024-11-07 05:40:10', 'submission_id': '1gle98w'}
{'comment': 'This is good and all but we’re fucked once they take over and implement project 2025. There just won’t be much anyone can do about once they fire all the people that could be our guardrails. Could just be my depression talking but I have serious doubts that our system will hold, especially with them taking back the Senate and keeping the House also.', 'created': '2024-11-07 03:21:00', 'submission_id': '1gle98w'}
{'comment': 'Democrats have class. MAGA shows their ass.', 'created': '2024-11-07 04:42:28', 'submission_id': '1gle98w'}
{'comment': 'Holy shit. That’s wonderful and perfect.', 'created': '2024-11-07 02:58:19', 'submission_id': '1gle98w'}
{'comment': 'Well I’m done with this clusterfuck country.', 'created': '2024-11-07 10:08:40', 'submission_id': '1gle98w'}
{'comment': 'I hope I am wrong but I am worried she will become a political prisoner or worse when Trump takes office', 'created': '2024-11-07 03:27:43', 'submission_id': '1gle98w'}
{'comment': 'Kamala Harris is my hero, I watched the whole debate and throughout it all she looked directly at the camera to us the American people, she spoke with logic while trump just threw big words around and made up fake stories. Kamala Harris is a woman who had a plan, she’s a leader, trump just supports corporate America, he is a selfish man and today evil prevailed over good.', 'created': '2024-11-07 07:21:47', 'submission_id': '1gle98w'}
{'comment': 'America you screwed up big time', 'created': '2024-11-07 14:15:53', 'submission_id': '1gle98w'}
{'comment': 'The Democrats, particularly the future Presidential candidates should never ever play the good guy card, or claiming that he/she is the hope for the country if they want to beat Trumpism, if you want to take down a wolf you gotta bring a wolf to the fight, we should be done with playing nice and in 2028 we should put our foot down, learn from our mistakes. \n\nAlthough I would like to say even if Harris lost both EC and popular votes to Trump, I personally say she did worse than Hillary in 2016, but in just 100 days she can unite her party and get 67 million votes give or take, quite amazing feat for 100 days campaigning as the main candidate.', 'created': '2024-11-07 16:25:09', 'submission_id': '1gle98w'}
{'comment': "Our side is too nice, straight forward walkers, rule followers and we still lost.\n\nWhen Trump was defeated 4 years ago, MAGA and large parts of the Republican base were screaming murder how Democrats cheated, stole the election, rigged the voting machines and how life and society are unfair and biased against conservatives. Refused to concede, initiated lawsuits against the results and refused to attend the transfer ceremony. Even took lives after Trump incited thousands to break into the Capitol Building in an act of insurrection.\n\nMSG rally was cauldron of sexist, racist and angry, white male driven hate, yet here we are asking if it was Kamala's gender and race that costed her the Midwest and other swing state grounds.\n\nBack to the vicious circle of waiting for the Trump Administration to wreck this country with their Project 2025 plans and whatever authoritarian impulse Trump acts on. If he keeps the House, he'll go for the ACA repeal and proceed with the mass deportation plan, which even their own people have calculated will wreak havoc on the US economy due to the court costs and lost labor, which to them are acceptable losses. When swing state voters and low income, rural constituents that lost their life saving healthcare realize what their vote has done, that'll be the comeback window.", 'created': '2024-11-07 06:06:25', 'submission_id': '1gle98w'}
{'comment': 'Fight like hell', 'created': '2024-11-07 02:43:52', 'submission_id': '1gle98w'}
{'comment': 'What the hell have we done?', 'created': '2024-11-07 09:43:34', 'submission_id': '1gle98w'}
{'comment': 'I thought she was more agresive than this. I bet Michelle gave her the ole "When they go low, we go high" speech. That has worked so well.', 'created': '2024-11-07 04:37:17', 'submission_id': '1gle98w'}
{'comment': 'Great woman. We were so lucky to have her and the loss of potential will forever haunt me. Thank you Kamala and Tim for trying.', 'created': '2024-11-07 07:08:38', 'submission_id': '1gle98w'}
{'comment': 'We need to turn the page starting now. The republicans swept everything let’s do a fresh overhaul of this party let’s put the right people in place, let’s really think before we do here and not knee jerk reaction on everything. Trump didn’t win this election, the democrats LOST the election. When you have several million registered democrats and almost 2 million votes to third party candidates, I get it we are pissed and upset but at the same time…. Something IS NOT right with the party. I don’t blame Kamala, with around 100 days to campaign against maga what do you expect? Let’s pick ourselves up here, and let’s rebuild. We have been through this before and we will get through it again.', 'created': '2024-11-07 03:32:50', 'submission_id': '1gle98w'}
{'comment': 'Guys remember that after Trump, likely a dem president will be back and just tear down many of his former policies', 'created': '2024-11-07 05:32:15', 'submission_id': '1gle98w'}
{'comment': 'First of all, she should not have conceded. There are some really fucking out there anomalies. Real one not imagined like in 2020.', 'created': '2024-11-07 06:41:54', 'submission_id': '1gle98w'}
{'comment': 'Fight how? They have all the branches of government', 'created': '2024-11-07 07:59:38', 'submission_id': '1gle98w'}
{'comment': 'This is so laughable. I also hate that she mentions "god" so many times, despite that gods filthy religion being to blame for her loss. Its pathetic.', 'created': '2024-11-07 09:59:55', 'submission_id': '1gle98w'}
{'comment': 'Fuck that. She should have conceded and then fucking ragged on him.', 'created': '2024-11-07 05:46:11', 'submission_id': '1gle98w'}
{'comment': '[removed]', 'created': '2024-11-07 06:10:36', 'submission_id': '1gle98w'}
{'comment': 'Class', 'created': '2024-11-07 15:14:59', 'submission_id': '1gle98w'}
{'comment': "I'm giving up", 'created': '2024-11-07 17:41:49', 'submission_id': '1gle98w'}
{'comment': '“And our God”? 🙄', 'created': '2024-11-07 17:46:34', 'submission_id': '1gle98w'}
{'comment': 'Neither nor, not either or.', 'created': '2024-11-07 18:07:02', 'submission_id': '1gle98w'}
{'comment': "So they're going to tell the Vice President he is banned from being married to his wife? So they are going to tell the Supreme Court Justice he is banned from being married to his wife? lol ok", 'created': '2024-11-07 22:52:34', 'submission_id': '1gle98w'}
{'comment': 'We are too soft on these stupid conservatives. Outlaw the grand old party NOW!!!', 'created': '2024-11-07 22:56:19', 'submission_id': '1gle98w'}
{'comment': 'I worry how the transfer of power will look in 4 years if a Dem is the next president.', 'created': '2024-11-07 03:53:57', 'submission_id': '1gle98w'}
{'comment': 'Wow, amazing work.', 'created': '2024-11-07 06:27:03', 'submission_id': '1gle98w'}
{'comment': "Therapist here. I'm just sharing a post I wrote for those who may be struggling. ❤️ [https://hootiepatootieblog.com/handling-difficult-election-results/](https://hootiepatootieblog.com/handling-difficult-election-results/)", 'created': '2024-11-07 07:41:56', 'submission_id': '1gle98w'}
{'comment': 'Would not be surprised that she going for 2028 then it is a easy target to get elected, But she would been a president fpr the people!', 'created': '2024-11-07 08:55:31', 'submission_id': '1gle98w'}
{'comment': 'Conceding is giving up. So much for all that bullshit fear-mongering about fascism.', 'created': '2024-11-07 23:20:36', 'submission_id': '1gle98w'}
{'comment': "Right. So Harris lied when she described Trump.\n\nOr she's about to flee the country.\n\nOnly two options, because Trump *will* have her killed if she stays.", 'created': '2024-11-07 17:01:06', 'submission_id': '1gle98w'}
{'comment': '> To the young people watching, it’s okay to feel sad and disappointed.\n\nSomething like 80% of first-time voters voted for Trump.', 'created': '2024-11-07 08:20:48', 'submission_id': '1gle98w'}
{'comment': 'America has changed so much and social media has to be the cause. Giving extremists and absolute lunatics huge platforms to spew garbage at eager listeners all day every day. \n\nBut this loss was caused by the 16 million asshole democrats that refused to vote. It’s on them.', 'created': '2024-11-07 02:45:11', 'submission_id': '1gle98w'}
{'comment': 'I feel the same way. This is hitting me way harder than 2016 because this year is proof that 15 million couldn’t care about stopping about Trump, MAGA, and Project 2025 but DO care that Kamala is a black woman. 15 Americans are not only apathetic about Project 2025 to not vote. 15 million Americans don’t understand what inflation and tariffs are, how international trade benefits them, why jobs left the USA (and which jobs left), but, more importantly, that they would rather not learn about those topics and vote in an informed manner, but would rather allow Trump and Project 2025 to have their way than to vote for a black woman who has actual, concrete plans specifically addressing our most pressing matters. \n\n15 million Americans chose apathy over concentration camps than a black woman as POTUS. \n\n15 million Americans chose apathy over an all but inevitable recession than a black woman as POTUS.\n\n15 million Americans chose apathy over Project 2025 than a black woman as POTUS.\n\n15 Americans chose apathy over theocratic fascism over a democracy-defending black woman as POTUS. \n\nDemocracy and freedom died because Americans chose racism.', 'created': '2024-11-07 13:46:28', 'submission_id': '1gle98w'}
{'comment': 'It isn’t about what Trump would or wouldn’t do. We fought for democracy and lost. All we can do now is sit back and watch or create a better political party in these four years. I’m', 'created': '2024-11-07 04:53:53', 'submission_id': '1gle98w'}
{'comment': 'Well the one party could’ve held the other accountable after that insurrection by applying the rule of law to the problem and enforcing it. Instead a convicted felon never faced any consequences for any action. He was verbally spoken to a lot and given many gag orders he ignored. He did enough illegal things that it should have been a simple matter to arrest and charge him with the crime and after he was convicted made to serve his time behind bars. Instead we are here and crimes mean nothing if you have a large enough platform and a stupid enough following and timid enough opposition. I can’t wait until the executions start. I’m interested what sort of platitudes the democrats will use about why we should have hope then. I wonder what really broke the democrats in the end, made them incapable of actively pushing back, made them unable to uphold the law, made them more concerned with status quo instead of working to actively change anything of consequence. 2008 feels like a million years ago. Somehow a party that elected a populist progressive turned into a party that has been rudderless since.', 'created': '2024-11-07 08:39:33', 'submission_id': '1gle98w'}
{'comment': 'Many people on the other side, especially the strongly religious ones, were and always will be hypocrites with double standards.', 'created': '2024-11-07 20:44:23', 'submission_id': '1gle98w'}
{'comment': 'Maybe back to California, like governorship?', 'created': '2024-11-07 03:05:32', 'submission_id': '1gle98w'}
{'comment': 'Don’t be ashamed. She did the right thing, a thing that we used to expect at of our presidential candidates. The MAGAs should be ashamed', 'created': '2024-11-07 02:30:18', 'submission_id': '1gle98w'}
{'comment': "Yes, in the absence of hard evidence I do not think it's good to dwell on election interference. I do think that the damage done will take a lifetime to undo and the American electorate will not have the patience to see it done.", 'created': '2024-11-07 03:03:51', 'submission_id': '1gle98w'}
{'comment': 'Crazy how when a leader doesn’t encourage violence then it doesn’t happen right? How can such an important quality be so overlooked. They will be so shocked when a dem goes and does the same thing. Now that we’ve established that it’s acceptable', 'created': '2024-11-07 02:58:15', 'submission_id': '1gle98w'}
{'comment': 'Definitely did not look strangers in the face today… nor will I for the foreseeable future.', 'created': '2024-11-07 03:29:21', 'submission_id': '1gle98w'}
{'comment': "You're 100% right.", 'created': '2024-11-07 03:05:04', 'submission_id': '1gle98w'}
{'comment': 'This is what really hits me in the gut. I have such a harder time now believing in the good of humanity', 'created': '2024-11-07 03:21:19', 'submission_id': '1gle98w'}
{'comment': 'That’s what I was thinking too. Yesterday showed that there are more evil people than good in this world', 'created': '2024-11-07 03:28:05', 'submission_id': '1gle98w'}
{'comment': 'They all look like this.\n\n', 'created': '2024-11-07 03:52:15', 'submission_id': '1gle98w'}
{'comment': "Yeah, I've been thinking about her, Tim, Liz Cheney, Adam Kinzinger, the generals, Mary Trump, and left aligned media. They are no longer safe", 'created': '2024-11-07 07:02:07', 'submission_id': '1gle98w'}
{'comment': "You're not wrong. 😒", 'created': '2024-11-07 03:52:29', 'submission_id': '1gle98w'}
{'comment': 'It’s just not the time for it. It’s important that faith in democratic institutions remain if we ever want to win it back.', 'created': '2024-11-07 06:00:39', 'submission_id': '1gle98w'}
{'comment': 'I really hope so.', 'created': '2024-11-07 18:00:26', 'submission_id': '1gle98w'}
{'comment': "There is a lot of work to be done before we can confidently say that a Dem president in 2028 would able to make any big changes. Unless Dem seats are gained in the Senate in 2026 (there are 33 going to be contested then) a potential Dem president by 2028 won't have enough power to tear down the policies.\n\nI'm also afraid that Trump will have the potential to nominate 3 supreme Court justices during his tenure as well.", 'created': '2024-11-07 15:37:46', 'submission_id': '1gle98w'}
{'comment': 'Gore conceded but retracted it when irregularities were detected in Florida. There is a precedent', 'created': '2024-11-07 07:21:02', 'submission_id': '1gle98w'}
{'comment': 'so many religious people voted for her except for predominantly Catholics and evangelicals. I don’t think now is the time to insult our religious voters', 'created': '2024-11-07 18:42:57', 'submission_id': '1gle98w'}
{'comment': 'Bold of you to assume there will be another election.', 'created': '2024-11-07 05:51:18', 'submission_id': '1gle98w'}
{'comment': "I don't think so. Women cannot be in power because many people in America are misogynist to run for the White House. My hopes for 2028 will be Adam Schiff.", 'created': '2024-11-07 11:07:24', 'submission_id': '1gle98w'}
{'comment': 'Its not just apathy, its voter suppression, misinformation, etc. They do not act in good faith.', 'created': '2024-11-07 03:28:30', 'submission_id': '1gle98w'}
{'comment': '>But this loss was caused by the 16 million asshole democrats that refused to vote. It’s on them.\n\nBeyond that, it was due to a collapse with Latino and black men. Let\'s be honest. This was a key part of why we lost.\n\nAnd we need to acknowledge it not to cast blame, but to address the problem. \n\nBut I\'m concerned that we may not recognize this problem because we don\'t want to blame the "wrong" people.\n\nWe had reliable votes in these folks up to 4-8 years ago, and we need to ask ourselves what the fuck has happened.', 'created': '2024-11-07 05:36:06', 'submission_id': '1gle98w'}
{'comment': '100% "social" media. We live in a din of confusion. on purpose.', 'created': '2024-11-07 19:10:50', 'submission_id': '1gle98w'}
{'comment': 'That begs the question…. Why aren’t Dems resonating? They have access to the same platforms. We’ve got to look inward not blame “ ‘ists “', 'created': '2024-11-07 19:55:01', 'submission_id': '1gle98w'}
{'comment': "Did they refuse to vote, or did the democratic platform fail to provide enough motivation (for them, not you) to head to the polls? Stop blaming voters, the parties' jobs are to sell a vision - clearly it didn't resonate with enough people.", 'created': '2024-11-07 03:03:15', 'submission_id': '1gle98w'}
{'comment': "And now, he won't be sentenced this month, nor will he face the consequences of his actions next month. They're not just holding off on either, they're dropping all of it.\n\nNot only did 16 million people simply not vote, I have heard that 20 million ballots never even got counted. Elon bribed people, and he's going to get away with it.\n\nSo now we are forced to live with the consequences of inaction, of lies, of cheating. Nobody is doing anything about any of it. Justice no longer prevails, and America is doomed.", 'created': '2024-11-07 12:45:20', 'submission_id': '1gle98w'}
{'comment': 'Governor and senate seats are full, although she can work to promote other candidates for congress and president.\n\nNot to mention there’s also seats in the house that’ll be open in 2026.\xa0', 'created': '2024-11-07 03:26:49', 'submission_id': '1gle98w'}
{'comment': 'As a Californian I’d love to see her run for governor when Newsom’s term is over lol', 'created': '2024-11-07 04:29:28', 'submission_id': '1gle98w'}
{'comment': 'The fact that they just took the “stolen election” at face value will remain up front in my mind for as long as I live. The outright refusal to accept that their guy didn’t win and then trying to install him by force will always be the most important reason I will never support them again nor will I ever trust them again. I just can’t believe so many Americans just couldn’t give a fuck about such a blatant threat to the fabric of our society and the constitution they all so loudly proclaim they love. This whole thing only works if we follow the god damned rules and it seems like they don’t give a fuck as long as gas is cheap.', 'created': '2024-11-07 12:28:29', 'submission_id': '1gle98w'}
{'comment': 'Democrats gotta stop being the party of should', 'created': '2024-11-07 15:49:15', 'submission_id': '1gle98w'}
{'comment': 'The interference was from the media and social media algos making would be voters complacent. I voted but so many dems didn’t. I think the media won Trump this election. It’s not the only factor but it’s a big one. \n\nIt’s a shame there is such a large populous of Americans who are gullible and can be manipulated. The internet can be so wonderful, but unchecked it is so dangerous.', 'created': '2024-11-07 03:16:43', 'submission_id': '1gle98w'}
{'comment': 'I feel utterly betrayed. By my country, by women, by men. \n\nMore people thought the economy was more important than my right to bodily autonomy and healthcare. \n\nIt’s just gross.', 'created': '2024-11-07 05:45:40', 'submission_id': '1gle98w'}
{'comment': None, 'created': '2024-11-07 04:02:11', 'submission_id': '1gle98w'}
{'comment': 'I think they are more misinformed than evil.\xa0', 'created': '2024-11-07 05:37:38', 'submission_id': '1gle98w'}
{'comment': 'Yup they’re licking their chops. Just look at what the Trump campaign press secretary already said about mass deportations. They’ll start with undocumented immigrants but it’ll only be a matter of time once they start going after legal immigrants of color.', 'created': '2024-11-07 04:04:52', 'submission_id': '1gle98w'}
{'comment': "Oh it most certainly is- Roe v Wade is vital to women's health and to me that's more important than faith in institutions that have already failed us.", 'created': '2024-11-07 06:04:21', 'submission_id': '1gle98w'}
{'comment': 'How did religious people vote? I do think evangelicals were a factor for Trumps win.', 'created': '2024-11-07 19:08:48', 'submission_id': '1gle98w'}
{'comment': 'There is that worry, yes, but id like to think that our judicial system and hopefully remaining moderate republicans actually care about the constitution and dont want to turn this country into an authoritarian christo-fascist country.', 'created': '2024-11-07 06:43:00', 'submission_id': '1gle98w'}
{'comment': "I'm ashamed to be a Mexican American today. I just cannot fathom how sooo many just voted against themselves. He hates us, he blames us for all the country's problems and will not stop trying to get get rid of us. My family came a 100 years ago, they fought and endured it all to give me the privileged life I have lived and this is what they do?? They just shit on everything their families fought for.", 'created': '2024-11-07 08:09:41', 'submission_id': '1gle98w'}
{'comment': 'Latinos are conservative. They mostly always vote Republican. Democrats never “had” them.', 'created': '2024-11-07 13:30:19', 'submission_id': '1gle98w'}
{'comment': 'NBC News exit polls showed that black men voted blue 77% of the time. Can’t really blame them when they are the second highest blue voting percentage. White men, Latino men, and white women were the three lowest. White women made up 37% of the voting according to the exit polls and only voted blue 45% of the time. \n\n\n\nAmerica is too assbackwards to elect a female president yet. It’s shitty that’s even the case. Biden had what 84 million in the popular vote in 2020 vs Kamala and Clinton both getting around 74 million? The Dems need to select three candidates today to prop up for the next four years. Trump has campaigned non stop for 12 years. We need to catch the fuck up. \n\n\n\n\n[source](https://www.nbcnews.com/politics/2024-elections/exit-polls)', 'created': '2024-11-07 13:51:07', 'submission_id': '1gle98w'}
{'comment': 'I hope they reap the rewards of that choice.', 'created': '2024-11-07 15:45:23', 'submission_id': '1gle98w'}
{'comment': "I guess this is the 1964 era again but this time the Latinos and Blacks are going to the Republicans, I was saying time and time again since the midterms of 2022 we have been complacent and I was worried we might lose the 2024 election, not only the presidency but more seats in Congress. We didn't take care of those who have been voting blue since 1964, the Latinos, African Americans and many others, we don't look so appealing with these people enough especially this election, to those educated or not. Even though I voted blue all the way this election, it doesn't seem to matter when we still get fewer votes than the Republicans.", 'created': '2024-11-07 16:30:29', 'submission_id': '1gle98w'}
{'comment': 'This was too important for pettiness.', 'created': '2024-11-07 03:10:39', 'submission_id': '1gle98w'}
{'comment': 'Disagree. As a member of a democratic society it is our duty to vote for what we think will be right and just for our own personal beliefs and needs and those of the humans close to us. Not participating in democracy by not voting is 100% a reason to blame for results. Cause and effect.', 'created': '2024-11-07 03:19:11', 'submission_id': '1gle98w'}
{'comment': 'While not excusing the party, I can still fucking blame the apathetic voters. You shouldn’t need to be excited to vote. Go do your civic fucking duty!', 'created': '2024-11-07 03:23:51', 'submission_id': '1gle98w'}
{'comment': 'Indeed, they refused 👍\n\nThe mistake the Democrat Party made was ever wasting time with a bunch of "tire kickers" to begin with.', 'created': '2024-11-07 05:42:23', 'submission_id': '1gle98w'}
{'comment': 'That can’t be the case. The democrat lawyers would have absolutely not let them get away with that.', 'created': '2024-11-07 13:37:43', 'submission_id': '1gle98w'}
{'comment': "An ex-VP and ex-Senator is not going to languish in the House in her 60s.\n\nShe will write a book, give some speeches, and retire to California. Maybe accept the presidency of university. She's done. Unless you run a cult, there's no coming back from a presidential loss.", 'created': '2024-11-07 05:34:16', 'submission_id': '1gle98w'}
{'comment': "Newsome's term is up in 2026.", 'created': '2024-11-07 05:01:05', 'submission_id': '1gle98w'}
{'comment': 'Me too', 'created': '2024-11-07 05:34:46', 'submission_id': '1gle98w'}
{'comment': "I agree with this 100 percent. Mainstream media is guilty on all accounts. Their news was focused on clocks and viewership. They have been sanewashing and giving the spotlight to TFG for far too long. They did nothing to end the divisiveness. Carefully crafting stories of fear mongering for profit. \n\nSocial media is the wild West. Controlling misinformation is a losing battle. Mainstream media is on its way there. It's all corporate owned outlets. And Americans are to lazy to Put in the effort to find truth and need it spoonfed. \n\nBut can you blame them ? We used to have televisions with 3 channels. Before that radio. Now 24 hour news outlets and social media rein supreme. Add a dictator that repeats lies so many times they become truth. \n\nI'm not even sure if the left is free from blame either. How much fear mongering and exaggeration was done to motivate us to vote?. What have they done to stop the division? Maybe a milder approach but I'm so jaded now I don't know what to believe and I'm ready to tune out altogether.", 'created': '2024-11-07 07:22:22', 'submission_id': '1gle98w'}
{'comment': 'I hope so. But you do have racist people who love him though. Maybe it’s a mix of misinformed and racist , misogyny ?', 'created': '2024-11-07 05:39:39', 'submission_id': '1gle98w'}
{'comment': 'I really fear for the Haitians that they were demonizing.', 'created': '2024-11-07 13:50:19', 'submission_id': '1gle98w'}
{'comment': 'My friends family are immigrants and im really worried for her 😕', 'created': '2024-11-07 17:57:53', 'submission_id': '1gle98w'}
{'comment': 'Absolutely nothing she would’ve said today is bringing back Roe v. Wade.', 'created': '2024-11-07 06:07:43', 'submission_id': '1gle98w'}
{'comment': 'White and Latino Christians voted for Trump in high numbers, while non-christians, and those with no religious affiliation voted the opposite if we’re going by the exit polls. This was to be expected unfortunately', 'created': '2024-11-07 20:27:11', 'submission_id': '1gle98w'}
{'comment': 'Did Mexican Americans vote against themselves though?\xa0 I work with a lot if blue collar Latinos, and damn near none of them support democrats.\xa0 They hate illegal immigrants because their parents came here the right way.\xa0 They all are looking forward to mass deportations.', 'created': '2024-11-07 20:55:33', 'submission_id': '1gle98w'}
{'comment': "Yep.\xa0 The Democratic establishment thought open borders was popular with Latinos.\xa0 Turns out, it's only popular with illegal immigrants, their friends/families, and white liberals.", 'created': '2024-11-07 20:57:55', 'submission_id': '1gle98w'}
{'comment': "We need to look at margin shifts and turnout. \n\n77% is OK, but not if it's down from the 80s or 90s. Meanwhile, the benchmarks for white people (in terms of %) is much lower.", 'created': '2024-11-07 13:55:39', 'submission_id': '1gle98w'}
{'comment': 'and the 🐑 voters who have no idea what their vote has done to their lives going forward.', 'created': '2024-11-07 03:47:26', 'submission_id': '1gle98w'}
{'comment': "The ball got dropped somewhere. That's what I'm saying. Nobody is looking into this at all and I don't understand why. My state doesn't even allow you to check to see if your ballot was even counted, even though it was numbered. There is just too much going on with this election that cannot be mere coincidence.", 'created': '2024-11-07 13:40:53', 'submission_id': '1gle98w'}
{'comment': 'Not true. Mitt Romney became a senator. Tim Kaine is a senator. She can participate in whatever capacity she sees fit. Although I do suspect she will take a more background approach this time around.', 'created': '2024-11-07 05:37:13', 'submission_id': '1gle98w'}
{'comment': 'Yes, I think so. And Fox entertainment channel has a lot to do with this, too.\xa0', 'created': '2024-11-07 06:06:52', 'submission_id': '1gle98w'}
{'comment': 'I’m scared for my fellow immigrants in my community too.', 'created': '2024-11-07 19:25:13', 'submission_id': '1gle98w'}
{'comment': "I know ,now it's just a unfortunate thing. And if a woman died from a 100% preventable then that's fine. Nothing here to help you. That's no way toivd but you gals just accept it.", 'created': '2024-11-07 06:13:35', 'submission_id': '1gle98w'}
{'comment': 'Yeah, I thought so. Really, christianity for all its talk of purity is a filthy religion. I don´t like religion in general, but how they always try to take the moral high ground espacially disgusts me.', 'created': '2024-11-07 20:56:09', 'submission_id': '1gle98w'}
{'comment': 'How do they feel about them saying they intend on ending birthright citizenship and removing naturalized citizen status?? I\'m seeing a lot of buyer remorse setting in now that the "real plan" has been revealed.', 'created': '2024-11-12 09:10:28', 'submission_id': '1gle98w'}
{'comment': "Mitt Romney was never Vice President of the United States.\n\nIt's rare for a politician to run for a demotion. Senators will run for governor, governors for senator. And people who run for president may seek another office. Ex-presidential candidates may run again or seek other office. But a VP who loses? She's Al Gore, Mike Pence, Walter Mondale. \n\nBut she can seek her own path. Who knows. She's only 60.", 'created': '2024-11-07 13:03:46', 'submission_id': '1gle98w'}
{'comment': 'What are you talking about? No one is accepting it.', 'created': '2024-11-07 06:28:37', 'submission_id': '1gle98w'}
{'comment': 'Ah okay. Thats true. Whatever role she plays — or chooses not to play — I hope she finds peace in. It sucks that America wasn’t ready for her.', 'created': '2024-11-07 15:11:32', 'submission_id': '1gle98w'}
{'comment': 'Absolutely nothing she could have said would have brought back Roe v Wade hence the comment about it now just being treated as just an unfortunate thing- she never mentioned it. Every time you get the microphone you mention it. That is if you genuinely want it overturned.', 'created': '2024-11-07 06:35:30', 'submission_id': '1gle98w'}
{'comment': 'I feel like I need to go watch Ted Lasso now… Thank you for this, internet stranger.', 'created': '2024-11-07 02:44:59', 'submission_id': '1gldyre'}
{'comment': 'Be a goldfish', 'created': '2024-11-07 03:10:34', 'submission_id': '1gldyre'}
{'comment': 'I feel so, so scared for her. The house she’s going to be walking into is going to want to destroy her', 'created': '2024-11-07 01:54:28', 'submission_id': '1gldusw'}
{'comment': 'She is about to be one of the bravest women in this country. I’m hoping she is able to survive.', 'created': '2024-11-07 01:36:38', 'submission_id': '1gldusw'}
{'comment': "Cool. We're still fucked.", 'created': '2024-11-07 02:07:28', 'submission_id': '1gldusw'}
{'comment': 'Is there a GoFundMe for her security detail? Because she needs to be protected!', 'created': '2024-11-07 02:04:48', 'submission_id': '1gldusw'}
{'comment': '', 'created': '2024-11-07 02:35:36', 'submission_id': '1gldusw'}
{'comment': "Watch as she is immediately excluded from any Congressional appointments, committees, hearings, etc. She'll be lucky if the new House Republicans don't link arms to physically stop her from entering the Chamber.", 'created': '2024-11-07 02:42:07', 'submission_id': '1gldusw'}
{'comment': "Let this be a sign to the dems they don't have to shy away from supporting trans rights", 'created': '2024-11-07 02:03:42', 'submission_id': '1gldusw'}
{'comment': 'Take all of the small bits of good news you can people time to grieve today but organize locally.', 'created': '2024-11-07 02:23:11', 'submission_id': '1gldusw'}
{'comment': 'Good for her!', 'created': '2024-11-07 02:09:51', 'submission_id': '1gldusw'}
{'comment': 'Who cares at this point. Her vote will be irrelevant in a GOP-controlled Congress and under a fascist Trump Administration that will make damn well sure she’s a second-class citizen or even a criminal.', 'created': '2024-11-07 02:54:09', 'submission_id': '1gldusw'}
{'comment': 'Republicans will make it hell for her.', 'created': '2024-11-07 03:01:20', 'submission_id': '1gldusw'}
{'comment': None, 'created': '2024-11-07 02:24:45', 'submission_id': '1gldusw'}
{'comment': 'Protect this woman at all costs.', 'created': '2024-11-07 02:38:08', 'submission_id': '1gldusw'}
{'comment': "I imagine this was a bittersweet experience for her. I'd be terrified if I were her", 'created': '2024-11-07 15:38:11', 'submission_id': '1gldusw'}
{'comment': 'A bright spot. I needed that.\n\nBut also a reminder of just how far apart the two Americas are now.', 'created': '2024-11-07 02:20:04', 'submission_id': '1gldusw'}
{'comment': "You've learned nothing.", 'created': '2024-11-07 14:04:02', 'submission_id': '1gldusw'}
{'comment': "I'm sure this will go well for Democrats", 'created': '2024-11-07 13:29:06', 'submission_id': '1gldusw'}
{'comment': 'That was my first thought. I can’t even be fully happy for her the way I want to be because she has a target on her back because she’s trans.', 'created': '2024-11-07 03:32:58', 'submission_id': '1gldusw'}
{'comment': 'All of those fucks are going to have to look her in the eyes when they spew their nonsense.', 'created': '2024-11-07 03:40:50', 'submission_id': '1gldusw'}
{'comment': 'Imply? Oh honey. \n\n“Lady G” and “Kitara Ravache” would like a word. If those Republicans were any deeper in the closet they’d owe royalties to C.S. Lewis.', 'created': '2024-11-07 02:38:19', 'submission_id': '1gldusw'}
{'comment': 'How does it imply that', 'created': '2024-11-07 03:14:56', 'submission_id': '1gldusw'}
{'comment': '“In War: Resolution,\nIn Defeat: Defiance,\nIn Victory: Magnanimity\nIn Peace: Good Will.”\n\nDems are at the first two steps.\n\nRepublicans will use every available tool of the government to destroy American democracy. Fight them at every opportunity. Be their enemy. Play dirty.', 'created': '2024-11-07 12:12:45', 'submission_id': '1gld5xw'}
{'comment': "Don't give up. That's when they really take over.", 'created': '2024-11-07 00:17:24', 'submission_id': '1glbat0'}
{'comment': 'Vote locally in every election. Be active in social issues.\n\nFor those of you who have republican representatives, contact them often & voice your opinion & solution oriented ideas. Join & organize groups to share the issues with your community & representatives.', 'created': '2024-11-06 23:51:37', 'submission_id': '1glbat0'}
{'comment': 'Keep organizing and mobilizing. Focus on local and state issues. Stay ACTIVE in the electorate. Voice your concerns on issues that matter to you. And volunteer if you can at your local chapters. The fight has just stalled. It has not ended.', 'created': '2024-11-07 00:09:32', 'submission_id': '1glbat0'}
{'comment': 'The weird thing about today is that I spent most of it hoping Kamala was ok along with my own self care (I took 4 walks along with a 4 mile run). Hearing her wonderful concession speech brought me a small bit of peace and marching orders for the future.', 'created': '2024-11-07 00:25:24', 'submission_id': '1glbat0'}
{'comment': "Sadly facts and information don't matter anymore folks this is a propaganda war 24/7. Republicans have a social media misinformation campaign machine and Young folks fall right into it. I'm almost 40 years old and can't believe some of the stuff people just 10 years younger than me believe in it's shameful", 'created': '2024-11-07 01:18:19', 'submission_id': '1glbat0'}
{'comment': 'The only time my honors us history teacher made us take notes and turn them in for a grade was his how the Austrian painter came to power lecture. \n\n“Because it could happen here” was his response when we asked why.', 'created': '2024-11-07 01:50:07', 'submission_id': '1glbat0'}
{'comment': 'There’s more that divides America than we have in\nCommon.', 'created': '2024-11-07 00:40:31', 'submission_id': '1glbat0'}
{'comment': 'https://preview.redd.it/dnh72mmy8dzd1.jpeg?width=1290&format=pjpg&auto=webp&s=f3a98c1ff770d20d8388dec4e254aff7eacae677\n\nI posted this on my fb yesterday', 'created': '2024-11-07 00:30:54', 'submission_id': '1glbat0'}
{'comment': 'Germany was already in ruin at the time from WW1. US allowed it while being in a relatively good place, and with the strongest economy in the world.', 'created': '2024-11-07 01:58:22', 'submission_id': '1glbat0'}
{'comment': "The difference with this one is that we all have the collective knowledge of humankind at our fingertips and in our pockets. That wasn't available in the 1920's/30's/40's\n\nBy popular vote, this is what Americans want", 'created': '2024-11-07 03:55:20', 'submission_id': '1glbat0'}
{'comment': '[Hugo Stiglitz Introduction](https://www.youtube.com/watch?v=p2MWW2SpmOs)', 'created': '2024-11-06 23:44:39', 'submission_id': '1glbat0'}
{'comment': 'If you have the resources or the guts or determination plan to leave the United States given the current state of affairs. Right now for minorities, democrats, etc the policies republicans want to implement from project 2025 will strip people of their civil liberties. Do what is best for you and your loved ones and stay safe but never ever lose your values and fighting for the right thing', 'created': '2024-11-07 00:42:55', 'submission_id': '1glbat0'}
{'comment': 'I feel your pain. I have a trans daughter and she was hysterical over this. But to your question, I don’t know either. It makes sense to maintain a very low profile. Try to ride it out and maybe, just maybe, we will have another free and fair election and can change course. Otherwise, please take some solace in knowing there are many others that care, just as you provide some solace for me that I am not alone.', 'created': '2024-11-07 00:27:44', 'submission_id': '1glbat0'}
{'comment': 'Leaders are supposed to set the example for their people. Trump is inflammatory and uncivilized. The MAGA have followed suit and proudly flaunt their racism and bigotry. This country has shown that there will be no repercussions for them. I call on the Dems to abandon their civility as well. We can’t hold ourselves to a higher standard and get burned every time. You can’t engage MAGA with good faith arguments. Shun them. Family, friends. There are no olive branches to extend\n\nDrum up the propaganda machines. Obstruct Trump at every turn. Blame everything bad on him. And of course take advantage of every little good thing. This is only effective if the propaganda machine is.', 'created': '2024-11-07 00:37:22', 'submission_id': '1glbat0'}
{'comment': 'Encourage Liz Cheney to run for the House of Representatives in 2026 (for Wyoming) as a conservative Democrat. Come 2026, Hageman will still have to be "Ms. 100% MAGA", but Liz can tap the likely midterm buyers\' remorse & potentially give Democrats a win in an otherwise-hopeless state.\n\nDespite losing *this race*, the Harris campaign achieved something *miraculous*... it convinced a lot of *literal* life-long Republicans that Democrats **aren\'t** scary left-wing extremists, and got a **lot** of them to lose their "Democrat virginity" and vote for a non-Republican for the first time. \n\nThe sheer **magnitude** of Kamala\'s achievement can\'t be understated. In just a few short weeks, hundreds of thousands (if not a few million) lifelong Republicans went from viewing a vote for her as a personal sacrifice for the sake of saving American democracy to genuinely *liking* her, passionately **wanting** to see her win, and would have *still* voted for her *even if* Trump & Vance miraculously exploded into locust swarms and were replaced on the ticket by someone like Nikki Haley.\n\nLife-long Republicans don\'t switch parties lightly. After yesterday\'s loss, there\'s unlikely to be a sudden mass exodus *right away*... but the seeds are planted... and thanks to Kamala Harris, they\'re now immunized for life against the MAGA virus. From now on, when someone in the Republican Party accuses Democrats of being left-wing extremists, they\'re going to roll their eyes & not fall for it.\n\nNow that the taboo has been broken, most of the Republicans who voted for Kamala yesterday will probably vote for more Democrats in 2026... and even more in 2028... and eventually, realize they can\'t even *remember* the last time they genuinely *wanted* a Republican to win.', 'created': '2024-11-07 01:27:18', 'submission_id': '1glbat0'}
{'comment': "Poor uneducated people are the easiest to control. They are so miserable and desperate that they gravitate towards anyone who shows them attention. Even if it's all lies and promises that aren't kept. Hitler knew this and Trump knew this.", 'created': '2024-11-07 00:34:08', 'submission_id': '1glbat0'}
{'comment': 'Continue to fight. Vote in local elections. Make your voice heard and join protests if they pop up.\n\nWe also need to focus on and try to reduce the apathy in the younger generations. I’m a Gen Z voter and I thought there’d be tons of us out there, but as we know we had a super low turnout. Millennials too. A lot of people feel like their vote doesn’t matter.', 'created': '2024-11-07 05:36:32', 'submission_id': '1glbat0'}
{'comment': "I say fuck it. Democrats need to stop trying to save people from their own stupidity. Let them wallow in the destruction that they voted for. Americans need a wake-up call. MAGA'ts think they'll just be able to sit in their little corner and be safe. They won't be. Trumps project 2025 policies will come for them too, and when they do, I can't wait to be the one to blow it up in their faces. You reap what you sow. We just need to hold fast and be ready for when shit inevitably hits the fan.", 'created': '2024-11-07 01:09:15', 'submission_id': '1glbat0'}
{'comment': '1. Take a break. Trump does not get into office until January. Everyone should step away from the computer, put the phone down, and take some time to deal with losing. \n\n2. Focus on winning local/state elections and organizing at the local/state level. Going to be important for abortion and education especially and likely everything else since the Trump plan is to dismantle the government. \n\n3. Call/email your reps and senators and let them know what you want. Have to keep pressure on them. Even if they are Republican not every single one will agree with project 2025. Might be able to actually block things\n\nThe Democratic Party as a whole needs to stop blaming people and look in the mirror. They have lost touch with an enormous portion of the electorate. They are also getting lapped in the messaging department. Focus on local outreach. Figure out where people need to be met. Try to get market share in the bro culture. Ditch the celebrity speeches in favor of having local leaders (organizers, elected officials, business leaders) speak and stop courting republicans. \n\nAll of that said, I do think for a lot of these people it was as simple as:\n\n1. Prices are high and Biden/Harris are in power and not believing they can actually bring prices down. \n\n2. Not believing Trump will do all this terrible shit he says he will do because he was in office before promising to do all sorts of terrible things and all he did was pass a tax cut.', 'created': '2024-11-07 01:33:49', 'submission_id': '1glbat0'}
{'comment': "We organize, build a resistance and fight them every step of the way.\n\nHelp migrants hide so they're not thrown in concentration camps or killed.\n\nHelp smuggle pregnant people out of red states. \n\nYou know, the usual resistance shit.", 'created': '2024-11-07 03:56:54', 'submission_id': '1glbat0'}
{'comment': "Republicans cheated, Haris got less votes than Biden somehow, far less, 20,000,000 less. But somehow she also raised 1 billion in donations and lost? It's obvious that Republicans cheated somehow.", 'created': '2024-11-07 18:50:12', 'submission_id': '1glbat0'}
{'comment': 'Let’s ask the German billionaire immigrant who funded tRump how he feels! Oh he may be a closeted supporter of the American Reich!', 'created': '2024-11-07 00:35:39', 'submission_id': '1glbat0'}
{'comment': "I feel like I woke up in an alternate dimension this morning. It was the same way I felt when Reagan was re-elected. I couldn't believe that this happened again. I didn't even feel this bad when Bush jr was re-elected.", 'created': '2024-11-07 06:43:38', 'submission_id': '1glbat0'}
{'comment': '1. start understanding your civil rights by law. Voting is fine if they even have them again. But crazy fights with crazy in order to get the most donor money. 2. Interesting times are coming so start planning for your safety.', 'created': '2024-11-07 12:28:26', 'submission_id': '1glbat0'}
{'comment': 'i\'m an independent that voted for harris. i think democrats should reassess things since 2020. particularly the culture war and how "wokeness" changed to the extreme. be able to look within in defeat than look for outward excuses.\n\nalready see some on the "voter turnout gate" bandwagon. turnout is down overall, but the battleground states (that matter) tell a different story.\n\ni think the overall theme of the results is that people would rather risk red than continue with blue. so that mostly involves the incumbents. i do think, in hindsight, harris and the campaign made the mistake of pushing on abortion and democracy towards the end over the economy and border.', 'created': '2024-11-07 01:48:39', 'submission_id': '1glbat0'}
{'comment': "I am the child of Holocaust survivors. My parents were good, kind people. One of my earliest memories is going to go vote with them. \n\nAnd for years every day I wake up and am grateful they are dead so they don't have to relive that horror in the country they loved so much that we were an English-only home.", 'created': '2024-11-07 02:16:22', 'submission_id': '1glbat0'}
{'comment': "Hell, even the Germans had fallen into disaster that brought Hitler about. They had lost the greatest war in human history only a decade and half prior, their country was in tatters with war reparations, the currency was better used as fuel to burn than actually buying anything, and a worldwide depression going on to make it all worse. Trump was elected because Biden didn't pull his anti-inflation lever and instead only helped give the US the fastest recovering economy.", 'created': '2024-11-07 04:24:26', 'submission_id': '1glbat0'}
{'comment': "More than anything, do not give Trump the credit of assuming his competence. He's only become more unhinged, unfocused, and incompetent in the four years since he was last in office, and the people around him aren't much better. The GOP is prone to infighting, they can't govern their way out of a paper bag, and the keys of democracy are still very much in place - including state sovereignty, at a time when most states have Democratic governors. Also, even the Supreme Court isn't really all that into the suppression of democracy, given even Thomas and Alito signed off on slapping down voter suppression measures in Pennsylvania on election day.\n\nRide out the storm and keep fighting. Democracy doesn't die overnight, and nobody can just magic our elections away.", 'created': '2024-11-07 04:59:03', 'submission_id': '1glbat0'}
{'comment': '[removed]', 'created': '2024-11-07 11:32:10', 'submission_id': '1glbat0'}
{'comment': 'MAGA isn’t a political stance, it is a case of collective narcissism, and its leaders are communal narcissists. That’s why it is so resistant to rebuke, accountability and change. Any response to vitriolic rhetoric is met with deflection and gaslighting. Just like a regular narcissist, that is why its followers gloat and celebrate when they visibly make others upset. That is why its followers lean on cruelty and dehumanization when they take issue with something. That is why the Democratic Party struggles to face MAGA in a “fair” fight. All debating, arguing, and responding does is add more ammunition for the party of Cheeto Benito to twist and cherry pick. Their accusations of others are the things they fear for themselves. Their claims that the left is led by fear, is because they are acting out of fear. Their accusations that liberal men are weak, is because they themselves feel powerless. Their overreach for control of others is because they do not feel like they have control. The major thing about MAGA, is not that its followers are insufferable, and they are. It is that the people that embrace that ideology are people with a weak sense of self. Studies show that caucasians from young adulthood and up in the U.S. are much more prone to low self-esteem, and male hispanics are not far behind them, than any other demographic. The vast majority of the voter base that turned out for the Purulent Pumpkin match that profile. It also explains why they so readily become a swarm of flying monkeys for the communal narcissists that lead MAGA. The people most vulnerable to narcissism are those with low self-esteem. MAGA won’t go away, no matter how blatant and abhorrent their narratives become, because they’re being treated like opposition. That is a theater in which narcissists thrive. The drama empowers them, the emotional reactions can be twisted to fit their distorted worldview. Reacting in a manner that would make most normal people step back and think about their actions, only pushes them further into their alternate reality. The problem with narcissism is that it doesn’t go away. Even worse, those that have willingly become flying monkeys for a narcissist will not readily give up the imaginary empowerment they’ve been granted. Some may sober up, some may wake up and realize after one too many lines crossed. Quite often it is way too late to make amends at that point.\xa0\n\n\n\n\tWhat does that mean for those that stayed on the left side of the fence? Well, we’re probably not going to fully repair the bonds broken by MAGA, those family members that gladly cast aside their humanity and empathy for a sense of belonging aren’t going to be the same even if they apologize and change. However, it means we should approach conflict with MAGA, like one would a narcissist. They thrive and grow on interpersonal conflict, so don’t give it to them. Instead, set clear well-defined boundaries for yourself, don’t cross into the mud pits with them. Think of MAGA as a shitposter on steroids if you have to engage. Don’t give them ammunition to continue creating their victimhood and persecution mindset, you know that is what will happen. Let them talk, and let them eat each other. If you don’t give them conflict, they will find conflict among themselves. That is what happened for a portion of 2016-2020, and a good part of why Biden got elected. Starve the narcissists, do not give them any fuel, do not give them any ground, let them turn on each other again. Do not engage in conflict with them like they are regular people anymore, they aren’t. That is clear by the way they voted for 2024. They are a group of people consumed by a kind of maligned narcissism that does not respond in a rational and equitable manner. Studies show most people vote along that which they most socially identify, they may not all be narcissists, but they are the flying monkeys for them. Do not engage in petty arguments with them, do not give them the responses they want to justify their prejudices and hate and do not let them have the last bit of control you have. Let’s lift each other up, I am sure a lot of support systems are frayed, I know MAGA has split my family and community in two.', 'created': '2024-11-07 14:29:21', 'submission_id': '1glbat0'}
{'comment': 'This is exactly what I said when learning about the Holocaust in high school and people would claim that this would never happen again. I told people that humans will always be capable of this. We will never truly learn.', 'created': '2024-11-07 20:17:12', 'submission_id': '1glbat0'}
{'comment': 'If you’re lucky enough to not be actively in the MAGA/christian nationalist crosshairs, you help the people who are, even if it means putting yourself in great danger. \n\nIf you are a target, keep your head down and find people you can trust to help you when you’re in need of protection.\n\nI don’t know what to do about the larger threats, or even if there’s anything anyone can do, but if focus on my community (geographical and digital) I feel less helpless.', 'created': '2024-11-07 22:22:40', 'submission_id': '1glbat0'}
{'comment': 'Get ready to elect Present Pete in 2028', 'created': '2024-11-07 00:57:18', 'submission_id': '1glbat0'}
{'comment': 'He’s not angry, he just pandered to the angry so he could stay out of prison, and it worked', 'created': '2024-11-07 00:48:27', 'submission_id': '1glbat0'}
{'comment': 'Just wait until the ones who voted for him lose their health care and social security benefits.', 'created': '2024-11-07 05:01:53', 'submission_id': '1glbat0'}
{'comment': 'Haha just don’t look at what has happened just today in Germany. The governing coalition fell apart and elections have been called with the AfD (the Nazis) polling in 2nd at 20% behind the conservative CDU.', 'created': '2024-11-07 05:21:32', 'submission_id': '1glbat0'}
{'comment': None, 'created': '2024-11-07 03:44:24', 'submission_id': '1glbat0'}
{'comment': 'Apathy.', 'created': '2024-11-07 00:32:22', 'submission_id': '1glbat0'}
{'comment': 'The missing part of that headline is that the Germans are very sorry for what they allowed. They even added constitutional bits to prevent it and add reparations', 'created': '2024-11-07 08:43:36', 'submission_id': '1glbat0'}
{'comment': 'Don’t forget - we’ve got Nancy Pelosi, Chuck Schumer, Barack Obama, Joe Biden, Kamala Harris, etc. sitting on the sidelines of a Trump presidency, convening in darkened rooms, with years of experience between them. Yes, I know - they are all old or older - but I am convinced that they have got a thing or two up their sleeves in preparation for this moment.\n\nThe first Trump win was a nasty surprise that caught everybody off guard, and there was true shock with just how low Trump would go. Not this time around - over the past four years preparations have been done and the groundwork has been laid for a well thought out resistance. \n\nAll Democrat leadership needs is our confidence and our support. We’ve got the right people in the right places - it will be a long and unpleasant four years, but we are prepared. Hang on and keep the faith.', 'created': '2024-11-07 17:13:17', 'submission_id': '1glbat0'}
{'comment': 'hey!!! At least we will have memes for decades!', 'created': '2024-11-07 05:26:39', 'submission_id': '1glbat0'}
{'comment': "There's also a rise in right extremist party in Germany today", 'created': '2024-11-07 15:43:23', 'submission_id': '1glbat0'}
{'comment': "Pray to a god that doesn't exist that we can fix it when.....IF he ever leaves....", 'created': '2024-11-07 16:03:32', 'submission_id': '1glbat0'}
{'comment': 'Send them to live with friends or relatives abroad.', 'created': '2024-11-07 17:04:05', 'submission_id': '1glbat0'}
{'comment': 'Get involved at the grass-roots and rebuild the shattered left wing of the working class. I joined my local chapter of the Working Families party to get more involved.', 'created': '2024-11-07 18:02:37', 'submission_id': '1glbat0'}
{'comment': 'Sit back and watch the idiots get what they deserve while we plan and strategize the greatest democratic comeback of all time.', 'created': '2024-11-07 18:20:20', 'submission_id': '1glbat0'}
{'comment': 'The American experiment is truly over. The turkeys voted for Christmas. Sorry.', 'created': '2024-11-07 18:39:43', 'submission_id': '1glbat0'}
{'comment': 'The problem is, the problem… problem. What the fuck? Who fucking knows? God I hate that dude. And we just proved that you can put the absolute worst person in the world up against a capable intelligent woman of color and she will loose. 3 reasons she lost. Vagina,melanin, and working class. Let’s face it. Joe Biden fucked the union railroad workers.. he let them get completely fucked on their contract.. what did they get? 3% 4% increase? while the IBEW got 43% increase over the next however many years. \n TRUMP is far worse for America, and I don’t think people get it… but I know we lost the working man’s vote because of that type of shit. Although his whole no tax on overtime I suspect means no overtime. Or not eligible for it until you work like 180hours a month or something like that.. or overtime pay is regular pay with no tax.. it’s not just gonna be something good for us', 'created': '2024-11-07 20:41:08', 'submission_id': '1glbat0'}
{'comment': 'WE, those of us who can fight, should absolutely fight in every way we possibly can. If you live in a blue state like I do you have to make damn sure that your elected Democrats hold to their word that they’ll do everything in their power to hold off Trump. \n\nThe Democratic Party needs to run populist candidates from here on out. The only candidates winning their elections downballot are the populist Democratic candidates who are campaigning on policies that Republicans would undoubtedly scream “socialism” at. No more of this squishy centrist “let’s be the big tent party” bullshit. Come with unwavering policy that addresses the middle class. Leave it up to the Republicans disillusioned by their own party to make up their own minds. No more courting them. Liberalism is obviously not the path forward. We need to be bold and pick candidates who will pledge to run on popular policy across the board. Not just relying on one or two and hoping it’s enough.', 'created': '2024-11-07 22:21:40', 'submission_id': '1glbat0'}
{'comment': 'I have a friend, does well for herself in real estate, came to this country from Italy when she was 17. Big Trump supporter. She tells me that Trump is not a fascist because she\'s Italian, and Italians know fascism. You know, Mussolini. And I just look at her because "I\'m immune from deception because I\'m Italian" is really a new one on me. \n\nOf course, I don\'t think the denaturalization folks will be focusing on Italians, so she\'s probably safe. But I\'m really, really disgusted.', 'created': '2024-11-08 01:34:08', 'submission_id': '1glbat0'}
{'comment': 'An immediate concern is his plan to reclassify thousands of federal employees from civil service to political appointees, then fire them and replace them with loyalists.\n\nIf our democracy is intact, midterms usually go to the opposition, and hopefully we can amplify that.', 'created': '2024-11-08 12:04:08', 'submission_id': '1glbat0'}
{'comment': 'The Dems and the traditional conservatives need to come together and create an entire anti-fascist platform. The old R vs D dichotomy is dead. We need new approaches, new ideas, and new energy. The next four years are going to suck, and we need to limit it to four.', 'created': '2024-11-07 04:05:21', 'submission_id': '1glbat0'}
{'comment': 'Start collecting the evidence of the multitudes of crime about to be committed', 'created': '2024-11-07 03:17:23', 'submission_id': '1glbat0'}
{'comment': 'I am planning to get involved locally. It’s the only control we have now the election is over.', 'created': '2024-11-07 07:10:39', 'submission_id': '1glbat0'}
{'comment': 'German here.\n\nYou need to understand that you cannot reach everyone with facts or empathy.\n\nSome people only act based on fear and only if it is about them. \n\nNext time talk a lot more about what they personally have to fear. Especially how they will have less money, loose their job, might get homeless etc.\n\nTHAT will be something they care about. Not Climate, Epstein or Democracy!\n\nKeep that in mind.', 'created': '2024-11-07 17:14:00', 'submission_id': '1glbat0'}
{'comment': "I don't think there's a lot we can do right now except wait. Wait to see what this new administration is going to be like. We study them and the people who voted for them. We get to know them. \n\nThen we organize and we get our messages out there. And this time we are smarter and wiser. Plus we now know what issues are driving people to vote Republican. We make sure that our message and our intentions reach the Maga people. \n\nWe are the only ones who can bridge this divide now. We need to find a way of being together again. That is what Maga people want and it is what we want so we use that common ground to come together.", 'created': '2024-11-07 18:19:23', 'submission_id': '1glbat0'}
{'comment': 'To quote Terence Mckenna, "find the others." Many of us don\'t feel like we have any place in a society that just embraced fascism; others feel completely and totally alone. Make a point of spending time exclusively with your leftist friends/acquaintances, doing whatever it is you enjoy. Dress to show you political affiliation; not to spite Republicans, but to give hope to others who feel lost and alone. Build a safe, inclusive social network on the basis of shared democratic values, and be there for each other. \n\nAnd on the flip side, let Trump supporters get used to be being told no; no to dates, no to parties, no to small talk. It\'s okay to refuse to associate with people whose values are antithetical to yours.', 'created': '2024-11-07 02:05:56', 'submission_id': '1glbat0'}
{'comment': 'Now I understand.', 'created': '2024-11-07 03:20:31', 'submission_id': '1glbat0'}
{'comment': 'Same with the Bible story of the people choosing to free Barabbas over Jesus when Pontius Pilate gave them the chance to free him.', 'created': '2024-11-07 06:44:53', 'submission_id': '1glbat0'}
{'comment': 'German here uhmmmmm, its about to get spicy here with the liberals no longer in the coalition.', 'created': '2024-11-07 13:23:01', 'submission_id': '1glbat0'}
{'comment': 'Unfortunately this is actually what democracy looks like. It means that there will be times where the side we believe in and support wins and times where they lose. This was an overwhelming victory, not close at all. \n\nWe should pay attention to WHY this happened. The Democratic Party put all of us in a bad situation through multiple missteps and it would have been a minor miracle for a half black/half Indian woman to win when she had a little over 3 months to actually campaign. Our country is still full of people who do not believe in a woman leading it, let alone a woman of color. \n\nI don’t blame Harris, she did the best she could with the cards that were dealt. My hope is that the party leadership takes a step back and re-evaluates their strategy when it comes to capturing hope among American voters. If they don’t, then we will continue to see a Republican led country for the foreseeable future.', 'created': '2024-11-07 14:09:35', 'submission_id': '1glbat0'}
{'comment': 'If Republicans win a narrow (or even not-so-narrow) victory in the House, have a plan in place to watch the squabble between the Freedom Caucus and remaining Republicans for a few weeks without electing a viable Speaker... then offer a deal that could ultimately shatter the Republican Party and lead to Trump\'s impeachment *and conviction*.\n\nAs I understand it, there\'s nothing to prevent a majority of the House from amending the rules to delegate the Speaker\'s control over the House calendar to another member. So, after House Republicans flail around for a few weeks getting repeatedly c\\*ckblocked by the Freedom Caucus, quietly offer Republicans willing to defy Trump & MAGA (using Dan Crenshaw as an example) a deal:\n\n* Switch parties & join the Democrats\n* Democrats (plus Dan) vote to amend House rules creating a second role with the explicit power to go over the Speaker & add items to the House calendar & bring motions to the floor. Let\'s call the new role the "Balancer"\n* Democrats elect Dan Crenshaw as Speaker, and Hakeem Jeffries as Balancer. Basically, Dan gets the title & ceremony, but Hakeem gets tremendous *power*.\n\nFox News & Trump would go absolutely **nuclear**.\n\nIn a moment of ill-conceived rage, Trump would angrily issue an order that might or might not technically be *constitutional* (per USSC), but would be *disobeyed* and *refused*.\n\nTrump throws a tantrum and gives more ill-advised orders. JD jumps at the opportunity to invoke the 25th Amendment (possibly under his sole authority, if there are no approved cabinet members yet) & becomes Acting President. At this point, even *Republican* members of the House & Senate are completely freaked out that Trump would actually *cross "that" line*. Within hours, the House passes Articles of Impeachment, and the Senate makes it *official* a few days later. DJT earns his coveted place in history as the first President, ever, to be impeached *and convicted*.\n\nDuring, or shortly after, the impeachment trial, a large number of high-profile retired Republican officials -- including George W. Bush -- leave the GOP, join the Democrats, and urge others with a functioning moral compass to do the same. Multiple House & Senate Republicans follow, and a tsunami of registered voters begin to switch as well.\n\nWithin weeks, Democrats have near-supermajorities in the House & Senate... while President JD Vance and newly-appointed VP Nikki Haley spend the next 3 years tiptoeing on broken glass playing "good cop/bad cop" trying to repair a broken coalition they secretly know is dead.\n\nCome 2028, JD and Nikki *both* get torn apart by increasingly-MAGA Republicans who blame JD for Trump\'s 25A removal, and blame Nikki for not being "MAGA enough". By this point, all the moderates are gone from the party. Nikki *herself* probably *would* have left, if JD hadn\'t offered her a VP role she just couldn\'t turn down.\n\nAdmittedly, this whole thing would require political chess on grand scale... but it could also be an ironic golden opportunity to seize victory from the jaws of defeat.\n\n===\n\nI honestly don\'t know whether re-nominating Kamala in 2028 (amidst a rupture like I just described) would be prudent or not... but the next Democrat who gets elected President could give her an awesome and well-earned consolation prize where she could do lots of good for many years... in the Supreme Court.', 'created': '2024-11-07 19:19:26', 'submission_id': '1glbat0'}
{'comment': "What group of personality Colt Colt of personality at do we do now? Now, we set aside the small things that divide us. and fight with everything we can. I figure we have 1 to 2 years before the gard rails against dictators falls. They make really cheap, small, easy to \nCarry radio transmitter and receivers. Set up a radio free America like they still do in Europe \nStart trying to gather enough people for a resistance group. Then we wait. When he starts attacking our constitution and our military goes along with him, we make a stand. We will fail. He will kill us and then enslave those that submit. To use on the moon and mars. We are not really needed on earth. AI and robots can care for the 1 percent. But when it comes to building on the moon and on Mars, out life's are cheaper than robots.", 'created': '2024-11-07 20:50:44', 'submission_id': '1glbat0'}
{'comment': 'Love. Educate yourself and others. Vote. If you have a Democrat friend who didn\'t vote, tell them why they should have. One thing I admire about Republicans is that, in their own ability, they cared more about "winning" this election.', 'created': '2024-11-07 22:14:27', 'submission_id': '1glbat0'}
{'comment': 'Now we know.', 'created': '2024-11-07 23:34:50', 'submission_id': '1glbat0'}
{'comment': 'I am moving to France where I have cousins.', 'created': '2024-11-08 00:29:56', 'submission_id': '1glbat0'}
{'comment': 'I wish I knew. 💙', 'created': '2024-11-08 02:07:52', 'submission_id': '1glbat0'}
{'comment': "I think it's time to start making local friends. This will be a long fight and the internet has the power to tear us apart.\xa0", 'created': '2024-11-13 03:06:06', 'submission_id': '1glbat0'}
{'comment': 'Assuming we still have an election in 2028 who would be a good candidate? Shapiro? It’s obvious democrats need to win PA', 'created': '2024-11-07 17:10:35', 'submission_id': '1glbat0'}
{'comment': 'Maybe Canada can invade?', 'created': '2024-11-07 00:39:58', 'submission_id': '1glbat0'}
{'comment': 'The first thing is to hold out HOPE people, we have to hold onto to HOPE. It seems bleak now but hold out HOPE, we can re-elect the House and Senate in 2 years. We just have to endure the 2 years before letting our voices heard again! Hold out HOPE!', 'created': '2024-11-07 07:10:43', 'submission_id': '1glbat0'}
{'comment': '[removed]', 'created': '2024-11-07 00:16:58', 'submission_id': '1glbat0'}
{'comment': 'Stop pretending that white independents in Ohio with no college degrees who are bathed in Fox News will jump to vote for candidates (even if they’re wonderful and brilliant) with nontraditional backgrounds who talk like kindergarten teachers and who have trouble beating JD Vance in debates.\n\nAnd send everyone at a high level to Neuro Linguistic Programming classes. We need to learn how to use the verbal karate people like Trump use and neutralize it. \n\nAlso go all in on loving cops. We need as many candidates as possible who’ve walked a beat. No more ACAB. No more defund the police. We need to use every strategy we can think of to pry away cops and get them to oppose fascism instead of implementing it. Police power is the core of fascism. Take that advantage away from the Republicans.\n\nEDIT: Also, use the primary process to reality check candidates. It’s important to start with states like Iowa or Ohio and see if candidates do well there. Maybe some nontraditional candidates, like a new Obama, will do great there. But, if this about whether we have a fascist dictatorship or not, look at the world as it is, not how we want it to be. We need candidates who will win.', 'created': '2024-11-07 13:23:55', 'submission_id': '1glbat0'}
{'comment': 'If by “we” you mean the majority of America, the majority of America actually voted for the guy.', 'created': '2024-11-07 19:45:42', 'submission_id': '1glbat0'}
{'comment': "It's over, period", 'created': '2024-11-07 00:23:37', 'submission_id': '1glbat0'}
{'comment': 'It’s different here. This is a great big fat man.', 'created': '2024-11-07 06:53:46', 'submission_id': '1glbat0'}
{'comment': 'What if we don’t continue to have elections? What if women lose the right to vote?', 'created': '2024-11-07 00:37:38', 'submission_id': '1glbat0'}
{'comment': '> Vote locally in every election.\n\nThis is super fucking important', 'created': '2024-11-07 13:05:44', 'submission_id': '1glbat0'}
{'comment': "Also learn how to run\n\nLike most places aren't even contested. Run independent Red States if ever. You don't need that much money to canvass , you could start knocking on doors, join clubs and join events.", 'created': '2024-11-07 18:59:22', 'submission_id': '1glbat0'}
{'comment': "Nah, I'm too tired to help people who don't want it. I'm too busy trying to find solutions if he takes my disabled sons healthcare. I'm not helping anyone who voted for his healthcare to be taken and I'm gonna be blunt about it.", 'created': '2024-11-07 08:04:21', 'submission_id': '1glbat0'}
{'comment': "I wouldn't be surprised if they redistric every red area to benefit them if we continue to have elections.", 'created': '2024-11-08 03:59:46', 'submission_id': '1glbat0'}
{'comment': 'We lost this election because *15 million* fewer Democrats showed up for Harris than showed up for Biden. Conversely, Trump was only 3 million down. Thus, all this talk about people moving right is incorrect. Approximately, the same number of reds showed up but the blues were down 15 million.\n\nI’m not sure what I can do to get 15 million people to show up. It’s completely out of my control.', 'created': '2024-11-07 03:04:09', 'submission_id': '1glbat0'}
{'comment': '>The fight has just stalled. It has not ended.\n\nBecause it never ends. The fight against evil is more ancient than multi cellular organisms', 'created': '2024-11-07 04:33:37', 'submission_id': '1glbat0'}
{'comment': None, 'created': '2024-11-07 02:30:36', 'submission_id': '1glbat0'}
{'comment': 'and vote and encourage your family and friends to vote.', 'created': '2024-11-07 03:08:12', 'submission_id': '1glbat0'}
{'comment': 'Same here. Can’t imagine how weird it must be for her after 3 months of steaming ahead and fighting hard.', 'created': '2024-11-07 00:56:39', 'submission_id': '1glbat0'}
{'comment': 'I have no idea how to fight it', 'created': '2024-11-07 01:20:59', 'submission_id': '1glbat0'}
{'comment': 'And the MAGA Nazi propogandists are out in full force on Reddit continuing to push a bunch of bullshit hoping to distract us.', 'created': '2024-11-07 13:07:03', 'submission_id': '1glbat0'}
{'comment': 'Now that’s a wise teacher.', 'created': '2024-11-07 08:15:31', 'submission_id': '1glbat0'}
{'comment': 'Agree', 'created': '2024-11-07 00:41:33', 'submission_id': '1glbat0'}
{'comment': 'Americans don’t give a fuck. They think he’s cool. An old man who dances like he’s giving out dual handjobs', 'created': '2024-11-07 00:40:13', 'submission_id': '1glbat0'}
{'comment': "They won't say it out loud, but that's what many of them want...", 'created': '2024-11-07 00:49:42', 'submission_id': '1glbat0'}
{'comment': 'Love this but the Nazi Peter Thiel is also German and funded this coup.', 'created': '2024-11-07 08:39:50', 'submission_id': '1glbat0'}
{'comment': 'Thanks, Germany', 'created': '2024-11-07 02:14:52', 'submission_id': '1glbat0'}
{'comment': 'For those of us marginalized people who can’t go anywhere, what do you suggest? I know for a fact because I’m disabled I’m not going to be accepted by any other nation if I were to try and pursue immigration. Even if I wasn’t, it would take years to get the proper paperwork and skill set required to be accepted based on my technical experience on a work visa. I also doubt other nations would feel sympathy for any Americans so I don’t see us being accepted as political refugees. The most sought after sectors are AI and renewable climate technology development. They’re not looking for more accountants. I’m basically here to stay.', 'created': '2024-11-07 22:07:14', 'submission_id': '1glbat0'}
{'comment': 'Well said. We need to be the "Resistance." We need to beat them at their own game and constantly get in their faces and make it hard for them to walk down the street without being berated. Enough is enough. Anti-Trump t-shirts, stickers, flags, etc. need to be everywhere.', 'created': '2024-11-07 00:52:45', 'submission_id': '1glbat0'}
{'comment': "Where the fuck did those votes go? Because it doesn't seem like they ended up in her column.", 'created': '2024-11-07 02:55:33', 'submission_id': '1glbat0'}
{'comment': 'Well, democrats should have helped people go to college. They did not. I am a first generation college student and took my education up to the top and earned my Ph.D. There was no help for me. Obama, of all people, tied student loan interest to the 10-year t note. Federal money was ripped out of state government. Democrats did nothing to control loan servicers. If education helps, then the dems need to fight.', 'created': '2024-11-07 16:07:21', 'submission_id': '1glbat0'}
{'comment': 'Privileged take because a lot of queer people, BIPOC, women and disabled people with absolutely nowhere to go and no way to fight back are about to meet their demise.', 'created': '2024-11-07 22:08:44', 'submission_id': '1glbat0'}
{'comment': 'i am...i have my small circle thats it', 'created': '2024-11-07 06:28:54', 'submission_id': '1glbat0'}
{'comment': "Every Trumper I've heard even old black ladies are *excited* that her said he would do mass deportation on day one.\n\n\nThe problem is *they do believe he will do it*...*it's want they want*.\n\n\nHow do you engage with people so eager to make others suffer? How do you have a civil conversation with someone who will never ever change their mind that illegals are the problem?", 'created': '2024-11-08 13:49:46', 'submission_id': '1glbat0'}
{'comment': 'Tens of millions of outstanding ballots are still being counted in blue VBM states like California. We have 30 days until we have to submit our certifications. But none of that actually matters since it wouldn’t change the electoral outcome.', 'created': '2024-11-07 22:13:53', 'submission_id': '1glbat0'}
{'comment': "A lot of that isn't even their fault. The issue seems to be getting ahead of the narrative. When fabricated garbage is introduced through astro-turfed movements funded by conservative think tanks and political groups like the CRT scare and litter boxes in bathrooms, the democrats played defense and reacted looking weak and gave credence that some of this might be true. What if we did something similar, but with our own style? Put the republicans on defense, and use modern media like tik tok and facebook to spread it. Talk about how weird they are. Post stories about the poor women already dying in hospitals in red states. meme on their reps and senators to younger demographic.\n\nWe were winning the culture war in the early 00 and 10s, but we've been on the defense ever since.", 'created': '2024-11-07 05:53:00', 'submission_id': '1glbat0'}
{'comment': '💙', 'created': '2024-11-08 02:00:35', 'submission_id': '1glbat0'}
{'comment': 'Yeah but who’s gonna defeat fascist America', 'created': '2024-11-07 05:07:53', 'submission_id': '1glbat0'}
{'comment': "Everytime I tried to remind people that humans are actually pieces of shit i get obliterated.\n\n\nWe cant figure out how to stop killing people ffs..what we do to others and life and this planet is absolutely vile. We shouldn't be so happy to go to war and shoot people but it's like our #1 thing to spend money on.", 'created': '2024-11-08 13:54:45', 'submission_id': '1glbat0'}
{'comment': 'Buddy, if Pete Buttigieg is the candidate in 2028 he already has my vote. I’m just seriously questioning if voting might even be possible now.', 'created': '2024-11-07 05:17:57', 'submission_id': '1glbat0'}
{'comment': 'No chance', 'created': '2024-11-07 05:08:31', 'submission_id': '1glbat0'}
{'comment': 'Gonna be a lot of shocked Pikachu faces', 'created': '2024-11-07 05:35:36', 'submission_id': '1glbat0'}
{'comment': "That's a dangerous way to think", 'created': '2024-11-08 16:04:45', 'submission_id': '1glbat0'}
{'comment': 'The Germans were essentially strong armed into apologizing. They needed crucial funding to rebuild after WWII and the allies only provided that funding if Germany would make damn sure it would never happen again.', 'created': '2024-11-07 22:12:52', 'submission_id': '1glbat0'}
{'comment': 'She basically just said "I\'m one of the attractive immigrants, not one of the deplorablea"', 'created': '2024-11-08 13:55:44', 'submission_id': '1glbat0'}
{'comment': 'We tried that pretty much this time didn’t work out well', 'created': '2024-11-07 05:07:33', 'submission_id': '1glbat0'}
{'comment': "That isn't want maga people want. I've been yelled at by my maga neighbor when I was alone gardening. The maga black lady at the store cannot wait for mass deportation to begin...", 'created': '2024-11-08 13:58:02', 'submission_id': '1glbat0'}
{'comment': 'Naw, we’re about to elect Poilievre, but you can try asking Mexico?', 'created': '2024-11-07 01:16:06', 'submission_id': '1glbat0'}
{'comment': "Let's meet up at the border and open the gate for them", 'created': '2024-11-07 00:52:16', 'submission_id': '1glbat0'}
{'comment': 'Well the good news is American politics move at a glacial pace. They have two years, and are morons. Maybe they wont get that much done.\n\nSeriously conservatives will in fight and one up each other trying to be the craziest of all the crazies. Plus congress works what? 100 days a year?\n\nThankfully they are as dumb and selfish as they appear to be.', 'created': '2024-11-07 00:55:01', 'submission_id': '1glbat0'}
{'comment': 'No way that happens without a civil war. The amount of women that voted this year simply because of abortion shows that we won’t go down without a fight. \n\nWhile I strongly believe he won’t ruin democracy and we’ll continue to have elections as normal, I’m prepared to fight if he tries to do that and everyone else should be too. It’ll get ugly but, if that time ever comes, we need to fight for our freedoms.', 'created': '2024-11-07 05:32:23', 'submission_id': '1glbat0'}
{'comment': 'The US constitution was created by very wise people and the strength of the US is in its federation. An amendment requires 2/3 of votes in the house and senate and 3/4 of the states. It’s just not going to happen. Huge parts of the country are blue so it’s just not going to happen. \nIt’s a difficult time for sure, but it will pass. \n\nRather I would start asking why did Trump win? I agree with Bernie Sanders’ letter about how the Dems have forgotten the workers; they hold token primaries portraying an arrogant attitude of “we know who’s best for you”. I think this is where we start. People are hurting and they want someone who they think will either fix the system or break it.', 'created': '2024-11-07 07:25:58', 'submission_id': '1glbat0'}
{'comment': 'I like to think we were just being over dramatic about trumps anti democratic views. He won legitimately, that means he has slightly less reason to try to disregard the constitution', 'created': '2024-11-07 00:41:21', 'submission_id': '1glbat0'}
{'comment': 'You do your part by leading by example, that truth, compassion, inclusion, logic wins over fear, division, and hate. You might just convince a few, but for those who voted and care, we might be able to convince those millions who did not vote to care again.', 'created': '2024-11-07 03:13:14', 'submission_id': '1glbat0'}
{'comment': 'You’re right. It’s out of your control. But there are things WITHIN your control. Voting in school boards and local elections. Participating in PRIMARY elections. Calling your rep in congress about bills you care about. THESE small things matter.', 'created': '2024-11-07 05:35:24', 'submission_id': '1glbat0'}
{'comment': 'Sadly, 15 million less showed up for Kamala because they’re racist misogynists. Its obvious.', 'created': '2024-11-07 08:42:46', 'submission_id': '1glbat0'}
{'comment': 'Those people didn\'t show up because Republicans have spent the last half-century focusing heavily on shaping the culture of rural America. They have made hating Democrats and "urban elites" party of the identity of the working class, to the point that they don\'t have to stand for anything to win. They have successfully made sure that the default choice in any election is a Republican.\n\nDemocrats, liberals, and progressives need to stop focusing on the presidency and start getting out and humanizing themselves to their neighbors. Charity events, community picnics, meet & greets, and volunteering all across the country. They need to show up with their friends and family and neighbors and NOT MAKE IT ABOUT POLITICS. Make it about trust, prove the foundations of their ideas by demonstrating how it works by hand. Identify the leaders who gain community trust and run them locally.\n\nThey need a 2, 4, and 10 year plan to reestablish the trust of the working class. We\'re six years from another census when we can start working on redistricting again, if we can build that trust from the ground up now, we might have a chance', 'created': '2024-11-07 15:03:58', 'submission_id': '1glbat0'}
{'comment': 'Hi Canadian friend, I am an American immigrant who happened to have a PR status in Canada. Do you think Canada may become alt-right next year? I get it that the conservative party may win, but from a remote look they look like less scary than Trumpism. Am I wrong or Canada is actually in a better shape despite the economic/residence crisis? Thank you friend for contributing to the fight to protect human civilization.\xa0', 'created': '2024-11-07 03:01:48', 'submission_id': '1glbat0'}
{'comment': 'I don’t believe it’s a fight we can win. Selfishness and greed is the root of all evil and an entire party has embraced lies and propaganda that far exceeds the Nazi propaganda leading up to WW2. It’s a slow death by a 1000 cuts due to manipulated algorithms. \n\nWe’re toast and I’m personally grieving what we’re leaving behind for our children. They will never know what normalcy is. 😞', 'created': '2024-11-07 08:35:50', 'submission_id': '1glbat0'}
{'comment': 'Americans are *hateful*.\xa0', 'created': '2024-11-08 13:44:30', 'submission_id': '1glbat0'}
{'comment': "They also think he did a better job at running the country when he was in office. And he did. And America still isn't a dictatorship. And never will be. The economy was good, and there was peace. People love to forget just what things were like when he was in office. It's easier to call him a nazi and move on, right?", 'created': '2024-11-07 06:31:23', 'submission_id': '1glbat0'}
{'comment': 'Look at the Obama birtherism movement. They’ve always been this way. Now they are proud about it and got more people to join their ranks but passing the insanity off as normal. This is their new normal', 'created': '2024-11-07 00:50:49', 'submission_id': '1glbat0'}
{'comment': '[removed]', 'created': '2024-11-07 00:50:44', 'submission_id': '1glbat0'}
{'comment': 'Anti trump shirts during his term. Then when the Dems get their nominee, switch to their merch. We can’t run on just being anti trump', 'created': '2024-11-07 01:11:40', 'submission_id': '1glbat0'}
{'comment': '[removed]', 'created': '2024-11-07 07:32:17', 'submission_id': '1glbat0'}
{'comment': 'Unfortunately, I think despite the perception to the contrary, Trump actually **did** manage to "grow his base" into multiple demographics that the Democratic Party pretty much took for granted.\n\nThe net result was, the influx of moderate Republicans was neutralized by an outflux of black & GenZ males. I don\'t think there were many *registered* Democrats who voted for Trump, but there were a lot of newly-registered first-time voters voting for Trump who, in the past, would have almost *automatically* ended up on "Team Blue".', 'created': '2024-11-07 03:03:33', 'submission_id': '1glbat0'}
{'comment': 'They did try. Republicans were blocking progress', 'created': '2024-11-08 16:02:30', 'submission_id': '1glbat0'}
{'comment': "Don't forget seniors who may lose their social security.\n\n\nI'm so over this privileged take. Those who can avoid politics and weather the storm shouldn't be listened to.", 'created': '2024-11-13 03:04:45', 'submission_id': '1glbat0'}
{'comment': 'But but but......maga???.....own the libs.....', 'created': '2024-11-07 13:24:09', 'submission_id': '1glbat0'}
{'comment': 'Then they went REALLY far cause all my German friends are pretty apologetic.', 'created': '2024-11-07 22:14:37', 'submission_id': '1glbat0'}
{'comment': 'We didn’t though. We had some rational repubs endorse Harris. But still you are right. The Democratic party is a brand. There is no shifting it. We are the smart kids in a school full of bullies.', 'created': '2024-11-07 12:47:50', 'submission_id': '1glbat0'}
{'comment': "I guess it was false hope that lead me to that post tbh. I know they don't want any of that. But if we want to beat them we need to study them. Like we used to do to rats.", 'created': '2024-11-08 17:46:24', 'submission_id': '1glbat0'}
{'comment': 'Thanks for replying I am really far down in the comments lol!', 'created': '2024-11-08 17:47:32', 'submission_id': '1glbat0'}
{'comment': 'I hope you’re right. I’m concerned because they have the senate, probably the house and most likely several more Supreme Court justices.', 'created': '2024-11-07 00:57:41', 'submission_id': '1glbat0'}
{'comment': 'They might be hobbled by domestic policies, but in terms of international politics, as Hilary Clinton pointed out, the president has wide latitude from slapping tariffs to pressing the nuclear button.', 'created': '2024-11-07 03:17:14', 'submission_id': '1glbat0'}
{'comment': 'American politics is more like VEEP than The West Wing or House of Cards.\n\nThey can and will do damage. I don’t want to discount the danger, but the Trump Administration consists of a bunch of morons and will look stupid and incompetent a lot over the next 4 years.', 'created': '2024-11-07 01:06:40', 'submission_id': '1glbat0'}
{'comment': "Nah, they have all of this shit planned out beforehand so they'll be able to do all of that horrific shit and more the second Trump gets inaugurated. They've already said they're going to start mass deportations on day one. \n\nWe have two and a half months prep time. It would behoove us to use them.", 'created': '2024-11-07 03:58:20', 'submission_id': '1glbat0'}
{'comment': ">Well the good news is American politics move at a glacial pace.\n\nAmerican politics really only moves at glacial pace on physical things like building infrastructure and creating systems wide resources (like healthcare etc). On social/gender issues, as we saw with the fall of Roe it could absolutely move at breakneck speed (especially if conservative states have laws already in place to take effect once somethings is struck down or approved). Once Roe fell hospitals in red states started denying abortions pretty much immediate and doctors started cancelling appointments.\n\nBuilding transit systems and energy efficient buildings is definitely a slow process, but denying trans care, outlawing gay marriage, further restrictions on abortion, dismantling healthcare, gutting agencies and getting rid of regulations could absolutely happen at breakneck speeds. And this time Trump won't even have on the fence republicans in his admin. He's culled the John Kelly types, and only extreme loyalists are left.\n\nUnderestimating the far right and Trump on doing all the horrible shit they campaigned on after they literally just won an improbable election with the crappiest candidate possible is peak denial and sloppy politics.\n\n>Seriously conservatives will in fight and one up each other trying to be the craziest of all the crazies. Plus congress works what? 100 days a year?\n\nHow ignorant. It actually depends on the administration and obviously the make up of Congress. Sure in 2010 with Obama and Mcconnel, Senate met 158 times and House met 127 times. 2017 with Trump and a republican congress, House met 192, Senate 195. In 2018 again Trump and Mcconnel/republican Congress, House met 174 times and Senate met 191 times. So yeah, a republican Congress can absolutely double the amount of times they legislate, it's how they pushed through so many conservative federal judges during Trump's first term.\n\nThe fact that you think they meet such a low amount a times, means Mcconnel succeeded in normalizing legislative fuckery (via the Obama years) with you. Unless Democrats retake the House in the next couple days, Congress will absolutely meet closer on the 200 end rather than 100 times end. Like wtf you don't even know what you're talking about and stop spreading bs and complacency.", 'created': '2024-11-07 04:39:32', 'submission_id': '1glbat0'}
{'comment': "At the least there, it's enough time to stack the Supreme Court more, which will affect America for generations", 'created': '2024-11-07 03:57:36', 'submission_id': '1glbat0'}
{'comment': 'I think you’re underestimating how much the process will be changed … Trump will implement executive ordered left and right', 'created': '2024-11-07 11:24:25', 'submission_id': '1glbat0'}
{'comment': "I hope you're right because I'm terrified right now.", 'created': '2024-11-07 12:50:46', 'submission_id': '1glbat0'}
{'comment': 'My only hope…seriously', 'created': '2024-11-07 15:40:06', 'submission_id': '1glbat0'}
{'comment': 'Exactly right. Their stupidity and their hubris will be their undoing.', 'created': '2024-11-07 17:14:45', 'submission_id': '1glbat0'}
{'comment': 'He will gut all federal agencies immediately.', 'created': '2024-11-07 18:04:44', 'submission_id': '1glbat0'}
{'comment': 'As dumb and selfish as their voters appear to be.', 'created': '2024-11-08 21:20:59', 'submission_id': '1glbat0'}
{'comment': 'A civil war isn’t necesssrt. People need to stop repeating this.', 'created': '2024-11-07 05:47:49', 'submission_id': '1glbat0'}
{'comment': 'Or they’re simply misogynists and racists.', 'created': '2024-11-07 08:47:56', 'submission_id': '1glbat0'}
{'comment': "No his view is the same as before, if he wins it's legit, if he loses the other side cheated.", 'created': '2024-11-07 04:46:20', 'submission_id': '1glbat0'}
{'comment': 'Interesting take', 'created': '2024-11-07 02:40:56', 'submission_id': '1glbat0'}
{'comment': 'Omg we are so fucked.', 'created': '2024-11-07 05:47:14', 'submission_id': '1glbat0'}
{'comment': 'Aye. I can do that.', 'created': '2024-11-07 03:14:45', 'submission_id': '1glbat0'}
{'comment': '>truth, compassion, inclusion, logic wins over fear, division, and hate.\n\nDoes it?', 'created': '2024-11-07 04:49:08', 'submission_id': '1glbat0'}
{'comment': 'Well the plan better include an enormous propaganda apparatus to reach those folks, because truth doesn’t seem to be winning. How can we get the fools to trust us when their idol says we’re the enemy?', 'created': '2024-11-08 16:10:20', 'submission_id': '1glbat0'}
{'comment': 'No. We remember what it was like, but it’s clear Americans live in 2 different versions of reality. You probably think January 6th was just a peaceful protest. Terrorism isn’t just a threat abroad', 'created': '2024-11-07 07:47:51', 'submission_id': '1glbat0'}
{'comment': 'BECAUSE HE IS A NAZI', 'created': '2024-11-07 08:40:44', 'submission_id': '1glbat0'}
{'comment': '100%', 'created': '2024-11-07 01:17:48', 'submission_id': '1glbat0'}
{'comment': 'Black and GenZ males breaking for Trump = misogyny. It’s hard to see it any other way. She was the considerably more qualified and sane candidate. They looked at both of them and decided to go with the white male over a woman.', 'created': '2024-11-07 05:11:12', 'submission_id': '1glbat0'}
{'comment': 'Yeah they absolutely took the assignment seriously because they needed that money. Also they were at risk of being entirely obliterated by the USSR if they didn’t realign themselves and build back as quickly as possible.', 'created': '2024-11-07 22:25:39', 'submission_id': '1glbat0'}
{'comment': 'The problem also there really aren’t any traditional Republican', 'created': '2024-11-07 15:57:14', 'submission_id': '1glbat0'}
{'comment': "Dude's wrong. It actually depends on the administration and obviously the make up of Congress. Sure in 2010 with Obama with Mcconnel, House met 127 times and Senate 158 times. But in 2017 with Trump and a republican congress, House met 192, Senate 195. In 2018 again Trump and Mcconnel/republican Congress, House met 174 times and Senate met 191 times. So yeah, a republican Congress can absolutely double the amount of times they legislate, it's how they pushed through so many conservative federal judges during Trump's first term.\n\nAlso completely ignores international stuff, where the president pretty much has a wide range of powers to use or not use.", 'created': '2024-11-07 04:35:05', 'submission_id': '1glbat0'}
{'comment': 'I agree with Admirable Singer. Catastrophic change can occur very, very fast. The leadup to it may take years, as in the case of Nazi Germany, which was a consequence of post WWI factors, or decades, as in the case of the US. But once things start to fall apart, they can do so very, very quickly. \n\nProgress in the US moves at a glacial pace, but not necessarily destruction, which is driven by other forces and motives.', 'created': '2024-11-07 06:41:35', 'submission_id': '1glbat0'}
{'comment': 'I think this assumes all branches are aligned in their interests though. I don’t think they are. Everybody wants tax cuts for rich people and big business - that will get passed like last time and they’ll use most of their political capital on that.\xa0\n\nOnce you start looking at social issues - a national abortion ban, repealing the ACA without a replacement - you’re going to start getting different opinions and infighting, particularly in the senate where there will be a lot of narrow wins in swing states and/or senators in places where there has been a huge pushback on abortion bans at a state level. That will waste the remaining time they have left until 2026 midterms. Everybody is ultimately going to be looking after themselves and their own reelection, particularly now that Trump can’t be on the ballot to lift them again in 2028.\xa0\n\nI know this sounds overly optimistic and believe me, I’m not thrilled about all the stuff Trump can do unilaterally on foreign policy, but anything domestic going through Congress takes forever and usually gets softened off to pass even when there is unified control (on both sides - look at ACA and how Lieberman killed the public option).', 'created': '2024-11-07 10:12:14', 'submission_id': '1glbat0'}
{'comment': 'Oh sweet. Thats a thing i hadn’t thought of. Nuclear war sounds great atm.', 'created': '2024-11-07 04:00:03', 'submission_id': '1glbat0'}
{'comment': 'Last time, yes. This time he has project 2025 and a lot more yes men behind him.', 'created': '2024-11-07 01:19:59', 'submission_id': '1glbat0'}
{'comment': 'Gentle reminder—Hitler, Stalin and Mussolini were widely considered stupid buffoons. Just something to ponder while Trump, Inc begins his slaughter of the constitutional and social contracts.', 'created': '2024-11-07 08:54:57', 'submission_id': '1glbat0'}
{'comment': "And a lot of people voted for him *because* he said he'd start mass deportation on day one.\xa0", 'created': '2024-11-08 13:35:36', 'submission_id': '1glbat0'}
{'comment': 'Yes and think about this: a convicted felon and rapist has been given the power to appoint SC justices and is about to appoint more.', 'created': '2024-11-07 08:52:26', 'submission_id': '1glbat0'}
{'comment': 'Surely there are misogynists and racists that didn’t vote for her because of that, but I fear if that is the sole focus of the next 4 years the dems are going to continue to lose, because it’s not the main reason.', 'created': '2024-11-07 09:14:18', 'submission_id': '1glbat0'}
{'comment': 'You are awesome!', 'created': '2024-11-07 03:47:09', 'submission_id': '1glbat0'}
{'comment': 'The Women Suffrage, MLK and the Civil Rights Movement, Ghandi, Obama…it does happen. Have faith.', 'created': '2024-11-07 05:00:44', 'submission_id': '1glbat0'}
{'comment': 'Yes, this!! Misogyny and racism all the way to their rotten core. \n\nWithin hours of Kamala’s announcement as Biden’s replacement, Reddit manosphere erupted into ugliness about her blowing her way to the top and DEI hire. I mean it was appalling and I knew we were up against a bro brigade and likely fighting an uphill battle. \n\nThis election proves, it is after all a man’s world and this is why so many women are broken and demoralized by the despicable sexist man’s win. \nIt is irrefutable—his ascension and Kamala’s erasure after all that has come to light about the orange cretin is a MANDATE AGAINST WOMEN—especially women of color.\n\nWe can dance around this and try to convince ourselves that it’s only 4 years, or people will see the mistakes made during these 4 years and try to stay hopeful, but women know what this election really means—it’s all about men not voting for a strong woman of color and it’s a fucking bitter pill.', 'created': '2024-11-07 08:30:25', 'submission_id': '1glbat0'}
{'comment': "Put they'll scream at us it's because they didn't like being called out for being nazis", 'created': '2024-11-08 13:45:49', 'submission_id': '1glbat0'}
{'comment': 'We are way past that. The later generations understood the impact.', 'created': '2024-11-07 22:52:14', 'submission_id': '1glbat0'}
{'comment': '>I think this assumes all branches are aligned in their interests though. I don’t think they are. Everybody wants tax cuts for rich people and big business - that will get passed like last time and they’ll use most of their political capital on that.\xa0\n\nYou\'re wrong. You\'re operating under the assumption the republican politicians left are similar to what they were in 2016. They\'re not. The Mccains and Kinzinger\'s are gone or have been culled. Those republicans are long gone and only maga republicans are left. And (unlike Democrats) despite whatever small differences they have , they know they all share the same end goals, and toe the line when they need to, as they have shown time and time again.\n\n>Once you start looking at social issues - a national abortion ban, repealing the ACA without a replacement - you’re going to start getting different opinions and infighting, particularly in the senate where there will be a lot of narrow wins in swing states and/or senators in places where there has been a huge pushback on abortion bans at a state level.\n\nAgain you\'re wrong and this is how Democrats lose election. You assume that just because a politician supports banning abortion or repealing the ACA and the constituents don\'t like and will logically vote against that politician. That has been proven wrong multiple times. If anything voters especially in swing and conservative states have shown they will split their vote (vote for a measure supporting abortion while at the same time keeping the candidate that wants to ban it, same with the ACA). Whatever the issue, the maga party has effectively ingrained "loyalty" into its constituents.\n\n>I know this sounds overly optimistic \n\n\\-\n\n>\xa0look at ACA and how Lieberman killed the public option).\n\nYes. And again you\'re wrong to be overly optimistic (not to mention that logic and example is deeply flawed. You\'re example that maga republicans won\'t get their stuff done is to use a shit Democrat/practically a republican that tanked Democrats goals?! Like what the actual fuck dude. Seriously you actually disproved your own point). Flawed logic like that and dumb optimism is how we got in this mess to begin with. Enough with the "let\'s look at shitty things in the most positive light" outlook, that\'s how you lose. Democrats and Progressives need to start looking at things in more "What\'s the worst possible thing they can do" (with the mindset that these maga politicians have had the idea of "loyalty at all costs" burned into them not to mention shared end goals) and operate under that landscape. That\'s how were gonna lessen republican damage and take back Congress in 2026.', 'created': '2024-11-07 21:27:36', 'submission_id': '1glbat0'}
{'comment': 'This is what I’m worried about! Some states (Texas where I am) are already implementing some of the ideas of project 2025. We’ll see more happening by summer.', 'created': '2024-11-07 01:46:06', 'submission_id': '1glbat0'}
{'comment': "The House will still be a circus because it always inherently is. And these project 2025 yes men aren't necessarily going to be pros at working with congress with experience and contacts. So I think hopefully, thankfully Trump likely has 2 years to cause a finite amount lasting damage.", 'created': '2024-11-07 02:12:29', 'submission_id': '1glbat0'}
{'comment': 'These movements were pre Internet and SM algorithms. Propaganda on steroids has led to a dystopian scenario where millions of people literally live in an alternative mindset—and this is not hyperbole. \n\nWe’re doomed.', 'created': '2024-11-07 08:45:21', 'submission_id': '1glbat0'}
{'comment': 'I’m in Texas too. What are they implementing from project 2025?\xa0', 'created': '2024-11-07 02:30:17', 'submission_id': '1glbat0'}
{'comment': 'No abortion….banning books…..limiting porn….defunding public school in favour of private Christian schools….trans rights being taken away….Greg Abbott is loving Trump’s win', 'created': '2024-11-07 02:58:57', 'submission_id': '1glbat0'}
{'comment': "Gen-Xer here. I work with a ton of Gen Xers and so many of my friends and family are around my age, too. We are all professionals and all voted for Harris.\n\nI think it has more to do with grievance and anger at Boomers. There are a lot of Gen-Xers who are stuck in dead-end jobs because Boomers refuse to retire. There are many Gen-Xers who will never retire. Many don't own homes. Many are swimming in debt or worked really hard to pay off their relatively modest student loan debt compared to younger generations and resent student loan forgiveness.\n\nWhatever the specific issue is, I think the main reason Trump appeals to non-religious people is grievance and rage. And for religious zealots, it's all Project 2025.", 'created': '2024-11-07 01:11:20', 'submission_id': '1glatkf'}
{'comment': 'JFC I am embarrassed to be one. Having worked amongst them and frankly, men of all ages….i think people are overlooking the misogyny piece in all this. I have worked some blue collar jobs with some good ol’ boys and I have heard a lot of racist beliefs…..especially when a person of color is in charge. But nothing, I repeat NOTHING compares to the animosity and anger when a woman is in charge. And that seemed to be when men of all races got along and agreed. When there was a woman supervisor in charge most of the men were just miserable. Now this is going back a while so maybe it has changed but I doubt it. That is why in the 90’s I remember conversations about whether there will be a black president or a female president first and I always said a black male will come before a female no doubt about it. Just look at our history….I mean who got to vote first. Embarrassing but true.', 'created': '2024-11-07 01:25:38', 'submission_id': '1glatkf'}
{'comment': 'It was the fault of not enough people voting for Harris. If people showed up for Harris like they showed up for Biden, this would have been a big win for dems. Which generation had the lowest turnout? In what way is this generational based quasi analysis helpful? I imagine a lot of blame is going to go around before we start to understand the reality of the situation.', 'created': '2024-11-07 00:59:03', 'submission_id': '1glatkf'}
{'comment': "I dont know how accurate this is but all my homies voted Harris. We live in a deep red state, so you know, it is kind of wishful thinking, but we did it.\n\nI am embarrassed that so many voted for Trump in my age group. We were the Breakfast Club, St Elmo's Fire, Top Gun, and ET generation. We were the first to get real video games, cell phones, all the technology. \n\nWe were about saving the Earth and being kind to one another. We literally planted trees at our school and wrote letters to Amnesty International. We cared about things.\n\nI dont know when or where our view of the world shifted, but something happened and we have not course corrected yet. We need to in a major way.", 'created': '2024-11-07 01:17:08', 'submission_id': '1glatkf'}
{'comment': "More than anything here I'm seeing pretty small gaps between the generations. This is simply not a significant determiner of political leanings right now", 'created': '2024-11-07 04:18:36', 'submission_id': '1glatkf'}
{'comment': "We don't get accurate voter age breakdowns until a few months after elections, but based on the current exit polls this wasn't Boomers' fault. They did their usual 50-50ish split. It was Gen X. Normally, the younger Xers (Clinton cohort) offset the older Xers (Reagan cohort) but it looks like that didn’t happen this time. Democrats still won Millennials and Gen Z, but they needed to run up the score with voters born after 1975 (50 and younger) in order to offset the Reagan cohort, and they failed to do so. Hopefully Democrats nominate whomever younger voters are most excited about in the 2028 primaries. That's their path to victory.", 'created': '2024-11-06 23:18:28', 'submission_id': '1glatkf'}
{'comment': "Gen X'ers have been, generally speaking, an absolute disaster when it comes to elections. NPR did a great article on this:\n\n[Gen X and President Biden: Reality Bites](https://www.npr.org/2023/12/27/1217878506/gen-x-conservative-disapprove-biden)\n\nAnd, unfortunately, we'll be dealing with them and their conservative victim mentality for a few more decades.", 'created': '2024-11-07 00:33:50', 'submission_id': '1glatkf'}
{'comment': 'Saving this for the next time anyone under 60 utters the word "boomer".\n\nYoung people clowned themself into becoming boomers at 25 years old.', 'created': '2024-11-07 05:12:04', 'submission_id': '1glatkf'}
{'comment': '25-29s being only 53-46 Harris is pretty embarrassing as well. For me (26M), knowing that about half the people around my age supported this guy is deeply unsettling. Sad as it is to say, I’ve pretty much lost faith in America at this point. We can’t claim nor do we deserve to be a leader on the world stage if this many people think that a convicted felon is an acceptable option for our nation’s highest office.', 'created': '2024-11-07 04:56:23', 'submission_id': '1glatkf'}
{'comment': 'This post title ignores the real problem. The low turnout % of 18-29. Especially 25-29. Wow.', 'created': '2024-11-07 05:33:38', 'submission_id': '1glatkf'}
{'comment': "GenX! We played ourselves! Social Security will be gone just when we retire. MAGA won't fix that. There will be steep cuts in Medicare and other social services, just in time for when we will need it the most. That graph is unbelievably disappointing. I get that a lot of just plan on expiring at work, but that's not how it will go. We're now the Guinea Pig generation for testing how a failed social net for seniors plays out.", 'created': '2024-11-07 06:16:48', 'submission_id': '1glatkf'}
{'comment': 'I’m a xennial and always claim gen x. I guess I’ll swing millennial from now on. FFS.', 'created': '2024-11-07 01:43:36', 'submission_id': '1glatkf'}
{'comment': 'My wife and I voted blue but a lot of my friends didn’t. Just the nature of the beast I suppose. They all used to vote blue…', 'created': '2024-11-07 03:28:32', 'submission_id': '1glatkf'}
{'comment': 'Disgrace to grunge.', 'created': '2024-11-07 04:59:02', 'submission_id': '1glatkf'}
{'comment': 'Kurt cobain would be so disappointed', 'created': '2024-11-07 05:08:59', 'submission_id': '1glatkf'}
{'comment': "The younger votes go where their friends go likely it is som odd thing that but it is reality, younger has no time to get into stuffs they move by instict and search on YouTube whitout getting a consequence over their actions when they vote!\n\nFor me when I read these numbers it's more hip to vote for MAGA without knowing what you're voting for politically, You see a person being an idiot on stage and talking about what without any idea of \u200b\u200bwhat it is that drives the younger ones!", 'created': '2024-11-07 09:01:20', 'submission_id': '1glatkf'}
{'comment': '[removed]', 'created': '2024-11-07 01:46:56', 'submission_id': '1glatkf'}
{'comment': 'Lol, Gen X’ers are the most incompetent generation. They don’t know what they’re doing. They fancied themselves as trend breakers, but they’re just as slavish to the system as the boomers, it’s just boomers pulled up the ladder on them. Anytime they whine about social security and retirement, you can pretty much laugh at them. But I’ll always smile at an X’er as they welcome me to Walmart.', 'created': '2024-11-07 00:47:57', 'submission_id': '1glatkf'}
{'comment': 'Trump portrays himself as a populist. He was a very convenient choice for people who were angry with the “Establishment” and the state of the economy.', 'created': '2024-11-07 02:16:08', 'submission_id': '1glatkf'}
{'comment': '> There are a lot of Gen-Xers who are stuck in dead-end jobs because Boomers refuse to retire.\n\nNobody I know is still working because it\'s just so much fun. \n\nToo many of these folks came up on helicopter parents, participation trophies, and anxiety medication. They don\'t think they supposed to have what were typical hardships of generations of young people. Working shit jobs for low wages was a rite of passage, a natural part of life, your so-called "salad days". If you\'re in a blue collar job, they\'re not what they once were. But somehow the answer is voting for the anti-union, anti-labor guys? Well done. \n\nBoomers fought for civil rights, women\'s rights, in Vietnam, and against the war. Boomers were concerned about the lives of others and strived to do better than their parents because you don\'t get a sense of entitlement when you didn\'t grow up with every toy or piece of clothing you ever wanted. A sense of entitlement that gets you to buy into the grievance and resentment and blaming older people and not the modern day billionaires and greedy tech bros who make guys like J.P. Morgan and J.D. Rockefeller look like Santa Claus. Brilliant.', 'created': '2024-11-07 02:03:16', 'submission_id': '1glatkf'}
{'comment': "The strategy that worked for Biden failed for Harris. It's clear as day and people don't want to acknowledge it.", 'created': '2024-11-07 06:20:27', 'submission_id': '1glatkf'}
{'comment': None, 'created': '2024-11-07 02:09:20', 'submission_id': '1glatkf'}
{'comment': 'It’s bizarre for sure, how do you grow up in the golden age of sentimental Hollywood and turn out so…un-empathetic? How do you grow up in the era of Captain Planet and become a climate change denier? Really don’t get it. I guess it’s the same with the boomers. The generation that gave us modern political activism turned out to be even more conservative than their parents (not all, of course, but far too many)', 'created': '2024-11-07 04:50:05', 'submission_id': '1glatkf'}
{'comment': 'What is the source for these numbers?', 'created': '2024-11-06 23:37:48', 'submission_id': '1glatkf'}
{'comment': 'I am a young Gen X and borderline Millennial. I wonder if it has anything to do with living through the 2008 meltdown. Most Gen Xers were raising kids when many were faced with job and home loss. I wonder if Gen Xers are more sensitive to economic issues.', 'created': '2024-11-07 01:46:46', 'submission_id': '1glatkf'}
{'comment': 'Umm dude if you voted for Trump you have no ethics or morals. Character should matter. Glad I did not vote for somebody that behaves like Trump. That is on you.', 'created': '2024-11-07 01:58:27', 'submission_id': '1glatkf'}
{'comment': 'It’s shit like this that let Trump win.', 'created': '2024-11-07 01:03:57', 'submission_id': '1glatkf'}
{'comment': "He's a demagogue. His rage is populist.", 'created': '2024-11-07 03:07:03', 'submission_id': '1glatkf'}
{'comment': "You're confusing gen z and gen x.", 'created': '2024-11-07 03:45:42', 'submission_id': '1glatkf'}
{'comment': "The people who grew up with helicopter parents, participation trophies and anxiety medication actually voted for Harris? Gen X were the latchkey kids and the punk rock generation and their alternating apathy and anger towards the establishment is well known. They don't trust authority and they don't trust the system.\n\nAlso, let's try not to divide ourselves even further? Part of the problem on the left is we are three parties in a trench coat and we don't agree with each other. The right takes full advantage of our infighting to stoke the fire and keep people from the polls. We should be asking ourselves why our messaging isn't reaching that group and what can we do to get them to listen, not denigrating them.", 'created': '2024-11-07 05:02:17', 'submission_id': '1glatkf'}
{'comment': 'DNC, and those in charge, needed to come to terms that Biden shouldn’t have run again back in 2022 and convinced him then. Waiting until 2024, when it was obvious he wouldn’t win after the disastrous debate performance, and after all the primaries…and then just handing Harris the nomination was just a bad look.\n\nIf Biden announces he isn’t running back in 2022, you can have a proper primary and allow for a groundswell of support behind whoever is nominated. Instead, Harris was thrown into an unwinnable situation (no one would have been able to win with that little of prep time), and here we all sit.\n\nIt isn’t about progressives, or Latinos, or Gen X, or anything else, the fact is, most folks that stayed home weren’t thrilled with voting for someone that was just thrown on the ballot at the last second that they didn’t really know.', 'created': '2024-11-07 05:19:36', 'submission_id': '1glatkf'}
{'comment': '[NBC News Exit Polls](https://www.nbcnews.com/politics/2024-elections/exit-polls)', 'created': '2024-11-07 01:53:07', 'submission_id': '1glatkf'}
{'comment': 'That & Russia', 'created': '2024-11-07 01:43:19', 'submission_id': '1glatkf'}
{'comment': '> We should be asking ourselves why our messaging isn\'t reaching that group and what can we do to get them to listen, not denigrating them.\n \nThe messages aren\'t working because we\'re not being honest. The truth is most people in this country are semi-literate, politically ignorant, self-interested dolts who believe they should be richer for no other reason than they see rich people on TV and YouTube. There are jobs you can\'t get because you have too many points on your license, but these people voted for a fucking many times over criminal and walked away from it with the lie it was about the economy. I know everybody\'s not doing well, but this country has come out of COVID with an economy that been called by financial newspapers "the envy of the world". I\'m don\'t live in a bubble, although most of my travel is in the Southeast. I see gas prices that have been under $3/gallon for nearly a year. I see crowded restaurants any weekend I go out. I see people who are pretty well dressed. These aren\'t the working homeless, who exist in numbers that shouldn\'t be in this country. These aren\'t the working poor, who scrape and struggle to give their kids a trip to a McDonalds once a month. These are the people who simply feel there should be no struggles for them, nothing too bad should happen to them, and it does, it\'s just unfair and it\'s somebody else\'s fault. \n\nDemocrats lie to themselves with the high-minded belief that racism, sexism, and bigotry aren\'t the major drivers in what happened here. Trump didn\'t run the transgender prisoner ad 100,000 times because it doesn\'t work. When Ted Cruz realized he was in trouble, he ran his own version of the same damn ad. This country doesn\'t care about brilliant talented people being their leaders. If they did, Pete Buttigieg would have been Harris\'s running mate, and they would have won hands down, going away. I don\'t fully trust the system, but I know enough about the government to know they can barely organize a parade because of the amount of paperwork involved. These voters believe in patriarchy and supremacy more than they care about intellect and efficacy. \n\nI\'ve been at the fight for 50 years and I\'m done. Not because I\'m a quitter, it\'s because the game is up. Trump will be able to put at least two more clones of Thomas and Alito on the Supreme Court, and possibly a third. The biggest criminal in American history will wind up packing the nation\'s highest court. The guy who fomented a coup. And the voters shrugged. \n\nI\'m done because the opposition is holding a pair of aces and I\'m across the table with seven/deuce off-suit. There\'ll be no coming back from this second Trump administration in my lifetime simply because of the Court. The Court has already said "Yes" to voter suppression, they\'ve already dismantled the ability of expertise to rule the day in federal rulemaking, and they\'ve told the president he\'s maybe something less than a king, but then, who knows? Maybe he is if he just calls his tyranny "official acts. It will be an "official act" for him to ask the Justice Department to investigate anyone who offends him. He\'ll make more use of the IRS than he was able to in the past. And maybe his State Department might not allow you to leave the country even if you want to. Keep believing he can\'t do that. Keep believing he won\'t do that. \n\nSo I\'ve done the best I could for a lot of years. Kamala Harris was the last best hope of preserving American democracy, and this country couldn\'t bring itself to vote for the black lady. I don\'t have to get hit over the head with a 2x4. I was hoping I was wrong, but I was right. I hope for the best, but prepare for the worst. That preparation is going to be put to the test. I think I\'ll be alright. I wish all the luck in the world to the rest of you.', 'created': '2024-11-08 00:53:07', 'submission_id': '1glatkf'}
{'comment': 'Thanks!', 'created': '2024-11-07 01:54:25', 'submission_id': '1glatkf'}
{'comment': 'It’s mostly the insufferable smugness.', 'created': '2024-11-07 02:07:49', 'submission_id': '1glatkf'}
{'comment': 'If imitate republicans means block everything the trump admin tries to do AND set up a 24/7/365 messaging effort that blames republicans for everything that goes wrong then yes.', 'created': '2024-11-07 00:10:10', 'submission_id': '1glanow'}
{'comment': 'Yes we need to do this so when they fuck up people view us as the alternative', 'created': '2024-11-06 23:44:00', 'submission_id': '1glanow'}
{'comment': 'The Democratic party has always been afraid of, or at least against fighting dirty, instead trying to take the moral high ground. It\'s not working and its time to quit trying to be "good" and come out with the mud slinging, the filibusters, the deliberate sabotaging, obstructing anything and everything possible, gerrymandering, lies, threats and false rhetoric. They are self sabotaging by being polite, playing "fair" and trying to follow high morals when their opponents are happy to lie, cheat and steal. If the election went the other way instead of giving a concession speech Trump would be screaming about fraud and fake ballots and the election being stolen, telling his supporters to get their guns loaded, just like last time. \n\nBeing gracious in defeat is for losers and the democratic party is letting itself be bullied because they don\'t want to be seen as "bad guys."', 'created': '2024-11-07 00:31:38', 'submission_id': '1glanow'}
{'comment': 'Yes.', 'created': '2024-11-06 23:27:01', 'submission_id': '1glanow'}
{'comment': "Filibuster everything. Refuse to vote quickly. Grind everything to a halt.\n\nThis is what elected officials can do. They can turn the wheels of government to a screeching halt as much as possible and refuse to work with republicans. They refuse to work with us. Honestly, if only one party tries to work across the aisle all the time what good is it anyway? Republicans are like bad lovers, they don't reciprocate after they climax.\n\nSo lets give'em hell folks.", 'created': '2024-11-07 00:10:21', 'submission_id': '1glanow'}
{'comment': 'Yes. There’s no point in playing nice with MAGA. Obstruct what you can.', 'created': '2024-11-06 23:49:00', 'submission_id': '1glanow'}
{'comment': 'Unless Dems can figure out a way to dumb down their messaging, nothing will change. Trump has figured out how to speak to tbt electorate.', 'created': '2024-11-06 23:47:56', 'submission_id': '1glanow'}
{'comment': "Long comment incoming, but I think it's something we can agree on, unless you're in the blind optimism crowd or still believe that being the Nice guy/girl will win against the cult of hate called Maga.\n\n\nPretty much, We need to (and should have drastically following 2016). Become a strong party that puts the other side in its place or at least keeps them from getting away with everything, even if she won last night, it would have been on a needle thin margin. \n\n\nRegardless, the Biden administration in regards to dealing with Maga did practically nothing, they viewed Maga as a dead threat, despite the obvious Maga corruption within the legislative and the judicial branch, but the administration did nothing. Some strong Democrat leaders tried to do something, but they were the minority within the government level Democrats.\n\n\nIt's still shocking she lost in the sense of just how much she lost. She lost pretty significantly, it also doesn't help that alot of 2020 Democrat voters, just didn't vote this time. They either felt compliant and thought Trump had zero chance of winning, or just didn't want to vote in support for a black Indian woman. It's as simple as that, I also feel like this is a (sad) lesson, since it's now been repeated for the 2nd time. That we are very far away from there being a chance for a woman president.\n\n\nExpect the 2028 Democrat candidate to absolutely be White, Male, 50s-60s. ( saying this in a factual statement, not as a, oh it has to happen thing, tho it does to have a chance of winning 2028).\n\n\nAnd the candidate needs to be a Strong leader, Harris wasn't exactly weak, and given more time to be an active candidate, I believe the numbers could have slightly been better in her favor. But it just wasn't in the numbers. We need a Democrat candidate in 2028 that will absolutely let the entirety of the nation know that Maga will be shutdown, and Maga criminals will be punished.\n\n\nUnlike Bush, where Obama was the change Most people wanted. People seriously, (referring to Trump voters) and we saw last night, do not want a change from Trump.\n\n\nMost of the Gop consider him either as the best or 2nd best Republican president post ww2. Tied with Reagan. While most of the Gop view W Bush as the worst, or tied with Nixon.", 'created': '2024-11-07 00:33:24', 'submission_id': '1glanow'}
{'comment': 'Trump would prolly get rid of the Filibuster if they did that. Ironically Mitch McConnell is the one who would protect the filibuster, but Trump is going to replace him with a loyalist.', 'created': '2024-11-06 23:30:00', 'submission_id': '1glanow'}
{'comment': 'A month ago, id have said no. Heres how i look at at it now. Considering the stakes and SCOTUS, the senate needs to be on full filibuster mode for every federal judge that comes along. If the dems win the house(biiiig if) pass pointless bills that the senate will never pass and that trump will never sign. Pass a medicare for all bill. Pass a tax bill aimed at billionaires. Complete theatrics which might actually move some of the economic populists who have moved to the right. Be on Tv constantly and make a huge spectacle of every dumb thing he does. But Schumer needs to hold the senate caucus together. NO JUDGES! Period. And get the lawfare machine going like never before. Time to play dirty. Theyve done it since 2008 and the dems have been the “responsible “ party and look where it go them. Time to go low. Hog the microphone. Go on Fox. Constantly trash. Build that narrative. And again, if by gods grace they hold on to the house, investigate, investigate and investigate. Make sure the corruption is in the spotlight constantly. Drag Elon in. Slap him with contempt if he doesn’t. Haul in the DOJ. Benghazi the life out them. Again, THE SENATE MUST HOLD ITS SHIT TOGETHER!!!! And if they do away with the filibuster, thatll break the entire system. Next time, if dems come to power, expand the court. Put in 12 justices. Codify Roe. Fuck the norms. Norms work when BOTH sides play by the rules.', 'created': '2024-11-07 01:53:53', 'submission_id': '1glanow'}
{'comment': 'Seriously, time to pull out the Republican playbook. No more Mr. Nice Guy. And if we inundate them with their own toxicity, it will overwhelm the 24-hour news cycle and become just another day instead of some pearl clutching bullshit like they pull every time a Democrat so much as sneezes.\n\nTrump did this for the last 8 years for evil. \nWe can do the same for good.', 'created': '2024-11-07 01:53:57', 'submission_id': '1glanow'}
{'comment': 'I’m hopeful his administration is a cluster fuck and can’t get anything done!', 'created': '2024-11-07 00:00:25', 'submission_id': '1glanow'}
{'comment': "Of course. Trump's fascist agenda must be stopped at all costs. There's no reason to just lie down and take it.", 'created': '2024-11-07 01:03:53', 'submission_id': '1glanow'}
{'comment': "As we said in the 90's: duh!\n\nIt's pretty easy to be the minority party. All you have to do is vote no a lot and wait for Republicans to succumb to their own dysfunction.", 'created': '2024-11-07 02:08:57', 'submission_id': '1glanow'}
{'comment': 'If they thought the tea party was something , wait til social security and Medicare is eliminated.', 'created': '2024-11-07 03:14:44', 'submission_id': '1glanow'}
{'comment': "Yes. I've been thinking about this all day and I keep going back to this clip of John McCain at a town hall in 2012 gently taking the mic back from a lady who was insisting oboma was a Muslim. I think deep down one of our biggest concern about trump was that we didn't want to believe our politics would devolve into the bully politics that he represents where it's more about how bad the other guys are rather than how good our people are. But reality is that John McCain lost to Obama because he wouldn't stoop to the very thing trump has now won twice for. This is the age of social media good politicians don't matter anymore. It's not about the more honest or decent Candidate it's about the more engaging narrative spun by the more entertaining candidate and trump is the master of that. The truth even bled through with kamala. Some of the highlights of her short campaign wasn't moments she looked good nobody remembers those. The highlights were when she and Tim made trump look stupid baiting him at the debate or triggering the right wing with the weird insult. Trump's brand of bully politics are the future now grow up and accept it or get left behind", 'created': '2024-11-07 02:07:42', 'submission_id': '1glanow'}
{'comment': 'I keep wondering when we stomp our feet and say everything is rigged? I’m so confused. I thought that was the new way we do shit???', 'created': '2024-11-07 06:23:48', 'submission_id': '1glanow'}
{'comment': 'Place Bernie as DNC chair. The people want progressive policies and take on corporations', 'created': '2024-11-07 00:53:13', 'submission_id': '1glanow'}
{'comment': 'Hell yeah, we can let anything and I mean anything happen, shut down the government if we have to, sometimes you can’t be the bigger person', 'created': '2024-11-07 01:14:59', 'submission_id': '1glanow'}
{'comment': 'If the party had any backbone at all I’d say yeah go for it. But the “when they go low, we go high” strategy is a loser and we won’t drop it.\xa0', 'created': '2024-11-07 01:21:11', 'submission_id': '1glanow'}
{'comment': "Yes, time to get dark, time to get in the gutter, time for the Dems to grow balls, big f*cking balls. It's time to organize and change. No more playing nice. Hammer hammer hammer and don't stop. Or forget it. It may already be too late", 'created': '2024-11-07 01:53:44', 'submission_id': '1glanow'}
{'comment': 'I might soften on this in a month but right now, no.\n \n This country only learns its damn less when it suffers. That was true in 1932, and it’s true in 2008. Republican policies so thoroughly fucked things that people were willing to progress. Why should we let the people escape the consequences they so clearly desired? Let Trump engineer a new depression, destroy the country and have no one to blame but himself. The Democrats should step in whenever it impedes blue states directly until an explicit carveout is made so the starkest of contrasts can be drawn between Trump’s America and the rest of us. They can engineer the shithole for themselves and be out of excuses for why it’s a shithole. 71 million that actively wanted this plus the under 15 million that were perfectly fine with it? No. No more coddling.', 'created': '2024-11-07 05:32:15', 'submission_id': '1glanow'}
{'comment': 'Gerrymander the fuck out of blue states.', 'created': '2024-11-07 01:21:24', 'submission_id': '1glanow'}
{'comment': "Yes. State governments need to ignore national mandates, minority needs to slow down everything with filibusters. We need a brigade of people to raise a stink on the media about everything. We need to play dirty, then win the House back with a Promise for America style contract when prices don't go down (and they won't), and pound Republicans on every failure. Don't compromise on anything. Unions need to strike all the time until they can't. Celebrities need to snub the White House again.", 'created': '2024-11-07 02:40:46', 'submission_id': '1glanow'}
{'comment': 'Harris lost 14M Biden voters. This is distinctly an "us" problem, not a "USA" or "Republican" problem.', 'created': '2024-11-07 04:06:36', 'submission_id': '1glanow'}
{'comment': "It is too damn late for that. What it isn't too late to do is to yank the Dem Party to the truly left and go for grass roots everything.", 'created': '2024-11-07 04:25:31', 'submission_id': '1glanow'}
{'comment': 'No, it is time to create a real third party that identifies the real issues hurting the working class.\n\n\nBernie Sanders has his thumb on the issue, and has for his whole career.\n\n\nHe needs to start his own party, and act as a grandfatherly figurehead.\n\n\nHe needs to initiate a new crop of politicians a\'la through teaparty=MAGA.\n\n\nAmerica is afflicted by a cancer that is the two party system (and the electoral college).\n\n\nIt is time for a major shift if we want anything moving forward...of course, that is if we still are able to vote.\n\n\nFinally, get a VPN for fucks sake if you use Reddit people BTW....I fear people who speak out will start "falling" from windows come late January 2025.', 'created': '2024-11-07 01:48:20', 'submission_id': '1glanow'}
{'comment': '', 'created': '2024-11-07 01:25:01', 'submission_id': '1glanow'}
{'comment': 'Democrats have no spine and will not do it. Always taking the high road', 'created': '2024-11-07 01:32:25', 'submission_id': '1glanow'}
{'comment': 'Agreed. The only way to fuck them up is to beat them at their own game. 50% of the\nPopulation is extremely pissed off right now and all it will take is a spark.', 'created': '2024-11-07 03:03:00', 'submission_id': '1glanow'}
{'comment': "We can't do it. You have to have control of the Senate and a sociopath like Mitch McConnell running it.", 'created': '2024-11-07 03:19:30', 'submission_id': '1glanow'}
{'comment': 'I just had ChatGPT create a [campaign plan](https://docs.google.com/document/d/1UvXZHBzBUhSfWp3iswNwvvxBtgYBMhtCg79woguV7VE/edit) — thoughts?', 'created': '2024-11-07 04:12:58', 'submission_id': '1glanow'}
{'comment': "It's well past time. Very likely too late. But we have to try and elect people who will fight like hell and find ways to win.", 'created': '2024-11-07 05:19:13', 'submission_id': '1glanow'}
{'comment': "The problem is that the republicans have a huge media apparatus that will never report things accurately regardless, so you'd be playing a symphony for an empty bathroom stall.", 'created': '2024-11-07 08:18:46', 'submission_id': '1glanow'}
{'comment': "We can't. They were making shit up. We won't be. Huge fucking difference.", 'created': '2024-11-07 02:59:19', 'submission_id': '1glanow'}
{'comment': '100%', 'created': '2024-11-07 00:54:48', 'submission_id': '1glanow'}
{'comment': 'filibuster is gone, trumps number one target despite what Republicans say, its done.', 'created': '2024-11-07 00:58:45', 'submission_id': '1glanow'}
{'comment': 'If it means sabotaging the country for the sake of denying them a "win". Then no, we don\'t have imitate them. \n\nit seems unlikely that there will be many times that we need to face that question however.', 'created': '2024-11-07 01:13:46', 'submission_id': '1glanow'}
{'comment': 'I’m in', 'created': '2024-11-07 01:23:35', 'submission_id': '1glanow'}
{'comment': 'Yep. Fuck ‘em.', 'created': '2024-11-07 02:23:59', 'submission_id': '1glanow'}
{'comment': 'Yes!', 'created': '2024-11-07 03:15:37', 'submission_id': '1glanow'}
{'comment': '1000000000%. They better.', 'created': '2024-11-07 03:18:03', 'submission_id': '1glanow'}
{'comment': 'Yes!!! Absolutely', 'created': '2024-11-07 03:44:19', 'submission_id': '1glanow'}
{'comment': 'I hope Anonymous does some exposing. They’re pissed.', 'created': '2024-11-07 04:04:25', 'submission_id': '1glanow'}
{'comment': 'Yes. The tables have turned.\n\nIn the Obama years, Dems won big when Obama was on the ballot and lost big when he wasn’t. The coalition relied on very unreliable voters.\n\nNow in the Trump years, Republicans win big when Trump is on the ballot and lose big when he isn’t. Their coalition relies on unreliable voters (sometimes the same people). That’s how Sherrod Brown, Bob Casey, and Jon Tester won in 2018 and lost in 2024.', 'created': '2024-11-07 10:47:56', 'submission_id': '1glanow'}
{'comment': 'It’s time to do anything we can to stop him and his agenda. That involved the media being as biased and one sided as possible.', 'created': '2024-11-07 11:18:54', 'submission_id': '1glanow'}
{'comment': ">Is it time to imitate the Republicans during the Obama years?\n\nNope. \n\nIt's time to prepare to be dissidents in a fascist regime. And be prepared for the consequences if you are one.", 'created': '2024-11-07 12:25:13', 'submission_id': '1glanow'}
{'comment': 'Democrats are too spineless to do anything other than play ay being kind as they constantly get their butts handed to them. I believe I will be switching my registration to Independent.', 'created': '2024-11-07 14:53:52', 'submission_id': '1glanow'}
{'comment': 'I believe working with them is better than just being obstructive.', 'created': '2024-11-07 15:39:44', 'submission_id': '1glanow'}
{'comment': 'No. Enough. I say grand bargain time. Really. It’s over. I’d rather see big bipartisanship, especially on immigration. Americans are quite forgiving if you deliver on a few promises in a big way.\n\n\nState legislators gone & Dems have lost SCOTUS in my lifetime and for next 30+ years. \n\n\nI’m ok with more Blue Dogs and centrists, especially local levels.', 'created': '2024-11-07 16:16:47', 'submission_id': '1glanow'}
{'comment': 'Of course, but Senate Republicans will likely get rid of the filibuster.', 'created': '2024-11-07 22:14:36', 'submission_id': '1glanow'}
{'comment': 'I don’t think so… read Bernie sanders letter just released \n\nThe dems are SO out of touch with the working ppl that are struggling , the no college educated working class is over it', 'created': '2024-11-06 23:44:58', 'submission_id': '1glanow'}
{'comment': "No. We'd be running for the last election. Its time to purge our leadership and chart a new direction for the party.", 'created': '2024-11-07 04:05:37', 'submission_id': '1glanow'}
{'comment': 'That is exactly what I mean.', 'created': '2024-11-07 00:47:48', 'submission_id': '1glanow'}
{'comment': "We should've done that during 2016", 'created': '2024-11-07 01:19:02', 'submission_id': '1glanow'}
{'comment': 'Too bad the Republicans now control the house, senate, White House and Supreme Court', 'created': '2024-11-07 02:02:03', 'submission_id': '1glanow'}
{'comment': 'Maybe you should get a billionaire to buy a social media platform and weaponize it?', 'created': '2024-11-07 04:14:58', 'submission_id': '1glanow'}
{'comment': 'Hard to block when they have both houses of Congress and the scotus', 'created': '2024-11-07 03:38:34', 'submission_id': '1glanow'}
{'comment': 'Naw man. That works if you have good policies you want to block. You should just let them implement the stupid shit, and let the chips fall where they may. Let people feel the pain. Why constantly continue to be the grown-up?', 'created': '2024-11-07 15:27:09', 'submission_id': '1glanow'}
{'comment': 'Absolutely. Every stop short of subverting democracy needs to be pulled out from now to the midterms', 'created': '2024-11-07 04:10:25', 'submission_id': '1glanow'}
{'comment': 'We’re going to fail that messaging from the first second we try.', 'created': '2024-11-07 05:33:02', 'submission_id': '1glanow'}
{'comment': 'HELL YEAH', 'created': '2024-11-07 11:25:14', 'submission_id': '1glanow'}
{'comment': 'Based on his intended plans? Yes we should be trying to do everything humanly possible to obstruct his more draconian policies and message the shit out of the fact things are going to hurt people and how.', 'created': '2024-11-07 17:56:26', 'submission_id': '1glanow'}
{'comment': 'Problem seems to be that when they fuck up, the democrats take the blame.', 'created': '2024-11-07 04:11:01', 'submission_id': '1glanow'}
{'comment': 'This is exactly the right answer. Scream it louder for those in the back.', 'created': '2024-11-07 02:29:21', 'submission_id': '1glanow'}
{'comment': 'The democrats keep playing by a rule book the republicans threw out a decade ago', 'created': '2024-11-07 06:07:11', 'submission_id': '1glanow'}
{'comment': 'Don’t obstruct everything, let them make their mistakes. I agree with the sentiment, but you’re in the fallacy that it’s the same thing. Republicans were blocking votes for things that were good for democrats/population. Dems should not block votes for things that will ultimately hurt the GOP (I.e: some of their ludicrous things such as banning porn).', 'created': '2024-11-07 15:31:24', 'submission_id': '1glanow'}
{'comment': 'Democrats have been trying to take the high road and look where it got them.', 'created': '2024-11-07 05:15:55', 'submission_id': '1glanow'}
{'comment': 'They will have lost senate and likely house so anything will be harder', 'created': '2024-11-07 00:28:47', 'submission_id': '1glanow'}
{'comment': 'Toothy bjers for four years!!', 'created': '2024-11-07 01:12:10', 'submission_id': '1glanow'}
{'comment': 'Politics, it turns out, is a street fight.', 'created': '2024-11-07 03:11:57', 'submission_id': '1glanow'}
{'comment': 'This was my thing with Pete. \n\nWe love him. He’s great. I don’t think him being gay is the problem - he’s too fucking smart.\n\nHe speaks so well and is able to debate anyone - but I don’t think the majority will see the beauty in that.', 'created': '2024-11-07 00:36:04', 'submission_id': '1glanow'}
{'comment': 'Exactly!\n\nPeople voted for Trump because they don’t want nuance and policy. They want to hear someone say “it’s broken, I’ll fix it.” And then say it a million times with no details how they will fix it. \n\nIt’s how the GOP continues to win with bad policy.', 'created': '2024-11-07 00:56:30', 'submission_id': '1glanow'}
{'comment': "\n\nIt's got Electrolytes!", 'created': '2024-11-07 00:17:29', 'submission_id': '1glanow'}
{'comment': "Republicans messaging isn't effective because it's simple. It's effective because it appeals to fear and anger.", 'created': '2024-11-07 12:07:15', 'submission_id': '1glanow'}
{'comment': 'The only way to break the cult is to have their leader break them. I wanna say let trump implement his tariffs, take away healthcare access and affordability, let him do what he promised. Then they will suffer the consequences and have no one to blame but themselves', 'created': '2024-11-07 01:35:01', 'submission_id': '1glanow'}
{'comment': 'I’m 46 and now 100% certain whether I see 2028 or beyond to 2078 I will never see a female president of this country whether it’s even still in existence.', 'created': '2024-11-07 01:25:42', 'submission_id': '1glanow'}
{'comment': 'McConnell won’t be SML. Probably Thune', 'created': '2024-11-07 00:13:00', 'submission_id': '1glanow'}
{'comment': 'Amen. Time for us to embrace alternative media too. We need this propaganda machine running on all cylinders and we need a mass exodus from X as Elon will just control whatever content gets pushed their', 'created': '2024-11-07 02:00:27', 'submission_id': '1glanow'}
{'comment': 'If they don’t, my rage will actually be powerful enough to charge an entire city.', 'created': '2024-11-07 03:20:25', 'submission_id': '1glanow'}
{'comment': 'Okay can you please go manage the dem party! We need you!', 'created': '2024-11-07 02:32:08', 'submission_id': '1glanow'}
{'comment': "It was the last time, and no one with a decent working knowledge of how our government works will be around him this time. \n\nIt's gonna be an even worse shitshow.", 'created': '2024-11-07 00:18:50', 'submission_id': '1glanow'}
{'comment': 'Agreed.', 'created': '2024-11-07 01:12:25', 'submission_id': '1glanow'}
{'comment': None, 'created': '2024-11-07 01:30:21', 'submission_id': '1glanow'}
{'comment': 'People don’t want progressives. Harris was Center Left and most moderates and independents thought she was too left. Progressive social issues are not popular at all right now. We need our own MAGA Democrat who can appeal to working class voters. Progressives mainly appeal to city folk and academia but not rural or suburban areas.', 'created': '2024-11-07 03:51:27', 'submission_id': '1glanow'}
{'comment': 'No. They don’t. Trumps election puts the nails in that idea’s coffin and then buries it. The people are tired of being progressived to death. They want black and white answers to complicated questions. They want the warm and fuzzies even if the fuzzies aren’t true. \n\nDon’t misunderstand me. I’m not saying the people are exactly right, they ain’t exactly wrong either. I’m just saying that’s what they think they want.', 'created': '2024-11-07 01:06:31', 'submission_id': '1glanow'}
{'comment': 'Harris lost 15-18 million Biden voters, trump lost 3 million maga voters. Damn those lazy fuckers.', 'created': '2024-11-07 05:48:54', 'submission_id': '1glanow'}
{'comment': "Yep. Trump will be taking down liberal media as soon as possible. That's one of the first things that strong men do is rid themselves of media which criticizes them.\n\nThis is why he's threatened to go after journalists. It's all part of the plan.", 'created': '2024-11-07 12:26:20', 'submission_id': '1glanow'}
{'comment': 'When did we get rid of the filibuster?', 'created': '2024-11-07 01:07:58', 'submission_id': '1glanow'}
{'comment': 'Not saying we go out of our way to block beneficial programs for Americans. We damn well better use every tool we have to block the crap. There’ll be enough of it flowing.', 'created': '2024-11-07 01:19:13', 'submission_id': '1glanow'}
{'comment': 'I hear you. However, bi-partisanship only works if you have 2 sides willing to compromise. Trumpublicans have proven time and time again that they aren’t interested in working together. A good example is your own, immigration. NOW they will try to force their own bill through and Dems be damned. No Dem should vote for anything on immigration. Let the Trumpers own it. When there are too few hands in the field, at the slaughterhouse, or on the construction site maybe then it will dawn on Americans that we need these hard working folk in our society. Till then Dems just need to sit on their hands and keep their mouths shut. Offer no resistance and offer no assistance to the Trumpers. The American citizens voted for it, so let them have it. Dems need to set healthcare and retirement protections as their line in the sand. \n\nSCOTUS is a lost cause and will hurt for the next decades, I agree. May be a moot point because we might not have decades available to worry about it.', 'created': '2024-11-07 16:34:31', 'submission_id': '1glanow'}
{'comment': 'Are they out of touch or has the messaging been abysmal? NPR’s Marketplace just aired an interview with Guy Ip. Why the fuck wasn’t MSNBC, CNN and other Dem leaning outlets airing shit like this 24/7? Once again, Dems fix the fucking economy and Trumpublicans will claim the credit.', 'created': '2024-11-07 00:15:17', 'submission_id': '1glanow'}
{'comment': 'Kamala outran Bernie is his state - sorry if I don’t want to hear from him', 'created': '2024-11-07 00:38:25', 'submission_id': '1glanow'}
{'comment': None, 'created': '2024-11-07 00:51:19', 'submission_id': '1glanow'}
{'comment': "Yeah, the billionaire real estate developer nepo baby from Manhattan is totally in touch with working Joes!\n\nIt's particularly impressive how dedicated he and his Supreme Court are to stripping away labor rights.", 'created': '2024-11-07 01:21:30', 'submission_id': '1glanow'}
{'comment': 'Do you have a link?', 'created': '2024-11-07 00:11:45', 'submission_id': '1glanow'}
{'comment': 'How? We don’t have any power in congress.', 'created': '2024-11-07 01:03:15', 'submission_id': '1glanow'}
{'comment': 'We need to hijack the Thanks Obama meme into a Thanks Trump stub your toe Thanks Trump', 'created': '2024-11-07 15:15:51', 'submission_id': '1glanow'}
{'comment': 'Filibuster everything that moves. Constantly propose amendments on everything and introduce resolutions and bills that eat Republican time.', 'created': '2024-11-07 04:11:11', 'submission_id': '1glanow'}
{'comment': 'Exactly. For fuck sake, can the Dems finally get off this naive sense of nobility. The voters have been begging for them to start playing dirty since 2016.', 'created': '2024-11-07 06:06:08', 'submission_id': '1glanow'}
{'comment': 'No it won’t you could literally filibuster a bill for two years if you wanted to', 'created': '2024-11-07 00:49:50', 'submission_id': '1glanow'}
{'comment': '100% agree!', 'created': '2024-11-07 00:39:21', 'submission_id': '1glanow'}
{'comment': 'And then they don’t fix it.', 'created': '2024-11-07 03:13:47', 'submission_id': '1glanow'}
{'comment': 'That is also part of it.', 'created': '2024-11-07 14:59:30', 'submission_id': '1glanow'}
{'comment': 'They won\'t blame themselves. They\'ll look at the people they hate being hurt worse and say, "Well, at least I\'m not that guy!"', 'created': '2024-11-07 03:54:20', 'submission_id': '1glanow'}
{'comment': 'The problem is he likely won’t stop until everyone not the most hardcore MAGAt is sent out of the country or dead.\n\nWhat if there’s not a 2028 election?', 'created': '2024-11-07 04:00:33', 'submission_id': '1glanow'}
{'comment': 'It will be whoever kisses the Ring.', 'created': '2024-11-07 00:29:09', 'submission_id': '1glanow'}
{'comment': 'Elons gonna try and get more NASA contracts. Keep bottling them up and delaying them but launching committee investigations. Start an investigation into foreign intelligence interference on twitter. Keep driving him mad and the dudes gonna implode. Hes predictably childish.', 'created': '2024-11-07 02:17:04', 'submission_id': '1glanow'}
{'comment': 'Kind of “excited” for it, honestly, in a very dark/morbid kind of way.\n\nLet’s burn this place down. Let HIM be responsible for it and never back down on putting the blame squarely on him.', 'created': '2024-11-07 00:37:32', 'submission_id': '1glanow'}
{'comment': 'Yeah but the flip side of that is he had career civil servants in there that stood as guardrails and they won’t be there this go round.', 'created': '2024-11-07 00:50:07', 'submission_id': '1glanow'}
{'comment': 'Are you serious? Harris ran right of Hillary. In what world was Harris a progressive, or does POC woman always equal progressive?', 'created': '2024-11-07 01:47:18', 'submission_id': '1glanow'}
{'comment': 'Progressives won their seats in swing states. Progressive ballot measures won nation wide except Florida, because Florida. The reality is that Americans want populist progressivism, for some reason liberals don’t want to believe it. Centrist, “I know what’s best” platforms have failed time and again. It’s time to abandon the idea that centrist liberalism works, it was knocked out in 2016, nots it’s should stay down.', 'created': '2024-11-07 01:44:16', 'submission_id': '1glanow'}
{'comment': "Trump pushed the Senate in 2017 to do away with the filibuster, McConnell refused outright, but 2024 Republicans are not the same as 2017, MAGA controls the bulk of the party, the pressure will be enormous to do away with the filibuster, however McConnell again says its safe, if Republicans only control 52 seats, then i think we can save the filibuster with 3 defections of what's left of the Republican party", 'created': '2024-11-07 13:54:54', 'submission_id': '1glanow'}
{'comment': 'And in 8 months the economy will be in ruins and they will blame it on the Democrats.\n\nWorth pointing out CNN isn’t Dem leaning anymore.', 'created': '2024-11-07 01:07:22', 'submission_id': '1glanow'}
{'comment': 'Filibuster day and night, baby.', 'created': '2024-11-07 01:05:47', 'submission_id': '1glanow'}
{'comment': 'Neither did the Republicans on January 20, 2009. The Democrats need to coalesce and stage an all out effort to grind the gears of government for the next two years, and be loud and obnoxious in blaming him for everything bad that happens in the world.\n\nTrump can only become dictator if we all fold.', 'created': '2024-11-07 01:12:13', 'submission_id': '1glanow'}
{'comment': 'We don’t have any power because we don’t use power when we have it. WWFMMD should be the Dem mantra. \n\nWhat would fucking Mitch McConell do? Sort it, grab yer balls and do it.', 'created': '2024-11-07 01:15:04', 'submission_id': '1glanow'}
{'comment': 'We have at least as much power as Republicans had from 2008-2010. Filibuster everything; 24/7/365 have every Democrat complaining about something; anything some Republican is doing somewhere because propaganda ***works***.\n\nRepeat the same thing enough times and people believe it 100% of the time 👍', 'created': '2024-11-07 03:32:57', 'submission_id': '1glanow'}
{'comment': "Neither did they in Obama's first two years.", 'created': '2024-11-07 03:25:59', 'submission_id': '1glanow'}
{'comment': 'Be that as it may, the Dems are inept. While I vote dem in every election with no exception I think they couldn’t find their asses with both hands. And, I am certain that they will firmly set on their hands for three years without making any effort to build up a viable presidential candidate. They had four years of trump and didn’t try to bring up a candidate and thankfully got Biden to run win. Then they had three years of the Biden term and made zero effort knowing how old he is. They lost the balance in the Supreme Court. They allowed women’s rights to be decimated. I should just stop looking at things. I am bit pissed. I apologize.', 'created': '2024-11-07 01:05:45', 'submission_id': '1glanow'}
{'comment': 'If the filibuster is still there.', 'created': '2024-11-07 04:11:47', 'submission_id': '1glanow'}
{'comment': 'That needs to be the Democratic messaging', 'created': '2024-11-07 04:14:45', 'submission_id': '1glanow'}
{'comment': 'this comment soothes my anxieties a little, thank you friend', 'created': '2024-11-07 04:26:16', 'submission_id': '1glanow'}
{'comment': 'This is my attitude too, surprisingly', 'created': '2024-11-07 06:07:22', 'submission_id': '1glanow'}
{'comment': 'How is that the flip side to what I said? \n\nSeriously, am I missing something...? Cause it sounds like you said exactly what I said.', 'created': '2024-11-07 01:16:44', 'submission_id': '1glanow'}
{'comment': None, 'created': '2024-11-07 01:57:31', 'submission_id': '1glanow'}
{'comment': 'The “I know what’s best” platform won the election and the popular vote.', 'created': '2024-11-07 01:56:51', 'submission_id': '1glanow'}
{'comment': 'Yep we need a couple of “FUCK YOU MCCONNELL WAS RIGHT” democrat senators to hold up EVERYTHING: block all scotus appointments, shut down the government every chance they get, I don’t want trump appointing so much as a dog catcher without months of stalling and headache. \n\nThen just do the same thing to Vance when trump strokes out in a year.', 'created': '2024-11-07 01:10:52', 'submission_id': '1glanow'}
{'comment': 'Mitch aint gonna be in power soon. Repubs will dump the filibuster at Trumps request.', 'created': '2024-11-07 01:52:23', 'submission_id': '1glanow'}
{'comment': 'We need a Mr. Smith to go in there and do the damn thing.', 'created': '2024-11-07 01:45:44', 'submission_id': '1glanow'}
{'comment': "But they'll just do it anyway and get away with it.", 'created': '2024-11-07 02:27:34', 'submission_id': '1glanow'}
{'comment': 'The first thing a Republican senate will do is abolish the filibusrer.', 'created': '2024-11-07 02:10:42', 'submission_id': '1glanow'}
{'comment': 'They’ll kill the fb. Mark my words.', 'created': '2024-11-07 03:56:26', 'submission_id': '1glanow'}
{'comment': 'Bet trump comes after the filibuster now tbh', 'created': '2024-11-07 02:53:44', 'submission_id': '1glanow'}
{'comment': 'One Ted Cruz filibuster coming right up', 'created': '2024-11-07 05:15:58', 'submission_id': '1glanow'}
{'comment': 'No. Sure, filibuster the SC. But let them learn the hard way, it’s not the same thing. Republicans were blocking well-intentioned dem policies that could net dem votes. If you block shitty republican policies that would lose them votes, that’s not actually good for dems. Let them fuck around, and let them find out, don’t kick and scream until they listen to the adult in the room.', 'created': '2024-11-07 15:29:49', 'submission_id': '1glanow'}
{'comment': 'This gives me hope thank you', 'created': '2024-11-07 01:27:37', 'submission_id': '1glanow'}
{'comment': 'This gives me hope. Thank you, man. I hope we can at least slow down what feels like impending doom, lol.', 'created': '2024-11-07 01:38:33', 'submission_id': '1glanow'}
{'comment': 'Yeah I guess but I just don’t see what mechanisms they have to do that in any sort of real, tangible way. I’m all for throwing all the wrenches on all the gears and taking up the mantle of the party of obstructionists. My question is…how?', 'created': '2024-11-07 03:40:49', 'submission_id': '1glanow'}
{'comment': 'The biggest difference is Obama was legit trying to work with the other side. They won’t give a fuck', 'created': '2024-11-07 08:54:16', 'submission_id': '1glanow'}
{'comment': 'I agree about being obnoxious, but I think don’t block stupid shit that will bite them in the ass. They want to ban porn? Fuck, let them. Let the leopards eat those faces. Let people learn the hard way. Sometimes if you always stop people from learning from their mistakes, you’re just enabling their irresponsibility.', 'created': '2024-11-07 15:28:27', 'submission_id': '1glanow'}
{'comment': 'Awarded this cause this right here is the answer.', 'created': '2024-11-07 06:58:39', 'submission_id': '1glanow'}
{'comment': "More importantly is to communicate this to the Democratic party writ large. It's a chance for them to prove that they're listening and not continue learning the wrong lessons again", 'created': '2024-11-07 01:46:27', 'submission_id': '1glanow'}
{'comment': 'We are the dems. We need to take action if we don’t like what our party is doing.', 'created': '2024-11-07 02:28:22', 'submission_id': '1glanow'}
{'comment': 'Go ahead and be pissed. The Democrats are incredibly frustrating in their refusal to fight.', 'created': '2024-11-07 01:59:24', 'submission_id': '1glanow'}
{'comment': '100%', 'created': '2024-11-07 04:43:54', 'submission_id': '1glanow'}
{'comment': 'Bernie’s getting old. It’s sad to see. Hope he stays healthy.', 'created': '2024-11-07 03:52:47', 'submission_id': '1glanow'}
{'comment': 'That’s the wrong read. The anti-status quo and anti-institutions platform won. The centrist status quo is what caused this problem and people are rejecting it', 'created': '2024-11-07 02:14:46', 'submission_id': '1glanow'}
{'comment': "Can't filibuster Scotus appointments. Harry Reid did away with that because of Republican obstructionism.\n\nEDIT: nope, wasn't Reid, was that sack of shit Mitch McConnell.\n\nThing is, I suspect that the Repugnantcans might actually do away with the filibuster entirely. Or at least on a couple of occasions to jam through something awful.", 'created': '2024-11-07 01:56:59', 'submission_id': '1glanow'}
{'comment': "this is the best stuff I've read all day", 'created': '2024-11-07 05:05:40', 'submission_id': '1glanow'}
{'comment': "Good 👍 (which, coincidentally is why they won't do it.)", 'created': '2024-11-07 03:34:56', 'submission_id': '1glanow'}
{'comment': "Will do. I actually have already been marking my words with a checklist of things Republicans said Donald Trump **wouldn't do** but almost certainly will do, and I'll be checking them off as they come true. I got to set some red lines, or else the truth and normalcy will end without knowing it. It's like bingo, but a sad checklist of the country going fascist.", 'created': '2024-11-07 04:16:24', 'submission_id': '1glanow'}
{'comment': 'We need to burn this fucker to the ground and build a new party from the ashes.\n\nThe election results were clear. \n\nVote Blue no Matter Who is not a viable strategy in the long term.\n\nCivility politics is a weakness. Taking the "high road" only results in us getting punched in the nuts.\n\nAppealing to "moderate conservatives" is an exercise in futility.\n\nInstitutional politics are dead in the water. If we don\'t put forward a populist message in 2028 (assuming there\'s even an election, Trump has promised otherwise), we\'re in for another term of MAGA, whether that\'s a third Trump term or a successor.', 'created': '2024-11-07 06:26:03', 'submission_id': '1glanow'}
{'comment': 'We need to do something to fix our Party. If we want to beat the GOP we better find a better solution', 'created': '2024-11-07 02:04:54', 'submission_id': '1glanow'}
{'comment': 'Dare them to abolish the filibuster. Make them be seen to have done it.', 'created': '2024-11-07 02:03:41', 'submission_id': '1glanow'}
{'comment': 'False. Harry Reid got rid of the filibuster for federal justices, but kept it intact for Supreme Court Justices. Mitch McConnell did away with that .', 'created': '2024-11-07 03:24:39', 'submission_id': '1glanow'}
{'comment': 'Harry Reid did not do away with Supreme Court filibuster', 'created': '2024-11-07 05:28:21', 'submission_id': '1glanow'}
{'comment': 'Yessss our party needs to change!', 'created': '2024-11-07 06:44:30', 'submission_id': '1glanow'}
{'comment': 'They won’t be punished electorally for it. People want to smash up the system because it isn’t working for them; killing something that prevents them from shoving their agenda down our throats will be seen by the electorate as a win.', 'created': '2024-11-07 02:34:07', 'submission_id': '1glanow'}
{'comment': 'Indeed, i dare say that might be a goal on Democrats part (goading Republicans into doing it i mean) 👍', 'created': '2024-11-07 03:34:17', 'submission_id': '1glanow'}
{'comment': 'And then when the Dems come back to power, we can do as they do.\n\n“What is good for the goose is good for the gander.”', 'created': '2024-11-07 04:48:44', 'submission_id': '1glanow'}
{'comment': 'You are correct. I forgot about that interim part.\n\nFuck Mitch McConnell.', 'created': '2024-11-07 03:35:51', 'submission_id': '1glanow'}
{'comment': 'The real reason they wouldn’t be punished electorally for it is because the majority of the country pays no attention to what’s going on in government. It’s why we are now in this mess to begin with.', 'created': '2024-11-07 03:23:23', 'submission_id': '1glanow'}
{'comment': "They only honestly pay attention when it's the political theatrics. The American public has now gotten so use to seeing petty fights in the chambers of Congress that it can now be recategorized as Reality TV. They sayyyy they don't like to see it but their habits of secretly watching it, becoming addicted to it and it's pretty obvious that Trump lead us all down this road.", 'created': '2024-11-07 05:31:46', 'submission_id': '1glanow'}
{'comment': 'This is the real problem with Cspan. It made it possible for congress members to put on shows rather than just work on solving problems.', 'created': '2024-11-07 13:36:01', 'submission_id': '1glanow'}
{'comment': 'I can\'t say I\'d agree. C-Span has never been used with the sole intent and purpose to broadcast what we know as dramatic television or "reality tv". It was always meant for the viewing public via cable subscripts to watch our elected officials do their job and learn what they were often fighting for on our behalf.\n\nIt has always been the individuals who we have elected who were responsible for setting the tone. Trump was merely the vessel who broke the wall down for those in the chambers to act however they wish. It was usually him who got to decide whether he liked their outbursts or not. If he didn\'t like what you had to say, then he\'d say so.\n\nTrump attempted to extract every moment as a marketing tool, a way to be in the spotlight every chance he could get. HE, himself is his brand. Slowly but surely, we as the viewing public wound up with egotistical, dramatic, individuals who ran for congress looking to be the next version of Trump, ESPECIALLY during his first term when he had Omarosa Manigault Newman be a part of his administration, a former contestant on his TV show The Apprentice.\n\nHe wound up setting the tone for what would become normalized petty rhetoric in our legislative branches that was happening more frequently.\n\n \nWhile egos in Congress have always been at play, nothing has ever been this bad.', 'created': '2024-11-07 14:02:30', 'submission_id': '1glanow'}
{'comment': 'On the newest information it still says.\n\n"Request for absentee ballot"\n\nAnd nothing that says Ballot Counted?\n\nUhh well, that\'s definitely sounding like it was not counted.', 'created': '2024-11-06 23:27:48', 'submission_id': '1glac1a'}
{'comment': "Reminder that some states haven't fully counted yet.\nBetter to check when your state has.", 'created': '2024-11-07 00:32:09', 'submission_id': '1glac1a'}
{'comment': "Is it possible to have an official count of those who were registered to vote and didn't in the swing states in party affiliations.?", 'created': '2024-11-06 23:53:28', 'submission_id': '1glac1a'}
{'comment': '', 'created': '2024-11-06 22:09:10', 'submission_id': '1gl8yfu'}
{'comment': "Well at least there's some good news there.", 'created': '2024-11-06 22:14:31', 'submission_id': '1gl8yfu'}
{'comment': 'Her and Baldwin winning is good. Things feel bad, and they will be bad, but every seat we get is a good thing.', 'created': '2024-11-06 22:58:32', 'submission_id': '1gl8yfu'}
{'comment': 'Good news and I wonder who who should she support in order to beat Trump if he tries to get around the 22nd Amendment', 'created': '2024-11-06 22:55:41', 'submission_id': '1gl8yfu'}
{'comment': 'Small victory, happy for her!', 'created': '2024-11-07 00:08:48', 'submission_id': '1gl8yfu'}
{'comment': "It isn't much, but it is something we can work with.", 'created': '2024-11-06 23:48:04', 'submission_id': '1gl8yfu'}
{'comment': 'Yay....', 'created': '2024-11-06 22:43:50', 'submission_id': '1gl8yfu'}
{'comment': 'right...', 'created': '2024-11-06 22:19:02', 'submission_id': '1gl8yfu'}
{'comment': 'Perfect use of this gif', 'created': '2024-11-06 23:14:13', 'submission_id': '1gl8yfu'}
{'comment': 'Thank you for the laugh', 'created': '2024-11-06 23:33:01', 'submission_id': '1gl8yfu'}
{'comment': 'yup thats the vibe', 'created': '2024-11-06 23:58:24', 'submission_id': '1gl8yfu'}
{'comment': 'Kerrie Lake lost Arizona Senate race', 'created': '2024-11-06 23:34:51', 'submission_id': '1gl8yfu'}
{'comment': 'The split vote voters can all celebrate with a fat bag of dicks', 'created': '2024-11-06 23:02:11', 'submission_id': '1gl8yfu'}
{'comment': 'I feel as if my 5 weekends door knocking in Milwaukee helped a tiny bit for Baldwin and my 3 hours of phone banking into Michigan a week helped with Slotkin :D', 'created': '2024-11-06 23:37:58', 'submission_id': '1gl8yfu'}
{'comment': 'But not by much. Jesus Christ, it should have been a fucking landslide.', 'created': '2024-11-06 23:40:55', 'submission_id': '1gl8yfu'}
{'comment': 'Has that been officially called.', 'created': '2024-11-06 23:36:27', 'submission_id': '1gl8yfu'}
{'comment': 'She gets a cabinet position now as consolation', 'created': '2024-11-07 01:54:22', 'submission_id': '1gl8yfu'}
{'comment': 'What happened where was the 18-20 million Democrats voters?', 'created': '2024-11-06 23:52:23', 'submission_id': '1gl8yfu'}
{'comment': 'Not yet my apologies', 'created': '2024-11-06 23:51:39', 'submission_id': '1gl8yfu'}
{'comment': 'They must have made the same mistake they made In 2016. Stayed home.', 'created': '2024-11-07 00:11:12', 'submission_id': '1gl8yfu'}
{'comment': 'The first time was a mistake. The second time was a message. A stupid message but a message nevertheless.', 'created': '2024-11-07 01:56:56', 'submission_id': '1gl8yfu'}
{'comment': 'I’m not standing up for my neighbor. Fuck them. They’ve felt that way for a long time. Time for us to return the favor. They glee when trump withholds disaster aid to liberal states. If democrats ever regain power again, we can’t just stop at reversing all the damage trump has done. We must go further\n\nEdited because I am not implying violence. The right showed us how much damage they can do through the courts and through the legislative and the executive. I’m just saying we play the same game', 'created': '2024-11-06 22:00:16', 'submission_id': '1gl88fm'}
{'comment': 'When has the Democratic Party ever shown it is brave enough to aid Biden in making some crucial decisions for Americans the next couple of months? \n\nWe lost. It’s time to let American destroy itself so people will realize they can’t just listen to little snippets of propaganda on Twitter, Instagram, TikTok and think they’re well informed. Because that’s just what happened', 'created': '2024-11-06 22:47:12', 'submission_id': '1gl88fm'}
{'comment': 'Nah fuck that noise, stoop just as low because playing fair does not win', 'created': '2024-11-06 22:34:50', 'submission_id': '1gl88fm'}
{'comment': 'demand a recount.', 'created': '2024-11-06 21:57:08', 'submission_id': '1gl88fm'}
{'comment': '“i do not concede the fight for freedom, opportunity, fairness, and dignity of all people…sometimes the fight takes a while. but remember, don’t ever give up…this is not a time to throw up our hands, this is a time to roll up our sleeves. to organize, to mobilize, and stay engaged for freedom and justice…and to fight for others…there’s a saying: “only when it is dark enough can you see the stars.” if we are entering a dark time, let us fill the sky with the light of a billion stars, the light of optimism, faith, truth, and service. may that light guide us towards the extraordinary promise of the united states of america.” - kamala harris 💙🇺🇸', 'created': '2024-11-06 23:02:27', 'submission_id': '1gl88fm'}
{'comment': 'I don’t need words of wisdom. My family may very well be killed and/or deported within a year as they are first generation Americans. Some of my Latino family members are also part of the LGBTQ+ community.\n\nThis a fucking death sentence and Kamala and her campaign let us down and let us be sent to the gas chambers, I don’t want any of their comforting words because they mean and do nothing.\n\nGet out of this country while you can, if you cannot leave start learning how to defend yourself and your families. Look into going ghost on the internet and finding places to hide. \n\nThere is no hope. There is nothing left but survival.', 'created': '2024-11-06 22:22:40', 'submission_id': '1gl88fm'}
{'comment': 'Yeah they\'ve been using the Malcom X school of thought, "by any means necessary", while we\'ve been trying to play the respectable high ground. Michelle Obama was wrong when she said "When they go low, we go high". Fuck that it\'s gloves off time.', 'created': '2024-11-06 22:19:43', 'submission_id': '1gl88fm'}
{'comment': 'Yea it’s time we stopped being the never trumper party. We lost 2016 because of several factors one being we spent more time being the never trumpers and criticizing Trump in this election and in 2016. Less time calling out Trump, more on policy. Less on social issues, more of actual policy that focuses on the economy and immigration. Two of the biggest things for decades. This was a repeat of 2016 and I’ve seen sooo many similarities. How the dems could blow this yet again just blows my mind. \n\nWe’re not ready for a female president. We’re just not. Dems need to face that fact and move on *for now* from that scene. They tried chasing that Obama magic and it didn’t translate into votes. I refuse to believe ANYTHING that “experts” say the chances of the next dem candidate is. No economical experts, no celebrities. That’s another thing. Sure star studded endorsements are cool and all, but just as in 2016, the rich and famous tried to tell people who they should vote for. And it still did nothing just like 2016. I’m guessing at this point having a ton of celebrity endorsements is a big negative. We had the swifties, we had sooo many celeb endorsements. And still nothing. Taking the high road now isn’t working anymore. It’s time we tried something different. Let’s do what Biden did and meet Trump at the bottom where he is in hell. This system no longer works. It’s time to do what republicans are doing.', 'created': '2024-11-06 22:11:17', 'submission_id': '1gl88fm'}
{'comment': ">I’m just saying we play the same game\n\nIf you play the same game, you won't have a functional democracy. \n\nInstead, we need enough support to revise our system of laws so that the same game can't be played again.", 'created': '2024-11-06 22:33:46', 'submission_id': '1gl88fm'}
{'comment': 'Not if it means stooping to their level. No matter what we cannot become like them.', 'created': '2024-11-06 22:01:15', 'submission_id': '1gl88fm'}
{'comment': '[removed]', 'created': '2024-11-06 22:25:41', 'submission_id': '1gl88fm'}
{'comment': 'Thank you for saying this truth. Some of us will lose family and friends while Democrats continue to speak about promises of America being possible. All of the sudden Trump isn’t dangerous?!? Disingenuous privileged people.', 'created': '2024-11-06 22:37:56', 'submission_id': '1gl88fm'}
{'comment': ">This a fucking death sentence and Kamala and her campaign let us down\n\nYou're incorrect assumption was that it was actually ever winnable. \n\nHarris ran a great campaign. It was just too late. The fascist cancer of propaganda and lies, which uses fear, anger, and confusion to build power, had already spread too far.\n\nIn fact, the primary reason that Biden won was because of Trump's handling of the pandemic. Not because Trump was a fascist.", 'created': '2024-11-06 22:27:25', 'submission_id': '1gl88fm'}
{'comment': 'So I have a genuine question here so please hold the downvotes yet. \nWhen you say deportation, you mean illegal immigrants rights? \nBecause if it includes perfectly legal too then I am fucked 🫠 however I genuinely do not see how the latter would be even legal. Deporting on what grounds? Not being American? \n\nI', 'created': '2024-11-06 22:48:44', 'submission_id': '1gl88fm'}
{'comment': 'Agreed. Michelle assumed Americans cared about decency. They don’t. So we can take that off the table and stop playing with our hands tied', 'created': '2024-11-06 22:24:56', 'submission_id': '1gl88fm'}
{'comment': 'Voting against someone is not as inspiring as voting for someone. Look at Obama, the right hated his guts. They wouldn’t be caught dead voting for him. Yet, Obama torched McCain and Romney because he offered hope and delivered on a key progressive policy: affordable healthcare\n\nDems should never depend on republicans voting against republicans. Focus on your demographics and drive up their enthusiasm to produce the turnout needed', 'created': '2024-11-06 22:18:20', 'submission_id': '1gl88fm'}
{'comment': 'Of course no violence', 'created': '2024-11-06 22:02:19', 'submission_id': '1gl88fm'}
{'comment': "Wtf is your problem? Your side won and that's not enough? You have to come over and harass a support group and rub it in our faces? Whats the point? Fuck off, please leave us alone, cause some of us are more scared than we've ever been in our lives", 'created': '2024-11-06 22:41:26', 'submission_id': '1gl88fm'}
{'comment': 'That and COVID was starting to hit the economy', 'created': '2024-11-06 22:28:49', 'submission_id': '1gl88fm'}
{'comment': 'It starts with “illegal” and turns in to “anyone brown”. \n\nI implore you to research the rise of Nazi Germany and the rhetoric they went by. It is exactly what is happening now but replace “Jew” with “Mexican”. \n\nGet an escape plan in place, get weapons to protect yourselves and do tactical training, find a hiding place if necessary. Do what you have to do. \n\nIt is every man for himself now.', 'created': '2024-11-06 22:51:04', 'submission_id': '1gl88fm'}
{'comment': 'At this point in America Project 2025 will gut the insides of what democracy is and America will be left being a hollow shell of itself. Deportation will not just happen to illegal immigrants. It will happen to all minorities, LGBTQ+, and other democratic protesters/vulnerable people that republicans deem as “woke”.\n\nWomen, especially the white women who voted Trump or didn’t vote, are going to be suppressed and they will not have reproductive rights/freedoms that they will feel the pinch of what it’s like to support fascism. Women’s rights will get stripped down to a level we have never seen and will take a lifetime to repair.\n\nOh and don’t get me started on healthcare and other civil liberties in the United States. Those will be stripped completely so as democrats we need to fight to protect those liberties, benefits, etc.\n\nI have been an American my whole life but I am now seeing the glimpse of the USA and its democracy dying that you need to escape while and if you can. There is a reason why Europe is scared of a Trump presidency and for good reason. This is 1930s Germany all over again and this is where America’s flame will start to flicker out. Catastrophic atrocities will happen before people wake up and realize what kind of insanity they let into their presidency.\n\nBest thing you can do is if you have family abroad go there and start to rebuild and if you are an American citizen without that option move your family to Democratic states, lay low and start getting involved in politics at the local or federal level to influence elected officials put in office. Pull a V for Vendetta and move to put explosives in place to help dismantle Project 2025. That is the best way to move forward and for a prosperous future.\n\n', 'created': '2024-11-07 09:58:21', 'submission_id': '1gl88fm'}
{'comment': 'Kamala did literally everything right. But somehow turnout was ***lower*** than 2020. Who are these dems that didn’t vote? Who said “no I’m not voting for her or Trump. I’m just gonna sit out and let democracy die.” Some democrats they are. And they need called out every second of the next 4 years. We can no longer allow these so called “democrats” to sit it out. In some parts of Europe voting is compulsory. You’re required to vote. We need that.', 'created': '2024-11-06 22:20:28', 'submission_id': '1gl88fm'}
{'comment': 'these MAGA fucks are so obsessed with harassing.', 'created': '2024-11-06 22:43:25', 'submission_id': '1gl88fm'}
{'comment': 'Yup, we all wanted out of the pandemic so Biden was the logical choice (between him and trump). I don’t recall Biden’s (or other dems) vision post trumpism. Whether you like him or not, Obama gave us a vision, he gave us something to fight for and thats something I wish the Biden Administration focused on the past 2 years than talking about trump.', 'created': '2024-11-06 22:59:32', 'submission_id': '1gl88fm'}
{'comment': 'Is it actually democrats who didn’t vote, or is it rural republicans who didn’t cross party lines?\n\nIt’s most likely both, but still…I thought democrats were better than this.', 'created': '2024-11-06 23:53:06', 'submission_id': '1gl88fm'}
{'comment': "Men who can't vote for a woman", 'created': '2024-11-06 22:52:59', 'submission_id': '1gl88fm'}
{'comment': 'I’m neither maga nor even a US citizen or resident', 'created': '2024-11-06 22:45:18', 'submission_id': '1gl88fm'}
{'comment': 'I read turnout was lower than 2020 for dems.', 'created': '2024-11-06 23:53:34', 'submission_id': '1gl88fm'}
{'comment': 'Then mind your business', 'created': '2024-11-06 23:16:03', 'submission_id': '1gl88fm'}
{'comment': 'Yes, Kamala got something like 16 million fewer votes than Biden did.', 'created': '2024-11-06 23:54:04', 'submission_id': '1gl88fm'}
{'comment': '[removed]', 'created': '2024-11-06 23:18:50', 'submission_id': '1gl88fm'}
{'comment': 'Yes and Trump himself was down 3 mil\n\nI just don’t get it', 'created': '2024-11-07 02:18:07', 'submission_id': '1gl88fm'}
{'comment': 'One comment on a message board. You see this isn’t a common sentiment from democrats because our leaders actually accept the results of an election', 'created': '2024-11-07 00:18:10', 'submission_id': '1gl88fm'}
{'comment': '15-16 million Americans would rather Trump be POTUS and the GOP enact Project 2025 than they would vote for a black woman. It’s literally cutting of your nose to spite your face.', 'created': '2024-11-07 03:58:00', 'submission_id': '1gl88fm'}
{'comment': 'I think Kamala Harris run an amazing campaign, visiting alllll the battleground states.\n\nShe did the best she could with 3 months or so left to the election day.\n\nBiden, and I love the man, should have never ran in the first place. \n\nKamala Harris did an outstanding job IMO.\nI felt touched by her charisma and Walz is just a gem.', 'created': '2024-11-06 21:45:52', 'submission_id': '1gl6kn6'}
{'comment': 'The platform isn’t the problem. It’s messaging, and lack of understanding that the mainstream media is now part of the problem. It’s a lot more than that too, of course, because life is complicated.', 'created': '2024-11-06 22:53:57', 'submission_id': '1gl6kn6'}
{'comment': "There was nothing wrong with the platform. There were two issues: time and messaging.\n\nTime because if she had been the candidate from the start, she would have had much more prep time which in turn would have helped with the second issue. People would have known her more. She would have been able to be more strategic about addressing weaknesses in battle ground states. It would have also helped to make the break from Biden clearer. There were plenty that just saw her as continuing Biden's policies rather than having her own. That leads to the bigger issue of messaging.\n\nMessaging because a consistent critique of the Harris campaign is that people didn't feel like they knew her positions or how they differed from Biden. She also had the bullshit narrative of a non-existent inflation problem to combat. That's a difficult narrative that requires concerted messaging that just didn't seem to appear. There was a lot of messaging around abortion access. That was good to have, important for many, and not relevant to a whole lot of others. For example, there is polling of Gen Z males that show they don't give a damn about abortion. They do care about jobs and the cost of things. Those are topics that were not as strongly messaged as they could have been. The reality is inflation is extremely low and the US is doing far better than the rest of the world. That message was out there, but it's presentation seemed infrequent and weak compared to others. Consequently, key demographics were lost. The Republicans win on that topic even though they're really bad at managing the economy because they maintain a consistent simple narrative of keeping taxes down so you have more money. The Dems consistently lose because they make their economic positions too complicated and academic. People care about their personal finances. They don't care about something abstract like what is happening with inflation because even when you hit good inflation rates like we have now, the cost of things can still be high for a while. There is a lag between inflation and the actual expenses people feel like they are paying. Also, there was a mass disinformation issue. For example myths surrounding FEMA and what they were and were not doing vs funding. There have been people actually shooting at FEMA crews trying to provide assistance because of Internet lies that they were there to steal property. We've entered a period in which media is no longer trusted for news but social media can be. We're in a social media ecosystem that weaponizes misinformation and helps to instill fear.", 'created': '2024-11-06 23:42:18', 'submission_id': '1gl6kn6'}
{'comment': "It wasn't the platform; it was inflation and Biden’s poor job explaining how hard it is to fight without crashing the economy and his failure to take credit for the soft landing and historically low unemployment.", 'created': '2024-11-06 20:59:25', 'submission_id': '1gl6kn6'}
{'comment': 'I feel like our big takeaway should be that the "they\'re trying to appeal to the far right, so we should try to appeal to the center so we get the center and the left" strategy we\'ve been running with *does. not. work.*\n\n\nIt didn\'t work in 2016.\n\n\nIt probably wouldn\'t have worked in 2020 had Trump\'s COVID handling not been so abysmal. People weren\'t voting *for* Biden as much as they were voting *against* Trump.\n\n\nIt didn\'t work in 2024.\n\n\nStop worrying about being called radical. Stop worrying about being labeled a socialist. They are going to do that shit regardless. "We are going to maintain the status quo with some small incremental progress" is not a winning message. Become the boogeyman they make us out to be. Medicare for all. Free higher education. Expand social safety nets. Expand and enforce anti-monopoly laws. Tax the living hell out of billionaires. Actually give people something to get excited about that isn\'t just "we\'re going to stop the other side from making things worse".', 'created': '2024-11-06 23:22:25', 'submission_id': '1gl6kn6'}
{'comment': 'Wide-spread heartlessness and horrible education. Trump is completely heartless. We\'ve all seen that over and over because we get our info from sources other than MAGA media. The reason he won the election is because half our country is also heartless. Heartless and not educated enough to recognize obvious lies, esp. about economy, immigration, basic US civics. We are more and more outnumbered by the heartless and poorly educated. And they LOVE Trump! And they are defenseless against the onslaught of BS and twisted reality fed to them by MAGA media and the MAGA politicians. \n\nThe only way I see out of this mess, the ongoing shrinkage of Democratic Party, is to stop letting them defund their schools and trash their curriculum with religion replacing science, and with the book banning crap. And simultaneously stop letting them get away with all the fat f\\*cking LIES they pass off as "news" for these poor dumb bastards.', 'created': '2024-11-06 20:49:34', 'submission_id': '1gl6kn6'}
{'comment': 'Policies:\xa0\n1. Plan to reduce the national debt.\xa0\n2. Plan to tackle immigration.\xa0\n\n\nThings that matter to Republicans and Dems tend to ignore.\n\n\nPresentation:\xa0\n1. Authenticity.\xa0 Kamala should not be promising things she can\'t deliver unless congress gains 38 more Dems, which isn\'t going to happen.\xa0\n2. Authenticity.\xa0 Lose the clips that make it seem like Trump is saying "you only have to vote one more time" but omit the context.\xa0 People see the context and then think the clip is a liar, reddit is liars.\xa0\n3. Authenticity.\xa0 Stop telling us about Josh Everyman, who served in the war, and came home to heartbreaking whatever.\xa0 Stop telling us these rehearsed stories to connect with voters emotionally.\xa0\n\n\nStrategy:\xa0\n1. Dems need a social media machine.\xa0 YouTubers that talk movie reviews while constantly pushing back on anti-immigrant hatred to prime voters the way conservatives do.\xa0 Dems need some drama to get views and attention.', 'created': '2024-11-06 21:27:59', 'submission_id': '1gl6kn6'}
{'comment': 'This is a fucking joke, right? This election wasn’t about platforms, it was about vibes. Just like every election.', 'created': '2024-11-06 22:44:42', 'submission_id': '1gl6kn6'}
{'comment': None, 'created': '2024-11-06 21:03:52', 'submission_id': '1gl6kn6'}
{'comment': 'As Picard said, you can commit no mistakes and still lose.', 'created': '2024-11-06 23:31:01', 'submission_id': '1gl6kn6'}
{'comment': "Platform had nothing to do with it.\n\nDemocrats were blamed for inflation and a rough short term economy.\n\nThe truth is that Harris was a wildly unpopular VP who was installed at the top of the ticket and that rubbed a lot of people the wrong way.\n\nMake no mistake here, Trump did not win because he magically found more votes. He's largely performing identically to how he did in 2020. Trump won because 10+ MILLION Democrats didn't turn up to vote who voted in 2020. \n\nWhere did they go? Why the hell did they not vote? I have no idea.", 'created': '2024-11-06 21:18:45', 'submission_id': '1gl6kn6'}
{'comment': "Im genuinely of the opinion that democracy is dead, Hitler was voted prime minister before establishing himself as a dictator and the now president elect has publicly stated both voting wont be a thing anymore after hes elected and also put a bunch of corrupt justices into supreme court giving him presidential immunity, I think we're done, its over. I would love to be proven wrong and I pray I am but I think we're done. Like it's one thing to make a bunch of facist-esque statements and another thing entirely to follow through on them, and well he followed through.", 'created': '2024-11-07 00:06:40', 'submission_id': '1gl6kn6'}
{'comment': 'Maybe actually campaigning on that stuff and not focusing things on how terrible Trump was/is and how Liz Cheney is really a great person.', 'created': '2024-11-06 20:50:16', 'submission_id': '1gl6kn6'}
{'comment': 'I honestly don’t know. I’ve been banned from here for criticizing democrats so if I could blame them here it’d be the first thing I do. I blamed them for 2016, and I blame them for not locking his ass up before the election (aka firing merrick garland) but I don’t blame Kamala for her campaign or her messaging. She ran a good campaign. She hit swing states, she went on Fox News and delivered her message, she was charismatic and likable and her opponent was a mess screaming about people eating dogs and praising Hitler. If people are ok with voting for that we have a much bigger problem than the democrats can fix', 'created': '2024-11-06 22:46:00', 'submission_id': '1gl6kn6'}
{'comment': "It doesn't matter. It is unlikely that there will ever be another fair election in our lifetime. It doesn't matter.", 'created': '2024-11-06 21:31:27', 'submission_id': '1gl6kn6'}
{'comment': 'Social justice issues need to go. I believe in equality among race, gender and sexuality but the blue collar, middle America voter doesn’t give a shit. And clearly Black and Latino males cared less than last election. It’s a losing issue to campaign on. I say promise to build a wall on the Southern border and deport illegals. Because honestly, that’s obviously what America wants. \nHere’s the thing that kills me: Trump vowed to strengthen qualified immunity for police. Who’s by and large the target of police abuse? Minorities. Who increased support for Trump this time? Minority men. Who helped give Trump more power. I just don’t care about it anymore. It’s not worth losing elections over.', 'created': '2024-11-06 22:43:30', 'submission_id': '1gl6kn6'}
{'comment': 'Democrats assumed minority compliance to levels that don’t make sense.\n\nDemocrats focused on the wrong demographics.\n\nDemocrats ignored the concerns of their constituency with the candidate, both Biden and then Harris.\n\nThe constituency is focused on being like MAGA but the opposite when Biden won by not being that.\n\nLeadership needs an overhaul and to change their messaging to the constituency to get them to stop eating themselves.', 'created': '2024-11-06 21:46:54', 'submission_id': '1gl6kn6'}
{'comment': 'They did everything right and ran a perfect campaign! The truth is majority of Americans are against women especially of color. America is extremely racist unfortunately..', 'created': '2024-11-07 00:17:43', 'submission_id': '1gl6kn6'}
{'comment': "Trump's people have been planning to steal this for four years. Are you surprised they could pull it off? Stop looking for democrat problems and start figuring how such an unpopular criminal was able to pull off the crime of the century", 'created': '2024-11-06 21:13:15', 'submission_id': '1gl6kn6'}
{'comment': 'Can we talk about the Fox media machine actually?\n\nWhenever a Democrat does anything that could remotely be useful to crafting a narrative, Fox is ON it. My parents buy into the narratives because they\'re so damn good at crafting a narrative and brain washing people every way they can to buy into it.\n\nWe look at their manipulation and we\'re disgusted by it. But it works. We need to do something like that, but I don\'t know how.\n\nStill, something that merges genuine entertainment, which is what Fox News often is - an hours long comedy show about the failures of the youth or whatever - with a message that sticks.\n\nThink of how Fox News approached the 2020 election. "Did he really win the election? Intriguing, right? Let\'s talk about all these veeeeery interesting coincidences, and then you look at Chuck Schumer\'s face and YOU decide if he\'s guilty or not. Or let\'s look at some videos of Democrats doing very dumb things like putting tampons in boys\' bathrooms, followed by clips of liberals being very upset at us trying to take them away! Funny, right?"\n\nCould we do something like that? Something that weaponized their manipulative tactics in the general favor of the truth? Or will we die on the hill of impartiality by using words like "unsubstantiated"? "Unsubstantiated" is a weak-ass word. And it\'s the right word to use. But it didn\'t win us the election.', 'created': '2024-11-07 02:19:12', 'submission_id': '1gl6kn6'}
{'comment': 'They needed to learn from the YouTube algorithms and use fear and hate to get views/votes.', 'created': '2024-11-06 23:14:59', 'submission_id': '1gl6kn6'}
{'comment': 'It’s not the platform, it’s vibes', 'created': '2024-11-06 20:55:26', 'submission_id': '1gl6kn6'}
{'comment': 'Go all-in on Josh Shapiro for 2028.', 'created': '2024-11-06 20:40:27', 'submission_id': '1gl6kn6'}
{'comment': 'Too much focus on the middle class and not enough on the working class adults especially the ones who don\'t have children. Not enough focus on offensive platforming. Harris\' campaign strategy wasn\'t good. She was operating defensively, focusing on Trump\'s character while relying on Biden\'s policies but she didn\'t know how to promote her own platform, she didn\'t even have policy on her campaign site for over a month in a tight race coming in near the end. Nobody doesn\'t already know his character and the ones who follow him have shown all along not to CARE. They don\'t care about the felonies because they think it was a "rigged court". They don\'t care about hush money or what he had in his bathroom or how weirdly sexual he talked about his daughter. They cared about what he would do for them and they cared to be entertained. He speaks to people where they are, at their level. Watching him talk with big money, he\'s not saying dumb things or stumbling on his words. Look at him talk to Christians. He\'s like a church elder. Look how he talks to tech bros. It\'s all different because he\'s like a chameleon. He\'s a performer and he is a master at selling himself. He\'s got these jokers spending hundreds of dollars on his Trump bibles! He\'s JUST like one of those megachurch preachers.\n\nIf we don\'t find someone who can talk to all the people in their own voices we won\'t ever win. Cult of personality here is way too strong.\n\nBiden wouldn\'t have won either. I know people are upset because of the "he\'s too old" thing, but he was showing some pretty obvious cognitive decline. So did Trump. We\'ll probably be stuck with Vance within a year. \n\nI like Harris. I genuinely like her and think she\'d have been fine as president. It wouldn\'t be a progressive utopia or anything which is ironic considering Trump\'s favorite lie is that she\'s an evil socialist.', 'created': '2024-11-07 01:33:18', 'submission_id': '1gl6kn6'}
{'comment': "Our Party needs a huge reality check. So many mistakes are made and we have learned nothing. \n\nThe DNC purposely blocked Bernie Sanders as the presidential nominee and instead choose Hillary Clinton in 2016, we got Trump as a result. My personal opinion is that Bernie most likely would have won that election but even if he didn't he was a much better choice than Clinton.\n\nWe got lucky in the 2020 election because as much as I like Biden, we barely won the election. With how bad Trump performed we should have won by a landslide.\n\n2024 we allowed Biden to be the nominee without any Primary. This is a huge mistake considering his approval ratings were as low as Trumps were at the end of his term. Not to mention his obvious mental decline that every person in his cabinet choose to ignore and defend.\n\nThis brings us to Kamala, our VP who was essentially in the shadows her entire VP term. We did not see her attempt yet alone achieve anything in her whole entire VP term. Why did they think she had the best chance at winning considering the low approval ratings?\n\nTrump is a danger to this country and we dropped the ball big time. How could our party be this stupid.", 'created': '2024-11-07 01:52:21', 'submission_id': '1gl6kn6'}
{'comment': 'There won’t be anymore elections & if so they will be shame elections ie russia', 'created': '2024-11-06 21:08:58', 'submission_id': '1gl6kn6'}
{'comment': '[removed]', 'created': '2024-11-06 20:36:52', 'submission_id': '1gl6kn6'}
{'comment': '[removed]', 'created': '2024-11-06 20:49:07', 'submission_id': '1gl6kn6'}
{'comment': "Price gouging didn't work: price cartels due to monopolies", 'created': '2024-11-06 21:34:47', 'submission_id': '1gl6kn6'}
{'comment': "platforms don't matter", 'created': '2024-11-06 22:34:55', 'submission_id': '1gl6kn6'}
{'comment': '[removed]', 'created': '2024-11-06 22:35:32', 'submission_id': '1gl6kn6'}
{'comment': "If it doesn't fit on a bumper sticker, it doesn't matter.", 'created': '2024-11-07 01:20:47', 'submission_id': '1gl6kn6'}
{'comment': "They got nothing wrong, the relayed it terribly.\n\nTrump said he will fix everything, he will reduce taxes, he will reduce the deficit. \n\nHe was effective telling people immigrants are their problem. Kamala didn't\n\nHe gave them someone to blame. Kamala didn't.\n\nHe didn't tell them how he will just that is will Kamala did, no one cared. \n\nLiberal media didn't talk about how bad things could get that would directly affect people\n\nAs an example. A teacher was saying a lot of high school guys were happy Trump won, as they were told they would be drafted into WW III if Kamala won.", 'created': '2024-11-07 01:25:19', 'submission_id': '1gl6kn6'}
{'comment': 'Needs more pageantry and panache. The people have short attention spans and we the people are dumb. The age of the intellectual is over. Platforms don’t matter.', 'created': '2024-11-07 02:17:30', 'submission_id': '1gl6kn6'}
{'comment': "Going forward we need to start targeting the working class more often IMHO and we need to start organizing locally too. Vote in local elections, call your reps as much as you can, etc. In addition, it's time to stop playing nice with the people who voted for Trump IMHO. It's time for us to get mean in a reasonable way to get angry and fight like hell no matter what happens. As for the best candidate, we need to find someone who can appeal to the working class and someone who is also very charismatic, we need a modern FDR. We need a counter to project 2025, we need to create a reverse project 2025 that will create a just world for us all.\n\nDoes anyone remember Obama in 2008? He gave us hope and he delivered. He was Charismatic enough to unite everyone and thanks to his brilliant leadership, we did so well for 8 years in this country. And what was he before he became president? A junior senator from Illinois. But his progressive values united us. We need progressive values moving forward.", 'created': '2024-11-07 02:48:32', 'submission_id': '1gl6kn6'}
{'comment': 'One may be optimistic in thinking platforms are read, considered and matter nowadays. So may be an irrelevant question. Sound bites and talking points though? For sure. What could Dems have done different there? Perhaps they could have started by separating the Harris campaign from an undeservedly but historically unpopular incumbent.', 'created': '2024-11-07 04:13:15', 'submission_id': '1gl6kn6'}
{'comment': 'I wrote numerous posts about how this platform completely and totally ignored men. Count it yourself: the word women appears 82 times, men only 4 times. And the democrats are surprised when men don’t vote blue.\xa0\n\nI attempted to provide input into this platform but failed. It’s a disgrace. And I’ve been a registered dem for 35 years.\xa0', 'created': '2024-11-06 22:05:39', 'submission_id': '1gl6kn6'}
{'comment': 'The DNC forgot the old adage."It\'s the economy, stupid:', 'created': '2024-11-07 00:17:47', 'submission_id': '1gl6kn6'}
{'comment': 'There will be no Democratic Party.', 'created': '2024-11-06 22:55:13', 'submission_id': '1gl6kn6'}
{'comment': 'Whose running in 2028? Mamala again after this debacle?', 'created': '2024-11-07 00:38:44', 'submission_id': '1gl6kn6'}
{'comment': 'I don’t blame Kamala Harris. I think she did a great job. I think that Joe Biden should not have run on a second term. I think there should’ve been a democratic primary and then I think a new candidate should’ve been chosen, preferably a white male but even with all of that, I still think Donald Trump might’ve won just because people are so frustrated with the prices of groceries and housing. \n\nI don’t think he’s gonna be able to do anything about that so I really think they’re gonna get disappointed.', 'created': '2024-11-07 14:22:06', 'submission_id': '1gl6kn6'}
{'comment': 'Yes, Trump won on the basis of false promises but that also means that he promised the right things. The issues that Dem party championed were concerns only for hardcore democratic voter base. Those were not the issues that helped undecided voters vote for Kamala. And this is never easy for ruling party’s candidate. But we definitely need to take a more moderate stand on social issues.', 'created': '2024-11-06 22:19:40', 'submission_id': '1gl6kn6'}
{'comment': 'Stop with the woke stuff and the racial shit. Stop being apologetic. Start being the liberal lion and attacking things that matter. Call on Bernie to energize, not for him to run, but mentor the next generation. Run toward liberal ideology not from it. Stop trying to reach out to republicans. Energize your base. You lost 15 millions because you were trying to pick at republicans that are already a lost cause. Dump this Cheney bullshit and all the other republicans. Let them be in the past. What a terrible ass strategy overall. This campaign sucked and the candidate was just fine, but you can’t be just fine anymore. This country is fucked.', 'created': '2024-11-07 01:26:25', 'submission_id': '1gl6kn6'}
{'comment': 'Yep. It was just too late. The fascist cancer of propaganda and lies, which uses fear, anger, and confusion to build power, had already spread too far.', 'created': '2024-11-06 22:06:02', 'submission_id': '1gl6kn6'}
{'comment': 'I believed this even back when the election was far away but Biden needed to get over the way he thought things were and deal with the reality of his they are. He needed to not be so humble and go out and gloat his accomplishments- celebrating every one. Do more Presidential Addresses that get widespread coverage. Do fireside chats. \n\nWe needed to show how much good we were doing. How America was doing compared to the global inflation crisis in other countries. \n\nWe needed to give more information. We needed the media to quit obsessing about Trump and show what the current administration was doing. \n\nTrump is good at branding. They all allowed him to put his brand on the country. No one stood up strongly enough for this. Weak choices were made in holding him accountable and for that, they failed the nation and the world.', 'created': '2024-11-07 00:49:03', 'submission_id': '1gl6kn6'}
{'comment': 'Don’t blame Biden for this. People screaming “he’s too old “ is the whole reason millions of us woke up this morning in dread and emotional pain. \n\nThanks', 'created': '2024-11-06 22:56:10', 'submission_id': '1gl6kn6'}
{'comment': "Harris was dealt a rough hand and did extremely well with the time (not money, had plenty of that). \n \nBut I gotta fault DEM leadership a bit for not working on a 1 Biden term and use the 4 years to boost up the profile of the next person. Kamala or someone else, there are easy ways to start making that person a household name. \n \nAdditionally, they campaigned on fighting fascism but didn't seem to do much to stomp it out with laws/legislature and just collected $$ to fight Trump. \n \nInflation was tough because it was everywhere. But re-positioning the high prices after it fell as corporate greed then taking steps to fight it with bills or investigations. Harris talked about this leading up to the election, but it seemed a bit too late.", 'created': '2024-11-07 02:54:08', 'submission_id': '1gl6kn6'}
{'comment': 'You can lead a horse to water but you can’t make it drink. \n\nConservatives do not want to have anything explained to them. They want an enemy to blame their problems on.', 'created': '2024-11-06 21:04:34', 'submission_id': '1gl6kn6'}
{'comment': 'People don’t want to hear a long drawn out explanation filled with big words. They want acknowledgment and resolution. The biden administration didnt acknowledge the problem with inflation until months later.', 'created': '2024-11-06 22:24:20', 'submission_id': '1gl6kn6'}
{'comment': 'Agree', 'created': '2024-11-07 14:50:31', 'submission_id': '1gl6kn6'}
{'comment': 'What did she say that appealed to the center?', 'created': '2024-11-07 01:49:30', 'submission_id': '1gl6kn6'}
{'comment': 'I agree that dems need a social media machine. They need to push out propaganda better than the right does and they are far behind on that', 'created': '2024-11-06 21:38:42', 'submission_id': '1gl6kn6'}
{'comment': 'Interesting point about the music industry, and at first glance I thought “yeah, where are the straight white dudes in pop music!” but with some searching there’s been quite a few: Ed Sheeran, Shawn Mendes, Justin Bieber, Charlie Puth, Lewis Capaldi, Harry Styles, Sam Fender.\xa0\n\nAnd of course in the Americana world there are guys like Jason Isbell and Stirgill Simpson who have offered support for liberal causes.\xa0', 'created': '2024-11-06 21:32:54', 'submission_id': '1gl6kn6'}
{'comment': "Democrats didn't lose white men. Trump won them by 1 more point than 4 years ago.\n\nDemocrats lost minority voters.", 'created': '2024-11-06 21:38:47', 'submission_id': '1gl6kn6'}
{'comment': 'I also want to add, a lot of times the platform and certain people can come across as patronizing. Pride is the fatal flaw of the platform.\xa0\n\n\nAlthough I\'ve voted Democrat since I became of age, I\'ll never call myself one because 1) there are too many voices telling me that I\'m the problem because I\'m a male and 2) so often rather than having an actual discussion we are shut out of issues. "Its a place for minorities to speak" is great until you shut out the majority you need to win an election. I\'m not saying this is everyone, but it is prevelent enough across the DNC and in aligned spaces that the intended inclusive effect is excluding certain populations. Not to mention, many times when we are included it\'s not a discussion, it\'s a sit down and listen while I explain how you\'re going to think. It can often come across as patronizing.\n\n\n\n\nI get that trump only gained 1 point in this population, but he gained 1 point without hardly trying. He focused on minority men. Imagine if we dedicated a tiny bit more to this population, how it could be tapped and swayed rather than just left for the GOP. My main issue is rather than even trying with this population, the DNC has always ignored it and felt it was a lost cause. That\'s only going to push people to the GOP, the population won\'t magically stay unaffiliated because they\'re ignored, they\'ll go to the only party that\'s even willing to look at them.', 'created': '2024-11-06 23:01:14', 'submission_id': '1gl6kn6'}
{'comment': 'People have been saying this shit for years and are called racist for considering the majority. The "great replacement" conspiracy theory was rooted in actual fears from actual culture. Yes the psychos took it to the extreme but they were acting emotionally', 'created': '2024-11-06 22:11:03', 'submission_id': '1gl6kn6'}
{'comment': 'As Pike said, “Sometime Mr Spock, things go so badly, one just has to laugh”. That’s basically how I feel yesterday went.', 'created': '2024-11-07 04:46:32', 'submission_id': '1gl6kn6'}
{'comment': 'Dude, she did, were you not paying attention oh right 24/7 mainstream media that you watch won’t speak about it!', 'created': '2024-11-07 00:26:12', 'submission_id': '1gl6kn6'}
{'comment': 'There will never be another election, Trump and his SA guards ran on that platform', 'created': '2024-11-06 22:57:01', 'submission_id': '1gl6kn6'}
{'comment': '1) not so fun fact but minority officers are often harder on minorities than white officers. Police and race don\'t make clear sense except through an incredibly sterile lens.\xa0\n\n\n2) i agree, the thing is minority rights should be a small and simple part of the platform. "We think these people should have rights but also, literally everyrhing else we stand for". By campaigning to a minority you will only ever be able to capture the minority. And by only campaigning to a minority you\'ll also push away others.\xa0\n\n\nWhat\'s funny is the party of inclusivity could benefit from being more inclusive of cis/white/majority voters. Really simple, even if trump only gained 1 point among young males for instance, we didn\'t fight him on that population at all.\xa0\n\n\nLatinos are another example, we fought for the minority the illegals. I can tell you, there is a difference in the mind of Latinos who came legally and illegally, many legal immigrants look down on illegal immigrants. And 1st and 2nd gen doubly so. We lost because we campaigned on providing these illegal immigrants basic humanitarian rights rather than throwing any bones for those who came over legally.\xa0', 'created': '2024-11-06 23:09:40', 'submission_id': '1gl6kn6'}
{'comment': "So basically go further to the right? The same strategy that didn't work for Hillary?", 'created': '2024-11-07 01:07:37', 'submission_id': '1gl6kn6'}
{'comment': "We know how he was able to do it. \n\nDecades of Republican leaders teaching voters to mistrust all media and experts. And to turn liberals into some kind of boogeyman. While promoting intolerance. \n\nIn comes Trump who takes advantage of that, pulls out the fascist propaganda and lies playbook, while sowing fear and anger. The tactics Trump used are the same that strongmen have used for over a hundred years.\n\nHarris ran a great campaign, but it was just too late. The cancer was just too widespread.\n\nWe can't get back to democracy until enough people wake up. Either wake up and understand they've been lied to. Or wake up and actually care about their government (talking about the ones who didn't vote).\n\nUnfortunately, I think that only happens if they learn the hard way.", 'created': '2024-11-06 22:04:57', 'submission_id': '1gl6kn6'}
{'comment': 'Aka "feels"', 'created': '2024-11-06 21:37:55', 'submission_id': '1gl6kn6'}
{'comment': "I'd prefer Beshear", 'created': '2024-11-06 21:09:40', 'submission_id': '1gl6kn6'}
{'comment': 'Hillary picked Tim Kaine (?).\n\nKamala picked - God, I forgot his name already. 🤐', 'created': '2024-11-06 21:06:21', 'submission_id': '1gl6kn6'}
{'comment': 'Maybe Men should stop acting like they deserve to run the world for simply having a penis', 'created': '2024-11-06 22:57:46', 'submission_id': '1gl6kn6'}
{'comment': "I'm young, and the dem platform has turned me away for both of my elections. I've still voted that way, but I'll always be unaffiliated and won't call myself a dem because at minimum we are ignored. Oftentimes we are treated like the issue no matter what we do.\xa0\n\n\nIrony huh? After decades of treating minorities that way it's turned around on us, I don't miss the irony but still my parents fuck ups shouldn't pass to me, I should be judged for my efforts as should everyone.", 'created': '2024-11-06 23:03:40', 'submission_id': '1gl6kn6'}
{'comment': 'Define woke stuff and racial shit?', 'created': '2024-11-07 02:06:34', 'submission_id': '1gl6kn6'}
{'comment': 'I can’t tell you how many Trump supporters have asked me, “name one good thing Biden / Harris have done” and then I mention several and provide links and it’s like they never happened.\n\nNot like they were changing their vote but they just believe Trump’s fake / overstated accomplishments because he says them all the time so they basically to them become fact. Like he’s better for the economy and tougher on crime and will close the border.\n\nHe was president before you know and these things didn’t happen, but he repeats the lies so often, they just be one facts to these people. Trump has said to others in confidence that he does this and tells them to do the same.', 'created': '2024-11-07 01:47:51', 'submission_id': '1gl6kn6'}
{'comment': 'The media wasn’t going to have it with Biden continuing on the ticket. They were just as much a part of the problem with “he’s too old”.', 'created': '2024-11-06 22:59:14', 'submission_id': '1gl6kn6'}
{'comment': 'Oh no mot blaming Joe at all. I think he did the noble thing by stepping down. However he did not look particularly well or sharp before the debate hence my thought pf him sitting out of this cycle would have lead to a very interesting primary.', 'created': '2024-11-06 22:59:22', 'submission_id': '1gl6kn6'}
{'comment': "The reason millions of us woke up this morning in dread and emotional pain was the thought of enduring a another 4 years of Trump, where he has the presidency, senate, house and the Supreme court. Oh and a new shiny super power called immunity. It's fair to be mad at Biden, especially when he said in 2020 he'd only serve a single term. We could have had a whole lineup of candidates, with one favorable campaign cherry picked by the voters.", 'created': '2024-11-07 01:59:40', 'submission_id': '1gl6kn6'}
{'comment': 'I mean, let\'s be real, the wheels fell off. As soon as the words "Defeat Medicare" left his mouth, it was over.', 'created': '2024-11-07 00:32:00', 'submission_id': '1gl6kn6'}
{'comment': "No, it's not only his age but his mental sharpness was definitely an issue. Ignoring that fact was a stupid move by our party and Biden should have respectfully stepped down due to his approval rating at the time. We handed the republicans this election.", 'created': '2024-11-07 01:48:20', 'submission_id': '1gl6kn6'}
{'comment': 'After having elected a fool who is too old and senile himself.', 'created': '2024-11-07 02:16:39', 'submission_id': '1gl6kn6'}
{'comment': 'Yep. There are two types. The willfully ignorant and the rich bastards that take advantage of them.', 'created': '2024-11-06 21:10:25', 'submission_id': '1gl6kn6'}
{'comment': 'Exactly this. The average person won\'t take their car to the shop and have the mechanic explain everything to them down to all the terminology. Just say "I\'ll fix it", and the transaction is done. \n\nYou can\'t tell Americans the economy(Bidenomics) is doing really well and inflation is down, while grocery and gas prices are still high and expect them to understand the nuances of supply chains and economic competition. You can\'t just tell people corporate price-gouging and explain how businesses cut costs to increase year-over-year profit records along with investor expectations. \n\nIt just didn\'t resonate, and most Americans don\'t have time to do their homework. Trump just said "I\'ll fix it". And so those voters felt heard.', 'created': '2024-11-06 21:30:19', 'submission_id': '1gl6kn6'}
{'comment': 'From what I saw here in Phoenix, all of the advertising in the closing weeks centered around one of two topics - reproductive rights (good, but I see that as bare-minimum and generally appealing to centrists as much as progressives), or showing endorsements from Republicans. Everything was talking about preventing a further slide to the right, not about taking real steps to the left.', 'created': '2024-11-07 02:29:40', 'submission_id': '1gl6kn6'}
{'comment': None, 'created': '2024-11-06 21:34:03', 'submission_id': '1gl6kn6'}
{'comment': 'Fewer ballots in 2024 than 2020. Turnout is where the Dems failed.', 'created': '2024-11-06 21:55:30', 'submission_id': '1gl6kn6'}
{'comment': "Even though votes weren't lower among that population doesn't mean they were adequately targeted. I'm not saying it's why she lost, but I am saying that if it was targeted at all, it would have benefitted her.\n\n\nAlso, as someone from a Latino family, many Latinos who've been here for at least a couple generations consider themselves white. Especially if they went to college. We can't just look at Latinos as one group because we aren't. But that's how we've been targeted.\xa0", 'created': '2024-11-06 23:12:00', 'submission_id': '1gl6kn6'}
{'comment': "Yeah, but Trump won uneducated voters by 34 percent and white males by 23. Democrats do not try to appeal to these voters at all, and it's costing them.", 'created': '2024-11-07 03:07:32', 'submission_id': '1gl6kn6'}
{'comment': 'These are solid points.', 'created': '2024-11-06 23:24:41', 'submission_id': '1gl6kn6'}
{'comment': 'What exactly is “Right”? Because Democrats just got their asses kicked by a mentally-addled senior citizen rapist fascist moron who 50+% of the American public felt more confidently reflected their concerns. Hey, I love Kamala. I think she was superior in every aspect. And I believe that if the platform she ran on adjusted to prioritize the immigration concerns and focused less on social justice concerns, it might have pulled some of those 15M missing voters off the sideline. \nEDIT: \nAnd the traditional mainstream media is no longer the best communication forum. Instead of a friendly SNL appearance, she should have been on Joe Rogan. I hate the guy but it’s where people are at.', 'created': '2024-11-07 01:18:38', 'submission_id': '1gl6kn6'}
{'comment': "Tim Walz was extremely likable, but not the right pick.\n\nBut honestly the fact that 15 million democrats didn't show up to vote proves that Kamala probably wasn't the right pick either. Even though I like her a lot too.\n\nI don't know if it would have been possible, but maybe holding an emergency primary election would have encouraged more voters.", 'created': '2024-11-06 21:25:45', 'submission_id': '1gl6kn6'}
{'comment': "The issue is, saying stuff like that just builds hostility among male voters. It's not about what's right or wrong it's about getting votes so you can lead that change.\xa0\n\n\nNobody is going to vote for you if you tell them they are the problem or issue. If you run your campaign being hostile against a population, why would they vote for you?\xa0", 'created': '2024-11-06 23:17:35', 'submission_id': '1gl6kn6'}
{'comment': "With all fairness, simply because you don't have a penis isn't a reason you deserve to run the world either.", 'created': '2024-11-07 01:58:28', 'submission_id': '1gl6kn6'}
{'comment': "Could I ask what about it turned you off? Maybe it's because I'm not white but I don't see what's so horrible about it. We could take the conversation to PM if you want", 'created': '2024-11-06 23:51:43', 'submission_id': '1gl6kn6'}
{'comment': 'In my opinion, we are stuck in this strict world that everything is tied to racism or anti-whatever. It’s a constant social justice warrior mentality that is associated with democrats. it’s important to be inclusive and diverse, but it shouldn’t be an automatic qualifier for choosing candidates. The right has created this idea of what a liberal looks like and it’s a social justice warrior. We need to change that mentality. To not compromise and be more unyielding. The dems have been the ones to be the adult in the room and it’s got us nothing.', 'created': '2024-11-07 02:47:06', 'submission_id': '1gl6kn6'}
{'comment': 'It wasn’t a matter of changing the cultists minds. It was about energizing our own party and having them know more about what good has been done and wanting to continue that. \n\nWe didn’t gloat enough. We always try to be above that childishness but that’s what political wins are made up with.', 'created': '2024-11-07 01:51:23', 'submission_id': '1gl6kn6'}
{'comment': 'He was the oldest person ever to run.', 'created': '2024-11-07 00:57:57', 'submission_id': '1gl6kn6'}
{'comment': 'Unlike the finely tuned wordsmith that is 78 y/o Donald Trump.\n\n/s', 'created': '2024-11-07 01:48:48', 'submission_id': '1gl6kn6'}
{'comment': 'Reproductive rights are definitely the left leaning topic. As far as the former Republicans speaking out, that was a stupid tactic,it has the same effect of a former Democrat turned Trump supporter. That tactic is more likely to insult a party than to have them switch.', 'created': '2024-11-07 04:13:11', 'submission_id': '1gl6kn6'}
{'comment': 'Yeah, since I pretty much listen to jazz or prog metal I’m not much of a student of modern pop. 😆\xa0\xa0 \xa0 \xa0\n\nBut your point stands that the first few pop stars that came to mind were Dua Lipa, Taylor Swift, Sam Smith, and Beyoncé. And yeah there haven’t been “cool” masculine pop rock guys like Springsteen or Mellencamp in decades.\xa0', 'created': '2024-11-06 21:36:09', 'submission_id': '1gl6kn6'}
{'comment': None, 'created': '2024-11-06 22:03:35', 'submission_id': '1gl6kn6'}
{'comment': 'Yeah, stupid people love Trump.', 'created': '2024-11-07 03:21:24', 'submission_id': '1gl6kn6'}
{'comment': "I know this is total copium, but I'm glad Harris picked Walz instead of a Shapiro, Warnock or Beshear. If they were the VP pick for this election, it would have killed them for a future presidential primary run.\n\nWalz by no means was a bad VP pick, I really liked the guy and I'm sure he'll still be a big figure in Minnesota. He ctually was a good pick considering the circumstances, he wasn't a detriment pick like a Joe Lieberman. Tim Walz was basically Ed Muskie for Hubert Humphrey in 1968, popular governor and or senator of his state cliche pick.\n\nIf Harris picked Shapiro for example this year, it would have been like Michael Dukkakis picking Bill Clinton in 88 or Kerry picking Obama in 04. Walz will still be fine politically, but a Shapiro would have been killed by that pick.", 'created': '2024-11-06 21:33:28', 'submission_id': '1gl6kn6'}
{'comment': "I think Walz is super likeable, but the VP pick doesn't make a huge difference, but I could see Walz being a strong Bernie type can't in 2028", 'created': '2024-11-06 21:47:50', 'submission_id': '1gl6kn6'}
{'comment': 'I\'m Latino, but I largely present as white. They doesn\'t change the fact that when I was younger in a more affluent white crowd I was constantly racialy discriminated against. Then, now that I\'m older, I\'m often dismissed for appearing white. Because I present that way, I\'m often regarded has having little bearing on conversations about race.\xa0\n\n\nThe truth is, it\'s about having any characteristics of a majority. If you\'re cis, white, or male often your opinion will he disregarded in many circles. There\'s a difference between giving minorities a voice and taking away the voice of others. Very frequently it feels as if our voice is being taken away rather than making room for and giving someone else space for their voice.\n\n\nSolid example, like I said I\'ve been discriminated in the past due to being Latino. In a case when I was getting my degree, in a class about race and policing I had brought up my personal experiences. Not as a "this is what I\'ve seen, you\'re wrong" but in a "even if it\'s not the same, I can relate." Sort of vibe. I was docked points and told the space wasn\'t for me. In a required class, where we were required to share our opinions for points.\xa0\n\n\nThen, as others in the comments have done they\'ve said things like "men need to realize they don\'t need to rule the world just because they have dicks" and it\'s not an uncommon sentiment. Voices that say things like that, or that white people have no say in certain matters, men\'s opinions don\'t matter on certain topics, etc. Are far to prevelant and really push people away.\n\n\nAnother example with an ex "is don\'t understand how men could see this book this way" :well, as a man I don\'t agree with them, but i think they\'re coming from this angle." "You\'re a man, you shouldn\'t be talking about feminism" (direct quote).\n\n\nThere are plenty of grievances i have, but the thing is in an effort to be inclusive we don\'t police anybody who says exclusive things so long as they\'re a minority. No matter how damaging it is. It\'s stuff like that, which no matter how much I agree with the scientific implications of the policies, I can\'t support.\xa0', 'created': '2024-11-07 00:01:56', 'submission_id': '1gl6kn6'}
{'comment': 'What is your age?', 'created': '2024-11-07 02:49:21', 'submission_id': '1gl6kn6'}
{'comment': 'Only for the second oldest person to ever run to win. Funny how age stopped being a factor when it’s a Republican running', 'created': '2024-11-07 04:43:31', 'submission_id': '1gl6kn6'}
{'comment': "Because there was no primary for people to elect and feel excitement for the initial buy-in of selecting a candidate. We only knew our candidate's policies for a few months. Most people are very slow to change. Kamala was a flash in the pan, people need slow burns.", 'created': '2024-11-06 22:07:49', 'submission_id': '1gl6kn6'}
{'comment': 'Probably because she’s a woman, but people will do yoga moves to avoid saying it', 'created': '2024-11-07 03:49:12', 'submission_id': '1gl6kn6'}
{'comment': "Everyone I know here believes that Shapiro would have been wasted as VP and he has bigger potential moving forward. There's also a lot of people who were afraid of losing him as Governor. So I do wonder if that would have cost her even more votes.", 'created': '2024-11-06 21:50:08', 'submission_id': '1gl6kn6'}
{'comment': "Idk that's just a few examples but it really just comes down to, the party has told me I'm the issue because of what I am and has excluded me from conversations for years.\xa0\xa0\n\n\n\xa0I agree with their policies hence why I vote that way, but many of the things leaders say is exclusionary. It truly does feel like there's no place for me because of what I am, and that's lead to a lot of men my age voting for trump regardless of our background. But that's just my experience and probably not even satisfactory to your question so idk, if you wanna know more just ask. Maybe I can figure out a better way to explain it.", 'created': '2024-11-07 00:11:02', 'submission_id': '1gl6kn6'}
{'comment': '36, why?', 'created': '2024-11-07 02:54:06', 'submission_id': '1gl6kn6'}
{'comment': 'Only one party really depends on the youth vote though.', 'created': '2024-11-07 04:47:30', 'submission_id': '1gl6kn6'}
{'comment': None, 'created': '2024-11-06 22:09:25', 'submission_id': '1gl6kn6'}
{'comment': "No you explained it well enough, though it seems like it's the people who are excluding you(which is unfortunate) and not the platform? I've seen this complaint pop up before so I'm just trying to learn more about it", 'created': '2024-11-07 03:38:00', 'submission_id': '1gl6kn6'}
{'comment': 'Was just wondering; wasn’t trying to pry or use it as an insult was just gaging age for your opinion and how other people in that age bracket may feel.', 'created': '2024-11-07 03:06:14', 'submission_id': '1gl6kn6'}
{'comment': "Sure, I agree, but thats the reason for low turnout. Next time maybe we won't wait for a bad debate before we do what we should have done in the first place.", 'created': '2024-11-06 23:29:38', 'submission_id': '1gl6kn6'}
{'comment': 'Yes that is partially true, but the issue is, to an extent they are inseparable. If your representatives act this way while representing your cause, it doesn\'t matter how much your cause denies it, to the people your representative acted that way to it will seem that is what your cause represents. The fact is, many spaces that represent these ideas are exclusionary spaces, often purposefully so.\xa0\n\n\nThe other aspect is very rarely are men\'s issues taken into account by the platform. IMO, there are fewer issues that we face but nevertheless the fact that none of the issues are really addressed also makes it difficult. Why support someone who doesn\'t represent you? I supported her because I believe in what she represents, but more than we like to admit everyone is selfish, there needs to be some kind of bone thrown.\n\n\nYoung dudes right now are getting called racists, incels, sexists at the slightest provocation. Simple act that would draw people, have leaders condemn being purposefully mean/retributive. Easy way to stop pushing people away. Then to draw them in, i think the house purchase tax break was a good idea, but it wasn\'t pushed hard enough. I also think addressing other issues like mental health which disproportionately affects dudes in a non-patronizing way could be a major benefit. Like "we all need help sometimes so we\'re adding/increasing the tax break for this service" would also be a great move. At least compared to "yall need to fix yourselves" as it\'s often posed.\xa0\n\n\nAnd then as others have pointed out, the campaign focuses primarily on women. Its like 47 mentions of women to 4 of men. Even just mentioning men more to try and say "we\'re not a threat just trying to better everyone here" would be a major step and would help to assuage the fears that Trump preyed so heavily on.\xa0\n\n\nJust generally the messaging needs to be more inclusive of everyone. Instead of gay marriage, why not "we support the right for any adult to get married to another adult" not just LGBT but also cis. Instead of blm "we believe that the police aren\'t being given the proper resources to deescalate and serve their communities. We want to increase funding for those who want to enroll in crisis training" and instead of defending the police "we believe that the people should have a say in their local police departments! We want to organize a council of citizens who will be responsible for ensuring police funds are used appropriately"\n\n\nJust simple branding changes that are more inclusive. Because the thing is, specifically mentioning a group means that you\'re excluding other groups, or at least that\'s how it can feel. So that would be a key area of growth. And then just sweeping certain topics under the rug. Obviously we will support trans rights, but if we\'re targeting less than 1% of the population here, you\'re only going to get 1% of the vote. Alter it, "we support life-saving medical services and giving people autonomy over their bodies" again, very obviously about abortion and trans rights to medical care but it doesn\'t exclude any group.\xa0', 'created': '2024-11-07 03:51:58', 'submission_id': '1gl6kn6'}
{'comment': "Why do you believe that's the reason?", 'created': '2024-11-07 00:10:58', 'submission_id': '1gl6kn6'}
{'comment': 'And i really want to hammer that home. Specifically including groups is the same as excluding others. This is why white lives matter, great replacement theory, and the CRT controversies were a thing. They were billed as supporting a singular group, which no matter is equalizing effect, will feel like that group is getting special treatment. That\'s why those theories spread so much.\n\n\nLike it or not, Trump preyed on the fear that these caused. Even if the net benefit is positive, changing the status quo is always scary. And when the community that\'s doing the changing is often excluding you, it\'s even more scary.\xa0\n\n\nLiterally all that needs to be done to capture even a portion of the male/white/cis population is just to mention them. "I see you, i stand with you let\'s make the world a better place" but the last three campaigns I\'ve been alive and able to actually understand and care about, that\'s never been in the messaging, at least not in any meaningful way.\n\n\nClinton was the worst of the three with her "deplorables" because it\'s extremely divisive language. It doesn\'t invite people to see their errors and change sides, it\'s telling people you don\'t care about them, you think they\'re trash. Kamala and Biden didn\'t make that mistake but neither of them really did anything to make use of that population either. Biden at least got thr guy vote because white dudes could relate to him. Throw in kamala without any inclusive messaging like that and you don\'t really have a candidate strong with that population.\xa0\n\n\nIt\'s really annoying, you can see it in this thread. So msny people are getting down voted for talking about their experience with the party, we\'re getting called sexist even in these comments for expressing our experiences! It\'s something I and many people have been saying for the better part of a decade, some even longer but it\'s ignored and oftentimes discounted.', 'created': '2024-11-07 04:01:15', 'submission_id': '1gl6kn6'}
{'comment': "Yea all that is fair. I think some of that is that party is diverse coalition so everyone kinda wants something for their faction you know? And I agree with the branding aspect, though I wonder if by taking the inclusive route it makes it harder for the group we're talking about to feel like we're trying to help them. To use the BLM thing, it's like when they started saying all lives matter it felt they undercutting the impact of the original saying despite being more inclusive. \n\nBut question about something you mentioned. Is the prospect of women doing better that much threat? Not so much the loss of decent paying jobs but that woman are working?", 'created': '2024-11-07 04:19:41', 'submission_id': '1gl6kn6'}
{'comment': "I've been a part of product launches before, and on product launches where we have less lead-in time I see less enthusiasm/follow through on launch date. For products with a solid year or more of build-up you get people setting up tents outside stores because they've had more time to envision the product as a core part of their lives.\n\n\nSo I'm extrapolating this experience to presidential elections. The trump people have been dreaming about what another Trump presidency looks like for 8 years now. The Dems have only been dreaming of a Kamala presidency for 3 months... that's such a small amount of time that if you missed the (single) debate, you really don't know much about her. you're not excited about her.", 'created': '2024-11-07 01:39:40', 'submission_id': '1gl6kn6'}
{'comment': 'The issue and fear doesn\'t come from women doing better. At least not for any decent dude and im sorry if i came across that way. The issue is just that when you\'re excluded from the discussion certain entities are able to prey on that fear or uncertainty. I don\'t want to make it sound like men are afraid of that. I don\'t know any men who are afraid of that in any capacity, it\'s just an example of how fear/uncertainty and incomplete messages can be twisted and preyed on.\n\n\nBut, if you stand at the front and say "women need to be paid more" then it\'s going to make men wonder why they deserve more than men. If you say "women need to be paid more at x and y time in their career to match men" that\'s a bit different. One is a lot catcher and easier of a message, but because of that it leaves room for uncertainty where people can be preyed on. It\'s in those simple messages we need inclusivity. Going to the BLM example, when talking about the platform in a few sentences you\'re going to want to say, invest more in the police for better conflict outcomes" and then during rallies, debates, discussing the details you say "x group is unfairly affected by this. Y solutjon is beneficial for everyone *and* that group"\n\n\nThe majority of voters don\'t spend hours researching their candidates. They make decisions based on highlight reels and ther experiences. Our highlight reels didn\'t have anything majority groups\xa0for the past decade or so and that does have an effect.\xa0\n\n\nAnd then, like I said somewhere else it\'s not like that alone lost the election. But, by not tapping this group whatsoever, we gave the GOP easy ground because all they had to do was look in their direction.', 'created': '2024-11-07 04:32:02', 'submission_id': '1gl6kn6'}
{'comment': "Gotcha, yea that cleared it up. I was thinking is my friend group just off or something. \n\nBut onto to what you said, I do think the slogans are catchier and spread further than the actual message. Like you said most people make decisions on the highlights that they see and don't really research further. So they'll will hear the slogan and have a knee jerk reaction to it and that'll be it they're minds are made up. Which leaves them ripe to be preyed on. \n\nAll that to say I feel like frustration with inflation and shitty messaging on the economy hurt us more. Though who knows maybe we could have blunted this some one and squeaked out a win by reaching out to them", 'created': '2024-11-07 04:55:43', 'submission_id': '1gl6kn6'}
{'comment': 'The 3 millions MAGA probably died', 'created': '2024-11-06 20:04:31', 'submission_id': '1gl5oqg'}
{'comment': "In hindsight, Trump winning in 2020 almost seems like the ideal outcome. Because yesterday could've marked the beginning of the end of him in politics. Instead he had had the luxury of taking 4 years off to rile up MAGA and conspire with congressional Republicans to set him up for a 2nd term - meanwhile Biden had to contend with the fallout of Trump's economical fallout. And now here we are for another four years (or more) of a now more vengeful Trump.", 'created': '2024-11-06 20:16:42', 'submission_id': '1gl5oqg'}
{'comment': 'Democratic enthusiasm pre-election was at 77%, the highest since Obama ‘08. I can’t wrap my head around the turnout either.', 'created': '2024-11-06 20:35:11', 'submission_id': '1gl5oqg'}
{'comment': 'Remember, the world’s richest man (musky) has recently been secretly talking with the world’s largest criminal (~~puto~~ putin) to get that demented fuck elected. If you will it, it is no dream.', 'created': '2024-11-06 20:41:34', 'submission_id': '1gl5oqg'}
{'comment': 'The turnout at my polling place was 8x anything I’d ever seen in my town. The idea that 18 million fewer people voted just doesn’t add up to me. wtf is going on', 'created': '2024-11-06 22:35:51', 'submission_id': '1gl5oqg'}
{'comment': "Can you imagine if these numbers were reversed? If Trump had 15 million votes fewer than he did in 2020 he'd be screaming fraud, demanding recounts, suing localities, etc. Democrats are just happy to be included in the process? 20% of Democrats who voted in 2020 stayed home? It's just hard to believe. I need new news sources.", 'created': '2024-11-06 21:53:50', 'submission_id': '1gl5oqg'}
{'comment': "I'd like to see a serious investigation (a journalistic one, not a political one) that helps explain why 15 million Democrats sat out. That is too many people that made the same decision for it to be happenstance.\n\nI accept the outcome. I just want to have some understanding of why. And please, no BS guesses and Monday morning quarterbacking. I want a professional to take this on.", 'created': '2024-11-06 20:23:42', 'submission_id': '1gl5oqg'}
{'comment': 'California still has seven million uncounted mail ballots. \n\nOregon and Washington also do mail ballots. \n\nA state being called for the electoral college doesn’t mean its votes are tallied. \n\nYou’re comparing in-process numbers to a final tally from weeks after the 2020 election.', 'created': '2024-11-06 20:29:55', 'submission_id': '1gl5oqg'}
{'comment': 'I am as stunned as anyone that this election broke so hard in his favor.\n\nI have to play connect the dots though and it is scary if they were able to do it.\n\n* Trump tells a huge group "don\'t worry, you\'ll never have to vote again we are going to fix it so good."\n* Then he tells a group "I don\'t need your vote, I don\'t want it. We have so many votes already, we don\'t need your vote."\n* Then he says "Me and the \\[SOTH\\] have a plan, don\'t we? We have plan for all this. We are going to win, there is no way we can lose."\n* "If we lose it will be because they cheated."\n\nWhen you look at crowd size, money intake, and the enormous amount of support she had going into the last week of the election, a landslide victory by Trump was not on the radar. Nor was it in 2016. He sure didn\'t think it would have been in 2020.\n\nSo it got me to thinking, why was he so adamant that someone cheated in 2020? Why all the lawsuits with no proof?\n\nThey have had 4 years to plan it all out and it was obvious yesterday that Russia was running interference in highly Democratic areas. Multiple bomb threats, late polls opening, machines left unattended.\n\nI do not want to come off like a MAGA person here, but...\n\nIf you were going to do what you accused everyone else of doing 4 years ago, you would want to know the processes in the states you lost. How do they count their votes, what is the timeline, where are the votes kept, who has access and when?\n\nWhat better way to do that than sue them and make them tell you how they do it? Then, put your people in place and give them the step by step on how to cheat the system.\n\nYou don\'t need thousands of people for that, you just need a handful in certain areas and you can turn an entire state.\n\nEdit: It also make sense why certain people, looking at you Tulsi Gabbard, all of a sudden decided they wanted to be Trump supporters. Elon Musk and Jeff Bezos also throwing in with Trump, and Bezos pulling any endorsement for Harris.\n\nSo the question remains, why do that? Why would someone who is leading in every poll and forecasted to win the election not be endorsed by a major newspaper? Why would Bezos make a deal with Trump behind closed doors? Why would Netanyahu make a deal with Trump about not sticking to a cease fire until after the election? Why would Elon Musk bet on someone who was going to lose...unless he knew that Trump could not lose?\n\nPeople do not change their direction on a whim, they want a sure thing. Trump was not sure thing on his own.\n\nJust makes you wonder what that deal was with the Speaker of the House and how they pulled it off.\n\n\\-allegedly', 'created': '2024-11-06 20:48:14', 'submission_id': '1gl5oqg'}
{'comment': 'Bomb threats from Russia in the blue wall, GA and AZ are part of that lower turnout.\n\nhttps://www.reuters.com/world/us/fake-bomb-threats-linked-russia-briefly-close-georgia-polling-locations-2024-11-05/', 'created': '2024-11-06 21:10:31', 'submission_id': '1gl5oqg'}
{'comment': 'Not only that, he won the popular vote…the first Republican to do so since George W Bush. Including his own runs in 2016 and 2020. You’re telling me THIS is the election where he was THE MOST popular he’s EVER been?\xa0', 'created': '2024-11-07 01:55:54', 'submission_id': '1gl5oqg'}
{'comment': 'I think there’s something fishy about this too and I’m not one for conspiracy theories. I have never seen rallies like this for Democrats and I was a grown ass adult when Obama ran for president.', 'created': '2024-11-06 21:37:24', 'submission_id': '1gl5oqg'}
{'comment': "Voter suppression works across party lines. Just which tactics impact which side more and in which states - that is the key. \n\nRed team was willing to lose 8% of thier voters if it means blue team loses 18%. \n\n\nThe math works out fine, people just didn't understand how important it was. Next decade.... They might. (Unless the department of education is abolished).", 'created': '2024-11-06 21:39:28', 'submission_id': '1gl5oqg'}
{'comment': 'Putin and Elon juiced the numbers. Just saying….', 'created': '2024-11-06 20:47:09', 'submission_id': '1gl5oqg'}
{'comment': 'They’ve talked on Poltiicology how in a lot of places they literally just load up the ballots into someone’s car and drive them somewhere else to be processed. I wonder how much fuckery happened', 'created': '2024-11-06 21:16:19', 'submission_id': '1gl5oqg'}
{'comment': 'I would like nothing more than for some miraculous conspiracy to surface that proves the other side colluded and tampered with our election and we suddenly get the win back… but be careful everyone. Hope like that is dangerous. And after listening to the Magas do the same thing for 4 years… I’m kinda over it… personally, at least', 'created': '2024-11-06 20:32:00', 'submission_id': '1gl5oqg'}
{'comment': 'Biden has immunity but he won’t use it.', 'created': '2024-11-06 21:07:03', 'submission_id': '1gl5oqg'}
{'comment': 'Yep I agree something absolutely stinks', 'created': '2024-11-06 20:50:22', 'submission_id': '1gl5oqg'}
{'comment': 'Voter roll purges and ballot challenges did significant damage', 'created': '2024-11-06 21:40:40', 'submission_id': '1gl5oqg'}
{'comment': 'I will tell you from my personal experience. I live in a blue state but a red District. Usually I get a message that tells me that my ballot had been processed and counted. This year I did not get that message so I called the elections office. They told me that the day after they sent out the mail in ballotthey sent out a postcard to remind people to vote. My postcard miraculously got marked as returned to sender, so they voided my ballot. I wonder how many other people in my district can say a similar thing. I wonder how many people nationwide have a story very close to mine.', 'created': '2024-11-07 03:56:48', 'submission_id': '1gl5oqg'}
{'comment': 'Stolen election. Bomb threats in blue counties in swing states are how they did it.', 'created': '2024-11-06 21:40:07', 'submission_id': '1gl5oqg'}
{'comment': 'Numerous voter rolls were purged too in various states', 'created': '2024-11-06 22:09:21', 'submission_id': '1gl5oqg'}
{'comment': "I'm telling you something is wrong. All those first time voters were not going in for him. Plus all the Republicans who switched.", 'created': '2024-11-06 21:44:50', 'submission_id': '1gl5oqg'}
{'comment': 'There are ton of mail in ballots being questioned, polls not being extended, states being called super early and before recounts, etc. This is blatant fraud.\n\nEDIT: Oh yeah, not to mention the bomb threats. WTF.', 'created': '2024-11-06 21:41:12', 'submission_id': '1gl5oqg'}
{'comment': 'Were the machines hacked?', 'created': '2024-11-06 21:38:27', 'submission_id': '1gl5oqg'}
{'comment': "Election lines were longer than ever, everywhere that I've seen. My polling place had to change the way people lined up because of it. This is really strange.", 'created': '2024-11-06 22:40:32', 'submission_id': '1gl5oqg'}
{'comment': "You know what? You guys want to float this idea? Let's just do it. I'm tired, I hate this, my faith in everything has melted away.\n\nMAGA, you like conspiracies? We will give you conspiracies", 'created': '2024-11-06 21:47:02', 'submission_id': '1gl5oqg'}
{'comment': 'I do know that Dems had a 425000 lead with just mail in ballots. Kinda strange trump overcame that deficit and won Pa', 'created': '2024-11-07 02:20:29', 'submission_id': '1gl5oqg'}
{'comment': 'I haven’t even looked at pro-republican subs or anything of the like, but I can all but guarantee their response to this is that the missing 15 million was “the rig” in 2020. I’d bet this will be a tdump talking point in the near future, I can hear it now.', 'created': '2024-11-06 21:22:18', 'submission_id': '1gl5oqg'}
{'comment': 'There was a million cheating plots leading up to the election. From republican states removing hundreds of thousands of people from voting registration, to "losing" and "failing" to find a voters address for mail in ballots, disallowing overseas ballots. Rodger Stone was recorded saying that "things are under works to secure the election".', 'created': '2024-11-07 05:11:44', 'submission_id': '1gl5oqg'}
{'comment': 'It is crazy. Even in Illinois we had record lines of people voting', 'created': '2024-11-07 01:34:14', 'submission_id': '1gl5oqg'}
{'comment': 'They clearly had many known voter suppression techniques at play, including\n\n\n- Purging voter roles\n- Fake bomb threats at polling sites\n\n\nThere were likely other such measures, which we shall find out with time.', 'created': '2024-11-07 02:05:19', 'submission_id': '1gl5oqg'}
{'comment': 'I did find a [reasonable explanation](https://www.9news.com/article/news/verify/elections-verify/unaccounted-2024-votes-20-million-18-million-fact-check/536-4a6cb71e-fb8d-4616-a848-f22c53ccf3b2) ( that I hate, but it\'s probably true... ), here\'s an excerpt:\n\n\nWhile it’s true that the vote count of the 2024 presidential election as of Wednesday afternoon is nearly 20 million votes shy of the total vote for the 2020 presidential election, that’s because many states, most of which aren’t swing states, are still counting millions of ballots. \n\n\nUsing the current AP estimate of the percent of votes counted, VERIFY found that 20 of the 50 states, plus Washington, D.C., still have more than 16.2 million ballots left to be counted as of Wednesday afternoon.\n\n\nAt the time of VERIFY’s count, there were 16.7 million fewer votes than the final total cast for Biden and Trump in the 2020 presidential election.\n\n--------------------\n\n\nAlso, here in texas, the republicans have been working overtime to [orchestrate voter suppression](https://www.texastribune.org/2024/11/06/texas-voter-turnout-election-2024-registration/) in "blue" voting areas like cities...', 'created': '2024-11-07 04:46:26', 'submission_id': '1gl5oqg'}
{'comment': "The only thing rotten is that a lot of Democrats didn't vote because they're idiots.", 'created': '2024-11-06 20:56:33', 'submission_id': '1gl5oqg'}
{'comment': 'The right literally thinks that this proves the Democrats cheated in 2020. We live in different realities folks.', 'created': '2024-11-06 21:19:49', 'submission_id': '1gl5oqg'}
{'comment': 'Just a theory, the GOP had musk, n. Korea, and Russia hacking systems. With the intention of just winning by a few million, they over compensated and won by 15 million.', 'created': '2024-11-06 22:02:22', 'submission_id': '1gl5oqg'}
{'comment': 'I hope the Democrats have the guts to investigate.', 'created': '2024-11-06 23:31:03', 'submission_id': '1gl5oqg'}
{'comment': 'If 15 million Democrats really sat this one out, I need to ask them, (LOUDLY), “WHAT ON EARTH WERE YOU THINKING?”', 'created': '2024-11-07 04:42:51', 'submission_id': '1gl5oqg'}
{'comment': 'Trump did slip and say they “had a little secret”…', 'created': '2024-11-07 06:37:28', 'submission_id': '1gl5oqg'}
{'comment': 'Only 81% of the popular vote has been counted but people act like voter turnout has completely plummeted, what up with that collective freakout?', 'created': '2024-11-06 20:30:09', 'submission_id': '1gl5oqg'}
{'comment': 'I’ve been thinking about this on and off all day. Keep in mind that Maga has been packing the districts with election officials for years in the lead up to this. If you get enough of the like-minded people in a room, they could probably make a lot of ballots disappear.', 'created': '2024-11-07 03:55:05', 'submission_id': '1gl5oqg'}
{'comment': '15 million people who deserve whatever they get. And have no right to complain if it’s bad. Cowards .', 'created': '2024-11-07 01:46:20', 'submission_id': '1gl5oqg'}
{'comment': "Honestly, chances are it's even worse. \n\nConsidering how many stories I heard of republicans voting Harris, this means that it was probably order to 20 million Democrats decided not to show up.", 'created': '2024-11-07 03:05:50', 'submission_id': '1gl5oqg'}
{'comment': 'Biden needs to use his immunity and save this country. Now.', 'created': '2024-11-06 23:18:06', 'submission_id': '1gl5oqg'}
{'comment': 'It’s kind of difficult to miss that 15 MILLION fewer votes were cast this year. Granted I avoid FPN, OAN and other right wing sites, but it seems unlikely that that many would sit out.', 'created': '2024-11-06 22:22:07', 'submission_id': '1gl5oqg'}
{'comment': "In 2016, trump lost Starr County in South Texas (a 96% Latino county) by 60 points In 2024 he won it by 16 points That's a 38-point swing in Trump's support.", 'created': '2024-11-06 22:41:52', 'submission_id': '1gl5oqg'}
{'comment': 'Yes way. People stayed home. You can’t rig turnout like that nationwide. Our election system is so patchwork nobody can erase 20 million votes. People stayed home, that is one of the simple, brutal, truths of Nov. 5th.', 'created': '2024-11-06 23:46:24', 'submission_id': '1gl5oqg'}
{'comment': 'Universal absentee voting during the pandemic made it very easy to vote. Everyone got their ballots in the mail a month before Election Day. All you had to do was mail it back or drop it off. Now that many states have switched back to in-person voting, naturally, a lot of people didn’t end up voting. \n\nThis means two things:\n\n1: Politicians forget how hard in-person voting can be. If you are taking care of small kids or an elderly family member, working double shifts, or frequently traveling for work, it can be downright impossible to get to the polls sometimes. \n\n2: Plenty of people are lazy as shit and can’t be bothered to vote unless they’re bored at home during a pandemic. A sad fact is that a large percentage of human being are sad stupid fuckups who are literally too dumb to comprehend things like voter registration or how to fill in a bubble on a ballot.', 'created': '2024-11-07 05:38:13', 'submission_id': '1gl5oqg'}
{'comment': "Hillary got the same amount Harris did, if for no other reason, this is how you know it's because she's a woman, they didn't even have a demonizing, massive, trumped up disinformation campaign with conspiracy theories against Kamala unlike Hillary. It's literally just because they're women. It's hard for that specific a range of people who just didn't give a shit about this election to be a coincidence. Pennsylvania isn't even a real swing state, it's consistently democrat until you run a woman (or a decrepit man et cetera, you know what I mean). This is how I predicted the election.", 'created': '2024-11-07 08:31:36', 'submission_id': '1gl5oqg'}
{'comment': "Biden should have abdicated and made Harris President. Then we could have seen her in power for a short time and those 15 mil wouldn't have sat out.", 'created': '2024-11-07 00:57:04', 'submission_id': '1gl5oqg'}
{'comment': 'Y’all notice you only hear people talking about withholding their vote when a woman is running?', 'created': '2024-11-07 02:07:22', 'submission_id': '1gl5oqg'}
{'comment': 'I’ve seen people discuss 20 million votes not being counted due to Russian bomb threats called in to several different polling places but I genuinely do not know the veracity of this.', 'created': '2024-11-06 21:53:37', 'submission_id': '1gl5oqg'}
{'comment': 'Definitely feel like this is a conspiracy. How tf does 15 million democrats sit out? Matter fact, how many votes were “bought.” \n\nAlso, felt like there’s been a huge disregard for campaign finance laws the past eight years.', 'created': '2024-11-06 22:22:38', 'submission_id': '1gl5oqg'}
{'comment': 'It doesn’t take a genius. Lots of sexist and racist DINOs either voted for Trump or third party.', 'created': '2024-11-06 21:25:25', 'submission_id': '1gl5oqg'}
{'comment': ' I’m going to sleep', 'created': '2024-11-06 22:44:00', 'submission_id': '1gl5oqg'}
{'comment': 'Democrats don’t step up to challenges. Period. They want a perfect candidate that check all their individual boxes. Trumpers can get their hate impulse stroked and they’re on board. It’s really that simple. The Democratic Party and America as we know it is dead and gone.', 'created': '2024-11-06 23:32:23', 'submission_id': '1gl5oqg'}
{'comment': 'As I was watching the returns I noticed KH was underperforming compared to Biden in almost every race. Maybe it was the gender issue, men weren’t eager to vote for her.', 'created': '2024-11-07 01:38:44', 'submission_id': '1gl5oqg'}
{'comment': 'Longer lines ..l more mail in voting … fewer votes?', 'created': '2024-11-07 02:40:53', 'submission_id': '1gl5oqg'}
{'comment': "As sad as it is, the Dems lost, and that's all there is to it\n\n\nWhen considering a conspiracy theory, consider how many people would need to keep it silent\xa0\n\n\nThink about how many people you would need to keep 15 million votes hidden\n\n\nYou think every single one of those people is going to keep that a total and complete secret?\xa0\n\n\n\n\nThe answer is, in 2020 we were on lockdown and people were bored and voting was a productive and good thing to do and in their minds they were helping to save the country.\xa0\n\n\nIn 2024 a lot of people are back to their normal lives and don't really care that much, or they do care but it's not high enough on their priority list for them to spend hours waiting in line to vote", 'created': '2024-11-07 00:12:18', 'submission_id': '1gl5oqg'}
{'comment': 'It. Was. Rigged. Point blank period.', 'created': '2024-11-07 02:11:41', 'submission_id': '1gl5oqg'}
{'comment': 'I just feel so uncomfortable with the fact that Trump, Musk, Netanyahu, and Putin are so closely connected. I mean, I would not be surprised in the slightest that there was some serious rigging going on. Ok, don’t come at me. I’m not a conspiracy theorist, but they all knew how this was going to play out. The billionaires knew before Election Day how this was going to play out. Look at Bezos, withholding an endorsement at WaPo. It’s because he knew the fix was in. I’m just looking at different scenarios that COULD have been implemented. Musk controls the satellites, so I wouldn’t be shocked that he was allowed to control other things. \n\nI’m just sayin’ it’s all quite strange because we ALL saw the turnout everywhere, and the absolute excitement everywhere! And, all of a sudden 15 million democrats decide to stay home? Yeah, I just don’t buy the story so far.', 'created': '2024-11-07 03:19:54', 'submission_id': '1gl5oqg'}
{'comment': 'Those 3 million MAGA most likely died of Covid in 2021 when they avoided the vaccine.', 'created': '2024-11-06 23:46:39', 'submission_id': '1gl5oqg'}
{'comment': 'They’re not even close to counting all the votes yet. CALM DOWN people. I hate half-baked conspiracy theories more than anything. We lost but it’s not the time to take the MAGA approach of “rigged election”', 'created': '2024-11-07 01:17:08', 'submission_id': '1gl5oqg'}
{'comment': 'COVID motivated a lot of people to vote', 'created': '2024-11-07 03:33:58', 'submission_id': '1gl5oqg'}
{'comment': 'Anyone know if the burning of the ballot boxes could have affected anything?', 'created': '2024-11-07 09:24:45', 'submission_id': '1gl5oqg'}
{'comment': "2020 numbers are skewed because of the rather ubiquitous access given to voters due to Covid. Voting was probably the easiest it's been in the US at any point in history. People were also living through Covid, which was a huge motivator, because Trump was heavily blamed for how it was handled.\n\nMost of that access had been rolled back, and extra suppression methods were kicked up. Suppression probably wasn't the biggest factor though, but rather, it wasn't just easy to vote anymore, and some people just won't go through the extra effort.\n\nOn Trump's side, his voters were motivated by whatever reason. Trump probably lost a lot of voters, but he picked up a lot too. Harris didn't pick up as many who were not on board with Trump, while Trump appealed to grievances to a wide swath of voters.", 'created': '2024-11-06 21:26:00', 'submission_id': '1gl5oqg'}
{'comment': 'It doesn’t make any sense. We need to look into it', 'created': '2024-11-06 23:22:41', 'submission_id': '1gl5oqg'}
{'comment': 'Oh stop. Total vote is still coming in and unengaged voters felt disenfranchised and didn’t come out. We can’t say the conspiracies are ridiculous when the other team does it and then turn around to do it ourselves. Like it or not, America voted for this douche.', 'created': '2024-11-06 20:35:48', 'submission_id': '1gl5oqg'}
{'comment': "Let's not stoop to conspiracies. We know where the democrat votes went. They went to the same place they did in 2016. They stayed home because their media sources pushed a narrative of a blue wave sweeping the nation. I hope this election can serve as a lesson to all who didn't vote. In many battleground states, the difference was near or less than 100,000 votes. If we had the same turnout we had in 2020, this wouldn't have happened. All we can do now is fight to preserve any rights or liberties Trump and his administration try to take away. We still have our voices, and we must use them in the correct way. Letters and phone calls to elected officials, petitions, and peaceful protests. America was built by the people for the people. Now, it's time for the people to save what we can and survive the next 4 years.\n\nI have faith that we can do it, but we can only do it by being proactive.", 'created': '2024-11-06 23:02:42', 'submission_id': '1gl5oqg'}
{'comment': 'Democrats already forgot how it turned out when they thought Hillary Clinton was sure to win. I genuinely don’t understand how there was so much complacency.', 'created': '2024-11-07 04:17:01', 'submission_id': '1gl5oqg'}
{'comment': 'I know several democrats who did not vote because they didn’t like any of the candidates. I tried to get them to vote anyway, but they refused.', 'created': '2024-11-07 15:43:34', 'submission_id': '1gl5oqg'}
{'comment': 'This country deserves everything it’s about to get.', 'created': '2024-11-06 21:01:51', 'submission_id': '1gl5oqg'}
{'comment': 'I really don’t think it’s anything secret or a conspiracy… 15 million of our so-called democrat friends decided to not come out and vote, and that’s for two, maybe three reasons. \n\n1. She’s African American \n2. She’s an African American female. \n3. Those 15 million Voters felt that they didn’t know her enough, and that we actually didn’t get the process to choose our nominee. She’s was basically put in the drivers seat for us.', 'created': '2024-11-06 21:45:47', 'submission_id': '1gl5oqg'}
{'comment': 'We lost because we focused on the “undecided” voters instead of on maximizing turnout among our own. He spent his entire campaign telling the “undecided” voters he didn’t want them anyway and maximizing turnout among the MAGA crowd', 'created': '2024-11-07 05:18:58', 'submission_id': '1gl5oqg'}
{'comment': "It's unusual, but not inexplicable. I don't know how any Democrat could sit this one out, but people are swayed by different levers. Early on, I didn't think Harris, as a black woman, had any chance. I thought the skillful campaign had turned that around and I was more than happy to be wrong. Turns out I wasn't. I'm very sorry about that.", 'created': '2024-11-06 23:01:32', 'submission_id': '1gl5oqg'}
{'comment': 'A big factor that isn’t being discussed enough is that in 2020 early voting, mail-in voting, and drop off ballot policies that removed barriers from voting were relaxed greatly due to the pandemic. Turns out that removing barriers to voting increases turnout, who would have thought.', 'created': '2024-11-07 01:12:34', 'submission_id': '1gl5oqg'}
{'comment': 'This isn’t helpful, and is probably propaganda by a bad actor who might be trying to sow more civil unrest by sharing false information like that the MAGA crowd fell for before January 6.', 'created': '2024-11-07 01:27:08', 'submission_id': '1gl5oqg'}
{'comment': "There is no conspiracy, people didn't show up, you can picture any reason you want. My polling location normally gets 3k we had just over 2k this time. I'm in a city, and people didn't show up", 'created': '2024-11-07 01:30:29', 'submission_id': '1gl5oqg'}
{'comment': 'California is still counting votes. At the time of that tweet only 55% was reported that leaves about 4-5million additional votes for Harris just from California. There are about 2million votes from other states that have not finished counting . She fell short obviously but it’s going to end up around 6-7m less than Biden, not 15.', 'created': '2024-11-07 02:21:57', 'submission_id': '1gl5oqg'}
{'comment': '15 million independents sat out.', 'created': '2024-11-07 03:23:04', 'submission_id': '1gl5oqg'}
{'comment': 'People did not vote.. sad', 'created': '2024-11-07 04:46:17', 'submission_id': '1gl5oqg'}
{'comment': 'Is there actually any real evidence or are people just coping?', 'created': '2024-11-07 08:08:09', 'submission_id': '1gl5oqg'}
{'comment': 'This is the real America peeps! We are officiallt racist, openly faacist & anti-democracy. When so many millions of Dems sits this one out then we can only blame ourselves. It is a tragedy and the American electorate does not know yet what it has done. Especially the hoards of lationos that votet for Trump that will now get deported. Figure the logic in that one out. Trump ran a horrible but effective campaign. Biden dropped out way too late for Harris to build enough momentum. But America is racist as hell. The whole word is trembling is fear for what we just did. I am ashamed of America today. Ashamed and absolutely gutted!', 'created': '2024-11-07 15:54:00', 'submission_id': '1gl5oqg'}
{'comment': 'The Democratic Party isn’t the issue. There is too much fake news and right wing propaganda being shared and pushed to Americans today. Straight from Russia with love.\n\nGet off Reddit for a minute and see the shit they are viewing on Fox News, Newsmax, and Truth Social then tell me why it’s the Democrats fault or the campaigns. And there are hundred podcasts and radio stations that are just Right Wing propagandists…it’s fucking everywhere!\n\nAnd keep in mind that many voters are low information voters. they are ignorant of the facts. It’s that simple. And the average IQ is only 100. That leaves a lot of stupid out there.\n\nStop attacking your own and look at what is happening to us as a people.\n\n15 million democrats said “not my problem” and they didn’t vote. Well they will find out what real problems are and learn a valuable lesson with Trump and Republicans in full control. MAGA is here now for at least 2 years.\n\nConcentrate on self improvement and making things better in your community because that is all we have now.', 'created': '2024-11-07 17:18:01', 'submission_id': '1gl5oqg'}
{'comment': 'So is anyone looking into it? Make sure your vote was actually counted - people are saying their votes were not counted. https://www.vote.org/ballot-tracker-tools/', 'created': '2024-11-07 18:14:25', 'submission_id': '1gl5oqg'}
{'comment': 'https://www.threads.net/@billt801/post/DCIIRcrRhmD?xmt=AQGzL8NvNIB5rlsabRLUzMUhFlCtB9k64X6QQKf3RnLRnw', 'created': '2024-11-10 01:59:23', 'submission_id': '1gl5oqg'}
{'comment': 'Lots of people died from covid', 'created': '2024-11-06 21:47:51', 'submission_id': '1gl5oqg'}
{'comment': 'There has to be a way to investigate this while we still have time.', 'created': '2024-11-06 22:52:42', 'submission_id': '1gl5oqg'}
{'comment': "Where have our intelligence agencies been? What is Musk up to? There's giant elephants not being mentioned.", 'created': '2024-11-07 03:37:08', 'submission_id': '1gl5oqg'}
{'comment': 'My theory is that Kamala running the shortest campaign in history backfired. If Biden had said he wasn’t going to run again during the midterms that would’ve given her ample time for people to get to know her. She was too unfamiliar. Trump already was president once and had a more recognizable name. 🤷🏽\u200d♀️', 'created': '2024-11-07 05:49:28', 'submission_id': '1gl5oqg'}
{'comment': 'Guys, we have to be bigger than them. We can’t make conspiracy theories about the results, this is unfortunately how democracy ruled whether we like it or not. Win or lose, we were on the right side of history this election.', 'created': '2024-11-06 20:01:49', 'submission_id': '1gl5oqg'}
{'comment': "Let's not get into wierdo.conspericy theories. We're NOT MAGAs", 'created': '2024-11-07 02:57:56', 'submission_id': '1gl5oqg'}
{'comment': 'STOP\n\nTHE\n\nSTEAL!', 'created': '2024-11-06 23:09:44', 'submission_id': '1gl5oqg'}
{'comment': 'Our local school was the polling place, the ballot boxes are still in the school presumably with votes (counted or not) still inside and have not been picked up yet.\n\nAlso seen a usps truck driving around the neighborhood with NO plate on the back', 'created': '2024-11-06 23:34:23', 'submission_id': '1gl5oqg'}
{'comment': "I'm no MAGA cultist, but I also have thoughts that this is very suspicious about how much Ronald Rump won", 'created': '2024-11-07 05:28:47', 'submission_id': '1gl5oqg'}
{'comment': 'I think we vastly underestimated how many people did not want to vote for a black woman.', 'created': '2024-11-07 13:03:27', 'submission_id': '1gl5oqg'}
{'comment': "I don't see why this is unbelievable.", 'created': '2024-11-06 21:29:16', 'submission_id': '1gl5oqg'}
{'comment': "Why do I have to keep saying this today... THEY HAVEN'T FINISHED COUNTING THE VOTES! California still has to report 7+ million votes.", 'created': '2024-11-06 21:08:11', 'submission_id': '1gl5oqg'}
{'comment': '[removed]', 'created': '2024-11-06 22:35:34', 'submission_id': '1gl5oqg'}
{'comment': 'This post should be moved…to Copenhagen.', 'created': '2024-11-06 22:48:41', 'submission_id': '1gl5oqg'}
{'comment': 'You realize that that there are still many outstanding votes left to be counted, right?', 'created': '2024-11-06 23:20:32', 'submission_id': '1gl5oqg'}
{'comment': 'Yup', 'created': '2024-11-06 23:27:01', 'submission_id': '1gl5oqg'}
{'comment': 'Are all the counts officially over, or are we still trying to cope?', 'created': '2024-11-06 23:35:39', 'submission_id': '1gl5oqg'}
{'comment': 'Vi har det okay her i Danmark', 'created': '2024-11-06 23:38:33', 'submission_id': '1gl5oqg'}
{'comment': 'Forget it Jake, it’s Chinatown.', 'created': '2024-11-06 23:47:13', 'submission_id': '1gl5oqg'}
{'comment': 'I think you have to see if some people who really follow elections notice something off. When the Rs we’re doing this, my line was always,I’ll wait until someone like Nate Silver (love him or hate him, he knows election stats like few on the planet) find something fishy, then you’ll have at least my attention', 'created': '2024-11-06 23:49:21', 'submission_id': '1gl5oqg'}
{'comment': 'Even if there is fraud, you really think any republicans will do anything now that they need to be in lockstep with trump again for 4 more years.', 'created': '2024-11-06 23:52:52', 'submission_id': '1gl5oqg'}
{'comment': 'I don’t think they are done counting', 'created': '2024-11-07 00:00:57', 'submission_id': '1gl5oqg'}
{'comment': 'The 2024 final vote count won’t be complete for days, many weeks.\n\nCheck back then', 'created': '2024-11-07 00:01:47', 'submission_id': '1gl5oqg'}
{'comment': 'I think you all forget we were in the middle of COVID. Voting was made a lot easier in 2020. Many states who don’t normally do mail in voting allowed it. That made it super easy for a lot more people who wouldn’t normally vote, vote. That’s why the Republicans do everything in their power to limit voting. If it was easy to do and we had an 80% turn out every time they’d never win again.', 'created': '2024-11-07 00:02:42', 'submission_id': '1gl5oqg'}
{'comment': 'Yeah probably had a lot to do with covid and being afraid of masks and vaccines.', 'created': '2024-11-07 00:02:57', 'submission_id': '1gl5oqg'}
{'comment': 'Anonymous needs to get to the bottom of this bullshit. But first they need to find the evidence that the “attempt” was designed by his campaign.', 'created': '2024-11-07 00:13:03', 'submission_id': '1gl5oqg'}
{'comment': "Two possible conclusions:\n\n- The 2020 election is an outlier and had a lot of additional votes that shouldn't have been counted - due to complications of the system during COVID. And it is a huge outlier. Just compare it to previous years. Harris is on track to do first term Obama numbers.\n\n- Not all votes have been counted yet. California is yet to count half their votes. When all votes are counted, we'll likely see similar numbers to 2020.", 'created': '2024-11-07 00:34:59', 'submission_id': '1gl5oqg'}
{'comment': 'Here we go', 'created': '2024-11-07 01:02:13', 'submission_id': '1gl5oqg'}
{'comment': 'You are forgetting 3rd party.idk how Stein did, but alot if Muslims voted for Stein', 'created': '2024-11-07 01:11:11', 'submission_id': '1gl5oqg'}
{'comment': "I worked for get out the vote in my state. Alot of people told me they were not going to vote because she's not a real candidate and didn't actually get nominated. They didn't want to vote for trump so they decided not to vote at all. Imo that's dumb, but that's what I got told.", 'created': '2024-11-07 01:13:55', 'submission_id': '1gl5oqg'}
{'comment': 'Not really sure what’s rotten’s about these numbers. There are millions of votes that are still left to be counted primarily from democratic states like California and Washington. When all the votes are counted the difference between Biden’s 2020 numbers and Harris’ 2024 will likely be in the single digits. Is it really that hard to believe that Harris was a few million votes shy of an all time historic turnout election result? Especially during an election cycle where the incumbent Democratic president is incredibly unpopular?', 'created': '2024-11-07 01:18:27', 'submission_id': '1gl5oqg'}
{'comment': 'I would wait until all then votes are counted, but it does appear that there was a drop in turnout, especially in Blue states.\n\nIL, NY, VA, CO, PA and CA all large drops in turnout. IL is about 1M down, as is NY. CA is still counting but looks like it will be around 2M less. CO was down by about 600K, but votes are still being counted. NJ about 500K down.', 'created': '2024-11-07 01:27:41', 'submission_id': '1gl5oqg'}
{'comment': 'Have we considered that in addition to being a milquetoast moderate who was nominated without a primary, and hitched to a guy with 34% approval, that polls and social media have created the illusion that Kamala was going to win in a landslide?', 'created': '2024-11-07 01:54:48', 'submission_id': '1gl5oqg'}
{'comment': 'Oh, because OP was taking about democrat enthusiasm being around 2008 numbers. We got about that turnout.', 'created': '2024-11-07 02:10:27', 'submission_id': '1gl5oqg'}
{'comment': '2020 featured mail ballots in most states and a lot more people were not juggling their normal work routine due to COVID. This made it easier for everyone to vote and participation went up as a result. We were also living in a once in a lifetime pandemic which may have motivated people to be more engaged with politics', 'created': '2024-11-07 02:27:45', 'submission_id': '1gl5oqg'}
{'comment': 'Mail ballots will take another week to count.', 'created': '2024-11-07 03:53:02', 'submission_id': '1gl5oqg'}
{'comment': 'This is why Republicans are against making voting easy.\n\nIt was in 2020 due to COVID protocols.', 'created': '2024-11-07 07:40:10', 'submission_id': '1gl5oqg'}
{'comment': "Weren't there bomb threats from Russia?\nIt's interesting how Russia was also suspected in 2016.", 'created': '2024-11-07 14:55:57', 'submission_id': '1gl5oqg'}
{'comment': 'Way. It is sad but that is simply the case. There really was no way to see such a collapse in Democratic turnout.', 'created': '2024-11-07 19:51:55', 'submission_id': '1gl5oqg'}
{'comment': '[removed]', 'created': '2024-11-07 20:38:41', 'submission_id': '1gl5oqg'}
{'comment': 'California and other blue predominantly VBM states still have millions of uncounted ballots. Our state has 30 days after election day before they have to submit a certified result. And we take our time.', 'created': '2024-11-07 23:28:59', 'submission_id': '1gl5oqg'}
{'comment': 'This is exactly a path to not learning a damn thing about why we lost. Do better than election denial please', 'created': '2024-11-08 00:40:00', 'submission_id': '1gl5oqg'}
{'comment': 'Don’t be conspiracy nuts. This easily solvable by looking at state level registration and voted numbers.', 'created': '2024-11-06 22:47:00', 'submission_id': '1gl5oqg'}
{'comment': 'Stop it. Do not give the Russian bots air. This is nonsense. Voting for the Dems once did not make those folks a die hard democrat for life.\n\nPeople that blame their troubles on the President blamed Biden this year and switched which person they voted for. People that weren’t pissed off about being stuck in their basement didn’t feel a need to vote this time.\n\nThere. Numbers plausibly explained. No conspiracy needed. No need to invoke Hamlet.', 'created': '2024-11-06 23:03:36', 'submission_id': '1gl5oqg'}
{'comment': 'Was it a fair election? Who could have messed with the voting machine software? Elon? How come no one is checking the count against the paper ballots? I know it takes money but, they have recounted before.', 'created': '2024-11-06 23:44:01', 'submission_id': '1gl5oqg'}
{'comment': 'I don’t think this is a mystery at all. Biden got 11 million votes in California in 2020 and Kamala got 5.6 million. I think a lot of people in solid Blue states sat this one out because they knew that their vote wouldn’t matter.\n\nUnless the Democrats start ignoring the electoral college states and start focusing on a 50 state strategy, this is our future.', 'created': '2024-11-07 00:02:03', 'submission_id': '1gl5oqg'}
{'comment': 'I can see 18 million apathetic a-holes not voting.', 'created': '2024-11-07 02:30:29', 'submission_id': '1gl5oqg'}
{'comment': "Let's not descend into MAG-like madness. If there is evidence of tampering, it needs to be dealt with but let's not run cr a zy with conspiracy theories if there's no actual evidence. Then we are no better than the Jan 6th rioters", 'created': '2024-11-07 04:27:24', 'submission_id': '1gl5oqg'}
{'comment': "It's suspicious. Trumps demeanor over the last couple months almost seemed like he knew he would win, no matter what. All the weird shit at his rallies.", 'created': '2024-11-07 14:11:53', 'submission_id': '1gl5oqg'}
{'comment': "Don't start doing this shit. We took a massive L. It's time to look inward instead of placing blame on others. Don't sink to the batshit crazy level of the republicans.", 'created': '2024-11-06 21:09:41', 'submission_id': '1gl5oqg'}
{'comment': "Guys, let's not descend into conspiracy theories and finger pointing. Take this loss on the chin, regroup and be ready for 2026.", 'created': '2024-11-06 22:14:55', 'submission_id': '1gl5oqg'}
{'comment': 'please do not fall into the realm of conspiracy theory with this. oh my lord. americans are stupid. the answer really is simple as that.', 'created': '2024-11-06 21:09:47', 'submission_id': '1gl5oqg'}
{'comment': 'For the love of God, can we please not act like them after a loss. Kamala lost and it SUCKS but until someone can start furnishing some proof, can we please not go down of spreading conspiracies with proof.', 'created': '2024-11-06 21:51:34', 'submission_id': '1gl5oqg'}
{'comment': 'It all adds up. \n\nYou just refused to listen. \n\nNow you’re acting like MAGA in 2020. “Stolen election!”\n\nThe people have spoken. The pendulum will now swing to the Right. Only question is how much.', 'created': '2024-11-06 21:54:03', 'submission_id': '1gl5oqg'}
{'comment': '2020 was an anomaly. We were all sitting around with nothing to do in the middle of a health crisis so we all voted.\n\n Not surprised at all turn out was lower.', 'created': '2024-11-06 22:08:11', 'submission_id': '1gl5oqg'}
{'comment': 'Can you say lack of enthusiasm boys and girls?', 'created': '2024-11-06 23:02:04', 'submission_id': '1gl5oqg'}
{'comment': 'Democrats sat out - perhaps because there\'s a large portion of the base that felt the party has abandoned them. This is the third election cycle where a candidate was shoved down their throats. The entire campaign was anti-trump instead of pro "What we are going to do for the United States citizens." If they can\'t hold a primary and endorse a viable candidate why would you expect a good voter turnout?', 'created': '2024-11-06 23:10:11', 'submission_id': '1gl5oqg'}
{'comment': 'My state is a Western State with all Mail-in/Dropbox ballots. You can track the progress of your ballot. Well, mine did not become part of the counted votes until this afternoon. It had me bothered. Tabulating all that paper is a slow process for an "instant gratification" populace. It also had me hoping that maybe, just maybe Harris could still win... Yes, this whole election could have made a person delusional. \n🙄😏', 'created': '2024-11-07 08:00:04', 'submission_id': '1gl5oqg'}
{'comment': 'Democrats lost. It’s as simple as that dude. There’s no conspiracy.', 'created': '2024-11-06 20:28:10', 'submission_id': '1gl5oqg'}
{'comment': "OP apparently doesn't realize that the counting isn't over and won't be for days.\n\n\nEDIT: just noticed that this is a sleeper manipulation account. Check OP's history. This is all about trying to get the left to start calling the election results fraudulent in order to widen the schism.", 'created': '2024-11-06 20:48:23', 'submission_id': '1gl5oqg'}
{'comment': 'So what are we gonna do about it?', 'created': '2024-11-06 22:44:06', 'submission_id': '1gl5oqg'}
{'comment': "Is it possible to request all registered voters who didn't vote to acknowledge that and have an accurate tally?", 'created': '2024-11-06 23:12:11', 'submission_id': '1gl5oqg'}
{'comment': 'I concur! Fuckery at foot ☝️ we need to get to the bottom of this post haste!', 'created': '2024-11-06 23:36:20', 'submission_id': '1gl5oqg'}
{'comment': 'It does add up. Democrats didn’t show up!', 'created': '2024-11-06 23:57:54', 'submission_id': '1gl5oqg'}
{'comment': 'There’s no conspiracy. There are still millions of votes being counted in states that won’t change the outcome: https://www.kgw.com/article/news/verify/elections-verify/unaccounted-2024-votes-20-million-18-million-fact-check/536-4a6cb71e-fb8d-4616-a848-f22c53ccf3b2', 'created': '2024-11-07 00:40:10', 'submission_id': '1gl5oqg'}
{'comment': 'Nope, disagree. Look at New York and New Jersey. New Jersey especially, frighteningly close. \n\nSome people don’t give a shit that he’s racist and misogynistic and stupid. A lot of people are like that also. They proudly wear the hats and put out the signs. There are those who don’t like him and agree that he’s an idiot but are struggling economically. These are the people that don’t talk about politics and don’t indicate any allegiance. Wasn’t there like a double digit swing right from independents this election as opposed to 2020? That is huge.', 'created': '2024-11-07 00:50:19', 'submission_id': '1gl5oqg'}
{'comment': 'Turnout surprisingly was lower this time.', 'created': '2024-11-07 11:32:09', 'submission_id': '1gl5oqg'}
{'comment': 'Cut the election denialism we don’t do that here', 'created': '2024-11-07 18:33:02', 'submission_id': '1gl5oqg'}
{'comment': "The Dems couldn't organize a baby shower, much less an international investigation into election fraud.", 'created': '2024-11-07 02:26:47', 'submission_id': '1gl5oqg'}
{'comment': 'Nice try, Russian employee of KGB or whatever. Being paid $2/hr to make posts like this, from St.Petersburg no doubt.', 'created': '2024-11-07 08:31:03', 'submission_id': '1gl5oqg'}
{'comment': "No, don't do this to yourself. The democratic party got defeated soundly by both EC and PV. Only by accepting that can changes begin to be made.", 'created': '2024-11-06 20:32:15', 'submission_id': '1gl5oqg'}
{'comment': '[removed]', 'created': '2024-11-06 21:44:04', 'submission_id': '1gl5oqg'}
{'comment': 'Put a 80 years old guy to sing in a rock concert in a stadium. See how many 20-30 olds show up. \n\nMoron Trump won. If you can’t beat a moron, just retire.', 'created': '2024-11-06 21:57:47', 'submission_id': '1gl5oqg'}
{'comment': 'This right here.', 'created': '2024-11-06 20:38:27', 'submission_id': '1gl5oqg'}
{'comment': 'OP is likely a state actor and this is a sleeper manipulation account. Check the history. This post is an attempt to get the Dems to start believing in election conspiracies as the right has been manipulated into believing.', 'created': '2024-11-06 21:59:25', 'submission_id': '1gl5oqg'}
{'comment': 'From Covid', 'created': '2024-11-07 02:14:04', 'submission_id': '1gl5oqg'}
{'comment': "Yeah part of me agrees. But how messed up would our country be right now after 8 consecutive years? How would Trump have handled the end of the pandemic and inflation? Trump ran our economy into the ground and Biden brought it back. If only he would have been held accountable for his crimes and not allowed to run. Even dealing with 4 years of Pence would have been better than Trump and an even worse VP in Vance. \n\nOur only hope is that he only gets 4 years and there's enough structure left to hold a legitimate election again.", 'created': '2024-11-06 20:21:54', 'submission_id': '1gl5oqg'}
{'comment': 'I was having similar thoughts earlier. If the U.S. was destined to have 8 years of Trump we should have just got the shit over with. In that timeline maybe last night would have been like Gretchen Whitmer beating Mike Pence', 'created': '2024-11-06 23:19:30', 'submission_id': '1gl5oqg'}
{'comment': 'As terrible as it would’ve been, I agree.', 'created': '2024-11-07 11:51:24', 'submission_id': '1gl5oqg'}
{'comment': 'She raised upward of $1b in 107 days. She had tens of thousands at her rallies. Clearly that points to…lower turnout?\n\nI’m definitely not a conspiracy guy. If I had to bet, I’d bet on non-fuckery explanations. But, damn. It’s hard to comprehend right now.', 'created': '2024-11-06 22:13:19', 'submission_id': '1gl5oqg'}
{'comment': 'Same. I genuinely can’t. And I’m not trying to be a conspiracy theorist but there’s a pattern on what the right is accusing being what they’re actually doing. Elon is the richest man in the world. You’re telling me there isn’t some financial influence in this election? There wasn’t Russian interference? THAT many women hated the idea of a woman president, even on the left? \n\nI really think all their accusations of election fraud have some validity to them. I’m positive this is being totally investigated. This just makes no sense\n\nEdit: seriously thank you for the awards 💕 I listened to Kamala’s speech tonight and she’s right, we fight harder, this isn’t the end. We voted for EVERYONE. we did not vote for ourselves and that’s all that matters today.', 'created': '2024-11-06 20:58:49', 'submission_id': '1gl5oqg'}
{'comment': 'I think Gen Z is really into performative activism online but in real life we’re a bunch of lazy apathetic idiots. The turnout for us was embarrassing. And our men are disgusting too, the worst since the boomers.', 'created': '2024-11-06 21:26:58', 'submission_id': '1gl5oqg'}
{'comment': "My current theory is that 2020 is an outlier best ignored. There was the pandemic, everyone was dealing with that while voting was going on, most voting was by mail, etc. There was so much going on there that it's impossible to tease out which variables affected what.\n\nIf you ignore 2020, then the results make sense and the Democratic voter numbers are similar to 2008. The Republican voter numbers are just really high. \n\nIf you set 2020 aside, since the beginning of the century in every presidential election the most moderate candidate always loses.", 'created': '2024-11-06 23:00:52', 'submission_id': '1gl5oqg'}
{'comment': 'Obv we have to wait and see what the total popular vote was. Once California is counted I’m pretty sure she will have more than 71 million votes. Still quite a decrease from 2020, & obv Trump/musk was able to find (or flip) hundreds of thousands of votes in the battleground states.', 'created': '2024-11-06 20:56:22', 'submission_id': '1gl5oqg'}
{'comment': 'It\'s because enthusiasm in political terms is probably actually complacency: the idea that you can stay home because "this one is in the bag."\n\nWhat really drives political action is *desperation.*', 'created': '2024-11-06 21:41:33', 'submission_id': '1gl5oqg'}
{'comment': 'In my state, African-American males voted more for JB than KH and some jumped over to Trump. Whether that’s sexism or just being unhappy with things in general right now, it’s partially why Michigan went to Trump.\n\nWe also have a very high Middle Eastern population that on record have been unhappy with how this administration has handled Hamas so they didn’t turn out nearly as much for KH and some voted Trump.', 'created': '2024-11-06 23:34:27', 'submission_id': '1gl5oqg'}
{'comment': 'The Internet is completely different. And they\'ve had time to game it further and even more access to do so. "The Twitter Files" were never debunked widely.\xa0 Trump lies about abortion and journalism is too afraid to talk about it at all.\xa0 But this is irrelevant, since the big lie has already spread.', 'created': '2024-11-07 00:04:07', 'submission_id': '1gl5oqg'}
{'comment': 'Can you explain what the 77% enthusiasm stat means?', 'created': '2024-11-07 00:30:43', 'submission_id': '1gl5oqg'}
{'comment': 'I read one of the most googled terms yesterday was “ why is Joe Biden not running for president anymore” or something to that effect. If that is the case that is unreal,people not knowing.', 'created': '2024-11-07 00:48:10', 'submission_id': '1gl5oqg'}
{'comment': "I don't think voter fraud is completely implausible this time. Trump was too desperate, and completely gave up campaigning the last few months.", 'created': '2024-11-07 06:40:10', 'submission_id': '1gl5oqg'}
{'comment': 'Low independent turnout though?', 'created': '2024-11-06 22:11:15', 'submission_id': '1gl5oqg'}
{'comment': "It's 100% clear, and I'm sure history will prove it at some point. I just wish Dems took action right now and launched an investigation.", 'created': '2024-11-07 00:52:30', 'submission_id': '1gl5oqg'}
{'comment': "Vlad should buy a lottery ticket, not that he'd care about the money if he won.", 'created': '2024-11-07 01:59:47', 'submission_id': '1gl5oqg'}
{'comment': 'My parents waited for two hours to vote early. I had to wait close to an hour when I got to my polling place at 7:45am (it opened at 7:30am). \n\nI’ve never seen so many signs for a Democrat and so few signs for the Republican candidate in my area. Shit, days before the election, I was talking to my sisters saying Ohio might actually be super close just because of how much more popular Kamala was compared to previous Democratic candidates. \n\nNothing about this feels right, but because there is no concrete evidence of fraud or abuse right now, I will accept that Trump won fairly.', 'created': '2024-11-07 03:49:35', 'submission_id': '1gl5oqg'}
{'comment': 'That’s a great point Trump & MAGA would be attacking polling places and crap again', 'created': '2024-11-06 23:37:07', 'submission_id': '1gl5oqg'}
{'comment': 'Exactly. Also, he’s been screaming fraud the ENTIRE time…but all of a sudden, no fraud?\xa0', 'created': '2024-11-07 02:05:59', 'submission_id': '1gl5oqg'}
{'comment': 'It’s because a lot of people did sit out but this number relies on California still reporting only 54% of their ballots', 'created': '2024-11-07 04:44:55', 'submission_id': '1gl5oqg'}
{'comment': 'What can we do??', 'created': '2024-11-07 18:15:50', 'submission_id': '1gl5oqg'}
{'comment': 'I agree- this all does seem to be really “off”. Idk. Wasn’t that Iowa poll supposed to be the most prudent and accurate as much as it can be poll? And that was off astronomically. I know vibes and polls aren’t empirical, and this may be just part of the grieving process- but something seems amiss here.', 'created': '2024-11-06 20:38:13', 'submission_id': '1gl5oqg'}
{'comment': 'Fewer voters in general because less mail in votes (and some Biden voters switched), less immediate anger from Democrats compared to 4 years of insanity.\xa0 Trumpnesia is real.\xa0 Still any human that thinks Trump should lead anything makes me question their brain.', 'created': '2024-11-06 22:40:35', 'submission_id': '1gl5oqg'}
{'comment': 'Yeah, I kept hearing positive feedback from canvassers.', 'created': '2024-11-06 21:22:56', 'submission_id': '1gl5oqg'}
{'comment': 'I canvassed non-stop here in rural Northeast PA. I spoke to dozens of voters between early September and late October. I saw a good amount of support for such a Trump-friendly part of the country, but I also saw so much apathy. I can\'t tell you the amount of people who told me they weren\'t comfortable with voting for someone who didn\'t go through a primary. I also had people express their lack of faith in a female candidate. Then there were the ones who registered Dem but just couldn\'t ideologically go through with yet another "vote against Trump and nothing else" election. She obviously learned a lot from Clinton\'s mistakes in 2016, but the situation turned a lot of Dems off.\n\nHarris wasn\'t my first choice when it was first announced she would be taking over the campaign. However, I looked into her policies and took the chance to participate in the campaign effort. I am sure there are others out there that just couldn\'t be bothered to look into policy or muster enough optimism to go through the dog and pony show again.', 'created': '2024-11-06 22:53:07', 'submission_id': '1gl5oqg'}
{'comment': '(Psst, racism and sexism)', 'created': '2024-11-06 21:38:34', 'submission_id': '1gl5oqg'}
{'comment': 'Kamala should sue every state she lost and refuse to certify the election until this is answered.', 'created': '2024-11-06 20:59:42', 'submission_id': '1gl5oqg'}
{'comment': None, 'created': '2024-11-06 21:48:42', 'submission_id': '1gl5oqg'}
{'comment': 'You know they’re still counting right, California alone has about another 7 million votes to count. We should wait until the count is done to compare popular vote totals.', 'created': '2024-11-06 23:50:51', 'submission_id': '1gl5oqg'}
{'comment': 'It\'s not 15m Dems sat out and 3m GOP sat out, it\'s (making generalizations) 5m Dems stayed home, 5m GOP stayed home, and 8m "Dems" who voted for Joe 4 years ago switched their vote.', 'created': '2024-11-07 01:20:42', 'submission_id': '1gl5oqg'}
{'comment': 'Maybe the fact that the Democratic candidate explicitly said that she’d do nothing different from the current, widely unpopular, administration while spending most of her time wooing Republicans and totally ignoring the left wing of her own party?\n\nJust a thought…\n\nI still voted straight blue though.', 'created': '2024-11-06 21:03:24', 'submission_id': '1gl5oqg'}
{'comment': 'Not to mention that 7 million people left the voter rolls between 2020 and 2024. \n\nThat brings the number down to 4 million. Which still isn’t great but not crazy', 'created': '2024-11-06 20:34:23', 'submission_id': '1gl5oqg'}
{'comment': "You're trying to respond with logic to a post by a sleeper social media manipulation account. This is all about widening the left/right schism in the US by making the left doubt the outcome of the elections. It worked so well with the right, why not try?", 'created': '2024-11-06 22:01:15', 'submission_id': '1gl5oqg'}
{'comment': 'I’m totally on the same page. It doesn’t add up', 'created': '2024-11-06 20:59:34', 'submission_id': '1gl5oqg'}
{'comment': "As someone who's been the boots on the ground for well over a decade, agreed. Nothing about this adds up, and I am a realistic to a fault. It was obvious when Hillary was going to lose and this was not a repeat of 2016. The party that said they were going to steal the election, did in fact find a way to steal the election.", 'created': '2024-11-06 22:33:46', 'submission_id': '1gl5oqg'}
{'comment': 'I despise conspiracy theories. So it is hard to just say ok, there is something there. Yes, the numbers are quite strange on a high excitement year, with orange shitstain (and not someone like Hailey) on the opposing ticket. So why the low counts? And - the polling. The polling has been spot on in some cases especially state level races, but when it came to presidential, it was off by a lot? Like 16 points off for Iowa, from a high quality pollster? WTF is that? Who can explain that? So something stinks.', 'created': '2024-11-07 00:12:35', 'submission_id': '1gl5oqg'}
{'comment': 'I’m with you 100%', 'created': '2024-11-06 21:17:59', 'submission_id': '1gl5oqg'}
{'comment': 'I’m with you. He thought he was going to win in 2020 but his cheating attempt failed, that’s why he was so upset and challenged everything. This time, he was set. He knew what to expect because they worked out the issues that derailed him the last time. There is no way in h*ll he won this election on his own.', 'created': '2024-11-07 00:29:22', 'submission_id': '1gl5oqg'}
{'comment': 'Agree 1000%! Another thing was that Trump was unusually quiet on Truth Social during election night. He hardly posted anything at all after the few initial claims of voter fraud. Seems way out of character for him.', 'created': '2024-11-07 00:44:46', 'submission_id': '1gl5oqg'}
{'comment': '☝️', 'created': '2024-11-06 21:26:24', 'submission_id': '1gl5oqg'}
{'comment': 'This right here makes sense', 'created': '2024-11-06 23:48:09', 'submission_id': '1gl5oqg'}
{'comment': 'The thing is any kind of fuckery is very hard. Our voting systems are decentralized and take place in over 3000 separate jurisdictions. I believe all the downloads happen on hardwired machines, so no wireless data passing is involved. I think the transgender stuff worked and I believe racism and sexism did the rest. \n\nI will throw one more thing out there, and that is the efforts of the campaign can also become an intrusion. The incessant emails, texts, door knocks, and phone calls may have hurt them instead of helping. Fifteen million voters not coming out is beyond strange.', 'created': '2024-11-06 23:34:41', 'submission_id': '1gl5oqg'}
{'comment': "The more I'm thinking about this timeline, the more sense it makes. We all knew he was going to try some shenanigans, we just didn't know which part of the process that would be attacked. To concentrate the effort to the actual voting process was akin to a Blitzkrieg from his end. It was over before we even knew that it had begun.", 'created': '2024-11-07 08:14:43', 'submission_id': '1gl5oqg'}
{'comment': 'Whether that’s how it happened or not, that’s what we tell every smug Trump Maga douche for the next 4 years.', 'created': '2024-11-07 04:03:44', 'submission_id': '1gl5oqg'}
{'comment': "It's very simple, demographically this country is still a majority white. Like white people refuse to vote for blonde blue-eyed woman when she tried to be president. They sure as hell weren't going to vote for a black woman. This country was founded on racism and is reaping what it's been centuries sewing", 'created': '2024-11-07 14:13:06', 'submission_id': '1gl5oqg'}
{'comment': 'How do we get someone to look into this? Cause it doesn’t add up!', 'created': '2024-11-07 18:17:50', 'submission_id': '1gl5oqg'}
{'comment': 'We don’t know yet.', 'created': '2024-11-07 03:04:44', 'submission_id': '1gl5oqg'}
{'comment': 'Everyone does. Hell, even the right is parading the same numbers on Twitter, but as proof that "clearly 2020 really was stolen" and that *those* are propped up numbers.', 'created': '2024-11-07 06:50:35', 'submission_id': '1gl5oqg'}
{'comment': 'The way I actually prayed for this today lmao. Ugh this is rough idk to me (yes I know I sound insane here lol) but, something just seems so off here. It was an absolute bloodbath and even Trump the past week looked like he was completely defeated by his internal polls.', 'created': '2024-11-06 20:40:17', 'submission_id': '1gl5oqg'}
{'comment': 'Agree. I know plenty of people who enthusiastically support Trump. Let’s not get delusional. The polls have always showed that Kamala was the underdog.\xa0\n\nI’m not storming the capitol and I hope none of you will either.\xa0', 'created': '2024-11-06 20:41:08', 'submission_id': '1gl5oqg'}
{'comment': 'Trouble is that even if major fraud was found in an election, you only have 2 months to flesh out the entire case before power switches. It will never happen.', 'created': '2024-11-07 00:26:44', 'submission_id': '1gl5oqg'}
{'comment': 'That would truly be a miracle', 'created': '2024-11-06 20:33:08', 'submission_id': '1gl5oqg'}
{'comment': 'Yes, but we can’t not go there just bc we don’t want to be assholes and don’t want to be like those who spout UNFOUNDED claims. It’s not like anyone is saying I JUST NEED YOU TO FIND 11,780 votes so we can win. Or drumming up the expectation beforehand. Or issuing death threats to election workers giving them PTSD. And on and on. There are qualitative differences.', 'created': '2024-11-07 04:45:57', 'submission_id': '1gl5oqg'}
{'comment': "I agree. We can't turn into Maga. There should be investigation. They had a huge investigation across the country at many different places, deep investigations where they learned exactly how voting works down to the clean up crew. They very well have learned how to rig the elections during the investigation.\n\nI figured he just won. I was seeing Harris walz signs all over but my city was still blue, it's just that we are surrounded by farms and rural areas that are all red", 'created': '2024-11-07 05:43:03', 'submission_id': '1gl5oqg'}
{'comment': None, 'created': '2024-11-06 20:41:51', 'submission_id': '1gl5oqg'}
{'comment': None, 'created': '2024-11-06 20:41:37', 'submission_id': '1gl5oqg'}
{'comment': "Nor should he. It's wrong, and should have never been a thing. It should be investigated just like the last election, but I think trump just won. Most people I know are trump supporters :/", 'created': '2024-11-07 05:45:13', 'submission_id': '1gl5oqg'}
{'comment': 'Exactly, not one recount?', 'created': '2024-11-06 21:45:18', 'submission_id': '1gl5oqg'}
{'comment': 'Seems like a very plausible explanation. That way, the poll workers would never know. Don\'t forget that Trump said that they had a "little secret".', 'created': '2024-11-07 00:34:17', 'submission_id': '1gl5oqg'}
{'comment': "It's easy to do", 'created': '2024-11-06 21:45:43', 'submission_id': '1gl5oqg'}
{'comment': 'https://www.threads.net/@billt801/post/DCIIRcrRhmD?xmt=AQGzL8NvNIB5rlsabRLUzMUhFlCtB9k64X6QQKf3RnLRnw', 'created': '2024-11-10 02:00:27', 'submission_id': '1gl5oqg'}
{'comment': 'My parents had to wait two hours to vote early. I had to wait close to an hour at 7:45am, 15 minutes after the polls opening.', 'created': '2024-11-07 03:53:18', 'submission_id': '1gl5oqg'}
{'comment': 'What have we got to lose?', 'created': '2024-11-07 00:31:10', 'submission_id': '1gl5oqg'}
{'comment': 'It wouldn’t surprise me in the lease because Trump always wants some kind of conspiracy going on', 'created': '2024-11-06 21:38:47', 'submission_id': '1gl5oqg'}
{'comment': "This is exactly what they're doing. It's not voter apathy or the fact it's comparing a final tally with one still being counted, it's because 2020 was rigged.", 'created': '2024-11-06 23:12:37', 'submission_id': '1gl5oqg'}
{'comment': 'I agree. But I don’t believe there is any recourse at this point. Also, because the Trump/Project 2025 Administration is going to have the next 4 years to work on things it will be harder if not impossible to vote & vote fairly next time. I really feel like this election was our last. In fact, a lot of MAGA folks were in favor of doing away with their own voting rights & Democracy.', 'created': '2024-11-07 13:04:38', 'submission_id': '1gl5oqg'}
{'comment': 'I know at least a dozen Democrats in my small New Mexico town who didn’t vote.\nOne of my wife’s colleagues, a Democrat and a teacher, said America wasn’t ready for a woman president and planned to sit this one out. Some of my male friends and family members voted for Trump, saying Harris was too inexperienced.', 'created': '2024-11-06 22:30:56', 'submission_id': '1gl5oqg'}
{'comment': 'Because MAGAts make up their mind about things before they see any details. Any reasonable person would look at this discrepancy and go "Huh, that\'s a little weird."\n\nRepublicans on the other hand already see Biden as evil and use anything they can get as proof of their point, no matter how far of a stretch it is.', 'created': '2024-11-07 06:21:03', 'submission_id': '1gl5oqg'}
{'comment': 'Yep, something like that. If yhe software for all voting machines were tampered with, no one would notice.', 'created': '2024-11-07 00:27:45', 'submission_id': '1gl5oqg'}
{'comment': 'What have they got to lose?', 'created': '2024-11-07 00:23:13', 'submission_id': '1gl5oqg'}
{'comment': 'Because the election broke for Trump so people are upset and concerned of what this administration will look like, so they are trying to find answers as to why everything turned out contradictory to what almost all sources predicted.', 'created': '2024-11-06 21:47:32', 'submission_id': '1gl5oqg'}
{'comment': 'https://preview.redd.it/qkdppt322czd1.jpeg?width=1548&format=pjpg&auto=webp&s=106bb48d7a4915d5d70dd35ae706e9f07c88a238', 'created': '2024-11-06 20:30:18', 'submission_id': '1gl5oqg'}
{'comment': "I was just thinking about stuff like that today. He had all these people put in place ready to refuse to certify. Was that what they were really there for? Who counted the votes and who monitored them? He's been saying weird shit like I don't need votes, we've got lots of votes. And We'll have it fixed so good you won't have to vote again. \n\nWhatever people think of Kamala the majority of people in the US are pro choice. Women were pissed off as hell and knew this was our best shot to claw back those rights for good. But suddenly huge numbers of pro choice women and men decided not to vote? Kamala wasn't hated like Hilary was by alot of people. Her rallies were packed and lit. The DNC was like Mardi Gras. All those people suddenly didn't feel like voting either? It doesn't make sense to me.", 'created': '2024-11-07 05:08:00', 'submission_id': '1gl5oqg'}
{'comment': 'Yes I personally know several repugs (family members and friends) that told me they were either sitting this one out, voting for Harris or a few voting 3rd party.', 'created': '2024-11-07 14:11:39', 'submission_id': '1gl5oqg'}
{'comment': 'As a lifelong Democrat, let me just say, get real.', 'created': '2024-11-06 23:58:16', 'submission_id': '1gl5oqg'}
{'comment': 'I agree. I’d love to find fraud to explain the inexplicable, but fraud in this many states with these numbers has a probability so low it couldn’t be detected with the Hubble telescope…', 'created': '2024-11-06 23:59:23', 'submission_id': '1gl5oqg'}
{'comment': 'Election day should be a national holiday and a law should be made that requires all eligible Americans to vote.', 'created': '2024-11-07 14:17:07', 'submission_id': '1gl5oqg'}
{'comment': 'I also think Americans are too entrenched in what is happening right now that they easily forget what happened and how bad it was under Trump.', 'created': '2024-11-07 13:03:35', 'submission_id': '1gl5oqg'}
{'comment': 'Not being counted or not being cast in the first place? If the former, a final vote count would change things dramatically.', 'created': '2024-11-07 00:30:28', 'submission_id': '1gl5oqg'}
{'comment': "I don't believe that at all. Every single Dem I know enthusiastically values diversity and gender equality and was very vocal about getting out the vote for Kamala. I do not know a single Dem who sat this one out or voted for anyone other than Kamala.", 'created': '2024-11-07 14:04:01', 'submission_id': '1gl5oqg'}
{'comment': 'Not if the voting machines were tampered with in some way, for example. No one would know that they counted wrong.', 'created': '2024-11-07 00:18:57', 'submission_id': '1gl5oqg'}
{'comment': 'If you mean voter suppression maybe. If you mean anything else no.', 'created': '2024-11-07 03:04:03', 'submission_id': '1gl5oqg'}
{'comment': "I mean ballots were destroyed. So it did. If it was enough for a swing state, that'd be unlikely but convenient.", 'created': '2024-11-07 09:36:23', 'submission_id': '1gl5oqg'}
{'comment': "Where did that happen? I haven't heard anything about it.", 'created': '2024-11-07 14:18:39', 'submission_id': '1gl5oqg'}
{'comment': "We're talking about Trump though. He cheats at everything, if he can.", 'created': '2024-11-07 00:53:17', 'submission_id': '1gl5oqg'}
{'comment': "I never thought it was ridiculous, just wrong, because mail-in ballots have a built-in paper trail, like old fashioned paper ballets. They're way more secure. I feel like 2020 election was the least electronically fudged election ever.", 'created': '2024-11-07 07:00:54', 'submission_id': '1gl5oqg'}
{'comment': 'No. The people who voted for him deserve it. Not the rest of us.', 'created': '2024-11-06 22:03:36', 'submission_id': '1gl5oqg'}
{'comment': 'Sorry, what? No country deserves an authoritarian fascist in charge. This is a braindead take.', 'created': '2024-11-06 21:55:14', 'submission_id': '1gl5oqg'}
{'comment': "> She’s was basically put in the drivers seat for us.\n\nAnd that made her worse than Trump? I'm stunned how willing some people are to cut off their noses to spite their faces.", 'created': '2024-11-06 23:03:52', 'submission_id': '1gl5oqg'}
{'comment': 'The question is why they didn’t show up? 15 million. Were any denied or were they just like I could care less.', 'created': '2024-11-07 01:32:13', 'submission_id': '1gl5oqg'}
{'comment': 'Not just the social media sites but also many of the top podcasts are casually right wing.\xa0\n\nBy the way, it’s no longer 15 million. California is just super slow to count. The gap is now down to 5 million, and it will shrink. Many places are only 50% reported.\xa0', 'created': '2024-11-07 19:04:43', 'submission_id': '1gl5oqg'}
{'comment': 'A million not 15 million.', 'created': '2024-11-06 23:12:58', 'submission_id': '1gl5oqg'}
{'comment': '"Guys, we have to be bigger than them."\n\nI\'m so tired of hearing that from people. Let\'s get real..the Republicans have openly stated that they intend to create a dictatorship, and given the fact that they have complete control over every branch of the our government at this point, the idea of losing our democracy isnt as far fetched as it used to be. \n\nDemocrats need to learn to be more assertive. Given all of the information that\'s coming to light about how trump might have compromised the integrity of this election, Kamala needs to step up while there\'s still time. The Republicans requested a recount several times and got what they wanted. I\'m not seeing why Democrats can\'t demand a recount as well.', 'created': '2024-11-06 21:14:31', 'submission_id': '1gl5oqg'}
{'comment': '>Guys, we have to be bigger than them.\n\nSays who?\n\nThis is fascism on our doorstep. If the numbers are wrong, it was implemented, not voted for.\n\nWhen they go low, go high - led us to a do nothing congress, and a fascist leader. Quit being a pushover.', 'created': '2024-11-06 20:17:49', 'submission_id': '1gl5oqg'}
{'comment': 'I’m not going to believe anything without proof but I just like….want someone to be looking into I guess?', 'created': '2024-11-06 20:19:32', 'submission_id': '1gl5oqg'}
{'comment': "Yes VerbNounNumber you are 100% right\n\nLet's not investigate this.", 'created': '2024-11-06 20:33:59', 'submission_id': '1gl5oqg'}
{'comment': "We can ask the question non-conspiratorially. The simple answer is that many Democrats didn't come out to vote. We should identify who they are and what caused them to sit this out.", 'created': '2024-11-06 20:44:14', 'submission_id': '1gl5oqg'}
{'comment': 'Agreed!', 'created': '2024-11-06 20:14:07', 'submission_id': '1gl5oqg'}
{'comment': 'Yes, this x 1,000', 'created': '2024-11-07 04:23:03', 'submission_id': '1gl5oqg'}
{'comment': '💯 Racial animus definitely played a part, Obama only won because he had the advantage of the 2008 financial crisis scaring people into voting blue no matter what their feelings of racial animus.', 'created': '2024-11-07 13:09:27', 'submission_id': '1gl5oqg'}
{'comment': '[removed]', 'created': '2024-11-06 21:40:00', 'submission_id': '1gl5oqg'}
{'comment': 'Well if true that was really really stupid of them. It is going to be much much worse for Muslims around the world with chump in charge.', 'created': '2024-11-07 14:51:05', 'submission_id': '1gl5oqg'}
{'comment': 'This is so maddening to me because hardly anyone votes in presidential primaries. Iirc in 2020 about 18 % of eligible democrats from PA voted in the primaries. All this whining about not having a primary that barely anyone votes in!', 'created': '2024-11-07 02:52:57', 'submission_id': '1gl5oqg'}
{'comment': "Doesn't explain the real live people at her events and appearances.", 'created': '2024-11-07 09:40:50', 'submission_id': '1gl5oqg'}
{'comment': 'Absolutely. We play the legal path - and there’s no credible evidence of any fraud. Harris did exactly the right thing - she delivered an eloquent concession speech to emphasize that this is what we do as a country - we recognize the will of the people as expressed at the ballot box. If we knew of ANY fraud the DNC and the ACLU would be all over it in a hot minute. We can’t act like MAGA - screaming fraud with no evidence because we don’t like the outcome.', 'created': '2024-11-07 00:03:18', 'submission_id': '1gl5oqg'}
{'comment': 'The population is over 300 million. Are all of them apathetic?', 'created': '2024-11-07 09:39:22', 'submission_id': '1gl5oqg'}
{'comment': "I mean... We're not fascists. That's a pretty good reason we're better.", 'created': '2024-11-07 09:38:29', 'submission_id': '1gl5oqg'}
{'comment': 'I agree. But I did just post something saying it seemed a little weird, but life goes on.', 'created': '2024-11-06 21:39:38', 'submission_id': '1gl5oqg'}
{'comment': "I don't know, it seems to have worked for MAGA. I'm tired, I'm annoyed, I'm mad, I say, let's do this.", 'created': '2024-11-06 21:48:03', 'submission_id': '1gl5oqg'}
{'comment': 'But on the other hand: Would it really be beneath Trump to try to cheat? He cheats constantly. Also, he said that they had "a little secret".', 'created': '2024-11-07 00:37:45', 'submission_id': '1gl5oqg'}
{'comment': 'Wait but I thought it was totally reasonable in 2020 for people to talk about how the election was stolen. What’s different this time?', 'created': '2024-11-06 21:58:54', 'submission_id': '1gl5oqg'}
{'comment': 'But also: Trump often accuses others of things he himself is doing.', 'created': '2024-11-07 00:28:57', 'submission_id': '1gl5oqg'}
{'comment': 'Sure, but THIS MUCH lower??', 'created': '2024-11-07 00:26:30', 'submission_id': '1gl5oqg'}
{'comment': 'This. I know of so many people who felt this way and I would not be surprised if they sat at home rather than going out to vote. We need to stop assuming everyone will just toe the party line.\n\nAlso, let’s be real. There are a lot of left leaning people who will NOT vote for a woman person of color to lead this country.', 'created': '2024-11-06 23:15:40', 'submission_id': '1gl5oqg'}
{'comment': "This is something I don't understand and never have. Why does the media insist on tallying votes during Election Day when they are fully counted later on? We should have the patience to wait for a final result.", 'created': '2024-11-06 21:42:57', 'submission_id': '1gl5oqg'}
{'comment': 'All the states that Trump won know how many ballots are missing and it won’t be enough to change the vote. \n\nI wish you were right, but I doubt it', 'created': '2024-11-06 21:40:54', 'submission_id': '1gl5oqg'}
{'comment': 'How would that gain MAGA?', 'created': '2024-11-07 00:38:40', 'submission_id': '1gl5oqg'}
{'comment': 'Not that I disagree… but Maga kinda proved clinging to the fantasy totally works', 'created': '2024-11-06 20:42:35', 'submission_id': '1gl5oqg'}
{'comment': 'So what about the 15Mil POS?', 'created': '2024-11-06 22:23:43', 'submission_id': '1gl5oqg'}
{'comment': 'I\'d just like someone to explain to me how "record turnout" turned into 20+ million fewer people voting.', 'created': '2024-11-06 23:51:57', 'submission_id': '1gl5oqg'}
{'comment': 'The funny thing is, if I could imagine anyone being able to *actually* rig an election, it would be Trump lol', 'created': '2024-11-06 23:36:49', 'submission_id': '1gl5oqg'}
{'comment': 'Except it isn’t just OP. I’m seeing the same sentiment all across Reddit and Tumblr. Granted those are fringe sites but still.', 'created': '2024-11-06 22:07:52', 'submission_id': '1gl5oqg'}
{'comment': "You do realize nearly EVERYTHING Trump accuses others of doing, is exactly what he's doing? He's been saying for weeks they already had all the votes they needed, which makes no sense. Something stinks.", 'created': '2024-11-07 02:22:28', 'submission_id': '1gl5oqg'}
{'comment': 'I was already thinking this last night. The king of projection has been telling on himself cheating since 2020\xa0', 'created': '2024-11-07 01:57:07', 'submission_id': '1gl5oqg'}
{'comment': 'No. OP is right. There is no way 15 million Dems sat this one out. We all knew what was at stake. I would so not even believe that 1 million sat out. Something absolutely doesn’t add up.', 'created': '2024-11-07 02:04:21', 'submission_id': '1gl5oqg'}
{'comment': 'They kept saying "too big to rig" more like "The rig so big no one would be able to believe it when it happened", they called the last election rigged so that they could get away with rigging the next one and dare the democrats to play the same card they played.', 'created': '2024-11-07 04:34:51', 'submission_id': '1gl5oqg'}
{'comment': 'Stfu dude “everyone” is a state actor when we get this frustrated', 'created': '2024-11-06 22:24:10', 'submission_id': '1gl5oqg'}
{'comment': "I refuse to stoop to their level. OP is like the Joker, from the Dark Knight, trying to turn the left now into conspiracy nuts.\n\nWell you know what, I'll do what we should have done 10 minutes ago\n\n*throws the remote out the window*", 'created': '2024-11-07 04:35:25', 'submission_id': '1gl5oqg'}
{'comment': '👆this', 'created': '2024-11-07 08:29:41', 'submission_id': '1gl5oqg'}
{'comment': 'Mother Russia speaks again.', 'created': '2024-11-07 18:03:01', 'submission_id': '1gl5oqg'}
{'comment': 'Agreed', 'created': '2024-11-06 22:12:07', 'submission_id': '1gl5oqg'}
{'comment': 'Maybe they’re right. Believing that nonsense seems to jell coalitions and win elections. Perhaps we should try it', 'created': '2024-11-06 23:42:11', 'submission_id': '1gl5oqg'}
{'comment': 'You can say what you want but the numbers dont lie, at least 16 million didnt vote that voted last time. In all honesty should have been even more than that because of people turning of voting age the last couple of years.', 'created': '2024-11-07 03:36:52', 'submission_id': '1gl5oqg'}
{'comment': 'Nah. i’ve been wondering this myself for 24 hours now.', 'created': '2024-11-07 15:44:45', 'submission_id': '1gl5oqg'}
{'comment': 'I’m seeing that a lot today. We lost. \n\nEnd of story. Stop the madness.', 'created': '2024-11-06 23:51:06', 'submission_id': '1gl5oqg'}
{'comment': "You're not wrong. Things probably would be in some real unrecoverable shit had it not been for Biden to steady the ship enough to withstand another 4 years of damage.", 'created': '2024-11-06 20:24:51', 'submission_id': '1gl5oqg'}
{'comment': 'It’s clear that in order for us to have any meaningful progress in this country the GOP has to be allowed to fail the American people. Dems continue to be painted as “elites” despite policies that are much more favorable to the working class and less favorable to the true elites. We need to give the GOP enough rope…', 'created': '2024-11-06 22:22:45', 'submission_id': '1gl5oqg'}
{'comment': "And to add to that, JD Vance as VP wouldn't have been in the picture. The possibility of him becoming president should Trump kick the bucket is so anxiety inducing.", 'created': '2024-11-07 00:06:44', 'submission_id': '1gl5oqg'}
{'comment': 'She was really only introduced to the broader American public in August at the convention. What she was able to build in less than 3 months was incredible. It’s almost unfair that this burden was placed on her so late.', 'created': '2024-11-06 22:15:46', 'submission_id': '1gl5oqg'}
{'comment': 'Voter suppression. Thats the answer you’re looking for. Always has been.', 'created': '2024-11-07 09:25:42', 'submission_id': '1gl5oqg'}
{'comment': "I think she may have just had an outsized effect on the Democratic base. Which looking at the total votes(and remember they aren't done counting, that number in the OP isn't the final number) looks to be true. BUT the huge gains Biden made were erased. I think this comes down to economic vibes and voter apathy. We cannot discount racism and sexism, but that's definitely not the biggest issue there.", 'created': '2024-11-07 16:49:58', 'submission_id': '1gl5oqg'}
{'comment': 'I mean Elon bought one of the 5 biggest social media platforms and turned it into a right wing propaganda machine. He wasn’t exactly hiding what he was doing.', 'created': '2024-11-06 21:15:18', 'submission_id': '1gl5oqg'}
{'comment': 'Thank you for saying this! The entire night, I was so damn confused as results came in. And you know, I also noticed that in some of the bigger metro area and suburban areas, Kamala was running a few points ahead of Biden in 2020 and in others she was a few points back. But all within the same metro area, like Philadelphia. Very strange.', 'created': '2024-11-06 21:33:00', 'submission_id': '1gl5oqg'}
{'comment': "Didn't Russia get caught sending in bomb threats to several polling sites in Georgia yesterday?", 'created': '2024-11-06 22:09:55', 'submission_id': '1gl5oqg'}
{'comment': "I don't like saying that it's suspicious but it's fucking weird.", 'created': '2024-11-06 22:22:11', 'submission_id': '1gl5oqg'}
{'comment': 'And his own admission to he and the Speaker of the House “having a little secret.” They also have a pattern of saying the quiet part out loud.', 'created': '2024-11-06 21:44:48', 'submission_id': '1gl5oqg'}
{'comment': "I agree with your finding of a pattern of projection on the current GOP party. \n\nAnd another fact that lends to this being fishy is that they had no ground game this election cycle at all. They made no real or overt overtures to get new voters. And after Roe was overturned they did lose a swath of their 2020 base. So it's surprising that they held about the same numbers as last time.", 'created': '2024-11-06 21:38:34', 'submission_id': '1gl5oqg'}
{'comment': 'The day before the election Elon said "I\'m so confident Trump will. Win, I\'ll give away my fortune if he doesn\'t"\n\nIt stinks.', 'created': '2024-11-06 22:08:16', 'submission_id': '1gl5oqg'}
{'comment': "By fraud in think you will find it was just classic voter suppression tactics. \n\nRemove drop boxes, reduce polling locations, create the threat of harm, make mail in voting hard to get. \n\nAll.of that creates lines of record Lengths and wait times longer than ever before. \n\nNow consider single moms, single ladies, young women, students.... All of them have zero time to stand in line for even 1 hour, much less 3 or 4 hours. \n\nPeople could lose thier jobs over being stuck in line. And when money is already tight because wages haven't kept up with inflation for 40 years, you get people who ran out of time.", 'created': '2024-11-06 21:44:12', 'submission_id': '1gl5oqg'}
{'comment': 'I mean if we literally just didn’t see something similar when Hillary ran in 2016. I think America is just sexist.', 'created': '2024-11-06 23:34:47', 'submission_id': '1gl5oqg'}
{'comment': 'Her turnout was lower in almost every single possible way across the country. That isn’t some giant conspiracy. People just didn’t turn out.', 'created': '2024-11-06 21:41:46', 'submission_id': '1gl5oqg'}
{'comment': 'Investigated by who? They’ve already claimed victory.', 'created': '2024-11-06 22:57:05', 'submission_id': '1gl5oqg'}
{'comment': 'Seriously, what is with your men? I thought Millennials had shifted the dial towards a more well-adjusted form of masculinity, but evidently that didn’t last long.', 'created': '2024-11-06 21:51:27', 'submission_id': '1gl5oqg'}
{'comment': None, 'created': '2024-11-06 21:41:55', 'submission_id': '1gl5oqg'}
{'comment': "Unfortunately the youngest generation is usually the most difficult to turn out and vote. This is always the case. Its why I was confused when people couldn't understand why Bernie Sanders kept losing. If your goal is to win with the younger vote you will lose.", 'created': '2024-11-06 23:55:05', 'submission_id': '1gl5oqg'}
{'comment': 'What about 2016?\xa0', 'created': '2024-11-07 02:02:43', 'submission_id': '1gl5oqg'}
{'comment': 'I hear you but I certainly felt desperation to deny a rapist/racist felon a second chance at the Presidency. Also just the pride of being able to vote for our first female of color President. Desperation + Joy should have won.', 'created': '2024-11-06 21:44:40', 'submission_id': '1gl5oqg'}
{'comment': 'Trump’s message about illegals taking black jobs actually resonates with people of color and Latino men. Most of them don’t have college degrees so they compete for the same jobs and illegals drive down the cost of labor depressing wages.', 'created': '2024-11-06 23:52:04', 'submission_id': '1gl5oqg'}
{'comment': 'Something was off though. Am I not right?', 'created': '2024-11-07 05:16:35', 'submission_id': '1gl5oqg'}
{'comment': "Same here in Ohio. This year my hopes were up because there were barely any trump or Andrea white signs. Harris walz was everywhere. The rural areas all voted red. All the big cites voted blue. Them rural folks live in their own bubble, kinda similar how reddit kinda is in a dem bubble, so it seemed very optimistic she would win imo. Maybe that's part of the plan. Get people over confident enough that they don't vote. Idk", 'created': '2024-11-07 05:25:06', 'submission_id': '1gl5oqg'}
{'comment': 'I’ve never waited more than a few minutes in line to vote. This time around, same polling location, I had to wait over an hour. It was still early in the day and they’d already had an unprecedented 700 people. On the commute there and back, I saw a whopping 12 trump signs, and all but 2 were just a single run of the mill lawn sign. It was startling little support for a town that generally has kept up trump flags and signs since 2016.', 'created': '2024-11-07 14:05:47', 'submission_id': '1gl5oqg'}
{'comment': 'Does anyone here troll truth social to see what the repugs have been up to the past few months?', 'created': '2024-11-07 12:50:02', 'submission_id': '1gl5oqg'}
{'comment': 'I mean, he was already suing states over voting practices even before voting was done.', 'created': '2024-11-07 01:57:01', 'submission_id': '1gl5oqg'}
{'comment': 'I have no idea but if you find out please let the DNC know.', 'created': '2024-11-07 19:59:42', 'submission_id': '1gl5oqg'}
{'comment': "There also this guy\nhttps://youtu.be/xE22XjWEyQE?si=xM64mFf97d71W_x1\n\nI know it's just 1 guy but he shared his metrics about how it works and why. Also drastically wrong.", 'created': '2024-11-07 02:21:36', 'submission_id': '1gl5oqg'}
{'comment': 'The miss is that everyone is lying about something, but when it\'s private and "no one" knows what or who you actually believe in or follow, there\'s your 15%, the ones who are fake.Christmas and Easter Christians are a good example, nice to your face, secretly thinks that the nanny stole the earrings she lost 6 months before she even hired her in the first place. Or the first or second generation immigrant who thinks well they arent talking about me, they have been talking about white replacement theories since I was child, fear of the other is the oldest propaganda play in the book and you all fell for it. Now we wait and see who\'s crazy.', 'created': '2024-11-06 20:51:09', 'submission_id': '1gl5oqg'}
{'comment': 'The inconvenient truth is that this is America. This is who America fundamentally is.', 'created': '2024-11-07 04:49:34', 'submission_id': '1gl5oqg'}
{'comment': 'The one thing I think we can all agree upon is that a proper primary should have taken place. It will be one thing which defines Biden’s presidency. All of the good work he did has been tarnished.', 'created': '2024-11-07 04:51:45', 'submission_id': '1gl5oqg'}
{'comment': 'I have always wondered why only trump gets to play that game', 'created': '2024-11-06 21:03:38', 'submission_id': '1gl5oqg'}
{'comment': 'Florida had their reporting numbers at 91% by 8:30. I would love to know how, considering that they just went through 2 hurricanes and they guaranteed had people still in line', 'created': '2024-11-06 21:26:54', 'submission_id': '1gl5oqg'}
{'comment': 'She already conceded to him over the phone.', 'created': '2024-11-06 21:32:15', 'submission_id': '1gl5oqg'}
{'comment': 'So you think all of the states she lost somehow conspired against her and no one leaked it? 🤔\xa0\nIf their lawyers thought this was a real possibility they would challenge it. The fact that she conceded today tells me they don’t think there’s anything to chase there.\xa0', 'created': '2024-11-06 23:33:11', 'submission_id': '1gl5oqg'}
{'comment': 'I thought it was over?', 'created': '2024-11-06 21:54:12', 'submission_id': '1gl5oqg'}
{'comment': 'Racism and sexism, I suppose.', 'created': '2024-11-07 15:26:21', 'submission_id': '1gl5oqg'}
{'comment': 'The idea that 15 million people decided they valued the lives and rights of many millions of people less than the moral high ground of having to vote is somehow more depressing than the idea that the electoral system could be so easily rigged.', 'created': '2024-11-06 21:26:12', 'submission_id': '1gl5oqg'}
{'comment': 'Meanwhile, the people who switched from Harris to Trump: "we thought Harris was too liberal"\n\nIn four years, the democratic party will shift right. You\'re fooling yourself if you think America wants a president that\'s further left. And I say this as a progressive.', 'created': '2024-11-06 21:41:47', 'submission_id': '1gl5oqg'}
{'comment': 'We want different things. Their party is more unified', 'created': '2024-11-06 22:08:04', 'submission_id': '1gl5oqg'}
{'comment': "Why tf would that matter right now? The rift couldn't be wider anyway, and the country is heading into a dictatorship.", 'created': '2024-11-07 00:58:25', 'submission_id': '1gl5oqg'}
{'comment': 'We already fucking doubted it dude, we didn’t need this account to tell us what to think\xa0', 'created': '2024-11-07 02:06:47', 'submission_id': '1gl5oqg'}
{'comment': "I mean... are we really gonna go down that route? Because there are people that are starting to think the MAGA idiots were right and that the election that was stolen was 2020 from Trump because the number of votes for Biden stick out like a sore thumb. \n\nYeah I know, wide mail in ballots availability is probably the logic explanation here, but this is also what the MAGAs say it's how it was stolen.\n\nHe won fair and square in 2016 and 2024. He also lost fair and square in 2020. We are the idiots who didn't go out. Some people are actually saying their swing state urban or suburban voting center was empty after 4pm, the morning lines were all gone by noon besides a few exceptions like college campuses", 'created': '2024-11-06 21:10:50', 'submission_id': '1gl5oqg'}
{'comment': "I'm also not a conspiracy guy, far from it. I always adhere to Ockham's razor. But this thing has way to many questions surrounding it. Plus, we're talking about Trump, the guy that cheats at everything.", 'created': '2024-11-07 00:47:10', 'submission_id': '1gl5oqg'}
{'comment': 'But what if the software for the voting machines was tampered with way before? He has had four years to stage something.', 'created': '2024-11-07 00:49:19', 'submission_id': '1gl5oqg'}
{'comment': 'Yep, too unevolved to give the job to a woman. Someone on here said because she wasn’t a good one. BS.\n\nAnd a woman who is half black and half Indian? Way too unevolved for that. And yet some probably said she wasn’t black enough. And I didn’t hear one thing about her Indian heritage except her mom and then some slur about curry.\n\nSo it’s quite some unenlightened double standard sexism on top of triple standard rascist BS. Still a GD white man’s world.\n\nThen add on top of that Hispanic voters legal or illegal fighting about who is better, and the scarcity of available immigrant slots. And believing Trump will advance their position and advantage with deportations?\n\nits all kind of a cluster. it’s getting really old and boring.\n\nI used to say Trump & Goons served as easy target comic relief. But then,\n\nhttps://preview.redd.it/7czdcgpngezd1.jpeg?width=1170&format=pjpg&auto=webp&s=13c234a4c1a6cdf66ee059c5078dd3d80973d82b\n\nonly attracted more.\n\nOr, there are secrets yet to unfold. Or both.', 'created': '2024-11-07 04:38:14', 'submission_id': '1gl5oqg'}
{'comment': 'Anyone remember this? Not sure if or where these voting machines were actually used in this election, but why did she need trademarks for voting machines?\nhttps://www.reuters.com/article/business/china-grants-more-trademark-approvals-for-ivanka-trump-firm-including-voting-m-idUSKCN1NB0TL/idUSKCN1NB0TL/', 'created': '2024-11-07 06:23:59', 'submission_id': '1gl5oqg'}
{'comment': 'Don’t get me wrong… I think there’s weirdness too. And of course nobodies talking about the Russian bomb threats or the fact that supposedly somewhere some Maga sycophants were a part of various voting centers… which might not even be true, I just thought I heard that a week ago. But… I dunno if any of it would be enough for a win like this. Almost all three houses', 'created': '2024-11-06 20:46:40', 'submission_id': '1gl5oqg'}
{'comment': 'Not that I would storm the capital, but this election and the inevitable pardons tell me that it was actually a-okay', 'created': '2024-11-06 23:40:33', 'submission_id': '1gl5oqg'}
{'comment': 'Yeah but if you keep whining about it, eventually your savior comes back! /s', 'created': '2024-11-07 00:31:10', 'submission_id': '1gl5oqg'}
{'comment': 'You got me there. And I did see sone theories I found compelling. Maybe I’m too worried to hope. Thing is… if election security didn’t catch any of it…', 'created': '2024-11-07 05:22:56', 'submission_id': '1gl5oqg'}
{'comment': "The election isn't over until the votes are certified on January 6.", 'created': '2024-11-06 23:42:07', 'submission_id': '1gl5oqg'}
{'comment': "Conceding is just a formality. It doesn't mean anything if the final count shows the candidate who conceded actually won. Not that it's likely to happen.", 'created': '2024-11-06 20:44:22', 'submission_id': '1gl5oqg'}
{'comment': 'That’s not binding in any way, merely a formality. Gore initially conceded to GW Bush in 2000 before retracting that when irregularities surfaced. Same could happen here.', 'created': '2024-11-06 21:07:19', 'submission_id': '1gl5oqg'}
{'comment': 'Right the margin in some swing states are razor thin. Last I checked WI and Michigan were both under 1%. And WI had yet to count the 31k Milwaukee mail in ballots that weren’t counted', 'created': '2024-11-07 01:05:19', 'submission_id': '1gl5oqg'}
{'comment': 'Exactly, early voting was crazier than ever this year as well! I definitely thought the numbers were going to be higher this year than any other year before...no matter who won.', 'created': '2024-11-07 15:59:29', 'submission_id': '1gl5oqg'}
{'comment': 'I see, but it actually seems very consistent with what has happened in the past and how underestimated republicans usually get, the sources predicted a sure victory for Hillary in 2016 (she lost but won the popular vote), an even more landslide victory for Biden in 2020 (it was a victory, but not a landslide) and a technical tie for Harris and Trump in 2024, she lost, and also lost the popular vote', 'created': '2024-11-06 21:56:10', 'submission_id': '1gl5oqg'}
{'comment': "Npt of the software for all voting machines were altered in some way. That's the only plausible explanation I can think of.", 'created': '2024-11-07 00:22:13', 'submission_id': '1gl5oqg'}
{'comment': 'Not being counted. I wondered the same thing. If they are eventually counted and Harris somehow pulls ahead, how would that work with her already having conceded?', 'created': '2024-11-07 00:31:40', 'submission_id': '1gl5oqg'}
{'comment': 'Well, no one except the thousands of people who would have had to tamper with them\xa0', 'created': '2024-11-07 02:05:18', 'submission_id': '1gl5oqg'}
{'comment': 'This seems like the type of election denialism that we’ve been fighting against for the past four years. We got our asses handed to us, we need to accept that reality and figure out how to address the glaringly weakness in our party rather than going down the conspiracy theory rabbit holes.', 'created': '2024-11-07 01:26:38', 'submission_id': '1gl5oqg'}
{'comment': 'Musk was buying votes and some states were allowed to challenge votes. There were voters who were told their votes were invalid which they weren’t.', 'created': '2024-11-07 03:07:23', 'submission_id': '1gl5oqg'}
{'comment': 'There were some reddit posts a while back sharing news articles on it, lemme see\n\nEdit: found a thing https://www.theguardian.com/us-news/2024/oct/30/damaged-ballots-fire-drop-box', 'created': '2024-11-07 14:19:16', 'submission_id': '1gl5oqg'}
{'comment': 'In 2020 he tried to overthrow the government. We had 4 years and did nothing. The republicans protected him and nominated him again. We have people who don’t even give a shit enough to fucking vote. Nobody is brave enough to hold him accountable for anything. The government is broken and everyone just goes along with it. We deserve it.', 'created': '2024-11-06 22:27:48', 'submission_id': '1gl5oqg'}
{'comment': "We will if we don't band together and resist.\n\nLike it actually is really sus that Trump won as hard as he did but the fact remains that he is now elected president with all of the Project 2025 shit that entails, and that's what we have to focus on stopping if we presume to care about human life.", 'created': '2024-11-06 22:20:14', 'submission_id': '1gl5oqg'}
{'comment': 'Where did I say that she was worse than trump ???💀 all I’m saying is that it wasn’t done correctly and she was put in too late for people to truly back her and connect with her. Jesus please work on your reading comprehension', 'created': '2024-11-06 23:12:05', 'submission_id': '1gl5oqg'}
{'comment': 'The latter. Lots of millennial Bernie bros didnt bother again.', 'created': '2024-11-07 03:06:06', 'submission_id': '1gl5oqg'}
{'comment': 'Maybe we will keep the House??', 'created': '2024-11-07 19:32:24', 'submission_id': '1gl5oqg'}
{'comment': 'Yeah. Not going to just take the high ground here. They never have, and never will. Do I think realistically that cheating happened en masse? No, but they cheat, they lie, they conspire constantly. Its not ridiculous to think that something is up, and with facism right at our doorstep I dont feel good about just...... letting it all end.', 'created': '2024-11-06 20:55:51', 'submission_id': '1gl5oqg'}
{'comment': 'If the right politicians have really embraced fascism then all it would take for them to do is to actually infringe on the right to bear arms or for us to have another Republican be president if trump messes up the economy and America.\n\n. So if the other half of the country isn’t as trump obsessed then we’ll find out.\n\nWe’ll either have a democracy or we won’t in 2028.', 'created': '2024-11-06 20:51:32', 'submission_id': '1gl5oqg'}
{'comment': 'They’re still counting votes, turn out was down compared to 2020 but those gaps will come down as votes come in', 'created': '2024-11-06 20:32:29', 'submission_id': '1gl5oqg'}
{'comment': 'But is it a conspiracy when they were openly doing dodgy shit and attempting to cheat in other ways? They call us cheaters cos they assume everyone is like them and cheats. But they’ve shown to have that mentality, so it’s reasonable to consider that something might be up.', 'created': '2024-11-06 20:57:29', 'submission_id': '1gl5oqg'}
{'comment': 'Obama was also a man. A woman of colour was too much for Americans, even some democrats.', 'created': '2024-11-07 16:38:32', 'submission_id': '1gl5oqg'}
{'comment': "Also...she tried to get nominated 4 years ago. So why did they think she suddenly didn't want to run now.", 'created': '2024-11-07 14:19:24', 'submission_id': '1gl5oqg'}
{'comment': "Totally agree. But we're heading into really scary times and this talk makes me afraid of violence erupting. Let's be better than them, please. I'm just very stressed out and I want to hope that there are still legal means of preventing the worst of his policies", 'created': '2024-11-07 14:39:38', 'submission_id': '1gl5oqg'}
{'comment': 'unless you have any concrete evidence other than hearsay and “trust me bro” contributing to the discourse that our democracy is compromised is incredibly dangerous and how we got into this situation in the first place. trump won because the democrats are too arrogant and didn’t have a good campaign. it’s that simple. the same damn thing happened in 2016. they didn’t learn.', 'created': '2024-11-07 01:06:38', 'submission_id': '1gl5oqg'}
{'comment': 'It wasn’t totally reasonable- the MAGA people are a cult with tin-foil hats. There is NO credible evidence that any fraud took place this year. Without evidence we concede - that is what our Constitution dictates. We come back and lite his ass on fire in 2026 and fire him in 2028.', 'created': '2024-11-07 00:06:17', 'submission_id': '1gl5oqg'}
{'comment': '"gain MAGA"\n\nIt wouldn\'t. It would "gain Russia". Know the players.', 'created': '2024-11-07 01:04:13', 'submission_id': '1gl5oqg'}
{'comment': 'You have a point there.', 'created': '2024-11-06 20:50:59', 'submission_id': '1gl5oqg'}
{'comment': 'From my state, a very important swing state that went for Trump this time, from everything I’ve witnessed in terms of transparency and verifying EVERYTHING in the process to a T, he won as some were not moved enough by KH to even come out where they did for JB. Maybe it was coming off of Covid, or Biden is a white male who has years and years in politics and was Obama’s VP with lots more time to campaign unlike KH, maybe it’s people in general needing someone to blame, namely the economy. KH wasn’t really able to separate herself from Biden and didn’t really try and I know in my state many had issues with her being “snuck in” without a primary to be the candidate and pointing to how little support she got in the 2020 Primary.', 'created': '2024-11-06 23:26:20', 'submission_id': '1gl5oqg'}
{'comment': 'Is it really possible that 15M democrats sat out the most important election of our lifetime?', 'created': '2024-11-07 02:59:52', 'submission_id': '1gl5oqg'}
{'comment': 'We had mail in voting, early voting and day of voting. There were lines at all polling locations. Day of there were 4 hour lines in some places. I hate to believe in conspiracies but asking questions when things don’t add up is the right thing to do.', 'created': '2024-11-07 06:57:22', 'submission_id': '1gl5oqg'}
{'comment': 'Exactly. I would like to know the same.', 'created': '2024-11-07 00:21:23', 'submission_id': '1gl5oqg'}
{'comment': 'honestly? probably playing video games at home.\n\nthey need more indepth breakdown to see which states specifically had fewer dems voting.\n\nthing is, i wouldn\'t be surprised if most of that 20 million, are people from california and new york, where they\'re like they support democrats, but are like "its electoral college who cares, my state is blue already".', 'created': '2024-11-07 04:36:55', 'submission_id': '1gl5oqg'}
{'comment': "The difference is more like 15.5 million so far and by my count we have 6.5 million left to count in CA, another million apiece in WA and AZ, another million combined in OR and UT, plus some stragglers in NV, IL, and other places. \n\nI think we should expect the difference to be closer to 5 million than 20 million when they're all counted. Which shouldn't be that surprising since 2020 was such a huge outlier because people were mostly at home with time on their hands.", 'created': '2024-11-07 02:46:51', 'submission_id': '1gl5oqg'}
{'comment': 'Record "predicted" turnout, and there was even a huge surge in searches indicating more people than expected didn\'t even realize Biden had dropped out. Not everyone is a highly engaged voter. And 15 million "missing" Dem votes would have to be spread out across a lot of states—hard to hide. And everytime except Kerry that a Republican won the popular vote, it was more than what is being given as the total for this election. I think it\'s insanely low turnout too, but where are the votes being hidden?', 'created': '2024-11-07 04:34:48', 'submission_id': '1gl5oqg'}
{'comment': 'Love it. Dems are too feckless to rig an election...', 'created': '2024-11-07 01:58:56', 'submission_id': '1gl5oqg'}
{'comment': 'We lost, people, cut the conspiracy shit', 'created': '2024-11-06 22:12:40', 'submission_id': '1gl5oqg'}
{'comment': "It's almost like state actors have more than one account.", 'created': '2024-11-06 23:24:10', 'submission_id': '1gl5oqg'}
{'comment': 'Yeah, there are probably hundreds of accounts designed to create discord within other nations. US being the prime nation hit with it.', 'created': '2024-11-07 01:44:03', 'submission_id': '1gl5oqg'}
{'comment': 'Some of those are probably legit, some are reposting stuff from state actors for karma/likes, and some of that appears to be a concerted effort to form a narrative.\n\nThe left has plenty of dumb people willing to be manipulated. That’s not something the right has a monopoly on.', 'created': '2024-11-06 22:13:53', 'submission_id': '1gl5oqg'}
{'comment': 'He was implying that they were going to get the House to put Trump in office. That’s the “secret” between him and Johnson. Same plan as before.', 'created': '2024-11-07 02:35:10', 'submission_id': '1gl5oqg'}
{'comment': 'No state has completed their counts. Also, it turns out that a lot of Dems chose to not vote versus voting for a Black woman.', 'created': '2024-11-07 02:29:37', 'submission_id': '1gl5oqg'}
{'comment': 'This is sadly not the first time this happens. If they believe the candidate isn’t exactly what they want they stay home.', 'created': '2024-11-07 06:16:27', 'submission_id': '1gl5oqg'}
{'comment': 'They didnt vote its pretty simple. Unless you are on a trump type conspiracy train thinking 16 million votes were not counted?', 'created': '2024-11-07 03:38:49', 'submission_id': '1gl5oqg'}
{'comment': 'Sure. Evidence or GTFO.\\*\n\n^(\\*applies to everyone making this case, not just you, just as it did with the MAGA folks)', 'created': '2024-11-07 04:48:37', 'submission_id': '1gl5oqg'}
{'comment': 'I despise conspiracy theories but this just doesn\'t make any sense. Is it possible that it was rigged at the (red) local level where Dems were "flagged" at polling stations when they signed in and then directed to scanners that did not actually record their votes? Or somehow otherwise lost or discarded their ballots? All the volunteer poll workers at my station "looked" like Republicans and seemed unusually cheerful for such a serious occasion.', 'created': '2024-11-07 12:20:03', 'submission_id': '1gl5oqg'}
{'comment': "/u/Assorted_Alloys\n\nIt's not even a high quality account with a plausible post history. It's a burner.", 'created': '2024-11-06 22:27:49', 'submission_id': '1gl5oqg'}
{'comment': 'Never Stopped', 'created': '2024-11-07 18:06:55', 'submission_id': '1gl5oqg'}
{'comment': 'The counting is not done yet.', 'created': '2024-11-07 03:50:50', 'submission_id': '1gl5oqg'}
{'comment': 'Yes, but Trump probably wouldn’t have the immunity he does now, and there would be a very real chance we could have took back the house and senate and impeached him for real.', 'created': '2024-11-07 02:27:21', 'submission_id': '1gl5oqg'}
{'comment': 'I\'ve been thinking the same thing today. "Fine, have it your way." Kinda sounds childish but it seems the only remaining option to possibly protect from this being our future forever. The biggest downside of that is likely millions of lives will be altered as collateral damage.\n\nJohn McCain saved the ACA. We likely won\'t have anyone like him this go round to save everything else that\'s in peril.', 'created': '2024-11-06 23:34:45', 'submission_id': '1gl5oqg'}
{'comment': 'I don’t disagree.\n\nBut not prosecuting Trump sooner also was a massive mistake.', 'created': '2024-11-07 06:33:37', 'submission_id': '1gl5oqg'}
{'comment': "Give the GOP enough rope and they'll hang all of us. It doesn't matter how much their party fucks up. Look at the past 2 years with them in control of the House of Reps. It was shit show after shit show and now they're poised to have control over the white house, Senate AND House of Reps. \n\nThere is no such thing as the GOP hanging themselves because they never do. They always come back, worse than before and still their party festers in the bowels of America, becoming more and more cancerous and virulent each time. \n\nThis time, however, I don't think there will be a 2026 chemotherapy session to cure the GOP cancer and this time, the country will die.", 'created': '2024-11-07 09:39:36', 'submission_id': '1gl5oqg'}
{'comment': 'Not almost, it’s incredibly unfair', 'created': '2024-11-07 00:33:13', 'submission_id': '1gl5oqg'}
{'comment': "She didn't have enough time, and was barely covered. Meanwhile trump has had 8 years of non stop coverage, even his childish rants on Twitter get posted everywhere", 'created': '2024-11-07 05:20:28', 'submission_id': '1gl5oqg'}
{'comment': "It's important to remember that there is a large population who couldn't even remember her name until they saw it written on the ballot. Or worse. Information takes a stupid long amount of time to proliferate through this country.", 'created': '2024-11-07 02:25:49', 'submission_id': '1gl5oqg'}
{'comment': 'Yep. 250 million daily users, and he controls the algorithm.', 'created': '2024-11-06 21:23:40', 'submission_id': '1gl5oqg'}
{'comment': 'And he managed to produce 3 million fewer votes for trump?', 'created': '2024-11-06 23:05:29', 'submission_id': '1gl5oqg'}
{'comment': "It's not about points if vote totals a simply less. Every time she preformed at Biden level Trump out paced himself.", 'created': '2024-11-06 21:37:53', 'submission_id': '1gl5oqg'}
{'comment': 'Yeah I saw that too, but I didn’t read the whole article. I’m hoping Kamala’s speech tonight doesn’t shut the door on this for good', 'created': '2024-11-06 22:27:27', 'submission_id': '1gl5oqg'}
{'comment': 'And Maricopa county in Arizona', 'created': '2024-11-07 01:20:03', 'submission_id': '1gl5oqg'}
{'comment': 'Yes they did\xa0', 'created': '2024-11-07 01:59:54', 'submission_id': '1gl5oqg'}
{'comment': 'Why did Trump say so often during his rallies “I don’t need votes, I have plenty of votes” \nI’m not a conspiracy theorist but this is sus', 'created': '2024-11-06 23:58:26', 'submission_id': '1gl5oqg'}
{'comment': 'That was leaked.\xa0 If Trump lost Johnson was going to not certify in the house.\n\n\nBut he won.', 'created': '2024-11-07 16:01:46', 'submission_id': '1gl5oqg'}
{'comment': 'It’s surprising that one of the most reliable and loyal voting blocs showed up to vote and voted for the same party they have for their entire life?', 'created': '2024-11-07 15:53:29', 'submission_id': '1gl5oqg'}
{'comment': 'Except early voting and mail-in ballots were also way up? \n\nNot being able to stand in line day of, I get, but there was a pretty big window of time in places like Georgia where both elderly sets of parents got up and shuffled on over there.', 'created': '2024-11-06 23:54:58', 'submission_id': '1gl5oqg'}
{'comment': '100%. He won twice against women. But she did amazing things in the short time she had. And just motivates me more to raise my daughters to raise hell and keep their heads high', 'created': '2024-11-07 00:24:34', 'submission_id': '1gl5oqg'}
{'comment': "No we didn't. You just cannot compare the enthusiasm surrounding the two campaigns.", 'created': '2024-11-07 00:55:31', 'submission_id': '1gl5oqg'}
{'comment': "Enthusiasm was high, record mail in, record early voting, record voter registration and 16 million few votes compared to biden? \n\nSomething ain't right.", 'created': '2024-11-06 23:07:28', 'submission_id': '1gl5oqg'}
{'comment': "would it really hurt for people to look into this though? Like I'd rather someone really looked into it and found nothing than wonder", 'created': '2024-11-06 22:56:36', 'submission_id': '1gl5oqg'}
{'comment': 'Like 2016, it’s our own damn fault. WE didn’t come out in enough numbers in the right places. And if the urgency around the 2020 election was so critical, why didn’t we show up for this one?\n\nCan you think of anything in common between 2016 and 2024 that may have caused low turnout? I’ll wait.', 'created': '2024-11-06 22:49:00', 'submission_id': '1gl5oqg'}
{'comment': 'Gen Z caught a bad case of the social media/ manosphere brainrot.', 'created': '2024-11-06 21:59:37', 'submission_id': '1gl5oqg'}
{'comment': 'They’re disgusting misogynists who blame women for everything. They also think they’re oppressed because they’re virgins, as if sex is somehow a right. \n\nMillennials did do better. It’s us that’s the problem.', 'created': '2024-11-06 21:55:41', 'submission_id': '1gl5oqg'}
{'comment': "A lot of men hate pronouns, apparently. At least, that's what I'm seeing on social media.", 'created': '2024-11-07 01:13:14', 'submission_id': '1gl5oqg'}
{'comment': 'I’m Gen Z too though😭We shouldn’t have to suffer because of these idiots.', 'created': '2024-11-06 21:54:41', 'submission_id': '1gl5oqg'}
{'comment': 'What about 2016?\n\nIt was a fairly normal election cycle in terms of circumstances. \n\nAs usual, the more extreme candidate won.', 'created': '2024-11-07 02:04:34', 'submission_id': '1gl5oqg'}
{'comment': 'Yeah, but more people were desperate to help keep Trump out of prison', 'created': '2024-11-06 22:49:45', 'submission_id': '1gl5oqg'}
{'comment': "Yea I can't stop thinking about this guy. He has been right every time except this time... How did so many people not see the dem voting dropoff? Its so weird", 'created': '2024-11-07 15:46:46', 'submission_id': '1gl5oqg'}
{'comment': '*what*?', 'created': '2024-11-06 21:01:50', 'submission_id': '1gl5oqg'}
{'comment': 'He doesn’t. I’m not even being tongue in cheek. She should do exactly what he wanted to do.', 'created': '2024-11-06 21:04:25', 'submission_id': '1gl5oqg'}
{'comment': 'Florida’s just ridiculously fast. But I wouldn’t put anything past Defuckface.', 'created': '2024-11-06 21:42:47', 'submission_id': '1gl5oqg'}
{'comment': 'Florida always gets its voting done quickly like that. Many many Floridians voted early, too', 'created': '2024-11-06 22:15:35', 'submission_id': '1gl5oqg'}
{'comment': 'Record early voting numbers.', 'created': '2024-11-06 23:07:51', 'submission_id': '1gl5oqg'}
{'comment': 'Conceding means nothing. It’s just a formality.', 'created': '2024-11-06 21:33:01', 'submission_id': '1gl5oqg'}
{'comment': 'It is over in the sense that there cannot be enough votes in any particular state to change the outcome. If one candidate leads by 150,000 votes in a state and there are only 75,000 votes to count, the state can be called for that candidate. Even if all 75,000 votes go to the opponent, it would not change the state\'s outcome. States continue to produce an accurate count, even after a state is "called".', 'created': '2024-11-06 22:56:50', 'submission_id': '1gl5oqg'}
{'comment': 'Yeah. I don’t think that America wants a president that’s further left. I’m just trying to make sense of it all, as I know many others are, and I don’t think that a conspiracy theory is going to help me or anyone else do that. \n\nA post on Reddit is not a decree that I aM RiGHt.', 'created': '2024-11-07 00:21:52', 'submission_id': '1gl5oqg'}
{'comment': "I'm sure Putin is gladdened to hear you say that. Widen that schism! Destroy yourself America!", 'created': '2024-11-07 01:05:43', 'submission_id': '1gl5oqg'}
{'comment': 'Yet here you are having your unfounded speculation reinforced. Way to go! Stop the steal right?', 'created': '2024-11-07 02:31:15', 'submission_id': '1gl5oqg'}
{'comment': "These two things are not the same. No one from Trump's camp, who was running against him, decided to become a Democrat and hang with Joe Biden, out of the blue.\n\n2 Billionaires didn't decide to just prop Joe Biden up and start making back room deals with him while he bragged about not needing votes because they fixed it. (whatever that means)\n\nI am just saying if it smells like a duck, and it walks like a duck, and it quacks like a duck, then maybe...maybe it is time to start looking for feathers.", 'created': '2024-11-06 22:19:37', 'submission_id': '1gl5oqg'}
{'comment': 'Or, as I suggested in another comment, Dem voters were flagged at their polling place when signing in, and their ballots were discarded, "lost" or scanned by a machine that didn\'t record anything. Might not have anything to do with software. It could be as simple as just not counting cast ballots.', 'created': '2024-11-07 13:41:23', 'submission_id': '1gl5oqg'}
{'comment': "> But what if the software for the voting machines was tampered with way before?\n\nIf it can't be proved it doesn't matter.", 'created': '2024-11-07 01:31:49', 'submission_id': '1gl5oqg'}
{'comment': '> Then add on top of that Hispanic voters legal or illegal fighting about who is better, and the scarcity of available immigrant slots\n\nI hope those Latino voters don\'t look too Latino, but they should get used to carrying passports or having birth certificates on them if they don\'t want to "accidentally" get caught up in the round ups.', 'created': '2024-11-08 00:57:58', 'submission_id': '1gl5oqg'}
{'comment': 'Centre county in PA. Biden won this in 2020. Harris lost this in 2024. Bomb threat to the election centers here required polls to be closed early. Not everyone voted.', 'created': '2024-11-06 21:02:21', 'submission_id': '1gl5oqg'}
{'comment': 'I get it. We are proud about faith in our robust voting system as we should be. Glad to be able to peacefully concede. We don’t want to whine.', 'created': '2024-11-07 05:24:44', 'submission_id': '1gl5oqg'}
{'comment': "The popular vote isn't done yet. There's like 7-10 million votes in highly Democratic areas still to be counted. There's a chance she squeaks out a popular vote victory. \n\nBut I agree, people underestimate Republican turnout. Trump had basically identical turnout to 2020. I myself even assumed that with all of Trump's antics the last 4 years that no way did he not lose some voters, but turns out he didn't. Meanwhile well over 10% of previous Democratic voters just didn't show up...", 'created': '2024-11-06 22:00:43', 'submission_id': '1gl5oqg'}
{'comment': "But nothing has been certified yet. I don't really know how concedings work, formally?", 'created': '2024-11-07 01:02:53', 'submission_id': '1gl5oqg'}
{'comment': 'When 15 million of you don’t show up, that it is the problem rather than any other sort of shenanigans. Don’t turn into an idiot.', 'created': '2024-11-08 12:13:09', 'submission_id': '1gl5oqg'}
{'comment': "Well that's really fucked up and the first I've heard of it. Sounds like no one has been arrested either.... Maybe multiple cameras should be placed at all ballot boxes.....", 'created': '2024-11-07 14:59:43', 'submission_id': '1gl5oqg'}
{'comment': 'Yes, our government is broken. No, Trump didn’t face any consequences. And what are we, you and I and other small people who have no power to do anything about it, *supposed* to do about it? We have no power over Mitch McConnell or the Federal Supreme Court justices that chose not to take action. As much as I wish we did, we really don’t. This is as simple as a “people didn’t vote” issue. The actions or inactions of a few do not mean the majority deserves the consequences.\n\nWomen do not deserve to have their bodily autonomy taken away. Gays and trans people do not deserve to have their protections taken away. Brown people do not deserve to be threatened with deportation. Black people do not deserve to be threatened with white supremacy. Muslims, Buddhists, Pagans, etc. do not deserve to be threatened with Christian nationalism. Children do not deserve a lack of proper education. \n\n Be so fucking serious for a minute.', 'created': '2024-11-06 22:47:01', 'submission_id': '1gl5oqg'}
{'comment': "> Jesus please work on your reading comprehension\n\nWhile I'm doing that, jackass, you go read why getting someone else was impractical and probably a worse endeavor. \n\nIf you didn't say it, why would you think I'm talking specifically about you?", 'created': '2024-11-07 01:35:06', 'submission_id': '1gl5oqg'}
{'comment': 'I sure hope so. We just need three of the R-trending seats to flip once all the votes are in. Depending on which votes are uncounted that could be a possibility.\xa0\xa0\n\n\xa0I know that happened with our senator from Michigan. She was behind by 400 votes for a few days and in the final tally she ended up winning 52% to 46% today.\xa0', 'created': '2024-11-07 20:05:39', 'submission_id': '1gl5oqg'}
{'comment': 'There is no evidence of Republicans manipulating vote totals. Full stop. Democrats just stayed home this election cycle.', 'created': '2024-11-06 21:40:28', 'submission_id': '1gl5oqg'}
{'comment': 'Men are necessarily more threatening than women, if anything that would help her.', 'created': '2024-11-07 16:48:14', 'submission_id': '1gl5oqg'}
{'comment': "I say she didn't sell the progress of 4 years. The chips act, the infrastructure act, the inflation reduction act. That should have been the intro to talk about what to do next.", 'created': '2024-11-07 00:05:13', 'submission_id': '1gl5oqg'}
{'comment': "Trump's record and mouth should have been sufficient and incontrovertible reason to vote for Harris.", 'created': '2024-11-07 17:43:07', 'submission_id': '1gl5oqg'}
{'comment': "Those are not very good reasons for allowing a fascist authoritarian criminal dictator to take over our country. I would really really like to hear directly from some of these 15 million registered Dems what their exact thinking was for sitting out......it doesn't make any sense.", 'created': '2024-11-07 12:00:16', 'submission_id': '1gl5oqg'}
{'comment': "White men run for president in the United States. Women will never earn the seat of power unless it's a woman vs a woman. Far too many misogynists. Many men I know told me they didn't believe a woman could run the nation and that women are too emotional in their approach. This is deeply ingrained into the US. Enough so that 15m less voters came out.", 'created': '2024-11-07 01:43:03', 'submission_id': '1gl5oqg'}
{'comment': 'I don’t think the Dems had a cohesive vision for working class Americans.', 'created': '2024-11-07 00:57:56', 'submission_id': '1gl5oqg'}
{'comment': "You have to look at where the numbers are different statistically and then go to those counties to look at the actual voting records.\n\n(spoiler, you probably won't find anything unless you're already a conspiracy nut)", 'created': '2024-11-07 04:52:14', 'submission_id': '1gl5oqg'}
{'comment': "I'm about 95% there for Dems lost, but I would like more analysis of those numbers. That's a big delta.", 'created': '2024-11-07 01:20:11', 'submission_id': '1gl5oqg'}
{'comment': 'I’m not saying we didn’t lose. But the numbers don’t make sense and I hope someone is looking at them very closely compared to the actual ballots', 'created': '2024-11-07 01:58:02', 'submission_id': '1gl5oqg'}
{'comment': 'Women could have stopped this by themselves. Any conspiracy shit is easier than accepting (among other gruesome ideas) that this is what American women really want.', 'created': '2024-11-07 02:21:57', 'submission_id': '1gl5oqg'}
{'comment': None, 'created': '2024-11-07 00:32:23', 'submission_id': '1gl5oqg'}
{'comment': 'Not a monopoly but the majority.', 'created': '2024-11-06 23:36:50', 'submission_id': '1gl5oqg'}
{'comment': 'This was my first time voting, they called a lady called Susan over who was forcing a southern accent so hard it was cringy. She was the one telling me how to use the machine, and it didn\'t sit right with me at all, I didn\'t trust her. She told me to hit the print button twice... me being ignorant not knowing how it works tried to hit it twice and then told her loud enough that it didn\'t let me print it twice... and then the other workers were like "ohh noo you can\'t print it twice" I felt embarrassed thinking maybe one went into the box for counting and one was like a personal receipt. Why she told me to print twice is beyond me...', 'created': '2024-11-07 14:46:19', 'submission_id': '1gl5oqg'}
{'comment': 'Who is that?', 'created': '2024-11-06 22:43:22', 'submission_id': '1gl5oqg'}
{'comment': 'I don’t interact with Trump or right wing things at all on twitter and all it does is give me Trump and right wing things. It’s wild.', 'created': '2024-11-06 23:51:44', 'submission_id': '1gl5oqg'}
{'comment': 'More than likely helped contribute to the 15 million less democratic voters.', 'created': '2024-11-06 23:20:34', 'submission_id': '1gl5oqg'}
{'comment': 'Is there another speech instead of the concession speech?', 'created': '2024-11-07 01:00:31', 'submission_id': '1gl5oqg'}
{'comment': 'I think there were threats in all of the swing states at 40 total polling sites', 'created': '2024-11-07 01:31:54', 'submission_id': '1gl5oqg'}
{'comment': '*sigh* \n\nWonderful.', 'created': '2024-11-07 01:27:48', 'submission_id': '1gl5oqg'}
{'comment': 'Yes up from the previous horrible numbers, BUT WHERE is the key. \n\nEven early voting, how far did they make people go to vote? Early voting had lines as well, some an hour long still. \n\nVoter suppression tactics were a huge part of it, anyway you look at it. It has been for decades. Can\'t be blind to the small things, that how big thing happen "unexpectedly".', 'created': '2024-11-07 01:48:40', 'submission_id': '1gl5oqg'}
{'comment': 'Mail in and early voting doesn’t mean democrat votes. You guys are so blind to the actual problem: shit messaging and improperly focusing on issues people don’t care about. The average American right now cares about like three things. Their grocery prices, safety, and not getting into any more wars. The democrats spent the last 3 months talking about Trump’s character (which everyone already knows he’s a piece of shit), and how Kamala is basically the same as Biden.\n\nShe basically had no substance to her interviews and rallies. This isn’t completely her fault, as she had such a short amount of time to prepare, but this isn’t a conspiracy. The messaging was terrible and people do not feel inspired to vote for her like they did in 2020 with Biden.', 'created': '2024-11-07 02:58:19', 'submission_id': '1gl5oqg'}
{'comment': 'It’s easy. Republicans demonized early voting in 2020. They didn’t at all this time. So more of them voted by mail.', 'created': '2024-11-07 00:49:12', 'submission_id': '1gl5oqg'}
{'comment': "I hate to sound like a conspiracy theorist but if they won fairly they shouldn't have anything to hide, no?", 'created': '2024-11-06 23:22:18', 'submission_id': '1gl5oqg'}
{'comment': 'Exactly. Why not just make sure\xa0', 'created': '2024-11-07 02:01:17', 'submission_id': '1gl5oqg'}
{'comment': 'Wamen', 'created': '2024-11-06 23:35:04', 'submission_id': '1gl5oqg'}
{'comment': 'I knew there was a reason to worry when my 16 year old started telling me that her friends were parroting Trump talking points.', 'created': '2024-11-07 13:59:57', 'submission_id': '1gl5oqg'}
{'comment': 'The Democratic outreach to young men has been pretty bad though. I identify as center-left, voted for Biden and then Harris, and graduated from a college with a reputation for being super progressive. I was able to just kind of gloss over when my peers and stuff like you’re saying, but not everyone did. If what you said is repeated enough times, some of those guys are going to say “fuck this” and find themselves on the right.', 'created': '2024-11-07 01:10:49', 'submission_id': '1gl5oqg'}
{'comment': "As a Gen z man who voted for Harris, talking this way is just going to push people away. \n\nDon't be disgusting yourself. I don't know a single Gen z dude who thinks even close to this way.\n\nBut generalize and demonize because you can't handle it. I'm sure that will drive up turnout next election...", 'created': '2024-11-06 22:07:19', 'submission_id': '1gl5oqg'}
{'comment': 'They were neglected in school and girls were encouraged to excel. Anne Hathaway sums it up perfectly in The Intern.', 'created': '2024-11-06 22:04:48', 'submission_id': '1gl5oqg'}
{'comment': 'But the reality is, you will. We all will.', 'created': '2024-11-06 23:03:07', 'submission_id': '1gl5oqg'}
{'comment': 'Oh, we will. All because people wanted cheaper eggs and gas.', 'created': '2024-11-07 01:11:35', 'submission_id': '1gl5oqg'}
{'comment': 'Too late', 'created': '2024-11-06 23:18:02', 'submission_id': '1gl5oqg'}
{'comment': 'My point is why did you skip all the way back to the 2008 election?\xa0', 'created': '2024-11-07 02:08:15', 'submission_id': '1gl5oqg'}
{'comment': 'Yes!! We keep getting accused of being these amoral monsters that will do anything to maintain control? Well, let’s give it to them!!', 'created': '2024-11-06 21:23:45', 'submission_id': '1gl5oqg'}
{'comment': "YEAH!\n\nExcept it'll be just as effective as it was for Trump to overturn the results.", 'created': '2024-11-06 23:55:35', 'submission_id': '1gl5oqg'}
{'comment': 'Okay THANK YOU for the duh answer I was missing. What about when they call it when the returns were in single digits? Why?', 'created': '2024-11-07 04:14:21', 'submission_id': '1gl5oqg'}
{'comment': 'No, I get that. The comment I responded to was just worded weirdly like there was still doubt', 'created': '2024-11-06 23:00:04', 'submission_id': '1gl5oqg'}
{'comment': 'But at what point do we accept that it’s actually true and not just manipulation? A dictatorship is really what has been openly promised to us.\xa0', 'created': '2024-11-07 02:07:41', 'submission_id': '1gl5oqg'}
{'comment': "I mean yeah, of course Trump made backdoor deals, with a promise of smth in return, he favors loyalty after all. That doesn't translate into voting irregularities", 'created': '2024-11-06 22:22:57', 'submission_id': '1gl5oqg'}
{'comment': "If it's true, it can be proven by examining the machines. Of course no one would have evidence here on Reddit right now.", 'created': '2024-11-07 01:39:05', 'submission_id': '1gl5oqg'}
{'comment': 'Jesus. Is that what we are back to? PASSING?', 'created': '2024-11-08 01:08:59', 'submission_id': '1gl5oqg'}
{'comment': 'Gotta wonder why Trump desperately urged his base to vote early this election. Perhaps they were planning election day chaos.', 'created': '2024-11-06 21:50:26', 'submission_id': '1gl5oqg'}
{'comment': 'If we find evidence, I’ll be behind it all the way.', 'created': '2024-11-07 05:31:30', 'submission_id': '1gl5oqg'}
{'comment': 'I’m not really sure either. There’s so much I don’t know but I really am trying my best 😭', 'created': '2024-11-07 01:24:00', 'submission_id': '1gl5oqg'}
{'comment': '> And what are we, you and I and other small people who have no power to do anything about it, supposed to do about it?\n\nWe used the power we do have, but that power is collective. There are some people who think it doesn\'t matter who\'s president, and things can only get "so bad". I\'m thoroughly convinced the man who didn\'t want to leave office before is going to do everything he can now do by law, to never leave. \n\nI\'m not new to this stuff. I\'ve been following politics since I was eight years old, and I\'ve been in the fight in some way since I was a teenager. That was 50 years ago. This is different. I could never imagine a convicted felon being the nominee of one of the major parties, but it happened. The American people chose an archcriminal over a political normie in total disregard of the danger of an inept lunatic. And, as you point out, people are going to suffer. I honestly don\'t see any coming back from this without a lot of blood in the streets, and that\'s likely not going to happen. \n\nThe two worst takeaways for me is we\'ve ceded Ukraine to the Russians and we\'ve ceded the war against women to the cruelties of the Republicans. Trump might have the chance to add three more justices to the Supreme Court, and that Court will be the American Taliban. I\'m disgusted by the men in this country who would let ads about transgender people move them to abandon the women of this country. I\'m disgusted by the women who voted against the interested and protection of their sisters. This country has shown its terrible pathologies of racism and sexism are stronger than its sense of freedom and egalitarianism. \n\nMy first rule of living is you have to be prepared at all times to save your own life. Too many of my fellow Americans just said "Fuck that". \n\nGood luck, y\'all.', 'created': '2024-11-06 23:25:47', 'submission_id': '1gl5oqg'}
{'comment': 'Because you responded to me ???? You @‘d me when you responded to my original statement. IQ isn’t very high huh', 'created': '2024-11-07 23:44:17', 'submission_id': '1gl5oqg'}
{'comment': "That doesn't make them innocent of the aforementioned dodgy shit. Sure any evidence we might have is hearsay but if it \\*is\\* a conspiracy, wouldn't it just fly under our noses if nobody called it out?\n\n \nGod this sounds horrible to say, but we don't have anything to lose anymore. If he won fair and square and we can verify that then sure, we're fucked. But the gloves have to come off sometime, and if Trump is gonna call for an investigation of 2020 then why can't we?", 'created': '2024-11-07 06:26:05', 'submission_id': '1gl5oqg'}
{'comment': 'I don’t even see how they would communicate all that to uninterested voters; every piece of media left or right was playing trump clips and talking about trump all year. They would maybe show a blip of Kamala talking like “not going back”, and then spend 2 more hours discussing Donald Donald Donald’s dementia of the day. \nI don’t know how they fix it; everyone’s “sources” are fractured in a million pieces', 'created': '2024-11-07 00:41:56', 'submission_id': '1gl5oqg'}
{'comment': 'There was nothing she could’ve done that would’ve made her win. I’m not saying she was perfect, but the red wave yesterday was coming no matter what. People are mad about Covid and inflation, and incumbent parties have been slammed all over the world.', 'created': '2024-11-07 00:38:32', 'submission_id': '1gl5oqg'}
{'comment': 'How would that bring in 15 million more Democrats?', 'created': '2024-11-07 04:39:00', 'submission_id': '1gl5oqg'}
{'comment': 'PACT Act', 'created': '2024-11-07 09:47:08', 'submission_id': '1gl5oqg'}
{'comment': 'You mean like giving single moms money?', 'created': '2024-11-07 17:54:32', 'submission_id': '1gl5oqg'}
{'comment': "Here is the delta. Trump won by 5 million. That's it. It sucks but that's it", 'created': '2024-11-07 06:00:55', 'submission_id': '1gl5oqg'}
{'comment': 'Yes, I am very interested in an exhaustive post mortem, figure out where the breakdown was.', 'created': '2024-11-07 03:41:27', 'submission_id': '1gl5oqg'}
{'comment': 'Exactly. That is it right there. People are trying to find some bullshit escape for the fact that 72 million people...some of them people we see every day...voted for Trump. Despite all that has transpired with him, they still preferred him over Kamala Harris.', 'created': '2024-11-07 05:57:22', 'submission_id': '1gl5oqg'}
{'comment': 'Not necessarily the "bigger" person...just not batshit crazy and stupid like they are... \n\nThey\'re not.like us...and we not like them. \n\nFuck that crazy shit', 'created': '2024-11-07 00:36:16', 'submission_id': '1gl5oqg'}
{'comment': "There are *plenty* of liberals into crystal therapy and who believe in bigfoot, but at least there isn't a concerted effort taking place on the left to disparage and degrade education.", 'created': '2024-11-06 23:40:20', 'submission_id': '1gl5oqg'}
{'comment': "I've been voting for almost 40 years and have never been able to print anything. There's no receipt or physical proof I even voted.", 'created': '2024-11-07 14:55:21', 'submission_id': '1gl5oqg'}
{'comment': 'Yeah this has been made widely known, many many people have said the same. I got rid of twitter a year ago, along with instagram and facebook. Reddit is all I have social media wise', 'created': '2024-11-07 00:16:50', 'submission_id': '1gl5oqg'}
{'comment': 'I have kept my Twitter and continued my work with my resistance group. I haven\'t blocked that many people, and my "following" feed is interrupted by right wing ads, but otherwise, it\'s my following/friends. \nI\'m lucky in that respect.', 'created': '2024-11-07 02:47:11', 'submission_id': '1gl5oqg'}
{'comment': "Try YouTube without being logged in, private session. Same shit.\n\nIt isn't just Twitter.", 'created': '2024-11-07 04:48:23', 'submission_id': '1gl5oqg'}
{'comment': 'What in the actual fuck, man. \n\nHas anyone asked voters if they were driven away by the threats?', 'created': '2024-11-07 03:55:37', 'submission_id': '1gl5oqg'}
{'comment': 'Exactly. Plus Trump has been saying it’s rigged the entire time. We are just “verifying” it’s not, right?\xa0', 'created': '2024-11-07 02:01:58', 'submission_id': '1gl5oqg'}
{'comment': 'The Dems definitely need to fix a lot of stuff, including their outreach. I agree with that.', 'created': '2024-11-07 01:20:22', 'submission_id': '1gl5oqg'}
{'comment': "That is what polling statistics show though. While you, and others you know that are Gen Z men, may not hold those attitudes, social research is showing there are a lot of Gen Z men with misogynist. When it comes to elections, the reality is, you have to think about different populations and general attitudes common among members of that population rather than individuals. That was part of the problem here. There was an attempt to court Gen Z without attending to the underlying attitudes that are prevalent among that population. Ipsos was showing Gen Z males being pro Trump, anti abortion. That's exactly how they voted. You might be in the percentage that didn't vote that way, but there are plenty of others that did, and we had data on. Should we run campaigns reaching out to 334 million people without considering voting patterns and attitudes common to particular demographics or should we try to get to know and convince every person on the nation on a personal level? Because one is feasible and the other ain't.", 'created': '2024-11-06 23:15:18', 'submission_id': '1gl5oqg'}
{'comment': "You're just one of those types who think you can emotionally blackmail your way to getting away with doing whatever you want, and that just doesn't work when you interact with other people.\n\nYou made the choice to vote for Trump, and you are the only one responsible for your actions.\n\nNo one is going to capitulate to you to convince you to do what is right nor should anyone.", 'created': '2024-11-06 22:13:18', 'submission_id': '1gl5oqg'}
{'comment': '[removed]', 'created': '2024-11-06 22:16:13', 'submission_id': '1gl5oqg'}
{'comment': 'Then you don’t have any friends that listen to Andrew Tate. The alpha profile has been lauded as the ideal male persona. And trump embodies that to the extreme. When people are afraid of change they look to an authority figure to say it’s all okay. And Kamala is never going to deal in absolutes like that. She understands life is messy and it’s that style of messaging that isn’t working. People wanna hear it’s all gonna be okay if we just do this. They don’t want to hear that it might get better.', 'created': '2024-11-06 23:31:00', 'submission_id': '1gl5oqg'}
{'comment': '[removed]', 'created': '2024-11-06 22:12:07', 'submission_id': '1gl5oqg'}
{'comment': 'That they’re not even gonna get too lol', 'created': '2024-11-07 01:20:32', 'submission_id': '1gl5oqg'}
{'comment': 'We don’t need to be amoral monsters. But at this point I’m not opposed to using their own bullshit tactics against them', 'created': '2024-11-06 23:10:28', 'submission_id': '1gl5oqg'}
{'comment': 'There are still House races that have not been called yet.', 'created': '2024-11-06 23:08:32', 'submission_id': '1gl5oqg'}
{'comment': 'A dictatorship is a concern, but not what Trump has ever seriously proposed. \n\nShow me the clips.', 'created': '2024-11-07 02:32:37', 'submission_id': '1gl5oqg'}
{'comment': 'Ditto', 'created': '2024-11-07 16:17:53', 'submission_id': '1gl5oqg'}
{'comment': 'It’s because Trump gets clicks and ad revenue and makes them money. No one is happier about the Trump victory than MSM execs.', 'created': '2024-11-07 04:17:21', 'submission_id': '1gl5oqg'}
{'comment': 'They were all complicit in it. But why? Even NPR, historically a bastion of, if not “left leaning” then certainly even handed in their coverage. Is it just money? Power? Did something happen while I was away at camp and a well-organized coup occurred that was orchestrated at very high levels? We have all been a little shocked by the media’s avoidance of Trump’s outrageous statements. The Washington Post won’t endorse Harris. The Epstein tapes are released but not until Election Day. Elon Musk uses a wildly popular online platform to pedal a presidential candidate. The mainstream media spends nary a second of screen time discussing the criminality of Musk’s voter manipulation. We are watching a coup in progress. Trump is not in charge. This is a rerun of The Apprentice where he says what they tell him to say. They act like he’s been calling the shots all along but that’s just a smokescreen. Trump is just a bullhorn who can’t find his ass with both hands. His job was just to squawk and rage about whatever entered his mind and he did not disappoint. The plan worked.', 'created': '2024-11-07 03:20:13', 'submission_id': '1gl5oqg'}
{'comment': 'Wise post. Thanks.', 'created': '2024-11-07 01:37:11', 'submission_id': '1gl5oqg'}
{'comment': 'There was no red wave (-3M), there was a blue drought (-15M).', 'created': '2024-11-07 04:39:59', 'submission_id': '1gl5oqg'}
{'comment': 'The red wave where Trump lost 3 million votes from 2020?', 'created': '2024-11-07 03:55:10', 'submission_id': '1gl5oqg'}
{'comment': 'The breakdown was in the 72 million people who voted for a fascist. \n\nNo analysis needed. No mathematical models. No hinting for votes. No deep research. 72 million people wanted this guy, and that is a problem we need to face here.', 'created': '2024-11-07 06:00:07', 'submission_id': '1gl5oqg'}
{'comment': 'Fair enough I guess I’m just tired of them getting passes when they do terrible things', 'created': '2024-11-07 01:08:02', 'submission_id': '1gl5oqg'}
{'comment': 'This is true, but, I always say the reason I’m a democrat is the ideals and beliefs of democrats, no matter how out there, usually comes from a good place. Most of the shit Republicans want and believe comes straight from hatred of other people, wanting to go back to better times when only white male voices mattered.', 'created': '2024-11-06 23:54:02', 'submission_id': '1gl5oqg'}
{'comment': "In Indiana, they have a window that prints a summary of your choices. You can't actually take the paper, but I guess it's somewhere?\n\nThe box with an m in the background? \n[https://www.wfyi.org/files/wfyi/articles/original/ap22042736103934.jpg](https://www.wfyi.org/files/wfyi/articles/original/ap22042736103934.jpg)", 'created': '2024-11-07 15:28:36', 'submission_id': '1gl5oqg'}
{'comment': "Here in Texas your ballot prints out the machine and then you take it to another machine that you put it in. Didn't understand the whole point in that. I think it was so people could physically see their ballots marked.", 'created': '2024-11-07 19:32:27', 'submission_id': '1gl5oqg'}
{'comment': 'For sure, and it’s not surprising. I was just reiterating.', 'created': '2024-11-07 01:59:50', 'submission_id': '1gl5oqg'}
{'comment': "Yeah, in fact he's been pushing election security this whole race. What's the harm in doing just that?", 'created': '2024-11-07 02:15:25', 'submission_id': '1gl5oqg'}
{'comment': "You are just another mindless idiot who can't see they are responsible for Trump. Keep saying dumb and ignorant things. \n\nWe'll just ignore Trump's most outperforming demographics and blame it on men. Fucking brainless tool.", 'created': '2024-11-06 22:20:58', 'submission_id': '1gl5oqg'}
{'comment': "It's not an excuse though its reality. Young men regardless of race are really struggling the way racist white people struggle with accepting people of color. You are raised a certain way and then all of that shifts and men more so when uneducated struggle to adapt to that change. Add in social media where you got the whole Alpha male/tradwife bullshit and it's a recipe for disaster. Trump is telling these people he can fix it quickly and bring us back to a day where men are men and woman are women. The economy will be magically fixed and all these people will become super wealthy somehow. Some will realize it's bs but most will just hold onto whatever he is selling and look for someone to blame(immigrants). \n\nTelling these men that it's just an excuse won't help them see the light. They've already dug their heels in.", 'created': '2024-11-07 00:02:20', 'submission_id': '1gl5oqg'}
{'comment': 'Yes that is amoral\n\nMoral is what we’ve been doing\n\nImmoral is purposely doing worse\n\nWe just need to find a way to tap into people’s existential fear. Forget being cool and empathetic democrats, that doesn’t play in the blue wall apparently. Now we stoke fear and call people low iq and that local republican owned business has a secret pedophile basement', 'created': '2024-11-07 00:05:32', 'submission_id': '1gl5oqg'}
{'comment': 'MLM execs too', 'created': '2024-11-07 13:52:40', 'submission_id': '1gl5oqg'}
{'comment': '☝️GOOD COMMENT.', 'created': '2024-11-07 13:24:07', 'submission_id': '1gl5oqg'}
{'comment': 'Potato, potato. Who cares\n\nhttps://preview.redd.it/14roshselezd1.jpeg?width=1116&format=pjpg&auto=webp&s=a8171903ed63f8a8fc960062d32a845c95968d19', 'created': '2024-11-07 05:02:39', 'submission_id': '1gl5oqg'}
{'comment': 'Yes ffs. This red wave.\n\nhttps://preview.redd.it/t715jnr3aezd1.jpeg?width=1116&format=pjpg&auto=webp&s=4600561cd29cb4a58442061aa8b3f9e77554def9', 'created': '2024-11-07 03:59:11', 'submission_id': '1gl5oqg'}
{'comment': 'The key word is “margin” Do you know what margin means? It doesn’t mean the wave was bigger. A bigger wave would have a larger number of voters. A six foot wave is bigger than a five foot wave, but it’s still a 6 foot wave if you compare it against a four foot wave.', 'created': '2024-11-07 04:04:56', 'submission_id': '1gl5oqg'}
{'comment': 'You can do both and there is no harm in that.\xa0', 'created': '2024-11-07 22:44:08', 'submission_id': '1gl5oqg'}
{'comment': 'Nah, Trump voters and non-voters are responsible for Trump. But good job proving my point, it never takes long for you guys to show your true colors and get aggressive.', 'created': '2024-11-06 22:28:49', 'submission_id': '1gl5oqg'}
{'comment': "If it's reality, then the only ones you have to blame for it are the very fascists you voted for, some of whom have been in power for decades and caused the collapse of the education system in the first place.\n\nNo one is responsible for what happened yesterday, and in your own lives, but you. You voted for Trump. You've been the ones in charge since the inception of the United States. Since civilization began. You had the power to wield the media to tell you what you wanted to hear and empower yourselves, to give yourselves the support and love you needed, but you didn't -- instead you let demagogues do it for you, and now you have sentenced our country and species to death to... *checks notes* own the bitches\n\nYou can wax poetic on how bad you feel all you want to; the women you blame for your suffering have gone through infinitely worse, at your hands, and largely still didn't do anything as stupid as what you did today.\n\nYou are responsible for your own actions and choices in this life. I just hope, in a few years when most of us are dead, that you'll be able to cope with the blood on your hands.", 'created': '2024-11-07 00:33:38', 'submission_id': '1gl5oqg'}
{'comment': 'I mean.., okay I can’t really argue that. It is pretty disgusting that racism, sexism, betraying one’s country, and actual Hitler quotes weren’t enough for these people. We’ll have to turn all their children trans and spread a gay plague', 'created': '2024-11-07 00:07:28', 'submission_id': '1gl5oqg'}
{'comment': 'You’re mistaking a ratio for an absolute change. The absolute number of red voters declined by 3M. However because the total number of voters declined by 18M, the ratio increased.\n\nThis is a very similar error to mistaking the size of the area in an election map with support, instead or sizing the area to population.\n\nIt wasn’t a red wave (-3M), rather it was a blue drought (-15M). It’s not that the Republicans beat us, it’s that we didn’t show up to the game.', 'created': '2024-11-07 05:09:55', 'submission_id': '1gl5oqg'}
{'comment': 'busdrivermike, you should stick to driving buses.', 'created': '2024-11-07 04:40:36', 'submission_id': '1gl5oqg'}
{'comment': 'The *nOt AlL mEn* crowd will be out in droves along with their besties the "SHE WAS A COP ACAB" people who ignore black turnout. \n\nYoung white people are about to learn some hard lessons that I wish the world didn\'t have to teach them.', 'created': '2024-11-06 23:02:05', 'submission_id': '1gl5oqg'}
{'comment': '>to give yourselves the support and love you needed, but you didn\'t\n\nWomen: I\'m tired of giving men emotional labor, you all do it for yourselves!\n\nMen: Okay. *\\*Men give each other emotional support\\**\n\nAaaand it turns out it\'s just "Fight Club". That was a pretty obvious cause and effect we saw coming. You left the boys alone in the woods with Andrew Tate, and Elon Musk and told them to give each other support - what did you think was going to happen?\n\n>!Now you\'re going to want to make it personal, so lets make it personal. I voted for Kamala. I voted for Hilary. Hell I voted for Hilary in 2008 Primaries against Obama. I happened to have been raised primarily by women, so I had healthy support systems. My friends who were left alone in the woods with their dads - 3 times Trump voters. But yeah lets keep letting Men get emotional support from other men. Lol. That\'s how all of the Abrahamic religions started. !<', 'created': '2024-11-07 01:04:32', 'submission_id': '1gl5oqg'}
{'comment': 'Now you get it! 😀', 'created': '2024-11-07 00:09:45', 'submission_id': '1gl5oqg'}
{'comment': 'lol man you’re the second guy to split hairs with semantics. You’re acting like there’s a strict definition of “wave.” And yes, the Republicans beat our asses.', 'created': '2024-11-07 05:13:53', 'submission_id': '1gl5oqg'}
{'comment': 'Any word on progress on… THE AGENDA ⚡️?\n\nFeminists? Double time on the castration station.\n\nImmigrants? How’s the border tunnel coming along? We can provide additional pets… I mean rations. \n\nLgbtq? You keep up the rainbow glitter. It’s like garlic to a vampire to these people.\n\nWhite guys for Harris? We’ll have to rebrand. You guys are now in charge of global emasculation. There isn’t actually a project there, we just make fun of the alpha male wannabes.\n\nEdit: oh! And send word to Taylor swift and see if she’ll put on another concert. She doesn’t work for the AGENDA⚡️. But the Magas get super upset when she’s around for some reason.', 'created': '2024-11-07 00:28:24', 'submission_id': '1gl5oqg'}
{'comment': 'Sorry. I’m an engineer and sometimes take things too far. I see your point. It indeed is a red wave.', 'created': '2024-11-07 06:23:30', 'submission_id': '1gl5oqg'}
{'comment': "He's right. Look at the math. 3 million fewer people voted for Trump than 2020. 15 million Dems didn't show up. Also makes me wonder about election commission shenanigans.", 'created': '2024-11-07 14:56:12', 'submission_id': '1gl5oqg'}
{'comment': 'The high school furries are making pocket litter boxes to maintain their true selves in the oppressive regime and a friend will secretly add more sodium to her diabetic trumper husbands dinner but that’s all we’ve got…for now', 'created': '2024-11-07 00:35:00', 'submission_id': '1gl5oqg'}
{'comment': 'Gracious dignity.', 'created': '2024-11-07 14:57:14', 'submission_id': '1gl5oqg'}
{'comment': 'One of the biggest shocks to me is how much lower democratic voter turnout was. Apathy I guess but damn.', 'created': '2024-11-06 19:27:41', 'submission_id': '1gl54pa'}
{'comment': 'Not a single one of them will take responsibility, despite gleefully wishing for Dems to lose. Not a single fcking one.', 'created': '2024-11-06 20:26:28', 'submission_id': '1gl54pa'}
{'comment': 'With how many people early voted, I still can’t wrap my head around the low turnout, especially for Dems.\n\nEspecially when you consider all the momentum she had going in to Tuesday… like what the fuck happened??', 'created': '2024-11-06 20:34:59', 'submission_id': '1gl54pa'}
{'comment': 'When American voters had a moment to stand up to a dictator they said nah. We good please proceed… we are fucked now.', 'created': '2024-11-06 19:46:23', 'submission_id': '1gl54pa'}
{'comment': 'You had a pile of shit or a pizza to choose from, you starved because you didn’t like mushrooms.', 'created': '2024-11-06 22:33:36', 'submission_id': '1gl54pa'}
{'comment': 'I think democrats need to do two things. Invest heavily in year round digital media to improve messaging and get better temperature checks for the base. We laughed at transgender operations for illegal migrants but that turned out to be something important to republicans. \n\nSecond democrats need to actually listen to voters and make promises they can keep. If voters tell you the economy is bad, don’t gaslight them by pointing to statistics compared to the world. \n\nLastly, the party needs a direction. Whether it’s right left or center. This wide ranging coalition isn’t electable. It forces candidates to scatter all over the political spectrum. That’s fine for down ballot but it makes electing a president very difficult.', 'created': '2024-11-06 19:31:16', 'submission_id': '1gl54pa'}
{'comment': "I'm entering the anger phase. I am a liberal because as the wealthiest nation that has ever existed I believe we have the means and the responsibility to ensure that no one in our borders needlessly suffer. But I can't continue to fight against people who are actively voting against their own best issues. I will fight to prevent people from hurting others, but I'm done trying to protect people from their own choices. The leopard can have a free pass towards your face as far as I'm concerned.", 'created': '2024-11-06 20:21:35', 'submission_id': '1gl54pa'}
{'comment': 'At times like this, I look up at night and find a strange sense of relief in knowing it’s all intrinsically meaningless; all our beliefs, all our actions, anything anyone has ever done or will do. When the earth is a barren rock, it will be as if we never existed at all.', 'created': '2024-11-06 20:17:10', 'submission_id': '1gl54pa'}
{'comment': 'Always vote for small progressive steps. Always.', 'created': '2024-11-06 22:18:30', 'submission_id': '1gl54pa'}
{'comment': "That's what I want to say. They are responsible for what happens next.", 'created': '2024-11-06 22:51:13', 'submission_id': '1gl54pa'}
{'comment': 'The republicans fear tactics and bullying worked on the weaker democrats and created enough “reasonable doubt” that many just decided they didn’t like either one so didn’t bother voting.', 'created': '2024-11-06 20:12:56', 'submission_id': '1gl54pa'}
{'comment': "Well they did succeed in destroying the two party system, we are pretty much guaranteed one-party kleptocratic fascism for decades. It's just like Susan Sarandon wanted except there will be no progressive revolution to save us. I'm not giving up but it won't be rich fake progressives who save us, that's for certain.", 'created': '2024-11-06 19:36:15', 'submission_id': '1gl54pa'}
{'comment': '25 million Catholics are democrats. \n\nAbortion is not the priority issue for a presidential campaign, especially one run by a woman. \n\nBeing right, qualified, educated, sane, doesn’t mean **shit** when you’re **a woman.**', 'created': '2024-11-06 20:09:15', 'submission_id': '1gl54pa'}
{'comment': 'Message sent and received we did it, Reddit, we broke the two party system!!! \n\n/s for the dipshits.', 'created': '2024-11-06 22:28:08', 'submission_id': '1gl54pa'}
{'comment': "I've been supporting progressive causes and politicians for forty years and I'm so embarrassed by these fucking tankies and children that I don't even label myself a progressive anymore.", 'created': '2024-11-06 20:39:18', 'submission_id': '1gl54pa'}
{'comment': "Politicians don't care about people who don't vote. They literally are hearing nothing from you. You might as well not exist.", 'created': '2024-11-07 02:13:42', 'submission_id': '1gl54pa'}
{'comment': None, 'created': '2024-11-06 22:34:01', 'submission_id': '1gl54pa'}
{'comment': "The Democrats need to STOP BLAMING OTHERS. Blame ourselves.\n\nThere should have been a Primary, the message of status quo to the Economy was a terrible message. Stop pretending like calling out his terrible policies/behavior/beliefs ever mattered, they didn't in 2016, they didn't again.\n\nWe deserve this, we did this to ourselves... again.", 'created': '2024-11-06 19:39:34', 'submission_id': '1gl54pa'}
{'comment': 'Yeah fuck them, ridicule them for life. They ended democracy', 'created': '2024-11-07 03:39:09', 'submission_id': '1gl54pa'}
{'comment': 'And we thought 2020 was bad. This time we will have to live through it out in the real world.', 'created': '2024-11-07 05:07:20', 'submission_id': '1gl54pa'}
{'comment': 'And here comes the blame game…', 'created': '2024-11-06 19:27:16', 'submission_id': '1gl54pa'}
{'comment': 'Not to be conspiratorial but do we really believe that 15 million democrats decided to sit this one out??? With all irregularities especially in swing states something seems very fishy to me.', 'created': '2024-11-07 08:44:56', 'submission_id': '1gl54pa'}
{'comment': 'And now we all suffer.', 'created': '2024-11-07 16:18:58', 'submission_id': '1gl54pa'}
{'comment': 'Blame game isn’t going to solve anything. Time to look in the mirror figure out what needs to change. The electorate is changing. What applied to groups 4 or 8 or 16 or 20 years ago may not apply the next election. Need to be reaching people nonstop to understand what is actually important to them. \n\nAssess where and why the messaging fell flat nationally and what the messaging was locally that was so effective.\n\nNeed to a full time messaging operation hammering Republicans anytime something goes wrong. \n\nNeed to make inroads into the “bro” culture spaces: UFC, gambling, crypto, etc.', 'created': '2024-11-06 20:01:35', 'submission_id': '1gl54pa'}
{'comment': '3rd party voters arent redeemable, its all about bringing up youth voting %. that the largest voting bloc group repeatedly has the worst turnout % and democrats keep choosing to chase flipping rural soccer moms is insanity. \n\nmy dream is also for a candidate to run to the left for once. having elections where the choices are a center/center-right candidate vs a far right candidate just hasnt been working', 'created': '2024-11-06 22:28:24', 'submission_id': '1gl54pa'}
{'comment': 'How the fuck, I mean seriously how in the fuck, is it a third party voters fault when the numbers she lost by are multiples of the total 3rd party vote?? Even if she got every 3rd party and protest vote she would have still lost. \n\nThis is 100% the fault of her campaign insisting that democrats wanted to be a party that welcomed Liz “war crimes are in my blood” Cheney with open arms and insisted it was a moderate party. Moderates don’t win shit.', 'created': '2024-11-06 19:31:24', 'submission_id': '1gl54pa'}
{'comment': 'Argued and tried to persuade a young voter at a Walmart day before election\n\nLiterally said she hates 2 party system and said she thought we had an oligarchy lol... Like for real? Had to explain only one candidate was acting like an oligarch\n\nPeople are so dumb', 'created': '2024-11-07 07:53:14', 'submission_id': '1gl54pa'}
{'comment': "Our messaging is off. We need to secure the vote and figure out who we are as Democrats. What is A 2028 Democrat? Will we just be an anti Trump party or can we be more ? We're MORE- Let's get it done!", 'created': '2024-11-07 13:03:31', 'submission_id': '1gl54pa'}
{'comment': 'The only way to fix a two party system is ranked choice voting. Neither of the two major parties will allow that to happen since it would mean having to campaign on actual policy (and Republicans refuse to do that for the most part now).', 'created': '2024-11-06 19:58:50', 'submission_id': '1gl54pa'}
{'comment': 'I didn’t vote because I think I’m sooooo special ❄️, so if I don’t vote, nobody will, and then the whole political system will be forced to change ✨ (extreme sarcasm here in case nobody got that)', 'created': '2024-11-07 00:51:10', 'submission_id': '1gl54pa'}
{'comment': "Some times progressives' are too much an idealist. If it can't be exactly what I want, I won't vote for it, when in really the choice is who is the least imperfect of the two. By not voting for one of them, you are giving the worst option the election.", 'created': '2024-11-06 20:26:51', 'submission_id': '1gl54pa'}
{'comment': 'Yup, next election people will run to the center. I’ll probably vote for them too, tired of DNC inside agendas.', 'created': '2024-11-06 19:40:11', 'submission_id': '1gl54pa'}
{'comment': 'Amen!', 'created': '2024-11-06 20:09:52', 'submission_id': '1gl54pa'}
{'comment': '[removed]', 'created': '2024-11-06 20:40:36', 'submission_id': '1gl54pa'}
{'comment': 'https://youtu.be/XLiagIdA84c', 'created': '2024-11-07 02:20:26', 'submission_id': '1gl54pa'}
{'comment': 'Democrat or Republican, what is clear is the majority of Americans would rather have the country turn into garbage than have women as POTUS, not once but twice. 2025 is going to hell.', 'created': '2024-11-07 02:51:04', 'submission_id': '1gl54pa'}
{'comment': 'And it will make the Democratic Party move further to the right, so their “sending a message” didn’t work to make them give more consideration to progressives.\n\n[democrats will move to the right if they lose](https://www.vox.com/politics/378977/kamala-harris-loses-trump-2024-election-democratic-party)', 'created': '2024-11-07 02:57:10', 'submission_id': '1gl54pa'}
{'comment': "It's just amazing that when liberals and progressives needed to step up THE MOST, they crumbled and whimpered before the face of fascism. How pathetic. Internal struggles at such a crucial point in history.\n\nNothing else will be more defining of the failure that is the American people than November 5th 2024.", 'created': '2024-11-08 02:08:08', 'submission_id': '1gl54pa'}
{'comment': "bruh, that is the message be more conservative\n\nIt's the centrist more conservative democrats that stayed home. \n\nI voted, but got so tired to defend the radical left's extreme woke rhetoric to my conservative democrat friends and family. Like I could not defend in any way having a wide open boarder. \n\nconservative democrats would not vote for Trump, and are disillusioned with our party, so they stayed home.", 'created': '2024-11-06 20:21:09', 'submission_id': '1gl54pa'}
{'comment': 'Tsk tsk tsk\n\nHas this ever been effective?', 'created': '2024-11-06 19:43:06', 'submission_id': '1gl54pa'}
{'comment': 'If democrat candidates can’t even motivate their base than prepare to keep losing I guess?', 'created': '2024-11-06 20:12:16', 'submission_id': '1gl54pa'}
{'comment': 'Maybe don’t run to the right and say “trust me bro”? We remember Obama', 'created': '2024-11-06 21:00:24', 'submission_id': '1gl54pa'}
{'comment': 'they tried being more republican this cycle. The lesson is BE MORE ENGAGING TO YOUR BASE.', 'created': '2024-11-06 21:20:44', 'submission_id': '1gl54pa'}
{'comment': 'Lol what take is this? She went from courting liberal voters to going full on conservative and it lost her the election.', 'created': '2024-11-06 20:08:32', 'submission_id': '1gl54pa'}
{'comment': "As a Democrat, I hope the party takes a good hard look at some of its policies. Instead of blaming everyone except ourselves, maybe consider looking at why people didn't vote for Democrats?", 'created': '2024-11-07 07:01:45', 'submission_id': '1gl54pa'}
{'comment': 'Bernie sanders.', 'created': '2024-11-07 09:31:41', 'submission_id': '1gl54pa'}
{'comment': 'Looking at the exit polls, a significant number of those Dems showed up for Trump, especially in the swing states.\n\nPoor turnout didn’t lose the election. Turnout was fine in the swing states and no other states flipped, despite the low turnout. Trump won because he won over a lot of low engagement likely Democrats with simple, direct economic messages.', 'created': '2024-11-07 11:01:00', 'submission_id': '1gl54pa'}
{'comment': 'Yes, by all means blame them, not the clown show of coalition building that is a hallmark of the Democratic Party.', 'created': '2024-11-06 20:40:59', 'submission_id': '1gl54pa'}
{'comment': 'What if people didn’t vote because they weren’t happy about how the party handled their nominee? Might be a W for them if heads actually role. Wouldn’t have happened with Kamala winning. Just kicking the can.', 'created': '2024-11-06 21:48:16', 'submission_id': '1gl54pa'}
{'comment': 'Our own party said fuck your feelings.\xa0', 'created': '2024-11-07 03:04:57', 'submission_id': '1gl54pa'}
{'comment': 'You are directing the anger in the wrong direction.', 'created': '2024-11-07 03:37:19', 'submission_id': '1gl54pa'}
{'comment': "It is time to look inward folks. 15 million people stayed home because they weren't enthused. This party has spent the last 8 years trying to pull people to the middle, and it has failed. We've gotten 3 unexciting, under-motivating candidates in a row, all of which were in some way or another forceable inserted onto the ticket by the democratic leadership and the DNC. Maybe instead of chastising people that stayed home we start asking why the hell they stayed home.", 'created': '2024-11-07 05:12:23', 'submission_id': '1gl54pa'}
{'comment': 'Apathy, short memories and a whole lotta misogyny.', 'created': '2024-11-06 19:43:09', 'submission_id': '1gl54pa'}
{'comment': 'Especially when everyone was reporting "record voter turnout" and both parties had fewer votes than they did in 2020... Mark my words, something is very wrong here', 'created': '2024-11-06 21:15:31', 'submission_id': '1gl54pa'}
{'comment': 'I don’t understand, I thought we were on track to have record turnouts. What the fuck happened.', 'created': '2024-11-06 21:56:13', 'submission_id': '1gl54pa'}
{'comment': 'By failing to show up to vote, Gen Z and Millennials fucked themselves harder than the Boomers ever could.', 'created': '2024-11-06 21:18:36', 'submission_id': '1gl54pa'}
{'comment': "I wanted Harris to win badly, but abortion rights passed in four states that went to Trump, two of them swing (Arizona and Nevada) with the other two being Missouri and Montana. States that have been rock-solid blue (Illinois, New York, New Hampshire, California) had cracks form in the foundation. This isn't just a policy or candidate issue; it's a party issue.\n\nIt appears that anger is the emotion you need to speak with nowadays. Hope and joy have no sway. The next person Democrats put up there had better be mad as hell to reflect the constituency.", 'created': '2024-11-07 02:06:24', 'submission_id': '1gl54pa'}
{'comment': 'All day I’ve been like where did 15 MILLION people go?! Did they NOT believe in Harris THAT much, THAT overconfident, THAT “just over the whole thing”?!? What was it?! Where were they!?', 'created': '2024-11-07 00:25:55', 'submission_id': '1gl54pa'}
{'comment': 'The west coast mail ballots are still outstanding from the overall turnout numbers. Not that they’re all Dems, but it’s probably at least ten million total.', 'created': '2024-11-06 20:22:52', 'submission_id': '1gl54pa'}
{'comment': 'Not so much lower as (like 2016) Jill Stein/Third party took away enough votes to elect Trump.....again.', 'created': '2024-11-06 19:51:31', 'submission_id': '1gl54pa'}
{'comment': 'You guys have to stop doing this. It is the responsibility of the candidates to inspire voters. No voter owes their vote to anyone. These aren’t votes kamala was enrolled too and got robbed. This was a complete failure by an out of touch democratic leadership.\n\nThey moved right when they should have moved left. \n\nOkay also its the fact that all major media outlets, especially twitter. We should probably not just sell our elections to the highest bidder', 'created': '2024-11-06 22:33:51', 'submission_id': '1gl54pa'}
{'comment': 'That’s what I’m struggling with. It doesn’t add up.', 'created': '2024-11-06 23:42:08', 'submission_id': '1gl54pa'}
{'comment': 'why I was warning people not to be too comfortable with the early voter dadta and the iowa exit polls.', 'created': '2024-11-07 06:37:38', 'submission_id': '1gl54pa'}
{'comment': 'We are all scared to sound like "them" but what if there WAS election fraud? So much of Republican bluster is projection. And, boy, would that type of chaos play well for Russia, who we know have tried to access voting machine data before. I\'ll wait and see what various teams of election watchdogs and lawyers come up with but I am definitely thinking there\'s a non-zero chance that some election fraud took place. Let\'s not pretend they would be above that at this point given the candidate.', 'created': '2024-11-07 20:51:00', 'submission_id': '1gl54pa'}
{'comment': 'Yep.. nothing will mattter for a very long time but hard right maga issues.', 'created': '2024-11-06 20:09:49', 'submission_id': '1gl54pa'}
{'comment': "But is he really a dictator? That's just it, they dont think he is.", 'created': '2024-11-06 23:19:23', 'submission_id': '1gl54pa'}
{'comment': 'Also cut the we go high when they go low. Apparently Americans want to be told they suck and fear mongering \n\n\nHow someone overly qualified for the job losses to someone that fucking is the least qualified individual is wild.', 'created': '2024-11-06 19:55:42', 'submission_id': '1gl54pa'}
{'comment': 'I agree with this. They need to micromanage the hell out of him, make ads when the economy is not performing well, or when he adds to the deficit. Hell even when cant open a garbage truck door. \n\nAlso, if there is another presidential election, the future candidate should focus primarily on economic issues rather than social not saying social issues doesn’t count but clearly the american people doesn’t care about that on a presidential scale. Have local government focus on social issues.', 'created': '2024-11-06 20:10:08', 'submission_id': '1gl54pa'}
{'comment': '>Second democrats need to actually listen to voters and make promises they can keep. If voters tell you the economy is bad, don’t gaslight them by pointing to statistics compared to the world.\n\nTf. If anyone\'s doing the gaslighting it\'s the people saying the "economy is bad" while driving in an expensive car or wasting even more money donating to Trump to purchase his nfts. Democrats werent gaslighting, they operated in reality. Gas prices down. Inflation down. Covid gone. Alliances with allies reestablished. Economy is on the uptrend for many people. The loudest people claiming the economy is bad are fucking billionaires fleecing their own workers, shitting on union and donating to Trump.\n\nIf this election taught anything, campaigning on truth doesn\'t matter. If the opposition lies, don\'t expect voters in swing states to hold them accountable. Basically the best way to fight liars is to be a better liar and launch a better smear and fear campaign. If anything, this election signals that Democrats need to throw away the "high road" playbook and go with a dirty in the trenches strategy. Truth doesn\'t work, positivity ain\'t selling. Fearmongering and lies gets voters to turnout.', 'created': '2024-11-06 22:48:15', 'submission_id': '1gl54pa'}
{'comment': 'Amen to your last point. We tried making this “tent” so big that we forgot to put the poles up and it collapsed. \n\nWe need to pick a direction and go for it, especially at the national level.', 'created': '2024-11-06 20:07:26', 'submission_id': '1gl54pa'}
{'comment': "I don't want to be 24 crazy disinformation people like the others", 'created': '2024-11-06 22:47:20', 'submission_id': '1gl54pa'}
{'comment': ">\xa0Second democrats need to actually listen to voters and make promises they can keep.\n\n\nYeah, agree with you right here.\xa0 The one moment in the debate where I thought Trump did well was when Kamala claimed she'd sign abortion legislation into law.\xa0 Trump called her out on how the senate doesn't have the votes and that wouldn't happen.\xa0 The dude was..\xa0 yuck..\xa0 right.", 'created': '2024-11-06 20:23:12', 'submission_id': '1gl54pa'}
{'comment': 'too difficult not happening.', 'created': '2024-11-06 23:39:45', 'submission_id': '1gl54pa'}
{'comment': 'Democrats need a media arm like Republicans have', 'created': '2024-11-07 01:11:09', 'submission_id': '1gl54pa'}
{'comment': '“Improving messaging” is futile if a significant portion of the population is living in a non-reality, deeply entrenched in propaganda-fueled beliefs. This is not, and has never been, merely a messaging issue. It’s a multi-faceted problem that involves:\n\n\t•\tSystematic brainwashing and the intentional dumbing down of the population—the GOP’s push to dismantle the Department of Education is a prime example. Keeping people uninformed makes them easier to manipulate.\n\t•\tExploiting genuine fears and anxieties—instead of offering solutions, they capitalize on people’s concerns to fuel anger and division.\n\t•\tStoking hatred and encouraging ‘othering’—this tactic keeps people divided and distracted, preventing them from questioning the structures that enrich the powerful.\n\t•\tUndermining racial equality—we must recognize that a large segment of white Americans remain uncomfortable with true equality, which the GOP manipulates to its advantage.\n\t•\tMainstream media’s deference to right-wing narratives—by failing to challenge the GOP’s misinformation, media outlets often amplify and legitimize these harmful ideas.\n\nNo amount of refined messaging can address these entrenched issues. Real change will only happen when the GOP’s grip on these tactics is broken and people recognize that they’ve been misled into supporting policies that do not benefit them.', 'created': '2024-11-07 15:31:17', 'submission_id': '1gl54pa'}
{'comment': '[removed]', 'created': '2024-11-06 20:09:41', 'submission_id': '1gl54pa'}
{'comment': 'and also a better campaign than "They are weird"', 'created': '2024-11-06 23:10:53', 'submission_id': '1gl54pa'}
{'comment': 'So basically Democrats need to produce propaganda and be a cult...', 'created': '2024-11-06 23:55:33', 'submission_id': '1gl54pa'}
{'comment': "Actually 3 things, For the love of God find a candidate that is appealing to left and right voters. We keep on making the same mistake of choosing unappealing candidates. \n\nDon't ask me who would have been a better nominee but we have 4 years to prepare.", 'created': '2024-11-07 00:22:18', 'submission_id': '1gl54pa'}
{'comment': '\n\nI tried to get people out to vote. Now my goal is to survive this.', 'created': '2024-11-07 02:10:17', 'submission_id': '1gl54pa'}
{'comment': 'That just made me remember Giant Meteor 2016: Just End It Already.', 'created': '2024-11-06 20:31:52', 'submission_id': '1gl54pa'}
{'comment': 'Absolutely. It worked for Bill Clinton, Obama, and Biden. It probably would’ve worked for Hillary and maybe even Kamala if they’d been men.', 'created': '2024-11-07 02:49:27', 'submission_id': '1gl54pa'}
{'comment': 'Honestly… yeah. Much as abortion access is important to me as a woman, I’m part of the DNC’s base. I will vote for whoever they put forward unless the candidate is absolutely horrible. But there are a lot of people that won’t cross the party line for a candidate that supports abortion rights, at least not for president. Seems to work differently at the state level (see the Kansas special election to support abortion rights).', 'created': '2024-11-07 02:47:23', 'submission_id': '1gl54pa'}
{'comment': 'Exit polls show that the group single-handedly tip the election for Trump was 45-56. Harris won every group younger or older than that. Stop complaining about the kids lol, they actually lived up to the hype and Harris had the largest margin with them.', 'created': '2024-11-06 21:02:18', 'submission_id': '1gl54pa'}
{'comment': '[removed]', 'created': '2024-11-06 22:44:45', 'submission_id': '1gl54pa'}
{'comment': 'no its the voters.', 'created': '2024-11-06 23:41:12', 'submission_id': '1gl54pa'}
{'comment': 'Agreed !', 'created': '2024-11-06 19:58:37', 'submission_id': '1gl54pa'}
{'comment': "I agree, we have not learned our lesson. The DNC purposely blocked Bernie Sanders as the presidential nominee and instead choose Hillary Clinton in 2016, we got Trump as a result. My personal opinion is that Bernie most likely would have won that election but even if he didn't he was a much better choice than Clinton.\n\nWe got lucky in the 2020 election because as much as I like Biden, we barely won the election. With how bad Trump performed we should have won by a landslide.\n\n2024 we allowed Biden to be the nominee without any Primary. This is a huge mistake considering his approval ratings were as low as Trumps were at the end of his term. Not to mention his obvious mental decline that every person in his cabinet choose to ignore and defend.\n\nThis brings us to Kamala, our VP who was essentially in the shadows her entire VP term. We did not see her attempt yet alone achieve anything in her whole entire VP term. Why did they think she had the best chance at winning considering the low approval ratings?\n\nTrump is a danger to this country and we dropped the ball big time. How could our party be this stupid.", 'created': '2024-11-07 00:46:16', 'submission_id': '1gl54pa'}
{'comment': 'Yep. Forced a candidate on us. They should have completely gotten away from the current administration and it would have been way closer', 'created': '2024-11-07 00:23:39', 'submission_id': '1gl54pa'}
{'comment': 'Yep. \n\nWhereas the blame fully lies on Republicans. Who stopped engaging in democracy in good faith. And instead weaponized propaganda and lies to achieve their goal of an authoritarian government.', 'created': '2024-11-06 19:35:17', 'submission_id': '1gl54pa'}
{'comment': '"It\'s racist latinos" that lost this for us. lol we are sad.', 'created': '2024-11-06 23:20:31', 'submission_id': '1gl54pa'}
{'comment': 'It feels like this entire sub is refusing to see this!!! You are so right!!!', 'created': '2024-11-06 19:37:36', 'submission_id': '1gl54pa'}
{'comment': 'They should have treated the Cheney endorsement the same way the Biden ‘20 campaign handled the Comey one, which was basically, “that’s nice, but we don’t really need it.” Not that it would have swung the results.', 'created': '2024-11-06 20:59:43', 'submission_id': '1gl54pa'}
{'comment': 'That math was either too complex, or not worth the Euphoric Value of "Not compromising my morals".', 'created': '2024-11-07 07:02:27', 'submission_id': '1gl54pa'}
{'comment': 'Next Election? Maybe if we’re lucky we will have a next election', 'created': '2024-11-06 19:49:01', 'submission_id': '1gl54pa'}
{'comment': 'Funny that you think the next election will even matter.', 'created': '2024-11-06 20:10:55', 'submission_id': '1gl54pa'}
{'comment': 'Will we even get another election?', 'created': '2024-11-07 05:53:06', 'submission_id': '1gl54pa'}
{'comment': 'Absolutely. 2028 will be Mega Centrist vs Super Hitler. \n\n(Spoiler: Mega Centrist wins, big relief!}', 'created': '2024-11-07 06:59:06', 'submission_id': '1gl54pa'}
{'comment': 'We have all gathered and declared that we will only vote for centrists like Biden. 15M people said they loooove the taste of the middle. \n\nThe lesson is: People want Mild Salsa.', 'created': '2024-11-07 07:05:01', 'submission_id': '1gl54pa'}
{'comment': 'Fuck those who didn’t vote because there wasn’t a primary. You think Green Party or any of the other minor parties had a primary? It’s not a requirement. The assignment was: don’t let Trump get reelected.', 'created': '2024-11-06 23:51:58', 'submission_id': '1gl54pa'}
{'comment': 'Where does the knight in shining armor live?', 'created': '2024-11-07 09:33:19', 'submission_id': '1gl54pa'}
{'comment': "I was hoping I would be wrong, but I guess people just can handle a black woman as president yet. It's really sad. Well, at least we will not have to vote for anyone in the future now.", 'created': '2024-11-06 20:28:25', 'submission_id': '1gl54pa'}
{'comment': 'So are we running a women again next time? \n\nI have two daughters and hope we have a female president sometime, but I want us to win!', 'created': '2024-11-06 23:09:31', 'submission_id': '1gl54pa'}
{'comment': 'With a dab of racism.', 'created': '2024-11-07 08:30:51', 'submission_id': '1gl54pa'}
{'comment': 'Survivors guilt from making it through the first term.', 'created': '2024-11-07 02:49:26', 'submission_id': '1gl54pa'}
{'comment': '[removed]', 'created': '2024-11-06 19:48:42', 'submission_id': '1gl54pa'}
{'comment': None, 'created': '2024-11-07 02:00:57', 'submission_id': '1gl54pa'}
{'comment': "Me being an older Gen Z and my husband being a Millennial we went out and voted in a deep red state. Every vote counts. The people who voted 3rd party are CLOWNS. There never will be a 3rd option. It's always A or B. It's a wasted vote when they decide to pick C, D or E. They should just take an L and vote for the better candidate. Because people like that we now have a dictator.", 'created': '2024-11-06 22:08:33', 'submission_id': '1gl54pa'}
{'comment': 'I think it’s Inflation. People voted their narrow, short-term concerns first!', 'created': '2024-11-07 04:44:40', 'submission_id': '1gl54pa'}
{'comment': 'I voted, but I can see how the 20 text messages a day could piss 15 million people off enough to say fuck it.', 'created': '2024-11-07 00:48:57', 'submission_id': '1gl54pa'}
{'comment': 'Jill Stein’s attempt to spoil the Democratic victory turned out to be unnecessary this year. The Democrats simply did not show up to vote in large enough numbers for the spoiler vote to play.', 'created': '2024-11-06 21:17:32', 'submission_id': '1gl54pa'}
{'comment': 'Less than a million voted third party. She was 15 million below 2020', 'created': '2024-11-06 20:08:24', 'submission_id': '1gl54pa'}
{'comment': 'No it did not. Trump was down 2 million votes this year, Harris was down 15 million. Almost 20%.', 'created': '2024-11-06 20:24:28', 'submission_id': '1gl54pa'}
{'comment': 'lol, no. \n\nWe lost this straight up', 'created': '2024-11-06 23:09:59', 'submission_id': '1gl54pa'}
{'comment': "Not exactly sure but from what I've seen the third party votes weren't enough to have changed anything, only like a million total. They all count and add up obviously they would have helped but doesn't seem like they would have been enough to effect the outcome.", 'created': '2024-11-06 21:30:05', 'submission_id': '1gl54pa'}
{'comment': 'They simply did not do that by voting third party; third party votes were inconsequential. Please be mad at the right thing. That is non voters (or republicans, you can be mad at them too.)', 'created': '2024-11-07 03:18:00', 'submission_id': '1gl54pa'}
{'comment': '> It is the responsibility of the candidates to inspire voters.\n\nIt\'s the responsibility of citizens to participate in democracy and no, "moving left" wouldn\'t do shit. She also didn\'t move right.', 'created': '2024-11-06 22:46:45', 'submission_id': '1gl54pa'}
{'comment': 'We cut that in august, bro\n\nor did you miss the entire "they\'re weird" thing', 'created': '2024-11-06 20:39:32', 'submission_id': '1gl54pa'}
{'comment': 'Goes hand in hand with listening to your voters. It people are down on the country and think things are hard then yeah they want to hear their politicians say America stinks. Democrats constantly heard not just from republicans but their own voters “hey man..things are kind of rough” and the rebuttal was constantly things actually aren’t that bad here! \n\nThat I mean obviously is a losing message. The huge difference between democrats and republicans right now is democrats tell voters what the humane one issue is while republicans listen to what the number one issue is.', 'created': '2024-11-06 20:03:16', 'submission_id': '1gl54pa'}
{'comment': 'Seems like we already cut that.', 'created': '2024-11-06 20:23:32', 'submission_id': '1gl54pa'}
{'comment': "Every single campaign promise depends on the outcome of the house and senate elections. It's sad voters don't know this.", 'created': '2024-11-06 21:02:25', 'submission_id': '1gl54pa'}
{'comment': 'Biden never recovered from the student loan forgiveness with young voters. Trump is good about promising things he can do or make it look like he can do. He will probably deport a few thousand people then claim the problem is fixed. \n\nDemocrats promised things that require bipartisan support knowing republicans won’t reach across the aisle anymore.', 'created': '2024-11-06 20:25:51', 'submission_id': '1gl54pa'}
{'comment': "But they did. It's the media that actually refused to talk about her policies.", 'created': '2024-11-06 20:58:34', 'submission_id': '1gl54pa'}
{'comment': "> The democrats essentially ran one giant gaslighting campaign.\n\nthe only person here gaslighting is you with this horseshit statement.\n\n> Like they could have talked about their real (and good) policies, but no.\n\nTHEY DID. THE FACT THAT YOU DIDN'T PAY ATTENTION IS NOT SOMETHING THEY CAN HELP.", 'created': '2024-11-06 20:40:52', 'submission_id': '1gl54pa'}
{'comment': 'I stopped hearing about populist policy once mark Cuban and other billionaires started heavily backing Harris publicly. Don’t get me wrong Trump has wealthy donors too but he keeps him in the shadows except for Dana White and he’s there as the UFC CEO not just some rich guy', 'created': '2024-11-06 20:15:40', 'submission_id': '1gl54pa'}
{'comment': 'Lolol that’s the elitist mentality that got us into this shit. Young voters broke 50% with Trump because of “propaganda”. It’s not going anywhere so what’s the solution', 'created': '2024-11-07 00:14:36', 'submission_id': '1gl54pa'}
{'comment': 'Obama isn’t coming through that door lol the candidate you’re describing is Obama. Harris tried the left right appeal and it just looks like you’re pandering. Hate to keep bringing him up but Trump makes it very clear he is not for the left. There’s no center anymore. You must choose a side. \n\nI think a Shapiro would’ve been a good candidate personally', 'created': '2024-11-07 00:33:11', 'submission_id': '1gl54pa'}
{'comment': 'lol they [in no way lived up to the hype](https://www.newsweek.com/democrats-genz-kamala-harris-trump-election-1981590).', 'created': '2024-11-07 07:01:18', 'submission_id': '1gl54pa'}
{'comment': 'It wasn’t the party, it was the voters.', 'created': '2024-11-07 01:52:17', 'submission_id': '1gl54pa'}
{'comment': "Who else could it possibly be? Lol.\n\nYou don't play the game you can't win, wtf. A child knows that.", 'created': '2024-11-07 07:03:50', 'submission_id': '1gl54pa'}
{'comment': '….hope the moral high ground is worth it. They fought a street fight and beat us. We can whine about norms or learn.', 'created': '2024-11-06 19:41:18', 'submission_id': '1gl54pa'}
{'comment': ">Whereas the blame fully lies on Republicans\n\nBro less people voted Republican this cycle than 2020 or 2016. They're just holding the line.\n\nPeople who dont vote are at the fault, the numbers are obvious.", 'created': '2024-11-07 07:06:05', 'submission_id': '1gl54pa'}
{'comment': "Because this is what Democrats do every year. It's always the voters fault, never theirs. 15 million voters didn't come out, they will admit this. They ran a campaign catered to centrists and Republicans who may reject trump because of his rhetoric, they will admit this. Yet, when those they catered to didn't vote for them enough, it's the people's fault who they didn't cater to. It's just denying reality.", 'created': '2024-11-06 22:01:53', 'submission_id': '1gl54pa'}
{'comment': 'That alone might not have but then they would have some much messaging time that wasn’t taken up by marching Cheney all around the country', 'created': '2024-11-06 21:16:02', 'submission_id': '1gl54pa'}
{'comment': 'there will be show elections much like Russia. I expect the GOP will target the right to keep your vote anonymous. Then they will intimidate voters.', 'created': '2024-11-06 20:04:41', 'submission_id': '1gl54pa'}
{'comment': "we ran to the middle the past several months, we campaigned with the Cheneys.\n\nyou're wrong", 'created': '2024-11-07 08:45:23', 'submission_id': '1gl54pa'}
{'comment': 'Ya, that’s the ignorant attitude that got the party here.\n\nChange everyone but me!\n\nClearly that was your mission and not all others in the party or in the middle otherwise Harris would’ve won. Doesn’t take a genius to connect those dots.', 'created': '2024-11-07 01:19:55', 'submission_id': '1gl54pa'}
{'comment': 'I would encourage you to not wait for a knight in shining armor to save the Democratic Party.', 'created': '2024-11-07 15:29:21', 'submission_id': '1gl54pa'}
{'comment': 'Racism is definitely a problem in this country. If a non white man ran again, I don’t know that he’d be able to win. But I interpret the gains trump made with latinos and blacks as misogynistic.', 'created': '2024-11-06 21:00:59', 'submission_id': '1gl54pa'}
{'comment': "We've now seen two female presidential candidates and they've both gone down in flames. No body seems to want to say it but it certainly makes me question whether choosing a female candidate is a recipe for failure. I'd like to think it isn't, but there are a lot of misogynistic people out there. \n\nThe other example is Pete Buttigieg. He's super articular, has a great demeanor, former veteran, so many characteristics for a great candidate and a great president, but sadly him being gay is a total deal-breaker for a huge portion of the country. It's depressing that the country remains so prejudiced and bigoted.", 'created': '2024-11-07 01:53:34', 'submission_id': '1gl54pa'}
{'comment': 'I think a big issue with some was they didn’t get to choose the candidate so they sat out', 'created': '2024-11-07 00:21:13', 'submission_id': '1gl54pa'}
{'comment': 'Meanwhile the UK version of the Republican Party just elected a black female immigrant to head the party', 'created': '2024-11-07 07:17:44', 'submission_id': '1gl54pa'}
{'comment': 'What was terrible about her campaign?', 'created': '2024-11-06 19:50:32', 'submission_id': '1gl54pa'}
{'comment': ">I think it’s Inflation. People voted their narrow, short-term concerns first!\n\nI would disagree. Extra money in paychecks is a big deal, but people voted for it while also voting for tariffs. They voted for something they don't understand will affect their paychecks because of Trump's deliberate obfuscations of the truth.", 'created': '2024-11-07 05:12:53', 'submission_id': '1gl54pa'}
{'comment': 'This is exactly what I’m worrying about. Democratic leadership fucked this up. Do not let them off the hook. \n\nYou’re saying they did everything right and just lost? Where do we even go from there', 'created': '2024-11-06 22:48:31', 'submission_id': '1gl54pa'}
{'comment': "No I didn't miss that I know that they somewhat stopped. But I mean a Biden is still playing Mr. Nice guy and the right calling them whatever and the left saying something back, the right going to tell teacher and that's all you hear about it.", 'created': '2024-11-06 22:19:28', 'submission_id': '1gl54pa'}
{'comment': "GOP didn't have the answers, though. Tariffs and mass deportations?? And they voted for that?", 'created': '2024-11-06 22:55:01', 'submission_id': '1gl54pa'}
{'comment': "Saying someone is weird is not the same as the bullshit that Trump was spewing. \n\nThat's what I mean.", 'created': '2024-11-06 22:20:20', 'submission_id': '1gl54pa'}
{'comment': 'She could phrase it honestly at least.\xa0 "If congress were blue, I would [something].\xa0 As it probably won\'t be in my term, I promise to keep the situation from getting worse whereas my opponent will actively [something]."\xa0\xa0\n\n\nTrump\'s strength is his perceived authenticity.\xa0 They must address that..\xa0 assuming there\'s another opportunity to address that.\xa0\xa0Democratic politicians can\'t keep speaking to an audience that fills in the gaps for them because that only works on educated voters that can fill in the gaps.', 'created': '2024-11-06 21:12:25', 'submission_id': '1gl54pa'}
{'comment': '**The truth about student loan forgiveness**\n\nApril, 12, 2024\n\nThe Biden-Harris administration today announced the cancelation of another $7.4 billion of federal student debt affecting more than 200,000 borrowers. This brings the total amount of canceled student debt by the administration to $153 billion for around 4 million borrowers.\n\nSource: https://www.statista.com/chart/32091/total-us-federal-student-loans-and-amount-cancelled/', 'created': '2024-11-07 00:19:20', 'submission_id': '1gl54pa'}
{'comment': "I saw a statement where the legacy media only talked about Harris's Medicare expansion proposal for a total of 35 seconds combined.", 'created': '2024-11-06 21:01:18', 'submission_id': '1gl54pa'}
{'comment': '[removed]', 'created': '2024-11-06 21:29:20', 'submission_id': '1gl54pa'}
{'comment': "Yeah, Trump doesn't have billionaire disphits jumping around in dark gothic maga gear at his rallies, that would be ridiculous.", 'created': '2024-11-06 20:23:59', 'submission_id': '1gl54pa'}
{'comment': 'To be fair it\'s kind of hard to say "screw big corporations" and then publicly take hundreds of millions of dollars from them.', 'created': '2024-11-06 20:34:54', 'submission_id': '1gl54pa'}
{'comment': 'Lol. People still see him as some rich guy.', 'created': '2024-11-06 20:59:32', 'submission_id': '1gl54pa'}
{'comment': 'they brought this on themselves.', 'created': '2024-11-07 17:05:16', 'submission_id': '1gl54pa'}
{'comment': ">They fought a street fight and beat us.\n\nNo. They engaged in fascist rhetoric. \n\nThe primary reason that we need the First Amendment is because voters need the opportunity to be informed, to make good decisions about who to vote for. In order to have a well-functioning democracy.\n\nThe Republican Party engages mostly in lies and misinformation, aimed at confusing voters. And getting people to vote for the wrong reasons. \n\nBut hey. If you want both sides to play that way, then we definitely can't ever have a functional democracy again.\n\nAssuming there's ever a free and fair election again.", 'created': '2024-11-06 19:52:15', 'submission_id': '1gl54pa'}
{'comment': 'If you at all fantasize about the 2028 candidate being *less* centrist you truly need to pass that shit.', 'created': '2024-11-07 07:01:14', 'submission_id': '1gl54pa'}
{'comment': 'I don’t wait for a fantasy. Kamala Harris was the democratic nominee. She’s an extremely capable leader. I voted for her. I have no chastity except for those who fail to realize we are a two party system and they must choose just one and they don’t like that and they can’t see the difference between the two candidates WHO REPRESENT a party with goals and policies and agendas so they stayed home so Donald trump could be elected. Those are the assholes looking for their “knight.”', 'created': '2024-11-07 20:25:55', 'submission_id': '1gl54pa'}
{'comment': "I agree. The combination of being black and a woman didn't help at all.", 'created': '2024-11-06 21:09:11', 'submission_id': '1gl54pa'}
{'comment': 'You’d be surprised how much internalized racism is hidden in that number.', 'created': '2024-11-07 01:44:19', 'submission_id': '1gl54pa'}
{'comment': "I also think Biden would have gotten more votes, which again, is a sad commentary on society...not because he isn't qualified, but with all the B's they put him through, he still would have done better numbers because he's a white man smh", 'created': '2024-11-07 08:32:20', 'submission_id': '1gl54pa'}
{'comment': 'I honestly think the only way we get a woman elected is if every candidate is a woman, including third parties.', 'created': '2024-11-07 02:35:33', 'submission_id': '1gl54pa'}
{'comment': 'The crazy thing is I think J.D. Vance is a closet gay man. In his book, he talk about how in high school he almost convinced himself that he was gay. I think with his crazy mema, if he came out, she would have shot him on site. So I think he has repressed it and that’s what makes him so weird.', 'created': '2024-11-07 03:54:00', 'submission_id': '1gl54pa'}
{'comment': 'Pete is like super human when it comes to politics. He’s crazy smart, but communicates in simple terms, and absolutely fearless. Personally I think he looks too young to run (stupid I know). I don’t think him being gay will matter. Being gay isn’t apparent like race or gender, so most casual voters prob wouldn’t even know. Not like they’d run attack ads on him being gay. If he was a bit more weathered looking I think he’d crush it. He at very least deserves a shot in a future primary', 'created': '2024-11-07 07:22:35', 'submission_id': '1gl54pa'}
{'comment': "The reality is this country doesn't want a woman as president. The DNC needs to find candidates to who can engage and win an election. Biden won because he was the sane white guy that told Trump to shut up at a debate. \n\nDoes it stuck that this country is still so racist, misogynist, etc absolutely. But Dems need to get over it and start working together. Perfect candidates don't exist and we need to get over it.", 'created': '2024-11-07 04:30:07', 'submission_id': '1gl54pa'}
{'comment': 'I mean "going down in flames" is a bit harsh. Hillary Clinton did quite well and won the popular vote.', 'created': '2024-11-07 08:33:12', 'submission_id': '1gl54pa'}
{'comment': 'Republicans tried female vice presidential candidates as well. Sarah Palin amd Geraldine Feraro about as sucessful as Hilary and Kamala...', 'created': '2024-11-07 10:35:05', 'submission_id': '1gl54pa'}
{'comment': 'Yeah! For sure.. But the point I was making was about what motivated people to vote the way they did. In voting for Trump they also voted for Misogyny, bigotry, the hollowing out of the Middle class, against climate change action etc… etc.. They may not have been thinking about all of that but that’s what they’re getting.', 'created': '2024-11-07 13:56:33', 'submission_id': '1gl54pa'}
{'comment': "It's possible to not do anything wrong and fail. I think this was baked into the cake as soon as Republicans were able to blame Biden for the trumpflation", 'created': '2024-11-06 22:49:41', 'submission_id': '1gl54pa'}
{'comment': "> Where do we even go from there\n\nThat's what the people who understand what's going on are discussing.", 'created': '2024-11-07 00:50:56', 'submission_id': '1gl54pa'}
{'comment': 'It’s at least an acknowledgement of the issue. Democrats up until it was time to get votes said ehh the border it’s fine. Inflation it’s fine. People just want to be heard', 'created': '2024-11-06 23:02:05', 'submission_id': '1gl54pa'}
{'comment': 'They did forgive a lot of student loans but they never got the blanket forgiveness across the line. That’s what was promised', 'created': '2024-11-07 00:23:34', 'submission_id': '1gl54pa'}
{'comment': 'So you come in with horseshit, and then you double down on horseshit.\n\nAre you just here to troll?\n\nDid you pay zero attention to her promising to go after corporate price gouging, encourage construction of 3 million new homes (because most of the housing price problem in the US is actually a supply problem), give people down payment assistance, her support minimum wage increases, etc?', 'created': '2024-11-06 21:31:49', 'submission_id': '1gl54pa'}
{'comment': 'Oh yeah Elon too but Elon is the guy that risked his fortune to get them Twitter. King of owning the libs.', 'created': '2024-11-06 20:26:46', 'submission_id': '1gl54pa'}
{'comment': 'Who the fuck cares. Seriously. Who cares? You\'re sitting there "blaming" the Republicans but it worked. The voters liked it.', 'created': '2024-11-06 21:35:42', 'submission_id': '1gl54pa'}
{'comment': "I said chastising not chastity. Just in case there's some confusion. And, okay, you're not wrong. But we just lost. So something needs to change. And we can all get up on our high horse and *chastise* people for not voting. But I guarantee you that will not encourage them to vote in the next election. Kamala would be a capable leader. But a) the DNC/party leadership made a major blunder and said Biden was fit to run which gave her almost no time to establish herself as a candidate and b) they didn't allow us pick our candidate. I have almost no criticism of Kamala Harris, I sincerely wish she were president elect (I voted for her, too, in case you're wondering). I have major issues with the party itself. And I don't know how old you are, but this is round 3 for me. They bungled it in 2016, almost bungled it in 2020, and bungled it in 2024. And after almost 10 years of this shit, it feels like the powerful leaders at the top are making unilateral decisions that should be made by the voters.", 'created': '2024-11-08 02:03:58', 'submission_id': '1gl54pa'}
{'comment': 'I had so many people say the "what is she, black or indian" crap...', 'created': '2024-11-07 08:17:19', 'submission_id': '1gl54pa'}
{'comment': 'Ugh, no. I understand where you\'re coming from, but one of my many fears/nightmares is that the first female president will be a bag-of-garbage Republican like Nikki Haley. \n\nThat would be such a Monkey\'s Paw event: "hey, you wanted a *female* president..."\n\nThere are plenty of shitty women out there, in politics & out. We\'re way overdue for a female leader but it has to be one who\'s also a decent human being.', 'created': '2024-11-07 05:28:40', 'submission_id': '1gl54pa'}
{'comment': 'Probably explains why Thiel supports him.', 'created': '2024-11-07 08:15:21', 'submission_id': '1gl54pa'}
{'comment': "Wait. He's not openly?", 'created': '2024-11-07 08:34:17', 'submission_id': '1gl54pa'}
{'comment': "Democrats compiled a massive effort to address inflation and the border, but trump killed it. Democrats did listen, but it didn't matter in the end.", 'created': '2024-11-06 23:39:17', 'submission_id': '1gl54pa'}
{'comment': 'Because the supreme court stopped them every time they tried.', 'created': '2024-11-07 16:26:01', 'submission_id': '1gl54pa'}
{'comment': 'This. They got loans forgiven through programs that already existed, and they managed to get at least some of the rest of us deferred. But it really isn’t the win they portrayed it to be.', 'created': '2024-11-07 02:42:58', 'submission_id': '1gl54pa'}
{'comment': '[removed]', 'created': '2024-11-06 21:44:15', 'submission_id': '1gl54pa'}
{'comment': 'Yes. People fall for cons because they like what the con man is telling them. \n\nAuthoritarianism is almost never good for the large majority of citizens.', 'created': '2024-11-06 21:48:29', 'submission_id': '1gl54pa'}
{'comment': 'The people bungled the election(s) is my observation — especially those still thinking Bernie sanders is their knight. There was absolutely no reason for any voter to stay home on this election. \n\nI also firmly believe Donald Trump is a cult. He lies. They believe him. No one can change my mind on this one.', 'created': '2024-11-08 20:57:15', 'submission_id': '1gl54pa'}
{'comment': 'Unfortunately that’s probably what will happen. The only way we get a woman is if there isn’t the option to choose a man instead.', 'created': '2024-11-07 06:00:56', 'submission_id': '1gl54pa'}
{'comment': 'Because that level of debt forgiveness has to be done by congress. Biden knew he couldn’t do it unless he had a significant congressional majority but he promised it anyway', 'created': '2024-11-07 16:35:43', 'submission_id': '1gl54pa'}
{'comment': "I mean, you're probably right -- just wish you weren't, lol!", 'created': '2024-11-07 07:12:31', 'submission_id': '1gl54pa'}
{'comment': 'That\'s just it. The mechanism Biden tried to use for debt forgiveness \\*was\\* an act of congress. Congress explicitly gave the DOE the ability to discharge debt like that as it sees fit going forward. There was no expiration date or time limit on the bill he tried to use to get it through. SCOTUS said no, congress needs to specifically discharge debt every single time it comes up, even though congress already passed a bill to delegate that power to the executive. It was a huge example of judicial overreach. Doubly so because the guys suing the case had no standing.\n\nThis is the same idea behind Chevron - congress chose to delegate regulatory power to the EPA explicitly, SCOTUS said "no, you can\'t do that" on bullshit premises. \n\nWhen Biden made that promise, legal scholars agreed that student loan forgiveness was legit. SCOTUS twisted their logic into knots to disagree.', 'created': '2024-11-07 17:26:32', 'submission_id': '1gl54pa'}
{'comment': "I would make a long term strategy to go into an in demand career and leave. If the electorate just swings power back and forth based on the price of eggs, I'm going to move somewhere with people that have more sense.", 'created': '2024-11-06 18:18:19', 'submission_id': '1gl3561'}
{'comment': "I want to ruin lives. My maga former boss is fucking his maga boss. I'm drafting an anonymous letter to each of their spouses right now that will go in the mail later.", 'created': '2024-11-06 20:04:35', 'submission_id': '1gl3561'}
{'comment': 'https://preview.redd.it/86k0pvfmobzd1.jpeg?width=1170&format=pjpg&auto=webp&s=ef84a884a4ab6988ae93e1d91870b7a32e357711\n\nThis election kind of reminds me of this tweet in a different context. Once America decided that taking away women’s bodily rights was okay, it was over.', 'created': '2024-11-06 19:15:59', 'submission_id': '1gl3561'}
{'comment': 'Thanksgiving has been canceled for Trump voting family members. It’s time to shun.', 'created': '2024-11-06 19:26:17', 'submission_id': '1gl3561'}
{'comment': 'As far as I’m concerned, the majority of Americans consciously chose to vote for an antidemocratic demagogue who had organized a coup attempt in the past because they felt that demagogue would lower inflation and improve the economy. \n\nIn short, the majority of Americans have decided democracy is less important than cheaper fucking groceries. That our rights can be exchanged for eggs, butter, and milk being a little cheaper.\n\nAnd anyone who makes that choice is responsible for the degradation and potential destruction of democracy in America. Not because they hate democracy, but because they’re making selfish, short sighted decisions that endanger our country and its future. And the irony is that trump’s tariffs will drive up the cost of living, again. \n\nGreat job, guys.', 'created': '2024-11-06 21:59:42', 'submission_id': '1gl3561'}
{'comment': 'I’m more furious to those 20 million who thought, fuck it I’m just going to stay home.', 'created': '2024-11-06 20:37:15', 'submission_id': '1gl3561'}
{'comment': "Honestly, I'm way more pissed at the democrats that decided to sit this one out. We knew MAGA would be at the polls, but our side fucking slept through election day.", 'created': '2024-11-06 22:03:58', 'submission_id': '1gl3561'}
{'comment': 'I feel so fucking bad for Ukraine.', 'created': '2024-11-06 22:19:56', 'submission_id': '1gl3561'}
{'comment': 'In liberal CT today I came into contact with less than 10 people and one guy was playing Trump videos on his phone out loud at a doctors office and the other was asking a checkout person at CVS if they liked the results because they did! MAGA is an epidemic', 'created': '2024-11-06 21:45:20', 'submission_id': '1gl3561'}
{'comment': 'I tried asking Republicans in another post: What if you’re wrong? No one answered the question and one person threw the question back at me. I answered it and then asked them to answer my question since I asked it first. They said they don’t give a shit about me. These are the people on that side. They can’t even fathom the possibility that they could be wrong, and then they’re assholes about it even if you bring it up as a hypothetical. Fuck them. They deserve every shitty thing that’s coming their way.', 'created': '2024-11-06 23:57:06', 'submission_id': '1gl3561'}
{'comment': 'Also the people who did not vote.', 'created': '2024-11-06 21:37:45', 'submission_id': '1gl3561'}
{'comment': "They think he'll bring down the cost of gas and bacon. \n\nRacism and Misogyny don't impact Rural white male voters, so they don't care about those issues.", 'created': '2024-11-06 20:12:47', 'submission_id': '1gl3561'}
{'comment': "Burned out all my anger during the first Trump presidency, don't have the energy anymore", 'created': '2024-11-06 22:24:56', 'submission_id': '1gl3561'}
{'comment': "They've really proven themselves to be garbage by voting for him.", 'created': '2024-11-06 21:29:53', 'submission_id': '1gl3561'}
{'comment': 'Second stage mood: conspiratorial?\n\nBased on current totals 18 million people (15 million democrats and 3 million republicans) decided to sit this election out. Was mail-in voting really responsible for nearly 18 million additional people voting? \n\nSeems insane that there could be that much of a dropoff in turnout when all we heard the last couple of weeks was turnout records are being broken across the country.\n\nSince we can see who voted in each election, we can see who sat out. Need to start engaging those people on why they say out.', 'created': '2024-11-06 19:20:52', 'submission_id': '1gl3561'}
{'comment': 'I’m not furious at people who voted for him I’m furious at the fact that they fell for his shit. All we can do at this point is be kind, express concern and educate. We have to. If we can endure two years of this we can change minds and change power in the mid terms and cancel out all his crap and move on. It it basically out only hope. Do not give up! And do not get angry! That’s what they’re banking on!!!', 'created': '2024-11-06 20:38:49', 'submission_id': '1gl3561'}
{'comment': 'I’m looking forward to the next 6 plus months. Will see how long the honeymoon lasts.', 'created': '2024-11-06 18:37:13', 'submission_id': '1gl3561'}
{'comment': 'The crazy shit is that the joker with makeup and all could probably run and be the president of the fucking United States.', 'created': '2024-11-06 22:50:01', 'submission_id': '1gl3561'}
{'comment': ">Midterms are in 2 years, assuming they’re allowed to happen, maybe we can claw something back from the brink before it’s too late.\n\nNow you're the one that's having delusions. \n\nThe US experiment in democracy is over. Over half the voters just chose to form an authoritarian government, whether they knew the consequences of their vote or not (and I am quite sure that a lot of them did not).\n\nUnless you're counting on Trump and his minions in the White House and Congress royally screwing up and doing nothing to solidify their position.", 'created': '2024-11-06 19:16:11', 'submission_id': '1gl3561'}
{'comment': "As a black man, I fear for my safety outside of my home. I hope we can find piece and solidarity through these times. I don't blame people for voting for Trump. I just hope we can find a way to continue to love people with differing opinions.", 'created': '2024-11-06 18:16:26', 'submission_id': '1gl3561'}
{'comment': 'I know that it means that jd cancer will take over, but I take solace in the fact that his boss will be dead from dementia soon.', 'created': '2024-11-07 00:26:56', 'submission_id': '1gl3561'}
{'comment': 'As far as I am concerned, every Trump voter gets to decide which one they are: racist, sexist, fascist, greedy, or just a fucking moron.', 'created': '2024-11-07 00:14:05', 'submission_id': '1gl3561'}
{'comment': "I think the Democrats did as well as they could. I just think too many people wanted Trump. That's the fact. \n\nI think we need to cool down, take stock, and plan. That's it.", 'created': '2024-11-06 20:41:59', 'submission_id': '1gl3561'}
{'comment': 'Yes. I’m not going back for thanksgiving. They can’t be bothered to give a single fuck about anyone but themselves until it’s THEIR daughter dying in a parking lot. They’re not the nice people they claim to be. They just aren’t.', 'created': '2024-11-07 00:07:50', 'submission_id': '1gl3561'}
{'comment': 'Yeah I say burn it. Fuck all of them. Feel some pain', 'created': '2024-11-07 01:43:40', 'submission_id': '1gl3561'}
{'comment': 'On God', 'created': '2024-11-06 21:59:37', 'submission_id': '1gl3561'}
{'comment': 'Exactly how I feel.', 'created': '2024-11-06 23:37:36', 'submission_id': '1gl3561'}
{'comment': 'Who’s pretending that they’re not?', 'created': '2024-11-07 00:03:04', 'submission_id': '1gl3561'}
{'comment': 'We rise', 'created': '2024-11-07 01:45:07', 'submission_id': '1gl3561'}
{'comment': 'My whole family. College educated people. And I never talk politics with my friends but I think they did too. I feel like I just found out that everyone I know was in the Klan. I feel like an imposter today.', 'created': '2024-11-07 03:28:34', 'submission_id': '1gl3561'}
{'comment': "I really think these people didn't consider the impact of getting the other half of the country to decide they may as well start acting like assholes, too.", 'created': '2024-11-07 09:09:17', 'submission_id': '1gl3561'}
{'comment': "I'm not as furious to those who voted for him as compared to how p.o. I am at the Americans who just don't vote. How pathetic that we don't take our civil duty more serious. Win or lose, at the very least vote. Voting is a small price to pay to live in this country.", 'created': '2024-11-07 19:10:21', 'submission_id': '1gl3561'}
{'comment': 'Don’t alienate the Trump voters who voted based off economy. Those are more present and real fears to them than any social issue. Alienate the MAGAs. The ones who worship and support them. But most of all, the Dems need to stop trying to sway republican voters and focus on turnout within their coalition\n\nNext election, Dems need to focus on economy and healthcare as the top issues', 'created': '2024-11-06 18:36:03', 'submission_id': '1gl3561'}
{'comment': 'Since when has anyone blue pretended they liked Trump or his supporters?\n\nIt’s pretty much the entire platform: Anti-Trump.', 'created': '2024-11-06 18:23:40', 'submission_id': '1gl3561'}
{'comment': 'The cult convinced these idiots to vote against their own personal interests. Fuck this place.', 'created': '2024-11-06 23:15:06', 'submission_id': '1gl3561'}
{'comment': 'I\'m pissed at everyone who sat it out too, or the people who decided to "both sides" it. \n\nGet ready to bite that shit sandwich you just made, chew, swallow, and repeat for 4 years. Yum yum', 'created': '2024-11-07 06:48:55', 'submission_id': '1gl3561'}
{'comment': 'I don’t want to become them.', 'created': '2024-11-07 01:04:01', 'submission_id': '1gl3561'}
{'comment': 'He’s gonna be on thin ice, because of what he did last time and if he messes up within his term next election I’m convinced democrats would win it', 'created': '2024-11-07 03:42:58', 'submission_id': '1gl3561'}
{'comment': '[removed]', 'created': '2024-11-06 18:18:39', 'submission_id': '1gl3561'}
{'comment': 'Time to bring back consequences for actions, these people think they can go around and just behave atrociously because dear Leader is allowed to do whatever he wants. Embarrass them. Report them to HR. Make them realize that Trump the felon is not someone to idolize.', 'created': '2024-11-07 04:51:34', 'submission_id': '1gl3561'}
{'comment': 'i just want all trumpers and the 15 million democratic white women who decided not to vote - to move to canada', 'created': '2024-11-07 00:56:14', 'submission_id': '1gl3561'}
{'comment': "Oh cool just what we need is liberal joker memes. That'll show em.", 'created': '2024-11-06 21:33:14', 'submission_id': '1gl3561'}
{'comment': 'shouldve addressed the economic grievances and coopted those people', 'created': '2024-11-07 02:42:59', 'submission_id': '1gl3561'}
{'comment': "I'm furious at the despicable Trump viewers, I'm also furious at the Democrat supporters who did not vote", 'created': '2024-11-07 04:07:04', 'submission_id': '1gl3561'}
{'comment': 'I\'m horrified that people I know and once thought might be decent people, voted for Trump. I\'m more angry and dismayed by the people who looked at this election and said "Meh. It\'s not like it\'s important."\n\nThose are the people who gave us Trump. And seriously, fuck those people.', 'created': '2024-11-07 07:26:57', 'submission_id': '1gl3561'}
{'comment': 'Im more pissed off at the 15+ mil democrats that didnt vote at all.', 'created': '2024-11-07 07:45:35', 'submission_id': '1gl3561'}
{'comment': '[removed]', 'created': '2024-11-06 21:45:46', 'submission_id': '1gl3561'}
{'comment': 'First thought this morning was we should start complaining about the prices of eggs now. Doesn’t matter if they go up or down, all through his presidency: Eggs are too expensive!', 'created': '2024-11-06 20:19:10', 'submission_id': '1gl3561'}
{'comment': "Exactly. Now that these assholes got their boy back, I don't want to hear one FUCKING word out of their mouth about the price of eggs, gas, bread, or anything really. NOW, who are they going to blame when shit goes south in the future?\xa0", 'created': '2024-11-06 22:02:04', 'submission_id': '1gl3561'}
{'comment': 'I’m here for that. I don’t know if I want to live in a country for much longer where most of the voters think the price of their groceries or gas is more important than preserving democracy and decency.', 'created': '2024-11-06 19:33:17', 'submission_id': '1gl3561'}
{'comment': "Currently going to college in the conservative part of Cali, it's fucking appalling hearing about people flying nazi flags out here. As soon as I graduate I'm taking my comp sci degree and making a run for it.", 'created': '2024-11-06 20:27:30', 'submission_id': '1gl3561'}
{'comment': 'Agreed 100 percent', 'created': '2024-11-06 18:36:44', 'submission_id': '1gl3561'}
{'comment': 'So damn well put, "based on the price of eggs". Goddamn...', 'created': '2024-11-06 21:05:00', 'submission_id': '1gl3561'}
{'comment': "Remember you don't have to leave America to do that. The USA is 50 different countries with their own governments who just agree to share a President and Military. Find one that has the values you share and move there.\n\nIf all the Gen-Z and STEAM skills leave for more liberal states, the conservative ones will quickly feel it.", 'created': '2024-11-06 20:20:51', 'submission_id': '1gl3561'}
{'comment': 'What fields are "in demand"?', 'created': '2024-11-06 22:05:17', 'submission_id': '1gl3561'}
{'comment': 'It’s hard to talk to people who see capitalism as liberals controlling the price of gas and groceries. It’s hard to talk to people who can’t even distinguish the difference between fiscal policy and monetary policy. Or church and state.', 'created': '2024-11-09 06:53:52', 'submission_id': '1gl3561'}
{'comment': 'Aye.', 'created': '2024-11-06 19:20:32', 'submission_id': '1gl3561'}
{'comment': 'God, if I was even 10 years younger I totally would.', 'created': '2024-11-07 02:37:31', 'submission_id': '1gl3561'}
{'comment': 'Not sure that place exists, to be honest 😬', 'created': '2024-11-07 02:42:33', 'submission_id': '1gl3561'}
{'comment': 'Burn, baby, burn', 'created': '2024-11-06 20:42:24', 'submission_id': '1gl3561'}
{'comment': 'No mercy', 'created': '2024-11-06 20:46:13', 'submission_id': '1gl3561'}
{'comment': 'Send photos, like photos of them at lunch or leaving work together…', 'created': '2024-11-07 00:04:49', 'submission_id': '1gl3561'}
{'comment': 'The shit I like to hear!', 'created': '2024-11-07 00:21:46', 'submission_id': '1gl3561'}
{'comment': 'Fucking do it.\n\nSo many women are going to die.', 'created': '2024-11-07 04:42:29', 'submission_id': '1gl3561'}
{'comment': '', 'created': '2024-11-07 02:18:29', 'submission_id': '1gl3561'}
{'comment': 'Im done being nice. Fuck, I’m resentful, angry, apathetic, and petty. Like low-key, this has affected me. I’m just tired of having to be the adult in the room. I’m tired of having to hold things together. I’m tired of being selfless. Naw, I’m selfish now and I’m going to watch it burn.', 'created': '2024-11-07 15:34:14', 'submission_id': '1gl3561'}
{'comment': 'This is the way.', 'created': '2024-11-07 02:27:06', 'submission_id': '1gl3561'}
{'comment': 'Beautiful', 'created': '2024-11-07 04:40:09', 'submission_id': '1gl3561'}
{'comment': 'Damn….', 'created': '2024-11-07 06:30:36', 'submission_id': '1gl3561'}
{'comment': "Lol \n\nListening to Newt Gingrich talk about how Dems were morally corrupt and causing chaos between marriages, knowing full well he was previously divorced 3 times AND it's the Christians who suck at meeting the standards of 'the sanctity of marriage', not the Dems.\n\nThese MAGA conservatives sure know how to play the blame game.", 'created': '2024-11-07 06:34:19', 'submission_id': '1gl3561'}
{'comment': 'Make sure to use gloves! No finger prints! No evidence left behind.', 'created': '2024-11-07 06:36:25', 'submission_id': '1gl3561'}
{'comment': 'Patriot.', 'created': '2024-11-07 14:37:26', 'submission_id': '1gl3561'}
{'comment': 'I love it. DO IT.', 'created': '2024-11-07 02:36:43', 'submission_id': '1gl3561'}
{'comment': 'Hahaha shit like this is why we lost. But hey it’s more fun to be petty than mature', 'created': '2024-11-06 23:00:58', 'submission_id': '1gl3561'}
{'comment': 'The irony of that being that many of the same people who want unfettered gun access, which obviously leads to more gun violence and death of children, are the same ones who claim to be pro-life.', 'created': '2024-11-06 23:42:43', 'submission_id': '1gl3561'}
{'comment': "Yeah, I'm not thankful for the shit my parents are going to put my sister and I through.", 'created': '2024-11-06 20:30:04', 'submission_id': '1gl3561'}
{'comment': "My MAGA family have shunned me. I'm the asshole for refusing to listen to their politics. I've been struggling with them for 9 years. I thought it was going to be over.\n\n I plead my case for the last time recently and I can never forgive them for voting for that monster. And not only do I inate to be alone for the holidays but have to have that POS for a leader again?? I feel like I've been dumped 20 times over. \n\nI don't know if this makes sense. I've has 2 hours of sleep in the past 2 days. None of this makes sense. But I'd rather not rock the boat. I'm scared shitless and I'm alone.", 'created': '2024-11-06 22:02:38', 'submission_id': '1gl3561'}
{'comment': 'Amen. No contact', 'created': '2024-11-06 19:48:48', 'submission_id': '1gl3561'}
{'comment': "I don't have anything to do with those mf anymore.", 'created': '2024-11-07 00:21:13', 'submission_id': '1gl3561'}
{'comment': "I'll need to ask my parents and brothers who they voted for. Christmas is going to be a two day affair if they voted for Trump.", 'created': '2024-11-06 23:56:21', 'submission_id': '1gl3561'}
{'comment': "Why you mad at them? Less people voted for trump than in 2020.\n\n15M less democrats voted for Harris than Biden. I think it's pretty obvious who is to blame.", 'created': '2024-11-07 04:44:16', 'submission_id': '1gl3561'}
{'comment': 'He made the trains run on time....', 'created': '2024-11-07 03:54:38', 'submission_id': '1gl3561'}
{'comment': "Less people voted for Trump than in 2020. I can't even blame his voters. This time it's on apathy and nihilism.", 'created': '2024-11-07 04:45:09', 'submission_id': '1gl3561'}
{'comment': 'I don\'t get how we lost the narrative so bad on the economy. If Trump gets his 20% across-the-board tariffs going, there is no conceivable way grocery prices go down. It\'s literally jacking up input costs across the economy.\n\nI know there are also some Trump supporters that are just so nativist that they are willing to go 100% scorched earth and risk **everything** (democracy, the economy, the rules-based international order, Europe, etc.) just to be cruel to immigrants. "I don\'t really think he\'ll really do all those tariffs, but I just hate how illegal immigrants are ruining our country."', 'created': '2024-11-06 23:49:08', 'submission_id': '1gl3561'}
{'comment': "same, the heat's not on republicans imho, 3 million less voted for that insanity \ni'm far more disgusted by the sit-outs and protest non-voters, democracy being on the line wasn't important enough of an issue that 16 million less people decided to vote blue\n\nlosing rights not enough of a reason to fight for it?", 'created': '2024-11-06 23:36:35', 'submission_id': '1gl3561'}
{'comment': 'Naw, I’m furious at them all. There’s enough to go around.', 'created': '2024-11-07 15:35:56', 'submission_id': '1gl3561'}
{'comment': "I got married to a South Asian woman, my anger has turned to hate because I'm scared of what a 2nd trump term will affect us.", 'created': '2024-11-06 23:43:42', 'submission_id': '1gl3561'}
{'comment': 'HEY! \n\nThat is offensive to garbage. Garbage is the after product of useful products!', 'created': '2024-11-06 23:34:43', 'submission_id': '1gl3561'}
{'comment': '> Was mail-in voting really responsible for nearly 18 million additional people voting?\n\ncompare voter turnout percentages of other states to Washington and Oregon, and do the math.', 'created': '2024-11-06 21:00:43', 'submission_id': '1gl3561'}
{'comment': 'No that’s the first stage: denial', 'created': '2024-11-06 22:36:57', 'submission_id': '1gl3561'}
{'comment': 'Their algorithms will validate them harder than any person ever will', 'created': '2024-11-06 21:30:01', 'submission_id': '1gl3561'}
{'comment': "I think we have to have hope, but expect the worst. And the worst part? I'm not even sure how to plan for this. I am in survival mode, I have accepted that. But I need to make a plan", 'created': '2024-11-06 20:44:22', 'submission_id': '1gl3561'}
{'comment': 'That last is actually quite plausible. \n\nNow that they’re in power it’ll be time to tear each other apart.\n\nThat’s my hope.\n\nAnti-abortion vs don’t want to lose power will be a fun fight to watch, just for starters. \n\nPlus Trump’s policy proposals are so objectively terrible that if he actually goes forward with them (tariffs), the typical GOP economic disaster might happen fast enough to be blamed on those who caused it.\n\nAnd for Latinos who voted for Trump, I have one thing to say: Disfrute lo votado.', 'created': '2024-11-06 19:25:51', 'submission_id': '1gl3561'}
{'comment': 'It is so crazy how Trump elevated the support from Latino and Black men compared to 2020 \n\nCrazy and sad', 'created': '2024-11-06 18:37:10', 'submission_id': '1gl3561'}
{'comment': ">I just think too many people wanted Trump.\n\n3M less people voted for trump. It wasn't that.", 'created': '2024-11-07 04:59:49', 'submission_id': '1gl3561'}
{'comment': 'Dems could have done better but decided to pull another Hillary on us. Should have ran primaries and let people decide on the candidate.', 'created': '2024-11-06 20:49:50', 'submission_id': '1gl3561'}
{'comment': 'I disagree.\xa0 Many are nice, they are just gullible as shit and conservative media is effective.', 'created': '2024-11-07 04:14:50', 'submission_id': '1gl3561'}
{'comment': 'I say fuck em. Write down the names of everyone you know who claims they voted "on the economy". \n\nWhen Trump crashes the economy by deporting 20% of the agriculture and construction labor, and prices for everything fucking skyrocket again, ask them if this is the economy they voted for. \n\nWhen Trump crashes the economy by imposing tariffs on everything (to wait for industry bribes to selectively reduce those tariffs), ask them if this is the economy they voted on.\n\nHold them to it until they admit they were wrong or admit they\'re full of shit when they say they voted "on the economy". If they\'re willing to change and grow, point them toward sources of news other than propaganda and help them put the pieces together. If they\'re not, tell them to go fuck themselves and constantly remind them that you see them for what they are. \n\n\n\nOr don\'t. It doesn\'t really matter, I doubt we\'ll see another free and fair election in our lifetime.', 'created': '2024-11-06 19:19:02', 'submission_id': '1gl3561'}
{'comment': "It should be easier since they are bent on wrecking healthcare and other entitlements. I bet Social Security will be on the table as well. Education? Don't need that... Death by a 1000 cuts.", 'created': '2024-11-06 19:23:47', 'submission_id': '1gl3561'}
{'comment': 'Not at all', 'created': '2024-11-06 21:21:44', 'submission_id': '1gl3561'}
{'comment': 'We did.\xa0 It was about vibe not actual causes.', 'created': '2024-11-07 04:22:39', 'submission_id': '1gl3561'}
{'comment': 'Hell yeah. Trump owns all of it now. The high prices, the frustration, the bad economy, everything. \n\nKnowing FoxNews, they’ll immediately switch their tune and start painting the same economy as the best economy under the circumstances. Have to give it to them, propaganda or not, they have a better communication ecosystem than the democrats.', 'created': '2024-11-06 23:03:24', 'submission_id': '1gl3561'}
{'comment': 'Print out some Trump "I did this" stickers', 'created': '2024-11-07 00:22:39', 'submission_id': '1gl3561'}
{'comment': 'Hell yes', 'created': '2024-11-06 21:05:23', 'submission_id': '1gl3561'}
{'comment': 'I blame Gaston', 'created': '2024-11-07 03:53:11', 'submission_id': '1gl3561'}
{'comment': 'A.I. is the money complaint. Just say "A.I., Elon, taking our jobs" over and over.', 'created': '2024-11-11 06:38:13', 'submission_id': '1gl3561'}
{'comment': 'He said he would end the war in Ukraine before his first day in office. Okay then let’s fucking see it', 'created': '2024-11-07 06:32:47', 'submission_id': '1gl3561'}
{'comment': 'Exactly!!!', 'created': '2024-11-07 04:22:25', 'submission_id': '1gl3561'}
{'comment': 'Run!! And don’t look back', 'created': '2024-11-07 04:22:56', 'submission_id': '1gl3561'}
{'comment': "Moving to blue states won't save you from regressive and authoritarian policies at the federal level, unfortunately. This is what many people who sat out will come to understand.", 'created': '2024-11-06 20:33:03', 'submission_id': '1gl3561'}
{'comment': 'I was thinking this morning... the blue states earn the most, have the highest economy, contribute the most to the union. And the red states cause the most chaos. Some of you living in blue states must feel like the red states are nothing but a burden.\n\n\nDisclaimer: not a US citizen', 'created': '2024-11-06 21:06:53', 'submission_id': '1gl3561'}
{'comment': 'The problem is Blue State tax dollars subsidize and keep red states afloat', 'created': '2024-11-06 20:54:51', 'submission_id': '1gl3561'}
{'comment': 'Fake news, AI, Jewish propaganda, etc etc', 'created': '2024-11-07 00:42:50', 'submission_id': '1gl3561'}
{'comment': 'Seriously sorry you’re in that position.', 'created': '2024-11-06 23:40:42', 'submission_id': '1gl3561'}
{'comment': 'I wonder if there’s anyway we can make a found family with each other? Somehow. When we’re all a little more calm.', 'created': '2024-11-07 00:11:55', 'submission_id': '1gl3561'}
{'comment': 'Hi, do you want to talk about it? Please feel free to dm me.', 'created': '2024-11-07 04:48:29', 'submission_id': '1gl3561'}
{'comment': "This is 100% right. The numbers paint a pretty clear picture. I can't even be mad at the MAGA people.\n\nI'm mad at the people who drove the car into the fucking lake just because the GPS told them to. They should have known better. They did know better.", 'created': '2024-11-07 04:46:36', 'submission_id': '1gl3561'}
{'comment': 'Yeah good point 😕', 'created': '2024-11-06 22:05:57', 'submission_id': '1gl3561'}
{'comment': "I think it's even more sinister than most people realize. I saw a bunch of youtube shorts last few days where it was a small, liberal creator who made a good video but it gets shown specifically to a lot of conservatives that are all likely to shit on it in the comments. So it's an engineered echo chamber even when they are getting fed opposing view points.", 'created': '2024-11-06 23:28:10', 'submission_id': '1gl3561'}
{'comment': "Until a lot of those people who just voted for a tyrant wake up, and realize they don't want a dictatorship, I don't think there's a lot we can do.", 'created': '2024-11-06 20:47:54', 'submission_id': '1gl3561'}
{'comment': "This isn't like last time. Various groups have already drawn up executive orders to put in Trump's hands \n\nhttps://www.npr.org/2024/10/30/g-s1-30917/how-a-little-known-organization-is-poised-to-shape-a-second-trump-administration\n\nhttps://www.politico.com/news/2024/05/08/oil-industry-orders-trump-day-one-00156705\n\nhttps://www.cnn.com/2024/08/15/politics/russ-vought-project-2025-trump-secret-recording-invs/index.html\n\nThere will be a lot of changes pushed through in the first 100 days.", 'created': '2024-11-06 19:32:17', 'submission_id': '1gl3561'}
{'comment': 'Genuinely expecting the GOP to stab Trump in the back by invoking the 25th and installing Vance.', 'created': '2024-11-06 20:31:47', 'submission_id': '1gl3561'}
{'comment': 'Something seems very off with that', 'created': '2024-11-06 18:39:44', 'submission_id': '1gl3561'}
{'comment': "I'm counting the people who didn't vote for Harris. They knew what they were doing.", 'created': '2024-11-07 12:37:24', 'submission_id': '1gl3561'}
{'comment': 'Would that have worked? It just would have divided us more. Look at 2016.', 'created': '2024-11-06 20:50:40', 'submission_id': '1gl3561'}
{'comment': "Jesus stop repeating their narratives.\xa0 Biden chose to run.\xa0 There wasn't anyone with the ability to stop him, until the debate opened that door.\xa0 By then it was too late for a primary.\xa0 The issue wasn't Harris. It was their ability to set the narrative (as they did with you).\xa0 And Trumpnesia.", 'created': '2024-11-07 04:12:36', 'submission_id': '1gl3561'}
{'comment': 'I will remind them every chance I get', 'created': '2024-11-06 19:46:03', 'submission_id': '1gl3561'}
{'comment': "Isn't he also going to have to deal with the dock worker strike that got postponed?", 'created': '2024-11-06 20:33:10', 'submission_id': '1gl3561'}
{'comment': None, 'created': '2024-11-06 21:29:16', 'submission_id': '1gl3561'}
{'comment': 'they sure didnt get it. or maybectye case wasnt comminicated. but its identity. poor high school only workong class types should be a focus and s traditional group. trumps coopted them?\n\ni like kamala and i think its time but like a black friend said white guys aint voting for a black woman. So it was wrong to run her. more tho.i blame biden for running for a secind term. he should have seen the polls not have to have been dragged out And they should have gotten a tough guy to match trump. 20 20 hindsight.', 'created': '2024-11-07 04:44:02', 'submission_id': '1gl3561'}
{'comment': 'I just hope I can actually graduate without Cheeto Jesus pulling the plug on my financial aid.', 'created': '2024-11-07 06:29:48', 'submission_id': '1gl3561'}
{'comment': 'As a 1st gen immigrant to the US I understand that, but living in a solid red state also taught me that nothing can change the mind of a midwestern non-college educated white man like something that hits them in the pocket book.\n\nIf all the STEAM skills leave a state, so do all the tech and manufacturing companies, and that bleeds the income from the state which drives up taxes to compensate for the lack of state income. That will hurt and the hurt will change opinions.', 'created': '2024-11-06 20:39:51', 'submission_id': '1gl3561'}
{'comment': "Here's the funny thing: a lot of people in Democrats strongholds conceptually don't object to the concept of sharing wealth and bringing people up. Tax dollars going to a federal school lunch grants? Improving education nationally? Propping healthcare up? A lot of states had an influx of people seeking reproductive healthcare because of the loss of this in their home states, and this has put on a burden on state-level resources, but it's accepted all the same because that's what is the right thing to do. It sucks, it probably shouldn't be done, but turning people away because of their politics and the way they vote is still cruel. It _SUCKS_ that this is the way it is, but it is the way it is.\n\nThe unfortunate reality is that the electorate, by and large, refuses to vote for anyone that champions for what is the right thing to do. The electorate by and large simply will not do it. \n\nGOP-led states draining federal resources are a burden, but cutting them off just to spite the poor, the disenfranchised, and the suffering is simply against the ethos of the Democrats. And because this is the way it is, the Democrats' continue to struggle.\n\nThe Democrats, in general, need to appeal to everyone fully, a feat that is pragmatically impossible, because the Democrats seek to represent everyone. They will never be able to do so, and shifting their focus away to represent only those who will vote for them will cause them to lose voters too. It's a lose-lose situation.\n\nCampaigning on empathy and caring for others does not win elections. Campaigning on memes and baser human instincts like fear and hate of the other does. But I'm unconvinced doing so would bring the Democrats closer to electoral success, because everything the Democrats do to appeal to one portion of the electorate can easily alienate the another. \n\nI don't know how you solve the disconnect of voters passive progressive ballot measures state-wide and also voting for the the political group seeking to dismantle those exact same measures.", 'created': '2024-11-07 00:08:47', 'submission_id': '1gl3561'}
{'comment': 'Even though there are red states not all cities in the state are red if that makes sense. I know people who live in Texas of all places that voted blue.', 'created': '2024-11-07 04:24:58', 'submission_id': '1gl3561'}
{'comment': "They can deny all they want, but it's inception. Once an idea takes hold, the questions will always be there.", 'created': '2024-11-08 06:21:34', 'submission_id': '1gl3561'}
{'comment': "I appreciate that. I tend to overshare when I am upset. Looking at my comment now it's a bit much. I'll figure it out somehow. Really tempted to move to a new state", 'created': '2024-11-07 07:03:53', 'submission_id': '1gl3561'}
{'comment': 'All of us in red states can all move to the blue states so we get them more EVs.', 'created': '2024-11-07 00:14:52', 'submission_id': '1gl3561'}
{'comment': "I thought of making a political orphan sub. Or politically isolated. Or just take politics right out of there because I think I need to tune out of politics for a little while. It's closing in on 24 hours so it's a little fresh waiting is prob a good idea. \n\nI tend to overshare when I'm upset. But if something good comes from it that'd be great. Reddit was my safe place and now everyone is angry and upset.\n\n In addition to facing the truth of our political situation I had to face the reality of my personal social situation. Having always had a ton of friends and family up until about 2016 I have been wrestling with self isolation and politically strained relationships.", 'created': '2024-11-07 06:58:24', 'submission_id': '1gl3561'}
{'comment': "I appreciate that. I see you're in the Seattle sub. I lived just outside of Seattle for 2 years. Moved there in 2016 to get away from my Trump supporting family but only stayed 2 years.\n\nMy income was not matching my rent payment. So I had to move back.", 'created': '2024-11-07 07:07:41', 'submission_id': '1gl3561'}
{'comment': "There isn't. But we can focus on staying alive for ourselves.", 'created': '2024-11-06 20:52:26', 'submission_id': '1gl3561'}
{'comment': 'Its sexism against their own women and anger about the economy \n\nIt sucks', 'created': '2024-11-06 19:32:59', 'submission_id': '1gl3561'}
{'comment': "I'm disabled and am on SSI. It would hurt a lot of disabled people too.", 'created': '2024-11-06 22:30:45', 'submission_id': '1gl3561'}
{'comment': 'My 7 year old daughter and my grandma both receive social security disability, and my grandma voted for Harris. I get your spite, it’s not misplaced but there are gonna be people who didn’t vote for trump that are going to hurt from this.', 'created': '2024-11-06 23:41:25', 'submission_id': '1gl3561'}
{'comment': 'I do hope so!!', 'created': '2024-11-07 06:30:20', 'submission_id': '1gl3561'}
{'comment': "As much as I wish it were the case, I don't think the people who think the president dictates the price of groceries will connect the dots between brain drain and economic stagnation. They will simply be taught to blame the next group to be otherized.", 'created': '2024-11-06 20:50:45', 'submission_id': '1gl3561'}
{'comment': "\\>nothing can change the mind of a midwestern non-college educated white man like something that hits them in the pocket book.\n\nThat's kind of fascinating. Can you tell me about that? i am a college educated non-white man in a blue state.", 'created': '2024-11-07 04:53:33', 'submission_id': '1gl3561'}
{'comment': 'Thank you for taking the time.\xa0I identify with a lot of what you mentioned here.\n\n\nSometimes it feels like being a Democrat is a thankless job ☹️ (whether in the US or elsewhere) But we gotta do the right thing...', 'created': '2024-11-07 11:55:30', 'submission_id': '1gl3561'}
{'comment': "Oh I know. I know a few in Wyoming that voted blue and always have. I myself an a left-wing liberal in Romania right now, voting for whatever this conservative country will offer me. Any little step forward I can make, I make it.\n\n\nMy heart breaks for folks like that. It's a lonely life and a thankless job.", 'created': '2024-11-07 11:58:13', 'submission_id': '1gl3561'}
{'comment': "I'm in a blue state. NY. But if you look at the vote results it is about as red as it can be but NYC and a sprinkling of tiny blue dot cities. \n\nI have been looking at jobs in Canada but I don't have the money for an international move. And finding a company to hire a US citizen will be tough as I'm not in a field where there's a desperate need", 'created': '2024-11-07 07:01:29', 'submission_id': '1gl3561'}
{'comment': "Also, there's a misconception that POC=liberal Democrat. There's a lot of right wing misogyny in minority communities\xa0", 'created': '2024-11-06 22:08:35', 'submission_id': '1gl3561'}
{'comment': 'misogynoir is real', 'created': '2024-11-06 21:11:14', 'submission_id': '1gl3561'}
{'comment': None, 'created': '2024-11-06 23:43:05', 'submission_id': '1gl3561'}
{'comment': "You don't have to postulate that, just look at Iowa.\n\nIowa is what happens in this situation\n\nfyi /u/A8Bit", 'created': '2024-11-06 20:59:58', 'submission_id': '1gl3561'}
{'comment': 'Oh I’m terrified too, I live in Flori-DUH and I voted yes on amendment 3 and 4 and that shit still lost. Cannot believe the threshold for 4 to pass was 60% 😭 \n\nDid not mean to come off bitchy btw. I’ve heard a lot that people on the losing side are gonna suffer heavily all because trump supporters wanted their stupid gas prices and groceries back 🙄 hope it’s fucking worth it. My grandmother voted trump and I better not hear a GOD DAMN word about anything from her for the next 4 years, unless trump makes himself king of America 🫠', 'created': '2024-11-06 23:52:09', 'submission_id': '1gl3561'}
{'comment': 'Thank you, you gave me my education for today.\n\n[https://www.thegazette.com/state-government/iowas-brain-drain-among-worst-in-u-s-analysis-shows/](https://www.thegazette.com/state-government/iowas-brain-drain-among-worst-in-u-s-analysis-shows/)', 'created': '2024-11-06 21:15:40', 'submission_id': '1gl3561'}
{'comment': "I'm glad you found it interesting :) I'm one of those Iowa Escapees", 'created': '2024-11-06 21:27:41', 'submission_id': '1gl3561'}
{'comment': 'My state is only -2 I think Boeing and Monsanto probably help to stave off that decline here. \n\nhttps://preview.redd.it/qggcrnsleczd1.png?width=1946&format=png&auto=webp&s=847f56a04190f8e98bdeea955d91c76f45b360c9', 'created': '2024-11-06 21:42:04', 'submission_id': '1gl3561'}
{'comment': 'Greedflation played a very large part in this election.', 'created': '2024-11-06 18:19:08', 'submission_id': '1gl33aq'}
{'comment': 'To echo the words of Alexey Navalny, “I’ve got something very obvious to tell you. You’re not allowed to give up.” Let’s let all the vote counts be finalized and prepare to resist the GOP as much as possible.', 'created': '2024-11-06 18:09:15', 'submission_id': '1gl33aq'}
{'comment': "I really like your perspective here. I know Kamala will be compared to Hillary, but to me she feels like Hubert Humphrey in 1968 who had to deal with LBJ being unpopular, and dropping out.\n\nI personally won't hold any ill will towards Harris and Walz the same way I did with Hillary. Harris and Walz were unfortunately in the Hubert Humphrey/Gerald R Ford rock and a hard place situation, and did the best they could.\n\nJoe Biden not stepping down earlier like he promised, and not having a primary will be something that frustrates me for the rest of my life.", 'created': '2024-11-06 18:20:43', 'submission_id': '1gl33aq'}
{'comment': 'How on earth did we spend all this time and money on the Blue Wall, exactly where we should have been and literally the thing that not doing lost Clinton the election, and lose all three of them? We had the energy, the volunteers, the candidate, and the funding, and still lost all three.', 'created': '2024-11-06 19:08:06', 'submission_id': '1gl33aq'}
{'comment': 'When lying isn’t seen as a negative in a party’s platform. \nLies will win the day every time. \nLies are shape shifting entities that prey on people’s fears. \nA much more powerful adversary than the truth.', 'created': '2024-11-06 19:05:32', 'submission_id': '1gl33aq'}
{'comment': 'This feels like 2016 all over again ugh 😑', 'created': '2024-11-06 18:45:54', 'submission_id': '1gl33aq'}
{'comment': 'It’s really disheartening that every election really now comes down to to PA, MI, WI, and AZ and if the big cities don’t come out in droves, it’s a loss', 'created': '2024-11-06 18:49:30', 'submission_id': '1gl33aq'}
{'comment': 'Thank you for the encouragement. I was talking about this with a friend earlier who was in dire stress as I was internally. I said to them that hate and fear may have won but I refuse to let it wear me down. We just have to keep fighting the good fight. Eventually, the good will prevail.', 'created': '2024-11-06 19:12:01', 'submission_id': '1gl33aq'}
{'comment': 'the democrats involved knew enough about trump... smh', 'created': '2024-11-06 18:31:08', 'submission_id': '1gl33aq'}
{'comment': "While Kamala had 14 million fewer votes, Trump also had 2 million fewer. Third Party totals were essentially flat. \n \nSo 16 million fewer people voted even though there were reports of record turnout everywhere. \n \nI'm not a conspiracy theorists, but the math isn't mathin'...\n \nPlus, Trump has always projected. Everything he accuses someone else of doing, he's doing. I think there's a good chance that there was election interference both from foreign and domestic actors.", 'created': '2024-11-06 21:43:58', 'submission_id': '1gl33aq'}
{'comment': 'Well said, and your take on every point and your motivation to keep up the fight mirror mine.\n\n\nI am on a bit of a late 1990\'s style bender right now, but I plan to be up and running again by next week.\n\n\nI have been going back and forth between seeking Greek citizenship, starting a black flag/misfits cover band, and heading into the wilds of Maine to live the life of Thoreau.\xa0\n\n\nBut I think I am going to run for local office.\n\n\nI am going to write letters to the editor to major publications.\xa0\n\n\nI am going to remain involved.\n\n\nThat\'s a lot of "I\'s" but I want to make it "all of us" during the darkness in the coming months/years...maybe it is time for a new movement towards more viable political parties?', 'created': '2024-11-07 00:32:36', 'submission_id': '1gl33aq'}
{'comment': '100% agree with you and I would add that Biden should have made it clear that he was a one term President and paved the way for someone else to take the helm. We should have had debates with multiple democratic candidates and provided those that are not staunchly blue voting a chance to feel like they could see how a candidate felt on key issues.\n\nAlso we have to address the REAL elephant in the room. Harris isn’t just a woman. She’s a half black/half Indian person of color. That is a triple whammy for many Americans and we need to stop pretending like we don’t have issues with people of color in power. As a black man that has attended highly ranked universities and always goes above and beyond at work and I always receive high performance reviews, I STILL have to deal with people assuming that I’m in a leadership role due to being a minority rather than having busted my ass and out performed everyone else to get to where I am.\n\nHarris also had the unfortunate scenario of running when many people FELT like they had more money during the Trump administration (whether that is true or not is a different story).', 'created': '2024-11-06 23:09:53', 'submission_id': '1gl33aq'}
{'comment': 'Biden was 8 point behind Trump this summer had he stayed in the race, we would have LOST SO MUCH MORE, we should thank Biden and Harris. right now in states where Trump won the Democratic candidate in the senate are winning their seats, as of today the house is still in play, and if it goes it will be by a mere 5-8 seats. Trump should have won in 2020 and today we would be celebrating a Democrat Victory similar to 2008 ; Inflation was a forgone conclusion in the spring of 2020, high prices were necessary to get us out of COVID, Biden got stuck with a bag of sht, not of his making, unlike Bush.\n\nPlease remember \n\nWe lost , but this is a WAR, and today was merely one battle in a long conflict where we live to fight another day in a better position then what we were facing 6 months ago. REMEBER THAT!', 'created': '2024-11-07 00:57:22', 'submission_id': '1gl33aq'}
{'comment': 'Regarding your first point - Incumbents usually win re-election. It’s actually very hard to unseat an incumbent president. \n\nThe vote totals also do not show that people flipped to Trump. Kamala just couldn’t drive up the vote count like Biden did.', 'created': '2024-11-07 01:01:47', 'submission_id': '1gl33aq'}
{'comment': "Most of this country is red now. It's over. It's time for decent people to move elsewhere.", 'created': '2024-11-06 21:15:00', 'submission_id': '1gl33aq'}
{'comment': 'Thank you.', 'created': '2024-11-07 00:46:52', 'submission_id': '1gl33aq'}
{'comment': "I think to counter #5 a bit, the whole centered democrat looking at their wallets I don't think was much of a thing, I think 4% of Dems voted for trump and 6% of Republicans voted for Harris. In 2020 it was 5% of Dems that voted for trump and 6% of Republicans for Harris. So we had 1% less Dem defection this year and the same Rep defection as 2020. So the Liz Chaney courting republicans didn't sway any republicans but it did keep an extra 1% of democrats. Though the turnout was lower so hard to say why they stayed home.\n\nAlso usually incumbency is a bonus. People already see you as president and they know what to expect, and if you accomplished things you can campaign on those, though usually your exciting ideas were done in the first term", 'created': '2024-11-07 02:45:53', 'submission_id': '1gl33aq'}
{'comment': 'I’m just not convinced she didn’t win. Can she request a recount in the swing states? None of this makes sense, she led in polls. Even Iowa was way off and she had a chance to win that', 'created': '2024-11-06 18:42:29', 'submission_id': '1gl33aq'}
{'comment': 'Amen, Sir. Love always wins.', 'created': '2024-11-06 20:07:40', 'submission_id': '1gl33aq'}
{'comment': 'Major major facts. I keep trying to tell people that. \n\nIt goes: Dem gets elected➡️billionaire business owners lean on the “price up” button➡️ billionaire business owners say “look at what the dems are doing!!”➡️ votes surge for Republican candidate➡️ republican candidate wins\n\nRepublican presidents largely do not believe in making billionaires pay enough (or any) taxes. That absolutely influences elections.', 'created': '2024-11-06 18:23:01', 'submission_id': '1gl33aq'}
{'comment': "Which is absolutely something that shoulda been chanted over and over by the Biden admin. Inflation is one thing corporate greed is the other. Messaging of that was bad. Then follow that messaging up with a bill or many bills with concrete ways to curb it. Harris started talking about that late in the campaign, but it wasn't enough clearly.", 'created': '2024-11-06 22:50:14', 'submission_id': '1gl33aq'}
{'comment': 'Gee, who caused that again? Oh right, the guy who won.\n\nIt’s getting really old that conservatives can just set fire to the economy and then successfully blame democrats for it.', 'created': '2024-11-07 14:17:25', 'submission_id': '1gl33aq'}
{'comment': 'I am looking at the HOUSE map and I really feel like we will take the House of Reps at least', 'created': '2024-11-06 19:11:41', 'submission_id': '1gl33aq'}
{'comment': 'Harris & Walz did the most they could with so little time.', 'created': '2024-11-06 18:39:39', 'submission_id': '1gl33aq'}
{'comment': 'Yeah I agree. There’s a lot of varibles here to unpack, but the biggest majority of the blame here (in my opinion) is under-educated voters. In modern times, people get their news almost exclusively from social media, and social media is far far too easy to manipulate with propaganda. There’s also definitely some blame on the Democratic Party as a whole and how they handled the Biden situation and the subsequent placing of Harris. If Biden were going to not seek re-election, it would have been ideal for that info to be made known a year ago so that a real primary could happen and provide more time for campaigning. \n\nFor trump it was easy because the Reagan era Republican Party is 100 percent gone. The 2 parties now are democrat and maga. He sailed through the primaries with ease, so he had even more time to prepare. Time is such a valuable asset in an election like this and Kamala just didn’t have it.', 'created': '2024-11-06 18:36:29', 'submission_id': '1gl33aq'}
{'comment': 'We did have a primary, no? We voted for Biden/Harris.', 'created': '2024-11-06 19:08:50', 'submission_id': '1gl33aq'}
{'comment': 'The parallels to ‘68 are insane in 2024. \n\n-unpopular incumbent due to foreign war\n-incumbent steps down \n-dem convention in Chicago\n-assassination / attempts on presidential candidates\n- replacement loses the election', 'created': '2024-11-07 01:20:06', 'submission_id': '1gl33aq'}
{'comment': 'I totally feel that. Again I think it’s the combination of Kamala having a tragically short campaign, under-educated voters only getting news from Facebook and X being told Biden raised grocery prices, and some dems not being able to vote for a woman. \n\nAlso I see some dems complaining that after Biden stepped down, they didn’t get a chance to *pick* someone else (buttigieg, newsom, whoever)', 'created': '2024-11-06 19:13:25', 'submission_id': '1gl33aq'}
{'comment': 'That’s very true. And when the number one booster of a candidate *owns a social media platform* that has **600 million daily users**….that makes propaganda spreading (i.e. “look at Biden raising egg prices!!!”) much, much easier.', 'created': '2024-11-06 19:23:28', 'submission_id': '1gl33aq'}
{'comment': 'Exactly. It’s really frustrating when all we do is fact check when the facts don’t matter to their base. Doesn’t even seem like it affects independents much either. When you point out all the shitty things he says, they just stare at you blankly and respond with indifference or trivializing it.\n\nBullies should never win, regardless of the cost.', 'created': '2024-11-06 20:33:21', 'submission_id': '1gl33aq'}
{'comment': 'This is much, much worse than 2016.\xa0', 'created': '2024-11-06 20:05:41', 'submission_id': '1gl33aq'}
{'comment': 'That’s true, and the electoral college needs to go. And in this case, if all things stayed equal, it wouldn’t have helped Kamala regardless even if the EC did get booted. But I still support getting rid of it. Republicans have now only won the popular vote 2x since like 1994.', 'created': '2024-11-06 19:09:03', 'submission_id': '1gl33aq'}
{'comment': 'Exactly', 'created': '2024-11-06 19:13:59', 'submission_id': '1gl33aq'}
{'comment': 'Yeah I’m with ya, I’m also not a conspiracy guy. I also won’t use this as an excuse, even if there was interference, I can absolutely concede a loss and admit defeat. \n\nBut yeah, something does kind of stink. Trump mentioned he did have “a secret”, and he was also working with one of the richest men in the world who owns a social media giant that sees 200 million viewers per day. \n\nAnd also don’t forget those 3 incel repub YouTubers that got busted taking hundreds of thousands from Russia to push right wing propaganda.', 'created': '2024-11-06 21:48:01', 'submission_id': '1gl33aq'}
{'comment': 'The voter turnout from the last election was the record, I don’t think there was interference on either side. We messed up as a party by having Biden run and then we tried to reverse course with 4 months left before the election. It’s a minor miracle that Harris was able to pull together as good a campaign as she did in the time that she had.', 'created': '2024-11-06 23:03:04', 'submission_id': '1gl33aq'}
{'comment': 'Doing *anything* is better than nothing. If democrats just roll over and die, this election result will be the same in coming years.', 'created': '2024-11-07 00:40:52', 'submission_id': '1gl33aq'}
{'comment': 'Yeah systemic racism is definitely real. I can’t claim to know what that’s like first hand as a white man, but I know what I see and what I hear and there is an unbelievably large amount of racists in both parties (many more on Republican side obviously) but still. \n\nI didn’t notice a difference in my own finances during either presidency, but I do feel that grocery prices are a bit higher currently. But the difference is that I understand that those prices are *absolutely not* set by the president, and I’d say the same thing if groceries are even higher after trumps next presidency. \n\nPrices of goods are set by the owners/producers of said goods (the billionaires). That’s it.', 'created': '2024-11-06 23:31:15', 'submission_id': '1gl33aq'}
{'comment': 'Obviously him not winning at all would be “best”, but in retrospect, it would have technically been more beneficial for trump to have won in 2020 than right now. His economy would look no different or worse (likely worse), and MAGA would essentially be done. \n\nDespite what people think, the economy *is* in fact getting better and has been for a bit, and if that continues trump will get saddled with all of the credit, undue to him. \n\nI’m encouraging everyone to fight. especially if both the house and senate go to republicans, they will essentially be unblocked on much of their agenda. This will likely trigger protests, and I encourage people to peacefully attend those as well.', 'created': '2024-11-07 01:43:26', 'submission_id': '1gl33aq'}
{'comment': 'Nah. Just all the always-red state democrats need to move to swing states.\n\nIf the 4.7m D voters from Texas, the 4.7m from Florida, and all the others from red states moved to Pennsylvania, Georgia, Wisconsin, Michigan, etc. We’d knock it out.\n\nI already tried convincing my wife to let us move to Pennsylvania (from Texas) but she said no :(', 'created': '2024-11-06 21:56:29', 'submission_id': '1gl33aq'}
{'comment': 'The answer to that we may never know but it’s certainly perplexing as to why they stayed home', 'created': '2024-11-07 02:48:08', 'submission_id': '1gl33aq'}
{'comment': 'The huge lack of votes across the board concerns me the most. \n\nFrom current numbers, which are pretty much final, 17 million Americans either a.) sat the election out or b.) had their votes disappear, and with all of the obvious red flags from swing states leads me to believe it’s the latter. \n\nPolls aren’t accurate, but she lost by a margin that far exceeds the margin of error—7-8% in some states compared to polling. \n\nI am very suspicious of what has happened here. It also appears that mail-in ballots didn’t even come close to the projected number, as if those votes (not to get conspiratorial) literally vanished.\n\nAnyway, I’m stuck between distracting myself between the next few elections and continuing to vote blue or preparing for the worst.', 'created': '2024-11-06 19:02:06', 'submission_id': '1gl33aq'}
{'comment': 'She led in some polls. She was losing in others. Trump has proved time and time again that he is impossible to poll for. He just has some weird pull toward a large section or our electorate that pollsters can’t catch.', 'created': '2024-11-06 18:56:50', 'submission_id': '1gl33aq'}
{'comment': 'You really need to understand that, POLLS MEAN NOTHING! Don’t listen to social media, celebrities, and the news media. Just vote for what makes sense to you, and your family.', 'created': '2024-11-06 19:39:59', 'submission_id': '1gl33aq'}
{'comment': "I'm center left, but if this is how it goes, then isn't that an argument for the Republican candidate? If Kamala won, then through no fault of her own, prices would go up. Sucks that it's not her fault, but the end result is the same, right?", 'created': '2024-11-06 19:11:18', 'submission_id': '1gl33aq'}
{'comment': 'Don’t tease me I can’t handle any more disappointments today', 'created': '2024-11-06 19:15:54', 'submission_id': '1gl33aq'}
{'comment': "nope, feels like republicans have that too. Let's go fascism. JD vance will blame the democrats still. Trump won't be in power for long. He was just the puppet.", 'created': '2024-11-06 23:23:06', 'submission_id': '1gl33aq'}
{'comment': "You're very wrong.", 'created': '2024-11-06 20:50:50', 'submission_id': '1gl33aq'}
{'comment': "You could tell they were trying and working hard. With Clinton in 2016 it felt so arrogant and her taking it for granted. Harris will be blamed for a very long time, but I won't ever hate her personally.\n\nSame thing with Tim Walz, the guy gave his everything under such short notice too. He wasn't a Joe Lieberman or Sarah Palin type vp pick. I won't ever hate him either.\n\nI'm not sure what the future holds for the both of them but if i had to guess, I can see Walz still being a big part of Minnesota politics. Kamala Harris I feel will be like Al Gore where she becomes a face of a issue, just like Al Gore has been with global warming. I don't see her running in California again, unlike Richard Nixon who tried to run for Governor of California two years later after the 1960 election.", 'created': '2024-11-06 18:45:44', 'submission_id': '1gl33aq'}
{'comment': ">He sailed through the primaries with ease,\n\nHe didn't even show up to the debates... he didn't even try he won without debating his opponents in the primary and refused another debate with Harris after she handed him his arse (he was so confident he could repeat his win like against Biden)", 'created': '2024-11-06 20:40:39', 'submission_id': '1gl33aq'}
{'comment': 'Under education is only getting worse.', 'created': '2024-11-06 21:52:18', 'submission_id': '1gl33aq'}
{'comment': 'No not this year. People voted for Biden in 2020, but Harris was chosen by Biden not the people.\n\nWhen Biden dropped out, Harris was pretty much appointed to the position due to time constraints, and being the chosen Vice President by Biden.\n\nIt should have been Biden sticking with his promise to be a one term president, and letting a primary happen, where Harris still could have been eligible to run for it.', 'created': '2024-11-06 19:11:19', 'submission_id': '1gl33aq'}
{'comment': "I don't think that cuts it. A short campaign can even be a benefit; less time for complications to arise. That's how most democracies do it, in fact. Harris was also all over social media, to the point they even were on Twitch of all places. Between that and volunteer numbers, they were exactly where they needed to be. And after seeing Biden receive a several-minute standing ovation for his decision and months of energy behind Harris even as late as two days ago, I do not believe complaints about not being able to pick a candidate are widespread.", 'created': '2024-11-06 19:19:38', 'submission_id': '1gl33aq'}
{'comment': '2016 had doubts and no immunity ruling or promises of revenge and assassinations. Time to stalk up on candles and "in memory of" ribbons I guess...', 'created': '2024-11-06 21:50:54', 'submission_id': '1gl33aq'}
{'comment': 'But at least we know who we are dealing with', 'created': '2024-11-07 20:00:01', 'submission_id': '1gl33aq'}
{'comment': 'It wouldn’t have helped this time but 2 of the last 4 republican wins more people voted for the other candidate', 'created': '2024-11-06 19:13:17', 'submission_id': '1gl33aq'}
{'comment': 'EC sucks, but it’s not going anywhere. How do we get the dems to actually reliably win Michigan, Wisconsin, Pennsylvania, North Carolina. Why was Virginia actually close??? Why can’t we flip Iowa? I think the party needs to ask how and what needs to happen to see that?', 'created': '2024-11-06 19:26:57', 'submission_id': '1gl33aq'}
{'comment': 'The Democrat Party has a lot of work to do to expand its coalition. How do we make a more welcoming space for men, Latinos, and others without sacrificing our values. How do we change our communication to reach them and make them feel like they can find community here. Because right now, the only place they are finding that community is within the Republican Party, unfortunately.', 'created': '2024-11-06 22:01:03', 'submission_id': '1gl33aq'}
{'comment': 'I have hopes for the house ; the Senate still has the filibuster however i fear the pressure will be great, however only need 3 Republicans to vote against it; I know 1 for sure, only 2 more', 'created': '2024-11-07 13:51:39', 'submission_id': '1gl33aq'}
{'comment': "It'll happen the opposite way. Like my family and I, we simply left the red state of FL for the blue station CO and never looked back. Florida can get wiped off the map in the next hurricane for all we care", 'created': '2024-11-06 22:39:21', 'submission_id': '1gl33aq'}
{'comment': 'I know that in 2 years there will be a big congressional election. If there’s not a massive blue wave, I’m calling it now we’re in deep shit. \n\nTrump has essentially 2 years to enact his project 2025 and all the other hateful diatribes *IF* dems show up in droves for the congressional race. His first year is largely going to be spent navigating his legal problems and pardoning himself. If dems don’t show up though, we’re in for a long 4 years. This county could potentially look unrecognizable by then.', 'created': '2024-11-06 19:29:16', 'submission_id': '1gl33aq'}
{'comment': "Alot of people are ashamed to admit to voting for him out in public. They don't want to be associated with Maga extremists. \n\nAlot of Trump voters are unfortunately everyday people you see at Walmart, Publix, Safeway whatever store you shop at. They aren't all Jan 6 type people.", 'created': '2024-11-06 19:02:38', 'submission_id': '1gl33aq'}
{'comment': 'Democrats need to stop relying on, and believing in, polls. The silent Trump voters (non-extremist), your average American voter, does not listen to celebrities, and polls.', 'created': '2024-11-06 19:45:08', 'submission_id': '1gl33aq'}
{'comment': 'Yes but in 2020 20m people voted for democrats. Where’d they go this time?', 'created': '2024-11-06 20:05:11', 'submission_id': '1gl33aq'}
{'comment': 'Essentially, you’re sort of correct! It just depends on where you stand. I’m more of a democratic socialist, and I’d rather try to get someone elected who will take on that challenge and try to break that wheel. (This would also require the house and senate). \n\nUnder that system I described, America is essentially ran by about 810 people. That is absolutely unacceptable.', 'created': '2024-11-06 19:18:55', 'submission_id': '1gl33aq'}
{'comment': 'Not really, because they have no incentive to lower prices under Trump. Especially with no future elections to worry about anymore.', 'created': '2024-11-06 21:46:59', 'submission_id': '1gl33aq'}
{'comment': 'We’ve basically become a plutocracy, why we just don’t openly admit it idk. \n\nWe’re a government run by the rich. And the rich have learned to use the carrot and the stick on the American people, to force their way. Every damn administration, they always want the same thing. Obliterate their taxes. They won’t stop until they don’t pay taxes at all.', 'created': '2024-11-07 01:44:48', 'submission_id': '1gl33aq'}
{'comment': 'Im just not totally ready to accept they will have all three chambers', 'created': '2024-11-06 19:21:30', 'submission_id': '1gl33aq'}
{'comment': "I'm preparing for the worst. So far my best strategy is 🤷🏾\u200d♂️\n\nThat's all I got. I'm going to curl up into a ball now.", 'created': '2024-11-06 21:48:59', 'submission_id': '1gl33aq'}
{'comment': 'Prove it then, chump', 'created': '2024-11-06 20:52:19', 'submission_id': '1gl33aq'}
{'comment': 'Agreed. The future is uncertain, but they gave it their all and I’ll forever admire them for that.\n\nI also hope Tim sticks around here in the midwest. We need a sane state like Minnesota to keep staying sane.', 'created': '2024-11-06 19:24:14', 'submission_id': '1gl33aq'}
{'comment': 'Harris did everything right. America failed her.', 'created': '2024-11-06 21:51:45', 'submission_id': '1gl33aq'}
{'comment': 'Senator Walz has a nice ring to it.', 'created': '2024-11-07 00:02:02', 'submission_id': '1gl33aq'}
{'comment': 'Exactly. Now Kamala didn’t have to endure primaries either, but comparatively speaking, trump had an easier path as he *knew* what his plan was 3 years ago. I imagine Harris didn’t necessarily think she’d be campaigning for president against trump in 2021. Less time to prepare=more difficulty.', 'created': '2024-11-06 21:15:20', 'submission_id': '1gl33aq'}
{'comment': 'Facebook being the primary source of “news” for tens of millions of Americans is detrimental to American democracy. That includes twitter as well. Our first amendment makes policing election-breaking misinformation completely impossible on platforms that see hundreds of millions of users daily.', 'created': '2024-11-06 21:55:35', 'submission_id': '1gl33aq'}
{'comment': 'What am I thinking of, then? Because my brain keeps remembering a headline that read "President Biden wins NH Primary."', 'created': '2024-11-06 19:13:06', 'submission_id': '1gl33aq'}
{'comment': 'I really don\'t think it would have mattered. Inflation and "the boarder!!!" were too ingrained in voters\' minds.', 'created': '2024-11-06 22:27:52', 'submission_id': '1gl33aq'}
{'comment': 'That’s absolutely true. Imagine how much differently the American political landscape could look! Roe would still stand, maybe a free associates at a community college for everyone, Medicare for all who want it, massive climate change reform, etc.', 'created': '2024-11-06 19:21:47', 'submission_id': '1gl33aq'}
{'comment': 'They need to pander to whites (and that includes the large portion of Hispanics who see themselves as white adjacent i guess).', 'created': '2024-11-06 20:42:44', 'submission_id': '1gl33aq'}
{'comment': 'I don’t know if it’s as much “what do we do” as it is “what did we do wrong *this time*”. I think all that stuff I listed on the original post really put a major handicap on the democratic chances to win this election. \n\nThis was (I believe, if I’m not mistaken) the biggest Republican victory in terms of margins since Reagan. Biden won *handily* just 4 years ago. Democrat top brass needs to sit down and go over it through the lens of “whatever the hell we just did, we need to do the exact opposite”.', 'created': '2024-11-06 19:32:41', 'submission_id': '1gl33aq'}
{'comment': 'NY, IL, NJ, and NH were also all too close, within 5-7% of flipping.', 'created': '2024-11-07 01:21:52', 'submission_id': '1gl33aq'}
{'comment': 'Here’s to hope 🥂\n\nAlcohol and nicotine sales just skyrocketed.', 'created': '2024-11-06 19:55:02', 'submission_id': '1gl33aq'}
{'comment': 'I agree, they may not all be the J6 type, but they all have the same hate-driven undertones. \n\nIn the past 4 or so elections and in virtually all of them moving forward, the democrat platform is “what can we do to help those we love” and the republican platform is “what can we do to *hurt* those we *hate*”', 'created': '2024-11-06 19:26:06', 'submission_id': '1gl33aq'}
{'comment': "Prices are never coming down, but in theory the prices would keep going up under Harris and they won't under Trump.", 'created': '2024-11-06 22:06:37', 'submission_id': '1gl33aq'}
{'comment': 'Same. I’ve tuned it out for my sanity but if we can keep the house we AT LEAST have something to check them.', 'created': '2024-11-06 20:08:31', 'submission_id': '1gl33aq'}
{'comment': "That's the problem with America. Other races exist. We all want equality.", 'created': '2024-11-06 21:54:59', 'submission_id': '1gl33aq'}
{'comment': 'Yeah for sure, but coming out of that is how do we find a way to draw in the people we think should be voting for us. I don’t have the answers, other than find a way to pin every bad economic decision on Trump', 'created': '2024-11-06 19:39:28', 'submission_id': '1gl33aq'}
{'comment': 'I about stuffed an entire can of Zyn into my mouth last night about 11:30 pm', 'created': '2024-11-06 20:18:51', 'submission_id': '1gl33aq'}
{'comment': 'The president can change that through regulation.', 'created': '2024-11-06 22:07:21', 'submission_id': '1gl33aq'}
{'comment': 'And until the whites are the majority, and that includes a lot of Hispanics who see themselves as white adjacent even if you call them garbage, this is going to be a fight.', 'created': '2024-11-06 22:08:54', 'submission_id': '1gl33aq'}
{'comment': 'Part of me does wonder if progressives didn’t show up as much as expected, but as a democratic socialist myself….there is *no fucking way* I would have stayed home in protest to the candidate not being progressive enough, and essentially helping *donald trump* get elected. So if that’s what happened that would be very shocking to me that they’d choose trump over Harris.', 'created': '2024-11-06 19:41:37', 'submission_id': '1gl33aq'}
{'comment': 'I was 3 glasses of wine in (because I didn’t have anything else at hand) before he even hit 200. Called it a night at 1:30 when she was 37 down. I was hoping PA and MI would go blue, I was naive.', 'created': '2024-11-06 20:40:21', 'submission_id': '1gl33aq'}
{'comment': 'In the wrong direction.', 'created': '2024-11-06 22:47:06', 'submission_id': '1gl33aq'}
{'comment': 'It maybe moved the needle in a few swing states (look at Dearborn Michigan) but the bigger question is why did across the board did the country move to the right?', 'created': '2024-11-06 19:53:49', 'submission_id': '1gl33aq'}
{'comment': 'In any direction they want.', 'created': '2024-11-06 22:48:21', 'submission_id': '1gl33aq'}
{'comment': 'I have no idea, that’s the question. But I do know about 15 million votes are missing. Trump got almost the same amount of votes he got in 2020, but Harris is missing millions that Biden captured', 'created': '2024-11-06 20:20:11', 'submission_id': '1gl33aq'}
{'comment': 'Yeah. A lot of that can likely be attributed to 2020 expanded mail in ballots. I’m lucky to have lived in places that have always had mail in, which makes it incredibly easy to vote. But it makes you think where else could there have been better turnout and why wasn’t there?', 'created': '2024-11-06 20:22:07', 'submission_id': '1gl33aq'}
{'comment': 'That’s the downside to last night *right there*. With control over the presidency, the senate, and (quite possibly, almost likely) the house, if we think we have access to voting issues now…. Just wait. \n\nTrump winning the presidency was always going to be depressing regardless. But if dems could have had control of house and senate, trump would have been very much limited in what he could actually *do*. He’d be a loudmouth figurehead, that’s about it.', 'created': '2024-11-06 21:18:29', 'submission_id': '1gl33aq'}
{'comment': 'I don’t understand how turnout was lower. Everywhere I looked, it was lines. People standing in lines that stretched for blocks. \n\nAnd the turnout was less? It doesn’t make sense.\n\nWho are the Rs gonna blame when something goes wrong now? The Rs are in charge of everything.\n\nI feel physically ill.', 'created': '2024-11-06 15:56:17', 'submission_id': '1gkzekh'}
{'comment': '[removed]', 'created': '2024-11-06 15:44:08', 'submission_id': '1gkzekh'}
{'comment': 'The problem is not that “my party” didn’t win. It’s that THIS GUY won. And he will have hardly any checks against his power. And I sincerely doubt he will leave willingly in 4 years.\xa0', 'created': '2024-11-06 17:01:00', 'submission_id': '1gkzekh'}
{'comment': 'It’s hard to find hope knowing he has the senate, he may get the house (not sure), he has jd vance as vp, and he has laura loomer next to him. He will get rid of anyone who will try to challenge him and worst we cant even think of the next election because there may not be one. Thats hard to think about. This is not obama vs mccain or bush vs kerry. Those days are long gone.\n\nAlso the fact he won the popular vote…\n\nEDIT: HE won the popular vote. Accidentally typed we', 'created': '2024-11-06 15:36:35', 'submission_id': '1gkzekh'}
{'comment': 'Really our only hope is that he dies sooner rather than later. I know that that is dark but that is the situation.', 'created': '2024-11-06 15:54:04', 'submission_id': '1gkzekh'}
{'comment': 'I live in California but in a MAGA town. I have no one, literally no one to share my feelings with. After sorting through my thoughts and fears this morning... I think my only comfort is that I live in California and Newsom does not cave to Trump. I sincerely hope that will remain true. It’s just very isolating and lonely to be the only one that is not celebrating today. I have a deep unsettling fear in my gut. I know for sure I will not be traveling through any red states for the foreseeable future. There was also the small glimmer of hope of having one more baby in the next 4 years… but that was squashed today. Too much uncertainty.', 'created': '2024-11-06 16:34:01', 'submission_id': '1gkzekh'}
{'comment': '"Upcoming 4 years?"\n\nWe just had a national vote on whether to continue as a democracy. Or to let the Republicans establish their new authoritarian state. \n\nWe lost. The authoritarians will hold the White House, the Senate, the House, and the Supreme Court. \n\nIf there is an election in 4 years, it will be designed not to be winnable by Democrats.', 'created': '2024-11-06 15:28:51', 'submission_id': '1gkzekh'}
{'comment': 'As a therapist (with many trans clients at that), I am extremely concerned about the mental health of LGBTQ folks in this country. I’m concerned suicide rates will soar. My heart aches for them and for women everywhere whose rights have been stripped away.', 'created': '2024-11-06 17:20:12', 'submission_id': '1gkzekh'}
{'comment': 'I think the part that bums me out is we saw maybe the death of populist politics and social liberalism. We are headed towards at the very least a super conservative country where billionaires have tricked rural voters into thinking their interests align. \n\nDemocrats have been burned by social liberalism twice now and I don’t think it’ll happen again.', 'created': '2024-11-06 15:27:04', 'submission_id': '1gkzekh'}
{'comment': 'Does anyone want to start a support group', 'created': '2024-11-06 17:22:02', 'submission_id': '1gkzekh'}
{'comment': '>If anything, it should remind us all of what we\'re really struving to achieve. An election is not about winning or losing like it\'s the super bowl, it\'s about sharing our vision for a better tomorrow, with all our fellow Americans, a people full of diversity and contradictions, so alike we are, even if we may never really agree on values.\n\nTf. When the other part of the country\'s vision for a better tomorrow is literally to kill the other side, mass deport them and take away their rights and don\'t really care about the Constitution/laws, there isn\'t really much of a "shared vision" there. Those are two extremely opposed sides. These aren\'t merely "differences" as you try to paint them. Those are like Civil War level type differences. Part of the country wants authoritarianism and the other side does not.\n\n>Like Biden said, "You can\'t love your country only when you win." Today, all of us who are members of the Democratic Party are now getting the opportunity to put those sentiments to the test.\n\nWtf. When have the Democrats EVER obstructed the peaceful transfer of power when losing? NEVER. We already demonstrated we follow the Constitution in 2000 and 2016. The real question is now where do they go from here, when the next four years means mass deportation, abandoning Ukraine, cozying up to Putin, undoing healthcare, undoing affordable education, harsher abortion and the republican government will pick and choose if a state will get aid during a disaster based on their politics? Your sentiment that onus is on Democrats to always take the high road (AGAIN) as if they hadn\'t before is utter bs\n\n>getting through these upcoming four years, and coming out of them stronger as a result, with a stronger resolve to keep fighting for the values we believe in, and to keep striving to make the country that we love a better place.\n\nYou\'re wrong. Trump\'s first term literally left the country and institutions battered. The SC has never had this low of an approval. Federal agencies now are no longer controlled by experts in their field but will be subject to the whims and random politicians and their donors. More important regulations are on the chopping block. And you think that somehow by some magic the country is gonna be better in four years after mass deportations? Wake up dude. The next four years are gonna suck and not sure how the country will fare. The only silver lining is places like New York and California should be able to hold out for four years simply because they\'re pretty much their own mini countries and have giant economies. But the rest of the country is kinda fucked. If you\'re in the midwest/south/swing states and are minority, recent asylum migrant or lgbtq+, the next few years are gonna be hell. Sugar coating that with "well Democrats take the higher road again" is some privileged bs.\n\nAlso again with this bs\n\n>Like Biden said, "You can\'t love your country only when you win." Today, all of us who are members of the Democratic Party are now getting the opportunity to put those sentiments to the test\n\nYou do realize the hypocrisy in using this Biden quote to pacify law abiding and Constitution supporting rage against Jan 6 and authoritarianism supporters right? Like this is some really weird bs', 'created': '2024-11-06 17:32:35', 'submission_id': '1gkzekh'}
{'comment': "> it was also not that shocking, not after 2016.\n\nYes and no. I think of most of us were conscious of the fundamental uncertainty and lack of confidence in this election. The polls were very, very close, and if traditional indicators maintained themselves, that wasn't good enough because Dems need a substantial win in the popular vote in order to win the electoral college. You saw this uncertainty and anxiety in most posts.\n\nBut that doesn't mean we didn't all still have hope. And it's devastating to get that hope dashed. And there's the whammy of the double-take: wait, not only did Trump win, but we won *after all that*??? Like Jesus wtf he won by a healthy margin *after all the shit he did?* \n\nSo not shocking but yes, shocking.", 'created': '2024-11-06 15:49:34', 'submission_id': '1gkzekh'}
{'comment': 'Stop being in denial and start fighting back.', 'created': '2024-11-06 15:55:37', 'submission_id': '1gkzekh'}
{'comment': "Sorry, there is no hope. I am a loyal Democrat, since a kid drawing peanuts on posters for Jimmy Carter.\n\nI have closely followed politics my whole life, I am deeply political by nature.\n\nThere is no hope. None. Most of us, if not all, will not see the end of the fascist dictatorship that will be put into place by trump's Nazi team, billionaires, putin and evangelicals.\n\nIf people want to try to live on these empty platitudes of hope, fine, but you are in for a world of utter pain.", 'created': '2024-11-06 15:23:07', 'submission_id': '1gkzekh'}
{'comment': "One thing I do not want to see after this election is what the pundits have to say about the win. I don't want to see them throw Harris under the bus like they did Hillary. I don't want to hear them nitpick at every single sentence she spoke and laugh she made and state she visited. I don't want to hear about how brilliant the Trump campaign was in courting misogynistic young men and men of color to their racist ranks. \n\nAs far as I'm concerned, this election proves only one thing and that is that a woman cannot be elected president in this country now. It doesn't mean it won't happen within the next century. It's just that we are a nation that as a whole does not value women's lives, leadership, and contribution to society. And, that of course, includes many women themselves who do not value themselves and others. The only other takeaway from my perspective is that we have already become an oligarchy and we just didn't know it. Elon Musk and billionaire bros' money played a huge role in unseating Democrats in the Senate and in bribing young men to vote for Trump. In no other time in our nation's 248 years would Musk have been allowed to give away $1 million to male voters. And he even says it wasn't a lottery. They personally called all the guys who signed up and vetted them before deciding which ones would get the money. In other words, they knew whether and for whom they had voted.", 'created': '2024-11-06 18:08:27', 'submission_id': '1gkzekh'}
{'comment': 'I’m trying to come up with some jokes to lighten the mood because what else can you do right now? \n\nThe two most underrated people who had an awful day yesterday was Grover Cleveland and Maya Rudolph', 'created': '2024-11-06 15:22:39', 'submission_id': '1gkzekh'}
{'comment': "Guys maybe it's time we start organizing at local levels and try to appeal to the working class too. We can mourn today but organize tomorrow.", 'created': '2024-11-06 19:06:46', 'submission_id': '1gkzekh'}
{'comment': 'All we can do is defend and protect the people we love. As my daughter says, "Put on your oxygen mask" before spending your empathy on people you don\'t know. The plane is going down, and protecting ourselves is all that\'s left.', 'created': '2024-11-06 18:16:55', 'submission_id': '1gkzekh'}
{'comment': 'There is no hope to be found here', 'created': '2024-11-06 17:52:03', 'submission_id': '1gkzekh'}
{'comment': 'As I read these comments I sit here thinking that MAGA wants hate to win. Hate won… women’s rights lost… gays lost… democracy lost. All we gained is a narcissistic douchbag that poured propaganda and rhetoric down the throats of the bigots and racists. Hate runs deep and this will not change in my lifetime', 'created': '2024-11-06 21:51:49', 'submission_id': '1gkzekh'}
{'comment': 'A dark part of me thinks these “I Voted” stickers from 2024 will end up collectors items, or in museums. Especially the cool ones.', 'created': '2024-11-06 22:34:49', 'submission_id': '1gkzekh'}
{'comment': None, 'created': '2024-11-06 15:39:09', 'submission_id': '1gkzekh'}
{'comment': 'Thank you for the reminder. Fear and hatred are what they want to install on people. I refuse to let those wear me down. Hate and fear may have won the battle but eventually hope will win the war if that makes any sense.', 'created': '2024-11-06 16:20:07', 'submission_id': '1gkzekh'}
{'comment': 'The supreme court is going to he 7-2, and be extremely right leaning for most of our lives. I get wanting to be positive, but there just is no hope. The American population has spoken, this is what they want. We are going to be stuck with this for way longer than 4 years', 'created': '2024-11-06 20:46:33', 'submission_id': '1gkzekh'}
{'comment': 'I’m pretty defeated, but I’m also pretty determined to not let this happen again. Once I get a chance to mourn, I’m going to think about ways to get more active in politics.', 'created': '2024-11-06 22:36:45', 'submission_id': '1gkzekh'}
{'comment': "I'm telling myself that we will somehow pull through this, but I'm mad, disgusted and very worried about the fact that they just installed a lunatic KING. \nThanks, so called supreme court, McConnell and other GOP tyrant wannabes. \nDemocracy pretty much died.", 'created': '2024-11-06 19:18:07', 'submission_id': '1gkzekh'}
{'comment': 'Biden was 8 point behind Trump this summer had he stayed in the race, we would have LOST SO MUCH MORE, we should thank Biden and Harris. right now in states where Trump won the Democratic candidate in the senate are winning their seats, as of today the house is still in play, and if it goes it will be by a mere 5-8 seats. Trump should have won in 2020 and today we would be celebrating a Democrat Victory similar to 2008 ; Inflation was a forgone conclusion in the spring of 2020, high prices were necessary to get us out of COVID, Biden got stuck with a bag of sht, not of his making, unlike Bush.\n\nPlease remember \n\nWe lost , but this is a WAR, and today was merely one battle in a long conflict where we live to fight another day in a better position then what we were facing 6 months ago. REMEBER THAT!', 'created': '2024-11-07 00:55:12', 'submission_id': '1gkzekh'}
{'comment': 'What’s reassuring to me is that Trump is in such poor health I think there’s a nonzero chance he kicks it during this term. Would anybody really be surprised? Then we’re stuck with Vance. Yikes. America really jumped the shark on this one huh?', 'created': '2024-11-07 02:09:17', 'submission_id': '1gkzekh'}
{'comment': None, 'created': '2024-11-06 18:34:23', 'submission_id': '1gkzekh'}
{'comment': 'yall need to relax. if trump didnt pull some bullshit in 2016 with the republican majority, we will be fine now. it’s just gonna be a stagnant 4 years. not what we want, but the world wont be over. just stay calm everyone.', 'created': '2024-11-06 15:35:00', 'submission_id': '1gkzekh'}
{'comment': 'We rest, we mourn, then we plan and fight. Four years feels like a long time, but there are scarier monsters ahead, and we need to plan for battle.', 'created': '2024-11-06 16:38:53', 'submission_id': '1gkzekh'}
{'comment': 'I spent four hours playing with my four-year-old grandson today to de-stress from the election results. He loaded up a toy trailer with fake food. When I asked him what that was, he said, “ It’s the trailer of happiness”. I needed that.', 'created': '2024-11-07 04:26:26', 'submission_id': '1gkzekh'}
{'comment': '2026!!!!!!!!', 'created': '2024-11-07 14:00:11', 'submission_id': '1gkzekh'}
{'comment': "Why bother?it's over \n\nCongratulations America \n\nYou just destroyed yourselves", 'created': '2024-11-06 22:39:37', 'submission_id': '1gkzekh'}
{'comment': 'What can we do? Is there anything that we can do as individuals to put some form of guardrails in place to at least get Trump out in 2028?', 'created': '2024-11-07 00:22:56', 'submission_id': '1gkzekh'}
{'comment': 'The great democratic experiment has failed. Religion ruins everything eventually. That orange pos promised to be a dictator and he promised they would never have to vote again.', 'created': '2024-11-07 00:25:13', 'submission_id': '1gkzekh'}
{'comment': None, 'created': '2024-11-06 16:48:26', 'submission_id': '1gkzekh'}
{'comment': 'Nothing will “go wrong” in their eyes. Their god-king can do no wrong. Anything that does go bad will be the work of corrupt democrats.', 'created': '2024-11-06 20:54:38', 'submission_id': '1gkzekh'}
{'comment': 'Im not a conspiracy theorist at all. Like, AT ALL. I also live in Pittsburgh, PA, the area of the country that was the most targeted by political ads this cycle. \n\nMy neighbor is a poll worker at my polling station. She’s been working there for at least 8 years now. \n\nI got a chance to speak with her during a lunch break yesterday and before I went over to vote. She told me that this was the largest turnout she had personally seen during that time. \n\nSo, I don’t know what the hell happened. My experience is only anecdotal. But it’s crazy to me that the turnout wasn’t at least somewhat comparable to 2020.', 'created': '2024-11-07 01:04:45', 'submission_id': '1gkzekh'}
{'comment': 'I do not believe the vote counts, in many places. That needs to be audited.', 'created': '2024-11-06 21:57:15', 'submission_id': '1gkzekh'}
{'comment': 'No worries they will blame everyone else besides themselves. Heck at the end they might even blame us because THEY VOTED for him', 'created': '2024-11-07 00:19:41', 'submission_id': '1gkzekh'}
{'comment': 'This country is finished. This mandated presidency will usher in the worst of P2025. A christofascist dystopia where there is a good chance democrats will receive punishment. Christianity will be forced onto us like never before. \n\nAt least with Kamala I believe she would have been president for all Americans but now there is doubt. Republicans and others who voted for Trump can thump their chests all they want but they signed the death warrants for a lot of Americans today.', 'created': '2024-11-06 16:16:32', 'submission_id': '1gkzekh'}
{'comment': '[removed]', 'created': '2024-11-06 18:30:40', 'submission_id': '1gkzekh'}
{'comment': None, 'created': '2024-11-06 21:57:05', 'submission_id': '1gkzekh'}
{'comment': "Yup. If Obama lost to McCain or Romney we would have been absolutely fine. It would have been disappointing, but life would have gone on as normal. \n\nThis isn't just a Republican winning. It's a fascist regime taking over the country and they can do anything they want.\n\nThere's nothing we can do about it and I feel hopeless. Half the country deserves what is about to happen to them, but we don't. We deserve so much better.", 'created': '2024-11-06 17:19:31', 'submission_id': '1gkzekh'}
{'comment': 'Yeah agreed. I’m not a “blue no matter who” person. It’s more that he specifically won that’s the problem.', 'created': '2024-11-06 23:08:07', 'submission_id': '1gkzekh'}
{'comment': 'He lies about everything, but the mass deportations and Schedule F on day 1 we should all believe.\n\nHis minions were frustrated at how slowly they moved in 2016 due to inexperience and incompetence. They want to hit the ground running and they have a mandate to move fast.\n\nEven under the best of circumstances with the best people and experts, the effort of moving 20 million ish people from one country to another is a gargantuan task that will inevitably be a humanitarian disaster that never ends.', 'created': '2024-11-06 16:07:06', 'submission_id': '1gkzekh'}
{'comment': 'the fact that he won the popular vote is definitely stupefying', 'created': '2024-11-06 17:01:11', 'submission_id': '1gkzekh'}
{'comment': 'I don\'t understand "we won the popular vote." Trump is ahead by 5M votes this morning.', 'created': '2024-11-06 17:02:04', 'submission_id': '1gkzekh'}
{'comment': "JD Vance would take over and he would probably be a more effective villain because he is not as stupid as Trump, and can avoid the scandals, while also dodging elections Vance's wooden personality would never win otherwise.", 'created': '2024-11-06 16:11:10', 'submission_id': '1gkzekh'}
{'comment': 'If he dies that weird eye liner wearing guy becomes President.', 'created': '2024-11-06 16:11:43', 'submission_id': '1gkzekh'}
{'comment': 'But then we would get Vance as our president.... bleeeeeeeegggggghhhhhhhh.....', 'created': '2024-11-06 20:07:36', 'submission_id': '1gkzekh'}
{'comment': "You are not alone here. Many of us have the same feelings of disappointment, sadness and fear. I'm glad you have a wonderful governor. I live in TN which is as red as blood. I am going to continue to advocate for the LGBTQIA community, immigrants, homeless people and women.", 'created': '2024-11-06 18:23:44', 'submission_id': '1gkzekh'}
{'comment': 'As a fellow Californian, who is also stuck in a ruby red town, I got you. I have a lot of former friends and family who are now dead to me, due to succumbing to the orange virus.', 'created': '2024-11-06 18:38:44', 'submission_id': '1gkzekh'}
{'comment': "it's really hard to be rational and hopeful in this scenario. frankly they seem like opposite perspectives now.\n\nbut hey, alls i can do is hope. where there is delusion there is hope, as a sports guy once said. so i gotta become delusional...", 'created': '2024-11-06 15:44:04', 'submission_id': '1gkzekh'}
{'comment': 'the damage that will be done to everything will take decades to fix.', 'created': '2024-11-06 16:55:34', 'submission_id': '1gkzekh'}
{'comment': "I agree. They can disenfranchise even more democratic voters. They may even try to repeal women's right to vote as their cultists suggest.", 'created': '2024-11-06 18:12:07', 'submission_id': '1gkzekh'}
{'comment': None, 'created': '2024-11-07 05:13:09', 'submission_id': '1gkzekh'}
{'comment': 'They are coming after birth control next.', 'created': '2024-11-06 20:09:10', 'submission_id': '1gkzekh'}
{'comment': 'Here’s a saddening fact: calls for the Trevor project have gone up by 200% because of this election and recent news. (For those who don’t know, The Trevor Project is a nonprofit organization focused on crisis intervention and suicide prevention for LGBTQ+ youth.)', 'created': '2024-11-06 21:20:38', 'submission_id': '1gkzekh'}
{'comment': 'If you look at the national vote numbers from 2020 and now.. Trump likely won’t get much more than what he got in 2020. Kamala has received significantly less than Biden did in 2020 so that leads me to believe that voters just didn’t turn out for Kamala; if those 10M+ voters had turned out for her, we would’ve had a very different outcome today.\n\nIt’s so sad. I really thought there was going to be record breaking turnout. I also had faith in the silent Republican voter but I guess not.', 'created': '2024-11-06 15:33:11', 'submission_id': '1gkzekh'}
{'comment': 'Bravo - well stated!', 'created': '2024-11-06 18:53:30', 'submission_id': '1gkzekh'}
{'comment': 'I live in a super red area and I am scared to tell people I am not Republican. Everyone just speaks to me like I am one of them and I often just have to smile and nod my head like I am so as to not rock the boat.', 'created': '2024-11-06 16:11:59', 'submission_id': '1gkzekh'}
{'comment': 'It just happened. Let us grieve a bit.', 'created': '2024-11-06 20:26:21', 'submission_id': '1gkzekh'}
{'comment': 'After this election every hope I’ve had is gone.. and it doesn’t help that I’m surrounded by people who are celebrating his win. I hope all of them get what they voted.', 'created': '2024-11-06 15:51:09', 'submission_id': '1gkzekh'}
{'comment': 'Exactly. There’s no hope because you can’t trust Americans to do the right thing anymore. Even if these next 4 years go terribly by all measures, democrats will still struggle to win', 'created': '2024-11-06 15:30:34', 'submission_id': '1gkzekh'}
{'comment': "There may be little hope left. So be it. We go on without hope. Because the pain is coming, and the death and destruction that will follow, is not to be believed... Putin, Netanyahu, and Trump, it's their world now, all we can do is resist.\n\n\nGeoffrey: *As if it matters how a man falls!*\n\nRichard: *When the fall is all that is left, it matters a great deal.*", 'created': '2024-11-06 16:06:49', 'submission_id': '1gkzekh'}
{'comment': '> there is no hope\n\nNot so fast my friend 💙🇺🇸', 'created': '2024-11-06 15:28:19', 'submission_id': '1gkzekh'}
{'comment': 'Maybe as a Democratic party we move away from the New Democrat era? Just maybe. Biden was an initiator of that era, and the only reason he won was a confluence of Covid conditions that enabled us to be hyper focused on the election. The Democratic party would be in the center, if not right center, in the rest of the Western world. Maybe this is a wake up call. When the people are suffering, they need change.', 'created': '2024-11-06 18:34:22', 'submission_id': '1gkzekh'}
{'comment': "This. And I don't even think it was because she was a woman. I think they just wanted Trump to be win. That's it. \n\nBut we can make this work, somehow.", 'created': '2024-11-06 20:25:07', 'submission_id': '1gkzekh'}
{'comment': 'I had this bizarre shower thought last night while watching the results where I started thinking “fine, don’t do it for Kamala, but for the love of god, do it for Grover Cleveland! His whole reputation is “the two non-consecutive term guy”, don’t take that away from him!” \n\nIt’s strange, the things we think about while watching a disaster unfold in real time.', 'created': '2024-11-06 16:00:01', 'submission_id': '1gkzekh'}
{'comment': "Reddit's been taking a backseat today to all of my other responsibilities so I haven't had time to read or process most of these comments, but yeah I totally get this sentiment. I want to be positive moving forward, but not delusional.", 'created': '2024-11-06 19:40:16', 'submission_id': '1gkzekh'}
{'comment': "2026. Take seats. Win local elections. The left has been weak on that front and it's going to cost the Democratic party dearly in the years ahead.", 'created': '2024-11-06 16:19:35', 'submission_id': '1gkzekh'}
{'comment': 'We have midterms in 2026.', 'created': '2024-11-06 15:58:38', 'submission_id': '1gkzekh'}
{'comment': 'What makes you think there will be an election in 2028. There won’t be. This was the last US presidential election,', 'created': '2024-11-06 16:01:38', 'submission_id': '1gkzekh'}
{'comment': 'As unsurprised as I’ll be by any tomfoolery that’s sure to happen with the 2028 election, a lot of people were saying elections would be gone when Trump ran the first time. \n\nThings are no doubt going to get bad. But not that bad.', 'created': '2024-11-06 16:06:05', 'submission_id': '1gkzekh'}
{'comment': "We didn't die. We are alive. We just need some time to regroup and think of our plans. The name of the game is survival at the moment.", 'created': '2024-11-06 20:23:57', 'submission_id': '1gkzekh'}
{'comment': 'I want to believe you’re right, but I think this time will be very different than the first term.', 'created': '2024-11-06 15:38:35', 'submission_id': '1gkzekh'}
{'comment': 'He literally tried to repeal the affordable care act and replace it with “concepts of a plan” but lost by 1 vote in the senate (bless John McCain) Extreme MAGA policies will be passed as any “moderate” republicans will get in line\xa0', 'created': '2024-11-06 15:41:13', 'submission_id': '1gkzekh'}
{'comment': "I hope you're right but then I think of the fact that he still needed to run for reelection after 2016. There's nothing stopping him now. The world might not be over, but it will be vastly different in 4 years.", 'created': '2024-11-06 18:22:32', 'submission_id': '1gkzekh'}
{'comment': 'Are you for real right now? The Supreme Court is lost to us for many of our lifetimes. They’ve also ruled he has infinite immunity as president.', 'created': '2024-11-06 21:45:42', 'submission_id': '1gkzekh'}
{'comment': 'Thank you 👍', 'created': '2024-11-06 15:39:19', 'submission_id': '1gkzekh'}
{'comment': None, 'created': '2024-11-06 16:45:13', 'submission_id': '1gkzekh'}
{'comment': '[removed]', 'created': '2024-11-06 16:54:52', 'submission_id': '1gkzekh'}
{'comment': 'They’ll easily blame “the mess that Biden left” for anything they don’t like.', 'created': '2024-11-08 19:33:28', 'submission_id': '1gkzekh'}
{'comment': 'I think turnout was Bigger and swing states but lower in safe states, Because they believe that Devance don’t matter in a safe state', 'created': '2024-11-07 14:11:16', 'submission_id': '1gkzekh'}
{'comment': "Trying to figure that one, So in swing states the registered democrats who did and didn't vote that would be helpful.", 'created': '2024-11-07 01:43:07', 'submission_id': '1gkzekh'}
{'comment': 'Give me liberty or give me death, and very soon it looks like I’ll be choosing death. I feel like a terminally ill patient, where I have 2 more months to live…', 'created': '2024-11-06 16:40:36', 'submission_id': '1gkzekh'}
{'comment': ">Given that this is a democratic party sub, start blaming the democratic party for how they chose their candidate, and positions they support.\xa0\n\nThe Democratic Party is not to blame. Harris was a very good candidate who ran a very good campaign.\n\nBut they can only do so much when the opposition party engages in democracy in bad faith, in order to reach their religious and authoritarian goals.\n\nAnd they have been doing so for many years, by investing fully in fascist strategies of propaganda and lies. Fully weaponized rhetoric is one of the most powerful weapons humanity has.\n\nSo the next time you play a game, and your opponent cheats incessantly. And you lose. Forgive yourself. It's not your fault.", 'created': '2024-11-06 19:03:57', 'submission_id': '1gkzekh'}
{'comment': 'It\'s NOT "The Party"....\n\nWe did this s\\*it in 2016 ("Hillary ran a bad campaign and that\'s why she lost")...\n\nNo it\'s not...Trump appealed to this Country\'s hatefulness in 2016...\n\nAnd that was combined with the fact many voters will not support a Woman...\n\nAnd it worked...Trump is who they wanted in 2016...\n\nTrump appealed to this Country\'s hatefulness in 2020...\n\nAnd got MORE votes than he did in 2016\n\nBut he ran against another White man and didn\'t have that previous combination...\n\nTrump appealed to this Country\'s hatefulness in 2024...\n\nAnd that was combined with the fact many voters will not support a Woman...\n\nEspecially a Woman of Color...\n\nAnd got MORE votes than he did in either 2016 or 2020...\n\nEven won the "Popular Vote" this time...\n\nTrump is who this hateful Country wanted in 2024...', 'created': '2024-11-06 20:53:19', 'submission_id': '1gkzekh'}
{'comment': "He has already won. It's over.", 'created': '2024-11-06 22:35:14', 'submission_id': '1gkzekh'}
{'comment': 'this. mccain & romney were normal people. not fascist’s that want to destroy everything in their path.', 'created': '2024-11-06 23:39:59', 'submission_id': '1gkzekh'}
{'comment': "> a humanitarian disaster that never ends.\n\nThat's the point.", 'created': '2024-11-06 16:28:31', 'submission_id': '1gkzekh'}
{'comment': 'Trump is hand-in-hand with large corporations. Many of these corporations rely on immigrant labor, so many would literally close if they lose their workers. I dont see them allowing this to happen. \n\n If they do, they will be forced to move out of the USA and take up shop someplace else. Putting millions of workers out of work................oh shit.', 'created': '2024-11-06 16:38:33', 'submission_id': '1gkzekh'}
{'comment': '85 years ago, Hitler used the same word "deport" (with German endings) to describe what Germany was doing to Jews. There was no effort to send them to any other country. They sent them to concentration camps, where they were killed.', 'created': '2024-11-06 21:56:28', 'submission_id': '1gkzekh'}
{'comment': 'I meant He not we. Sorry, Im flustered', 'created': '2024-11-06 17:15:16', 'submission_id': '1gkzekh'}
{'comment': 'Yes but Vance doesn’t have the armies of sycophants that Trump does\xa0', 'created': '2024-11-06 17:05:01', 'submission_id': '1gkzekh'}
{'comment': None, 'created': '2024-11-06 20:51:00', 'submission_id': '1gkzekh'}
{'comment': 'Absolutely, I feel the same after going through the all the emotions over the last few hours. We have work to do, and I am looking forward to supporting those who need it. There is hope and plenty of opportunities to make a change in the long run.', 'created': '2024-11-06 18:40:23', 'submission_id': '1gkzekh'}
{'comment': 'My PMs are open if you’d ever like to chat, vent, discuss an escape plan…', 'created': '2024-11-06 19:17:21', 'submission_id': '1gkzekh'}
{'comment': "I am 53 years old, and I'm afraid that I will be long dead before our country resembles the one that I grew up in, again\xa0", 'created': '2024-11-06 18:08:55', 'submission_id': '1gkzekh'}
{'comment': "The 15th Amendment requires that everybody have the right to vote. \n\nBut it doesn't say how many votes. They could just go through with what JD said about families, and give every family an extra vote (married couples of course). And make sure it's to families who support MAGA.\n\nI know that sounds insane. But is the Supreme Court going to overrule it?\n\nOf course the husband would get the vote.", 'created': '2024-11-06 18:18:22', 'submission_id': '1gkzekh'}
{'comment': 'YES and several of his minions have already said that Project 2025 IS ON NOW.', 'created': '2024-11-08 18:39:03', 'submission_id': '1gkzekh'}
{'comment': '🥲', 'created': '2024-11-06 22:41:07', 'submission_id': '1gkzekh'}
{'comment': 'Yeah the silent republican voter was a terrible miscalculation in hindsight. You focus on those in your coalition. You don’t try to persuade outsiders at the 11th hour. \n\nThe fact Trump has found a consistent base over 3 election cycles will lead democrats to try and eat at that base. Hawkish immigration and isolationist policies. Young Americans don’t understand politicians favor those who vote. Progressives likely didn’t vote so democrats will move on', 'created': '2024-11-06 15:38:09', 'submission_id': '1gkzekh'}
{'comment': 'For your own safety, you should continue to keep it secret. They have a predisposition towards violence', 'created': '2024-11-06 16:18:53', 'submission_id': '1gkzekh'}
{'comment': 'They will get it, but so will we.\n\nHell on earth is coming.', 'created': '2024-11-06 15:52:37', 'submission_id': '1gkzekh'}
{'comment': "If there's even another election.", 'created': '2024-11-06 16:25:24', 'submission_id': '1gkzekh'}
{'comment': "Few people have the stomach for what resistance means in a Nazi state.\n\nGoing to prison for 10, 15 years for anything. In general population, with hardened criminals and gangs who will utterly prey on political prisoners.\n\nWith no glory, no one to know what you did to resist, pointlessly.\n\nI mean, respect, but I don't see many doing that.", 'created': '2024-11-06 16:12:28', 'submission_id': '1gkzekh'}
{'comment': 'Wow substantive. Blue heart is going to do wonders against an actual Nazi movement.\n\nFuck my life.', 'created': '2024-11-06 15:31:06', 'submission_id': '1gkzekh'}
{'comment': 'Yeah your right', 'created': '2024-11-06 15:58:59', 'submission_id': '1gkzekh'}
{'comment': 'You think those will happen?', 'created': '2024-11-06 16:27:19', 'submission_id': '1gkzekh'}
{'comment': 'Can we fucking get over the notion that this is a foregone conclusion. Every swing state has a D governor', 'created': '2024-11-06 17:13:03', 'submission_id': '1gkzekh'}
{'comment': 'Not helpful. Are you angry? Good, channel that and take action. You might even be right but wallowing in hopelessness doesn’t help anything or anyone', 'created': '2024-11-06 20:39:50', 'submission_id': '1gkzekh'}
{'comment': 'I mean, he almost did do away with elections with his little January 6th stunt. Mike pence stood up to him to ensure Joe Biden’s presidency. We are now relying on republicans to act in good faith at the time they have proven the least deoendable', 'created': '2024-11-06 16:16:08', 'submission_id': '1gkzekh'}
{'comment': 'i guess we will find out, but this nation has gone thru so much bullshit. we will be okay', 'created': '2024-11-06 15:40:14', 'submission_id': '1gkzekh'}
{'comment': 'i think we are gonna have a shot at the house though. we will see but it isnt looking that awful. in the event that we win the house, it will be good for us for sure. even if we lose, we wont have neonazism. theres always gonna be conspiracy but not in office.', 'created': '2024-11-06 15:45:44', 'submission_id': '1gkzekh'}
{'comment': 'well lets hope and pray the house goes our way', 'created': '2024-11-06 19:57:47', 'submission_id': '1gkzekh'}
{'comment': 'I know. That makes me as angry and sad as the MAGA stuff does.', 'created': '2024-11-06 16:56:22', 'submission_id': '1gkzekh'}
{'comment': 'I will fight them to my last breath if it comes down to it. They will have to strap me down and convert me to Christianity themselves before I let them convert me.', 'created': '2024-11-06 19:09:00', 'submission_id': '1gkzekh'}
{'comment': 'You are exactly right. The republicans acted in bad faith. They spread the lie that the Democratic Party’s goal is communism, and that Harris/Walz were communists, to the point I had to hear my father’s girlfriend rattle on for 20 minutes about what a “piece of work” Harris and Walz are.', 'created': '2024-11-06 20:17:29', 'submission_id': '1gkzekh'}
{'comment': '> We did this s*it in 2016 ("Hillary ran a bad campaign and that\'s why she lost")...\n\n\nThat\'s the definition of a bad campaign and/or a bad candidate.\n\n\nI don\'t disagree with woman/person of color. But, you need a populist candidate and you gave them a centrist.\xa0', 'created': '2024-11-06 21:52:52', 'submission_id': '1gkzekh'}
{'comment': "They'll just do what Qatar did for the World Cup and make slaves more legal.", 'created': '2024-11-06 17:08:04', 'submission_id': '1gkzekh'}
{'comment': "I understand. We are so devastated. There's no doubt a large majority of White people didn't want Harris. I don't understand what happened to this country from 2020 to 2024. How a 7M difference for Biden turned into a 5M and growing difference for Trump in 2024. But the size of Trump's victory is not illusory. It is truly stunning..", 'created': '2024-11-06 18:15:51', 'submission_id': '1gkzekh'}
{'comment': 'He has the armies of the Christofascist organizations behind him. He’s much, much worse.', 'created': '2024-11-06 22:38:10', 'submission_id': '1gkzekh'}
{'comment': "He has the Supreme Court's executive immunity blessing.", 'created': '2024-11-06 17:30:10', 'submission_id': '1gkzekh'}
{'comment': 'He’s a smart man, and much more strategic then Trump. He knows how people work ; if something happens to Trump and it’s JD’s turn to bat, he’s going to say “I was the one Trump trusted with carrying on his legacy in an event like this. I will complete what he wanted and make America great again!!” And all the MAGA folk are gonna eat it up and accept him as Trumps successor', 'created': '2024-11-06 21:17:05', 'submission_id': '1gkzekh'}
{'comment': 'we dedicate our lives to undoing all that he has and will do, yesterday was a loss in a long war , just one battle and for all reality. it was not a critical blow, compared to what the GOP suffered at the hands of Obama in 2008, Republicans took back the house just 2 years later and slowly climbed out, we need to do that too', 'created': '2024-11-07 14:06:39', 'submission_id': '1gkzekh'}
{'comment': "Same problem. We'd probably need a discord or a new subreddit for all of us.", 'created': '2024-11-06 21:39:00', 'submission_id': '1gkzekh'}
{'comment': "I'm 57 and just got disability. I just wanted to live what is left of my life in peace.", 'created': '2024-11-06 18:48:50', 'submission_id': '1gkzekh'}
{'comment': None, 'created': '2024-11-07 05:10:16', 'submission_id': '1gkzekh'}
{'comment': 'Yup, exactly. And now we will all suffer the consequences for it. It just feels so surreal. Idk if I was a fool or not for thinking she could win. I shouldn’t be shocked after what happened 2016, but this feels so much worse.', 'created': '2024-11-06 15:43:42', 'submission_id': '1gkzekh'}
{'comment': "That's why we need packs of democrats. Safety in numbers.", 'created': '2024-11-06 17:10:20', 'submission_id': '1gkzekh'}
{'comment': '> Hell on earth is coming\n\nLiterally. The religious fanatics, YallQaeda now has a mandate to try out Christian Nationalism.', 'created': '2024-11-06 16:09:57', 'submission_id': '1gkzekh'}
{'comment': 'Lol no, but dammit I need something to look forward to. I need hope.', 'created': '2024-11-06 16:46:25', 'submission_id': '1gkzekh'}
{'comment': "we won't be ok just because we have always been ok. but i hope you are right. trumps first words were, i will keep my promises. what has he promised?", 'created': '2024-11-06 15:46:39', 'submission_id': '1gkzekh'}
{'comment': 'I hope to win the house as checks and balances have to be in place. But then again, they won’t be able to blame the democrats if they have full control and things go to crap. Maybe that’s what Americans need to turn the page on MAGA', 'created': '2024-11-06 15:56:06', 'submission_id': '1gkzekh'}
{'comment': "Yep. \n\nWhen your opponents campaign strategy evolves around creating this fictional reality. There's only so much you can do to combat that if people are willing to believe them.", 'created': '2024-11-06 20:27:53', 'submission_id': '1gkzekh'}
{'comment': 'They already did this in Arkansas thanks to Sarah Huckabee Sandars child labor law...\n\nhttps://www.npr.org/2023/03/10/1162531885/arkansas-child-labor-law-under-16-years-old-sarah-huckabee-sanders', 'created': '2024-11-06 23:10:48', 'submission_id': '1gkzekh'}
{'comment': "I agree. I am 68 and I am done. I marched in the 60's, 70's and up till now. I am tired and I am done. I will welcome death when it comes. I really don't want to live through these next 4 years. If I found out I had cancer, I would not treat it. I have already cut many people out of my life and blocked their phone numbers. I don't care about them anymore cause they sure don't care about anyone but themselves. They can all f\\*ck off along with Repubs and the orange cheeto.", 'created': '2024-11-08 18:43:31', 'submission_id': '1gkzekh'}
{'comment': 'The popular vote is what has me stunned. A narrow Trump victory in a swing state or two with Harris winning the popular vote could’ve been a check in itself. Like hey maybe we do leave Obamacare alone we barely won this time. \n\nTrump dominated this cycle. This was America saying here you go, do what you said you’d do. There’s gonna be a lot of blaming. Should Harris of done this. Did Biden wait too late. Those are marginal conversations. When the loss is this big, it’s just what America wanted.', 'created': '2024-11-06 15:50:31', 'submission_id': '1gkzekh'}
{'comment': 'Nuclear fire. Do you think he will resist the urge to hit the button....', 'created': '2024-11-06 20:51:12', 'submission_id': '1gkzekh'}
{'comment': 'Hope for all those armchair "voting doesn\'t change anything" people to get up out of their basements and actually do the revolution that they\'ve been talking about then.\n\nIt\'s about as likely.', 'created': '2024-11-06 16:55:38', 'submission_id': '1gkzekh'}
{'comment': 'trump has promised a list of scary shit that i could name, but trump is a con, a liar, and the crazy shit he says wont do because it feels impossible.', 'created': '2024-11-06 15:53:47', 'submission_id': '1gkzekh'}
{'comment': "If they have full control no one will be able to turn the page ever again. No matter how badly they fuck up. Not even if 90% of people vote blue.\xa0\n\n\nThat is what you're dealing with.\n\n\nRigged is rigged. This is not 2016 GOP. It's MAGA.", 'created': '2024-11-06 16:52:03', 'submission_id': '1gkzekh'}
{'comment': 'we need the checks and balances though. or else we have nazism', 'created': '2024-11-06 16:24:57', 'submission_id': '1gkzekh'}
{'comment': "What's really appalling is how much the entire electoral map shifted red down to individual counties across states. Perhaps not enough to flip some places (but enough to flip others), but places in like New York state being in uncomfortable single-digit margins is incredibly concerning.", 'created': '2024-11-06 15:57:43', 'submission_id': '1gkzekh'}
{'comment': None, 'created': '2024-11-08 01:53:35', 'submission_id': '1gkzekh'}
{'comment': 'Yeah the blue wall has been destroyed. Republicans gave used social and digital media to bring working class and young voters under their coalition. That was the whole goal of the Bernie sanders campaign. \n\nDemocrats from now until 2028 need to pour into the digital airwaves. The information battle is completely one sided and it shows. When Trump said the country is being stolen we thought it was silly. Most of the electorate found it reaffirming', 'created': '2024-11-06 16:12:27', 'submission_id': '1gkzekh'}
{'comment': 'ive been looking at the house elections. knowing how cali counts votes, i have cautious optimism.', 'created': '2024-11-08 02:32:11', 'submission_id': '1gkzekh'}
{'comment': "Personally I think the Dems, through some fault but probably not full fault of their own, have become unelectable nationally. Individuals caucusing with the Democrats can win elections and we see this kind of play out at state level activity, and by and large progressive policies continue to gain steam. \n\nThe Democrats though as a collective political party though? The electorate simply won't vote for them. The Dems definitely are complicit in that reality, but the electorate continues to disappoint, and I simply do not see that changing ever. \n\nVoters won't vote for Democrats. Voters will vote for Obama, for AoC, for Warnock and Ossoff and Warren and whoever else, but won't vote for Democrats. I'd love to see their messaging latently and slowly fill our airwaves but fundamentally I think it'd take a new electorate.\n\nOr another Obama. Because that's what gets people out to vote, apparently.", 'created': '2024-11-06 16:19:05', 'submission_id': '1gkzekh'}
{'comment': 'I think it’s because people still expect Obama from democrats. If it’s not that level of politician, they’ll have a hard time cutting through at the federal level. \nI truly think the fundamental issue with democrats is messaging. Republicans are better at it digitally and one thing I have to credit Trump with is unifying the party. He’s clear about this is what we stand for and everyone is rowing this way. \n\nDemocrats are too disjointed. Some are progressive some are more centrist. Harris tried to unify all of that and crashed. Democrats need a Bernie like figure to say these are our populist ideals and this is how we are moving', 'created': '2024-11-06 16:31:33', 'submission_id': '1gkzekh'}
{'comment': '> The Democrats though as a collective political party though?\n\n"I will put a Republican in my cabinet."\n\nThat attitude lost the election, and the USA died for it.', 'created': '2024-11-06 16:24:30', 'submission_id': '1gkzekh'}
{'comment': "> Democrats are too disjointed. Some are progressive some are more centrist. Harris tried to unify all of that and crashed\n\nA fundamental problem for the Democrats is they are a huge tent covering a massive spread of opinions, of people from all walks of life, of groups which can have very different opinions on the same topic. The multicultural diversity of the House representatives on the Democrats' ticket is massive compared to the GOP. \n\nIt is incredibly difficult to have an unifying message when saying something somewhere which appeals to one group of people is going to alienate another. Abortion rights are a critical campaigning topic, but while that definitely appeals to a good swathe of people, it is also off-putting to very religious ethnic minority communities who may hear that message and not show up to vote. But dropping this from the campaign would then lead another group of people to wonder why the Democrats aren't campaigning on it. Look at the incredibly painful way of navigating through current conflicts and the downstream effects on certain groups in Michigan -- how do you say one thing to one group of people, a different thing to another group of people, and expect both groups to support you? \n\nThere is simply no way around this. The very ethos the Democrats as a political party represents -- empathy for others, bringing others up, sharing representation, emboldening difference -- was on the ballot, and it got viscerally rejected. \n\nThis, I think, is reality: the way to win is to appeal to voters' baser human instincts. Nothing else matters. Psychologically manipulating large groups of people is what gets them to show up to vote. Flooding them with 6-second TikTok video memes. Simplifying everything to the lowest common denominator. Because nuance is dead.\n\nEmpathy died at the ballot box in 2024.", 'created': '2024-11-06 23:50:07', 'submission_id': '1gkzekh'}
{'comment': 'I think you’ve touched on it. Generally, the electorate, especially the “middle,” will not pay attention for longer than a few seconds.', 'created': '2024-11-07 00:37:49', 'submission_id': '1gkzekh'}
{'comment': 'Thank you for saying this. I’m devastated. \n\nJudging by the national vote tallies… it looks like Trump will get slightly less or just about the same national vote numbers that he received in 2020 while Kamala is trailing Biden’s 81M national vote numbers at 66M. Trump made gains in key counties in key states.. but by looking at those four numbers, voters just didn’t turn out for Kamala. I’m shocked because there was so much enthusiasm and momentum with her campaign - I just can’t believe that this was the outcome.', 'created': '2024-11-06 15:25:22', 'submission_id': '1gkypm9'}
{'comment': 'I am so ashamed to be an American today.', 'created': '2024-11-06 15:53:15', 'submission_id': '1gkypm9'}
{'comment': 'Gen z here. I voted, phone banked, and donated money to the democrats. \n \nI’ll tell you what, my efforts were not enough. I should have been volunteering since Jan 6, 2021 or before. This *is* on me.\n\nI really thought we wouldn’t go back. Well of course I was wrong because I didn’t understand the battle we are fighting. Sure, we aren’t fighting the British empire, the confederate army, or Nazi’s in Europe, but we are at ~war~ with something very insidious.\n\nI am going to think long and hard about this outcome, and how to prevent it. \n\nMotherfuckers, it’s time to get to work. Day 1 is today if it wasn’t already. Your new hobby is civic activism.', 'created': '2024-11-06 15:38:28', 'submission_id': '1gkypm9'}
{'comment': 'Actually NPR and others are reporting that 18-29 group voted almost 50% Trump so might want to blame them instead', 'created': '2024-11-06 15:37:35', 'submission_id': '1gkypm9'}
{'comment': "I live in Erie and I'm disgusted. Not only with our state for voting for Trump, but my county.\n\nI'm not sure how much my life will change now. But I can guarantee you it will not get better. Regardless it's not about me. I worry about what will happen to this country. Even though so many of our fellow citizens want us all to suffer. Just because their lives suck and they are filled with hate, don't punish us.", 'created': '2024-11-06 15:48:37', 'submission_id': '1gkypm9'}
{'comment': 'Here’s a thought: republicans will swing it so that trump leaves, gets pardoned and gets to continue milking the country for everything he can. He still holds rallies where he can bask in the adoration of his minions and sell his crappy merchandise. Vance becomes president and things get significantly worse because as Elon says the economy gets tanked. The economy eventually gets better but just for the very rich and the rest of us continue to suffer the consequences. Voter suppression escalates so it’s harder to correct the downward spiral.', 'created': '2024-11-06 16:08:25', 'submission_id': '1gkypm9'}
{'comment': 'In 2020, 158.4 million people voted in the presidential election.\n\nIn 2024, it appears that close to 140 million people voted.\n\nWhich means almost 20 million people decided to sit this one out and not vote in this presidential election 🤬\n\n[source1](https://www.statista.com/statistics/1139763/number-votes-cast-us-presidential-elections/) \n[source2](https://www.google.com/search?q=election+results+2024&rlz=1C1GCEJ_enUS1030US1030&oq=election+&gs_lcrp=EgZjaHJvbWUqEggCEAAYQxiDARixAxiABBiKBTIGCAAQRRg5MhUIARAAGEMYgwEYsQMYyQMYgAQYigUyEggCEAAYQxiDARixAxiABBiKBTITCAMQABiDARiRAhixAxiABBiKBTITCAQQABiDARiRAhixAxiABBiKBTITCAUQABiDARiRAhixAxiABBiKBTIGCAYQRRg8MgYIBxBFGDzSAQg0MTE2ajBqOagCALACAQ&sourceid=chrome&ie=UTF-8)', 'created': '2024-11-06 16:10:27', 'submission_id': '1gkypm9'}
{'comment': 'Complacency and perhaps an unwillingness to vote for a woman was the culprit here. Outside of some sates like Florida and Texas where Trump did gain votes, go look at Trumps final numbers. They are *largely* similar to his performance in 2020, almost to the number. \n\nIn all of the swing states, Trump performed almost exactly the same as 2020, it was Democrats who didn\'t turn out. Look at New York, people say "oh he gained margins!" No, he didn\'t. He had largely the same number of votes than in 2020, but 1 MILLION NY Democrats didn\'t vote. Why?!', 'created': '2024-11-06 16:51:14', 'submission_id': '1gkypm9'}
{'comment': 'Yep. Millions of people decided to throw America, Ukraine, and democracy in the fucking trash.', 'created': '2024-11-06 18:27:11', 'submission_id': '1gkypm9'}
{'comment': '100% this. I’m just a regular old white dude who will not see any change in my life. I voted blue for my sister and partner who I want to always have full control over their body. The trans woman I met my sophomore year in college in British literature class, who I am still friends with to this day. My gay brother who is terrified what is going to happen to him. I voted blue for the betterment of society. Kamala was going to bring us hope. Her entire campaign was run on the idea of hope. Kamala was going to lift us up and show young girls in our country that they can do anything they set their mind to. Trumps entire campaign was run on doom and gloom. He never had anything nice to say about the people who disagree with him. His entire plan is to enact laws that keep white people above everyone else. I am scared for every minority group in America. I proudly stand by your side and love you all.', 'created': '2024-11-06 16:24:49', 'submission_id': '1gkypm9'}
{'comment': "Even your life will change, I promise you. The fascist dictatorship is going to descend on blue states soon enough. And you probably aren't rich enough to insulate yourself from what's coming.", 'created': '2024-11-06 15:24:53', 'submission_id': '1gkypm9'}
{'comment': "I don't agree your life won't change. You have no idea what is coming, especially if he does half of what he said he would. The economy will likely tank. Oligarchs will be happy and buy up the remnants.", 'created': '2024-11-06 17:55:00', 'submission_id': '1gkypm9'}
{'comment': '“Complacency” is a word that still applies. But not just about voting.\n\nIn reality there may not have been enough high-energy progressive votes to make up for the broad spectrum of independent and Republican voters that went MAGA. Yes the vote count went way down but maybe there’s an underlying problem of having to set up every single election as an existential threat and THE MOST IMPORTANT ELECTION OF YOUR LIFE.\n\nComplacency is a misguided notion that everyone else thinks just like you. Apparently in this election, Democrats underestimated the number of people who prefer what the other side was selling.\n\nAnd maybe instead of always demonizing the other side to be so awful that it must not be humanly possible to vote for it, it’s a better approach to dig deeper to figure out what is actually going on.\n\nOne can easily rationalize all this by just saying that the country decided to go racist and fascist for a while. There is definitely some element of that.\n\nBut these voters chose MAGA over what the Democrats offered. Not just this election. It has been brewing for almost a decade. \n\nIn the spirit of not being complacent anymore, it is probably time to figure out what is so wrong with the Democratic position that voters decided that, for a while, it’s going to tinker with racism, misogyny and fascism as a better alternative. These things go in waves and Democrats are going to have to do a lot of work to get our country out of this particularly odious wave.', 'created': '2024-11-06 15:50:15', 'submission_id': '1gkypm9'}
{'comment': 'Hispanics voted for freaking Trump. What was in it for them. This is mind boggling…', 'created': '2024-11-06 19:52:56', 'submission_id': '1gkypm9'}
{'comment': "Can't believe I'm saying this, Hillary did better than Harris in 2016, she won the popular votes which counts for something.", 'created': '2024-11-06 16:29:59', 'submission_id': '1gkypm9'}
{'comment': 'The problem from here is that people who didn’t vote see this as confirmation that their vote wouldn’t matter anyway, so they’re less likely to vote in the next election because of the illusion of being defeated on a mass scale and the sense of hopelessness that comes with that.', 'created': '2024-11-06 17:24:22', 'submission_id': '1gkypm9'}
{'comment': 'Yeah. As someone who couldn’t vote this election, this one hurt. What went wrong? Should she have been more progressive?', 'created': '2024-11-06 15:24:53', 'submission_id': '1gkypm9'}
{'comment': 'Can i haz job with you?', 'created': '2024-11-06 16:54:09', 'submission_id': '1gkypm9'}
{'comment': 'Gen z, I voted blue from a red state. I tried my best to advocate for Harris online but unfortunately we lost. The American people spoke and the majority wanted the bigoted fascist. Not much to do other than ride it out, survive, and try to find community to help each other out. I honestly feel disappointed in my fellow voters\n\nIt feels suspicious how he won this much, but will have to see if anything changes from recounts or if anything is found in possible investigations', 'created': '2024-11-06 18:03:57', 'submission_id': '1gkypm9'}
{'comment': 'Complacency is the wrong word.\n\nApathy is the right one.', 'created': '2024-11-06 20:46:09', 'submission_id': '1gkypm9'}
{'comment': "I know everything is bleak but if it helps this is Trumps second term, I think (tho today is definitely challenging my judgement)it's safe to say he won't be around for a third term especially with his age and part of me is holding out that if the plan was for JD to sweep in after him that he wouldn't have the effect that Trump had and the maga movement would die.", 'created': '2024-11-06 20:00:19', 'submission_id': '1gkypm9'}
{'comment': "I'm just numb. Completely defeated. I'm so worried for my children, and I am white as the pure driven snow. \n\nHe has demonstrated time and time again since 2015 that people only matter as long as they are useful. Now that he's the president-elect, the voters won't matter. I wouldn't be surprised if all of the union members, farmers, second amendment advocates and god fearing people of all races creeds and colors start to see the forest for the trees.\n\nI'm sure they will install the revolving door in the White House as he continues to hire cabinet members when they can provide something and fire them as soon as they refuse to fall on their swords for him, or he needs a patsy. The ultimate dysfunctional government; only out for personal gain and the acquisition and consolidation of power.", 'created': '2024-11-06 20:17:58', 'submission_id': '1gkypm9'}
{'comment': 'Complacency? Or did 15 million people just not see enough of a difference between the two candidates to come out and vote? At least in *their* eyes. I’d be interested in seeing which demographics turned out less than they did in 2020. You and I saw a major difference between the candidates, but there is also disaffection with both parties out there, especially if they view both as two sides of the same coin. \n\nI think as democrats we’d be better served to know if that were the case.', 'created': '2024-11-07 04:11:48', 'submission_id': '1gkypm9'}
{'comment': 'I will forever remember the voters who protest voted for 3rd party or didn’t vote at all. I’ll be fine under a Trump presidency, but others won’t. And as far as progressive foreign issues, my back is turned. When women, LGBTQ+ NEEDED voters domestically, they couldn’t bother. When National Guard is clubbing them and gassing them in the streets, I’ll remember it’s exactly what they wanted and go check the gains in my retirement accounts. Wall Street loves Republicans.', 'created': '2024-11-06 15:50:09', 'submission_id': '1gkypm9'}
{'comment': 'I did not vote because I can’t not because I did not want to 😭😭😭😭', 'created': '2024-11-06 15:46:11', 'submission_id': '1gkypm9'}
{'comment': 'Stop blaming complacency. It’s misogyny.', 'created': '2024-11-06 17:37:11', 'submission_id': '1gkypm9'}
{'comment': 'Dems thinking they own youth and minorities cost them. They cant fathom why Latinos voted for Trump because they are stuck on seeing them as latinos.', 'created': '2024-11-06 20:47:38', 'submission_id': '1gkypm9'}
{'comment': 'Look. It’s really simple, your crush just doesn’t care about you, your life is meaningless. Quit simping for a man, any man.', 'created': '2024-11-06 20:47:55', 'submission_id': '1gkypm9'}
{'comment': 'Awesome sentiments. I am not doing great, but I’m doing OK like I always have and I retired in January. I realize prices were a little high, but prices always have gone up in my lifetime. I just wanted a president that was decent and was actually trying to help everyone. Donald Trump will never be that person.', 'created': '2024-11-06 21:11:04', 'submission_id': '1gkypm9'}
{'comment': "I'm 67. In the top few percent asset wise. My life won't change. Perhaps I will be better off financially. \n\nI'm sorry people didn't show up and vote for their own interests. My sister is 8 years older and poor, she's also celebrating Trump's win. \n\nI don't think she's going to be happy when she can't afford to eat.", 'created': '2024-11-06 21:30:28', 'submission_id': '1gkypm9'}
{'comment': "Pittsburgh still had a lot of Trump support (not to mention the areas immediately around the city). This outcome is on EVERYONE who didn't vote, the people who remained undecided and then actually voted for Trump, and the people who voted with their wallets (tech bros, crypto morons).", 'created': '2024-11-06 21:34:39', 'submission_id': '1gkypm9'}
{'comment': 'ICE will never hassle me or my family in their mass deportation raids. But there’s a lot of Trump voters who will be hassled and they’re looking at the name and your skin color, not your documents. \n\nIt is partially on the youth, but let’s be honest, they never vote. We mostly didn’t. Women showed up for Trump again.', 'created': '2024-11-06 23:33:01', 'submission_id': '1gkypm9'}
{'comment': 'I am in an similar position. I know my family will not be harmed enough by what is coming to endanger our status, but I know enough about what\'s coming to know that there are going to be a lot of people already living on the edge that will certainly fail thanks to Trump\'s economic plan. It\'s going to be "Trump soybeans" all over our export market once he puts a 20% tariff on all our trading partners. Not to mention the unavoidable inflation spike on American consumers. \n\nEconomists have been trying like hell to tell everyone this but to no avail. I am sure everyone will just blame our trading partners instead of Trump, people are dangerously ignorant of extremely basic economics. So many people didn\'t have the needed education to realize the Republicans are describing putting a gun in the mouth of our economy and voted to pull the trigger. I feel bad for those who won\'t make it and the ripple effects that others will suffer.', 'created': '2024-11-07 00:17:06', 'submission_id': '1gkypm9'}
{'comment': "I've been thinking about this quite a bit today. My partner and I don't have kids, nor do we ever plan to (especially now). I am about to start a very high paying job in a blue state that has codified abortion and sexual health care into the state constitution (although I don't have faith that that will hold honestly).\n\nI have a lot of other resources and opportunities that have given me an advantage and will continue to. My partner and I won't feel the brunt of this. We'll still be able to pay for groceries/food, and have decent job security.\n\nThis is going to make the divide so much worse, and sabotage anyone who was hoping to do anything other than toil away for corporations for the rest of their lives. And at the end of the day it's due to those that couldn't be bothered, couldn't stomach a strong woman leader, and those who maintained ignorance because it was easier.", 'created': '2024-11-07 00:48:34', 'submission_id': '1gkypm9'}
{'comment': "It's not Gen Z's fault. It's the democratic party's fault for not building a broader coalition that appeals to trump's base of non-college educated whites. Wake the fuck up fellow Democrats, this is the TRUMP ERA unless we do something about it.\n\n Blaming kids is not the answer.", 'created': '2024-11-06 16:27:50', 'submission_id': '1gkypm9'}
{'comment': 'Go Steelers.', 'created': '2024-11-06 19:40:38', 'submission_id': '1gkypm9'}
{'comment': 'Don’t blame the voters blame the party for not selling the right product. Americans want change, the want progressive policies that impact their lives. Not empty platitudes of “not going back” and new future. What does that mean? This election was lost because people are tired of centrist BS. And before anyone comes at me, I drove my ass from LI New York to PA every weekend for the last month to canvass for Harris. I understood what Trump is and new I needed to swallow my pride and do what I can but I won’t lie and say I liked Harris, or agreed with the most right winged liberal BS the Dems put out since Clinton. Nah the part should blame itself for not listening to voters when they wanted Bernie Sanders. The Democratic Party would rather force march us straight to fascism then let go of their power and billions from donors', 'created': '2024-11-06 20:01:47', 'submission_id': '1gkypm9'}
{'comment': 'This is just it and what angers me the most. People didn\'t flip to Trump. They just chose not to vote for Kamala. \n\nEven if you didn\'t like either candidate, you have to ask yourself "what\'s the worst case scenario?" For Kamala, the worst thing to happen is we have an extension of the Biden presidency. The economy keeps improving, inflation keeps dropping and we move forward. With Trump the country will fall under a dictatorship and people will suffer. The poorer will get poorer and the richer will get richer. \n\nStaying home to prove a point accomplished nothing.', 'created': '2024-11-06 15:43:39', 'submission_id': '1gkypm9'}
{'comment': 'I can’t comprehend the fact that 15,000,000 decided to not vote.', 'created': '2024-11-06 16:03:51', 'submission_id': '1gkypm9'}
{'comment': 'I find it odd that I didn’t see a single pro Trump ad, or post or anything anywhere for the last month. It gave me a false sense of security and I swear this is by design. I went out and voted but how many didn’t see anything and thought “oh don’t worry this is in the bag!” Based solely because of this. Everything we see is controlled by outside sources.', 'created': '2024-11-06 16:41:49', 'submission_id': '1gkypm9'}
{'comment': 'Me too. Embarrassed and ashamed.', 'created': '2024-11-06 19:35:14', 'submission_id': '1gkypm9'}
{'comment': 'I\'m a boomer, 71 years old. I think we *are* fighting the British empire, the confederate army, and the Nazis. We\'re human animals in an extremely hierarchical, wealth disparate society and culture. The European enlightenment beliefs about "man" and reason, about man being able to solve his own problems, are a fairytale.\n\nWe\'ve had exactly one period of egalitarianism in this country since Europeans arrived, and that was for white men under FDR\'s New Deal. That was over by 1980 with Reagan. Otherwise the US has always been a brutal place with ample poverty for the many and excessive wealth and power for the few. We just don\'t know it because we believe all the propaganda.\n\nI\'ve thought about this crap my entire life because I\'m mixed race and I grew up in a home dominated by Native American culture and values. I have studied a lot of subjects at length. I have a degree in psychology, and ample informal studies in history and sociology. I\'m terrified.', 'created': '2024-11-06 15:59:58', 'submission_id': '1gkypm9'}
{'comment': "Well said! I'm a older millennial (mid 30's), and I'm seriously thinking of running for local office, starting with civic activism and local boards after all this. It's time to stop being complacent. We truly underestimated the division in this state and country.", 'created': '2024-11-06 18:28:37', 'submission_id': '1gkypm9'}
{'comment': 'Try not to be too hard on yourself, there’s a lot of blame to go around. The campaign did absolutely make mistakes as did Biden and did a lot of voter and Dem leaders. We need to learn from this.', 'created': '2024-11-06 16:12:49', 'submission_id': '1gkypm9'}
{'comment': "Almost 50, not sure what that makes me. I didn't phone back or canvas, as I'm not comfortable with that on a social level, but I did do registration drives every other week. I don't feel shame from it, or that i didn't do enough though. It was just what small part I could contribute, despite the outcome.\n\nNot gonna lie though, I'm ready to just disconnect from politics for a while. I'm hoping that many of the worst policies will wait until after the midterms, but I suspect Trump's revenge tour will start off strong, with probably the less impactful crappy things to set up for later being a priority.\n\nOhio dems got hit pretty hard. Loss of Sherrod Brown to Moreno, a crypto bro ready to pass a national abortion ban and tear apart the SEC to keep regulation out of crypto. Anti-gerrymandering bill didn't pass. Our one worthless senator now going to be a worthless VP(likely to be president if they plan to depose Trump). Probably going to get another worthless senator until a special election. Our Supreme Court became ultra conservative 6-1 with three democrat candidate losses. Jim Jordon reelected. For me, Trump is just the cherry on top of a shit sundae.", 'created': '2024-11-06 20:48:29', 'submission_id': '1gkypm9'}
{'comment': "You did more than enough.\n\nIt's the rest of your (and mine) generation that'd rather spend time on Tiktok than be politically savvy, that fucked up.", 'created': '2024-11-06 19:21:51', 'submission_id': '1gkypm9'}
{'comment': 'There is no hope. Your activism will come with 10 and 15 year prison sentences. I admire the bravery it takes to deal with that.', 'created': '2024-11-06 15:46:39', 'submission_id': '1gkypm9'}
{'comment': 'Definitely underestimated how much social media has influenced the young male vote. All the major podcasts and channels are from awful role models for them. This is going to be a problem for generations to come.', 'created': '2024-11-06 16:29:08', 'submission_id': '1gkypm9'}
{'comment': 'Yup. Gen z males especially are frightening these days. They think they are victims and deep into the manosphere. They aren’t going anywhere so gotta figure out how to reach them and teach them to be empathetic.', 'created': '2024-11-06 18:54:37', 'submission_id': '1gkypm9'}
{'comment': 'Nah, 15 million democrats didn’t vote. Stop trying to blame a specific demographic.', 'created': '2024-11-06 19:59:48', 'submission_id': '1gkypm9'}
{'comment': 'My state voted for Harris and I’m embarrassed it was as close as it was. Also, embarrassed with this country.', 'created': '2024-11-06 17:59:18', 'submission_id': '1gkypm9'}
{'comment': "I honestly believe a lot of them really believe that things will get better under Trump. I see people I know to be smart acting like some dark era of torture is now over because Trump won. \n\nSome love to see their opponents suffer, and there's been no shortage of gloating since this morning, but I don't think all of them are thinking like that. They may not really understand how bad it can get, and it's one time i really hope they're right when they say we're being reactionary. But, at the same time, I remember quite clearly how people were calling Bill Maher reactionary, on his own show, when he said that Roe would get overturned after he announced RBG died live while filming his show.", 'created': '2024-11-06 21:01:24', 'submission_id': '1gkypm9'}
{'comment': 'Trump won’t step aside. Basically feel half the country will simply kill me if they are given the chance.', 'created': '2024-11-06 17:04:20', 'submission_id': '1gkypm9'}
{'comment': 'If Trump dies in office, I guarantee Vance becomes George Dubya Bush 2.0 the Maga edition. He will get all the blame for everything, and he isn\'t beloved by Maga the same way Trump is to get away with it.\n\nVance\'s best hope for the future is Trump somehow living 4 more years, if Trump dies Vance becomes the lightning rod for everything. I feel like the "2024 Trump economy" voters will turn on him once the economy takes a shit, just like the 2004 Bush voters turned on Bush and Cheney once things went to shit after the honeymoon phase ended.', 'created': '2024-11-06 17:27:06', 'submission_id': '1gkypm9'}
{'comment': "That's what they would be doing if Trump is declared unfit for 2028 there has to be a stronger candidate than Harris to take on Vance.", 'created': '2024-11-06 18:32:17', 'submission_id': '1gkypm9'}
{'comment': "He can't be pardoned for the state charges by the federal government, so if he retires, he's may have to face consequences there. I kind of doubt he will, but it's possible.\n\nMore likely, if they want him gone, they'll find a way to depose him either way. But I wouldn't suspect anything until after the midterms, barring an unavoidable crash on his part.\n\nIt'll take some time for any plans to really get going, despite a roadmap from day one, and being too disruptive before the mid terms will make it harder to hide behind a veneer of legitiimacy.", 'created': '2024-11-06 20:56:18', 'submission_id': '1gkypm9'}
{'comment': 'You will see some change…..\n\nWho do you think Big Pharma and PBMs lobby for? It’s not democrats. \n\nThey’re all foaming at the mouth with giddiness right now.', 'created': '2024-11-06 20:35:24', 'submission_id': '1gkypm9'}
{'comment': 'Agreed. Trump will be a useful idiot who will basically rubberstamp anything that’s put in front of him because that was the deal made to him by his backers. His business and income will thrive and his legal problems will all but evaporate, so he has no reason to push back on anything at this point. He gets to stroke his ego with public appearances and being in the news all the time with no cost to himself.\n\nPutin scored a massive win last night.', 'created': '2024-11-06 15:49:00', 'submission_id': '1gkypm9'}
{'comment': "No idea why trump would be dumb enough to enact project 2025 or do any facist shit when he's literally about to win the popular vote. Cmon, the truth is he doesn't give a fuck about any Republican values, hes a petty, egotistic man that wants power and to go out on top. It's going to be bad, they have the house and the senate, but no dictatorship.", 'created': '2024-11-06 15:38:28', 'submission_id': '1gkypm9'}
{'comment': 'THIS!!! 100%. The racists have always been on the MAGA side. But something we’re offering just isn’t being picked up by others who are willing to risk voting MAGA. Our message isn’t getting across and we need to course correct or we’re doomed', 'created': '2024-11-06 17:18:46', 'submission_id': '1gkypm9'}
{'comment': "The press certainly didn't point out that the energy wasn't there. They were reveling in the idea that Trump was filling stadiums, while Trump could barely fill a school gymnasium. \n\nI think the disappointment is heightened, because like the red wave of 2022, everyone seem to imply she had it in the bag. I would argue that Harris and her campaign may have believed it as well.\n\nPolls were a useless metric, because they were back and forth every day.\n\nin the end, the press wanted its horse race, and they got it.", 'created': '2024-11-06 21:12:16', 'submission_id': '1gkypm9'}
{'comment': 'Paper towels?', 'created': '2024-11-06 21:14:27', 'submission_id': '1gkypm9'}
{'comment': 'This was my whole thing. HRC was very popular. Denying that was a huge 🙄for me.', 'created': '2024-11-06 16:49:40', 'submission_id': '1gkypm9'}
{'comment': "I don't think so. Harris was never a huge favorite like Clinton, and Harris got thrown into a bad situation. \n\nKamala Harris was pretty much Hubert Humphrey in 1968. Clinton was way worse, she snatched defeat from the jaws of victory. 2016 Trump was very beatable.\n\nClinton may have won the popular vote over Trump, but she was heavily favored and had a full campaign season.", 'created': '2024-11-06 17:19:56', 'submission_id': '1gkypm9'}
{'comment': 'Honestly, I think it boils down to: she’s a bi-racial non-white woman. She received significantly less votes nationally than Biden did - regardless of his approval rating. Trump’s approval rating was in the toilet in 2020 and he still received 74M votes and is sitting around 71M now. I was foolish to think that a woman could finally break that glass ceiling. We needed a white male to beat another white male unfortunately. \n\nMaybe we should start propping up celebrities as political candidates - it seems to be working for the Republicans.', 'created': '2024-11-06 15:38:37', 'submission_id': '1gkypm9'}
{'comment': ">What went wrong?\n\nHarris ran a very good campaign. This is not her fault. Unlikely little could have been done at this stage.\n\nYou had a Republican party that finally decided it wanted to be authoritarian. It started weaponizing rhetoric years ago, using propaganda and lies, to instill fear, incite anger, and also sow confusion among more moderate voters.\n\nWhen one political party like that is participating in a democratic election in bad faith, and there are no safeguards in our system of laws to stop that, this is the result. \n\nSo today we learned that a large swath of American voters don't care enough about democracy to vote at all. Some don't care enough about democracy to prioritize it over whatever their single issue is. Others are actually excited about being in some type of christian authoritarian country. And others fell for the con man's promises, without any awareness of the consequences.", 'created': '2024-11-06 15:51:19', 'submission_id': '1gkypm9'}
{'comment': "I think the democrats are too big of a tentpole of a party from progressives to moderates (including Republicans who left GOP after Trump) and that it is becoming harder and harder to find a candidate that appeals to this huge umbrella Biden fit the bill because he was seen as a peer to Obama for the black vote but was also white and seen as moderate enough to get the moderate vote.\n\nOn the other end, the other side has its hardline base that doesn't budge and will vote for their guys no matter what as long as it has a R letter next to their name. It's much harder to motivate half your electorate to vote so you can surpass the other side that is unmovable than just hyping your base by being a complete moron", 'created': '2024-11-06 15:51:00', 'submission_id': '1gkypm9'}
{'comment': 'I don’t think it’s anything more than the country is not ready for a woman President. I don’t think there is anything she could have done to change the minds of a good chunk of American voters.', 'created': '2024-11-06 15:39:46', 'submission_id': '1gkypm9'}
{'comment': 'She should have been more moderate. She should have picked Shapiro as her VP. There are failures all around.', 'created': '2024-11-06 15:28:30', 'submission_id': '1gkypm9'}
{'comment': 'JD Vance is young and inexperienced in the ways of cheating that Trump is. So although he might be smarter than Trump, he may not be more dangerous.', 'created': '2024-11-06 21:14:09', 'submission_id': '1gkypm9'}
{'comment': 'As long as they are useful to him, I think you meant to say.', 'created': '2024-11-06 21:11:54', 'submission_id': '1gkypm9'}
{'comment': 'This is a terrible take. If you go through the swing states and give Kamala 100% of the 3rd party votes she still loses by 10’s of thousands of votes. You don’t get to blame voters this time around. The Democratic Party needs to look in the mirror. Stein isn’t your scapegoat today.', 'created': '2024-11-06 15:58:04', 'submission_id': '1gkypm9'}
{'comment': 'It can be both.', 'created': '2024-11-06 18:16:09', 'submission_id': '1gkypm9'}
{'comment': 'Your post is exactly why dems lose but not because of what you said. The democratic party is used by everyone as a punching bag to blame all our problems on. Most of the pain of the working class is directly or indirectly caused by Republican policies but instead dems who are actually trying to fix the problems get blamed for not fixing them fast enough.\n\nTake union votes, Biden/Harris was the most pro-union Admin in our lifetimes and Trump literally praised Elon for union busting. But very few people even know that because the media sane-washes everything and their corporate owners wanted Trump back.', 'created': '2024-11-06 17:50:09', 'submission_id': '1gkypm9'}
{'comment': "Harris offered real policies that would bolster the middle class. Dems are pro union, and by extension pro worker. Biden's admin did quite well with the economy, even if that doesn't impact people directly in a way they can contextualize. \n\nSo no, people don't want policies that impact their life, because Trump and the GOP certainly didn't offer that. Even if they want something, they have no idea how to recognize when it's being offered to them. More so, there seem to be many that are disillusioned to think that every policy will be specifically about them, as opposed to broader policy designed to solve problems, likely over a period of time.", 'created': '2024-11-06 21:21:44', 'submission_id': '1gkypm9'}
{'comment': 'Exactly!! And now we’re all going to suffer the consequences because they decided to prove a point. \n\nThis is going to be disastrous for America and the world and I hope they feel the aftermath of their decision not to participate in this election. It may just be the last presidential election we ever vote in. Our ONLY hope is that democracy can survive until the 2026 midterms and maybe, just MAYBE the democrats can take back the senate, and potentially the house, and put some restraints on him - although I’m not even sure if that will help.', 'created': '2024-11-06 15:48:18', 'submission_id': '1gkypm9'}
{'comment': 'Or they cheated, which, makes more sense to me.', 'created': '2024-11-06 20:32:56', 'submission_id': '1gkypm9'}
{'comment': "It's probably a mix of both, but for Trump, it was overall a zero sum gain.", 'created': '2024-11-06 20:27:35', 'submission_id': '1gkypm9'}
{'comment': 'I sincerely don’t believe it. I don’t believe the numbers have not been manipulated.\xa0', 'created': '2024-11-06 16:31:52', 'submission_id': '1gkypm9'}
{'comment': '2020 they made it easier to vote for many, and there was a lot of motivation because of what was happening at the time.\n\nThis time, everything went back to being too much trouble to go to the polls. There were certainly protest votes, which is stupid since given the primary topic being much worse under Trump, but it is what it is in our era of anti-intellectualism and reactionary attitudes.', 'created': '2024-11-06 20:30:16', 'submission_id': '1gkypm9'}
{'comment': 'Honestly, I don’t doubt it. That’s one of the many reasons why Hillary lost in 2016. A lot of people thought she had it in the bag so they didn’t go out and vote. This is 2016 all over again but worse 😔. I was so confident she was going to win. I kept telling my mom: “don’t worry about it, she has an even bigger coalition than Biden did in 2020. I can’t imagine America would be stupid enough to hire him back after he was fired.” Jeez, was I so so wrong.', 'created': '2024-11-06 16:49:14', 'submission_id': '1gkypm9'}
{'comment': 'Depends where you live. They aren’t going to waste the money on a state like Massachusetts for example.', 'created': '2024-11-06 18:08:27', 'submission_id': '1gkypm9'}
{'comment': 'Thank you for your comment, my friend.\n\nI’m not well versed in history like you are. But I know that our history is decorated with absolute savages from Abraham Lincoln to Rosa Parks and countless others that have said “no” to evil bullshit. \n\nThese are hard times indeed. We will rally again.', 'created': '2024-11-06 18:34:00', 'submission_id': '1gkypm9'}
{'comment': 'I dabble in history, where do you see us going from here? Shades of the rise of the third Reich or something less sinister?', 'created': '2024-11-06 17:58:27', 'submission_id': '1gkypm9'}
{'comment': 'I don’t hate myself, but I just wanna take my fair share of ownership. That is how you get real results. Not by blaming some demographic.', 'created': '2024-11-06 16:27:53', 'submission_id': '1gkypm9'}
{'comment': 'It’s all those smarmy little douchebags with unironic porn staches', 'created': '2024-11-06 16:35:39', 'submission_id': '1gkypm9'}
{'comment': "I could see that. I watch a lot of gaming YouTube content, which is often dominated by young white men, and I have had to remove so many from my feed. The very existence of anyone who is not a white male (in gaming but let's face it IRL too) is deemed DEI or woke. It's very disheartening how conservative rhetoric has permeated social media.", 'created': '2024-11-06 18:39:31', 'submission_id': '1gkypm9'}
{'comment': 'These are also probably kids that have been fed PragerU and other types of indoctrination for a significant portion of their lives now. Add on the delayed development from the isolation of the covid years and now we’ve got a large voting bloc of edgelords', 'created': '2024-11-06 19:26:48', 'submission_id': '1gkypm9'}
{'comment': 'Social media is such a problem. Specifically the powers that be in charge of social media platforms who PURPOSELY built algorithms that fuel engagement and are happy to promote alt-right content - people that want to watch it, watch it, and even people that hate it engage with it by arguing. My husband is about 10 years older than the “young” group (he’s 37) but the algorithm I’m sure knows that he’s a white male who plays video games and is into irrelevant edgy humor, maybe even knows that he didn’t go to college. He’s the alt-right ideal audience I guess because every time he goes on Facebook or YouTube the recommended memes and videos are all alt-right shit, conspiracy theories, “libs getting owned.” He hates Trump with a passion so he just ignores it but acknowledges that it’s overwhelming and someone who doesn’t have a liberal wife and has more time on their hands could easily get into it. We’re not absolving the voters who fall for that shit, though. If you’re unable to see through how fake Trump’s “alpha-ness” is when he whines like a bitch and wears a diaper onstage, I don’t know what to tell you.', 'created': '2024-11-06 23:55:14', 'submission_id': '1gkypm9'}
{'comment': 'There’s some of that, yeah, but that age group is also finding it most challenging to start out. Housing costs, expensive groceries, low wages. It’s almost a law of politics that if you’re having economic difficulties, you’ll vote for the party that’s not in power.', 'created': '2024-11-07 04:05:34', 'submission_id': '1gkypm9'}
{'comment': "Trump shouldn't have won a single state. Hell he shouldn't have even been allowed to be on the ballot.", 'created': '2024-11-06 18:21:50', 'submission_id': '1gkypm9'}
{'comment': "Yeah I know those people too. So many talked about voting out the current administration. They see higher prices and automatically believe it's because of Biden/Harris. They ignore the fact that inflation is happening all over the world and the US is holding strong as the best economy. They don't wonder why their salary hasn't increased to compensate. They don't look for new jobs. They don't invest money to offset inflation. They don't shop smarter to save money. They are angry and just blame the government.\n\nWell they are in for a rude awakening. Because things are about to get much, much worse and they won't have Biden or Harris to blame for it. Like his first term, the only people who will be better off are the rich. The divide between them and the middle/lower classes will grow. The poor will just be poorer and the rich richer. While basic human rights will be stripped away from anyone who isn't a white Christian straight man.\n\nI hope it's all worth it for them. Because innocent people will suffer because they didn't want to spend $100 on groceries at Walmart.", 'created': '2024-11-06 21:18:48', 'submission_id': '1gkypm9'}
{'comment': 'Trump finishes this presidency unless he dies in office or otherwise incapacitated, which is a small but possible outcome. Then we get Vance, POTUS 48.', 'created': '2024-11-06 17:41:24', 'submission_id': '1gkypm9'}
{'comment': 'He’s in severe cognitive decline. Vance will pull his med records and enact the 25th amendment. And the Heritage has their true presidential candidate in the top spot.\n\nTrump was purely a puppet, a means to an end. Heritage wants Vance and that’s when project 2025 will be fully implemented', 'created': '2024-11-06 20:33:34', 'submission_id': '1gkypm9'}
{'comment': 'I am putting in a big bet that Trump Jr. announces his candidacy for 2028. He can win it in this political climate too', 'created': '2024-11-06 17:42:45', 'submission_id': '1gkypm9'}
{'comment': "He's a Thiel puppet, and complicit in being that. The right wing propaganda machine is going to get behind whoever the money men want them to. Media can make or break a candidate. They could have completely destroyed the apparent momentum that Harris had from day one if they wanted to.", 'created': '2024-11-06 20:58:09', 'submission_id': '1gkypm9'}
{'comment': 'And Xi, Netanyahu, thiel, musk, fossil fuel companies. Oh and domestic Nazis.\n\nEg the worst people on earth.', 'created': '2024-11-06 15:50:39', 'submission_id': '1gkypm9'}
{'comment': 'This is such a stupid, terrible take its incredible.', 'created': '2024-11-06 15:39:23', 'submission_id': '1gkypm9'}
{'comment': "This reminds me of the 80's when you had Walter Mondale and Michael Dukkakis who were qualified candidates, but the Democratic party had huge issues with messaging and identity issues appealing to America nationwide.\n\nI know he's an extremely polarizing figure, but we need a 1992 Bill Clinton to come along, who shakes things up for the entire party, and is a great messenger. Clinton was really good talking to everyone, and keeping things simple. Clinton also gave the Democratic party the huge shakeup it needed after struggling for so long.\n\nI really think a Josh Shapiro, Reverend Warnock, Andy Beshear type would be really good in this role. Kamala Harris I know will always be compared to Hillary, but to me she felt more like an Al Gore or Hubert Humphrey type situation.", 'created': '2024-11-06 17:38:14', 'submission_id': '1gkypm9'}
{'comment': 'Bingo!', 'created': '2024-11-06 21:15:00', 'submission_id': '1gkypm9'}
{'comment': 'I would agree with that. However, the youth and urban turnout was the reason we lost. Wouldn’t those be more accepting?', 'created': '2024-11-06 15:40:49', 'submission_id': '1gkypm9'}
{'comment': 'Sad but good take. Our idiocracy is in full swing, we need candidates that meet muster. I’d be cool with a President Clooney or Cuban.', 'created': '2024-11-06 17:45:22', 'submission_id': '1gkypm9'}
{'comment': "At the end of it, it may just come down to getting the people who show up to vote. Which means the left flank, the most unreliable one shouldn't be trusted to show up since it's clear they didn't.", 'created': '2024-11-06 16:46:36', 'submission_id': '1gkypm9'}
{'comment': "Democratic voters are sometimes their own worst enemy, and they are often inconsistent in their voting habits to the point that it's really hard to predict how they'll respond. They generally hold their candidates accountable, which is good, but they also expect perfection to the point of unreasonableness.\n\nHumans are flawed individuals, and no one is going to appeal to everyone, and if they do, they probably aren't to be trusted, because they'll just say whatever you want to hear to gain support.\n\nWhat I see a lot of this afternoon, watching the pundits, is they're all trying to point to one or two individual things to explain the why. But, as you point out, dems are a big tent party. Chances are, all the things mentioned, or most, probably all played a part. Attrition is the idea that you lose little bits at a time, and eventually, you have nothing or very little. Dems can make strong gains in waves, but tend to constantly have attrition which strips away voters, and maybe at times, pushes those votes to the other side", 'created': '2024-11-06 21:06:56', 'submission_id': '1gkypm9'}
{'comment': "Haha you're joking right? She's literally as moderate a dem as it gets", 'created': '2024-11-06 15:32:29', 'submission_id': '1gkypm9'}
{'comment': 'What? Wasn’t the failure urban turnout?', 'created': '2024-11-06 15:29:26', 'submission_id': '1gkypm9'}
{'comment': "I mean she wasn't going to win with Shapiro or being more moderate is the sad truth. She got absolutely blown out. It needed to be someone else and they need to drop social issues from the ticket, they are clearly alienating and losing voters. I mean we are talking flipped voters with a lot of these margins. Trump gained ground in every blue state", 'created': '2024-11-06 15:41:09', 'submission_id': '1gkypm9'}
{'comment': 'Yes thank you.', 'created': '2024-11-06 22:15:41', 'submission_id': '1gkypm9'}
{'comment': 'Because I’m a woman my opinion doesn’t matter? Tell me you voted Trump/3rd party or stayed home without saying it.', 'created': '2024-11-06 16:04:30', 'submission_id': '1gkypm9'}
{'comment': 'It can also be racism. And I’m not one to throw that term around lightly', 'created': '2024-11-06 21:15:26', 'submission_id': '1gkypm9'}
{'comment': 'It’s the party’s job to build the party. Yes we all have a part in that but Dems have been far too insular and dare I say close minded about appealing to the wants and needs of those outside of “our party”.', 'created': '2024-11-06 18:01:06', 'submission_id': '1gkypm9'}
{'comment': 'We’re doomed', 'created': '2024-11-06 21:23:46', 'submission_id': '1gkypm9'}
{'comment': 'He will still control that pesky $800 billion a year military.', 'created': '2024-11-06 19:53:59', 'submission_id': '1gkypm9'}
{'comment': 'I hate to play the MAGA "Stop the steal" card, but the mail in ballots here in Erie were a disaster. \n\nThere were reports of 20,000 ballots that weren\'t delivered on time or sent to the wrong people. That\'s about half of the total requested. So those individuals had to physically go down to the courthouse and manually submit provisional ballots. As of yesterday morning over 7,500 were not returned.\n\nIn a county decided by 2,000 votes, these seems significant. Yet nobody seems to care now.', 'created': '2024-11-06 20:35:25', 'submission_id': '1gkypm9'}
{'comment': None, 'created': '2024-11-06 22:21:51', 'submission_id': '1gkypm9'}
{'comment': 'I wouldn’t put it past them, and I’m sure there was some of that going on, but this happened in state after state, and all are independently run so it’s unlikely the race was stolen.', 'created': '2024-11-07 05:39:57', 'submission_id': '1gkypm9'}
{'comment': "It makes more sense to you because you want it to be true.\n\nIt isn't. The sooner people accept that, the sooner people can start putting together a strategy to win the next election.", 'created': '2024-11-07 15:09:53', 'submission_id': '1gkypm9'}
{'comment': 'Why is it so hard to believe when there are thousands of voices of people on the left spewing the line "She didn\'t earn my vote"?', 'created': '2024-11-06 20:10:31', 'submission_id': '1gkypm9'}
{'comment': 'Just…. Don’t.', 'created': '2024-11-06 16:38:47', 'submission_id': '1gkypm9'}
{'comment': 'They say 90% of all counties shifted right. Trump gained 10 pints in NYC. I can’t see how that’s even possible to cheat at scale like that across 50 different state systems. I mean we’re not voting on an app that can be hacked. \n\nI don’t see how. \n\nTrump is a reflection of what America is now.', 'created': '2024-11-06 23:30:26', 'submission_id': '1gkypm9'}
{'comment': 'I just said this to my partner. He told me not to bring up conspiracies again, but this is also the only thing that seems to make sense.', 'created': '2024-11-06 17:22:26', 'submission_id': '1gkypm9'}
{'comment': 'Thank you for your response. Our history isn\'t merely decorated with absolute savages; our history IS savage. It is sparsely decorated with noble individuals, of which Thomas Jefferson, owner of 600 slaves in his lifetime, was not one, his articulate and lofty intellectualizations notwithstanding. You speak of "our" history, and I assume you mean in this country only. Our history is much bigger than that. Western Europeans have been on a nonstop horror march across the planet for five centuries, all in search of wealth, fueled by our special human and cultural supremacy that we believe in so fervently. Korea escaped us and our invasions, but I don\'t think anyone else did anywhere on the planet, and I mean that quite literally. A relatively tiny number of countries, especially Great Britain, France and Spain, have invaded virtually every nation that exists outside of Europe, with only one, or maybe two, exceptions. Please acquaint yourself with our real history; few people bother. It\'s more than relevant. It\'s ongoing.\n\nYou are young. I don\'t wish to distress you or make you feel hopeless. My longer comment to KidAntrim is pertinent here. I hope you will suffer through it. Yes, it is hard times ahead. Hang in there. Despite my pessimism, I\'m pretty sure we all knew what we were getting into before we got here. If it weren\'t necessary, it wouldn\'t have happened. It\'s not your fault. Don\'t take that on. Our problems are so much bigger than "organizing". They are inherent to life itself, to the fact that complex life as we know it would not exist at all without a couple hundred million years of one species preying on another. We can\'t help what we are. We can\'t even help not knowing what we are.', 'created': '2024-11-06 20:37:00', 'submission_id': '1gkypm9'}
{'comment': 'I participate or lurk in a lot of gaming forums, and while the racism is usually not allowed in such places, sexist comments aimed at what I\'ll call annoyance over inclusion in media(prevalent in a lot of games to the point of having groups that help companies write it in to meet checkboxes). These are often hateful and vitriolic, and it\'s easy to tell a lot of gamers are disgruntled by it. I wouldn\'t say most, as most gamers don\'t talk in communities or get that involved with such issues, but the active community expresses it more than I care to be associated with.\n\nThis disgruntled attitude is one criticism that is being talked about by some when they say that dems aren\'t listening to men, because while I think the attitudes are misplaced, I do understand why many feel they are being attacked, or excluded from culture or society because they either don\'t care about such things, or are annoyed by them. Gamers themselves have been the butt end of these kind of "attacks" before it really went mainstream, and was a core catalyst behind what set off gamer gate.', 'created': '2024-11-06 20:40:16', 'submission_id': '1gkypm9'}
{'comment': "Literally watching MSNBC now, and the reporter just talked about how Turning Point USA was on campuses spreading Trump's message, and giving out swag, and while anecdotal, a couple people pointed to that being a significant factor in their decision.", 'created': '2024-11-06 20:43:54', 'submission_id': '1gkypm9'}
{'comment': 'So frustrating how the low standard of education and propaganda machine are so effective', 'created': '2024-11-07 04:25:10', 'submission_id': '1gkypm9'}
{'comment': 'He should not be a free man.', 'created': '2024-11-06 18:59:39', 'submission_id': '1gkypm9'}
{'comment': 'These are my thoughts exactly. Trump is barely coherent mentally now. He’s doesn’t know anything about what he’s talking about, he’s a profoundly stupid man. So, the much smarter individuals who surround him like the Heritage Foundation, the Federalist Society, Project 2025 etc, are all just going to use him as a stooge to push through their far right agenda.', 'created': '2024-11-06 20:49:18', 'submission_id': '1gkypm9'}
{'comment': '…. Wonder how maga country will respond', 'created': '2024-11-06 20:49:27', 'submission_id': '1gkypm9'}
{'comment': 'I said this yesterday morning and I will say it again. The people of this country will have to be faced with existential day to day threats from the people they voted for before they will consider changing their minds and actually paying attention to what they did… that’s if their education gave them the tools to do so, which I’m getting more and more suspicious of every day.\n\nI suggested a world war on our home turf would be the catalyst, but I don’t think that’s going to happen anytime soon now that dictators of the world are going to unite, at least in the short term before they get greedier.', 'created': '2024-11-06 15:55:58', 'submission_id': '1gkypm9'}
{'comment': 'We can do this, Boom. This is not yet the end of America. None of us will go quietly into the darkness.', 'created': '2024-11-06 16:30:13', 'submission_id': '1gkypm9'}
{'comment': 'u need to get it together bro', 'created': '2024-11-06 15:53:21', 'submission_id': '1gkypm9'}
{'comment': 'Well, I hope we find that person soon. And I hope we get our act together and retake Congress in 2026. We cannot afford 4 years of unchecked Republican rule.', 'created': '2024-11-06 17:55:55', 'submission_id': '1gkypm9'}
{'comment': 'Right? It’s so sad that this is where we’re at right now.', 'created': '2024-11-06 17:49:34', 'submission_id': '1gkypm9'}
{'comment': 'Exactly. She was perfect except for not having a penis.', 'created': '2024-11-06 15:37:12', 'submission_id': '1gkypm9'}
{'comment': "You do NOT get it.\n\ntrump's Nazism sells. Nothing else can compete.\n\nAnd with trump in the news 24/7/365, Kamala literally had barely any name recognition. You have NO IDEA HOW NO INFORMATION VOTERS ARE.", 'created': '2024-11-06 15:48:33', 'submission_id': '1gkypm9'}
{'comment': 'Welcome😉', 'created': '2024-11-07 18:49:57', 'submission_id': '1gkypm9'}
{'comment': 'I voted blue straight down my entire ticket. I have a wife and 5 daughters…hell no I didn’t vote for that asshole. We do not fix this for ‘26 and ‘28 without telling ourselves some hard truths.', 'created': '2024-11-06 16:55:28', 'submission_id': '1gkypm9'}
{'comment': 'No, he’s right the 3rd party numbers aren’t enough this time. It’s the Biden voters from 2020 who didn’t come out this time. Even a small % of that 15m would have made a big difference.', 'created': '2024-11-06 18:14:51', 'submission_id': '1gkypm9'}
{'comment': 'We hit the shitty trifecta here.', 'created': '2024-11-11 17:58:19', 'submission_id': '1gkypm9'}
{'comment': "I just strongly disagree that they haven't been trying to do that. They try to reach out to everyone, Trump mostly just plays to his base and somehow that works for him.", 'created': '2024-11-06 18:12:32', 'submission_id': '1gkypm9'}
{'comment': "Dems talk about their efforts and achievements all the time. But it's boring, so no one pays attention, so it doesn't get a lot of airtime.\n\nHowever, there is also the matter of dems not knowing how to frame a message. The economy a big one this time around. Biden's economy is super strong, and long term, it would benefit everyone to have it continue. But, because they claim it's great, while the average person doesn't see any influence because the metrics aren't based on individual experience, people were claiming that dems were out of touch. They had this ingrained in their head before the campaigns really got going, so when they talk about infrastructure bills, or Harris talks about policies that directly address what their grievances are, they're already closed off to the message.\n\nThe media isn't going to go through too much effort, especially if they are agenda based.", 'created': '2024-11-06 21:18:47', 'submission_id': '1gkypm9'}
{'comment': 'Money talks as they say. 😔😖', 'created': '2024-11-06 22:55:46', 'submission_id': '1gkypm9'}
{'comment': 'Exactly.', 'created': '2024-11-06 21:16:59', 'submission_id': '1gkypm9'}
{'comment': "I never received my mail in ballot. Fortunately I was able to vote in person. There's no reason those ballots didn't get delivered accurately and on time.\xa0", 'created': '2024-11-07 06:15:29', 'submission_id': '1gkypm9'}
{'comment': 'This is a bot do not engage with it.', 'created': '2024-11-07 04:40:52', 'submission_id': '1gkypm9'}
{'comment': 'It makes me feel better to think he cheated than to believe that America wanted this disgusting piece of garbage representing us.', 'created': '2024-11-07 15:52:12', 'submission_id': '1gkypm9'}
{'comment': 'It’s either that or America wants a disgusting POS human to represent us and I can’t fathom that.', 'created': '2024-11-07 15:48:54', 'submission_id': '1gkypm9'}
{'comment': 'This needs to be studied. The GQP were playing tons of dirty tricks and Russia was helping. Might not be fraud but how much voter intimidation and suppression went on we didn’t hear about?', 'created': '2024-11-06 17:34:02', 'submission_id': '1gkypm9'}
{'comment': 'Unfortunately, our country is just that fucked and the leadership in the Democratic Party doesn’t know how to deal with it.', 'created': '2024-11-06 17:47:53', 'submission_id': '1gkypm9'}
{'comment': 'Thanks for your thoughtful reply. I’m familiar with these viewpoints and personally have taken the time to get educated on the west’s sins, as it is a popular talking point from our adversaries. They are indeed real stains on history. Yes, our history is littered with heavily flawed people.\n\nI share your view that our problems are so much more complex than the dialogues we have seen today. Still, I believe this country can be redeemed. There will probably be countless setbacks before things improve. But my belief doesn’t change with however many arguments I hear. \n\nIt’s my pleasure to exist in this country with you, no matter how broken it is. I’m not sure if that makes sense. You may disagree with me on multiple counts. But best wishes.', 'created': '2024-11-06 21:20:20', 'submission_id': '1gkypm9'}
{'comment': 'My father in law hates Vance….i don’t think it’ll go over well', 'created': '2024-11-06 21:05:09', 'submission_id': '1gkypm9'}
{'comment': "I don't know if utter destruction would change their minds. In WWII, both the Nazis and the Japanese would not stop their aggression, not even when the Germans were literally arming fourteen year-olds and the elderly, not even after the first bomb was dropped on Japan. They would not stop fighting. The scene in the movie The Lord of the Rings where the people of Rohan had retreated to Helm's Deep and they were fitting young boys and men in their 60s and 70s with armor so they could fight was taken straight from history. It was what Hitler did near the end of the war when his military was in retreat.", 'created': '2024-11-06 16:54:30', 'submission_id': '1gkypm9'}
{'comment': 'Your toxic positivity is like live laugh love level of bullshit right now.', 'created': '2024-11-06 16:30:47', 'submission_id': '1gkypm9'}
{'comment': 'Yeah me too obviously. I think best case scenario is Trump and Vance become 2nd term Dubya Bush and Cheney where all the "2024 economy" voters turn on them, just like all the "wartime president" voters turned on Bush and Cheney in his 2nd term. 2006 was one of the worst midterms ever for the GOP, because all the 2004 Bush voters either turned on them with the "buyers remorse" or they just stayed at home.\n\nI could see 2026 being bad, especially if Trump dies in office. Vance is going to get all the blame, and he isn\'t beloved like Trump by conservatives. I could see Vance becoming George Dubya Bush 2.0 Maga edition.\n\nThe Maga base will still love Trump in 2026 for the midterms, but the "economy" voters we saw this year are really fickle and very much "what have you done for me lately?".', 'created': '2024-11-06 18:07:34', 'submission_id': '1gkypm9'}
{'comment': 'Honestly, I think she was too moderate if anything. If she took a Bernie approach to healthcare, may have worked better for her.', 'created': '2024-11-06 16:11:47', 'submission_id': '1gkypm9'}
{'comment': 'Yes, we did.', 'created': '2024-11-11 18:08:34', 'submission_id': '1gkypm9'}
{'comment': 'They were out of touch. That is the point I’m making.', 'created': '2024-11-06 23:00:05', 'submission_id': '1gkypm9'}
{'comment': 'Well, you need to open your mind up. Because it just happened.\n\nYou are living under the delusion that the majority of people are A. Informed, B. Good natured \n\nNeither of these things are true', 'created': '2024-11-07 15:53:46', 'submission_id': '1gkypm9'}
{'comment': "Unless actual verifiable evidence comes out, it's not worth going down this road. It only marginalizes the concept, should it ever come up that the GOP tries to use it in the future. \n\nBy actual verifiable evidence, I mean real evidence that is presented in court, not some spurious hyperbolic claim like we see with the GOP, but real evidence that can be presented in court without getting lawyers disbarred.", 'created': '2024-11-06 20:32:31', 'submission_id': '1gkypm9'}
{'comment': 'GOP kings of projection railed endlessly about cheating and rigged elections.', 'created': '2024-11-06 19:35:50', 'submission_id': '1gkypm9'}
{'comment': 'What does it matter? Fraud was proven, you had him on tape interfering in Georgia, he was caught red handed with classified documents AND he led an insurrection ffs, and still he won. \n\nPeople chose to stay home bc they were unhappy with the way things are going for them, thinking it didn’t matter? Well they are about to find out how much it did. And with the ability to place more, younger, further right wing candidates on SCOTUS, about to stay worse. For maybe a generation.\n\nFor those who stayed home, good for you, now you can every election. You’ll never have to vote again.', 'created': '2024-11-06 21:25:52', 'submission_id': '1gkypm9'}
{'comment': 'The desperation to remove trump was high in 2020. That was not felt this go around. He’s going to win the popular vote for fucks sake.', 'created': '2024-11-06 19:55:23', 'submission_id': '1gkypm9'}
{'comment': 'Considering those 15m didn’t really turn out before 2020, I’m inclined to believe they just weren’t motivated for some messed up reason.', 'created': '2024-11-06 18:07:37', 'submission_id': '1gkypm9'}
{'comment': 'I think it\'s more than a talking point. It\'s a valid moral point about the behaviors in which we have historically engaged in order to obtain our wealth. We are the richest nation on Earth. The western European nations are the other rich nations. We like to say that it is our courage, our innovation, our trade, our sophistication, and other talents, along with being the most "advanced" humans that made us wealthy, but there is much more to it than that. It is our global invasions and militarism for wealth. \n\nI don\'t know if we can be redeemed. We seem to be caught in an endless cycle that allows for only short breaks from the oppression. A book that I have only read excerpts of and reviews on that is of great interest to me is Peter Turchin\'s "End Times". I\'m not sure why he named it that, but Turchin is a complexity scientist with advanced studies in multiple disciplines. He and colleagues created a ginormous database of western European history data that covers the past 1000 years, something no one else has ever done. Analysis led to findings that are quite contrary to our cultural propaganda. He says that our wealth and wealth disparity ensure that we are always ruled over by the worst humans among us. It takes a certain ruthlessness to even want great wealth and power, and it certainly takes a significant ruthlessness to obtain it. He said that our rulers *always* eventually use their power for self-serving ends at the expense of the society. Because of it we have regular revolutions every 60 - 80 years, when ordinary people rise up in some form to end the imbalance in power. He cites the American revolution, the Civil War, and the labor uprisings of the early 20th century as such revolutions in our society. He also says we are very, very close to civil war in the US. \n\nThe following is from an article about the book that was published in The Guardian:\n\n"His predictions have a special urgency because western societies, and particularly America, are, he suggests, very near the end of that latter disintegrative phase, which makes the likelihood of civil war or potential systemic collapse far more likely. His model attempts to weight certain factors to predict this social meltdown. Key among them are rapidly growing inequality of wealth and wages, an overproduction of potential elites – children of wealthy dynasties, graduates with advanced degrees, frustrated social commentators – and an uncontrolled growth in public debt. In the US, he suggests – and by association the UK – these “factors started to take an ominous turn in the 1970s… The data pointed to the years around 2020 when the confluence of these trends was expected to trigger a spike in political instability. And here we are.”\n\n[https://www.theguardian.com/books/2023/may/28/end-times-by-peter-turchin-review-elites-counter-elites-and-path-of-political-disintegration-can-we-identify-cyclical-trends-in-narrative-of-human-hope-and-failure](https://www.theguardian.com/books/2023/may/28/end-times-by-peter-turchin-review-elites-counter-elites-and-path-of-political-disintegration-can-we-identify-cyclical-trends-in-narrative-of-human-hope-and-failure)\n\nIf we do manage to redeem ourselves, it will only be temporary as long as we pursue wealth and wealth seeking, allowing wealth disparity, as a foundational value. That\'s just reality. The Earth has its own agenda, its own balance, its own rhythms. The fact that we always want more than we have and more than we actually need to sustain ourselves is a real problem that simply is not sustainable for any animal, not even special monkeys like ourselves.', 'created': '2024-11-07 06:33:53', 'submission_id': '1gkypm9'}
{'comment': 'If they give Vance a more central role in the administration to prop him up as MAGA successor, he could still win their numbers even without Trump. And I think that’s why they picked him. He is the MAGA crown prince, and a lot of “independent” and even some moderate men will break for him. He speaks well and his messaging appeals to that audience. \n\nI also feel Trump and the republicans will benefit from what Biden/Harris have done for the economy. We can’t see it now, but in 2 years during the midterms, I foresee the economy making a comeback BECAUSE of Biden/harris work but no one will remember that.', 'created': '2024-11-06 19:58:07', 'submission_id': '1gkypm9'}
{'comment': 'Unlikely', 'created': '2024-11-06 16:35:51', 'submission_id': '1gkypm9'}
{'comment': "I think that's true on an individual level, but the finer point I'm making is that they don't know how to contextualize the concerns of the voter, to get their message across. At least not on the grand scale, and in particular among the generally apathetic part of the voter base.\n\nPeople talk about high grocery prices, well, that's an economic issue that Biden couldn't directly control, so instead of just saying that, he talks about how good the economy is, which it is by all metrics, but that doesn't reach the voters wallets in a perceivable way. It's not that Biden couldn't do something that could help bring down prices, but any efforts are likely to be long term, and not perceivable enough to attribute to him or others who can, directly.\n\nThis is why Trump is more appealing. he makes promises that he can't possibly fulfill, but it's what people want to hear. When he doesn't fulfill those promises, he just blames someone else, or more likely, just ignores it all together while everyone gets wrapped up in a new issue. All of this is happily relayed daily on a roller coaster out of control news cycle, so people stay engaged as he constantly seems like he's recognizing concerns, because he speaks of them directly. Reasonable solutions are inconsequential.", 'created': '2024-11-07 00:45:19', 'submission_id': '1gkypm9'}
{'comment': 'I was already aware of these things. I just thought we had enough folks on our side to offset the right. \n\nIt’s hard to win against someone who only knows lies and his people suck it up.\n\nUgh. 😩', 'created': '2024-11-07 16:02:29', 'submission_id': '1gkypm9'}
{'comment': None, 'created': '2024-11-06 22:22:48', 'submission_id': '1gkypm9'}
{'comment': 'What fucks w my head is that he didn’t win the popular vote in 2016 or 2020, but somehow fucking won it now? Hillary is so much less likeable than Kamala but somehow even she won the popular vote? This isn’t right, I’m telling you!\xa0', 'created': '2024-11-06 20:04:21', 'submission_id': '1gkypm9'}
{'comment': 'I will probably get banned from here for saying this, but I think Bernie framed it perfectly: [https://x.com/BernieSanders/status/1854271157135941698?ref\\_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Etweet](https://x.com/BernieSanders/status/1854271157135941698?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Etweet)', 'created': '2024-11-07 00:52:51', 'submission_id': '1gkypm9'}
{'comment': 'We do have enough people\xa0\n\n\nWe just need to make voting so easy that they\'ll actually do it\n\n\nSomething as simple as "go to northcarolina.vote.gov and click on the candidate you like after making your profile"\n\n\nAnything more than that and it\'s going to be a struggle\n\n\nAnd now you have the GOP in all 3 branches of government who are gonna do their absolute best to make voting as difficult as possible\xa0', 'created': '2024-11-07 16:18:32', 'submission_id': '1gkypm9'}
{'comment': 'Likely racism.', 'created': '2024-11-11 18:00:05', 'submission_id': '1gkypm9'}
{'comment': "I read this earlier, and I agree with some of his points, but not so much the idea that the democratic party has abandoned the working class. This is a good example though of how the perception can create it's own reality, and really fits in well with how dems are bad at messaging, while the opposition is good at convincing others they will help, while providing no such help, or in this particular example, actively working against the interests of the working class.\n\nI really don't like to say this, because I like Bernie a lot, but he tends to have this habit of boiling down issues into more black and white talking points. The reason I like him is he has actual policy ideas to resolve some of these issues, but at times, I feel he helps perpetuate the idea that dems aren't actually interested in helping others, when that is demonstratively untrue. Dems, as was said before, are a big tent party. They're pretty diverse on who or how they'll help, but overall, they actually do seem to want to help. The reason Bernie never makes more traction within their caucus though is because he tends to be more liberal, while most dems tend to be more moderate. This is why I feel that moving further to the left isn't a solution for the dems.\n\nBut, these are the kinds of discussions that should be had. Take the time now while there is no campaigning and figure out how to improve, either through policy, or messaging, hopefully both. If they want to move ahead, they will eventually need to heed the words of people who have been saying for years they need to do this, because it tends to be the conclusion everyone makes when they fail, so it's not like it's some sort of elusive secret.", 'created': '2024-11-07 01:02:00', 'submission_id': '1gkypm9'}
{'comment': '\nIt’s too hard for someone, to go to a polling place, during a two week period, and cast their vote? Hmmm\n\nMaking it that easy to vote, would make it easy for hacking and make it easy for the right to contest every vote.', 'created': '2024-11-07 16:48:59', 'submission_id': '1gkypm9'}
{'comment': 'I mean,based on all the evidence\n\n\nYes\n\n\nAnd would you rather have an election where the right contests all votes, or an election where Trump and the GOP win every branch of government\xa0', 'created': '2024-11-07 22:41:01', 'submission_id': '1gkypm9'}
{'comment': 'How did biden get 81 million votes and kamala received 65 million? Thats concerning', 'created': '2024-11-06 12:22:15', 'submission_id': '1gkvxy6'}
{'comment': "I just can't comprehend how he got as many votes as he did. It's almost as if every person who elected him in 2016 voted the exact same and then some. The future is scary.", 'created': '2024-11-06 12:39:18', 'submission_id': '1gkvxy6'}
{'comment': "Ignorance. So many fucking people don't pay a lick of attention to anything and just base their vote on gas prices.", 'created': '2024-11-06 13:20:08', 'submission_id': '1gkvxy6'}
{'comment': 'Hard Agree! This is worse than 2016, when we didn’t know what would happen. Now we see how much damage he’s capable of wreaking on us, and what do we do? “Thank you, sir: may I have another?” \n\nWhere will we get the strength to fight back?', 'created': '2024-11-06 12:34:38', 'submission_id': '1gkvxy6'}
{'comment': 'There were 75 million in 2020 as well. The difference is Biden got 81 million votes whereas Harris got a lot less. Democrats really need to analyze and understand why they failed to turnout their voters and make those improvements for next time. If there is a next time.', 'created': '2024-11-06 13:12:41', 'submission_id': '1gkvxy6'}
{'comment': 'I’m tired', 'created': '2024-11-06 12:13:17', 'submission_id': '1gkvxy6'}
{'comment': "People would rather believe lies than the truth. We have the strongest post covid economy in the world, and couldn't get people to believe it.\n\nThe truth is now completely irrelevant when it comes to politics.\n\nBut who am I kidding? It was always irrelevant.", 'created': '2024-11-06 13:09:48', 'submission_id': '1gkvxy6'}
{'comment': "I'm fucking disgusted. Even more disgusted seing him somehow get the popular vote. This is fucking bullshit\xa0", 'created': '2024-11-06 12:26:24', 'submission_id': '1gkvxy6'}
{'comment': 'People actually chose the bigot who filed for bankruptcy six times over the more qualified woman twice. Calling this disappointing doesn’t even begin to cover it.', 'created': '2024-11-06 14:21:48', 'submission_id': '1gkvxy6'}
{'comment': 'I feel bad for Jimmy Carter. I hope he is out of it enough and no one tells him so he can die peacefully not knowing his country took a turn for the worse', 'created': '2024-11-06 13:32:11', 'submission_id': '1gkvxy6'}
{'comment': 'I sincerely hope Pennsylvania sports teams all have decades-long droughts. Eagles, Pirates, Phillies, Penguins, the entire shebang. I hope Joel Embiid and the 76ers have a losing record this year.\n\n \nFrom a salty Washingtonian.', 'created': '2024-11-06 12:37:14', 'submission_id': '1gkvxy6'}
{'comment': 'We all will be coming to terms over the next few months with the fact that over half of the country is selfish, cruel, willing to sell out their neighbor to spite the libs.', 'created': '2024-11-06 14:07:49', 'submission_id': '1gkvxy6'}
{'comment': "House control, Senate control, the Supreme Court control, and the White House...I'm scared.", 'created': '2024-11-06 14:31:13', 'submission_id': '1gkvxy6'}
{'comment': 'Remember one thing, they are doing this because they see how far women have come and they need to get out and fight it because they are scared of it.\n\nThat means we are doing a great job in continually moving forward. Forward progression will never be easy, that is why we celebrate each win so hard. When we finally win, it will be bittersweet but tremendous. Don’t let them make you lose hope. \n\nWe will get there one day, in our lifetimes, I promise. This is the start.', 'created': '2024-11-06 12:20:18', 'submission_id': '1gkvxy6'}
{'comment': '', 'created': '2024-11-06 12:39:09', 'submission_id': '1gkvxy6'}
{'comment': 'Its worse than I imagined....however, the message is LOUD and CLEAR from the nation....they like this guy or for sure they like what he\'s preaching. I don\'t understand it, I am horrified by it....but....we Democrats must look at this and figure out what and why. He GAINED with black men, huge shift towards him among Hispanic voters, women did not turn out against him like we thought...young people sat it out basically. This was not just "old white men" turning the election....the nation spoke in a huge way we cannot put our heads in the sand....something has got to change with us before 2028....we better figure it out quickly or we\'ll be watching President Vance be sworn in for 8 more years and beyond....', 'created': '2024-11-06 13:33:51', 'submission_id': '1gkvxy6'}
{'comment': 'It’s very disheartening. Seems like even women themselves hate other women. I would be very scared if I was a woman or had daughters', 'created': '2024-11-06 14:17:48', 'submission_id': '1gkvxy6'}
{'comment': "I hear you. I'm so sorry this is the outcome. I'm devastated as well. I'm so frightened for my children for and other's children. Much less, myself. I'm truly heartbroken and defeated.", 'created': '2024-11-06 12:16:35', 'submission_id': '1gkvxy6'}
{'comment': '[removed]', 'created': '2024-11-06 12:16:58', 'submission_id': '1gkvxy6'}
{'comment': 'I am devastated and terrified for our children and our grandchildren. I can’t believe this happened. But please know while the votes came out that way, the other half of the country loves you and is in this with you. And the half that voted Red are ignorant, selfish and hateful. Please don’t let them make you feel less than. 💙', 'created': '2024-11-06 13:53:32', 'submission_id': '1gkvxy6'}
{'comment': 'I’m not an American, I come from Western Europe. I’m a white guy with a Korean partner; and what I’m seeing across the west terrifies me. The amount of racism and bigotry that has been unleashed since the mid to late 10s is astonishing. Recently whilst I was walking down the street with my partner, both inoffensively just minding our own business, a couple of young guys just started blasting gangnam style whilst dancing. They guessed correctly my partner’s nationality but she wasn’t exactly wearing a korean flag! We want kids one day and it terrifies me that they might have to deal with problems I just assumed would be sorted by now because growing up with Obama it honestly looked like we were at such a precipice. \n\nWith the sexist aspect and the push to the right in general. I think the main issue is young men. Across the world - in Korea, China, the UK, France, America, for example - young men are foregoing a college education whilst young women are not. This puts them at a massive, self inflicted(?) disadvantage as a demographic. I don’t think it’s controversial to believe that generally a well educated woman might be less enthused by a less educated man. \n\nThen we have typical masculine areas such as the gym being ‘encroached’ upon. It’s not at all unusual to see a girl in a gym now moving some serious weight. My partner squats more and with better form than a big chunk of men in the gym. Even if they aren’t lifting more weight they’re there which might, to many men, call into question: what is masculinity if the activities I’ve been brought up to believe are inherently masculine - sport, video games etc - now enjoy mainstream appeal to women? A well educated man might criticise received tradition at any time period. Plato, in the Republic, famously argued ‘through’ the character of Socrates that women and men share the same ‘souls’ (not in the christian sense but in terms of mind) and should both be accorded the same civic rights, both train nude in the gym (yeah i know), and be allowed political office. But, since most men today are foregoing education they’re not taught the skills to critically evaluate such things nor are they likely to have a bash at doing so. Much easier to fall back into old populisms about how ‘masculinity’ is under threat and how the men of today are somehow weak and effeminate. To sum: I think young male insecurity drove a large part of how modern political culture is shaping up.\n\nJust some musings. Would love for someone to weigh in with some facts and figures. And I’m really sorry to all the actual sane people in America', 'created': '2024-11-06 13:58:29', 'submission_id': '1gkvxy6'}
{'comment': 'I don’t think there’s any possible way the popular vote has that much of a margin. Don’t want to say foul play was involved but..', 'created': '2024-11-06 13:13:31', 'submission_id': '1gkvxy6'}
{'comment': 'American is a totalitarian fascist state', 'created': '2024-11-06 12:18:29', 'submission_id': '1gkvxy6'}
{'comment': "My spouse was telling me a couple weeks ago that Trump's behavior was sus, like he knew smth we didn't, that he was going to win, or else why would he just dance? In 2016 in order to get past the finish line he had to temper himself and this time he didn't, as if he had good reasons to believe that this time he didn't need to temper down.... \n\nI made fun of him, and shit he was right", 'created': '2024-11-06 13:27:49', 'submission_id': '1gkvxy6'}
{'comment': 'By not being in denial. Too many people are in so much denial about what America is. America loves racism always has and we were not going to beat a racist white man with a Black/S. Asian woman. You need a straight white man to beat a straight white man, but rich white Dems let themselves get talked out of staying with Biden.', 'created': '2024-11-06 12:16:49', 'submission_id': '1gkvxy6'}
{'comment': 'to me the tally is oddly low. something sus is to me', 'created': '2024-11-06 12:45:15', 'submission_id': '1gkvxy6'}
{'comment': 'I’m with you, FWIW. \xa0', 'created': '2024-11-06 14:15:39', 'submission_id': '1gkvxy6'}
{'comment': 'This is horrible.', 'created': '2024-11-06 14:22:17', 'submission_id': '1gkvxy6'}
{'comment': 'I was watching my 1.5 yo daughter play this morning and it was killing me to think how many people hate her for simply existing. She so innocent but the world is already targeting her.', 'created': '2024-11-06 14:13:44', 'submission_id': '1gkvxy6'}
{'comment': 'Why does this feel so rigged. Did Elon do something to mess with the votes? Seriously, this doesn’t make sense.', 'created': '2024-11-06 13:04:36', 'submission_id': '1gkvxy6'}
{'comment': "trump cheated. the proof is clear, there's no way he can pull these numbers. where were those voters in 2020?", 'created': '2024-11-06 14:20:42', 'submission_id': '1gkvxy6'}
{'comment': 'The worst part is that Latinos and black men showed up for Trump in record numbers.', 'created': '2024-11-06 14:35:42', 'submission_id': '1gkvxy6'}
{'comment': 'It’s interesting to me that a negative aimed at Biden was that he’s too old. But Trump will be 82 by the end of his term.', 'created': '2024-11-06 14:57:01', 'submission_id': '1gkvxy6'}
{'comment': 'America the stupid', 'created': '2024-11-06 15:18:13', 'submission_id': '1gkvxy6'}
{'comment': 'Democrats silence I hope is Joe Biden planning to use the power given by the Supreme Court to eliminate domestic terrorists in this case. He needs to use it to save democracy. Hiding does nothing. We need to fight back', 'created': '2024-11-06 16:00:14', 'submission_id': '1gkvxy6'}
{'comment': 'This is all just great. /sarcasm/ 🗑️ 🔥 😰\xa0', 'created': '2024-11-06 12:27:22', 'submission_id': '1gkvxy6'}
{'comment': 'They might not hate you, they may just care about the economy more than you.', 'created': '2024-11-06 12:27:18', 'submission_id': '1gkvxy6'}
{'comment': 'We will be at war with Iran when in a year', 'created': '2024-11-06 14:27:21', 'submission_id': '1gkvxy6'}
{'comment': 'Well, you might want to ask the other members of the black community why, since POC probably pushed Trump over the edge to secure the presidency. Just saying.', 'created': '2024-11-06 15:16:06', 'submission_id': '1gkvxy6'}
{'comment': "You can still thrive in America as black women. Millions do it regardless of who's in office.", 'created': '2024-11-06 12:18:57', 'submission_id': '1gkvxy6'}
{'comment': "I'm reserving judgement about this. We know Trump cheats, we know about the Russian bomb threats made on Democratic polling places. Did that stuff matter? Is there other weirdness here?\n\nI'm having a hard time wrapping my head around how the turn out was so much lower. It may be Trump just outright won. But his past makes me suspicious.\n\nIt's a disaster, but a disaster that feels different from 2016.", 'created': '2024-11-06 15:35:21', 'submission_id': '1gkvxy6'}
{'comment': '[removed]', 'created': '2024-11-06 12:52:15', 'submission_id': '1gkvxy6'}
{'comment': '[removed]', 'created': '2024-11-06 14:34:19', 'submission_id': '1gkvxy6'}
{'comment': 'Biden had 81M total votes and she’s not even going to get 70M. At least 11M people saw what happened and decided to stay home. Those didn’t even flip to Trump. He had 74M in 2020 and only 71M today.', 'created': '2024-11-06 14:59:21', 'submission_id': '1gkvxy6'}
{'comment': "People vote for many reasons, hate is one of them, but it's not the only one. It's easy to throw knives and look for answers in whatever sticks, but you aren't likely to find any truth that way.\n\nFind the people you love, keep them close, and live for each other. Whatever happens, at least you'll have them. If you are lucky enough to have a family or people close to you, now is the time to tell them that you love them. It's not worth anyone's effort to feel hate, fear, dread, terror, etc. right now. We're probably heading for a very dark time, let's not waste the last moments of light dreading the dark.", 'created': '2024-11-06 15:24:26', 'submission_id': '1gkvxy6'}
{'comment': 'White, male, straight, but atheist, in all red WV, voted for Kamala, first time I ever voted, asked transgender relative of my wife if they voted, they did not and didn\'t even know where they put their voter registration card. I havent voted since I was able to, Im turning 30 next year, and I\'ve always known where that card was, I didnt vote last elections because I said "When I find a candidate worth voting for I\'ll vote." Then I said "I\'ll be voting for Kamala for all the gay, trans, female, migrant peoples." And they aren\'t even standing up for themselves and using their rights when they matter most. And as for the Trumpers, I hope you are proud of yourselves. I hope you sleep well at night knowing you literally made us a joke, the laughing stock of the entire world, and made us look small minded, xenophobic, and I hope you all know that we are basically gonna be Russia and Chinas limp gimp bitch.', 'created': '2024-11-06 15:49:24', 'submission_id': '1gkvxy6'}
{'comment': 'Will it be over in 4 years? Or?..', 'created': '2024-11-06 15:58:56', 'submission_id': '1gkvxy6'}
{'comment': 'Kamala is going to be lucky to get within 10 million votes of Biden‘s 2020 total. These results are just insane to me.', 'created': '2024-11-06 13:38:16', 'submission_id': '1gkvxy6'}
{'comment': 'I think a lot of people are making the wrong comparisons. This isn’t 2016 all over again, it is 2008. When you look at the issues that won Obama they are the same ones that won for Trump. Housing and economy.', 'created': '2024-11-06 13:56:50', 'submission_id': '1gkvxy6'}
{'comment': "America doesn't deserve you", 'created': '2024-11-06 14:09:44', 'submission_id': '1gkvxy6'}
{'comment': 'Because they don’t.', 'created': '2024-11-06 14:44:21', 'submission_id': '1gkvxy6'}
{'comment': "This is a fallacy. Trump wins through populism. Making the assumption that everyone who voted for him hates you actually serves their purposes more than it does your own. That is how populism works. The way to defeat this is to do the opposite of what they expect. Seek to make allies out of enemies. Its time to be stone cold. Its time for calm focus. Pick the battles that matter most. Don't get sidetracked by the circus.", 'created': '2024-11-06 14:48:06', 'submission_id': '1gkvxy6'}
{'comment': "Look I don't like Trump. But let's keep it real at the end of the day, I feel like a good amount of people were just choosing what they thought might've been better with their limited knowledge. All the fear mongering about the economy and communism must've worked. \nAt the end of the day tho Kamala had a difficult task ahead of her. She wasn't the person the people chose to run.", 'created': '2024-11-06 14:12:44', 'submission_id': '1gkvxy6'}
{'comment': "Yes, that's it. It was everyone else's fault. Let's not take any responsibility for not being able to reach out to the voters. Let's not take any responsibility for a clear lack of sympathy for what voters clearly think is a party that is out of touch with the country. Blame everyone else. I'm sure that will win us the next election.", 'created': '2024-11-06 12:38:57', 'submission_id': '1gkvxy6'}
{'comment': 'Everyone call your friends who weren’t born here, LgBTQ, African Americans, Hispanics, Muslims and Asian people. Pretty soon they will be shipped to concentration camps', 'created': '2024-11-06 13:11:02', 'submission_id': '1gkvxy6'}
{'comment': "i think the biggest problem is this unhealthy culture war of most people on the left, liberal center lefts and progressive far lefts, who take things too personally. often, the reaction has been labelling others an automatic -ist for disagreements followed by cancelling, banning, blocking, etc...or even extreme shaming.\n\ni'm an independent who voted harris. naturally, i shouldn't need to say that at all; but, these are the times i live in where i have to apparently.\n\nwith that said, some of the 70 million do hate you. arguably not most however. realistically, most hated the biden administration. someone has to take the fall for the economic and border grievances. the president is the easiest scapegoat, and harris was not able to differentiate herself from him. if she threw biden under the bus, she would have been criticized for it just as much as not distancing herself away from him. she did her best to, but it was always a no win.\n\nshe deserves some credit. she made it a closer race than biden would have; but, dems should try to find a way to take criticism constructively and not personally. stop blaming, deflecting or looking to be a victim where it doesn't apply. stop trying to shut people out for disagreeing. and this might be something...i think the country has a problem with california politicians. harris lost, pelosi hated and mccarthy could not stay as house speaker for even a 1 year anniversary lmao. dems should think twice of rolling with newsom in the future.", 'created': '2024-11-06 15:11:03', 'submission_id': '1gkvxy6'}
{'comment': 'Bc you are truly misguided and self-centered. 70 million people hate “who you are”? You think 70 million people voted Trump bc they hate black women? You think too highly of yourself. I’d be willing to bet barely anyone voted because of that reason. You’ve narrowed down this election to “black women” and not America, policies, foreign policy, economy, border, etc. wake up.', 'created': '2024-11-06 13:52:12', 'submission_id': '1gkvxy6'}
{'comment': "I wanted to think America was better than this but it is undeniable. Clearly, being a woman and not white is more harmful than I wanted to believe. Also, if you are not Obama or Jesus incarnate, then apparently the other guy can just shit into a microphone about eating the dogs and that's ok, but you have to be perfect about everything!", 'created': '2024-11-06 12:42:37', 'submission_id': '1gkvxy6'}
{'comment': 'Too many Americans will just not vote for anything other than a white man.', 'created': '2024-11-06 12:47:19', 'submission_id': '1gkvxy6'}
{'comment': 'It appears Trump is just going to match his Popular Vote total from 2020 of 74 million, which means lack of turnout for Dems will be the reason Harris lost. So after all the noise about wanting a younger more diverse candidate those people didn’t bother to turnout to vote. It was just noise.', 'created': '2024-11-06 14:18:17', 'submission_id': '1gkvxy6'}
{'comment': 'It was a vote for change, not against a women of color for president.', 'created': '2024-11-06 13:14:55', 'submission_id': '1gkvxy6'}
{'comment': '[removed]', 'created': '2024-11-06 12:39:13', 'submission_id': '1gkvxy6'}
{'comment': 'Because Biden.\n\nKamala also doubled down by saying she would have changed any decision they made. That was the moment she wrecked her own campaign.', 'created': '2024-11-06 15:17:20', 'submission_id': '1gkvxy6'}
{'comment': 'How? Have you see her on TV at all? Can’t talk without teleprompter, shitty policies, inviting Cardi B, Jlo, going on call her daddy podcast during a hurricane, etc. People are not dumb, they saw all of this', 'created': '2024-11-06 12:57:39', 'submission_id': '1gkvxy6'}
{'comment': 'He got more votes in 2020 than he did in 2016, so there appears to be a trend.', 'created': '2024-11-06 12:48:48', 'submission_id': '1gkvxy6'}
{'comment': 'And the democrat party refuses to accept this truth. They need to stop appealing to academics, and instead appeal to the common working American who is only concerned with feeding themselves and not becoming homeless.', 'created': '2024-11-06 14:57:22', 'submission_id': '1gkvxy6'}
{'comment': 'People think that gas will suddenly go down to under $2 per gallon.', 'created': '2024-11-06 14:59:49', 'submission_id': '1gkvxy6'}
{'comment': "This is what I can't understand. We've been through his presidency before and it was a disaster. \n\nHe can do whatever he wants now and we can do nothing. I hope people who voted for him are happy with themselves.", 'created': '2024-11-06 13:13:01', 'submission_id': '1gkvxy6'}
{'comment': 'I’ve lost the strength to fight. 2016-2020 was exhausting', 'created': '2024-11-06 14:49:48', 'submission_id': '1gkvxy6'}
{'comment': 'And you know what’s funny? If you look at the national vote numbers.. he’s slightly trailing behind his 2020 numbers. But Harris is SIGNIFICANTLY trailing behind Biden’s 2020 national vote numbers. \n\nSo yes, Trump made gains in key counties in key states.. but he will likely not exceed or get just about the same number of votes nationally that he got in 2020. We have to look at the Democratic side because Trump is not getting those approximately 15M votes that Biden got over Kamala. From what I’m seeing, based on those numbers, most of that chunk likely stayed home while maybe a small portion broke for Trump. The Democrats need to take a hard look at that.', 'created': '2024-11-06 14:46:14', 'submission_id': '1gkvxy6'}
{'comment': "I think a lot of it is a lack of appeal to young white men.\n\nThink of this. The democrat party has been demonizing young white men for a long time. Meanwhile, those young white men grew up and had families. The democrat party continued to demonize young white men, and the young white men who grew up are now raising young white men. They point out to their children that the democrat party hates young white men. And as it has been doing so for a while, those young white men who would otherwise be politically progressive are driven to a party that doesn't hate them.\n\nIt is a messaging issue.\n\nI am as politically progressive as they come. I voted for Harris. However, I know many young white men who try and go out to get a date, and all they get is derision instead. They are lonely, can't afford an apartment on their own, told they are the source of societies problems, scorned by women who tell them that they are afraid of them, and so they fall right into the snares of the incels.\n\nThe democrat party needs to find a way to tell young white men that they are valuable and have a place in the democrat party, instead of telling them that they are a danger to all women.", 'created': '2024-11-06 14:55:37', 'submission_id': '1gkvxy6'}
{'comment': 'Exactly, Trump did gain support, Democrats just lost them', 'created': '2024-11-06 14:42:41', 'submission_id': '1gkvxy6'}
{'comment': 'Same. 2016-2020 exhausted me. I can’t do another 4 years', 'created': '2024-11-06 14:52:17', 'submission_id': '1gkvxy6'}
{'comment': 'its suspect', 'created': '2024-11-06 12:48:56', 'submission_id': '1gkvxy6'}
{'comment': "Honestly it is looking like Trump is going to win every battleground state. Can't really blame Pennsylvania so much as all of them at this point.", 'created': '2024-11-06 12:46:11', 'submission_id': '1gkvxy6'}
{'comment': 'As a Pennsylvanian, I agree.', 'created': '2024-11-06 14:51:38', 'submission_id': '1gkvxy6'}
{'comment': 'As an avid nba fan, I can guarantee you 76ers ain’t winning shit this year. Embiid is soft', 'created': '2024-11-06 12:40:07', 'submission_id': '1gkvxy6'}
{'comment': 'Except only single college educated women voted Democrat. Everyone else voted for Trump. This isn’t as much of an -ism election as people think it is. It’s pure “my misinformed opinion on the economy” is more important to me than any other right.', 'created': '2024-11-06 13:09:20', 'submission_id': '1gkvxy6'}
{'comment': 'You hit the nail on the head. Progression is never easy and we sometimes take it for granted. Failure—painful failure—is going to happen sometimes.', 'created': '2024-11-06 12:28:39', 'submission_id': '1gkvxy6'}
{'comment': "But we won't. Atleast not the people here. They'll talk about how it was racist/sexist/transphobes and that nothing else really affected the election. \n\nThe DNC itself may start considering its position but I have my doubts on their ability to be that self-critical. \n\nThey lost on economic perception. Economic facts be damned, the perception of the economy is poor. People didn't care as much about immigration or abortion as people hoped to get them to come out. There is like a 10 million gap in turnout and that killed them. People decided that it wasn't worth voting.", 'created': '2024-11-06 14:15:57', 'submission_id': '1gkvxy6'}
{'comment': 'Rich, privileged white women hate other women', 'created': '2024-11-06 14:55:17', 'submission_id': '1gkvxy6'}
{'comment': '[removed]', 'created': '2024-11-06 12:29:42', 'submission_id': '1gkvxy6'}
{'comment': 'Time to *start?*', 'created': '2024-11-06 12:32:10', 'submission_id': '1gkvxy6'}
{'comment': 'well it is now.', 'created': '2024-11-06 12:30:39', 'submission_id': '1gkvxy6'}
{'comment': 'Oh bullshit 🙄 😒', 'created': '2024-11-06 15:35:42', 'submission_id': '1gkvxy6'}
{'comment': 'I agree that Dems need to get behind that sort of candidate but Biden would not have won this election. I don’t think any Dem would have. The economic issues—inflation, housing, gas prices—it was too much to overcome', 'created': '2024-11-06 12:43:13', 'submission_id': '1gkvxy6'}
{'comment': 'I love and respect Biden, but Harris was the best shot.\xa0 \xa0he got 85 million votes four years ago.\xa0 he would not have gotten them this time .', 'created': '2024-11-06 12:49:33', 'submission_id': '1gkvxy6'}
{'comment': 'Racism is built into the DNA of America', 'created': '2024-11-06 12:24:20', 'submission_id': '1gkvxy6'}
{'comment': "I guess the problem wasn't Clinton herself, it was to run a woman against this guy. Biden was going to lose too after the debate shitshow, his numbers were worse than Harris", 'created': '2024-11-06 13:30:48', 'submission_id': '1gkvxy6'}
{'comment': 'Thank you for saying this! While I love Kamala and thought she would have made a fantastic president and even though she could easily beat Trump… after seeing this disaster, Biden would’ve beaten Trump.\n\nIn 2016, the Democrats pushed Biden to the side and got behind Hillary. What happened? Trump won.\n\nIn 2020, the Democrats tried to push Biden to the side but then he won South Carolina in the primary, so they got behind him. What happened? Biden won.\n\nIn 2024, the Democrats pushed Biden to the side. Biden, being the decent man that he is, tried to save the Democratic Party from imploding and endorsed his VP. What happened? Trump won.\n\nI’m sure Biden is deeply saddened by the outcome, but I can’t help but think he’s also having an “I told you so moment.”', 'created': '2024-11-06 12:23:23', 'submission_id': '1gkvxy6'}
{'comment': "Who's in denial? The reality is that NEITHER Biden or Kamala was going to beat Trump. We should have been developing strong candidates 20, 30, 40 years ago. Instead, it was business as usual. That's how we ended up with Biden and Harris, and not another Obama.", 'created': '2024-11-06 13:00:29', 'submission_id': '1gkvxy6'}
{'comment': 'Biden would not have won this election....have you seen him lately? There is no way....maybe Gov. Shapiro or Andy Bashear.....but we must remember that the early data shows this was not white straight men that handed him the election....black men went for him in higher numbers, women did not turn out against him in numbers we thought, young people basically sat it out...Hispanics shifted towards him in a big way....I mean, we have to figure this out...we can\'t just say this was "old angry straight white men" that simply is not the case any more....', 'created': '2024-11-06 13:40:58', 'submission_id': '1gkvxy6'}
{'comment': 'Plus his rallies weren’t all that packed for awhile and it seemed like he was losing steam\n\nWhere did all this support come from?', 'created': '2024-11-06 14:22:12', 'submission_id': '1gkvxy6'}
{'comment': 'Yes, because he used lies to successfully appeal to them. We can’t blame them for it, but we need to learn even though Trump is a liar, he is clearly doing something right that we are not doing in his campaigning.', 'created': '2024-11-06 14:38:00', 'submission_id': '1gkvxy6'}
{'comment': 'All he had to do was tell them they would have more money this time and they bought it.', 'created': '2024-11-06 14:54:54', 'submission_id': '1gkvxy6'}
{'comment': 'So they pick a guy whose big idea is to tank the economy with tariffs.', 'created': '2024-11-06 12:45:07', 'submission_id': '1gkvxy6'}
{'comment': 'but our economy is good so explain that?', 'created': '2024-11-06 12:48:37', 'submission_id': '1gkvxy6'}
{'comment': 'The economy always win.', 'created': '2024-11-06 13:17:10', 'submission_id': '1gkvxy6'}
{'comment': "that's enough.\xa0\xa0", 'created': '2024-11-06 12:50:37', 'submission_id': '1gkvxy6'}
{'comment': 'What a load of bullshit.', 'created': '2024-11-06 13:28:40', 'submission_id': '1gkvxy6'}
{'comment': 'Black people overwhelmingly voted for Harris, black support fell by 10% but it was still 80%\n\nWhite people and Latino men voted for trump', 'created': '2024-11-06 15:29:41', 'submission_id': '1gkvxy6'}
{'comment': 'I think covid and the convenient access to mail in ballots in the whole country made it so increased turnout happened. Trump lost in 2020 with more votes than he got in 2016 and will get in 2024', 'created': '2024-11-06 15:46:51', 'submission_id': '1gkvxy6'}
{'comment': 'That is anti democratic and would make us no better than them. This is what the people chose in a free and fair election. It sucks.', 'created': '2024-11-06 13:29:57', 'submission_id': '1gkvxy6'}
{'comment': 'One more point and then im gonna let this go. In 2015, many of us laughed myself included when Trump became the GOP candidate because we thought the idea of him was so outrageous. As toxic as he was and is, he was the change candidate for the GOP who knew they were gonna have to compete following a very popular president and movement, Obama and Yes We Can. And you know what? They took a risk while many laughed and it worked for them.\n\nWe need to start taking risks again, more risks with policies and ideas like free healthcare, we need to start putting up change candidates that seem risky because American voters are always going to want change and feel inspired by the campaign they are supporting. Remember, many of the same people who elected Trump voted for Obama twice.', 'created': '2024-11-06 14:47:40', 'submission_id': '1gkvxy6'}
{'comment': 'what did the party not touch on that Trumps did? please explain? they did a hell of a lot better. And no one is blaming just questioning how that rhetoric was being nasty… and if you think thats the answer then i guess we know you', 'created': '2024-11-06 12:47:34', 'submission_id': '1gkvxy6'}
{'comment': None, 'created': '2024-11-06 13:40:30', 'submission_id': '1gkvxy6'}
{'comment': 'Including non whites', 'created': '2024-11-06 13:28:09', 'submission_id': '1gkvxy6'}
{'comment': "Obama kind of proved that to be false. The problem with the Harris compaign was not so much that she was black, it was that she was a woman, and that she had basically 3 months to compaign. \n\nShe also had to figure out how to distance herself from Biden, who was extremely unpopular even among democrats, when she had not taken the spotlight in any significant way, in the Biden administration, before she started running for president.\n\nShe also focused on the moral social issues, and largely ignored something that is affecting a ton of people right now, the 30% increase in the cost of groceries.\n\nShe didn't do enough to educate the public that the inflation crisis is global.\n\nRace had very little influence in this election, for once.", 'created': '2024-11-06 14:51:02', 'submission_id': '1gkvxy6'}
{'comment': 'Yup. Something definitely needs to change for the democratic party', 'created': '2024-11-06 14:32:16', 'submission_id': '1gkvxy6'}
{'comment': "The change would've been her. We've already had Trump. Look where that got us.", 'created': '2024-11-06 13:30:55', 'submission_id': '1gkvxy6'}
{'comment': "This might be the dumbest thing I've seen on Reddit today and that's saying something.", 'created': '2024-11-06 13:50:25', 'submission_id': '1gkvxy6'}
{'comment': 'Not to mention the mass exodus of the Islamic vote, which is also significant in many areas Harris needed to win.', 'created': '2024-11-06 12:42:21', 'submission_id': '1gkvxy6'}
{'comment': 'What are you talking about? Kamala did amazing. Call Her Daddy has a massive audience of female voters. Who endorsed him, hulk Kogan and Dr Phil?', 'created': '2024-11-06 14:24:33', 'submission_id': '1gkvxy6'}
{'comment': "We won't know until all votes are counted, but it looks like he got as many or maybe slightly less votes in 2024 than in 2020.\n\nBut Harris looks to probably have gotten maybe 11 million fewer votes than Biden did in 2020.", 'created': '2024-11-06 13:08:05', 'submission_id': '1gkvxy6'}
{'comment': 'For real, people are so naive\n\nThe king will come and fix it all. Uhum', 'created': '2024-11-06 15:13:43', 'submission_id': '1gkvxy6'}
{'comment': 'This is true.\n\nI was talking to a Harris supporter on here and I was spitting facts. Their response “well if you want to vote for the racist blah blah.”\n\nYeah. That’s the kind of thing that makes people NOT want to vote for your candidate. When you compound that rhetoric spewing out of the actual politician’s mouths too? Recipe for disaster.\n\nI really don’t think democrat voters are going to learn their lesson here. They’re going to blame voters. They’re going to blame white supremacy. They’ll blame anyone and everything but themselves.', 'created': '2024-11-06 15:25:29', 'submission_id': '1gkvxy6'}
{'comment': "As it stands, Harris got eviscerated electorally. Democrats strongholds won by thinner margins than anticipated. The popular vote is not going in her favor (if at all; I've kind of tuned out a bit at this point). The swing states have not gone in her favor.\n\nIt's a colossally terrible result, in a world where Biden winning 2020 by a few tends of thousands of votes was close.", 'created': '2024-11-06 13:06:29', 'submission_id': '1gkvxy6'}
{'comment': 'And they are misinformed. The Republicans will now spend the next few years showing America, yet again, that they can’t actually move the economy forward & the Democrats will win in the midterms. We will repeat this cycle yet again. Voters forget (or just don’t realize) that it takes years to undo the damage Republicans make every time & get mad when the fix isn’t fast enough.', 'created': '2024-11-06 14:46:24', 'submission_id': '1gkvxy6'}
{'comment': 'Yes Bill Clinton famously said "its the economy stupid" and he\'s is still a prophet today...in this nation, nothing else matters other than people\'s wallets and bank accounts....we as Democrats have to realize this....and make that our priority.....Harris talked little about the economy and offered very little in the way of economic policies....Trump did not either but he scared them with rhetoric and also he\'s the "outsider" this time....and it worked....in a huge way. And, since the economy is going well thanks to Biden\'s policies, he inherits a great one and will crow about "look what I did!!".....disgusts me but its reality.', 'created': '2024-11-06 14:24:50', 'submission_id': '1gkvxy6'}
{'comment': "The Democrats didn't start losing their influence until they strayed from FDR's policies. If you shared them without any context or party affiliation, you can get most working class people on board.", 'created': '2024-11-06 15:23:25', 'submission_id': '1gkvxy6'}
{'comment': 'Plenty of blue people in red states though (please I don’t wanna die)', 'created': '2024-11-06 12:33:01', 'submission_id': '1gkvxy6'}
{'comment': 'This take is incredibly ignorant. There are blue voters even in the most obvious red states like Florida. There are democratic voters in red states who fear for their safety as it is. We voted, and we tried. Saying you hope hurricanes “wipe them out” is gross. Not all of us stuck in red states voted for that satan.', 'created': '2024-11-06 12:45:50', 'submission_id': '1gkvxy6'}
{'comment': 'Said this last night that if they want to dismantle NOAA let them. It’s all red states in hurricane paths anyway lmfao', 'created': '2024-11-06 12:38:46', 'submission_id': '1gkvxy6'}
{'comment': 'American stupidity was too hard to overcome. After watching this debacle with Trump since 2016, you begin to understand how frail our democracy really is. And how ill prepared we are to govern ourselves. Under-educated nation of bigots and racists this election is a reflection of what we are.', 'created': '2024-11-06 13:12:19', 'submission_id': '1gkvxy6'}
{'comment': 'I don’t think Biden would have won this election. He’s too old and has slipped, but do I think a younger Biden would have cleaned Trump out in 2016?\n\nYep', 'created': '2024-11-06 12:51:56', 'submission_id': '1gkvxy6'}
{'comment': "Biden got 17mill more votes than Kamala. \n\nBut if that's what's need to cope...to swallow that bitter pill.", 'created': '2024-11-06 13:59:46', 'submission_id': '1gkvxy6'}
{'comment': "It's not the inflation, housing, gas prices, nothing like that. It's the right wing propaganda machine telling us Kamala Harris had a dial on her desk controlling those things from the vice presidency.", 'created': '2024-11-06 14:04:19', 'submission_id': '1gkvxy6'}
{'comment': "That's some hard coping. Harris got TROUNCED. Biden beat him before and given the choice, the normal white man would have won like last time. It just is what it is. If America has a choice to pick between a nonwhite woman and a white man, that white man will win every time. Y'all should NOT have changed from Biden. Like I said, y'all can cope like y'all always do instead of looking inward, but we all know the truth.\n\nBut I get it. A certain segment of America LOVES them some denial.", 'created': '2024-11-06 13:00:36', 'submission_id': '1gkvxy6'}
{'comment': 'It was never Clinton, just like it was never the women that ran for President before her. It was that she was a woman PERIOD, but as usual, people couldn\'t face the awful truth and played the, "I\'ll vote for a woman just not THAT woman", game. 🙄🙄It was odd to me that people thought America in this political and social climate would vote for Kamala when it is way worse than it was in 2020. That was ignored too. \n\nAhhh....fairytales....\n\nBut no Biden wouldn\'t lose, I realize people need that to cope, but if you\'re gonna beat a racist white man, in a racist country, then another white man is your bestest bet.', 'created': '2024-11-06 13:34:56', 'submission_id': '1gkvxy6'}
{'comment': "Can't you see numbers don't mean anything? Its a guessing game. They were wrong all along saying she had the swing states in the bag or too close to call. i'll never take polls into consideration any more. They were not even close. Trump won and won easy. I think Biden maybe had a bigger chance, even if he didn't travel or did rallies much. And then if something had happened she take over.", 'created': '2024-11-06 15:05:07', 'submission_id': '1gkvxy6'}
{'comment': '>Biden would’ve beaten Trump\n\nI have absolutely no confidence this is true. Biden was performing worse and had an even lower favorability rating. Outcome would have been the same.', 'created': '2024-11-06 12:26:48', 'submission_id': '1gkvxy6'}
{'comment': "Biden got 17 million more votes than Kamala got. He would have won.\n\nBut people need to believe he wouldn't have won so as not to look within and see why they hooked their cart to Kamala's wagon.", 'created': '2024-11-06 14:01:57', 'submission_id': '1gkvxy6'}
{'comment': 'No way buddy his approval cost her so give me a fu**ing break. Joe loses even worse', 'created': '2024-11-06 12:50:52', 'submission_id': '1gkvxy6'}
{'comment': "Too many Dems. Too many are in denial. Too many of y'all don't like hard uncomfortable truths and if you don't learn to deal with them, y'all gonna keep being marks for fairytale stories and getting your asses kicked.", 'created': '2024-11-06 13:01:47', 'submission_id': '1gkvxy6'}
{'comment': "Like I said...if that's what helps the cope. Stay in denial about it. Too many Dems are great at that. if denial could win elections, we'd when them all, I declare!", 'created': '2024-11-06 13:42:02', 'submission_id': '1gkvxy6'}
{'comment': "don't quote me on that, I don't know how correct it is but I've seen ALOT OF trumpsters say that they voted more than twice. election fraud. they cheated. it's not possible for trump to win this.", 'created': '2024-11-06 14:24:31', 'submission_id': '1gkvxy6'}
{'comment': 'What I’m saying is Trump based his campaign on the economy and the border. We will never win until we start campaigning similar. Abortion being the #1 issue doesn’t speak to enough Americans', 'created': '2024-11-06 12:50:16', 'submission_id': '1gkvxy6'}
{'comment': "It is statistically good - that's far from being perceptively good. \n\nGas prices have gotten better - Groceries have not - Car prices have not - The price of normal consumer goods has not. A person looks at their grocery bill and sees either less stuff in their cart for the same amount or a much bigger amount for what they used to buy. They see this every week. They may or may not have gotten raises that matched with that over the last two years (I didn't. I was .5% behind each year). Property taxes have probably gone up (mine went up by 35% since COVID started) On a personal level I'm worse off than I was 4 years ago. I personally have got less money at the end of the month. Alot of other people have too much month at the end of the money. \n\nThe fact that the stock market is growing and GDP has grown is great but doesn't really affect my personal situation. This disconnect is what affects people's perception of the economy. The GDP can be up, unemployment can be down, stock markets can be great, but if the amount of money left in their pocket after they do the things they usually do is less than what it was - they are gonna feel like the economy is not good regardless of any statistics that exist.", 'created': '2024-11-06 14:10:29', 'submission_id': '1gkvxy6'}
{'comment': 'Economy is great, but the average person doesn’t know it. They’re living paycheck to paycheck.\n\nThey know their grocery bill has gone up and they’re told it’s because the economy is bad, illegals are getting free money, etc. They’re lied to for four years and believe it.', 'created': '2024-11-06 13:32:18', 'submission_id': '1gkvxy6'}
{'comment': "Yeah but it's either making one undemocratic decision or electing hitler", 'created': '2024-11-06 14:18:33', 'submission_id': '1gkvxy6'}
{'comment': 'Are you serious? Are we gonna glaze over a certain international conflict?', 'created': '2024-11-06 13:37:20', 'submission_id': '1gkvxy6'}
{'comment': 'Have you read project 2025?!', 'created': '2024-11-06 14:03:20', 'submission_id': '1gkvxy6'}
{'comment': 'Not only that, but she doubled down on backing the administration’s decisions.\n\nShe literally said she wouldn’t have changed a thing looking back. Either she’s the biggest idiot on earth or one of her campaign people screwed up royally. Surely they knew that was a really bad hill to die on.', 'created': '2024-11-06 15:19:44', 'submission_id': '1gkvxy6'}
{'comment': 'Like, do we need to start putting up celebrities as political candidates now?? Because what we’ve been doing clearly isn’t working 😔', 'created': '2024-11-06 14:56:02', 'submission_id': '1gkvxy6'}
{'comment': 'well they are all fucking idiots then', 'created': '2024-11-06 12:49:46', 'submission_id': '1gkvxy6'}
{'comment': 'Judging by what you said, I’m guessing a lot of people likely stayed home and did not vote smh.', 'created': '2024-11-06 14:17:59', 'submission_id': '1gkvxy6'}
{'comment': 'tome to move', 'created': '2024-11-06 12:51:12', 'submission_id': '1gkvxy6'}
{'comment': "Yep my family and I are white Democrats in ruby red Alabama for multiple generations... been putting up with a lot of sh** through the years. We love the environment and don't need getting wiped out", 'created': '2024-11-06 12:49:37', 'submission_id': '1gkvxy6'}
{'comment': 'And in the tornado valley lol', 'created': '2024-11-06 12:41:25', 'submission_id': '1gkvxy6'}
{'comment': 'I mean, just look at history - democracies don’t last and ours is no exception. This is how democracies die and all of those people who voted for Trump, didn’t vote, or voted for Jill Stein will get what’s coming to them. I’m so tired of Americans voting against themselves and then the rest of us suffer.', 'created': '2024-11-06 13:20:15', 'submission_id': '1gkvxy6'}
{'comment': "Yes he would have. Biden would have won. It's coping to say he wouldn't. He wasn't that much younger in 2016 and neither was Trump, that's more cope.\n\nAmerica.\n\nLoves.\n\nRacism.\n\nSexism,\n\nXenophobia\n\nTransphobia\n\nand hates\n\nanything not straight white male and Christian. \n\nY'all say it, but I need y'all to start really honestly believing that.", 'created': '2024-11-06 13:08:13', 'submission_id': '1gkvxy6'}
{'comment': 'And their belief that Trump will have that power', 'created': '2024-11-06 14:26:51', 'submission_id': '1gkvxy6'}
{'comment': "I mean the media didn't help but Trump gained momentum after Biden collapsed. We will never know, just like we will never know if Sanders would have won in 2016. It's just ifs at this point", 'created': '2024-11-06 14:04:34', 'submission_id': '1gkvxy6'}
{'comment': 'Worse because the work of campaigning would have continued to illustrate his old age and make him look weak and feeble next to Trump.', 'created': '2024-11-06 12:44:17', 'submission_id': '1gkvxy6'}
{'comment': "His thinking is EXACTLY why Democrats lost the Presidency and the Senate and will likely lose the House. We needed to be developing candidates decades ago but no of course not we blunder forward with people like Clinton and Biden and Harris. The only real contender was Obama, and he more or less pulled himself up by his bootstraps. It wasn't the weak Democratic Party that helped to get him re-elected twice.", 'created': '2024-11-06 13:09:44', 'submission_id': '1gkvxy6'}
{'comment': 'And *still* has an awful approval rating.', 'created': '2024-11-06 13:58:00', 'submission_id': '1gkvxy6'}
{'comment': "Biden got 17 million more votes than her. \n\nBut I know, people need an excuse. He's been doing the job the whole time she's been campaigning, too! But you know...", 'created': '2024-11-06 14:03:05', 'submission_id': '1gkvxy6'}
{'comment': 'You are going by polls and they as we can know see are useless, they had Kamala and Trump close, and nothing like that occured.', 'created': '2024-11-06 15:10:06', 'submission_id': '1gkvxy6'}
{'comment': 'She lost mostly because she’s a woman and a woman of color. Trump won by being a racist, sexist, misogynist, and used fear mongering as a political tool to win this election. That’s my opinion on this outcome. The economy is doing well, cost of living is still too high but it’s getting better. Inflation is way down from where it was a year ago. Groceries are high because of corporate price gouging, not because of Biden. Trump had a super low approval rating when leaving office and he was just elected again four years later. So obviously that low approval rating didn’t matter much.\n\nDemocrats are notoriously bad at messaging and I had hoped that with the kind of momentum and enthusiasm people had for her, that it would’ve been enough, but I guess not.\n\nEven if Biden would’ve lost, I don’t think it was him that dragged her down. The core of this defeat is the fact that she’s a woman and a black/south Asian woman.', 'created': '2024-11-06 13:05:27', 'submission_id': '1gkvxy6'}
{'comment': 'Kamala got so much damn support even from a long list of republicans and celebrities \n\nAll that trump got were the washed up losers like Kevin sorbo and hulk hogan yet he wins?', 'created': '2024-11-06 14:25:57', 'submission_id': '1gkvxy6'}
{'comment': 'oh ok so fearmongering is the winning ticket, no policy but fearmongering', 'created': '2024-11-06 12:53:03', 'submission_id': '1gkvxy6'}
{'comment': "It's either permanently break our democracy or elect Hitler.\n\nWorst timeline. We lose either way.", 'created': '2024-11-06 14:30:40', 'submission_id': '1gkvxy6'}
{'comment': None, 'created': '2024-11-06 14:05:17', 'submission_id': '1gkvxy6'}
{'comment': 'Right. Honestly, I may get thumbs down but I think someone like Bloomberg can beat trump', 'created': '2024-11-06 15:04:46', 'submission_id': '1gkvxy6'}
{'comment': 'What did Harris do to earn the Muslim vote?', 'created': '2024-11-06 14:49:36', 'submission_id': '1gkvxy6'}
{'comment': 'That tends to always be the case. Unfortunately.', 'created': '2024-11-06 14:19:08', 'submission_id': '1gkvxy6'}
{'comment': "He couldn't string a sentence together. \n\nWe will never know, but it is also clear that being a woman and/or black will cost you at least a few points in swing states.", 'created': '2024-11-06 13:29:01', 'submission_id': '1gkvxy6'}
{'comment': 'Yup, exactly!', 'created': '2024-11-06 13:17:41', 'submission_id': '1gkvxy6'}
{'comment': "I don't think biden would have won. He's unpopular because most people are idiots who don't understand basic economics. However I agree that a white Christian man is our only card to play. I'm not seeing a female president in my lifetime.", 'created': '2024-11-06 14:18:47', 'submission_id': '1gkvxy6'}
{'comment': "NO it's not what ifs. Biden got 17 mil more voters than Kamala did last night. And Biden didn't collapse.", 'created': '2024-11-06 14:11:39', 'submission_id': '1gkvxy6'}
{'comment': 'I think he\'s overall been a good and in some cases great president and was a good choice for 2020. He deserved reelection. Unfair as it may be, he was on his way to losing decisively. Polls, favorability, approval rating, perceived age disadvantage, and wrong track guaranteed it.\n\nThe only what if I\'d be interested in is if he had committed to one term early on as the return to "normal" candidate and Democrats had an open primary.', 'created': '2024-11-06 14:12:35', 'submission_id': '1gkvxy6'}
{'comment': "I cited more than just polls. Also, the polls underestimated Trump's support again. That goes against any argument you're making. No reason to think they were somehow overestimating Trump when he was against Biden and then underestimating Trumo against Harris.", 'created': '2024-11-06 15:26:21', 'submission_id': '1gkvxy6'}
{'comment': 'The -isms are all real. I’m not denying that, but just look at the exit polls. Disinformation destroyed Biden despite his pro-labor policies. \n\nTragic.', 'created': '2024-11-06 13:12:16', 'submission_id': '1gkvxy6'}
{'comment': 'yup. there is no way. I knew they were about to cheat badly after hearing about the fake bomb threats.', 'created': '2024-11-06 14:27:31', 'submission_id': '1gkvxy6'}
{'comment': 'How do you think Republicans get their base to vote? It’s entirely based on making them afraid of something.', 'created': '2024-11-06 13:03:44', 'submission_id': '1gkvxy6'}
{'comment': 'Yes.', 'created': '2024-11-06 13:05:41', 'submission_id': '1gkvxy6'}
{'comment': 'To more educated, and frankly… not idiotic morons, this seems ridiculous but it works.', 'created': '2024-11-06 13:13:34', 'submission_id': '1gkvxy6'}
{'comment': 'Electing hitler permanently breaks our democracy too so I would rather have no Hitler in office.', 'created': '2024-11-06 14:31:33', 'submission_id': '1gkvxy6'}
{'comment': 'How many times have we sat here and said “Trump would never do that” only for him to do it and exceed our expectations', 'created': '2024-11-06 14:45:20', 'submission_id': '1gkvxy6'}
{'comment': 'Oh yeah, and even someone like Andrew Cuomo (he has some Trump-like characteristics) but too bad he turned out to be a jerk. And if we do have an election in 2028, who do the democrats have? The only one I can think of who might appeal to the masses is Gavin Newsom. I’m not really sure who else there is. On the plus side, if Democracy survives these four years, at least Trump can never be elected president ever again.', 'created': '2024-11-06 15:09:48', 'submission_id': '1gkvxy6'}
{'comment': "Ah but he could string a sentence together. And he's been stringing sentences together. 🤣\n\nI know people aren't gonna admit it, but Dems screwed the pooch in ignoring Kamala's 2020 run, ignoring that Biden already whipped Trump, ignoring that American is largely racist and misogynistic. \n\nNow we all got to pay because too many had on rose colored glasses.", 'created': '2024-11-06 13:31:07', 'submission_id': '1gkvxy6'}
{'comment': 'I think you are right or at least make a good point.', 'created': '2024-11-06 15:06:25', 'submission_id': '1gkvxy6'}
{'comment': 'He won during a pandemic where voting was made so much easier with mail in ballots and increased turnout all over the country. I mean even Trump is winning with less votes than he had in 2020 when he lost. He lost when he had the highest number of votes out of his 3 runs', 'created': '2024-11-06 15:45:34', 'submission_id': '1gkvxy6'}
{'comment': 'Wasnt that what I said, that polls underestimated?', 'created': '2024-11-06 15:40:26', 'submission_id': '1gkvxy6'}
{'comment': 'Yeah, it’s really sad. I guess we’ll never know one way or the other anyway. Just have to push through and hope for a positive outcome in the 2026 midterms and hope we will have another presidential election.', 'created': '2024-11-06 13:13:48', 'submission_id': '1gkvxy6'}
{'comment': 'And Biden will transfer power over to this guy who admitted he’ll be a tyrant day one \n\nHe should investigate this because prior to Election Day. Trump was trailing in a land side when it came to Money and support\n\nKamala went everywhere but Trump mostly sat on his ass and didn’t do the community effort like Kamala', 'created': '2024-11-06 14:29:50', 'submission_id': '1gkvxy6'}
{'comment': 'Ding. Ding. Ding. We live in a nation of idiots. That can be easily manipulated through fear and hate. At least ENOUGH idiots to allow someone like Trump to get elected.', 'created': '2024-11-06 13:14:48', 'submission_id': '1gkvxy6'}
{'comment': "It's a lose lose situation. Civil War, Civil War. The outcome is going to be Civil war.", 'created': '2024-11-06 14:35:23', 'submission_id': '1gkvxy6'}
{'comment': 'Maybe Shapiro but who knows at this point', 'created': '2024-11-06 15:12:17', 'submission_id': '1gkvxy6'}
{'comment': 'Honestly, they screwed the pooch when they ignored Biden in 2016 and pushed him aside in favor of Hillary (no disrespect to Hillary, I think she’s great). If Biden had run in 2016, he would’ve beaten the pants off Trump and then we never would have had a Trump presidency and now a Trump 2.0 presidency. Biden would’ve been finishing up his second term now.', 'created': '2024-11-06 14:08:49', 'submission_id': '1gkvxy6'}
{'comment': 'Biden could not campaign. Put aside everything else, he could not go out and endure the physical demands of the campaign trail. Don’t take my word for it—go back and read his comments in the weeks before he exited the race: he blamed his staff for “over scheduling” him when his schedule was very light, he stated he needed more sleep, etc. Those were his words.', 'created': '2024-11-06 13:56:04', 'submission_id': '1gkvxy6'}
{'comment': "I'm with you on this, More people liked Biden regardless of his problems and age. A risk could had been taken with him. Biden has followers up to today and a lot of people wanted him not her. Lots of Dems told me such many times since she was chosen.", 'created': '2024-11-06 14:35:55', 'submission_id': '1gkvxy6'}
{'comment': 'I am the biggest Biden homer you will meet. I donated to the guy in the 2007 primaries for Christ’s sake. I am a true believer in Bidenism if there ever was one.\n\n\nI was deeply saddened when he dropped out, but he had lost his fastball. Age doesn’t discriminate. He should’ve been riding off into the sunset after 8 years in 2024 if it was up to me, but he didn’t have that opportunity. The only person I think that could’ve beaten Trump this year unfortunately could not run due to term limits (Obama).', 'created': '2024-11-06 15:29:16', 'submission_id': '1gkvxy6'}
{'comment': "Biden could've just jailed trump before he tried to run for president.", 'created': '2024-11-06 14:31:34', 'submission_id': '1gkvxy6'}
{'comment': "that is NOT what happened. NO one got pushed aside. \n\nBiden was going to run and then his son Beau died from cancer and he was to griefstricken to run.\n\nWhere do y'all get this from? Biden himself has said this several times why he didn't run in 2016.", 'created': '2024-11-06 14:10:25', 'submission_id': '1gkvxy6'}
{'comment': 'But he didn’t cause he believed in democracy', 'created': '2024-11-06 14:41:30', 'submission_id': '1gkvxy6'}
{'comment': 'There’s news articles and books that have been written about it. If you do a google search, you’ll see them. Of course Biden isn’t going to publicly say that his running mate and President pushed him aside in favor of another politician. Beau Biden wanted Joe Biden to run for and be elected president. The Obama circle favored Hillary. Biden has been underestimated his entire political career. 2016, 2020, and 2024 are no different.', 'created': '2024-11-06 14:13:44', 'submission_id': '1gkvxy6'}
{'comment': 'Maybe a few local races, but this about to be really\nBad. Hard to find light in this.', 'created': '2024-11-06 11:40:44', 'submission_id': '1gkvdez'}
{'comment': 'All the wins we got will be undone by the majority party in all 3 branches of government. Project 2025 will be the game plan. They will kill Democrats. \n\nThere is no silver lining.', 'created': '2024-11-06 11:57:09', 'submission_id': '1gkvdez'}
{'comment': 'North Carolina didn’t get a nazi governor.. but we did get a nazi in the White House so..', 'created': '2024-11-06 13:14:26', 'submission_id': '1gkvdez'}
{'comment': 'Best I can do is we got to see Kari Lake lose….on a night Republicans won everything. Outside of that it’s just darkness for women, for immigrants and the LGBTQ community. If you’re one of those today I am deeply sorry.', 'created': '2024-11-06 11:59:31', 'submission_id': '1gkvdez'}
{'comment': "Maybe the dumbass uncommitted movement will be the first to face consequences.\xa0 Idk can't think of anything else.", 'created': '2024-11-06 12:20:42', 'submission_id': '1gkvdez'}
{'comment': 'Trump can never run again. The next 4 years will be awful, but that awful will assure eight years of the next democrat who wins. And Trump won’t be able to run again. We only have 4 more years of that nation having any prevalence in our society.', 'created': '2024-11-06 14:12:33', 'submission_id': '1gkvdez'}
{'comment': 'Florida here. Nothing good came here.', 'created': '2024-11-06 19:19:31', 'submission_id': '1gkvdez'}
{'comment': '[Sarah McBride](https://www.reuters.com/world/us/democrat-sarah-mcbride-becomes-first-openly-transgender-member-us-congress-2024-11-06/) won her race and is the first trans member of Congress.', 'created': '2024-11-06 15:26:40', 'submission_id': '1gkvdez'}
{'comment': 'Maybe, just maybe. the consequences this time will be bad enough to finally get Millennials off their asses to vote. This election had more risks to them and their kids and it looks like they still stayed home 🙄', 'created': '2024-11-06 14:59:19', 'submission_id': '1gkvdez'}
{'comment': 'I stepped into a shopping mall for the first time in years. And I bought some stuff.', 'created': '2024-11-06 14:37:54', 'submission_id': '1gkvdez'}
{'comment': 'The only thing I can think of is, if (and this is a big if) we have another free and fair election, that Trump and the GOP will have fucked up enough that the midterms will handily go to the Democrats and we can once and for all prove that Trumpism and the GOP are unequivocally bad for the economy. \n\nYou have to hit rock bottom before you can heal. Maybe we haven’t hit bottom yet.', 'created': '2024-11-06 18:07:35', 'submission_id': '1gkvdez'}
{'comment': '[Rep. Marie Gluesenkamp Perez](https://www.nytimes.com/2024/11/08/us/politics/marie-gluesenkamp-perez-interview.html?unlocked_article_code=1.YU4.7YsG.F5ZPT7FwsOD7&smid=nytcore-ios-share&referringSource=articleShare) (D-WA) represents a rural, red district in Washington. The national party believed her seat was the most vulnerable and expected her to lose. She outran Kamala Harris by 7% in two of the reddest counties in her district and beat her former Green Beret opponent.', 'created': '2024-11-08 21:47:37', 'submission_id': '1gkvdez'}
{'comment': 'This. I think people don’t realize that this is going to be 1000 times worse than 2016-2020 because he virtually will have no unchecked power. We’re gonna wake up everyday to some bad shit every morning. And even though he’s GOP he’s all for big government. Let’s pray we have an election in four years and the Democrat party still has a pulse then and isn’t labeled as a dangerous hate group by his admin.', 'created': '2024-11-06 14:03:21', 'submission_id': '1gkvdez'}
{'comment': 'Electing the first trans member of congress is historic and exciting, but I fear deeply for their safety.', 'created': '2024-11-06 15:10:57', 'submission_id': '1gkvdez'}
{'comment': 'i am 2/3 of three. we must keep going.', 'created': '2024-11-06 12:18:44', 'submission_id': '1gkvdez'}
{'comment': 'these dumbasses will learn in the next for years', 'created': '2024-11-06 12:34:20', 'submission_id': '1gkvdez'}
{'comment': "Only if they don't scrap the constitution. Make him America's Putin. In addition to being American Hitler.", 'created': '2024-11-06 14:27:29', 'submission_id': '1gkvdez'}
{'comment': 'You think there will be another election lololol. We’re fucked!', 'created': '2024-11-06 14:32:19', 'submission_id': '1gkvdez'}
{'comment': 'Sigh. You are utterly deluded. You think the billionaires are going to take their foot off the gas to let a Democrat back into power? JFC delusional.\n\nIt is over. For 50 years at least and with AI driven surveillance state, maybe forever.', 'created': '2024-11-06 15:26:46', 'submission_id': '1gkvdez'}
{'comment': 'Were you not there when trump has repeatedly promised that if he wins you won’t have to vote ever again?', 'created': '2024-11-06 17:25:00', 'submission_id': '1gkvdez'}
{'comment': 'It’s sad but true unfortunately', 'created': '2024-11-06 14:42:58', 'submission_id': '1gkvdez'}
{'comment': 'It means nothing when republicans control all branches', 'created': '2024-11-06 17:23:54', 'submission_id': '1gkvdez'}
{'comment': "The infighting buffoonery will eat them alive. It'll be a clown show for the most part, but with some dire results. But the Constitution will live on.", 'created': '2024-11-06 14:39:22', 'submission_id': '1gkvdez'}
{'comment': "Yeah, anyone spewing hope right now is utterly foolish.\n\nI did think Kamala had a chance. But I also KNEW AND KNOW that if and when trump did win, it's OVER. \n\nTHERE IS NO HOPE.", 'created': '2024-11-06 15:27:35', 'submission_id': '1gkvdez'}
{'comment': "If you get the house, play hardball. Republicans are good at this and ignore how the media views them. It's unproductive but if Dems keep playing catch up or the 'good guys', no one will take them seriously. They need to show they can wield power not just effectively but ruthlessly \n\nThe party and the voters need to have a unified platform of sorts as well. If the voter base and party are not in line with what they're fighting for, they will bleed voters like this election. Of course, the US is now more conservative than ever, so even if they control SoMe spaces their ideas have to actually resonate with the wider population\n\nI think for candidates....the Dems need an outsider/maverick of sorts. Otherwise it's going to be difficult to counter right-wing populism", 'created': '2024-11-06 11:53:39', 'submission_id': '1gkuy6r'}
{'comment': ">the question is, \n\n>1. what do democrats going to do in the next few years preparing for midterms and the next presidential election? \n\nWell the first thing Dems should do is make sure Trump has no honeymoon. The attack ads should start the moment Trump does something that needs attacking and it needs to be sustained to the point of relentlessness.\n\n>2. what do democrats planning their top issues for the next decade? \n\n\\#1 should be the economy. There hasn't been a Republican president that left the economy in better shape than they found it since the 80s and I don't think that streak will end. The tariffs Trump threatens will be hitting average Americans and to my first point, that needs to be in ads all the time. The effects of threatened mass deportations must be constantly publicized through the same economic lens.\n\nThe injuries/deaths of women due to abortion restriction need the same constant publicity.\n\n>3. and the most controversial one, what kind of presidential candidate are the dems looking for? it’s seems like america isn’t yet ready to have a woman president.\n\nThis is unfortunately true. \n\nI'm sorry to say it, but not having a man at the top of the ticket will continue to result in a loss for a while to come. If there was a man at the top of the Dem's ticket, the party gender gap for men would have 3-4 points less and that could have been the difference. If your party doesn't put a man at the top of the ticket, it's not bringing its A-game ...for now anyway.", 'created': '2024-11-06 13:04:35', 'submission_id': '1gkuy6r'}
{'comment': 'The path going forward is the 2026 elections. Without Trump at the top Of the ticket, Republicans lose. Mourn today, but start thinking about 2026 tomorrow', 'created': '2024-11-06 12:08:34', 'submission_id': '1gkuy6r'}
{'comment': 'They’re going to try to prevent another election.', 'created': '2024-11-06 13:17:16', 'submission_id': '1gkuy6r'}
{'comment': "Teach the children how to read books. That's what Democrats need to do. The nation fell because we are uneducated, our leadership is awful, and the worst people have all the money. America is not going to get better. Unless the American people realize real reform we should start looking for better places to live. I refuse to live my remaining years in autocracy.", 'created': '2024-11-06 13:50:20', 'submission_id': '1gkuy6r'}
{'comment': 'Put me on the ballot. Let me cook whoever the fuck is running for the Republican Party in ‘28.', 'created': '2024-11-06 11:10:08', 'submission_id': '1gkuy6r'}
{'comment': 'Should Sotomayor Retire in lame duck and the democrats push someone through to at least keep her seat? We don’t want a RBG moment.', 'created': '2024-11-06 13:48:53', 'submission_id': '1gkuy6r'}
{'comment': 'I’m not sure how they will prepare. I think the biggest issues they need to focus on are the economy, abortion, and healthcare. The economy is a tricky one as you have there is the macro level and the micro level and Americans will only care about the micro level', 'created': '2024-11-06 11:15:19', 'submission_id': '1gkuy6r'}
{'comment': 'Mid-terms. That’s what’s next nationally.', 'created': '2024-11-06 12:49:48', 'submission_id': '1gkuy6r'}
{'comment': 'The camps. That’s what he has promised.', 'created': '2024-11-06 14:14:41', 'submission_id': '1gkuy6r'}
{'comment': 'With a mandate like this, Democrats really have no viability moving forward. I really don’t see a path forward. The damage has been done to the education system. Severe generational harm has been done and will not be undone for probably 100 years.\n\nI would start saving as much money as you possibly can ASAP. These tariffs, if implemented, are going to be brutal for us all.', 'created': '2024-11-06 11:38:06', 'submission_id': '1gkuy6r'}
{'comment': 'Democrats are going to push right. They dipped their toe into progressive policy and platforms then got burned. Democrats tried to be a large tent party and the country gave a resounding no. Republicans will be the party of Trump while democrats will essentially become republicans. This is what we voted for though', 'created': '2024-11-06 13:56:23', 'submission_id': '1gkuy6r'}
{'comment': None, 'created': '2024-11-06 11:00:41', 'submission_id': '1gkuy6r'}
{'comment': '[removed]', 'created': '2024-11-06 11:10:43', 'submission_id': '1gkuy6r'}
{'comment': 'Without trying to get fingers pointing and shit how exactly can the Democrats reignite their base and attract new voters? I’m sure a lot of this was “I’m not voting for a WOC” but how do we rebuild and get some teeth to us again? I’m so tired and crestfallen. \n\nLike I’ll be ok because I don’t live there currently but my entire family does and of course all my friends. They get no such comfort from that. How do we make changes the reverberate and help us be better in the future?', 'created': '2024-11-06 12:13:18', 'submission_id': '1gkuy6r'}
{'comment': "Run a straight white guy next like Newsom or Shapiro, then we have to go as aggressive as possible. Though, assuming we have another election, the Republicans shouldn't be too hard to oust, we did it once, and that was with a weaker candidate and with trumps presidency not being nearly as bad.", 'created': '2024-11-06 12:57:22', 'submission_id': '1gkuy6r'}
{'comment': 'We need to clean house in leadership. They need to take a radical stand on the toughest issues instead of the pussy footing around with cocktease “moderates.” I know in the end to properly govern you gotta be willing to settle for something over nothing, but that doesn’t mean we should let Republicans bull over us on issues like immigration. I get there’s a good degree of internal division, but I believe to consolidate a core that can win and have a platform that can oppose the Republicans in the future, Dems have to break a few hearts today. \n\nIn 1964, the Democratic Party made the decision to stand firm for Civil Rights, though it lost the South which was such a key piece of the party for so long, they became a better party for cutting out their toxic conservative elements. We need to take a risk, and take stand on issues that actually inspire people to join in the party.', 'created': '2024-11-06 15:54:50', 'submission_id': '1gkuy6r'}
{'comment': "1. Get new candidates ready and any mistakes the Republicans make to screw things up for everyday Americans pounce on them like flies on stink. Midterms are in 2026. We need to start prepping for them first (along with state and local races that happening next year). Once they are done then focus on the election in 2028. Not for midterms but also focus on getting dems elected at local offices and any state offices in the meantime.\n\n2. Economic issues and focus on issue that effect everyday Americans. If the tariffs get put in place and things go up in price (they will) run on this saying how this didn't fix the economy and how things are more expensive than before. If the Republican’s don’t do anything to make housing more affordable talk about plans or ideas to help with housing (this is more of a local issue than national issue but also goes back to point one about getting more dems in local and state offices). If they get rid of the ACA or make it something so unobtainable run on getting it back in some form. Is the ACA flawed yes, but it has helped the lives of many people. The big thing is we need to come up with a bumper sticker slogan for our policies (KIS principle here)\n\n3. Not sure on this. Not saying VP Harris was too old she wasn't far from it but someone younger to inject new blood in would be good. While I do believe America will eventually have a female president we need men at the top of the ticket for the time being. Maybe not men men tickets as 2020 proved that otherwise. Not saying we need a Blue MAGA but we need someone with the charisma of someone like Bill Clinton or Barack Obama again. \n\nEdit: I wanted to add a few more things to say but I was limited on time this morning.", 'created': '2024-11-06 13:08:57', 'submission_id': '1gkuy6r'}
{'comment': "Right now, lick our wounds and spend the next few months analyzing what went wrong. The party clearly needs a rebrand and a messaging change.\n\nAfter that, damages control. Republicans will control congress, but not by huge margins. The party has been prone to infighting in recent years and Senators like Murkowski, Collins, and Cassidy has shown they're willing to stand up to their own party from time-to-time. How much success will Democrats have? Probably not much, but it sure beats just doing nothing.\n\nAnd after that, look to the next elections. Virignia and New Jersey were both way closer than they should have been. Both states have a Gubernatorial election next year, giving Democrats a huge chance to send a message. Then we need to turn our attention to the 2026 midterms. The Senate map isn't great, but there are some oppurtunities there in addition to the House. We also have to start thinking about 2028. It'll probably be a fight between Shapiro, Moore, and Newsom, and we should figure out who gives us the best chance.", 'created': '2024-11-06 14:43:43', 'submission_id': '1gkuy6r'}
{'comment': "1 wait for trump to tank the economy \n\n2 focus on the economy from a center left position \n\n3 have a candidate that isn't in their 70s that could be easily slandered for most of the election.", 'created': '2024-11-06 15:35:44', 'submission_id': '1gkuy6r'}
{'comment': 'I’m pretty sure elections aren’t happening any more', 'created': '2024-11-06 12:10:40', 'submission_id': '1gkuy6r'}
{'comment': 'Have some actual left facing policy.', 'created': '2024-11-06 12:57:27', 'submission_id': '1gkuy6r'}
{'comment': "Dems need to grow a spine. They also need to appeal to as many voters in a coherent way.\n\nThey also need to wake the hell up. Too many of them are completely blindsided by results like this TO THIS DAY. They seem to be in a perpetual state of disbelief, which shows them to be exactly who they are: stuck up, holier than thou, and thinking they know better.\n\nThey talk about how the GOP is Nazis, and then don't act as though they ARE Nazis. This makes them come off as phonies, and that is exactly what people do NOT like in politicians today. People want authentic, real people.\n\nThe Dems don't have many like that, and the ones we do have are regularly shunned by the party brass and an absurd amount of its voters who don't care about expanding the party to include voters that actually exist.", 'created': '2024-11-06 15:12:01', 'submission_id': '1gkuy6r'}
{'comment': 'Trying to escape fascist crackdowns', 'created': '2024-11-06 11:12:10', 'submission_id': '1gkuy6r'}
{'comment': 'This election should’ve been a slam dunk. Trump is the worst fucking candidate for President the country has ever seen and we just got fucking TROUNCED by him.\n\nFirstly, no more nominating women. Gonna have to wait until the boomers die off for a woman to be President. It’s sickening that I even have to suggest this and I feel terrible for women after everything our country has done to them the past 5 years, but we’ve tried it twice and lost both times.\n\nProgressives are going to have to take a seat in the back with the women too.\n\nThe party is going to have to return to a moderate platform and prop up moderate white male democrats that appeal to the morons who voted for Trump.', 'created': '2024-11-06 13:04:10', 'submission_id': '1gkuy6r'}
{'comment': 'I’m praying a ton of people will have their eyes open on ALL elections- not just the presidential primary every 4 years. Our focus has to be on 2026 with flipping the house and senate. At least to stall and shoot down Trump’s shitty plans. A ton of demographics (me included, as a physician in training who relies on Biden’s SAVE IDR) just got screwed. This includes women, union members, the middle class, minorities, trans people, immigrants, and others I cannot unfortunately think of. \n\n\n\nI think I had large blinders onto the situation. People don’t care to look at the economy on the world stage. When people see how we are doing currently and hate the status quo, they’re going to vote for the opposite of the party that’s in charge. It doesn’t matter if you give them facts, figures, etc. \n\n\n\nKamala was put into a tough situation she couldn’t have won. If she said she’d change a ton of economic policies that were enacted by Biden, it would be spun as a failure of the Biden presidency. But she went with “I wouldn’t change anything,” which I think is what sunk her heavily. She lost a lot of the Latin and young men vote.\n\n\n\nIn all, we don’t have to suffer for 4 years straight. Lick our wounds, learn from it, and get out to vote during house and senate elections in 2026.', 'created': '2024-11-06 16:00:43', 'submission_id': '1gkuy6r'}
{'comment': 'There’s a lot of voter apathy among left-leaning & younger voters, and here’s the thing: the democratic party has to work to get these people excited to vote (just like Obama did). \nIn the last few years the Dems have been so focused on getting the most right leaning or moderate democrat for candidates, and maybe that’s not what people want.', 'created': '2024-11-06 17:09:20', 'submission_id': '1gkuy6r'}
{'comment': 'We just live our lives. It’s blue in two years. Defend women and minorities from weak proud boys. It will be hard and prophecy 2025 is terrifying. But remember, trump was a buffoon the first time and did nothing for the people and he will be a buffoon this time and do nothing good for the people. One day Americans will understand the dems are more likely to help the average person.', 'created': '2024-11-06 19:10:16', 'submission_id': '1gkuy6r'}
{'comment': "Trump's tarrifs are only going to harm inflation. I think 2028 is ours.", 'created': '2024-11-06 14:33:22', 'submission_id': '1gkuy6r'}
{'comment': 'We win if we fight.\n\nWe need someone that connect to the voter\n\nEconomy, then immigration are two most important issues. The other social issues can be set aside from now.\n\nPlay dirty, but not cheating.\n\nNew leadership who will pounce on drumf constantly \n\nHe will make mistakes again, prices will go up under him, get him on that.', 'created': '2024-11-06 16:04:27', 'submission_id': '1gkuy6r'}
{'comment': 'It’s time to motivate people to vote in 2026. We cannot roll over and die now.', 'created': '2024-11-06 20:07:56', 'submission_id': '1gkuy6r'}
{'comment': 'The Democratic Party needs to use this time to step back and rebuild itself. We need the Obama era Democratic Party back; where we are strong, United, and vast in numbers. And most importantly, we need a good candidate to stand behind in 2028. What the democrats chose to do with Kamala ultimately blew up in our faces and costed us this election. No one wanted Kamala in 2020 for a reason, and it was a mistake for her to be our nominee.', 'created': '2024-11-06 11:27:57', 'submission_id': '1gkuy6r'}
{'comment': None, 'created': '2024-11-06 13:17:33', 'submission_id': '1gkuy6r'}
{'comment': 'Is there an empty city we can all move to somewhere? Like those spanish countryside villas… let’s go there', 'created': '2024-11-06 13:49:49', 'submission_id': '1gkuy6r'}
{'comment': 'I’m just gonna keep my head down and wait for the next inevitable pandemic to claim me.', 'created': '2024-11-06 14:46:03', 'submission_id': '1gkuy6r'}
{'comment': 'Stop fighting for the center right and stand for something.', 'created': '2024-11-06 14:54:29', 'submission_id': '1gkuy6r'}
{'comment': 'Handmaids.', 'created': '2024-11-06 15:24:05', 'submission_id': '1gkuy6r'}
{'comment': 'We can’t do a thing. He said that he’s going to be a dictator on day one. He’s going to cancel the constitution. He’s going to proclaim himself dictator for life. This is the end of our country as we knew it. We’re all his slaves now.', 'created': '2024-11-06 17:34:47', 'submission_id': '1gkuy6r'}
{'comment': 'Americans are showing once again that Trump can piss on their head and tell them it’s raining. I… know better.', 'created': '2024-11-06 17:54:14', 'submission_id': '1gkuy6r'}
{'comment': 'As a long-time supporter, LGBTQ+ ally, I have *thoughts* as a moderate that often meets with pushback but here we are! ***Losing again.*** Yes, I voted for Hillary, Biden, then Harris. \n \nSome background. I immigrated here just under 25 years ago, gained citizenship just under 15 years ago. I work in higher education, I live in Texas.(might be moving, who knows?) I have been involved in polling, I have been an election volunteer, I go to local meetings, speak at my local boards. \n\nBefore you read this. Some of it is obvious, but it\'s clear that our leadership hasn\'t gotten it through their thick skulls. ***We. need. to. change.*** The voting population is changing, so if the party is to survive and make the USA a more progressive place, we must take the longer road of winning back moderates ***again.*** \n \n>!1. Stop treating young cis people like trash. There are so many that want to be allys but are off-put by the "#killallmen" type rhetoric. Allys come in a spectrum too, shitting on someone for being "not enough of an ally *yet*" pushes them away forever. !< \n>!2. Black Americans are not assured votes. A significant portion of the Black population are some combo of religious, gun-loving, and anti-immigration. !< \n>!3. Not all Latinos are ok with *illegal* immigration in particular, a big issue in this election, and being soft on it is losing votes. So many struggle to come here legally, just to have someone jump the line through some program that isn\'t open to them. Yeah, cool, this didn\'t feel great to me either. I watched people get their citizenship faster than me who came here illegally. Gotta tell ya, it is not a great look. !< \n \nFor the sake of other issues we need to find a new platform that will be fucking popular. \n\n>what do democrats going to do in the next few years preparing for midterms and the next presidential election?\n\n 1. Tougher platform on immigration, prepare to filibuster the fuck out of the fed, and actually pick a candidate through the primary system this time. It was perfectly legal to put Harris in the spot, but foolish. If we wanted her to be president so bad then Biden should have retired at midterm to give her a 2 whole years to earn the public\'s trust that way. Instead, she stayed in the invisible VP seat. \n\n>what do democrats planning their top issues for the next decade?\n\n 1. Gun Control, reproductive freedom, and labor rights are still the path forward, in conjunction with a more popular (restrictive) position on immigration. With any luck, President Felonious Maximus will change things too quickly, people will feel the hurt, and push back hard. We need to be there to guide the pushback. \n\n>and the most controversial one, what kind of presidential candidate are the dems looking for? it’s seems like america isn’t yet ready to have a woman president.\n\n 1. Harris needs to never run again for federal office, first off. Help in the background. She is poison at this point. \n 2. Pete fucking Buttigieg, or someone like him. Start looking at the Harris VP pick list. Kelly is another great option. Seriously, any one of them might have done better in the primary than Harris, but we will never know. \n\nComing to you live, hungover, and disappointed.', 'created': '2024-11-06 19:24:06', 'submission_id': '1gkuy6r'}
{'comment': 'File lawsuits and demand recounts like Trump did in 2020. He pulled a coup exactly like he said he was going to.', 'created': '2024-11-06 14:38:17', 'submission_id': '1gkuy6r'}
{'comment': 'START FINDING A CANDIDATE WITH ACTUAL CHARISMA! Someone similar to Obama or Bill Clinton. Vibes win presidential elections, not policy.', 'created': '2024-11-06 15:26:00', 'submission_id': '1gkuy6r'}
{'comment': 'Is there anything democrats can do at this point?', 'created': '2024-11-06 12:40:45', 'submission_id': '1gkuy6r'}
{'comment': 'Work on getting people out to vote! Trump is on track to get the amount of people he got in 2020 or less in the popular vote. Biden got over 81 million votes in 2020, Harris is sitting at around 66 million—that is a huge number of people who didn’t go to the polls. She underperformed everywhere & it made a difference. People think Trump is going to save the economy, but we know how that goes. Democrats need to start getting everything together now to get big wins in the midterm & then for 2028. We need to put forth strong candidates.', 'created': '2024-11-06 15:24:40', 'submission_id': '1gkuy6r'}
{'comment': 'I hope Harris gives trump the same concession that trump gave Biden. In other words, none. That fascist pathological narcissist is undeserving of any concession from Harris. She doesn’t need to play decent with that pig.', 'created': '2024-11-06 17:17:10', 'submission_id': '1gkuy6r'}
{'comment': "At least we don't have to worry about trumplestiltskin in 2028", 'created': '2024-11-06 18:22:02', 'submission_id': '1gkuy6r'}
{'comment': "Rally, regroup, and resist. I'm doubtful that Trump will care much about agenda now that he's finally won the popular vote, and he's also about to have a coalition problem where the GOP's new representatives are almost all non-MAGA and relatively moderate by modern GOP standards.\n\nWe'll stand our ground and we'll come out on top again. This is not the end, and he's not going to have his way with democracy.", 'created': '2024-11-06 19:44:26', 'submission_id': '1gkuy6r'}
{'comment': 'I don’t know that there is a next. I am praying the new gestapo doesn’t arrest me and send me to a camp. That enough will keep me alive, but I personally am done with America. \n\nIf it wasn’t for my husband I would leave.', 'created': '2024-11-06 19:54:57', 'submission_id': '1gkuy6r'}
{'comment': 'Find a way to move out of this country', 'created': '2024-11-06 20:05:10', 'submission_id': '1gkuy6r'}
{'comment': 'As much as I hate it, I sort of get it. People care more about issues that effect them personally: crime, inflation, jobs, etc., than they do about fringe topics like the rights of trans prisoners and criminal illegals. I really thought that women\'s health would be enough to win the election, but apparently not. I was hoping that Kamala\'s "word salad" would be enough, but apparently not. I was hoping her vapid speeches would make people forget about some of the failed policies of the last four years, but no.\n\nThe democratic party has failed on every level in this election. Lost the Senate, lost the popular vote by a wide margin. The democratic party needs to reinvent itself, stop catering to the woke extreme left and start catering to the centrists and independents, and going forward, not pull a "Hillary" and blame everyone else for losing.\n\nThey need to start grooming potential presidential candidates for 2028 NOW, so that in three years there are at least a name or two people have heard of. We got lucky with Obama coming out of nowhere, can\'t count on that happening again.', 'created': '2024-11-06 15:45:33', 'submission_id': '1gkuy6r'}
{'comment': 'Merrick Fucking Garland', 'created': '2024-11-06 15:38:11', 'submission_id': '1gkuy6r'}
{'comment': "Figure out what happened. Maybe it's as simple as an unpopular candidate as democrat candidate down ticket didn't do as bad as Harris. She was polling <2% during 2020 primaries, the party should've listened to that. Maybe it's a lot more complex. Whatever the case, the party did not learn the mistakes form 2016 or 2020. 2020 was the fluke and only happened because of Trump's terrible Covid management.\n\nBefore downvoting me, understand that I never have and never will vote for Trump. But there was a horrible mistake made. Maybe I'm wrong on what the mistake was, but something did happen. My final thoughts at the moment are, Biden should've gone with the original plan and not run for re-election. There should've been a proper primary going on. If the party were smart, they'd be looking at people within the party and the left who were saying this. TYT and many others were saying this. Those should be your pillars going forward, or risk repeating the same mistake again in 2028, assuming it even matters.", 'created': '2024-11-06 16:07:44', 'submission_id': '1gkuy6r'}
{'comment': 'What will happen to the democrats from now on is truly scary. If you guys get to have an election in 2028, expect the whitest, most conservative leaning candidate the party can offer', 'created': '2024-11-06 16:08:17', 'submission_id': '1gkuy6r'}
{'comment': "Now they'll start 2025 project and make a theocracy. we will never be able to vote again? All non christains will be hurt or killed imprisioned?", 'created': '2024-11-06 16:27:24', 'submission_id': '1gkuy6r'}
{'comment': '[removed]', 'created': '2024-11-06 11:02:39', 'submission_id': '1gkuy6r'}
{'comment': 'Really work on grassroots level with the younger generation.', 'created': '2024-11-06 15:10:37', 'submission_id': '1gkuy6r'}
{'comment': '[removed]', 'created': '2024-11-06 15:17:17', 'submission_id': '1gkuy6r'}
{'comment': 'Win voters, why democrats has so much less votes compared to last election. Trump had a bit less too, so it was just a case of keeping the same number of votes of last time.\xa0', 'created': '2024-11-06 15:21:33', 'submission_id': '1gkuy6r'}
{'comment': "Legit questions here.\n\nI know that Dems aren't going to refuse election results the way Trump demanded of Pence. At the same time, Republicans have been claiming all this time that would have been not only legal but right, and of course, Harris currently serves as the acting VP. \n\nIs there anything that can be done, outside of outright overthrowing the government?\n\nSimilarly, and a bit more realistically, Republicans also claimed that Presidents are now Kings, and of course Biden is still President. (Unless he steps down or becomes mentally incompetent, in which case it's Harris again.)\n\nGiven these crazy new and unchecked powers, what's the best we could hope for in the lame-duck period that remains?", 'created': '2024-11-06 16:23:49', 'submission_id': '1gkuy6r'}
{'comment': 'Kinda early for that question, lot of anger and feelings at play right now.', 'created': '2024-11-06 16:26:16', 'submission_id': '1gkuy6r'}
{'comment': 'Gavin Newsome 2028', 'created': '2024-11-06 16:40:56', 'submission_id': '1gkuy6r'}
{'comment': "First, do a post-mortem on why they lost. Then get the fuck off their seats and start planning for 2026 to take back the Senate. If they don't have the House, do that one too so Trump can't do shit until 2028. Only let the basic stuff like the budget through, to keep things ticking over. Hell, make him pass stuff you want if he'll do it.", 'created': '2024-11-06 16:42:03', 'submission_id': '1gkuy6r'}
{'comment': 'How do you fight a candidate that moves through a fact free universe?', 'created': '2024-11-06 17:05:41', 'submission_id': '1gkuy6r'}
{'comment': 'Come back next election with a good strong candidate who’s entire platform isn’t pushed as “I’m not trump” and come back closer to the center. I promise no one cares if it’s going to be a white or black or Spanish or Indian or Asian woman. Just make it a good candidate and things will be fine. Kamala was a terrible candidate', 'created': '2024-11-06 17:13:48', 'submission_id': '1gkuy6r'}
{'comment': 'I hope there is a next. They better have learned their lesson. They hardly had any votes swayed from Trump. They can court them all they want, but they will reliably turnout for (R).\n\nThe far left did exactly the same as they always do, instead of rallying around the closer candidate to their own ideology; decided they could fuck off on the most likely last chance to stop fascism from becoming the ruling party.', 'created': '2024-11-06 17:24:36', 'submission_id': '1gkuy6r'}
{'comment': 'Part of me feels like the answer is, “Nothing, because there won’t be any more elections after this one.”', 'created': '2024-11-06 17:25:20', 'submission_id': '1gkuy6r'}
{'comment': "I don't know but maybe hold a fucking primary next time. I'm sorry but fuck this whole process. Kamala was not the answer. I want a woman president some day but maybe just put up an old white guy since that's all the moderate motherfucks will ever vote for.", 'created': '2024-11-06 17:48:39', 'submission_id': '1gkuy6r'}
{'comment': 'Might as well just burn the whole thing down and start over starting with the leadership', 'created': '2024-11-06 18:06:21', 'submission_id': '1gkuy6r'}
{'comment': 'Were you not paying attention?\n\nThe leadership goes to prison.\n\nThe ones that fall in line get to keep their position.\n\nThe next Democratic candidate will have 0 % probability of winning.\n\nBiden had 4 years to prosecute a traitor criminal president. He didn’t.\n\nNow we pay.', 'created': '2024-11-06 18:44:20', 'submission_id': '1gkuy6r'}
{'comment': 'Some of us sit back and watch the others get what they brought upon themselves.\n\nLaziness and principal just handed over a lock on the Supreme Court for the rest of a lifetime for many.\n\nBut you go get em with the next perfect candidate.', 'created': '2024-11-06 18:52:44', 'submission_id': '1gkuy6r'}
{'comment': 'They will push further to the right given their leadership to the point where they will be indistinguishable from Republicans. Whatever happened to the New Deal-Great Society Democrats?', 'created': '2024-11-06 19:52:39', 'submission_id': '1gkuy6r'}
{'comment': 'I actually have a lot of questions about what a Trump administration is going to look like this time. Assuming he doesn’t actually try to stay in power beyond 2028, his presidency won’t be a campaign this time. Is he just going to pardon himself, further enrich himself and the rich, and ignore everything else he’s campaigned on as simple dog whistles (border, foreign policy, most social issues, etc.)?', 'created': '2024-11-06 20:33:31', 'submission_id': '1gkuy6r'}
{'comment': 'Decide if you want to be Republican Lite or the revived New Deal Democratic Party.', 'created': '2024-11-06 20:44:37', 'submission_id': '1gkuy6r'}
{'comment': "Death and internment camps. Didn't you listen?", 'created': '2024-11-06 21:02:06', 'submission_id': '1gkuy6r'}
{'comment': '1) working with swing districts Republicans to stop the worst of Project 2025\n2) ignore harm reduction, find programs to either simplify and/or enhance to improve people’s economic situations, enhanced child tax credit, school meal for every kid (no means testing) \n3) progressives with a message that they can speak to naturally and can cut through the lies, this might sound crazy but Stewart/Burr 2028 would be a 🔥 ticket.', 'created': '2024-11-06 21:42:45', 'submission_id': '1gkuy6r'}
{'comment': "Clearly misogyny reins in this electorate according to the returns it sounds like Hispanic men don't want to vote for a woman Black men don't want to vote for a woman and women don't want to vote for a woman. The latter really amazed me women not voting for reproductive health and their own rights. Finally, a lot of people simply didn't vote because of the confusion our loss.", 'created': '2024-11-06 23:48:34', 'submission_id': '1gkuy6r'}
{'comment': 'Delete all social media, never watch the news, focus on your health and spend time with family/friends. Vote every local/state election while we can.', 'created': '2024-11-07 01:02:07', 'submission_id': '1gkuy6r'}
{'comment': 'Voters felt cheated because she was selected as the candidate, rather than being elected. For all the Dems talk of “fighting for democracy” they sure didn’t practice it. She also didn’t show how she was any different than Biden policy-wise. People wanted a change because of inflation (Trump had a heavy hand in creating that inflation, but most voters think what the president does has an instant effect). Harris was seen as the status quo. We got hate and change this time.', 'created': '2024-11-07 01:08:54', 'submission_id': '1gkuy6r'}
{'comment': 'Americans need to suck it up and vote for a woman. We had a Black man for President and the world didn’t end (well for conservatives it did). \nEveryone not a MAGA conservative needs to unite behind a candidate male or female and make it happen.', 'created': '2024-11-07 01:08:57', 'submission_id': '1gkuy6r'}
{'comment': 'I think the GOP is going to take care of our next move for us. Unfortunately, many of those who voted Trump have no idea what is coming.', 'created': '2024-11-07 01:34:40', 'submission_id': '1gkuy6r'}
{'comment': 'My only joy is knowing that Biden still beat him in the popular and electoral votes. This is going to bother trump.', 'created': '2024-11-07 10:41:42', 'submission_id': '1gkuy6r'}
{'comment': "All I know is this is the very last election I'll ever vote in", 'created': '2024-11-06 12:42:49', 'submission_id': '1gkuy6r'}
{'comment': 'Pretty sure the Democratic Party will be banned. Clearly the US wants authoritarianism', 'created': '2024-11-06 15:51:42', 'submission_id': '1gkuy6r'}
{'comment': 'Finally run a popular candidate \n\nSuffer through the 4 years. \n\nEvery single thing Trump does that people don’t like they need to scream it non fucking stop from the rooftops. Don’t stop, don’t act like people will remember. Be unhinged', 'created': '2024-11-06 16:38:51', 'submission_id': '1gkuy6r'}
{'comment': 'Honestly disband the Democratic party. It’s poisoned and destroyed.', 'created': '2024-11-06 13:55:59', 'submission_id': '1gkuy6r'}
{'comment': 'AOC/buttigeg 2028', 'created': '2024-11-06 16:23:15', 'submission_id': '1gkuy6r'}
{'comment': "We need to accept the problem isn't our campaigns - it's that civil rights and democracy aren't winning items right now. That's not because we're a bad party. It's because we're dealing with a bad electorate.\n\nIt's unclear how much political power we'll have in this new environment, but the longer they stay in power the lower the likelihood we will ever (short of a war) return to power. \n\nI hope we don't abandon civil rights in the short term pursuit of power. I feel like we need to find ways to strengthen our coalitions, but watching the Israeli-Palestinian fallout push people from both sides into Trump's arms knowing he's going to let an Israeli genocide be followed by an Iranian holocaust does not give me warm fuzzies.\n\nThe Democrats' greatest strengths and weaknesses have been their broad coalitions. We truly are the big tent party. But big tents are unruly. While it protects us from lining up behind a Trump, it also prevents us from lining up behind a Harris.\n\nWe've gotten much better under both Harris and Clinton at striking back hard. Of course, because they're women, given the underlying misogyny that cost us.\n\nBut we shouldn't give up our commitment to human rights to get back into power, or there's no reason to seek power in the first place.", 'created': '2024-11-06 15:57:15', 'submission_id': '1gkuy6r'}
{'comment': 'Exactly, this has always been the case. In the debates, Kamala should’ve attacked him like he does her.\n\nIt’s childish, but we’re on a playground now', 'created': '2024-11-06 15:01:11', 'submission_id': '1gkuy6r'}
{'comment': "Trump is gonna celebrate presidential immunity in terrible ways. I'm not looking forward to it.\n\nThe GOP are experts at changing the rules and moving the goalposts.\n\nThey control the federal and supreme courts and most state AGs plus the Senate and will appoint trolls to edu, health, etc.\n\nThe next 4 years are gonna be the longest decade of my life.", 'created': '2024-11-06 21:31:37', 'submission_id': '1gkuy6r'}
{'comment': 'You mean speaker of the house Jeffries if he wins', 'created': '2024-11-06 19:22:47', 'submission_id': '1gkuy6r'}
{'comment': 'Yeah I hate to say it but the Dems need a young white guy who’s as charismatic as Trump but about progressive issues.', 'created': '2024-11-06 16:29:37', 'submission_id': '1gkuy6r'}
{'comment': "It would need to be focused. But remember, Trump's already talking about taking away broadcast licenses. And that's FCC territory, so appointees. I forget the makeup of the current board, but I wanna say it's +1 GOP. It's going to get much harder to get anti-Trump stuff on the air, because they're not going to want to run the ads.\n\nThere are other ways to communicate, but people have taken the first amendment way too much for granted.\n\nAnd it takes a decade to get a case before SCOTUS. And even then they're likely to back Trump.", 'created': '2024-11-06 16:31:21', 'submission_id': '1gkuy6r'}
{'comment': 'America saw the Republican led House and said, “let’s have that level of incompetence, but EVERYWHERE.” I’d like to think we make him a lame duck. But after this, I’ll believe it when I see it.', 'created': '2024-11-06 13:34:10', 'submission_id': '1gkuy6r'}
{'comment': "I kinda feel the same way. It's definitely a cult of personality and I don't see anyone who can take the torch. I am in Connecticut, and while Drumpf did pick up a few points in the general, all our Federal reps won pretty easily, and Dems are on pace to increse their lead in the General Assembly. The Senate was always going to be tough this year and it appears there was no ticket splitting, even if thats actually a thing. \n\nKeep calm and carry on???", 'created': '2024-11-06 13:29:03', 'submission_id': '1gkuy6r'}
{'comment': "call me a pessimist or realist, but from now on there won't be anymore free and fair elections in the US ever again", 'created': '2024-11-06 15:26:27', 'submission_id': '1gkuy6r'}
{'comment': 'I am mourning for much more than today. The damage done from his last term has barely been corrected and now they will put into place even more barriers.\n\nOur education system, which is already in shambles, is only going to become worse in the public sector and more expensive in the private. \n\nTrade wars and tariffs are about to make life much harder for anyone make less than 500k/ yr.\n\nSocial acceptance of the lgbtq community is going to decline. \n\nEnvironmental damage will increase as regulations are rolled back. \n\nWorst of all will be the laws put in place and the potential for a 6-3 conservative scotus for decades to come. \n\nThis is the first of many dark days to come.', 'created': '2024-11-06 16:13:52', 'submission_id': '1gkuy6r'}
{'comment': 'Here in PA, democrats have made big gains in non-presidential election years. It’s Trump himself that drives people to come out and vote for him.', 'created': '2024-11-06 16:13:27', 'submission_id': '1gkuy6r'}
{'comment': 'Sadly we need straight, white male candidates for national offices — and not from California.', 'created': '2024-11-06 15:07:23', 'submission_id': '1gkuy6r'}
{'comment': 'YES! Let’s keep the fighting spirit up and start mobilizing. I’m devastated but our systems are strong. Like reproductive rights, climate change, this is a multi-election, even a generational fight for progress', 'created': '2024-11-06 15:40:46', 'submission_id': '1gkuy6r'}
{'comment': "If we have elections in 2026 that are still fair. They want complete control over them. \n\nWe'll see what happens. 2026 is the hope I'm holding on to though.", 'created': '2024-11-06 15:46:14', 'submission_id': '1gkuy6r'}
{'comment': "Only if they can't implement Project 2025.", 'created': '2024-11-06 16:23:29', 'submission_id': '1gkuy6r'}
{'comment': 'If we make it', 'created': '2024-11-06 21:53:47', 'submission_id': '1gkuy6r'}
{'comment': 'Suicide today, fuck tomorrow', 'created': '2024-11-06 21:10:15', 'submission_id': '1gkuy6r'}
{'comment': 'This!! And SCOTUS has given trump free rein- not to mention they have ALL of the legislative branch projected at the moment. We have a right to be scared.', 'created': '2024-11-06 13:37:31', 'submission_id': '1gkuy6r'}
{'comment': 'We will still have elections, in the same way that Russia, Türkiye, and Hungary have elections.', 'created': '2024-11-06 15:00:30', 'submission_id': '1gkuy6r'}
{'comment': "It's not about reading books. Anyone can read a book. Our literacy rates are not the problem. Qanon people can read. What they can't do is separate fact from fiction. They can't think critically. They do not have a coherent, internally consistent way to interpret what they read, let alone one that is moral or just.\n\nThe problem is not literacy but critical thinking, which is a lot harder to teach.", 'created': '2024-11-06 18:14:48', 'submission_id': '1gkuy6r'}
{'comment': "I wouldn't be surprised if it's Trump again.", 'created': '2024-11-06 11:59:03', 'submission_id': '1gkuy6r'}
{'comment': "It'll be Trump again 100%", 'created': '2024-11-06 12:40:23', 'submission_id': '1gkuy6r'}
{'comment': 'Hear Hear!', 'created': '2024-11-06 15:21:36', 'submission_id': '1gkuy6r'}
{'comment': 'Yes absolutely.', 'created': '2024-11-06 15:46:41', 'submission_id': '1gkuy6r'}
{'comment': 'fuck no remember what happened with garland and obama', 'created': '2024-11-06 20:59:32', 'submission_id': '1gkuy6r'}
{'comment': 'As a whole, we need to battle lies and disinformation across social media. I don’t trust trump or Elon to do this faithfully\n\nI’m actually scared of the advances AI had made. I think the democrats would do well if they put some focus on this in the next election. Make sure AI doesn’t take our jobs or have it used be used to create fake contact that makes it look and sound like it actually came from you\xa0', 'created': '2024-11-06 11:17:29', 'submission_id': '1gkuy6r'}
{'comment': 'Focus on abortion, but at the state level is the best bet if they want to recover from this.\n\nPeople got to stop acting like Roe v Wade is somehow coming back. It’s never coming back. And forget about the feds getting it done. Not gonna happen. That was the issue from the beginning. Relying on one thing for abortion is a terrible idea.', 'created': '2024-11-06 11:28:37', 'submission_id': '1gkuy6r'}
{'comment': 'Part of the path forward has to be policy change and not just messaging.\n\nThe Democrats got out of step with where America is. This has happened before. \n\nIn the 1980’s the Democrats were on their heels and Reagan dominated politics. Democrats were tax and spend liberals who were soft on crime. Clinton resuscitated the party around the economy. He had policy changes and focused much more on job growth rather than social welfare spending.\n\nDemocrats have to get tougher on immigration. This really is the number one Achilles heel. If they don’t do this Republicans will have a persistent advantage for a generation. \n\nDemocrats got on the wrong side of the discussion on social issues. Some of this was pushed by Republicans. But Democrats have no ability to stop the runaway train around social progressivism. People don’t like cancel culture and they want to move more slowly on DEI and other top-down government approaches to legislate social equality. This is probably a more difficult issue for Democrats because there’s what feels like a genetic defect among Democrats to understand the pulse of American society on these issues and to move at a pace that Americans will accept. Instead the instinctive tendency is to always move faster and then to call people racist if society doesn’t just accept it.\n\nDemocrats are actually quite good on the economy. However, the decades-long transition that can’t be ignored is that Democrats went from the party of working class labor to the party of liberal elites. The people that benefited from higher education and the Internet age became Democrats, and everybody else got left behind. Economic inequality is the fundamental dividing line between the parties now, and education level is the key that determines your socio-economic class and party affiliation. Just saying Democrats want to be the working class party isn’t going to work. Its fundamental alignment is with educated people with higher paying jobs and that won’t change anytime soon.', 'created': '2024-11-06 13:40:56', 'submission_id': '1gkuy6r'}
{'comment': "The educational system is dominated by the Left. I'm not sure what you are talking about.", 'created': '2024-11-06 14:19:03', 'submission_id': '1gkuy6r'}
{'comment': '> Democrats are going to push right.\n\nThe only way that works is if they pull another party flip and go more Nazi than the Republicans.', 'created': '2024-11-06 16:36:29', 'submission_id': '1gkuy6r'}
{'comment': 'Populism, it is the only answer here. Literally nothing else.', 'created': '2024-11-06 12:27:35', 'submission_id': '1gkuy6r'}
{'comment': 'Andy Beshar or Josh Shapiro.', 'created': '2024-11-06 14:20:53', 'submission_id': '1gkuy6r'}
{'comment': 'This is the stance I want us to take too. We need to push left. This reminds me an awful lot of 2016. We really wanted to run Bernie, and they ran Hillary instead. They need to run candidates on the far left. And apparently they need to run straight, white CIS males.', 'created': '2024-11-06 20:26:56', 'submission_id': '1gkuy6r'}
{'comment': "> Get new candidates ready\n\nAnd get them out of the country with the best security money can buy.\n\nBecause there's no way they live to election day otherwise. (If elections even happen)", 'created': '2024-11-06 16:35:42', 'submission_id': '1gkuy6r'}
{'comment': '> spend the next few months analyzing what went wrong.\n\nThat\'s easy: "I will put a Republican in my cabinet."\n\nWhy bother to turn out to vote for the not-Republican, if they\'re just going to be a slightly less obviously evil Republican?', 'created': '2024-11-06 16:38:02', 'submission_id': '1gkuy6r'}
{'comment': 'to 1: Trumpists will just blame Dems though. Like that is literally their entire M.O.', 'created': '2024-11-06 18:00:58', 'submission_id': '1gkuy6r'}
{'comment': 'We need to stop with the "Democracy is dead" attitude. I understand that this hurts, a lot, but if we want to ensure the death of our republic the best way to do it is to just throw our hands up and go "Welp, we tried!" and then do nothing more.\n\nWe need to continue to fight for the things we value as Democrats - Democracy, truth, eqaulity. Peacefully protest, vote, make your voice heard, and your dissent known.\n\nThere are a lot of understandable fears over an American dictatorship, but the only thing that will make it inevitable is if we all just assume it is.', 'created': '2024-11-06 14:22:49', 'submission_id': '1gkuy6r'}
{'comment': 'came here to comment this ^', 'created': '2024-11-06 12:20:23', 'submission_id': '1gkuy6r'}
{'comment': 'Ok I’ll bite, how and why?', 'created': '2024-11-06 16:09:57', 'submission_id': '1gkuy6r'}
{'comment': 'If that is true we revolt right?', 'created': '2024-11-06 16:20:54', 'submission_id': '1gkuy6r'}
{'comment': 'The massive swing of young men and latinos to Trump is not because they wanted more left facing policy. Be serious. This election was not about policy or material conditions, it was about vibes', 'created': '2024-11-06 17:18:27', 'submission_id': '1gkuy6r'}
{'comment': 'I\'m convinced that "I will put a Republican in my cabinet" being said by a Dem presidential candidate is what killed the USA.', 'created': '2024-11-06 16:34:02', 'submission_id': '1gkuy6r'}
{'comment': '> They talk about how the GOP is Nazis, and then don\'t act as though they ARE Nazis.\n\nYeap. And then saying "I\'ll put one of those Nazis in my Cabinet" really doesn\'t do any good.', 'created': '2024-11-06 16:39:13', 'submission_id': '1gkuy6r'}
{'comment': "Disagree. \n\nI think it is being moderate that got us in this mess. I don't think we should go socialist, but start really fighting for economic policies that are pro-people. Stop playing footsy with corporations. We keep trying to have our toe in both pools, and we are getting nothing from it. \n\nI do agree that we need to not be openly progressive on social issues. The right is so good at demonizing that shit.", 'created': '2024-11-06 13:34:30', 'submission_id': '1gkuy6r'}
{'comment': 'Sadly you’re right about no more nominating women. I truly think that was the downfall here. She was a great candidate but a black/south Asian woman didn’t have that great of a chance against a white man.', 'created': '2024-11-06 13:18:26', 'submission_id': '1gkuy6r'}
{'comment': 'Conceding ground to republicans on key issues is what lost Kamala this election. Why go for Harris’s Border Security Lite when Trump gives you the real thing? Dems need to embrace true left wing populism to oppose Trump’s faux right wing populism instead of the Neoliberal politics as usual giving a shit only about what the spineless billionaires give a crap about.', 'created': '2024-11-06 16:33:37', 'submission_id': '1gkuy6r'}
{'comment': 'Running to the middle is why they lost. Trump wins because he puts of the guise of populism, neoliberal centrism doesn’t turn out voters. Most likely the Dems will continue ratcheting to the right and continue losing whilst normalizing the republicans psychotic politics', 'created': '2024-11-06 13:35:36', 'submission_id': '1gkuy6r'}
{'comment': 'Well we have some legislative seats up in 2026 so we need to focus on getting the seats we can potentially flip to Dems then focus on 2028 after that.', 'created': '2024-11-06 14:44:37', 'submission_id': '1gkuy6r'}
{'comment': 'it will take decades to clean up the mess he will create.', 'created': '2024-11-06 16:43:35', 'submission_id': '1gkuy6r'}
{'comment': "You think there'll be another election in the USA?", 'created': '2024-11-06 16:37:14', 'submission_id': '1gkuy6r'}
{'comment': 'Blaming the entirety of this loss on Harris is a mistake. Republicans won because people were willing to ignore everything piss poor about Trump, in the hopes that he will somehow lower the price of milk.', 'created': '2024-11-06 12:02:19', 'submission_id': '1gkuy6r'}
{'comment': 'Biden dropped out too late in the game for anyone they nominated to really have a chance tbh', 'created': '2024-11-06 11:32:52', 'submission_id': '1gkuy6r'}
{'comment': 'Crazy idea that I don’t support but imagine Trump wanting to abolish term limits via constitutional amendment, Dems should be supportive and then have Obama run against Trump. (This is not happening nor do I want it to)', 'created': '2024-11-06 23:21:51', 'submission_id': '1gkuy6r'}
{'comment': 'This is actually delusion if you think like this. This way of thinking is also defeatist attitude and really bad for our party moving forward.\n\nWe lost, we can’t just give up and say “welp no more elections”. Let’s stop with this.', 'created': '2024-11-06 14:48:50', 'submission_id': '1gkuy6r'}
{'comment': "Calm down. He controlled all branches for the first two years of his first election too.\n\n\nLook, it won't be so bad. Not for most people. The government is big and slow to change by design. It prevents good stuff from happening as fast as we want, yes, but it also limits how much damage someone like Trump can inflict.", 'created': '2024-11-06 13:52:07', 'submission_id': '1gkuy6r'}
{'comment': None, 'created': '2024-11-06 18:53:17', 'submission_id': '1gkuy6r'}
{'comment': 'I repeat Trump moves through a fact free universe. His retribution revenge tour I don’t know where that starts.', 'created': '2024-11-06 17:08:23', 'submission_id': '1gkuy6r'}
{'comment': 'Being unhinged doesn’t do anything. The world is not ending because we have Trump as a president.', 'created': '2024-11-06 16:41:15', 'submission_id': '1gkuy6r'}
{'comment': "We lost, and times are scary right now.. but I don't think suicide is the answer here man.. sure it looks grim now, but there's still hope for a better future.", 'created': '2024-11-06 11:08:26', 'submission_id': '1gkuy6r'}
{'comment': 'People complained Harris was too progressive. I’m not sure that will work with or without Trump.', 'created': '2024-11-07 09:08:56', 'submission_id': '1gkuy6r'}
{'comment': 'She did. In a dignified way. She called him "a disgrace" to his face, and she was utterly correct. And in a way I could sure support. But she didn\'t mince words.\n\nAgain - WE ARE NOT THE PROBLEM. The electorate is racist and misogynist. Honestly, I wonder if Buttigieg might have done better for that reason. But they\'re both excellent people and dedicated public servants. WE ARE NOT THE PROBLEM in terms of policy, but we are in terms of identity. And we can\'t give our identity up.', 'created': '2024-11-06 15:59:10', 'submission_id': '1gkuy6r'}
{'comment': "She won that debate. It's not about debates or policies. It's about she's a black woman. I know MAGA who did not like her merely for that.", 'created': '2024-11-06 16:23:02', 'submission_id': '1gkuy6r'}
{'comment': "Maybe controversial opinion, but imo the debate didn't matter. A combination of low gettable voters then and with the debate format as is, it's hard for either candidate to be trot out specifics for those 'undecided' voters. \n\nMy point is not the Dems should act childishly to match the Republicans but draw the line instead of falling in it. Their constant need to seek compromise when the other party acts unreasonably hurts them in all positions.", 'created': '2024-11-06 16:17:50', 'submission_id': '1gkuy6r'}
{'comment': 'And u fortunately, most of the voters have the intelligence level of children.', 'created': '2024-11-06 19:34:31', 'submission_id': '1gkuy6r'}
{'comment': '>\nIt’s childish, but we’re on a playground now\n\nSuch a goated line', 'created': '2024-11-07 02:58:38', 'submission_id': '1gkuy6r'}
{'comment': 'Nah. “Disgrace” is not enough. “Convicted criminal, who defamed someone under rape claims that was a best friend to Jeffrey Epstein, a child human trafficker”\n\nTHAT IS WHAT NEEDED TO BE SAID.\n\nBecause republican voters don’t even know who Jeffrey Epstein is.\n\nShe needed to pull hair. Finger nails.', 'created': '2024-11-07 05:13:44', 'submission_id': '1gkuy6r'}
{'comment': 'She should have focused on lowering gas prices and groceries while shit kicking the POS.', 'created': '2024-11-06 23:34:04', 'submission_id': '1gkuy6r'}
{'comment': 'Assuming elections are still a thing, Dems still have a chance to gain back ground in the 2026 midterms\n\nWhich is why it is imperative they figure out a unifying message fast and work effectively towards it and be ruthless', 'created': '2024-11-07 00:27:16', 'submission_id': '1gkuy6r'}
{'comment': "Him and the house Dems. Draw the line, don't toe it", 'created': '2024-11-06 19:31:23', 'submission_id': '1gkuy6r'}
{'comment': 'Also straight. If Buttigieg wasn’t gay he’d get really far.\xa0', 'created': '2024-11-06 17:58:22', 'submission_id': '1gkuy6r'}
{'comment': 'Josh Shapiro is a democratic governor in the commonwealth of Pennsylvania.', 'created': '2024-11-06 20:57:06', 'submission_id': '1gkuy6r'}
{'comment': 'I’m guessing it’ll be Shapiro', 'created': '2024-11-06 21:39:36', 'submission_id': '1gkuy6r'}
{'comment': 'I\'m not too worried about TV because things will remain on cable, which doesn\'t need a license.\n\nCBS will remain, as will ABC.\n\nGOP candidates have a history of overstepping the will of most Americans ...and Trump ran on overstepping, so its going to happen. I fully expect Trump\'s second term to be worse than the first both socially and economically and I expect him to use the military against Americans when dissent manifests.\n\nI expect courts will uphold the general principles of the first amendment, but Trump will hurt the functional protections it provides by his continuous attacks. The financial costs of people protecting their rights ...first or otherwise, is going to be very high.\n\nBasically, Americans are going to have to go through the *find out* of "f-around and find out" to get the reason they need to change.', 'created': '2024-11-06 19:14:42', 'submission_id': '1gkuy6r'}
{'comment': "You can't make him a lame duck. Sure, nothing legislatively will likely get accomplished, but he will replace Alito and Thomas. There will be FIVE YOUNG conservatives justices on the bench for the next four decades. That basically assures FIVE DECADES of conservative rule in the court, ALL appointed by Trump. An entire branch of the federal government.", 'created': '2024-11-06 15:09:47', 'submission_id': '1gkuy6r'}
{'comment': 'I think the vast majority of voters don’t pay much attention to politics or even know who their Congressman is. \n\nThe lame duck thing is interesting and I’d bet real money there will be a movement to repeal the 22nd Amendment starting immediately.', 'created': '2024-11-06 13:45:15', 'submission_id': '1gkuy6r'}
{'comment': "Its clear now that the narrative of high prop voters shifting Dem and low prop voters shifting R is true. There's no other reason why Dems did so well in 2022 but not 2024. Inflation was bad in 2022.", 'created': '2024-11-06 14:07:49', 'submission_id': '1gkuy6r'}
{'comment': "If there's one thing we can take solace in, it's that Trumpism has fallen flat on its face outside of the man himself. Just look at how his biggest imitators are received on the national level (Desantis, Geene, Gaetz, Boebert...). People generally hate them. It's ONLY Trump's celebrity that allowed him to get this far.", 'created': '2024-11-06 14:32:24', 'submission_id': '1gkuy6r'}
{'comment': 'keep calmala and carry onala', 'created': '2024-11-06 14:53:56', 'submission_id': '1gkuy6r'}
{'comment': "It's not clear how much that matters. Trump is useful to them while they dismantle the rest of the apparatus and maybe have the National Guard gun down some #BlackLivesMatter protesters to make everyone afraid and bust a few people for their OnlyFans (they want to outlaw pornography).\n\n \nOnce the fear is in place, they can replace Trump. They don't have to like the new one. If there's worry they just declare an emergency. Deadlines matter to Republicans a lot to force people in, but not so much to get people out.\n\nIn 2000, they used the certification deadline to force SCOTUS's hand. In 2020, they were ready to drag their feet indefinitely to keep Biden out.", 'created': '2024-11-06 16:15:15', 'submission_id': '1gkuy6r'}
{'comment': None, 'created': '2024-11-06 15:39:51', 'submission_id': '1gkuy6r'}
{'comment': 'I’m in PA too and so saddened by the results from my state.', 'created': '2024-11-06 16:21:11', 'submission_id': '1gkuy6r'}
{'comment': "Yes, and we already knew this after 2016 - the Democrats just didn't want to accept it. Now there's no denying it - we aren't ready for a woman as president, nor a gay man. I wish we were. If we ever get the chance to have a free and fair election again, we must focus on winning, not on making history.", 'created': '2024-11-06 18:08:39', 'submission_id': '1gkuy6r'}
{'comment': 'We still need to look at the state level game. Part of how we got here was that Karl Rove was working on Crossroads GPS in the early 2000\'s, when Democrats had forgotten about Congress and were obsessed only with the White House. We not only lost congressional seats, we lost state houses. we lost governor\'s mansions. \n\nWe probably need to build far more state-level power if we can. State legislatures or independent districting commissions draw the maps.\n\nA MORE RADICAL IDEA\n\nWe may have to, if it comes down to it, consider a new "great migration." There are MANY MANY liberals, and we could spare two million in California or New York without much trouble.\n\nIf we took a bunch of Democrats and moved them to the least populous states - AK, WY, MT, ND, SD - we could easily take over the states - if we voted together. We\'d secure state houses, governorships, congressional and senate seats - and electoral votes.\n\nWhat gives these states their outsized power is that they are disproportionately populated by Republicans.\n\nNow Democrats at this juncture would probably face violence similar to that visited on African Americans setting up prosperous areas outside the deep South. So it wouldn\'t be easy. And it would be tragic if we went through all that and people got splintered anyway.\n\nI don\'t think it\'s our easiest plan. But it is possible. And one of the guarantees of the Constitution is that we are able to move freely from state to state (the commerce clause) because it was a problem under the Articles of Confederation.', 'created': '2024-11-06 16:22:58', 'submission_id': '1gkuy6r'}
{'comment': 'Cold comfort that.', 'created': '2024-11-06 16:37:47', 'submission_id': '1gkuy6r'}
{'comment': '[removed]', 'created': '2024-11-06 12:18:04', 'submission_id': '1gkuy6r'}
{'comment': "He's going to get 25th amendmented as soon as they're settled in. His demented ass doesn't even know he's going to be swapped out for Vance.", 'created': '2024-11-06 16:23:44', 'submission_id': '1gkuy6r'}
{'comment': 'It won’t be Trump. It will be Vance.', 'created': '2024-11-06 17:37:45', 'submission_id': '1gkuy6r'}
{'comment': 'he cant run again', 'created': '2024-11-06 12:42:42', 'submission_id': '1gkuy6r'}
{'comment': 'He’s old and in shit health.', 'created': '2024-11-06 15:08:04', 'submission_id': '1gkuy6r'}
{'comment': "He'll be dead by then.", 'created': '2024-11-06 13:20:36', 'submission_id': '1gkuy6r'}
{'comment': 'Democrats hold the senate currently, McConnell couldn’t stop the Dems.', 'created': '2024-11-06 21:00:55', 'submission_id': '1gkuy6r'}
{'comment': 'I agree. We really should have had more failsafes put in place. I don’t have hope for abortion protection at the federal level for decades to come. They need to focus at the state level for the time being, but still continuously remind voters that this was a right they had before', 'created': '2024-11-06 11:31:59', 'submission_id': '1gkuy6r'}
{'comment': "The feds are far more likely to pass an abortion ban. \n\nHere's how it goes down:\n\n\\- Majority vote in the house\n\n\\- Dems attempt filibuster\n\n\\- Republicans who control the senate change the rules to kill the filibuster at least for this issue\n\n\\- Republicans majority vote\n\n\\- Trump signs it into law\n\nThe supremacy clause says the abortion ban will cancel out any state level bans. That's well-established constitutional law - foundational. There won't be much discussion. Even the lower courts aren't likely to entertain a challenge. \n\nI think people still don't realize what we're up against.", 'created': '2024-11-06 16:33:37', 'submission_id': '1gkuy6r'}
{'comment': 'The Democrats are, by that logic, on the wrong side of civil rights. I\'m a dedicated Democrat, but civil rights are a non-negotiable for me. If the party abandons civil rights in the name of political expediency again I\'m out of here. I\'m a 60 y/o gay man who spent decades backing the Democrats "for the big picture" even while they shat on the LGBT community (to be fair, it was much close to equal back then). \n\nBut this would be akin to when NOW threw out the lesbians, or when the African Americans cut loose the lesbian and gay people hoping we would get reciprocal help with civil rights.\n\nWe backed the economy with FDR, and yes, it helped get blue collar workers. And they were peeled off in racist appeals by the Reagan era. And Reagan screwed them over, bigtime. \n\nIf the Democrats go backward on civil rights we\'ve lost who we are as a party. Since 1964. Since the year I was born.\n\nI make a lot of money. I\'m a working professional, and i donate. The Dems turn on LGBTQ+ people and they won\'t see another red cent from me, or from people like me. And we can afford to be ex-pats - I\'ve already got connections and have dual citizenship in the pipeline for several years now (unlike the pipe dreamers I understand the process, the cost, and how long it takes). At some point we\'re going to have to look out for ourselves, and I\'m not casting my lot in with a group of political expedients who wants me to sit in the back of the bus again. I\'ve paid my dues. And so have my age and salary peers.', 'created': '2024-11-06 16:44:20', 'submission_id': '1gkuy6r'}
{'comment': 'I think the best two years will be a far right wing podcasters wet dream. I do believe he will round up migrants and defund the department of education. Democrats will take that center space and hope that gets them traction again', 'created': '2024-11-06 16:41:39', 'submission_id': '1gkuy6r'}
{'comment': 'Kinda need MSM and social media to do that. Right wing billionaires snatched them all up, so how can Democrats get their messaging out there?\xa0', 'created': '2024-11-06 18:03:29', 'submission_id': '1gkuy6r'}
{'comment': 'Andy Beshear is 100% the way to go. Or someone like Jeff Johnson. Newsom has the California thing working against him. I’m not sure certain people would vote for Josh Shapiro because he’s Jewish. Pete Buttigieg on paper seems great but, and I say this as a gay man, if we’re not going to elect a woman I don’t see a gay man winning either. I am sorry to say but we need a straight white guy, ideally from a southern state if you ask me.', 'created': '2024-11-06 15:44:01', 'submission_id': '1gkuy6r'}
{'comment': 'Absolutely', 'created': '2024-11-06 15:17:31', 'submission_id': '1gkuy6r'}
{'comment': 'Completely agreed', 'created': '2024-11-06 15:41:16', 'submission_id': '1gkuy6r'}
{'comment': 'I don\'t know, I\'m kind of at the "let it all burn and maybe they\'ll finally see what we were warning them about" phase right now.', 'created': '2024-11-06 15:48:57', 'submission_id': '1gkuy6r'}
{'comment': 'Yeah, I want to be cynical and I feel bad but this autocracy type stuff wouldn\'t be going over silently. Remember, Trump\'s attitude flipped even some fervently conservative figures (Cheneys anyone?). I\'m sure there would be protests from more moderate Republicans. \n\nAnd if you want to go crazier saying and wilder and claim there would be jailings and firing squads or whatever other fantastical scenario. They\'d have to kill off unfathomably large numbers of American citizens. and with who? The military is allegiant to the Constitution and not the president. Plus would they ALL really want to fight for somebody who called them "suckers and losers" ? \n\nYou cannot easily make an "autocracy" a la North Korea, in a country from people who have lived under democracy and have known better. The very foundation would collapse. \n\nAn autocratic state simply isn\'t compatible with the US. That wouldn\'t be taken sitting down', 'created': '2024-11-06 18:28:23', 'submission_id': '1gkuy6r'}
{'comment': 'Totally agree', 'created': '2024-11-06 17:49:05', 'submission_id': '1gkuy6r'}
{'comment': 'That is wishful thinking. Supreme court is compromised. This has ALWAYS been the plan. People are right to feel hopeless. They spelled out their plan for all to see and still so many gleefully voted for it.', 'created': '2024-11-06 17:58:46', 'submission_id': '1gkuy6r'}
{'comment': '> is to just throw our hands up and go "Welp, we tried!" and then do nothing more.\n\nAcknowledging that there will never be another election, and switching gears to trying to save as many lives as possible is rational at this point.\n\nElections aren\'t happening anymore. Explore other options.', 'created': '2024-11-06 16:33:09', 'submission_id': '1gkuy6r'}
{'comment': "The tricky part is that there is rarely a singular moment that enrages people enough to revolt (which is, in practical terms, but a death sentence for the rebels). Instead you have a series of small measures that don't individually raise the temperature enough, and by the time the populace has the will to resist, they no longer have the means.\n\nIf the 2026 or 2028 elections are canceled or postponed, it will likely come as such a natural part of the gradual dismantling that the populace will grumble but roll over.", 'created': '2024-11-06 17:18:43', 'submission_id': '1gkuy6r'}
{'comment': 'I mean if we wanna be real about what killed the USA it would be Ford pardoning Nixon', 'created': '2024-11-06 16:35:11', 'submission_id': '1gkuy6r'}
{'comment': 'That is true. No excitement from the left because we’re still stuck in the middle.', 'created': '2024-11-06 15:16:52', 'submission_id': '1gkuy6r'}
{'comment': 'Sure, realistically he can only do damage in next 2 years. His tarrifs and mass deportation policies are only going to increase inflation. People vote with their wallets. 2026 midterms will be a blue swing.', 'created': '2024-11-06 17:40:22', 'submission_id': '1gkuy6r'}
{'comment': 'Yes! All Trump wants from this term is pardon himself for his misdoings. He has no interest in uprooting democracy that too at 82 years old. He achieved what he wanted to achieve.', 'created': '2024-11-06 17:39:04', 'submission_id': '1gkuy6r'}
{'comment': 'It’s this. No way the energy and excitement behind Harris should be ignored. She had an uphill battle and made many of us very hopeful. She ran a great campaign and would have done a great job. Sad reality is that anyone tied in any way to the Biden WH, or probably even Biden himself, would have had a slim chance. Especially a black woman. It’s simply that people are struggling if you put the racists and bigots aside for a second, the large majority will ignore Trump being Trump because groceries were affordable back then. When groceries are still not affordable in 4 years, maybe they’ll blame finally see him for what he is.', 'created': '2024-11-06 12:21:36', 'submission_id': '1gkuy6r'}
{'comment': 'This. The people chose fascism. That’s the long and short of it.', 'created': '2024-11-06 12:11:14', 'submission_id': '1gkuy6r'}
{'comment': "he'll increase prices with his tariffs in just for years let the stupids hurt themselves to learn", 'created': '2024-11-06 12:44:33', 'submission_id': '1gkuy6r'}
{'comment': "70 percent of the country has less than $1000 in their bank account and can't afford most emergencies like a broken down car. People are desperate.", 'created': '2024-11-06 14:24:14', 'submission_id': '1gkuy6r'}
{'comment': 'Exactly', 'created': '2024-11-06 15:20:41', 'submission_id': '1gkuy6r'}
{'comment': ' Based on the results I’m not sure it would have mattered.', 'created': '2024-11-06 11:41:50', 'submission_id': '1gkuy6r'}
{'comment': 'McCain and Romney type republicans don’t exist anymore…', 'created': '2024-11-06 13:53:56', 'submission_id': '1gkuy6r'}
{'comment': 'I want to believe you. And there is a part of me that does. But consider the implications of that truth on what that means about legacy media and the political and government establishment. The legacy media has been telling us for 8 years that Donald Trump was a secret Russian asset, dictator in waiting, insurrectionist, criminal. The political elite like his former Cabinet members, the Cheneys, Romney, the generals all calling him a fascist. The government elite literally prosecuting him at the federal and state levels for numerous crimes.\n\nAnd so while I pray to God it’s just no big deal but bad policy, what am I supposed to do with all that above? I can’t believe a single thing these goddamn people have told me. They promised me that if Trump won, democracy would cease and he would become a dictator. It was either a knowing lie to manipulate the public or gullibility and incompetence on a truly historic scale.\n\nIn short, if Trump does not actually become a racist fascist dictator I will never ever in my entire life vote for the Democratic Party again.', 'created': '2024-11-06 14:45:11', 'submission_id': '1gkuy6r'}
{'comment': 'Presidents are limited to two terms. If he changes that, the people will make sure there is a management change, and do it strong.', 'created': '2024-11-07 00:21:26', 'submission_id': '1gkuy6r'}
{'comment': "It's not? I thought his people wanted to merge church and state", 'created': '2024-11-06 16:58:30', 'submission_id': '1gkuy6r'}
{'comment': 'Not a gun owner currently but that might change soon. Just for defensive purposes and to be kept at home. I am truly worried what an emboldened MAGAT might do.', 'created': '2024-11-06 11:21:24', 'submission_id': '1gkuy6r'}
{'comment': 'She ran an incredibly right wing campaign', 'created': '2024-11-07 12:19:16', 'submission_id': '1gkuy6r'}
{'comment': 'Buttigieg might pull it back some, but not enough to win. Because transphobia and homophobia are still strong among the "stupid" American electorate.\n\nGOP vote in lockstep, we don\'t.\n\nAnd never rely on woman. Very finicky voters.', 'created': '2024-11-06 16:13:02', 'submission_id': '1gkuy6r'}
{'comment': 'Racism and misogyny is exactly right. months ago, I told a friend of mine that a straight white male had to run, not Harris or Buttigieg. And I fucking hate that I was right about this.', 'created': '2024-11-06 20:19:36', 'submission_id': '1gkuy6r'}
{'comment': '52% of white women voted for Trump. In 2012, only 39% of white women voted for Obama. Tells you something about being a black candidate whether they are male or female.', 'created': '2024-11-06 17:53:18', 'submission_id': '1gkuy6r'}
{'comment': 'It is about policy, she promised more of the same when people are unhappy with the status quo, she should’ve ran on Tim Walz’s more progressive policies and let him brush aside the socialism attacks how he does best', 'created': '2024-11-06 21:43:59', 'submission_id': '1gkuy6r'}
{'comment': 'I still believe that Biden and Harris or ANYONE debating Trump needed to call him out for the sh*t he did instead of taking the high road.\n\nInjecting bleach? 34 felonies? Classified docs?\n\nYES, she lost because she is a black woman though Biden and all democrats don’t fight hard enough.', 'created': '2024-11-07 05:22:15', 'submission_id': '1gkuy6r'}
{'comment': 'I agree, but the debate is the ONLY TIME you have Republican attention. PERIOD. \n\nTHE ONLY TIME to tell the people in rural Wisconsin that Trump is a friend of a child sex trafficker.\n\nAnd……. Harris wouldn’t be making a conspiracy, cuz ITS TRUE! And Trump wouldn’t have been able to deny it on stage. \n\nTHAT is what is need by Dems.', 'created': '2024-11-07 05:18:09', 'submission_id': '1gkuy6r'}
{'comment': "I'll start:\n\nFor the people, by the people.\n\nNot billionaires, not corporations.", 'created': '2024-11-07 00:55:11', 'submission_id': '1gkuy6r'}
{'comment': "They won't just do that. They'll expand the court (which I had urged Biden to do, and this is why). I wanted Biden to expand it to bring it back to center and stability. Trump will lock in the far right forever.", 'created': '2024-11-06 16:12:43', 'submission_id': '1gkuy6r'}
{'comment': 'If they repeal the 22nd Amendment, then I really hope that Obama steps the fuck back up.', 'created': '2024-11-06 14:35:04', 'submission_id': '1gkuy6r'}
{'comment': "Right after they do the 19th, I'm sure. But don't bank on constitutional amendments. They are VERY unlikely to get repealed. 2/3 of the House. 2/3 of the Senate. THEN ratification by 3/4 of the states.\n\nThey can't really overturn the 19th amendment (yet). But women have shown they are weak and easily divided and unable to effectively wield political power. All that stepping on orange stuff and pink pussy hats turned into a bunch of rubbish. Today's women don't have anything like the grit of the suffragettes. They used to put NG tubes in them to feed them when they went on hunger strikes. THAT is grit. \n\nBut today's women puffed themselves up and made a big deal of it and then shat on themselves, basically. The numbers were bad - Harris 54-37 among all women, but +1 Trump for white women. White women are basically an entitled enemy overall. This won't be forgotten for a long time. They took the energy of the 2017 women's march and squandered it on petty infighting within two years. They went from five million marchers and no violence to making a lot of noise but not getting enough people to the polls, and then getting double crossed by their own base when they did.\n\nNo one needs to go to the trouble of repealing the 19th amendment when they can set tradwives against lesbians. They fight with each other and their political power vanishes.\n\nTrump is unlikely to survive another term. He's got dementia. Fuck it, I'll say it out loud. He already can't keep it together for long public appearances. Now it will get worse. But don't worry - JD is already planning on letting the curtains slip just enough at the right moment that he can 25th amendment him. Then the term limits thing doesn't matter. At all.\n\nVance is backed by powerful interests, and they're ruthless. But he's disciplined and smart and not a complete clown like Musk or a buffoon like Trump. He wants power. He totally flipped on Trump and lied through his teeth to get it. There's no guarantee he'd return to his former self. He probably doesn't have a former self. That was what he thought he had to say to move forward when he said it. Trump recognizes that in him - the amorality and untetheredness to reality. No one actually knows who JD really is. Probably not even him.", 'created': '2024-11-06 16:08:23', 'submission_id': '1gkuy6r'}
{'comment': 'What is needed to repeal constitutional amendments? Is it just a simple majority?', 'created': '2024-11-06 13:53:41', 'submission_id': '1gkuy6r'}
{'comment': "I'm pretty politically conscious, and I don't know who my House Reps are.", 'created': '2024-11-06 17:13:27', 'submission_id': '1gkuy6r'}
{'comment': "There is no MAGA without him. We will hear 1000 reasons why she didn't win but it came down to him. He is a once in a lifetime personality for better or worse. Mourn today and get back to work tomorrow.", 'created': '2024-11-06 14:39:45', 'submission_id': '1gkuy6r'}
{'comment': "They hate them. But they are ALL in power. They don't care if anyone likes them or not, and weirdly that seems to help them with their hateful base.", 'created': '2024-11-06 16:15:54', 'submission_id': '1gkuy6r'}
{'comment': 'We might, but social media will have even more AI fakery and foreign propaganda. They might be real elections but with an influenced public. 10s of millions are about to lose healthcare, though, so maybe that will make a difference for the midterms?', 'created': '2024-11-06 15:46:35', 'submission_id': '1gkuy6r'}
{'comment': 'I like the idea but this assumes that a fully immune president will honor the constitution.', 'created': '2024-11-06 16:28:41', 'submission_id': '1gkuy6r'}
{'comment': '[removed]', 'created': '2024-11-06 12:23:00', 'submission_id': '1gkuy6r'}
{'comment': "Not under the current rules, but I fear he'll do everything he can to stay in power as long as possible, even if that means changing the constitution.", 'created': '2024-11-06 13:11:09', 'submission_id': '1gkuy6r'}
{'comment': '“You won’t have to vote in four years!”', 'created': '2024-11-06 13:14:35', 'submission_id': '1gkuy6r'}
{'comment': "Lmfao, my previous comment got removed (not that it wasn't true, lol). You'd think he can't run again, but there's a good chance this'll be the last election in America, at least for a while.", 'created': '2024-11-06 13:13:39', 'submission_id': '1gkuy6r'}
{'comment': 'He’ll change the rules. \nHe has control of all three branches. Media too (musk, Zuck, fox, washpost/Amazon)', 'created': '2024-11-06 15:04:42', 'submission_id': '1gkuy6r'}
{'comment': 'Wait I’m from the UK - can you explain why he can’t run again after this?', 'created': '2024-11-06 15:16:45', 'submission_id': '1gkuy6r'}
{'comment': "I hoping before the new year. He isn't a healthy person. But is Vance any better?", 'created': '2024-11-06 15:47:28', 'submission_id': '1gkuy6r'}
{'comment': "It'll be Vance. They know he's demented. Thiel wanted Vance. He's his puppet/protege. They'll help Trump pick the cabinet. Read Julius Caesar by Shakespeare. That's how it will go down.", 'created': '2024-11-06 16:28:52', 'submission_id': '1gkuy6r'}
{'comment': 'As far as Roe v Wade goes, they got lazy back when it passed.\n\nIt was like they decided judges could create laws by using their magic gavel. We’ve seen it time and time again with democrats relying on the courts rather than the legislative process. They decided to try to side step the legislative process using weak legal arguments. Even RBG said it was weak legal reasoning in the beginning.', 'created': '2024-11-06 13:57:33', 'submission_id': '1gkuy6r'}
{'comment': 'The Dobbs case returned that to the states. This actually makes it HARDER for the Feds to restrict or protect it.\n\nThe federal government doesn’t have unlimited authority, even with the supremacy clause.', 'created': '2024-11-06 20:04:43', 'submission_id': '1gkuy6r'}
{'comment': 'And THAT is why these coalitions are fragile.', 'created': '2024-11-06 16:44:51', 'submission_id': '1gkuy6r'}
{'comment': 'I would say if you call this a black and white issue then there is an impasse. But it is in reality not a black and white issue no matter what one’s position is on the topic.\n\nSociety has to be ready to move in the direction of expanded civil rights. There needs to be compromise in the pace of changing whole societies to new ways of thinking. Otherwise you are only playing in a fantasy world.', 'created': '2024-11-06 16:58:35', 'submission_id': '1gkuy6r'}
{'comment': "And it won't. Because the only way to appeal to nazis is to be a nazi.", 'created': '2024-11-06 16:54:46', 'submission_id': '1gkuy6r'}
{'comment': "Organizing. Can't do it through the media. We need to do it through unions and other organizations that act. The Democratic party is obviously incapable. We need to make our own orgs and force the Dems to capitulate to us, rather than us capitulating to them. They have the power and refuse to give it up.", 'created': '2024-11-06 18:25:50', 'submission_id': '1gkuy6r'}
{'comment': 'They exploited something real though, people’s discontent/distrust with traditional media and the establishment. \n\nEven without the media, Trump won on that in 2016', 'created': '2024-11-06 23:23:44', 'submission_id': '1gkuy6r'}
{'comment': 'This is the way.', 'created': '2024-11-06 18:58:42', 'submission_id': '1gkuy6r'}
{'comment': 'The antisemitism in the Democratic Party is just unacceptable, among other things.', 'created': '2024-11-06 18:27:26', 'submission_id': '1gkuy6r'}
{'comment': 'He has full immunity and the Supreme Court stacked. \nIt’s hard to imagine how Republicans ever give up power, and that’s being optimistic that he doesn’t do something to prevent voting or rig it entirely.', 'created': '2024-11-07 01:45:55', 'submission_id': '1gkuy6r'}
{'comment': 'It\'s easy to fall into that doomerism and catastrophic thinking. But would a nation built on democracy that has known democracy really take something like that sitting down? It\'s hard to "North Korea" a place that has known freedom and democracy for 250 years. They may well even try. But there will be protest and outcry. Even some Republicans would detest the idea. Short of a civil war or mass culling it\'s not the most likely. And who would carry out that mass culling? The military Trump called "Sucks and losers" ? They uphold the Constitution, not the president.', 'created': '2024-11-06 18:38:10', 'submission_id': '1gkuy6r'}
{'comment': 'My options are to flee the country or join with my ancestors very shortly.\xa0', 'created': '2024-11-06 18:02:08', 'submission_id': '1gkuy6r'}
{'comment': 'Idk im pretty willing to die on that tbh but I served in the military to protect just that.', 'created': '2024-11-06 19:33:22', 'submission_id': '1gkuy6r'}
{'comment': 'if we make it 2 years.', 'created': '2024-11-06 18:47:26', 'submission_id': '1gkuy6r'}
{'comment': 'How will Trump’s current congress be motivated to certify a mid-term election that doesn’t work in their favor?\n\nWe know that play is very much on the table as he attempted to use it in 2021. Now there will be no safeguards, there will be no one to enforce the normal procedure at that point.', 'created': '2024-11-06 19:50:54', 'submission_id': '1gkuy6r'}
{'comment': '"You\'ll never have to vote again"', 'created': '2024-11-06 19:11:02', 'submission_id': '1gkuy6r'}
{'comment': "Voters won't vote for Democrats. Voters will vote for Democrats' policies, but won't vote for Democrats.\n\nThat's really the best summary of recent elections. We went from the GOP-led house doing multiple rounds of speaker votes and then picking up a new speaker, to a catastrophic and colossally disappointing result where even in strong Democrats holdouts the margin is thinner than it is anticipated to be.", 'created': '2024-11-06 12:48:34', 'submission_id': '1gkuy6r'}
{'comment': 'I\'m not so sure about that. The personal attacks on how Biden was old and feeble certainly increased a little over a year ago when the political race ramped up. The absolute hatred for Biden, and unfortunately "concerns over his health" made people flock towards Trump. It happened months before the first debate, and after that debate we just couldn\'t get some people that we otherwise might have swayed back because they got too sucked into the cult. \n\nIf Biden decided he was going to be a one term president and decided to hand the reigns to Harris, instead of continuing on and making undecided people feel more disillusioned because of his "frailty", we might have kept those people on our side. I think Harris was a great, qualified candidate. And I\'m not saying Biden hasn\'t been a good president- but his decision to hold out until a few months ago was the worst decision. \n\nAmerica didn\'t get enough time to \'know\' Harris- even though she was VP for 4 years I didn\'t really see much about her. And when it was time to re-introduce her to the country just a few months before the election the Trump propaganda machine already had lies in place that she was a dumb, deranged drunk. I guarantee you that there are people out there who have NEVER heard an actual speech from her, and actually believe Biden chose a "stupid" person for VP.', 'created': '2024-11-06 14:32:10', 'submission_id': '1gkuy6r'}
{'comment': None, 'created': '2024-11-07 01:16:22', 'submission_id': '1gkuy6r'}
{'comment': 'i own a shotgun and several for both hunting and home defense oklahoma has this make my day law', 'created': '2024-11-06 12:46:20', 'submission_id': '1gkuy6r'}
{'comment': "It's definitely changing for me..and that makes me sad", 'created': '2024-11-06 12:08:01', 'submission_id': '1gkuy6r'}
{'comment': 'Yep that’s why I’m a gun carrying liberal in Texas', 'created': '2024-11-06 14:30:17', 'submission_id': '1gkuy6r'}
{'comment': "No - it's not never rely on women. It's apparently not basing your entire campaign on one gender if you are a democrat. I think being a women fighting for pro-choice effectively hurt her. I think a man fighting for pro-choice would have paradoxically carried more women with him, because he could make it a feature of his campaign without basing it all around it - and then appeal to men with an appearance of understanding. Which, we need, to win men back.", 'created': '2024-11-08 03:06:04', 'submission_id': '1gkuy6r'}
{'comment': "Trump would be dumb to expand the court. That would set a precedent that whoever is in charge of the executive is in charge of the judicial. Why would you do that when you can just keep things as is and you'll maintain power for 40 years without breaking any precedents? All it would take to get democratic control of the judicial, then, would be a democratic president.\n\nThese people don't want democracy deciding government. That would be effectively what expanding the court would do.", 'created': '2024-11-06 16:31:48', 'submission_id': '1gkuy6r'}
{'comment': "They change just repeal the 22nd amendment they'd need 2/3red of the house and Senate which even if the top some every swim seat they will not have and they're certainly not getting it in the house.", 'created': '2024-11-06 19:04:00', 'submission_id': '1gkuy6r'}
{'comment': "As for Obama - let that shit go. He really was inspirational, but he was a crap president in a lot of ways. He never fought McConnell for the court seat. He let the public option and other stuff go from ACA. He never figured out what we were up against. He let McConnell bully him into not revealing the Russian interference in 2016. And he waited way too late to support Hillary Clinton, and he did a piss-poor job of shutting down Bernie Sanders, the independent who tried to change the rules for the Democrats and was a misogynist piece of shit himself.\n\nWe need someone who will not just make lofty speeches. We need someone who's actually a strategist. Obama says nice words and hopes everyone will be inspired. McConnell rode him like a pony.", 'created': '2024-11-06 16:10:57', 'submission_id': '1gkuy6r'}
{'comment': 'No, you need another whole amendment. This happened before with the 18th and 21st amendments (prohibition).', 'created': '2024-11-06 14:14:41', 'submission_id': '1gkuy6r'}
{'comment': 'Find out here: https://www.house.gov/representatives/find-your-representative', 'created': '2024-11-06 17:18:56', 'submission_id': '1gkuy6r'}
{'comment': 'This about MAGA. Once he is not around anymore they don’t really have anyone else who matches what he is to lead them.', 'created': '2024-11-06 14:48:24', 'submission_id': '1gkuy6r'}
{'comment': "There are three reasons she didn't win:\n\nracism, misogyny, and homophobia.\n\nThose are the only three that matter.", 'created': '2024-11-06 16:16:17', 'submission_id': '1gkuy6r'}
{'comment': 'Yes, but he has control of all three branches, he’ll just amend it so he can stay in power a third term. And control over media\n\nWe’re like Russia now.', 'created': '2024-11-06 14:58:55', 'submission_id': '1gkuy6r'}
{'comment': "He'll be 82 and he's already in poor physical condition. How much longer does he realistically have to be in this position?", 'created': '2024-11-06 14:02:53', 'submission_id': '1gkuy6r'}
{'comment': 'They won’t need to change the Constitution. States will try to keep him off the ballot, the Supreme Court will say only Congress can do that, Congress will go along with whatever bullshit talking point Trump insists on and will ratify.', 'created': '2024-11-06 13:53:14', 'submission_id': '1gkuy6r'}
{'comment': 'changing the constitution requires multiple states to do so', 'created': '2024-11-06 13:15:56', 'submission_id': '1gkuy6r'}
{'comment': 'term limits', 'created': '2024-11-06 18:58:32', 'submission_id': '1gkuy6r'}
{'comment': "I think Vance doesn't have the support Trump does. He doesn't have that charisma. I don't think he can pull obedience like Trump.", 'created': '2024-11-06 16:24:40', 'submission_id': '1gkuy6r'}
{'comment': 'It\'s been a mistake. But until Dobbs we\'ve never seen the courts rescind a right. That said, it was Griswold (and Roe) that started the Federalist Society on their death march to get a group on the bench that would overturn both decisions. Remember George W Bush\'s "judges shouldn\'t legislate from the bench?" That wasn\'t at all what happened. Both Roe and Griswold were standard appellate law. But the GOP didn\'t like them, and so they needed to create a rhetorical ruse to convince the public the justices had misbehaved. To be fair, Alito\'s decision in Dobbs is more akin to judicial activism than anything we\'ve seen out of the Warren, Burger, or Rehnquist courts.\n\nBut the bigger mistake (made not just by Democrats but by the Founders) is that despite all the checks and balances, the system isn\'t designed to have more than one branch of government conspire against the Constitution. Leonard Leo and the Federalist Society have done just that.', 'created': '2024-11-06 16:37:21', 'submission_id': '1gkuy6r'}
{'comment': "They don't need to appeal to Nazis though. They need to appeal to the apathetic elements of the center and center-left who voted for Biden but not for Harris.", 'created': '2024-11-06 18:57:22', 'submission_id': '1gkuy6r'}
{'comment': "It's unacceptable yes, to liberals and within the party but there are people in this country who are and at this point I don't think we can afford to give someone a reason not to vote for a Democratic presidential candidate in the future because of something like being Jewish, or gay, or a woman. As terrible a that sounds it is the truth and we need to be pragmatic moving forward.", 'created': '2024-11-06 19:03:00', 'submission_id': '1gkuy6r'}
{'comment': '> But would a nation built on democracy that has known democracy really take something like that sitting down?\n\nGermany did.\n\nIt ***can*** happen here.', 'created': '2024-11-06 19:11:24', 'submission_id': '1gkuy6r'}
{'comment': "I understand. At least Mike Pence upholded the constitution. And we all know JD Vance won't.\n\nI genuinely believe Trump only wanted 2nd term so he can evade and suppress all the criminal investigations against him. Therefore he wouldn't really go as far to not certify future election results. He has no skin in the game anymore.", 'created': '2024-11-06 20:22:39', 'submission_id': '1gkuy6r'}
{'comment': 'I genuinely think that meant:\n"I won\'t be running anymore so do whatever the fuck you want"\n\nNot that:\n"I will be your leader forever"', 'created': '2024-11-06 19:52:18', 'submission_id': '1gkuy6r'}
{'comment': 'I will respectfully disagree. If you look at the results, the admin got blamed for inflation and high prices from 3 years ago. People brought that to the voting booth. Doesn’t matter who the Dem was, a loss was going to happen.', 'created': '2024-11-06 14:39:57', 'submission_id': '1gkuy6r'}
{'comment': "That's actually a law?", 'created': '2024-11-06 13:36:22', 'submission_id': '1gkuy6r'}
{'comment': '"Go ahead punk" ?', 'created': '2024-11-06 18:43:11', 'submission_id': '1gkuy6r'}
{'comment': 'Same.', 'created': '2024-11-06 13:35:51', 'submission_id': '1gkuy6r'}
{'comment': 'lol Republicans don’t care about precedents.', 'created': '2024-11-06 19:48:08', 'submission_id': '1gkuy6r'}
{'comment': 'What we need from Obama is the brand and the win, not exactly how he operated', 'created': '2024-11-06 16:53:42', 'submission_id': '1gkuy6r'}
{'comment': 'Requiring 2/3rds of both chambers of congress or 2/3rds of states through a convention. Neither of which is happening. \n\nThat said, it’s just words on paper. If the last decade has proven anything, it’s that unless there is a structure to actually do what is written, it might as well be a fart in the wind. A majority of people don’t know and don’t care. They just want their cheap gas and groceries. Too bad they go full Idiocracy mode to get it not realizing how fucked they truly are in that regard or long term for doing so. I fully expect Brawndo to hit the market here in the next 18 months', 'created': '2024-11-06 15:02:01', 'submission_id': '1gkuy6r'}
{'comment': "You're assuming normal electoral dynamics. Those no longer apply. We will not have a normal election again for a long time, if ever.", 'created': '2024-11-06 16:16:49', 'submission_id': '1gkuy6r'}
{'comment': 'There is no roadmap. We can say what we like about MAGA but we can’t draw any conclusions about Trump or MAGA with any degree of certainty.', 'created': '2024-11-06 21:33:12', 'submission_id': '1gkuy6r'}
{'comment': "Not giving up on the house yet. They have contolled the media since the early 2010's, we just didnt notice. Just assumed everyone was seeing what we were seeing, and actually cared.", 'created': '2024-11-06 15:09:51', 'submission_id': '1gkuy6r'}
{'comment': 'He had control of all branches of government 2017-2019 and nothing got done except that tax cut.', 'created': '2024-11-06 15:32:47', 'submission_id': '1gkuy6r'}
{'comment': "Which again doesn't seem as implausible now that he's won the election and popular vote", 'created': '2024-11-06 13:16:53', 'submission_id': '1gkuy6r'}
{'comment': "Or, since two terms wasn't in the original constitution, SCOTUS rules that the change wasn't constitutional.", 'created': '2024-11-06 13:43:13', 'submission_id': '1gkuy6r'}
{'comment': '2/3 house plus 2/3 senate plus 3/4 of the states to ratify. Or a constitutional convention, which requires 3/4 of the states. Super high bar. which is good for the 19th amendment.', 'created': '2024-11-06 16:24:26', 'submission_id': '1gkuy6r'}
{'comment': 'So lets hope his own major intestine, in a desperate attempt to save humanity, leaps straight up through his neck and throttles his brain.', 'created': '2024-11-06 16:33:36', 'submission_id': '1gkuy6r'}
{'comment': "I want to agree, but reactionaries are pro-level obeyers. It's the unifying element of their whole worldview. Define an in-group, obey its leader, fear the out-group.", 'created': '2024-11-06 17:15:45', 'submission_id': '1gkuy6r'}
{'comment': 'They will probably put one of his sons', 'created': '2024-11-06 16:56:24', 'submission_id': '1gkuy6r'}
{'comment': 'There wasn’t a real basis for it other than “privacy rights”. Really? Anything could fall under that.\n\nIt was not a good use of judicial review. It went completely against historical and American traditions.\n\nThere wasn’t much of a reason other than because they said so. Again, not good use of judicial review. We can’t just create rights out of thin air. There needs to be some kind of historical or constitutional basis for it.', 'created': '2024-11-06 16:54:29', 'submission_id': '1gkuy6r'}
{'comment': "> the apathetic elements of the center\n\nThey're embarressed nazis.", 'created': '2024-11-06 19:09:59', 'submission_id': '1gkuy6r'}
{'comment': 'I’m not convinced the Republican congress wouldn’t just do it independent of Trump anyway.\n\nHope I’m wrong.', 'created': '2024-11-06 20:35:17', 'submission_id': '1gkuy6r'}
{'comment': "Then you're terrible at reading the room.", 'created': '2024-11-06 22:31:18', 'submission_id': '1gkuy6r'}
{'comment': 'look it up but in oklahoma we call it the oklahoma welcome', 'created': '2024-11-06 18:55:57', 'submission_id': '1gkuy6r'}
{'comment': "Exactly. So why would they break a precedent which would allow Democrats to in turn more easily justify also breaking it? They gain absolutely nothing.\n\nThey have gained a lot by breaking precedents when it gives them a long lasting advantage. You don't break precedents just because you can.", 'created': '2024-11-06 20:13:11', 'submission_id': '1gkuy6r'}
{'comment': 'And even after the 2/3 of both chambers there still needs to be ratification by 3/4 of the states. \n\nOne of the problems of our system is amendments are a little to hard pass, and impeachment is almost impossible.', 'created': '2024-11-06 16:11:45', 'submission_id': '1gkuy6r'}
{'comment': 'I’m not talking about elections.', 'created': '2024-11-06 16:28:20', 'submission_id': '1gkuy6r'}
{'comment': 'Yes, I’m counting on their incompetency to save us.', 'created': '2024-11-06 17:46:46', 'submission_id': '1gkuy6r'}
{'comment': '(Even the Supreme Court?)\n\n—- Ahh, and the removal of the child tax credit. Got it.\n\nSo only childless cat ladies weren’t affected', 'created': '2024-11-07 04:38:58', 'submission_id': '1gkuy6r'}
{'comment': 'And controls the Senate and House, Supreme Court too. He can change the rules.\n\nPlus project 2025 gives him control over the DOJ. FTC (television, like Sinclair), FDA, infrastructure.\n\nHe’s the Emperor', 'created': '2024-11-06 15:06:56', 'submission_id': '1gkuy6r'}
{'comment': "you act like the currently elected democrats are gonna disappear plus theres the midterms in 2 years and several state governor election include my state's elections(im not bothering with that both parties here are dumbasses) and my mother jus set itll repeat like 2016 and people will get tired of his shit and elect more dems in the mid terms", 'created': '2024-11-06 13:19:42', 'submission_id': '1gkuy6r'}
{'comment': 'Exactly. There are multiple ways around it, and he could pay off Congressmen to vote for it…. \n\nWith one call to Musk.\n\nImagine Musk giving $100m in BTC to each Congress person needed to vote for a third term. That could totally happen.\n\nIn return, Musk keeps all Govt contracts for SpaceX and Tesla, a cabinet position too.', 'created': '2024-11-06 15:12:04', 'submission_id': '1gkuy6r'}
{'comment': 'SCOTUS cannot rule constitutional amendments unconstitutional. They are part of the constitution.\n\nWe need to do some serious crash courses in basic civics and constitutional law.', 'created': '2024-11-06 16:27:32', 'submission_id': '1gkuy6r'}
{'comment': "That's fair. Yes, hopefully you are wrong. Only time will tell.", 'created': '2024-11-06 20:46:34', 'submission_id': '1gkuy6r'}
{'comment': "Let's hope for both of our sakes that I am right.", 'created': '2024-11-06 23:36:57', 'submission_id': '1gkuy6r'}
{'comment': 'Dude they don’t plan on the Democrats ever getting back power lol. That’s the point. Precedents only matter if you fear consequences. This is what happens when you win and aren’t held responsible for your actions. They will nuke the filibuster for sure if they win the House and 50/50 on expanding the court if they believe it suits them. Buckle up, it’s about to get fucked.', 'created': '2024-11-06 20:34:56', 'submission_id': '1gkuy6r'}
{'comment': "Yeah... its unfortunate it comes to that. But I am reminded of how little they got done and he seems to have surrounded himself with even more incompetent people this time. Even his executive action on say the environment was halted in the courts and the few that weren't were reversed by Biden. I mean its not like we have no reason to be worried but even if the Republicans do keep the House it will be so closely divided they're unlikely to be able the wrangle their party. I mean they control the House now and can't seem to do anything without Democratic support.", 'created': '2024-11-06 19:01:09', 'submission_id': '1gkuy6r'}
{'comment': "Yeah I think he's going to be a dictator for more than just day one", 'created': '2024-11-16 01:39:27', 'submission_id': '1gkuy6r'}
{'comment': '"I\'m not bothering with that both parties here are dumbasses." -- In the middle of this discussion about how malaise has brought us here? Really!!??! You need to re-think that. Even if it\'s choosing the lesser of two evils it\'s better than not.\n\nDemocrats neglected state-level power in the early 2000\'s, to their detriment. Karl Rove used that time to fill state houses and governors mansions via Crossroads GPS and then in 2010 they drew all the legislative maps.\n\nYou\'re also more likely to be able to get a vote in a state election that might be meaningful. Consider tapping different candidates or running yourself.', 'created': '2024-11-06 16:26:48', 'submission_id': '1gkuy6r'}
{'comment': "I know this. I don't trust the current SCOTUS though. They'll find a reason if they want to.", 'created': '2024-11-06 16:51:58', 'submission_id': '1gkuy6r'}
{'comment': 'Hope for the best, plan for the worst.', 'created': '2024-11-06 23:39:52', 'submission_id': '1gkuy6r'}
{'comment': 'I think the NYTimes made an article about how our country needs to see just how bad and the control he takes in order to wake up.\n\nHis handling of Covid was so bad, that Biden won. \n\nAssuming we have an election and he doesn’t change democracy, MAYBE our country will see it again', 'created': '2024-11-16 03:54:33', 'submission_id': '1gkuy6r'}
{'comment': ">I'm not bothering with that both parties here are dumbasses\n\nthis is oklahoma politicion trust me ik my state we are 49th in education", 'created': '2024-11-06 18:57:23', 'submission_id': '1gkuy6r'}
{'comment': "Yeah we can hope I guess. I know that Trump will always have a voter base no matter what because of how indoctrinated his followers are, but maybe some of his more moderate voters, centrists, and those who didn't vote this time around will see Trump for what he his.", 'created': '2024-11-16 03:57:16', 'submission_id': '1gkuy6r'}
{'comment': 'Affordable Care Act will vote on to be repealed by congress what will take its place?', 'created': '2024-11-06 10:50:34', 'submission_id': '1gkuovr'}
{'comment': 'https://preview.redd.it/gjzq9ep3e9zd1.jpeg?width=1285&format=pjpg&auto=webp&s=3a83df12304478f82ca9cde25d633bf3671ca08a\n\nShe’s gunna be my bestie for the next 4 years minimum', 'created': '2024-11-06 11:32:55', 'submission_id': '1gkuovr'}
{'comment': 'REST IN PEACE MY FELLOW AMERICANS', 'created': '2024-11-06 12:14:43', 'submission_id': '1gkuovr'}
{'comment': "I've lost all hope. I'm a 33 year old white male, so it doesn't look like I'd be affected by Trump. But, last night, I watched my and my wife's chances of starting a family end. It's all my wife dreams of, and I can't give that to her because I can't put her at risk. I wanted so badly to be a father. All because there are 70 million imbeciles in this country who thought that re-elececting a 78 year old radical lunatic with dementia was a better option than electing a woman of color. \n\nI'm angry, I'm embarrassed. I have no clue what to do. And the 20 million who decided that the most important election in history wasn't enough to go out to vote, I have no empathy towards you anymore. This man put me in therapy because he completely broke my mental health, and now, we're going right back. The rest of the world has every right to hate us. We just humiliated ourselves on the global stage. I'm broken. We are truly surrounded by morons.", 'created': '2024-11-06 15:59:50', 'submission_id': '1gkuovr'}
{'comment': 'thank you for writing this.', 'created': '2024-11-06 10:51:54', 'submission_id': '1gkuovr'}
{'comment': 'I just need to know what’s the best thing for me to do *now* and going forward to try to help this country.', 'created': '2024-11-06 12:12:29', 'submission_id': '1gkuovr'}
{'comment': 'We will be seen on the right side of history in history books.', 'created': '2024-11-06 15:15:46', 'submission_id': '1gkuovr'}
{'comment': "I'm done voting. This country can rot for all i care", 'created': '2024-11-06 10:48:34', 'submission_id': '1gkuovr'}
{'comment': 'Hope? You coming at us with hope rn? We just got our answer to having hope. America died last night and you coming at me with hope. Gtfo', 'created': '2024-11-06 11:56:28', 'submission_id': '1gkuovr'}
{'comment': '[removed]', 'created': '2024-11-06 11:01:35', 'submission_id': '1gkuovr'}
{'comment': "Dems establishment is actually responsible for this. Biden not stepping down early and letting primaries choose a candidate is responsible for this. Let's not blame the Republican base, let's blame ourselves. Kamala simply did not do enough to distance herself from Joe's massive unpopularity.", 'created': '2024-11-06 14:36:22', 'submission_id': '1gkuovr'}
{'comment': 'Concepts of a fucking plan... Nothing.', 'created': '2024-11-06 10:52:25', 'submission_id': '1gkuovr'}
{'comment': 'Death and debt', 'created': '2024-11-06 10:54:33', 'submission_id': '1gkuovr'}
{'comment': "Me too brother. I don't know what to do. I want to fight. I want to work to prevent the worst, but what the fuck can I do? What the fuck can we do when so much of the country is hateful like this? We are lost. I want to take my LGBT wife and get the fuck out. But this is MY COUNTRY too. I don't want these America hating pricks to take it from me. \n\nI dont know dude. I just dont know what to do. Almost every one of my friends is a group that will be targeted. I cant protect them all, I cant help them all. \n\nFuck. This.", 'created': '2024-11-06 23:15:59', 'submission_id': '1gkuovr'}
{'comment': 'Whatever you think Republicans are they are not morons. They are largely reactionaries who deny anything that intrudes on their desire to return to a mythical past when men were men and women knew their place. They don’t care whether only the wealthy will be better off as a result of the election. Musk wasn’t lying when he said a lot of people will suffer once Trump is in office. As far as what you can do, you’ve already done it by voting. However, understand that this is not the most important or critical election of all time. The elections of Abraham Lincoln in 1860 and of Franklin Roosevelt in 1932 occurred during two resoundingly more contentious periods than 2024.\n\nElecting Trump isn’t going to result in the loss of more than 600,000 American lives in the Civil War and probably not the 25% unemployment rate that FDR had to deal with. I suggest you pick up a few good books on these fraught periods covering the aftermath of the Civil War and the Jim Crow era when thousands of blacks were lynched because they wanted to vote or efforts by Republicans to appease Adolph Hitler in 1939. By reading the history of your country you will learn that there was hardly a decade that was not labeled the worst ever, which will help put election into the proper perspective. The one certainty across the country’s history is that the wealthy mostly always thrived while many others suffered.\xa0', 'created': '2024-11-06 18:18:22', 'submission_id': '1gkuovr'}
{'comment': 'Join local advocacy groups in your community', 'created': '2024-11-06 18:09:42', 'submission_id': '1gkuovr'}
{'comment': 'True but that’s little solace to me right now', 'created': '2024-11-06 15:23:47', 'submission_id': '1gkuovr'}
{'comment': "Will we? Book bans are common practice already. THEY will choose what gets taught and what doesn't. Or at least that is the goal.", 'created': '2024-11-06 23:07:26', 'submission_id': '1gkuovr'}
{'comment': 'Agreed. I will leave America as I can’t be associated with people who support this man', 'created': '2024-11-06 10:55:30', 'submission_id': '1gkuovr'}
{'comment': 'I know that’s not really the answer but my vote hasn’t mattered in North Carolina these past three elections except I guess for governor. But I agree with we might not even get to vote again.', 'created': '2024-11-06 15:16:49', 'submission_id': '1gkuovr'}
{'comment': "I'm sorry that we seem to be coping differently. I'm not just hoping, I'm getting motivated.", 'created': '2024-11-06 17:14:32', 'submission_id': '1gkuovr'}
{'comment': 'Please don’t. Trump isn’t worth it. Things may seem bleak but reality has the potential to turn out much better than what we feel in the moment. I have no hopes of trump suddenly behaving himself but I trust that his old age will catch up to him', 'created': '2024-11-06 11:09:57', 'submission_id': '1gkuovr'}
{'comment': 'The lack of turnout by younger Americans needs to be acknowledged. I’m resolved to donate monthly to the dems. I’m resolved to volunteer. I am resolved to ask myself what more can I do and what didn’t I do. \n\nIf you want to blame anyone blames the non voters in America and work with the Democratic party to figure out a way to get them engaged.', 'created': '2024-11-06 15:07:44', 'submission_id': '1gkuovr'}
{'comment': "I don't know if I've ever been this angry before. I would love to pick up and leave. I've already begun looking into how to get residence in Canada, because Trump broke me so badly in his first term, that I don't think I can do a second. I've lost all hope. I'm very hateful towards those who chose not to vote. I don't even know where to begin.", 'created': '2024-11-06 23:21:59', 'submission_id': '1gkuovr'}
{'comment': "But then it'd be Vance. That's also horrible.", 'created': '2024-11-06 13:48:20', 'submission_id': '1gkuovr'}
{'comment': "Americans don't care as much about abortion rights than about illegal immigration. Give people a reason to come out to vote and they will.", 'created': '2024-11-06 16:01:56', 'submission_id': '1gkuovr'}
{'comment': "The 'enemy from within' is the fucking people who voted for this monster and I am tired of pretending that isn't the case. It is. And they have the upper hand. I'm with you though, man. If you want to DM me feel free. Regardless we need to stick together. If you choose to leave, good on you, I'm with you. My company has a canada office, might look into that. But if not, remember, this is your country.", 'created': '2024-11-06 23:32:07', 'submission_id': '1gkuovr'}
{'comment': 'The thing is, four years is a long time, and a _lot_ of people forgot just how bad the Trump years were. It’s a tough pill to swallow, but Democrats need to regroup and prepare to be an opposition party with inspiring ideas. Trump _will_ screw up—again and again. His cabinet will be a clown show. It’s going to be tumultuous be we need to be ready not to bludgeon his voters with “I told you so’s” as much as we would like to, but to hold Trump to account every time he steps out of bounds and sell a better path to the Americans who will undoubtedly be put off by Trump, yet again. It’s not the time to lay down.', 'created': '2024-11-06 09:24:24', 'submission_id': '1gktme9'}
{'comment': 'Focus on the economy. Focus on blue collar workers. Focus on unions. Run a primary that’s open.', 'created': '2024-11-06 09:27:21', 'submission_id': '1gktme9'}
{'comment': 'Maybe jumping on the populism train is the way. If voters want simple solutions for complex problems, just pretend you have them.', 'created': '2024-11-06 10:40:15', 'submission_id': '1gktme9'}
{'comment': 'Back in 2000s and 2010s i did not think the democratic party would be approaching extinction before the republican party', 'created': '2024-11-06 10:08:05', 'submission_id': '1gktme9'}
{'comment': 'Democratic Party didn’t have the pulse of the common people. Majority were concerned about the grocery prices not abortion.', 'created': '2024-11-06 09:19:56', 'submission_id': '1gktme9'}
{'comment': '“We fight. We survive. We endure. We don’t need a reason.” - Clive Rosfield', 'created': '2024-11-06 09:54:40', 'submission_id': '1gktme9'}
{'comment': 'Wait for another financial crisis.', 'created': '2024-11-06 09:57:13', 'submission_id': '1gktme9'}
{'comment': 'How did the Democrats lose to a weaker less powerful trump with no gimmick and no platform aside from repeat 2016', 'created': '2024-11-06 09:52:44', 'submission_id': '1gktme9'}
{'comment': 'By dropping social issues out of our platform for the time being', 'created': '2024-11-06 09:16:44', 'submission_id': '1gktme9'}
{'comment': "By battling misinformation, this campaign was won by the spread of propaganda. That's really the number one issue in our country and many parts of the world right now. Everything else falls under this.", 'created': '2024-11-06 09:24:34', 'submission_id': '1gktme9'}
{'comment': 'Stop trying to appeal to "moderate Nazis." They won\'t vote for you, and trying turns off people who will.', 'created': '2024-11-06 10:40:38', 'submission_id': '1gktme9'}
{'comment': "Will we even have the right to vote in 4 years? This isn't a typical change of party win. This is going to change every facet of our life.\xa0\n\n\nHow do people take power back from a fascist government with the might of the military behind it? Dissent will be suppressed, communication will be censored.\n\n\nIt's terrifying to think that our best chance is their utter incompetence.", 'created': '2024-11-06 09:20:23', 'submission_id': '1gktme9'}
{'comment': None, 'created': '2024-11-06 09:31:19', 'submission_id': '1gktme9'}
{'comment': 'Messaging. GOP/Trump have mastered taking one or two issues and dumbing them down and then hammering the shit out of the public with it. Dems need to stop being so broad and academic. The American public needs simple messaging.', 'created': '2024-11-06 12:33:09', 'submission_id': '1gktme9'}
{'comment': 'In a weird perverse way, this takes some of the steam out of the Trump brand, since his whole point of view was that they democrats are election stealers who are destroying the country. Now that his party has gotten control of everything, everything that happens from here on out is their fault. Who are they going to be angry at now? Have fun being blamed for everything.', 'created': '2024-11-06 10:29:55', 'submission_id': '1gktme9'}
{'comment': 'I’m going to get down voted but here goes anyway: we need to identify an older white guy who is palatable to the majority and stop assuming voters (blacks, Latinos, union members, women) will automatically vote Dem.', 'created': '2024-11-06 12:14:36', 'submission_id': '1gktme9'}
{'comment': 'There\'s going to be a lot of "blame gaming". Blaming particular demographics. Blaming intrinsic qualities no one is capable of changing. Blaming messaging. Blaming third parties. Blaming institutional and structural deficiencies. Blame, responsibility, shirking responsibility, the whole gamut.\n\nThe biggest takeaway I have is the world is and continues to be a much darker place than I would hope it is. That\'s just how it is sadly, and I don\'t think that\'s ever going to improve. Scientific, medical, and societal advances will continue to be made, but us humans as large groups of people will never, ever collectively align ourselves with those advancements made by smaller communities and fabrics of life.', 'created': '2024-11-06 09:21:13', 'submission_id': '1gktme9'}
{'comment': "We don't really. Democracy depends on a voting public with at least some level of common sense.", 'created': '2024-11-06 09:29:47', 'submission_id': '1gktme9'}
{'comment': 'It seems like having a harder message on immigration, some how catering to the egos of men, and not running a woman for the top of the ticket is what America is telling us.', 'created': '2024-11-06 10:26:45', 'submission_id': '1gktme9'}
{'comment': 'Everyone can start by deactivating your X account (if you haven’t already) Apartheid Clyde is partly responsible for this', 'created': '2024-11-06 16:49:29', 'submission_id': '1gktme9'}
{'comment': "Run on straight (cisgender) white male first, play dirty (as in off the social issues for a while). Get back in power, cement it and then undo everything that GOP has done.\n\nConnect back to the voter.\n\nAvoid pushing too fast of a change for something. And don't take vote for granted.", 'created': '2024-11-06 09:55:29', 'submission_id': '1gktme9'}
{'comment': "It's going to be many many decades until we see another female nominee after this. We all need to accept that this country is sexist, bigoted and hateful and we have to play the ballgame in their ballpark, hoping we come out on top.\n\n \nWe tried to get them to play in our ballpark and got burned badly.", 'created': '2024-11-06 09:16:57', 'submission_id': '1gktme9'}
{'comment': 'I hope Joe Biden becomes a dictator before January 2025', 'created': '2024-11-06 15:12:37', 'submission_id': '1gktme9'}
{'comment': 'I hate to be *that* guy, but don’t nominate a woman. Sorry. We need 12+ years before we try again.', 'created': '2024-11-06 09:26:57', 'submission_id': '1gktme9'}
{'comment': None, 'created': '2024-11-06 09:52:08', 'submission_id': '1gktme9'}
{'comment': '(1) As timeless Clinton ‘92 slogan goes, “It’s economy, stupid.”\n\nHarris Campaign devoted way too much time on what little time they had on what unfortunately are secondary issues to vast majority of voters like democracy and abortion. I think after the first few weeks or even the debate, people who would consider those top issues already made up their mind on who to vote for, so Harris Campaign should’ve turned their attention to the issue that voters really care about: $$$.\n\nI think focus on the next 2 elections should be pinpointing any economic problem that might arise/remain under Trump Admin and attack that in a way the general public think they’re a lot worse off.\n\n(2) Another reason to avoid focus on abortion for the foreseeable time being is to regain Latino votes (~30% swing toward Trump). Many Latinos are religious and socially conservative. Best option for abortion legalization are through state referendums at this point, unfortunately but realistically.\n\n(3) Speaking of Latinos, a lot of them that I talked to really did not like Venezuelans who crossed the border and took a similar stance as Trump in basically stereotyping them as criminals (a lot of them comes over to their countries too). I really think Democrats as a whole should be really hawkish on the border and immigration enforcement while encouraging legal immigration to highly skilled workers (Republicans’ old platform).\n\n(4) People were growing numb to all of Trump’s rhetorics to a point where they’ve been basically ignore them, but Harris Campaign spent a lotta time talking about it (I mean they were low hanging fruits, but still). \n\nBottom line is that Dem needs to be significantly tough on the border issue and focus on economy without sounding too “elitist” (most people are dumb, eli5 what you will do)', 'created': '2024-11-06 10:00:11', 'submission_id': '1gktme9'}
{'comment': 'Get an Obama to run.', 'created': '2024-11-06 10:16:06', 'submission_id': '1gktme9'}
{'comment': "So the right has a a decades-long plan in place. It started with gerrymandering Texas and then a resolute plan to take over state legislatures and do the same in as many states as possible.\n\nFrom there the plan was to take control of the House and Senate, eventually the White House, and finally the Supreme Court. They engaged with fundamentalist Christians as a means of accumulating voters and reaching them in ways media cannot.\n\nAnd they've been successful at every turn. Not every election, but they have consciously addressed missteps and come back stronger.\n\nDemocrats are still practicing politics like it's the 1960s: find a candidate, run a campaign and hope to win. They have no cohesive, long term agenda like the right does. Until they consciously address this with a full plan, we can expect more nights like last night.", 'created': '2024-11-06 17:28:16', 'submission_id': '1gktme9'}
{'comment': 'There are a handful of problems that the Democratic Party really needs to work on in my opinion. \n\nA. They need to actually reconnect with the voting public. This is evident in a lot of places. Trump used propaganda yes, but it was really how spread out it was. His face was everywhere, he had rallies all the time. The people he wanted in office faces were everywhere. Media about him was literally everywhere. The Democratic Party, as much as it sickens me to say, should take a page out of that book. Send out things by mail to get your voters engaged. Hold events so that your people think their voices are heard. \n\nB. They need to get rid of the bad image that the Republicans have given them. Yes, a lot of people can say they changed how they were voting after Trump\'s last attempt, but it clearly didn\'t change enough people\'s minds. That combined with the smear campaign, our party leader being constantly seen as an aging relic and lackluster performances from our elected officials, has lead to a sort of bad image. They need to do more things to better their image and get people to think of them as a genuine second party again, instead of this bs "them vs. us" mindset that\'s been going on since 2012\n\nC. We need a strong party leader, and actual candidates. Kamala Harris did well in many respects, but the fact that her campaign was shorter then most ever are definitely did not help in this regard. We should not have put Biden up as a candidate this time around, or honestly the previous time. A little controversial, but double that for Hillary Clinton as well.\n\nD. Weak leadership. Our leaders need to grow a spine and fight back against all of this stuff that\'s been thrown at them. The Republican Party is strong because it is united, and it has leadership that is willing to fight with numbers to get what they want. The Democratic party has had a lot of infighting as of late, and does not put out a steady message. See Tim Walz saying the Electoral College needed to be disbanded, and then the campaign having him retract that statement ASAP.\n\nTo continue on with point D, I think we need to take these next four years and strengthen and unite our party. Once we do that, we find someone who is a capable leader, and ready him or her to run for president. Make him or her the public face of the party so that the public recognizes them. do work to actually improve the middle class, and blue collar workers lives. If we can do that, I think we could finally have a Golden Age of the Democratic party.', 'created': '2024-11-06 09:49:34', 'submission_id': '1gktme9'}
{'comment': 'We don’t', 'created': '2024-11-06 09:20:15', 'submission_id': '1gktme9'}
{'comment': 'If Trump dies, and JD Vance is president with a expected recession. I feel like the GOP and 2024 "the economy" Trump voters turn on him, and treat him the way they did with George Dubya Bush and Dick Cheney during their second term. I would not be surprised if JD Vance has a record low approval rating, just like Dick Cheney did at 18%.\n\nI think that\'s the best possible outcome for a guy like Josh Shapiro or Andy Beshear to win like an Obama did. I just don\'t see Vance being as beloved by the GOP like Trump, especially since he has no charisma. I feel like if Trump dies, Vance becomes George Dubya Bush 2.0 especially getting blamed for all of Trumps shit in his second term.\n\nThat was a huge reason why Obama won in 2008, even in red states like Iowa, Missouri, Indiana, North Carolina because he won alot of those 2004 "buyers remorse" Bush voters, once everyone turned on him after the 9/11 invasion of Iraq honeymoon phase wore off.\n\nAlso if Trump doesn\'t die in office, I think Vance wins the next GOP primary at least due to being the "sitting president" and especially due to Trump squashing his competition like Little Marco Rubio, Lying Ted Cruz, Meatball Ron and Nasty Nikki.', 'created': '2024-11-06 10:18:06', 'submission_id': '1gktme9'}
{'comment': 'We don’t, this was our last chance. Trump will never leave office willingly. He has the Supreme Court, The Senate, maybe the House. We lost. I don’t see we’ll have another chance, this was it.', 'created': '2024-11-06 17:44:23', 'submission_id': '1gktme9'}
{'comment': 'It was a valiant effort by my party to try to get a woman elected president. And I’m proud I voted for Kamala Harris. But America has made one thing crystal clear: We don’t want, nor are we ready, for a woman president.\n\nAnd Biden and his team and the DNC braintrusts bear some responsibility as well. It was hubris and lack of foresight not to sit Biden down early and tell him: “We are grooming someone to take your place in four years. No matter how good or bad you do, it’s time for a generational change.”\n\nSo to answer your question: The Dems have to cut the crap, adopt some populist economic policies, actually spell out an immigration and border reform policy, as well as tone it down on inclusiveness and “woke”.\n\nFor every bit of progress this country makes, there is ALWAYS a white backlash that follows. So I think the Dems should look to a younger, white male from the south or Midwest that can make this message appealing.', 'created': '2024-11-06 18:02:46', 'submission_id': '1gktme9'}
{'comment': 'I don’t know. I don’t care. I am done. I am done with my rights being on the damn ballot every 2 damn years because some politicians can’t get a damn life. I am done with having this party having to be oh so right while another party gets to do the bare minimum, and another party gets to be Jerry Springer, Morton Downey Jr., and Maury all at once. I am done. Looking for residency elsewhere.', 'created': '2024-11-06 09:56:35', 'submission_id': '1gktme9'}
{'comment': "Right now I'm thinking we just need to let things burn. Let America have what it voted for.", 'created': '2024-11-06 16:48:56', 'submission_id': '1gktme9'}
{'comment': "Learn after 8 years that people don't care about Trumps flaws and transgressions, focus on how the GOP populism is beyond fake instead of what Trump does every fifth minute.", 'created': '2024-11-06 10:44:19', 'submission_id': '1gktme9'}
{'comment': 'Our next candidate will have to be a moderate straight white man from a swing or red state.', 'created': '2024-11-06 14:00:34', 'submission_id': '1gktme9'}
{'comment': 'You wait until Trump makes it legal to have a third term and you pull a switcheroo on him by running Obama in 2028. \xa0\n\n\nEither that or quickly ask Biden to jail Trump and outlaw the whole Republican party since the Supreme Court says that is an official act that falls under presidential immunity.\n\n\n(This is my joke answer, I got a proper one too)', 'created': '2024-11-06 15:45:03', 'submission_id': '1gktme9'}
{'comment': 'Completely replace leadership at the DNC.', 'created': '2024-11-06 15:58:52', 'submission_id': '1gktme9'}
{'comment': 'It’s the ECONOMY\n\nPeople don’t care about these social issues that democrats are always harping on about. They let the republicans turn them into woke boogie men. And they also overrated how big of a deal abortion was as an issue.\n\nThey need to focus on becoming the party of middle Americans and for the working class again instead of focusing on stuff that effects the tiniest minorities of America', 'created': '2024-11-06 10:35:10', 'submission_id': '1gktme9'}
{'comment': 'Not American. But I really want to see some leaders step forward soon.', 'created': '2024-11-06 13:56:39', 'submission_id': '1gktme9'}
{'comment': None, 'created': '2024-11-06 14:44:38', 'submission_id': '1gktme9'}
{'comment': 'Don’t hand pick your candidates. It was done the last 3, possibly 4 times. Actually let the people pick. Heck it worked for the republicans. They picked the same guy 3 times. \n\nLet’s start with that.', 'created': '2024-11-06 21:26:24', 'submission_id': '1gktme9'}
{'comment': 'To beat the man you need to become the man. \n\nI am not saying start cult like MAGA. \n\nTrump began running for reelection in 2021. Democrats need to start criticizing everything Trump does as soon as he enters office. \n\nThe networks besides Fox News need to grow a pair and start putting on Democratic politicians who are criticizing Trump. \n\nThe Party needs to pick and start grooming the next candidate now. \n\nVote Democrat in every election. Vote for Democratic Mayors, school board members, Judges. The Party has to make it clear that we are going to try to vote out conservatives period in 2028. We need to turn out BIG for any Democrat running for Governor. \n\nBasically Democrats need to be a pain in Trump’s ass starting from Day 1 just like the conservatives did to Biden.', 'created': '2024-11-06 21:29:44', 'submission_id': '1gktme9'}
{'comment': "First and foremost you admit this to yourself: Harris was a good candidate. Biden is a good president. Trump ran a dirty campaign.\n\n\nThen you proceed by not holding all dem candidates to impossible standards. Then you brag about every single damn thing your party did right and forget that modesty is a word in the dictionary. Thick skulls don't understand modesty. And a solid 51% of America is thick-skulled", 'created': '2024-11-06 15:50:31', 'submission_id': '1gktme9'}
{'comment': '[removed]', 'created': '2024-11-06 09:19:15', 'submission_id': '1gktme9'}
{'comment': "We don't. We let them crash the economy. Then we let them do it more, and more till they can't do anything to fix it. Then you let it fail! Then rebuild.", 'created': '2024-11-06 16:28:21', 'submission_id': '1gktme9'}
{'comment': "I'm gonna keep it real with you. I'm in my late 40s and have voted hardcore Democrat my entire life. They have tried centrist bullshit for the past few decades, and all the reaching across the isle bullshit has brought us to this. The right so right it is sliding into authoritarianism and a left so right most countries would call them the right. If the democrats don't pull out the stops and run a for the people, grass roots, anti corporate, pro taxing the 1 percent, pro medical care for all, pro legalization canidate, I will literally never vote for them again. We needed Bernie sanders, not an unpopular former cop who had already lost one democratic primary, and didn't even bother to go through a second one. This is bullshit and what makes it worse is that was AVOIDABLE bullshit. I am not voting for them to 'hold the line against fascists' again because the facists are here and they did fuck all to stop them, period. The so called left in this country is not my friend, literally no one running seems to have my best interests at heart, and I am sure as fuck done voting for that. LITERALLY ANYONE that comes along and gets that is getting my vote. Fuck party lines, and fuck the democratic part at this point. They have failed us all.", 'created': '2024-11-06 18:10:28', 'submission_id': '1gktme9'}
{'comment': "We don't. By 2030 this country will be unrecognizable.", 'created': '2024-11-06 16:01:32', 'submission_id': '1gktme9'}
{'comment': "Stop playing into their social wedge issue bullshit and listen to constituents' real wants and needs.", 'created': '2024-11-06 17:10:03', 'submission_id': '1gktme9'}
{'comment': "When Obama won, the internet and social media weren't the insidious animals they are today. Remember, the iPhone had only been out a year at the time he first won. It's only become harder for the truth and positivity to spread every year since.", 'created': '2024-11-06 20:13:46', 'submission_id': '1gktme9'}
{'comment': "At the very least, COMMUNICATE. Americans are dumb as rocks and if you just let the Right be the only voice out there with 'the economy is terrible', 'it'll be WW3 if Harris wins' blah blah blah and NEVER reply to that, NEVER talk about what you're doing as a leader to put your narrative out there -- this is what you get. \n\n \nBiden was a great President. but he failed us completely by NEVER using the bully pulpit. Just went to the WH and shut the door and assumed we'd all figure out he was doing a good job. Only those paying very close attention to his actions understood how effective he was, but when most of America can't even name 3 branches of government you need to go out day after day and sell yourself.", 'created': '2024-11-06 20:21:03', 'submission_id': '1gktme9'}
{'comment': 'Get Government out of people’s lives, create jobs that college grad can fill', 'created': '2024-11-06 20:58:23', 'submission_id': '1gktme9'}
{'comment': 'Stop appealing to the right wing! This is a lesson, everything went off the rails after Kamala started courting the right wing and lost half the base. She should have been courting Latinos from the start.', 'created': '2024-11-06 21:22:24', 'submission_id': '1gktme9'}
{'comment': 'Dems need to become a party of the rural communities. Dems got complacent with relying on Urban areas to outvote rural counties. \n\nDems had an intelligent, charming, and great message for uniting people with Kamala (and Tim Walz is the ideal form of masculinity young men need as an example). Sadly Obama didn\'t have to go up against such a partisan government and people. He had moderates like McCain and Romney that made up the Republican side and compromises could be made. Today\'s government is so partisan that Obama wouldn\'t even be able to win and compromises are a thing of the past. \n\nIn order for Dems to win back rural communities, simple direct talk will work best. Give direct examples of "capping this will reduce egg and milk prices to this. doing this will do this to you." Dems focused too much on talking about how their plans affect the rich and corporations (while campaigning in urban areas) and not enough about it affects you this exact way out in "Bumrush, Kentucky." They need to do what Pete Buttigieg did and sit across from them and talk directly to them. Large crowds and podiums with the same speech won\'t get the job done. Get dirty, go to small town halls and talk directly to them. Get the VP doing the same in other places. Start in states she should have won like PA, MI, WI. \n\nMaybe have policies that not only phase out coal, but bring the new forms of energy to those exact towns if possible. So many small rural communities only have that type of industry keeping it alive. So maybe replace the coal mines with a solar farm, or a wind farm, or if they are near rivers, hydro power. Bring in some people who can really run it, and then give those people the ability to learn and replace that life. \n\nDems almost need to start back at square one. They need Millennial and Gen Z votes (and start work on Alpha), Boomers are who they are and won\'t change, Gen X won\'t change and you won\'t find a person to really run from that generation. The Dems need to start having the late 30 and early 40 year olds replace the 70 year olds.', 'created': '2024-11-06 21:46:49', 'submission_id': '1gktme9'}
{'comment': "Don't give up hope. We will come back stronger then before. Let's be ready for the 2026 midterms", 'created': '2024-11-06 22:06:17', 'submission_id': '1gktme9'}
{'comment': "The next candidate we run has to listen to people's concerns about the economy and declining standards of living. Democrats can't pretend that the economy is secretly doing fine and everything is ok. We need to acknowledge that people are struggling and offer solutions in order to win.", 'created': '2024-11-07 00:48:13', 'submission_id': '1gktme9'}
{'comment': 'Destroy your Tesla', 'created': '2024-11-07 03:10:57', 'submission_id': '1gktme9'}
{'comment': 'America is toast. We need to shut this broken system down.', 'created': '2024-11-06 16:02:00', 'submission_id': '1gktme9'}
{'comment': 'We resist', 'created': '2024-11-06 16:31:40', 'submission_id': '1gktme9'}
{'comment': 'We are totally fucked because a lot of people seem to think the solution would have been to vote for Putin I mean Jill Stein.\n\nhttps://preview.redd.it/y46pgr5zabzd1.jpeg?width=474&format=pjpg&auto=webp&s=a4410e6068fb8a45bc2e78d494fdf3323628a33e', 'created': '2024-11-06 17:58:42', 'submission_id': '1gktme9'}
{'comment': 'Sorry to be pessimistic, but I’m not sure we can. It may take many many years before Democrats can ever win again. This country will have to suffer under the rule of Trump before they fully realize what they have done.', 'created': '2024-11-06 18:06:47', 'submission_id': '1gktme9'}
{'comment': 'I’d say Obama isn’t what we should go back to. Plenty of failures which directly lead here.', 'created': '2024-11-06 18:39:18', 'submission_id': '1gktme9'}
{'comment': 'Believe in our democracy, that what our founders built in the constitution is stronger than any one person or party. We must continue the fight.\n\nThis means looking at ourselves, making sure we reach out to groups who don’t think we are working for them. I believe in us, we have the right message, we just need to believe and become active and fight for what we believe in: our democracy.', 'created': '2024-11-06 18:46:16', 'submission_id': '1gktme9'}
{'comment': "We done fucked up. Too many dems just didn't vote, and now we're stuck with president cheese puff for 4 years, or longer if he does what he's been saying for the last 4 years. We've made our bed, now we have to lie in it.", 'created': '2024-11-06 19:07:39', 'submission_id': '1gktme9'}
{'comment': 'Keep doing what we always have and try to appeal to the middle class. They vote against their best interests and one day that will become clear.', 'created': '2024-11-06 19:36:42', 'submission_id': '1gktme9'}
{'comment': 'Acknowledge the struggles and fears of rural voters and people who don’t look like you. Stop treating them like stupid country bumpkins and dig deep.', 'created': '2024-11-06 20:18:21', 'submission_id': '1gktme9'}
{'comment': 'Idk this time', 'created': '2024-11-06 21:36:35', 'submission_id': '1gktme9'}
{'comment': "You won't listen.", 'created': '2024-11-06 23:22:57', 'submission_id': '1gktme9'}
{'comment': 'We will never get rid of racism and sexism in this country. It’s so deeply rooted in people that they didn’t even understand what made them NOT vote for Harris even though her message was significantly different than Trump’s. \n\nPeople would rather vote against their own best interest than vote for a black/Indian WOMAN. \n\nTheir deeply rooted racism and sexism does that, not the economy, care for blue collar workers, democracy or patriotism. Their ingrained hatred of all things not white and male', 'created': '2024-11-07 00:26:44', 'submission_id': '1gktme9'}
{'comment': 'I mean the entire intellectual depth of the Democratic Party can’t be Obama. That’s a good start…', 'created': '2024-11-07 00:34:08', 'submission_id': '1gktme9'}
{'comment': 'We won’t trump will destroy the country in such a quick and fast paced fashion that hardly anyone will have enough time to even act (not that they even can thanks to the Supreme Court)', 'created': '2024-11-07 00:52:43', 'submission_id': '1gktme9'}
{'comment': 'Oddly we’ve been here before so we should know the playbook by heart, republicans will have a shit show for 24 months and lose big in the mid terms, in the mean time we kinda just need to sit back and protect as many assets as possible, some things are gone forever, but it will open the door to other things that will benefit us as a party,', 'created': '2024-11-07 00:54:02', 'submission_id': '1gktme9'}
{'comment': 'White guy as candidate', 'created': '2024-11-07 00:56:38', 'submission_id': '1gktme9'}
{'comment': "Anyone here watch wrestling in the late 90s? Back when there was the NWO assholes. Even Hulk Hogan became a bad guy (yeah I know). They were bullying other wrestlers and being obnoxious pricks. Then one night, as they were jumping some other wrestlers, the lights started flickering. Then a light in the rafters shows a man in a long dark trench coat, black hair and face paint like The Crow. Then the lights went off again. When they came back on, Sting was in the ring with a baseball bat beating the shit out of all of those bullies. We need someone who will verbally beat the shit out of these bullies. A quick witted person who isn't afraid to call them names (the leaders, not supporters). When they flail around like victims mock them right to their faces", 'created': '2024-11-07 03:05:38', 'submission_id': '1gktme9'}
{'comment': 'Nothing at this point', 'created': '2024-11-06 10:26:35', 'submission_id': '1gktme9'}
{'comment': 'There is no getting back on track.', 'created': '2024-11-06 10:08:50', 'submission_id': '1gktme9'}
{'comment': 'by being able to take criticism instead of trying to cancel people, ban people, etc\n\nyou know, the "you\'re wrong (or toxic). don\'t talk to me!"', 'created': '2024-11-06 11:09:29', 'submission_id': '1gktme9'}
{'comment': "Stop leaning right and stop talking fancy, go low for once, beat them where it hurts the most. This was the most coward campaign I've ever seen.", 'created': '2024-11-06 17:48:29', 'submission_id': '1gktme9'}
{'comment': 'Never voting again, not worth it', 'created': '2024-11-06 09:46:58', 'submission_id': '1gktme9'}
{'comment': '[removed]', 'created': '2024-11-06 09:22:45', 'submission_id': '1gktme9'}
{'comment': 'Stop calling half the country racist and sexist would be a good start.', 'created': '2024-11-06 14:48:28', 'submission_id': '1gktme9'}
{'comment': 'I would have never saw the popular vote coming, Democratic Party is hilariously dead tonight.\n\nYou have 4 years to rebuild, good luck. I can’t even begin to guess who will be the democratic candidate in 2028, tulsi would have……..OH MY GOD ITS JOE BIDEN WITH A STEEL CHAIR', 'created': '2024-11-06 09:58:08', 'submission_id': '1gktme9'}
{'comment': 'Agree. This vote was because people think he can bring back the pre-pandemic economy. He can’t, and he’s such a moron he’ll make prices much worse on top. He’s going to get punished for that at some point in the near future and we need to be ready to get in that door in 2026 in the midterms.\xa0', 'created': '2024-11-06 09:41:44', 'submission_id': '1gktme9'}
{'comment': "If anything, we need to fight harder than ever. We need to fight for democracy while we still have a democracy to fight for. Its obvious not everyone in the republican party agrees with him as of right now, so its not unreasonable to assume at least some of them won't let blatant facist policies fly. This is the best I can come up with, but in reality if he really does intend on going full facist, I'm terrified of the consequences I'll be forced to live through.\n\nThey voted for the leopards eating people's faces party. Now we get to remind them of that fact every time their golden boy does something horrible.", 'created': '2024-11-06 10:03:06', 'submission_id': '1gktme9'}
{'comment': 'Bless you for thinking there will \\*be\\* another election.', 'created': '2024-11-06 17:24:03', 'submission_id': '1gktme9'}
{'comment': "Inflation right now is about 2.4% and falling. Stock Market at all time high so again trump is picking up an economy like in '16 that is doing well for now. Lets see in '28 what the state of play is, with trump tariffs on Mexico and China of 25% to 100% playing havoc with inflation. Spikes in gas prices, food prices, shortages on the shelves will doom the GOP like they did Biden in '21 coming out of Covid and 4 years later still being felt.", 'created': '2024-11-06 11:17:53', 'submission_id': '1gktme9'}
{'comment': 'What I remember most is the overwhelming number of screw ups day after day. I mean truly overwhelming. People didn’t just forget because of apathy, but because it’s impossible to remember each water droplet coming from a firehose to the face.', 'created': '2024-11-06 21:56:08', 'submission_id': '1gktme9'}
{'comment': 'Maybe we need to wait and see what happens. If something materializes, we can latch on to it.', 'created': '2024-11-06 13:54:41', 'submission_id': '1gktme9'}
{'comment': 'Reagan ‘80: “Are you better off today than you were four years ago?”\n\nBush ‘88: “Read my lips. No new taxes.”\n\nClinton ‘92: “It’s economy, stupid.”\n\nObama ‘08: “Hope” (after Great Recession)\n\nTrump: “Make America Great Again” (have worked for common people who feel like they’re not getting ahead in life or doing worse off and wants someone to fix it, as bs as it is)\n\nIt should always, always be about economy. All other issues (abortion, democracy) are secondary, as unfortunately as it is.', 'created': '2024-11-06 10:11:13', 'submission_id': '1gktme9'}
{'comment': 'Dems did just that in the past 4 years and it didn’t fucking matter at all.', 'created': '2024-11-06 09:46:38', 'submission_id': '1gktme9'}
{'comment': 'Build out the unions even further so in 2028 we can have enough momentum to gain workers rights and protections back. God knows it’s will be even worse by then.', 'created': '2024-11-06 09:55:17', 'submission_id': '1gktme9'}
{'comment': "We literally did all of that except the primary and it didn't matter", 'created': '2024-11-06 16:29:53', 'submission_id': '1gktme9'}
{'comment': 'Trump just won in a landslide. The people want a loud asshole who is easy to make memes about. Let’s stop overestimating the intelligence of the average American voter. They don’t care about policy. They want someone who insults their enemies and cracks shitty jokes.', 'created': '2024-11-06 17:02:48', 'submission_id': '1gktme9'}
{'comment': 'Well, good news for unions… they’re not going to be around next cycle', 'created': '2024-11-06 10:28:36', 'submission_id': '1gktme9'}
{'comment': 'not like we could anticipate joes situation ffs. what if trump had a debilitating stroke in may. same thing would have happened! the gop would have nominated a replacement. get off your fucking high horse.', 'created': '2024-11-06 10:25:28', 'submission_id': '1gktme9'}
{'comment': "Move further left you're not gonna beat fascists by going further right.", 'created': '2024-11-06 16:02:39', 'submission_id': '1gktme9'}
{'comment': "Empty bullshit. COVID-19 killed millions. More people are going to die from 1/20/2025 forward. There won't be any more elections to vote on.", 'created': '2024-11-06 16:03:32', 'submission_id': '1gktme9'}
{'comment': 'Or just run A primary.', 'created': '2024-11-06 12:43:06', 'submission_id': '1gktme9'}
{'comment': 'Also we need to get an immigration plan in place that we are good with, that conservative are good with too.', 'created': '2024-11-06 18:12:57', 'submission_id': '1gktme9'}
{'comment': 'I think the lack of a primary was the killer. Had Biden stepped aside earlier and allowed an open primary, we might have avoided all of this. We might have been able to elect a popular candidate. Instead, the candidate was chosen for us, and she was deeply unpopular. Her performance in the 2020 primaries should have been enough to tell us she wasn’t a winner on the national stage.', 'created': '2024-11-06 20:35:24', 'submission_id': '1gktme9'}
{'comment': "Dems are too fucking stupid to understand this and now y'all have fucked the global left for decades to come. Congratulations.", 'created': '2024-11-07 02:45:48', 'submission_id': '1gktme9'}
{'comment': 'That is how they got Brexit to pass - simple "Take Back Control". Simple message no complexity of European Foreign Agricultural programs but dumb down for everyone.', 'created': '2024-11-06 11:40:03', 'submission_id': '1gktme9'}
{'comment': 'There’s such an easy group of people to start directing populist anger at that also happens to be true and in bounds and the messaging would resonate with so many fucking people, the billionaire class, but unfortunately they are also their donors so. \n\nIgnoring class politics has gotten us here.', 'created': '2024-11-06 22:48:05', 'submission_id': '1gktme9'}
{'comment': 'The republican party pretty much is extinct. MAGA has overtaken it. The GOP of old is dead.', 'created': '2024-11-06 11:58:42', 'submission_id': '1gktme9'}
{'comment': 'I feel like the GOP is going to go through the same thing we did after Obama or they did after Dubya, where they won\'t have anyone built up. Especially since Trump squashed them all like "Meatball Ron" or "Nasty Nicki".\n\nThe next Democratic Presidental candidate like a Josh Shapiro or Andy Beshear is most likely going to beat JD Vance if Trump dies in office. I don\'t see him being a very popular president, especially when he runs for re election. JD Vance feels like he will get the Bush treatment where the GOP turns on him, and won\'t treat him like Trump. Vance will absolutely get all the flack from Trump\'s shit, especially a failing economy. And he doesn\'t have the charisma or devoted following to get away with that.', 'created': '2024-11-06 10:10:50', 'submission_id': '1gktme9'}
{'comment': "Great. Fascism isn't known for creating thriving middle classes.", 'created': '2024-11-06 09:25:33', 'submission_id': '1gktme9'}
{'comment': "And it's so hard to deal with that one, because you can't actually *do* much. As bad as inflation is, *deflation* is worse.", 'created': '2024-11-06 17:29:44', 'submission_id': '1gktme9'}
{'comment': "You right this morning when I saw Trulp had won my first thought went to grocery prices...not abortion. I'm married if my wife gets pregnant it'll just mean we have a 2nd kid an abortion wouldn't be an option for us (im pro choice fyi)\n\nand i imagine most families are like that\n\nBut grocery prices piss me off", 'created': '2024-11-06 18:15:01', 'submission_id': '1gktme9'}
{'comment': None, 'created': '2024-11-06 09:23:35', 'submission_id': '1gktme9'}
{'comment': "won't have to wait long", 'created': '2024-11-06 10:03:19', 'submission_id': '1gktme9'}
{'comment': 'fascism & misinformation', 'created': '2024-11-06 13:59:20', 'submission_id': '1gktme9'}
{'comment': 'Because our country is still misogynistic, sexist, under/uneducated, and racist.', 'created': '2024-11-06 10:01:26', 'submission_id': '1gktme9'}
{'comment': "It didn't help that a person could read a lot of mainstream political coverage and legitimately have no idea what Trump was actually saying.", 'created': '2024-11-06 17:32:01', 'submission_id': '1gktme9'}
{'comment': "Yup, it's time to become the labor and union party again. Time to knock on doors in rural America.", 'created': '2024-11-06 09:20:28', 'submission_id': '1gktme9'}
{'comment': None, 'created': '2024-11-06 09:56:34', 'submission_id': '1gktme9'}
{'comment': 'Great answer. You guys have lost the populist vote you once controlled. (Outside view from a Canadian btw so didn’t vote)', 'created': '2024-11-06 09:30:35', 'submission_id': '1gktme9'}
{'comment': 'Thing like abortion trans right are health care are important I agree that sometimes the social issue become to touchy for narrow minded people and as democrat I am much more of a social democrat/ socialist than I am a liberal but I don’t think we can stop fighting for me People', 'created': '2024-11-06 09:20:14', 'submission_id': '1gktme9'}
{'comment': "Agreed stay away from LGBTQ rights. Im saying don't support them hut don't make them a focus", 'created': '2024-11-06 18:15:43', 'submission_id': '1gktme9'}
{'comment': 'The Trump supporters were fed a constant stream of misinformation, outright lies, and propaganda on social media and Fox News. They lived in an alternate reality where truth and facts could not break through. How can you win over someone who doesn’t acknowledge objective facts? It’s a hopeless fight.', 'created': '2024-11-07 00:45:47', 'submission_id': '1gktme9'}
{'comment': 'Wait, so who does Nick Fuentes support now?', 'created': '2024-11-06 11:36:09', 'submission_id': '1gktme9'}
{'comment': "I hadn't even considered the power of the US military, but you're right and that scares me. Our Second Amendment protections pale in comparison to the weapons capabilities of the US Military.\n\nWe're screwed.", 'created': '2024-11-06 09:34:19', 'submission_id': '1gktme9'}
{'comment': "he tried a coup once, as incompetent as he is the forces behind him aren't going to fail next time...he's gonna drop dead soon from too many big macs and then it's dictator Vance as Elon/Theil/Putin's puppet.", 'created': '2024-11-06 10:15:18', 'submission_id': '1gktme9'}
{'comment': "We'll have Midterms in two years and another Presidential election in four 👍", 'created': '2024-11-06 09:44:45', 'submission_id': '1gktme9'}
{'comment': 'he was great and so was Biden/Harris but our media is 100% owned by the oligarchs who love Trump. That media took down Biden in a matter of weeks and could have done the same to Trump whose brain is like swiss-cheese at this point.', 'created': '2024-11-06 10:07:50', 'submission_id': '1gktme9'}
{'comment': 'Even though the Democratic party shit the bed, I guarantee Trumps second term goes the way of George Dubya Bush\'s second term. There will be alot of "buyers remorse" economy voters, just like there was after 2004 for Bush. Vance is going to get all the blame, and none of the glory from Trump.\n\nThe next Democratic Presidental candidate is going to have an easier opponent against a unpopular Vance, especially if Trump dies in office.\n\nVance doesn\'t have the charisma or cult following as Trump, he will get all the blame and negativity for everything during Trump\'s second term.', 'created': '2024-11-06 10:32:04', 'submission_id': '1gktme9'}
{'comment': "The one silver lining to this fucking hurricane we're living in. Republicans are going to see what its like living through a republican supermajority. We'll see how much they like voting for the leopards eating people's faces party after they get their faces eaten.", 'created': '2024-11-06 10:50:02', 'submission_id': '1gktme9'}
{'comment': 'This.\n\nI was trying to figure out how the hell a democrat won nc governor and then I looked at the race of his opponent.', 'created': '2024-11-06 13:06:18', 'submission_id': '1gktme9'}
{'comment': 'I mean we are about to lose the popular vote, so a massive bit of blame is to go around. The Dems need to study the shit out of this and get their shit together.', 'created': '2024-11-06 09:59:57', 'submission_id': '1gktme9'}
{'comment': 'Fear and anger are powerful motivators that overwhelm rational thought. \n\nThe solution isn’t giving up, it’s combatting those emotions. Which can’t happen at the national level.', 'created': '2024-11-06 13:44:10', 'submission_id': '1gktme9'}
{'comment': "So you would run Gay Pete Buttigieg with his unpronounceable name and his husband with two adopted babies as the face of the Dem party in '28?", 'created': '2024-11-06 11:35:44', 'submission_id': '1gktme9'}
{'comment': '>\xa0We all need to accept that this country is sexist, bigoted and hateful\xa0\n\nNot only that, we have to work not to change it. It won’t change. Left libertarianism is the way to go. Don’t thread on people, they’ll just continue to be assholes and you can’t change them. At this point all that matters is power.\xa0', 'created': '2024-11-06 09:39:28', 'submission_id': '1gktme9'}
{'comment': 'Keep calling the voters names and see how that goes. What’s needed is a drastic refocusing of the party on people’s actual needs and priorities. Constantly insisting that people must be hateful and bigoted when they don’t vote the right way is not the solution. (And btw I hate Trump with all my heart. Not saying this as a supporter of his whatsoever.)', 'created': '2024-11-06 09:40:37', 'submission_id': '1gktme9'}
{'comment': 'Have you considered the fact that the 2 female candidates weren’t the best choices for the democrat party? Hillary was out of touch with reality and Kamala was unlikable to the common people. Not everything is sexism or bigotry and the fact that the democrat party cries sexism, racism, and bigotry everytime someone has a different opinion is what cost the dems this election.', 'created': '2024-11-06 09:25:42', 'submission_id': '1gktme9'}
{'comment': 'Tulsi 2028 baby', 'created': '2024-11-06 09:32:27', 'submission_id': '1gktme9'}
{'comment': 'Yup! Biden has 2.5 months and immunity. Go crazy!', 'created': '2024-11-06 16:02:48', 'submission_id': '1gktme9'}
{'comment': "I didn't think she'd ever beat a Romney, or a McCain. I did think she'd beat a convicted racist stumbling felon with dementia. Lesson learned.", 'created': '2024-11-06 09:34:13', 'submission_id': '1gktme9'}
{'comment': 'Yeah, I was really worried about this when she was nominated, but there seemed to be so much momentum behind her, so I held out hope that *maybe* this time was different. I hope the US gets a woman president someday, but nominating a woman seems to be a losing strategy.', 'created': '2024-11-06 09:54:21', 'submission_id': '1gktme9'}
{'comment': "Nope. I don't see a woman ever being nominated again.\n\nBut then again, I don't see us ever being able to vote again, so...\xa0", 'created': '2024-11-06 09:47:29', 'submission_id': '1gktme9'}
{'comment': 'I was optimistic that the Trump campaign being such a colossal shit show would outweigh the amount of people who weren’t going to vote for a woman of color. It’s clear I was wrong there.\n\nThe Dems need to find a good looking, straight, white man for 2028 and fast. We need to start being way more cynical about the heights the electorate is capable of rising to… no floor is too low for them.', 'created': '2024-11-06 20:49:09', 'submission_id': '1gktme9'}
{'comment': 'WTF Obama won twice. Dafuq u talking about.', 'created': '2024-11-06 10:34:20', 'submission_id': '1gktme9'}
{'comment': '> he won because the economy crashed,\n\nGeorge Bush was hitting record low approvals before the economy crashed. The results of the war in Iraq were becoming clear by the end of his term and he still had not found Osama Bin Laden.', 'created': '2024-11-06 12:53:11', 'submission_id': '1gktme9'}
{'comment': 'so the geniuses voted for the people who stopped the dems from doing all the good stuff.', 'created': '2024-11-06 10:04:34', 'submission_id': '1gktme9'}
{'comment': '>Bottom line is that Dem needs to be significantly tough on the border issue and focus on economy\n\nNo. The bottom line is that propaganda and lies now own US politics. The US Constitution just failed, and democracy died.', 'created': '2024-11-06 11:00:54', 'submission_id': '1gktme9'}
{'comment': 'No incumbent was going to survive the last four years and economically what it did to America.', 'created': '2024-11-06 11:37:21', 'submission_id': '1gktme9'}
{'comment': "Republicans wish for the repeal of the 22nd Amendment so Trump can run for a third term, and a monkey's paw curls a fingers.", 'created': '2024-11-06 10:42:05', 'submission_id': '1gktme9'}
{'comment': 'We need to go back to the idea that “all politics is local”\n\nTake a page from moms for liberty, federalist society, and the tea party movement. Get people on school boards, get young lawyers in the pipeline during law school. Focus on small local races. \n\nBuild up the politicians from the ground. Strengthen county level party organizations, especially in red states.', 'created': '2024-11-06 13:39:12', 'submission_id': '1gktme9'}
{'comment': 'Alternatively, they invoke the 25th amendment, citing an obvious decline in health.', 'created': '2024-11-06 10:46:22', 'submission_id': '1gktme9'}
{'comment': 'Are you serious? None of the Americans I have heard saying that in 2016 had actually moved. Some immigrants moved because they were thrown out of the country. I have never seen one single person deliberately chose to leave the US when they are able to stay. Not even one. Not even the ones with F1 visa or H1b visas.\xa0', 'created': '2024-11-06 11:01:40', 'submission_id': '1gktme9'}
{'comment': "hate to say it but until trump's dies GOP will hold on to now it looks like the popular vote in America.", 'created': '2024-11-06 11:42:55', 'submission_id': '1gktme9'}
{'comment': "We can still work to support these things but they can't be our primary focus with the way this is going. Social issues are important and need to be addressed, but I think it can wait until you're in office to actually do that. Till then the voters clearly want to hear about the economy, so give 'em what they want.", 'created': '2024-11-06 10:52:07', 'submission_id': '1gktme9'}
{'comment': "There likely won't be another election anyway.", 'created': '2024-11-06 09:55:42', 'submission_id': '1gktme9'}
{'comment': 'Wrong mindset here.', 'created': '2024-11-06 09:57:46', 'submission_id': '1gktme9'}
{'comment': 'Thats the opposite of what we need to do', 'created': '2024-11-06 10:27:06', 'submission_id': '1gktme9'}
{'comment': "We need to fight back, there are millions of us who did not vote who could have made a difference if they actually got off their ass to vote, this is the wrong mindset, times look grim now.. but I hope we still have elections and this isn't a total shit-show.", 'created': '2024-11-06 11:05:51', 'submission_id': '1gktme9'}
{'comment': 'Because I was lulled into believing she had genuine appeal', 'created': '2024-11-06 09:29:23', 'submission_id': '1gktme9'}
{'comment': 'Yeah can we have him run again at 85 please? For real though, i just hope we actually HAVE those four years to restructure, and that the ones doing the running actually learn from what happened this election.', 'created': '2024-11-06 10:27:00', 'submission_id': '1gktme9'}
{'comment': 'Pete Buttigieg is the man!', 'created': '2024-11-06 11:43:43', 'submission_id': '1gktme9'}
{'comment': '>I would have never saw the popular vote coming, Democratic Party is hilariously dead tonight.\n\nNo. Democracy is dead in the US, and the US Constitution just failed', 'created': '2024-11-06 10:57:41', 'submission_id': '1gktme9'}
{'comment': "Yup it's why he won. People think we will get 2016 to 2019 back \n\nWe wont", 'created': '2024-11-06 18:24:40', 'submission_id': '1gktme9'}
{'comment': "Do you really think the majority of Americans really want a democracy? I still see +30-35% of people say openly they are ok with a form of Autocratic authority if the price of eggs is at '20 levels.", 'created': '2024-11-06 11:19:34', 'submission_id': '1gktme9'}
{'comment': 'I believe there are four Republican senators and two republicans in the house that have a history of opposing him in some way', 'created': '2024-11-07 02:05:40', 'submission_id': '1gktme9'}
{'comment': "The Irony is the economy is roaring, it's inflation that is bad, and Drumpf is just as responsible as Biden for causing that. Trump was partly responsible for the causing inflation and ran on fixing it. Lol", 'created': '2024-11-06 10:41:26', 'submission_id': '1gktme9'}
{'comment': 'The irony is that her campaign focused plenty on the economy. She highlighted the strong GDP growth, low unemployment, wage growth, and all time high stock market during the Biden years. She released plans to lower prices of certain types of goods and address the housing shortage while continuing the strong aspects of the economy.\n\nThe media and discussions on social media chose to focus more on the other stuff. I think that’s the lesson to be learned from this. With the influence social media has on politics these days, we all have to be aware that what we choose to talk about as a voting bloc may not be the same as what the rest of the electorate will be swayed by.', 'created': '2024-11-06 17:43:00', 'submission_id': '1gktme9'}
{'comment': 'No party was going to survive Covid-19 mess because of the economic mess it left behind. Majority of people felt they had fallen behind over last 4 years and looked to someone to tell them "Ill fix it for you" and trump is their hope.', 'created': '2024-11-06 10:52:53', 'submission_id': '1gktme9'}
{'comment': "God, I hated it when Trump stole Reagan's line. Our country is better off now than it was four years ago when he let COVID run wild.", 'created': '2024-11-06 21:39:34', 'submission_id': '1gktme9'}
{'comment': 'It’s secondary to everyone except the people watching their loved ones die due to lack of competent healthcare. And the. Having their supposed countrymen shrug their shoulders and tell them to suck it up because eggs are expensive.', 'created': '2024-11-06 17:02:26', 'submission_id': '1gktme9'}
{'comment': 'She was the VP of the most pro-Union President in any of our lifetimes.', 'created': '2024-11-06 10:09:06', 'submission_id': '1gktme9'}
{'comment': "Yes, that's because Republicans have got billions of dollars worth of dark money funneled through social media propaganda algorithms in order to ensure they have total control of the blue collar economic populist narrative.\n\nWhatever tireless real life educating and organizing democrats do on the ground in communities will be easily drowned out by a torrent of endless right wing shit.", 'created': '2024-11-06 10:56:49', 'submission_id': '1gktme9'}
{'comment': 'Dems tried to do everything policy wise but let’s not pretend they have been running a focused economic message. The overwhelming message against rump for 10 years has been about his anti-democratic ideations and his personality. Remember 2012, the Obama campaign was laser focused on Romney being an out of touch rich guy enacting policies for out of touch rich guys. It seems we have completely forgotten that playbook because we get distracted by Trumps bullshit', 'created': '2024-11-06 17:50:50', 'submission_id': '1gktme9'}
{'comment': 'It’s because people are fucking stupid and don’t even remotely understand what our government does, let alone what the President actually does. \n\nAnd you’re absolutely correct. Dems *did* do all of that. And did it pretty well. But what they didn’t do was control that narrative very effectively. \n\nThe Dems are absolutely terrible at messaging. They always wait for Republicans to frame the narrative, and then their entire campaign is spent responding to that narrative. \n\nWhat can the Dems do to get back on track? Grow some fucking balls, tell everyone how fucking great your shit is when you pass something real, and go for the jugular on Republicans all the time. Don’t let them be the party of “the economy”, because they aren’t now and haven’t been for a very, very long time.', 'created': '2024-11-06 20:05:01', 'submission_id': '1gktme9'}
{'comment': 'well the unions are gone now my friend.', 'created': '2024-11-06 10:27:26', 'submission_id': '1gktme9'}
{'comment': 'We can only hope that trump means it that Project2025 is not part of his agenda .\n\n \n"Project 2025 further recommends that workers and bosses agree to extend the overtime threshold to a period of two weeks or one month. The policy would\xa0[empower](https://tomdispatch.com/republicans-have-plans-for-working-people/)\xa0management to overload busy weeks with extra-long shifts and take advantage of slow periods through under-scheduling — effectively eliminating overtime altogether.\xa0"', 'created': '2024-11-06 10:54:25', 'submission_id': '1gktme9'}
{'comment': 'Yup! Dems use complex “DC” messaging. GOP uses small town messaging that’s easy to digest. That has to change.', 'created': '2024-11-06 16:04:34', 'submission_id': '1gktme9'}
{'comment': 'Unlike the usual suspects they are pretty good at tricking average people that they can totally become like them - so hating on them is like hating on success. The way the right abused "elites" for their purposes is pretty smart and could be the better target.', 'created': '2024-11-06 22:55:27', 'submission_id': '1gktme9'}
{'comment': 'This i agree with', 'created': '2024-11-06 12:13:49', 'submission_id': '1gktme9'}
{'comment': 'Except Dem donors don’t control so much of the media like the right does. And not just the mainstream media. They control social media and Sinclair controls most of the local tv stations that are more trusted than national media. We’re fucked.', 'created': '2024-11-06 10:31:10', 'submission_id': '1gktme9'}
{'comment': 'in fascism there are two classes. the poor and the uber rich. there is no inbetween.', 'created': '2024-11-06 10:23:12', 'submission_id': '1gktme9'}
{'comment': None, 'created': '2024-11-06 09:53:54', 'submission_id': '1gktme9'}
{'comment': 'Dude we have already lost it. It is time to be patient and learn.\xa0', 'created': '2024-11-06 10:41:29', 'submission_id': '1gktme9'}
{'comment': 'People will be happy with .99c tacos in sacrifice of some human rights.', 'created': '2024-11-06 10:56:50', 'submission_id': '1gktme9'}
{'comment': 'People don’t care, they’re just trying to survive', 'created': '2024-11-06 16:28:54', 'submission_id': '1gktme9'}
{'comment': 'Man that word is so overrused. Crazy', 'created': '2024-11-06 09:32:01', 'submission_id': '1gktme9'}
{'comment': 'I’m not saying you are wrong… but when you say “people I’ve talked to…” am I right to assume these people vote the same way as you? I think we can plainly see in all the red on the map that people’s feelings on economic issues blew everything else out of the water', 'created': '2024-11-06 09:27:20', 'submission_id': '1gktme9'}
{'comment': 'Propaganda, media control by the right, tiktok brainwashing and attention deficits.', 'created': '2024-11-06 19:25:01', 'submission_id': '1gktme9'}
{'comment': 'And voter suppression, at least in my state.', 'created': '2024-11-06 13:12:45', 'submission_id': '1gktme9'}
{'comment': 'He had no plan yet he won. My neighbor voted for him because he thought trump would solve our money problems', 'created': '2024-11-06 17:33:12', 'submission_id': '1gktme9'}
{'comment': 'Completely agree, they are winning on populism', 'created': '2024-11-06 09:23:16', 'submission_id': '1gktme9'}
{'comment': 'I agree let’s shift towards European socialism as the foundation with American capitalistic ideals to find a good medium of American capitalism and European socialism and make that are base', 'created': '2024-11-06 09:22:33', 'submission_id': '1gktme9'}
{'comment': 'If that’s what you’re after the anti gun and anti religion talk needs to be removed', 'created': '2024-11-06 09:31:09', 'submission_id': '1gktme9'}
{'comment': 'Labor moved to Trump despite the fact that Democrats (and Biden specifically) championed labor causes. Trump is about as anti union as one can be. But union workers went for Trump on social issues. Is that really what you want to do?\n\nDemocrats need to cut bait from people who will happily sacrifice their own economic livelihood for the pleasure of bringing able to dump on minorities and illegal immigrants.', 'created': '2024-11-06 10:16:37', 'submission_id': '1gktme9'}
{'comment': 'Love to see any data on the number of young voters who got College Loan forgiveness from Biden/Dems but still voted for trump.', 'created': '2024-11-06 11:11:40', 'submission_id': '1gktme9'}
{'comment': 'I agree that basic human rights aren’t negotiable, but everyone who hasn’t buried their head in the sand can see how they hammered us on the trans issue. Like it or not, that messaging unfortunately worked.', 'created': '2024-11-06 09:22:52', 'submission_id': '1gktme9'}
{'comment': "I'm just glad many states are upholding abortion rights. I don't think this is what was keeping Dems from winning this go around", 'created': '2024-11-06 09:21:35', 'submission_id': '1gktme9'}
{'comment': "I support trans rights but thing that's always bothered me is what % of the population is trans?\n\nYea its small\n\nLet's not die on that hill folks", 'created': '2024-11-06 18:22:11', 'submission_id': '1gktme9'}
{'comment': 'nope, in a environment where the number one issue is people own self interest with the economy - you have to put all those social program aside. Trump\'s simple message was "Day one I will make inflation go to zero and prices will be back to where they were when I was president"', 'created': '2024-11-06 11:13:52', 'submission_id': '1gktme9'}
{'comment': 'The US military despises Trump though. I don’t think he has their loyalty if push comes to shove, and I think that will restrict how fascist a regime he can implement.\xa0', 'created': '2024-11-06 09:39:08', 'submission_id': '1gktme9'}
{'comment': "As someone that's supper familiar with the US Military \n\nActive duty does not concern me. There are so many Democrats in various leadership roles throughout our active duty forces and they won't allow anything crazy to happen.\n\nNow what scares me is the national guard. Specifically certain units.\n\nYou see in active duty people get moved around a lot. Which helps stop the Bubba network from forming. However national guard don't operate that way. Example Tim Walz was in the same unit for like 20+ yrs, that doesn't happen in active duty.\n\nSo I could see pockets of the national guard being willing to do horrible things for Trump and Trump will be able to identify those units are.\n\nSo yea \n\nThis didn't make you feel better did it?", 'created': '2024-11-06 18:29:53', 'submission_id': '1gktme9'}
{'comment': 'If they allow us a free and fair election.\xa0', 'created': '2024-11-06 10:24:19', 'submission_id': '1gktme9'}
{'comment': 'Agreed. This term is going to be a shitshow. He is going to wreck the economy with his tariffs and deportation. All the gains over the past 4 years are going to be immediately given back. Welcome back inflation.', 'created': '2024-11-06 12:34:48', 'submission_id': '1gktme9'}
{'comment': 'Amazing you think there will be another election cycle in 4 years. MAGA wants him to stay in power for ever. Even if Trump dies in office, Vance won’t leave.', 'created': '2024-11-06 16:03:23', 'submission_id': '1gktme9'}
{'comment': 'Exactly. Who will they blame when it’s them running everything??', 'created': '2024-11-06 14:07:13', 'submission_id': '1gktme9'}
{'comment': 'I was hoping for a new direction with US Presidential election - the 100 days candidates that Harris tried to pull off. These 18-20 month Presidential elections are so exusting and now $$$', 'created': '2024-11-06 11:30:20', 'submission_id': '1gktme9'}
{'comment': "There was highly depressed voter turnout, which sucks, and yea losing the popular vote is just pure catastrophic.\n\nWe can wax poetical about the amount of autopsies to be performed and what changes should be made, but it's impressive isn't it that in the last 12 years, each time the Democrats lost a monumental election, it is always about the failures of the Democrats, but each time the GOP underperformed, they kept course and turned the winds into their favor after.", 'created': '2024-11-06 10:10:29', 'submission_id': '1gktme9'}
{'comment': 'They clearly said straight. Did you even read their comment?', 'created': '2024-11-06 13:58:25', 'submission_id': '1gktme9'}
{'comment': 'No LGBTQ, no women, no POC.\n\nCisgender white male that is not old. Because America will not vote for the minorities.', 'created': '2024-11-06 16:10:21', 'submission_id': '1gktme9'}
{'comment': "What is keep hearing is that the dem candidate has to be near perfect and straddle the line between progressives and moderates to win.\xa0\n\n\nRepublicans have such a lower bar to clear. Felon? That's fine! Says minorities are eating your pets? Cool! Lie openly with zero repercussions? Take my vote.\xa0", 'created': '2024-11-06 09:49:35', 'submission_id': '1gktme9'}
{'comment': 'Exactly! Quick to make excuses, call names, without looking at what the real reasons could be.', 'created': '2024-11-06 09:32:15', 'submission_id': '1gktme9'}
{'comment': 'You might be right? Do you really wanna take that chance again? We need someone that is popular across all groups very very badly', 'created': '2024-11-06 09:54:07', 'submission_id': '1gktme9'}
{'comment': 'Running on a platform of “foreigners will eat your pets”', 'created': '2024-11-06 09:39:14', 'submission_id': '1gktme9'}
{'comment': 'https://preview.redd.it/8mocuth3x8zd1.png?width=500&format=png&auto=webp&s=3df153dde9c14837e5f4317c95ad4cc8142a4add\n\nNot really relevant, but I keep thinking of this.', 'created': '2024-11-06 09:57:29', 'submission_id': '1gktme9'}
{'comment': 'I will say this you will NEVER see an insult comic opening up for a Presidential Candidate ever again!', 'created': '2024-11-06 11:34:12', 'submission_id': '1gktme9'}
{'comment': "That's the thing. They don't care why it didn't happen, just that it didn't happen.", 'created': '2024-11-06 10:22:55', 'submission_id': '1gktme9'}
{'comment': 'Agreed. Next 2 years, as the economy goes down, unemployment goes up, inflation goes up….Dems need to use the slogan the GOP tried to used, but flip it on Trump…..”Trump did this”. Hammer the kitchen table issues. Hammer them over and over again. The making the rich pay more, and the secretary paying more than the CEO just doesn’t land. Food, housing, gas. Focus hardcore on those.', 'created': '2024-11-06 16:08:52', 'submission_id': '1gktme9'}
{'comment': "I got Trump dying in office, in year 2 or 3 from being old as shit and having Big mac sauce as his blood type. Vance becomes president, and then gets all the blame when he runs for reelection.\n\nEven though he is going to be playing Golf all the time, he still has to do all the Presidental PR shit like traveling, ceremonies, photo op's, media appearances. That's going to take their toll especially since he had a 4 year gap between his terms.", 'created': '2024-11-06 10:43:43', 'submission_id': '1gktme9'}
{'comment': 'I did that in 2017 after the first trump win, in Pittsburgh, PA no less, and came out less of a democrat than I was before, still I’m not a trumpy republican. But yeah….', 'created': '2024-11-06 17:26:16', 'submission_id': '1gktme9'}
{'comment': 'I’ve lost track of how many of my coworkers left the country during his term. Scandinavia and New Zealand were big choices. I work in a field that makes moving around somewhat easy. Of course, I assume we’re going to have some of our international coworkers deported now (we did last time).', 'created': '2024-11-06 13:12:06', 'submission_id': '1gktme9'}
{'comment': 'As a heart attack.', 'created': '2024-11-06 15:16:44', 'submission_id': '1gktme9'}
{'comment': 'Or it could be like Obama where once Trump leaves the magic just kind of disappears.....', 'created': '2024-11-06 15:47:58', 'submission_id': '1gktme9'}
{'comment': 'I guess this is a great way to get money out of Politics and get Campaign Finance reform - just not have any elections anymore.', 'created': '2024-11-06 11:41:39', 'submission_id': '1gktme9'}
{'comment': "Right, you can have hope for both of us because there is no way to recover from the stupidity of this country that won't involve massive amounts of pain and suffering.\n\nMy entire generations future has been abandoned, and there's little we can do to change anything. Hatred has won", 'created': '2024-11-06 11:11:23', 'submission_id': '1gktme9'}
{'comment': 'Where? Texas? The age group there that went dem was 20-29.\n\nA minority group like Latino? A 50 vehicle rolling rally with mostly latinos in it was spotted rolling around Albuquerque.\n\nMen? Clearly, not enough of us give a shit about women.\n\nWhere? Most of those "millions" are either so fucking suppressed they can\'t make a difference if they wanted to.\n\nAnd we will still have elections like Russia has elections.\n\nSit down', 'created': '2024-11-06 11:44:35', 'submission_id': '1gktme9'}
{'comment': 'That’s what doesn’t math out. She was filling venues everywhere she went. So many former republicans and conservatives came out to support her. So many outreach groups to go out there and talk to voters. A massive ground game of door knockers, phone banking, etc.', 'created': '2024-11-06 10:16:05', 'submission_id': '1gktme9'}
{'comment': 'Um, no', 'created': '2024-11-06 15:27:46', 'submission_id': '1gktme9'}
{'comment': "That's the funny part, they will get the autocracy but they won't get the egg price!", 'created': '2024-11-06 14:52:58', 'submission_id': '1gktme9'}
{'comment': "We know, the idiots that is American electorate don't. They only vote by vibes.", 'created': '2024-11-06 10:46:51', 'submission_id': '1gktme9'}
{'comment': 'And inflation isn’t even bad anymore. People only think it is because prices are still elevated. Trump ran on lowering the cost of living. He will fail because he cannot cause a significant shift in the cost of groceries without deflation.', 'created': '2024-11-06 12:07:15', 'submission_id': '1gktme9'}
{'comment': 'The economy is not roaring in a way that gets you votes. It’s micro economics you have to focus on the voting public does not understand macroeconomics or care about those victories.', 'created': '2024-11-06 13:48:47', 'submission_id': '1gktme9'}
{'comment': 'It’s roaring for some people. I’m one of them, seeing 27% increase in my 401k this year. But I paid $5.99 for a pound of hamburger yesterday and $3.09 for a gallon of gas. \n\nI own my home, so housing prices don’t affect me, either. \n\nSome of us are doing fine in this “roaring” economy. A lot are not.', 'created': '2024-11-06 12:20:01', 'submission_id': '1gktme9'}
{'comment': "We lost the messaging war. Should have called it Trump's inflation from the start of it. And never let up calling it that. Instead we pulled a Biden and pretended it didn't matter or exist.", 'created': '2024-11-06 19:33:51', 'submission_id': '1gktme9'}
{'comment': 'And tarriffs which should be here within 6 months will make it worse', 'created': '2024-11-06 18:13:36', 'submission_id': '1gktme9'}
{'comment': 'I genuinely hope he just gets a few of his tattoos through in the first year and this tanks his party', 'created': '2024-11-06 19:14:22', 'submission_id': '1gktme9'}
{'comment': "The stock market is roaring. Anecdotally, I don't see that the economy (in terms of availability of good jobs) is roaring in the least not", 'created': '2024-11-06 19:18:11', 'submission_id': '1gktme9'}
{'comment': "the gdp is rotating in every way but cost of living. that's all that matters", 'created': '2024-11-06 19:23:12', 'submission_id': '1gktme9'}
{'comment': 'Roaring economy is good for companies. People only care about their own pocket book. Getting squeezed at the store was the whole game.', 'created': '2024-11-06 20:59:01', 'submission_id': '1gktme9'}
{'comment': "That's what they do.", 'created': '2024-11-06 21:40:03', 'submission_id': '1gktme9'}
{'comment': 'Even though inflation is already fixed...', 'created': '2024-11-06 23:31:05', 'submission_id': '1gktme9'}
{'comment': "Actually inflation is 2.4%. The theoretical ideal inflation rate is 2%. Under Trump, we had an inlfation rate of 6.9%. Inflation has greatly improved under Biden and has been a nightmare under Trump. So, no, inflation is not actually bad. The media narrative about inflation is bad, but it is complete horseshit. I'm paying less for groceries now than I did under Trump even though my kids actually eat more now.", 'created': '2024-11-07 00:36:24', 'submission_id': '1gktme9'}
{'comment': 'She’s part of the administration that has failed to do anything about the cost of housing, food, and energy. Why should voters turn out for her and believe that she’ll do something different for them? This was the fundamental disconnect between the Harris campaign and voters. She represented more of the same, and voters wanted something different. No matter what she said, no matter what policies she championed, no matter how much she promised, her attachment to the current, unpopular administration was going to hurt her.\n\nWe needed Biden to step aside sooner and allow a primary season where an actually popular candidate could be chosen by the people.', 'created': '2024-11-06 20:33:29', 'submission_id': '1gktme9'}
{'comment': 'Yea the emphasis is on focus. 50% less talk about Trump and abortion and other social issues. 50% more talk about what I’ve mentioned.', 'created': '2024-11-06 10:13:12', 'submission_id': '1gktme9'}
{'comment': 'Really This. I spent most of this election cycle on twitter. It is a hellscape of Crypto bros. They helped trump manipulate people on social media platforms with the promise that their crypto wallets will fatten. I believe that they will see the mistake soon. Trump is still part of the GOP, and the US dollar is most important. He will drop those crypto people as soon as possible.', 'created': '2024-11-06 14:33:04', 'submission_id': '1gktme9'}
{'comment': 'You’re right. Instead of running away from Biden’s economic record or downplaying it, Dems should’ve just owned it, celebrated it, and repeated it over and over again the past 2-3 years. You repeat something enough, people will believe it. Republicans do it all the time. Biden should’ve celebrated and took credit when gas prices came down and kept repeating it. Biden should’ve celebrated every time the stock market hit a new high. And on and on. People only perceived the national economy was bad cuz Dems let the media drive that narrative vs constantly hitting the airwaves like CNBC celebrating the successes.', 'created': '2024-11-06 23:37:26', 'submission_id': '1gktme9'}
{'comment': 'I completely agree about controlling the narrative. Dems shouldn’t have run away or downplayed everything Biden accomplished. They should’ve celebrated it by constantly hitting the airwaves celebrating every success from when gas prices came down to every time the stock market hit a new high to every jobs report to every new lower inflation reading etc… They should’ve celebrated that we’re drilling and exporting more oil and gas than ever and being energy independent vs being scared about losing the far left.', 'created': '2024-11-06 23:42:51', 'submission_id': '1gktme9'}
{'comment': 'Man, the more I read deeper into this Project2025 the more Im really glad Ill retire in a few years. Ekkkk, stuff is staight out of Upton Sinclair\'s The Jungle.\n\n"Another related attack on overtime comes in the form of allowing workers to negotiate away national employment law rights like time-and-a-half pay in exchange for noncompensation benefits like “predictable scheduling.” Such a change could incentivize predatory scheduling practices in order to coerce workers to give up overtime. If that’s not enough,\xa0*Mandate*\xa0also suggests returning to a Trump-era regulation that would deny overtime to most employees making more than $679 per week or $35,000 annually, which would\xa0[leave behind](https://www.epi.org/publication/trump-overtime-proposal-april-update/)\xa0millions of workers."', 'created': '2024-11-06 10:56:07', 'submission_id': '1gktme9'}
{'comment': 'All we can do is build stronger unions and run for office and take these people out of positions of power that allow the oligarchs and billionaires to continue reducing us to serfs.', 'created': '2024-11-07 02:04:23', 'submission_id': '1gktme9'}
{'comment': 'This should have been talked about more. I wonder how many OT eligible employees voted for trump this election', 'created': '2024-11-06 12:00:08', 'submission_id': '1gktme9'}
{'comment': 'MAGA like chants are powerful. Tee-shirt that to death.', 'created': '2024-11-06 23:01:10', 'submission_id': '1gktme9'}
{'comment': "I hate Reagan but hell, I'd take his brand of GOP over MAGA any day.", 'created': '2024-11-06 12:46:28', 'submission_id': '1gktme9'}
{'comment': 'It’s not just the media. Without something to weaponize they are useless. \n\nIt is very real that many people felt and are worse off than they were eight years ago. The media exploited this, yet if Trump does not alleviate it, no amount of snake oil can change that.', 'created': '2024-11-06 13:31:44', 'submission_id': '1gktme9'}
{'comment': 'So we do it ourselves. Why would we rely on others to do the work we should have been doing all along. If a local paper is Sinclair then locals need to organize and get the word out themselves. \n\nSocial media is fucked but it disconnects us. Makes sheep of us all. So reach people offline. \n\nThey want us to give up.', 'created': '2024-11-06 13:23:06', 'submission_id': '1gktme9'}
{'comment': 'We are kind of there. So many people are struggling so much, and they have no energy or time to reflect “hey, why are things really so bad?” They don’t direct their anger at the billionaires exploiting all of us, but at the regular people around them.', 'created': '2024-11-06 18:50:23', 'submission_id': '1gktme9'}
{'comment': 'Trump was also calling the Democrats fascists. Musk was saying we wouldn’t have a democracy anymore if the Democrats win. It’s not like that message only came from one side…', 'created': '2024-11-06 10:03:41', 'submission_id': '1gktme9'}
{'comment': 'Please point me to the last country that simply changed course and voted its way out of fascism.', 'created': '2024-11-06 13:20:25', 'submission_id': '1gktme9'}
{'comment': 'Come on, man... If this were the case, with how Trump has called the left "the enemy within" and threatened them in all sorts of ways, Harris would have won in a damn landslide for the ages. Latino would have voted 99% for Harris for god\'s sake. He has vilified them to hell and back', 'created': '2024-11-06 15:55:14', 'submission_id': '1gktme9'}
{'comment': 'I think choosing to make the closing weeks leading up to the election about DJT was a mistake. I get they wanted to highlight the “prosecutor” thing and her making a case against him, but I agree that that kind of messaging was CLEARLY not working. Continuously attacking him INSTEAD of highlighting the work you’d do was a grave mistake.', 'created': '2024-11-06 15:49:47', 'submission_id': '1gktme9'}
{'comment': 'And accurate. The man promises to take vengeance on his opponents, fill the government with loyalists, has openly expressed interest in using the military on us citizens, plans to spend billions rounding up immigrants to deport, embraces white supremacy, has called himself a dictator.\xa0\xa0\n\n\nHis handpicked SC majority has given him unprecedented control and immunity.\n\n\n\nJohn Kelly, a man who worked next to Trump and would certainly know the history, agrees. If the shoe fits.\xa0', 'created': '2024-11-06 09:42:27', 'submission_id': '1gktme9'}
{'comment': "My money is on this. Misinformation in the campaign. Suppression, intimidation, threats once voting began.\n\n\nIt was not the dems or Harris being bad. Trump and GOP have been playing a filthy game and going to jail by the dozens since 2016.\xa0\n\n\nThe secret ingredient to Trump's campaign has always been crime.\n\n\nStop those crimes and you win.", 'created': '2024-11-06 16:00:16', 'submission_id': '1gktme9'}
{'comment': 'This is the way forward for the Democratic Party we must both appeal to costal voters (costal elite) and also the working man and give people real ways out of poverty', 'created': '2024-11-06 09:28:02', 'submission_id': '1gktme9'}
{'comment': 'Issue being that socialism is a scary word for a lot of voters. We start promoting those ideas, and conservatives are going to harp on it nonstop. While I agree this is the direction we should go, we need to make it palatable for the average voter.', 'created': '2024-11-06 09:31:26', 'submission_id': '1gktme9'}
{'comment': 'I would drop the word socialism altogether at this point, just say we need policies can elevate the working class to achieve the American dream. People want to feel that if they put in the work they can get out of the lurch, trump gives them that for some weird ass reason. Introduction of social programs should be a priority, but not the foundational ideology of the campaign imo.', 'created': '2024-11-06 09:49:08', 'submission_id': '1gktme9'}
{'comment': "How are Republicans doing that? I'm honestly asking what policies people voted for.", 'created': '2024-11-06 09:30:06', 'submission_id': '1gktme9'}
{'comment': 'Why do I feel like with how polarized the US is this will backfire into fascism vs communism 2040 ?\xa0', 'created': '2024-11-06 15:57:07', 'submission_id': '1gktme9'}
{'comment': 'If Kamala did that the rout would have been even worse. Americans don’t want that.', 'created': '2024-11-06 10:18:18', 'submission_id': '1gktme9'}
{'comment': 'European Socialism runs on much higher taxes to increase numerous social programs. No way does ANY American put up with +50% tax rates, VAT of 22% so people can have universal health care.', 'created': '2024-11-06 10:59:18', 'submission_id': '1gktme9'}
{'comment': 'A note from a European: We don’t have socialism in Europe! When will Americans understand this? Just stop using this word, please. It doesn’t fit into American politics and it also doesn’t describe European policies.\n\nWe had real socialism in Europe not that long ago in East Germany, Poland, Czechia, the Baltics and much more. Believe me, we Europeans despise socialism!', 'created': '2024-11-06 13:05:29', 'submission_id': '1gktme9'}
{'comment': 'I think that is framing it incorrectly. The better question should be, after all Biden did for the labor movement, why didn’t union members care? What happened there?', 'created': '2024-11-06 18:56:05', 'submission_id': '1gktme9'}
{'comment': 'Yep. The federal gov shouldn’t be paying for the sex change operations of prisoners. They had their chance. Let them pay for it themselves. \n\nTrump used democratic generosity against us.', 'created': '2024-11-06 09:41:55', 'submission_id': '1gktme9'}
{'comment': "The Florida abortion ballot measure accrued greater than 50% of the vote but failed due to the state requiring 60% to pass.\n\nThis is reality: People nationally will vote for progressive policies. _EVERYWHERE_. Net Neutrality always polls well. Medicare for all polls well. These same people will not vote for the political party which seeks to enact progressive policies. \n\nI simply don't see a way to bridge that disconnect. The Democrats are going to consistently struggle because at the end of the day, people simply just won't vote for them. Full stop. And I'm not sure that's really their fault either at this point.", 'created': '2024-11-06 09:24:17', 'submission_id': '1gktme9'}
{'comment': "That was true in his last term. I don't think people realized how close to the brink we were, and that Milley and even Kelly pulled us back.\n\n\nThose checks won't happen this time, IMO.", 'created': '2024-11-06 09:47:41', 'submission_id': '1gktme9'}
{'comment': "A key difference this time round is hindsight allows installation of pure yes men. A cabinet that seeks to only do whatever the executive wants regardless of what it is dramatically dents the ability for administrative and executive resistance at rank and file.\n\nThere are no more McCains in the Senate. There will not be another dramatic display of potentially one lone hold out torpedoing a catastrophic Senate vote. There are no solid guardrails left with a GOP (super)majority seated in SCOTUS. The filibuster is part of a rules package on procedure, not an enshrined component of process.\n\nIf there is one saving grace left, it is sheer incompetence, but that's not much solace for anyone who had to look after a toddler.", 'created': '2024-11-06 09:51:07', 'submission_id': '1gktme9'}
{'comment': '[removed]', 'created': '2024-11-06 09:45:51', 'submission_id': '1gktme9'}
{'comment': 'Which is why local races are often more important than the president', 'created': '2024-11-06 13:48:39', 'submission_id': '1gktme9'}
{'comment': "That's the point. They're going to blame the rest of us.", 'created': '2024-11-06 15:57:28', 'submission_id': '1gktme9'}
{'comment': "As a former progressive, they are at war with themselves. They will need to come to terms with that in the next 4 years. America is telling us right now they aren't ready for a massive overhaul, Kamala is literally about to lose the popular vote. It's time for Dems to go back to Obama-esque times. We need stability, then progress", 'created': '2024-11-06 09:58:28', 'submission_id': '1gktme9'}
{'comment': "We need to hold them accountable, unfortunately the way things will be shaping up I don't think that will happen anytime soon.\n\nIf we need to show up with a perfect candidate, then so should they.", 'created': '2024-11-06 10:30:20', 'submission_id': '1gktme9'}
{'comment': 'No way is a 82 year old trump in \'28 able to be a central figure in next Pres. Election cycle. If this is JD or some central casting villain from MAGA they wont get 1/2 the media attention trump could get. A "was your life better in \'24 than now" will always hold water. Dem Party - Hire me "Ive got your \'27 slogan read to roll out.', 'created': '2024-11-06 23:00:16', 'submission_id': '1gktme9'}
{'comment': 'I mean it’s healthy for political views to change with experience, but it also sounds like you are more in line with the people in your community. That’s what we need. IMO', 'created': '2024-11-06 17:40:48', 'submission_id': '1gktme9'}
{'comment': 'Yes I know. I feel defeated too. It’s really, really bad. I dreamt that I put up a fight in the streets and protested but because it was a dictatorship they created serious sanctions and were chasing me and they caught me and I was all over the news and they locked me up and gave me novichock. Then I died and sort of restarted the dream, as if I had a second life in a game, but this time I chose not to protest at all, because that got me killed last time :(', 'created': '2024-11-06 13:01:30', 'submission_id': '1gktme9'}
{'comment': 'This is my take away, a lot of people are unhappy at *gestures broadly*.', 'created': '2024-11-06 19:25:55', 'submission_id': '1gktme9'}
{'comment': 'And I really really doubt Trump will reduce cost of living… unless we have a huge recession and a lot of unemployment.\xa0', 'created': '2024-11-06 16:46:35', 'submission_id': '1gktme9'}
{'comment': 'The cost of groceries is going to go up after he deports migrant workers and crops start rotting in fields.', 'created': '2024-11-06 18:46:03', 'submission_id': '1gktme9'}
{'comment': '>And inflation isn’t even bad anymore. People only think it is because prices are still elevated.\n\nNot to be too nitpicky, but that is inflation. Inflation and the metrics we use to track it (CPI growth, PPI growth, etc) are not interchangeable even if we often talk about them like they are. It’s *growth* in inflation that isn’t bad anymore', 'created': '2024-11-06 17:49:02', 'submission_id': '1gktme9'}
{'comment': 'and fail bc the price gauging corporations are his friends', 'created': '2024-11-06 17:49:29', 'submission_id': '1gktme9'}
{'comment': 'Look, if someone is on Reddit complaining about their pocketbook, No one else is going to tell them how flush theirs is. So, it looks like the economy is horrible because no one who\'s doing well is going to go out there and "brag."', 'created': '2024-11-06 21:42:45', 'submission_id': '1gktme9'}
{'comment': 'The economy is roaring in a way that SHOULD get votes. The news refuses to educate people and they report on how people “feel” about the economy instead of how it’s really doing. We were just pulled out of a recession. The picture is more complex than what people understand.', 'created': '2024-11-06 17:01:26', 'submission_id': '1gktme9'}
{'comment': 'What people will swiftly come to realise is that disinflation does not = deflation. $5.99 is just what hamburger meat costs now. In two years it may cost $6.30 not $7.10, but the only way Trump can make it cost less is by drastic market intervention that would probably crash the economy.', 'created': '2024-11-06 23:47:24', 'submission_id': '1gktme9'}
{'comment': 'That’s such a good idea. I think that democrats have to start being a little bit untruthful. A little bit populist.', 'created': '2024-11-07 02:46:20', 'submission_id': '1gktme9'}
{'comment': 'We know many people in America vote against their own self interests.', 'created': '2024-11-06 13:04:39', 'submission_id': '1gktme9'}
{'comment': 'I saw a black man interviewed on tv saying he voted for Trump bc he said he won’t tax OT. \n\nlol fucking fools don’t even know their orange savior wants to stop paying OT and under his plan, the poorest will pay MORE in taxes.', 'created': '2024-11-07 02:05:57', 'submission_id': '1gktme9'}
{'comment': 'Its so weird, they just take our genuine criticisms and spit it back out and that seems to work for them.', 'created': '2024-11-06 10:14:31', 'submission_id': '1gktme9'}
{'comment': "It doesn't matter if you have an accurate read on trump. It doesn't matter how many people say he will be bad for the country. The average person has been taught to not trust politicians on instinct. We need to make inroads with groups. Biden did this by making policy and pick promises to gain votes from different groups, while Harris' plan was to focus on the good vibes and shut down people with complaints. I did the same. It lost us the election. We need to watch how this next term goes and find particular policy weak points and follow up with more popular policy. Clearly the general populace simply does not care for the personal ethics of a politician and instead just wants results they are convinced will help them. There is no other way to win. Be popular, not proud.", 'created': '2024-11-06 09:54:08', 'submission_id': '1gktme9'}
{'comment': 'It all needs to be dumbed down. _A lot_. And before any calls me out for calling voters “dumb”, it’s what the Republicans are running on. Lower grocery prices? Not really possible but we will do it. Lower cost of living? We don’t have specifics but sure.\n\nDrop the buzzwords and phrases like “Green New Deal” and others. It’s way too easy to scare off uneducated voters with this stuff and it makes easy targets for the GOP.', 'created': '2024-11-06 09:40:23', 'submission_id': '1gktme9'}
{'comment': 'Yea that word needs to be banned basically we need to focus on making everyday life better keep it simple', 'created': '2024-11-06 18:18:08', 'submission_id': '1gktme9'}
{'comment': 'They didn’t vote for policy. \n\nThey voted for hatred. It’s that simple. \n\nSeems stupid to bring up polls now but polls have consistently shown abortion, raising taxes on the rich, universal healthcare, having broad support among the population, even a majority of republicans. Yet they vote for people who won’t do any of those things.', 'created': '2024-11-06 10:01:32', 'submission_id': '1gktme9'}
{'comment': None, 'created': '2024-11-06 09:57:55', 'submission_id': '1gktme9'}
{'comment': "They are voting on the knowledge that consumer prices went up under biden. They don't really know why and they don't care. It hurts and they want it to stop, and the republicans promise they can fix that, and have the previous term to point to as evidence they have lower prices. It's not a policy they are voting for, it's the record. They see it as voting for the side with evidence.", 'created': '2024-11-06 09:59:08', 'submission_id': '1gktme9'}
{'comment': 'They keep it very, very simple and dumb. Lower grocery price. Immigrants steal jobs. Etc.', 'created': '2024-11-06 16:57:48', 'submission_id': '1gktme9'}
{'comment': 'doesnt matter. They got in and now their real agenda will not be focused on the "basement dwellers" but their real power base the wealthy. You think Elon, Bezos David Sacks, aligned with trump because he wants to get trans-men out of the women\'s locker rooms? No Tax breaks baby, roll back regulations, they are now the Wild Things and\n\n**"Let\xa0the\xa0wild\xa0rumpus\xa0start!".**', 'created': '2024-11-06 11:04:43', 'submission_id': '1gktme9'}
{'comment': 'Right-wingers don’t vote for policy. They vote in anger. There is no reasoning going on.\xa0', 'created': '2024-11-06 16:18:28', 'submission_id': '1gktme9'}
{'comment': '> The federal gov shouldn’t be paying for the sex change operations of prisoners.\n\nDid anyone have an issue with [it happened under the previous Trump administration](https://www.telegraph.co.uk/us/politics/2024/10/17/trump-signed-off-trans-prisoner/)?', 'created': '2024-11-06 09:47:41', 'submission_id': '1gktme9'}
{'comment': 'Oh jesus - Gen Michael Flynn will be back in power with trump. Here he is with Putin having dinner. \n\nhttps://preview.redd.it/6lom7gwec9zd1.png?width=474&format=png&auto=webp&s=e4734f8f15e456aef0f7842ea9ab78866f129098', 'created': '2024-11-06 11:23:13', 'submission_id': '1gktme9'}
{'comment': 'To be fair, Trump and his "best people" might be too unintelligent and incompetent to pull it off.', 'created': '2024-11-06 22:45:27', 'submission_id': '1gktme9'}
{'comment': "Trump won't make that mistake again he'll have loyality", 'created': '2024-11-06 18:30:29', 'submission_id': '1gktme9'}
{'comment': "You know trump could get another two SCOTUS appointments when Clarence Thomas and Sam Alito retire. Lets hope Sotomayor never falls out a window in Trump's 4 years.", 'created': '2024-11-06 11:26:35', 'submission_id': '1gktme9'}
{'comment': 'I voted straight Democrat. I’ve never voted for a Republican in my life. Having said that I’m not surprised at all. People looked at me, even in 18 when I was asking for their vote, as if I were a fucking alien when I told them I was a Democrat. I have very limited experience in this matter, and my experience is totally anecdotal, but I cannot tell you enough, how unpopular the Democratic Party is on the ground with actual working people.', 'created': '2024-11-06 17:43:00', 'submission_id': '1gktme9'}
{'comment': "Didn't you know? Imposing tariffs will help all that./s", 'created': '2024-11-06 17:39:19', 'submission_id': '1gktme9'}
{'comment': 'At this point, I’m praying for a massive recession. It’s the most likely way to take back Congress and limit Trump to only two years of unfettered insanity - either that or a meteor.', 'created': '2024-11-06 18:39:17', 'submission_id': '1gktme9'}
{'comment': "But they'll blame the few remaining Dems left in government for that.", 'created': '2024-11-06 21:44:12', 'submission_id': '1gktme9'}
{'comment': 'This logic of what SHOULD be happening vs what is happening is why we lost. You can write a thesis or talk about the news nobody watches but it will not matter. \n\nThat academic perspective however valid is insanely irrelevant as we’ve seen here today.', 'created': '2024-11-06 17:27:02', 'submission_id': '1gktme9'}
{'comment': "People don't care how good the economy is if they don't feel good about their own finances. To them, the economy is do I have a job and can I feed my family.", 'created': '2024-11-06 21:46:15', 'submission_id': '1gktme9'}
{'comment': 'The republicans tend to be evil but not insufferable. Democrats are having a hard time understanding why they are so alienating. Hasan Minhaj said it best in his new special. “This is a war between the insane vs the insufferable.”', 'created': '2024-11-06 13:52:22', 'submission_id': '1gktme9'}
{'comment': 'That’s not what she did. When did she shut down people with complaints? She lost, but we’re already being revisionist and calling her campaign terrible when just 24 hours ago it was immaculate.', 'created': '2024-11-06 10:00:14', 'submission_id': '1gktme9'}
{'comment': "> watch how this next term goes and find particular policy weak points and follow up with more popular policy\n\nI'm unconvinced policy matters.\n\nSecuring abortion rights is popular -- ballot measures for these generally breached the 50% majority mark where polled. Florida's breached 50% but failed because the state requires a minimum of 60% to pass.\n\nFlorida passed a $15/hour minimum wage.\n\nPolicies like medicare for all, net neutrality, abortion rights, and so on are generally popular. Stuff like free school lunches are incredibly popular. These are all things that the Democrats campaign on. It didn't matter.\n\nFrom my frank point of view, I think there will be a lot of blame to distribute, a lot of soul searching, a lot of autopsies, a lot of what-ifs and fingers crossed. Ultimately though I can come to one conclusion: voters across the US will not vote for Democrats. They will vote for candidates who are perceived to incidentally run on the Democrats' ticket, and people like Warnock and Ossoff and Obama have found success that way, but people will not vote for Democrats.\n\nHarris lost, and we'll spend the next few months to year+ doing a lot of hand wringing and soul searching, but fundamentally I believe that voters will simply not vote for Democrats. We can wax poetical about the reasons for it, but fundamentally voters will simply not vote for Democrats.", 'created': '2024-11-06 10:03:45', 'submission_id': '1gktme9'}
{'comment': "Yeah, enough with the we go high they go low stuff. It's clear democrats are pretty out of touch with the average person. Taking the high road just needlessly complicates things because I guarantee you no republican voter actually cares about how Trump intends to lower grocery prices or CoL. They just hear the phrase and assume the government will take care of it. No more info needed apparently.", 'created': '2024-11-06 09:48:55', 'submission_id': '1gktme9'}
{'comment': 'Dumb programs Dems have pushed "Global Warming" (Hey I like warm weather!), "Defund the Police" like huh? "Trans-Men in Sports" why? "Green Energy Agenda" , "Asian-Pacific Month" "Pride Month" when US Vets get a single day?', 'created': '2024-11-06 11:01:21', 'submission_id': '1gktme9'}
{'comment': 'That’s why, outside of raising taxes for the rich, I don’t think Trump gets any of his party’s wildly unpopular policies passed. \n\nTrump is the it factor here, they voted for charisma, a cartoon character, not just hatred.', 'created': '2024-11-06 13:16:39', 'submission_id': '1gktme9'}
{'comment': "I've seen it across Europe, UK and now the US. You have to get a handle on immigration. People are really fed up with mass migration and it is easy coming out of Covid-19 with high inflation across every G-20 nation to point to those immigrants as the cause of your $7.99 eggs. \n\nIt doesnt look good on TV but you have to shut down the southern border, you have to internally find those who have crossed into America Illegally and not hide it behind layers of lawyers and years of paperwork to export. Immigration has to be a brutal policy that the liberal mind doesnt want to think about.", 'created': '2024-11-06 11:09:55', 'submission_id': '1gktme9'}
{'comment': '"Evidence" only being the most surface level details possible, unfortunately.\n\nPrice low, Trump good\n\nPrice high? Biden\'s in charge so its his fault the economy sucks. Has nothing to do with the previous leadership or the massive global pandemic we just had, obv.', 'created': '2024-11-06 10:18:39', 'submission_id': '1gktme9'}
{'comment': 'The Dems didn’t advertise that or complain about it. \n\nImagine if Harris went to Penn and complained about it. Or Arizona. She’d have gotten votes', 'created': '2024-11-06 10:13:28', 'submission_id': '1gktme9'}
{'comment': "I've had a similar thought. Our best bet at mitigating pain might be their utter stupidity. Though as much as I despise them, Bannon and Vance aren't idiots. The chaos will still cause pain.", 'created': '2024-11-06 23:03:25', 'submission_id': '1gktme9'}
{'comment': "Yes I know. SCOTUS will have a Republican supermajority for a generation, which requires a significant progressive wave to overcome. A progressive wave, that if it didn't exist today, I doubt would exist in the future either.", 'created': '2024-11-06 11:53:47', 'submission_id': '1gktme9'}
{'comment': 'Along with deporting cheap farm labor..', 'created': '2024-11-06 22:04:00', 'submission_id': '1gktme9'}
{'comment': 'And the media will eat it up.', 'created': '2024-11-06 21:45:27', 'submission_id': '1gktme9'}
{'comment': 'Why are you saying the truth is irrelevant? I’m saying it shouldn’t be irrelevant, what happened happened. I’m talking about how it happened. It seems like you’re pissed about it so am I but we have to think logically about it. That’s the problem, people aren’t thinking logically', 'created': '2024-11-06 17:41:52', 'submission_id': '1gktme9'}
{'comment': 'Yeah but people need to understand why they feel that way, but instead they’re blaming this administration instead of corporate greed\n\nBecause guess who’s about to cut taxes for those greedy fuckers?', 'created': '2024-11-06 22:07:09', 'submission_id': '1gktme9'}
{'comment': "List out their achievements on a blinded list and I'm willing to bet a lot of people would rather support Harris for president.\n\nI don't think Harris' campaign was terrible given the circumstances. I currently just don't think any sensible, reasonable interpretation of a good campaign is what actually wins elections nationally.", 'created': '2024-11-06 10:20:30', 'submission_id': '1gktme9'}
{'comment': 'We also need to keep families together im going through the process to get my wife a green card.\n\nI am a natural born citizen. My son is a natural born citizen. Because of those facts my wife green card should essentially be auto approved.\n\nBut...that guy coming over to work on the farm?\n\nHe either needs to have a visa or get out. \n\nAlso we should provide low skill physical labor visas for people like this cause we need those people', 'created': '2024-11-06 18:20:38', 'submission_id': '1gktme9'}
{'comment': "It'll be one shitshow after another when that happens. Again, with no solutions. Farms will ask for bailouts, but be denied. A concept of a plan that never materializes. Put Herschel Walker in charge of missile defense? I fear for our country. Democracy does indeed die in darkness.", 'created': '2024-11-06 22:19:23', 'submission_id': '1gktme9'}
{'comment': 'I’m not saying the truth is irrelevant broadly. I’m saying macroeconomics did not factor largely into how people felt about our economy & therefore did not sway the vote. \n\nI think it’s important, especially online that we’re specific and even a little pedantic in a way you don’t necessarily need to be in casual conversation. Especially about politics.', 'created': '2024-11-06 17:55:04', 'submission_id': '1gktme9'}
{'comment': 'Will happen, happening, happened. \n\nAnd we’ll happen, again and again, cause you and I will always be back then…', 'created': '2024-11-06 19:01:43', 'submission_id': '1gktme9'}
{'comment': 'Yeah you’re right that’s why it didn’t sway the vote. I’m just trying to think about what people should have understood, but didn’t because of the news media and other factors', 'created': '2024-11-06 18:17:32', 'submission_id': '1gktme9'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 08:06:22', 'submission_id': '1gksnyu'}
{'comment': '2 not really important things that I learned:\n\n1. Remember how everyone said Trump fucked up picking Vance? VP candidates don’t really matter\n\n2. It’s nice to know which celebrities are on your side but celebrity endorsements don’t really do shit towards winning', 'created': '2024-11-06 08:54:43', 'submission_id': '1gksnyu'}
{'comment': None, 'created': '2024-11-06 08:39:16', 'submission_id': '1gksnyu'}
{'comment': "I am so sorry everyone. It's heartbreaking, seems like he is minutes away from the win. News outlets have already declared him the winner.", 'created': '2024-11-06 08:56:39', 'submission_id': '1gksnyu'}
{'comment': 'I honestly don’t know what I’m gonna do with myself anymore.', 'created': '2024-11-06 08:11:40', 'submission_id': '1gksnyu'}
{'comment': 'It’s over. I can’t believe it', 'created': '2024-11-06 08:09:20', 'submission_id': '1gksnyu'}
{'comment': 'CNN just called my home state of PA for Trump, it’s over.\n\nJust gotta keep fighting in the future.', 'created': '2024-11-06 08:08:40', 'submission_id': '1gksnyu'}
{'comment': 'Jesus fucking christ, I can’t believe this happened again. I’m on my last legs, health-wise, and so don’t want the last years of my life w the chaos that Trump and his cult will bring. How was that traitor even allowed to run after what he did last time? Fucking make it make sense! Argh…..', 'created': '2024-11-06 08:39:57', 'submission_id': '1gksnyu'}
{'comment': 'Trump is so bad that even DICK CHENEY did not endorse him.\n\nDICK CHENEY,the guy who is infamously known as one of the most disastrous people in politics.\n\nIf that man thinks you’re bad,it’s over.', 'created': '2024-11-06 08:09:09', 'submission_id': '1gksnyu'}
{'comment': 'What I keep thinking about is how we lost the referendum on decency. Though for sure “when they go low, we go high” is out, Kamala has been very careful this entire time to keep things classy. When the crowds at her rallies chanted “Lock him up”, she always squashed it. She was forced to react to them questioning her racial and ethnic identity, naming her the devil, and literally calling her “r*tarded”. They aired horrible anti-immigrant, anti-trans ads.\n\nShe was extending an olive branch to the bitter end. She believed too much that “people have so much more in common than what separates us”. \n\nEveryone can see what Trump is, and they apparently don’t care.', 'created': '2024-11-06 08:56:05', 'submission_id': '1gksnyu'}
{'comment': 'https://preview.redd.it/sicis8hcf8zd1.jpeg?width=810&format=pjpg&auto=webp&s=a7dc2bbb692a016d63eea1df53f9c1f3bb75d3ef', 'created': '2024-11-06 08:17:40', 'submission_id': '1gksnyu'}
{'comment': 'Not hard enough it seems. The white Republican women voters once again came through to screw over other women.', 'created': '2024-11-06 08:09:27', 'submission_id': '1gksnyu'}
{'comment': 'I’ve been ashamed to be an American for a while, but this takes the cake.', 'created': '2024-11-06 12:36:41', 'submission_id': '1gksnyu'}
{'comment': 'Enough of this “ the democrat party didn’t try enough”. \n\n It did everything it could to appeal to the rational interests of marginalized groups. And those marginalized groups flocked to the candidate who passed and will once again be passing policies that will hurt them. Some people can’t be helped. \n\n Frankly if most people who believed in a woman’s right to choose and bodily autonomy showed up and voted, Harris would have won. \nBut they don’t care. They didn’t show. Same with the anti-racists. They didn’t show. \n\nMeanwhile all the pro-birth Evangelicals turned out for trump. They deserve the win because at least they care about their values and their candidate to show up for an hour every 4 years', 'created': '2024-11-06 09:08:30', 'submission_id': '1gksnyu'}
{'comment': '', 'created': '2024-11-06 08:32:40', 'submission_id': '1gksnyu'}
{'comment': "I think it's time to start thinking in terms of sanctuary states. I'm glad I'm in CA but still scared about nation-wide policy.", 'created': '2024-11-06 10:50:49', 'submission_id': '1gksnyu'}
{'comment': 'Did we try? Did you see how many democrats didn’t show up? It’s not like Trump outperformed his 2020 numbers. Our side just stayed home apparently.', 'created': '2024-11-06 13:23:05', 'submission_id': '1gksnyu'}
{'comment': 'From Norway, I’m so sad and scared. I realize I’ve lived in a bubble. We are stocking up on more food for our emergency pantry (yes, it sounds dramatic, but it has become a thing over here..because, you know..). \n\nI just want to say: there are so many good Americans. Don’t lose sight of eachother. Build the communities, be there, don’t retract into isolation. And keep communicating with us in Europe and elsewhere. The arc of history is long, but it bends towards justice. Sometimes things have to come apart to come together again. To all the disabled, the lgbtqia+, to women: I know I know, it’s horrible. Again, don’t lose sight of eachother, and the allies. You will Build a new world with us around the globe. I believe in us, I believe in the good and in truth.', 'created': '2024-11-06 13:44:24', 'submission_id': '1gksnyu'}
{'comment': 'I’m just beside myself. I just don’t understand it. How can we be such a country of racist bigoted idiots? Is this really what America is now? Un-fucking real.', 'created': '2024-11-06 12:34:02', 'submission_id': '1gksnyu'}
{'comment': "We didn't try at all. Pathetic voters turnout for the Dems", 'created': '2024-11-06 08:09:47', 'submission_id': '1gksnyu'}
{'comment': "I'm nearly at a loss, and some of that is because I am sleep deprived & stressed. How the fuck did this happen? How? I'd say hope for the future, but there won't BE much of a future. Everything nice will be gone. No longer a democracy but a dictorship. I'm really scared and pissed off. \nSO MANY PEOPLE ARE GOING TO SUFFER BECAUSE OF THIS SCUMBAG. I can't even fathom. \n\nUnited States of America: 1776-2024.", 'created': '2024-11-06 08:22:51', 'submission_id': '1gksnyu'}
{'comment': 'What do we do now? This feels like waking up from a nightmare.', 'created': '2024-11-06 13:39:11', 'submission_id': '1gksnyu'}
{'comment': 'Can we at least say this was rigged?', 'created': '2024-11-06 11:47:20', 'submission_id': '1gksnyu'}
{'comment': 'We tried, but the rest of the country is stupid. Keep fighting on', 'created': '2024-11-06 08:26:31', 'submission_id': '1gksnyu'}
{'comment': 'harris could lose all the swing states. incredibly shocking. lots of reasons could explain why. too much to list.', 'created': '2024-11-06 08:26:41', 'submission_id': '1gksnyu'}
{'comment': "We did. And it's long past time we stop beating ourselves up for the fact that we're dealing with a slight majority of incredibly awful and toxic people. We stood for the right things. We campaigned on good ideas. And we lost for precisely that reason - things like women's autonomy and LGBTQ+ rights are not something the (slight majority of the) electorate wants.\n\nDemocracy has been defeated in the US. Trump will never give up power. The rule of law is quashed, and Trump will never be held accountable. And along with that goes the hope that ANYONE will ever be held accountable.\n\nBut it's not our fault. We did the right things. We believed in the right things. We made sure people heard us.\n\nWe could make ourselves known. But we couldn't make them care.", 'created': '2024-11-06 13:35:22', 'submission_id': '1gksnyu'}
{'comment': 'No we didnt try 40% in this country didnt even fricken vote! Enjoy hell.', 'created': '2024-11-06 08:46:35', 'submission_id': '1gksnyu'}
{'comment': 'We really did', 'created': '2024-11-06 08:13:28', 'submission_id': '1gksnyu'}
{'comment': 'I hadn’t been this devastated in 2016. I have no faith in humanity anymore when they think it is okay to keep half the population down with no rights, roll back all the progress of past 50 years just because “muh groceries are 75$ higher”', 'created': '2024-11-06 15:27:27', 'submission_id': '1gksnyu'}
{'comment': '16 million didn’t show up from last election for Harris.', 'created': '2024-11-06 12:36:59', 'submission_id': '1gksnyu'}
{'comment': 'Fuck', 'created': '2024-11-06 08:49:58', 'submission_id': '1gksnyu'}
{'comment': " Biden should've quit way sooner..", 'created': '2024-11-06 08:09:27', 'submission_id': '1gksnyu'}
{'comment': 'We’ve died on a thousand molehills.\xa0', 'created': '2024-11-06 08:46:49', 'submission_id': '1gksnyu'}
{'comment': 'All I can think of this morning is “Bye, bye Miss American pie, drove my Chevy to the levy …\n\n🥲🥲🥲', 'created': '2024-11-06 13:14:26', 'submission_id': '1gksnyu'}
{'comment': 'We resist. We march. We protest. The mid terms are around the corner.', 'created': '2024-11-06 15:33:13', 'submission_id': '1gksnyu'}
{'comment': 'Well we can spend four years talking about how stupid they are or we can look deep inside ourselves and see what we’ve done to be so unattractive to the middle.\xa0', 'created': '2024-11-06 08:46:25', 'submission_id': '1gksnyu'}
{'comment': 'The only way out is for the party to actually be progressive. Stop propping up the ACA and run on single payer healthcare.', 'created': '2024-11-06 10:01:15', 'submission_id': '1gksnyu'}
{'comment': 'I can’t believe this.', 'created': '2024-11-06 13:06:33', 'submission_id': '1gksnyu'}
{'comment': 'Misogyny sucks.', 'created': '2024-11-06 15:38:34', 'submission_id': '1gksnyu'}
{'comment': "We really really didn't try. Look how many less votes Kamala got then Joe.\n\nWe all know people who didn't care enough to vote.\nThose who didn't vote for Harris but did for Biden chose this outcome.", 'created': '2024-11-06 16:41:56', 'submission_id': '1gksnyu'}
{'comment': 'The democrat party simply didn’t try enough, and every independent out there that voted 3rd party needs to take their ego down.', 'created': '2024-11-06 08:09:33', 'submission_id': '1gksnyu'}
{'comment': 'Biden insisting on running will devastate the country for decades', 'created': '2024-11-06 08:07:52', 'submission_id': '1gksnyu'}
{'comment': None, 'created': '2024-11-06 09:29:57', 'submission_id': '1gksnyu'}
{'comment': "Should have ran Gavin Newsome. Apparently America doesn't want a female president. The only thing I have to look foward to is seeing Trump fail in real time.", 'created': '2024-11-06 15:21:47', 'submission_id': '1gksnyu'}
{'comment': "Take a break, unplug from the news (and here) for your own mental health, and above all don't lose faith in the ability to take back the reigns of power. We've seen how unpopular the candidates trying to take on Trump's mold are. Americans are stupid and shortsighted, but color me naive in saying that free elections aren't going anywhere especially with Dem governors in power in all the swing states. Musk and the propaganda apparatus do worry me, but as we've see with COVID and the economic fallout all it takes is a rough turn of events for the incumbent to get thrown out.\n\nI think his movement dies with him. The fight for the world and nation you believe in never ends in any scenario.", 'created': '2024-11-06 15:56:00', 'submission_id': '1gksnyu'}
{'comment': 'Where did 15 million democrat votes go?', 'created': '2024-11-06 17:12:36', 'submission_id': '1gksnyu'}
{'comment': 'Dust ourselves off, we can hopefully get another election in 4 years.', 'created': '2024-11-06 17:28:23', 'submission_id': '1gksnyu'}
{'comment': 'I’m done caring about this country.', 'created': '2024-11-06 14:43:54', 'submission_id': '1gksnyu'}
{'comment': 'I envy my dog. Completely clueless on what’s going on and life will continue as normal.', 'created': '2024-11-06 15:45:04', 'submission_id': '1gksnyu'}
{'comment': 'i just need to know what was so inherently wrong with harris that over half the nation voted to reinstall a twice impeached felon to the highest office.', 'created': '2024-11-06 15:47:30', 'submission_id': '1gksnyu'}
{'comment': "Our country is filled with idiots. I didn't see this coming. Donald Trump should be completely unelectable, but people in our country are either low IQ, or bigoted, or brainwashed. I seriously don't have another explanation", 'created': '2024-11-06 17:00:28', 'submission_id': '1gksnyu'}
{'comment': 'We tried. Trump won on economy and immigration. Period.', 'created': '2024-11-06 17:28:22', 'submission_id': '1gksnyu'}
{'comment': 'Did we REALLY try, though? 2020 was an effort, this was just sad', 'created': '2024-11-06 18:33:03', 'submission_id': '1gksnyu'}
{'comment': 'As of right now, there are around 14 million LESS votes than the last election. \n\nDems are just stupid and skipped the election', 'created': '2024-11-06 19:33:31', 'submission_id': '1gksnyu'}
{'comment': "This is entirely the DNC's fault, not Kamala's. We didn't put nearly enough ads out there. Everywhere you looked on X and other sites, there were ads for DT. Even here on Reddit. TV channels? They flooded us with his crap.\n\n \nPresidential elections, in the age of the internet, are popularity contests and little more. You have to pick the most appealing candidate. We didn't do that picking Kamala, we picked her because she was Joe's VP. We should have gone outside the Biden cabinet ffs.", 'created': '2024-11-06 08:39:15', 'submission_id': '1gksnyu'}
{'comment': 'CNN just called PA for Trump.', 'created': '2024-11-06 08:10:13', 'submission_id': '1gksnyu'}
{'comment': '“Trying” would have been making Biden stand aside BEFORE the primaries. The DNC blew it', 'created': '2024-11-06 14:15:16', 'submission_id': '1gksnyu'}
{'comment': "Why apologize, it's a game of dig your own grave!Those who vote for it, will get exactly what they voted for!\n\nThose of us who knew the shit will hit the fan, we need to stick together, weather this somehow? Help each other out, be aware that the crazy still exsist. Just remind the crazies that it takes 2.5 to 3 yrs for the true policies to take affect.", 'created': '2024-11-06 14:48:01', 'submission_id': '1gksnyu'}
{'comment': "I'm gonna say it, I think that the race is over but considering the margin in some places, it might get interesting since the outstanding vote in places is large enough to make an impact. \n\nI can see the apathy was a factor.", 'created': '2024-11-06 15:38:39', 'submission_id': '1gksnyu'}
{'comment': 'No, we really didn’t try.', 'created': '2024-11-06 16:46:07', 'submission_id': '1gksnyu'}
{'comment': "Democrats fought hard despite the last minute candidate change. Sadly, many people did not vote, saying they dont' like the choices. They'll be the same ones complaining over the next 4 years, and have no one but themselves to blame. Thanks to everyone who did vote! Get involved in local and state politics, help bring candidates to the table for 2028. Time to buckle up, it's going to be a long 4 years.", 'created': '2024-11-06 18:04:38', 'submission_id': '1gksnyu'}
{'comment': "The progressive policies don't seem to work, people will choose the economy over anything including abortion.\nYou may argue there is job growth yeah that's true but price of everything is skyrocketing even insurance.\nProgressive run cities like SF are lawless, drugs and theft with no accountability.\nThat's not the image you want people to view you as, it's a slap on their faces to wake up and run for things that matter for the American people and stop with the non sense", 'created': '2024-11-06 18:42:24', 'submission_id': '1gksnyu'}
{'comment': 'Personally I don’t think Biden did enough for people’s pockets.', 'created': '2024-11-06 19:20:00', 'submission_id': '1gksnyu'}
{'comment': 'The Democratic Party must move towards the center-right on every issue but abortion.', 'created': '2024-11-06 19:28:59', 'submission_id': '1gksnyu'}
{'comment': '😭😭😭😭', 'created': '2024-11-06 21:00:35', 'submission_id': '1gksnyu'}
{'comment': 'She already conceded.', 'created': '2024-11-06 22:18:26', 'submission_id': '1gksnyu'}
{'comment': 'Always open primaries bb, with some independent dumbasses paid to be a super delegate. What do you poorly educated asshats think of the candidates on offer? Fascinating, here’s $1000.', 'created': '2024-11-07 01:10:40', 'submission_id': '1gksnyu'}
{'comment': 'Ladies and gentlemen it ain’t over till it’s over, and it sure isn’t yet', 'created': '2024-11-06 08:10:33', 'submission_id': '1gksnyu'}
{'comment': 'when you make social issues the face of your party your gonna turn off alot of people who want more common problems fixed', 'created': '2024-11-06 11:12:29', 'submission_id': '1gksnyu'}
{'comment': 'Joe would have won. I said it', 'created': '2024-11-06 11:47:59', 'submission_id': '1gksnyu'}
{'comment': '[Boy oh boy](https://youtu.be/KOaeDHeJ80I?feature=shared)', 'created': '2024-11-06 09:08:52', 'submission_id': '1gksnyu'}
{'comment': '[removed]', 'created': '2024-11-06 08:27:32', 'submission_id': '1gksnyu'}
{'comment': 'Man, maybe having the governor of Pennsylvania as vp would have helped win', 'created': '2024-11-06 12:04:33', 'submission_id': '1gksnyu'}
{'comment': 'I’m calling it right now I don’t care what anyone says he cheated and he will be exposed soon', 'created': '2024-11-06 16:39:52', 'submission_id': '1gksnyu'}
{'comment': 'Turns out heavily astroturfing Reddit as a campaign strategy and coercing the main stream media to hammer home “messages” and “stories” doesn’t move the needle with the democratic base.\n\nVoted for Harris and saw this coming a mile away. Hammer home policies not feelings and fear next time.', 'created': '2024-11-06 08:39:10', 'submission_id': '1gksnyu'}
{'comment': None, 'created': '2024-11-06 09:21:46', 'submission_id': '1gksnyu'}
{'comment': 'While we’re at it, let’s go ahead and thank Joe Biden and the current administration for hiding just how bad he was and not giving us a far shot.', 'created': '2024-11-06 12:04:01', 'submission_id': '1gksnyu'}
{'comment': 'Did we try? \n\nCalling half the country racist fascist maybe did not work', 'created': '2024-11-06 20:28:53', 'submission_id': '1gksnyu'}
{'comment': '[removed]', 'created': '2024-11-06 08:24:36', 'submission_id': '1gksnyu'}
{'comment': 'Should have had a primary let the people choose a candidate stop this hand pick shit', 'created': '2024-11-06 10:35:29', 'submission_id': '1gksnyu'}
{'comment': "VPs matter when you're 106 years old and have onset dementia. He's gonna take over at some point.", 'created': '2024-11-06 15:03:39', 'submission_id': '1gksnyu'}
{'comment': 'What matters more is not having 10 million fewer people from your party vote', 'created': '2024-11-06 19:34:18', 'submission_id': '1gksnyu'}
{'comment': "I feel like the celebrities on Harris's side probably lent their voice more than their wallet. Which is less than could be said for the few on Trump's side.", 'created': '2024-11-06 15:37:27', 'submission_id': '1gksnyu'}
{'comment': 'What I learned is turnout also doesn’t mean shit. The composition of turnout does. We were absolutely f**ked when it became apparent that Republicans were making up 34%, independents another 34%, and Democrats as 32% and turnout was still on the 2020 level.\n \nWhat I also learned that there really is a price on rights and dignity. And there might not be much point in fixing economic problems if you can’t be seen fixing it and it’s not 100% fixed before the next election.', 'created': '2024-11-06 20:15:16', 'submission_id': '1gksnyu'}
{'comment': '3. I thought we learned this a long time ago but, “it’s the economy stupid.”', 'created': '2024-11-06 23:35:43', 'submission_id': '1gksnyu'}
{'comment': 'By force', 'created': '2024-11-06 15:02:56', 'submission_id': '1gksnyu'}
{'comment': 'You are.', 'created': '2024-11-06 18:13:57', 'submission_id': '1gksnyu'}
{'comment': "Live your life. Better yourself. Vow that in four years, when we're doing this again, you'll have accomplished real personal goals. The MAJORITY of people who voted for Trump, and will vote for the next winner, are not on Reddit or Twitter, do not fixate on this day to day, and are mainly concerned with their general happiness and well-being each day. That's not to say tune out. But it's also to acknowledge that the most control you have in the universe resides with YOU, focused on you.", 'created': '2024-11-06 08:20:29', 'submission_id': '1gksnyu'}
{'comment': 'Same. I’m a lesbian disabled biracial woman. I can’t survive in this new america.', 'created': '2024-11-06 08:25:54', 'submission_id': '1gksnyu'}
{'comment': "Refocus your attention on something else that interests you. Pick up a book that you wanted to read that you never got around to reading. Pick up a new hobby like pinball in my case. Deactivate your social media for the time being and stay connected with your loved ones who can give you support in these hard times. I'm in the process of refocusing myself. I have kind of developed this routine of scouring news sites and other forums after getting off work. Lately added seem to become almost an addiction of a sort. A good book I would suggest if you have not read it yet is The Untethered Soul by Michael Singer. I plan on reading that again soon.", 'created': '2024-11-06 18:41:00', 'submission_id': '1gksnyu'}
{'comment': '[removed]', 'created': '2024-11-06 08:17:07', 'submission_id': '1gksnyu'}
{'comment': 'There is no future. The GOP will change the rules and guarantee federal power for themselves for decades. \n\nThe environment is doomed. \n\nThe American people chose a fascist autocracy with a dying ecosystem over a somewhat messy and inconvenient democracy.', 'created': '2024-11-06 12:24:57', 'submission_id': '1gksnyu'}
{'comment': "This is what worries me, there won't be a country left to fight. The Supreme Court is fucked already, the institutions will not hold. It will be another 50 years before anything can even change remotely.", 'created': '2024-11-06 09:12:49', 'submission_id': '1gksnyu'}
{'comment': 'Easy analysis:\n1. Trump found new voters in rural areas. Likely racial motivation. \n2. 20% move of Latins to Trump.\n3. 3% move of Black voters to Trump. Likely Black men.\n4. College age men in 2020 cared about environment and reproductive. They moved to Trump based on macho.', 'created': '2024-11-06 08:19:58', 'submission_id': '1gksnyu'}
{'comment': "You don't need to vote anymore.", 'created': '2024-11-06 08:27:23', 'submission_id': '1gksnyu'}
{'comment': 'Do you think it’ll be that bad under Trump? \nI’ve been very involved in this election. I know how bad Trump is and how bad his policies and politics are and that he is a failure in every aspect of the word and why but I’m in denial/shell shock right now…..how bad do you think it’ll get?', 'created': '2024-11-06 08:21:07', 'submission_id': '1gksnyu'}
{'comment': 'I can’t believe she lost the popular votes. Despite hearing high turnouts for early voting and Election Day she was still like 20 million short compared to Biden which is insane', 'created': '2024-11-06 13:26:11', 'submission_id': '1gksnyu'}
{'comment': 'Hang in there. It’s disappointing, but others are right there with you.', 'created': '2024-11-06 09:46:58', 'submission_id': '1gksnyu'}
{'comment': "To be clear, I think that Cheney dislikes Trump for a lot of reasons that you would loathe, chief among him that he's the antithesis to Cheney's war-hawk-iness that got a good high school friend of mine killed in Iraq. I think it was a calculated move to reclaim the conservative party in the direction of Bush circa 2004, and while I was fine with a few more votes, fuck Cheney.", 'created': '2024-11-06 08:17:52', 'submission_id': '1gksnyu'}
{'comment': "Isn't that a good thing? I don't think an endorsement from Dick Cheney is welcome lol.", 'created': '2024-11-06 08:16:52', 'submission_id': '1gksnyu'}
{'comment': 'That’s an endorsement, similarly Kamala having his war hawk daughter was a blatantly boneheaded decision. Voters want world peace, not finding ways to go to war', 'created': '2024-11-06 08:20:37', 'submission_id': '1gksnyu'}
{'comment': 'And yet, here we are.', 'created': '2024-11-06 08:19:28', 'submission_id': '1gksnyu'}
{'comment': "What a strange interpretation. Maybe the fact that Cheney did not endorse him, and the fact that his neocon daughter was a Harris campaign surrogate, was a good sign for Trump. \nCheney architected middle east wars that killed hundreds of thousands of people. Are we seriously saying Trump is worse than that? How many new wars did Trump get us into? He even tried to draw down troops in Syria, and the generals disobeyed and lied to him (I'm sure Cheney likes those generals).", 'created': '2024-11-06 08:24:20', 'submission_id': '1gksnyu'}
{'comment': "This right here! Sorry, two things are now out of play for Democrats...decency and women candidates for president. Hate to say it, but facts don't lie. Both are loosing strategies. Get a guy in there to start claiming Trump is fucking Ivanka and Baron, and let's win 2028!\n\nI know that sounds so crazy it sounds sarcastic, but I'm not being sarcastic. Like, he said they're eating the cats and dogs and sucked a mic stand on stage. Relatively, how is what I said not in the same ballpark?\n\nGO. LOWER.", 'created': '2024-11-06 22:53:38', 'submission_id': '1gksnyu'}
{'comment': 'Maybe young men don’t like being marginalized and forgotten about? Maybe don’t try and shame black men into voting for Kamala. Maybe rethink how important your citizens are compared to the illegal immigrants and extreme minorities? Maybe have an actual primary? \n\nAs much as I hate to say it, I think a female president of any color is another generation or two away. Dems are 0-2 now and getting worse for it.', 'created': '2024-11-06 13:55:30', 'submission_id': '1gksnyu'}
{'comment': 'And Latinos / Hispanics overwhelmingly voted for Trump...', 'created': '2024-11-06 08:13:17', 'submission_id': '1gksnyu'}
{'comment': 'I hope they have to suffer I will feel zero empathy', 'created': '2024-11-06 08:47:25', 'submission_id': '1gksnyu'}
{'comment': 'They are brainwashed and intimidated into obeying their husbands. The GOP idea of a perfect family is truly sickening.', 'created': '2024-11-06 08:36:06', 'submission_id': '1gksnyu'}
{'comment': "Stop blaming women, it's men who won't vote for a woman.", 'created': '2024-11-06 08:31:03', 'submission_id': '1gksnyu'}
{'comment': "How is it that we are blaming women in this moment of misogyny? Really?\n\nYou know there's a whole other gender as well? How did they vote?\n\nChallenge for 2025: Start having baseline expectations of decency from men.", 'created': '2024-11-06 09:32:10', 'submission_id': '1gksnyu'}
{'comment': "We're past that. We had a choice between cake and death, and 75+ million chose death for all of us.", 'created': '2024-11-06 13:49:36', 'submission_id': '1gksnyu'}
{'comment': "I believe based on how the right to abortion won in many states that Trump also won, that they did show you and vote. It's just not really that popular of any issues anymore. The Vibeconomy is very poor, and voters are generally dumb. Everything is way more expensive, but we don't make anymore money, while the government is saying the economy is doing great. Well it doesn't feel that way, and while Republicans are statistically worse for the economy as a whole, they also are not out of touch with the vibes, and voters feel that they are better with the economy somehow.", 'created': '2024-11-06 12:24:30', 'submission_id': '1gksnyu'}
{'comment': "This was their game, and honestly what they're banking on to cement power. Josh Hawley was talking about this after the Dobbs decision, predicting flight of Democrats into blue states. Doing this will effectively gerrymander the EC and Senate", 'created': '2024-11-06 16:02:08', 'submission_id': '1gksnyu'}
{'comment': 'vermont maybe? i don’t know but i’m thinking about the same thing lol… “what state will be safest for me to move to” 🫠', 'created': '2024-11-06 14:20:57', 'submission_id': '1gksnyu'}
{'comment': 'I’m a minor living in Florida, so I’m pretty much fucked. I’m thinking as an adult I move to California, Oregon, Washington, or Colorado. Maybe a northeastern state but those get really cold. Idk, I think California is mt best bet as long as I can get a good job.', 'created': '2024-11-06 14:35:43', 'submission_id': '1gksnyu'}
{'comment': "I'm in Illinois. Blue state. Safe as well.", 'created': '2024-11-06 19:23:08', 'submission_id': '1gksnyu'}
{'comment': 'Huge loss of Latins and Black men.', 'created': '2024-11-06 08:23:18', 'submission_id': '1gksnyu'}
{'comment': 'We saw all these huge lines and assumed it was *our side*.\n\nWe were wrong.', 'created': '2024-11-06 11:32:14', 'submission_id': '1gksnyu'}
{'comment': "I was gonna say i remember seeing a lot less to reach out and vote this time around.... i feel we lost less because of Republicans, but more so that the democratic party or liberals in general are so divided and can't even agree on progressive policies. To be honest we made it through four years... we can do it again.... maybe.", 'created': '2024-11-06 08:28:05', 'submission_id': '1gksnyu'}
{'comment': 'My precinct had 40% turnout. Pathetic.', 'created': '2024-11-06 12:11:11', 'submission_id': '1gksnyu'}
{'comment': 'Don’t blame the people, blame the party for not giving people a candidate they’re forced could believe in and turn out for.', 'created': '2024-11-06 08:20:19', 'submission_id': '1gksnyu'}
{'comment': '[removed]', 'created': '2024-11-06 08:53:20', 'submission_id': '1gksnyu'}
{'comment': 'What can we do? All that’s left is to hope we have minimal damage over the next four years and vote like crazy in the midterms. \n\nMy husband & I are surrounded by Trump supporters in our neighborhood & in his family, and we’ve decided the only influence we have is creating a mixed audience with our existence making people uncomfortable when they talk about Trump as if all of us agree.', 'created': '2024-11-06 13:53:56', 'submission_id': '1gksnyu'}
{'comment': 'A recurring nightmare', 'created': '2024-11-06 13:50:10', 'submission_id': '1gksnyu'}
{'comment': 'Let’s stage an insurrection! Just kidding. We’re not morons.', 'created': '2024-11-06 12:07:13', 'submission_id': '1gksnyu'}
{'comment': 'Calling 50% of your country stupid because they voted differently than you is mega cringe. Grow up a little.', 'created': '2024-11-06 08:50:55', 'submission_id': '1gksnyu'}
{'comment': "I think she didn't hit inflation enough.", 'created': '2024-11-06 09:29:13', 'submission_id': '1gksnyu'}
{'comment': 'Apathy from independents, non voters, and republicans (Trump supporters or not) has always been our biggest hurdle. \n\nWhile some will argue that the world will keep spinning & our lives will be largely the same, but for many marginalized groups, their lives will now be at a heightened risk every day.', 'created': '2024-11-06 13:39:58', 'submission_id': '1gksnyu'}
{'comment': 'Lmao', 'created': '2024-11-06 08:59:29', 'submission_id': '1gksnyu'}
{'comment': 'Even worse are the responses from conservatives towards those grieving. I’ve been bombarded with death threats and people telling me to kill myself, all because I openly care about other people.', 'created': '2024-11-06 15:32:34', 'submission_id': '1gksnyu'}
{'comment': 'No difference in outcome.', 'created': '2024-11-06 08:23:38', 'submission_id': '1gksnyu'}
{'comment': ">and see what we’ve done to be so unattractive to the middle.\n\nIt's not the Democrats fault. \n\nThe Republican leaders weaponized rhetoric. It's unfortunate there were no safeguards built into our Constitution for that.", 'created': '2024-11-06 08:51:12', 'submission_id': '1gksnyu'}
{'comment': "It's not the middle. It's not turning out the left.\n\nBe better, Dem establishment. Assuming you're still alive in 4 years.", 'created': '2024-11-06 09:19:23', 'submission_id': '1gksnyu'}
{'comment': "Some of it is ground game. Dems don't reach out as well as the GOP.", 'created': '2024-11-06 10:33:17', 'submission_id': '1gksnyu'}
{'comment': "It wasn't the party. It was the electorate. Need to come to grips with the voters and there were a lot of them.", 'created': '2024-11-06 08:32:40', 'submission_id': '1gksnyu'}
{'comment': "Stop blaming Biden. Don't blame the Democratic Party. \n\nHarris ran a very good campaign. \n\nThe problem is that our system of laws is not designed to protect us from a party which weaponizes rhetoric using fascist strategies.", 'created': '2024-11-06 09:21:02', 'submission_id': '1gksnyu'}
{'comment': 'I disagree. \n\nHarris loss analysis:\n1. Trump found new voters in rural areas. Likely racial motivation. \n2. 20% move of Latins to Trump.\n3. 3% move of Black voters to Trump. Likely Black men.\n4. College age men in 2020 cared about environment and reproductive.\xa0 They moved to Trump based on macho.', 'created': '2024-11-06 08:22:23', 'submission_id': '1gksnyu'}
{'comment': 'It is the legacy he chose; and the worst is, I imagine he thinks he could have won if it had been him.', 'created': '2024-11-06 08:14:10', 'submission_id': '1gksnyu'}
{'comment': 'I hope his legacy is ruined for all time for this. I hope he spends his last years in shame', 'created': '2024-11-06 08:15:08', 'submission_id': '1gksnyu'}
{'comment': 'If there was true justice, he would have been in jail on January 7, 2021.', 'created': '2024-11-06 09:56:50', 'submission_id': '1gksnyu'}
{'comment': 'To Trump I guess.', 'created': '2024-11-06 18:18:35', 'submission_id': '1gksnyu'}
{'comment': "The idiots have spoken. They see reflected in him, themselves. That includes the illiteracy and racism. The misinformation didn't help and gullibility being what it is didn't either. Sad day, but I have 5 hours of my local morning show (KQ Morning Show in case anyone else wants to join in) to catch up on so I at least have those knuckleheads to keep me smiling today. I'm behind 7 audiobooks in my Audacy too so I can escape to my imagination for the next year. Well, I can't go back to being indifferent politically so provided we continue to have elections, I will use my voice loudly from now on. This just reinforced why I'm so reclusive. Morons everywhere. 💙", 'created': '2024-11-06 17:56:51', 'submission_id': '1gksnyu'}
{'comment': 'This is the answer, 14 million fewer votes', 'created': '2024-11-06 21:03:18', 'submission_id': '1gksnyu'}
{'comment': ">This is entirely the DNC's fault, not Kamala's.\n\nNo.\n\nThis is entirely the GOP's fault. They weaponized rhetoric. And unfortunately, our Constitution doesn't have protections against it.", 'created': '2024-11-06 08:59:58', 'submission_id': '1gksnyu'}
{'comment': 'No its because 40% of registered voters never vote!', 'created': '2024-11-06 09:10:01', 'submission_id': '1gksnyu'}
{'comment': 'It’s over', 'created': '2024-11-06 08:14:18', 'submission_id': '1gksnyu'}
{'comment': 'It ain’t over till it’s over, and it’s over', 'created': '2024-11-06 08:16:20', 'submission_id': '1gksnyu'}
{'comment': 'It wouldn’t have. At all.', 'created': '2024-11-06 14:20:39', 'submission_id': '1gksnyu'}
{'comment': 'This "Harris didn\'t campaign on policy" idea is complete BS. She absolutely hammer home concrete policies on reproductive rights, price gouging, boons for young families and first-time homeowners, capital gains taxes and more.\n\nIf anything, the right only has feelings and fear. Not a single actual policy proposal that isn\'t just "ban/kill/deport yucky thing."', 'created': '2024-11-06 11:38:57', 'submission_id': '1gksnyu'}
{'comment': 'Well there wont be a next time, the US is about to shift to a monarchy', 'created': '2024-11-06 09:11:01', 'submission_id': '1gksnyu'}
{'comment': 'propaganda works too well', 'created': '2024-11-06 09:38:27', 'submission_id': '1gksnyu'}
{'comment': 'name some policies HARRIS implemented that ruined america please', 'created': '2024-11-06 13:05:31', 'submission_id': '1gksnyu'}
{'comment': 'Trump will *never* relinquish access to the spotlight. His celebrity is the power that keeps him alive.', 'created': '2024-11-06 16:07:28', 'submission_id': '1gksnyu'}
{'comment': '15 million', 'created': '2024-11-06 22:49:44', 'submission_id': '1gksnyu'}
{'comment': 'She raised $1B. Far out-raising Trump in both small and large donors. The trouble is that money spend didn’t motivate turnout.\xa0', 'created': '2024-11-06 16:42:27', 'submission_id': '1gksnyu'}
{'comment': 'The police are helping escort you back to your abusive ex', 'created': '2024-11-06 19:57:46', 'submission_id': '1gksnyu'}
{'comment': 'How? When there are forces working to dismantle democracy in this country. How are we going to vote Trump or Vance out then?', 'created': '2024-11-06 08:35:27', 'submission_id': '1gksnyu'}
{'comment': 'Great advice, thank you.', 'created': '2024-11-06 08:26:13', 'submission_id': '1gksnyu'}
{'comment': 'Agreed. But we can also aim for midterm. Grab back Senate and House - metaphorically handcuff Trump and Vance. Then vote them out.', 'created': '2024-11-06 18:01:11', 'submission_id': '1gksnyu'}
{'comment': 'Oh yeah any benefits you get are done, same for vets they will cut deep into it. They will cancel you SS your medicare and medicaid veterans benefits', 'created': '2024-11-06 09:01:57', 'submission_id': '1gksnyu'}
{'comment': 'I’m really hoping to come into some money so I can leave the country. There’s no way I’m mentally surviving another 4 years under trump :/', 'created': '2024-11-06 08:34:24', 'submission_id': '1gksnyu'}
{'comment': '[removed]', 'created': '2024-11-06 08:52:28', 'submission_id': '1gksnyu'}
{'comment': 'Explain how it’ll be at a cheaper cost', 'created': '2024-11-06 08:18:00', 'submission_id': '1gksnyu'}
{'comment': 'Trump doesn’t care about climate or the environment and It’s gonna be scary to see if he will undo all the progress we’ve made.', 'created': '2024-11-06 13:47:01', 'submission_id': '1gksnyu'}
{'comment': 'If that comes to pass we gotta fight to make sure it doesn’t happen. Thats all we can do', 'created': '2024-11-06 15:20:55', 'submission_id': '1gksnyu'}
{'comment': "The institutions failed. That's why he was even on the ballot.", 'created': '2024-11-06 13:35:50', 'submission_id': '1gksnyu'}
{'comment': '>1. Trump found new voters in rural areas\n\nNo, he just turned out his 2020 voters better. Remember, he got 73 million votes in 2020. Biden got 81. Guess who got a lot less than 2020?', 'created': '2024-11-06 08:41:12', 'submission_id': '1gksnyu'}
{'comment': 'Most important issue was the economy. People feel the country is not going in right direction and Biden Admin could not over come this and majority of people wanted a change and think trump will do this.', 'created': '2024-11-06 08:40:01', 'submission_id': '1gksnyu'}
{'comment': "Inflation was the driver. Just like COVID was Trump's undoing in 2020.", 'created': '2024-11-06 09:19:11', 'submission_id': '1gksnyu'}
{'comment': 'Not sure how accurate it is but apparently trump gained with women too from 2020', 'created': '2024-11-06 08:56:04', 'submission_id': '1gksnyu'}
{'comment': "Shorter: The majority of our electorate are shitty people. A narrow majority, but a majority.\n\nThey're also idiots. This isn't any normal bigot. They've elected a king.", 'created': '2024-11-06 13:36:37', 'submission_id': '1gksnyu'}
{'comment': 'Why did Trump get so much better with Latinos?', 'created': '2024-11-06 13:22:29', 'submission_id': '1gksnyu'}
{'comment': 'List is spot on.', 'created': '2024-11-06 13:49:39', 'submission_id': '1gksnyu'}
{'comment': 'Ding ding ding! \n\nDemocrats do not understand the Latino vote despite the fact that they tell Latinos how to vote.', 'created': '2024-11-06 17:07:31', 'submission_id': '1gksnyu'}
{'comment': 'I mean, they’ll most likely repeal the Affordable Care Act this go around - as both Trump and Johnson have highlighted it as a priority. That’ll result in at least 30 million Americans losing their health care coverage, including many that voted for Trump. Very, very rough.', 'created': '2024-11-06 08:27:25', 'submission_id': '1gksnyu'}
{'comment': 'How bad will it get? are you serious right now, people are going to die because of this, women are going to die! My advice to all women do not get pregnant no matter what', 'created': '2024-11-06 08:49:51', 'submission_id': '1gksnyu'}
{'comment': "My fear is that the more moderate Republicans are going to be out of his administration, and they will be all Trump true believers. He is also older and angrier. He has the house and senate, and doesn't have that reigning him in. Even many of the anti-trump Senate and Representatives got ousted.", 'created': '2024-11-06 08:30:56', 'submission_id': '1gksnyu'}
{'comment': 'I mean, we lost Roe v Wade and had an insurrection last time.', 'created': '2024-11-06 08:26:04', 'submission_id': '1gksnyu'}
{'comment': 'Think of it this way, the last time Trump was in power, half a million citizens died just because of his incompetence alone. Last time we just had an incompetent moron. Now we have a hateful, evil, revenge seeking moron head of a Party that is taken the majority of the Senate, may very well take the majority of the House and force more conservative justices. Anyone who might have offered a nonpartisan involvement in the party is going to be replaced by loyalists to the "Great MAGA Cause."\n\nIt\'s going to be god awful.', 'created': '2024-11-06 09:23:44', 'submission_id': '1gksnyu'}
{'comment': "I really hope you were just a sheltered kid from 2016-2020, because it's not even that he's conservative or what have you. The man is a stupid school yard bully who has never had to change or grow up in any meaningful fashion from when he was five years old. And now he's gonna go on a revenge tour against anyone who opposed him politically. It's gonna be bad.", 'created': '2024-11-06 08:25:35', 'submission_id': '1gksnyu'}
{'comment': 'As a lesbian gen z woman I’m terrified I no longer will be able to love who I love. As well as forced to carry a rape baby in that unfortunate circumstance.', 'created': '2024-11-06 08:27:34', 'submission_id': '1gksnyu'}
{'comment': 'The dude gets access to 6,000 nukes. Think about that.', 'created': '2024-11-06 08:31:49', 'submission_id': '1gksnyu'}
{'comment': "Republicans can finally gut old people's social security like they've always wanted. Many more women will die from doctors withholding medical care for pregnancies. Birth control and IVF could be banned. Mass deportation will cost us a fortune and separate families. Gay and trans people's rights will be stomped on. I expect it's gonna be a real shit show.", 'created': '2024-11-06 09:38:55', 'submission_id': '1gksnyu'}
{'comment': 'The Supreme Court is gone for many decades', 'created': '2024-11-06 13:21:27', 'submission_id': '1gksnyu'}
{'comment': 'I think in the short term depending on who you are it’ll be better. With control of the house and senate trump will be able to pass bills. The long run though is gonna be tough because he’s gonna be able to appoint two young Supreme Court justices for life terms.', 'created': '2024-11-06 08:23:32', 'submission_id': '1gksnyu'}
{'comment': '[removed]', 'created': '2024-11-06 08:43:12', 'submission_id': '1gksnyu'}
{'comment': 'the only REAL crisis he faced was Covid. otherwise nothing really big happened and he got to tweet all day (i think they averaged it to 27 tweets per day he was in office). our Covid deaths could have been way lower if he just took it serious at the start and said “social distance and wear a mask. this is an airborne virus and is deadly”\n\nbut he couldn’t do that. \n\nmy point being, it’s fine to put your alcoholic uncle who has had 4 martinis in the drivers seat when you are barreling down the freeway in a straightaway. he doesn’t need to do anything. if the freeway curves though… 🫣', 'created': '2024-11-06 09:52:12', 'submission_id': '1gksnyu'}
{'comment': 'In 4 years, we’ll vote for someone else and your life will remain 99.99% the same. Don’t be so dramatic.', 'created': '2024-11-06 08:50:15', 'submission_id': '1gksnyu'}
{'comment': 'Hanging in there. Thanks for the kind words internet stranger.', 'created': '2024-11-06 14:23:41', 'submission_id': '1gksnyu'}
{'comment': None, 'created': '2024-11-06 08:21:08', 'submission_id': '1gksnyu'}
{'comment': 'Dick Cheney may be awful person, but when he says someone is bad, you should listen.', 'created': '2024-11-06 08:41:54', 'submission_id': '1gksnyu'}
{'comment': 'Men aren’t being marginalized AT ALL. That this is a “narrative” which is not tethered to reality is indicative of a problem; It’s not the actual problem. The problem is a broken political system of money and lies and a corporate media of profit and obeisance to oligarchical power. These are not things Democrats can fix (they don’t actually want to). The problem is not poor messaging. The problem is late stage capitalism and the democrats will never escape it as that is not the game they are playing.', 'created': '2024-11-06 15:03:34', 'submission_id': '1gksnyu'}
{'comment': 'Get ready for another round of "but I didn\'t think he\'d deport *my* Mexican spouse!" or "I didn\'t think he\'d deport *me*!"', 'created': '2024-11-06 09:37:20', 'submission_id': '1gksnyu'}
{'comment': 'Yeah. You can complain about this, or you can win elections. Dems have a choice.', 'created': '2024-11-06 08:14:32', 'submission_id': '1gksnyu'}
{'comment': 'Sexism is rampant across race and ethnicity. I think Democrats think that non-white equals liberal, when it does not.', 'created': '2024-11-06 17:15:57', 'submission_id': '1gksnyu'}
{'comment': 'Foosgonewild edgelords', 'created': '2024-11-07 06:08:16', 'submission_id': '1gksnyu'}
{'comment': 'Ah yes let’s blame literally every demographic before blaming the campaign and messaging.', 'created': '2024-11-06 08:49:49', 'submission_id': '1gksnyu'}
{'comment': '[removed]', 'created': '2024-11-06 08:48:02', 'submission_id': '1gksnyu'}
{'comment': "It's both lmao\xa0\n\n\nMen voted against a woman and women voted against a woman. Internalized misogyny is clear as day here.\xa0", 'created': '2024-11-06 08:32:54', 'submission_id': '1gksnyu'}
{'comment': 'Joe would have done better', 'created': '2024-11-06 11:47:48', 'submission_id': '1gksnyu'}
{'comment': "Because a significant amount of women, especially white women, in this country continuously choose to vote against their own better interest. That's why it's particularly upsetting.", 'created': '2024-11-06 14:00:44', 'submission_id': '1gksnyu'}
{'comment': "Trump's totals dropped by like 2M from 2020. \n\nKamala's number dropped from 61M for Biden to only 47M for KamalaI.\n\nI would argue that it was the 14M Democrats who decided to stay home yesterday made that decision for us. Sadly it looks like this was nothing short of your garden variety misogyny within the democratic party.", 'created': '2024-11-06 17:46:42', 'submission_id': '1gksnyu'}
{'comment': 'Unemployment is at an all time low as is inflation. It’s all the optics.\xa0', 'created': '2024-11-06 20:26:05', 'submission_id': '1gksnyu'}
{'comment': 'Afraid so. I might get some flack for this, but I believe a lot of latino/black men feel empowered by Trump\'s projection of "masculinity" and "dominance". Better to vote for that than for a woman.', 'created': '2024-11-06 08:25:08', 'submission_id': '1gksnyu'}
{'comment': 'I hate saying this but it’s time to stop playing politics through the lens of race. As Carville said, it’s the economy stupid.', 'created': '2024-11-06 08:53:16', 'submission_id': '1gksnyu'}
{'comment': '\\^\\^ This is exactly the kind of mentality that led to this loss. Sometimes, in life, you have to swallow the nasty pill and make the best out of a bad situation. But some Dem voters (as well as so-called "independents") are just too self-important and attached to their morals or self-interests to understand that perhaps voting for the lesser evil is actually the good and reasonable thing to do.', 'created': '2024-11-06 08:23:07', 'submission_id': '1gksnyu'}
{'comment': 'I liked Kamala but I really questioned if she was going to win it.', 'created': '2024-11-06 08:32:20', 'submission_id': '1gksnyu'}
{'comment': 'The die is cast for the next two years. We have to live with the mess, and hope for the best until the inevitable blue wave in 2026.', 'created': '2024-11-06 17:14:56', 'submission_id': '1gksnyu'}
{'comment': "Clearly they didn't fucking learn, so I have every right to call them stupid.", 'created': '2024-11-06 08:58:29', 'submission_id': '1gksnyu'}
{'comment': 'Nah, when people vote for a man who literally tried to coup the government, you can call them stupid.', 'created': '2024-11-06 09:08:39', 'submission_id': '1gksnyu'}
{'comment': 'Amongst the most popular google search on election day in America was ‘is Biden still running’. Americans are misinformed troglodytes who don’t mind a man who attempted a coup 4 years ago', 'created': '2024-11-06 11:18:11', 'submission_id': '1gksnyu'}
{'comment': 'Don’t forget strong Trump support from GenZ, and Latino men.', 'created': '2024-11-06 18:22:30', 'submission_id': '1gksnyu'}
{'comment': "By clinging onto the race he made himself a laughing stock and didn't give Kamala/Any other person enough time to build a platform. I believe the party should've also went with someone other than Kamala but it is what it is.", 'created': '2024-11-06 08:25:14', 'submission_id': '1gksnyu'}
{'comment': 'Disagree. Would have given more time to find a suitable candidate. Harris was never going to win, 2020 should have been an indicator of that.', 'created': '2024-11-06 09:28:03', 'submission_id': '1gksnyu'}
{'comment': 'They weaponized Kamala’s words against her. It was too easy. I mean, the first time my wife saw Kamala speak the words about every immigrant inmate getting free gender reassignment surgery, she was like, “it’s obviously fake, right?”\n\nNo. She said that. It’s bonkers. We literally died on so many dumb hills.\xa0', 'created': '2024-11-06 13:25:09', 'submission_id': '1gksnyu'}
{'comment': 'I dont know. \xa0I think we lost our mind out there for a little and were too late in walking it back.\xa0', 'created': '2024-11-06 08:59:21', 'submission_id': '1gksnyu'}
{'comment': "Technically the electoral college, but it won't save us.", 'created': '2024-11-06 12:21:07', 'submission_id': '1gksnyu'}
{'comment': 'Stop making excuses. She did not. And I voted for her, but she didn’t have enough time and that is Bidens fault. You have to appeal to EVERYONE and she didn’t do that. It’s her fault, bidens fault, and the DNC’s fault.', 'created': '2024-11-06 14:12:17', 'submission_id': '1gksnyu'}
{'comment': '[removed]', 'created': '2024-11-06 08:26:00', 'submission_id': '1gksnyu'}
{'comment': "I don't think so. \n\nHarris ran a very good campaign. \n\nNo candidate could have competed against Trump with the media sane washing him, while heavily criticizing Democrats. With MAGA blindly following him. With swing voters unable to tell the difference between the lies from the right and what Democrats offer. \n\nAnd with so many people still believing Republicans when it comes to who is best for the economy. That lie was started decades ago.", 'created': '2024-11-06 09:24:59', 'submission_id': '1gksnyu'}
{'comment': 'He doesn’t give a shit. They all just have mass egos. He subsided his, but it was too late.', 'created': '2024-11-06 08:30:38', 'submission_id': '1gksnyu'}
{'comment': 'Maybe the DNC should stop trying to appeal to embarressed Nazis and appeal to them then?', 'created': '2024-11-06 09:20:13', 'submission_id': '1gksnyu'}
{'comment': 'You’re telling me it wouldn’t have swayed Pennsylvania?', 'created': '2024-11-06 14:21:12', 'submission_id': '1gksnyu'}
{'comment': 'It took her weeks to take a policy stance on half the shit. Hammering home reproductive rights when she wouldn’t have been able to do anything about it without a super majority lmao', 'created': '2024-11-06 12:43:50', 'submission_id': '1gksnyu'}
{'comment': 'O no I’m so scared. Last time everyone was moving to Canada now its democracy is over.', 'created': '2024-11-06 12:42:25', 'submission_id': '1gksnyu'}
{'comment': "Come on. It didn't happen in 2020. Dems just need to better next time.", 'created': '2024-11-06 09:31:06', 'submission_id': '1gksnyu'}
{'comment': 'Hate* is what keeps him alive', 'created': '2024-11-06 17:03:19', 'submission_id': '1gksnyu'}
{'comment': 'No I mean when he dies. Hopefully sometime after 2 years.', 'created': '2024-11-06 16:08:01', 'submission_id': '1gksnyu'}
{'comment': 'At the rate he’s going, in 6 months, they can give him a prop set of the White House and a play phone and he won’t know the difference.', 'created': '2024-11-06 20:43:30', 'submission_id': '1gksnyu'}
{'comment': 'Some states are still counting, so I was shooting low. 😔', 'created': '2024-11-06 23:06:35', 'submission_id': '1gksnyu'}
{'comment': 'Elon bought twitter to make this happen.', 'created': '2024-11-06 20:23:38', 'submission_id': '1gksnyu'}
{'comment': "I lived through the Bush years, when it was just an assumption the guy wouldn't win a second term, because He Just Shouldn't. Look, say what you want out Trump, and I fucking HATE him, but my high school buddy died on an unnamed road in Iraq because of Bush. Many, many, many people were killed or maimed because of his unnecessary war-mongering. \n\nSo when Kerry came along, it was just an assumption: vote for Kerry, because you hate Bush. Except, as we all learned, on a devastating election day in 2004, you simply don't win elections this way. It feels like a lifetime ago, but if I go back in time, it really does feel reminiscent of that, down to your language - dismantling democracy - that I was saying too. I mean, CONSIDER the Bush legacy - fucking war atrocities, torture, etc. This is dark, dark shit. \n\nIf you don't want democracy to go away, the first step is to not operate from the idea that You Are Owed Votes because you're right. How are we going to vote Trump and Vance out? By providing a candidate people actually want to vote for, who speaks to the problems that concern people who vote.", 'created': '2024-11-06 08:48:08', 'submission_id': '1gksnyu'}
{'comment': 'You’ve been on the internet too long. Go to bed.', 'created': '2024-11-06 08:51:38', 'submission_id': '1gksnyu'}
{'comment': 'You\'re already going to lose. \n\nPeople WANT Trump to work his magic and fix "everything." \n\nIf you swoop in and fuck up his attempts, you will only lose harder. I learned from the Bush years: you ONLY win by having a candidate worth voting for; NOT by getting people to vote against someone else.', 'created': '2024-11-07 06:27:13', 'submission_id': '1gksnyu'}
{'comment': 'They can’t, there was no plan to begin with. Also not accounting if you’re not white, straight, and male!', 'created': '2024-11-06 08:27:01', 'submission_id': '1gksnyu'}
{'comment': 'Yep only 65 million for her. He went up to 73 or 75', 'created': '2024-11-06 12:38:25', 'submission_id': '1gksnyu'}
{'comment': 'I do think that we have reached the point in late stage capitalism where things just get worse and worse for the Average Joe every year. So I think incumbent candidates will do worse every election cycle because people desperately want a magic bullet.\n\nUnfortunately I think the damage of this presidency will be cataclysmic.', 'created': '2024-11-06 12:08:34', 'submission_id': '1gksnyu'}
{'comment': 'That\'s part of it. The majority of the electorate didn\'t think democracy was worth it. And they sure didn\'t think LGBTQ+ rights, the dignity of Puerto Rico, or women\'s bodily autonomy was worth it.\n\nOur priorities are very different. I prefer ours. We are good people. We sometimes go a little overboard, but none of us would have voted for the people who called Puerto Rico "a garbage island."', 'created': '2024-11-06 13:38:24', 'submission_id': '1gksnyu'}
{'comment': 'And now I root for a historic depression', 'created': '2024-11-06 08:48:51', 'submission_id': '1gksnyu'}
{'comment': 'The most important issue is the one no one will bring up: Harris is a woman. I fucking hate that that’s the case.', 'created': '2024-11-06 14:15:32', 'submission_id': '1gksnyu'}
{'comment': 'I\'ve never understood this argument. Trump was already in office once. If he was so great, why didn\'t he "fix" it. The economy is the way it is because of covid. Did people forget about the global pandemic????? I\'m genuinely confused', 'created': '2024-11-06 15:07:08', 'submission_id': '1gksnyu'}
{'comment': "I am one of the americans who will likely (unless he completely blows up the economy with his stupid tariffs or starts an all out civil war) do much better financially under a Trump admin. That said, I cannot fathom how people put that over everything else--the scales were clearly weighted in one direction, and it seems like most folks just don't care.", 'created': '2024-11-06 15:25:39', 'submission_id': '1gksnyu'}
{'comment': 'And the media. Every headline everyday has been about trump since 2015.', 'created': '2024-11-06 10:31:14', 'submission_id': '1gksnyu'}
{'comment': 'Literally insane that happened', 'created': '2024-11-06 10:53:37', 'submission_id': '1gksnyu'}
{'comment': 'Yes, he did. Because misogyny can be internalized. A lot of women who are in abusive relationships still have Stockholm syndrome and make excuses for their abusers. Those ads aimed at those women didn\'t seem to help. \n\nI LOVE HARRIS. Unqualified. She is great. Would have been an amazing president.\n\nBut I feared this would happen if Biden was unseated. I actually think, having watched tonight, that it was so close Biden might have won. Internalized misogyny is that strong.\n\nI think a lot of America voted against not only a woman but a woman of color, and I suspect it is the woman part more than the "of color" part that was the problem.', 'created': '2024-11-06 13:41:49', 'submission_id': '1gksnyu'}
{'comment': 'Illegal immigration and border security', 'created': '2024-11-06 20:28:14', 'submission_id': '1gksnyu'}
{'comment': "That's not just 30 million Americans losing their health care coverage. Repealing the ACA fully and removing the requirement that pre-existing conditions cannot be used to deny coverage is a monumental blow to _EVERY_ American. \n\nThere are a ton of ways this is absolutely terrible for a lot of people, unfortunately. And there are basically no guardrails left. The incoming GOP administration will be full of yes men. The Senate is only hobbled by the filibuster, which is a rules-based procedure rather than something enshrined in process and can be easily rewritten at the start of the new Senate.\n\nUltimately, one's local government has a much bigger day-to-day impact, but the federal and national consequence will be earth shattering.", 'created': '2024-11-06 08:48:59', 'submission_id': '1gksnyu'}
{'comment': 'I can attest to the stupidity of Trump voters. At least 60% voted yes on a question on the ballet asking their representative to vote for a single payer health plan. They do not connect what Trump stands for at all, the disconnects between ballot questions in Massachusetts and Trump voters was stupifying as I was counting votes in a town that is roughly 50 50. We have a problem with uneducated people and Massachusetts has one of the best education systems.', 'created': '2024-11-06 08:38:47', 'submission_id': '1gksnyu'}
{'comment': 'The only thing stopping them from doing this is the midterm election. A reinvigorated Democratic party + 30 million boomers and working class Americans is enough to flip congress. \n\nMy guess is that they will repeal it after the midterm election if they win.', 'created': '2024-11-06 08:54:55', 'submission_id': '1gksnyu'}
{'comment': 'and all the ones who voted Trump will be the first to whine about it when they lose healthcare.', 'created': '2024-11-06 09:54:05', 'submission_id': '1gksnyu'}
{'comment': 'I know I’m just wanting to hear other peoples opinion because like I said I’m shocked.', 'created': '2024-11-06 08:50:25', 'submission_id': '1gksnyu'}
{'comment': "Like they won't come for birth control next.", 'created': '2024-11-06 11:24:26', 'submission_id': '1gksnyu'}
{'comment': 'They are going to pass some very pro-Natalist shit. I wouldn’t be surprised if the retirement age gets raised for childfree people, if they increase our taxes, and if they legitimately try to diminish our voting power.', 'created': '2024-11-06 12:10:13', 'submission_id': '1gksnyu'}
{'comment': 'Get your tubes tied and maybe freeze some eggs in case you have regrets later.', 'created': '2024-11-06 13:03:56', 'submission_id': '1gksnyu'}
{'comment': 'And the reversal of affirmative action.', 'created': '2024-11-06 08:48:14', 'submission_id': '1gksnyu'}
{'comment': 'More than a million died.', 'created': '2024-11-06 19:21:27', 'submission_id': '1gksnyu'}
{'comment': 'I agree, I know every bad thing about all his failures and every one who wards against him I’m just telling myself he won’t be that bad because I’m simply in disbelief that he not only has the president seat but every aspect of the government too.', 'created': '2024-11-06 08:28:42', 'submission_id': '1gksnyu'}
{'comment': 'I’m also a lesbian Gen Z woman, and I feel exactly the same way.', 'created': '2024-11-06 14:32:22', 'submission_id': '1gksnyu'}
{'comment': 'Jesus….at this point smack me on the head so I can live in denial for the next four years.', 'created': '2024-11-06 08:32:54', 'submission_id': '1gksnyu'}
{'comment': 'How many do you think will be used?', 'created': '2024-11-06 08:49:39', 'submission_id': '1gksnyu'}
{'comment': 'The mass deportation he has said many times is priority #1 and happens on day 1.\n\nEven under the best of circumstances and with the best experts, trying to move 20 million people from one country to another is a Herculean task that will inevitably be filled with humanitarian disaster after disaster.', 'created': '2024-11-06 13:06:54', 'submission_id': '1gksnyu'}
{'comment': 'Have we not been talking about the aftermath of his first term for four years now? Even then he had a long-lasting effect. The US has not yet fully recovered from the first Trump term, let alone a second.', 'created': '2024-11-06 10:26:02', 'submission_id': '1gksnyu'}
{'comment': 'When a candidate wins all aspects of an election it is never the same after.', 'created': '2024-11-06 08:50:54', 'submission_id': '1gksnyu'}
{'comment': "You think there'll be an election in four years?", 'created': '2024-11-06 09:17:37', 'submission_id': '1gksnyu'}
{'comment': 'As if the Supreme Court will sit on its hands between now and then. And for a generation afterwards when Alito and Thomas retire within the next four years and are replaced by 40 year old hard right conservatives who will be on the bench until they are 85 themselves', 'created': '2024-11-06 15:11:26', 'submission_id': '1gksnyu'}
{'comment': "Wait wait. Jesus, don't have me defending Trump on the night he won a second election, but I just read this article, and it basically says: China came to believe an attack was imminent; Milley told them it wasn't. And he reassured all in the chain of command to respect the chain of command.", 'created': '2024-11-06 08:34:59', 'submission_id': '1gksnyu'}
{'comment': 'Dick Cheney is awful, but he loves America, and that is the difference between him and Trump.', 'created': '2024-11-06 13:07:38', 'submission_id': '1gksnyu'}
{'comment': 'Source? If it is just a narrative then it was one that worked very well to keep them from voting. \n\nAnecdotally, I didn’t have anything to lose or gain in this election. My job, net worth and future projected earnings are at the point where I’m just waiting to retire. I have to wonder if a lot of the people that didn’t come to vote simply had nothing to lose or gain from either candidate.', 'created': '2024-11-06 15:15:39', 'submission_id': '1gksnyu'}
{'comment': 'steven miller will not deport with a light touch…it’ll be mass deportations. Trump said he wants to do that', 'created': '2024-11-06 09:47:07', 'submission_id': '1gksnyu'}
{'comment': 'Honestly, I am going to find it difficult to have sympathy in my heart for our country with what comes next. The majority of people know exactly what they voted for.', 'created': '2024-11-06 12:06:34', 'submission_id': '1gksnyu'}
{'comment': 'I hope every one of them that voted for Trump gets deported. Fucking traitors.', 'created': '2024-11-06 13:39:50', 'submission_id': '1gksnyu'}
{'comment': "It would be funny if it wasn't something that really happened but it really did happen.\n\nAt least this will be his last run. The dude is too old and the constitution, for whatever it's worth, limits a third term. Honestly, I think we are all going to be OK. The sun will be shining, the sky is bright, and everything is gonna be all right.", 'created': '2024-11-06 11:47:48', 'submission_id': '1gksnyu'}
{'comment': "Right?? Anecdotally I'm an immigrant and the immigrant communities I've been part of and seen have some insane anti immigration beliefs...including coming from those that came here illegally... One thing I've found they all have in common: fiercely religious 😑", 'created': '2024-11-06 19:26:07', 'submission_id': '1gksnyu'}
{'comment': 'Dems don’t have a choice. There’s no winning in this climate as a Democrat. You need an Obama every 8 years. It’s impossible. It’s over. Just hope Trump gains some common sense.', 'created': '2024-11-06 08:44:09', 'submission_id': '1gksnyu'}
{'comment': 'They don’t when the majority of Americans agree with Trump’s policies.', 'created': '2024-11-06 12:07:05', 'submission_id': '1gksnyu'}
{'comment': 'Yup exactly. Plus, as an immigrant myself, I\'ve seen majority of immigrant communities both white and non white show a ton of both sexism and racism, including a lot of racism and "othering" towards other immigrant groups', 'created': '2024-11-06 19:23:18', 'submission_id': '1gksnyu'}
{'comment': "Yeah, Harris was never going to win. She wasn't even liked back in 2020 so why is she the messiah now? The Dems need to do a better job.", 'created': '2024-11-06 09:16:35', 'submission_id': '1gksnyu'}
{'comment': "Ah yes, sexism and narrow-mindedness on the left is the real problem. Never mind that those things are core tenets of the right. Latino and Caribbean women can be stupid, same as anyone else. This isn't new.", 'created': '2024-11-06 13:41:38', 'submission_id': '1gksnyu'}
{'comment': 'You can say that again. Dad? Progressive. Sis? MAGA. Mom? Literally fucking pro-Russia.', 'created': '2024-11-06 10:29:20', 'submission_id': '1gksnyu'}
{'comment': 'White women still voted for Kamala in far greater numbers than white men. No more just blaming women.\n\nStart calling out men.', 'created': '2024-11-07 00:43:46', 'submission_id': '1gksnyu'}
{'comment': "Wages are stagnant and inflation is cumulative. The optics are bad and repeatedly saying we are in a great economy is just rubbing salt into the bleeding wound. No one cares what the economist says, it's all about the feel. For most people life isn't any better than it was 4, and for most it is worse.", 'created': '2024-11-06 22:47:27', 'submission_id': '1gksnyu'}
{'comment': 'Too bad he hates their guts', 'created': '2024-11-06 09:04:27', 'submission_id': '1gksnyu'}
{'comment': 'How that helps them when they get deported and incarcerated', 'created': '2024-11-06 12:27:07', 'submission_id': '1gksnyu'}
{'comment': 'Look, I can’t understand low intelligence men voting for him, thinking somehow this whiny fuck represents some kind of masculinity. What I can’t understand is how so many women voted for him? Do they really not see how bad he’ll be for all of them? What the actual fuck.', 'created': '2024-11-06 13:03:33', 'submission_id': '1gksnyu'}
{'comment': 'Dems should’ve never tried to shame black men and/or men into voting for Kamala on the pretense that if they didn’t that they were misogynistic. How did internal data not pick up that legal immigrants despise illegal immigrants? Whether you or Reddit wants to admit it, we are far away from the trans movement becoming a widely accepted and integrated issue in our country.', 'created': '2024-11-06 13:59:30', 'submission_id': '1gksnyu'}
{'comment': '[removed]', 'created': '2024-11-06 08:27:28', 'submission_id': '1gksnyu'}
{'comment': 'It wouldn’t have mattered. The majority of America agrees with Trump.', 'created': '2024-11-06 12:11:54', 'submission_id': '1gksnyu'}
{'comment': 'Ah. I see your point. OK.', 'created': '2024-11-06 17:06:20', 'submission_id': '1gksnyu'}
{'comment': "It's Biden's fault because the Republicans ran a racist, bigoted, seditionist, sex offender, criminal, narcissistic, dictator wannabe. And they did so by constantly feeding their voters lies, instilling them with fear, and inciting them to anger. So they could establish an authoritarian government. \n\nAnd Republican Senators violated their oaths, because Trump should have been convicted and never allowed to run again.\n\nSo you want to blame Biden???", 'created': '2024-11-06 15:39:49', 'submission_id': '1gksnyu'}
{'comment': 'And soon they will know that the MAGAgop dont have any love lost for them. They were a means to an end. Much like Muslims you think they care about you guys, thats funny.', 'created': '2024-11-06 09:08:00', 'submission_id': '1gksnyu'}
{'comment': 'I doubt it. And even if it had, it would have lowered the margin even more in Michigan and Wisconsin, not to mention NC and GA. To put it crassly, Americans aren’t going to be more likely to vote for a Black-South Asian woman married to a Jew just because she added a Jew instead of a Lutheran to the ticket. Because there’s antisemitism in the base of the Democratic party as well the base of the Republican party.', 'created': '2024-11-06 16:02:17', 'submission_id': '1gksnyu'}
{'comment': "Just move the goalposts on me, why don't you?", 'created': '2024-11-06 18:57:25', 'submission_id': '1gksnyu'}
{'comment': "it didn't happen in 2020 but not because he didn't try, now there won't be guardrails.", 'created': '2024-11-06 09:44:08', 'submission_id': '1gksnyu'}
{'comment': '*Being a hateful celebrity', 'created': '2024-11-06 18:32:19', 'submission_id': '1gksnyu'}
{'comment': "You think so? My parents gave him one year. I'm guessing he makes it through 3-4 years. We'll get to see him age out even more, that's certain. \n\nApparently SS agents used to spread leaves out for Ronald Reagan to rake and bag during his retirement. They would just wait until he turned his attention away for a little bit then spread the same bag of leaves around and invite him to rake it and chit chat. They *knew* he had Alzheimer's and learned ways to keep tabs on him. I wonder how Trump's medical team will handle him?", 'created': '2024-11-06 16:13:00', 'submission_id': '1gksnyu'}
{'comment': 'I don’t think you can make an analogy between Bush and Trump. There was no talk of Bush threatening democracy. He wasn’t a convicted felon. He didn’t attempt a coup. He was a war hawk who instigated bloody wars abroad, but he never openly spoke about deploying the military against US citizens', 'created': '2024-11-06 11:14:14', 'submission_id': '1gksnyu'}
{'comment': "Just like 2016,when Hillary support collapsed and she couldn't hit Obama numbers, but Trump won more than Bush.", 'created': '2024-11-06 12:52:02', 'submission_id': '1gksnyu'}
{'comment': 'Yea, the average favorability rating of presidents is getting lower and lower, even Obama being as charismatic as he was could barely get close to 50%.', 'created': '2024-11-06 13:00:22', 'submission_id': '1gksnyu'}
{'comment': "The majority of Americans who voted chose the price of eggs and gas over the personal depravities of trump. Personally I think that is more important but for others this was their main concern. This is democracy. Only solace I can take today is at least it wasn't close. If this was a one week (s) back and forth nail bitter, I would be very worried.", 'created': '2024-11-06 14:02:45', 'submission_id': '1gksnyu'}
{'comment': 'If he does get this economic policy of tariffs on imported good - you might get your wish.', 'created': '2024-11-06 08:53:10', 'submission_id': '1gksnyu'}
{'comment': "You won't have to root for it. They will lay in the bed they made. Unfortunately, we all will too..", 'created': '2024-11-06 10:22:00', 'submission_id': '1gksnyu'}
{'comment': 'And what, he destroys your 401k, people lose jobs and homes? Social security gone, he owns the house and senate now. And he walks away in 4 years. No don’t ever wish for that. Couple of years there will be a recession. Hopefully we can weather the storm.', 'created': '2024-11-06 12:41:30', 'submission_id': '1gksnyu'}
{'comment': 'Can we at least skip the world War part and enjoy an neo-FDR era?', 'created': '2024-11-06 11:49:50', 'submission_id': '1gksnyu'}
{'comment': 'Gross.', 'created': '2024-11-06 12:08:42', 'submission_id': '1gksnyu'}
{'comment': 'F........ There go my retirement savings.', 'created': '2024-11-06 22:01:52', 'submission_id': '1gksnyu'}
{'comment': 'And biracial', 'created': '2024-11-06 16:03:02', 'submission_id': '1gksnyu'}
{'comment': 'I\'ll admit to getting suckered into the concept that "Finally a glass ceiling will be broken in America by electing a Women" twice now. Never again, give me a straight white male married with 2.35 kids to a bleach blonde cheerleader that he met in 4th grade as the candidate from Kentucky.', 'created': '2024-11-06 23:04:50', 'submission_id': '1gksnyu'}
{'comment': 'Someone mentioned it many MAGA were like "Biden was in charge during \'20 and Covid so it was his issue he failed the nation on". We on the left forget how powerful Right Wing Media mixed with TikTok is.', 'created': '2024-11-06 23:02:36', 'submission_id': '1gksnyu'}
{'comment': 'I 100% agree. The mainstream media is complicit.', 'created': '2024-11-06 13:41:06', 'submission_id': '1gksnyu'}
{'comment': 'It’s a game of addition: racist plus sexists', 'created': '2024-11-06 14:16:20', 'submission_id': '1gksnyu'}
{'comment': 'Biden probably could’ve pulled it off and ended up with him resigning past Jan 20. \n\nThat’s the only way a female president will ever happen. The male president has to die or resign from office', 'created': '2024-11-06 20:26:08', 'submission_id': '1gksnyu'}
{'comment': 'So Latinos not wanting other Latinos to come here?', 'created': '2024-11-06 20:31:16', 'submission_id': '1gksnyu'}
{'comment': 'Think about the Supreme Court - another lifetime of right wing maniacs. 40-50 years to wreck things.\n\nThe institutions will not hold.', 'created': '2024-11-06 09:30:52', 'submission_id': '1gksnyu'}
{'comment': "Some of us can't even get pregnant, so that will be fun.", 'created': '2024-11-06 14:32:41', 'submission_id': '1gksnyu'}
{'comment': ">Dick Cheney is awful, no difference between him and Trump \n\nThere, FTFY. Let's not exaggerate his goodness.... He's bad, he pointed us towards the other bad guy, no need to redeem him, he's not wroth more than that.", 'created': '2024-11-06 13:15:37', 'submission_id': '1gksnyu'}
{'comment': 'Obviously, it worked. Fear is often a great motivator. Especially in politics.', 'created': '2024-11-07 02:08:29', 'submission_id': '1gksnyu'}
{'comment': 'I’m terrible but I will laugh at the “I didn’t know he meant me” people. They wanted this, they need to embrace it', 'created': '2024-11-06 17:16:45', 'submission_id': '1gksnyu'}
{'comment': 'Between the deportations, people fleeing America, and women not wanting to get pregnant, I predict we’re going to see a massive decline in the population.', 'created': '2024-11-06 14:34:21', 'submission_id': '1gksnyu'}
{'comment': 'What does that matter? This is a man who shits on the Constitution. You think he cares about 2 term limits? We’re very possibly looking at the end of elections in America if he gets his way with things. And the shittiest part of him getting into office again is now all those cases against him get dropped. That’s it. He’ll never face any consequences for all his criminal activities. This sucks on so many levels! The American experiment is over. We’re on our way to becoming a dictatorship. It’s just a matter of how long that will take, but that’s the direction we’re headed in.', 'created': '2024-11-06 12:52:10', 'submission_id': '1gksnyu'}
{'comment': 'I hoped that in 2016. He did not.', 'created': '2024-11-06 10:27:53', 'submission_id': '1gksnyu'}
{'comment': 'Jesus come on. No one agrees with policies. People agree with results. No one gives a shit what philosophy is at play when it hits home. \n\nTrump was hired to fix inflation, fix the economy, fix immigration. And his plan for inflation is tariffs, which every economic on the planet will tell you will make, in the short term, prices go up. \n\nI don\'t think he\'ll do it, honestly. But if he does, and prices get up, people will not listen to "look, you just gotta wait, it\'ll all get better for the long run." They will lose horrifically in 2026, and then the experiment is over.', 'created': '2024-11-07 06:37:08', 'submission_id': '1gksnyu'}
{'comment': "Don't be dense. They're both to blame. The white women who voted for Trump and the men who voted for Trump.\xa0\n\n\nI'm calling out white women specifically because they are the main female demographic who thinks this isn't going to effect them in the long run. Black women showed up for Kamala.", 'created': '2024-11-07 00:50:05', 'submission_id': '1gksnyu'}
{'comment': "Ironic, isn't it? Imagine voting for someone who only pretends to care for you.", 'created': '2024-11-06 09:06:04', 'submission_id': '1gksnyu'}
{'comment': "Enjoy living with Trump for 4 years (if we're lucky and the talk of fascism turns out to be BS). As long as your conscience is intact, that's what matters right? The nation and its future be damned.", 'created': '2024-11-06 08:30:32', 'submission_id': '1gksnyu'}
{'comment': 'Well you did vote for trump so there is that', 'created': '2024-11-06 09:05:09', 'submission_id': '1gksnyu'}
{'comment': 'The majority of voters, not America. Turnout is fucking us.', 'created': '2024-11-06 12:17:42', 'submission_id': '1gksnyu'}
{'comment': 'Elections have consequences. \n\nLatinos are largely conservative, more Catholic, more traditional. And that includes gender roles. \n\nIt’s something the Left has refused to acknowledge. \n\nBut also - yes - they’re still not *white* White. And once the tariffs bite, and once they run out of other groups to blame, a lot of them will be targeted. \n\nAnd you know what? I don’t care. I can’t care. I put too much energy into this, too much trying to reconcile the modern Democratic values with what the American people want. \n\nI’m done with women’s issues. Clearly they don’t care enough, why should I? “The future is female?” Nope! \n\nToo many people voting for the “leopards are my face” Party because the other Party can’t stop relabeling things that don’t need relabeling. At least not now.', 'created': '2024-11-06 11:58:13', 'submission_id': '1gksnyu'}
{'comment': 'It ain’t even goalposts being moved it was a shit campaign about hammering home emotions and feelings. There’s a reason 20 million people stayed home.', 'created': '2024-11-06 19:09:59', 'submission_id': '1gksnyu'}
{'comment': "He'll get top of the line medical care that's for sure. While we wonder if we can afford it if we're dying.", 'created': '2024-11-06 16:14:04', 'submission_id': '1gksnyu'}
{'comment': 'Thank you. I don’t get the comparisons some people are making here. I never once felt that Bush would do whatever he could to stay in power. That was, literally never a concern for me. It IS very much a concern with Trump though. He has actually said it, even if not in such plain language. He wants to be a dictator. This election result is disastrous for us.', 'created': '2024-11-06 12:56:12', 'submission_id': '1gksnyu'}
{'comment': 'I’m going to stop you right there. \n\nThere 100% was talk of Bush threatening democracy. Modern utterances of “stolen elections” came from Democrats in the wake of Florida’s recount in 2000. “Inside job” conspiracy existed largely among the skeptical left and fused itself with the paleo conservatives. The government is corrupt and isn’t for us is something that has existed since anti-Nixon but especially with PATRIOT Act Bush years. \n\nA decent chunk of the 35-45 year old Trump voter was almost certainly someone who thought Bush was full of shit and the entire government was all complicit. The swamp was rotten and needed to be cleansed.\n\nEnter Trump.', 'created': '2024-11-06 13:51:52', 'submission_id': '1gksnyu'}
{'comment': "If Trump actually threatens democracy, we riot. We protest. We gather in DC and demand change. \n\nI doubt it will come to that. Trump is scared shitless of angry mobs. He'll find the balance to do just enough harm to amuse himself but not so much that he would invite riots.", 'created': '2024-11-06 15:15:49', 'submission_id': '1gksnyu'}
{'comment': "This is completely disconnected from reality. At the time, it was a GIVEN he wouldn't leave office, and that he and his cronies would take over. That he had stolen the election in 2000, and would keep stealing it.", 'created': '2024-11-06 18:31:49', 'submission_id': '1gksnyu'}
{'comment': "...it's almost like it's called a glass *ceiling* for a reason or something. Abandoning the old white dude and putting the Democrats on lower footing fails to work out twice, against the same guy. I guess in the future we shouldn't underestimate splitting the apathetic sexist's vote.", 'created': '2024-11-06 13:38:32', 'submission_id': '1gksnyu'}
{'comment': 'but trump has set the bar so low that the Trump 2.0 will be able to feed off American anger and hate for many years to come.', 'created': '2024-11-06 13:03:45', 'submission_id': '1gksnyu'}
{'comment': 'And the kicker is that the price of those things is not going to change in any beneficial way.', 'created': '2024-11-06 15:05:41', 'submission_id': '1gksnyu'}
{'comment': 'Sadly, Trump is going to ruin the economy, too.', 'created': '2024-11-06 16:04:09', 'submission_id': '1gksnyu'}
{'comment': "Omg is he still obsessed with tariffs? I think that's the only thing he remembers from business school. Not even kidding. And he thinks it makes him sound like he knows what he's talking about so he's apparently still yammering on about tariffs. Can't wait to see his cabinet 🤢 This is how empires fall. Welp. Fuck everything.", 'created': '2024-11-06 10:51:24', 'submission_id': '1gksnyu'}
{'comment': 'The House went to democrats', 'created': '2024-11-06 17:06:42', 'submission_id': '1gksnyu'}
{'comment': "Let's be real. None of us are retiring. Ever. Social Security will be gutted, and what we'll get years from now will be a pittance of what we were planning on.", 'created': '2024-11-06 22:05:54', 'submission_id': '1gksnyu'}
{'comment': 'It seems like the electoral glass ceiling is 70 million votes', 'created': '2024-11-07 03:46:49', 'submission_id': '1gksnyu'}
{'comment': 'Clarence Thomas and Samuel Alito gonna get 18 year old minime clones.', 'created': '2024-11-06 13:04:28', 'submission_id': '1gksnyu'}
{'comment': "Redeem him?\n\nI am not trying to redeem him just pointing out that Dick Cheney would not be sucking Putin and Xi's dick.", 'created': '2024-11-06 13:30:47', 'submission_id': '1gksnyu'}
{'comment': "I think the problem is that many of us have a sense of a just universe. There isn't one. He will get away with every shifty thing he has ever done because he is rich and famous. Nothing has really changed when you think about it, the rich get away with stuff all the time that us jokers would be in prison for.\n\nSo instead of having a doomer mentality, just except that you cannot change the election results. Hope for the best over the next four years and maybe, just maybe, the Democrats will figure out what made FDR so fucking successful.", 'created': '2024-11-06 13:56:28', 'submission_id': '1gksnyu'}
{'comment': ">He’ll never face any consequences for all his criminal activities.\n\nHe was never going to anyway. The Dems had four years to convict him for multiple counts of clear treason and rape, and they dragged their heels and fucked around instead. I don't understand how he wasn't sent to prison years ago.", 'created': '2024-11-06 18:30:50', 'submission_id': '1gksnyu'}
{'comment': '"because they are the main \\*female\\* demographic"\n\nSo you admit you\'re calling them out because they\'re female?\n\nEdit: I\'m just gonna say it again... it\'s time to start expecting decency from men.', 'created': '2024-11-07 00:57:43', 'submission_id': '1gksnyu'}
{'comment': 'If thats a slam on harris man you are way off. The diff between harris and trump is she dont have to like you but she will follow the rule of law. Trump will not. So when people start dying its on trump voters hands they are murderers by choice.', 'created': '2024-11-06 09:18:10', 'submission_id': '1gksnyu'}
{'comment': "He doesn't even pretend!", 'created': '2024-11-06 17:22:01', 'submission_id': '1gksnyu'}
{'comment': 'You said Harris didn\'t tackle policy, and when I told you she did, you moved from "Harris didn\'t hammer home policy" to "she didn\'t do it soon enough." That is textbook moving the goalposts.\n\nYeah, it wasn\'t the success we wanted it to be, but it wasn\'t for lack of policy. If policy was actually a deciding factor, no one would vote for Trump. He can\'t finish a coherent sentence, let alone hammer any policy.', 'created': '2024-11-06 20:16:08', 'submission_id': '1gksnyu'}
{'comment': 'So you don’t remember the SCOTUS-ruled Florida recount, the PATRIOT Act, the war waged on false pretenses? \n\nYou don’t remember the connections between Bush and the Nixon administration? You know, the same Nixon who resigned after spying on a rival party and interfered with peace talks in Vietnam to win an election?\n\nThis is absolutely disastrous. It’s worse than Bush. But let’s not kid ourselves that this isn’t a direct line stemming from that, and that our collective rhetoric for the last 30 years directly contributed to resilience of Trump.\n\nDemocrats (or liberals overall) are supposed to be the voters that trust in the good of government the most. But we ran around basically calling the central government an evil thing but then asking voters to give them the reigns of power. We trip over our own logic sometimes.\n\n“Cheney is the devil!” morphed into “Cheney endorses our candidate.” \n\nGood luck convincing people you aren’t completely full of shit when you can’t go 10 years without completely flipping script.', 'created': '2024-11-06 13:58:07', 'submission_id': '1gksnyu'}
{'comment': 'I wish we didn’t have to cater to the sexist, and racists but that’s too much to ask for', 'created': '2024-11-06 14:17:01', 'submission_id': '1gksnyu'}
{'comment': "Agreed, hate to be that guy, but honestly ladies, it's been a nice ride but we're done. It REALLY sucks saying that. But, Shapiro 2028 and let's move on.", 'created': '2024-11-06 22:51:26', 'submission_id': '1gksnyu'}
{'comment': 'I don\'t think the favorability will matter, because Trump\'s successor (he\'s gonna get 25th amendmented) will manufacture a reason to stay in power. Russia holds "elections" every few years, but they\'re just for show.', 'created': '2024-11-06 13:39:23', 'submission_id': '1gksnyu'}
{'comment': 'trump made it simple for the MAGA masses "On day one I\'ll fix....... fill in the blank..... and make it better"', 'created': '2024-11-06 23:07:42', 'submission_id': '1gksnyu'}
{'comment': 'Cant believe all the Billionaires he promised everything to would allow this to happen.', 'created': '2024-11-06 23:09:13', 'submission_id': '1gksnyu'}
{'comment': 'If I see Elon Musk or Don Jr, Lara Trump or Dan Scavino anywhere near the Cabinet, Ill know America is finished.', 'created': '2024-11-06 13:02:29', 'submission_id': '1gksnyu'}
{'comment': 'Dems need to flip 4 seats in house as of right now. GOP is gonna keep house. Idk who told you house is dems.', 'created': '2024-11-06 17:10:35', 'submission_id': '1gksnyu'}
{'comment': "I wasn't really counting on Social Security tbh, but I don't want my 401k corpus to be stagnant and depressed for the next several years because of gross political mismanagement of the economy", 'created': '2024-11-06 22:31:06', 'submission_id': '1gksnyu'}
{'comment': ">I am not trying to redeem him just pointing out that Dick Cheney would not be sucking Putin and Xi's dick.\n\nYeah, cause he sees them as competition for most warcrimes committed", 'created': '2024-11-06 13:57:52', 'submission_id': '1gksnyu'}
{'comment': "Yes? It's not a bad thing for us to call out the women throwing other women under the bus. We SHOULD expect decency from men, but that doesn't mean I'm not going to take note of the women who voted against the better interest of other women.", 'created': '2024-11-07 15:03:18', 'submission_id': '1gksnyu'}
{'comment': "What makes you think that? I voted for Harris/Walz. I'm a registered democrat. The comment was about black/Latino men who voted for a POS who cares NOTHING for them. In case it wasn't clear enough to you, I'm openly criticizing such voters for casting their ballots in favor of a man who doesn't deserve their vote at all.", 'created': '2024-11-06 09:29:10', 'submission_id': '1gksnyu'}
{'comment': 'We live in an America where Donald Trump just dominated Democrats, AGAIN, in a general election nationwide.\n\nWhy are you still expecting perfection from politicians? What a failure that shit will be.', 'created': '2024-11-06 14:12:26', 'submission_id': '1gksnyu'}
{'comment': 'No.\n\nDumping on white women has become so common and comes from all sides (including men). It\'s something that started in feminist spaces but has gone \'mainstream\'. \n\nIt\'s just become a socially acceptable form of misogyny. (It\'s ok if I attach the word "white".)\n\nWhite women were one of the only demographics that got more blue this year. I guarantee we will \\*still\\* see slews of these comments dumping on white women and relatively few dumping on hispanic men (who are voting for Trump in higher proportions now than ww.)\n\nBut I guess if it makes you feel better, keep dumping on women... make sure to attach the qualifier \'white\' so that you can still feel morally superior. whatever.', 'created': '2024-11-08 08:38:18', 'submission_id': '1gksnyu'}
{'comment': "Yeah, I'm done arguing with you. It's got nothing to do with being morally superior and everything to do with we should be allowed to call this shit out when we see it.\xa0\n\n\nContinue to play dumb if you want to. Being a woman doesn't mean you need to support every woman, and I definitely could care less if white women who supported Trump are offended by what I said.\xa0", 'created': '2024-11-08 21:36:53', 'submission_id': '1gksnyu'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 08:04:42', 'submission_id': '1gksn3l'}
{'comment': 'Every Trump voter I’ve spoken to when confronted by anything he says has replied: “You’re crazy for believing that, he won’t actually do that.” Even more comments on here saying that people are over-reacting and that things will be fine. They honestly believe Trump will deliver them from their troubles. \n\nWell, they made this bed and now we all have to sleep in it.', 'created': '2024-11-06 08:57:01', 'submission_id': '1gksn3l'}
{'comment': 'I know we can nitpick the campaign all we want, but I don’t think just a message tweak would have changed the outcome last night. Think back to the contrast at the debate. Trump ranted about (legal) immigrants eating dogs. It didn’t matter how foolish he looked when he fellated a microphone or started talking about sharks and electricity. It didn’t matter how presidential she looked in comparison. Trump is a way of life for millions of Americans. \n\nDems lost the airwaves when the major cable networks were bought up. We saw this cycle that the billionaires control the papers. And since 2008 and on, they have increasingly lost important pockets of the internet. This is where people get their news. And Trump himself is a constant vortex. Media attention was always on him. \n\nThe party at this point needs a complete rebranding and to find its fighting spirit. In Kamala, I finally found a Dem with at least a little bit of teeth. That’s the way forward. They need to take back the headlines.', 'created': '2024-11-06 08:38:53', 'submission_id': '1gksn3l'}
{'comment': 'Because Merrick Garland was a spineless coward who refused to swiftly prosecute everyone in Congress involved in trying to overthrow the government on January 6. He is complicit in Trump winning tonight and will be remembered by history as the one man who could have taken down Trump, but didn’t.', 'created': '2024-11-06 08:12:43', 'submission_id': '1gksn3l'}
{'comment': 'Combination of things; Reluctance of sexists to vote for a woman, Biden dropping out only 3 months before the election, high grocery prices', 'created': '2024-11-06 08:14:27', 'submission_id': '1gksn3l'}
{'comment': 'The campaign was at a severe disadvantage from the start in terms of time as well as being pinned to a very unpopular sitting president. Coalitions take a long time to build and can fracture in an instant. Vs an opponent who has been running for a decade.\n\nPeople may debate if there was a better candidate, but these were exceptional circumstances. She did great. She was stellar in the debate and good to very good in the major speeches. She ran a modern, scrappy campaign. The ground game and donations were there. The campaign did rally after rally hoping to drive turnout. They had the Dem Govs out there along the blue wall. People are already pointing to their preferred choices speculating on whether they’d do better while ignoring the strengths she did have. \n\nBut no doubt, the Dems got rocked. It wasn’t just Harris. Several Senate races were very bad. They made a huge miscalculation betting big on women and ignoring younger men. Democratic messaging on the economy has always been a bit weird.', 'created': '2024-11-06 08:16:34', 'submission_id': '1gksn3l'}
{'comment': 'First, the economy. You can give all the stats and rationale you want, but the fact is that people know their grocery bill is 25-30% higher than it was under Trump. Perception is reality, and that’s a very tangible thing that hits people at the dinner table.\n\nSecond, Democrats haven’t figured out how to appeal to young men. You can say whatever you want about them and their privilege, and regardless of how ridiculous it may sound- the truth is they feel marginalized.\n\nThird, the Democrat read on minorities was way off. Many of them are conservative. There’s also an inherent racism that Trump saying something bad about illegal immigrants means that anyone of Hispanic descent will automatically go blue. Also it seemed like it was assumed that black men were an automatic vote for Harris, and that wasn’t the case. Minority groups aren’t a monolith.\n\nFourth, Harris was already at a disadvantage with the short campaign. And she was caught between trying to tie herself to the administration to get some credit for what Biden has done and appear like she has experience, but at the same time trying to distance herself from a president with an abysmal approval rating.\n\n\n\nThat’s why she lost. But I can almost guarantee you that we will learn the wrong lessons from this election.', 'created': '2024-11-06 08:17:03', 'submission_id': '1gksn3l'}
{'comment': 'cost of eggs, gas and rent. short memory spans of stupid voters,', 'created': '2024-11-06 09:34:17', 'submission_id': '1gksn3l'}
{'comment': 'I think there is a lot\n\nBiden stepping out so late and not giving her time to resonate with people\n\nImmigration is one of the biggest issues and she wasn’t strong enough on it\n\nShe tried too hard to get “never Trump” Republican votes and left more liberal voters behind\n\nHer being a woman definitely hurt her. I don’t know if America is ready for that', 'created': '2024-11-06 08:08:18', 'submission_id': '1gksn3l'}
{'comment': 'i knew we were fucked when i talked to a coworker (a woman of color) about the election... she said she did not know who to vote for. I about fainted right there. When a educated WOC can’t emphatically say she is voting for a WOC because rent is too high…. we are well and truly fucked.', 'created': '2024-11-06 09:45:18', 'submission_id': '1gksn3l'}
{'comment': "Harris didn't exactly lose. We Democrats lost by not championing the Biden presidency for the past four years. This was not about our candidate; this was about our party. \n\nWe're losing races across the country tonight downballot, too.", 'created': '2024-11-06 08:09:52', 'submission_id': '1gksn3l'}
{'comment': 'I am ashamed of every woman in America that voted to Trump', 'created': '2024-11-06 12:47:15', 'submission_id': '1gksn3l'}
{'comment': None, 'created': '2024-11-06 09:29:47', 'submission_id': '1gksn3l'}
{'comment': 'Because maybe democracy isn’t the best for a nation of our size and caliber. Because you just get fascists who manipulate the fools. Like I’m genuinely dumbfounded at how absolutely foolish and simple minded so many people are. An absolute travesty on human history. We’ve got some real tough times ahead. Things have to get worse before they can be truly shown how bad it can get. People live in delusion. Things are gonna fucking tank and so many people who voted for him are gonna feel betrayed and I will never ever fucking forgive them for their willful ignorance. Legit worthless contributions to society I swear.', 'created': '2024-11-06 15:17:11', 'submission_id': '1gksn3l'}
{'comment': 'Democrats had 2 years to tell Joe he wasn’t gonna be nominee and chose not to act', 'created': '2024-11-06 08:08:07', 'submission_id': '1gksn3l'}
{'comment': 'Because of 3 things.\n1. Miss information about how the economy is doing.\n2. People tend to think of the past as better than it actually was.\n3. People have no foresight.', 'created': '2024-11-06 08:48:03', 'submission_id': '1gksn3l'}
{'comment': "1. Biden didn't bow out early enough and we didn't get open primaries. (Which i don't believe she would have won.)\n2. The economy\n3. Immigration\n4. It seemed like her primary campaign message was she wasn't Trump", 'created': '2024-11-06 08:09:08', 'submission_id': '1gksn3l'}
{'comment': "Turnout. Currently, with votes still to be counted but not many, she's 17 million behind Biden. Even Trump is 5 million behind his 2020 total. Signals deep problems with a fractured base. When people don't vote, Republicans win - could not be more clear after tonight.", 'created': '2024-11-06 09:24:04', 'submission_id': '1gksn3l'}
{'comment': 'Because people are fucking stupid.', 'created': '2024-11-06 10:12:16', 'submission_id': '1gksn3l'}
{'comment': 'Republicans have mastered trashing the economy and laying blame at democrats feet. \n\nDemocrats assumed abortion would carry them when many states had ballot issues to guarantee it in their state. That gave people the ability to vote for Trump and for abortion access.', 'created': '2024-11-06 08:24:23', 'submission_id': '1gksn3l'}
{'comment': 'Immigration was a huge one.', 'created': '2024-11-06 08:05:38', 'submission_id': '1gksn3l'}
{'comment': 'https://preview.redd.it/njsxlmjet9zd1.jpeg?width=1179&format=pjpg&auto=webp&s=36efc1235dfd531113ac018e29a33927f8a9e659\n\nThis is what they voted for.', 'created': '2024-11-06 12:58:58', 'submission_id': '1gksn3l'}
{'comment': 'Tied to Biden, running on “not Trump”, pulling out Republican rejects, sending Liz and Bill to Michigan, alot of factors. The democrats better get their shit together going forward.', 'created': '2024-11-06 08:07:00', 'submission_id': '1gksn3l'}
{'comment': "She really did a bad job of countering the lies he told about the economy. He set up a narrative that Biden caused inflation and he would have somehow prevented it and will somehow reverse it. \n\nNone of those 3 things are true, obviously, but she didn't push back on that messaging in a meaningful way and for a lot of people who held their noses and voted for trump that messaging was what had resonated.", 'created': '2024-11-06 08:07:31', 'submission_id': '1gksn3l'}
{'comment': 'This is why Kamala lost:\n\n1. **We tried this in 1968 and Dems got whooped.** I mentioned this in this very subreddit. Why try something again that didn\'t work the first damn time?? Didn\'t understand it.\n2. The way this whole thing was done came off like Biden was getting backstabbed. Now, y\'all might be \'meh\' on Biden, but out in the real world, Biden is well liked. I love Kamala, but she did poorly in 2020. The hatred (racism, sexism, etc.) has gotten WORSE between 2020 and 2024.\n3. Some people were just NOT going to vote for a woman. Y\'all was very naive in thinking it was just Hillary. Nope. It wasn\'t just "that woman", it\'s ANY woman and this crosses all races. A lot of people do NOT want a woman \'bossing\' them, much less a woman that they think is of an inferior race for the top job in the country. Hell, there are some women that feel like being President is a "man\'s job", know how I know? It came out of their mouths in person AND on the news when Hillary ran.\n4. Trump is a racist. If you want to beat a racist in a contest like this you need a straight white man, **PERIOD.** I can\'t understand how people could see that half the country was enthralled with this racist sexist monster, see the racism getting worse and thought, "Oh I know! I Black/S. Asian woman can beat him!" Yeah, NOPE.\n5. Yeah...I\'d HATE to be George Clooney rn. I would say that he won\'t be bankable anymore, but I\'ll know that that is a lie. 🥴\n6. People would rather have a crazy demented old white man, than an old white man with a stutter, which is what I said when all of this went down. Any disability gives people the "ick" and too many of y\'all decided to get the "ick" and brainwash yourselves into thinking a nonwhite woman had a snowball\'s chance in hell. America was founded on racism, sexism and all of the other -isms and still traffic hard in those isms to this very day.', 'created': '2024-11-06 12:19:26', 'submission_id': '1gksn3l'}
{'comment': 'Some certain demographics of America refused to vote for a woman, even if it meant damaging their own life, including risks of deportation.', 'created': '2024-11-06 08:07:18', 'submission_id': '1gksn3l'}
{'comment': 'Racism and sexism. Kamala is a hundred times more qualified than Trump.', 'created': '2024-11-06 08:19:17', 'submission_id': '1gksn3l'}
{'comment': 'The polls showed that people who were really tuned in overwhelmingly favored Harris. It’s the breakdown of the media ecosystem. People only know that prices are high and they don’t understand why. My only criticism is that Kamala should’ve explained that inflation was a global issue, that it came down faster in the U.S., and then state that there’s still more work to do.', 'created': '2024-11-06 10:16:20', 'submission_id': '1gksn3l'}
{'comment': 'I’m beginning to believe enough people want fascism so that’s what they’re signing up for and that’s what they’ll get.', 'created': '2024-11-06 10:26:36', 'submission_id': '1gksn3l'}
{'comment': 'I blame any American who voted for Trump or didn’t vote at all. They had the information and they need to take responsibility for now electing this absolute POS. Democrats aren’t miracle workers, we can’t think for you. People need to own up to their terrible decisions.', 'created': '2024-11-06 08:11:58', 'submission_id': '1gksn3l'}
{'comment': 'I don’t understand. The difference in numbers at the rallies. The money she raised. How did that all translate to a loss?', 'created': '2024-11-06 12:07:20', 'submission_id': '1gksn3l'}
{'comment': 'Because Americans are stupid.', 'created': '2024-11-06 09:31:07', 'submission_id': '1gksn3l'}
{'comment': 'Harris lost due to Americans prioritizing economy over their own democracy, combined with the absurd belief that Trump was somehow better for our economy. Another major thing that costed her the election, was the fact that the people of the country\xa0really seem to believe that being President of the United States is no job for a woman.', 'created': '2024-11-06 11:47:49', 'submission_id': '1gksn3l'}
{'comment': 'Because the majority of Americans are uneducated and prefer a felon.\nCan’t do much when you have ignorance and bigotry.', 'created': '2024-11-06 09:18:34', 'submission_id': '1gksn3l'}
{'comment': 'pointing fingers is useless now, all we can do is sit and watch trump go wild', 'created': '2024-11-06 08:05:58', 'submission_id': '1gksn3l'}
{'comment': '1. Sexist America\n\n2. Trump wasn’t prosecuted fast enough\n\n3. She wasn’t vetted in the primaries; she never would have won the primary in the first place. \n\n4. Moved too far to the right to try to please everybody. This is the biggest one. \n\n5. Didn’t distance herself from Biden’s economy enough\n\n6. Shortened time to campaign and present policies\n\n7. Didn’t present any fresh ideas\n\n8. Only one debate\n\n9. Nostalgia mirage\n\n10. Had few accomplishments as VP to highlight', 'created': '2024-11-06 10:26:40', 'submission_id': '1gksn3l'}
{'comment': 'Broken education system', 'created': '2024-11-06 08:32:16', 'submission_id': '1gksn3l'}
{'comment': 'She didn’t just lose, she got the door slammed in her face.\n\nWe saw several times where the main issues were what Trump wanted them to be and the Dems chose not to engage him and prove he was lying.\n\nImmigration is already under control, the economy is stronger than it’s been in 50 years, violent crime is way down under Biden/Harris. Yet it was crickets when she debated him because they wanted him to look crazy and deranged. \n\nInstead, he was gobbled up by the Christian Nationalist community and will forever be their champion of putting women back into the dark ages. They literally do not want women voting, working out if the home, or doing anything but being a receptacle for men to make babies. \n\nWe saw a red wave tonight which they will take as a mandate that Trump should be king, and he’s about to go hard after everyone who disagrees.\n\nStart scrubbing your accounts, soon even this conversation will be a crime.', 'created': '2024-11-06 12:22:53', 'submission_id': '1gksn3l'}
{'comment': 'Kamala, you did great for only running on the 107-day campaign. \n\nTrump has been campaigning for 12 years.\n\nHe was bound to pop the cork eventually. It sucks that it happened this time.', 'created': '2024-11-06 13:06:02', 'submission_id': '1gksn3l'}
{'comment': '“It’s the economy, stupid”\n\nThe inflation caused by Covid, russias war, and price gouging that people instead blamed on Biden because they don’t know how anything fucking works and they won’t listen.', 'created': '2024-11-06 13:08:53', 'submission_id': '1gksn3l'}
{'comment': 'Ran about as good a campaign as she could run. The fundamentals, electorate, and electoral college were all against her. Didn’t introduce herself to the country well enough. Democrats miscalculated how uncomfortable the Trump base would be with stuff he said or does. Made it too much of a focal point.', 'created': '2024-11-06 08:11:13', 'submission_id': '1gksn3l'}
{'comment': 'I don’t care what anybody says racism she lost because of racism', 'created': '2024-11-06 11:04:28', 'submission_id': '1gksn3l'}
{'comment': 'She was a black woman in a white mans game', 'created': '2024-11-06 08:05:25', 'submission_id': '1gksn3l'}
{'comment': '52% of white women voted for Trump. Enough said.', 'created': '2024-11-06 11:24:31', 'submission_id': '1gksn3l'}
{'comment': 'Being tied to Biden and being a woman was already an uphill battle', 'created': '2024-11-06 08:05:33', 'submission_id': '1gksn3l'}
{'comment': "She's a woman. \n\n\nAnd I'm not trying to be sarcastic or anything. I honestly don't think America was ready to elect a black woman. It's infuriating.", 'created': '2024-11-06 08:50:47', 'submission_id': '1gksn3l'}
{'comment': 'Because rural communities are never represented by democrats anymore', 'created': '2024-11-06 08:08:24', 'submission_id': '1gksn3l'}
{'comment': 'It all goes back to Joe. Why the hell did he run at all for re election.\n\nIf he would have stuck to his word as a one term President, we could have had a real primary with a real fantastic campaign.\n\nThis one was rushed, cheap, and didn’t grasp anyone.\n\nTrump runs on personality. You need an Obama-like personality to go toe to toe, and Kamala just didn’t have that.', 'created': '2024-11-06 08:18:54', 'submission_id': '1gksn3l'}
{'comment': 'Dems should’ve touted bringing the economy back .the should’ve shown Jan 6 every ad. Should’ve blamed trump for high prices due to COVID mismanagement. Should’ve had a Shapiro as vp.', 'created': '2024-11-06 08:33:22', 'submission_id': '1gksn3l'}
{'comment': 'Next 4 years should be terrifying', 'created': '2024-11-06 08:36:51', 'submission_id': '1gksn3l'}
{'comment': 'Biden should have made clear that he was only going to be a one term president from the get go. That way the democrats could have had an open convention and picked a candidate. Harris did everything right she won the debate did not have big slip ups. The thing is sexism is real and prevalent the democrats still have not learned that from the Hilary debacle.', 'created': '2024-11-06 10:53:36', 'submission_id': '1gksn3l'}
{'comment': "The dems didn't campaign to young males. Easy pickup for the GOP.", 'created': '2024-11-06 08:31:43', 'submission_id': '1gksn3l'}
{'comment': "Democrats keep running on issues Democrats care about that undecided voters don't care about. If undecided voters cared about those compassion issues they wouldn't be undecided. The only issue they care about is how you'll help them and they don't care about if other people are helped or hurt. We need to stop taking the Republican bait and laser focus on the economy. We can't help anyone if we don't win.", 'created': '2024-11-06 11:24:51', 'submission_id': '1gksn3l'}
{'comment': 'She wasn\'t a very amazing VP, didn\'t leave a mark in people\'s minds while on the job, even though I think she did great during her campaign.\n\nThe dems and Biden took way too long to put her as the candidate, Biden should have dropped out way earlier.\n\nShe was being outspent by the republicans.\n\nDemocrats came in way too confortable in this election, as always, and underestimated Trump, for the second time now.\n\nShe is a woman of color.\n\nRussian / foreign interference.\n\nAlso, just the fact that Republicans have spent the last decade(s) undermining the education system, dividing the country, creating fear and anger, and it just worked. They had the winning strategy of creating chaos and promising the dumbest and most violent and quick "solutions" versus the rational strategy of having a well thought and reasonnable plan to help people in the long run.', 'created': '2024-11-06 13:38:16', 'submission_id': '1gksn3l'}
{'comment': 'We lost because our country is actually uglier than we all want to believe it is.', 'created': '2024-11-06 14:42:22', 'submission_id': '1gksn3l'}
{'comment': 'Inflation. I heard from so many people about grocery prices and how they need to get someone in there to fix that. They have no clue. Inflation is a complicated issue and not caused by or fixed by the President.\n\nI know Biden was lauded for dropping out. He was such a hero. But frankly a lot of this is his fault. He should’ve never run again. We should’ve had a full primary season to let democrats choose the candidate everyone wanted to get behind and a full election season to get a good ground game going. Five months is not enough time to win an election apparently .', 'created': '2024-11-06 14:48:33', 'submission_id': '1gksn3l'}
{'comment': "I guess she wasn't as much as a piece of shit like trump is,seems to be the American thing", 'created': '2024-11-06 08:20:21', 'submission_id': '1gksn3l'}
{'comment': "I thought the Dems were foolish to change candidates a few months before the election, and here we are now. A woman is never going to win an election in this shithole of a country. I don't know how many times we need to keep learning this lesson. It's fucking horrible, but that's the reality of this horrible fucking country.", 'created': '2024-11-06 12:50:02', 'submission_id': '1gksn3l'}
{'comment': 'She lost because a slim majority of us are racist, misogynist, and homophobic. It wasn\'t her. It wasn\'t Russia. It wasn\'t Jill Stein.\n\nIf there is any hope for America we need to confront the evil in our midst, and why a slight majority of our people are so bigoted. Not everyone will be full Project 2025 - maybe some alliances can be built. But the majority of voters yesterday were completely comfortable with the "floating garbage island" and they\'re not about to let it become a state.\n\nIt wasn\'t about Hillary, either. It\'s about white, heterosexual, cisgender male dominance, pure and simple.\n\nWe have to stop blaming our own emissaries, and look at the electorate, which is where the real problem is.', 'created': '2024-11-06 12:53:44', 'submission_id': '1gksn3l'}
{'comment': 'The country only really elects a Dem when the Republicans completely fuck up the country. When people start losing houses and nothing changes for them financially there will be stories about how they didn’t know. \n\nThis is the problem with democracy through its inception we gotta trust idiots with informed decisions.', 'created': '2024-11-06 13:20:50', 'submission_id': '1gksn3l'}
{'comment': 'Because people are massively and depressively stupid as fuck.', 'created': '2024-11-06 14:39:40', 'submission_id': '1gksn3l'}
{'comment': "Because there are a lot of people that bought the nonsencal narrative that there is an inflation problem when in reality the US is nearly at ideal levels of inflation and is doing better the rest of the world when it comes to inflation. They also don't believe all the bad shit that Trump has said he will do - they think its made up.", 'created': '2024-11-06 15:26:01', 'submission_id': '1gksn3l'}
{'comment': "not properly explaining inflation. \n\nThe American people have no idea why things cost more and they think Biden is directly responsible even though they couldn't be further from the truth.", 'created': '2024-11-06 19:14:35', 'submission_id': '1gksn3l'}
{'comment': None, 'created': '2024-11-06 12:12:14', 'submission_id': '1gksn3l'}
{'comment': 'black woman. I’m sorry, but i’m CONVINCED that if a white man had the EXACT SAME campaign, he would’ve won.', 'created': '2024-11-06 08:05:30', 'submission_id': '1gksn3l'}
{'comment': 'Hindsight is 20/20. Looking back there were many signs she would not fare well as the democratic candidate against Trump. She didn’t have much support during her presidential bid in 2020. She’s tied to the current administration with the economy and immigration. But I don’t necessarily blame Harris. The Democratic Party REALLY needs to re-evaluate some things….', 'created': '2024-11-06 08:13:02', 'submission_id': '1gksn3l'}
{'comment': 'Russian propaganda misogyny and price gouchimg', 'created': '2024-11-06 11:05:27', 'submission_id': '1gksn3l'}
{'comment': "Because the voters are f*cking idiots. I'm done", 'created': '2024-11-06 12:11:27', 'submission_id': '1gksn3l'}
{'comment': 'Inflation! Inflation! Inflation!!\nInflation is tangible. \n\nWhat did the Democrats focus on?\n1. Democracy - Too vague and amorphous. Plus most people don’t believe Trump will actually end democracy. \n2. Abortion - Most people don’t think that it will affect them personally. \n3. Personality/Character/integrity/Intelligence - Again too vague, too amorphous. Also, there is a sentiment that Trump may be an asshole but he’s our asshole. \n\nThe topic of immigration is interesting because it’s based on fear. No matter how false or nonsensical the claims, it’s fear.', 'created': '2024-11-06 12:46:18', 'submission_id': '1gksn3l'}
{'comment': "Because we Allowed a convicted felon on a ballot and refused to use Biden's immunity to do anything! Pathetic pieces of ineffectual shit!!", 'created': '2024-11-06 13:02:36', 'submission_id': '1gksn3l'}
{'comment': 'Democrats did not get out to vote. Trump got the same amount as 2020... but Biden got around 80 million, where harris is sitting around 65 million now.', 'created': '2024-11-06 13:05:30', 'submission_id': '1gksn3l'}
{'comment': 'The decision for her to run should have been made WAY earlier. She had so little time to build momentum', 'created': '2024-11-06 13:14:38', 'submission_id': '1gksn3l'}
{'comment': "Biden should have dropped out at midterms, Kamala isn't exactly the most dynamic politician (unlike Obama or someone up and coming I think will be is Pete), even so she ran a good campaign but just a few months from being almost unknown by most people to running for president is a huge task.\n\nAt the end of the day people couldn't stand inflation. They couldn't stand paying more. Now they will still be doing that, but they associated it with Biden and of course her as well.\n\nHis plan doesn't exist and what he has proposed (tarrifs) will just make everything more expensive, but they are too dumb to know that. \n\nCovid sort of helped us win the white house with how poorly he handled it, but the After effects of covid are what lost us the white house (inflation and prices in general due to recovery)", 'created': '2024-11-06 13:17:34', 'submission_id': '1gksn3l'}
{'comment': 'Kamala ran a brilliant campaign, but she couldn’t overcome the misogyny that reared its ugly head once again in the United States of America.\n\nThere is a reason why we haven’t passed the equal rights amendment, why we don’t have affordable childcare, and why women don’t have agency over their own bodies.\n\nWhite men in the United States want their women in the kitchen and in the bedroom serving their every need.', 'created': '2024-11-06 14:07:55', 'submission_id': '1gksn3l'}
{'comment': 'She lost because of hate and fear. \n\nRacism and is sexism is still very strong and this country was built on it.\n\nLook at how NC picked the white male Democratic governor and still went for Trump. That tells you the story right there. \n\nWe are a hateful ass country that picked a known failure instead of giving a black woman a chance.', 'created': '2024-11-06 14:49:54', 'submission_id': '1gksn3l'}
{'comment': 'There are more uneducated, low informed voters than there were educated informed voters. This is his fan base, and they came out in force. They could not handle having a woman as president.', 'created': '2024-11-06 15:05:55', 'submission_id': '1gksn3l'}
{'comment': 'I hate to say it, but it\'s the old adage "it\'s the economy, stupid" , a phrase James Carville coined in 1992. Lots of voters were frustrated with the economy and Trump won those voters. The exit polling data is very telling. The economy was the top issue (31%) of those polled, and Trump won those voters 79% vs 20% for Harris. There are a lot of reasons, but this one stands out.', 'created': '2024-11-06 16:08:38', 'submission_id': '1gksn3l'}
{'comment': 'Well the data is out there. She lost with both Hispanic men and women and she did gained with Black women and lost only 2 pts with Black men. Hispanics gave Trump the win heavily!', 'created': '2024-11-06 17:07:34', 'submission_id': '1gksn3l'}
{'comment': 'Why did Kamala lose? Uninformed voters who think inflation following the pandemic was caused by the Democratic Party, despite it being a worldwide macroeconomic event.', 'created': '2024-11-06 17:27:05', 'submission_id': '1gksn3l'}
{'comment': 'From the moment Biden dropped out of the race, I was concerned that they would push for Kamala as the nominee. The fact of the matter is, she’s a black woman and giving her the nomination was a massive risk, as fucked up as that sounds. Quite frankly, it was not a risk worth taking. I’m dumbfounded that this man has managed to secure not just the electoral college, but the popular vote as well.', 'created': '2024-11-06 08:10:58', 'submission_id': '1gksn3l'}
{'comment': "I'm going to say the quiet part out loud, the main reason why she lost was because she's a woman. It has nothing to do with the economy, which is great by the way. It has nothing to do with immigration, farmers, restaurants, and factories throughout the country were hiring illegals during Trump first term and they kept coming over so people are lying when they say that's a reason, saying she's not Trump... Well no duh on that part.... The truth is, Americans are not ready to see a woman president, they've been conditioned for seeing a man.\n\nMany of you will not accept this but it is the truth, most people just can't see it in their minds that there's a woman president, it's unamerican for them.\n\nAlso, Trump is who a lot of men want to be, this is why he can say what he wants and do what he wants.\n\nIt's literally as simple as that, nothing complex about it at all. If it were so complicated, Joe Biden would have lost in 2020 but he didn't.", 'created': '2024-11-06 08:28:46', 'submission_id': '1gksn3l'}
{'comment': '30M people voted "Couch" rather than going to vote. 2016 all of again.', 'created': '2024-11-06 12:09:32', 'submission_id': '1gksn3l'}
{'comment': 'Trump fucking cheated. 4 years of planning by the republican.', 'created': '2024-11-06 12:24:28', 'submission_id': '1gksn3l'}
{'comment': "We need to stop fighting for those that vote against us. Stop protecting those who vote red from the policies they support. Blue cities need to find a way to quit the flow of welfare to the rural red. We need to stop calling them racists and fascists and start using language they understand. \n\nI'm starting first by calling out the lifelong welfare states collecting more than they contribute.", 'created': '2024-11-06 12:32:38', 'submission_id': '1gksn3l'}
{'comment': 'Misinformation spreads fast…. If lying was impossible, Trump would have lost every state', 'created': '2024-11-06 12:46:40', 'submission_id': '1gksn3l'}
{'comment': 'Economist here, \n\nI would say that the Economic messaging was weak. Not pushing back on the inflation talking points was a big mistake. \n\nTheir talking points were that inflation was somehow a result of fisal policy. It would actually have sufficed to quote Milton Friedman to dunk all over that. Or to say "MV =PY" even.\n\nBut nobody bothered. So, it was the economy stupid.', 'created': '2024-11-06 13:28:05', 'submission_id': '1gksn3l'}
{'comment': "I think she just faced the headwinds of having a rather unpopular incumbent that she was tied to and the administration being seen as responsible for the current inflation mess. Her campaign was near flawless, and she had virtually no baggage unlike Clinton in 2016. I saw something like 79% of respondents to exit polls stated the country was going in the wrong direction which didn't bode well for the incumbent party. \n\nIt sucks. But all we can do is pick up the pieces and be ready for the midterms in two years to regain some say in Washington.", 'created': '2024-11-06 13:34:35', 'submission_id': '1gksn3l'}
{'comment': "I'm finding it hard to believe that there is that much hate in the world. The human race doesn't want to survive. Trump means death, for the planet, for Ukraine, for women and children all over the world. How could this happen.", 'created': '2024-11-06 13:37:09', 'submission_id': '1gksn3l'}
{'comment': 'It was baked in since 2021.\n\nThe post-COVID times have been hard and Americans want to go back to the before times. Trump was President before COVID. He sold Americans pre-COVID nostalgia and they bought it hard.\n\nHe has absolutely no plan whatsoever that could return us to such a golden age, but most people don’t know that. Trump has always been all sizzle, no steak. \n\nWhile Trump himself was yammering on about nonsense, the Trump campaign was hammering a simple message: \n\nTrump: Low Prices, Kamala: High Prices. \n\nWorked as well for him as a discount chain. And he got a boatload of low information voters to the polls on it. \n\nSexism might have played a role. Racism doesn’t explain Trump’s gains among Black and Latino voters. Immigration was not high on the list of voter concerns. It was the economy, stupid.', 'created': '2024-11-06 13:52:28', 'submission_id': '1gksn3l'}
{'comment': 'She lost because there are still way too many sexist people in our country that don’t want a woman in charge. It’s sad, really. She would’ve been a great president.', 'created': '2024-11-06 14:38:32', 'submission_id': '1gksn3l'}
{'comment': 'I’m so upset that I can’t even form a coherent thought to convey my deep feelings of disgust at every single fucking person that voted for that monster.', 'created': '2024-11-06 14:51:13', 'submission_id': '1gksn3l'}
{'comment': 'IMHO it’s because she’s a woman. America is way more sexiest than racist. As a man with the same CV she would have won.', 'created': '2024-11-06 16:19:49', 'submission_id': '1gksn3l'}
{'comment': 'Because many Americans want to see immigrants in encampments and children ripped from their mother’s arms. Because they pay $1 more for eggs. Because they hate the lgbtq community and would rather it not exist. Because they’re racist to the core. Because they smelled blood in the water and pounced. \n\nBecause protecting democracy to them was destroying it. Because they have bloodlust and want the rush of seeing people suffer. Because they want to silence women. They want to read more stories about women bleeding out in the hospital parking lot. Because men want to be macho. \n\nBecause they want to ban books. Because they want to destroy American education. Because they like what they see with trump judges. \n\nBecause they want to see Trump act “with vigor” as the Supreme Court has given him license to do.\n\nThere is no one reason. It’s just an unending list of reasons, desires, grievances, cowardice, and hate. All of it is why.', 'created': '2024-11-06 16:41:46', 'submission_id': '1gksn3l'}
{'comment': 'Female, black, immigration, and the Democratic Party putting her in too late.', 'created': '2024-11-06 08:09:05', 'submission_id': '1gksn3l'}
{'comment': 'Harris is easily the best, most well-rounded candidate since Obama. Checked every box for me, basically no flaws. This is coming from a white man.\n\nUnfortunately Americans are trash and want trash. So that’s what we’re gonna get.', 'created': '2024-11-06 11:41:53', 'submission_id': '1gksn3l'}
{'comment': "Misogyny. Turns out that's the thing that runs the deepest in this shithole country. It's worse even than racism. Look at all the black and latino men that refused to vote for her. Men are the enemy.", 'created': '2024-11-06 12:20:37', 'submission_id': '1gksn3l'}
{'comment': 'Yeah, it wasn’t a Trump win, it was a total party loss on the Democrats side.', 'created': '2024-11-06 08:26:46', 'submission_id': '1gksn3l'}
{'comment': 'Evil and misogyny won again.', 'created': '2024-11-06 11:32:43', 'submission_id': '1gksn3l'}
{'comment': 'There\'s many reasons why, and they are not all necessarily her fault. It\'s a moot point to even explain at this point.\n\n\nThe fault, which has been a glaring issue since the end of the Obama administration, is how objectively bad the democrat party is at actually getting stuff done (when they can, obviously with congress control nothing can get done). The party is also weak in comparison to Maga\'s ruthlessness. Now this doesn\'t mean copy Maga, heck no. But we are the "nice" party now. And while it\'s nice to be nice, people view it as weakness.\n\n\nThis is magnified in relation to how extreme Maga is, if the Gop was actually reasonably sane, i.e pre Maga for the most part, we could still do the nice card. But I think we took it a bit too far, especially in 2024. Now don\'t get me wrong, Harris was not "weak" but when the other side is literal hate mongers who are indoctrinated into a cult. There\'s no stone that shouldn\'t be turned to put Maga in their place.\n\n\nUntil the Democrat party (at a government level) gets at least as confrontational as Maga, but in a logical and sane way, without violence, using the truth against Maga, but actual deliver on securing that people realize in the entire country that Maga is the enemy to all citizens. Then well... get ready for Vance 2028 then.', 'created': '2024-11-06 09:19:16', 'submission_id': '1gksn3l'}
{'comment': "Because she's a woman", 'created': '2024-11-06 09:49:09', 'submission_id': '1gksn3l'}
{'comment': 'Racism, sexism, stupidity, and Russian propaganda', 'created': '2024-11-06 11:21:15', 'submission_id': '1gksn3l'}
{'comment': 'She lost because the race was between an old rich white guy and a brown woman. One of those is statistically way more likely to be president.\n\n\nI was legit upset when I heard Biden was stepping down back in July. This was why.', 'created': '2024-11-06 12:40:18', 'submission_id': '1gksn3l'}
{'comment': 'This country was never going to vote for a woman. It sucks but it’s the truth.', 'created': '2024-11-06 14:36:12', 'submission_id': '1gksn3l'}
{'comment': 'I think people are terrible. \n\nYes racism, misogyny, all that, but people are generally terrible.', 'created': '2024-11-06 14:43:25', 'submission_id': '1gksn3l'}
{'comment': "She lost because she was a woman of color. She lost because she failed to separate herself from Biden on a policy standpoint.\n\nThis country does not seem to be ready for a woman president. We've tried twice now and failed. The reality immigration and the economy were more important than woman's rights. \n\nDemocrats need to understand that the type of candidate matters. Joe Biden won because he represented sanity in the face of Trump while being white and make. If that's what people want we need to give that to them. \n\nWe need to stop assuming that just because someone is of color that they will vote for a Democrat. Many Latinos in this country are conservative and do not view themselves as the same as immigrants currently coming to this country even if the origins are the same. \n\nMen in general are clearing going one direction and feel their masculinity is being stripped away. The economy has made it difficult to maintain this male dominated dynamic. \n\nPeople like Harris or a Buttigieg change this up and it's clearly not going to get better. \n\nDemocrats have 3 years to find a candidate that can actually fucking win. That can create real talking points to convince men to shift back to the left. \n\nThe fact that the popular vote was lost she tell us everything we know.", 'created': '2024-11-06 15:03:25', 'submission_id': '1gksn3l'}
{'comment': 'Biden did this, not Harris. He should’ve never thought about running for re-election and now we got the old man anyway. Great job snatching defeat from the jaws of victory yet again.', 'created': '2024-11-06 15:11:28', 'submission_id': '1gksn3l'}
{'comment': 'The culture wars worked. Elon Musk buying Twitter supercharged a lot of “anti-woke” conversation and Trump is just a unique figure who is able to just insult people and feel no repercussions whatsoever\n\nThat “Kamala Harris is for they/them, Donald Trump is for you” played on every commercial break on every sports program for over a month. It worked.', 'created': '2024-11-06 15:13:11', 'submission_id': '1gksn3l'}
{'comment': 'Because she was female- sadly. So hurt inside today… so scared for the future', 'created': '2024-11-06 15:18:36', 'submission_id': '1gksn3l'}
{'comment': 'Social media radicalized uneducated and young voters towards the right. Twitter played a bigger role than we probably realized.', 'created': '2024-11-06 16:09:07', 'submission_id': '1gksn3l'}
{'comment': 'Because this country is full of racists and misogynists.', 'created': '2024-11-06 16:23:33', 'submission_id': '1gksn3l'}
{'comment': 'I honestly think he had the silent majority. I’ve seen people that i’ve known for years posting on instagram today about how happy and relieved they are that he’s been elected. These are people who have never been political on social media, pretty normal people, people i’ve been friends with / acquaintances. They aren’t scared anymore to voice their support and it’s like, a lot of people. Every other post is one supporting him, i’ve honestly seen more support for him since he won than Kamala. I would love to believe this was rigged but I think the silent majority of people who are completely disconnected from politics and reality are the reasons this happened.', 'created': '2024-11-06 17:13:52', 'submission_id': '1gksn3l'}
{'comment': 'She lost because she didn’t do enough to separate herself from Biden. The people didn’t approve of him, he’s been mostly invisible the last year and frankly Democrats didn’t support her the way she wanted them too. Because she didn’t excite them, because Biden doesn’t excite them. She blew it with undecideds on The View, when she was afraid of hurting his feelings and that tied her to him. People want a change. \n\nAt the end of the day, Democrats and moderates didn’t show up and that’s a pretty clear cut case of not really wanting to support her', 'created': '2024-11-06 17:31:46', 'submission_id': '1gksn3l'}
{'comment': "Only 32% of the electorate was democratic this year, which is believe is the lowest number since Wilson?\n\nThe party is bleeding. We desperately need new blood. We MUST engage with people and stop seeding 90% of rural voters.\n\nWe have to let go of this imaginary idea that just giving up the majority of rural America is a win. It isn't.\n\nLets get out and meet people, challenge them and get ideas moving again. Name calling and trying to convince people that their guy is bad clearly isn't working.", 'created': '2024-11-06 17:35:30', 'submission_id': '1gksn3l'}
{'comment': 'Because she’s a black woman.', 'created': '2024-11-06 17:39:11', 'submission_id': '1gksn3l'}
{'comment': 'All of you who still voted Democrat are still heroes. We had the guts to try. \n\nWe do not quit now! As long as we can still vote, we vote! Keep voting Democrat in the next midterm election. Stay off X/twitter and don’t watch Fox News.', 'created': '2024-11-06 12:36:31', 'submission_id': '1gksn3l'}
{'comment': 'She was a WOMAN OF COLOR.', 'created': '2024-11-06 12:12:00', 'submission_id': '1gksn3l'}
{'comment': 'Because the US is filled with stupid, racist vengeful people, who vote. Thats it.', 'created': '2024-11-06 12:22:08', 'submission_id': '1gksn3l'}
{'comment': 'She lost because men are abhorrent creatures. The mistrust for women is so strong that they are willing to let go of racial slights. Trump won because 45% of Hispanic voters voted for him. A population who knows that some of the people they know, some of their relatives will be deported and put in internment camps voted for Trump. We live in a timeline where 1984 is ever more possible. I am so hopeless about future of America now.', 'created': '2024-11-06 13:33:40', 'submission_id': '1gksn3l'}
{'comment': '1. People are doing much worse than most others. This is bad. This very much clouds perception of the inside (Kamala) vs outsider (Trump). People are legitimately worse off than 4 years ago. \n\n2. Joe Biden should not have dropped out late. It should have been early enough to have a true primary. People don’t like “anointing” candidates. It’s anti/democratic. It pissed people off. Rightfully so. Shame on Joe Biden (just own it) and shame on the Democratic party for not recognizing this sooner. \n\n3. Immigration is a big issue. At the very least, recognize it is bigger than abortion and bigger than trans athletes in sports type crap. Enough already. Focus on big issues and be more moderate to win elections. Stop trying to swing for the progressive fences!\n\nTheir arrogance lost them the election and they are to blame more than anyone. And calling other voters deplorable and garbage? Dumb strategy.', 'created': '2024-11-06 08:08:49', 'submission_id': '1gksn3l'}
{'comment': 'Racism and sexism and stupidity', 'created': '2024-11-06 08:11:53', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 08:22:13', 'submission_id': '1gksn3l'}
{'comment': 'Female. There will never be a female president in my lifetime. I’m 39.', 'created': '2024-11-06 08:14:56', 'submission_id': '1gksn3l'}
{'comment': 'America is a racist shithole, that’s why.', 'created': '2024-11-06 11:36:40', 'submission_id': '1gksn3l'}
{'comment': 'Melanin Matters. Gender matters.', 'created': '2024-11-06 10:15:20', 'submission_id': '1gksn3l'}
{'comment': "We keep underestimating how utterly shitty Baby Boomers are. So many of them won't vote for anyone other than an old white man.", 'created': '2024-11-06 12:30:04', 'submission_id': '1gksn3l'}
{'comment': 'Inflation & Immigration.\n\nTrump ran it up with latinos overall, latino men, black men, white women, non-college voters etc.', 'created': '2024-11-06 08:15:43', 'submission_id': '1gksn3l'}
{'comment': 'Because Biden did not act in time to save the party! This was the biggest downfall by far along with the idea that no one else campaign against Kamala within the party!', 'created': '2024-11-06 08:34:53', 'submission_id': '1gksn3l'}
{'comment': 'A failure to appeal to young white men worried me from the get-go with her campaign. Utterly ignored them.', 'created': '2024-11-06 09:25:30', 'submission_id': '1gksn3l'}
{'comment': 'I pray for our nation', 'created': '2024-11-06 11:29:08', 'submission_id': '1gksn3l'}
{'comment': "Because Democrats wouldn't be able to promote their successes with a gun to their head. It might not have changed anything, but they should have been putting their stamp on everything their party has done for the country at large.\n\nBecause they can't use rhetoric for shit, meanwhile, Republicans know *exactly* what to say to rile people up.\n\nBecause people who vote Democrat would rather be keyboard-warriors than actually go out and start *effective* protests.", 'created': '2024-11-06 12:06:24', 'submission_id': '1gksn3l'}
{'comment': 'So much stuff happened behind the scenes. It was probably a lot of little things that added up, like Chinese and Russian interference', 'created': '2024-11-06 12:32:31', 'submission_id': '1gksn3l'}
{'comment': "The right wing appeal to the lizard brain always works. It works in fucking Sweden. Once disinformation and hate speech are legal, allowed by a fully financialized mainstream media AND treated like they're normal in a place, that place is gone. It works anywhere it's allowed. It works in Africa against other Africans. We are talking monkeys. The double standard of the dotard djing every version of Ave Maria for 40 minutes and threatening to kill everyone being just Trump but why doesn't Kamala have more policy is fucking disgusting. 3 corporations own 90% of the media views in America.", 'created': '2024-11-06 12:39:50', 'submission_id': '1gksn3l'}
{'comment': 'Every time they brought up how good the economy was she should have pointed out that the final year so good because of the democrats. The constant stimulus checks giving “free” extra money and the low gas prices because so few people were driving. Trump fought to stop it but democrats were the ones who pushed it through.\n\nI never not once heard her bring that fact up.', 'created': '2024-11-06 12:48:42', 'submission_id': '1gksn3l'}
{'comment': 'Systemic racism and sexism. Point blank! There’s no other logical explanation for this besides the fact that deep down inside, many Americans just aren’t ready to vote for a black woman.. well that AND Russian influence in American politics..', 'created': '2024-11-06 13:02:54', 'submission_id': '1gksn3l'}
{'comment': "We underestimated the apparently Titanic shift of black and Latino voters, that mixed with underestimating how much of the country doesn't value democracy or the constitution or are completely uninformed. Kamala's campaign was largely focused on the threat to democracy and people just didn't give a fuck", 'created': '2024-11-06 13:20:51', 'submission_id': '1gksn3l'}
{'comment': 'We chose a candidate that had too many strikes against her, despite her many qualifications. Sexists won’t vote for a woman; racists won’t vote for a POC; many buy into the lie that California is a regulatory mess; others alienated because she’s a former DA. \xa0Pick one or all.\xa0', 'created': '2024-11-06 13:21:55', 'submission_id': '1gksn3l'}
{'comment': 'I have come to the realization that although our country has some very smart people in it, it is made up of proudly ignorant people and racist people. I am so disappointed. Kamala was the clearly better candidate, but people couldn’t see it. The sheer stupidity of people astounds me.', 'created': '2024-11-06 14:07:16', 'submission_id': '1gksn3l'}
{'comment': 'Because half of your fellow citizens WANT to be ruled by a dictator. They want a country that is run like Putin runs Russia. They want to give a middle finger to the world. It’s hard to come to terms with but they really don’t like democracy. \n\nI didn’t serve my country for 8 years for this. Quite frankly I’m embarrassed to be an American.', 'created': '2024-11-06 14:17:18', 'submission_id': '1gksn3l'}
{'comment': 'Trump did not get more votes than last time. But 14 million less votes for democrats is shameful.', 'created': '2024-11-06 14:21:23', 'submission_id': '1gksn3l'}
{'comment': "Too many stupid, racist, misogynist, xenophobic people who vote. Voters would prefer a demented, stupid white man in office than an intelligent black woman. Idiots don't understand anything beyond identity.", 'created': '2024-11-06 14:21:29', 'submission_id': '1gksn3l'}
{'comment': "I couldn't help but marvel at the Trump sign campaign. It typically read like something out of a preschool book. I think there's something to that Dems need to adopt. Dumb it down and dumb it down some more.", 'created': '2024-11-06 14:46:05', 'submission_id': '1gksn3l'}
{'comment': 'Name a better duo than white women and voting against their own rights.\n\nAlso, you can be the most qualified candidate for a job as a woman, you will always be ignored over a pos with a penis.', 'created': '2024-11-06 14:51:07', 'submission_id': '1gksn3l'}
{'comment': '1. Media misinformation / blackouts / double standards\n2. Cults defy any logic \n\nThat’s really it people. She ran a great campaign.', 'created': '2024-11-06 15:00:37', 'submission_id': '1gksn3l'}
{'comment': "Because America wants fascism apparently. People like his horrible stuff, his insults and racism and sexism. That's why Democrats had such a hard time, we find that all repulsive and a lot of people don't.", 'created': '2024-11-06 15:05:58', 'submission_id': '1gksn3l'}
{'comment': 'Propaganda has rotted the minds of millions.', 'created': '2024-11-06 15:08:42', 'submission_id': '1gksn3l'}
{'comment': 'Because people didn’t vote 🗳️ \nthey sat home thinking either someone else would pee for them, they thought the 💩 show would not affect them, or they wanted to hold democrats to a higher standard than people who wanted to felon to be king. \nDuck around, they get to find out now. And I sincerely hope that every time they complain, someone is there saying “well you signed up for this with your vote”', 'created': '2024-11-06 15:32:06', 'submission_id': '1gksn3l'}
{'comment': 'I spoke to a Trump voter who said “I know he’s a racist and a criminal but everything’s so expensive.”', 'created': '2024-11-06 15:33:35', 'submission_id': '1gksn3l'}
{'comment': 'Three things: 1) Racism, 2) Misogyny and 3) the large number of people that care more about their own comfort then the rights and survival of others.', 'created': '2024-11-06 15:40:55', 'submission_id': '1gksn3l'}
{'comment': "Voters wanted change. Most are not liberal and think they are paying for everything they don't need but someone else benefits from. For many it's still taxes and money. It's been a false assumption that minorities will show up for the Dems and help win the elections. It doesn't matter how awful he is they can't keep on the same path and not get the results they want.", 'created': '2024-11-06 15:42:37', 'submission_id': '1gksn3l'}
{'comment': 'https://preview.redd.it/s2rjy7j9nazd1.jpeg?width=1512&format=pjpg&auto=webp&s=4930f7fc49fd2ecc511c853e7852a95a2eb9301a\n\nDon’t know.', 'created': '2024-11-06 15:45:41', 'submission_id': '1gksn3l'}
{'comment': "Kamala didn't fail \nAmerica failed her", 'created': '2024-11-06 16:12:17', 'submission_id': '1gksn3l'}
{'comment': 'Enjoy what you voted for, America. \n\nRupert Murdoch and Elon Musk won this election. \n\nI’m out.', 'created': '2024-11-06 16:14:02', 'submission_id': '1gksn3l'}
{'comment': "Why? The amount of voters. In the 2020 election, 74,223,975 votes for Trump and in 2024 (so far), 71,388,993 a difference of 2,834,982 less people voted for him. In 2020, Biden received 81,283,501 and Harris in 2024 (so far) is 66,464,426 and that is 14,819,075 less! 14 Million!! So voter turnout was the big issue.\n\nTrump is not more popular than he was in 2020, it just that people wouldn't vote for a black/Indian woman and they stayed home!\n\nI am afraid for my job and how my adult kids will survive what is coming.", 'created': '2024-11-06 16:25:35', 'submission_id': '1gksn3l'}
{'comment': "America is ignorant and it looks like someone figured out how to perfectly exploit that ignorance. By not coming after propaganda harder in the US the general population has is weak to attacks to reality and lack the critical thinking needed to actually digest the vast amounts of info thrown at their face. Reality no longer matters when people are constructing their own. I kept saying I didn't have faith in people having enough critical thinking skills to not mess this up. Looks like I was unfortunately correct.", 'created': '2024-11-06 16:31:44', 'submission_id': '1gksn3l'}
{'comment': '4 words : Latinos and black men', 'created': '2024-11-06 16:47:29', 'submission_id': '1gksn3l'}
{'comment': "It's pretty simple. \n\n1. She's a woman. \n\n2. She's black. \n\n3. The democratic kingmakers think they know better....and they keep putting up people that cannot win. \n\n \nThere are simply just voting blocks that will not ever vote for a woman, much less a person of color. To be fair, it's an imposable choice for many.", 'created': '2024-11-06 16:49:05', 'submission_id': '1gksn3l'}
{'comment': 'Why did she lose? Well Trump got 1M less votes than 2020 & Harris got 15M less votes than Biden. So they were estimating in the mid 80M’s for her. Did everyone stay home? Where are the votes if they didn’t go to him?', 'created': '2024-11-06 16:50:11', 'submission_id': '1gksn3l'}
{'comment': 'Kamala is THE MOST educated and qualified nominee in years, she worked her way to the top, and has experience in all 3 branches of government, if you think that there is something other than misogyny at play, you are lying to yourself and you are lying to your country.', 'created': '2024-11-06 16:51:46', 'submission_id': '1gksn3l'}
{'comment': "I hope all tge gay people that voted for him ( many of my in-laws) see their marriages invalidated. It's all red right now, nobody to blame but republicans when it happens.", 'created': '2024-11-06 17:04:02', 'submission_id': '1gksn3l'}
{'comment': "She lost because so much of the US electorate is sorely misinformed. If they really understood what was that stake and the consequences of their actions they would not have voted the way they did. Or they would not have stayed home and not voted. Boggles my mind at anybody would sit out in election this important but apparently many people did. This just shows you the lack of educated people in this country and the need to address the misinformation and educate people better so that they can make better informed decisions in the future. Once somebody gets sucked into a cult it's very difficult to get them out. The best way is to prevent it from happening in the first place..", 'created': '2024-11-06 17:16:12', 'submission_id': '1gksn3l'}
{'comment': 'Most Americans are either stupid or sexist or racist or all three', 'created': '2024-11-06 17:34:22', 'submission_id': '1gksn3l'}
{'comment': 'She’s a women. Dems need to realize this and stop nominating women. It’s the sad truth', 'created': '2024-11-06 19:24:41', 'submission_id': '1gksn3l'}
{'comment': 'Because the sad truth is this country would rather have a convicted felon as their president over a woman.', 'created': '2024-11-06 19:41:37', 'submission_id': '1gksn3l'}
{'comment': "A. She should not have picked Walz. While he is well liked , and became a star with the weird thing , she should have picked Shapiro. Despite him being Jewish which could hurt in Michigan, he would have delivered Pennsylvania. I got attacked for saying this when she picked him (likely some of the accounts were Ru trolls.)\n\nB. Going back further, Biden needed to step aside early enough to allow a primary. He waited too long and the party was backed in to accepting Harris as the nominee . She wasnt the best candidate but if she was not the nominee at that point there would have been a civil war within the Democratic party. I really think even better than a Harris-Shapiro ticket would have been a Newsom-Whitmer ticket\n\nC. The attack ads were not strong enough. Perhaps its because I don't live in a swing state and maybe there were better ads there but there should have been much stronger ads attacking his felon record and going strong on the border , painting him as responsible. Yeah she did , but IMO it was not strong enough. I commented on this too and got attacked.", 'created': '2024-11-06 19:51:21', 'submission_id': '1gksn3l'}
{'comment': 'because she has two X chromosomes', 'created': '2024-11-06 21:48:00', 'submission_id': '1gksn3l'}
{'comment': 'There are a lot of cultures and religions in America that will not vote for a female leader. Ever. Doesn’t matter how qualified.', 'created': '2024-11-06 22:55:32', 'submission_id': '1gksn3l'}
{'comment': 'The price of gas. The price of eggs. The price of rent. Who’s ever IN, is OUT. That’s why she lost. (I voted for her). Bye bye Ukraine. Hello 10 year olds having babies in Alabama. Rent and gas and eggs will still be high and they will still blame democrats. And they can still play with their machine gun toys. Fuck them all.', 'created': '2024-11-06 23:25:45', 'submission_id': '1gksn3l'}
{'comment': "Because in America, the only thing that's worse than being a rapist is being a woman", 'created': '2024-11-07 00:49:48', 'submission_id': '1gksn3l'}
{'comment': "Because she doesn't have a penis.\n\nBecause people would rather vote for a disgustig, vile, clown, bully than vote for a woman.", 'created': '2024-11-06 11:59:05', 'submission_id': '1gksn3l'}
{'comment': 'People stayed home. As usual', 'created': '2024-11-06 13:02:41', 'submission_id': '1gksn3l'}
{'comment': "Because she's a woman. \n\nFuck Sexist America.", 'created': '2024-11-06 13:16:05', 'submission_id': '1gksn3l'}
{'comment': None, 'created': '2024-11-06 08:22:57', 'submission_id': '1gksn3l'}
{'comment': 'The Democrats are trying to be the party for Europeans in 2050 instead of Americans in 2024. This is still a white country that skews conservative. \n\nToo much social change happened too fast displacing white males at the top of the social order. That too blaming them and guilting them. \n\nSomeone like a prime Biden could have won. But not a black woman... sorry', 'created': '2024-11-06 08:25:40', 'submission_id': '1gksn3l'}
{'comment': 'If the economy were truly important, then she would have won. Unemployment is down, gas prices are down, inflation is down. \n\nIt’s the lies that Fox Propaganda Network and others spewed and the failure of mainstream media to call those out those lies that has mattered. It’s the failure to fact check in real time that’s mattered.', 'created': '2024-11-06 12:05:20', 'submission_id': '1gksn3l'}
{'comment': 'She cannot campaign against Hate. The type of hate this country is built on. Young men hate women, older voters hate younger ones, white and Hispanic voters hate black people and Black voters hate immigrants and lgbt. The repubs encompasses all of these hateful people in these groups into a coalition.', 'created': '2024-11-06 12:21:58', 'submission_id': '1gksn3l'}
{'comment': "Whiny progressives, people holding her to a higher standard, women didn't come out to vote, people pissing and moaning about the best economy in the world. Basically lots of dumb people out there who were like I don't like Trump but I also don't like her because of all the things the guy I don't like said about her.", 'created': '2024-11-06 12:32:29', 'submission_id': '1gksn3l'}
{'comment': 'Because America hates women and would rather have a literal dictator than any woman. I hate this fucking country so much.', 'created': '2024-11-06 12:41:18', 'submission_id': '1gksn3l'}
{'comment': 'Misogyny and racism. It’s not a new phenomenon.', 'created': '2024-11-06 13:06:36', 'submission_id': '1gksn3l'}
{'comment': 'Because men are racists and hate women. There will be a lot of excuses made but that is the real reason. Goodnight to democracy', 'created': '2024-11-06 13:14:06', 'submission_id': '1gksn3l'}
{'comment': 'I\'m not a smart man, but in my opinion....\n\n- Biden dropped out way too late, which meant Harris did not get primaried. I think this turned off alot off people who thought she was "anointed".\n\n- The Democrats message has *got* to stop demonizing voters for their choices. They have reasons for liking the GOP, and calling them names only makes them dig in harder. The message has to be about what they will do to bring change....\n\n- Change. Harris famously said she wouldn\'t change a thing during her View appearance. And that completely flew in the face of obvious signs that Biden policies are/were very unpopular\n\n- the US electorate is not ready for a woman, and in particular a woman of color. Right or wrong, that\'s just an obvious fact.\n\n- people vote with their pocketbooks. And Trump\'s message about the economy stuck. Trump and team laid the blame on Biden for inflation over and over. Perception is everything.\n\n\nI\'m still processing, but this election says so much about the American electorate. I hope we can learn some lessons.', 'created': '2024-11-06 16:37:47', 'submission_id': '1gksn3l'}
{'comment': 'It was the perfect storm. \n\n1) Biden should\'ve never run for re-election, it should\'ve been Harris from the very start to give voters time to get educated. Dropping out 100 days before the election and forcing us to pivot to Harris without knowing much about her was disastrous. \n\n2) We underestimated the power of fear combined with laziness. Trump\'s main strategy was to create scapegoats, scare Americans into believing that they\'re destroying our country, and claim that Harris welcomes them with open arms. Once he created that fear, all he had to was propose a harsh blanket solution. People love simplicity. They want things to be open and shut. Research takes effort and time. Harris\' proposals were detailed and thorough, but for an average Joe to understand them, they\'d need to actually educate themselves. It\'s like Harris wrote a book for us, while Trump just wrote "X IS BAD, Y IS GOOD". Lots of people don\'t want to bother with reading a book, they\'ll just go with the guy makes things simple.\n\n3) Harris didn\'t pick a running mate from a swing state. If she\'d picked Sen. Kelly, she could\'ve gotten more support from Arizona and Nevada. If she\'d picked Gov. Shapiro, she could\'ve gotten more support from Pennsylvania. I liked Tim, but I knew picking him wasn\'t going to be enough.', 'created': '2024-11-06 16:51:57', 'submission_id': '1gksn3l'}
{'comment': 'Right wing propagandist working, democrats not running a white guy', 'created': '2024-11-06 08:33:53', 'submission_id': '1gksn3l'}
{'comment': 'Trump was able to rally rural voters and dig into dem stronghold cities. \n\nUnlike 2020 we were unable to dig into the rural vote and lost ground on the urban vote. \n\nAll in all an underperformance compared to Biden’s 2020 race', 'created': '2024-11-06 08:08:54', 'submission_id': '1gksn3l'}
{'comment': 'Because she is a black woman. Simple as that unfortunately', 'created': '2024-11-06 08:13:59', 'submission_id': '1gksn3l'}
{'comment': "Dem turnout wasn't there at all, and there's a deep issue in terms of race and gender in the country. And also the Democrats were so lax to Trump.", 'created': '2024-11-06 08:16:08', 'submission_id': '1gksn3l'}
{'comment': 'Voters thinking a woman would not be strong enough to lead. Economy is bad and she/Biden are blamed for it.', 'created': '2024-11-06 08:23:20', 'submission_id': '1gksn3l'}
{'comment': 'We democrats are the minority looks like', 'created': '2024-11-06 08:26:37', 'submission_id': '1gksn3l'}
{'comment': 'I blame the conspiracy theories on social media. I try not to believe bias and make sure to fact-check a lot of the things people say.', 'created': '2024-11-06 08:30:56', 'submission_id': '1gksn3l'}
{'comment': "gender politics doesn't affect regular people", 'created': '2024-11-06 08:32:24', 'submission_id': '1gksn3l'}
{'comment': 'I had a whole reply typed up and Reddit ate it. Dems ran the exact same campaign as the governor race in Virginia in 2021 that got Glen Youngkin elected. We talked about Trump this and Trump that rather than what we would do differently. Then there\'s the lack of endorsement from labor unions. I knew it was over when she didn\'t get outright endorsement from them even though Republicans are generally anti union. At no point did she ever come up with a catch phrase or anything of the sort to compete with "Make America Great Again." No "Hope and Change" no "Yes we can"... Just a bunch of talking and not doing a good job of selling. And then whoever told her to go on a bunch of black podcasts and radio shows needs to be fired.', 'created': '2024-11-06 08:37:21', 'submission_id': '1gksn3l'}
{'comment': 'It was the economy', 'created': '2024-11-06 09:33:48', 'submission_id': '1gksn3l'}
{'comment': 'We fight fire with tissue paper.\n\nWe were against the worst former president, a drove of incels, and a weird current world climate. \n\nWe didn’t fight back. We stuck again to try to play the political game. \n\nWe should have drawn blood, but instead, we just said “oh darn.”', 'created': '2024-11-06 10:16:08', 'submission_id': '1gksn3l'}
{'comment': 'Turnout looks lower across the board than 2020.', 'created': '2024-11-06 10:36:13', 'submission_id': '1gksn3l'}
{'comment': 'Because a lot of people are idiots', 'created': '2024-11-06 10:53:18', 'submission_id': '1gksn3l'}
{'comment': 'Groceries. They are voting out incumbent everywhere because of the cost of living due to inflation. People give the otherside a shot to fix it. Just because this same up with average people I would talk to and it was always negative, usually a topic I would avoid, and trump is associated with those 2019 prices', 'created': '2024-11-06 11:02:21', 'submission_id': '1gksn3l'}
{'comment': "Seems like in many people's minds, women's right was not as serious an issue it Dems made it to be(abortion was already legal in most of the swing states). Strictest abortion bans are in place in mostly deep red states. With some of the recent pro-abortion ballot initiatives winning, this further becomes a moot point as far as national level politics is concerns.", 'created': '2024-11-06 11:04:08', 'submission_id': '1gksn3l'}
{'comment': 'Deception of gullible Americans about why they are facing inflation and other economic hardship. America literally just elected the person responsible for creating the inflation we are facing and rejected one of the people who mitigated the effects for them. This is precisely why republicans are fighting to dismantle education.', 'created': '2024-11-06 12:07:26', 'submission_id': '1gksn3l'}
{'comment': 'Joe Biden', 'created': '2024-11-06 12:07:38', 'submission_id': '1gksn3l'}
{'comment': '10 million morons stayed home instead of coming out like in 2020', 'created': '2024-11-06 12:14:47', 'submission_id': '1gksn3l'}
{'comment': 'Sadly because she is a woman.', 'created': '2024-11-06 12:21:46', 'submission_id': '1gksn3l'}
{'comment': 'I believe the largest factor was Gender and race. I hate that, but I think it’s true', 'created': '2024-11-06 12:35:33', 'submission_id': '1gksn3l'}
{'comment': 'Trump ran a vicious series of attack ads in the final days of the campaign against Harris, blaming her for everything under the sun. The Harris campaign failed to run ads to debunk the perception that Trump was better at handling the economy. They should have driven home the point that Trump’s economy was actually the Covid economy in which millions lost their jobs and businesses struggled to survive. And how his plan would actually weaken the economy!\n\nThey also should have painted Trump as the communist sympathizer he is by showing the clip from Helsinki where Trump sided with Putin over his own intelligence agencies. But they didn’t because democrats, all too often, tend to be too nice when it comes to attack messaging.\n\nThe one thing you can say about Trump is that he knows marketing, and his campaign benefited from that skill.', 'created': '2024-11-06 12:40:39', 'submission_id': '1gksn3l'}
{'comment': 'Conservatives bought up MSM.', 'created': '2024-11-06 12:43:28', 'submission_id': '1gksn3l'}
{'comment': 'Russia won! Democracy has died.', 'created': '2024-11-06 12:59:36', 'submission_id': '1gksn3l'}
{'comment': "She spent the final weeks of her short campaign alienating the left and chasing a combination of undecideds that didn't exist and Republicans that weren't gettable. \n\nConventional wisdom is that elections are won by swing voters in the middle. I have never seen any proof that this works at all. It seems like the Ven diagram between having no strong political lean and reliably voting would not have much overlap, and in practice from the elections I've seen in my life time it seems like whoever convertes the most non-voters into votes with a strong radical message generally wins. \n\nTrump spent the last half of his campaign doing exactly that. He beat the drum about immigrants and imports and communists. He fired up his base with righteous ferver and convinced people that his way was the way forward, rather than try and play into a moderate idea of the future. And he just became the first R to win the popular vote in decades.\n\nAnd the chaser is that the Democrats are going to take the exact opposite lesson from this. They will look back and say she didn't appeal to the right enough, she was not moderate enough. They seem to believe on a deep, almost spiritual level that that's how the electorate works and that belief is unfalsifiable. If they win it's always because they followed that belief and not because McCain or Romney were even more moderate. If they lose it's always because they weren't moderate enough to beat their much more extreme opponent.\n\nOr they'll just blame poor people and minorities, but in a woke way. And then do nothing to account for losing those groups.", 'created': '2024-11-06 13:07:10', 'submission_id': '1gksn3l'}
{'comment': 'He cheated', 'created': '2024-11-06 13:27:11', 'submission_id': '1gksn3l'}
{'comment': 'There are a lot of factors, but deep down this comes to fragile masculinity.', 'created': '2024-11-06 13:31:14', 'submission_id': '1gksn3l'}
{'comment': 'Billionaires. They created a whole ecosystem for their candidate to thrive in by sanitizing his comments, spreading conspiracy theories, etc etc. Fox News and social media are cancer', 'created': '2024-11-06 13:56:52', 'submission_id': '1gksn3l'}
{'comment': 'Because fear is a stronger motivation than hope, and Republicans have been running on fear of the others since Rush Limbaugh was on the airwaves.', 'created': '2024-11-06 14:12:36', 'submission_id': '1gksn3l'}
{'comment': '14 million democrats stayed home', 'created': '2024-11-06 14:19:18', 'submission_id': '1gksn3l'}
{'comment': 'Because Americans suck. I have no other explanation.', 'created': '2024-11-06 14:21:13', 'submission_id': '1gksn3l'}
{'comment': "Most Trumpers really believe Trump has this ability to flip a switch and make things all better for them and the country. That's an illusion. \n\nTwo separate groups of Latino voters I spoke to said that they believed Kamala Harris was a communist and would bring communism to the US. I have no idea where they heard this, but if two different groups unrelated to each other heard this.......someone must have been doing some messaging out there around it.\n\nWhen it boils down to it, the overwhelming percentage of this country is uneducated and bigoted. At the end of the day , white men swooped in and said no to immigrants and anyone that doesn't look like them.", 'created': '2024-11-06 14:21:15', 'submission_id': '1gksn3l'}
{'comment': 'There’s too much hatred in this country', 'created': '2024-11-06 14:43:24', 'submission_id': '1gksn3l'}
{'comment': "Because she's black.\n\nBecause she's a woman.", 'created': '2024-11-06 14:56:04', 'submission_id': '1gksn3l'}
{'comment': 'She is a woman', 'created': '2024-11-06 14:57:56', 'submission_id': '1gksn3l'}
{'comment': 'Racism, sexism, or a combination of both', 'created': '2024-11-06 15:01:52', 'submission_id': '1gksn3l'}
{'comment': 'The true answer is that this was won by the media who is now almost entirely controlled by conservatives. This election was bought by elon for $44 billion. \n\nAlso, this is not an easily solvable problem.', 'created': '2024-11-06 15:02:33', 'submission_id': '1gksn3l'}
{'comment': 'She is a woman. This country took away the rights of women and then we put one up for election at the same time. Safe to say that we are not in a position to propose such progress.', 'created': '2024-11-06 15:03:25', 'submission_id': '1gksn3l'}
{'comment': 'The Democratic Party fumbled this. Didn’t realize how much of a concern Biden’s age was. Didn’t primary. Forced Biden out way too late. Didn’t primary. Nominated Kamala. \n\nThe constituency of the Democratic Party, at least the portion on Reddit, have no ability to view Trump supporters as anything other than evil trolls. Makes it tough to gauge what they’re gonna do if you don’t understand their basic nature.', 'created': '2024-11-06 15:16:39', 'submission_id': '1gksn3l'}
{'comment': "1. Americans need to better understand what blue *means* for everyday folks. But to do that, they need effective schools. Education fell to the sideline despite schools being a hot button issue for conservative voters. She picked an absolute stud for the education topic for VP then never developed that discussion.\n\n2. The economy was the centerpiece for voters, and the case for dems' 30-yr track record should have been the anchoring centerpiece to introduce or close on nearly EVERY topic: how does *that* effect the economy.\n\nPollsters said over and over again said the economy is what matters most to voters. The difficult moment of applauding dems' recovery (without shitting on your shortcomings) was not met. America had to be sold on the recovery curve overall, the moves made, such as Chips and Science, Infrastructure bill, and the Inflation reduction act, and the future plans-- in that sequence. The economy was the centerpiece for voters, and the case for dems' 30-yr track record should have been Thanksgiving dinner.", 'created': '2024-11-06 15:17:45', 'submission_id': '1gksn3l'}
{'comment': 'I am a progressive. I voted for Walz for governor. But I don’t know how your takeaway from this can be that the party needs to move left when people like Sherrod Brown, who did run on very pro-labor platforms, also got curbstomped. The base isn’t big enough. I’m sure there will be a retooling, but it’s not that simple.', 'created': '2024-11-06 15:24:05', 'submission_id': '1gksn3l'}
{'comment': 'I’m a woman and gay. But I’m an RN with lots of experience. At least I’ll be able to immigrate somewhere easily should I need to.', 'created': '2024-11-06 15:36:44', 'submission_id': '1gksn3l'}
{'comment': 'She’s female. I don’t like it, but the US is not in a position to elect a female president. Walz with Harris as VP would have had a better chance.', 'created': '2024-11-06 15:36:55', 'submission_id': '1gksn3l'}
{'comment': 'Because she was the incumbent VP in a relatively unpopular presidential administration, who was given barely any time to really establish herself as a presidential candidate because of how late Biden dropped out of the race (after campaigning on only being a transitional one-term president); because inflation and the border are hot-button issue that poll extremely well for Republicans right now; because GOP voters are unified behind their party’s platform in a way that more left-leaning voters simply are not; because unfortunately a lot of the electorate simply would not be willing to elect a woman of color as president.\n\nThose are the key reasons, in my opinion in order of importance from the top to the bottom, and I’m not looking forward to the countless essays and videos trying desperately and failing to explain other reasons why. She didn’t drive turnout, she didn’t inspire enthusiasm as a presidential candidate, and she didn’t have time to do either of those things with how late in the game she became the presumptive nominee so it’s not necessarily her fault, but even so.', 'created': '2024-11-06 15:41:08', 'submission_id': '1gksn3l'}
{'comment': "Racism and misinformation won. Now we have to get ready for mass deportation. And the systematic dismantling of the rights of every minority group, including women's rights. \n\nFascist have control of the Senate, the Supreme Court, most states, and possibly the House. Gen Z did this, and their lives will be hell.", 'created': '2024-11-06 15:46:37', 'submission_id': '1gksn3l'}
{'comment': 'Stupid people.', 'created': '2024-11-06 15:51:28', 'submission_id': '1gksn3l'}
{'comment': 'They would not vote for her because she is a woman and because of the color of her skin.', 'created': '2024-11-06 15:59:22', 'submission_id': '1gksn3l'}
{'comment': 'Presidency lost, senate lost, and there isn’t much hope for the house. We’re about to get a full 2 year dose of Republican ambitions, I’m sure everyone will get what they voted for.', 'created': '2024-11-06 16:00:27', 'submission_id': '1gksn3l'}
{'comment': 'We all know why she lost. Two reasons… the US is full of racists and they hate women. Period.', 'created': '2024-11-06 16:34:47', 'submission_id': '1gksn3l'}
{'comment': "Bluntly: She's a woman - female leadership/progress is always last. I'm sure the polls will show it's mostly men who flipped to Trump. We'll hear all about it for the next few months.", 'created': '2024-11-06 16:38:46', 'submission_id': '1gksn3l'}
{'comment': 'This happens when we are underestimate the amount of ignorant and clueless ppl in this country!', 'created': '2024-11-06 16:41:53', 'submission_id': '1gksn3l'}
{'comment': 'Men voted for a man. White women voted for a man. White people voted for a white person.', 'created': '2024-11-06 16:54:04', 'submission_id': '1gksn3l'}
{'comment': 'racism and misogyny', 'created': '2024-11-06 16:56:27', 'submission_id': '1gksn3l'}
{'comment': 'Inflation - incumbents worldwide have been losing.\n\nImmigration.', 'created': '2024-11-06 16:56:56', 'submission_id': '1gksn3l'}
{'comment': 'As a staunch feminist, we can’t event put a woman at the top of the ticket again, assuming President Vance will allow an election in 28. America will vote for fascism over her. \n\nWhitmer will suffer the same result and I’m sure she’d be an incredible candidate running another flawless campaign.', 'created': '2024-11-06 16:59:20', 'submission_id': '1gksn3l'}
{'comment': 'Democrats didn’t show up.', 'created': '2024-11-06 17:06:12', 'submission_id': '1gksn3l'}
{'comment': 'Because racism and sexism is the foundation of this country', 'created': '2024-11-06 17:07:14', 'submission_id': '1gksn3l'}
{'comment': 'Sexism and racism.', 'created': '2024-11-06 17:16:05', 'submission_id': '1gksn3l'}
{'comment': "Because she is a woman of color. I really believe it's as simple as that. This country has massive racism and sexism issues. I don't think it's any more complicated than that", 'created': '2024-11-06 17:33:24', 'submission_id': '1gksn3l'}
{'comment': 'dont make those excuses. the economy is fine and biden dropped out at the right time. The media salivated over Trump.', 'created': '2024-11-06 17:35:40', 'submission_id': '1gksn3l'}
{'comment': 'Dems didn’t go vote. It’s that simple. No one turned out, but especially dems. I made it at 6:30 with my kid in tow and there was no line. I was prepared to wait all night.', 'created': '2024-11-06 17:44:38', 'submission_id': '1gksn3l'}
{'comment': 'Weak Men. \n\nWhite Men\n\nBlack Men\n\nLatino Men\n\nThat and incredibly racist, religious, and uneducated white women.', 'created': '2024-11-06 17:45:23', 'submission_id': '1gksn3l'}
{'comment': "She didn't get the young people to come out and vote. I think bringing Liz Cheney in was a mistake. She tried to hard to reach moderates instead of the progressive base. Biden should have dropped out 2 years ago and a younger person should have ran instead", 'created': '2024-11-06 17:49:34', 'submission_id': '1gksn3l'}
{'comment': 'She lost on the economy. The Trump campaign acted like she’s been steering the ship and everything is her fault. And after Biden’s debate performance, Americans that don’t follow politics probably didn’t find that very hard to believe', 'created': '2024-11-06 18:05:23', 'submission_id': '1gksn3l'}
{'comment': "Because 15 millions Dems didn't show up to the polls. \n\nAnd they all forfeit their right to complain about the consequences we are all about to suffer", 'created': '2024-11-06 18:06:06', 'submission_id': '1gksn3l'}
{'comment': 'As fucked up and disgusting as it is, I think a big chunk of it is because she’s a woman. And I don’t know if America is ready for one yet.\xa0', 'created': '2024-11-06 18:09:05', 'submission_id': '1gksn3l'}
{'comment': 'I\'ve come to fully realize that America will not elect a woman. \n\nThat\'s really it.\n\nShe\'s had decades of experience and all I\'ve heard from men is "but what qualifications does she have". I\'ve even heard it from women. \n\nNo doubt that America is just stupid and falls for the constant lies and fear tactics that trump provokes. This is coming from a PA voter', 'created': '2024-11-06 18:12:44', 'submission_id': '1gksn3l'}
{'comment': 'Misogyny, racism, and a dash of Russian interference.', 'created': '2024-11-06 18:15:20', 'submission_id': '1gksn3l'}
{'comment': 'I mean sure, we can point to race and gender, but that really only explains why she is unattractive to “them.” But what about the 15 million Democrats who didn’t show up? Are these numbers saying that the call is coming from inside the house? Why did so many Democrats stay home when the future of our country is potentially on the line?', 'created': '2024-11-06 18:18:43', 'submission_id': '1gksn3l'}
{'comment': 'Hatred and bigotry won. He pushed the agenda, they drank the poison', 'created': '2024-11-06 18:34:01', 'submission_id': '1gksn3l'}
{'comment': 'Because she’s a woman', 'created': '2024-11-06 18:46:40', 'submission_id': '1gksn3l'}
{'comment': 'Trump didn’t win. The democrats lost. Joe Biden had no business staying in this race as long as he did. Kamala had a historically unpopular president tied to her waist that she couldn’t drag herself away from. She stayed in her comfort zone far too long when she should have been giving interviews and putting herself out there. She picked the wrong VP and that cost her Pennsylvania and more after he lost the debate. \n\nTake your pick. The Democrats served this election up to the worst human being on a silver platter.', 'created': '2024-11-06 18:48:45', 'submission_id': '1gksn3l'}
{'comment': "I think it's a bunch of reasons, take your pick honestly\n\n\\-this country deeply and truly hates women, both times Trump has won has been against a woman\n\n\\-1 out of 3 POC voted for Trump despite him running a deeply xenophobic campaign\n\n\\-she failed to gain actually popularity in the swing states, she lost nearly every one of them\n\nprobably several others too but I'm too exhausted to type anymore", 'created': '2024-11-06 18:49:49', 'submission_id': '1gksn3l'}
{'comment': 'The bottom line is that Dems should have run a candidate with the most broad appeal as possible. Harris was in 4th or 5th place in the Democratic primary in 2020 and was nowhere near being selected as the nominee. Biden dropped out and had no choice but to put Harris in his place. It was so late in the race that the party had no choice but to rally behind her.', 'created': '2024-11-06 19:07:55', 'submission_id': '1gksn3l'}
{'comment': 'Honestly, you have educated people verses uneducated people. The uneducated are taking over.', 'created': '2024-11-06 19:32:36', 'submission_id': '1gksn3l'}
{'comment': "She's a woman, and a person of color, and we live in a deeply racist, sexist country. Trump didn't gain any more votes than he had in 2020, we just had 15 million less for the Democrats because they couldn't bring themselves to vote for her. Performative, spineless assholes did this to us.", 'created': '2024-11-06 19:50:26', 'submission_id': '1gksn3l'}
{'comment': "I don't believe it. The numbers don't add up. After everything that orange fucker has done and said, after the his convictions, his disgusting racist and violent commentary, THE ARMED UPRISING AND ATTEMPT TO OVERTHROW THE GOVERNMENT - there is NO WAY Americans in general and Democrats in particular didn't vote en masse to remove him from the political sphere.\nHe's had time to learn how to cheat better. His buddy DeJoy is still running the USPS. He has massive resources from Musk, Putin et al. \n\nI do not believe it.", 'created': '2024-11-06 19:53:39', 'submission_id': '1gksn3l'}
{'comment': 'There was an article showing how Harris got 15 million less votes than Joe Biden did in the 2020 election.\n\nI blame them. Too fucking complacent or butt hurt over whatever issue it is that made them feel that sitting this one out was the right thing to do.', 'created': '2024-11-06 21:18:13', 'submission_id': '1gksn3l'}
{'comment': 'The dems are out of touch and failed to realize just how sexist, racist, and gullible the American populace is. They should have allowed for a proper democratic primary. Kamala (as impeccable of a campaign as she ran) had literally no chance.', 'created': '2024-11-06 22:14:02', 'submission_id': '1gksn3l'}
{'comment': 'Russia. Everything about this stinks.', 'created': '2024-11-06 22:33:19', 'submission_id': '1gksn3l'}
{'comment': 'I really agree with the sentiment that every country gets the government it deserves (with exceptions). While I don\'t like it at all, TONS of people voted for Trump. So if half the country is for Trump, this is what America gets. After knowing he\'s a rapist, racist, liar, conman, who cheated on all his wives, including sex with a pornstar. I\'ve heard it theorized that many didn\'t vote for Harris because of the "bad" economy with high prices. Time will tell, but I\'d say Trump isn\'t going to do a damn thing to help lower prices for anything. They\'ve been sold yet another lie that Trump is here to save them.', 'created': '2024-11-07 00:44:49', 'submission_id': '1gksn3l'}
{'comment': 'Simple: \n\nShe is a woman. \nShe is a woman of color. \nMost voters were and are white men. \nThey wanted a tough talking, angry white man like them, who fancies himself a barroom brawler cowboy type who can "stick it to the man." \n\nWant to win again? Pick candidates like Stone Cold, Sam Elliot, John Wayne, or some other cartoon character.', 'created': '2024-11-07 00:50:24', 'submission_id': '1gksn3l'}
{'comment': "Why? That's easy. Because we live in a shitty, stupid AF, fascist, woman-hating country.", 'created': '2024-11-07 01:04:48', 'submission_id': '1gksn3l'}
{'comment': 'Russia', 'created': '2024-11-07 01:50:19', 'submission_id': '1gksn3l'}
{'comment': 'Two reasons: Kamala is a woman and a woman of color. When the tale is told, America is a full bag of hate and misogyny. Nothing gets in the way of that, not even a traitorous imbecile like tRump. Once again, America has passed over a new day. I pray we survive the next four years.', 'created': '2024-11-07 01:55:57', 'submission_id': '1gksn3l'}
{'comment': 'Black men. They didn’t turn up', 'created': '2024-11-06 08:07:14', 'submission_id': '1gksn3l'}
{'comment': 'The problem is not Kamala Harris, but that Joe Biden would have resigned in 2022 when Roe v Wade was overturned, But he chose to stay stubbornly and somewhere I land that this was an election of dissatisfaction, threat Biden and Harris unfortunately had to take the hit!', 'created': '2024-11-06 08:10:11', 'submission_id': '1gksn3l'}
{'comment': 'Woman.', 'created': '2024-11-06 08:41:35', 'submission_id': '1gksn3l'}
{'comment': 'I just honestly think the people aren’t ready for a woman president there are some people out there that don’t want one', 'created': '2024-11-06 10:08:41', 'submission_id': '1gksn3l'}
{'comment': "Trump won both times he ran against a woman and lost the one time he ran against an old white man. I'm not saying sexism or racism is the main factor but it definitely played a part.", 'created': '2024-11-06 10:49:24', 'submission_id': '1gksn3l'}
{'comment': 'All these wordy answers… short answer is sexism. This country wont ever let a woman win. If Kamala had been the same person but male, she would’ve won.', 'created': '2024-11-06 13:31:50', 'submission_id': '1gksn3l'}
{'comment': 'Gender.\n\nTrump won against Hillary. Lost against Biden and now won against Kamala despite being worse than he ever was during the past 4 years. As liberal as many Men claim to be, I don’t think they can stand and watch a woman president', 'created': '2024-11-06 09:17:18', 'submission_id': '1gksn3l'}
{'comment': '* She didn\'t lose! America did! We also failed her!\n* She ran a spectacular campaign with no time to spare at the end of a race that she shouldn\'t have had to fight for us.\n* "Fed up with the economy" is a fake excuse. The Biden administration cleaned up a huge mismanaged pandemic mess and failed economy Trump left behind.\n* It also doesn\'t help that being the most successful Black female Vice President in American history also scars the hell out of and angers every male and female MAGA-Republican alike.', 'created': '2024-11-06 10:37:46', 'submission_id': '1gksn3l'}
{'comment': "I think democrats overestimated how little Americans care about other people. We focus on the downtrodden because they need a bit of help and affirmation. RW don't care about anyone but their own selves.", 'created': '2024-11-06 10:48:00', 'submission_id': '1gksn3l'}
{'comment': "She's a woman, and unfortunately most men still don't think women can hold powerful positions. Also very little help improving her image while Biden was president. Also aligning with the lgbtq+, dei, woke/trans position definitely didn't help swing voters want to vote for her", 'created': '2024-11-06 08:11:15', 'submission_id': '1gksn3l'}
{'comment': 'Democrats were way behind on the economy and the border. Rather than focus on how they were going to fix their mess given they were the incumbents in the Senate and Presidency - they instead focused on how bad Trump was as if people would care more about that than about their bottom line and the border. Democrats completely fumbled the election. Also to be fair, they had Biden at the top of the ticket as late as July/ August. He was massively unpopular. The most unpopular President since Jimmy Carter. This was a Presidential mandate we haven’t seen since Ronald Reagan in the 1980s.', 'created': '2024-11-06 08:14:53', 'submission_id': '1gksn3l'}
{'comment': "Biden tried to run again, he ceded the entire argument on immigration to Republicans and Harris didn't aggressively push an economic agenda and instead tried to run on not Trump, abortion and bipartisan spirit.", 'created': '2024-11-06 08:28:00', 'submission_id': '1gksn3l'}
{'comment': 'Let the Country Formerly Known as America go. \n\nWhite male supremacism is just too much of a drug for those who are unfamiliar with empathy', 'created': '2024-11-06 10:39:40', 'submission_id': '1gksn3l'}
{'comment': "The same reasons due to which Biden won. Since the pandemic life has been bad for many ordinary working class Americans. They voted out Trump because he did a bad job, they voted out Biden/Harris because they didn't do a good job either. \n\nDems underperformed in most of the down ballot races. So just accept that this was not our election to win.", 'created': '2024-11-06 10:55:15', 'submission_id': '1gksn3l'}
{'comment': 'She has a vagina.', 'created': '2024-11-06 12:46:48', 'submission_id': '1gksn3l'}
{'comment': 'Early reaction is it doesn’t matter since this may have been the US’ last election', 'created': '2024-11-06 13:39:45', 'submission_id': '1gksn3l'}
{'comment': "Joe Biden and Democrat leadership. Joe claimed he would be a transitional president and leadership did not push him to step aside for a new generation. Harris threw this campaign together with 3-4 months to go and yet I'm confident the beatdown would have been much worse if Biden had remained the candidate. Biden let the numbers that suggested his presidency was a success convince him that he was the best man for the job despite the fact that the people clearly did not want him to run. Just like RBG should have retired when she had the fucking chance. Hubris.", 'created': '2024-11-06 15:14:14', 'submission_id': '1gksn3l'}
{'comment': 'Biden. Yes, he should\'ve dropped out far earlier and allowed for a proper primary. He never should\'ve ran for re-election. Now you are going to say, "That\'s easy to say in hindsight"... Here\'s my response to that, there were plenty of people saying that at the time since the moment Biden announced he was running for 2024. We got pushed a candidate that polled <2% during the 2020 primaries, the problem was her and Biden, democrats didn\'t even do that badly downticket. Look for those people and listen to them, they might have a better finger on the pulse of the nation.\n\nTYT and Jon Stewart for example, but there are many others. And you do not have to agree with them on everything. But if you go back to listening to the same people, the party will remain the same and we\'ll lose just as catastrophically on 2028, assuming it even matters.\n\nAnd to me it\'s also clear that 2020 was the fluke and Trump only lost due to Covid management. There\'s a lot more I could say on the topic and to be clear it\'s my opinion. But at least during this time be open to criticism. Do not be offended, because our goal is to find a solution. Allow at least a few months of listening to differing opinions on this, because clearly the status quo is not working.', 'created': '2024-11-06 16:30:53', 'submission_id': '1gksn3l'}
{'comment': "She's the worst fear for the white establishment: a black woman vying for power.", 'created': '2024-11-06 08:30:39', 'submission_id': '1gksn3l'}
{'comment': 'Misogyny', 'created': '2024-11-06 08:11:16', 'submission_id': '1gksn3l'}
{'comment': 'She couldnt get a fear mongering campaign to motivate voters.', 'created': '2024-11-06 08:19:58', 'submission_id': '1gksn3l'}
{'comment': 'The economy. Majority of people aren’t doing well. Trump said he’d fix it.', 'created': '2024-11-06 08:22:08', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 10:30:01', 'submission_id': '1gksn3l'}
{'comment': "I'm so fucking disappointed", 'created': '2024-11-06 11:51:48', 'submission_id': '1gksn3l'}
{'comment': 'Trump best reflects the ignorance, hate, and selfishness of the American people as a whole. We are a country of brain rot and Trump is our guy.', 'created': '2024-11-06 11:52:05', 'submission_id': '1gksn3l'}
{'comment': 'Russians tried to blow up polling places yesterday', 'created': '2024-11-06 12:25:48', 'submission_id': '1gksn3l'}
{'comment': 'If I had to pick one thing, economy.', 'created': '2024-11-06 12:27:13', 'submission_id': '1gksn3l'}
{'comment': 'America has had great leaders in all areas of existence which has helped it grow but the characteristics of its people are no different from a 3rd world country people. Misogyny, illiteracy, racism, corruption etc. \n\nTrump played his game well and he learnt from experience how to win an election. Harris doesn’t need to despair she has age on her side.', 'created': '2024-11-06 12:38:41', 'submission_id': '1gksn3l'}
{'comment': 'Because hate is stronger than unity. And people LOVE to hate.', 'created': '2024-11-06 12:51:53', 'submission_id': '1gksn3l'}
{'comment': 'Thinking and it this all night I think you have to look a Kamala’s sex. I think a large portion of our society does not want a woman in the house Oval Office.', 'created': '2024-11-06 13:51:38', 'submission_id': '1gksn3l'}
{'comment': 'The lack of actual reporting on trump. They wanted this.', 'created': '2024-11-06 13:54:21', 'submission_id': '1gksn3l'}
{'comment': 'Probably the easiest message. "I can\'t buy what I could when Trump was president and I want that back."\n\nMost voters aren\'t in the weeds on policies. Ones that are have their political identity and don\'t really move without something earth shattering. "I feel worse today than I remember" is powerful, even if it\'s objectively incorrect.', 'created': '2024-11-06 13:55:31', 'submission_id': '1gksn3l'}
{'comment': 'I just don’t understand how she lost every single swing state', 'created': '2024-11-06 13:57:25', 'submission_id': '1gksn3l'}
{'comment': "It was a major mistake for core blue voters to ignore Joe's health for so long.\xa0\n\n\nIt was a constant discussion among moderates throughout his term, but his core base (for the most part) only woke up on debate night.", 'created': '2024-11-06 13:58:28', 'submission_id': '1gksn3l'}
{'comment': 'Because this country hates women.', 'created': '2024-11-06 14:02:43', 'submission_id': '1gksn3l'}
{'comment': 'Biden should never have run again. There should have been a normal primary. He would not have won. He could not talk anymore. Kamala’s messaging, campaign was far better than Trumps, but she had 3 1/2 mos. I really don’t think she could have done anymore with what she was given while still having to preserve Biden’s legacy. She was up against a cult and a cult leader. These people can’t be swayed.', 'created': '2024-11-06 14:02:58', 'submission_id': '1gksn3l'}
{'comment': 'Because this country sucks', 'created': '2024-11-06 14:04:25', 'submission_id': '1gksn3l'}
{'comment': 'Our country is racist AF and wouldnt vote a WOMEN or heaven forbid, a minority women\n\nrepeat of 2016 but worse because now she wasnt even white. \n\nReally fucked up. but lets be real are we that shocked? I was saying this saturday id be shocked if we won. I lost 250. So its not like i wasnt putting my money on her either, I really wanted her to win.', 'created': '2024-11-06 14:09:40', 'submission_id': '1gksn3l'}
{'comment': 'Because she is a woman, and we switched horses to late in the game \nWatching last night it was like she was running against trump and Biden, every state they compared how she did against trump and then how bad she did against biden in 2020', 'created': '2024-11-06 14:10:41', 'submission_id': '1gksn3l'}
{'comment': 'Lots of reasons, many of which have already been covered. However, I feel like this needs to be said: The press told us that the election was close and many - but certainly not all - polls showed Trump had a major chance of winning. Lots of us (collectively) chose to doubt this and it was to our detriment. I believe a lot of people also talked a big game and didn’t show up to vote. I guess we learned nothing from 2016 on the importance of actually voting and not getting complacent or arrogant.\n\nThere are also the sexist DINOs who simply could not stomach voting for a woman of color and chose either a third party clown or the felon because they had a penis. Let’s not fool ourselves, these people exist in our ranks and we need to flush them out with a quickness.', 'created': '2024-11-06 14:12:23', 'submission_id': '1gksn3l'}
{'comment': "White people, voter turn out, a large populace that doesn't understand economics, and right wing media scaring people into compliance.", 'created': '2024-11-06 14:14:54', 'submission_id': '1gksn3l'}
{'comment': 'No idea I just can’t wrap my head around it.', 'created': '2024-11-06 14:17:50', 'submission_id': '1gksn3l'}
{'comment': 'I mean, Dems run on abortion and democracy. Trump run on economy and immigration. \n\nDems should have had a full primary and get someone not in Biden’s administration.', 'created': '2024-11-06 14:18:58', 'submission_id': '1gksn3l'}
{'comment': "Democrats can't run a winner. They are morally right, they check all the progressives boxes, they just can't find someone who does all that and can still win. That's their problem.", 'created': '2024-11-06 14:23:22', 'submission_id': '1gksn3l'}
{'comment': 'The republican messaging is unapologetically uniformed and direct, and appeals to low educated voters. "I\'ll fix inflation!"', 'created': '2024-11-06 14:23:48', 'submission_id': '1gksn3l'}
{'comment': 'As usual,the media made the Mango Moron look like a normal,viable candidate.', 'created': '2024-11-06 14:27:42', 'submission_id': '1gksn3l'}
{'comment': 'Three reasons-\n1. Immigration\n2. Inflation/economy\n3. Transgender issues (no, I’m not exaggerating, they poured in like 30-40% of their ad budget into trans in sports, trans surgeries in prison, and trans in women’s bathroom)\n\nThis is painful. Democratic Party should actually soul search and tackle all three. They’re not that hard to win as well imo', 'created': '2024-11-06 14:27:45', 'submission_id': '1gksn3l'}
{'comment': 'Misogyny. Greed. Ignorance.', 'created': '2024-11-06 14:28:16', 'submission_id': '1gksn3l'}
{'comment': 'Misogyny and racism.', 'created': '2024-11-06 14:28:28', 'submission_id': '1gksn3l'}
{'comment': 'The real winner tonight is Russia and Putin.', 'created': '2024-11-06 14:31:38', 'submission_id': '1gksn3l'}
{'comment': 'Shitty American society.', 'created': '2024-11-06 14:31:48', 'submission_id': '1gksn3l'}
{'comment': "The Dems should have pushed the economuc recovery after covid. Biden has brought inflation down to 2.4%, after it rising because of covid and trump's stupid handling of covid and the economy. The next 4 years will be a mess.\xa0", 'created': '2024-11-06 14:35:20', 'submission_id': '1gksn3l'}
{'comment': "Because some people couldn't see past her flaws that trump would be absolutely worse for the country. I've seen tons of people online say they couldn't vote for kamala or trump while ignoring the fact that one of them was going to win and that one was clearly the worse option.", 'created': '2024-11-06 14:36:54', 'submission_id': '1gksn3l'}
{'comment': 'Because she’s a woman. Plain and simple', 'created': '2024-11-06 14:41:01', 'submission_id': '1gksn3l'}
{'comment': 'I genuinely believe it comes down to education, personality, and a persons capacity for empathy.', 'created': '2024-11-06 14:43:17', 'submission_id': '1gksn3l'}
{'comment': 'Y’all need to vote. We’ve got four years. Get the word out. There was no energy this year. We’re wondering why the black communities aren’t voting when we’re not really talking about things that are affecting their communities directly. Can’t imagine why they don’t feel represented. /s', 'created': '2024-11-06 14:46:38', 'submission_id': '1gksn3l'}
{'comment': 'Lack of a penis', 'created': '2024-11-06 14:49:14', 'submission_id': '1gksn3l'}
{'comment': 'Trump is a walking, defecating reality shit-show. Heaps more TV shit to serve viewers for another 4.', 'created': '2024-11-06 14:54:41', 'submission_id': '1gksn3l'}
{'comment': None, 'created': '2024-11-06 15:01:35', 'submission_id': '1gksn3l'}
{'comment': 'Not enough democrats. 😭', 'created': '2024-11-06 15:10:23', 'submission_id': '1gksn3l'}
{'comment': 'She was not a former stupid tv celebrity and was a victim of the post COVID economy. Neither was her fault. She did amazing for only 107 days of her campaign.\n\nTime will tell how many of Trumps campaign promises he can keep. Remember, Mexico has yet to pay a peso for his wall.', 'created': '2024-11-06 15:26:00', 'submission_id': '1gksn3l'}
{'comment': "Big Tech won.\n\nSelf proclaimed billionaire with his own social media site, able to push his own facts. \n\nFriends with another billionaire who bought his own social media platform where you could actively see him silence people who don't agree with him.\n\nFriends with another billionaire in Russia of Putin, who has interfered with our elections far too often now.\n\nJust go down the machine of ultra-rich narcissists, the alt-right podcast-averse, christian extremist, and corporations that we will just never be able to overcome. Now with the house, senate and court all swinging far right conservatives, we may never recover again.", 'created': '2024-11-06 15:36:44', 'submission_id': '1gksn3l'}
{'comment': "The reason for this outcome is at least 40 years old. It should've never gotten that close to begin with. A steady decline in education plus deregulation of media is the reason for this. No reasonable politics can win when there are no rules to play by.\n\nThat, combined with the ridiculous US voting system and the effective ruling of american oligarchs is what brought you here.", 'created': '2024-11-06 15:40:51', 'submission_id': '1gksn3l'}
{'comment': 'In retrospect, a decade of tacit support for “all white men are evil” politics might not have been the best electoral strategy.', 'created': '2024-11-06 15:42:29', 'submission_id': '1gksn3l'}
{'comment': 'She was only able to campaign for 100 days', 'created': '2024-11-06 15:45:26', 'submission_id': '1gksn3l'}
{'comment': 'Inflation, and the perception that democrats have been telling people the economy is better than people feel it is, which comes off as out of touch', 'created': '2024-11-06 16:01:28', 'submission_id': '1gksn3l'}
{'comment': 'She ran a Hillary 2016 style campaign with a side of Cheney. \nYou do the math.', 'created': '2024-11-06 16:02:18', 'submission_id': '1gksn3l'}
{'comment': 'I literally have no clue. 18 million people didn’t vote those year compared to 2020. 18 million more people voted during a global pandemic..\n\nWith how her campaign was going (fucking amazing, don’t even lie to yourself!), I don’t see how it was this far off. \n\nI am at a loss.', 'created': '2024-11-06 16:07:32', 'submission_id': '1gksn3l'}
{'comment': 'I think democrats were way too overconfident going into the election. I highly suspect voter turnout for this election will be worse, especially in crucial demographics, as people didn’t feel a fire under their ass to vote. \n\nI also saw a lot of poll interviews from Trump voters that they voted for him because he would be a better military leader. I feel like the campaign could have gone a lot harder on the messaging that Kamala could lead the military and that Tim was a veteran', 'created': '2024-11-06 16:12:37', 'submission_id': '1gksn3l'}
{'comment': '2 words: misogyny and racism', 'created': '2024-11-06 16:13:38', 'submission_id': '1gksn3l'}
{'comment': 'Men.', 'created': '2024-11-06 16:26:28', 'submission_id': '1gksn3l'}
{'comment': 'For the sake of the world, I hope the cult is right. I hope they can come to us and say, “see! Told ya so! Everything is fine!” But something tells me that will not be the case.', 'created': '2024-11-06 16:34:51', 'submission_id': '1gksn3l'}
{'comment': 'Seems a lot of people couldn’t vote for a black woman, tons of split ticket, for abortion rights and for trump. Latino and gen z men trended towards Trump a lot more than expected. And lower democratic turnout than expected, too.', 'created': '2024-11-06 16:35:20', 'submission_id': '1gksn3l'}
{'comment': "1. Kalama's lack of Charisma\n2. Biden running then dropping out too late\n3. Media sane-washing of Trump", 'created': '2024-11-06 16:36:35', 'submission_id': '1gksn3l'}
{'comment': 'The average IQ is 100', 'created': '2024-11-06 16:38:25', 'submission_id': '1gksn3l'}
{'comment': 'Kamala lost because big Mac’s are $11. That makes people mad.', 'created': '2024-11-06 16:46:46', 'submission_id': '1gksn3l'}
{'comment': 'Global socioeconomic forces since Covid.', 'created': '2024-11-06 16:56:05', 'submission_id': '1gksn3l'}
{'comment': 'She’s a woman. End of.', 'created': '2024-11-06 17:15:55', 'submission_id': '1gksn3l'}
{'comment': "Because people think trump will be better on the economy, and they don't care about women", 'created': '2024-11-06 17:23:49', 'submission_id': '1gksn3l'}
{'comment': 'White women', 'created': '2024-11-06 17:31:50', 'submission_id': '1gksn3l'}
{'comment': 'I think the timing is a pretty big part of it. Campaigning is a process that takes years of influence, advertising, donating, debating, interviewing, canvassing, public appearances, etc., and I honestly feel like Kamala jumping in so late as an emergency candidate was one of the biggest Achilles’ heels here. I get the impression that there’s still a large number of people who were surprised she was on the ballot and not Biden. She really just didn’t have enough time', 'created': '2024-11-06 17:36:22', 'submission_id': '1gksn3l'}
{'comment': 'What I think is a huge contributor is that we talked about trump everywhere all the time. Usually about how awful he is and that was a huge motivator for a lot of people.', 'created': '2024-11-06 17:36:43', 'submission_id': '1gksn3l'}
{'comment': 'Russian interference 100%', 'created': '2024-11-06 17:43:45', 'submission_id': '1gksn3l'}
{'comment': 'Racism and Misogyny like others have said on here.\n\nIt’s horrible.', 'created': '2024-11-06 17:45:21', 'submission_id': '1gksn3l'}
{'comment': 'Because they leaned too far into the “Trump is bad/evil/fascist” argument and didn’t push their policies hard enough. I also think that they went too far left, with the so-called “woke” stuff like transgender issues and so on and they really needed to adopt a more center-left agenda in order to appeal to a broader swath of people. Harris was also saddled with being tied to an extremely unpopular President in Biden. Sad state of affairs.', 'created': '2024-11-06 17:50:39', 'submission_id': '1gksn3l'}
{'comment': "Because she isn't well liked, because she's biracial, and a woman. This country will never elect a woman as long as the Republican party stands and it's going to be a very long time before a person of color becomes president again.", 'created': '2024-11-06 17:51:16', 'submission_id': '1gksn3l'}
{'comment': 'Trump has an extremely powerful cult of personality. Also unfortunately much of our nation is unwilling to vote for a Woman.', 'created': '2024-11-06 17:53:38', 'submission_id': '1gksn3l'}
{'comment': 'Men.', 'created': '2024-11-06 17:56:04', 'submission_id': '1gksn3l'}
{'comment': "My social circle is tired of seeing the 36+ gender agenda pushed everywhere. They are also mad about high interests and high prices.\n\nI tried explaining to help them understand, but it didn't work.\n\nShe lost because Disney puts lesbians on their movies, no other explanation.", 'created': '2024-11-06 17:57:42', 'submission_id': '1gksn3l'}
{'comment': 'I don’t think she had enough time to introduce herself to the voters. \n\nPlus Garland was a coward and should have locked Trump in prison years ago.', 'created': '2024-11-06 18:12:58', 'submission_id': '1gksn3l'}
{'comment': 'Misogyny and racism.', 'created': '2024-11-06 18:33:06', 'submission_id': '1gksn3l'}
{'comment': 'She did indeed lose, but I have faith that we can stick together and form a large coalition that will be stronger than ever.', 'created': '2024-11-06 18:43:54', 'submission_id': '1gksn3l'}
{'comment': 'I feel like our own intelligence screws us over. Too many independent thinkers. Conservatives are all hive mind and they’ll vote red no matter what. With Dems, we have so many individual ideas and beliefs that it starts to divide our voters. Morals stand on different lines from personal belief. Conservatives have little/no morals, so they all stand and vote for the same bullshit.', 'created': '2024-11-06 19:35:58', 'submission_id': '1gksn3l'}
{'comment': 'Because Kamala is a mixed-race woman.', 'created': '2024-11-06 20:09:55', 'submission_id': '1gksn3l'}
{'comment': 'They’re playing F around and find out, and this was not the election to do that. There was too much at stake. I believe he will do exactly what they tell him to, including enacting Project 2025. Everything that comes out of his mouth is a lie and he’s a mere puppet.', 'created': '2024-11-06 20:24:42', 'submission_id': '1gksn3l'}
{'comment': "In my academic/American Historian heart of hearts, it was Russia. One of the first things Putin did was ensure that an oligarch he controlled was the CEO of Russia's main news outlet. In America, Republican billionaires have bought them all up. \n\nFurthermore, Russia was clearly influencing and attacking our election yesterday, and has been for a while. This is known. This is recognized and understood. We know their ploys, their goals, and their pursuit of them. We know, we know, we know and yet we've completely allowed it to happen as a nation. \n\nPutin has won the Cold War and I'm afraid for myself, my loved ones, my LGBT Community, and my country.", 'created': '2024-11-06 20:26:39', 'submission_id': '1gksn3l'}
{'comment': 'Racism, sexism, ignorance and hate.', 'created': '2024-11-06 20:27:48', 'submission_id': '1gksn3l'}
{'comment': 'Unfortunately, we will never have a woman president, especially a woman of color. I’m 65 so my time to see this happen is running out', 'created': '2024-11-06 20:30:17', 'submission_id': '1gksn3l'}
{'comment': 'I don’t think she I don’t believe she actually did I believe trump cheated with the help of musk thiel and Putin', 'created': '2024-11-06 20:56:51', 'submission_id': '1gksn3l'}
{'comment': "Kamala lost because she wouldn't denounce a genocidal maniac and the DNC bent is over doubly by not having a primary in the first place where people could have had the chance to vote for someone they'd want in the Whitehouse.\n\nHonestly, part of me feels like a lot of Trump votes were in spite of these facts along with inflation that didn't stop corporate greed while it was happening during their administration.", 'created': '2024-11-06 21:04:03', 'submission_id': '1gksn3l'}
{'comment': "Democrats didn't turn out. Trump got about the same number of votes that he got in 2020. Harris got **10-15 million fewer votes than Biden in 2020**.", 'created': '2024-11-06 21:18:20', 'submission_id': '1gksn3l'}
{'comment': 'She was catering too much to right wing talking points. That and 15 million people that voted for Biden didn’t show.', 'created': '2024-11-06 21:18:32', 'submission_id': '1gksn3l'}
{'comment': 'Millions of young men', 'created': '2024-11-06 21:28:06', 'submission_id': '1gksn3l'}
{'comment': 'To be honest, the United States probably would\'ve gone this way in the near future. Trump\'s first term was a shock to the system, but no one paid attention. He was ultimately dismissed due to COVID and his appalling handling of it.\nJoe Biden had to turn the economy around and deal with the fallout from Trump. As Biden concentrated on recovering things Trump and his bitter cronies laid the groundwork for misinformation to burgeon and filter into the minds of the disaffected and angry. \nPolitical turmoil has affected many Western nations. I hope that, as a nation, you can come together after, what will be possibly a decade or more of upheaval and social decimation. \n\nKamala Harris represented inclusivity and hope. Donald Trump successfully tarnished that notion as a forced concept by the "liberal elite".\nWe all know what he represents. We must stay engaged or he will reshape US politics for decades to come.', 'created': '2024-11-06 21:39:49', 'submission_id': '1gksn3l'}
{'comment': 'Because it was rigged', 'created': '2024-11-06 22:28:28', 'submission_id': '1gksn3l'}
{'comment': 'Racism, misogyny, and disinformation', 'created': '2024-11-06 22:48:43', 'submission_id': '1gksn3l'}
{'comment': 'This scenario is the exact reason why we never got rid of the filibuster.', 'created': '2024-11-06 23:20:57', 'submission_id': '1gksn3l'}
{'comment': "It didn't matter what she did. They are caught in the vortex of their own algorithm. The only way to find a way out of this is to get rid of Section 230 and make social media tech giants accountable for the shit they allow con artists to perpetrate on the American public.", 'created': '2024-11-06 23:26:07', 'submission_id': '1gksn3l'}
{'comment': 'Trump lost 3 million votes from 2020, has zero to do with Trump. Dems and unaffiliated are flaky and didn’t show or and misogynistic', 'created': '2024-11-06 23:35:34', 'submission_id': '1gksn3l'}
{'comment': 'Kamala lost because too many voters readily believed lies, misinformation and disinformation. \nPeople were paying a lot more attention to current events, including politics, in 2020 than they did this year. \n\nThe efforts to shape a negative public perception about the economy began in 2021 and was effective enough that perception stayed negative regardless of improvements in the economy. A general lack of understanding about the economy basically provided an opportunity to define the economy as “grocery and gas prices”. That changed to “grocery prices” after gas prices declined (but without lower gas prices improving public perception). \n\nThe fact that so many people readily accepted Kamala’s name being swapped with Biden’s for any and everything related to Biden’s term in office is possibly the most bizarre out of all of the BS people fell for. “Why hasn’t she done the things in the past 3.5 years that she is promising to do now?” It’s mind-boggling that so many people lack the basic understanding of the role of VP. It would not have been different with another candidate. Republican politicians and rightwing media take advantage of people not fully paying attention and the lack of understanding even the things that seem like basic, common knowledge. They just throw accusations and lies out, no matter how obvious or dumb the lie seems, to see if people will fall for the BS.', 'created': '2024-11-06 23:42:38', 'submission_id': '1gksn3l'}
{'comment': 'I blame the media’s failure to cover the rampant disinformation and attacks on American social media platforms, or the Justice Department’s extensive work fighting this issue. \n\nCISA released this PSA mid-October, but the Justice Department has been releasing information on efforts since at least May of this year. No reporting. \nhttps://www.cisa.gov/sites/default/files/2024-10/PSA_Just_So_You_Know_Foreign_Threat_Actors_Likely_to_Use_a_Variety_of_TacticsV2-508.pdf\n\nInstead, we heard a lot about how old Biden is. Maybe because journalists are getting their leads from Twitter, which is being heavily manipulated by foreign threat actor bot farm operations intended to convince Americans to hate each other, not vote, vote Trump, or vote third party. AI advancements are being used to manipulate the appearance of American public opinion online, with the intent of manipulating American minds. \n\nAmericans could have been inoculated to this and taken personal steps to safeguard themselves—leave Twitter, delete Tik Tok, cut back on social media, talk to people in different algorithm bubbles, refresh their media literacy skills—if they had only known. \n\nThe agencies under the Biden administration have been doing their jobs on this. They have been shouting at us from the news sections on the Justice Department and CISA websites, but I’ve seen maybe 10 articles covering these releases over the past months. \n\nI don’t even think it’s a coverup, I think it’s incompetence or layoffs. Lately it’s felt like the news industry is selling “people who know the bare minimum talking out of their ass for hours about things they saw on Twitter” as news.', 'created': '2024-11-07 00:01:06', 'submission_id': '1gksn3l'}
{'comment': "Americans are morons. They can't think beyond their own personal needs. That's the post.", 'created': '2024-11-07 00:34:08', 'submission_id': '1gksn3l'}
{'comment': 'At what point do we just break away the blue states in the Northeast into The New England Commonwealth ? This New Confederacy bullshit is tiresome.', 'created': '2024-11-07 01:18:50', 'submission_id': '1gksn3l'}
{'comment': "I think personally a disconnect from the traditional woman. We shouldn't hate them because they spend their lives at home. I would of spoke of the noble aspects of being a mother 100 percent at home. How much woman do behind the scenes.\n\nWe made the trump supporters into demons instead of trying understand their true concerns and reach them. They are demons mind you but probably a better way to speak about it \n\nTrump isn't wrong about the border issue and unfortunately there's no changing that \n\nDidn't speak out to people hillbilly countries on their concerns.Do farms have enough water here? What about big business \n\n\nOverall though it's mostly the rigging beforehand on laws for voting and changing distribution of districts. Then lastly she's a woman but she doesn't respect red woman. This country has two types of woman and missed appealing to 3 percent of them. The first woman president has to be more than one political party.\n\nThen obviously trump gave racists a voice better. She didn't rally people enough for change, but maybe just not enough time after all.\n\nI think the biggest thing was education. People rather believe a liar and murderer means we failed long ago. \n\nWe need to work on educating the fools who don't see trump is scum of the worst kind\n\nNot enough voter drives either . I feel like I hardly saw her say go vote, and bring your friend too. Have you signed up because we need you.\n\nRealistically I would like to see voting a national holiday and everyone gets mail in voting. The people didn't get their voice heard is the first thing I would like to change for America", 'created': '2024-11-07 02:28:55', 'submission_id': '1gksn3l'}
{'comment': "She lost because she's a woman. A black woman at that. And misogyny and racism is on the rise thanks to Donald trump and maga. He has brought our culture back 50 years.", 'created': '2024-11-07 03:32:22', 'submission_id': '1gksn3l'}
{'comment': 'Trump basically had the exact same turnout as 2020, but the Dems had 15 million less people turn up at the voter booth.', 'created': '2024-11-07 03:37:06', 'submission_id': '1gksn3l'}
{'comment': 'In the words of James Carville, "It\'s the Economy Stupid." Democrats for years let the concerns of the blue collar voters slip away while they were caught up in their elitist indignation. \nIf they ever want to win again decisively, they need to tell the average Americans what they will do, not what they will propose.\nThey need to understand that as long as celebrity and big business endorsements are more important that out reach to the middle and working class they can not win. That is one thing that Biden did very well.\nThey have to accept that not everyone is going to say the right words or have their matching world view but that they are still very relevant.\nDemocrats, I truly believe, want better for the American people. But for too long, they wanted to be the moral authority, instead of that person that is going to help and have your back.', 'created': '2024-11-07 03:44:44', 'submission_id': '1gksn3l'}
{'comment': 'A weak, late campaign. Simple as that.', 'created': '2024-11-06 08:06:47', 'submission_id': '1gksn3l'}
{'comment': 'Economy. Valid guess.', 'created': '2024-11-06 08:05:43', 'submission_id': '1gksn3l'}
{'comment': "Because we're putting too much attention on the wrong issues.", 'created': '2024-11-06 08:14:13', 'submission_id': '1gksn3l'}
{'comment': 'Just about every undecided voter has said the same thing. They don’t know her policy or what she stands for. \n\nI think this is simple. She disappeared for 3 years from the spotlight. When Biden stepped down, she had to move quickly. But a lot of Americans didn’t know who she was. \n\nTrump is out there every day, whether you like him or not. You know what you get with Trump. Good or bad. People know who he is. \n\nKamala was forced to feed to us. Democrats were happy because she brought new energy to the party. But the rest of the country was asking who she was. Why they should elect someone they never voted for. \n\nI think that was a big part of her downfall.', 'created': '2024-11-06 08:50:14', 'submission_id': '1gksn3l'}
{'comment': 'Because as awful as Trump is as a person and a human being, she was simply too much for america to aspire to. Even with all the receipts from 2016.', 'created': '2024-11-06 09:38:04', 'submission_id': '1gksn3l'}
{'comment': 'Looking at the exits its because she is a minority woman.', 'created': '2024-11-06 09:57:19', 'submission_id': '1gksn3l'}
{'comment': 'Biden does have immunity just saying', 'created': '2024-11-06 11:30:59', 'submission_id': '1gksn3l'}
{'comment': 'Voters just aren’t ready for a female president', 'created': '2024-11-06 12:14:34', 'submission_id': '1gksn3l'}
{'comment': 'Democrats lost because she’s a bad candidate. She was always a bad candidate just like the majority of the candidates the Democratic Party has put forth as their main candidate since pushing out of the primary - Bernie Sanders in 2016.\n\nThis is what comes with being controlled by the money and not listening to what is popular in the United States, which is progressive policy. But the messaging sucks ,their digital apparatus sucks, and a bunch of old people who don’t understand modern day politics are still driving the party.', 'created': '2024-11-06 15:46:31', 'submission_id': '1gksn3l'}
{'comment': 'Republican attacks on immigration summed up:\n“They do more for immigrants than they do for Americans”\n\nIgnoring that being untrue…it worked\n\nThere is a reason Bernie is popular; the majority of the country is not happy and we need a progressive change to decouple us from relying on corporations to provide essential services.', 'created': '2024-11-06 15:53:37', 'submission_id': '1gksn3l'}
{'comment': 'She ran on a near identical platform to Biden, showed energy and charisma, is the most qualified candidate since Obama. She lost for one reason:\n\nAmerica would rather vote for a fascist than a woman', 'created': '2024-11-06 20:52:12', 'submission_id': '1gksn3l'}
{'comment': 'Any race, there will always be men who can’t vote for a woman even if it’s their own party', 'created': '2024-11-06 08:19:15', 'submission_id': '1gksn3l'}
{'comment': 'I don’t know what Kamala could have specifically done to win. I put most of the blame on the complete failure over multiple generations to reign in the ultra-wealthy. Trump should’ve been put in prison a long time ago and never sniffed the Presidency the first time around. A psychopathic South African white supremacist has total control over a significant social media outlet, and has been given multiple government contracts. We made him integral to our national security under a Democratic Presidency.', 'created': '2024-11-06 15:59:46', 'submission_id': '1gksn3l'}
{'comment': '1. couldn\'t separate herself from biden\n2. the extreme woke culture that began in 2020 while we were all at home in the pandemic\n 1. lbgtq+ education to minors\n 2. trans women in women\'s sports\n 3. defund the police\n 4. always oppression if a black person is not as successful or famous when compared to a white person who clearly earned their success (ie. caitlin clark)\n 5. this false notion that people of color getting ahead of whites are often given their accolades instead of earning them (ie. hollywood awards)\n 6. being labelled an -ist for simply disagreeing or taking a certain position\n 1. ie. like if i voted for trump (i didn\'t) i\'m automatically all the terrible things he is even though i\'m far from what he is. it\'s like you should know someone before just automatically handing out labels for them being different, which is kind of ironic since woke-ism was partially about getting people to be nicer to one another despite our differences. it\'s become a witch hunt against people who are not "woke enough."\n3. as of this writing, harris could lose in all the swing states. so like #1, i think voters did not like her word salads more than trump\'s. they see trump\'s word salads and cognitive decline but were willing risk him since he was president before and things were "ok." harris never adequately explained why she changed her politics from her primary run leading up to the 2020 election.\n4. she\'s a california politician. the country really don\'t like that. mccarthy didn\'t last long as house speaker. this effectively ruins newsom\'s chances in the future or at least it should lol.\n5. i think celebrity endorsements might have also nudged away people. like most celebrities are liberal, and they don\'t have worry about the high prices so voting trump was a "oh you\'re trying to tell me who to vote for while you are living in luxury?...well f u."', 'created': '2024-11-06 09:05:13', 'submission_id': '1gksn3l'}
{'comment': '1.) VP of an unpopular administration\n2.) Blamed for high grocery prices. \n3.) Biden admin ignored the immigration problem for 3 years then tried to blame Trump when the border bill failed. Biden had 3 years to do something via executive order. \n4.) Harris only had 3 months to campaign. \n5.) like it or not, no one liked her before she was the nominee and her getting forced on us likely swung moderates the other way. \n6.) Our party’s priorities have swung away from bread and butter issues that most voters care about and that’s hemorrhaging working class voters.', 'created': '2024-11-06 08:54:29', 'submission_id': '1gksn3l'}
{'comment': "The party should've just went with someone else.", 'created': '2024-11-06 08:07:53', 'submission_id': '1gksn3l'}
{'comment': 'Largely disconnected from the issues most Americans care about.', 'created': '2024-11-06 08:17:27', 'submission_id': '1gksn3l'}
{'comment': "A horrible campaign as soon as they brought in the Biden people to run it. They were running a great campaign with some good policies and a great VP pick and then they turned track and ran a typical corporate campaign. \nPeople want populism. America just picked Trump who is a fake populist because they view him as better than an establishment candidate. Reality is Democrats won't learn and won't change and this will keep happening.", 'created': '2024-11-06 08:19:29', 'submission_id': '1gksn3l'}
{'comment': 'Many factors but here’s what I see simplified:\n\n*1. Didn’t separate herself from Joe Biden. \n2. Showed more care for minor issues than major issues. Sub-population vs. Population as a whole. California views are not representative of the whole country. \n3. Not relatable/unknown. She hid herself for three years.\n4. Not enough time to campaign. This is on her and the Dem party.', 'created': '2024-11-06 08:31:28', 'submission_id': '1gksn3l'}
{'comment': 'USA was not ready for a Black Woman. Fear and anger got the best of moderate republican who chose party over country', 'created': '2024-11-06 10:16:47', 'submission_id': '1gksn3l'}
{'comment': "She still hasn't lost btw", 'created': '2024-11-06 10:25:27', 'submission_id': '1gksn3l'}
{'comment': "She ran on hopes and dreams, leaned way too far to the right thinking she'd gather up conservatives even though they're all diehard for Trump no matter what.", 'created': '2024-11-06 10:26:35', 'submission_id': '1gksn3l'}
{'comment': 'Russian and Israeli propaganda and interference from Trump and his minions. He was saying it all along that he had it in the bag. This is what he meant.', 'created': '2024-11-06 11:10:30', 'submission_id': '1gksn3l'}
{'comment': 'Because Americans are too racist and too sexist.', 'created': '2024-11-06 12:51:54', 'submission_id': '1gksn3l'}
{'comment': 'They should get more candidates in the Democratic party who is a male Gen Z or someone born from the 1970s to run for president next time. America is not prepared for female leaders to run the country.', 'created': '2024-11-06 13:03:16', 'submission_id': '1gksn3l'}
{'comment': 'Republicans cheated', 'created': '2024-11-06 13:19:15', 'submission_id': '1gksn3l'}
{'comment': "This country has shifted so far fucking right. She ran a flawless campaign and anyone who says otherwise can eat crap. It genuinely makes me sad in a way that Hillary didn't because whereas Hillary had a lot of issues in her campaign, Kamala did not. Really wish I could just hug her right now.", 'created': '2024-11-06 14:33:07', 'submission_id': '1gksn3l'}
{'comment': 'Shes a woman\n\nShes not white\n\nShe didnt have enough time to separate herself from Biden\n\nMostly the first two', 'created': '2024-11-06 14:51:19', 'submission_id': '1gksn3l'}
{'comment': "1. She's a woman.\n\n2. She's not white.\n\n3. Owning the Libs was more important to many people than their children's futures.", 'created': '2024-11-06 14:54:41', 'submission_id': '1gksn3l'}
{'comment': 'This has everything to do with dems catering to the center. The base was not motivated and that’s because the perception of Kamala was that she is the status quo candidate', 'created': '2024-11-06 15:20:26', 'submission_id': '1gksn3l'}
{'comment': 'Sorry to say this, but hate won. We will see more openly racism in this country, more than what we saw his first term.', 'created': '2024-11-06 16:01:45', 'submission_id': '1gksn3l'}
{'comment': 'I tried to warn people but my comments and posts were deleted and downvoted.', 'created': '2024-11-06 16:34:34', 'submission_id': '1gksn3l'}
{'comment': 'Not having any policy', 'created': '2024-11-06 08:09:07', 'submission_id': '1gksn3l'}
{'comment': 'because democracy is alive and well', 'created': '2024-11-06 08:15:32', 'submission_id': '1gksn3l'}
{'comment': 'Most people don’t give af about trans rights, abortion rights or climate change, especially young men and especially when people are struggling economically. Fix the crime issues, the immigration issues and the cost of living issues and she just fell flat on those topics. Plus she was anointed as the Dem nominee which isn’t how we run our democracy.', 'created': '2024-11-06 08:31:11', 'submission_id': '1gksn3l'}
{'comment': 'Because she is seen as an extension of Joe Biden and Joe Biden is practically hated. And she ran to the right on every single god damn issue. Why would independents vote for the fake republican when the real one is right there', 'created': '2024-11-06 08:16:44', 'submission_id': '1gksn3l'}
{'comment': 'Weighted by the Biden admin that was plagued by high costs. Particularly housing. If we want to win on the national level we have to be better at the local level. Stop the bureaucratic quagmire and build more fucking houses.', 'created': '2024-11-06 08:23:53', 'submission_id': '1gksn3l'}
{'comment': "She's an imperfect woman. That's really it.", 'created': '2024-11-06 09:53:19', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 10:14:25', 'submission_id': '1gksn3l'}
{'comment': 'Is it worth taking a short position on USD or other financial instruments? Any financially savvy people out there care to comment?', 'created': '2024-11-06 11:27:35', 'submission_id': '1gksn3l'}
{'comment': 'Couldn’t have anything to do with purging hundreds of thousands of votes in battleground states days before an election could it?', 'created': '2024-11-06 12:05:35', 'submission_id': '1gksn3l'}
{'comment': 'Does Kamala have to certify the election?', 'created': '2024-11-06 12:11:21', 'submission_id': '1gksn3l'}
{'comment': "Authoritarians (which includes authority over women and their bodies) and people who think Trump will make everything cheaper again.\n\nPeople who want to punish baby killers who control the weather. And those who genuinely don't understand how tarrifs work are voting for the tariff guy.", 'created': '2024-11-06 12:16:39', 'submission_id': '1gksn3l'}
{'comment': 'Whell', 'created': '2024-11-06 12:26:27', 'submission_id': '1gksn3l'}
{'comment': 'Question if we manage to win the house and win the midterm 2028 how much could we limit trump', 'created': '2024-11-06 12:57:38', 'submission_id': '1gksn3l'}
{'comment': 'The old adage that people vote with their wallets seems to be true.', 'created': '2024-11-06 13:00:04', 'submission_id': '1gksn3l'}
{'comment': 'Feels like the economy and immigration to me...', 'created': '2024-11-06 13:02:23', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 13:15:34', 'submission_id': '1gksn3l'}
{'comment': 'Honestly? Racism and sexism won the day. I don’t mean only white people. Non-whites are not good allies of other non-whites. Sexism is strong in most white and non-white groups.', 'created': '2024-11-06 13:59:50', 'submission_id': '1gksn3l'}
{'comment': 'How did jill stein di?', 'created': '2024-11-06 14:00:34', 'submission_id': '1gksn3l'}
{'comment': 'Disillusionment towards multiculturalism, a deregulated media landscape, and the economy.', 'created': '2024-11-06 14:13:58', 'submission_id': '1gksn3l'}
{'comment': "The Democrat's priorities of women, gays, Blacks, immigrants, transgenders, etc are not America's priorities.", 'created': '2024-11-06 14:24:18', 'submission_id': '1gksn3l'}
{'comment': 'I think this : f the center. Move left be the party of bold ideas. That idiot won’t be running in 28. The cult won’t be the cult without the leader.', 'created': '2024-11-06 14:24:49', 'submission_id': '1gksn3l'}
{'comment': 'In one word…racism.\n\nRacism and misogyny towards her, sure. \n\nMore so white people who vote for him just simply hate no. White people. Their neibhors, co workers, family. Plain and simple racism is thriving right now.', 'created': '2024-11-06 14:25:06', 'submission_id': '1gksn3l'}
{'comment': "Democrats were playing a pre-trump game. They thought that Trump's 2020 loss and J6 meant he's done and let's get back to normal. The country had still changed.", 'created': '2024-11-06 14:26:43', 'submission_id': '1gksn3l'}
{'comment': "He's the president nobody needs but everyone deserves...", 'created': '2024-11-06 14:29:00', 'submission_id': '1gksn3l'}
{'comment': "First of all, Trump was campaigning since his loss in 2020, Biden was not (as well she shouldn't have, he was too busy working) so it created a campaign vacuum which Trump happily filled. Second, when Biden did start to campaign, it honestly looked a little sad. Democrats wanted a new face, so the campaign was very half-hearted, causing Democrats to be unenthusiastic until Biden stepped down and endorsed Harris at the last moment. This angered some Democrats because they felt as if they weren't given a choice in their candidate, and they weren't really wrong, causing some Democrats to not vote or vote 3rd party out of spite. Now Harris ran a good campaign, and the polls were looking in her favor, but that might have actually caused another problem; she seemed to be so far ahead that it looked as if there was no way for her to lose, leading more Democrats to not vote, because they thought they'd win anyway. So that's my theory, and now we're stuck with a convicted felon and a dictator wannabe for our next president.", 'created': '2024-11-06 14:31:10', 'submission_id': '1gksn3l'}
{'comment': 'I actually think Biden dropped out too early. She had great momentum right after he dropped out, everyone was so excited and thrilled and way high on the train then. He should have dropped close to the election and really thrown them for a loop and she could have ridden that wave straight into the polls.', 'created': '2024-11-06 14:40:52', 'submission_id': '1gksn3l'}
{'comment': "I think inflation was #1 on a lot of people's minds, beyond social issues or promised benefits like the house or child credit. While the economy may be doing well, everything is more expensive than it used to be and people are barely getting enough of an increase each year (if any increase at all) to keep up with the cost of living.", 'created': '2024-11-06 14:43:33', 'submission_id': '1gksn3l'}
{'comment': "White woman, and alpha bro culture. White men won tonight. There's nothing she could do to counter that.", 'created': '2024-11-06 14:56:20', 'submission_id': '1gksn3l'}
{'comment': 'More people voted for Trump than for Harris in the states that mattered. God know why though…', 'created': '2024-11-06 15:15:53', 'submission_id': '1gksn3l'}
{'comment': 'Lack of economic messaging. Moving too far to the right.', 'created': '2024-11-06 15:20:08', 'submission_id': '1gksn3l'}
{'comment': 'One of my friend lost everything. House , car, job and blame it on Biden. \nAlso, Biden knew immigrants was very hot subject, He rub the Republicans for allowing immigrants to fly and open boarder. If he did that and also didn’t run for president the 2nd time. Is my view', 'created': '2024-11-06 15:32:51', 'submission_id': '1gksn3l'}
{'comment': 'Racism and Sexism', 'created': '2024-11-06 15:38:58', 'submission_id': '1gksn3l'}
{'comment': 'He’s incompetent and has the attention span of a small child. His crew in Congress is half MAGA and half Christofascist… they’ll do nothing', 'created': '2024-11-06 15:39:20', 'submission_id': '1gksn3l'}
{'comment': '15 million fewer people voted for Harris than Biden while Trump shed only 3 million votes.', 'created': '2024-11-06 15:39:37', 'submission_id': '1gksn3l'}
{'comment': 'We\'re gonna keep losing elections if we think it\'s because the country is "racist". This election was won on gender and education lines. \n\nThe democrats walking around parading the Cheney\'s like they\'re the people the base cares about was unhinged. Picking a progressive Tim Walz and then campaigning on the border and other right wing messaging was stupid. Republicans will vote for republicans, and the Dems barely did/promise anything to shore up their base.\n\nEvery 4 years we\'re fucking terrified for standing on our values and having a true progressive. I hope democrats will stop being scared of themselves in the coming years.', 'created': '2024-11-06 16:04:47', 'submission_id': '1gksn3l'}
{'comment': 'I hate this place.', 'created': '2024-11-06 16:09:56', 'submission_id': '1gksn3l'}
{'comment': 'Joel Embiid. Couldn’t get Philly engaged when you fighting with reporters and not playing basketball.', 'created': '2024-11-06 16:12:02', 'submission_id': '1gksn3l'}
{'comment': 'This sadly is a direct reflection of Americas tolerance, but the trans issues I feel caused her problems\n\nAmerica sadly isn’t ready for acceptance to that level, and instead chooses hate and religion', 'created': '2024-11-06 16:14:04', 'submission_id': '1gksn3l'}
{'comment': 'Because wannabes will always choose the so-called successful people. And we have a lot of them. The alternative was a "weak woman" in their eyes. To the Democrats who didn\'t vote, you\'re part of the bigger problem.', 'created': '2024-11-06 16:14:30', 'submission_id': '1gksn3l'}
{'comment': 'The crime of being a woman. Im still not sure what the fuck they were thinking', 'created': '2024-11-06 16:17:14', 'submission_id': '1gksn3l'}
{'comment': 'We need Sherman’s and Huey Longs. Burn their shit to the ground and take no prisoners. \nBut that could just be the grief talking.', 'created': '2024-11-06 16:22:16', 'submission_id': '1gksn3l'}
{'comment': '-The campaign directed to straight men was too late, too democrat. \n\n-People are not Democrat, at least most of votes needed are not really democrats. You already have the democrats votes, you need the independents.\n\n-You need to appeal emotionally not rationally. \n\n-Stop blaming third party candidates, they didn’t do enough damage. \n\n-Biden dropped out too late.', 'created': '2024-11-06 16:26:59', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 16:29:40', 'submission_id': '1gksn3l'}
{'comment': 'The nation is too sexist.', 'created': '2024-11-06 16:48:02', 'submission_id': '1gksn3l'}
{'comment': 'But an awful lot of people were focused on women’s health. Any pregnant woman could have a miscarriage or any number of complications of pregnancy and not be helped by doctors because they’re afraid they’d be jailed.', 'created': '2024-11-06 17:55:10', 'submission_id': '1gksn3l'}
{'comment': 'How about we keep the original candidate and stick with him next time. We would have had better results', 'created': '2024-11-06 17:58:10', 'submission_id': '1gksn3l'}
{'comment': 'I’m praying that Biden is now working furiously to lay guardrails to limit the dismantling and destruction that’s coming.', 'created': '2024-11-06 17:59:17', 'submission_id': '1gksn3l'}
{'comment': 'Damn white people\n\n', 'created': '2024-11-06 18:00:10', 'submission_id': '1gksn3l'}
{'comment': 'Racism is rampant.', 'created': '2024-11-06 18:00:20', 'submission_id': '1gksn3l'}
{'comment': 'Racism & Misogyny', 'created': '2024-11-06 18:05:13', 'submission_id': '1gksn3l'}
{'comment': 'Inflation, men still don’t believe a woman could do the job, and women voting against themselves. And voter apathy.', 'created': '2024-11-06 18:05:28', 'submission_id': '1gksn3l'}
{'comment': 'Millions of Democrats did not bother to vote this time.', 'created': '2024-11-06 18:09:46', 'submission_id': '1gksn3l'}
{'comment': 'The Democratic Party should be excoriated for this one. They ran a Diet Republican candidate and a Diet Republican campaign to appeal to a vanishing “middle ground,” abandoning their progressive platform and the left-most flank of the party to … win Liz Cheney’s endorsement? \n\nJust a garbage campaign that was wholly uninspired. \n\nBuuuuuut the real reason she lost? White supremacy. White women voted with white men, about 70% of those who cast ballots in totality, voted for Trump and white supremacy at 52% and 59%, respectively, per an NBC News exit poll. White women will always align themselves with white men to maintain privilege and control over people of color.', 'created': '2024-11-06 18:18:27', 'submission_id': '1gksn3l'}
{'comment': 'Because democrats didn’t show up.. let’s not blame Harris', 'created': '2024-11-06 18:24:04', 'submission_id': '1gksn3l'}
{'comment': 'Because she’s a woman duh - dems are dumb for not playing a long game. Biden should have had a male VP. We should have been propping up other dem figures all along …prepping for this moment. We should never have put a woman in the running and I’m a woman, I’m just being realistic. The only thing America hates more than a woman is a woman that isn’t white…now here we are.', 'created': '2024-11-06 18:42:21', 'submission_id': '1gksn3l'}
{'comment': 'She never had "It." I worked on her campaign, and I have worked on others. I see when her supporters are ride-or-die and so enthusiastic (Obama, Pete, to name a few). It just wasn\'t there this time. People liked her, but there wasn\'t the ground swell that I\'d felt in my bones before. I am gutted.', 'created': '2024-11-06 18:43:00', 'submission_id': '1gksn3l'}
{'comment': "Racism and sexism, basically. Too many just couldn't stomach electing a POC woman. The economy argument just seems disingenuous... Tbf - Maybe I'm isolated from people who actually lost money during Biden vs due to the pandemic? IDK. I knew he could win but the results were unimaginably discouraging.", 'created': '2024-11-06 18:53:58', 'submission_id': '1gksn3l'}
{'comment': "She's not relatable enough. This probably could have been resolved if she'd had more time to cultivate her public image with a proper campaign, but that was the tradeoff with Biden dropping out so late.\n\nThe median voter didn't feel enough of a connection to this newcomer to go all the way with her.", 'created': '2024-11-06 18:55:11', 'submission_id': '1gksn3l'}
{'comment': '15,000,000 Biden-voters did not show up. Across every demographic, Apathy won.', 'created': '2024-11-06 18:56:08', 'submission_id': '1gksn3l'}
{'comment': 'Because she is a woman', 'created': '2024-11-06 19:01:02', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 19:01:35', 'submission_id': '1gksn3l'}
{'comment': 'Wimin', 'created': '2024-11-06 19:02:20', 'submission_id': '1gksn3l'}
{'comment': 'The Democratic Party desperately needs to move towards the center-right on every issue except abortion.', 'created': '2024-11-06 19:07:40', 'submission_id': '1gksn3l'}
{'comment': 'Next election the DEMOCRATIC Party should have DEMOCRATIC elections to pick the best candidate. No more appointees by the stock picking elites.', 'created': '2024-11-06 19:10:48', 'submission_id': '1gksn3l'}
{'comment': 'Misinformation and bigotry', 'created': '2024-11-06 19:11:17', 'submission_id': '1gksn3l'}
{'comment': "Kamala is a black woman. A lot of democrats voted red...a lot of minority men voted for trump this election. The women that voted red did it because they don't like how mtf trans are in cis women's sports etc. Cis women felt attacked for a while now and voted for trump. A lot of democratic men are sexist. It also doesn't help that the Amish came out to vote and majority of gen z males vote red. \n\nI just hope that trump listens to the democrats on his team and isn't that crazy for America's sake.", 'created': '2024-11-06 19:42:08', 'submission_id': '1gksn3l'}
{'comment': 'https://www.nytimes.com/2024/11/06/opinion/trump-wins-harris-loses.html?smid=nytcore-ios-share&referringSource=articleShare&ngrp=mnp&pvid=A8351DDF-2A38-4304-8F50-AE9CFC53B379', 'created': '2024-11-06 20:06:07', 'submission_id': '1gksn3l'}
{'comment': '!remindme 4 years', 'created': '2024-11-06 20:25:12', 'submission_id': '1gksn3l'}
{'comment': 'Bomb threats, gerrymandering, voter intimidation and as always RACISM', 'created': '2024-11-06 20:31:01', 'submission_id': '1gksn3l'}
{'comment': 'Inflation caused by Covid response. Biden & Harris got hammered and couldn’t do anything about it.', 'created': '2024-11-06 20:34:20', 'submission_id': '1gksn3l'}
{'comment': 'Apathy. That’s it.', 'created': '2024-11-06 20:35:53', 'submission_id': '1gksn3l'}
{'comment': 'The Dems need their own version of trump who is a cult of personality and will do their bidding. Politics is all about vibes and image. It has been since 2016. We need someone dumb as a rock. On that note, maybe The Rock can run in 2028?', 'created': '2024-11-06 20:48:48', 'submission_id': '1gksn3l'}
{'comment': 'First off, she got to campaign 3 months. The Mango Mussolini has been campaigning steadily since 2015', 'created': '2024-11-06 20:52:30', 'submission_id': '1gksn3l'}
{'comment': 'I had a Trumper acquaintance tell me yesterday that she’s terribly worried about all the illegals voting. I told her today I guess she didn’t have nothing to worry about ‘ cause they look like they all voted for Trump. She didn’t have anything to say to that.', 'created': '2024-11-06 20:56:27', 'submission_id': '1gksn3l'}
{'comment': 'The economy...and media brainwashing..', 'created': '2024-11-06 20:59:54', 'submission_id': '1gksn3l'}
{'comment': 'The only critique I can give is the whole “Let’s parade with Liz Cheney and sing Kumbaya” none of the republicans voted for Kamala in the end.', 'created': '2024-11-06 21:08:27', 'submission_id': '1gksn3l'}
{'comment': 'I think the answer is two things: \n \n1) The economy. The truth is inflation rose during the Biden term, and this impacted a lot of poorer voters. They believe the president controls the economy and controls inflation, so they vote against the party in power. \n\n2) Immigration. Kamala Harris failed to explain to citizens why immigrants are valuable and important in today\'s society. Instead, she basically took a somewhat anti-immigrant stance without any nuance. I think she let the idea that trump was selling that "immigration is a crisis" run wild, and that\'s dumb, because immigrants are important to the USA economic growth.', 'created': '2024-11-06 21:31:25', 'submission_id': '1gksn3l'}
{'comment': 'I am heartbroken 💙', 'created': '2024-11-06 21:36:50', 'submission_id': '1gksn3l'}
{'comment': 'I think she ran a GREAT campaign, but if you want “why:” 1. Her campaign was all about women and minorities, she forgot about the white men. 2. She didn’t talk about the economy and how it is (was) actually more healthy than it’s been in decades. 3) Billionaires wouldn’t allow journalism to be journalism. And 4) What about those election day bomb threats?', 'created': '2024-11-06 21:44:30', 'submission_id': '1gksn3l'}
{'comment': 'Stupid, gullible people.', 'created': '2024-11-06 21:49:06', 'submission_id': '1gksn3l'}
{'comment': "The DNC leadership has failed.\n\n\nThe DNC leadership has been a total failure of imagination and effort from the start. They have not listened to their base, they have not been willing to fight fire with fire, and they DID NOT TURN OUT TO VOTE.\n\n\nThe reason why the democrats lost is because they earned it.\xa0\n\n\nYou don't need to get mad at me for posting this because I'm right here in America WITH you.\xa0", 'created': '2024-11-06 21:50:38', 'submission_id': '1gksn3l'}
{'comment': 'A few dared to say the G word. \nThe way they alienated the College activists just a mare 10 months ago, and did nothing to regain those support. Biden won in the ground game. Harris did not get 50% of them.', 'created': '2024-11-06 22:14:42', 'submission_id': '1gksn3l'}
{'comment': 'Because dems focused on shit no one cares about instead of the economy which is all people really do', 'created': '2024-11-06 22:29:09', 'submission_id': '1gksn3l'}
{'comment': 'Musk has a signature AI bot for filling out mailin ballots', 'created': '2024-11-06 22:29:27', 'submission_id': '1gksn3l'}
{'comment': 'A combination of inflation and the median voter not understanding the economy.', 'created': '2024-11-06 22:32:56', 'submission_id': '1gksn3l'}
{'comment': 'This stinks to high heaven.\n\nFirst, on election day, Russia made 40 fake bomb threats evacuating voters from the polls flipping Georgia to Trump.\n\nNow there are almost 20 million votes MISSING.\n\nThere is NO WAY there were 18 million fewer voters than 2020, what with a massive 25 million surge in voter registrations, huge Harris rallies, record fundraising and record voter turnout that we saw with out own eyes.\n\nNO WAY.\n\nThis has to be investigated. \n\nHarris must NOT concede the way Hillary and Obama did.\n\nWe can not give up.\n\nThe Lolo Report, today', 'created': '2024-11-06 22:50:11', 'submission_id': '1gksn3l'}
{'comment': "Because Americans don't understand the laws of supply and demand. The BS from the Apprentice didn't help", 'created': '2024-11-06 23:18:15', 'submission_id': '1gksn3l'}
{'comment': "Democrats have been spineless for over a decade. Kamala was a mediocre candidate and Walz was not a great VP pick. Trump should have lost handily. He didn't because of Democrats hubris.", 'created': '2024-11-06 23:28:30', 'submission_id': '1gksn3l'}
{'comment': 'This is exactly what happened with dems in NZ during past election. \n\nLogic is simple, if I suffer under dems, there is a chance i might not under repubs.\n\nThe fact that it is a wishful thinking and that it can always get worse eludes many.\n\nYou also have people like my mom who are agnostic and believe nothing will change regardless on who wins in US.', 'created': '2024-11-06 23:30:53', 'submission_id': '1gksn3l'}
{'comment': "The MEDIA, especially social media. Propaganda. People don't even look for facts and evidence anymore and believe endles lies", 'created': '2024-11-07 00:17:18', 'submission_id': '1gksn3l'}
{'comment': "Because most Americans are easily fooled by lies and social media propaganda, and don't understand enough about how the economy works to understand what danger his policies will bring to the economy as a whole. They remember the pre-pandemic times, apparently ignoring (or failing to believe) that he was handed a strong economy from Obama and that his one major economic policy was a handout to billionaires and forgiving that his mismanagement of the pandemic was what sparked the inflation crisis that Biden has been working to fix since he entered office.\n\nNuance and detail are lost on a populace that gets their information from one minute long TikToks and YouTube Shorts. Critical thinking skills are missing and people believe whatever lies they see on social media.", 'created': '2024-11-07 00:41:06', 'submission_id': '1gksn3l'}
{'comment': 'Biden. Everyone knew he was a one-term President except him. If he said that two years ago we coulda had a huge battle and see who the strongest candidate would be. Have everything in place.', 'created': '2024-11-07 00:41:10', 'submission_id': '1gksn3l'}
{'comment': 'The Dems vote count fell by 15 million, led by the Gen Z demographic.', 'created': '2024-11-07 00:52:28', 'submission_id': '1gksn3l'}
{'comment': 'Not enough people voted!', 'created': '2024-11-07 02:54:31', 'submission_id': '1gksn3l'}
{'comment': 'I think we’ll find in the coming months as more data about the results are analyzed, but I think the loss of the Latino vote across the country is gonna be the main factor. I think Kamala Harris was a fine candidate, but she didn’t do enough to distance herself from Biden. I generally like Biden personally, but as unpopular as he is she needed to distance herself. Probably needed more boarder policy than just the failed immigration bill from earlier this year. Her economic policy was good, but she was wayyy too attached to the Biden admin for it to resonate. Despite Biden’s objectively good economic policies coming out of the pandemic. Also, I think Americans are just sadly less willing to vote for a woman to be President.', 'created': '2024-11-07 03:03:34', 'submission_id': '1gksn3l'}
{'comment': 'The US is not ready to support a female POTUS.\n\nI don’t know when it will be, but that time was not 8 years ago and it’s still not now.', 'created': '2024-11-07 04:08:26', 'submission_id': '1gksn3l'}
{'comment': 'Voter turnout. Dema thought that there was no way that doe174 would get elected again so they felt like they didn’t need to vote. Same thing that happened in 2016.', 'created': '2024-11-07 04:20:37', 'submission_id': '1gksn3l'}
{'comment': 'This is the third election in a row where the Democratic line was "We are not Trump." Her bold plans were offered too late and the party did not develop its presidential pipeline in the past four years. Now, what happened to the 15M voters from 2020?', 'created': '2024-11-07 04:29:59', 'submission_id': '1gksn3l'}
{'comment': "Harris lost because she wouldn't talk about the economy. She could have put most of the hated inflation down to Trump's $8.4 trillion deficit, but I didn't hear the case made even once, and 13 to 14 million voters who voted for Biden in 2020 stayed home. Trump will, I'm certain, instruct them at length in the error of their ways.", 'created': '2024-11-07 04:41:21', 'submission_id': '1gksn3l'}
{'comment': 'Rove whisper campaign still works, that’s why. Oh, and Jill Stein’s stupid ass didn’t help.', 'created': '2024-11-07 04:47:35', 'submission_id': '1gksn3l'}
{'comment': 'Wuman', 'created': '2024-11-07 05:34:34', 'submission_id': '1gksn3l'}
{'comment': 'I’m really trying to be positive, I have had enough tragedy in my life that I do my best to savor the moment even if it’s not the greatest. That said, I’m extremely angry and don’t know where we went wrong as a country. Was it because we swapped horses mid race? Should Biden have never even attempted to run? Was it because of her race? Was it because she’s a woman? All of this will be scrutinized for the next few weeks and months. \n\nFor those that voted for this I will not give you comfort when you lose your Medicaid and Medicare. \n\nI will not pity you when you lose your social security benefits. \n\nTo the parents of daughters that will die because of this, I will mourne the loss of your daughter but I will not comfort you in your grief. \n\nI have so much anger and bitterness, and I hope the EU has a contingency plan. Because now we are not reliable we have lost our way. The night is dark and full of terrors, but it is always brightest before the dawn. \n\nI wish you all well, don’t drink too much, let it all out and know that this community has your back. This is a set back, let’s not let it become the end of the American experiment. Remember, we are more engaged and news engaged electorate. Most of America is too busy to bother and apparently has amnesia and possibly is racist and misogynistic. But the battle is over but the war goes on.', 'created': '2024-11-07 06:03:13', 'submission_id': '1gksn3l'}
{'comment': 'Let’s be honest. When’s the last time a VP won a presidency. George HW Bush? 36 years ago? Before him was Marvin Van Buren in 1836. There is a reason VPs don’t win elections. They aren’t visible, no one really remembers them, they don’t get credit for what was accomplished during the administration and all of the blame.', 'created': '2024-11-07 06:27:00', 'submission_id': '1gksn3l'}
{'comment': 'Most Americans are a paycheck away from financial ruin. Since the time that Biden has been in office the rent has gotten too damn high and grocery bills are astronomical. Trump did a great job to frame Kamala as an extension of the Biden administration and his/her lax policies on immigration as the cause. Americans bought it hook line and sinker. Tack that onto the fact that she is a black woman and we never had a chance.', 'created': '2024-11-07 07:40:40', 'submission_id': '1gksn3l'}
{'comment': "I feel like it's a case of Democrats focusing on social issues such as lgbtq rights (which I support) it's good optics for the social justice warriors but it's unfortunately a tiny part of the electorate and alienates the rural and blue collar voters that only give a shit about the economy. Even though what they say is all bullshit, all Republicans talk about is money and the economy which makes the apolitical people think they'll be better off. Social issues should be supported but the main messaging should always always always be jobs and the economy because people are inherently selfish and bigoted.", 'created': '2024-11-07 07:49:23', 'submission_id': '1gksn3l'}
{'comment': "I still can't figure that out because, again, I'm still processing this but I saw this and it probably can help you and us all here to make sense of it... I guess\n\n[https://www.bbc.com/news/articles/cjr4l5j2v9do](https://www.bbc.com/news/articles/cjr4l5j2v9do)", 'created': '2024-11-07 14:19:53', 'submission_id': '1gksn3l'}
{'comment': 'She lost because of how there was no democratic process to select the candidate. Almost a coup - the dems tried to gaslight us by saying Joe was ok after the debate, he was not. She even said he was ok. He has probably not been ok for a while, dems knew it and still kept him in and then swapped her in when it became apparent you cannot gas light the people.\n\nI still voted for her as Trump is absolutely a vile human.\n\nHow she became the nominee is totally uncool, they knew Joe was not totally there and the establishment tried to fool the people.', 'created': '2024-11-07 14:47:07', 'submission_id': '1gksn3l'}
{'comment': "She's a mixed race female, PERIOD.", 'created': '2024-11-07 15:30:40', 'submission_id': '1gksn3l'}
{'comment': 'Because Americans simply do not care \n\nOne third of the population just watched as one third of the population voted in a insurrectionist, felon who was convicted of fraud, and whose economic plan is to cause a recession, but those corporations will still get there tax breaks( again) \n\nAMERICANS SIMPLY DO NOT CARE', 'created': '2024-11-08 22:44:14', 'submission_id': '1gksn3l'}
{'comment': 'weak, late campaign. No one liked her. She code switches every time she talks to a different demographic, people tired of this state of the US, I could go on', 'created': '2024-11-06 08:08:26', 'submission_id': '1gksn3l'}
{'comment': 'Because the Dems played politics while the Republicans were playing for keeps.\n\nThere were 4 years to find a charismatic candidate with genuine non-manufactured support and tell Joe he needed nap time\n\nThere were 4 years to expand the Supreme Court\n\nThere were 4 years to imprison Trump once and for all\n\nThere were 4 years to dismantle MAGA completely and never let it happen again\n\nThe Dems failed on every level and now everyone will suffer for their arrogance and failures. Trump’s supporters showed everyone who they were for 4 years and the powers-that-were saw the existential danger and shrugged.', 'created': '2024-11-06 08:51:16', 'submission_id': '1gksn3l'}
{'comment': 'She was incredibly unlikable', 'created': '2024-11-06 08:22:13', 'submission_id': '1gksn3l'}
{'comment': 'Gaza, losing her original primary horrendously, making south asians feel like she ignored part of her identity, trying not to make Joe feel bad but not distancing herself well enough from his failures, racists not wanting a black woman, dumbasses that close the door of opportunity behind them to their own, her being a centrist and going after the center votes so hard she forgot the dems are already republican lite.', 'created': '2024-11-06 08:09:52', 'submission_id': '1gksn3l'}
{'comment': "She's been VP for four years, but i can't recall her actually doing anything.", 'created': '2024-11-06 16:29:31', 'submission_id': '1gksn3l'}
{'comment': 'Bad/wrong candidate. Simple.', 'created': '2024-11-06 08:07:09', 'submission_id': '1gksn3l'}
{'comment': 'Biden and his people hid him and weren’t honest about his mental acuity. Essentially bypassed the primary and then threw it in Harris’s lap at the last minute.', 'created': '2024-11-06 16:29:54', 'submission_id': '1gksn3l'}
{'comment': 'Because the Obama-Biden model doesn’t work anymore. Trump worked to expand his base while Democrats doubled down and believed people would just choose “correctly”\n\nThey need a new strategy for 2026 and 2028.', 'created': '2024-11-06 17:04:39', 'submission_id': '1gksn3l'}
{'comment': 'She didn’t even make it to Iowa in 2020, so not sure why anyone thought it was a good idea to throw her in now. Not like she did anything notable or remarkable as VP.', 'created': '2024-11-06 08:09:36', 'submission_id': '1gksn3l'}
{'comment': 'People are going to blame race but she made ways with white people. She lost the young vote and Hispanic vote. You can say a white man in her position would\'ve won, but she was basically Joe Biden-lite and we all know he would\'ve lost. \n\nShe lost because she didn\'t inspire enough people to go out and vote for her. Her campaign misread what people cared about and failed to convey why people should care to go out. \n\nThe messaging was centered around why Trump was the wrong choice and how we can\'t go back but most people just think half of those years were with Trump sure but the other half was with you. She was just once again another "Not-Trump" and that\'s all people got out of her. All the less informed people felt she was too hidden and an unknown all they knew was "Not Trump" while everything sucks around them.', 'created': '2024-11-06 08:16:34', 'submission_id': '1gksn3l'}
{'comment': "Honestly? American don't want a woman president, much less a black woman. Waltz should've been the candidate. She was also incredibly stupid to campaign in Texas towards the end of the election instead of battleground states.\n\nBiden not quiting early enough is a huge one too.", 'created': '2024-11-06 08:18:22', 'submission_id': '1gksn3l'}
{'comment': 'Dems ran the same exact campaign that failed miserably in Virginia 3 years ago which elected Glen Youngkin. They ran on Trump this and Trump that rather than focusing on issues. I knew we were fucked the minute she didn\'t obtain the immediate endorsement of labor unions. Republicans have for years been anti union, yet the democratic campaign was so terrible, that the unions didn\'t care. At no point did she ever have some big moment or phrase that everyone remembered. "Hope and change!" "Yes we can!" Make America Great Again"....what did we have to match up with any of that?', 'created': '2024-11-06 08:28:18', 'submission_id': '1gksn3l'}
{'comment': "100% of the votes have NOT been counted including in projected states, so Harris hasn't lost anything.", 'created': '2024-11-06 10:06:07', 'submission_id': '1gksn3l'}
{'comment': 'Because the Democratic Party is despicable. They need to fall in love instead of falling in line.', 'created': '2024-11-06 11:29:42', 'submission_id': '1gksn3l'}
{'comment': 'Because she is a black woman. When they picked her I knew it was over. \n\nI became optimistic after the convention and seeing the polls, but deep down I knew. This was not the time to be progressive. Should have ran any sane white straight male and this was in the bag.', 'created': '2024-11-06 13:31:46', 'submission_id': '1gksn3l'}
{'comment': 'Democrats have abandoned real issues for niche ones. Quite simple.', 'created': '2024-11-06 14:16:16', 'submission_id': '1gksn3l'}
{'comment': 'Honestly, I don’t think there’s anything we could have done. Trump won the popular vote. He was always going to win. If anything, she *might have* given us a better shot than Biden, but either way, I lay the blame pretty much squarely at his feet.', 'created': '2024-11-06 15:02:13', 'submission_id': '1gksn3l'}
{'comment': 'Because of joe biden. He should not have ran for a second term.', 'created': '2024-11-06 15:29:47', 'submission_id': '1gksn3l'}
{'comment': 'Simple…secretly., woman like men controlling every aspect of their life…they can think for themselves, respect themselves and they need men to give them a resemblance of self worth….that is according to 3 in 5 woman voters', 'created': '2024-11-06 15:48:10', 'submission_id': '1gksn3l'}
{'comment': 'I personally think there was some bargaining and maybe begging to get Trump some “extra” votes. I think some states declared him a winner when he wasn’t. \n\nI don’t think he will actually be the winner, this is just the projected winner.', 'created': '2024-11-06 15:50:53', 'submission_id': '1gksn3l'}
{'comment': 'Over 15 million voters stayed home.', 'created': '2024-11-06 19:20:01', 'submission_id': '1gksn3l'}
{'comment': 'I voted Harris and Biden\n\n\nDems are seen as too far left on crime, immigration, trans, etc.\n\n\nThey have to move right on those issues\xa0', 'created': '2024-11-06 08:28:01', 'submission_id': '1gksn3l'}
{'comment': 'She’s a California liberal. The most extreme of their kind. No one wants that.', 'created': '2024-11-06 08:12:27', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 08:06:49', 'submission_id': '1gksn3l'}
{'comment': "Because she was fake, she wasn't popular her entire campaign was just vibes and it fell flat.\n\nDeservedly so.", 'created': '2024-11-06 08:05:53', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 08:11:17', 'submission_id': '1gksn3l'}
{'comment': "The United States isn't ready for a woman. Trump will also win 2028", 'created': '2024-11-06 08:28:39', 'submission_id': '1gksn3l'}
{'comment': 'You’re actually surprised?\n\n', 'created': '2024-11-06 08:17:36', 'submission_id': '1gksn3l'}
{'comment': 'Don’t come to Canada, we don’t want you', 'created': '2024-11-06 15:34:16', 'submission_id': '1gksn3l'}
{'comment': 'too much woke-ism and lgbtq+ being in your face constantly. every real person got real tired real fast. only those elitist and fake posers kept harping on such issues when there are more important issues to the grassroots.\n\nreap what you sow.', 'created': '2024-11-06 08:15:40', 'submission_id': '1gksn3l'}
{'comment': 'Does it actually shock you nutjobs that people are most concerned about being able to afford everyday things??', 'created': '2024-11-06 08:18:17', 'submission_id': '1gksn3l'}
{'comment': 'Reasons Kamala lost:\n\n\\#1. Lack of aggression. Americans are an aggressive people. They don\'t respond well to the "joyful warrior" bullshit. They want angry, insulting, one-liner zingers that can be meme\'d and shared at light speed. \n\n\\#2. Tim Walz. Walz is a clown. A bumbler. A fool. He was weak. He had his one liner, that Trump and Vance were weird, and that was it. Harris should have chosen Josh Shapiro. He was loud, aggressive, and would have taken it to Vance in the VP debate. \n\n\\#3. Unclear answers. She dodged too much and should have given straighter, more aggressive answers that attacked Trump AND reminded people about how bad things were under him. When she was asked "is the country better off than 4 years ago" she should have replied with "well, are we stuffing dead bodies in freezer trucks? No? Then, yeah, I\'d say we\'re better off". Instead she rambled off statistics and kept repeating the same thing over and over again. \n\n\\#4. She\'s a woman. Sorry to say it, but a woman cannot and will not ever be president of the United States. Just how it goes. Maybe in 100 years, assuming we\'re all still here, there might be a chance, but until then, America will always follow the "alpha male" IE, the loudest, most obnoxious ape in the room, and the apes don\'t come more loud and obnoxious than Trump. \n\n\\#5. Failure of the DOJ. Garland dragged his feet (most likely intentionally) on prosecuting Trump. If he had taken him down and gotten a faster trial and a more serious conviction with jail time, yeah, Trump would have been toast. It\'s not like there was a shortage of things to go after him about. \n\nSo, those are my 5 reasons Kamala lost.', 'created': '2024-11-06 09:02:57', 'submission_id': '1gksn3l'}
{'comment': 'Immigration. Not doing enough. Not having answers for hard hitting questions. Parroting the same lines about abortion and being anti trump as the only talking points.\n\nTrump was on podcasts, he was out doing stuff to relate to young men of all backgrounds, which is a segment of the population that is largely overlooked.\n\nInstead, the Harris campaign was essentially invisible other than like one twitch stream where Tim Walz played crazy taxi', 'created': '2024-11-06 08:14:57', 'submission_id': '1gksn3l'}
{'comment': "Because she didn't have any plan and was uncharismatic", 'created': '2024-11-06 08:16:02', 'submission_id': '1gksn3l'}
{'comment': 'She wasn’t the right candidate she was playing trumps game playing that kid name calling game. It’s obvious that people did not support her when it counted only in retweets. She didn’t seem genuine she wasn’t herself. There was an obvious disconnect between her and the American people to be beat this badly by a guy like trump theres no other explanation.', 'created': '2024-11-06 08:17:06', 'submission_id': '1gksn3l'}
{'comment': 'Pack it up, the Democrats brand is done. Need something else for the future', 'created': '2024-11-06 12:20:20', 'submission_id': '1gksn3l'}
{'comment': 'Not enough people voted for her.', 'created': '2024-11-06 14:35:17', 'submission_id': '1gksn3l'}
{'comment': 'we lost because we are battling against AI and propaganda campaigns that are highly successful at their job. Welcome to the future', 'created': '2024-11-06 16:13:08', 'submission_id': '1gksn3l'}
{'comment': 'The next step is for those of us in red states to fall back to blue states and arm ourselves.', 'created': '2024-11-06 16:37:39', 'submission_id': '1gksn3l'}
{'comment': '', 'created': '2024-11-06 18:13:51', 'submission_id': '1gksn3l'}
{'comment': 'Our far left woke extremist side of the party has been too vocal with the woke rhetoric and our wide open border... it put off conservative democrats = we lost', 'created': '2024-11-06 20:22:24', 'submission_id': '1gksn3l'}
{'comment': 'She is a Black woman AND she pandered to Republicans way too damn much.', 'created': '2024-11-07 02:27:41', 'submission_id': '1gksn3l'}
{'comment': "Probably because she's awful.", 'created': '2024-11-06 08:17:36', 'submission_id': '1gksn3l'}
{'comment': "Because she only got the nomination because Biden chose her to balance out his ticket in 2020. She wasn't popular in the 2020 primaries, she avoided interviews for a large chunk of her campaign, has very little charisma, picked a milk toast VP instead of the veteran Astronaut from Arizona, was easily linked to a current administration with low approval rating, and she is a black woman. It was straight delusional to put her against Trump when Trump already beat a white woman who had arguably the best resume to become POTUS.", 'created': '2024-11-06 08:53:19', 'submission_id': '1gksn3l'}
{'comment': "There's obviously a lot of reasons. But the Democrats strategy this election was just terrible.", 'created': '2024-11-06 09:21:17', 'submission_id': '1gksn3l'}
{'comment': 'Immigration, higher cost of living and being at war on two fronts was too much to overcome especially when Biden has dementia and had to be forced out. Anyone laying the blame at the feet of a single voting demographic or the stupidity of Americans should be dismissed as a demagogue. Another important thing to note is the assassination attempt.', 'created': '2024-11-06 11:55:02', 'submission_id': '1gksn3l'}
{'comment': 'I\'m a moderate Democrat, sp as much let me give my opinion as I\'m not the average Democrat here. \n\nThe Democratic Party has veered far enough left from center that the average American doesn\'t feel apart of it. And, this party has gone so far left, thadividve actually pushed voters to the right. \n\nYes. The right has some despicable people in it with blatant prejudices. But, your average American isn\'t like that. They\'re torn seeing one side that\'s calling out issues and one side that saying we\'ll fix things. They are choosing the party that calls out what doesn\'t feel "right" over the party that doesn\'t. It\'s like when my wife tells me not to talk to tey to fix problems when she\'s venting to me. \n\nMy opinion is that, while it\'s the right thing to do, pushing social agendas isn\'t what\'s getting votes, it\'s giving them votes. If we, instead, tore apart what\'s wrong (education, gas prices, inflation, immigration, etc) loud and hard and then said we had a plan, it would make a big difference in 4 years. But we need to be active about it every step of the way. Don\'t let Trump get away with more golf trips without calling him out in every failure he develops now. Call him out on immigration and crime rates to show he lied, etc. \n\nBut, most importantly, step closer to center. Propose bipartisan bills that don\'t take guns away but increase protections that they sign on, etc. Things that get the swing voters to see the Democratic party is changing. Because ... People ... we\'re swinging red here ... you will not have a Dem in office if we can\'t get the growing army of young Christian conservative voters our way in 2028.', 'created': '2024-11-06 14:25:41', 'submission_id': '1gksn3l'}
{'comment': 'no one wanted her last time', 'created': '2024-11-06 08:06:45', 'submission_id': '1gksn3l'}
{'comment': 'She didn’t loose she hasn’t lost yet', 'created': '2024-11-06 08:10:55', 'submission_id': '1gksn3l'}
{'comment': 'Democrats lost their mind and were too late in walking it back. We’ve got four years to learn what it takes to be a more attractive party.\xa0', 'created': '2024-11-06 09:02:48', 'submission_id': '1gksn3l'}
{'comment': 'trump survived assassination attempts\n\nPeople don’t like how the country has headed in last 4 years\n\nShe’s a black Indian woman', 'created': '2024-11-06 13:05:35', 'submission_id': '1gksn3l'}
{'comment': '1)Grocery prices \n\n2)open borders \n\n\nRest don’t matter to regular working people.\nBeen saying from day one.', 'created': '2024-11-06 18:43:28', 'submission_id': '1gksn3l'}
{'comment': 'Tried to run republican and as a continuation of Biden.. plus too much melanin and balls on her chest not in the pants. Poor presence and low Riz. Economy has sucked for a lot of people and no clear message of what’s wrong and WHAT will she do other than “fight for you”', 'created': '2024-11-06 23:17:34', 'submission_id': '1gksn3l'}
{'comment': 'Because you already have had the current administration and what did you do?', 'created': '2024-11-06 08:12:19', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 08:06:20', 'submission_id': '1gksn3l'}
{'comment': 'Simple- She was a poor candidate, with minimal redeeming qualities.', 'created': '2024-11-06 08:22:32', 'submission_id': '1gksn3l'}
{'comment': 'As much as I want a woman president, an election this important was not the time to try to break a glass ceiling', 'created': '2024-11-06 13:08:36', 'submission_id': '1gksn3l'}
{'comment': 'Palesitine.', 'created': '2024-11-06 13:11:26', 'submission_id': '1gksn3l'}
{'comment': "People don't agree with abortions \nPeople don't agree with not defining sexes \nPeople don't agree with flooding the nation with immigration \nAnd simply have had enough of the lies. The wars. The tricks. The schemes. \n\nBecause this wasn't even close. Not even close. Heck even California turning red.", 'created': '2024-11-06 08:21:03', 'submission_id': '1gksn3l'}
{'comment': 'Well she has had power for 4 years and most of us are starving, they call republicans nazis but their own party actually acts like the nazis did, they tried to jail their political opponent multiple times and democrats tried to assassinate Trump like 2 times this year, it goes on and on and on....', 'created': '2024-11-06 08:18:48', 'submission_id': '1gksn3l'}
{'comment': "So you've moved to a few stages in the grief. Good, Dems lost because they fucked up being shackled to Biden until the last moment and had to pivot rapidly and gaslight themselves into being hyped about Kamala. Had Biden not run for reelection, tonight would've been very different. But here we are. Looking back at all the grifting about how great Biden was for stepping down, only after a unrecoverable position. This is a self inflicted loss, saying otherwise is lying to yourself.", 'created': '2024-11-06 09:17:52', 'submission_id': '1gksn3l'}
{'comment': None, 'created': '2024-11-06 08:25:23', 'submission_id': '1gksn3l'}
{'comment': 'LMAO at the "black woman" excuse for her loss. Have we forgotten that a black man won 2 terms. \n\n\nTulsi could win the presidency - she could unite the country.', 'created': '2024-11-06 08:16:45', 'submission_id': '1gksn3l'}
{'comment': 'https://preview.redd.it/jomtjlntg8zd1.png?width=1008&format=pjpg&auto=webp&s=00823e01af6a997550a0409463bbefd30772da69\n\nRacist policies like these that pander to the minority for one.', 'created': '2024-11-06 08:25:56', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 08:37:17', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 08:16:30', 'submission_id': '1gksn3l'}
{'comment': 'What confuses me about that statement is: If they don´t believe he will do that..why do they vote for someone saying that? If someone tells you he will kill you and you think "nah, he won´t" and elect him, you can´t even be mad if he effing DOES as he says. You´re voting for someone who says incredibly dangerous stuff and think he is not going to do it..but you want him to. It just baffles me.', 'created': '2024-11-06 12:40:50', 'submission_id': '1gksn3l'}
{'comment': 'I’m hoping they start slashing social security like SOON. These doughheads need to learn the hard way that elections have consequences.', 'created': '2024-11-06 12:23:38', 'submission_id': '1gksn3l'}
{'comment': "In the future we will be hearing a lot of Leopards eating people's face. I never thought that would happen to me.", 'created': '2024-11-06 12:57:05', 'submission_id': '1gksn3l'}
{'comment': 'Yup. I asked someone when do we start taking him at his word? Why is he able to lie and people cherry pick what they believe. It’s fucking disgusting.', 'created': '2024-11-06 13:27:31', 'submission_id': '1gksn3l'}
{'comment': 'My elderly mom won’t believe her Medicare will be cut or taxes will be raised because even if they are, she thinks she has me to bail her out financially.', 'created': '2024-11-06 13:30:51', 'submission_id': '1gksn3l'}
{'comment': 'The climate wont survive this. Were going to go past the no return point and i dont know if my son will survive it', 'created': '2024-11-06 16:16:55', 'submission_id': '1gksn3l'}
{'comment': 'I guess we get to find it now.', 'created': '2024-11-06 12:27:57', 'submission_id': '1gksn3l'}
{'comment': '“He’s just saying that, he doesn’t mean it”.\n\nThroughout history we have seen the terrible impact of the words Trump has chosen to use throughout this election, such as, “poisoning the blood”, “enemies within”, referring to opponents as vermin, etc. have had on the world. In history those were once only “words” for those who used and listened to them, until they were not. They have no place in American politics, and if one is voting for someone who uses them today they must ask themselves whether they would support those individuals who used them in history.', 'created': '2024-11-06 14:29:34', 'submission_id': '1gksn3l'}
{'comment': 'This doesn’t make sense to me. She had massive support. Every poll showed her ahead. Do we know for sure that Russia did not have a hand in this somehow? I know so many Republicans that voted Harris. All Trump had was his base. He certainly did not gain any votes. So how did this happen? Is anyone seriously thinking about the possibility that a foreign nation had a hand in this somehow? It is the only thing that makes sense to me.', 'created': '2024-11-06 14:28:50', 'submission_id': '1gksn3l'}
{'comment': 'Yup I hope they enjoy what is coming. I feel america at this point needs to suffer. Only then they will learn.', 'created': '2024-11-06 14:07:03', 'submission_id': '1gksn3l'}
{'comment': 'It’s crazy how he can say just about anything and we’re the crazy ones for believing it while democrats have to walk a tight rope and get everything just right or the country has a meltdown. It’s an insane double standard. The garbage comment was only harmful to the campaign because democrats are expected to be civil.', 'created': '2024-11-06 15:14:30', 'submission_id': '1gksn3l'}
{'comment': 'Been fighting for my life in the comments by defending my empathy for marginalized communities. The sadism of American conservatives is why we’re here.', 'created': '2024-11-06 15:16:43', 'submission_id': '1gksn3l'}
{'comment': 'They’re uneducated and angry.', 'created': '2024-11-06 15:59:36', 'submission_id': '1gksn3l'}
{'comment': 'Red states will be hurt the hardest. Wallmart prices are gonna skyrocket after the tariffs', 'created': '2024-11-06 16:24:16', 'submission_id': '1gksn3l'}
{'comment': 'Yeah but the rest of us have to fucking lay in it too', 'created': '2024-11-06 16:39:42', 'submission_id': '1gksn3l'}
{'comment': 'Their regret will come quickly', 'created': '2024-11-06 16:58:01', 'submission_id': '1gksn3l'}
{'comment': 'We tried to save them from themselves.. but they wouldn’t have it… fuck them', 'created': '2024-11-06 17:07:44', 'submission_id': '1gksn3l'}
{'comment': 'He WILL do that. My only saving grace is that we’ll get to watch them be harmed too. Their surprise will be satisfying as hell. All the men who refused to vote for a woman are going to have Pikachu faces when porn and condoms are banned.', 'created': '2024-11-06 17:57:53', 'submission_id': '1gksn3l'}
{'comment': 'For the first time in everyone’s lives, we’ll have a republican controlled presidency, house and senate. They won’t have a democratic boogeyman to blame for all the failures in their lives. I wonder what they’ll do next.', 'created': '2024-11-06 18:37:04', 'submission_id': '1gksn3l'}
{'comment': 'I want to know where we sign that we voted for the other Lady? So when everything goes to shit n the finger pointing starts… we are on the right side of history… \n If ANYONE is confused how this happened, I’ll tell you. It’s so much easier than politics it’s racism and misogyny plain and simple. A woman of color or an old white man. There was never a contest. No matter how much we wanna think it’s 2024 and people are beyond that… look who the fuck just got elected… I rest my case.', 'created': '2024-11-06 18:40:56', 'submission_id': '1gksn3l'}
{'comment': "The sad part is then Trump will blame other minorities for all that is happening, and they will believe him because they can't admit they were wrong", 'created': '2024-11-06 19:12:15', 'submission_id': '1gksn3l'}
{'comment': 'Kamala is the president we wanted. \nTrump is the president we deserve.', 'created': '2024-11-06 19:48:00', 'submission_id': '1gksn3l'}
{'comment': 'that does not explain why Kamala lost', 'created': '2024-11-06 20:23:02', 'submission_id': '1gksn3l'}
{'comment': 'We should in theory have more democrats than republicans. Any loss to them is on a failure to vote.', 'created': '2024-11-06 20:40:43', 'submission_id': '1gksn3l'}
{'comment': 'Kamala being: 1) a POC + 2) a woman faced greater challenges.\n\nDemocrats may need a straight white man \\[who can appeal to Moderates, Independents, and Moderate Anti-Trump Republicans (who supported Mitt Romney and John McCain)\\] for 2028.', 'created': '2024-11-06 21:09:25', 'submission_id': '1gksn3l'}
{'comment': 'I feel like this is 2016 all over again. I desperately want them to suffer with us and then realize their mistake. They won’t. They won’t ever care.', 'created': '2024-11-06 21:44:38', 'submission_id': '1gksn3l'}
{'comment': 'I’ve mostly encountered the alternate reality issue with “Fake News” basically being the response when presented with info that contradicts their fabricated versions.', 'created': '2024-11-06 23:06:55', 'submission_id': '1gksn3l'}
{'comment': 'They gonna learn real quick you should take nazis seriously', 'created': '2024-11-06 23:22:21', 'submission_id': '1gksn3l'}
{'comment': 'I wonder how they choose what to believe that comes out of that guy’s mouth.', 'created': '2024-11-07 01:55:48', 'submission_id': '1gksn3l'}
{'comment': 'My only saving grace is im a white man with a good job in a safe stable community.\n\nso to be real, i didnt need Harris. I was doing it for the good of our country. Selfish men in my area were voting for Trump for tax and economy. So now i get to see if these old conservtards were really "right" or just right', 'created': '2024-11-06 14:11:04', 'submission_id': '1gksn3l'}
{'comment': 'We kept trying to warn them, but they didn\'t listen. Now, they will have to feel it.\n\n"IWer nicht horen will, muss fuehlen".', 'created': '2024-11-06 14:27:45', 'submission_id': '1gksn3l'}
{'comment': '"They take him seriously but not literally" and "We take him literally but not seriously."\n\nThis was part of the postmortem in 2016.', 'created': '2024-11-06 15:02:47', 'submission_id': '1gksn3l'}
{'comment': 'And we have to sleep with them, which is the bigger issue.', 'created': '2024-11-06 15:06:36', 'submission_id': '1gksn3l'}
{'comment': 'He’ll do what he did last time. Nothing much.', 'created': '2024-11-06 15:39:58', 'submission_id': '1gksn3l'}
{'comment': 'We need to learn a lesson', 'created': '2024-11-06 16:09:43', 'submission_id': '1gksn3l'}
{'comment': 'We already had a Trump presidency and so we’ve seen how they react to his presidency. Under no circumstances will they hold him accountable. Nothing will ever be his fault. He will always be the victim of witch hunts. His presidency will always be great no matter how bad things are. They will gladly and delusional lie in that bed.', 'created': '2024-11-06 17:49:33', 'submission_id': '1gksn3l'}
{'comment': 'Trump supporters will be thrown under the bus just as quickly as the rest of us. Won’t they be surprised!', 'created': '2024-11-06 17:57:10', 'submission_id': '1gksn3l'}
{'comment': 'What I don’t get is this: we had record turnout in 2020 because Trump was an ass and people wanted him gone. He did actually do the things he said and it was as bad as we remember. How did other people forget?! Kamala had fewer votes than Biden did and I think that misogyny and race play a big role in it. I hope I’m wrong. What irritates me the most is that J6 will now be brushed under the rug.', 'created': '2024-11-06 18:24:12', 'submission_id': '1gksn3l'}
{'comment': "Same crowd still thinks Elon Musk is a scientist, engineer, designer, or creator. Someone the other day said they thought he was the reincarnation of Tesla. I had to correct them that he's Edison if anything. \n\nTheyre blind and they don't give a fuck about us our this county.", 'created': '2024-11-06 19:28:11', 'submission_id': '1gksn3l'}
{'comment': "Trump voters since 2016 weirdly doesn't want or like what Trump wants to do but will still vote for him 🤷", 'created': '2024-11-07 00:38:43', 'submission_id': '1gksn3l'}
{'comment': 'Part of the problem is we DO overreact.\xa0 We do take things out of of context.\xa0 Those things become on ramps to discount everything .\xa0 Of course they do the same thing, but their media is better at controlling the narrative.', 'created': '2024-11-06 12:17:30', 'submission_id': '1gksn3l'}
{'comment': 'I also want to point out that at any point in time democrats are held to a WAY higher standard. Trump´s lunacy is expected, but Kamala making one mistake is being used and abused. Democrats are held to the standard of flawlessness, while republicans created a standard of: "Eh, at least he ain´t eating people"', 'created': '2024-11-06 12:37:50', 'submission_id': '1gksn3l'}
{'comment': "It's really a victory for propaganda in general. Power in America flows based on who owns the pathways of information to the American consumer, that's why Dana White gave shout-out to twitch streamers in the acceptance speech. It's why Elon buying Twitter was worth more than what he paid (lost). Fox news started it and grew it into the monstrosity it is today.", 'created': '2024-11-06 12:23:51', 'submission_id': '1gksn3l'}
{'comment': '"Freedom of the press belongs to those who own one." \n—William Randolph Hearst\n\nThe immigrants who are poisoning America aren\'t from South America. They\'re Rupert Murdoch, Elon Musk and Peter Thiel.', 'created': '2024-11-06 14:24:09', 'submission_id': '1gksn3l'}
{'comment': 'I had a discussion with my mom back when Hillary ran and I told her she ionized their base far too much. I thought it was cause she was Hillary, now I think it’s because she is a woman. As much as we all realize a woman can do the job, they don’t. The outcomes of these failed elections are far too devastating to try and keep trying the next first minority, first female, first female POC, etc.\n\nMy daughters won’t have reproductive rights. The crook will do unspeakable things with his immunity. He is so stupid he doesn’t know how tariffs work or that Hannibal Lector is a fictional character. RFKjr is about to wreak havoc on the NIH and all of our health industries. Because half the country doesn’t like women. Fine, run a goddamned man. And be angry like they are, I hate that the left doesn’t have a fucking spine.\n\nTo be clear, I’m not racist nor a woman hater, but it’s too important not to take the safe route.', 'created': '2024-11-06 13:33:51', 'submission_id': '1gksn3l'}
{'comment': "Yes, but tonight Trump won the popular vote. It's not about branding. The branding is fine. The problem is white people hate everyone else, and men hate women who aren't submissive. That's what the polls tell us.\n\nNo amount of rebranding will fix that. Joe Biden was sort of rebranding that worked for a short while - a liberal but old white man. I think if Biden had been the nominee we might have eked out a victory. I think the misogyny was that strong, and their ages leveled the playing field.\n\nA slim majority of Americans don't want a woman president. They particularly don't want a BLACK woman president. They don't want LGBTQ+ people. They want Mexicans to pick their fruit. They're terrified of immigrants and people with bigger penises than them.\n\nWe lost because of what we stand for, but what we stand for is goodness and hope and equality. We can't rebrand that away, or if we do we've lost the reason we were fighting in the first place.", 'created': '2024-11-06 12:57:39', 'submission_id': '1gksn3l'}
{'comment': 'Twitter as well', 'created': '2024-11-06 11:02:15', 'submission_id': '1gksn3l'}
{'comment': 'Yeah they totally need to do a postmortem and start the fight once the election is over. First chance is the 2026 mid-terms which would at least allow them a great chance to take back the Senate and also the House.', 'created': '2024-11-06 11:40:34', 'submission_id': '1gksn3l'}
{'comment': 'So what your saying is we need a crazy populist? But just of the liberal variety? We truly are fucked as a country if that’s the answer.', 'created': '2024-11-06 13:06:22', 'submission_id': '1gksn3l'}
{'comment': ">Trump is a way of life for millions of Americans.\n\nThat says it all for me. I'd even go further to say millions of people, even outside America. People couldn't care less about anything other than themselves, their money and their immediate surroundings. We don't really care if people are being exploited elsewhere as long as that doesn't affect our livelihood and our savings. We are happy our democratic countries make deals with dictatorships and kleptocracies if that means we get cheap commodities and products.\n\nWe are all just a bunch of hypocrites.", 'created': '2024-11-06 13:40:08', 'submission_id': '1gksn3l'}
{'comment': 'Young Hispanic men voting for Trump really impacted the outcome. It boggles me that the Democratic Party doesn’t understand that many BIPOC voters hold conservative fews, especially around abortion, a women’s role in our society and surprisingly immigration. Couple this stupidity with the fact that we Democrats having been shoving our white privilege (and if you don’t understand how this works, then you don’t understand what the concept of privilege is) progressive values onto a society that is not ready for such a monumental shift in terms of how we define identity is beyond idiotic. And finally, we need to understand how educated, primarily white privileged people, which includes me, ARE but slice of the American electorate and not representative of the majority. To not do so is political suicide and we progressives Dems just bought the farm.', 'created': '2024-11-06 15:14:43', 'submission_id': '1gksn3l'}
{'comment': 'THEY CHEATED. It’s the only logical conclusion. Putin helped.', 'created': '2024-11-06 12:17:25', 'submission_id': '1gksn3l'}
{'comment': 'Marshall McLuhan is rolling in his grave.', 'created': '2024-11-06 12:35:03', 'submission_id': '1gksn3l'}
{'comment': 'The sanewashing of Trump by the media was certainly a factor. No matter what he did, they barely covered it. Meanwhile a poor debate performance by Biden gives us three whole weeks of "Old Man Old" press coverage.', 'created': '2024-11-06 15:48:22', 'submission_id': '1gksn3l'}
{'comment': "This wasn't lost last night. It's been decades in the making.", 'created': '2024-11-06 13:34:05', 'submission_id': '1gksn3l'}
{'comment': "If Trump doesn't make the DNC an illegal party, you mean, which he would do by making all other parties illegal.", 'created': '2024-11-06 14:07:03', 'submission_id': '1gksn3l'}
{'comment': '>Dems lost the airwaves when the major cable networks were bought up.\n\nDemocrats need to leverage alternative media. We did a decent job this go round but we have to be even better next time (if there is a next time).', 'created': '2024-11-06 14:59:01', 'submission_id': '1gksn3l'}
{'comment': 'Well, for some reason, I have found that simply wanted to and try a few normal not special at all protections for trans people and making it even a part of our campaign has made people believe that all were about is trans people and that that’s all we care about and that’s all we talk about even thoughrealistically the Republicans are the ones that are constantly trying to ban shit and bring up bills and forcing us to talk about it. It’s part of their goddamn strategy we eat right into it.', 'created': '2024-11-06 15:19:09', 'submission_id': '1gksn3l'}
{'comment': "The campaign basically did everything right, and it just wasn't enough.", 'created': '2024-11-06 17:22:33', 'submission_id': '1gksn3l'}
{'comment': 'Yeah. The brainwashing on so many levels - socially acceptable, no less - is like nothing I’ve ever seen in my life. They rode on the abortion/religion ticket, preying on belief systems. There are huge swaths of rural areas that are hard-core religious. This was key. Reversing Roe was all the proof they needed he was their messiah. He could have done anything he wanted - well, he did. In the end he pantomimed blowing the mic. \n\nSo now? What? They let him do whatever he wants. Harris was right about one thing: he wants unchecked power, and he will go after it. Everything we built our country on may fall like a house of cards.', 'created': '2024-11-06 19:05:02', 'submission_id': '1gksn3l'}
{'comment': 'Do we sink to that base level?', 'created': '2024-11-06 12:22:53', 'submission_id': '1gksn3l'}
{'comment': 'I don’t think it’s that bad. I think there’s been a pattern. For a while now. Once a republican comes people wanna vote a democrat next and vice versa. Pennsylvania was the core point and once Harris struggled there it was over. But yes America loves bullies. Harris can always try again. Age is on her side. But it was foreboding that a whole Hillary Clinton lost to Trump which means a female black/Indian American does not stand a chance', 'created': '2024-11-06 12:36:21', 'submission_id': '1gksn3l'}
{'comment': 'This. "To the richest people on earth: put me in there and I\'ll sell it to you. \n\nAbout the Dems rebranding; fuck appealing to those Republicans. It seems like not SCREAMING "EPSTEIN\'S BEST FRIEND IS A RAPIST, A TERRORIST, A FRAUD, CONVICTED FELON, RACIST..." wasn\'t a winning approach. If I were in Congress next session, I would very publicly make Republican legislation and governance buttery smooth. Just be there, observing, tracking, discussing and letting the people watch what Republican governance looks like with no one else to blame. That\'s where we are anyway. Show em.', 'created': '2024-11-06 15:31:27', 'submission_id': '1gksn3l'}
{'comment': 'super rich bought this election.', 'created': '2024-11-06 16:25:10', 'submission_id': '1gksn3l'}
{'comment': 'How do they take back the airwaves when the ones getting richer and richer own all of them and want republicans to keep letting them do whatever they want?', 'created': '2024-11-06 16:55:10', 'submission_id': '1gksn3l'}
{'comment': 'Republicans get their Newt Gingriches, their Bill Barrs, their Trumps. Aggressive, loud, saying “I’ll do what my constituents want even if it pisses the other side off, because fuck em, that’s why.” Where are OUR (Democrat) Gingriches, Barrs, and Trumps? How come only Republicans get what they want? How come no Dems are using a hammer to say “fuck it, my voters wanted this, and try to stop me”? What’s the worry - that they’ll lose? Um, they do, and they have. Might as well play the game because the worse happened anyway. Insanity is trying to same thing over and over and expecting a different result.', 'created': '2024-11-06 17:06:21', 'submission_id': '1gksn3l'}
{'comment': 'Also, you don\'t think any of the embarassing parts made it to Fox News, do you? And if they did, it was "he didn\'t mean it".', 'created': '2024-11-06 17:09:34', 'submission_id': '1gksn3l'}
{'comment': 'Billionaires owning everything kinda explains why Musk, Bezos, Zuckerberg et al were hedging their bets towards trump. They knew in advance as did SCOTUS. People also still believe it’s Biden causing the high cost of living because the reds told them so. Harris did not distance herself far enough from the Biden administration. She should have said more against Israeli gov’t out loud.', 'created': '2024-11-06 19:18:36', 'submission_id': '1gksn3l'}
{'comment': 'We need *way* more teeth now. Fuck decorum, let’s get nasty and mean.\n\nPlease.', 'created': '2024-11-06 19:30:59', 'submission_id': '1gksn3l'}
{'comment': 'We need a whole party overhaul top down', 'created': '2024-11-06 20:23:35', 'submission_id': '1gksn3l'}
{'comment': "The DNC leadership has failed.\n\n\nThe DNC leadership has been a total failure of imagination and effort from the start. They have not listened to their base, they have not been willing to fight fire with fire, and they DID NOT TURN OUT TO VOTE.\n\n\nThe reason why the democrats lost is because they earned it.\xa0\n\n\nYou don't need to get mad at me for posting this because I'm right here in America WITH you.\xa0", 'created': '2024-11-06 21:51:25', 'submission_id': '1gksn3l'}
{'comment': 'I would agree if this was the third MAGA win in a row. Except it wasn’t. They suffered in 2018, lost the White House in 2020, and even in 2022 they didn’t do all that well.\n\nMeanwhile, we have 2016 and 2024 thrusting them into power. Clearly there was something wrong in the tactics and the messaging those years.', 'created': '2024-11-06 22:42:25', 'submission_id': '1gksn3l'}
{'comment': 'All of that is true and accurate. Trump actually won the popular vote. I am having a difficult time coming to terms with that', 'created': '2024-11-06 11:25:55', 'submission_id': '1gksn3l'}
{'comment': 'And now Trump will pardon these patriot martyrs as the ultimate fuck you to everyone.', 'created': '2024-11-06 09:48:10', 'submission_id': '1gksn3l'}
{'comment': "I don't think Merrick Garland is the problem. This was the largest prosecution in US history, and it started before Garland. We've already brought 1,000 people to justice. And that was after they were blindsided and the rioters just walked away at the end of the day.\n\nMerrick Garland may not have been able to move the justice system swiftly, but I think that's more the fault of our justice system. We put ENORMOUS amounts of safeguards up to try and prevent the conviction of innocent individuals. Sadly, it doesn't help everyday people much, but Trump has shown us how it helps bad players avoid prosecution. He's got lots of money (large amounts of it not his) and tons of high-powered lawyers all working to subvert justice for him. And he's got SCOTUS and Aileen Cannon in his pocket.\n\nJack Smith came on board and did the work to put Trump away. And he was hired by Merrick Garland. And Smith was thwarted by SCOTUS and by Aileen Cannon. When judges are corrupt, there's relatively little prosecutors can do.", 'created': '2024-11-06 13:05:10', 'submission_id': '1gksn3l'}
{'comment': 'I wonder what Jack Smith is thinking right now.', 'created': '2024-11-06 15:44:40', 'submission_id': '1gksn3l'}
{'comment': 'This 100%', 'created': '2024-11-06 12:49:04', 'submission_id': '1gksn3l'}
{'comment': 'The Federalist Society is a big problem. Merrick Garland is a member. So are Vance, and Alito, and Clarence Thomas and Aileen Cannon just to name a few. They are the real deep state.', 'created': '2024-11-06 16:11:08', 'submission_id': '1gksn3l'}
{'comment': 'Did the rest of the government have no power in making this man do his job? I didn’t hear anyone calling him out.', 'created': '2024-11-06 13:58:15', 'submission_id': '1gksn3l'}
{'comment': 'Correct and had he done it Harris could have won it', 'created': '2024-11-06 17:07:23', 'submission_id': '1gksn3l'}
{'comment': 'all voters knew about Trumps criminal trials.... yet they chose to vote for him. \n\nLike we almost got him taken off the balot in some states, im starting to think that would have been bad for democracy. Blocking the person the majority wants.', 'created': '2024-11-06 20:26:45', 'submission_id': '1gksn3l'}
{'comment': 'Could Biden fire Garland tomorrow, just for fun?', 'created': '2024-11-06 20:38:20', 'submission_id': '1gksn3l'}
{'comment': 'He’s prosecuting or prosecuted 1,243 people so far. \nhttps://www.justice.gov/usao-dc/capitol-breach-cases\n\nHere’s a list of sentences so far:\nhttps://www.justice.gov/usao-dc/media/1331746/dl?inline (linked in the above link too if you don’t wanna click a random link)\n\nBut the media hasn’t been reporting on anything coming out of the Justice Department. It’s pretty bizarre. I’ve taken to reading their page for my news, so I know what’s actually going on (instead of what’s made it into the journalist’s twitter algorithm, which is being heavily influenced by foreign threat actors, which they’d know about if they read the agency press releases…)\n\nhttps://www.justice.gov/news\n\nI also rec checking out the CISA news section! :)', 'created': '2024-11-07 00:06:37', 'submission_id': '1gksn3l'}
{'comment': 'Just think of how expensive groceries will be when large numbers of people in farming and meat processing are deported.', 'created': '2024-11-06 10:28:41', 'submission_id': '1gksn3l'}
{'comment': 'Not an American but why was the grocery bills suddenly got high?', 'created': '2024-11-06 09:06:12', 'submission_id': '1gksn3l'}
{'comment': "We'd rather have a fascist than a woman as president. Full stop.", 'created': '2024-11-06 12:32:31', 'submission_id': '1gksn3l'}
{'comment': 'He should have had that discussion a long time ago and chose not to run. He should have decided that by like the midterms 2022.', 'created': '2024-11-06 15:22:54', 'submission_id': '1gksn3l'}
{'comment': "Biden was forced out. I \\*LOVE\\* Harris, but I didn't think forcing Biden out was a good idea, because I was (sadly correctly) worried about the misogyny vote.", 'created': '2024-11-06 13:08:34', 'submission_id': '1gksn3l'}
{'comment': 'Democrats really had a problem.\n\nBiden was by far the strongest candidate, the incumbent President, and the one who knew how to beat Trump. Unfortunately, he’s 81 and his comms suck. \n\nHe felt like he still had it in him, until it became painfully obvious that he didn’t.\n\nHe didn’t have the stamina to stay in and fight. A mini-primary would have been a disaster. As VP and presumptive VP nominee, Harris was the least bad option. \n\nHarris ran a very good campaign and was able to match Biden’s 2020 vote total in the swing states (at least those who have finished counting at this time). Democratic turnout was great where she campaigned and where it mattered. Trump simply had more votes this time.', 'created': '2024-11-06 14:08:39', 'submission_id': '1gksn3l'}
{'comment': 'Don’t forget the racial component. America is gone to the lowest', 'created': '2024-11-06 12:17:45', 'submission_id': '1gksn3l'}
{'comment': 'I think that if the Dem nominee had NOTHING to do with Biden, they would’ve had a fighting chance and likely would’ve won.\n\nThe Biden administration is associated with high prices, rampant illegal immigration, soft-on-crime policies (Biden and Harris aren’t, but the perception is the Democratic Party is after the likes of Alvin Bragg and Chesa Boudin got into power). Like it or not. Perception is reality for most people so MESSAGING is everything. Look at Trump. His policies are idiotic but he’s consistent and clear in his message and Biden in contrast has not had a consistent message on these topics. He’s been perceived as hands-off, hiding, aloof and not acknowledging the issues. People finally SAW that he was facing age-related issues after being told “oh, he’s fine.” People SEE white collar jobs being laid off in masses and outsourcing. People SEE immigrants taking over the homeless shelters in their cities. Democrats need to at least acknowledge that these things are happening instead of going “the economy is great, what are you talking about” or “it’s racist to not want immigrants.” \n\nI say all this as a staunch Harris supporter. I don’t blame her. She was handed a turkey - a few months to develop a fresh message for the Democrats to say that America will be different under her but she also was part of the current administration. She did the best she could have done. If Biden let all the negatives from post-COVID fall on him, knowing that he would be a one-term president, he could’ve soaked up the blame while someone else came up and had a clean slate.', 'created': '2024-11-06 17:16:35', 'submission_id': '1gksn3l'}
{'comment': "I don't know if this is unpopular, but I wish they ran Biden in 2016. I do like Hillary and voted for her but America really doesn't want to elect a women. Biden was sharper then and could have ran off a good economy with Obama. But according to his book, they pushed for Hillary. Bernie was popular too so we could have had a chance although people have painted him as radical. But it's sad that we still can't elect a qualified woman.", 'created': '2024-11-06 17:34:31', 'submission_id': '1gksn3l'}
{'comment': 'Those same sexists voted in greater numbers for Clinton.\n\nI’m not saying it didn’t play a part- but it seems more likely people disliked her specifically. The only demo she significantly improved on Clinton’s numbers believe it or not was white college educated males.', 'created': '2024-11-06 13:01:56', 'submission_id': '1gksn3l'}
{'comment': 'Probably calling republicans sexist for not wanting a democrat woman sexist didn’t help. But feel free to keep alienating half the country and acting surprised when half the country doesn’t like you.', 'created': '2024-11-06 14:53:42', 'submission_id': '1gksn3l'}
{'comment': "Call spade a spade. She didn't win cuz she was a women like Hilary Clinton. Altho she had a great campaign compared to hilary and she still lost by landslide.", 'created': '2024-11-06 08:40:33', 'submission_id': '1gksn3l'}
{'comment': 'we will 100% learn absolutely fucking nothing', 'created': '2024-11-06 08:47:13', 'submission_id': '1gksn3l'}
{'comment': 'it is hard to comprehend the fact that in many cases the trees voted for the axe. i mean that is so fucked up.', 'created': '2024-11-06 09:36:58', 'submission_id': '1gksn3l'}
{'comment': '“They know it’s higher than it was under Trump and they’re far too stupid to know it was entirely Trumps trillion dollar corporate giveaways.”', 'created': '2024-11-06 09:40:21', 'submission_id': '1gksn3l'}
{'comment': "Good breakdown. I'd like to add 1 more point which will probably be contentious: I think abortion as a main issue was not the winning strategy. It worked at state levels where there were abortion bans, but on a national level where there are many states who have access/protection of abortion, it probably did not resonate with the people living there. If the reverse were true, that'd be a different story", 'created': '2024-11-06 09:07:03', 'submission_id': '1gksn3l'}
{'comment': "There's no room left to learn. This was our last chance. The GOP made their threats, and if there's one thing you can rely on the GOP for, its making good on threats. Say goodbye to our democracy", 'created': '2024-11-06 08:58:56', 'submission_id': '1gksn3l'}
{'comment': 'Why should I ever care about men when they have demonstrated that they would rather women bleed to death in a parking lot or let a teenager die of sepsis than not be the absolute center of attention at every instance.\n\nI guess empathy is just too much to ask?\n\n(And I am referring to Trump voters only, not normal men)', 'created': '2024-11-06 10:36:00', 'submission_id': '1gksn3l'}
{'comment': "Fifth, more and more people don't believe the job market reports being put out. More and more people are sharing how they can't find a job after a year of being unemployed and applying for 1 position against hundreds of people. Every single month, a new report comes out showing job unemployment numbers are low and how much they added to the market. You shouldn't count doordash and working part-time at Claire's in that report.", 'created': '2024-11-06 08:49:01', 'submission_id': '1gksn3l'}
{'comment': 'This is a good analysis.\n\n1. I agree, Democrats liked to talk about the strength of the macro economy (GPD, DOW, etc.) but the reality is that the micro economy (buying power, general prices) generally sucked for many of Americans. People vote on their wallets and not that the GPD is up because they don\'t *feel* that.\n\n2. I agree and I definitely underestimated the impact of the young male vote. But looking back, it\'s not that young men went overwhelmingly to Trump, it\'s that I know Harris didn\'t do a single thing to appeal to that group.\n\n3. This is a really interesting perspective on minorities and makes sense. Black presidential candidates don\'t automatically get the black vote. A woman candidate doesn\'t automatically get the woman vote. And I do think Harris\' campaign ran very reactively on immigration. Instead of platforming strong immigration policies, they eventual fell back on bashing Trump\'s mass deportation plan. Which, say what you will about mass deportation, his supporters will see that as at least a plan where Harris had no plan except to reintroduce a the border bill. Which, on that, I\'ll say 99% of American voters don\'t know how bills work so when you say you\'re just going to introduce a bill on immigration, that doesn\'t feel like it does anything at all.\n\n4. I saw a lot of people bashing Harris for essentially "doing nothing in the 4 years she was in office". Which I think is unfair because it\'s not like people are out there parading what Pence did during Trump\'s presidency. But it was a rhetoric the GOP went with and I think it actually dug in pretty deep and worked against Harris\' favor. She was seen as the appointed candidate with no primary tied to a current president that people are iffy on and people are wildly unimpressed with her track record.\n\nAnd maybe I should\'ve seen this coming. Sure, she surged in approval and enthusiasm, but before being appointed to the presidential nominee, her approval rating was disastrously low. Many people did not like her and perhaps it was naive from the very start to assume that was somehow magically going to change once "America was introduced to her."', 'created': '2024-11-06 08:42:48', 'submission_id': '1gksn3l'}
{'comment': 'I will piggyback on the Hispanic comment. Democrats largely focus on undocumented immigrants. That ticks off a lot of documented immigrants.', 'created': '2024-11-06 09:07:56', 'submission_id': '1gksn3l'}
{'comment': "Agree with 1 of these, not even going to bother going into it. For most of these, This is done and a moot point, Reason 1 shows a complete misunderstanding of the economy, and just what Covid did within the scope of short term economic stability. But most people don't understand this, but again moot.\n\n\nAnyone who voted Trump just due to economic reasons, (again, Trump destroyed the economy and added 8 trillion to our national debt, but again, apparently groceries wouldn't be the price they are with Trump as president (rolls eyes). Is well, absurd. \n\n\nYeh, I'm fine with a dictatorship and disregarding human rights, as long as I can afford my carton of eggs. And make an additional 1k a year on my 150k+ year paycheck, since literally min cap for larger tax raise is 150k+ under Harris economic plan, again this is 1k+ a year, if 1k extra a year while making a min of 150k effects you, then go become a Libertarian, they'd welcome you with open arms.", 'created': '2024-11-06 09:24:09', 'submission_id': '1gksn3l'}
{'comment': 'Much respect for this comment. This NAILS the reasoning perfectly. Perception is reality is a key narrative here and the Dems/Kamala just tried to shape reality based on non perceptions. People hate that disingenuous shit so much.', 'created': '2024-11-06 08:31:16', 'submission_id': '1gksn3l'}
{'comment': "The biggest issue I see around me: people don't understand shit, and they take what little information they have from conservative owned media and social media. That's it. Half of my coworkers didn't really know about J6, not to mention Trump's other court cases. Sure we're in retail and not the smartest people. But still.", 'created': '2024-11-06 11:54:03', 'submission_id': '1gksn3l'}
{'comment': 'I believe inflation is the number one thing. Low information voters truly don’t understand that the president has very little to do with high grocery prices. I talked to several people, including black voters. Their main complaint was high prices and Trump really convinced them that this was the fault of Biden and Harris. \n\nI also blame Biden for dropping out so late. We needed a full election season to nominate the candidate that everybody could get behind. A lot of us were gung ho about Kamala, but there were plenty of complaints that she was forced on us.\n\nAnd the last thing is just pure disinformation. There was a time when the opposing candidate wouldn’t out and out lie like Trump does. His supporters believe what he says, even though it’s bullshit. Lying and misleading AI ads are a winning strategy apparently. And Fox News is winning the propaganda game.', 'created': '2024-11-06 14:52:42', 'submission_id': '1gksn3l'}
{'comment': 'This is correct. 1000%', 'created': '2024-11-06 08:34:05', 'submission_id': '1gksn3l'}
{'comment': 'Your first point is really all that’s needed. It was a nearly impossible perception to help fix. They tried hard to fix it but it wasn’t working so they pivoted to talk about other things. It doesn’t matter that Biden saved us from an economic collapse (I strongly believe this) as you can’t convince voters of that when prices of everything has gotten so high. It was all a horribly losing battle. \n\nYou have to also acknowledge sexism and racism. I think with those two things removed it would have been a much closer race.', 'created': '2024-11-06 11:07:45', 'submission_id': '1gksn3l'}
{'comment': 'LOL all your points leads to her not winning from the start. The deck was stacked against her from the beginning. Any campaign she woulda lost.', 'created': '2024-11-06 08:36:32', 'submission_id': '1gksn3l'}
{'comment': "Wait until they find out what climate change will do to their grocery bills. Climate change is already causing people to starve to death in parts of this world, we're not immune, food scarcity will probably most likely happen? which will drive prices through the roof.", 'created': '2024-11-06 10:36:37', 'submission_id': '1gksn3l'}
{'comment': "Exit polls show no change in the Black vote. Between 2020 and 2024. The Hispanic vote was different, and if you don't address the racism the you're being disingenuous. Non black minorities are fighting for second place under white supremacy.", 'created': '2024-11-06 12:30:50', 'submission_id': '1gksn3l'}
{'comment': 'Biden staying on was a major disadvantage, Kamala being tied his presidency was a major disadvantage. Inflation is real and they blamed it on Biden and that message worked, it requires nuance to explain otherwise and the catchy sound bite works. Kamala being tied to his presidency was an albatross. Even with a full cycle I doubt she could have done different.', 'created': '2024-11-06 14:17:26', 'submission_id': '1gksn3l'}
{'comment': "This would have been true after the 2016 election but it isn't true anymore. Democrats stopped the cringy racial pandering in the 2024 election and that's why I was hopeful.", 'created': '2024-11-06 15:13:58', 'submission_id': '1gksn3l'}
{'comment': '“It’s the economy, stupid.”\n\nNo need to overanalyze.\n\nThere’s no denying groceries, eating out, home goods, etc, have gotten stupid expensive these days. \n\nSure it may not be Biden’s fault, and there’s no guarantee Trump will fix it, but the message is clear, the voters want a change.', 'created': '2024-11-06 16:00:11', 'submission_id': '1gksn3l'}
{'comment': "Excellent postmortem. The one positive is in 2028 the Democratic party gets a clean break. No Clintons, no Obama holdovers, no last minute replacement candidate. For the first time in a long while it's a chance of a completely new, fresh set of candidates without an eye towards past presidents or political families. \n\nI tell you, as crappy as this outcome is, guys like Gavin Newsom, JB Pritzker, Josh Shapiro, etc. are salivating this morning at 2028. Because for all the fear mongering on here the Constitution still limits presidents to two terms. There is no wiggling out of that. And Vance is eminently beatable if he has already been sworn in by 2028.", 'created': '2024-11-06 16:04:35', 'submission_id': '1gksn3l'}
{'comment': 'All this can be resumed in americans are not very smart', 'created': '2024-11-06 08:55:48', 'submission_id': '1gksn3l'}
{'comment': 'This is an amazing answer', 'created': '2024-11-06 09:21:06', 'submission_id': '1gksn3l'}
{'comment': 'Yup', 'created': '2024-11-06 09:33:15', 'submission_id': '1gksn3l'}
{'comment': "Perception is not reality. Reality is reality. If misinformation didn't exist, Trump would have lost every state. \n\nWe had inflation but that's from the pandemic and was higher in every other country. Now its down to normal levels and wages have outpaced inflation for 2.5 years…. But most voters don't know that.\n\npeople’s perceptions of reality were based on lies… when polled, most Americans said they were doing well financially but thought everyone else was doing terribly... Because they felt good based on their own finances but thought everything was terrible because they were told it was terrible. \n\nThis misinformation won't end so long as our media is owned by just a few individuals that had an interest in Trump winning… Elon Musk and Rupert Murdoch alone own platforms that collectively reach every American either directly or indirectly", 'created': '2024-11-06 12:53:38', 'submission_id': '1gksn3l'}
{'comment': '💯 \n\nI think that if the Dem nominee had NOTHING to do with Biden, they would’ve had a fighting chance and likely would’ve won.\n\nThe Biden administration is associated with high prices, rampant illegal immigration, soft-on-crime policies (Biden and Harris aren’t, but the perception is the Democratic Party is after the likes of Alvin Bragg and Chesa Boudin got into power). Like it or not. \n\nPerception is reality for most people so MESSAGING is everything. Look at Trump. His policies are idiotic but he’s consistent and clear in his message and Biden in contrast has not had a consistent message on these topics. He’s been perceived as hands-off, hiding, aloof and not acknowledging the issues. \n\nPeople finally SAW that he was facing age-related issues after being told “oh, he’s fine.” People SEE white collar jobs being laid off in masses and outsourcing. People SEE immigrants taking over the homeless shelters in their cities. Democrats need to at least acknowledge that these things are happening instead of going “the economy is great, what are you talking about” or “it’s racist to not want immigrants.”\n\nI say all this as a staunch Harris supporter. I don’t blame her. She was handed a turkey - a few months to develop a fresh message for the Democrats to say that America will be different under her but she also was part of the current administration. She did the best she could have done. If Biden let all the negatives from post-COVID fall on him, knowing that he would be a one-term president, he could’ve soaked up the blame while someone else came up and had a clean slate.', 'created': '2024-11-06 17:21:04', 'submission_id': '1gksn3l'}
{'comment': '@ u/Successful_Young4933 because earlier poster blocked me and Reddit is stupid because we can’t continue the conversation further down:\n\nAnd I can perfectly understand why what I’m saying is so distasteful, I really can. It’s absolutely a double standard. But here’s the thing- I hold us and myself to a higher standard. We are never going to match them hate for hate and win. Our appeal and our strength is in our empathy and compassion, especially when it’s for everyone regardless of your political affiliation. \n\nSo yes, you’re right about what I’m asking and I know exactly what I’m asking for. But when we stood up for POC, for women, for gay people… we never did it based on them reciprocating it. We did it because it was the right thing to do. And maybe I’m old and out of touch now and maybe Liberals just don’t have that level of compassion anymore.\n\n\nI also think it needs to be pointed out that the men we are talking about aren’t people my age or our parents age. They didn’t see the blatant sexism that older generations saw. They grew up in a MeToo era with buzzwords like “male privilege” and “toxic masculinity” flying around, and reached adulthood when universities companies were competing for female or minority candidates and much less enthused about males and especially white males, and then struggled with not being able to provide as a single breadwinner or afford a house, because the primary thing that carried over from older eras are the expectations about how a man should take care of his family. It’s not hard to see how this generation of men could be vulnerable. I’m not excusing them, but at the core of a lot of these men, there’s a human being who is hurting. \n\n\nThat’s why I ask what I do, even if it’s a big ask. Because I believe we are strong enough, and I believe we can make a difference.', 'created': '2024-11-06 18:43:09', 'submission_id': '1gksn3l'}
{'comment': 'I’ve also heard from a lot of women who voted for Trump that they found the your-husband-won’t-know-how-you-vote message to be very offensive. My husband is not my oppressor; we have a very solid relationship; etc.', 'created': '2024-11-06 20:18:24', 'submission_id': '1gksn3l'}
{'comment': 'This is spot on. Every Hispanic I know is really conservative. I’m not sure why it was assumed that they would all vote blue. \n\nEvery time liberals use terms like toxic masculinity, white privilege, male privilege, cultural appropriation, etc we alienate another set of voters. For a group that claims we want to build a coalition, we sure outright dismiss a lot of voters.', 'created': '2024-11-06 20:39:11', 'submission_id': '1gksn3l'}
{'comment': 'What an informed opinion. Very, very true.', 'created': '2024-11-06 21:26:28', 'submission_id': '1gksn3l'}
{'comment': 'Good recap. Do you think we should stop using traditional demographics and instead use psychographics in political messaging? Like - People who prioritize family vs Hispanic men.', 'created': '2024-11-06 22:47:45', 'submission_id': '1gksn3l'}
{'comment': 'Stats don’t lie but neither does the perception of the person you’re trying to get vote for you. Many people blame the personal shortcomings on Biden/ Harris admin and I don’t blame them. It’s just always so wild to me how people forget how we got into that situation.\n\nBeing an x-man (trans girl) progressive/ liberal ideology is shunned in a lot of young male group because it’s seen as beta. Not a masculine trait to look out for the well being of others versus the well being of yourself (even tho they go hand in hand). \n\nLong story short the Democratic party has let us down. Short campaign + honestly too much of a conservative standpoint on a lot of issues was a class act of throwing away votes AGAIN', 'created': '2024-11-06 10:14:51', 'submission_id': '1gksn3l'}
{'comment': 'Yep.\n*The economy (on the last 4 years dems really put their foreign policy project above the economy and in the end they are defeated in the two things). \n*Young men - young men are living an epidemy of loneliness, and the feminist discourse only focuses in the women well being. In certain way, feminism cannot achieve its goals because cannot captivate young men into create a more egalitarian and cozy world, but instead, all men were being blamed by the worst things. When men said "not every men", we really should listened and had a sincere conversation. Our incapacity of try to captivate them for our cause was a great strategical flaw in contemporary feminism. Now we are paying the price.', 'created': '2024-11-06 08:56:26', 'submission_id': '1gksn3l'}
{'comment': 'Young men want to be assholes. It’s hard to figure out how to appeal to that', 'created': '2024-11-06 10:10:14', 'submission_id': '1gksn3l'}
{'comment': 'Let’s not leave out the fact that a whole lotta men probably saw their chance to rip women’s rights away and ran with it.', 'created': '2024-11-06 10:40:11', 'submission_id': '1gksn3l'}
{'comment': "Most black men voted for Harris. Most Latino men didn't. Blame the fools that just condemned you to Trump, not the darker ones that tried to help you", 'created': '2024-11-06 21:30:14', 'submission_id': '1gksn3l'}
{'comment': 'Most people are stupid. You still have to run a campaign that appeals to them.', 'created': '2024-11-06 16:20:41', 'submission_id': '1gksn3l'}
{'comment': 'Can’t wait until these idiots realize the president doesn’t control the price of eggs, bacon, gasoline, or anything. \n\nThen again, they’ll probably still blame Biden or Obama.', 'created': '2024-11-06 16:55:07', 'submission_id': '1gksn3l'}
{'comment': 'Gas is down but you are right. If it had been Jeb Bush as the nominee we would have lost New Jersey too.', 'created': '2024-11-06 16:47:42', 'submission_id': '1gksn3l'}
{'comment': 'She and Biden were also blamed for inflation regardless if it was true or not. People’s wallets were hit and that’s an incumbent killer.', 'created': '2024-11-06 08:45:07', 'submission_id': '1gksn3l'}
{'comment': 'Sounds a lot like Hillary in 2016.', 'created': '2024-11-06 08:14:27', 'submission_id': '1gksn3l'}
{'comment': "Wasn't Democrats applauding Biden's late step out as it wasted Trump's campaign money against him?", 'created': '2024-11-06 08:20:16', 'submission_id': '1gksn3l'}
{'comment': 'She was strong on immigration. She repeated it a million times. She said she would sign the legislation Trump tanked so they could run on the issue. Misogyny. That’s why she wasn’t elected.', 'created': '2024-11-06 10:23:44', 'submission_id': '1gksn3l'}
{'comment': 'Clearly, they are not.', 'created': '2024-11-06 08:44:34', 'submission_id': '1gksn3l'}
{'comment': 'How could she possibly have been stronger on immigration short of endorsing mass deportations?', 'created': '2024-11-06 21:15:41', 'submission_id': '1gksn3l'}
{'comment': "Nothing about how no one voted for her to be the candidate? Just installed by the DNC? Just like them screwing over bernie? Party of democracy and you guys don't even get to vote for the candidate", 'created': '2024-11-06 08:29:40', 'submission_id': '1gksn3l'}
{'comment': 'There is so much information out there and it\'s not too difficult to find rather convincing opposite points of view.\n\nThis is often by design, Bannon called it "flooding the zone".\n\nI\'m saying this because, even if someone is educated, if that person is not used to separating reliable information from bullshit, they\'re very likely to be overwhelmed.\n\nSource: I\'m an engineer with an MBA from a top 5 program. Which I guess counts as an "education". But the number of dipshits I came across in engineering and business school amazed me.', 'created': '2024-11-06 15:20:03', 'submission_id': '1gksn3l'}
{'comment': "A WOC I work with didn't vote.", 'created': '2024-11-06 17:43:50', 'submission_id': '1gksn3l'}
{'comment': 'Assuming someone will do something because of their skin color is the definition of racism', 'created': '2024-11-06 18:47:48', 'submission_id': '1gksn3l'}
{'comment': 'Yes! This is a party issue for sure. I’m so disappointed but I hope it’s a wake up call. Things have to change.', 'created': '2024-11-06 08:18:27', 'submission_id': '1gksn3l'}
{'comment': 'Seriously. Democrats let Republicans run all over them with the message that the economy was bad and inflation was out of control while America actually handled both those items very well compared to the rest of the world. They should’ve come out hard on it from the beginning and said Republicans are full of shit, the economy is great, but we understand there are things that still need to be worked on.', 'created': '2024-11-06 08:40:07', 'submission_id': '1gksn3l'}
{'comment': 'The last primary that truly elected a leader was Obama’s. \n\nShe did something unreal in these last three months. And the Dems with passion she stoked have something ignited in them. \n\nI’m Canadian. This outcome is heart sickening but we’re on a he verge of a similar buffoon being elected here.', 'created': '2024-11-06 12:11:34', 'submission_id': '1gksn3l'}
{'comment': "Pretty sure that was Biden's job, and he did not do it. Biden has been absent in the real world. I think back to President Bush and Obama who was constantly doing townhalls and out in the public speaking to people about their agenda/administration.", 'created': '2024-11-06 08:17:14', 'submission_id': '1gksn3l'}
{'comment': 'I told anyone who would listen that he was honestly the best president in my lifetime.', 'created': '2024-11-06 08:38:44', 'submission_id': '1gksn3l'}
{'comment': 'I think this is one of the main reasons as well, the late change helped nobody. Had Biden just not ran in general, he would\'ve been seen fine but the media push that he was "ousted" made it seem like even we weren\'t happy with him, so why should you trust us?', 'created': '2024-11-06 13:02:37', 'submission_id': '1gksn3l'}
{'comment': 'We’re losing those races because of Trump’s coattails. Even there, the downballot Republicans are running behind Trump.\n\nWhen Trump isn’t on the ballot, we win those races.', 'created': '2024-11-06 14:14:03', 'submission_id': '1gksn3l'}
{'comment': 'Yep. And now Trump will be able to claim credit for things like the economy recovering and infrastructure being built.', 'created': '2024-11-06 17:31:46', 'submission_id': '1gksn3l'}
{'comment': 'Yup! We failed to actually support our President for at least the last 2 years and we lost the Presidency. It’s almost exactly what happened in 2014-2016 when everyone ran scared from Obama’s bad poll numbers and then suddenly we weren’t the popular party.', 'created': '2024-11-06 22:55:55', 'submission_id': '1gksn3l'}
{'comment': 'Be ashamed of the men too.', 'created': '2024-11-07 02:09:48', 'submission_id': '1gksn3l'}
{'comment': 'White males have been demonized for all of our society’s problems for a while, why is anyone surprised they would vote against the Democratic Party?', 'created': '2024-11-06 10:51:48', 'submission_id': '1gksn3l'}
{'comment': 'Democracy works so long as the population is educated. The American education system is in shambles. Critical thinking is a learned skill, and it’s being gutted from our schools—at least in Texas, in favor of memorization for standardized tests who have a really sweet deal with the state. Of course…', 'created': '2024-11-07 00:31:31', 'submission_id': '1gksn3l'}
{'comment': 'I’m looking forward to seeing Hispanic families ripped apart when the mass deportations start.Fuck em.', 'created': '2024-11-06 19:28:11', 'submission_id': '1gksn3l'}
{'comment': 'Yup', 'created': '2024-11-06 08:15:01', 'submission_id': '1gksn3l'}
{'comment': 'Yep. A timely withdraw and genuine primary could have united the party behind our incredibly popular policies instead of an empty and last minute “hope” message. She might have won, she was the VP after all, but how she got the reigns… this brief campaign was doomed', 'created': '2024-11-06 08:19:26', 'submission_id': '1gksn3l'}
{'comment': 'They had 4 years if you think about it.\n\nAs soon as he won the planning should have began on his successor.', 'created': '2024-11-06 09:51:43', 'submission_id': '1gksn3l'}
{'comment': 'This 100%. It’s fucking Joe Biden’s fault for insisting on running way past his prime and all his aides and minions who hid how poor shape he was in. Also fuck the DNC. I think after this I’m done.', 'created': '2024-11-06 12:48:03', 'submission_id': '1gksn3l'}
{'comment': 'This does not get enough attention! \n\nShe was a directive from above and not an organic nominee.. . just like Hilary in 2016.\n\nDeaf Dumb and Blind the Democrats, once again, clutch defeat from the jaws of victory.', 'created': '2024-11-06 08:25:43', 'submission_id': '1gksn3l'}
{'comment': 'This. I said it in July and I’ll say it now, people aren’t going to (didn’t) vote for Kamala because they didn’t choose her, she was chosen for them.', 'created': '2024-11-06 23:40:59', 'submission_id': '1gksn3l'}
{'comment': "Yeah and the worst part is that there's threads literally congratulating Biden for a job well done. NO! HIS CIRCLE SHOULD BE SHAMED TO HELL FOR DRAGGING HIM THIS FAR AND NOT ALLOWING THE DEMOCRATS A FAIR PRIMARY!", 'created': '2024-11-06 08:47:41', 'submission_id': '1gksn3l'}
{'comment': 'Again, who inside the (D) party could they have run that would not have been tied or bound to the Biden Administration? People feel the four years were economically not good for them and like the Political Phrase goes "It is the economy, stupid" \n\nAdvice for Dems now - regroup, find a more centrist candidate, push the "Woke, green agenda" people out of the picture, trans issues, women in sports are not middle America winning ideas.', 'created': '2024-11-06 09:06:11', 'submission_id': '1gksn3l'}
{'comment': 'One guy had the courage to speak up (Dean Phillips) and he was shut down right away.', 'created': '2024-11-06 08:45:48', 'submission_id': '1gksn3l'}
{'comment': 'But according to Reddit he was perfectly fit and suited to beat trump?🤓☝️', 'created': '2024-11-06 08:36:33', 'submission_id': '1gksn3l'}
{'comment': 'That was so they could appoint a nominee and not allow another grassroots candidate like Sanders to gain steam in an actual primary', 'created': '2024-11-06 08:15:35', 'submission_id': '1gksn3l'}
{'comment': 'Drives me insane people think it’s inflation when it’s just price gouging, supermarkets are making record profits', 'created': '2024-11-06 15:03:06', 'submission_id': '1gksn3l'}
{'comment': 'I think this impacted things far more than I realized. There was so much energy and enthusiasm behind her (selling out rallies, etc.) but maybe it was all manufactured.\n\nMaybe if we had a primary and the traditional white male candidate like Shapiro takes the helm, this all looks very different.', 'created': '2024-11-06 08:27:47', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 08:26:58', 'submission_id': '1gksn3l'}
{'comment': 'If 4 wasn’t good enough we deserve what we get', 'created': '2024-11-06 10:16:25', 'submission_id': '1gksn3l'}
{'comment': 'This is it exactly but Dems will scream racism and sexism before being accountable for their mistakes', 'created': '2024-11-06 08:33:03', 'submission_id': '1gksn3l'}
{'comment': 'Surely they’ll come around after shaming them more', 'created': '2024-11-06 14:54:54', 'submission_id': '1gksn3l'}
{'comment': 'This. She should have made a stronger effort to separate herself from the decisions made while Biden was the number one.', 'created': '2024-11-06 08:08:33', 'submission_id': '1gksn3l'}
{'comment': "Kudos to the GOP on that play.\n\nBus the immigrants to the large cities so they can take away the resources of poor blacks so they can be like why do they get this but I don't. That plan worked as intended.", 'created': '2024-11-06 09:49:42', 'submission_id': '1gksn3l'}
{'comment': "That's because trump failed to build the wall to Mexico. His only election promise and he never did that, now because he never did anything those 4 years and now you got immigration issues.", 'created': '2024-11-06 08:31:29', 'submission_id': '1gksn3l'}
{'comment': 'And misogyny', 'created': '2024-11-06 10:41:31', 'submission_id': '1gksn3l'}
{'comment': "Actually even with all that, she could have won seeing how close the race in PA was. The republicans pulled 2 stunts with X that pulled alot of independents to them. \n\nThe first was about 4 days ago when the defense ministry announced a 425 million package to Ukraine and X twisted it to make it sound like it was in dollars instead of old equipment. It caused quite the uproar with MAGAs screaming left and right and saying how hurricane victims only received 750 (which maybe lost us North Carolina too)\n\nThe second was the sudden publication by cnbc about how home ownership occurs at an average age of 56. This caused an even bigger uproar. \n\nThese two factors directly contributed to shift polling among independents to plus 10 to Trump and -8 to Harris. That's enough for us to lose all swing states.", 'created': '2024-11-06 09:17:05', 'submission_id': '1gksn3l'}
{'comment': 'I hate to say it, but there won\'t be any more "going forward." The GOP is going to change all the rules they can to ensure they remain in control of the federal government for decades if not in perpetuity. I sincerely fear that America just voted its democracy away.', 'created': '2024-11-06 11:51:02', 'submission_id': '1gksn3l'}
{'comment': 'Didn\'t Hillary run on "not Trump" too?', 'created': '2024-11-06 08:11:12', 'submission_id': '1gksn3l'}
{'comment': 'Let’s add having everyone on the suspected diddy list to speak for her', 'created': '2024-11-06 08:37:47', 'submission_id': '1gksn3l'}
{'comment': 'Trying to explain the nuances of inflation is not something most maga votes want to hear or can understand.', 'created': '2024-11-06 08:11:55', 'submission_id': '1gksn3l'}
{'comment': 'Omg thank you SO MUCH for bringing up the stutter thing. I am AuDHD and how my brain processes can affect how I speak at times. So many people calling themselves progressives, but using examples of Biden’s stutter as a sign of decline when he’s always had it… It felt like bullying to me… \n\nI hate to say it but I think there’s an issue related to in-group/out-group dynamics and blue state progressives. Democrats in red states are the underdogs and typically have enough exposure and challenge to their beliefs to do their homework on what they believe in. We have people in our lives whose minds we’d like to change, so we have more practice learning what works and more incentive to learn. \n\nBlue state Democrats (and red state Republicans) are less likely to be challenged in their communities, and have less incentive to change minds, because they’re in the in-group. They can easily choose to politely ignore grandma’s racist comments, because she’s voting red in a safe blue state, so who cares. \n\nThis wouldn’t be as big of a deal, imo, if all of our journalists weren’t ivy leaguers, and all of those ivy leaguers didn’t spend their formative political years in blue state progressive environments…', 'created': '2024-11-07 00:50:27', 'submission_id': '1gksn3l'}
{'comment': 'Biden not dropping out during the primary I feel is partly to blame for the loss. He let his ego get in the way at first. His desire to not admit he was getting old and that he could do more. I think had we had a normal primary that would have increased our chances. I was angry when he said he would continue to run again. This is why.', 'created': '2024-11-06 17:10:44', 'submission_id': '1gksn3l'}
{'comment': 'To point 2, Biden’s approval rating is around 40%. I’m not sure how you’re getting “well-liked” from that', 'created': '2024-11-06 15:33:00', 'submission_id': '1gksn3l'}
{'comment': 'Two years from now, all these Trump voters are going to extremely regret what they did today.', 'created': '2024-11-06 08:37:37', 'submission_id': '1gksn3l'}
{'comment': 'I think being the incumbent was the bigger issue.', 'created': '2024-11-06 08:33:44', 'submission_id': '1gksn3l'}
{'comment': "Certain demographic won't vote for a straight white man, even if it meant damaging their own life.\xa0", 'created': '2024-11-06 08:28:20', 'submission_id': '1gksn3l'}
{'comment': 'This is the truth', 'created': '2024-11-06 08:29:40', 'submission_id': '1gksn3l'}
{'comment': 'Yes, keeping blaming and pointing fingers. It definitely helps', 'created': '2024-11-06 08:10:58', 'submission_id': '1gksn3l'}
{'comment': "wow just for that it's actually your fault i vote like a bigot", 'created': '2024-11-06 12:13:30', 'submission_id': '1gksn3l'}
{'comment': 'Sexism, yes. I’m not convinced that race played a part this election.', 'created': '2024-11-06 12:19:12', 'submission_id': '1gksn3l'}
{'comment': "that would never have worked lmao you're still expecting too much of the american voter", 'created': '2024-11-06 12:14:18', 'submission_id': '1gksn3l'}
{'comment': 'I lay lore blame on the 100s of thousands of people who voted for Stein or any other independent. Such wasted votes in the most important election of our lifetime.', 'created': '2024-11-06 13:47:12', 'submission_id': '1gksn3l'}
{'comment': '"I blame democracy"', 'created': '2024-11-06 08:30:17', 'submission_id': '1gksn3l'}
{'comment': 'In the middle is terrible too. 1% of PA voters did', 'created': '2024-11-06 08:27:44', 'submission_id': '1gksn3l'}
{'comment': 'Democrats the last 4 years lost this election. Take some accountability and quit the finger pointing for once.', 'created': '2024-11-06 08:21:51', 'submission_id': '1gksn3l'}
{'comment': 'lol, it’s this holier than thou shit that will keep bringing you the Ls', 'created': '2024-11-06 08:37:01', 'submission_id': '1gksn3l'}
{'comment': 'Idiocracy timeline', 'created': '2024-11-06 16:59:52', 'submission_id': '1gksn3l'}
{'comment': "Well, it's important to do a bit of fact-finding so the same mistakes aren't repeated the next time around.", 'created': '2024-11-06 08:16:49', 'submission_id': '1gksn3l'}
{'comment': "I guess I mistook what seemed like wild enthusiasm at rallies for sentiments of the larger population. \n\nBecause it's not just a loss right now, it's looking like even a popular vote loss and Trump won by enormous margins in some states.", 'created': '2024-11-06 08:31:14', 'submission_id': '1gksn3l'}
{'comment': 'Racism and misogyny', 'created': '2024-11-06 13:38:46', 'submission_id': '1gksn3l'}
{'comment': 'Sexism. People who voted for Obama voted for Trump. You’re looking at sexism here.', 'created': '2024-11-06 13:30:56', 'submission_id': '1gksn3l'}
{'comment': 'I think it was more misogyny, I honestly think race had very little to do with it.\n\nAlso abortion, illegal immigration, and the economy.', 'created': '2024-11-06 11:51:58', 'submission_id': '1gksn3l'}
{'comment': 'Racism and misogyny.', 'created': '2024-11-06 15:58:31', 'submission_id': '1gksn3l'}
{'comment': 'Why did Obama get elected twice then? Refusing to see the actual issues and just blaming it on racism/sexism is a huge part of the problem. She wasn’t a good candidate, plain and simple. I had hoped people would have voted her in regardless and we’d have 4 years of a bad president instead of a electing a dictator.', 'created': '2024-11-06 15:06:26', 'submission_id': '1gksn3l'}
{'comment': 'What a cop out', 'created': '2024-11-06 16:32:37', 'submission_id': '1gksn3l'}
{'comment': 'Also thinking that too. Saw a lot of commercials of her trying to reach that voter, but America isn’t ready to accept that', 'created': '2024-11-06 08:07:04', 'submission_id': '1gksn3l'}
{'comment': "In a man's game as far as the men are concerned, Hillary lost too to the idiot. Tonight made me question my sexuality as there are too many men that voted such that I can tell they have no respect for women.", 'created': '2024-11-06 08:25:15', 'submission_id': '1gksn3l'}
{'comment': 'I think its because she was just a woman. Hard to tell it like it is. Hilary Clinton suffered the same fate and i hated her campaign.', 'created': '2024-11-06 08:32:44', 'submission_id': '1gksn3l'}
{'comment': 'same side already saying Michelle Obama would’ve won lol', 'created': '2024-11-06 08:08:12', 'submission_id': '1gksn3l'}
{'comment': 'Nobody wants to say it but it’s true unfortunately…', 'created': '2024-11-06 08:06:15', 'submission_id': '1gksn3l'}
{'comment': 'Hispanic women came out in droves to vote against her. simply implying race is lazy and not the truth', 'created': '2024-11-06 08:12:16', 'submission_id': '1gksn3l'}
{'comment': '100% agree on this', 'created': '2024-11-06 08:09:03', 'submission_id': '1gksn3l'}
{'comment': 'Literally this', 'created': '2024-11-06 08:17:08', 'submission_id': '1gksn3l'}
{'comment': 'Obama broke that rule for a white man in the White House, but a *brown woman* was a step too far. Call it conservatism, call it sexism, call it misogyny, but America was not ready for a woman in the White House, especially a woman of color.', 'created': '2024-11-06 09:57:09', 'submission_id': '1gksn3l'}
{'comment': 'Terrible border policy, inflation, a war in Europe, a war in the Middle East. There’s a lot of factors explaining why she lost before her gender and skin color even come in play', 'created': '2024-11-06 08:09:06', 'submission_id': '1gksn3l'}
{'comment': 'There’s a lot more to it than that, but it’s definitely a huge contributing factor.', 'created': '2024-11-06 09:47:25', 'submission_id': '1gksn3l'}
{'comment': 'This is unironically a large part of it.', 'created': '2024-11-06 16:14:50', 'submission_id': '1gksn3l'}
{'comment': "Isn't she half Indian?", 'created': '2024-11-06 08:51:49', 'submission_id': '1gksn3l'}
{'comment': 'Indian woman', 'created': '2024-11-06 08:15:20', 'submission_id': '1gksn3l'}
{'comment': 'Obama literally won twice idiot.', 'created': '2024-11-06 08:11:13', 'submission_id': '1gksn3l'}
{'comment': 'Gavin Newsom, is the best governor we’ve ever had by far. Maybe he can help us out on the other side of this mess.', 'created': '2024-11-06 08:35:33', 'submission_id': '1gksn3l'}
{'comment': 'Thank you.', 'created': '2024-11-06 10:18:08', 'submission_id': '1gksn3l'}
{'comment': 'This mindset is a huge, huge part of democrats problem.', 'created': '2024-11-06 15:09:52', 'submission_id': '1gksn3l'}
{'comment': 'She’s not qualified. Simple', 'created': '2024-11-06 08:05:52', 'submission_id': '1gksn3l'}
{'comment': 'So? Every other person who’s ever lost an election?', 'created': '2024-11-06 08:12:46', 'submission_id': '1gksn3l'}
{'comment': 'Haha what a stupid take. This way of thinking is exactly why you will continue to lose.', 'created': '2024-11-06 08:15:27', 'submission_id': '1gksn3l'}
{'comment': 'If that’s the takeaway then Democrats will just keep losing more elections.', 'created': '2024-11-06 08:26:36', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 08:06:32', 'submission_id': '1gksn3l'}
{'comment': 'Lol not one ounce of self-reflection.', 'created': '2024-11-06 08:11:50', 'submission_id': '1gksn3l'}
{'comment': 'She isnt that sharp and bright. Watch any long unedited interview with her. Trainwrecks.', 'created': '2024-11-06 08:31:12', 'submission_id': '1gksn3l'}
{'comment': "America collectively seems to hate women. And now they'll really show it. \n\nWe are so fucked.", 'created': '2024-11-06 08:53:46', 'submission_id': '1gksn3l'}
{'comment': "You seriously think Biden does better?\xa0 It's a media and messaging issue.\xa0 The right controls the narratives.", 'created': '2024-11-06 12:33:04', 'submission_id': '1gksn3l'}
{'comment': 'That and neglecting the hispanic vote', 'created': '2024-11-06 08:15:25', 'submission_id': '1gksn3l'}
{'comment': None, 'created': '2024-11-06 08:09:54', 'submission_id': '1gksn3l'}
{'comment': 'This is it and this is a crazy turn of history over the last 20-30 years (maybe more.) These pockets of Americana used to be very democrat, because democrats took care of these people through social services and social programs. Now, even though those things still happen, these pockets are very much strongholds for Trump and Republicanism, which is wild to think about. Just look at how the Deep South voted and then drive through rural South Georgia - Alabama - Mississippi, etc.', 'created': '2024-11-06 14:55:01', 'submission_id': '1gksn3l'}
{'comment': 'democrats used to be the party of the working class and that no longer feels true.', 'created': '2024-11-06 08:15:47', 'submission_id': '1gksn3l'}
{'comment': 'The Shapiro choice was devastating. Walz was an awful choice that was one of the final nails.', 'created': '2024-11-06 08:37:10', 'submission_id': '1gksn3l'}
{'comment': 'Just looking through this post dems did not learn that lesson and will continue to blame them for all their problems', 'created': '2024-11-06 15:11:56', 'submission_id': '1gksn3l'}
{'comment': 'Your last paragraph is a summary in my morning after headspace and perhaps in the minds of millions today. My wife and I have often talked about the GOP long game, primarily making a dumber electorate. This is sadly it.', 'created': '2024-11-06 14:14:40', 'submission_id': '1gksn3l'}
{'comment': 'Except “ideal inflation” is an ivory tower concept, even if in actual economics it’s true, and it does nothing for the folks who are spending more at the grocery store and elsewhere week by week. That is far from “ideal inflation” to people who neither understand macroeconomics nor care to start. We can criticize them for that all we want, but that will change nothing.', 'created': '2024-11-06 16:26:42', 'submission_id': '1gksn3l'}
{'comment': 'Yeah they think he has one button for inflation and one for gas prices.', 'created': '2024-11-06 22:11:41', 'submission_id': '1gksn3l'}
{'comment': "Considering how many black men seemed to have voted against her, I am not sure it was the 'black' as much as it was the 'woman.'", 'created': '2024-11-06 08:08:53', 'submission_id': '1gksn3l'}
{'comment': "no... even if you subbed in Adam Schiff for her, he still would have lost to the cult of the Donald. Trump is probably the greatest political figure since Lincoln in the way he's captivated & ensnared the majority of our electorate. He really is historic, like Pinochet, Castro, Mussolini. He preys on people's fears & he has a rightwing multimedia empire that backs him up & promulgates his message.", 'created': '2024-11-06 08:56:09', 'submission_id': '1gksn3l'}
{'comment': 'Definitely. Look at the votes from before and her results. She underperformed in places where Biden had won.', 'created': '2024-11-06 10:20:08', 'submission_id': '1gksn3l'}
{'comment': "I'm with you.", 'created': '2024-11-06 08:16:23', 'submission_id': '1gksn3l'}
{'comment': 'That’s the easy answer which puts all the responsibility on someone else (the system in this case).\xa0\n\nThe real answer is Dems don’t have a solid platform to offer for the majority of the country. They don’t even have a charismatic leader to sell the platform. Those two factors are the real reason.', 'created': '2024-11-06 08:12:14', 'submission_id': '1gksn3l'}
{'comment': 'How are you “convinced” when your argument has no logic to it? So every other person who has ran and lost and election and was white? Obama???? Biden was similar results so??', 'created': '2024-11-06 08:14:04', 'submission_id': '1gksn3l'}
{'comment': 'A black man did it…TWICE. She had no chance after inheriting Biden’s reputation.', 'created': '2024-11-06 08:16:02', 'submission_id': '1gksn3l'}
{'comment': 'This is stupid. Obama won twice and black men Voted against her. Kamala just sucks.', 'created': '2024-11-06 08:20:55', 'submission_id': '1gksn3l'}
{'comment': 'No, the dems are just incapable of accountability. It’s not race. She has been disliked for years. The dems didn’t even like her. Dems pissed on Americans for 4 years and said it was raining and then immediately tossed Biden to the side and installed a remarkably disliked candidate. They showed their hand and people saw it for what it was.', 'created': '2024-11-06 08:08:14', 'submission_id': '1gksn3l'}
{'comment': 'The thing is, the “immunity” is basically ruled on by the SC on a case by case basis. So they would have never ruled in Biden’s favor. They are going to be allowing Trump to do whatever he wants though.\n\nThat being said, it’s 11/6. Inauguration Day is 1/20. Maybe Biden will try anyways.', 'created': '2024-11-06 15:51:59', 'submission_id': '1gksn3l'}
{'comment': 'It sucks so bad', 'created': '2024-11-06 13:53:55', 'submission_id': '1gksn3l'}
{'comment': 'Which is bananas. I don’t know if they know this but…these Hispanic might be in the leopards ate my face party now.', 'created': '2024-11-06 18:39:58', 'submission_id': '1gksn3l'}
{'comment': "Hindsight being what it is, I think it was also naive to assume Harris would wildly outperform her disastrously low approval ratings prior to becoming the nominee. Sure, she improved those by a lot, but for years people did not like her and maybe it was impossible to overcome that, especially when she didn't win the primary and was appointed instead.", 'created': '2024-11-06 08:43:47', 'submission_id': '1gksn3l'}
{'comment': 'i remember thinking that at the time, but was pleasantly surprised at how quickly Dems fell behind her, and how good her campaigning seemed. In retrospect, should have realized my first instinct was correct.', 'created': '2024-11-06 17:04:55', 'submission_id': '1gksn3l'}
{'comment': 'Far leaning politicians with a bogus and fraudulent personality with weak stances on important subjects ALWAYS lose.', 'created': '2024-11-06 08:25:00', 'submission_id': '1gksn3l'}
{'comment': 'At the time I felt like they should have taken the time to hold a quick primary to let a handful of candidates put their names forward. Test them out over a month and then run the selection at the DNC.', 'created': '2024-11-06 10:41:51', 'submission_id': '1gksn3l'}
{'comment': 'Discounting the Economy and Immigration as factors is myopic. Misogyny played a large role (especially with abortion). However, these were numbers 2 and 3 for major reasons.\n\nYes, the economy is doing fine, for rich people. The rest of us are struggling to afford groceries.', 'created': '2024-11-06 12:14:55', 'submission_id': '1gksn3l'}
{'comment': "We missed old Republicans like Romney and McCain. These two weren't so extreme and talking more lies, they were balanced in the competition against Obama. These two were all about America not Russia.", 'created': '2024-11-06 13:05:39', 'submission_id': '1gksn3l'}
{'comment': 'There is something pretty engrained in the American voting psyche that clearly favors a rich, white male. Obama was inspirational and continues to be but being the first black President irked a racist ire that also covets misogyny at a large scale. The GOP’s long game of dumbing down and brainwashing their electorate has just come to pass. Supporters of tRump have zero interest in anything outside the US and are foolishly believing that he’ll bring about some kind of 1950s American prosperity. They won’t realize they are boiling in the same shit soup until it’s too late.', 'created': '2024-11-06 14:21:08', 'submission_id': '1gksn3l'}
{'comment': 'Believe it!', 'created': '2024-11-06 13:50:47', 'submission_id': '1gksn3l'}
{'comment': 'My wife my son and I are with you.', 'created': '2024-11-06 19:30:57', 'submission_id': '1gksn3l'}
{'comment': 'I think this is it too.', 'created': '2024-11-06 16:20:47', 'submission_id': '1gksn3l'}
{'comment': 'And the Democratic Party fucking up by ignoring Biden’s declining cognition.', 'created': '2024-11-06 08:16:14', 'submission_id': '1gksn3l'}
{'comment': 'I think Vance will be President in 2027, just in time for him to start running for 2028. GOP will boot Trump just after the mid-terms.', 'created': '2024-11-06 11:46:20', 'submission_id': '1gksn3l'}
{'comment': 'I’m actually not certain that is why. I think, that for this election, for once, her gender and race had little to do with why people voted for Trump.\n\nPeople are struggling to eat and afford housing. And they are dumb enough to believe the lies that Fox News tells.', 'created': '2024-11-06 12:03:17', 'submission_id': '1gksn3l'}
{'comment': "It was always going to be difficult for her to shift the public perception of her in only a handful of months. \n\nIt was always going to be difficult to overcome the perception Americans had that inflation was Joe's fault. \n\nAnd the impossible dream that it would be somehow possible to return to 2019, before the pandemic, before the wars, before AI, before the mass layoffs. \n\nMusk & hostile propaganda didn't help either. \n\nMany Americans perceive that our current neo-liberal system - which they equated with democracy itself - has failed. They searched for an answer & settled on dictatorship. \n\nIt's a pity that we could not paint an alternate picture of a renewed democracy.", 'created': '2024-11-06 13:00:00', 'submission_id': '1gksn3l'}
{'comment': 'I think you’re right. It’s the only thing that makes sense. \n\nWho in their right mind votes for a sexual predator/criminal and one that has probably given confidential information to our enemies and cheats on his taxes ? \n\nThe only thing I can think of is misogyny and/or racism. That trumps everything, pun intended.', 'created': '2024-11-06 17:54:43', 'submission_id': '1gksn3l'}
{'comment': 'This mindset is so dangerous and completely false, and a huge part of democrats issue.', 'created': '2024-11-06 15:14:32', 'submission_id': '1gksn3l'}
{'comment': 'Yes don’t Hispanics get this?Some of their families are going to be ripped apart if these mass deportations come to fruition.Are they stupid?', 'created': '2024-11-06 19:40:11', 'submission_id': '1gksn3l'}
{'comment': "Did you see what trump called people and the country???? The bar is non existent to him and he can say the most vile things but she didn't ever denigrate trump voters or the country and she's rejected. \n\nThe fact of the matter is, he's a white man and that's all that matters to most of the country. No matter how vile and horrible he is nothing will over come his male whiteness.", 'created': '2024-11-06 16:05:22', 'submission_id': '1gksn3l'}
{'comment': 'Love this comment because it dissects the issues with her campaign and not “she’s a woman and America hates women”. Trump had a stance and did NOT serve up a bad economy the last 4 years.', 'created': '2024-11-06 08:23:06', 'submission_id': '1gksn3l'}
{'comment': 'There will be if someone EVER put a good female candidate up. Palin (who many believed would be the first female president since McCain’s health was poor) Hillary and Kamala and legit three of the worst ever.', 'created': '2024-11-06 08:27:34', 'submission_id': '1gksn3l'}
{'comment': 'Boomer here. I REALLY hate being lumped in with those Florida nut cases.', 'created': '2024-11-06 12:37:41', 'submission_id': '1gksn3l'}
{'comment': 'Latino here my people are a mixed bag, but are easily swayed to Misogyny and racism. I have seen it in friends and family during the two elections that had women running against Trump.', 'created': '2024-11-06 13:53:31', 'submission_id': '1gksn3l'}
{'comment': 'Exactly this!', 'created': '2024-11-06 15:48:59', 'submission_id': '1gksn3l'}
{'comment': 'I wholeheartedly agree with everything you wrote here, and I was getting disheartened scrolling through endless other comments about why this is someone else’s fault. The people who voted one way last time and differently this time, alongside the ones who voted last time not at all this time - those are the people we need to be looking at and evaluating what drive them. It is decidedly not anything as explicit as “hate for women” or “pure racism” or another similar convenient bucket we can plop them into and then justify why their opinions should not matter. If you want to win elections, their opinions matter, and the basic sentence you said of “think they are paying for everything they don’t need but someone else benefits from” is the absolutely *central* point here.', 'created': '2024-11-06 16:20:33', 'submission_id': '1gksn3l'}
{'comment': 'All the reports we’re talking about record turnout so where are all of these votes?', 'created': '2024-11-06 19:13:21', 'submission_id': '1gksn3l'}
{'comment': 'I will go with all three', 'created': '2024-11-06 17:55:42', 'submission_id': '1gksn3l'}
{'comment': 'He said he’s the only one who could beat Trump and so far…. He’s the only one who has.', 'created': '2024-11-06 12:06:53', 'submission_id': '1gksn3l'}
{'comment': "Is this a bit/troll? Biden would've lost 50 states.", 'created': '2024-11-06 08:24:24', 'submission_id': '1gksn3l'}
{'comment': 'I agree.This country I don’t even know what to say.I truly hate what we have become as a country.I guess we are going to need a total collapse to wake people up.If we could we would pack up and get out but sadly we are stuck in this racist,misogynistic,uneducated,shithole.', 'created': '2024-11-06 19:48:07', 'submission_id': '1gksn3l'}
{'comment': 'If you believe this, there is no way you’re old enough to vote.', 'created': '2024-11-06 08:25:34', 'submission_id': '1gksn3l'}
{'comment': 'People of all races voted for Trump.', 'created': '2024-11-06 08:28:07', 'submission_id': '1gksn3l'}
{'comment': 'This', 'created': '2024-11-06 15:00:46', 'submission_id': '1gksn3l'}
{'comment': 'We do understand their basic nature. \n\nMy roommate is a good guy. He voted for Trump. Why? Because he watches Fox News all day and thinks that the Democrats are annoying and wanted to see them punished. In other words, to troll Democrats. \n\nWhen your opponents make no sense, it’s very hard for a reasonable person to argue against them. When your opponents lie all the time, how can you expect the truth to matter? \n\nAll I can say is, enjoy what you voted for, idiots. I’m just bummed I have to go through it too.', 'created': '2024-11-06 16:21:18', 'submission_id': '1gksn3l'}
{'comment': 'Are Hispanic people racist?', 'created': '2024-11-06 19:11:16', 'submission_id': '1gksn3l'}
{'comment': 'That’s what I think. And Biden’s hubris in trying to hold on to a losing strategy too long.', 'created': '2024-11-06 17:36:12', 'submission_id': '1gksn3l'}
{'comment': 'I am puzzled about these voting numbers too.The reports said there was record turnout but there were far fewer votes than last time.', 'created': '2024-11-06 22:09:41', 'submission_id': '1gksn3l'}
{'comment': "> Trump isn't going to do a damn thing to help lower prices for anything. They've been sold yet another lie that Trump is here to save them.\n\n+1", 'created': '2024-11-07 00:48:08', 'submission_id': '1gksn3l'}
{'comment': 'You may want to check how African American and Hispanic males voted. Also check women too.', 'created': '2024-11-07 00:51:44', 'submission_id': '1gksn3l'}
{'comment': "I suspect that this is a huge factor. Unfortunately, we will never know, because TFG won't be interested in any investigation into the matter.", 'created': '2024-11-07 14:55:44', 'submission_id': '1gksn3l'}
{'comment': 'You actually mean Latino men and women…', 'created': '2024-11-06 08:12:29', 'submission_id': '1gksn3l'}
{'comment': 'Or, they turned up, and still voted for Trump?', 'created': '2024-11-06 08:13:01', 'submission_id': '1gksn3l'}
{'comment': 'Black men and Gen Z men in general are slowly trending right. They need to gain that demographic back, but first investigate why', 'created': '2024-11-06 08:14:37', 'submission_id': '1gksn3l'}
{'comment': 'I wouldn’t place this on them. It’s a party problem. They fucked up.', 'created': '2024-11-06 08:13:12', 'submission_id': '1gksn3l'}
{'comment': 'Yeah you’re just saying nonsense.', 'created': '2024-11-06 08:19:59', 'submission_id': '1gksn3l'}
{'comment': "Whites voted for this shit, Blacks overwhelmingly didn't.", 'created': '2024-11-06 10:30:31', 'submission_id': '1gksn3l'}
{'comment': 'They took the black vote for granted once again.\xa0\xa0', 'created': '2024-11-06 08:33:17', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 08:14:23', 'submission_id': '1gksn3l'}
{'comment': "I voted for her and I was proud to do it. Please don't lump us all together.", 'created': '2024-11-06 09:57:35', 'submission_id': '1gksn3l'}
{'comment': 'To point 3. Yes, the economy overall is doing fine. The problem is that it doesn’t feel like it is doing fine. Cost of groceries have skyrocketed, gas is high, and you can’t afford an apartment on a 40 work week.\n\nYes, the inflation crisis is global and everyone is dealing with this, but you can’t feel global suffering viscerally. Trump played on that. He suckered the suckers.', 'created': '2024-11-06 11:57:33', 'submission_id': '1gksn3l'}
{'comment': 'Maybe alienating white males was a bad idea and we are now paying for it.', 'created': '2024-11-06 10:56:02', 'submission_id': '1gksn3l'}
{'comment': "So vote back the same man that turned the economy bad in 2020? That shit doesn't make sense. Americans are fucking stupid.", 'created': '2024-11-06 10:57:37', 'submission_id': '1gksn3l'}
{'comment': "It's not about race because Barack Obama won twice, it's literally because of gender, even as senile Joe Biden had become, he still would have won a second term.", 'created': '2024-11-06 08:37:36', 'submission_id': '1gksn3l'}
{'comment': None, 'created': '2024-11-06 08:26:51', 'submission_id': '1gksn3l'}
{'comment': 'I think this is obvious now. There is something pretty engrained in the American voting psyche that clearly favors a rich, white male. Obama was inspirational and continues to be but being the first black President irked a racist ire that also covets misogyny at a large scale.', 'created': '2024-11-06 14:09:45', 'submission_id': '1gksn3l'}
{'comment': 'I think pushing of that narrative by the right was highly successful. \nMake people feels cared and threatened and they are easy to manipulate', 'created': '2024-11-06 15:53:20', 'submission_id': '1gksn3l'}
{'comment': 'Yeah the numbers don’t seem to add up do they ?', 'created': '2024-11-06 19:20:18', 'submission_id': '1gksn3l'}
{'comment': 'A conservative commentator on NBC news last night said something to this effect. \n\nHe said when he was selling books in the 80’s they were selling but when they started changing the titles in the 90’s to more “bully the libs” type titles, they flew off the shelves because the Liberal outlets picked up on it and gave them all kinds of free press and their conservative audience LOVED THE ATTENTION. \n\nSo titles like How to Upset the Liberal. Became the go to on how to sell your book instead writing about actual policy.\n\nGiving the fire oxygen is literally what we are doing. We need to shut the firedoor and let it suffocate. Monitor it through a safety window, but don’t open the door and give it oxygen.', 'created': '2024-11-06 18:34:47', 'submission_id': '1gksn3l'}
{'comment': 'Merrick Garland is the biggest pussy in America.', 'created': '2024-11-06 18:53:33', 'submission_id': '1gksn3l'}
{'comment': 'Non of them realize he’s why we’re in this position with the economy', 'created': '2024-11-06 22:17:16', 'submission_id': '1gksn3l'}
{'comment': 'Because trump cheated with h the republicans and the rich', 'created': '2024-11-06 22:18:11', 'submission_id': '1gksn3l'}
{'comment': 'Yup', 'created': '2024-11-06 08:19:28', 'submission_id': '1gksn3l'}
{'comment': 'Nah the SC rules on what falls under the immunity. You know they’d never rule in favor of Biden.', 'created': '2024-11-06 15:56:35', 'submission_id': '1gksn3l'}
{'comment': 'wow you speak like a trump cultist.', 'created': '2024-11-06 10:23:01', 'submission_id': '1gksn3l'}
{'comment': 'wow nothing you say is true at all.', 'created': '2024-11-06 10:19:33', 'submission_id': '1gksn3l'}
{'comment': 'This exactly', 'created': '2024-11-06 09:02:32', 'submission_id': '1gksn3l'}
{'comment': 'Like who?', 'created': '2024-11-06 11:47:29', 'submission_id': '1gksn3l'}
{'comment': 'She has no path to 270 without PA. The most she could get is 269.', 'created': '2024-11-06 15:55:20', 'submission_id': '1gksn3l'}
{'comment': 'Listen to yourself. How can you think you’re above the election deniers for Trump?', 'created': '2024-11-06 11:19:58', 'submission_id': '1gksn3l'}
{'comment': "That is simply foolish and sounds like you fell for the misinformation. She and Biden pushed so much liberal policy through in just a few years it made conservative heads spin. They did more than anyone thought they could, considering they don't have the House. The House writes the checks. \n\nNow, we will not see a single liberal policy get pushed through for at least 10 years. Maybe longer.", 'created': '2024-11-06 15:53:06', 'submission_id': '1gksn3l'}
{'comment': 'We were moving left. Now, we will be flying to the right.', 'created': '2024-11-06 15:54:20', 'submission_id': '1gksn3l'}
{'comment': 'If you are talking about America,I agree with you.We truly are a shithole country.', 'created': '2024-11-06 19:19:17', 'submission_id': '1gksn3l'}
{'comment': 'I honestly don’t think a woman will ever get elected for president in this shithole we call America.But but I just can’t see her sitting across from Putin der der .This is the way misogynistic idiots think', 'created': '2024-11-06 18:52:20', 'submission_id': '1gksn3l'}
{'comment': 'Because she’s a woman. The racists didn’t stop Obama so I don’t put as much emphasis on that as the fact she’s a woman.', 'created': '2024-11-06 20:35:03', 'submission_id': '1gksn3l'}
{'comment': 'aka a woman.', 'created': '2024-11-06 10:24:25', 'submission_id': '1gksn3l'}
{'comment': 'Spare me. She’s incredibly likable and ran an impeccable campaign. Her approval rating rose which is exceptional for a woman seeking high office.', 'created': '2024-11-06 14:24:23', 'submission_id': '1gksn3l'}
{'comment': "What did Pence do as VP? No VP does anything. They're the spare president.", 'created': '2024-11-06 16:37:48', 'submission_id': '1gksn3l'}
{'comment': "I think what you are saying is that Obama didn't pull from the middle, he found more niches to cobble together. I think this go around, Democrats were hoping to pull from the middle, the median voter. I wonder if the underlying fundamental message of Progressivism was the problem. Is the belief that we are a great nation and things can get better a vestigial remnant from the post-World-War-2 boom? Are the plurality of voters having a profound experience that America is broken such that Democrat messages of hope and progress seem opposite their experience? \n\nI suppose what I am wondering is: do Democrats keep the messaging the same next go around, and try to up their ground game, or does the messaging need to change?", 'created': '2024-11-06 18:33:05', 'submission_id': '1gksn3l'}
{'comment': "Meh..... Biden's campaign was lackluster at best in 2020 and beat Trump. Harris had a good campaign and lost by a landslide. America just doesn't want a women president. Harris got beat just like Hilary Clinton and she had a vastly better campaign.", 'created': '2024-11-06 08:42:54', 'submission_id': '1gksn3l'}
{'comment': 'Yeah she has, Trump has 277 electoral votes. The uncounted ballots won’t change the outcome.', 'created': '2024-11-06 12:01:12', 'submission_id': '1gksn3l'}
{'comment': 'Women’s rights are niche?', 'created': '2024-11-06 14:20:33', 'submission_id': '1gksn3l'}
{'comment': 'Literally no tho, she lost support the more right she went', 'created': '2024-11-06 20:49:17', 'submission_id': '1gksn3l'}
{'comment': 'says the nazi consrvative and nah.', 'created': '2024-11-06 10:24:58', 'submission_id': '1gksn3l'}
{'comment': 'ays the nazi.', 'created': '2024-11-06 10:27:49', 'submission_id': '1gksn3l'}
{'comment': "Fun fact: Anyone claiming to be a member of the silent majority is almost certainly not part of any ideological majority and damn sure isn't silent about it.", 'created': '2024-11-06 08:11:31', 'submission_id': '1gksn3l'}
{'comment': 'Can you explain how she was as fake?', 'created': '2024-11-06 08:19:41', 'submission_id': '1gksn3l'}
{'comment': 'If she’s fake, the same could be said about Trump.', 'created': '2024-11-06 08:21:15', 'submission_id': '1gksn3l'}
{'comment': 'This.', 'created': '2024-11-06 08:09:07', 'submission_id': '1gksn3l'}
{'comment': 'When has trump ever told the truth? That motherfucker has mocked everyone including own supporters', 'created': '2024-11-06 08:13:41', 'submission_id': '1gksn3l'}
{'comment': 'When has she ever mocked Indigenous/Native people? I’m not sure where you’re getting that from.', 'created': '2024-11-06 08:23:49', 'submission_id': '1gksn3l'}
{'comment': 'Wat?', 'created': '2024-11-06 08:48:24', 'submission_id': '1gksn3l'}
{'comment': 'I’m not sure if you’re joking or not but Trump can’t run again in 2028, American presidents can only serve two terms.', 'created': '2024-11-06 08:31:08', 'submission_id': '1gksn3l'}
{'comment': "TFG won't live that long, and the creepy couch guy will be in the white house. Don't pretend for another second that TFG isn't suffering dementia and is seriously unwell physically as well. That bloated sack of crap did his job, and now the powers that own whatever the hell his name is will call in the debts. The 25th amendment will be invoked, and then we'll all be in deep shit. \n\nNo one won tonight, except the really big money. SCOTUS handed it all over when they delivered the presidential immunity decision. It's truly a tragedy that Biden doesn't have any intention of using the powers he was given by the timing. \n\nWe voted like our lives depended on it, but it was already too late.", 'created': '2024-11-06 09:03:44', 'submission_id': '1gksn3l'}
{'comment': 'says the nazi.', 'created': '2024-11-06 10:23:40', 'submission_id': '1gksn3l'}
{'comment': 'yup, lots of people wondering why she lost hispanic, black men, independent voters when the focal points of her campaign did not appeal to these groups at all', 'created': '2024-11-06 08:27:59', 'submission_id': '1gksn3l'}
{'comment': 'says the nazi.', 'created': '2024-11-06 10:27:23', 'submission_id': '1gksn3l'}
{'comment': 'that is trump you are describing.', 'created': '2024-11-06 10:26:09', 'submission_id': '1gksn3l'}
{'comment': 'Dem brand? How about the fact that AMERICA’s brand is done? We were the laughing stock of the world and fell so far under the racist, felon and blubbering idiot, so imagine going forward how bad it’s going to get? Our allies will no longer trust us to have their back. Fuck, don’t be surprised if Trump manages to pull us from NATO, allowing his ally, PUTIn and Russia to take over Europe in order to “reclaim” what they believe is theirs. The WORLD IS FUCKED now!!', 'created': '2024-11-06 13:01:52', 'submission_id': '1gksn3l'}
{'comment': 'The Dems *had* bipartisan legislation on the border, they *did* pass bipartisan common sense gun legislation that didn’t take all guns away (the Safer Communities Act), and they relentlessly pursued bipartisanship openly and loudly throughout the election. Harris campaigned with the Cheneys, FFS. So I don’t think “veering too far to the left” was the problem. There are others saying the opposite of what you’re saying—that the attempt to be bipartisan and bend over backwards to appeal to never-trump republicans was the problem. For the record, I don’t think it was either being too far left or too right. I think it was chiefly perceptions of the economy, with ignorance and sexism as major contributing factors.', 'created': '2024-11-06 17:05:43', 'submission_id': '1gksn3l'}
{'comment': 'She lost', 'created': '2024-11-06 08:12:42', 'submission_id': '1gksn3l'}
{'comment': 'Have conceptions of a plan, appeal to bigots and say anything but the truth.', 'created': '2024-11-06 12:07:54', 'submission_id': '1gksn3l'}
{'comment': 'Trump had 1 term and what did he do?', 'created': '2024-11-06 12:08:25', 'submission_id': '1gksn3l'}
{'comment': "we were able to keep trump's facism at bay.", 'created': '2024-11-06 10:27:42', 'submission_id': '1gksn3l'}
{'comment': ' so a woman.', 'created': '2024-11-06 10:24:33', 'submission_id': '1gksn3l'}
{'comment': 'Fuck these people who basically allowed hitler in on there college brained idealism vote', 'created': '2024-11-06 13:54:32', 'submission_id': '1gksn3l'}
{'comment': 'Project 2025 is not a conspiracy theory.', 'created': '2024-11-06 12:17:43', 'submission_id': '1gksn3l'}
{'comment': 'That isn’t racism, it is antiracism. The problem is that America wants race issues to be a thing of the past, while they ignore the current racial disparities.', 'created': '2024-11-06 12:17:06', 'submission_id': '1gksn3l'}
{'comment': 'says the nazi conservative.', 'created': '2024-11-06 10:27:59', 'submission_id': '1gksn3l'}
{'comment': "But Trump isn't a real person either.", 'created': '2024-11-06 08:48:50', 'submission_id': '1gksn3l'}
{'comment': 'They saw that he was held back in 16 but what they don\'t seem to understand is that he had guardrails at that time, now he has none. He won\'t have anyone around him who isn\'t a yes man. He now has a supreme court that says he has immunity for anything he does while in office. \n\nThis term (if it ever ends) will be much worse. There won\'t be anyone to tell him he can\'t "just bomb Mexico". He learned from the first term.\n\nI hope the trump voters love the project 2025 they just voted for.', 'created': '2024-11-06 15:31:02', 'submission_id': '1gksn3l'}
{'comment': 'It’s completely emotional based. They can’t be reasoned out of it', 'created': '2024-11-06 15:21:31', 'submission_id': '1gksn3l'}
{'comment': 'Yeah they admit he’s a liar, but think it’s great', 'created': '2024-11-06 16:24:38', 'submission_id': '1gksn3l'}
{'comment': "My honest conclusion is that the majority of them are fucking idiots who don't want to learn what a pronoun is, who don't understand how government works, really don't understand economics, who think he's kind of funny, and any qualified woman in power reminds them of some bitch they knew. I almost wish it was more complicated, but I honestly don't think it is.", 'created': '2024-11-06 17:21:47', 'submission_id': '1gksn3l'}
{'comment': '"Surely, the leopard won\'t eat MY face.."', 'created': '2024-11-06 16:43:01', 'submission_id': '1gksn3l'}
{'comment': 'And if somebody gets angry enough to succeed in of—-g him, or if he has a massive stroke or something, there’s his backup man, who would be worse.', 'created': '2024-11-06 18:00:05', 'submission_id': '1gksn3l'}
{'comment': 'When someone shows you who they are, believe them the first time. - Maya Angelou', 'created': '2024-11-06 20:26:16', 'submission_id': '1gksn3l'}
{'comment': 'Another head scratcher is why they think he WILL deliver on fixing the economy but won’t deliver on deportations and jailing his enemies and having the military shoot protesters', 'created': '2024-11-06 23:18:34', 'submission_id': '1gksn3l'}
{'comment': 'Why do they vote for the liar who they don’t even believe? Because the other person is a Black woman.', 'created': '2024-11-06 19:38:58', 'submission_id': '1gksn3l'}
{'comment': 'I mean, the actual truth is that Democrats cannot understand why the extremely high performing, A+ student just lost to the charismatic class clown who promised everyone free ice cream. It’s truly not that complicated, and the worst part is how we fall right into the trap of fixating on every last ridiculous thing he says without realizing that like the class clown, he’s just saying anything for his audience to be entertained by.', 'created': '2024-11-06 21:46:32', 'submission_id': '1gksn3l'}
{'comment': 'Yep, my parents are on Soc Sec and voted for trump… they’ll be shocked. Lol', 'created': '2024-11-06 12:28:50', 'submission_id': '1gksn3l'}
{'comment': None, 'created': '2024-11-06 14:30:01', 'submission_id': '1gksn3l'}
{'comment': "They can't blame the Democrats anymore\n\nHouse is red, Senate is red, president is red", 'created': '2024-11-06 13:16:45', 'submission_id': '1gksn3l'}
{'comment': 'Im fucking on SS I hate the whole Republican Party', 'created': '2024-11-06 14:28:15', 'submission_id': '1gksn3l'}
{'comment': 'They will blame Dems and the Republicans will eat it up', 'created': '2024-11-06 13:25:35', 'submission_id': '1gksn3l'}
{'comment': "Think before you say that. There's a whole lot of us Boomers who voted Blue (and worked hard to get voters out) that will be gravely impacted by Social Security cuts as well.", 'created': '2024-11-06 12:51:41', 'submission_id': '1gksn3l'}
{'comment': "Here's the thing. In a system where people believe your lies, and you can invent problems then deal with them yourself, you actually benefit from making the situations worse. Because the worse the situation, the easier it is to paint the scapegoat as a minority group you don't like. It's fascism 101. They don't have to govern. Inflation gets worse? Its those pesky Dems messing with the prices on purpose. Social Security Checks drying up? Blame this expensive war in Ukraine.", 'created': '2024-11-06 15:18:09', 'submission_id': '1gksn3l'}
{'comment': 'People seem to have short term memory from 2016 where all the shit when down.', 'created': '2024-11-06 14:10:51', 'submission_id': '1gksn3l'}
{'comment': 'I’m paralyzed from the chest down with 2 toddlers. I waited 2 years for my social security to be approved, and now it’s going to be gutted. I’m devastated.', 'created': '2024-11-06 15:52:36', 'submission_id': '1gksn3l'}
{'comment': "They'll probably make it expire in 2029 like the tax cuts of 2017 expired in 2021. That way they can yell and say the Democrats slashed social security", 'created': '2024-11-06 14:05:52', 'submission_id': '1gksn3l'}
{'comment': 'I get SS as well as a fed retirement. My income is 100% dependent on tax payers. Of course medicare is my health care. So, soylent green?', 'created': '2024-11-06 12:45:00', 'submission_id': '1gksn3l'}
{'comment': 'Even if they don’t slash Social Security, they will find it hard to process them once they fire all the federal workers.', 'created': '2024-11-06 14:27:39', 'submission_id': '1gksn3l'}
{'comment': 'They’re just going to blame Democrats. You know how we’ve been saying that Trump’s economy is happening under Biden’s admin? They’ll just say that Trump’s second-admin effects are because of Biden.', 'created': '2024-11-06 15:17:33', 'submission_id': '1gksn3l'}
{'comment': 'An awful lot of Democrats are on Social Security, too. It’s unlikely to fail soon, but it will need to be fixed in the next ten years and this will probably move that deadline up.', 'created': '2024-11-06 13:27:46', 'submission_id': '1gksn3l'}
{'comment': 'I discussed this with my dad. He said "They will phase it out, so it won\'t just drop for me. It will just start getting dropped as the years go on."\n\nSo he isn\'t worried about it. Also he retired with 3 million in retirement funds plus a pension, so he isn\'t worried no matter what. He won at life, good luck everyone else.', 'created': '2024-11-06 16:32:17', 'submission_id': '1gksn3l'}
{'comment': 'Well, that’s a death sentence for me. So… I was a union construction worker.. until my hips n back went out… I’m disabled now and only receive social security…. Homelessness and fighting with social security caused me to be too late filing for my union disability benefits.. so I only get social security… I am lucky enough to rent a room with my son and his mom in an extra room… if he cuts social security…. The year I’m supposed to get hip replacement… I refuse to live off others, I worked 20 years for my social security, god damn it n I need it until I can walk again, and I’ll need it again when I’m 65!!', 'created': '2024-11-06 18:46:39', 'submission_id': '1gksn3l'}
{'comment': 'I’m on Social Security and it was obvious to me that Trump is going to destroy it faster and Congress will co nothing to save it.I just can’t I don’t even know what to say.I hope he does everything he said he wants to do.Set up giant concentration camps and rip Hispanic families apart,gigantic tariffs to make everything more expensive,mass deportations so that a pound of bacon is 15 bucks and a head of lettuce is 5 bucks.Get rid of Pell grants so the middle class can’t afford college,I hope he does it all.', 'created': '2024-11-06 18:48:00', 'submission_id': '1gksn3l'}
{'comment': 'So then they will be like we fucked up', 'created': '2024-11-06 20:58:29', 'submission_id': '1gksn3l'}
{'comment': 'Whoa there buddy. Thats my only income. I whole heartedly voted for Kamala. If it only applied to trumpets ss income I’d whole heartedly agree with you. Plus my husband has stage 4 cancer and if anything happens to our Medicare we’re screwed.', 'created': '2024-11-06 22:33:59', 'submission_id': '1gksn3l'}
{'comment': 'Yes, but I’m 71 & on SS (was a teacher) voted democrat my whole life 😩 & supported the H/W campaign as best I could..but I’m also being punished bc these morons have effed me over too. So please don’t start wishing they slash SS 😭', 'created': '2024-11-07 00:53:12', 'submission_id': '1gksn3l'}
{'comment': "Yep. Dems need to give Trump everything he wants. He has the mandate, let's hand him the keys and watch him drive us into the ditch. It's the only way to wake people up to the reality they are voting for.", 'created': '2024-11-07 01:25:58', 'submission_id': '1gksn3l'}
{'comment': 'Have family members who voted for him and rooting for that to happen very soon', 'created': '2024-11-06 22:10:28', 'submission_id': '1gksn3l'}
{'comment': "I mean, I get what you're saying. But I'm a GenX liberal a few years from retirement. I don't need to be taught a lesson - I need to reap the benefits of a system I have been supporting for over 50 years.", 'created': '2024-11-06 16:31:04', 'submission_id': '1gksn3l'}
{'comment': 'I think they will slash it for young people', 'created': '2024-11-06 14:18:21', 'submission_id': '1gksn3l'}
{'comment': 'The municipal buses need fuel.', 'created': '2024-11-06 15:01:03', 'submission_id': '1gksn3l'}
{'comment': "I'm on SS and I voted blue all the way. So thanks for putting both sides against me.", 'created': '2024-11-06 21:52:31', 'submission_id': '1gksn3l'}
{'comment': "Go take a flying leap. I voted Harris, I volunteered endlessly for her, and I live on Social Security. \n\nAttacking people who are on your side doesn't help.", 'created': '2024-11-06 16:57:47', 'submission_id': '1gksn3l'}
{'comment': 'My family has good through insurance through my dad’s job, so I say bring it on! Let Trump voters face the consequences of their own actions (although my dad will retire soon so I hope things will be okay by then)', 'created': '2024-11-06 14:21:59', 'submission_id': '1gksn3l'}
{'comment': 'They aren’t boomers on social security. They are younger men and women who are garbage.', 'created': '2024-11-06 14:31:22', 'submission_id': '1gksn3l'}
{'comment': 'I think you need to get off of the Internet for the day.', 'created': '2024-11-06 17:11:30', 'submission_id': '1gksn3l'}
{'comment': 'If our goal is to leave a better world for our children this moment has truly and utterly failed them.', 'created': '2024-11-06 16:18:34', 'submission_id': '1gksn3l'}
{'comment': 'Turnout. Looks like Trump got about the same number of votes, but 10-15 million typically Democratic voters didn’t show up.', 'created': '2024-11-06 15:13:42', 'submission_id': '1gksn3l'}
{'comment': 'And we can put "Look was civility got us." In big bright light up gold letters on the Trump White House and Casino.', 'created': '2024-11-06 15:41:04', 'submission_id': '1gksn3l'}
{'comment': 'And then it will be immigrants fault, or the dems fault, or all these pesky labor and safety laws…', 'created': '2024-11-07 14:43:49', 'submission_id': '1gksn3l'}
{'comment': 'Or they’ll double down on Nationalism. Because of the popular vote win, every criticism will be seen as a slight to not loving the country, and pretty soon, mandatory maga hats.', 'created': '2024-11-07 14:42:54', 'submission_id': '1gksn3l'}
{'comment': 'I love this if we weren’t currently also riding passenger in that same speeding bus.', 'created': '2024-11-07 14:41:48', 'submission_id': '1gksn3l'}
{'comment': 'Even more shocked when the draft is re-instated and you find yourself on a C30 on your way to some third world country that is the enemy of the day.', 'created': '2024-11-07 14:39:33', 'submission_id': '1gksn3l'}
{'comment': 'Blame how democrats left it. Blame the democrats when they hit their shins on the obscured coffee table of managing the worlds largest beurocracy.', 'created': '2024-11-07 14:36:07', 'submission_id': '1gksn3l'}
{'comment': 'I’m gonna tell you right now, you don’t want to be on any sort of list. Fascists love lists.', 'created': '2024-11-07 14:46:30', 'submission_id': '1gksn3l'}
{'comment': 'It speaks to a mental state of mind that allowed R voters to justify this decision. Like my conservative boomer parents who have been telling me to calm down. I’d say mental gymnastics is what is definitely contributing to her loss.', 'created': '2024-11-07 14:34:25', 'submission_id': '1gksn3l'}
{'comment': 'I think it will be Gavin Newsom', 'created': '2024-11-06 23:14:51', 'submission_id': '1gksn3l'}
{'comment': 'If we know anything about Trump he’s motivated by two things, bolstering his own ego and spite. And Trump is about to revenge fuck the United States Government.', 'created': '2024-11-07 14:32:15', 'submission_id': '1gksn3l'}
{'comment': 'Yup, when you dial into everything is fake, then you just substitute your own reality and plow forward. I mean if you honestly believe that Trump is legit, that he actually won the 2020 election and that it was stolen and that democracy is under threat then it would be reasonable taking that at face value to be outraged and rally. If only any of that were true.', 'created': '2024-11-07 14:30:22', 'submission_id': '1gksn3l'}
{'comment': 'Its about what makes them feel good and jives with their world view. Which is a fantastic quality to have as a politician, because you can say anything and if you say enough you’ll just gain people who want to hear what they want to hear.', 'created': '2024-11-07 14:27:05', 'submission_id': '1gksn3l'}
{'comment': 'Yeah but Trump raised taxes for middle class and cut taxes for wealthy so how did they miss that when he was in office last time?', 'created': '2024-11-06 23:16:37', 'submission_id': '1gksn3l'}
{'comment': "I agree with you. HE'll do probably less than last time. The cronies he appoints however... they represent 250 different hyper-conservative organizations who all see this as an opportunity to re-make US policy in their image. I hope you love Jesus, because this shit is going to get real Bible-y real quick.", 'created': '2024-11-06 15:51:32', 'submission_id': '1gksn3l'}
{'comment': 'Because hearing everything is going well, even when its bullshit, is better than hearing about the actual problems and how to fix it.', 'created': '2024-11-07 14:40:56', 'submission_id': '1gksn3l'}
{'comment': 'Inflation happened. When the chips are up people are more open to change. When not their world view goes right down to the monthly budget. \n\nWhat’s frustrating about this is that a huge majority of the country think the guy who bankrupted a CASINO is the one to fix it.', 'created': '2024-11-07 14:37:37', 'submission_id': '1gksn3l'}
{'comment': 'Yep - look what happened when Biden said something sideways earlier this month (how is it only November 6th?) anyway he had to apologize like it was a huge deal.\n\nMeanwhile trump says something fucked up EVERY HOUR, fellates a mic, rapes a woman, rigs an election, catches a felony, NEVER FUCKING APOLOGIZES for anything. \n\nWhy are we so polite?', 'created': '2024-11-06 15:21:47', 'submission_id': '1gksn3l'}
{'comment': "EXACTLY. We've never been on a level playing field. And we won't ever be.", 'created': '2024-11-06 12:58:07', 'submission_id': '1gksn3l'}
{'comment': "Yep. Look at the Biden gaffe about Trump's supporters are garbage for example. Trump would have it be an issue for a bit and then all of a sudden it isn't because he did something else or the news cycle changed.", 'created': '2024-11-06 14:03:38', 'submission_id': '1gksn3l'}
{'comment': "It's a standard that we set for ourselves. The question is if the old norm is now lost.", 'created': '2024-11-06 13:38:48', 'submission_id': '1gksn3l'}
{'comment': "She was also blamed from trump's policies. The add they placed 30+ thousand times about trans surgeries in prisons was actually a trump policy. \n\nIn the end, I don't think it had to do with policies or plans, it was about hate, bigotry, racism, and misogyny. This country used to pretend to have morals and values, this election has shown that we have no morals or values.", 'created': '2024-11-06 15:34:46', 'submission_id': '1gksn3l'}
{'comment': 'Democracy has been dead since Trump won the first time and it was in the works way longer than that. The Democrats have won elections, but they are now solidly controlled opposition via the GOP controlled media. We’re living in a bonafide dystopia, and it has barely even begun. If you think it’s bad now, just wait until half of the remaining democrats gleefully join the fascists so they can be on the winning team. Life is about to get very fucking lonely and depressing for anyone with allegiance to truth and reason.', 'created': '2024-11-06 14:51:55', 'submission_id': '1gksn3l'}
{'comment': 'Biden call people garbage one time and the sky falls. But Trump holding a nazi style rally with people pretty much calling her a whore and it’s all good.', 'created': '2024-11-06 16:21:20', 'submission_id': '1gksn3l'}
{'comment': 'Will be interesting to see how they make it our fault when the gop controls all branches of government. \n\nSeems like a stretch, but I’m sure the media will find a way.', 'created': '2024-11-06 16:35:44', 'submission_id': '1gksn3l'}
{'comment': "It's propaganda, propaganda won the election by sane-washing Trump and blaming Democrats for everything.", 'created': '2024-11-06 16:42:47', 'submission_id': '1gksn3l'}
{'comment': 'Exactly, people had this high standards for the democratic candidate but keep making excuses for everything Trump does and says, and the news media is highly guilty of doing it. It’s a big issue because it not only reinforces misinformation, but it also creates apathy among possible democratic voters.', 'created': '2024-11-06 16:43:04', 'submission_id': '1gksn3l'}
{'comment': 'This is what bothers me the most about all this.', 'created': '2024-11-06 15:47:06', 'submission_id': '1gksn3l'}
{'comment': 'It is the Obama tan suit thing all over again.', 'created': '2024-11-06 19:59:39', 'submission_id': '1gksn3l'}
{'comment': 'YES YES YES!!!!', 'created': '2024-11-06 22:37:34', 'submission_id': '1gksn3l'}
{'comment': 'This is what\'s unfair to me. We\'ll be accused of being sore losers, but the hard truth is the game is just so rigged. Trump can literally do whatever he wants; convicted felon that has openly had mental breakdowns during debates? It truly doesn\'t matter, he\'s just a meme that so many Americans have latched onto and there is no critical thinking or even hesitation behind it. It\'s literally just "I wish I was rich, and he\'s rich, so maybe if I vote for him I too will be rich and I can openly admit that I hate Mexicans."\n\nI really worry that this is only the beginning. Trump has multiple children that are involved in his presidency. What if the Trump brand just continues in 2028?', 'created': '2024-11-07 00:39:47', 'submission_id': '1gksn3l'}
{'comment': 'Literally this. Kamala was taking a calculus exam and being scrutinized for not showing her work enough. Trump was taking a "which shape goes here" test in which he was smacking the shit out of everything with a hammer to make it fit and the media was focusing on Kamala\'s details to her answers.', 'created': '2024-11-07 00:44:16', 'submission_id': '1gksn3l'}
{'comment': 'But that’s the media pushing that narrative.', 'created': '2024-11-06 14:50:00', 'submission_id': '1gksn3l'}
{'comment': "Part of the reason for this is that Republicans have created a media environment for themselves. Fox News, popular podcasts and YouTube channels, etc. The Dems haven't made any concerted effort to match that.", 'created': '2024-11-06 20:01:11', 'submission_id': '1gksn3l'}
{'comment': 'aka murcs law', 'created': '2024-11-06 13:32:52', 'submission_id': '1gksn3l'}
{'comment': 'This is as frustrating as it is accurate.', 'created': '2024-11-06 13:40:08', 'submission_id': '1gksn3l'}
{'comment': 'Twitter isn’t the powerhouse behind this, far more people get their information from TikTok.', 'created': '2024-11-06 13:04:34', 'submission_id': '1gksn3l'}
{'comment': "You could even argue your Rush Limbaughs and your Newt Gingrichs' started it before Fox News did.", 'created': '2024-11-06 17:38:48', 'submission_id': '1gksn3l'}
{'comment': '🍽️ the 💰', 'created': '2024-11-06 22:41:03', 'submission_id': '1gksn3l'}
{'comment': 'The problem is, white people are the majority (and it’s worth noting a lot of Latinos are, and consider themselves, white). Funny thing is, progressives are overwhelmingly white. Sorting by racial identity has been a disaster for liberals, people need to face that and find a new way to oppose racism without judging everyone by the color of their skin. \n\nRegarding Biden being an old white man—“old” was not a positive, it was in fact something that turned out to be quite negative, in particular the need to hide from the press the fact that he was getting older and showing signs of physical deterioration. Months of claiming he was in fine shape followed by a disastrous outing that proved beyond doubt that he was not, cemented the idea in the public mind that Democrats were liars, just as dishonest as Trump if not more so. \n\nUltimately this is all about people no longer trusting government or mainstream media. That in and of itself explains everything, including why the criminal convictions didn’t matter (because if you can’t believe government or the media, why would you believe what they said about Trump committing crimes?)', 'created': '2024-11-06 13:23:15', 'submission_id': '1gksn3l'}
{'comment': 'Disagree. Racial animosity doesn’t explain Trump’s gains with Black and Latino voters. \n\nHe had simple messages about crime, prices, taxes, and immigration for low information voters of all races and they came to the polls in droves.', 'created': '2024-11-06 13:55:32', 'submission_id': '1gksn3l'}
{'comment': 'He got about the same number of votes as in 2020. Dems didn’t show up', 'created': '2024-11-06 15:42:05', 'submission_id': '1gksn3l'}
{'comment': 'I think Walz could have pulled it off pretty easily. We can win on most policies. We just unfortunately live in a country that has a really, really hard time electing someone who isn’t white and male.', 'created': '2024-11-06 13:47:16', 'submission_id': '1gksn3l'}
{'comment': 'I’d agree but Obama did win two terms; plenty of white men like myself voted for him. Many, like myself also voted for Harris but not enough I guess. As I understand it, more black men voted for Trump this time than 2020, so there’s probably some sexism there too.', 'created': '2024-11-06 13:56:52', 'submission_id': '1gksn3l'}
{'comment': 'As a white man, I voted for Harris because I don’t hate everyone else and I love strong women. She was compassionate, sincere, and displayed a level of intelligence which has been missing in the White House for almost a decade. Not all of us white men can be thrown into a bucket.', 'created': '2024-11-06 15:46:06', 'submission_id': '1gksn3l'}
{'comment': "Blacks and Hispanics swung hard for Trump after backing Biden in 2020. That's what caused this election to tip for Trump. You need a new narrative because it wasn't just white people this time.", 'created': '2024-11-06 15:45:40', 'submission_id': '1gksn3l'}
{'comment': '"white people hate everyone else" is an ignorant take, this is hurting us. \n\nHispanics and black men voted for trump in huge numbers. \n\nLet\'s start by stop calling half of the country racist', 'created': '2024-11-06 20:25:08', 'submission_id': '1gksn3l'}
{'comment': ">Trump won the popular vote\n\nAmerica just showed the world its true face -- it's not pretty.", 'created': '2024-11-06 15:01:07', 'submission_id': '1gksn3l'}
{'comment': 'It seems to me that approaching every issue through the lens of race is a huge turnoff for the majority of the electorate.\n\nIf we want to tackle major social issues we have to address them from a socio-economic perspective. Elevating the poor will elevate minorities without completely alienating the white working class.', 'created': '2024-11-06 14:59:40', 'submission_id': '1gksn3l'}
{'comment': "An alternative take on this is: America is a flawed democracy, founded on high principles with feet of clay. We had slavery when we were founded, and women couldn't vote. We did get a little better, but what we mostly did was get good at looking better, and convincing ourselves that we changed more than we had.\n\nThat made Obama one of the best and worst presidents we had. Oh look, an erudite and well-spoken, and sane, *black man* in the White House. Maybe not progressive enough for me, but I loved him as President and with Biden at his side. But, oh, the backlash...that's the worst part. The systemic racism of the US led people to rise up and make sure that would not happen again. And, vilify the party who put him there, too.\n\nAnd it's worse now that we're more polarized. Look at Japan where (and I need to read up on more of this) a change of party leadership is earthshattering, in a country with a fairly homogenous culture and a collectivist mindset. But Americans are diverse, and mainly individualistic, and a lot of us are fine if we get ours, and to hell with everybody else. Here, politics is a war, and we flip flop on party and policy every chance we can get.\n\nWe've got one side that likes to use reason, and one side that wants to win at any cost, damn the laws, damn principles, full speed ahead to victory and power.\n\nI'm too hurt and numb to come up with any ideas.\n\nProbably the most rational is to dissolve the Union. I don't know.", 'created': '2024-11-06 17:18:11', 'submission_id': '1gksn3l'}
{'comment': 'I hate to say it and hindsight is 20/20 but Biden should have stayed in just to eke out that victory to give us a chance and not another term for Trump', 'created': '2024-11-06 17:44:31', 'submission_id': '1gksn3l'}
{'comment': 'https://preview.redd.it/fqzppkitbbzd1.jpeg?width=1170&format=pjpg&auto=webp&s=5a354a0c1f41fd8db5324cda71c71118eb7744d6\n\nNailed it.', 'created': '2024-11-06 18:03:18', 'submission_id': '1gksn3l'}
{'comment': "You lost because of *how* you stand for it, much more than what you stand for or the relative lack of definition of *what* that even means anymore, outside the culture war issues that framed so much of the last few years, and the depth of online content echoing that which many voters absorb, especially younger people who are already less likely to vote, but who are always online. \n\nAscribing the cause of this result to the woes of racism, sexism and misogyny, while all of those play some part, is missing so many additional deeper causes that the Democratic party/populace appears very unwilling or even unable to look at and reason with. If you think these polls tell you white people hate everyone else then you're missing very much more resonant beats. I don't know how much scope there is for real introspection here, but the last few years suggest not much.", 'created': '2024-11-06 22:42:45', 'submission_id': '1gksn3l'}
{'comment': 'And yet, GOP made inroads across almost every demographic.', 'created': '2024-11-06 22:44:14', 'submission_id': '1gksn3l'}
{'comment': 'This first paragraph is a great example of a position that will not win the next election.', 'created': '2024-11-06 15:22:05', 'submission_id': '1gksn3l'}
{'comment': 'We are still acting as if we’ll have chances to mitigate this and future elections or turn it around. I think it’s over. Over. I believe the American experiment is over.', 'created': '2024-11-06 12:53:39', 'submission_id': '1gksn3l'}
{'comment': "There won't even be an election and nobody will care.", 'created': '2024-11-06 12:32:58', 'submission_id': '1gksn3l'}
{'comment': 'Republicans have the same problem Democrats did during Obama: Without a superstar on the top of the ticket, the low propensity voters stay home. \n\n2026 should be good for the Democrats.', 'created': '2024-11-06 13:57:33', 'submission_id': '1gksn3l'}
{'comment': 'We desperately need new party leadership.', 'created': '2024-11-06 12:08:39', 'submission_id': '1gksn3l'}
{'comment': 'Bernie Sanders and Andrew Yang are two examples of not “crazy” populist Democratic candidates who were able to attract white men to their movements. Maybe pay closer attention to what’s there.', 'created': '2024-11-06 15:21:39', 'submission_id': '1gksn3l'}
{'comment': 'This guy gets it.', 'created': '2024-11-06 15:52:31', 'submission_id': '1gksn3l'}
{'comment': 'In 2016 that seemed plausible. In 2024, we need to accept the awful fact that a slim majority of Americans are shitty people.', 'created': '2024-11-06 12:58:50', 'submission_id': '1gksn3l'}
{'comment': 'I hate to say I agree, but the numbers do not add up as compared to early voting trajectory. A lot of small maneuvers in hundreds of red counties can move a needle. I hope they sue for many audits! Something really is fishy.', 'created': '2024-11-06 12:59:06', 'submission_id': '1gksn3l'}
{'comment': 'Except that now we have an autocrat who is immune from prosecution who\'s talked about mass deportations and "a night of violence" (Kristallnacht) and being "a dictator on day one." A dictator on day one will never give up power on day two.', 'created': '2024-11-06 13:00:24', 'submission_id': '1gksn3l'}
{'comment': 'Same, I would have been very bitter if he won the electoral college but lost the popular vote bc that’s unfortunately happened several times before, including in 2016. But this? This feels unfathomable, like it can’t possibly be real. I hate conspiracy theories but what the actual fuck happened?', 'created': '2024-11-06 11:56:18', 'submission_id': '1gksn3l'}
{'comment': "It's sad and sickening that half this country voted for him.", 'created': '2024-11-06 12:34:11', 'submission_id': '1gksn3l'}
{'comment': "Trump currently has fewer votes than he did in 2020. As the final votes are counted he might inch toward his 2020 total. But Harris is down about 15 million compared to Biden.\n\nIt's not that Trump gained votes. It's that there are several million Left-leaning voters who are missing for some reason.", 'created': '2024-11-06 15:26:17', 'submission_id': '1gksn3l'}
{'comment': None, 'created': '2024-11-06 13:02:49', 'submission_id': '1gksn3l'}
{'comment': ">Trump actually won the popular vote.\xa0\n\nThis is who we are as a nation. I'm so incredibly sad. I thought we were better than this.", 'created': '2024-11-06 15:07:17', 'submission_id': '1gksn3l'}
{'comment': 'Same. Perhaps Harris will eke out a popular vote victory once the last of the votes were counted. It would sure help.', 'created': '2024-11-06 13:05:37', 'submission_id': '1gksn3l'}
{'comment': "It's because 15 million Dems that voted for Biden sat at home. We can blame them as much as the Trump voters. If they had voted, it could have been a very different outcome.", 'created': '2024-11-06 16:30:12', 'submission_id': '1gksn3l'}
{'comment': 'There is no way there was not some outside interference\xa0', 'created': '2024-11-06 14:30:11', 'submission_id': '1gksn3l'}
{'comment': 'Price increases since 2022 have exceeded wage gains for a lot of people (including rent in prices), basically. People voted like this was a normal election, where people make their displeasure known by voting for the other guy. Biden was very unpopular (has been since Afghanistan withdrawal).', 'created': '2024-11-06 13:31:37', 'submission_id': '1gksn3l'}
{'comment': 'Im not believing it myself. My hi king is her being a woman didn’t help. She had a message and he is loosing it and yet he somehow fucking won, again.', 'created': '2024-11-06 14:37:32', 'submission_id': '1gksn3l'}
{'comment': 'And what’s super fucked is he won the popular vote by way less than the big numbers he put up against Biden\n\nWhich means, if Harris had even close to Biden numbers, she would have blown him out of the water with exception of like…Texas, Florida and the Deep South and northern plains', 'created': '2024-11-06 18:33:21', 'submission_id': '1gksn3l'}
{'comment': 'Cheated', 'created': '2024-11-06 12:50:05', 'submission_id': '1gksn3l'}
{'comment': 'AND he will try to prosecute his “enemies”.', 'created': '2024-11-06 12:25:07', 'submission_id': '1gksn3l'}
{'comment': 'He will once again not be held accountable for anything he has done. He is truly above the law and the people are ok with that. They chose a rapist and felon who incited an attack on our country. We have no business claiming to be a leader in the world or any morality at all. \n\nWe just doomed the Ukranians and Palestinians. My heart breaks for them, they are the real victims here.', 'created': '2024-11-06 15:41:02', 'submission_id': '1gksn3l'}
{'comment': 'Cites to back you up—\n\nHe’s prosecuting or prosecuted 1,243 people so far: https://www.justice.gov/usao-dc/capitol-breach-cases\n\nHere’s a list of sentences so far: https://www.justice.gov/usao-dc/media/1331746/dl?inline (linked in the above link too if you don’t wanna click a random link)', 'created': '2024-11-07 00:26:01', 'submission_id': '1gksn3l'}
{'comment': 'A girl can dream!', 'created': '2024-11-06 20:44:29', 'submission_id': '1gksn3l'}
{'comment': " America just stepped over a dollar to pick up a nickel. This country will soon realize all the shit they've complained and raged about will be smacking them in the face for real.", 'created': '2024-11-06 11:37:06', 'submission_id': '1gksn3l'}
{'comment': 'With Trump in control of government do you think we will ever get honest economic numbers? He will cook the books and the stats will not reflect what is actually happening.', 'created': '2024-11-06 11:10:09', 'submission_id': '1gksn3l'}
{'comment': 'And tariffs', 'created': '2024-11-06 12:37:36', 'submission_id': '1gksn3l'}
{'comment': 'Don’t worry, they’ll still blame the dems', 'created': '2024-11-06 13:30:07', 'submission_id': '1gksn3l'}
{'comment': 'This is an oligarchical administration. They won’t be deported.\n\nBut any small farm that is owned by a local corp might be harassed for hiring undocumented immigrants. Or those workers might be deported. Either way the farm gets bankrupted.\n\nThey’ll drastically reduce crossing and deny any asylum case presented. \n\nAnd then Peter Theil can buy up the struggling farms with no labor in about 2-4 years. They’ll hire out of work white folks but eventually also some migrants. The tension will rise.\n\nFolks might consider voting Democratic just in time for his buyouts to clear. But after another few years they’ll be pissed that everything in their town is different, they’re competing with migrants, and suddenly it’s the Democrats fault.', 'created': '2024-11-06 22:54:10', 'submission_id': '1gksn3l'}
{'comment': 'It’s gonna be interesting to see how Trump supporters will react when prices stay the exact same or get even higher than they have been. After saying that Trump was “better for the economy” and all that.', 'created': '2024-11-06 13:45:03', 'submission_id': '1gksn3l'}
{'comment': 'they cant think that far ahead. Or plenty of them dont live in areas with immigrants and understand this\n\njust wait for orange juice to shoot up in price', 'created': '2024-11-06 14:12:19', 'submission_id': '1gksn3l'}
{'comment': "That's okay. With the rollback of bodily autonomy, the children who will be forced to be born will be forced into work. They yearn for the mines, meat processing plants, farm fields, they will toil and slave and bleed and there will be nothing we can do about it. I'm 33, I can't wait to meet my 10 year old coworker.", 'created': '2024-11-06 14:13:24', 'submission_id': '1gksn3l'}
{'comment': "They won't correlate those two together. Remember that Trump has pushed things like tariffs being something that the other country pays.. and people believe it even if everything they say is to the contrary.\n\nPeople still think the president has something to do with gas prices.", 'created': '2024-11-06 15:41:13', 'submission_id': '1gksn3l'}
{'comment': 'And how the Dems will get the blame. My guess is "regulations"', 'created': '2024-11-06 16:44:02', 'submission_id': '1gksn3l'}
{'comment': 'large number of those people were not here 4 years ago and prices were lower then. Less demand lower prices.', 'created': '2024-11-06 20:28:00', 'submission_id': '1gksn3l'}
{'comment': 'Republicans managed to successfully blame GLOBAL inflation on like three people in the US.\n\nIronically, the ONLY person in the US even vaguely responsible for our own national inflation is the guy who won tonight, so those grocery bills are about to get massively worse.', 'created': '2024-11-06 10:21:45', 'submission_id': '1gksn3l'}
{'comment': 'Price gouging from corporations', 'created': '2024-11-06 11:13:27', 'submission_id': '1gksn3l'}
{'comment': 'It directly lines up with Trumps Saudi oil deal.', 'created': '2024-11-06 10:56:50', 'submission_id': '1gksn3l'}
{'comment': "He really was too old though. He didn't stand a chance, we all saw it.\n\nHe should have never entered the race, and that misjudgement will be his legacy, sadly.", 'created': '2024-11-06 20:43:50', 'submission_id': '1gksn3l'}
{'comment': "I still believe a mini-primary could have worked out really well, even at that late time. Apart from actually picking the best of a bunch, it would also have sucked all the oxygen in the media for weeks. The candidate would have had been well known to everyone after that, and with the explicit endorsement of the party membership to back them up.\n\nAs it turned out, Harris took charge and the party didn't. I'm not sure that's the best way for a party to win.", 'created': '2024-11-06 21:20:56', 'submission_id': '1gksn3l'}
{'comment': 'Kamala was expected to perfect and yet was nitpicked all the time. Trump gets a huge pass for saying the most egregious things any US presidential candidate has ever said. There was a lot of sexism and racism involved and if it weren’t for these two things the race would have been so much closer. We are still a very backward nation. That said any Democratic candidate probably would have lost given the perception on the economy. I think Biden saved us from a terrible recession but that seems like a theoretical and meaningless argument when people are still paying so much more than 4 years ago. Voters will always blame the incumbent and just vote for a change, hoping for the best. People are selfish - it doesn’t matter to them that more women will die and so on.', 'created': '2024-11-06 11:17:55', 'submission_id': '1gksn3l'}
{'comment': 'She performed much worse than Clinton. Something beyond just hating women.', 'created': '2024-11-06 13:20:04', 'submission_id': '1gksn3l'}
{'comment': 'because there is no logical explanation.', 'created': '2024-11-06 09:37:28', 'submission_id': '1gksn3l'}
{'comment': 'Can you explain how to address the points above?', 'created': '2024-11-06 10:10:46', 'submission_id': '1gksn3l'}
{'comment': "Even if we learn something, we'll forget by next election. People have very short memories.", 'created': '2024-11-06 15:05:42', 'submission_id': '1gksn3l'}
{'comment': 'Maybe the DNC should run a real fucking primary without tilting the scales for who they want and actually listen to the base and people voting.', 'created': '2024-11-06 19:35:31', 'submission_id': '1gksn3l'}
{'comment': 'It’s fine most republicans were hoping we would learn and choose a new candidate I thought this shit was lost when they chose trump', 'created': '2024-11-06 09:04:19', 'submission_id': '1gksn3l'}
{'comment': '"My bills are more expensive but that\'s to own the Libs! All hail King Trump, President Putin, and future hier to The MAGA States of America JD Vance!"', 'created': '2024-11-06 15:50:57', 'submission_id': '1gksn3l'}
{'comment': "You don't understand. They were told the Axe would bring forth change and use them to build something new. They just don't realize their lives are the material the axe is building with and change is a treeless waste land.", 'created': '2024-11-06 17:09:06', 'submission_id': '1gksn3l'}
{'comment': "...and why would a billionaire who's clearly (to us, anyway) only in this to enrich himself and his cronies have an incentive to prevent companies from price gouging? His friends are the ones perpetrating the gouging.\n\nIt doesn't take a Nobel economist to see this, but apparently some people can't even understand these basic concepts.", 'created': '2024-11-06 18:09:15', 'submission_id': '1gksn3l'}
{'comment': 'Yeah, solid point. It was a big issue for me, because I have two young daughters I want to protect, but the exit polls I saw had it listed a distant 3rd on voter priorities (something like 30-35% listed the economy or protecting democracy as their #1, while 10-15% listed immigration or abortion as their #1)', 'created': '2024-11-06 09:13:18', 'submission_id': '1gksn3l'}
{'comment': 'Soft disagree. Most of the pro-abortion initiatives passed.\n\nIt came down to a lack of empathy and selfishness. Some people carving out that issue (which could impact them or their daughters directly) and then saying f-it to other issues that hurt others.', 'created': '2024-11-06 11:08:58', 'submission_id': '1gksn3l'}
{'comment': 'I live in a state where abortion is protected but am very fired up about it and the impact on other women across the country. I’m not in a swing state though.', 'created': '2024-11-06 16:06:37', 'submission_id': '1gksn3l'}
{'comment': "She should've hammered home on the fact that Trump killed the most strict border bill we've had in decades. Make it clear he doesn't want to actually solve illegal immigration. Republican businessmen LOVE illegals because they can exploit them for cheap labor and not have to treat them well.", 'created': '2024-11-06 18:25:24', 'submission_id': '1gksn3l'}
{'comment': 'I saw multiple Christians in my feed celebrating this morning for this reason alone.', 'created': '2024-11-06 21:45:10', 'submission_id': '1gksn3l'}
{'comment': "I think it's more that at the end of the day people are much more selfish than they were before and they just don't care. The same goes for racism or trans-rights. Sure they'll vote on a thing to protect abortion but no one really cares about that stuff when compared to economic issues.", 'created': '2024-11-06 13:33:26', 'submission_id': '1gksn3l'}
{'comment': 'Well… I still have hope it won’t be as bad as we fear.\n\nBut that may be because hope is kind of the only thing I can have left at this point.', 'created': '2024-11-06 09:00:53', 'submission_id': '1gksn3l'}
{'comment': "Because there's too many of them not to.", 'created': '2024-11-06 15:23:43', 'submission_id': '1gksn3l'}
{'comment': 'So, let me preface this with the fact that I am a white man in my 30s. I am politically progressive (now), but grew up in a conservative family.\n\nYoung white men feel ignored. They feel like there is no help for them. In a society where it is increasingly impossible to support a family on a reasonable work week, the traditional dream of working 40 hours a week and going home to your family is gone.\n\nAnd this is what they were raised to expect their lives to look like.\n\nMost young people I know live together, because none of them can afford an apartment on their own. And they all have to work their asses off to afford the rent, even communally.\n\nEverybodies credit rating is trash, and everything is increasingly dependent on that. Even jobs are starting to check your credit rating before hiring you.\n\nAnd many people are just struggling not to become homeless.\n\n—-\n\nI am massively pro choice. I support trans rights. I am gay and support gay rights. \n\nBut these issues don’t fix the fact that people can’t feed and house themselves on a reasonable work week.\n\nNo, you shouldn’t care. MAGA is abhorrent. But, not understanding how downtrodden and defeated some men feel, despite many of those men agreeing with you on the abortion issue, is probably what cost the democrats this election.', 'created': '2024-11-06 12:32:32', 'submission_id': '1gksn3l'}
{'comment': '>I guess empathy is just too much to ask?\n\nWell… that’s the question isn’t it? Is empathy too much to ask for from them? But is it also too much to ask for from you? I fully believe that young men (and a lot of Trump voters in general) get sucked into the right because they are hurting.\n\n>Why should I ever care about men when they have demonstrated that they would rather women bleed to death in a parking lot or let a teenager die of sepsis than not be the absolute center of attention at every instance.\n\nI can never fully understand your pain and anger because I’m not a woman, but I am a father of two young daughters that I voted to try to protect yesterday, so I do feel my own level of pain and anger here.\n\nBut let’s break down your statement. I truly don’t think that any young men (well, I shouldn’t say *any* because there are always a few sickos) actually want women dying of sepsis and bleeding out of parking lots. And I don’t think it’s fair to reduce it down to wanting to be “the absolute center of attention at every instance.” I don’t think that’s a fair statement.\n\nAnd the problem with saying things like that, is that it’s demeaning and insulting, and only further confirms what outlets on the Right are saying… that the Left hates them, that it doesn’t care about their pain, that it sees them as a joke and a scapegoat. And you can argue that they’re deserving of the contempt they get, but we can all see how well that is working as a political strategy.\n\nI also think that we need to realize that there’s a typically certain amount of privilege needed to vote for someone else’s best interests. Thankfully I am surviving well enough that I can think past next week’s grocery bill. I mentioned having two daughters… If I were really struggling- working two jobs just to keep them clothed and fed, worried about where the next mortgage payment would come from- and I truly believed (erroneously, but a lot of people do believe this) that Trump would be the difference between me being able to take care of my family or not, would I have voted for Harris because it’s best for others? I honestly don’t know. Being able to vote for the greater good is something of a luxury that some people who are struggling to just survive might not be able to afford.\n\nThe bottom line is that I think we are only going to be able to pull voters back with compassion- even if they have made awful choices, and we will only push them away if we continue to show contempt.\n\nThere will always be some psychopaths out there. But I truly believe that most ugliness in humans comes from pain, suffering, or fear somewhere inside.', 'created': '2024-11-06 15:46:20', 'submission_id': '1gksn3l'}
{'comment': 'Yeah, you’re exactly right. This is exactly the kind of thing I was alluding to with my first point about the economy- people don’t care what numbers on a graph say if their financial situation feels more desperate. Thanks for adding more depth to the point.', 'created': '2024-11-06 08:53:12', 'submission_id': '1gksn3l'}
{'comment': 'But yet they think Trump will somehow make it better?!?', 'created': '2024-11-06 10:18:14', 'submission_id': '1gksn3l'}
{'comment': 'I agree. “Don’t pee on my leg and tell me it’s raining.” There have been a TON of layoffs in the white collar job market. I admit that I’m super frustrated (as a white collar worker) that this wasn’t addressed. We’re not rich enough to be “the elite.” We’re not blue collar factory or mine workers but we’re still part of the working class and the voting base, and we’re not addressed like they are. But we’re all in this boat together. \n\nThere’s something wrong when computer science majors coming out of college struggle to find jobs. When extremely talented, experienced people lose a job, through no fault of their own, and still struggle on the job market. \n\nI think the first step, which the Democrats didn’t do, is acknowledge it, address it. They think that saying nothing is best because it happened under Biden’s watch and they don’t want to even talk about it because they see it as a failure of their own admin. BUT people SEE these things. It feels gaslight-y and wrong to just overlook it. \n\nMessaging is everything. I’d rather have someone say, “look, we see this, this, and that happening. This is an unintended consequence and we’re upset that it’s happening. THIS is what we’ll do to address it and help you in the next 4 years.” Then talk about a policy to protect workers against AI. A protectionist policy against outsourcing. Run nonstop ads and speeches attacking the likes of Elon Musk for being an elite who hates workers and give *examples* of this. Dems need to make themselves a clear opposite and even if they have to have simplistic-sounding policies that are kind of fluff - oh well. It worked for Trump.', 'created': '2024-11-06 17:34:39', 'submission_id': '1gksn3l'}
{'comment': 'I think the democrats need to bring up income inequality more and address the problem instead of trying to pretend like this economy works for everyone. It seems like that issue has somehow disappeared.', 'created': '2024-11-06 10:41:02', 'submission_id': '1gksn3l'}
{'comment': 'Covid-19 was going to be a brutal aftermath to overcome. It put such a blow to all the G-20 nations and I believe not one of those Govt survived their elections after and we saw a lot of the new Govt win on a promise to make things better. Example I know well is the UK - the opposition ran on a campaign of making the country better than the previous one and already broke promises and started raising taxes across the board.', 'created': '2024-11-06 09:02:25', 'submission_id': '1gksn3l'}
{'comment': "3) I'm not sure i can agree with you here. I don't think Harris would have won even if she outlined strong immigration policies. The counterpoint is mass deportation is just an affect that we have seen with Trump in power. What better talking point to paint your opponent then when he was at the helm? I don't think Kamala was going to win from the start anyways. It's the hilary clinton episode all over again.", 'created': '2024-11-06 08:49:21', 'submission_id': '1gksn3l'}
{'comment': 'Meanwhile Trump doesn’t even form whole sentences and young men have him access to the nuclear codes', 'created': '2024-11-06 10:40:59', 'submission_id': '1gksn3l'}
{'comment': '>Sure, she surged in approval and enthusiasm, but before being appointed to the presidential nominee, her approval rating was disastrously low\n\nKey word: "appointed" to be the presidential nominee', 'created': '2024-11-06 08:55:30', 'submission_id': '1gksn3l'}
{'comment': 'Then those documented immigrants better hope the right wing is lying about their intentions.', 'created': '2024-11-06 09:41:13', 'submission_id': '1gksn3l'}
{'comment': 'Democrats literally had a border bill that Republicans tanked, and republicans get rewarded', 'created': '2024-11-06 10:12:48', 'submission_id': '1gksn3l'}
{'comment': "Perception is reality in politics. If people feel that the economy is worse, and that it's X President's fault, then it is. The voter is always right and Harris did not push back on Trump's economic message hard enough. Biden's economy was pretty good, but inflation burnt people hard and someone had to take the blame.", 'created': '2024-11-06 10:33:22', 'submission_id': '1gksn3l'}
{'comment': 'Yeah, there’s a part of me that really feels okay with the idea of having to pass a test to get a voter ID… but the rest of me knows how that would be used to discriminate, and I just can’t support something that would disenfranchise people.', 'created': '2024-11-06 16:05:31', 'submission_id': '1gksn3l'}
{'comment': 'I don’t think Kamala would have survived a real primary though. But we didn’t get to choose.', 'created': '2024-11-06 15:29:34', 'submission_id': '1gksn3l'}
{'comment': 'Imagine if Biden announced after the 2022 primaries (which Dems did great in!) that he would be retiring and he will pass the torch to the next generation. Some Obama- or Bill Clinton-like figure, someone relatively unknown, could have come out of nowhere and built the momentum. All the complaints people had with the Biden administration? The message would be “that was him, and we’re a new administration. He was instrumental in getting us past covid and Trump. Now we move forward.” \n\nTrump was in a terrible position in 2022 too. The Dem nominee could have started their poaching of Trump voters earlier on.', 'created': '2024-11-06 18:03:57', 'submission_id': '1gksn3l'}
{'comment': 'Yep… “it’s the economy, stupid,” should still be the mantra of every campaign behind closed doors.\n\nYou’re probably right- maybe I should at least acknowledge the sexism/racism. I purposely left it out for three reasons: One, I don’t know how you fix that. Two, I don’t think it was as big of an impact as others do (we lost a lot of ground with black voters, and we gained so much ground with women it offset a lot of sexism). Three- and most importantly- I think it’s really key that our narrative doesn’t become “we lost because white men are bigots,” because that’s ammunition the Right will continue to use to grow their influence in that group- especially young men. I’m not even saying you’re wrong, I just think it is playing with fire to harp on it too much, because it won’t change anyone’s mind who actually is racist or sexist, and risks alienating people who aren’t.', 'created': '2024-11-06 16:03:09', 'submission_id': '1gksn3l'}
{'comment': 'Well… I think she had an uphill battle for sure. Some of those things I listed you can’t fix in 105 days or however long she had.', 'created': '2024-11-06 08:44:20', 'submission_id': '1gksn3l'}
{'comment': 'Yeah, but we need to recognize that planning for the future is a luxury you can’t afford when your kids are hungry *now* and you’re worried about making this month’s rent.\n\nI’m not saying you are wrong- in fact you’re absolutely right- but we need to deal with the reality of the situation.', 'created': '2024-11-06 15:49:49', 'submission_id': '1gksn3l'}
{'comment': 'And nobody cares about that, because they can’t feed their families ***now***.', 'created': '2024-11-06 12:23:15', 'submission_id': '1gksn3l'}
{'comment': 'But “no change” from 2020 isn’t what Democrats were banking on. The change from 2016 is pretty stark, though. Harris gave back 11 points with black men, 5 points with black women vs Clinton in 2016. Going back further- Obama won 96% and 94% of the black vote in his two elections. I think many assumed or hoped she’d be closer to the 90% range than the ~85% she got.', 'created': '2024-11-06 16:20:22', 'submission_id': '1gksn3l'}
{'comment': 'I think it’s not really even that Harris lost the election - it’s like Biden had lost the election before she even was the actual nominee and she was thrown into an impossible situation. She fought like hell and I’m proud of her; I don’t have the resentment towards her like I do for Hillary. If there was a Democrat who had nothing to do with the Biden administration? I think we’d be having a different day.', 'created': '2024-11-06 18:06:23', 'submission_id': '1gksn3l'}
{'comment': 'I agree they did a better job of it, but some trends take a bit to reverse. And while they may not do the cringy pandering, that’s not the same as finding a way to reach young men who have grown up in the 2010s/2020s', 'created': '2024-11-06 16:27:43', 'submission_id': '1gksn3l'}
{'comment': 'Yeah, that’s fair.', 'created': '2024-11-06 16:30:21', 'submission_id': '1gksn3l'}
{'comment': 'Yes, I agree, and I’ll add to it that it’s probably good that the guys like Newsom and Shapiro didn’t get the VP nod, because of the clean break you mentioned.', 'created': '2024-11-06 16:32:11', 'submission_id': '1gksn3l'}
{'comment': 'This is what we need to focus on now. For the first time in many people’s lifetimes, soon there won’t be someone from the Clinton family or from the Obama administration in the White House. That’s incredibly significant and can’t be overstated.\n\nObama was a rockstar candidate and the modern Dem’s JFK or Reagan. He’ll go down as someone who was so incredibly popular and delivered us some big landslides. The problem wasn’t really even Obama himself, it was the people behind him. Why did he lose so many seats in the midterms? Why did Hillary and Harris do so poorly? Why was Biden’s messaging so weak? The powers that be behind the scenes did a shit job, that’s why. Let’s let anyone from that background coalition go away and not touch another election.', 'created': '2024-11-06 18:12:00', 'submission_id': '1gksn3l'}
{'comment': '>Perception is not reality. Reality is reality.\n\nWhen it comes to elections, which is what we are discussing- perception most certainly is reality. The facts- while interesting- are irrelevant.\n\n>If misinformation didn’t exist, Trump would have lost every state.\n\nBut misinformation does exist. Acting like it doesn’t is stupid and loses elections.', 'created': '2024-11-06 16:23:24', 'submission_id': '1gksn3l'}
{'comment': 'Like your rhetoric, but some of us are just done. We have been that bigger person the entire history and some of us are just tired of it. We feel like it’s time the other side step up. While companies seems to willingly scoop up more women and minorities, that does not guarantee success and promotions. The figureheads and upper management and management in general are men. A good amount of them are against women and minorities and will do what they can to make sure these demographics do not succeed.', 'created': '2024-11-07 07:00:44', 'submission_id': '1gksn3l'}
{'comment': 'Honestly I can see that and I can see how it might be offensive to men as well. My wife can vote however she wants, I’m not going to attack her over it. But I also recognize some men might.', 'created': '2024-11-06 20:22:10', 'submission_id': '1gksn3l'}
{'comment': 'Yes. I think part of Trump’s success comes because people feel like he’s speaking to them as individuals, not as a part of a group.', 'created': '2024-11-07 19:08:18', 'submission_id': '1gksn3l'}
{'comment': '“Young men are lonely”\n\nGonna get lonelier unless you assume Trump is gonna implement sexual slavery.', 'created': '2024-11-06 09:47:31', 'submission_id': '1gksn3l'}
{'comment': 'I don’t think they do necessarily. Certainly I don’t think they only started wanting to be assholes in the last 4 years, but we saw a big shift right in this election.\n\nAnd I don’t think stereotyping a group of people is the kind of post mortem we need regardless.', 'created': '2024-11-06 15:07:51', 'submission_id': '1gksn3l'}
{'comment': 'Maybe I give humans too much credit, but I just don’t believe there was that much malice involved. But I agree that there was some of that going on, and I think that goes back to my second point. Young men especially are hurting and feel ignored by the Democratic Party.', 'created': '2024-11-06 15:53:48', 'submission_id': '1gksn3l'}
{'comment': 'Please understand I’m not blaming black or Latino men. I’m blaming Democrat strategists for not understanding how to appeal to them and assuming they would get a higher vote percentage of both than they did.', 'created': '2024-11-06 22:44:59', 'submission_id': '1gksn3l'}
{'comment': 'and I am not sure how they do that. The right just blurts out nonsense talking points like a caveman yelling at lightning and American voters eat that shit up. I struggle to see how the democrats can do that and do it better without saying the same things.', 'created': '2024-11-06 16:52:56', 'submission_id': '1gksn3l'}
{'comment': 'I mean, if his tariff plan goes into place, he certainly will be doing direct damage to the price of things. Biden tried to get pieces of legislation through to help with lowering costs, but Republicans made sure it was rejected every time.', 'created': '2024-11-06 18:22:56', 'submission_id': '1gksn3l'}
{'comment': 'Which is why Trump lost last time and people have goldfish memories.', 'created': '2024-11-06 10:01:14', 'submission_id': '1gksn3l'}
{'comment': 'Very true. Perception is reality', 'created': '2024-11-06 09:16:12', 'submission_id': '1gksn3l'}
{'comment': "Worse, she didn't even get the popular vote.", 'created': '2024-11-06 08:20:49', 'submission_id': '1gksn3l'}
{'comment': '100%\n\nBut somehow worse lmao', 'created': '2024-11-06 08:15:06', 'submission_id': '1gksn3l'}
{'comment': "Hillary at least won popular vote. Harris couldn't even do that,", 'created': '2024-11-06 09:36:18', 'submission_id': '1gksn3l'}
{'comment': 'Hillary also had 20+ years of right wing media hate on her head. Perhaps Biden thought he was doing us a favor, with a stable, rational person. But the misogyny is strong in our country.', 'created': '2024-11-06 12:47:33', 'submission_id': '1gksn3l'}
{'comment': 'Hillary’s issue was she was unlikable. Kamala didn’t have that problem.', 'created': '2024-11-06 08:25:31', 'submission_id': '1gksn3l'}
{'comment': 'Could be. I never heard anything like that but it could have just been a small jab to poke fun at him', 'created': '2024-11-06 08:21:18', 'submission_id': '1gksn3l'}
{'comment': 'She wasn’t strong enough because she wasn’t talking about deportation, which a majority of Americans support', 'created': '2024-11-06 14:07:58', 'submission_id': '1gksn3l'}
{'comment': 'Well the DNC is a private business, they don’t have to have an official votes if they don’t want too.\n\nLots of states have deadlines for getting your name on the ballet, so they needed to do something quickly to make sure Harris could get in there, definitely was shitty though', 'created': '2024-11-06 09:15:37', 'submission_id': '1gksn3l'}
{'comment': 'I remember a nomination with delegates at the DNC. I might have dreamed it?', 'created': '2024-11-06 10:27:31', 'submission_id': '1gksn3l'}
{'comment': 'Kamala was elected', 'created': '2024-11-06 12:03:52', 'submission_id': '1gksn3l'}
{'comment': 'It\'s the grassroots that failed to deliver for the past four years by not shutting negative and false stories down early. "Inflation" should have just been turned into "corporate greed" and price gouging from the start. We should have been organizing pickets and boycotts of anyone who reported record profits after raising prices. \n\nCorporations got away with using inflation as an excuse and WE paid the price electorally.', 'created': '2024-11-06 08:23:07', 'submission_id': '1gksn3l'}
{'comment': 'Feel like we say this every election cycle.', 'created': '2024-11-06 12:11:59', 'submission_id': '1gksn3l'}
{'comment': 'This has been a party issue. The democrat party is so ineffective and has been for multiple years. Zero strategy.', 'created': '2024-11-06 14:27:23', 'submission_id': '1gksn3l'}
{'comment': 'Yep. \n\n2020 inflation was 1.2%\n\n2021 inflation was 4.7%\n\n2022 inflation was 8.0%\n\n2023 inflation was 4.1%\n\n2024 inflation has averaged 3.0% through September \n\nThis was coming off a nearly 15-year period of too LOW inflation (sub 3.0%) and was easily attributed to supply chain issues from the pandemic and corporate greed. \n\nWe failed to explain WHY higher interest rates were a GOOD thing (to balance saving/spending habits, adjust consumer behavior, and to give us a safety net to cut if we needed future stimulus). We SUCKED at messaging and the whole "Vibe Economy" should have never happened.', 'created': '2024-11-06 08:51:06', 'submission_id': '1gksn3l'}
{'comment': 'Yes! I think Biden will go down as one of the most productive presidents. He did a lot what he said he was going to do. Democrats let the criticism and lies be told and didn’t just present Biden’s record. \n\nAll that being said, I had a lot of hope, I thought Harris had a great campaign, and I think this comes down to hate, racism, and sexism.', 'created': '2024-11-06 12:37:46', 'submission_id': '1gksn3l'}
{'comment': 'They don’t get even play with the media.', 'created': '2024-11-06 17:40:59', 'submission_id': '1gksn3l'}
{'comment': 'I actually think the Harris campaign was shortsighted and milquetoast. We ran another "Not Trump" campaign rather than a policy-driven agenda. We need less defense and more of a New Deal/Great Society transformative message.', 'created': '2024-11-06 13:50:44', 'submission_id': '1gksn3l'}
{'comment': 'He was invisible. I love his policy achievements but he was a ghost for 4 years.', 'created': '2024-11-06 08:48:28', 'submission_id': '1gksn3l'}
{'comment': "We're a party. We need to carry the water for our politicians while they are in office--not just while they are running/campaigning.", 'created': '2024-11-06 08:20:32', 'submission_id': '1gksn3l'}
{'comment': 'Trump held rallies right through his first term too', 'created': '2024-11-06 10:37:07', 'submission_id': '1gksn3l'}
{'comment': "Good on you. We failed to educate well enough. And I am calling myself out here, too. I'm a precinct officer and a college professor who teaches about this and I obviously need to have a greater impact.", 'created': '2024-11-06 08:57:21', 'submission_id': '1gksn3l'}
{'comment': 'We would have been crushed with Biden, too, after we failed to defend him during the bulk of his term. Too many younger Dems seemed to view Biden as a "settle" in 2020 and never fought to defend him after the Afghanistan withdrawal that Trump negotiated, the vaccine mandates that saved countless lives, or the corporate price gouging that drove up prices.', 'created': '2024-11-06 14:01:01', 'submission_id': '1gksn3l'}
{'comment': 'I do think there is a sui generis factor with Trump. At the same time, we need to win these races by winning on policy. Winning ideas beat compelling people.', 'created': '2024-11-06 14:20:23', 'submission_id': '1gksn3l'}
{'comment': 'Yes, and disinformation is run rampant and brainwash is everywhere. People legit are just fucking stupid dirt.', 'created': '2024-11-07 00:32:17', 'submission_id': '1gksn3l'}
{'comment': "Disagree fully. Trump had the worst campaign of any of his other election runs. And he still won by landslide. Doesn't matter when Harris got in the race, she was always gonna lose at that point.", 'created': '2024-11-06 08:31:00', 'submission_id': '1gksn3l'}
{'comment': 'Which explains why tonight’s performance was similar to Hillary’s performance. She didn’t lose because of sexism, she lost because Biden screwed over the party and didn’t give Harris or the Democrats enough time to spin the economy which has legitimately started improving.', 'created': '2024-11-06 08:43:56', 'submission_id': '1gksn3l'}
{'comment': 'For real', 'created': '2024-11-06 08:55:35', 'submission_id': '1gksn3l'}
{'comment': "This isn't what people here want to hear but it's the truth.\xa0 We have to win back the middle class.\xa0 The mechanics.\xa0 The truck drivers.\xa0 And those issues don't resonate with them and are an on ramp to right wing radicalization.", 'created': '2024-11-06 12:26:16', 'submission_id': '1gksn3l'}
{'comment': "It's either you get a white male up there or you get another Barack Obama type guy up there to sway the votes. There's not in between Un ornately.", 'created': '2024-11-06 08:34:19', 'submission_id': '1gksn3l'}
{'comment': 'I personally hated when her campaign kept pointing to crowd sizes. Bernie had bigger rallies and Hillary trounced him in the primaries. I know they were trying to dig at Trump, but his base doesn’t care. \n\nI’m interested to see the breakdown of demographics. As it stands right now, I have little faith in Gen Z men.', 'created': '2024-11-06 10:31:03', 'submission_id': '1gksn3l'}
{'comment': 'Tell us some more about how the convicted felon is being held accountable.', 'created': '2024-11-06 10:18:01', 'submission_id': '1gksn3l'}
{'comment': 'Im sure kissing their ass will work. lol', 'created': '2024-11-06 15:08:46', 'submission_id': '1gksn3l'}
{'comment': "Republicans killed the border bill that THEY mainly wrote. Harris backed it. Biden would have signed it. It was not Biden's decision, but Trump who pressured Congress to keep immigration for an election issue. Mitch McConnell admitted it.", 'created': '2024-11-06 08:39:10', 'submission_id': '1gksn3l'}
{'comment': "A primary would've allowed the eventual nominee to establish a record of divergence on specific issues.", 'created': '2024-11-06 08:16:07', 'submission_id': '1gksn3l'}
{'comment': 'So what actuslly did she do while shes the vice president?', 'created': '2024-11-06 08:15:50', 'submission_id': '1gksn3l'}
{'comment': 'Biden followed trump’s policies. So no.', 'created': '2024-11-06 08:43:29', 'submission_id': '1gksn3l'}
{'comment': 'Na trump wasn’t nearly as hated. it might have ended like that but her early campaign was pretty standard from what I remember.', 'created': '2024-11-06 08:19:59', 'submission_id': '1gksn3l'}
{'comment': 'She ran on "I deserve this"', 'created': '2024-11-06 08:33:37', 'submission_id': '1gksn3l'}
{'comment': 'Her campaign was "Women\'s rights"', 'created': '2024-11-06 10:31:32', 'submission_id': '1gksn3l'}
{'comment': 'Ran on "We\'re Not Going Back"', 'created': '2024-11-06 08:56:58', 'submission_id': '1gksn3l'}
{'comment': 'Not about the MAGA voters. About the middle who fell for the lie. And I had success simply asking people what they think trump could have done to stop it and what he would do to reverse it, and as they sit and begin to glitch out point out that he never gives those details because there is literally nothing he could do/have done.', 'created': '2024-11-06 08:13:28', 'submission_id': '1gksn3l'}
{'comment': 'Exactly.\n\n“We didn’t message”\n\nThe people who needed to hear aren’t smart enough to understand it.', 'created': '2024-11-06 10:20:09', 'submission_id': '1gksn3l'}
{'comment': 'No they won’t - because they are as stupid as hell.', 'created': '2024-11-06 09:53:22', 'submission_id': '1gksn3l'}
{'comment': 'They don’t think that far.', 'created': '2024-11-06 09:16:35', 'submission_id': '1gksn3l'}
{'comment': 'Yup. Call me a petty and vindictive person, but when that day comes I’m rubbing a good old “I told you so!” Into every republican I can.', 'created': '2024-11-06 09:46:08', 'submission_id': '1gksn3l'}
{'comment': 'No. They will blame everything on Biden.', 'created': '2024-11-06 15:19:14', 'submission_id': '1gksn3l'}
{'comment': 'They said the same thing in 2016. LOL thats not happening.', 'created': '2024-11-06 09:38:03', 'submission_id': '1gksn3l'}
{'comment': "not its he's a nazi.", 'created': '2024-11-06 10:15:01', 'submission_id': '1gksn3l'}
{'comment': 'Thanks, I have no shame calling garbages as garbages. Keep up that edge, protected by the border.', 'created': '2024-11-06 08:15:32', 'submission_id': '1gksn3l'}
{'comment': 'Facts. That’s a two step conclusion. Our people can only understand that there should be someone to blame.', 'created': '2024-11-06 12:57:03', 'submission_id': '1gksn3l'}
{'comment': "I actually blame these candidates for running. I know it's democracy and it's their right, etc etc, but damn. They know they are just stealing votes from a viable candidate and handing them to Trump essentially.", 'created': '2024-11-06 14:50:25', 'submission_id': '1gksn3l'}
{'comment': 'Fair!! What a waste', 'created': '2024-11-06 14:07:32', 'submission_id': '1gksn3l'}
{'comment': 'yeah it can suck sometime.', 'created': '2024-11-06 10:17:14', 'submission_id': '1gksn3l'}
{'comment': 'Sorry, what do you mean by ‘in the middle’?', 'created': '2024-11-06 09:11:16', 'submission_id': '1gksn3l'}
{'comment': 'How so? By having a fantastic economy in every major metric?', 'created': '2024-11-06 08:41:51', 'submission_id': '1gksn3l'}
{'comment': 'Ignore this gatekeeper. They offer no solutions, only pointless attempt to control the narrative like a Karen at an Outback Steakhouse who wants a meal comped.', 'created': '2024-11-06 08:43:12', 'submission_id': '1gksn3l'}
{'comment': 'You’re in the wrong sub.', 'created': '2024-11-06 09:10:14', 'submission_id': '1gksn3l'}
{'comment': 'I’m not sure this democracy will survive four years of Trump. Apparently the majority of people in this country prefer something akin to fascism. We are going to become a “democracy” like Hungary, meaning an autocracy.', 'created': '2024-11-06 11:20:29', 'submission_id': '1gksn3l'}
{'comment': "What next time? At this point, I'm wondering what the states can do to make sure there is one.", 'created': '2024-11-06 08:25:48', 'submission_id': '1gksn3l'}
{'comment': 'You think the people that made this happen care about facts.', 'created': '2024-11-06 08:18:48', 'submission_id': '1gksn3l'}
{'comment': "it doesn't matter they're still gonna do the same shit they've done the last 3 elections and run whoever the party elites want regardless of if it's smart or not.", 'created': '2024-11-06 14:30:14', 'submission_id': '1gksn3l'}
{'comment': 'LOL didnt yall say that in 2016 too?', 'created': '2024-11-06 08:34:37', 'submission_id': '1gksn3l'}
{'comment': 'Did you see Kamala is for they them ads I also think that even a long number of independents are homophobic and she is seen as a woman of color who is pro gay and pro abortion basically as anti white national Christian as you can get', 'created': '2024-11-06 08:10:44', 'submission_id': '1gksn3l'}
{'comment': 'had nothing to do with her gender or race. Obama won 2008', 'created': '2024-11-06 08:34:41', 'submission_id': '1gksn3l'}
{'comment': 'Male American hate woman', 'created': '2024-11-06 08:26:30', 'submission_id': '1gksn3l'}
{'comment': 'honestly i think she may have if she did a good campaign and had charisma like Barack.', 'created': '2024-11-06 08:52:19', 'submission_id': '1gksn3l'}
{'comment': "i'm hispanic and a lot of hispanic people are racist against black people.", 'created': '2024-11-06 08:23:34', 'submission_id': '1gksn3l'}
{'comment': 'Lmao Hispanics can be racist as hell.', 'created': '2024-11-06 08:33:51', 'submission_id': '1gksn3l'}
{'comment': 'It’s bullshit you have to resort to calling a comment lazy as opposed to providing a reasoned reply to your counterpoint. Do better next time.', 'created': '2024-11-06 08:34:57', 'submission_id': '1gksn3l'}
{'comment': 'How weak and pathetic of America that assholes around the world can start wars and we run with our tail between our legs to isolationism.', 'created': '2024-11-06 08:29:53', 'submission_id': '1gksn3l'}
{'comment': 'Yes black Indian woman to be correct thank you', 'created': '2024-11-06 08:17:24', 'submission_id': '1gksn3l'}
{'comment': 'Obama is like the coolest dude ever. Kamala isnt close to that. You have more room to make up for if you are not a white man, I think.', 'created': '2024-11-06 08:18:13', 'submission_id': '1gksn3l'}
{'comment': "He's not qualified. So I am not sure that was a factor,", 'created': '2024-11-06 08:08:16', 'submission_id': '1gksn3l'}
{'comment': 'She very qualified being vp', 'created': '2024-11-06 08:06:51', 'submission_id': '1gksn3l'}
{'comment': 'careful now, ur gonna get ravished for spreading the truth', 'created': '2024-11-06 08:06:28', 'submission_id': '1gksn3l'}
{'comment': "Sadly, women also hate women. They won't vote for themselves and their daughters so of course they won't support a woman candidate.", 'created': '2024-11-06 16:00:41', 'submission_id': '1gksn3l'}
{'comment': 'Seems like they just gave up after Miami-Dade turned red', 'created': '2024-11-06 08:17:50', 'submission_id': '1gksn3l'}
{'comment': 'Like what did she expect from Pennsylvania when you only visit Philly and Pittsburgh lmao', 'created': '2024-11-06 08:12:21', 'submission_id': '1gksn3l'}
{'comment': 'because the working class abaonded dems.', 'created': '2024-11-06 10:15:59', 'submission_id': '1gksn3l'}
{'comment': "Yes, exactly. I actually stated this elsewhere. People don't understand economics, only what their own finances look like. So, while the economy may actually be doing extremely well, it means nothing if there is a perception - not even a reality, but a perception - that they are paying too much it will affect how they vote.", 'created': '2024-11-06 16:52:17', 'submission_id': '1gksn3l'}
{'comment': 'I wanted to be wrong, but I am convinced now that this country is not ready to elect a woman as president.', 'created': '2024-11-06 08:42:34', 'submission_id': '1gksn3l'}
{'comment': "Most Black men who voted- voted for her. \n\nAgain, he bragged about his 'beautiful white skin.' \n\nAmerica revealed itself in this election. All demographics could have voted for her in droves, but they chose otherwise. After all the lying, the law breaking, the threats, calling for names, picking at folks, calling servicemembers loser, boasting about grabbing women, trying to overthrow the govt, saying that he will dismantle the Dept of Education, and other federal entities, which employs thousands, including Veterans, and plan to gut the ACA, folks still voted for him.", 'created': '2024-11-06 10:29:44', 'submission_id': '1gksn3l'}
{'comment': 'The Trump campaign has been masterful at micro targeting voters with whatever it is that will get them to not vote for the Dem and/or vote for Trump. It may be race, gender, trans, border, economy, foreign policy. The list is very long and they use it all.', 'created': '2024-11-06 08:22:46', 'submission_id': '1gksn3l'}
{'comment': 'you cannot dissociate black and woman. it’s a category of its own. intersectionality.', 'created': '2024-11-06 08:10:41', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 08:13:50', 'submission_id': '1gksn3l'}
{'comment': 'the opposite candidate was either better. For Obama, no need to explain he was simply better, and Biden won.', 'created': '2024-11-06 08:15:18', 'submission_id': '1gksn3l'}
{'comment': 'why do people think that black man and black woman is the same ??', 'created': '2024-11-06 08:16:29', 'submission_id': '1gksn3l'}
{'comment': 'black man ≠ black woman.', 'created': '2024-11-06 08:21:30', 'submission_id': '1gksn3l'}
{'comment': 'He should have used his immunity to replace the SC justices. Then the new SC would rule in his favor.', 'created': '2024-11-06 16:00:32', 'submission_id': '1gksn3l'}
{'comment': 'I think we all felt that a win for Kamala would have been incredibly symbolic in that Americans would have stood up for what was right and chosen not only the best candidate, but the first female president who is also a minority. I’m a Hispanic man in my 20’s, and I can say that many of you grossly underestimated the ignorance of my demographic. \n\nShe was the most qualified for the job, but she was also a woman.', 'created': '2024-11-06 18:49:52', 'submission_id': '1gksn3l'}
{'comment': 'I assume you voted for the other guy. I’ll tell you this, I wish my preferred candidate did enough to convince you all why she was the best choice for our country and unfortunately she did not succeed. Perhaps it won’t be as bad as I think it will be, or perhaps you will have to lie in the bed you have made. \n\nMoving forward, I pray that more productive conversations can be had so that we find the commonality that we have and desperately need to realize. I wish all the Americans the best, it’s going to be a bumpy ride.', 'created': '2024-11-06 19:01:29', 'submission_id': '1gksn3l'}
{'comment': 'Cognition only matters when it’s blue. 🤷\u200d♂️\n\nHE SUCKED A MICROPHONE STAND LIKE A DICK.', 'created': '2024-11-06 08:43:59', 'submission_id': '1gksn3l'}
{'comment': 'Yup', 'created': '2024-11-06 08:19:13', 'submission_id': '1gksn3l'}
{'comment': 'Wait, where’s everyone that was saying he was sharp as a tack? I thought we were hallucinating his “gaffes”? 🤔', 'created': '2024-11-06 08:27:39', 'submission_id': '1gksn3l'}
{'comment': 'I really want to be wrong about it. But as you said, it’s the only thing that makes sense. She’s literally a career politician. There is NO ONE more qualified for this position. But a racist, rapist, elitist, fascist, celebrity landlord won. My feelings are so hurt and I’m taking this very personally.\n\nEDIT: AND she had way less votes than Biden? Please.', 'created': '2024-11-06 18:15:17', 'submission_id': '1gksn3l'}
{'comment': 'Biden did not serve up a bad economy either, but he didn’t have the ability to communicate what his administration did well. \n\nBut the US came out of COVID better than any other first world nation on the planet.', 'created': '2024-11-06 08:31:36', 'submission_id': '1gksn3l'}
{'comment': 'Gretchen Whitmer would be a fantastic choice.', 'created': '2024-11-06 09:52:04', 'submission_id': '1gksn3l'}
{'comment': "People have often said that if the Republicans would stop being racist they'd get a lot of the Latino and black votes. Guess they didn't need to lol", 'created': '2024-11-06 14:06:13', 'submission_id': '1gksn3l'}
{'comment': 'Excellent question.', 'created': '2024-11-06 20:57:41', 'submission_id': '1gksn3l'}
{'comment': 'I’ll go with all three too.', 'created': '2024-11-06 18:56:19', 'submission_id': '1gksn3l'}
{'comment': 'I don\'t even know where to go, even if I could afford to leave. It seems like it\'s the norm everywhere to hate women simply for existing. This problem is global, at least from what\'s I\'ve ready. I don\'t think any level of collapse will wake people up. It\'s far to easy to keep people complacent with TikTok and other social media taking up all their time and energy. This is the new normal and it is only going to get worse. \n\nI genuinely wish we could start a new country with only feminists, but you know that it would *immediately* become the "mission" of certain types of men to invade the country to rape and murder everyone for daring to value women as much as men. Basically the same thing Americans did to thriving black communities back in the day. The only options they find acceptable are existing the way THEY decided you\'re allowed to exist, or not existing at all. It\'s so fucking depressing.', 'created': '2024-11-06 19:55:52', 'submission_id': '1gksn3l'}
{'comment': 'I think you’re still on a track thinking all Trump supporters are inhuman. I know plenty that are far from that.', 'created': '2024-11-06 16:59:15', 'submission_id': '1gksn3l'}
{'comment': 'The sad thing is if he had stayed in the race he probably would have won. This country is that embarrassing', 'created': '2024-11-06 17:50:10', 'submission_id': '1gksn3l'}
{'comment': 'Exactly! I literally can not believe after everything he\'s done that sooo many people decided, "yeah, he\'s the guy who should be in charge of the country." Absolutely no way.', 'created': '2024-11-06 23:33:44', 'submission_id': '1gksn3l'}
{'comment': "They voted for Trump. You can argue that they voted for Kamala but not in sufficient numbers. Hispanic men voted en mase for Trump, too. The majority of voters voted for Trump. That means Dems didn't show up in sufficient numbers. Kamala lost every state Biden had won. It was a total landslide and there's nobody to blame except the voters who worship Trump and wish they could be him or feel protected by him.", 'created': '2024-11-07 01:03:02', 'submission_id': '1gksn3l'}
{'comment': "No of course not. Trump sucks Putin's duck", 'created': '2024-11-07 15:09:42', 'submission_id': '1gksn3l'}
{'comment': 'It was also some black men', 'created': '2024-11-06 08:16:35', 'submission_id': '1gksn3l'}
{'comment': 'Because men want to be masculine, they dont want to align with groups that says thats toxic lol. Its as simple as that.', 'created': '2024-11-06 08:26:45', 'submission_id': '1gksn3l'}
{'comment': 'and they are still responaible.', 'created': '2024-11-06 10:20:11', 'submission_id': '1gksn3l'}
{'comment': 'Ofcourse this doesn’t mean everyone is like that but a great majority are like that in secret.', 'created': '2024-11-06 10:58:36', 'submission_id': '1gksn3l'}
{'comment': 'The responses in here are not good for the Dems future prospects. Blaming everything and everyone but the policies. News flash: you just lost the House, Senate, Electoral College, and popular vote. This isn’t white men’s fault. White women performed well for trump. Black people performed well for Trump. Latinos performed well for Trump. They all outperformed projections. The Democrats have an identity problem. They are running on issues that it would be a luxury for many Americans to prioritize: culture wars, social issues, etc. They have absolutely lost touch with the working class American. Dems deluded themselves into thinking that people would trust the economy under Biden thanks to the stock market and GDP, but forgot about the price of groceries and gas. The Dems had no strategy for turning out young white guys. Two things are true here: there is a patriarchy/male privilege to some extent, but Dems did not carve out a role for young white males.\n\nThe results here are so resounding that it cannot be the effect of sexism, racism, or one specific voter demographic. It is a complete and utter disconnect between platform and voter interests. The Dems are pie in the sky academics who try to look and sound smart and virtuous but cannot connect with the median voter. It’s time to ditch the academic, woke, moral authority angle. Or prepare for more results like these.', 'created': '2024-11-06 11:29:05', 'submission_id': '1gksn3l'}
{'comment': 'Given how stupid close these numbers are (Trump is supposedly winning with 50-52% of the vote or so in this battleground states) I’m inclined to believe you', 'created': '2024-11-06 09:04:21', 'submission_id': '1gksn3l'}
{'comment': 'Successful for the opposition, you mean… right?', 'created': '2024-11-06 16:23:44', 'submission_id': '1gksn3l'}
{'comment': 'Not in the slightest.', 'created': '2024-11-06 19:22:28', 'submission_id': '1gksn3l'}
{'comment': "thanks for proving my point about labeling people a -ist.\n\ni'm an independent who voted for harris. i just don't wear rose tinted glasses like you do of your party. you can't even take grounded criticism. that's another underrated problem with dems, liberals (center left) and progressives (far left) alike. there can be nothing you guys do wrong, but the people spoke. it is what it is.", 'created': '2024-11-06 11:51:34', 'submission_id': '1gksn3l'}
{'comment': 'Wow you’re just burying your head in the sand.', 'created': '2024-11-06 14:14:31', 'submission_id': '1gksn3l'}
{'comment': 'Perception is what matters. Doesn’t matter what they actually passed. The ads this election cycle definitely catered to the center, especially the rhetoric around immigration.', 'created': '2024-11-06 15:54:51', 'submission_id': '1gksn3l'}
{'comment': 'There’s the door. Tens of millions of desperate people would take your place if they could.', 'created': '2024-11-06 19:36:54', 'submission_id': '1gksn3l'}
{'comment': 'You\'re mostly correct. The problem is the racists we\'re super amplifies AFTER Obama, which is how we got trump in the first place. White women voted wholeheartedly for trump as well, that couldn\'t be a "woman" issue.', 'created': '2024-11-06 20:37:49', 'submission_id': '1gksn3l'}
{'comment': 'The messaging needs to change. She lost the independent voters this time around, the whole “time for hope and prosperity” is no longer working for the democrats.', 'created': '2024-11-06 23:13:35', 'submission_id': '1gksn3l'}
{'comment': 'No.', 'created': '2024-11-06 14:25:15', 'submission_id': '1gksn3l'}
{'comment': 'Ok. Keep losing then', 'created': '2024-11-10 02:42:22', 'submission_id': '1gksn3l'}
{'comment': None, 'created': '2024-11-06 08:13:14', 'submission_id': '1gksn3l'}
{'comment': 'Closer to how wasn\'t she but here\'s a quick list\n\nThe fake accents\nThe flip flop positions \nThe fact she was a "proud Indian" in California but is magically entirely black\nThe especially infuriating to me the "I was raised in a middle class family" she did not look it up\n \nshe was fake in every aspect\n\n(With some quick research her dad Donald j Harris (ironic) was an ivy League professor which isn\'t exactly a little paying job)', 'created': '2024-11-06 08:22:32', 'submission_id': '1gksn3l'}
{'comment': 'Same was the case with Putin', 'created': '2024-11-06 09:56:18', 'submission_id': '1gksn3l'}
{'comment': 'But he will be president. He has the power to remain president if he wants to', 'created': '2024-11-06 08:35:26', 'submission_id': '1gksn3l'}
{'comment': 'she did but they back stabbed her.', 'created': '2024-11-06 10:23:54', 'submission_id': '1gksn3l'}
{'comment': 'No she didn’t', 'created': '2024-11-06 08:14:01', 'submission_id': '1gksn3l'}
{'comment': '> This term (if it ever ends) will be much worse. There won\'t be anyone to tell him he can\'t "just bomb Mexico". He learned from the first term.\n\nTrump\'s term won\'t last long at all. He\'ll be removed under the 25th within days of his inauguration. Unfortunately, Vance is arguably even worse.', 'created': '2024-11-06 19:30:45', 'submission_id': '1gksn3l'}
{'comment': '“If it ever ends.” My exact fear is that it won’t.', 'created': '2024-11-07 06:19:50', 'submission_id': '1gksn3l'}
{'comment': 'they are convinced he\'ll have guardrails again, and there\'s no amount of shit he can pile on them, they\'ll say, "Thank you, sir, can I have another?"', 'created': '2024-11-07 01:55:14', 'submission_id': '1gksn3l'}
{'comment': 'Bingo', 'created': '2024-11-06 16:50:52', 'submission_id': '1gksn3l'}
{'comment': "That's pretty much it, and may I add, he hates the same people they hate.", 'created': '2024-11-06 17:35:14', 'submission_id': '1gksn3l'}
{'comment': 'The Hispanics that voted for him puzzle the fuck out of me.He would have thrown their ancestors out of the country and they voted for him.', 'created': '2024-11-06 18:41:55', 'submission_id': '1gksn3l'}
{'comment': 'It’s a white man against a black woman. People agreed with her on issues more than Trump and ballot initiatives passed that she supported and he doesn’t but gets the vote. The Democrats just have to realize it’s going to be a long time before a woman can be the nominee and win— if there are any more elections again.', 'created': '2024-11-06 21:14:16', 'submission_id': '1gksn3l'}
{'comment': 'It’s a fking cult', 'created': '2024-11-07 05:35:04', 'submission_id': '1gksn3l'}
{'comment': 'Trump just has to say Biden did it and theyll lap it up.', 'created': '2024-11-06 13:43:37', 'submission_id': '1gksn3l'}
{'comment': 'Yeah, Trump will find other ways to stay in power. Though that said I suspect Vance will 25th amendment him by February.', 'created': '2024-11-06 13:00:58', 'submission_id': '1gksn3l'}
{'comment': 'Naw the older generation has found another way to fuck us and leave another fucking mess for us to clean up that they are responsible for causing.', 'created': '2024-11-06 13:57:04', 'submission_id': '1gksn3l'}
{'comment': 'They aren’t going to cut social security for old people. Just young ones who don’t care right now.', 'created': '2024-11-06 16:12:49', 'submission_id': '1gksn3l'}
{'comment': 'Mine too and I told them to F off this morning for what they have done.', 'created': '2024-11-07 01:36:10', 'submission_id': '1gksn3l'}
{'comment': 'Let them live in your yard.', 'created': '2024-11-06 15:21:23', 'submission_id': '1gksn3l'}
{'comment': 'In the Conservative Ayn Rand Objectivism playbook, anyone not contributing to society is a parasite and a burden. The elderly, the handicapped, the homeless, So...', 'created': '2024-11-06 15:57:39', 'submission_id': '1gksn3l'}
{'comment': 'My parents are both on social security and too old to work. I’m scared for them.', 'created': '2024-11-06 20:29:34', 'submission_id': '1gksn3l'}
{'comment': 'My SS alone would Not provide poverty level support. I can make do without it but it would be missed if it got cut', 'created': '2024-11-06 16:50:25', 'submission_id': '1gksn3l'}
{'comment': 'Billionaires need a tax cut', 'created': '2024-11-06 17:50:35', 'submission_id': '1gksn3l'}
{'comment': 'I know. I’m just really angry.', 'created': '2024-11-06 22:04:18', 'submission_id': '1gksn3l'}
{'comment': 'Both Project2025 and the 2022 Republican Senate Plan for the future stated massive cuts in SocialSecurity, Medicare & Medicaid, the PPACA - ObamaCare. \n\nOther popular Biden programs to control prescription drug prices (including the $35 insulin cap), programs for Child tax credits, child care, infrastructure improvement & repair will be slashed, withdrawn or repealed.', 'created': '2024-11-06 23:43:59', 'submission_id': '1gksn3l'}
{'comment': "They did it, the dog chasing the car finally is in the driver's seat. Now govern you vitriolic motherfuckers.", 'created': '2024-11-06 15:54:55', 'submission_id': '1gksn3l'}
{'comment': 'They will find a way, believe me', 'created': '2024-11-06 17:35:02', 'submission_id': '1gksn3l'}
{'comment': "Oh, they still will. Don't underestimate the stupidity and GQP brainwashing of these idiots.", 'created': '2024-11-06 22:14:07', 'submission_id': '1gksn3l'}
{'comment': "Don't forget about the Supreme Court.", 'created': '2024-11-06 20:43:06', 'submission_id': '1gksn3l'}
{'comment': 'Like objective reality has ever been more than a speed bump to these rabid troglodytes.', 'created': '2024-11-06 19:47:15', 'submission_id': '1gksn3l'}
{'comment': 'But they will.', 'created': '2024-11-06 22:04:35', 'submission_id': '1gksn3l'}
{'comment': 'Sadly they hate you too. But on a good note, the republicans on SS they also hate. And I think they will learn that the hard way. Or not learn that since learning seems to be hard for a lot of them.', 'created': '2024-11-06 16:35:11', 'submission_id': '1gksn3l'}
{'comment': 'They’ll just tell you to get a job. Bootstraps and all that.', 'created': '2024-11-06 18:39:44', 'submission_id': '1gksn3l'}
{'comment': 'The unfortunate truth is that this suffering was long contained in the red states as a them problem. Those liberals should just move. The fight will now be brought to the bluest of shores and the positive of that is that now liberal voters in red states won’t be taking all the abuse by themselves and a unified state-less coalition might be possible. Or democracy is over. Who knows.', 'created': '2024-11-06 14:43:36', 'submission_id': '1gksn3l'}
{'comment': 'Thanks for pointing this out. I’m a disabled millennial who has always been extremely politically active for left causes and candidates and I’m terrified of losing my measly monthly income and Medicare. The disabled and seniors will be so hurt by this', 'created': '2024-11-06 16:01:36', 'submission_id': '1gksn3l'}
{'comment': 'Why anyone would vote against their best interests is beyond me. Same reason that I don’t understand why women would vote this way.', 'created': '2024-11-06 20:32:07', 'submission_id': '1gksn3l'}
{'comment': 'This! Me, too! Boomer here worked for Harris.', 'created': '2024-11-06 15:28:50', 'submission_id': '1gksn3l'}
{'comment': ' I know. I’m just pissed off.', 'created': '2024-11-06 13:08:51', 'submission_id': '1gksn3l'}
{'comment': 'You know damn well they are going to continue to blame Democrats.', 'created': '2024-11-06 15:31:54', 'submission_id': '1gksn3l'}
{'comment': 'or create problems so you can benefit then fix them. (border bill comes to mind)', 'created': '2024-11-06 21:54:02', 'submission_id': '1gksn3l'}
{'comment': 'I wish I could RAISE it for you. These fuckers are cruel!', 'created': '2024-11-06 22:13:14', 'submission_id': '1gksn3l'}
{'comment': 'I’m sorry. I’d never want to see your SS cut. I’m just super pissed off.', 'created': '2024-11-06 22:07:51', 'submission_id': '1gksn3l'}
{'comment': 'That’s my dream too it only applies to magas. I’m sorry about your husband.', 'created': '2024-11-06 22:50:30', 'submission_id': '1gksn3l'}
{'comment': 'I’m just angry, I don’t want to harm the good folks.', 'created': '2024-11-07 11:30:09', 'submission_id': '1gksn3l'}
{'comment': 'Why? Do they collect SS?', 'created': '2024-11-06 22:52:11', 'submission_id': '1gksn3l'}
{'comment': 'And I agree. I’m just trying to think of something to make those idjits miserable.', 'created': '2024-11-06 22:11:57', 'submission_id': '1gksn3l'}
{'comment': 'I’m just super angry and not being serious.', 'created': '2024-11-06 22:22:44', 'submission_id': '1gksn3l'}
{'comment': 'I’m just really angry. If there was a way only cut THEIR benefits, that I’d get behind. Thank you for your efforts with Kamala!', 'created': '2024-11-06 22:09:32', 'submission_id': '1gksn3l'}
{'comment': 'There is NO WAY 15 million democrats just didn’t show up. Absolutely no way. Where are those 15 million votes? No one is going to say it? This is suspicious AF! We all knew how important this election was. There is no way 15 million Dems just stayed home. We all knew better. All of us.', 'created': '2024-11-07 14:55:01', 'submission_id': '1gksn3l'}
{'comment': "I was thinking of Gavin Newsom as well! He is a possible choice!\n\nGavin Newsom a moderate Democrat who falls near the middle: [https://calmatters.org/politics/2019/10/gavin-newsom-moderate-governor-california-political-spectrum/](https://calmatters.org/politics/2019/10/gavin-newsom-moderate-governor-california-political-spectrum/)\n\nNewsom is also an excellent, charismatic public speaker who is sharp as hell! Facts and recall on debates like no other.\n\nHe even debated MAGA Republican, Ron DeSantis, on enemy territory, MAGA Fox News.\n\nHe is also a straight white man, so he doesn't face hurdles that a POC woman would, and he would to appeal to moderate Democrats who won't vote for a woman. He can also potentially appeal to Moderates, Independents, and moderate Republicans in the middle.\n\nI'm also open to other candidates as well, but Gavin Newsom is a possible 2028 choice!", 'created': '2024-11-06 23:28:43', 'submission_id': '1gksn3l'}
{'comment': 'It’d be nice if that would have backfired on him by discouraging large numbers of his gullible supporters from voting at all.', 'created': '2024-11-07 17:21:53', 'submission_id': '1gksn3l'}
{'comment': 'from my experience most i know made enough that it didnt effect him\n\nits weird. For my area you can make 80-100k and still be easily middle class. Half the guys i know in the trades fit into this category.\n\nthats what the issue was with my county. Too many wealthy folks that wanted the republican economy. It is what it is. at least my local community will be happier lol. I wont.\n\nevery Hog and Hogalina has been out celebrating while im hiding in my room', 'created': '2024-11-07 14:18:20', 'submission_id': '1gksn3l'}
{'comment': 'They have the House now and can’t even pass a budget', 'created': '2024-11-10 02:58:59', 'submission_id': '1gksn3l'}
{'comment': "Perhaps we shouldn't be so polite. There's no law against being impolite.", 'created': '2024-11-06 21:57:27', 'submission_id': '1gksn3l'}
{'comment': "I just told a magat that now I can treat them like shit and break laws cause that's the new standard...", 'created': '2024-11-06 21:25:04', 'submission_id': '1gksn3l'}
{'comment': 'While they claim to have the moral high ground 🙄', 'created': '2024-11-06 20:30:33', 'submission_id': '1gksn3l'}
{'comment': 'It isn\'t, not because he did something else or the news cycle changed... but rather he punches hard. He says something stupid and then doubles down and says "come at me bro..." leaving the news stunned...and then moves to the next thing.\n\nI hate to say it but the they go low we go higher shit of Obama needs to stop. Fucking punch back. And hard. Accuse the republicans of pedophila... accuse them of rape, incest and murder. When challenge have an attitude that says "come at me bro."\n\nCause apparently, that wins elections.', 'created': '2024-11-06 17:22:17', 'submission_id': '1gksn3l'}
{'comment': 'We’re not going to solve racial justice issues by going straight off skin color or ethnicity. Even CALIFORNIA voted down race based Affirmative Action. It’s a political loser. \n\nInstead, it’s more feasible to create race neutral programs that can be crafted to disproportionately help historically disadvantaged minorities.', 'created': '2024-11-06 14:01:48', 'submission_id': '1gksn3l'}
{'comment': 'Clearly being an old man with mush for brains wasn’t actually any kind of problem.', 'created': '2024-11-06 18:35:30', 'submission_id': '1gksn3l'}
{'comment': 'Biden truly fucked us over by not committing to be a one term President from the start. It would have helped to have had a real primary process and full election season for our nominee.', 'created': '2024-11-06 19:40:01', 'submission_id': '1gksn3l'}
{'comment': 'There are people on other threads saying for at least the Latino vote, it was the machismo and her being a woman.', 'created': '2024-11-06 16:27:45', 'submission_id': '1gksn3l'}
{'comment': "Misogyny (and machismo) does though. Also, minorities can still have racial animosity toward other groups.\n\n\nToo bad they didn't care if those messages were true or made sense.", 'created': '2024-11-06 17:05:52', 'submission_id': '1gksn3l'}
{'comment': 'There are people on other threads saying for at least the Latino vote, it was the machismo and her being a woman.', 'created': '2024-11-06 16:28:02', 'submission_id': '1gksn3l'}
{'comment': "But moreso, who isn't male.", 'created': '2024-11-07 01:51:04', 'submission_id': '1gksn3l'}
{'comment': 'This message of "white people did it" or "men did it" or "elderly are to blame" is part of the reason these people feels so disconnected from the democratic party. You can\'t ask white men to vote for you, while simultaneously calling all white men hateful/spiteful/biggots. We\'ve seen a trend in young men turning to conservative ideologies despite the youth generally being more liberal minded, why do you think this is?\n\nI say this as a white male liberal, who voted for Kamala. We need to do better. We need to stop hating, and start teaching.', 'created': '2024-11-06 14:29:58', 'submission_id': '1gksn3l'}
{'comment': 'Is "men" just white people? Bc they said that too.\n\n\nSo, "*men swung hard", "white *men this time," yeah.\xa0', 'created': '2024-11-07 01:57:48', 'submission_id': '1gksn3l'}
{'comment': "> I'm too hurt and numb to come up with any ideas.\n\nThis entire election cycle would have been significantly different if presidents were limited to a single 4-year term. Trump would have been term-limited, and Biden as well, and Kamala could have started earlier.", 'created': '2024-11-06 22:18:47', 'submission_id': '1gksn3l'}
{'comment': 'Trump already said we wouldn’t be voting again and I believe him. They will enact project 2025 and gut the federal government, establish total control. The United States of America is dead. Experiment failed.\n\nClimate collapse is inevitable now. We will have to fight to survive on an individual level. There are ways to grow food even in winter, which is all we’ll have when (not if) the AMOC collapses.\n\nMake communities, support one another. Hold to whatever faith you have and share love with those close to you.', 'created': '2024-11-06 13:41:58', 'submission_id': '1gksn3l'}
{'comment': "The new democrat party will have to move so far to the right. I can't even think of voting for them.", 'created': '2024-11-06 13:04:35', 'submission_id': '1gksn3l'}
{'comment': 'yup, democracy is dead. So how do we adapt?', 'created': '2024-11-06 13:45:34', 'submission_id': '1gksn3l'}
{'comment': 'I do as well.', 'created': '2024-11-06 12:58:25', 'submission_id': '1gksn3l'}
{'comment': 'I’m fearful you are right. This election was most likely a sham, and future elections will most certainly be.', 'created': '2024-11-06 14:25:32', 'submission_id': '1gksn3l'}
{'comment': "2026 is probably going to be good because it's the typical mid-year and the GOP is defending a lot of Senate seats. I don't know if the 6 year itch applies to a President serving non-consecutive terms but if it does, it'll be good if Democrats can get the Senate and House.\n\nI was saying in another comment that the GOP probably axes Trump mid-way through his second term but now that you mention it, his grip is far too strong so they'll have to ride it out until January 2029 or hope he dies.", 'created': '2024-11-06 14:19:31', 'submission_id': '1gksn3l'}
{'comment': 'I really did not like Bernie. When he had momentum in the 2020 primaries I had a lot of empathy for republicans who hated Trump but voted for him anyway.', 'created': '2024-11-06 15:59:35', 'submission_id': '1gksn3l'}
{'comment': 'It’s not really slim', 'created': '2024-11-06 14:25:25', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 13:37:46', 'submission_id': '1gksn3l'}
{'comment': 'Trump will fail miserably especially on the economy his people voted him for. He doesn’t know jack about anything. But sometimes human beings like to learn the hard way which is why his corruption, misogyny, betrayal of the American democracy wasn’t enough to make him ineligible to contest. The lessons here are that America is deeply very racist at its core and not ready for a woman president. Something even 3rd world nations have done. \n\nTrump is the biggest success of Putin. He infiltrated America well and won. Democrats should just sit back and watch the drama. 4 years actually comes soon.', 'created': '2024-11-06 13:04:47', 'submission_id': '1gksn3l'}
{'comment': "I'd actually rather have him lose the popular vote in this case. The electoral vote can be manipulated somewhat, but the popular vote is a moral barometer. It takes the temperature of the nation. When he lost the popular vote by a record margin in 2016, it felt like the nation wasn't behind him - that he'd carved out this victory somehow.\n\nBut with a popular vote victory we can't blame it on the EC. We're just stuck confronting the awfulness of these people.", 'created': '2024-11-06 13:07:14', 'submission_id': '1gksn3l'}
{'comment': 'Honestly I think a great many people just aren’t paying that close of attention. Trump is a familiar media figure who they feel connected to socially. So they vote that way.', 'created': '2024-11-06 12:13:38', 'submission_id': '1gksn3l'}
{'comment': 'There’s more stupid, awful people in this country than we were willing to admit?', 'created': '2024-11-06 13:14:12', 'submission_id': '1gksn3l'}
{'comment': 'The idjits cast more votes than we did.', 'created': '2024-11-06 12:24:21', 'submission_id': '1gksn3l'}
{'comment': '>\xa0but what the actual fuck happened?\n\nAmerica showed its true colors. A massive turnout benefited fascism.', 'created': '2024-11-06 15:09:35', 'submission_id': '1gksn3l'}
{'comment': "Republicans have cultivated an ignorant, uneducated, and aggressive base that attacks anyone who Trump tells them to.\xa0\n\n\nThey get to be themselves and no longer be ashamed of it. Apparently that's a powerful motivator. But yes, I don't understand it either.\xa0", 'created': '2024-11-07 05:16:26', 'submission_id': '1gksn3l'}
{'comment': 'I’m with you. Something happened, this is a crook that figured out how to fix the election.', 'created': '2024-11-07 09:06:02', 'submission_id': '1gksn3l'}
{'comment': 'I noticed that as well. 15 million is a bunch to have abstained…', 'created': '2024-11-06 16:01:05', 'submission_id': '1gksn3l'}
{'comment': 'They courted young men very well (Rogan and other podcast). The red pill incels helped him a lot. So we have boomers and gen z voting for him. There is also the Christian nationalist who are unwavering in their support of the orange man.\n\nThey better really change America for the better or they may never win again, boomers may be ok with just voting the red party line but I anticipate that younger humans will not tolerate a lack of change.', 'created': '2024-11-06 13:49:12', 'submission_id': '1gksn3l'}
{'comment': 'Same', 'created': '2024-11-06 16:01:22', 'submission_id': '1gksn3l'}
{'comment': 'Good point. 15 Million is a big number especially since all I’ve heard from the ”news” is that all these voter turnout records are being smashed.', 'created': '2024-11-06 16:38:08', 'submission_id': '1gksn3l'}
{'comment': 'Basically anyone who didn’t vote for him, doesn’t look like him, or disagrees with him on any issue', 'created': '2024-11-06 22:31:53', 'submission_id': '1gksn3l'}
{'comment': "Yup.\n\nI love our American culture and values, don't you?", 'created': '2024-11-06 17:54:42', 'submission_id': '1gksn3l'}
{'comment': 'More like we’ve stepped over a Franklin to kick a Lincoln into the sewer.', 'created': '2024-11-06 12:08:20', 'submission_id': '1gksn3l'}
{'comment': 'They won’t though. They haven’t. The media machine will tell them it’s someone else’s fault', 'created': '2024-11-06 13:44:33', 'submission_id': '1gksn3l'}
{'comment': 'No, they will never realize and that’s the point. They will be kept stupid and voting against their own best interests because the system is working as designed by republicans. We might literally have to split the country in half at this point. I wonder if WW3 ends up being CW2 at this point.', 'created': '2024-11-06 13:50:45', 'submission_id': '1gksn3l'}
{'comment': 'All those low information voters are going to learn the hard way, aren’t they?', 'created': '2024-11-06 14:09:52', 'submission_id': '1gksn3l'}
{'comment': "No they won't", 'created': '2024-11-06 16:36:39', 'submission_id': '1gksn3l'}
{'comment': 'lol. That’s cute. I like your optimism, though.', 'created': '2024-11-06 17:19:18', 'submission_id': '1gksn3l'}
{'comment': "If this election is anything to go by, the stats don't matter. Biden rebuilt the US economy after covid and it apparently meant nothing. Voters will feel the pain from Trump's deportations and tariffs regardless of what figures say.", 'created': '2024-11-06 11:39:51', 'submission_id': '1gksn3l'}
{'comment': "He's done it before", 'created': '2024-11-06 11:21:15', 'submission_id': '1gksn3l'}
{'comment': 'With schedule F enacted, he’ll be able to make everything he does seem like he’s pissing gold.', 'created': '2024-11-06 12:35:48', 'submission_id': '1gksn3l'}
{'comment': 'Republicans won on convincing people this lie. Biden actually did a lot and saved us from a recession but the Democrats failed to convince voters of this.', 'created': '2024-11-06 10:58:22', 'submission_id': '1gksn3l'}
{'comment': 'We got a couple more years of the Biden economy . Then the housing collapse will trash everything.', 'created': '2024-11-06 10:58:49', 'submission_id': '1gksn3l'}
{'comment': "Then it is what it is. I just thought people would know better.... Knowing Trump's first term and how much drama they was on the global stage. Sorry but your country is doomed and will ruin it for everyone.", 'created': '2024-11-06 17:33:22', 'submission_id': '1gksn3l'}
{'comment': 'Her campaign was vastly more popular than Hilary Clinton.', 'created': '2024-11-06 17:27:03', 'submission_id': '1gksn3l'}
{'comment': 'The explanation above is very logical', 'created': '2024-11-06 11:01:18', 'submission_id': '1gksn3l'}
{'comment': 'White man with huge name recognition selling simple solutions to complex problems. To many, that’s comforting.', 'created': '2024-11-06 17:03:15', 'submission_id': '1gksn3l'}
{'comment': "I hope you and your daughters will never face these draconian restrictions. The stories I've read are appalling. \n\nI'd wager it's even lower than 3rd if there was a full national survey done. Another contentious point from me, but people tend to vote selfishly. Not everyone is plugged into politics every day etc. so they'll vote for what's most pressing for them. Abortion issue in Texas? Not my problem. My memory is rusty but I think the abortion issue was big in Poland and Ireland precisely because of an equivalent of a blanket ban + punishments. The US does not have this nationally\n\nThat's the sad state of affairs, unfortunately.", 'created': '2024-11-06 09:23:04', 'submission_id': '1gksn3l'}
{'comment': "> Most of the pro-abortion initiatives passed.\n\nTo add, many progressive ballot measures generally pass. Marijuana legalization, higher minimum wage, so on and so on.\n\nVoters vote for progressive policies (because they are popular and wanted), and don't vote for the political party seeking to enact them.\n\nIt's that simple, really.", 'created': '2024-11-06 12:59:00', 'submission_id': '1gksn3l'}
{'comment': "VP Harris did. Multiple times. \n\nThe way I see it, the Dems lost the argument on immigration from 2 angles:-\n\n1) they ceded ground to the Republicans by adopting their strict border policy, moving to the right on this issue to try and appeal to moderates. That border bill was considered very harsh and many on the left already did not like it.\n\n2) they never, ever had a good answer for why so many people crossed the border prior to Trump killing said bill and why they never hard pushed for the border bill they penned on day 1.\n\nIf you're an undecided voter and immigration is your issue, why would you go with Republican-lite? Might as vote Republican down-ballot who have a clear, tough answer on this issue", 'created': '2024-11-06 19:02:49', 'submission_id': '1gksn3l'}
{'comment': "I said it below but politics and votes are inherently selfish and you're correct, if it doesn't affect them or their bottom line first, there is no reason to vote that way.\n\nThat's why I'm always pissed at the Dems reluctance to play hardball on getting their messaging across etc.", 'created': '2024-11-06 13:56:29', 'submission_id': '1gksn3l'}
{'comment': 'So basically the hope is that the entire gop is worthless lying trash?', 'created': '2024-11-06 09:49:27', 'submission_id': '1gksn3l'}
{'comment': None, 'created': '2024-11-06 10:47:13', 'submission_id': '1gksn3l'}
{'comment': '> “And I don’t think it’s fair to reduce it down to wanting to be “the absolute center of attention at every instance.” I don’t think that’s a fair statement.\n\n> And the problem with saying things like that, is that it’s demeaning and insulting, and only further confirms what outlets on the Right are saying… that the Left hates them, that it doesn’t care about their pain, that it sees them as a joke and a scapegoat.”\n\nI can’t help but struggle with what you’re ignoring here: the inconvenient truth that these very adjectives - demeaning, insulting, etc - is precisely how the right treats the left. It’s not just incidental, it’s a cornerstone of the MAGA GOP’s strategy. While I’ll grant that it may not capture Trump’s entire message, which does also present some purported solutions, I don’t think it’s deniable that his (and his mouthpieces’) political brand leans heavily on this divisive and hostile rhetoric.\n\nSo what you’re really asking for here is that women, or anyone whose liberties and safety may now be at stake, offer young white men a level of empathy and reassurance that they themselves don’t receive. You’re suggesting that we coddle attitudes and viewpoints that show no willingness to reciprocate respect or understanding. And indeed entertain a type of masculinity that actively seeks out toxicity. I get the argument and I’m worried about the trend of young men leaning alt-right. But that’s a double standard, and it’s not one I’m inclined to accept.', 'created': '2024-11-06 17:58:52', 'submission_id': '1gksn3l'}
{'comment': 'Hon, I don’t need a lecture \n\nDo you have terminal cancer and rely on Medicaid expansion to stay alive?\n\nThen no, I do not care', 'created': '2024-11-06 16:20:19', 'submission_id': '1gksn3l'}
{'comment': 'Frustrated people take it out on the administration/party in power. Simple as that.', 'created': '2024-11-06 10:53:25', 'submission_id': '1gksn3l'}
{'comment': "These are all very good points. I'm a white collar / tech / STEM worker too; you're right that this problem - and income inequality in general - is rarely addressed.", 'created': '2024-11-06 18:38:08', 'submission_id': '1gksn3l'}
{'comment': 'I’d rather have them said, “yeah, we know that it sucks, and we’re going to fight like hell to fix it by doing xyz” instead of saying “the economy’s great” or saying nothing. I mean, they lost anyway. Might as well have tried it.', 'created': '2024-11-06 17:39:27', 'submission_id': '1gksn3l'}
{'comment': "That's a start, but mass layoffs have been going on for over 2 years now. I was hit by the 8th round of layoffs. You cant keep saying the economy and job market is doing great when people are losing their jobs in the masses.", 'created': '2024-11-06 13:39:12', 'submission_id': '1gksn3l'}
{'comment': 'Yeah, the economy is doing great, for rich people. Those who aren’t rich are struggling hard.', 'created': '2024-11-06 12:39:30', 'submission_id': '1gksn3l'}
{'comment': 'Other than the EU, I think every G7 member now including US has had a big backlash against the incumbent party. Trudeau is expected to lose in the next election and France/Germany saw massive gains for their right-wing populist parties, not to mention all across Europe', 'created': '2024-11-06 11:33:51', 'submission_id': '1gksn3l'}
{'comment': 'I don’t put it in quite the same boat as the Clinton loss. That one was largely hubris… the nomination was treated like a lifetime achievement award and the campaign like a victory lap for a very qualified and respected statesman; victory was a assumed, especially against her clown of an opponent.\n\nThis time it was less about hubris and more about desperation. Biden looked like a clear loser, so something had to be done, and Harris was kind of the only choice.', 'created': '2024-11-06 08:56:54', 'submission_id': '1gksn3l'}
{'comment': '>I don’t think Harris would have won even if she outlined strong immigration policies.\n\nYou are correct because Biden/Harris lost that issue a long time ago when they let it run unchecked for some unknown reason.', 'created': '2024-11-06 09:14:52', 'submission_id': '1gksn3l'}
{'comment': 'Legal Haitians were targeted by them. They want them out. The economy in that region will flop, but they hate the Haitians more.', 'created': '2024-11-06 10:13:50', 'submission_id': '1gksn3l'}
{'comment': 'Reap what you sowe.\n\nTrump following\xa0through on some of his Project 2025 terribleness. Fixes the problem of uneducated people voting based on religion and thinking they’re white and equal in a Republican world, when they arent. Cant vote if your family gets deported and you lose your job. Cant vote if Boomers die from another virus.\n\nMarkets will crash(both stock and housing), inflation is gonna go through the roof. Trump is gonna pardon himself for all the crimes he committed.\xa0\n\nMay as well say it now, climate change is gonna fuck everyone.\n\nHumans had a shitty run.\xa0', 'created': '2024-11-06 10:40:50', 'submission_id': '1gksn3l'}
{'comment': 'Ummm those documented immigrants are citizens now which is why they were able to vote and make their voices heard.', 'created': '2024-11-06 18:07:11', 'submission_id': '1gksn3l'}
{'comment': 'Yeah I hear all these points and agree with OP, except Kamala did have economic plans to ease grocery prices and help seniors, etc. I don’t think it matters when we’re working with a strong ass propaganda machine like Fox News, X, TikTok, and podcast bros. You can have all the policy, all the outreach, but how do you fight that?', 'created': '2024-11-06 10:53:42', 'submission_id': '1gksn3l'}
{'comment': 'Too little too late. Of course Trump wants that passed under him.', 'created': '2024-11-06 18:05:21', 'submission_id': '1gksn3l'}
{'comment': 'You are right. The democrats can’t call out the sexism and misogyny however true and obvious it is as they will just dig in their heels. Ultimately the source of the brainwashing - Fox News - has to be dismantled for anything to change. I wish those vote counting machine companies did not settle with Fox News and force them to trial to expose even more horrible stuff. If I were a billionaire Democratic supporter, I would have funded their lawsuits so that they didn’t settle.', 'created': '2024-11-06 18:20:19', 'submission_id': '1gksn3l'}
{'comment': "Harris could have won 100% of the Black vote and still lost, that's how badly she lost. She only would have gained Georgia, and NC. This is white women's, and Hispanics' fault.", 'created': '2024-11-06 17:10:32', 'submission_id': '1gksn3l'}
{'comment': "I agree, this one wasn't like Clinton who was arrogant enough to think the election would be handed to her. Harris took her likely one and only chance to be president and lost it through no real fault of her own (except she was in an awkward position where she couldn't criticize Biden). Biden is the ultimate cause of this, I'm glad he stepped down so we at least had a chance but there should have been an actual primary.", 'created': '2024-11-06 22:44:19', 'submission_id': '1gksn3l'}
{'comment': 'I get that. It’s exhausting to always be the adult in the room. I just honestly don’t see a good alternative that will work any better.\n\nAnd, yeah, I’m not saying that women or minorities have it easier than men, just that young men are hurting and feel marginalized too- they haven’t yet made it to those upper management positions and haven’t had time to really benefit from special treatment from the bosses or see the hurdles their female peers face. It takes some years in the work force.', 'created': '2024-11-07 19:47:14', 'submission_id': '1gksn3l'}
{'comment': 'Ahh good point', 'created': '2024-11-07 19:37:09', 'submission_id': '1gksn3l'}
{'comment': 'I’m not stereotyping, they’re red pilled.', 'created': '2024-11-06 15:56:57', 'submission_id': '1gksn3l'}
{'comment': 'You don\'t have to say the same things, but you do have to say it in the same way. "Meet people where they are" we say. Speak their language if you want to be understood.', 'created': '2024-11-06 17:01:34', 'submission_id': '1gksn3l'}
{'comment': 'Ignorance is reality.', 'created': '2024-11-06 10:26:22', 'submission_id': '1gksn3l'}
{'comment': 'Biden pushed her off a plane with no parachute dropping out late.', 'created': '2024-11-06 08:18:16', 'submission_id': '1gksn3l'}
{'comment': 'Hillary WON the popular vote, which Kamala didn’t. I think they liked her more than Kamala? 🤔', 'created': '2024-11-06 08:33:50', 'submission_id': '1gksn3l'}
{'comment': "Sure will be interesting to see what happens to grocery prices when so many immigrants who do those jobs today are forced out of the country. I'm sure everyone who's worried about finances will be lining up to pick fruit and process poultry for pennies an hour, and I'm doubly sure the selfish billionaires running things will pressure their buddies at giant ag companies to raise wages accordingly. /s", 'created': '2024-11-06 19:01:36', 'submission_id': '1gksn3l'}
{'comment': "the huge problem is that Liberals no longer control the avenues of messaging. From talk radio to cable to social media apps and now podcasts its like 90% alt right viewpoints. You can say corporate greed until you're blue in the face but you're only preaching to the choir because of conservative ownership & control of the media sphere.", 'created': '2024-11-06 09:04:39', 'submission_id': '1gksn3l'}
{'comment': '"Inflation" should have just been turned into "corporate greed"\n\nexactly. dems only have themselves to blame for not calling this out earlier', 'created': '2024-11-06 08:27:52', 'submission_id': '1gksn3l'}
{'comment': 'YES. Biden being silent let his opponents fill in the narrative for him. *It’s all about messaging.* That makes a lot of Democrats uncomfortable because they feel like a flim-flam man or a demagogue. They think “I don’t want to spin things, that’s not what the ‘good’ people do.” Well, the definition of insanity is doing the same thing over and over again and expecting a different result. Inflation? Turn it into corporate greed. Outsourcing and layoffs? Corporate greed too. You know who could’ve been the boogeyman and face of this greed? Elon Musk. Hammer and hammer and hammer the message. Repetition works. High prices at the grocery store? Blame climate change. What will we do to address that and help our crops? There’s a heartland message right there. Biden did not have a clear message on immigration besides blaming Trump. That doesn’t work when YOU’RE the one in office.', 'created': '2024-11-06 18:35:28', 'submission_id': '1gksn3l'}
{'comment': 'The scary thing to me is how many inept buffoons Trump is going to appoint to really important positions in the government', 'created': '2024-11-06 08:52:30', 'submission_id': '1gksn3l'}
{'comment': 'I don\'t know how we explain complex things to uneducated and frankly no desire to be educated people. Gop just says "Things cost much, fault theirs...pick me...things no cost much again."\n\nDEM\'s have to go "well you see the global market caused an unexpected circumstance driving up cost. This was a factor of geopolitical happenings with the pandemic, we did A and B and that lead to slowing down the flow by making A do this and B went and did that because it works by B affecting A and...." And you just lost everyone.\n\nDem\'s can\'t go "Inflation bad, could worse be, but we slow it, but if you vote for me we fix what we no fix yet fully" and expect the same win the GOP gets from their message.', 'created': '2024-11-06 17:20:02', 'submission_id': '1gksn3l'}
{'comment': 'You are correct,, but the average voter who only gets news from FB will never attempt to understand that nuance, or even hear that explanation. All they know is monthly bills are still way higher than 2020, and now they can no longer get a cheap car loan.', 'created': '2024-11-06 12:58:33', 'submission_id': '1gksn3l'}
{'comment': 'No one was interested in explanations. They just wanted prices to go down, and that wasn’t happening.', 'created': '2024-11-06 13:40:58', 'submission_id': '1gksn3l'}
{'comment': '$25,000 for down payment, $6000 child tax benefits. Taxing the billionaires. What could’ve been.', 'created': '2024-11-08 01:28:16', 'submission_id': '1gksn3l'}
{'comment': 'Don’t forget, though, that the Trump administration left an astronomical amount of destruction in its wake that Biden had to sort out. Trump’s 4 years were such an aberration that any President following it would have a real, and unusual, mess on his hands. It took up all of his time and no doubt drained most of his energy - that, and trying to pass policies with a hostile Republican Senate was the epitome of futility. I truly believe that Biden did his best, but getting the country back on course from an internal perspective left him very little time to leave the White House.', 'created': '2024-11-06 09:50:32', 'submission_id': '1gksn3l'}
{'comment': 'Agreed.', 'created': '2024-11-06 09:05:43', 'submission_id': '1gksn3l'}
{'comment': 'You can’t conquer Iraq from the air, and you can’t rule the US from the White House.', 'created': '2024-11-06 08:46:09', 'submission_id': '1gksn3l'}
{'comment': 'That was the thing that I never understood with the Afghanistan situation. They didn\'t mention that literally ever with Afghanistan even though it was in their face. \n\nThey never mentioned corporate greed with numbers to back it, just that it was "price gouging."\n\nJust. Ugh.', 'created': '2024-11-06 15:32:05', 'submission_id': '1gksn3l'}
{'comment': 'She had policies on the border and policies to put more money in American’s pockets. Trump will raise costs across the board between tariffs and mass deportations. No one listens the policies. \n\nThe Dems must find a way to break through the right wing media propaganda and *sell* their message or every strategy and policy will fail. It might be too late if elections are suspended.', 'created': '2024-11-06 14:32:46', 'submission_id': '1gksn3l'}
{'comment': 'I feel bad for people, honestly, CISA and the DOJ have been trying since May to get the media to give them some airtime on the disinformation and the foreign threat actor bot farms targeting US social media. Instead, we get opinions on opinions on opinions scrutinizing just how old Biden is, and whatever the Russian bots are boosting onto the journalist’s Twitter feed.', 'created': '2024-11-07 00:55:18', 'submission_id': '1gksn3l'}
{'comment': 'Yeah I agree; I don’t think there is a universe where we could have won given this result. He could not have run a worse campaign and frankly I don’t think she could have run much better in the circumstances and it wasn’t even close. We were never going to win.\xa0', 'created': '2024-11-06 08:40:33', 'submission_id': '1gksn3l'}
{'comment': 'Had the worse campaign but everything came down to the economy. 70% of voters said they were worse off than they were a year ago. \n\nOf these people, Kamala lost ground with Latino voters, women, and working class voters whose decision was solely based on the economy. \n\nKamala lost because she did not have enough time to explain her economy and the improvements made by her and Biden. Three months is all she had to start a campaign, pick a vp, make a policy plan, and go around and share her policies with people. \n\nShe did everything but the policy part in record time. She did not have a clear policy until the middle of September. It wasn’t until early October where she started a media blitz to share her policies with as many people as possible. It wasn’t until a couple of weeks ago where she got enough prep to talk to people like Fox News. \n\nIt would’ve been likely that she won the primary and had more than enough time to get a clear message out. Had she been given all this time, the race would’ve been closer rather than the landslide we got.', 'created': '2024-11-06 08:42:18', 'submission_id': '1gksn3l'}
{'comment': 'But if they had a primary they might’ve gotten someone people were excited for.', 'created': '2024-11-06 10:35:50', 'submission_id': '1gksn3l'}
{'comment': 'This is cope. She lost because of sexism.', 'created': '2024-11-06 12:43:53', 'submission_id': '1gksn3l'}
{'comment': 'Unfortunately the wake up call for Democrats is heard at the moment of their last breath.', 'created': '2024-11-06 08:49:10', 'submission_id': '1gksn3l'}
{'comment': 'Guy who is great at this (D) Pete Buttigieg talking to people inside their bubbles, but that whole nasty "Im Gay and here is my husband and our two adopted kids. Praise the lord" would make MAGA heads explode. I\'ve come to realize tonight America is not ready for a Women President in my lifetime, never in 100 years would a Gay Man get to be President.', 'created': '2024-11-06 13:00:32', 'submission_id': '1gksn3l'}
{'comment': "Maybe this country just isn't ready to elect a woman. With Hilary losing in 2016 and now Harris in 2024, it's going to be a long, long time before any party gives a woman another chance. It's really unfortunate for women everywhere but that's likely the truth.", 'created': '2024-11-06 08:47:48', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-09 01:11:54', 'submission_id': '1gksn3l'}
{'comment': 'It’s too bad the average voter does not pay nearly enough attention to recognize these things.', 'created': '2024-11-06 10:59:07', 'submission_id': '1gksn3l'}
{'comment': None, 'created': '2024-11-06 14:46:17', 'submission_id': '1gksn3l'}
{'comment': 'They needed to deliver this message to the American people in simple terms. That’s the problem. Average people are completely unaware of this whole situation. She may have mentioned it at the debate but it needed to be in commercials and shouted from mountain tops.', 'created': '2024-11-06 23:45:13', 'submission_id': '1gksn3l'}
{'comment': "Yes, this is true, and I agree. But nuanced reasons why the thing you tried failed never go over well. \n\nIf Biden was more coherent, he should have made a bigger stink about it and pivoted to something else. But they never tried anything else. That's what people remember.", 'created': '2024-11-06 08:42:04', 'submission_id': '1gksn3l'}
{'comment': 'True. The dems did botch that one. She still had plenty of chances to articulate what she would have done differently.', 'created': '2024-11-06 08:26:57', 'submission_id': '1gksn3l'}
{'comment': "Vice presidents don't do much. Their role is largely dictated by what the president wants them to do to, and even then, there is no real power there. \n\nThey advise but cant set policy. The biggest power they have is to serve as a tie breaker in a 50/50 split in the case of a senate tie. And of course to step in if the president cant serve anymore.\n\nThe role of VP was purposely made powerless so they couldn't challenge the president.", 'created': '2024-11-06 08:22:00', 'submission_id': '1gksn3l'}
{'comment': 'Potato, po-Tato. Beating voters over the head with an overly simplistic falsehood to a complicated problem works every time.', 'created': '2024-11-06 08:31:39', 'submission_id': '1gksn3l'}
{'comment': 'January 20th they will all say the economy is magically back and the best in the world', 'created': '2024-11-06 12:28:21', 'submission_id': '1gksn3l'}
{'comment': "Yes, that's what they said... keep othering and stigmatizing everyone who doesn't agree with you. Don't change. Don't learn anything. It definitely helps.", 'created': '2024-11-06 08:25:39', 'submission_id': '1gksn3l'}
{'comment': 'Pot meet kettle', 'created': '2024-11-06 08:18:43', 'submission_id': '1gksn3l'}
{'comment': 'Preach', 'created': '2024-11-06 09:12:27', 'submission_id': '1gksn3l'}
{'comment': "Not when he has the Senate, the Supreme Court, and probably the house. There is absolutely nothing we can do to stop the disaster heading our way. \n\nIf we take trump at his word, this country isn't going to be the same ever again. Project 2025 will be enacted and there's nothing we can do about it.", 'created': '2024-11-06 15:57:10', 'submission_id': '1gksn3l'}
{'comment': 'Honest question: would you actually care if elections were canceled and people were disenfranchised?', 'created': '2024-11-06 10:44:45', 'submission_id': '1gksn3l'}
{'comment': '“National Christian”\n\nThere’s been exactly one national Christian group in history: Nazis.\n\nBeing anti-national Christian is as American as it gets.', 'created': '2024-11-06 10:23:17', 'submission_id': '1gksn3l'}
{'comment': 'In my hundreds of door knocks and conversation, exactly one person brought up that ad: a Dominican woman in Lehigh County, PA. \n\nI don’t think it was the white people shivering at the thought of Kamala being too liberal.', 'created': '2024-11-06 23:01:27', 'submission_id': '1gksn3l'}
{'comment': 'Dude. Gender.', 'created': '2024-11-06 09:13:44', 'submission_id': '1gksn3l'}
{'comment': 'Not exclusive to America, but yeah :/', 'created': '2024-11-06 08:34:33', 'submission_id': '1gksn3l'}
{'comment': "Right, I am a cis woman thinking it's time to give up men", 'created': '2024-11-06 08:29:08', 'submission_id': '1gksn3l'}
{'comment': 'And Asians are racist against both black and hispanic.', 'created': '2024-11-06 10:10:47', 'submission_id': '1gksn3l'}
{'comment': 'Ok, I’m shocked - I honestly had no idea. So there are many, many overlapping reasons for losing the Hispanic vote. Thank you for your insight.', 'created': '2024-11-06 09:59:22', 'submission_id': '1gksn3l'}
{'comment': 'Why did Humans have to abandon the project of bettering themselves? They are returning to their ugly roots, much like the pre-enlightenment era!\n\nNo doubt this will plunge us into the dark ages!', 'created': '2024-11-06 08:32:08', 'submission_id': '1gksn3l'}
{'comment': 'Cope harder. She never claimed to be black until her campaign trail started.', 'created': '2024-11-06 08:38:02', 'submission_id': '1gksn3l'}
{'comment': 'One report I read was that a voter had 3 sons and she didn’t want her sons to die in Ukraine. So yes. That message that she was working with Liz Chaney and Chaney is a war hawk resonated with some people.', 'created': '2024-11-06 09:15:38', 'submission_id': '1gksn3l'}
{'comment': 'Bro do you have a job? Do you not see the economy is garbage', 'created': '2024-11-06 08:07:31', 'submission_id': '1gksn3l'}
{'comment': 'Proably but I Think she ran a good campaign (but also just wish sanders was young enough to run)', 'created': '2024-11-06 08:15:24', 'submission_id': '1gksn3l'}
{'comment': 'She also picked Walz over Pennsylvania Gov. Josh Shapiro.', 'created': '2024-11-06 08:18:31', 'submission_id': '1gksn3l'}
{'comment': 'Same playbook Hillary lost with', 'created': '2024-11-06 08:17:15', 'submission_id': '1gksn3l'}
{'comment': 'That is literally not true though. The campaign was all over.', 'created': '2024-11-06 08:17:50', 'submission_id': '1gksn3l'}
{'comment': 'Exactly right.', 'created': '2024-11-06 10:04:42', 'submission_id': '1gksn3l'}
{'comment': 'Are you saying black men would have been more likely to vote for a white woman?', 'created': '2024-11-06 08:12:04', 'submission_id': '1gksn3l'}
{'comment': 'I don’t really have any business posting here, but I will say that when I think of Kamala the word ‘black’ isn’t something that immediately jumps out at me. Obama was ‘black’ so to say whereas Kamala is a woman, and a lot like Hillary a not really likable one in my opinion.\n\nI had figured Trump would actually slog through this election, or maybe even outright be defeated given all the rhetoric in her favor I had been exposed to online.', 'created': '2024-11-06 08:23:01', 'submission_id': '1gksn3l'}
{'comment': "The entire premise of the comment I was responding to was that the votes were based on race and gender. I am addressing the comment on its own terms. \n\nAlso, many of the black men I saw interviewed said their reason was basically 'America isn't ready for a woman president.'", 'created': '2024-11-06 08:16:45', 'submission_id': '1gksn3l'}
{'comment': 'So what your saying is Kamala is not better than trump? Do you not see the flaws in what you are trying to say? \n\n\nFor the past 5 hours y’all were on here CONSTANTLY comparing this to Biden and trump in 2020 so don’t try to act as if it was not similar results.', 'created': '2024-11-06 08:21:17', 'submission_id': '1gksn3l'}
{'comment': "Unfortunately that guy's not here to have a real argument. He just wants to convince everyone that racism isn't a real issue so he can be more openly racist. Right now, he feels called out before he's even said anything explicit.", 'created': '2024-11-06 08:29:42', 'submission_id': '1gksn3l'}
{'comment': 'You said white man in your argument, there’s your answer.', 'created': '2024-11-06 08:16:50', 'submission_id': '1gksn3l'}
{'comment': 'You’re going to ignore literally every facet about her and her campaign and just focus on her being a woman? I’m sorry, but THAT type of thinking is actually sexist and so, SO immature.', 'created': '2024-11-06 08:37:04', 'submission_id': '1gksn3l'}
{'comment': 'Lolllll, we were gaslight about that. What a mess.', 'created': '2024-11-06 08:30:50', 'submission_id': '1gksn3l'}
{'comment': "I think the issue is that the macro economy is surging while the micro economy feels terrible, and *that's* what people are voting on. It doesn't matter to millions of Americans that the GDP and DOW are at record highs, it's that inflation has killed the average home and people can't afford stuff like they could four years ago. \n\nBiden also didn't talk about the economy enough in a way for people to understand that inflation is a global issue. Instead, he sort of let it be tied to his presidency and I think that enabled many voters to put some rose colored glasses on for Trump.", 'created': '2024-11-06 08:34:12', 'submission_id': '1gksn3l'}
{'comment': 'The US also had by far the least amount of restrictions of first world nations on the planet, which was largely due to push back AGAINST Biden’s policy. This actually hurts your argument.', 'created': '2024-11-06 08:38:30', 'submission_id': '1gksn3l'}
{'comment': 'Yeah. That was such a gag-worthy moment.', 'created': '2024-11-07 15:22:39', 'submission_id': '1gksn3l'}
{'comment': 'Yes', 'created': '2024-11-06 17:58:35', 'submission_id': '1gksn3l'}
{'comment': 'and you are still wrong.', 'created': '2024-11-06 16:12:02', 'submission_id': '1gksn3l'}
{'comment': 'America is the laughing stock of the world and a fascist oligarchy with dangerous Russian agents in power', 'created': '2024-11-07 04:37:48', 'submission_id': '1gksn3l'}
{'comment': 'Then exactly what is niche, that you are referring to? For me women’s right was THE issue that affects 50% of our population and is the main issue on the table.', 'created': '2024-11-06 14:56:06', 'submission_id': '1gksn3l'}
{'comment': 'fine by me.', 'created': '2024-11-10 18:49:15', 'submission_id': '1gksn3l'}
{'comment': 'A man who ran a campaign of lies won on promises that everyone with functioning brain cells knows will tank our economy and cause bloodshed and violence. \n\nBut hey, it makes you feel better about the people you hate anyway, so good on you I guess.', 'created': '2024-11-06 08:15:02', 'submission_id': '1gksn3l'}
{'comment': 'You do realize mixed people exist, right? They don’t necessarily have to pick a side. When I heard her speak, it didn’t sound like she was faking an accent. And you know she’s not going to have an Indian accent since she was born in America, right?', 'created': '2024-11-06 08:26:27', 'submission_id': '1gksn3l'}
{'comment': "No he doesn't lmao.", 'created': '2024-11-06 09:19:01', 'submission_id': '1gksn3l'}
{'comment': 'Come on man', 'created': '2024-11-06 08:20:07', 'submission_id': '1gksn3l'}
{'comment': 'I wish she won, but she has definitely lost unless there is a miracle', 'created': '2024-11-06 08:20:08', 'submission_id': '1gksn3l'}
{'comment': 'Vance has the same opinions of Trump, but none of the impulse issues. Trump is a wild card: he might agree and tow the party line/his donor’s demands, but he’s just as likely to buck them. Vance will completely tow the line, and like the good little puppet he is, he’ll dance and sing to his audience’s desires', 'created': '2024-11-06 22:25:03', 'submission_id': '1gksn3l'}
{'comment': 'In what sense for the 25th?', 'created': '2024-11-07 01:53:25', 'submission_id': '1gksn3l'}
{'comment': "That one doesn't puzzle me at all, actually. Most immigrants think they are the exception, and especially immigrants like Hispanics are seen as one group, but they all kind of dislike each other. Plus, a lot of them are from countries with a history of socialism, so the republican party is immediately seen as the opposite of that. What I don't understand is working class union members voting for Trump and GOP, but that's probably just stupidity and poor civic education.", 'created': '2024-11-06 18:45:50', 'submission_id': '1gksn3l'}
{'comment': '"The Democrats just have to realize it’s going to be a long time before a woman can be the nominee and win"\n\nThat is what I said the day President Biden nominated VP Harris. Half the country is still trying to digest how it ever was possible that a black man managed to be twice elected President. That he even survived without any assassination attempt on his life is a miracle. Maybe future generations in like 100 years might get the chance to elect a female President. Sadly, I really don\'t have much hope for this country\'s future', 'created': '2024-11-06 22:08:50', 'submission_id': '1gksn3l'}
{'comment': 'Literally that’s all it takes. These idiots simply listen to what is said and repeat it. There’s no thought.', 'created': '2024-11-06 16:16:20', 'submission_id': '1gksn3l'}
{'comment': 'Better yet, this is the fault of the illegals', 'created': '2024-11-06 19:12:46', 'submission_id': '1gksn3l'}
{'comment': 'This', 'created': '2024-11-06 16:09:33', 'submission_id': '1gksn3l'}
{'comment': 'You thinkkk Peter will wait that long?', 'created': '2024-11-06 13:46:03', 'submission_id': '1gksn3l'}
{'comment': 'Actually, if they can prop Trump up for two years, then appoint Vance, Vance could still “run” for 8 more years. That’s 10 years for the puppet boy.', 'created': '2024-11-06 21:35:22', 'submission_id': '1gksn3l'}
{'comment': 'That was one of my thought', 'created': '2024-11-06 15:33:40', 'submission_id': '1gksn3l'}
{'comment': "Oh damn!! I forgot about Vance. Now I'm really annoyed.", 'created': '2024-11-06 16:24:50', 'submission_id': '1gksn3l'}
{'comment': 'Yep.', 'created': '2024-11-06 16:36:20', 'submission_id': '1gksn3l'}
{'comment': 'The only worry is whether the cabinet would do it. He’s going to be picking the most despicable yes men he can find. Are they really going to vote to invoke the 25th?', 'created': '2024-11-06 20:36:03', 'submission_id': '1gksn3l'}
{'comment': 'That is one of the many reasons why he was the nominee', 'created': '2024-11-06 22:12:15', 'submission_id': '1gksn3l'}
{'comment': "Vance will be chewed up and tossed aside. He's simply the new Pence.", 'created': '2024-11-06 22:43:54', 'submission_id': '1gksn3l'}
{'comment': "Naw Trump will bribe Vance with an expensive couch. Vance won't be able to say no to those cushions and stay in his place. Trump staying on full time. Unless he has health issues, he's 78 and doesn't eat very healthy so there's a good chance he's gonna have health issues the next couple years.", 'created': '2024-11-07 00:56:18', 'submission_id': '1gksn3l'}
{'comment': 'More Boomers went liberal this time. Immigrants- Latinos and Arabs, Gen Z, and not being progressive fucked us. \n\nMy state voted for abortion and raising the minimum wage but went to Trump. Why is that? Is it because Democrats fail at meaningful legislation? My answer would be yes. Public healthcare should’ve been passed ASAP but the DNC just wants everyone to get along. Go nuclear to get it done by any means. Garland didn’t do shit as AG and in the finance world, the FDIC and regulatory agencies went apeshit with overregulation. Meanwhile, the SEC is the most feckless organization I’ve ever fucking seen which is where the real corruption is. \n\nEvery single leadership role at the DNC needs replaced, immediately.', 'created': '2024-11-06 15:22:31', 'submission_id': '1gksn3l'}
{'comment': 'Not all of us. I am 61, I voted blue all the way down my ticket.', 'created': '2024-11-06 15:36:36', 'submission_id': '1gksn3l'}
{'comment': 'When once again the millennials and Gen Z failed to vote it’s a little hard to blame older generations. If 18-40 YOs show up we would win. They. Don’t. Show. Up.', 'created': '2024-11-06 15:11:50', 'submission_id': '1gksn3l'}
{'comment': "Actually it's the youth vote that completely went missing. If you're mid twenties or even earlier statically speaking you can tell 4 out of five of your friends to fuck off today and you would be right.", 'created': '2024-11-06 17:36:55', 'submission_id': '1gksn3l'}
{'comment': 'This mess isn’t cleanable.', 'created': '2024-11-06 18:01:27', 'submission_id': '1gksn3l'}
{'comment': "It's men's fault. As a man I'm disappointed in us. Not disappointed enough to switch teams though.", 'created': '2024-11-06 16:49:53', 'submission_id': '1gksn3l'}
{'comment': 'That’s why I say the west coast and the upper east coast should secede. How would those red southern states survive without our tax dollars. Of course I’m kidding but not….', 'created': '2024-11-06 18:01:57', 'submission_id': '1gksn3l'}
{'comment': 'Operation T-4, if I recall, it was called.', 'created': '2024-11-07 01:39:33', 'submission_id': '1gksn3l'}
{'comment': "They won't learn.", 'created': '2024-11-06 17:34:46', 'submission_id': '1gksn3l'}
{'comment': 'California is strong. We welcome those in who act responsibly.', 'created': '2024-11-06 15:20:53', 'submission_id': '1gksn3l'}
{'comment': 'Please move to the purple states. That is the only way we take this back. Move to a blue pocket, but we cannot win by everyone only moving to blue states.', 'created': '2024-11-06 16:02:30', 'submission_id': '1gksn3l'}
{'comment': "Good point. I think I'll copy this somewhere as a reminder. It helps.", 'created': '2024-11-06 14:51:17', 'submission_id': '1gksn3l'}
{'comment': 'Thank you for saying this - blue dot in very red state over here. 👈', 'created': '2024-11-06 17:17:26', 'submission_id': '1gksn3l'}
{'comment': 'I heard ya. Totally. I want to go fuck something up myself.', 'created': '2024-11-06 14:32:51', 'submission_id': '1gksn3l'}
{'comment': 'Dems, Trans People, Gays, anyone who is a Pedophile, which is basically anyone that has a job around children for any reason that they disagree with, and or anyone remotely related to teaching "woke" culture. And then, anyone by extension who stands up for those groups. All it takes is one rally to turn violent to have them become the antifa boogeyman. We are truly sliding down the razors edge.', 'created': '2024-11-06 15:39:54', 'submission_id': '1gksn3l'}
{'comment': 'Was pissed too', 'created': '2024-11-06 22:17:34', 'submission_id': '1gksn3l'}
{'comment': 'Thank you! 😊', 'created': '2024-11-07 18:19:53', 'submission_id': '1gksn3l'}
{'comment': "And they deserve it. But I'm tired, and all I want is to rest for a few years and enjoy life. I've paid a crapload into social security, and I deserve the benefits I have earned. I started working when I turned nine years old (paper route), and I've worked hard continuously since then. I'm terrified that my future will be slinging burgers until my ultimate death as I keel over in the fryer.", 'created': '2024-11-06 22:26:53', 'submission_id': '1gksn3l'}
{'comment': "And I am deeply disappointed that so many dems sat on their ass and didn't go vote.", 'created': '2024-11-06 23:46:08', 'submission_id': '1gksn3l'}
{'comment': 'I was actually hoping it would have been him running instead of Kamala at first but she did an amazing job with what little time she had.\nThere was so much excitement at her rallies, I thought she had this.\n\nThe Dems f*cked us by hiding how bad Biden was getting until it was almost too late. \n\nWhat a horrible mess.', 'created': '2024-11-06 23:34:47', 'submission_id': '1gksn3l'}
{'comment': 'We need to work towards holding them accountable and attacking them.', 'created': '2024-11-07 01:39:23', 'submission_id': '1gksn3l'}
{'comment': 'They should just focus on helping people from lower income/wealth families. There are plenty of broke white people out there who need help whether they want to admit it or not.\n\nWhen they get to see they’re in the same boat as some of those racial minorities they might start to understand that the only groupings that really matter are based on money.', 'created': '2024-11-06 14:22:36', 'submission_id': '1gksn3l'}
{'comment': 'Even if he had, with the same legislative agenda passed and the same inflation happening, whoever was nominee could have lost the way pandemic incumbents have been losing the world over. Of course now all these folks who voted out the Democrats because of inflation are going to get to enjoy EVEN MORE inflation now.', 'created': '2024-11-06 20:15:54', 'submission_id': '1gksn3l'}
{'comment': "I agree. A lot of people might not realize how masculine and macho Latino culture is. Trump's machismo probably appeals to a lot of Latino male voters", 'created': '2024-11-06 17:45:41', 'submission_id': '1gksn3l'}
{'comment': 'I hear you and although I do believe there is a fringe of people that do blame white / male / older people for all problems, it’s not anywhere near a majority but Fox News, other MSM and certain social media spin it so that the white / male / older folks feel like they are being constantly attacked which is what Trump, the very wealthy, and Russia want - divide and conquer and it worked…again. Meanwhile they beg, borrow and steal from 95% of us and then have us pointing our fingers at each other how we got here.', 'created': '2024-11-06 16:47:50', 'submission_id': '1gksn3l'}
{'comment': 'Thanks for bringing up the important point that climate catastrophe is the ultimate outcome of a 2nd Trump term', 'created': '2024-11-06 14:39:36', 'submission_id': '1gksn3l'}
{'comment': "Nah. I'll just ride it out until I die. Maybe I'll lose some weight in the famines.", 'created': '2024-11-06 14:21:03', 'submission_id': '1gksn3l'}
{'comment': 'This is a sad day for this Country.', 'created': '2024-11-06 14:36:17', 'submission_id': '1gksn3l'}
{'comment': "You need a pretty huge garden and a ton of knowledge to sustain a family off of a backyard garden, and that's assuming the soil would even support it, long-term.", 'created': '2024-11-06 15:47:20', 'submission_id': '1gksn3l'}
{'comment': "This is what people don't understand", 'created': '2024-11-08 03:24:58', 'submission_id': '1gksn3l'}
{'comment': "They'll survive. The GOP would have survived in some form if Trump lost so it's no different. It's just whether they embrace the populism of Trump but with a different type of rhetoric or pivot to something else.", 'created': '2024-11-06 13:12:34', 'submission_id': '1gksn3l'}
{'comment': "Moving to the right is the wrong move, they need to move to the left. They problem isn't being too radical, it's being too safe. People don't want business as usual, they are tired of it, that's why Trump got so much attention, he's different. We need to go bigger and louder and more left.", 'created': '2024-11-06 14:59:30', 'submission_id': '1gksn3l'}
{'comment': 'I have no idea.', 'created': '2024-11-06 13:48:26', 'submission_id': '1gksn3l'}
{'comment': "After this result, I don't think you'll see much in the way of change in a mid-term. IF people don't care now, they're really not going to give a rat's ass in 2 years.", 'created': '2024-11-06 14:33:14', 'submission_id': '1gksn3l'}
{'comment': 'It could be sooner, we just don’t know. We are in uncharted territory. For all that people from authoritarian countries say they know how this goes, there are unique features of the United States (i.e. federalism) that make it unclear how things will shake out (like what can blue state governors do if faced with a conflict with federal authority).', 'created': '2024-11-06 13:09:21', 'submission_id': '1gksn3l'}
{'comment': ">We're just stuck confronting the awfulness of these people.\n\nI've never thought this before but it might be time for America to dissolve. The west coast and the Northeast can move forward. Red States can retreat further into their caves.", 'created': '2024-11-06 15:13:48', 'submission_id': '1gksn3l'}
{'comment': 'Seriously. How. There is no way he legitimately won ALL of it. No way\xa0', 'created': '2024-11-06 14:32:00', 'submission_id': '1gksn3l'}
{'comment': 'And no amount of re-branding can beat that. The American people just want an unqualified celebrity.', 'created': '2024-11-06 12:45:16', 'submission_id': '1gksn3l'}
{'comment': 'Quite possibly true. One of the prerequisites of maintaining a democracy is an informed electorate.', 'created': '2024-11-06 13:07:43', 'submission_id': '1gksn3l'}
{'comment': 'I also think sexism probably played a role.\n\nWith Biden swing voters could say "at least it\'s a man." But given some of the rhetoric around Harris, I think a lot of people just couldn\'t stomach a *woman* in power, for one stupid reason or another.', 'created': '2024-11-06 15:48:29', 'submission_id': '1gksn3l'}
{'comment': 'This, so much! I think so many people are that clueless, uneducated and ignorant. They only know about famous people and just vote for that without thinking of their polices and the consequences', 'created': '2024-11-06 17:49:03', 'submission_id': '1gksn3l'}
{'comment': 'That’s my thought. I feel like we’re edging closer to Idiocracy much faster than we thought.', 'created': '2024-11-06 22:43:52', 'submission_id': '1gksn3l'}
{'comment': 'Whatever you want to call them, we need to face the fact that there are more of them than there are of us.', 'created': '2024-11-06 13:32:23', 'submission_id': '1gksn3l'}
{'comment': 'Agreed. With plans to wreck the Dept of Education from the inside out is on their agenda.', 'created': '2024-11-06 16:44:47', 'submission_id': '1gksn3l'}
{'comment': '💯...spot on.', 'created': '2024-11-06 17:09:04', 'submission_id': '1gksn3l'}
{'comment': 'When you got a lemon make lemonade right?', 'created': '2024-11-06 17:58:02', 'submission_id': '1gksn3l'}
{'comment': "They're never going to blame him. He'll have 4 years to demolish the economy entirely, and they will spend all 4 years blaming Biden. These people are about to find out how hungry and indiscrimant leopards are about which faces they'll eat.", 'created': '2024-11-06 11:56:34', 'submission_id': '1gksn3l'}
{'comment': 'Trump will send out $100 checks with his name on them and voters will forget all about it. \n\nMost Trump voters aren’t sexist or racist or “deplorable” (though some are). They are economically illiterate.', 'created': '2024-11-06 14:11:33', 'submission_id': '1gksn3l'}
{'comment': "This has happened every cycle. Bush Sr fucked the economy, and it took the Clinton admin years to fix, then halfway through Newt and the GOP completely overhauled how Congress runs and not long after Bush Jr took over the economy went to shit again. Obama takes office and a supermajority of Dems come in and again pick up the pieces, then midterms come through and- BAM- housing crisis. \n\nVoters on the whole have yet to see the 'delay' that the administrations push, which leads to this back-and-forth over and over.\n\nAnd they are often intentionally pushed that way. For example, the original Trump/GOP cuts from his first admin are set to expire in 2025.. that was intentional because it would be RIGHT AFTER a possible Trump second term of 2020-2024... it's always a setup.", 'created': '2024-11-06 15:45:02', 'submission_id': '1gksn3l'}
{'comment': 'Biden acted like Walter Cronkite was going to tell America about all the good he’s done in office.', 'created': '2024-11-06 14:12:35', 'submission_id': '1gksn3l'}
{'comment': 'Well, just in time for 2028 election. Maybe the next Obama will save the US.', 'created': '2024-11-06 11:34:00', 'submission_id': '1gksn3l'}
{'comment': 'Trump is the worst enemy my country has ever faced. The division he has caused is probably the worst thing he has done. WWII united us. I think another attack on our country like 9/11 will show our division. Look at what happened after his mob attacked our capitol. A sacred building was attack and politicians almost killed and yet he has become the next president. You can blame Fox News for brainwashing half the country.', 'created': '2024-11-06 18:17:11', 'submission_id': '1gksn3l'}
{'comment': 'That’s why she got so many more votes, right?', 'created': '2024-11-07 00:05:24', 'submission_id': '1gksn3l'}
{'comment': "It's nitpicking things that shouldn't even have that large of an effect. The truth is that the average voter is not intelligent. She isn't perfect, but the alternative was objectively worse in every way.\n\nIf logic had any effect in our elections, Trump would've never won.", 'created': '2024-11-06 13:25:04', 'submission_id': '1gksn3l'}
{'comment': 'Now that we have Trump again the ban will be national. As will the ban on voting, per his own words.', 'created': '2024-11-06 09:48:57', 'submission_id': '1gksn3l'}
{'comment': "Simple? That's a huge disconnect", 'created': '2024-11-06 16:41:19', 'submission_id': '1gksn3l'}
{'comment': "Yeah, you're right.", 'created': '2024-11-06 20:10:24', 'submission_id': '1gksn3l'}
{'comment': 'The realistic hope is that fascist regimes in general are incompetent and tend to eat themselves when the cult of personalitiy figure head dies.', 'created': '2024-11-06 14:23:34', 'submission_id': '1gksn3l'}
{'comment': 'That’s fine, there’s no need to be condescending.\n\nI’m not saying you have to care about other people. But surely you can see how ironic it is to then say “I guess empathy is just too much to ask?” when you are actively expressing a lack of empathy yourself.\n\nAnd I can say confidently that a lack of empathy isn’t going to make things better.', 'created': '2024-11-06 16:35:22', 'submission_id': '1gksn3l'}
{'comment': "You're being part of the problem right now. You want to dismiss these guys instead of listening to perspective, and then wonder why they aren't engaged? The fact is, graduation rates for men and women have completely reversed from when we started making an effort with women. Educated people typically vote left. Its not rocket science, we're leaving a bunch of young men behind because of the advantages some of their grandfathers had, and calling them sexist and racist while we do it.", 'created': '2024-11-06 18:23:09', 'submission_id': '1gksn3l'}
{'comment': "I mean, this has been going on for over a year. You can keep creating reports that make the numbers look good and ignoring the issues. Biden's administration did that way before the election cycle really mattered. He didnt ever talk about the multiple mass layoffs since 2022. She also chose to ignore the real numbers and kept on with the same narrative. Simple as that.", 'created': '2024-11-06 13:37:30', 'submission_id': '1gksn3l'}
{'comment': 'Yes I agree. Although I think hubris from the Democrats did cause their loss in both 2016 and 2024 but each year for different reasons. \n\n2016, Clinton is part of a political dynasty (no one likes that) and the party didn’t have a competitive primary because who wanted to run against her when she had been running in the background already for years? Bernie was the only one who put up a fight against her and I think he would have beaten Trump. It was a terrible campaign they ran.\n\n2024, I don’t blame Harris. She, IMO, was more likable than Clinton, more easygoing and friendly. Harris truly did the best she could in the time she had, in the shadow of this administration. She was between a rock and a hard place. She ran a strong ground game and wasn’t taking anything for granted. \n\nBut BIDEN was the hubristic one. I feel like Biden lost, in a way, instead of Harris. He should have stepped aside after the 2022 midterms. The party should have been (in the background) building up a 2024 bench. After Dems did AMAZING in the midterms, the momentum was perfect. “I served as a bridge candidate to help us get past Trump and Covid. I’ve served my time but it’s time for me to retire and pass the torch to the next generation.” Then some Obama or Bill Clinton figure from the middle of nowhere no one’s ever heard of could’ve come up and built a voting coalition.', 'created': '2024-11-06 17:51:17', 'submission_id': '1gksn3l'}
{'comment': "That's fair. I put them both in the same boat because they both lost in a landslide. I'm just not ready to have Trump Pt 2 again. The world exploded.", 'created': '2024-11-06 08:58:17', 'submission_id': '1gksn3l'}
{'comment': "But Trump's immigration policy isn't any better or even effective. So is America is just dumb as rocks?", 'created': '2024-11-06 09:28:44', 'submission_id': '1gksn3l'}
{'comment': 'They didn’t do that, Trump killing the bill did.\n\nBut only adults knew that.', 'created': '2024-11-06 09:44:12', 'submission_id': '1gksn3l'}
{'comment': 'Sorry you’re getting downvoted. Biden didn’t address the issue for a long time. Not saying anything lets people like Trump create the narrative for you. It was blank space for people to build their own conclusions. I live near NY, used to live there myself, and I SEE that there IS an immigrant and homeless issue. There’s a clear difference in the city between the Bloomberg era and now. All people saw was that the problem got worse under Biden - the minutiae of policies and bills and “well actually it’s not that bad” were not in the forefront of people’s minds and Biden’s long silence didn’t help. I say this is a staunch Democrat and I hate Trump with my whole heart. But I’m a realist and won’t ignore what’s in front of me.', 'created': '2024-11-06 17:57:58', 'submission_id': '1gksn3l'}
{'comment': 'Well maga are white supremacists, so yea', 'created': '2024-11-06 12:00:27', 'submission_id': '1gksn3l'}
{'comment': 'And whose vote mattered more? Haitians or the Hispanic vote that Dems keep losing?', 'created': '2024-11-06 18:08:19', 'submission_id': '1gksn3l'}
{'comment': 'So what? Citizens ended up in those border camps the first time. Why wouldn’t they this time?', 'created': '2024-11-06 18:17:45', 'submission_id': '1gksn3l'}
{'comment': 'No she didn’t have “plans”. She had goals. Please explain to me her plan to actually reduce grocery prices.', 'created': '2024-11-06 18:06:23', 'submission_id': '1gksn3l'}
{'comment': 'Too little? Not really.', 'created': '2024-11-06 19:55:04', 'submission_id': '1gksn3l'}
{'comment': 'It was the DNC and Harris’s job to convince them to vote for her, let’s not start scapegoating.', 'created': '2024-11-06 17:11:36', 'submission_id': '1gksn3l'}
{'comment': 'I mean, it’s definitely stereotyping to say “young men want to be assholes.” And it doesn’t do anything to even try to fix the situation.', 'created': '2024-11-06 16:29:52', 'submission_id': '1gksn3l'}
{'comment': 'Nah they pushed Biden out and paid the price :/ he has been a good president but the media and dnc kept screaming about his stutter all summer instead of how trump was convicted of freaking 37 felonies.', 'created': '2024-11-06 10:13:49', 'submission_id': '1gksn3l'}
{'comment': 'Absolutely. If he would have let her go through the nomination process normally and more people got to hear her speak, might have helped\n\nBut Trump is an incredibly polarizing and incredibly charismatic leader. Hard to beat that', 'created': '2024-11-06 08:20:18', 'submission_id': '1gksn3l'}
{'comment': 'Voting isn’t just a personal popularity contest. You are getting the two things confused.\n\nKamala faced a much tougher political environment because Biden was a very unpopular President. On the other hand, Obama was popular and would have won a third term if he was allowed to run. But that voter satisfaction didn’t translate to Hillary because a lot of voters just didn’t like her. She didn’t have anywhere near the level of voter enthusiasm that Kamala had.', 'created': '2024-11-06 09:16:10', 'submission_id': '1gksn3l'}
{'comment': "They will just blame the companies for going against trump. Trump knows what to do and is being held up by the corporate elite. That's how simple the republican mind is", 'created': '2024-11-06 20:41:49', 'submission_id': '1gksn3l'}
{'comment': 'That\'s the one most important reason. Many people are ignorant and easily swayed. Conservatives own the media and social media. Their messaging is simplistic but that makes it easier to understand to many. You have the same issue in every country in the world, the right\'s messaging is easier to disseminate because there\'s less nuance, and people like hearing "I have a simple solution to this very complex issue" over "let\'s work together and it\'s gonna take time because we need to be certain we\'re doing the right thing for everyone".', 'created': '2024-11-06 11:47:01', 'submission_id': '1gksn3l'}
{'comment': 'That has been in the works for years, yet it seems Democrats have ignored it. How many local stations does Fox/Sinclair own? They’ve been gobbling them up across the nation.', 'created': '2024-11-06 11:16:01', 'submission_id': '1gksn3l'}
{'comment': 'Agreed. Epic fail on our part.', 'created': '2024-11-06 08:52:13', 'submission_id': '1gksn3l'}
{'comment': 'The problem with that argument is, since when have corporations not been greedy? The truth is that corporate greed could to some degree hitchhike on inflation to increase profit margins, but they couldn’t do that without the actual inflation that happened. Also, the fact that people kept buying despite high prices meant they could keep prices high.', 'created': '2024-11-06 13:39:50', 'submission_id': '1gksn3l'}
{'comment': 'Welcome back to the Spoils system. The saving grace is that incompetence will make our jobs of reclaiming power easier.', 'created': '2024-11-06 08:55:07', 'submission_id': '1gksn3l'}
{'comment': "That's the worst part. We're in for a Russia style oligarchy.", 'created': '2024-11-06 11:49:07', 'submission_id': '1gksn3l'}
{'comment': 'We deserve what we get.', 'created': '2024-11-06 10:19:29', 'submission_id': '1gksn3l'}
{'comment': 'Most of the cabinet members have to be approved by a majority of the senate. It is most likely that the Republicans will have 51 or more members, but there are a few who vote with their conscience like Lisa Murkowski. She and Trump are not particularly fond of each other, especially after she was one of the few Republican senators who voted to impeach Trump for his January 6th insurrection.', 'created': '2024-11-06 12:14:22', 'submission_id': '1gksn3l'}
{'comment': 'And the ways to counter that are to educate people. We\'ve now had multiple generations who have formative experiences that state the patriotic thing to do is "Go Shopping" in the immortal words of George W. Bush. \n\nThere is a REAL opportunity to grab the mantle of fiscal responsibility and discuss the virtues of saving. Defang the GOP\'s issues by showing WE are the ones that have the actual solutions. We can fight fire with fire. If they want things the way they used to be, let\'s show people the tax brackets from the 1940s-1970s. If they want better wages, show them the inflation-adjusted minimum wage from 1969.\n\nThat\'s the era of PROGRESSIVE economics.', 'created': '2024-11-06 13:57:37', 'submission_id': '1gksn3l'}
{'comment': 'The president’s number one job is to be a moral figurehead and leader of the people. The “storyteller in chief” as Obama put it.', 'created': '2024-11-06 15:25:44', 'submission_id': '1gksn3l'}
{'comment': "That's why we, as the party, need to be the ambassadors and foot soldiers for Democrats each and every single day--not just during election season. Races are won by creating the right issues and being on the right side of them.", 'created': '2024-11-06 08:54:10', 'submission_id': '1gksn3l'}
{'comment': 'Harris had no real captivating policies aside from the homebuilding/tax credit incentive. That\'s not all that transformative and not nearly enough to break through the Trumpism gish gallop. \n\nWhen I mention policies, I mean galvanizing and transformative items that demand debate and scrutiny--the types that change the language and focus of the race and the nation. Harris moderated herself too much and ran a defensive campaign that was more about Trump than about her own agenda.\n\nYou don\'t beat a demagogue by being timid with your own policies in an environment when people are conditioned to want change and someone to be held accountable for "something". I sincerely hope the takeaway isn\'t that we need to be more bland in 2028.', 'created': '2024-11-06 14:55:44', 'submission_id': '1gksn3l'}
{'comment': 'Trump also had no plan but at least he was familiar. Kamala didn’t have time to prove herself. Counting on abortion as the key issue was wrong. Counting on republicans to switch was wrong.\n\nBiden should have withdrew way sooner. He said he wasn’t going to run again too but then didn’t keep that promise. He might have undone his own legacy.', 'created': '2024-11-06 09:05:47', 'submission_id': '1gksn3l'}
{'comment': 'Meh we can agree to disagree. She suffered the same fate as hilary clinton. I doubt the time difference would made Latinos to change their mind and media giving her advantage.', 'created': '2024-11-06 08:45:14', 'submission_id': '1gksn3l'}
{'comment': '“People said they were worse off”\n\nSo the two biggest components of that are global inflation and Trumps trillion dollar corporate giveaways. Good thing they just voted for making both of those drastically worse.\n\nI look forward to hearing how it’s still liberals fault though.', 'created': '2024-11-06 09:51:28', 'submission_id': '1gksn3l'}
{'comment': 'How is that cope? Exit polls said that 70% of Americans who voted felt like they were doing worse financially than they were a year ago. \n\nYou really want to tell me that Harris really only having 2 months to campaign had no contributing factor into her failing to get the Latino and female vote to come out for her like they did for Biden? Especially when the deciding factor ultimately came down to the economy first rather than reproductive rights? \n\nThat’s not a sign of sexism, that’s a sign that you failed to get the message out', 'created': '2024-11-06 13:00:52', 'submission_id': '1gksn3l'}
{'comment': 'Eh, it happened in 2016 and unfortunately it happened tonight. The midterm election is their last chance before the party completely implodes on itself.', 'created': '2024-11-06 08:57:51', 'submission_id': '1gksn3l'}
{'comment': "This wasn't about her being a woman.\xa0 It was about how the right shaped the narrative and kept conversion around the economy and immigration.\xa0 Biden does no better, even if he was excellent in his debate.\xa0 Pete can win if you ask me.\xa0 The tides are changing, and the right isn't all about religion anymore.\xa0 It's about connecting with\xa0 working class people and with more than policies.", 'created': '2024-11-06 13:07:22', 'submission_id': '1gksn3l'}
{'comment': "Yup. Two difference issues with Hilary and Harris.\n1) Hilary was just unlikable to the average person in 2016, Trump was polarizing too. (I hated her campaign and I'm not even from US). \n2) Her campaign was alright, but she didn't have much time and the deck was stacked against her. She's just normal to me. \n\nI guess US simply just doesnt want a female president over a criminal and some1 who constantly hates all the time.", 'created': '2024-11-06 08:55:35', 'submission_id': '1gksn3l'}
{'comment': 'When all the people talk about not wanting to support a woman, all the reasons they give describe Trump.', 'created': '2024-11-06 10:17:20', 'submission_id': '1gksn3l'}
{'comment': 'I absolutely agree.', 'created': '2024-11-06 09:42:14', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-09 01:16:29', 'submission_id': '1gksn3l'}
{'comment': 'Yes. We were begging people to take the moral high ground and get rid of a traitor but they overestimated how much people care about that and only care about the key issues that they have been saying. \n\nAnd when it came down to it, everyone lied to pollsters because Trump is so morally corrupt that they didn’t feel good about responding.', 'created': '2024-11-06 09:09:28', 'submission_id': '1gksn3l'}
{'comment': "There were difficult decisions all around, I might even say she'd done as well as one could in her position.\n\nAs sitting vice-president, it would've been hypocritical for her to take a public stance against the administration's policies while still having to fulfill her duties.\n\nWithout a primary, she more or less took over the campaign rather than won it. Biden also endorsed her. It may have looked like pandering and not have been taken too credibly if she suddenly opposed some of his policiws.\n\nIt also appeared that Biden is quite prideful and was already nursing an injured ego in the dying days of his campaign. So there was a risk of breaking that relationship without any real gains with the electorate.\n\nThe Democratic establishment should have primaried instead of deciding what was best for voters.", 'created': '2024-11-06 08:43:23', 'submission_id': '1gksn3l'}
{'comment': "LOL that wasn't my point. But your democratic party doesn't learn from mistakes.", 'created': '2024-11-06 17:35:13', 'submission_id': '1gksn3l'}
{'comment': "While it is a factor for some small portion of RV, there is equally or rarher a larger group of progressive/left people that would be in support of the first woman president. That was one of Hillary's biggest advantages against Trump in 2016. A female republican would have a much harder time running than a female democrat. the fact that she lost the black vote and woman vote as much as she did says something about HER not her identity as a female", 'created': '2024-11-06 09:20:57', 'submission_id': '1gksn3l'}
{'comment': 'I’m honestly thinking it’s time to give up America. God, what a country that would elect a convicted felon - I have no words.', 'created': '2024-11-06 10:01:15', 'submission_id': '1gksn3l'}
{'comment': 'It’s not just men tho. White women showed up for trump again and I believe a solid number of Hispanic women voted for him as well. I think simply blaming men for this makes things worse and alienates a demographic even further', 'created': '2024-11-06 08:37:44', 'submission_id': '1gksn3l'}
{'comment': 'Why? Because the worst trash among us don’t come along willingly.\n\nYou improve things without them and they come along or get left behind. Simple as.', 'created': '2024-11-06 10:24:07', 'submission_id': '1gksn3l'}
{'comment': 'she didn\'t need to "claim" to be black. she is black.', 'created': '2024-11-06 08:40:15', 'submission_id': '1gksn3l'}
{'comment': 'It’s really not though lmaoooo', 'created': '2024-11-06 08:11:41', 'submission_id': '1gksn3l'}
{'comment': "The economy is not garbage. Everyone who was moderately informed about the economy, or paying attention to news was aware that the pandemic caused disruptions to supply chains & shortages. The shortages resulted higher prices. Economists predicted a period of post-pandemic inflation. This is a global phenomenon. The US actually has had the best recovery, and we avoided a recession. US unemployment is low. Wages have been increasing.\nThe one thing that has remained high is groceries. But this isn't an inflation thing. And we know this because the grocery chains have posted record profits. If their costs were still high because of inflation, prices would be high because the cost is passed on to the consumer, but high inflationary prices cut into profits. The situation is greed-flation. Grocery chains have kept prices artificially high to gouge consumers & make more money.\n\nBut eggs are still expensive. And too many Americans are unable to comprehend basic concepts learned in high school. They just regurgitate right-wing propaganda so we get a whiney old dictator douche & tariffs. \n\nI so hate this country now & just want an asteroid strike.", 'created': '2024-11-07 06:55:52', 'submission_id': '1gksn3l'}
{'comment': "Correct but being judged on Biden's politics is also a bit skewed so Harris didn't have more decision rights in general terms than those Biden took, but she had to take the bullet for his failures and where I land somewhere in the analysis and will be very interesting to see what the analysis turns out to be from the Democrats' side what went wrong!", 'created': '2024-11-06 08:14:40', 'submission_id': '1gksn3l'}
{'comment': 'Shapiro is as weird as hell. Moreover, even if we took PA, we would have still lost the rest of the blue wall. At least this way, we got to know Walz. He’s amazing.', 'created': '2024-11-06 08:41:34', 'submission_id': '1gksn3l'}
{'comment': 'In general the democrats have abandoned these areas thinking the big cities would make up the numbers , it just never works out', 'created': '2024-11-06 08:20:09', 'submission_id': '1gksn3l'}
{'comment': 'Yes, more Black men voted fir Hillary.', 'created': '2024-11-06 13:12:18', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-06 08:29:59', 'submission_id': '1gksn3l'}
{'comment': 'bc they’re the opposite of black women ??', 'created': '2024-11-06 08:17:18', 'submission_id': '1gksn3l'}
{'comment': 'i think she did the exact opposite. She did focus on women reproductive rights. but she didn’t focus the campaign on her being a woman unlike hilary', 'created': '2024-11-06 08:47:40', 'submission_id': '1gksn3l'}
{'comment': 'That has nothing to do with it. \n\nThe US economy is objectively in fantastic shape. The Wall Street Journal wrote about it last week - even as their Murdoch op-eds all talked about Trump, their finance writers wrote about how good of an economy the next President will inherit.', 'created': '2024-11-06 08:58:53', 'submission_id': '1gksn3l'}
{'comment': 'That’s nice. If you can’t refute anything and can only rely on absolute statements you have no credibility anyway. Your responses are basically “No u”.', 'created': '2024-11-06 23:03:53', 'submission_id': '1gksn3l'}
{'comment': 'She put on a fake Midwest accent she pulled a black preacher accent out of nowhere but saying you\'re a proud Indian than switching to black is like me just completely disregarding my native American ancestry for "I\'m a proud Mexican foo" it\'s just plain dishonest', 'created': '2024-11-06 08:37:30', 'submission_id': '1gksn3l'}
{'comment': 'I’m just saying that until this race is officially over we should not rush to saying all is lost. If she loses then so be it lol', 'created': '2024-11-06 08:22:29', 'submission_id': '1gksn3l'}
{'comment': "Have you not been paying attention? He's suffering from advanced dementia. He's completely incoherent.", 'created': '2024-11-07 02:17:13', 'submission_id': '1gksn3l'}
{'comment': 'I agree with you. I just think Obama is a once in a generation type politician who was able to overcome the racism. Idk how many remember but Republicans were calling him all sorts of names and accusing him of all sorts of crazy things.', 'created': '2024-11-07 01:21:44', 'submission_id': '1gksn3l'}
{'comment': 'I don’t', 'created': '2024-11-06 15:00:45', 'submission_id': '1gksn3l'}
{'comment': 'Until he gets a pardon', 'created': '2024-11-06 16:00:12', 'submission_id': '1gksn3l'}
{'comment': 'That’s my thought too, squeeeeeeeze it out and execute as much of project 2025 as possible. Try to pass 3rd term legislatIon or then push Vance in.', 'created': '2024-11-07 04:51:45', 'submission_id': '1gksn3l'}
{'comment': 'Project 2025 will be in the Oval Office desk chair within two years. If you can’t leave the country try to book it to a blue state for at least a little protection.', 'created': '2024-11-06 18:00:59', 'submission_id': '1gksn3l'}
{'comment': 'In my lifetime and I am half a century old, I have watched Democrats care more about reelection than passing any controversial bills that would solve our societies’ issues. I also saw the slow creep of the Republican destruction and knew that there is no one to save us from it. I have watched this in all of one single lifetime and knew Americans would fail the smell test. They stink. And now we have the same shit smell on us as well because we are forced to lay in the same bed, unable to do anything about it.', 'created': '2024-11-06 17:42:58', 'submission_id': '1gksn3l'}
{'comment': 'Gen Z males have been brainwashed with a tilted right wing media machine. I hope they aren’t a lost cause because that’s bad news for Dems.', 'created': '2024-11-07 06:04:50', 'submission_id': '1gksn3l'}
{'comment': 'Yeah me too. Traitor to our demographic. I really want to see progress in my lifetime.', 'created': '2024-11-06 17:19:12', 'submission_id': '1gksn3l'}
{'comment': 'I’m mid 30s. And I’m not talking about the people that didn’t vote. That’s a different discussion. That’s a failure on the democratic party again.', 'created': '2024-11-06 17:47:41', 'submission_id': '1gksn3l'}
{'comment': 'They’ll all try to ride on Texas and Florida', 'created': '2024-11-06 19:57:45', 'submission_id': '1gksn3l'}
{'comment': 'I’m not! This thought was one of many that kept me up last night.', 'created': '2024-11-06 22:17:30', 'submission_id': '1gksn3l'}
{'comment': 'Trade ya', 'created': '2024-11-06 16:57:47', 'submission_id': '1gksn3l'}
{'comment': 'That is very kind. I hope we will all get through this. Together is the only way to move forward, now more than ever.', 'created': '2024-11-06 14:55:28', 'submission_id': '1gksn3l'}
{'comment': 'Into a vat of lemon juice.', 'created': '2024-11-06 16:16:27', 'submission_id': '1gksn3l'}
{'comment': 'Exactly—A “Helping Broke People” program will disproportionately help disadvantaged minorities, but is both better and more politically palatable if it helps broke white people too.', 'created': '2024-11-06 14:24:25', 'submission_id': '1gksn3l'}
{'comment': 'I hope you can find something that brings you joy until the end. I’ve always said it’s more important how you live than how you die.', 'created': '2024-11-06 15:20:44', 'submission_id': '1gksn3l'}
{'comment': "i have a pretty giant garden, it's very very hard. people have no idea. it's really not even viable frankly, like economically(but i guess that might change, shudder)", 'created': '2024-11-06 17:12:55', 'submission_id': '1gksn3l'}
{'comment': "A family of five can easily feed themselves on a 1/4 acre. It will take more space to separate the winter boxes that must be protected (snow can act as an insulator), but small communities could do it. For cities, they'd have to start taking back space and using green architecture, but it's possible on small scale. People in big cities will have to disperse or die. Same thing with the 2 billion estimated to live in the uninhabitable zone. I'm not saying everyone will survive, far from it, but I'm saying that those who do will have to become self sufficient.\n\nWhat do you think the end goal of neoliberalism is? The rich are dumb, but they're not stupid. They can see the writing on the wall, they just think their wealth will protect them. They are trying to build bunkers, mega-yachts, plan for Mars, all kinds of dumb crap. But they plan to just let the rest of us die. They will suck every ounce of wealth from the world because that's all they know how to do, then we go the way of the dinosaur.", 'created': '2024-11-06 16:50:56', 'submission_id': '1gksn3l'}
{'comment': 'They will survive as something I can no longer support. This country does not need to move to the right, it needs to move to the left for survival. If we become like them, they have won.', 'created': '2024-11-06 14:48:44', 'submission_id': '1gksn3l'}
{'comment': "Well, about 13 million people who voted for Biden either stayed at home or chose Trump. If they don't care, then they should suffer the full consequences.", 'created': '2024-11-06 14:35:03', 'submission_id': '1gksn3l'}
{'comment': 'As an NC native pretty please don’t leave me with fhem', 'created': '2024-11-06 16:29:12', 'submission_id': '1gksn3l'}
{'comment': "The problem is it's really more a rural/urban divide. Even in California there are large rural areas that are Trump country.", 'created': '2024-11-06 17:48:01', 'submission_id': '1gksn3l'}
{'comment': 'Let’s not forget that margins in blue stares were extremely tight. Harris had smaller margins in Virginia, NJ, Illinois, and even Connecticut.', 'created': '2024-11-07 06:13:30', 'submission_id': '1gksn3l'}
{'comment': "I agree. Let's wait for the lawyers' take. Marc Elias, where are you?", 'created': '2024-11-06 16:53:55', 'submission_id': '1gksn3l'}
{'comment': 'I know she conceded but I hope to god the FBI is investigating this and something explosive that implicates Musk and Russia comes out soon bc I know people suck, and he has hardcore supporters but there’s just no way this many dems sat out the election. It feels impossible that he would win the popular vote when he’s the least popular he’s ever been. I know I sound like a conspiracy theorist, but this is suspicious as hell and I want evidence (either way).', 'created': '2024-11-07 11:25:19', 'submission_id': '1gksn3l'}
{'comment': "It's not that they specifically want unqualified, it's that the average voter isn't knowledgeable enough to gauge qualified. When trump's answer on tariffs, the nuclear triad, the presidential records act or Roe is factually incorrect, the average voter does not know that as long as he speaks confidently.", 'created': '2024-11-06 13:41:58', 'submission_id': '1gksn3l'}
{'comment': 'A majority of the American people wanted someone who hates the same people they hate.', 'created': '2024-11-06 15:10:46', 'submission_id': '1gksn3l'}
{'comment': 'Well, when that lemon is a rotten orange, it’s kinda hard to make lemonade.', 'created': '2024-11-06 18:14:04', 'submission_id': '1gksn3l'}
{'comment': 'This. Inflation happened from the Covid stimulus, which happened under Trump and we needed it. But the repercussions were under Biden.\n\nWe won’t feel Trumps problems now until 2030', 'created': '2024-11-06 12:32:50', 'submission_id': '1gksn3l'}
{'comment': 'I’m afraid there’ll never be another election. He did say ‘you’ll never have to vote again…’', 'created': '2024-11-06 11:48:26', 'submission_id': '1gksn3l'}
{'comment': 'Why do the democrats always have to clean up the damn mess? And then get shit on for not doing it fast enough?!', 'created': '2024-11-06 12:00:03', 'submission_id': '1gksn3l'}
{'comment': 'There’s no saving US. These heathens will never let go of power. Since he campaigned on the purge have to open carry now. Getting a gunslinger holster and carrying my sword. Told my wife we would need it.', 'created': '2024-11-06 12:09:17', 'submission_id': '1gksn3l'}
{'comment': "It's very optimistic of you to think that there will be a 2028 election", 'created': '2024-11-06 13:41:19', 'submission_id': '1gksn3l'}
{'comment': "I'm selling tp by the tons, I'll give you a good price, let me know.", 'created': '2024-11-06 12:27:09', 'submission_id': '1gksn3l'}
{'comment': 'your mistake is basing the quality of the campaign on votes LOL.', 'created': '2024-11-07 00:14:19', 'submission_id': '1gksn3l'}
{'comment': "> If logic had any effect in our elections\n\nThis, specifically. The path to the White House isn't won with policy but won with appealing to baser human instincts.\n\nHarris' lost, but her policies (and the policies Democrats tend to champion for) continue to poll well and see broad support. Florida's abortion rights ballot measure breached 50% and failed due to the state's requirement of 60%. Florida also overwhelmingly voted for the GOP.\n\nThere will be much soul searching and hand wringing and blame gaming, but fundamentally I think that while there is latent social progressiveness everywhere, the national consciousness as a whole will never tolerate it. Not only did Harris lose, her margins in Democrats strongholds and in counties typically voting blue were either eviscerated or completely flipped. _That_ is what's appalling to me. \n\nThere is no winning without appealing to the collective's baser human instincts.", 'created': '2024-11-06 15:00:41', 'submission_id': '1gksn3l'}
{'comment': ">The truth is that the average voter is not intelligent.\n\nNo, what's not intelligent is putting up a candidate who couldn't win a primary in 2020. Putting up a candidate that didn't have a clear political campaign. Putting up a candidate that in May had a dismal approval rating. Putting out numbers that make the economy look great that do not match how Americans feel. Ignoring important key factors and making people only focus on things that most Americans don't care about.\n\nIf Democrats had any smarts, they would actually address things rather than bashing trump voters. And they would recognize that they should have never put Harris up.", 'created': '2024-11-06 15:05:42', 'submission_id': '1gksn3l'}
{'comment': 'Well I guess my point was that these things did have an effect.\n\nWe can say they are illogical and the average voter isn’t intelligent… but WE are supposed to be logical and intelligent. We know the rules of the game, how the score is kept, and what moves the needle. Why can’t we figure out how to win?', 'created': '2024-11-06 15:24:11', 'submission_id': '1gksn3l'}
{'comment': "He's flip-flopped on this and will probably continue to do so, but of course the hope is he doesn't implement something as draconic as that.\n\nIf he does though, that just proves that people voted selfishly this election and probably will not care unless it affects their bottom line or someone close to them.", 'created': '2024-11-06 09:59:36', 'submission_id': '1gksn3l'}
{'comment': "I say it's simple because it's pretty simple from my PoV: voters will not vote for Democrats, but will vote for their policies. There is something particularly toxic about the Democrats as a label which turn voters away, in ways which no amount of messaging, no amount of speaking or shouting would ever change.", 'created': '2024-11-07 00:18:55', 'submission_id': '1gksn3l'}
{'comment': "Yes, but why? How best to communicate this? Democrats say directly that they support these things. On cannabis, for example, Kamala came out to propose full legalization.\n\nHow are people missing this connection? It's not subtle.\n\nOne explanation is that the right-wing propaganda machine is strong, and these messages aren't getting through.\n\nWe need to figure out how to counter this.", 'created': '2024-11-06 18:34:05', 'submission_id': '1gksn3l'}
{'comment': 'This, and also, maybe the House goes democrat and they can’t get anything substantial done. Knock on wood, that hasn’t been called yet.', 'created': '2024-11-07 00:24:07', 'submission_id': '1gksn3l'}
{'comment': 'It’s so frustrating that the layoffs weren’t addressed. Dems should have addressed and hammered in protectionist policies of their own. Outsourcing taxed to companies out the ass. Same with AI replacing workers. The tariff message from Trump, as stupid as it likely will be in practice, worked. Dems need to make clear what THEY will do to keep jobs here.', 'created': '2024-11-06 17:37:43', 'submission_id': '1gksn3l'}
{'comment': 'Uh huh. Biden stopped it didn’t he?', 'created': '2024-11-06 15:50:30', 'submission_id': '1gksn3l'}
{'comment': "I think the point is that they will also go after documented immigrants - Haitians being an example. \n\nWhat's to stop them from going after documented Latino immigrants next?", 'created': '2024-11-06 18:48:49', 'submission_id': '1gksn3l'}
{'comment': 'I have no clue what you are talking about. Those in the border camps rarely receive a dual purpose immigration status that allows them to become citizens.', 'created': '2024-11-06 19:06:14', 'submission_id': '1gksn3l'}
{'comment': "And Trump's plan for that is...?", 'created': '2024-11-06 18:51:55', 'submission_id': '1gksn3l'}
{'comment': 'Yall are trying to scapegoat Black voters. Give me a break. White people and Hispanics want Dems to abandon Blacks and LGBT. If Dems did that they would win almost every election. Plain and simple.', 'created': '2024-11-06 17:23:20', 'submission_id': '1gksn3l'}
{'comment': 'I do wonder what would have happened if they had kept Biden.\n\nIn debate #2 Biden could have proved all the naysayers wrong about his cognitive abilities.\n\nHe bet Trump in 2020.', 'created': '2024-11-06 10:35:48', 'submission_id': '1gksn3l'}
{'comment': '“Charismatic”\n\nMakes it sound like a positive trait. The reality is his charisma is hating all the same people useless trash cowards hate.', 'created': '2024-11-06 09:53:59', 'submission_id': '1gksn3l'}
{'comment': 'Charismatic. We now get the party of school shootings and profanity on flags.', 'created': '2024-11-06 10:25:28', 'submission_id': '1gksn3l'}
{'comment': 'What are Democrats supposed to do? Convince billionaires to be nice and not buy papers and social media platforms?', 'created': '2024-11-06 11:48:30', 'submission_id': '1gksn3l'}
{'comment': '>The saving grace is that incompetence will make our jobs of reclaiming power easier\n\nHow? They have a stronghold on all three branches of power. It might be decades before we have a fair election again.', 'created': '2024-11-06 11:50:28', 'submission_id': '1gksn3l'}
{'comment': 'The impressive thing about Trump & the maga movement is that they went no holds barred, win at all costs for 3 election cycles. Like the saying goes sometimes it has to get worse before things get better & maybe the gloves have to come off.', 'created': '2024-11-06 11:22:50', 'submission_id': '1gksn3l'}
{'comment': None, 'created': '2024-11-06 13:23:47', 'submission_id': '1gksn3l'}
{'comment': 'And his minions will do what they can to get those senators out of the way.', 'created': '2024-11-06 14:16:10', 'submission_id': '1gksn3l'}
{'comment': 'Your point is that policies matter tho so what policies of Trump’s are these people so excited for? The fact he will raise prices dramatically across the board? Decimate the work force in food and construction with his deportations? There were no galvanizing or transformative items he was selling that have any basis in anything other than fear. Not a single thing to make their lives better. Just an excuse to blame *them* whether that be immigrants or trans people. There are no Dem “policies” to break through that fear mongering. This is about messaging and his voters either don’t know or don’t care how much damage he will do to their bank accounts and their lives.\n\nThe only thing that matters is that they don’t like *what is happening right now for their pocketbooks* so they punished the party in power. There is no policy that counteracts that kind of wild economic misunderstanding on a societal scale. Dems need our own effective propaganda machine, and we need to be ruthless.', 'created': '2024-11-06 15:17:47', 'submission_id': '1gksn3l'}
{'comment': 'Biden should not have run for reelection period. We also should’ve voted for braver democrats than whatever we have now. I remember the moment he announced his reelection campaign, there was some pushback from the party. The only reason that pushback ended was because members were threatened with losing future campaign support (effectively a threat against their career).', 'created': '2024-11-06 09:11:33', 'submission_id': '1gksn3l'}
{'comment': '🤷\u200d♂️ one’s thing for sure, Biden single handedly lost this election the moment he decided to run for reelection. \n\nI was deadass not gonna vote at all if he was still on the ticket because it wouldn’t have mattered, Trump would’ve won in a landslide. Im from PA and that’s how strongly I felt about this.', 'created': '2024-11-06 08:56:38', 'submission_id': '1gksn3l'}
{'comment': 'I mean, Trump wasn’t the reason why Kamala only had 2 months to not only start a campaign but also get the message across to voters. \n\nNot everyone has enough time to read 100+ pages of policy and then compare it to whatever policy Trump had documented. At the end of the day, the exit polls clearly showed that the last minute deciding factors amongst Latinos and women was the economy first and reproductive rights second. \n\nWhen you’re voting in a state that protects reproductive rights via a ballot measure or through their state constitution, the economy will always be a deciding factor for you. \n\nSo yes it’s the liberal’s fault for not pushing back harder when Biden said he was running for reelection. We’re so full of cowards that we only pushed Biden out when it became abundantly clear that he was harming other senate races and by then it was too late.', 'created': '2024-11-06 13:10:13', 'submission_id': '1gksn3l'}
{'comment': "No, women have to do so much more in campaigns. That's sexism. In 3 sentences, tell me the tenants to Trumps campaign?", 'created': '2024-11-06 13:05:38', 'submission_id': '1gksn3l'}
{'comment': 'Pretty sure 11/5/24 will be the recorded date of implosion', 'created': '2024-11-06 08:59:03', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-09 03:05:26', 'submission_id': '1gksn3l'}
{'comment': "Polls are garbage. It's 2024 they should just use AI to tell them what the pulse is on various platforms.", 'created': '2024-11-06 09:11:52', 'submission_id': '1gksn3l'}
{'comment': "The fact that you didn't answer the question speaks volumes.", 'created': '2024-11-06 17:36:11', 'submission_id': '1gksn3l'}
{'comment': "The gender gap is real. I live in a 50 50 town in Massachusetts. The Trump supporters are not who I want to hang with, and more are men than women. It is a real issue. I do not think the US is ready for a woman president. And there are women that can't support that either. But the toxicity is coming from men, and there are women that follow their partners lead. You can think what you want, but there was a reason ads were being run to say your vote is private, directed at women. After counting votes tonight, the disconnect between president choice and ballot questions told me that Trump supporters do not connect the dots, they really are about cult of personality. And he is a man like the Kardashians that I just can't understand why people watch them.", 'created': '2024-11-06 08:51:35', 'submission_id': '1gksn3l'}
{'comment': 'Again, a significant number of black men interviewed cited her gender. \n\nAlso, the idea that there are a ‘ton’ of reasons for anyone to vote for Trump is laughable garbage. \n\nHe ran exclusively on lies designed to scare people.', 'created': '2024-11-06 08:31:49', 'submission_id': '1gksn3l'}
{'comment': 'You can thank Biden for that one.', 'created': '2024-11-06 08:17:50', 'submission_id': '1gksn3l'}
{'comment': 'because ou are lying.', 'created': '2024-11-06 23:16:40', 'submission_id': '1gksn3l'}
{'comment': 'Where are you getting this information from?', 'created': '2024-11-06 08:39:09', 'submission_id': '1gksn3l'}
{'comment': 'It was over when Trump won PA.', 'created': '2024-11-06 08:23:52', 'submission_id': '1gksn3l'}
{'comment': 'I have been paying attention. Not one GOP member even talks about that. I cannot see a Republican lead house and Senate invoking the 25th.\n\nAlso, we are on the same team, can we not with the condescending attitude.', 'created': '2024-11-07 02:19:22', 'submission_id': '1gksn3l'}
{'comment': 'You misspelled months', 'created': '2024-11-06 18:48:13', 'submission_id': '1gksn3l'}
{'comment': 'Luckily NY passed the ERA, at least.....', 'created': '2024-11-07 01:38:39', 'submission_id': '1gksn3l'}
{'comment': 'As a millennial, I’ve seen pointless wars in the Mideast with no way to fund them, bank bailouts, recessions, climate change, citizens united, Covid, more bank and economic bailouts, and now this. \n\nIf Democrats could actually win elections I’d agree with you. They basically seem to be the fall guy for the rich. Republican comes in, makes them a bunch of money, wrecks the economy, Dems fix it while accomplishing nothing else, and repeat.', 'created': '2024-11-06 17:48:31', 'submission_id': '1gksn3l'}
{'comment': 'We don’t have to secede, just lean hard into states rights and gutting the federal government to the point where it can’t do shit, then make the economic juggernauts of the West Coast and the North East dominate and essentially ignore the fed, essentially dissolving the union in all but name.\n\nYou want states rights? We’ll show you states rights, assholes.', 'created': '2024-11-06 23:43:21', 'submission_id': '1gksn3l'}
{'comment': 'I’m not really either. Especially after reading some opinions from the right regarding who should get a larger share of the vote ie people with children and those who don’t use social safety net programs. Welp, that excludes most of the Deep South then I guess.', 'created': '2024-11-06 22:39:46', 'submission_id': '1gksn3l'}
{'comment': 'It would also disproportionately help disadvantaged poor whites. Which makes it a winning policy in a country with a lot of disadvantaged poor whites. Too bad democrats have villainized this population as evil bigoted fascists.', 'created': '2024-11-06 17:10:03', 'submission_id': '1gksn3l'}
{'comment': "Oh technically this is a bit of a kicker. I'm a libertarian crypto bro. Democrats are kinda *bad* for some of my hobbies, especially reefing, with all their environmental protections and what not. So I'll be looking at my fish tank hopefully surviving the tariffs and doing okay.\n\nBut I'm capable of empathy. You know? So I vote what's good for *the country*, rather than what's good for me. \n\nI'll have plenty of joy and a little fun watching the leopards get fat.\n\nIt's gen z I worry about.", 'created': '2024-11-06 15:25:55', 'submission_id': '1gksn3l'}
{'comment': "When the left can be a viable support group then yes, the country will move left. Right now that's impossible since they don't show up to vote.", 'created': '2024-11-06 14:49:29', 'submission_id': '1gksn3l'}
{'comment': 'Get out while you still can.', 'created': '2024-11-06 16:31:02', 'submission_id': '1gksn3l'}
{'comment': 'You can come with us', 'created': '2024-11-06 19:40:39', 'submission_id': '1gksn3l'}
{'comment': "That's just people who won't vote for a woman (they're everywhere). Notwithstanding, the divide between Red and Blue states continues to grow.", 'created': '2024-11-07 17:35:12', 'submission_id': '1gksn3l'}
{'comment': 'Exactly, the only thing that matters is the confidence of the answer. Because people can’t be bothered to look outside of their circle for the truth.', 'created': '2024-11-06 13:44:48', 'submission_id': '1gksn3l'}
{'comment': 'I fully hope the democrats give the same treatment to Trump as republicans gave to Biden.\n\nIf gas prices, cost of living and inflation goes up, plaster “Trump did this” as a constant reminder of their fuck up.', 'created': '2024-11-06 14:33:01', 'submission_id': '1gksn3l'}
{'comment': 'This is true. I really was referring to us vs Trump. We need a little time to digest this. I know I do. Then we hunker down for the next four years and push back where we can. And nominate a viable alternative candidate with a plan.', 'created': '2024-11-08 02:45:19', 'submission_id': '1gksn3l'}
{'comment': 'If Trump does tariffs at the scale he has promised it will be a much more immediate type of inflation. Like, prices will jump on so many things within weeks or months as businesses adjust their prices to cover the cost of the tariff. I am fairly confident it will happen under him and so most voters will blame him.', 'created': '2024-11-06 13:31:33', 'submission_id': '1gksn3l'}
{'comment': "They're gonna feel the 2017 tax break bill by February. The middle tax tax breaks expire at the end of the year.", 'created': '2024-11-06 14:59:23', 'submission_id': '1gksn3l'}
{'comment': 'Under normal circumstances you’re correct but trumps plan is like pouring an accelerant on a fire in a jet engine', 'created': '2024-11-06 15:28:15', 'submission_id': '1gksn3l'}
{'comment': 'I highly doubt he can accomplish this in 4 years. Remember, he loves to talk but is poor at executing his plans. That’s the saving grace of Trump winning vs a more competent Republican candidate. He has to get the states, police, courts, and military all aligned before he can claim absolute power. My hope would s he just moves in meaningless circles.', 'created': '2024-11-06 12:01:18', 'submission_id': '1gksn3l'}
{'comment': "What I think will happen will be another level of gerrymandering and more voter restrictions. There will still be elections, it'll just be way harder for Democrats to win in 2028.", 'created': '2024-11-06 14:21:44', 'submission_id': '1gksn3l'}
{'comment': "and yours is that you base it on vibes. If the goal is to win elections, I'll stick by judging on actual votes cast.", 'created': '2024-11-07 00:18:19', 'submission_id': '1gksn3l'}
{'comment': 'Yes- this is exactly what I was talking about when I said we will learn the wrong lesson… too many people will continue to bash Trump supporters rather than reach out to them or try to correct the flaws.\n\nWe are supposed to be the smart ones, but it’s like we don’t understand the rules of the game or how the score is kept. We don’t understand how to win. It’s maddening and frustrating.', 'created': '2024-11-06 15:26:22', 'submission_id': '1gksn3l'}
{'comment': "No amount of logic and intelligence can craft a campaign so perfect that the combined forces of wall street and silicon valley won't be able to brute force the levers of democracy and alter its course.", 'created': '2024-11-06 16:27:01', 'submission_id': '1gksn3l'}
{'comment': 'I agree and I don’t know if this a concern or a positive but now that he will not have another campaign and doesn’t have to worry about votes, who knows what he is going to do. He’s so used to pandering to anyone he thinks will help him win.', 'created': '2024-11-06 12:07:05', 'submission_id': '1gksn3l'}
{'comment': "> How are people missing this connection? It's not subtle.\n\nBecause voters won't vote for Democrats.\n\nI think it's pragmatic to point out a variety of different things, like the insane amount of money run into campaigns on social media, executive meddling in the media, and so on and so on.\n\nUltimately though, voters won't vote for Democrats. It's a very straightforward explanation for what happened. Voters will vote for a Joe Biden, an Obama, an AoC, a Warnock, an Ossoff, a Kelly, but they will not vote for a Democrat. Harris was seen as a Democrat, and not as Harris, and therefore the electorate will not vote for her. I don't quite see how else given the circumstances, running a presidential campaign in a brief 3 months with no otherwise national presence. Voters will vote for an individual running on the Democrats' ticket in a heavily GOP-leaning state, but they do so because of the individual, not because they're a Democrat.", 'created': '2024-11-07 00:20:55', 'submission_id': '1gksn3l'}
{'comment': "I'm going to start a pac to send him a steady stream of cheese burgers.", 'created': '2024-11-07 00:30:18', 'submission_id': '1gksn3l'}
{'comment': "Outsourcing wasn't the only thing companies did when laying off. They also took the money that they saved and bought back stocks. They should have been penalized for that. They manipulated the stock markets. That's frustrating. Watching rich people get more rich is heartbreaking.", 'created': '2024-11-06 17:51:04', 'submission_id': '1gksn3l'}
{'comment': 'Elon Musk will never allow anything to protect workers replaced by AI.', 'created': '2024-11-06 18:53:59', 'submission_id': '1gksn3l'}
{'comment': 'No, he rubber stamped it and Trump killed it.', 'created': '2024-11-06 15:51:00', 'submission_id': '1gksn3l'}
{'comment': 'When I say documented, at this point these are citizens who were able to vote. The Haitian community that was being defamed, correct me if I am wrong, are not citizens yet, and here under special protections. I don’t expect any revoking of citizenship.', 'created': '2024-11-06 19:01:48', 'submission_id': '1gksn3l'}
{'comment': '"I have no clue what you are talking about."\n\nGood save you almost accidentally had an original thought.', 'created': '2024-11-06 20:09:36', 'submission_id': '1gksn3l'}
{'comment': 'Uh, no, I’m doing the opposite of scapegoating black voters, if you read what I said. I’m not putting the blame on them, I’m blaming the DNC for not understanding that minorities aren’t a monolith and probably overestimating the support bump they would get by running Harris.\n\nI don’t think whites and Hispanics want the party to abandon blacks and LGBTQ, though I will at least partially agree trans issues are a losing argument in elections at the moment.', 'created': '2024-11-06 17:30:12', 'submission_id': '1gksn3l'}
{'comment': "The numbers were awful before he dropped out. Unless he dramatically improved, I don't think he'd have won it either.", 'created': '2024-11-06 11:38:51', 'submission_id': '1gksn3l'}
{'comment': 'Charisma is a trait that he has and it’s undeniable. For his supporters and the people around him, it’s a positive trait. Lets them rally unified around a single leader and idea for the last 10+ years. \n\nNo matter where the charisma comes from, it worked and he is the president elect', 'created': '2024-11-06 13:19:40', 'submission_id': '1gksn3l'}
{'comment': 'Democrats need to start and develop media platforms and institutions. We can’t sit back and watch conservatives buy up everything and just accept it. We need to figure out how we can use our dollars to invest in or create companies and platforms to get our message across to the people. When I say our dollars I am talking about the average Democrat.\n\nWe need to unify. Right now we are too disparate in our goals and treat everything as if it’s the most important thing. We need strategy too.\n\nThis loss is unbelievable.', 'created': '2024-11-06 13:21:46', 'submission_id': '1gksn3l'}
{'comment': "They've had the trifecta before. Trump had it for two years in 2017-2019. 2006 is the target for us to replicate after tonight.", 'created': '2024-11-06 13:47:34', 'submission_id': '1gksn3l'}
{'comment': 'Demographics say otherwise. I sure hope the GOP thinks they can continue to win with this same playbook in the future. \n\nThe Democratic party was caught napping. It is far from dead.', 'created': '2024-11-06 14:04:05', 'submission_id': '1gksn3l'}
{'comment': 'Agree with you. His ranks are growing. \n\nAt least in Murkowski’s case, they tried to replace her with a Trump loyalist but I believe she still won. Rare case though. Most Republicans senators who oppose Trump are no longer there..Jeff Flake, Mitt Romney.', 'created': '2024-11-06 14:37:53', 'submission_id': '1gksn3l'}
{'comment': 'Just so we’re clear, we are comparing a campaign that realistically spent a month reaching voters to a campaign that has spent the last 8 years doing the same thing? \n\nI’d agree with you if Harris had a normal campaign which involved making it through a competitive primary which I 100% believe she would’ve done. That’s not the case though. She became an official candidate 2 months before the election and didn’t start actually campaigning her policies a month before the election. You really want to justify last night’s failure with sexism and not the DNC dropping the ball big time?', 'created': '2024-11-06 13:22:51', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-09 11:38:21', 'submission_id': '1gksn3l'}
{'comment': "i did LOL. US can't make stuff that came from the US at a affordable price. Good luck.", 'created': '2024-11-06 18:00:12', 'submission_id': '1gksn3l'}
{'comment': 'No it was over when Joe Biden dropped out', 'created': '2024-11-06 08:25:02', 'submission_id': '1gksn3l'}
{'comment': '> I have been paying attention. Not one GOP member even talks about that.\n\nOf course they haven\'t been talking about it, they were trying to win the election. Do you really think they would talk openly about the fact that their nominee is clearly suffering from late-stage dementia?\n\n> I cannot see a Republican lead house and Senate invoking the 25th.\n\nNeither the house nor Senate are involved in "invoking" the 25th. It is invoked by the VP, and a majority of the cabinet. The house and Senate only become involved if Trump objects to being removed, in which case the house and senate decide the issue. \n\n> Also, we are on the same team, can we not with the condescending attitude.\n\nThis has nothing to do with "teams". Trump is suffering from a complete mental breakdown. He is not mentally fit to be president. Anyone with the slightest awareness should be able to see that. If you can\'t, then you are part of the problem.', 'created': '2024-11-07 03:59:17', 'submission_id': '1gksn3l'}
{'comment': 'Nailed it!', 'created': '2024-11-06 18:38:31', 'submission_id': '1gksn3l'}
{'comment': 'Well, “accomplishing nothing” is a bit harsh when you’re cleaning up a mess, right?\n\nAlso, Obamacare is working. The website sucked at launch but historically it’s working', 'created': '2024-11-07 04:59:35', 'submission_id': '1gksn3l'}
{'comment': 'Oh I like what you’re saying!!! Making my dead heart beat again!! 😆', 'created': '2024-11-07 00:07:00', 'submission_id': '1gksn3l'}
{'comment': "It's not easy for us to do. People in the north can sell a 2k sqft house they bought 2 decades ago and buy a 4k sqft house here with the profits. I can't as easily sell a house here and have enough left over to buy a house there. That plus changing jobs is a nightmare in this day and age. Things went off the rockers in 2020 and everything is different now.", 'created': '2024-11-06 17:01:21', 'submission_id': '1gksn3l'}
{'comment': 'I’m already gathering my possible accusations. Especially for the upcoming market collapse.', 'created': '2024-11-06 15:16:54', 'submission_id': '1gksn3l'}
{'comment': 'They won’t. Democratic leadership have such weak spines, they might as well have scoliosis. They’ll cave and compromise like they always do, and when Republicans reward them with a spit in the face and a slap to the cheek, they’ll say, “Yes sir, thank you sir, may have I another?”', 'created': '2024-11-06 22:31:11', 'submission_id': '1gksn3l'}
{'comment': "The Republicans will continue their steady and building drumbeat that the economy is bad because of Biden and the Dems. It's gonna get so bad and the Republicans will never take responsibility.", 'created': '2024-11-06 14:44:01', 'submission_id': '1gksn3l'}
{'comment': 'But that’s just it….how many states are already aligning with him? The same with the courts around the country. Texas is leading the pack……\n\nAnd think about this….Heritage Foundation put JD Vance in there because he believes in what they’re pushing. He’s gonna be their golden child. Trump better get a food-taster….his days may be numbered.', 'created': '2024-11-06 12:51:44', 'submission_id': '1gksn3l'}
{'comment': "People were stopping him from doing crazy shit before. They're gone now.", 'created': '2024-11-06 16:31:31', 'submission_id': '1gksn3l'}
{'comment': 'They have it outlined in p2025 that they will be walking back women and other minority and workers rights.', 'created': '2024-11-06 14:05:52', 'submission_id': '1gksn3l'}
{'comment': 'That is the one advantage of a Trump presidency, he is unbelievably stupid.', 'created': '2024-11-06 16:49:25', 'submission_id': '1gksn3l'}
{'comment': 'that has nothing to do with what i said. Harris\'s campaign is vastly better than Clinton because it didn\'t alienate the average voter into "its either vote for me or you\'re against women", and his history of corrupt of the Clinton\'s administration when he was in power. Clinton has a greater political power in her own party, which is why she got more votes compared to Harris. So, basing the qaulity of the campaign off that illlogical.', 'created': '2024-11-07 00:24:01', 'submission_id': '1gksn3l'}
{'comment': "It's exhausting but best thing I think most should do is take a deep breath and have a good rest first. There will be no unilateral justice on his crimes, but the best thing you guys can do is be an effective opposition. If not, Democracy truly dies in darkness", 'created': '2024-11-06 13:20:39', 'submission_id': '1gksn3l'}
{'comment': 'Don’t waste your money—man’s already had two attempts… avoiding specifics so Jack Black doesn’t cancel the tour if ya know what I mean', 'created': '2024-11-07 00:52:16', 'submission_id': '1gksn3l'}
{'comment': 'https://www.whitehouse.gov/briefing-room/statements-releases/2024/06/18/fact-sheet-president-biden-announces-new-actions-to-keep-families-together/', 'created': '2024-11-06 16:47:28', 'submission_id': '1gksn3l'}
{'comment': "I can only hope you're right.", 'created': '2024-11-06 19:19:31', 'submission_id': '1gksn3l'}
{'comment': 'What you think.and what the exit polls are showing are two different things.', 'created': '2024-11-06 17:38:30', 'submission_id': '1gksn3l'}
{'comment': 'Lots of shit “works” and is still incredibly stupid and worthless.', 'created': '2024-11-06 15:21:07', 'submission_id': '1gksn3l'}
{'comment': "Democrats need to start having bold policies: universal healthcare, proper worker's rights... legalizing weed would've been a great policy but it was barely discussed.", 'created': '2024-11-06 16:38:30', 'submission_id': '1gksn3l'}
{'comment': 'They did, but they don’t reach the other side of the aisle', 'created': '2024-11-06 17:40:18', 'submission_id': '1gksn3l'}
{'comment': 'He didn’t have the Supreme Court heavily tilted towards him back then. This is different. All we can do now is endure and hopefully come ahead in the ensuing years.\xa0', 'created': '2024-11-06 14:11:37', 'submission_id': '1gksn3l'}
{'comment': None, 'created': '2024-11-06 14:08:17', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-09 15:25:43', 'submission_id': '1gksn3l'}
{'comment': 'I watched a long form interview with him recently and he seemed totally fine', 'created': '2024-11-07 07:33:06', 'submission_id': '1gksn3l'}
{'comment': 'Obamacare was Mitt Romney’s healthcare plan as governor. It was a compromise when Obama had (brief) majorities in Congress. Obama’s grassroots primary was fought by the DNC because they wanted Hillary. And guess what happened in 2016?\n\nSpeaking of, Bernie Sanders said it best, today. DNC is broken and abandoned the working class. \n\nIf the DNC wanted to accomplish anything other than fundraising, they wouldn’t campaign against their voters wishes. The Republican Party lost to Obama- they became the tea party. Then, they became MAGA when Trump was in office and doubled down because it is effective. The fuck has the DNC party platform done to adapt? If anything, they got worse after parading Dick Cheney around like some sort of crown fucking jewel.', 'created': '2024-11-07 09:17:03', 'submission_id': '1gksn3l'}
{'comment': 'I don’t know if a large number of states will follow his orders. I am thinking about the situations where he tried to pressure Arizona and Georgia (governor and secretary of state) officials to turn the vote for Trump and they said no. Yes, more people are falling into his column but I’m hoping for the best in future elections it will go our way.', 'created': '2024-11-06 13:22:39', 'submission_id': '1gksn3l'}
{'comment': 'https://www.forbes.com/sites/alisondurkee/2024/09/10/harris-slams-trump-for-killing-border-bill-in-debate-here-are-the-facts/\n\nSince you didn’t know what a competent adult already would.', 'created': '2024-11-06 16:49:25', 'submission_id': '1gksn3l'}
{'comment': 'Sure, anything could happen, but people are in panic mode right now and forget how strong the fabric of this country is. During Covid when noone was allowed to enter the country, Trump tried banning green card holders coming in from Muslim majority countries. Well, a federal judge struck that nonsense down, and it was never an issue. So yes, Trump will create noise, but I expect a lot of the noise to not lead to much, unless the GOP actually wants it. \n\nI am more interested in how do the Democrats pick themselves up, because as things stand they are clearly the party of the elite, and that needs to change.', 'created': '2024-11-06 19:32:05', 'submission_id': '1gksn3l'}
{'comment': 'I missed the exit poll asking white and Hispanic voters if they would vote Democrat if true party would just abandon blacks and LGBT. Can you provide a source for that stat?', 'created': '2024-11-06 17:47:22', 'submission_id': '1gksn3l'}
{'comment': "what? You don't think pandering to the right is a winning strategy? What proof do you have? \n\n \n/s", 'created': '2024-11-06 17:13:28', 'submission_id': '1gksn3l'}
{'comment': 'Bold ideas is right.', 'created': '2024-11-06 16:39:00', 'submission_id': '1gksn3l'}
{'comment': "He actually did, though? The Roberts court has pretty much always been right-wing. Once Gorsuch and Kavanaugh were seated early in Trump's term, it was already overwhelmingly conservative.\n\nThe SCOTUS hasn't really been moderate since Thurgood Marshall was replaced with Clarence Thomas.\n\nI still believe in our institutions holding strong enough to shut down some of this stuff. Winning the House would help a lot in the interim.", 'created': '2024-11-06 14:17:58', 'submission_id': '1gksn3l'}
{'comment': "BS. We resisted before and we'll resist now. Yes, things will suck for a couple years, but our institutions are strong enough to endure.", 'created': '2024-11-06 14:10:29', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-09 15:41:05', 'submission_id': '1gksn3l'}
{'comment': 'These are all good points.\n\nThey need to build a plan fast. Can’t wait for Trump f*ck ups like Covid.', 'created': '2024-11-07 16:19:10', 'submission_id': '1gksn3l'}
{'comment': 'Buddy I know he killed the bill. Biden was still able to stop the constant flow of immigrants via executive order as we have seen. He just did it like 2 years too late. What are you confused about?', 'created': '2024-11-06 17:23:56', 'submission_id': '1gksn3l'}
{'comment': 'That\'s inference. However white men were asked if they were "seen" by the democrats and they said no.', 'created': '2024-11-06 18:02:02', 'submission_id': '1gksn3l'}
{'comment': 'It was 5-4 and Roberts/Gorsuch could sometimes be swayed. It went 6-3 in the last two and a half months of his term. Alito will most likely retire and be replaced by a younger, even more conservative judge. So this is different.\xa0', 'created': '2024-11-06 14:30:04', 'submission_id': '1gksn3l'}
{'comment': None, 'created': '2024-11-06 14:19:51', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-09 15:45:01', 'submission_id': '1gksn3l'}
{'comment': 'Yeah, I pointed that out in my original post. But that doesn’t mean anything close to wanting to abandon blacks and LGBTQ, it just means they want to be included as well.', 'created': '2024-11-06 19:46:42', 'submission_id': '1gksn3l'}
{'comment': "Lol. I'm an avowed institutionalist and a proponent of the system. Not saying this isn't going to really do damage to some guardrails, but we live in a federalist system and there are plenty of ways to push back.", 'created': '2024-11-06 14:25:39', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-09 18:12:08', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-09 22:45:53', 'submission_id': '1gksn3l'}
{'comment': '[removed]', 'created': '2024-11-09 23:15:48', 'submission_id': '1gksn3l'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 08:04:30', 'submission_id': '1gksmzg'}
{'comment': 'Gonna be a very rough 4 years, or longer. Misinformation is REAL!!', 'created': '2024-11-06 08:12:40', 'submission_id': '1gksmzg'}
{'comment': 'Take care of yourselves, my American buddies.\xa0\n\nI live in a border town in Canada and used to pop over once every couple of weeks to hang out. I stopped completely when Trump was president the first time. Was very excited to resume my travels and my biannual NYC pilgrimages when Joe got in office. And now I think I will stay away again for 4 more years.\xa0\n\nMy heart’s broken for you guys. Seriously. Take care of yourselves.\xa0', 'created': '2024-11-06 10:02:41', 'submission_id': '1gksmzg'}
{'comment': None, 'created': '2024-11-06 10:50:02', 'submission_id': '1gksmzg'}
{'comment': 'I am simply stunned. I always thought there were more of us than them. I guess I was just a fool thinking people cared about women, the education of children, the legacy of our great American melting pot. I now know I’m in the minority of a country filled with racists and misogynists. The country was warned by Trump’s former staff, by economists, by historians. We are truly fucked. We are owned by Russia. Our great experiment is dead. Fuck your Donald Trump and anyone who voted for him, 3rd party, or didn’t vote at all.', 'created': '2024-11-06 09:38:48', 'submission_id': '1gksmzg'}
{'comment': 'Well. Here goes the world.', 'created': '2024-11-06 10:25:41', 'submission_id': '1gksmzg'}
{'comment': 'How long until the constitution is changed giving him more terms to serve? Am I crazy even thinking that is a possibility? 🧐', 'created': '2024-11-06 08:36:12', 'submission_id': '1gksmzg'}
{'comment': 'I am very afraid that we will never see another election', 'created': '2024-11-06 10:09:03', 'submission_id': '1gksmzg'}
{'comment': 'This is what happens when most Americans never learn basic economics, civics, history or ethics. #educationmatters', 'created': '2024-11-06 13:56:07', 'submission_id': '1gksmzg'}
{'comment': 'I have to get out of here', 'created': '2024-11-06 09:59:38', 'submission_id': '1gksmzg'}
{'comment': "Still haven't called the House 👍\n\nIf Democrats gain the House, Trump isn't just a Lame Duck, he's a duck with no pond 👍", 'created': '2024-11-06 09:16:45', 'submission_id': '1gksmzg'}
{'comment': '[removed]', 'created': '2024-11-06 08:34:05', 'submission_id': '1gksmzg'}
{'comment': 'This is the death of America.\xa0', 'created': '2024-11-06 10:49:23', 'submission_id': '1gksmzg'}
{'comment': "While I appreciate Biden ultimately stepping aside, I dearly wish he had not run to begin with. Trump got to run a two year campaign, whereas Kamala was cobbling together a campaign within just three months and without a primary process. When elections are won by the barest of margins, we just can't afford to make those sorts of mistakes.", 'created': '2024-11-06 10:08:40', 'submission_id': '1gksmzg'}
{'comment': 'Congratulations America you have finally destroyed yourself .', 'created': '2024-11-06 10:34:54', 'submission_id': '1gksmzg'}
{'comment': '[removed]', 'created': '2024-11-06 08:45:49', 'submission_id': '1gksmzg'}
{'comment': 'Fuck the red states.', 'created': '2024-11-06 11:03:36', 'submission_id': '1gksmzg'}
{'comment': 'What bothers me the most is that he actually won this time. We can’t say that it was just a technicality because of the electoral college like 2016. This time he won the popular vote by over 5 million.', 'created': '2024-11-06 12:14:43', 'submission_id': '1gksmzg'}
{'comment': 'Really excited to see Russia pull out of Ukraine and for instant peace in the middle east..\n\n/s', 'created': '2024-11-06 10:53:05', 'submission_id': '1gksmzg'}
{'comment': 'Fox News making up for calling it for Biden in 2020. But honestly, how? How are we here? This isn’t even like 2016 when we couldn’t have known what a Trump presidency would look like & yet, with everything that we know & everything we’ve been privy to for the last 8 years still they voted for him.', 'created': '2024-11-06 11:35:49', 'submission_id': '1gksmzg'}
{'comment': 'If you’ve ever thought about sterilization, the time is now. Things are going to get ugly in a few months.', 'created': '2024-11-06 10:23:29', 'submission_id': '1gksmzg'}
{'comment': "Everyone here knows that this was the Democrat's last chance to save America from a Trump dictatorship? And you know that Trump will hunt Democrats down now, starting with the top ones? Democratic politicians better make plans to flee in exile unless they plan to stay and fight. I would suggest all Democrats fall back to the blue coastal states and arm up.", 'created': '2024-11-06 08:35:32', 'submission_id': '1gksmzg'}
{'comment': 'Well, I guess we went back.', 'created': '2024-11-06 12:35:02', 'submission_id': '1gksmzg'}
{'comment': "It really does make you wonder about election interference. Last night wasn't a victory for the serial felon - it was a victory for propaganda. You can spew all the lies you want here and as long as that happens you can brainwash whoever you want", 'created': '2024-11-06 13:31:55', 'submission_id': '1gksmzg'}
{'comment': "Incredible and it looks like he'll win comfortably.", 'created': '2024-11-06 09:42:45', 'submission_id': '1gksmzg'}
{'comment': 'I am genuinely fearful for the safety of moderate and progressive politicians … don’t under estimate the fascists.', 'created': '2024-11-06 10:19:02', 'submission_id': '1gksmzg'}
{'comment': "so that's pretty much it for climate change and NATO and any hopes of ever getting the court back in my lifetime.\n\nwell on the bright side his economic plan is forecast to take an 8% chunk out of the GDP which puts us near Great depression era so that'll at least be interesting as we fight each other for scraps. \n\nNow that Elon musk is the minister of propaganda I would expect real attacks against broadcast news that doesn't fall in line. \n\nI think America is going to look very different by the time we get to the next election or the soap opera that they are going to call an election.", 'created': '2024-11-06 12:17:44', 'submission_id': '1gksmzg'}
{'comment': 'Disgusting', 'created': '2024-11-06 12:16:01', 'submission_id': '1gksmzg'}
{'comment': 'What did you expect? "Welcome, sonny"? "Make yourself at home"? "Marry my daughter"? You\'ve got to remember that these are just simple farmers. These are people of the land. The common clay of the new West. You know... morons.', 'created': '2024-11-06 12:01:02', 'submission_id': '1gksmzg'}
{'comment': "May god have mercy on the red states bc they're about to get fucked.", 'created': '2024-11-06 14:41:17', 'submission_id': '1gksmzg'}
{'comment': 'This is on the 15m who didn’t vote. Fuck you!', 'created': '2024-11-06 17:23:58', 'submission_id': '1gksmzg'}
{'comment': 'I can’t be the only one that thinks there’s something sinister going on? We have been saying for weeks how Republicans were already trying to fuck with the election (e.g., voter roll purges). \n\nVery strange how she’s doing worse than Hillary…', 'created': '2024-11-06 08:06:35', 'submission_id': '1gksmzg'}
{'comment': 'Just unbelievable, America is beyond Fuck Up and just hates woman. He’s a guy that not only had Government officials warn us that he really is fascist, but top economist warned his financial plans will ruin our economy. He’s a racist, rapist, disgusting human and America STILL voted for him over an extremely highly educated and qualified Biracial Woman. The uneducated and hatred won this election. 😭', 'created': '2024-11-06 13:37:13', 'submission_id': '1gksmzg'}
{'comment': 'He will give himself full immunity. And declare himself king. There is no "United States of America" anymore.', 'created': '2024-11-06 13:25:23', 'submission_id': '1gksmzg'}
{'comment': 'Our economy is fucked. Our democracy is over.', 'created': '2024-11-06 10:52:28', 'submission_id': '1gksmzg'}
{'comment': 'A broken country. Democracy is lost', 'created': '2024-11-06 11:24:26', 'submission_id': '1gksmzg'}
{'comment': 'Next year we won’t have the option to criticize Trump on Reddit.', 'created': '2024-11-06 17:10:11', 'submission_id': '1gksmzg'}
{'comment': 'America is a failed democracy.', 'created': '2024-11-06 13:17:13', 'submission_id': '1gksmzg'}
{'comment': "AP hasn't called it yet.", 'created': '2024-11-06 08:08:51', 'submission_id': '1gksmzg'}
{'comment': 'Hoping the icy hand of death reaches out for him soon, a good stroke, a heart attack, meteor.', 'created': '2024-11-06 13:52:54', 'submission_id': '1gksmzg'}
{'comment': "It's a sad day for America and a sad day for the world. You can see where all the intelligent and educated people are in the US when you look at the blue states. There was always a chance the rapist would win and he did. It's unfortunate and it's disgusting. It's EXTREMELY hard to be an American today.", 'created': '2024-11-06 15:09:26', 'submission_id': '1gksmzg'}
{'comment': 'We see what Americans value in this country and I’m afraid this result shows we may be in for a hard time in the long foreseeable future.', 'created': '2024-11-06 15:37:50', 'submission_id': '1gksmzg'}
{'comment': 'It won’t even get better if he miraculously dies in office because fucking JD Vance', 'created': '2024-11-06 16:55:49', 'submission_id': '1gksmzg'}
{'comment': 'Once the country is bankrupt because of the new round of tax cuts for the rich, it paves the way for what they want to do all along, either privatizing Social Security and Medicare or huge cuts in benefits and increasing the retirement age.', 'created': '2024-11-06 11:16:11', 'submission_id': '1gksmzg'}
{'comment': 'I hope his first day in office, he abolishes Social Security Retirement. I want the boomers to get what they fucking deserve', 'created': '2024-11-06 11:36:15', 'submission_id': '1gksmzg'}
{'comment': 'This is somewhat good in that he has the popular vote as well. The real issue is the Dems lost— not that Trump won. This was the Dems to lose, and it was doomed when Biden primaried, and they swapped him out for a woman of color— when clearly this is problematic for a huge number of voters. Trump was easily beatable. Kamala just wasn’t electable. Just stating inconvenient facts here. It sounds crazy if you live in a Reddit bubble.', 'created': '2024-11-06 12:07:22', 'submission_id': '1gksmzg'}
{'comment': 'Are we the baddies?', 'created': '2024-11-06 11:38:20', 'submission_id': '1gksmzg'}
{'comment': 'Anyone able to see if there is hope for the House?', 'created': '2024-11-06 10:33:51', 'submission_id': '1gksmzg'}
{'comment': 'I hate this', 'created': '2024-11-06 12:48:38', 'submission_id': '1gksmzg'}
{'comment': 'There goes the Supreme Court', 'created': '2024-11-06 13:19:06', 'submission_id': '1gksmzg'}
{'comment': '\n\nI ask my gf today if she was going for her bonnet fitting today…JFC smh', 'created': '2024-11-06 13:39:49', 'submission_id': '1gksmzg'}
{'comment': 'Everything is already counted??', 'created': '2024-11-06 14:42:21', 'submission_id': '1gksmzg'}
{'comment': "But I don't know what's going on anymore \nThe world outside is burning with a brand new light \nBut it isn't one that makes me feel warm \nDon't go mistaking your house burning down for the dawn \nDon't go mistaking your house burning down for the dawn", 'created': '2024-11-06 15:16:53', 'submission_id': '1gksmzg'}
{'comment': 'I’m putting a lot of blame on my generation for this. I was shocked to see the low turnout. I spent all last night blaming Stein voters just to realize that *we* were the problem. Ugh\n\nYoung people, *use your voice!* I don’t want to hear all these non-voters complaining next year when Trump does Trump things and messes shit up.', 'created': '2024-11-06 17:16:40', 'submission_id': '1gksmzg'}
{'comment': 'Gang. Go take a break. We need to start doing what they did in the 80s. Every single district, every local election. Every one of us needs to find an issue in our community that aligns with our goals that we can impact. We have to start from the bottom again.', 'created': '2024-11-06 12:57:11', 'submission_id': '1gksmzg'}
{'comment': '[removed]', 'created': '2024-11-06 10:48:51', 'submission_id': '1gksmzg'}
{'comment': "Am I reading this right but is voter turnout about the same as '20? 156M total?", 'created': '2024-11-06 09:07:09', 'submission_id': '1gksmzg'}
{'comment': 'This is the world the knuckle draggers wanted so this is our reality for the foreseeable future. Waiting now for them to start rounding up the political dissidents, media personages and celebrities who leaned left. Fuck the electoral college and fuck x45. This is not my president and this is not my America.\xa0', 'created': '2024-11-06 11:52:55', 'submission_id': '1gksmzg'}
{'comment': '…not over yet.', 'created': '2024-11-06 09:42:24', 'submission_id': '1gksmzg'}
{'comment': 'Can we workshop some official acts between now and Jan 20?', 'created': '2024-11-06 11:47:24', 'submission_id': '1gksmzg'}
{'comment': 'I wonder how many 3rd party votes there were in the states that were close.', 'created': '2024-11-06 12:00:55', 'submission_id': '1gksmzg'}
{'comment': 'I bet we will see trumps face on Mount Rushmore', 'created': '2024-11-06 13:58:29', 'submission_id': '1gksmzg'}
{'comment': 'We know their Plan. Project 2025.\n\n\nWe have to start thinking like American Kleptocracy and Oligarchy. Sadly, looking at Eastern European style politics for guidance.\n\n\nReach across the damn aisle for bipartisanship. Dems seriously consider some “grand bargains” especially when faced against 2 more SCOTUS nominations.\n\n\nWe *know our next opponent* is JD Vance, definitely weak and not very popular right now.\n\n\nI’m going to start ingesting a bit more of that Fox News Entertainment. Obviously more than half the country is on that elixir — might like to feel blissfully ignorant while the world 🌍 🔥a few times a week.\n\n\nLocal elections matter more!! Forward.', 'created': '2024-11-06 15:42:09', 'submission_id': '1gksmzg'}
{'comment': 'Merrick Fucking Garland', 'created': '2024-11-06 16:26:02', 'submission_id': '1gksmzg'}
{'comment': 'Impeach him.', 'created': '2024-11-06 16:44:55', 'submission_id': '1gksmzg'}
{'comment': '[removed]', 'created': '2024-11-10 18:38:55', 'submission_id': '1gksmzg'}
{'comment': 'To all the men who voted for Kamala for their daughters: imagine a world where you had just voted to support women all along.', 'created': '2024-11-06 15:04:55', 'submission_id': '1gksmzg'}
{'comment': 'Until ap calls it I ain’t believing shit', 'created': '2024-11-06 08:11:59', 'submission_id': '1gksmzg'}
{'comment': None, 'created': '2024-11-06 08:25:27', 'submission_id': '1gksmzg'}
{'comment': '[removed]', 'created': '2024-11-06 08:36:39', 'submission_id': '1gksmzg'}
{'comment': 'You know what makes it even worse? Fucking JD Vance as VP. Just kill me now.', 'created': '2024-11-06 08:36:52', 'submission_id': '1gksmzg'}
{'comment': 'Well they took the senate. If they keep the House of Representatives, misinformation is gonna be the least of my worries.', 'created': '2024-11-06 10:58:14', 'submission_id': '1gksmzg'}
{'comment': 'He’s gonna go for a third term', 'created': '2024-11-06 08:16:37', 'submission_id': '1gksmzg'}
{'comment': '2 years and a day until Vance makes his power play with the 25th', 'created': '2024-11-06 10:14:09', 'submission_id': '1gksmzg'}
{'comment': '4 years? No dude, this is it. We never get a say again.', 'created': '2024-11-06 15:26:37', 'submission_id': '1gksmzg'}
{'comment': None, 'created': '2024-11-06 09:56:25', 'submission_id': '1gksmzg'}
{'comment': 'With the open vacancies on the circuit courts and the two SCOTUS that will retire next year, it’ll be 40+', 'created': '2024-11-06 12:17:37', 'submission_id': '1gksmzg'}
{'comment': '[removed]', 'created': '2024-11-06 08:24:47', 'submission_id': '1gksmzg'}
{'comment': 'Why will it be rough? How was 2015-2019 worse than 2020-2024?', 'created': '2024-11-06 08:32:40', 'submission_id': '1gksmzg'}
{'comment': 'Thank you for the well wishes. I am truly floored about this and worried for the world and not just the US. This will be a dark day in history for women and LGBT rights.', 'created': '2024-11-06 10:18:22', 'submission_id': '1gksmzg'}
{'comment': 'Are you guys not also trending towards a similar path? I understand the idea, but no reason to completely avoid the US when Trump is back.', 'created': '2024-11-06 21:53:42', 'submission_id': '1gksmzg'}
{'comment': "I'd like to move into Canada at some point soon because of all this.", 'created': '2024-11-07 01:05:36', 'submission_id': '1gksmzg'}
{'comment': None, 'created': '2024-11-06 13:05:18', 'submission_id': '1gksmzg'}
{'comment': 'I thought America was decent but we were wrong', 'created': '2024-11-06 10:17:05', 'submission_id': '1gksmzg'}
{'comment': 'Watching this from Europe is so disheartening. If the US are over, what happens to us?\n\nIs it time to start learning Russian?', 'created': '2024-11-06 10:32:04', 'submission_id': '1gksmzg'}
{'comment': '🥺', 'created': '2024-11-06 11:02:58', 'submission_id': '1gksmzg'}
{'comment': "I seriously feel like there's a black cloud hovering over this country and after last night, it's only getting darker. I am truly, deeply scared of what's going to happen after inauguration day.", 'created': '2024-11-06 19:39:08', 'submission_id': '1gksmzg'}
{'comment': 'any chance of a tolerable climate in the future just went up in flames. im so glad i dont have kids thatll have to deal with that crap.', 'created': '2024-11-06 11:54:47', 'submission_id': '1gksmzg'}
{'comment': '"Don\'t worry about it, in four years we\'ll have it fixed so you won\'t even have to vote."', 'created': '2024-11-06 11:34:08', 'submission_id': '1gksmzg'}
{'comment': 'He doesn’t need to change the constitution since he will be a dicktater.', 'created': '2024-11-06 11:44:14', 'submission_id': '1gksmzg'}
{'comment': 'Yes. He’s too old to try that gambit', 'created': '2024-11-06 08:50:30', 'submission_id': '1gksmzg'}
{'comment': 'Not a fair one, for sure.', 'created': '2024-11-06 11:12:45', 'submission_id': '1gksmzg'}
{'comment': 'I know it’s probably an unpopular opinion, but I’m actually less afraid of that now. The GOP won fair and square this time and my, perhaps naive, hope is that will cool down a lot of the antidemocratic rhetoric flying around. And I say this agreeing that it’s bullshit that they can only accept it when they’re the ones winning, but democrats taking this loss with grace and regrouping will go a long way.', 'created': '2024-11-06 14:01:25', 'submission_id': '1gksmzg'}
{'comment': 'Right has attacked education since Reagan. This is the *coup de grâce* of billions of dollars and media empire formation to win.\xa0', 'created': '2024-11-06 16:44:39', 'submission_id': '1gksmzg'}
{'comment': 'Good thing dismantling the dept. Of education is on the policy goals! /s', 'created': '2024-11-06 18:27:44', 'submission_id': '1gksmzg'}
{'comment': 'Yep. There’s no fighting them having complete control now. This isn’t a democracy.', 'created': '2024-11-06 13:20:54', 'submission_id': '1gksmzg'}
{'comment': 'He’ll still just do whatever he wants and call everything an official act.', 'created': '2024-11-06 09:33:09', 'submission_id': '1gksmzg'}
{'comment': 'The judges would still be named by him, senate is gone.', 'created': '2024-11-06 11:34:15', 'submission_id': '1gksmzg'}
{'comment': "I'd enjoy seeing him struggle his first two years like Biden did his last two.", 'created': '2024-11-06 11:12:20', 'submission_id': '1gksmzg'}
{'comment': 'Sorry but how did we get screwed over? We brought this onto ourselves.', 'created': '2024-11-06 13:01:42', 'submission_id': '1gksmzg'}
{'comment': "I didn't hear a single person outside of reddit talk about Harris not going through the primary or not campaigning long enough. I have, however, heard so many comments about her only getting to her position by sleeping with men and how women just can't handle leadership roles.", 'created': '2024-11-06 11:45:29', 'submission_id': '1gksmzg'}
{'comment': "It's time for honest talk. \n\nIt's Biden's fault that we didn't have a competitive process to pick our 2024 nominee, which gave us Trump.\n\nIt's RBG's fault for not stepping aside, which gave us Gorsuch. \n\nWe need to have a process for helping older people in authority step aside with dignity before it's too late.", 'created': '2024-11-06 10:49:09', 'submission_id': '1gksmzg'}
{'comment': "They have both houses of congress, the white house, and the supreme court. There's nothing in the system that can resist.\xa0", 'created': '2024-11-06 11:35:42', 'submission_id': '1gksmzg'}
{'comment': "Well it looks like fewer people voted for him. But even fewer voted for Kamala. Ten million less voters. Why did they stay home? That will be the question for decades. I think it's economic. Frankly Democrats don't hit hard enough or drastically enough on economic issues in my opinion. Housing prices are high as fuck, food went up. Energy went up. Now I don't think Republicans will do better, but they said they had a plan.", 'created': '2024-11-06 11:55:47', 'submission_id': '1gksmzg'}
{'comment': None, 'created': '2024-11-06 08:44:31', 'submission_id': '1gksmzg'}
{'comment': 'Oh bullshit 🙄 😒', 'created': '2024-11-06 09:14:46', 'submission_id': '1gksmzg'}
{'comment': "Unfortunately there's only one thing sexist voters hate more than a woman president, it'd be a non-white woman president.", 'created': '2024-11-06 08:09:31', 'submission_id': '1gksmzg'}
{'comment': "It's not strange, she had a way shorter campaign, wasn't nominated in a primary, and had a pretty lackluster run as VP.", 'created': '2024-11-06 08:13:45', 'submission_id': '1gksmzg'}
{'comment': "nah man we can't do this. the other side does that. they've done nothing they don't do every time, but right now it's looking like we lost fair and square. even the popular vote. it's time to start licking our wounds and pivoting to harm reduction.", 'created': '2024-11-06 08:08:45', 'submission_id': '1gksmzg'}
{'comment': 'He did say he had a "little secret" Look at Russian interference in non-EU European countries. I am 51% sure you got screwed.\xa0\n\n\n\xa0People need to stop blaming the Dem campaign and start investigating before Biden is out of office and while Congress is still half blue\n\n\n(I\'m not a US citizen myself, I live in Eastern Europe. Romania, specifically. Suspicious crap happens here every election)', 'created': '2024-11-06 11:14:45', 'submission_id': '1gksmzg'}
{'comment': 'Why is it strange though? Hilary, was a more qualified candidate. If she lost to Trump, no way Kamala wins.', 'created': '2024-11-06 08:18:49', 'submission_id': '1gksmzg'}
{'comment': 'Stop. We lost.', 'created': '2024-11-06 08:16:14', 'submission_id': '1gksmzg'}
{'comment': '1.\t\u2060People are doing much worse than most others. This is bad. This very much clouds perception of the inside (Kamala) vs outsider (Trump). People are legitimately worse off than 4 years ago.\n2.\t\u2060Joe Biden should not have dropped out late. It should have been early enough to have a true primary. People don’t like “anointing” candidates. It’s anti/democratic. It pissed people off. Rightfully so. Shame on Joe Biden (just own it) and shame on the Democratic party for not recognizing this sooner.\n3.\t\u2060Immigration is a big issue. At the very least, recognize it is bigger than abortion and bigger than trans athletes in sports type crap. Enough already. Focus on big issues and be more moderate to win elections. Stop trying to swing for the progressive fences!\n\nTheir arrogance lost them the election and they are to blame more than anyone. And calling other voters deplorable and garbage? Dumb strategy.', 'created': '2024-11-06 08:11:37', 'submission_id': '1gksmzg'}
{'comment': 'If it was one state, sure…but like every state he was showing gains even in losses. She underperformed Biden everywhere.', 'created': '2024-11-06 10:18:48', 'submission_id': '1gksmzg'}
{'comment': 'Don’t start with this.', 'created': '2024-11-06 08:10:00', 'submission_id': '1gksmzg'}
{'comment': 'No we can’t lower ourselves to that standard. Americans decided and that’s what we gotta live with sadly..', 'created': '2024-11-06 09:40:02', 'submission_id': '1gksmzg'}
{'comment': 'Please don’t be that person. She’s doing worse than Hillary because she was always a terrible candidate, who we never even chose.', 'created': '2024-11-06 08:18:58', 'submission_id': '1gksmzg'}
{'comment': 'All that and so much more', 'created': '2024-11-06 14:43:03', 'submission_id': '1gksmzg'}
{'comment': 'This is what he IS going to do. No more accountability for his past or future crimes', 'created': '2024-11-06 14:43:59', 'submission_id': '1gksmzg'}
{'comment': "He won PA. It's impossible for Harris to take it...", 'created': '2024-11-06 08:30:41', 'submission_id': '1gksmzg'}
{'comment': 'MSNBC just called it. Trump won it’s over. I can’t t believe it', 'created': '2024-11-06 08:10:28', 'submission_id': '1gksmzg'}
{'comment': 'Doesn’t matter if they haven’t called it. It’s over.', 'created': '2024-11-06 08:10:31', 'submission_id': '1gksmzg'}
{'comment': 'Same, honestly. They need to be hurt directly to understand how much they fucked us all over.', 'created': '2024-11-06 11:55:39', 'submission_id': '1gksmzg'}
{'comment': 'Young people are using their voices, using it to show support to Trump sadly.', 'created': '2024-11-06 22:40:34', 'submission_id': '1gksmzg'}
{'comment': "I don't think I can fight anymore", 'created': '2024-11-06 14:44:27', 'submission_id': '1gksmzg'}
{'comment': "I don't know how to organize. Should I just like stop by the local Dem headquarters of my city and ask what's going on here? That feels weird.", 'created': '2024-11-06 21:22:03', 'submission_id': '1gksmzg'}
{'comment': 'Oh just stfu.', 'created': '2024-11-06 11:37:14', 'submission_id': '1gksmzg'}
{'comment': "No, it's about what, 15-20 mil less? \n\nThat right there is a huge problem.", 'created': '2024-11-06 09:37:19', 'submission_id': '1gksmzg'}
{'comment': 'It’s over.', 'created': '2024-11-06 11:40:06', 'submission_id': '1gksmzg'}
{'comment': 'One of the most meaningless words in politics.', 'created': '2024-11-06 18:03:48', 'submission_id': '1gksmzg'}
{'comment': 'I have been, in every election, to support all the women I care about. It just wasn’t enough.', 'created': '2024-11-06 16:20:07', 'submission_id': '1gksmzg'}
{'comment': "it's improbable to win which is why it's being called early", 'created': '2024-11-06 08:12:32', 'submission_id': '1gksmzg'}
{'comment': None, 'created': '2024-11-06 08:21:37', 'submission_id': '1gksmzg'}
{'comment': 'You make the fourth hair on my ass look like a contributing member to society', 'created': '2024-11-06 11:30:43', 'submission_id': '1gksmzg'}
{'comment': 'Until trump degrades and they remove him. Then it’s President Vance 🤮', 'created': '2024-11-06 14:20:11', 'submission_id': '1gksmzg'}
{'comment': 'Hide your couches!', 'created': '2024-11-06 09:57:00', 'submission_id': '1gksmzg'}
{'comment': 'I can’t stand him', 'created': '2024-11-06 12:39:50', 'submission_id': '1gksmzg'}
{'comment': 'Now we know our next opponent. Unless he gets fired and replaced by Ivanka Kushner. Anything is possible in an American autocratic oligarchy! 🎻🇺🇸', 'created': '2024-11-06 15:44:13', 'submission_id': '1gksmzg'}
{'comment': 'He will be President before the end of Trumps 4 years.', 'created': '2024-11-06 14:39:50', 'submission_id': '1gksmzg'}
{'comment': 'The situation will look like 2018 where Trump clashed with Pelosi', 'created': '2024-11-06 17:08:05', 'submission_id': '1gksmzg'}
{'comment': 'The senate was expected given the map', 'created': '2024-11-06 16:06:16', 'submission_id': '1gksmzg'}
{'comment': 'I bet he doesn’t make it one year before he’s declared unfit and JD Vance takes it.', 'created': '2024-11-06 08:24:59', 'submission_id': '1gksmzg'}
{'comment': 'That is not allowed due to the 22nd amendment. And that requires ratification by 3/4th of the states. More likely would be him pushing one of his kids or someone like Musk to run in the next election.', 'created': '2024-11-06 09:33:41', 'submission_id': '1gksmzg'}
{'comment': 'I honestly don’t see him being well enough to be able to be functional through this term. I think we’ll see him being in a similar state that Joe Biden is in in four years which is terrifying in itself. I know people are scared that Trump is going to rewrite a lot of things in this country, I just want to remind people that the two term limit is written in the constitution and it takes a 2/3 majority in both houses of congress or a 2/3 majority in the states to change that. They could try and circumvent that but even though the Supreme Court has shifted radically in the favor of the republicans I don’t see it allowing Trump to change the constitution without the legal process.', 'created': '2024-11-06 12:28:37', 'submission_id': '1gksmzg'}
{'comment': 'He’s impervious to impeachment. It means nothing to him and his followers.', 'created': '2024-11-06 10:13:39', 'submission_id': '1gksmzg'}
{'comment': 'By who?!?! It looks like the house is gonna go red, and the senate already did.', 'created': '2024-11-06 10:22:04', 'submission_id': '1gksmzg'}
{'comment': 'Yea, and if the Democrats don’t win the House and Senate, good luck with starting the impeachment process and finding him guilty. I guess he has shown America that he is above the law.', 'created': '2024-11-06 10:19:29', 'submission_id': '1gksmzg'}
{'comment': 'He filled 200+ his first term', 'created': '2024-11-06 12:17:55', 'submission_id': '1gksmzg'}
{'comment': 'Why are you in a Democratic Reddit group?', 'created': '2024-11-06 08:32:04', 'submission_id': '1gksmzg'}
{'comment': 'Are you forgetting the unhinged drama being played out daily? The generals sleeping in tracksuits just in case he decided to go nuclear? Him forgetting he has national secrets that just happened to be at mar lago? Ercetcetc', 'created': '2024-11-06 08:49:38', 'submission_id': '1gksmzg'}
{'comment': 'Dictator, repeal the affordable care act, leave NATO, round up immigrants, install more republican judges, need I say more?', 'created': '2024-11-06 08:35:50', 'submission_id': '1gksmzg'}
{'comment': "I believe trump in '16 was really shocked to beat Clinton and didnt have a real plan or team to take office with. Speed ahead to '24 and trump has planned this out. Instead of rushing to fill roles in '16 he now has those truly loyal to him ready to sweep into DC and run it as he wants it run. \n\nI do feel sorry for those using ACA to support their medical issues, those that benefit from head start, medicare, because these organization will be frozen or stopped and I cant see what they have in place for them.", 'created': '2024-11-06 09:11:15', 'submission_id': '1gksmzg'}
{'comment': "Obama was president in 2015 and Trump was still president in 2020. Nice try to pass all of COVID off on Biden but that mess started with Trump's mishandling and crashing out economy", 'created': '2024-11-06 10:04:54', 'submission_id': '1gksmzg'}
{'comment': "So Trump gets credit for Obama's final year in office, and Biden gets credit for 2020 when Trump was president and fucked up the Covid response?", 'created': '2024-11-06 08:49:46', 'submission_id': '1gksmzg'}
{'comment': 'He was just dipping his toes. Buckle up', 'created': '2024-11-06 08:39:41', 'submission_id': '1gksmzg'}
{'comment': 'We are and it scares the shit out of me. I can’t exactly leave my home but I can choose not to spend more of my money in a country that thinks less of me as a person (woman, visible minority).\xa0', 'created': '2024-11-06 23:26:40', 'submission_id': '1gksmzg'}
{'comment': "I am sorry to say that Canada will likely follow suit next year. This is why the US election doesn't just affect Americans—it is consequential for many Western countries, and the rise of the right wing movement in the US has emboldened the conservative Canadians to become more open and unhinged with their hate. I live in a province that's fairly left, and we just barely held on to a majority. Federally I think the Conservatives will prevail, and their current leader is a Trump wannabe. It's scary times everywhere.", 'created': '2024-11-07 07:26:46', 'submission_id': '1gksmzg'}
{'comment': "I'm just wondering where all the momentum went given how big her rallies were and how jaded people were with the trump rallies. I thought she had picked up momentum everywhere. I feel deceived.", 'created': '2024-11-06 15:20:44', 'submission_id': '1gksmzg'}
{'comment': 'America is way more sexist than it is racist. And it’s pretty damn racist.', 'created': '2024-11-06 16:28:42', 'submission_id': '1gksmzg'}
{'comment': 'I’m not convinced they wouldn’t have been better off sticking with Biden. He beat Trump in 2020. Had the incumbent advantage. They had 3 months of damage control time to recover from that debate performance and he’s been totally FINE since that night.', 'created': '2024-11-06 13:57:42', 'submission_id': '1gksmzg'}
{'comment': "This is probably going to lead to Europe distancing itself from the US. It can no longer count on the US to defend it so they'll rearm to protect themselves from Russia.", 'created': '2024-11-06 10:38:23', 'submission_id': '1gksmzg'}
{'comment': "I'd learn mandarin tbh", 'created': '2024-11-06 16:42:22', 'submission_id': '1gksmzg'}
{'comment': 'Correct', 'created': '2024-11-06 12:37:39', 'submission_id': '1gksmzg'}
{'comment': ">He's too old\n\nBut his kids aren't.", 'created': '2024-11-06 09:18:02', 'submission_id': '1gksmzg'}
{'comment': None, 'created': '2024-11-06 16:02:10', 'submission_id': '1gksmzg'}
{'comment': "Nah idk. After being allowed to get away with what he did in 2020 and early 2021, democracy was always going to be unrecoverable. When people hold one candidate with double standards, it means they've accepted that they're ok with fascism. Most won't even know that they're in a fascist country because they're just too out of the loop. \n\nIf Trump had cabinet members like 2016, I wouldn't be very concerned about anything besides a clown fest. Not the case this time", 'created': '2024-11-06 14:14:14', 'submission_id': '1gksmzg'}
{'comment': 'They def played the long game.', 'created': '2024-11-06 19:06:17', 'submission_id': '1gksmzg'}
{'comment': 'What about the other two times we ran against Trump, when we lost once and barely beat him the other time, and only after he bungled a pandemic?\n\nYou know how many people voted for Trump out of a high-minded concern that Harris was not chosen in a year-long primary process? Zero.\n\nWe should steamroll awful candidates like Trump every time. The problem is us.', 'created': '2024-11-06 11:09:49', 'submission_id': '1gksmzg'}
{'comment': 'It’s time for honest talk: it’s americas fault for refusing to elect a woman', 'created': '2024-11-06 11:56:53', 'submission_id': '1gksmzg'}
{'comment': "Just for correctness' sake, RBG was replaced by Amy Comey Barrett.", 'created': '2024-11-06 17:05:08', 'submission_id': '1gksmzg'}
{'comment': 'Shapiro or Newsome would have won', 'created': '2024-11-06 11:10:18', 'submission_id': '1gksmzg'}
{'comment': 'Then the people must resist. We have no choice.', 'created': '2024-11-06 11:39:05', 'submission_id': '1gksmzg'}
{'comment': "They don't have 2/3 of Congress which is needed for any constitutional changes plus 3/4 of the states needed to ratify those changes. So neither party can really fundamentally change the country forever.", 'created': '2024-11-06 20:08:03', 'submission_id': '1gksmzg'}
{'comment': 'She literally talked about all of those. At every fucking rally', 'created': '2024-11-06 16:12:11', 'submission_id': '1gksmzg'}
{'comment': '[removed]', 'created': '2024-11-06 08:50:08', 'submission_id': '1gksmzg'}
{'comment': 'i thought the country was better than it is. now i know. fuck trump.', 'created': '2024-11-06 10:19:14', 'submission_id': '1gksmzg'}
{'comment': 'Yup I feared as much and have been proven correct.', 'created': '2024-11-06 11:23:35', 'submission_id': '1gksmzg'}
{'comment': "Yeah people forget that most VP's don't go on to win. Only 4 sitting VP's have ever been elected President and two former have been elected President, one of which was Biden.", 'created': '2024-11-06 08:29:45', 'submission_id': '1gksmzg'}
{'comment': 'Yeah, I totally stop and think "Which candidates were nominated in a primary?" before I cast my vote.\n\nPrimaries choose weak candidates so often that it\'s tempting to think a smoke-filled room is a better choice.', 'created': '2024-11-06 11:12:48', 'submission_id': '1gksmzg'}
{'comment': 'This person gets it.', 'created': '2024-11-06 08:17:59', 'submission_id': '1gksmzg'}
{'comment': 'The message just didn’t resonate well enough w/ the masses & most importantly didn’t motivate enough supporters to the polls. Obv if we were winning we would be congratulating the campaign. We should still wait till all the votes are counted, but saying I’m currently discouraged is an understatement. But we will get up, dust off our shoulders, get ready to fight for a better America.', 'created': '2024-11-06 09:49:32', 'submission_id': '1gksmzg'}
{'comment': 'Exactly. We will not go down to there levels. We gotta stay on the high road. Always.', 'created': '2024-11-06 08:11:50', 'submission_id': '1gksmzg'}
{'comment': 'The respectful and adult answer. 🍻', 'created': '2024-11-06 08:27:27', 'submission_id': '1gksmzg'}
{'comment': 'Yeah, I keep thinking of his “little secret.” There are many countries that do not have fair elections. Look at how much they tried to interfere last election (e.g., fake electors scheme). What if they just did a more solid job this time around? I keep thinking of Roger Stone.', 'created': '2024-11-06 15:59:38', 'submission_id': '1gksmzg'}
{'comment': "Worse off than 5 years ago and largely we're worse off because of the mismanaged pandemic from 4 years ago.\n\nI agree with 2 that Biden should not have run for reelection.\n\nMass deportation will be a horrible policy and Biden was ready to pass a border security bill. Abortion is very important and probably did drive some turnout. Republicans ran on trans issues not Dems.\n\nBiden did not call any person garbage, no one. You're wrong, everyone's wrong. He just paused mid-sentence. The whole point of his statement was to say that calling Americans garbage is un-American. So, tell me why he would also call a bunch of Americans garbage in the same statement? He didn't. It was just a gaffe, not any sort of strategy or intention.", 'created': '2024-11-06 08:35:00', 'submission_id': '1gksmzg'}
{'comment': 'Democrats aren’t the ones making trans athletes a voting issue', 'created': '2024-11-06 09:51:57', 'submission_id': '1gksmzg'}
{'comment': 'get ready for the mass deportations and the aftermath which will affect us all. fun. hope maga voters don’t mind doing all those menial jobs. like picking our food. shrug.', 'created': '2024-11-06 10:22:00', 'submission_id': '1gksmzg'}
{'comment': "What an insane take. Kamala was running around with Liz Cheney, she couldn't be any more moderate, she's appealing to these fantastical moderate conservatives and she lost. If she had ran on a more progressive platform, and not just socially progressive but economically progressive, she would be looking a lot better. Don't blame trans people being attacked by the right for Kamala's loss", 'created': '2024-11-06 11:17:10', 'submission_id': '1gksmzg'}
{'comment': 'Shapiro would have been strong', 'created': '2024-11-06 11:13:11', 'submission_id': '1gksmzg'}
{'comment': 'How is she a worse candidate than a convicted felon and rapist?', 'created': '2024-11-06 08:26:05', 'submission_id': '1gksmzg'}
{'comment': 'The Dems had better fucking contest this instead of rolling over.', 'created': '2024-11-06 09:21:24', 'submission_id': '1gksmzg'}
{'comment': 'How the hell did he get PA???', 'created': '2024-11-06 08:36:04', 'submission_id': '1gksmzg'}
{'comment': 'Yes he’s going to win, but MSNBC has literally not called it yet as of 4am est', 'created': '2024-11-06 10:12:02', 'submission_id': '1gksmzg'}
{'comment': 'Don’t we have to wait until the Electoral College decides?', 'created': '2024-11-06 08:32:42', 'submission_id': '1gksmzg'}
{'comment': "I'm absolutely giddy at the thought of them suffering. Fuck them. I want to see an anti-Trump demagogue rise up and dehumanize them. If they are going to destroy us, let's destroy them as well.", 'created': '2024-11-06 13:12:38', 'submission_id': '1gksmzg'}
{'comment': "You don't have to right now. Take a break.", 'created': '2024-11-06 14:55:12', 'submission_id': '1gksmzg'}
{'comment': 'That’s one thing. You can also work with a nonprofit for a cause you like', 'created': '2024-11-06 22:22:07', 'submission_id': '1gksmzg'}
{'comment': 'Struck a nerve.', 'created': '2024-11-06 12:42:48', 'submission_id': '1gksmzg'}
{'comment': 'Please, it\'s way too soon for "not all men". If it doesn\'t apply to you it\'s not about you.\n\nAnd again, the point isn\'t to vote to support the women you care about, the point is to vote to support 50% of the human fucking race.', 'created': '2024-11-06 16:21:51', 'submission_id': '1gksmzg'}
{'comment': 'It’s certainly possible, they’ll all be wrong', 'created': '2024-11-06 08:12:56', 'submission_id': '1gksmzg'}
{'comment': 'Believing everything you hear on the mainstream media is classic bs. I’m just being more cautious, nothing wrong with that if trump wins so be it lol', 'created': '2024-11-06 08:26:29', 'submission_id': '1gksmzg'}
{'comment': 'They’ll never remove him. Death is the only way Vance becomes president.', 'created': '2024-11-06 18:44:26', 'submission_id': '1gksmzg'}
{'comment': 'America is the couch.', 'created': '2024-11-06 18:55:01', 'submission_id': '1gksmzg'}
{'comment': 'The irony is, do we know our next opponent? JD Vance is a chameleon. He changes personas like socks.', 'created': '2024-11-06 15:51:51', 'submission_id': '1gksmzg'}
{'comment': "I'll be surprised if he survives another 4 years. Dude looks like he's gonna kick the bucket any day now.", 'created': '2024-11-06 09:07:36', 'submission_id': '1gksmzg'}
{'comment': "I don't think he'll last the first hundred days.", 'created': '2024-11-06 10:48:35', 'submission_id': '1gksmzg'}
{'comment': "We need to give up dreams of him being declared unfit or being prosecuted. It's not going to happen", 'created': '2024-11-06 13:47:32', 'submission_id': '1gksmzg'}
{'comment': 'musk cant hes from south africa', 'created': '2024-11-06 09:35:20', 'submission_id': '1gksmzg'}
{'comment': "The 22nd is just words on paper. It takes people with actual political power to inforce. And in a few months, all the people with that power are on the same side. In other words, who's gonna stop him?!?!", 'created': '2024-11-06 10:19:40', 'submission_id': '1gksmzg'}
{'comment': 'Russia has (had?) term limits too.\n\nThe guard rails for democracy are surprisingly fragile.', 'created': '2024-11-06 11:36:27', 'submission_id': '1gksmzg'}
{'comment': 'If laws or the constitution mattered Trump would have spent the last several months in jail.\n\nWe can’t pretend those laws matter when there is never any enforcement.', 'created': '2024-11-06 15:54:03', 'submission_id': '1gksmzg'}
{'comment': 'I would say Musk running is not possible since he wasn’t born here, but at this point literally anything is possible, no matter how batshit crazy it is. We’re so screwed. Thanks America! Nice job there flushing us all down the toilet.', 'created': '2024-11-06 17:21:19', 'submission_id': '1gksmzg'}
{'comment': 'We think there’ll be another election?', 'created': '2024-11-06 11:36:49', 'submission_id': '1gksmzg'}
{'comment': "Musk can't run.", 'created': '2024-11-06 14:04:17', 'submission_id': '1gksmzg'}
{'comment': "Biden is slow and stutters but he clearly is able to string a coherent thought together, which Trump ALREADY hasn't been able to do for years.", 'created': '2024-11-06 12:35:53', 'submission_id': '1gksmzg'}
{'comment': 'Really? After a coup attempt I don’t see the constitution as much of a hindrance.', 'created': '2024-11-06 12:44:16', 'submission_id': '1gksmzg'}
{'comment': 'The house went blue.', 'created': '2024-11-06 10:51:32', 'submission_id': '1gksmzg'}
{'comment': "People are legit underestimating Trump's potential for nuclear war here.", 'created': '2024-11-06 13:33:12', 'submission_id': '1gksmzg'}
{'comment': 'You have got to be kidding if these are your actual thoughts. wtf does “round up immigrants” even mean? Go ahead and look up who actually “rounded up” the most immigrants. Not to mention “dictator”!? What!? He only served for 4 years! What the hell kind of dictator is that (not to mention everything else wrong with that sentence). Everything else you said isn’t even bad, just things you don’t like because a Facebook article told you to think that.', 'created': '2024-11-06 08:42:33', 'submission_id': '1gksmzg'}
{'comment': 'He’s gonna skip congressional approvals and use lots of “acting” appointees.', 'created': '2024-11-06 10:16:27', 'submission_id': '1gksmzg'}
{'comment': 'Now trump will get credit for the recovering economy now.', 'created': '2024-11-06 08:56:16', 'submission_id': '1gksmzg'}
{'comment': '[removed]', 'created': '2024-11-06 08:45:22', 'submission_id': '1gksmzg'}
{'comment': 'Fair enough! Just know that pretty much half the country doesn’t think that way. Especially in the major cities.', 'created': '2024-11-06 23:47:33', 'submission_id': '1gksmzg'}
{'comment': 'Bimodal distribution of enthusiasm', 'created': '2024-11-06 16:07:10', 'submission_id': '1gksmzg'}
{'comment': 'I’m a biden truther but even I wouldn’t say he’s been totally fine. Dude was too old. Kamala ran a fine campaign this one is on the American people', 'created': '2024-11-06 14:36:57', 'submission_id': '1gksmzg'}
{'comment': 'All the funding would’ve dried up for Joe. That’s why he bowed out. KH raised RECORD breaking donation funds.', 'created': '2024-11-06 15:46:40', 'submission_id': '1gksmzg'}
{'comment': "This was always my biggest fear (Non-American)\n\nIt's not that Donald Trump is gonna destroy everything in 4 years, it's the fact that so many people are this radicalized and detached from reality. Why do you think people are voting for Trump? Probably because they unironically believe that the immigrants are poisoning the blood of their country, probably because they believe gays and trans people are grooming their kids, and maybe even believe the government is a baby eating satanic cult \n\nThis is what Trump ran for after all, similar things are happening all around Europe, people are losing their trust in their governments for the same reasons. Tommy Robinson for example has managed to convince so many people that UK is turning into a sharia country", 'created': '2024-11-06 12:12:44', 'submission_id': '1gksmzg'}
{'comment': "We were talking about 2028. Not that 2024 doesn't come with its own caveats.\xa0\n\n\nI mean how many people were intimidated by the GOP through violence or destruction of private property? What about the ballots that were burned? What about the many attempts to make voting harder in Dem-dominated areas?\n\n\nThat's election interference where I'm from.", 'created': '2024-11-06 16:08:47', 'submission_id': '1gksmzg'}
{'comment': 'A competitive process would have yielded a better candidate. One more likely to win.', 'created': '2024-11-06 14:09:01', 'submission_id': '1gksmzg'}
{'comment': 'I wish it wasnt this way but apparently it is. So instead of denying reality or trying to change it with magical thinking, let’s deal with it.', 'created': '2024-11-06 14:10:08', 'submission_id': '1gksmzg'}
{'comment': 'You’re right - Gorsuch got Garland’s seat.', 'created': '2024-11-06 20:51:24', 'submission_id': '1gksmzg'}
{'comment': 'Newsome would not have won.', 'created': '2024-11-06 12:04:32', 'submission_id': '1gksmzg'}
{'comment': 'No, no they would not have.', 'created': '2024-11-06 16:10:20', 'submission_id': '1gksmzg'}
{'comment': "I'll take any shred of hope I can get", 'created': '2024-11-06 20:45:00', 'submission_id': '1gksmzg'}
{'comment': "I know. I don't know what they could have realistically done. We had a razor thin majority that barely wanted to take action. Lots of people interested in protecting businesses instead of people. So we didn't get people housing. We didn't get people off the street.", 'created': '2024-11-06 16:19:12', 'submission_id': '1gksmzg'}
{'comment': 'This is exactly what scares me. If we know Trump operates like a mob boss, he never does the dirty work himself, but there are more than enough useful idiots to do it for him.', 'created': '2024-11-06 10:10:03', 'submission_id': '1gksmzg'}
{'comment': 'The other was Bush in 1988.', 'created': '2024-11-06 10:56:28', 'submission_id': '1gksmzg'}
{'comment': 'That\'s true, I think it\'s just more "inside baseball" for most people.', 'created': '2024-11-06 08:33:24', 'submission_id': '1gksmzg'}
{'comment': 'The high road is exposed and will kill you.', 'created': '2024-11-06 09:22:26', 'submission_id': '1gksmzg'}
{'comment': 'Stop trying to explain away bad strategy.', 'created': '2024-11-06 08:37:44', 'submission_id': '1gksmzg'}
{'comment': 'Yeah, the right is really good at talking endlessly about niche issues and acting like the left is causing it.', 'created': '2024-11-06 12:14:01', 'submission_id': '1gksmzg'}
{'comment': 'If she has run a more progressive platform, she would have lost even worse. An out of touch party that can’t get rural or blue collar voters against the most extreme candidate in the history of our country and you think “more progressive” was the answer? Insane. Absolutely batshit crazy.', 'created': '2024-11-06 16:03:32', 'submission_id': '1gksmzg'}
{'comment': 'Agreed', 'created': '2024-11-06 16:03:49', 'submission_id': '1gksmzg'}
{'comment': 'I think they meant a terrible candidate in comparison to other possible Democrat options.', 'created': '2024-11-06 08:52:17', 'submission_id': '1gksmzg'}
{'comment': 'They won’t. They will concede like good little politicians, thinking that’s the right thing to do. Someone should really investigate.', 'created': '2024-11-06 09:48:46', 'submission_id': '1gksmzg'}
{'comment': 'Why? so they can lose twice?', 'created': '2024-11-06 10:33:44', 'submission_id': '1gksmzg'}
{'comment': "I don't know what reality I'm in right now 😑...wishing Harris chose Shapiro. That was maybe the only gaff that would've pushed for PA win but who knows...", 'created': '2024-11-06 08:36:54', 'submission_id': '1gksmzg'}
{'comment': 'A lot of money form Elon Musk.\xa0', 'created': '2024-11-06 10:19:06', 'submission_id': '1gksmzg'}
{'comment': "Yes, and the electoral college said she isn't winning.", 'created': '2024-11-06 09:00:06', 'submission_id': '1gksmzg'}
{'comment': '"If we burn, you burn with us!" -Katniss Everdeen (The Hunger Games)', 'created': '2024-11-06 16:29:41', 'submission_id': '1gksmzg'}
{'comment': "Honestly. I.... I don't like to wish suffering on people. But I hope everyone gets what they voted for.", 'created': '2024-11-06 21:19:42', 'submission_id': '1gksmzg'}
{'comment': "My social anxiety is killing me but I have to power through. This Saturday or Sunday or whenever they're open I'll ask.", 'created': '2024-11-06 22:46:36', 'submission_id': '1gksmzg'}
{'comment': 'Well yeah obviously, I care about all women.\n\nThis isn’t a “not all men” situation. I stand with you and everybody else, we fought hard, and I resent being lumped into the “men” monolith by you. I am devastated by this result but I will keep on fighting.', 'created': '2024-11-06 16:23:42', 'submission_id': '1gksmzg'}
{'comment': "His ego and his cult won't allow it.", 'created': '2024-11-06 20:32:49', 'submission_id': '1gksmzg'}
{'comment': "You know what? I hope he does.\n\n \nIt's what they get for electing an 82 year old fucknut instead of the younger candidate with more integrity.", 'created': '2024-11-06 11:23:46', 'submission_id': '1gksmzg'}
{'comment': 'I mean hes looked that way for years. Hes a pharmacological marvel. Would not be stunned to see him do an 8 year stretch', 'created': '2024-11-06 12:24:57', 'submission_id': '1gksmzg'}
{'comment': "That's what I thought last time. And here we are.\xa0", 'created': '2024-11-06 22:22:03', 'submission_id': '1gksmzg'}
{'comment': 'You’re right. They’re not going to declare him unfit. Biden struggling up some stairs? “Get him out!!” Trump struggling to put together sentences? “He’s fine!!!”', 'created': '2024-11-06 20:11:34', 'submission_id': '1gksmzg'}
{'comment': 'I don’t think that’s a dream…but a nightmare. Trump is an incompetent mouthpiece but JD is a psychopath.', 'created': '2024-11-06 18:20:36', 'submission_id': '1gksmzg'}
{'comment': 'Thank the gods for that at least.', 'created': '2024-11-06 11:59:09', 'submission_id': '1gksmzg'}
{'comment': 'Why can’t Musk? If you are thinking because it’s the law you are sadly mistaken. When has MAGA ever worried about the laws or Constitution for that matter?', 'created': '2024-11-06 14:42:24', 'submission_id': '1gksmzg'}
{'comment': 'Sadly, you are absolutely 💯 correct.', 'created': '2024-11-06 11:32:07', 'submission_id': '1gksmzg'}
{'comment': 'If Trump gets to run again, so does Obama. It’s only fair /hj', 'created': '2024-11-06 14:17:49', 'submission_id': '1gksmzg'}
{'comment': '😔', 'created': '2024-11-06 15:58:45', 'submission_id': '1gksmzg'}
{'comment': 'There is huge difference between breaking a law and later getting caught Vs trying to contest 3rd time to become president of US.', 'created': '2024-11-06 15:56:18', 'submission_id': '1gksmzg'}
{'comment': 'Yeah I didn’t think about that. But yes it could be anybody who can be idolized by the right', 'created': '2024-11-06 17:24:09', 'submission_id': '1gksmzg'}
{'comment': "I wish but no it hasn't. Its 179 - 197 red. Dems lost at least 1 seat thus far.", 'created': '2024-11-06 12:11:37', 'submission_id': '1gksmzg'}
{'comment': "Didn't trump claim he was gonna deport like 20 million people on day 1?", 'created': '2024-11-06 09:05:10', 'submission_id': '1gksmzg'}
{'comment': "You are leaving so much out. XD. This is how the Nazi's won America. Because of traitors like yourself.", 'created': '2024-11-06 10:28:16', 'submission_id': '1gksmzg'}
{'comment': 'Spoiler alert: Obama deported more immigrants than Trump.', 'created': '2024-11-06 08:55:37', 'submission_id': '1gksmzg'}
{'comment': "Very true - his last few months in '16 I believe he filled three open cabinet positions like this including Sec of Defence.", 'created': '2024-11-06 13:09:47', 'submission_id': '1gksmzg'}
{'comment': "It's been the cycle for several presidents at this point.", 'created': '2024-11-06 09:05:13', 'submission_id': '1gksmzg'}
{'comment': 'And how is he going to accomplish that?', 'created': '2024-11-06 08:49:50', 'submission_id': '1gksmzg'}
{'comment': 'And he will do this how?', 'created': '2024-11-06 09:27:45', 'submission_id': '1gksmzg'}
{'comment': 'Lies', 'created': '2024-11-06 08:52:20', 'submission_id': '1gksmzg'}
{'comment': "Isn't it more skewed one direction? Like...the educated white middle class?", 'created': '2024-11-06 16:41:32', 'submission_id': '1gksmzg'}
{'comment': 'Harris’s base just wasn’t as energized and frothy as Trump supporters.', 'created': '2024-11-06 16:00:23', 'submission_id': '1gksmzg'}
{'comment': "He's just having a harder time controlling his stutter.", 'created': '2024-11-06 16:07:48', 'submission_id': '1gksmzg'}
{'comment': 'And that didn’t even matter.', 'created': '2024-11-06 16:49:44', 'submission_id': '1gksmzg'}
{'comment': 'Nope. Bullshit.', 'created': '2024-11-06 16:09:57', 'submission_id': '1gksmzg'}
{'comment': 'Yeah, I completely agree with your sentiment.', 'created': '2024-11-06 14:11:45', 'submission_id': '1gksmzg'}
{'comment': 'How?', 'created': '2024-11-06 14:07:51', 'submission_id': '1gksmzg'}
{'comment': "Not run a woman. That's what we could have done. It's the misogyny", 'created': '2024-11-06 16:20:26', 'submission_id': '1gksmzg'}
{'comment': 'He wasn’t a former one, he was a sitting VP when he won.', 'created': '2024-11-06 15:26:28', 'submission_id': '1gksmzg'}
{'comment': 'I’m curious what you mean by that? Why will not accusing the other side of voter fraud kill someone?', 'created': '2024-11-06 13:31:58', 'submission_id': '1gksmzg'}
{'comment': "Not bad strategy. What we really need is to start making up conspiracy theories, demonizing our political opponents, dividing Republicans against each other. We need a full on propaganda machine like the GOP? As soon as Trump is in power, even if the Dow hit's a new high, we know it's Biden's economy, just say it Trump's economy is horrible, the worst ever. Never stop lying until we win again. That's what you want, right?", 'created': '2024-11-06 08:41:45', 'submission_id': '1gksmzg'}
{'comment': 'Like who? Name them.', 'created': '2024-11-06 10:41:04', 'submission_id': '1gksmzg'}
{'comment': "States were touting record turnout, and yet there have been fewer votes this time. Doesn't make sense.", 'created': '2024-11-06 14:43:23', 'submission_id': '1gksmzg'}
{'comment': "Thus proving that they don't actually believe their rhetoric about how bad Trump is and will be.\n\nBecause if they did, they wouldn't let him win by any means.", 'created': '2024-11-06 09:53:14', 'submission_id': '1gksmzg'}
{'comment': "Biggest fucking mistake. Suicide by politeness.\xa0\n\n\n\xa0Just look at what's happening to so many European countries. The US is not immune to Russian interference. Someone indeed should investigate before it's too late.", 'created': '2024-11-06 11:18:02', 'submission_id': '1gksmzg'}
{'comment': "There's nothing to contest or investigate. We lost.", 'created': '2024-11-06 10:51:02', 'submission_id': '1gksmzg'}
{'comment': 'Better to die on your feet than die on your knees.', 'created': '2024-11-06 15:58:57', 'submission_id': '1gksmzg'}
{'comment': "Why am I being downvoted for asking a question? it's my first time voting", 'created': '2024-11-06 09:00:59', 'submission_id': '1gksmzg'}
{'comment': '>I resent being lumped into the “men” monolith by you.\n\nThis is literally why "not all men" was invented.', 'created': '2024-11-06 16:24:44', 'submission_id': '1gksmzg'}
{'comment': "It would be funny if it wasn't our real life", 'created': '2024-11-06 22:31:51', 'submission_id': '1gksmzg'}
{'comment': 'I think the only saving grace here is that Musk has all the charisma of a dead frog. He’s not a Trump in any way. He just doesn’t have the same appeal, so I don’t think they’d run him. He’ll be happy enough getting all the government contracts or to control all our agencies, which is going to be an absolute shit show. Ugh!', 'created': '2024-11-06 17:27:00', 'submission_id': '1gksmzg'}
{'comment': "No, look at the composition of her rallies. It's not just white people.\n\nNon-misogynists were excited. Misogynistic shits stayed home.", 'created': '2024-11-06 16:42:23', 'submission_id': '1gksmzg'}
{'comment': 'Too much baggage and negative pre conceived notions, the latter of which directly helped Trump against Clinton and Harris.', 'created': '2024-11-06 15:20:43', 'submission_id': '1gksmzg'}
{'comment': 'The same people who did not vote for Harris would not like Mr. California himself.', 'created': '2024-11-06 22:42:38', 'submission_id': '1gksmzg'}
{'comment': "Unfortunately I don't make those decisions. I would hate to tell the great women in this party that. It's sad and heartbreaking for me.", 'created': '2024-11-06 16:22:19', 'submission_id': '1gksmzg'}
{'comment': "They're already killing us.", 'created': '2024-11-06 15:56:12', 'submission_id': '1gksmzg'}
{'comment': 'Just lost in a slaughter and you think “not bad strategy”. \n\nMy. God.\n\nWin first stupid. Then pivot.', 'created': '2024-11-06 08:49:38', 'submission_id': '1gksmzg'}
{'comment': "How am I supposed to know? I'm not the one who posted the initial comment.", 'created': '2024-11-07 13:07:40', 'submission_id': '1gksmzg'}
{'comment': 'The person we would have voted for in a primary, for one', 'created': '2024-11-06 16:17:04', 'submission_id': '1gksmzg'}
{'comment': 'The types of people coming out to vote tracks...a lot of rural voters... A lot of religious groups..the Amish communities came out in record numbers voting for Trump.', 'created': '2024-11-06 19:27:55', 'submission_id': '1gksmzg'}
{'comment': 'Someone still has to respect the democratic process. They should only challenge if there is proof of voter fraud.', 'created': '2024-11-06 10:39:28', 'submission_id': '1gksmzg'}
{'comment': "People werent even willing to get on their feet to go vote you think they'll get on their feet for this?", 'created': '2024-11-06 22:44:55', 'submission_id': '1gksmzg'}
{'comment': 'Don’t take it personally people get wrapped around the axle on elections. \n\nBasically if enough of the state is reported to have gone, it doesn’t matter what the rest of the precincts do. \n\nElectoral college is mostly a formality, tied to state laws for how the states allocated electoral votes will be cast. Some weird rules like Maine or Nebraska have some districts voting split, but the rest of the states just go winner take all. \n\nFor the bigger picture, it doesn’t matter what the states that haven’t reported their results say: there are 538 votes, so the first person to get 270 (269+1 or 50.1%) wins', 'created': '2024-11-06 09:25:18', 'submission_id': '1gksmzg'}
{'comment': 'How about you blame the men that voted for him and not the men that voted with you?', 'created': '2024-11-06 16:25:17', 'submission_id': '1gksmzg'}
{'comment': "It is sad, but it's the reality we have to live in.", 'created': '2024-11-06 16:22:47', 'submission_id': '1gksmzg'}
{'comment': "I guess, I'm saying it's more than a poorly run campaign or candidate. I mean, Trump's speeches were just grievance lists with little of any policy. Completely incoherent. He does provide spectacle, especially for the media. But, also the right wing has an entire media ecosystem that can change their propaganda on a dime and literally change the minds of millions of people overnight. The Democrats think they can win by running the perfect campaign. We can't anymore, we have to somehow fight back with a full media strategy. Hopefully, it doesn't require all the lying and conspiracies I mentioned, but clearly we are losing huge numbers of people who's lives would be improved by our policies.", 'created': '2024-11-06 08:55:42', 'submission_id': '1gksmzg'}
{'comment': "[Democracies don't need to let themselves fall, even if the attack comes from the inside](https://www.giantitp.com/comics/oots1168.html)", 'created': '2024-11-06 16:03:27', 'submission_id': '1gksmzg'}
{'comment': 'The Dems who would contest this certainly did get on their feet to vote.\n\nI wonder if that general strike prep will become useful?', 'created': '2024-11-06 22:59:47', 'submission_id': '1gksmzg'}
{'comment': 'I fucking did.\n\n>To all the men who voted for Kamala for their daughters: imagine a world where you had just voted to support women all along.', 'created': '2024-11-06 16:26:10', 'submission_id': '1gksmzg'}
{'comment': "Ok, and what result are you hoping for in contesting this?\xa0\n\n\nThey won, they won in every facet of the game\xa0\n\n\nThey won the popular vote they won the electoral vote they won the house they won the Senate\xa0\n\n\nAnd it wasn't even close\xa0\n\n\nYou think the count was off by 4 million votes?", 'created': '2024-11-06 23:33:01', 'submission_id': '1gksmzg'}
{'comment': 'That is you blaming men that voted for Harris. And yes, many of them have supported women all along. I am on your side and I always have been.', 'created': '2024-11-06 16:27:09', 'submission_id': '1gksmzg'}
{'comment': 'Better to fight it while they still have a chance to than surrender to the lynch mobs.', 'created': '2024-11-06 23:40:45', 'submission_id': '1gksmzg'}
{'comment': "*The ones who did it only because now they have a daughter*.\n\nI don't know if you're being deliberately obtuse or just extremely defensive but I'm finished here.", 'created': '2024-11-06 16:36:47', 'submission_id': '1gksmzg'}
{'comment': "Fight what?\n\n\nI thought you were voting for democracy, you can't fight the results of a free and fair election because you don't like them...otherwise it's not free and fair", 'created': '2024-11-07 00:08:45', 'submission_id': '1gksmzg'}
{'comment': 'That’s 100% not clear in your original comment.', 'created': '2024-11-06 16:54:23', 'submission_id': '1gksmzg'}
{'comment': 'If the "free and fair" election results in not-democracy, then you can absolutely fight to overturn it in the name of democracy.\n\nBecause it\'s not a democracy anymore.\n\nHitler was elected, remember?', 'created': '2024-11-07 01:09:20', 'submission_id': '1gksmzg'}
{'comment': "Oooooo I get it, so when the person you don't like gets elected you call them Hitler and then attempt to overthrow them\n\n\nI guess I always misinterpreted the phrase, peaceful transfer of power\xa0\n\n\n\n\nOne point I will concede, he should have never been allowed to run in the first place\xa0\n\n\nHowever the Constitution actually doesn't prevent convicted felons from running for president so, based on my very very limited knowledge of the law I would currently say that as frustrating as it is our system is working as intended", 'created': '2024-11-07 02:04:08', 'submission_id': '1gksmzg'}
{'comment': "Law is an attempt to codify morality, not the other way around.\n\n> the person you don't like gets elected you call them Hitler\n\nFuck off with that shite.", 'created': '2024-11-07 16:58:32', 'submission_id': '1gksmzg'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 08:03:20', 'submission_id': '1gksmdm'}
{'comment': 'I’ve never felt more disgusted than this moment.', 'created': '2024-11-06 08:04:59', 'submission_id': '1gksmdm'}
{'comment': '', 'created': '2024-11-06 08:04:34', 'submission_id': '1gksmdm'}
{'comment': None, 'created': '2024-11-06 08:08:42', 'submission_id': '1gksmdm'}
{'comment': "I feel most depressed about the impact this will have on the rest of the world (Putin getting a free reign for example) and the environment. That likely damage can't simply be undone in a few years, assuming we even get another free election.\n\n\nI also don't know how to reconcile him getting the popular vote. An electoral win was one thing, but this...And people *know* what they voted for, hell, the platform is significantly *worse* this round. I don't know how I'm even going to be able to look at other people anymore without suspecting the worst of them.", 'created': '2024-11-06 08:26:22', 'submission_id': '1gksmdm'}
{'comment': "That our party is a joke if they couldn't take the most cliche villain archetype and win against it. that it's going to be a hopefully only 4 long years. and god fucking damn it, the news is going to be absolutely consumed by this man again. also, I hate that he took the one thing that made Grover Cleveland interesting away.", 'created': '2024-11-06 08:07:43', 'submission_id': '1gksmdm'}
{'comment': "I'm looking at it like this: They wanted Trump, they got him. Now they'll stop bitching about stolen elections. On top of that, it's one term. We can pull through it like we did last time. He'll also do something to piss off his base so his approval numbers will be in the shitter like last time. It's going to be a funny contest to see how fast they turn when they realize he's taking away their rights too.", 'created': '2024-11-06 08:10:32', 'submission_id': '1gksmdm'}
{'comment': 'I don’t feel like I have any future at all left. I can’t even leave because of financial problems, can’t get a job anymore, can’t afford a house, I have health problems that are gonna go untreated for years, and more that my brain doesn’t want to list for the sake of my own mental health. I’m scared. I’m angry. I have a migraine. I want this nightmare over.', 'created': '2024-11-06 08:19:11', 'submission_id': '1gksmdm'}
{'comment': 'im in a marginalized community and after getting it out to my friends and family i feel as ok as i can be. ill never be truly ok with this decision, the decision of half the country voting for a man liable for sexual assault and again, the man with tens of felony convictions, over a woman, simply because what, they expected her to do presidential things when her job was to be vice president?\n\ni sincerely hope these tens of millions of americans get what they\'re searching for. trumps economic plan is objectively worse than harris\'s. the objective plans on his platform are bad, but not world ending bad. just bad. and temporary.\n\ni know people are concerned with project 2025, but only SOME of it will actually happen. like militarizing police and border patrol, mass deportation, the removal of obamacare, the asinine ban of CRT in k-12, etc. \n\ntrump will not get a third term, and the midterms will always be there for us in 2 years. the country will land on its feet, and now we know the true agenda and priorities of these "patriots" who are just trumpists in disguise. good luck.', 'created': '2024-11-06 08:09:38', 'submission_id': '1gksmdm'}
{'comment': 'Most men would rather watch their country burn than allow a woman power over them', 'created': '2024-11-06 08:06:08', 'submission_id': '1gksmdm'}
{'comment': 'Pretty heartbroken but not surprised. I’m just hoping that the 2nd administration is just dysfunctional and not apocalyptic. However, I think the future looks pretty grim', 'created': '2024-11-06 08:05:37', 'submission_id': '1gksmdm'}
{'comment': "I'm not exactly surprised but I'm terrified. I have so many people close to me that I love so much that this will cause so much damage to. I've gone thru the stages of grief but haven't reached acceptance. I don't know how to do that.", 'created': '2024-11-06 08:10:52', 'submission_id': '1gksmdm'}
{'comment': 'I had hoped 2016 would be an anomaly but a second time just shows that half of America is glutton for punishment', 'created': '2024-11-06 08:11:49', 'submission_id': '1gksmdm'}
{'comment': "I'm a straight white man that doesn't live in the US. I'll be okay.\n\n\nMy heart aches for minorities, the LGBTQ+ , and women across the country. The next four years are going to be horrible.", 'created': '2024-11-06 08:05:02', 'submission_id': '1gksmdm'}
{'comment': 'I live in California, I’m a white woman and I’m just straight scared for anyone living in a red state. People talking about fleeing but the reality is most people won’t be able to do that. People talking about how fleeing is extreme. obviously nobody knows what’s going to happen but the fact that a man who was impeached, guilty of 34 felony counts, has said awful things about women, sexualized his daughter, raped women, the list goes on and on and on. How, how on gods green earth did this man somehow become elected again. The uncertainty, fear, and anxiety everyone has felt all day, for weeks, months. It’s all too much. And we all have to go to work tomorrow and act like everything is fine. My mind is so confused, boggled and fried.', 'created': '2024-11-06 08:10:05', 'submission_id': '1gksmdm'}
{'comment': "A spiteful orange won. LGBTQ+ rights will be diminished. Women's rights will be diminished. Immigrants trying to escape corruption will be deported. Our image to the world will be tarnished.\n\nJust to name some. Pathetic, absolutely pathetic, the results of this election. Downright vile. If I could leave now I would, but it would take years for me to be able to.", 'created': '2024-11-06 08:23:22', 'submission_id': '1gksmdm'}
{'comment': "sad,\xa0kinda\xa0scared,\xa0but\xa0gonna\xa0keep\xa0going.\xa0let's\xa0stick\xa0together,\xa0we'll\xa0get\xa0through\xa0this", 'created': '2024-11-06 08:09:27', 'submission_id': '1gksmdm'}
{'comment': "Disappointed. Why tf did this country decide that this criminal rapist should be running the country? I'm definitely looking into getting sterilized this year.\xa0", 'created': '2024-11-06 08:06:55', 'submission_id': '1gksmdm'}
{'comment': 'i’m never making it out of student loan hell. adding interest on stafford loans while being in school is going to kill me. and i’m going to be a teacher. please give me a reason why it’s worth it to live.', 'created': '2024-11-06 08:06:45', 'submission_id': '1gksmdm'}
{'comment': 'Livid. Genuinely in shock. Don’t think I’ve ever been so disappointed to be an American since 2016. Such a shame.', 'created': '2024-11-06 08:27:04', 'submission_id': '1gksmdm'}
{'comment': 'im thinking about abandoning ship and seeking asylum in Europe, this country is really damn bleak. But I cant even leave like 99% of Americans. and Im just gonna have to bite the bullet and deal with it. My rights are gonna be voided.', 'created': '2024-11-06 08:18:35', 'submission_id': '1gksmdm'}
{'comment': '[removed]', 'created': '2024-11-06 08:24:37', 'submission_id': '1gksmdm'}
{'comment': "This was a pretty terrible time for me to figure out that I'm trans, I suppose.", 'created': '2024-11-06 08:06:30', 'submission_id': '1gksmdm'}
{'comment': "I'm a European, and fear for Ukraine. Apart from that I fear for trans rights, women's rights, an inhumane treatment of migrants and just... the loss of general decency within the US", 'created': '2024-11-06 08:24:47', 'submission_id': '1gksmdm'}
{'comment': 'Fucking losing sleep because of this election it felt easy during 2020 then it felt crushing when 2024 rolled in.', 'created': '2024-11-06 08:04:35', 'submission_id': '1gksmdm'}
{'comment': 'I hate men and I am a cis female', 'created': '2024-11-06 08:26:35', 'submission_id': '1gksmdm'}
{'comment': 'I feel like Joe Biden should take radical action to preserve the Union. After all, he has immunity.', 'created': '2024-11-06 08:49:55', 'submission_id': '1gksmdm'}
{'comment': 'I hate this country. I HATE this country. Just when I think we make progress, we fucking shit the bed.', 'created': '2024-11-06 08:17:48', 'submission_id': '1gksmdm'}
{'comment': 'Pissed and ready for 2026.', 'created': '2024-11-06 08:11:48', 'submission_id': '1gksmdm'}
{'comment': 'Disappointed, ashamed, scared. I truly hope this country doesn’t turn to shit, but I just don’t know what to think. I don’t even want to vote in the next election if this is the end result. I’m honestly so glad I live in a blue state but I’m worried about it everyone else who doesn’t, especially minorities and those in the LGBTQ+ community.', 'created': '2024-11-06 08:30:23', 'submission_id': '1gksmdm'}
{'comment': 'I\'m very unhappy. I\'m gay 🌈 and moved to CA in retirement from the Deep South so I could feel safe. I was married for a few years but am now divorced. I remember growing up in the 70s and being totally into the closet into my early 50s. I fear for the young LGBTQ people who are going to lose their rights to marriage and anti-discrimination laws. \n\nOne reason I was so disgusted by the Deep South the few years I lived there was the blatant racism. Having grown up in the Midwest, I just found it repugnant. I was a registered Republican from \'84 (Reagan) until I moved to CA. Mostly because I\'m fiscally conservative. But I\'d been voting more and more Blue every election. \n\nMy biggest concern isn\'t so much the Fascism as it is the shifting to a "Christian Nation" mindset. It\'s no secret all the gerrymandering the Republicans engaged in and how they want to get control enough state legislatures controlled to force a Constitutional Convention. They they\'ll declare America a "Christian Nation". Freedom of Religion will survive, but all other religions will be secondary. Religion will be a justifiable reason for misogyny and discrimination. \n\nI\'m going to spend the next four years kind of like I have the last four. Living my life. I\'m a shut-in (I\'m a 100% P&T disabled vet and on SSDI for PTSD). I\'ll go to my doctor appointments and just exist.\n\nI do have a subscription to International Living magazine (for expats) and have for over ten years. I\'ll continue to read about moving, but realistically, I have a dog and it would be a lot of work. I am trying to learn some foreign languages with the Babbel lifetime all-languages subscription. Moving isn\'t entirely out of the question.\n\nThen it\'ll be a game of wait and see. A Trump Prssidency is going to kick in a recession. Tariffs will raise the prices of everything. Expanding the corporate tax cuts hasn\'t increased jobs or wages in the past, so I don\'t expect it to when they do it again. They\'ll balloon the national debt again and not raise taxes for any reason, so Social Security and Medicare are screwed. I\'m going to plan a 30% reduction in my SSDI in five years. \n\nSo in four years, we\'ll have another recession, Trump will probably be out of office via either natural causes or the 25th Amendment, and JD Vance will be President, and the country will be a mess. That\'s usually when Democrats swoop in and fix it.', 'created': '2024-11-06 08:31:10', 'submission_id': '1gksmdm'}
{'comment': "We WILL survive.\n\n \nPlease, don't hesitate to message me anybody if you need to talk. My DMs are open. If you're a recovering alcoholic/drug addict, please god do not give into the temptation. If you break your sobriety, you are letting them break your will, you are letting them win.\n\n \nWe win by remaining strong. We win by refusing to let them turn this country into a proxy of Gilead. We win by doing what we always do. Moving forward.", 'created': '2024-11-06 08:23:47', 'submission_id': '1gksmdm'}
{'comment': "Reporting from Taiwan -- to be honest, I'm terrified.", 'created': '2024-11-06 08:32:29', 'submission_id': '1gksmdm'}
{'comment': 'This just frickin VALIDATED Jan 6. 🤢 It was hopefully going to be a weird chapter in our history, but who knows now? It will justify and embolden similar behavior in the future for sure.\n\nAmerica heard “dictator for a day” from the closest to the anti-Christ I will ever witness, and gave him the popular vote. We deserve whatever we get honestly', 'created': '2024-11-06 09:01:52', 'submission_id': '1gksmdm'}
{'comment': "Biden should have kept his 2019/20 promise of being a one-term, transition President. Would have made a huge difference. Most people don't understand that the VP has no real power and their number one job is to not be seen/have an opinion. This was a HUGE problem for Kamala, not to mention the 100ish day campaign problem. Thanks Biden", 'created': '2024-11-06 08:06:56', 'submission_id': '1gksmdm'}
{'comment': 'Suboptimal', 'created': '2024-11-06 08:04:22', 'submission_id': '1gksmdm'}
{'comment': "I thought Harris was a much better candidate than Biden, and that if Biden won she'd be a shoo-in. I'm just really surprised and trying to wrap my head around what life will be like with a Trump presidency.", 'created': '2024-11-06 08:32:30', 'submission_id': '1gksmdm'}
{'comment': "I feel hopeless and worry that life is going to get way more difficult. I feel scared, myself and many others living below the poverty line are likely to have a much harder life over the next 4 years. I feel grief for the women and POC in our country that now have their every liberty on the chopping block.\n\nJ D Vance will be one of the most incompetent vice presidents we have ever had, and I can only hope it's a harmless incompetence. Trump being in office carries a genuine risk of compromising our safety and security on American soil due to his habit of allowing our worst enemies to walk all over him.", 'created': '2024-11-06 09:06:45', 'submission_id': '1gksmdm'}
{'comment': 'Oh Fuck off. \n\nJust kill me now.', 'created': '2024-11-06 09:10:18', 'submission_id': '1gksmdm'}
{'comment': 'Reconstruct the Democratic party for a year and come back swinging just in time for the midterm elections. We need to impose age limits for any federal office and stop with this backdoor DNC bull. The only reason we are here is because Biden lied and decided to run for reelection. He put the party in the position in which they needed to run a full presidential campaign in 2 months knowing damn well that our candidate needed a lot of work to be ready for the campaign. \n\nHad Kamala had the luxury of a full presidential campaign starting with a primary, she would’ve won this election', 'created': '2024-11-06 08:10:06', 'submission_id': '1gksmdm'}
{'comment': "Second comment. I'm rage commenting on Reddit instead of drinking a handle of whiskey and throwing a coffee table and my phone (accidentally) off a balcony like my buddy and I did on election night 2016. I guess I've matured a little in 8 years.", 'created': '2024-11-06 08:15:47', 'submission_id': '1gksmdm'}
{'comment': "All 3 branches. We're doomed", 'created': '2024-11-06 08:18:39', 'submission_id': '1gksmdm'}
{'comment': 'They just called PA for Trump. There is officially no longer a path to 270.\n\n \nWe lost.', 'created': '2024-11-06 08:27:24', 'submission_id': '1gksmdm'}
{'comment': "I'm in the UK and I'm absolutely gutted for you", 'created': '2024-11-06 08:40:17', 'submission_id': '1gksmdm'}
{'comment': 'Not everyone is going to make it out', 'created': '2024-11-06 09:04:57', 'submission_id': '1gksmdm'}
{'comment': 'I’m angry as fuck and completely disgusted at the lack of humanity present in this country.', 'created': '2024-11-06 09:18:49', 'submission_id': '1gksmdm'}
{'comment': 'Two years until the Midterms 👍', 'created': '2024-11-06 09:18:52', 'submission_id': '1gksmdm'}
{'comment': 'With Trump certain to win the Presidency, the senate and the house, and now with his presidential immunity, he is now officially a dictator.', 'created': '2024-11-06 10:28:36', 'submission_id': '1gksmdm'}
{'comment': 'Disgusted', 'created': '2024-11-06 08:04:17', 'submission_id': '1gksmdm'}
{'comment': "I'm devastated right now. Worried about the future programs like Social Security, Medicare and Medicaid all 3 services I depend on to just live. If predictions in 6 years that these programs will cease to exist after cuts and whatever the hell happens until then. I feel my life will be forfeit. I wonder if my family will take care of me and my chronic conditions. I don't know what will happen the next 4 yrs but I feel hopeless right now.\n\nTrump says he will be dictator on day one. My family voted for Trump just wait until they see what tariffs are going to do to everyones lives. Incoming cuts to ACA and so on....", 'created': '2024-11-06 08:59:13', 'submission_id': '1gksmdm'}
{'comment': 'Americans are stupid.\n\nThe world has no idea how bad this is.\n\nTrump is going to spend four years enriching himself.\n\nThat’s what is about to happen.', 'created': '2024-11-06 09:42:49', 'submission_id': '1gksmdm'}
{'comment': 'I feel really disconnected from what feels like the majority of our country. As a woman, I feel really hurt. No one cares about women. I know people do but not enough do. It’s all so awful.', 'created': '2024-11-06 16:05:52', 'submission_id': '1gksmdm'}
{'comment': "I'm scared", 'created': '2024-11-06 08:19:31', 'submission_id': '1gksmdm'}
{'comment': 'I feel sad.', 'created': '2024-11-06 08:16:23', 'submission_id': '1gksmdm'}
{'comment': "y'all need to stop overreacting. want to keep project 2025 at bay? start local. Vote for congress and house don't start and stop and the national level. Call ur congressman. About issue that affect ur state call the mayor about issue in your city. If you need to to make your voice heard at the federal lvl protest it cant and won't be illgal. Y'all are Americans not Russians not north Koreans n", 'created': '2024-11-06 08:09:51', 'submission_id': '1gksmdm'}
{'comment': 'radical acceptance. it happened. nothing can change that. we must move forward.', 'created': '2024-11-06 09:25:37', 'submission_id': '1gksmdm'}
{'comment': 'This is a devastating blow to our fight against the Climate Crisis. Scientists have said we have 4-6 years to drastically reduce our carbon emissions to avoid setting off a domino of ecological disasters we can’t recover from.\n\nWe just elected the most anti-environmental president we’ve ever had. He loves fossil fuels, hates green energy, and Project 2025 specifically wants to auction off our State Parks for industrial building JUST TO START.', 'created': '2024-11-06 09:53:30', 'submission_id': '1gksmdm'}
{'comment': "This is probably some sleep deprivation talking, but I can't help wondering if other countries aren't thinking of just wiping the U.S. out to avoid whatever consequences are likely to happen. Trump loves Putin and North Korea, and all 3 getting together would be ww3 levels of bad for everyone. Not saying I'd like to be obliterated, but I can't say I wouldn't understand why another country may want to do it.", 'created': '2024-11-06 10:00:16', 'submission_id': '1gksmdm'}
{'comment': 'I blame Garland and the sniper. Both could have prevented this. I just need this man to have a heart attack.', 'created': '2024-11-06 10:54:37', 'submission_id': '1gksmdm'}
{'comment': 'Unfortunately I don’t feel we’ll be alright. I did my graduate work on how a fledgling democratic government in Africa flipped to a complete dictatorship in less than a decade, and from that work I can say with certainty that we are already there.', 'created': '2024-11-06 17:49:59', 'submission_id': '1gksmdm'}
{'comment': 'Sad...', 'created': '2024-11-06 08:04:54', 'submission_id': '1gksmdm'}
{'comment': 'They’re already calling for all democrats in government jobs to be fired.', 'created': '2024-11-06 08:26:10', 'submission_id': '1gksmdm'}
{'comment': "Ashamed of how some Republicans are acting, i dont believe in kicking someone when they are down. I voted right, and this just seemed like a wholesome and honestly optimistic post. I don't like that people are assuming I didn't vote left because it was a black woman running, though. Race and sex do not matter to a lot of Republicans (I'm sure it does to some, on both sides).", 'created': '2024-11-06 08:14:03', 'submission_id': '1gksmdm'}
{'comment': "Nothing much really, I did my vote. So I'll just entertain myself for a while and head to sleep. It was fun riding it with yall", 'created': '2024-11-06 08:05:29', 'submission_id': '1gksmdm'}
{'comment': 'https://preview.redd.it/jlo4860ue8zd1.jpeg?width=2532&format=pjpg&auto=webp&s=b90e494ac32cbe720ba3b2717b3c305f2b3ad130', 'created': '2024-11-06 08:14:50', 'submission_id': '1gksmdm'}
{'comment': 'Darn :(', 'created': '2024-11-06 08:37:01', 'submission_id': '1gksmdm'}
{'comment': 'We need people moving to swing states', 'created': '2024-11-06 08:49:42', 'submission_id': '1gksmdm'}
{'comment': '[removed]', 'created': '2024-11-06 08:54:38', 'submission_id': '1gksmdm'}
{'comment': 'Honestly considering moving to Canada. I can’t', 'created': '2024-11-06 08:57:38', 'submission_id': '1gksmdm'}
{'comment': 'I’m beyond pissed.', 'created': '2024-11-06 09:03:36', 'submission_id': '1gksmdm'}
{'comment': 'i’m giving up on politics and voting. it’s obvious my community doesn’t care about me, so i’m not going to care about them either. i don’t care if that lets republicans win, they apparently can win against my vote anyway', 'created': '2024-11-06 09:20:08', 'submission_id': '1gksmdm'}
{'comment': "I'm disappointed in the country, realizing how many people still happily voted for Trump after all the crimes and hate speech. Like how am I supposed to live among these cretins?\n\nThe Supreme Court is going to have a 7-2 conservative supermajority for a looong time, and with the Legislative + Judicial + Executive branch all under one party control, the systems of checks & balances is entirely null and void. It's hard to not feel like it's doom and gloom when we're facing the possibility of an ACA repeal, a national abortion ban, countless anti-LGBTQ+ legislation, and other horrific Project 2025 goals. Trump is unhinged and this will not end well.", 'created': '2024-11-06 09:21:33', 'submission_id': '1gksmdm'}
{'comment': 'I hope the other EU countrys take up our place in the aid for the US, so Ukraine isnt forced to take whatever deal Putin throw at him\n\nI hope we can combat the nationalism he will instill in our country, \n\nAnd i hope for a better country in 4 years', 'created': '2024-11-06 09:38:33', 'submission_id': '1gksmdm'}
{'comment': 'This is the night democracy died. \n\nWe are no longer the beacon of hope to countries wanting self governance. \nWe are an example of weakness for the world to witness.', 'created': '2024-11-06 11:15:44', 'submission_id': '1gksmdm'}
{'comment': 'I just wonder if Biden can do anything to mitigate the damage in his time left.', 'created': '2024-11-06 11:59:04', 'submission_id': '1gksmdm'}
{'comment': 'Should have stuck with Joe.', 'created': '2024-11-06 13:02:12', 'submission_id': '1gksmdm'}
{'comment': "Well, if they thought the birth rate was low before, this certainly won't help. My immediate reaction was the thought to get snipped. I'm sure I can't be the only man scared as hell to have more kids at this point.", 'created': '2024-11-06 15:25:54', 'submission_id': '1gksmdm'}
{'comment': "Upset but not surprised. That and buying every copy of the constitution replica and handing them out, so we don't forget what the constitution is/was.", 'created': '2024-11-06 15:46:34', 'submission_id': '1gksmdm'}
{'comment': "I completely understand why people feel their votes don't count now. Because they don't!", 'created': '2024-11-06 15:59:57', 'submission_id': '1gksmdm'}
{'comment': 'How after being convicted of January 6 can this man run again and WIN??? That’s what I keep asking myself. The fact that that is okay, makes me deeply question our countru', 'created': '2024-11-06 16:06:53', 'submission_id': '1gksmdm'}
{'comment': 'Part of me feels like this. Enough people warned this will be bad for the country and the world. Now they have the house and senate as well. The country and the world will now witness whether our warnings were correct. I am not revengeful so I hope the warnings were wrong. Hope is all we have. It’s either we thrive because the policies will help us or we fail and people understand what we were saying all along. Here’s to hoping the rhetoric was more exaggerated than reality. Hope is all we got. I don’t wish them bad because that we be against our own interests. Republicans should feel all the pressure because if the economy tanks the bright line will be shining very brightly on them.', 'created': '2024-11-06 17:11:28', 'submission_id': '1gksmdm'}
{'comment': 'I am more inspired than ever to go into politics and political science as my future career path.', 'created': '2024-11-06 18:23:37', 'submission_id': '1gksmdm'}
{'comment': 'I feel like I really don’t want to celebrate July 4th for 4 years', 'created': '2024-11-06 18:24:50', 'submission_id': '1gksmdm'}
{'comment': "The fact that a man like Trump can get elected is so fucking depressing. I honestly do not get it. At all. That's a lot of people voting for him. It makes me embarrassed to be an American.\n\nThe changes they have planned with Project 2025 will have long term consequences. This is not business as usual. This is fucking code red.", 'created': '2024-11-07 03:22:33', 'submission_id': '1gksmdm'}
{'comment': 'We have NOT lost yet', 'created': '2024-11-06 08:12:20', 'submission_id': '1gksmdm'}
{'comment': 'DNC should have put in Bernie in 2020. (I’m Canadian, but just feel like sharing).', 'created': '2024-11-06 08:20:30', 'submission_id': '1gksmdm'}
{'comment': 'Does it bug anyone here that she was SELECTED and not ELECTED???? Similar to Hillary over Bernie in 2016?? Anyone??? At some point you have to take a long hard look at your party… These life long politicians atop the democrat hierarchy are robbing the left of real opportunities for change that will appeal to ppl.', 'created': '2024-11-06 08:11:26', 'submission_id': '1gksmdm'}
{'comment': 'Time to re build the DNC and let go of party elitist like Pelosi', 'created': '2024-11-06 08:05:48', 'submission_id': '1gksmdm'}
{'comment': "I mean it's over, the dnc did a shit job. It's getting to the point that we literally need to flip conservatives", 'created': '2024-11-06 08:05:03', 'submission_id': '1gksmdm'}
{'comment': "I didn't vote for Trump, but I'm not at all surprised that he won.", 'created': '2024-11-06 09:26:19', 'submission_id': '1gksmdm'}
{'comment': '[removed]', 'created': '2024-11-06 08:14:13', 'submission_id': '1gksmdm'}
{'comment': '[removed]', 'created': '2024-11-06 08:04:33', 'submission_id': '1gksmdm'}
{'comment': 'Happy that my gun rights are safe. Hopefully we can repeal the NFA now', 'created': '2024-11-06 08:10:18', 'submission_id': '1gksmdm'}
{'comment': '[removed]', 'created': '2024-11-06 08:22:42', 'submission_id': '1gksmdm'}
{'comment': '[removed]', 'created': '2024-11-06 08:06:49', 'submission_id': '1gksmdm'}
{'comment': 'I’ve never felt better, here’s to 4 more good ones 🍻', 'created': '2024-11-06 08:04:52', 'submission_id': '1gksmdm'}
{'comment': 'I feel disgust and confusion. All I can think of is that people don’t wanna vote for a woman and they think Biden controls gas and grocery prices.', 'created': '2024-11-06 08:52:02', 'submission_id': '1gksmdm'}
{'comment': 'Absolutely insane', 'created': '2024-11-06 08:12:28', 'submission_id': '1gksmdm'}
{'comment': 'I’m already asking for a higher dose of antidepressants, just sent an email. Hoping that those make me cope with the next 4 years.', 'created': '2024-11-06 10:13:46', 'submission_id': '1gksmdm'}
{'comment': 'Completely with you. Only thing I know to do now is sleep it off.', 'created': '2024-11-06 08:06:30', 'submission_id': '1gksmdm'}
{'comment': 'Project 2025 is two months away from starting… like… our rights are slowly going to be taken away.\n\nHow am I supposed to feel', 'created': '2024-11-06 08:12:06', 'submission_id': '1gksmdm'}
{'comment': 'I’m so sorry that this is causing ya’ll so much distress. We’ll win it next time. I’m trying to take this as a test of courage. We all have to try and be brave and just keep fighting.', 'created': '2024-11-06 08:11:02', 'submission_id': '1gksmdm'}
{'comment': 'Moving is still a choice, ya?', 'created': '2024-11-06 08:19:15', 'submission_id': '1gksmdm'}
{'comment': 'Then move, the majority don’t agree 👍', 'created': '2024-11-06 08:11:34', 'submission_id': '1gksmdm'}
{'comment': "It's important to come to terms with. Harming a life isn't your right \nYour wife has options though. Just harming another life isn't one of them", 'created': '2024-11-06 08:22:11', 'submission_id': '1gksmdm'}
{'comment': 'The Get Trump! drumbeat is what brought him back to life in the first place. They just couldn’t help themselves, overplayed their hand as usual, and conjured him back up like fucking Beetlejuice.', 'created': '2024-11-06 12:56:30', 'submission_id': '1gksmdm'}
{'comment': 'they’ll never realize, that’s why they’ve been supporting him for so long. my hispanic mother is an avid supporter of him. 0 self awareness', 'created': '2024-11-06 08:12:16', 'submission_id': '1gksmdm'}
{'comment': 'Im absolutely terrified but im trying to look at it like this too. If he lost the right would be never ending with their claims of election fraud and division would grow deeper. Maybe, hopefully he will be SO horrible that more trump voters will come to their senses. I just hope it won’t be too late by then', 'created': '2024-11-06 08:37:48', 'submission_id': '1gksmdm'}
{'comment': 'SCOTUS will be conservative for the rest of my life', 'created': '2024-11-06 08:44:46', 'submission_id': '1gksmdm'}
{'comment': 'He won’t last. I believe the intention was to put Vance I there.', 'created': '2024-11-06 10:04:03', 'submission_id': '1gksmdm'}
{'comment': ">On top of that, it's one term.\n\nYou're awfully optimistic. It could easily become the never-ending term.", 'created': '2024-11-06 08:20:00', 'submission_id': '1gksmdm'}
{'comment': 'I don’t know, the last term killed over a million people because the pandemic was a hoax. To find that he was doing that so that his stock doesn’t lose money is a travesty, he was totally ok when congress passed the trillion dollar bills to support the economy during the pandemic. I’m hoping that antidepressants help me cope with the next 4 years.. we’ll see.', 'created': '2024-11-06 10:22:40', 'submission_id': '1gksmdm'}
{'comment': "My hope is that they'll start noticing that the things they wanted aren't happening. Lots of promises for a man who'd rather be golfing and increasing his LDL. Our best hope is that he gets lazy.", 'created': '2024-11-06 12:50:40', 'submission_id': '1gksmdm'}
{'comment': "When he tanks the economy with tariffs and everything increases in price, maybe then the idiots who know nothing about how economics and inflation work might get a clue. I kind of doubt it, though. They've voted for a self-inflicted wound.\n\nAs for deportation round-ups. They sound great on paper. But look at Florida when they cracked down. You suddenly had farm owners complaining that there were no workers. With an estimated 11-15 million illegal immigrants in the country, that is a lot of labor provided. Who is going to be building the homes, picking the crops, or working in the meat packing plants now? So supply will go way down, so prices go way up. INFLATION.", 'created': '2024-11-06 08:43:54', 'submission_id': '1gksmdm'}
{'comment': 'They better not say a single thing when their government benefits and social security vanish. They voted for him, they get what they get.', 'created': '2024-11-06 10:02:00', 'submission_id': '1gksmdm'}
{'comment': "See, I don't think this ends in four years. He has the House, Senate, and the SCOTUS. He can, and will do whatever the fuck he wants. Democracy died yesterday.", 'created': '2024-11-06 21:37:29', 'submission_id': '1gksmdm'}
{'comment': "I'm going to live in the forest for the next 4 years. seriously. I'm just gonna go", 'created': '2024-11-06 10:43:10', 'submission_id': '1gksmdm'}
{'comment': 'Concerned about EPA and Dept of Education as well. If they hold all three branches, dismantling this is going to be a cakewalk.', 'created': '2024-11-06 08:20:52', 'submission_id': '1gksmdm'}
{'comment': 'I appreciate your positivity toward the end. I’m so, so scared.', 'created': '2024-11-06 08:34:21', 'submission_id': '1gksmdm'}
{'comment': None, 'created': '2024-11-06 09:11:10', 'submission_id': '1gksmdm'}
{'comment': 'Can get a third term?', 'created': '2024-11-06 08:50:55', 'submission_id': '1gksmdm'}
{'comment': 'The supreme court granted that a president can have immunity. They easily could change the number of terms a president can have back to as many as a president wants to have. Immunity has been granted now when that was never even a thing to be thought of as giving to a president in office but it just became official this year. So now that a president is basically a free human being while they are in the oval office leading the USA according to their corrupt as hell supreme court, anything now granted by them can happen and reverse and switch up. I would not be surprised if they can change the number of terms a president can have back. For Trump they would finalize that choice in minutes- give him the right to run for office as many times as he wants to and increase his number of terms to whatever he wants.', 'created': '2024-11-06 12:02:01', 'submission_id': '1gksmdm'}
{'comment': 'As a man I would rather a raccoon be president than trump. This is actually heartbreaking', 'created': '2024-11-06 08:11:17', 'submission_id': '1gksmdm'}
{'comment': 'You realize trump gained with women too, right?', 'created': '2024-11-06 09:00:33', 'submission_id': '1gksmdm'}
{'comment': 'This is the truest statement. I underestimated the blue collar white vote that got out to vote this election. Even though the democrats helped with unions. I hope you go big tariff trump', 'created': '2024-11-06 09:07:19', 'submission_id': '1gksmdm'}
{'comment': 'That, or it was a poor candidate regardless of her gender. Wouldn’t you want a bright, charismatic powerful woman to take the reins as the first woman president? I find the ideology many had of wanting to vote for her primarily because she’s a woman insulting because it insinuates that they aren’t capable of winning people’s votes based on her qualities and qualifications. Which there are plenty of those in our country, but we get stuck with two options like this. No one can tell me with a straight face that these two options were the sharpest, best option we could come up with in one of the smartest countries in the world.', 'created': '2024-11-06 08:55:51', 'submission_id': '1gksmdm'}
{'comment': 'Smh. This is why you will never understand what just happened.', 'created': '2024-11-06 08:11:08', 'submission_id': '1gksmdm'}
{'comment': '[removed]', 'created': '2024-11-06 08:15:21', 'submission_id': '1gksmdm'}
{'comment': "The Heritage Foundation already has a lot of the Project 2025 initiatives written up, ready to be signed as executive order. \n\nSo it's not like Trump will have much work to do.", 'created': '2024-11-06 08:30:42', 'submission_id': '1gksmdm'}
{'comment': 'There will be no more guard rails. They figured that out after stewing over it for 4 years. Buckle up folks.', 'created': '2024-11-06 08:08:38', 'submission_id': '1gksmdm'}
{'comment': 'Apocalyptic is pretty much best description', 'created': '2024-11-06 08:26:51', 'submission_id': '1gksmdm'}
{'comment': "I'm a straight white woman who also doesn't live in the USA. I'll be ok too, but I'm gutted for all the women, men, minorities, lgbtq+ people in America. Don't give up, don't run away, keep fighting\xa0", 'created': '2024-11-06 08:13:41', 'submission_id': '1gksmdm'}
{'comment': "You sure? \n\nHow long before Trump and MAGA decide to make the world great again?\n\nHey, but maybe you'll get lucky. Maybe Trump will practice isolationism instead.", 'created': '2024-11-06 08:36:19', 'submission_id': '1gksmdm'}
{'comment': "Well more minorities, specifically Hispanics, voted for Trump then when Biden ran so don't feel too bad for them.", 'created': '2024-11-06 08:08:06', 'submission_id': '1gksmdm'}
{'comment': 'Do you have room in your house for a straight white woman who desperately wants to leave the USA?', 'created': '2024-11-06 08:24:32', 'submission_id': '1gksmdm'}
{'comment': 'They will all be fine.stop the fear mongering', 'created': '2024-11-06 08:13:16', 'submission_id': '1gksmdm'}
{'comment': 'Most people are fleeing california though...', 'created': '2024-11-06 08:36:38', 'submission_id': '1gksmdm'}
{'comment': '😭🤣', 'created': '2024-11-06 08:35:52', 'submission_id': '1gksmdm'}
{'comment': 'That’s the spirit!', 'created': '2024-11-06 08:26:58', 'submission_id': '1gksmdm'}
{'comment': 'Amen', 'created': '2024-11-06 08:18:16', 'submission_id': '1gksmdm'}
{'comment': 'Why are you scared for?', 'created': '2024-11-06 08:34:02', 'submission_id': '1gksmdm'}
{'comment': 'How could people POSSIBLY THINK a 34 time felon, criminally liable rapist, notable liar, racist and guy who bankrupted 6 different companies should run our country', 'created': '2024-11-06 08:13:40', 'submission_id': '1gksmdm'}
{'comment': 'Same, I’m calling my GP in the morning, I am NOT gonna wait anymore.', 'created': '2024-11-06 08:19:53', 'submission_id': '1gksmdm'}
{'comment': 'Better hurry up before they take that right from us 😭', 'created': '2024-11-06 08:13:29', 'submission_id': '1gksmdm'}
{'comment': 'What? Sterilized? Why?', 'created': '2024-11-06 08:25:02', 'submission_id': '1gksmdm'}
{'comment': 'If it makes you feel any better, we were never gonna be free from student loans to begin with. It creates too much income for them to forgive them.', 'created': '2024-11-06 08:08:21', 'submission_id': '1gksmdm'}
{'comment': 'Take responsibility for your own loans. Dont expect Americans to pay for your education lol', 'created': '2024-11-06 08:34:49', 'submission_id': '1gksmdm'}
{'comment': 'I would leave for Canada or Europe in a heartbeat… if I could.', 'created': '2024-11-06 08:38:44', 'submission_id': '1gksmdm'}
{'comment': 'Get yourself to the northeast or the west coast and blue states', 'created': '2024-11-06 08:17:51', 'submission_id': '1gksmdm'}
{'comment': 'Be careful. Prayers for your safely and wellbeing 💔', 'created': '2024-11-06 08:11:56', 'submission_id': '1gksmdm'}
{'comment': 'You have the entire LGBTQ+ community behind you! We won’t stop fighting until we’re on equal grounds as our cishet counterparts!', 'created': '2024-11-06 08:45:20', 'submission_id': '1gksmdm'}
{'comment': 'Europe is going to have to stand up for itself for now. I’m truly sorry for Ukraine.', 'created': '2024-11-06 15:14:18', 'submission_id': '1gksmdm'}
{'comment': 'I hate them and am one', 'created': '2024-11-06 10:02:31', 'submission_id': '1gksmdm'}
{'comment': 'I love this country. \n\n- it’s the most naturally beautiful land on earth. \n- it’s stood for some pretty amazing things in its short history. \n\nDon’t let something like this turn you bitter. It’s 4 years. We will be fine.', 'created': '2024-11-06 09:33:32', 'submission_id': '1gksmdm'}
{'comment': 'Check for other elections before that. School boards, state judges, referendums that get added on obscure elections, anything. My state (WI) has a supreme court election coming up in early 2025 and we need to preserve our current 4-3 liberal majority.', 'created': '2024-11-06 08:55:18', 'submission_id': '1gksmdm'}
{'comment': '“We win by refusing to let them turn this country into a proxy of Gilead.” How in the hell are we supposed to do that when they control everything and fully plan on using the military to annihilate any protests?', 'created': '2024-11-06 08:39:50', 'submission_id': '1gksmdm'}
{'comment': 'yup.', 'created': '2024-11-06 08:06:25', 'submission_id': '1gksmdm'}
{'comment': 'she wouldn’t have won the primary lol', 'created': '2024-11-06 08:22:02', 'submission_id': '1gksmdm'}
{'comment': 'Don’t think like that. I’ll admit when I first saw she was losing my mind went to the worst case scenario too. We have to try and stay positive. We’re going to be okay and we’ll do even better next time.', 'created': '2024-11-06 08:20:19', 'submission_id': '1gksmdm'}
{'comment': 'Me too 😞', 'created': '2024-11-06 08:31:38', 'submission_id': '1gksmdm'}
{'comment': ">y'all need to stop overreacting. want to keep project 2025 at bay? start local.\n\nWhat are you talking about? A lot of project 2025 will be implemented by the next election cycle. It'll be too late.", 'created': '2024-11-06 08:25:29', 'submission_id': '1gksmdm'}
{'comment': 'I live in PA. Our local elections were close, but won by the red when our democratic candidates were great and actually cared.', 'created': '2024-11-06 08:15:57', 'submission_id': '1gksmdm'}
{'comment': 'How can you be so sure?', 'created': '2024-11-06 08:44:02', 'submission_id': '1gksmdm'}
{'comment': 'JD Vance will be worse. Just as venal as Trump, but a lot younger and smarter.', 'created': '2024-11-06 17:50:58', 'submission_id': '1gksmdm'}
{'comment': 'I agree. I just want to put out some positivity and help people get the support they might need in the comments while emotions are high and people are rightfully scared. \n\nIt’s over, he won, now people need a chance to find some positivity after all of this and right wing trolls can’t just sit down for a few minutes to let that happen.', 'created': '2024-11-06 08:19:05', 'submission_id': '1gksmdm'}
{'comment': 'They’re evil people…not sure what else you expect.', 'created': '2024-11-06 09:22:04', 'submission_id': '1gksmdm'}
{'comment': "I kinda feel the same, but I'm sure I'll continue to vote. I've voted in every election (local as well) since 2008. I've volunteered, I've donated, I've banked, and I showed up to vote. It just feels so... hopeless is the word, I suppose.", 'created': '2024-11-06 10:57:37', 'submission_id': '1gksmdm'}
{'comment': 'CNN called Pennsylvania. It’s over', 'created': '2024-11-06 08:14:26', 'submission_id': '1gksmdm'}
{'comment': 'Cope :(', 'created': '2024-11-06 08:36:16', 'submission_id': '1gksmdm'}
{'comment': '80% of Democrats wanted Berine is 2016 not the DNC and the DNC once again picked someone a lot of people did not want it. 2 losses in the last 3 presidential elections is 105% on the DNC itself DNC needs to let the voters pick the candidates not the top 4 to 6 people in the DNC', 'created': '2024-11-06 08:33:37', 'submission_id': '1gksmdm'}
{'comment': 'Not in the least. She was a great candidate.\n\nThe right-wing media gave the election to Trump.', 'created': '2024-11-06 08:15:29', 'submission_id': '1gksmdm'}
{'comment': 'Thanks bud. /s', 'created': '2024-11-06 08:23:29', 'submission_id': '1gksmdm'}
{'comment': 'What a great day to be an American', 'created': '2024-11-06 08:09:49', 'submission_id': '1gksmdm'}
{'comment': 'Harris was never about taking away gun rights, just putting them in better hands. What you should be worried about is your daughter or mother’s rights. I’m sure you wouldn’t want the same guy that’s about to be in office with one of them would you?', 'created': '2024-11-06 08:25:58', 'submission_id': '1gksmdm'}
{'comment': 'fascist direction ***', 'created': '2024-11-06 08:44:34', 'submission_id': '1gksmdm'}
{'comment': "And what's stopping Trump from doing exactly that?", 'created': '2024-11-06 08:09:06', 'submission_id': '1gksmdm'}
{'comment': 'Fascism doesn’t start with camps. It ends there.', 'created': '2024-11-06 08:09:48', 'submission_id': '1gksmdm'}
{'comment': 'That too will happen to a few people .. Trump will start on his Enemy’s list on Jann21st', 'created': '2024-11-06 08:09:40', 'submission_id': '1gksmdm'}
{'comment': 'do you literally have nothing better to do than troll the democrats subreddit? loser', 'created': '2024-11-06 08:15:33', 'submission_id': '1gksmdm'}
{'comment': 'I think this was just meant as a "welp, that just fucking happened" kind of post. He\'s evil, but hopefully not that evil. Someone remind me of this comment if it shows like milk though.', 'created': '2024-11-06 08:09:34', 'submission_id': '1gksmdm'}
{'comment': 'I keep saying this. I’ve encountered A LOT of people who believe that Trump will lower grocery prices by a substantial amount. That is the kind of ignorant, simplistic thinking that cannot be overcome.', 'created': '2024-11-06 09:31:22', 'submission_id': '1gksmdm'}
{'comment': 'It’s exactly that sort of reductive handwaving that has Democrats here in the first place. You’ll never understand the losses until you break out of that.', 'created': '2024-11-06 12:58:17', 'submission_id': '1gksmdm'}
{'comment': 'That’s interesting. The only thing I can’t seem to do right now is sleep.', 'created': '2024-11-06 08:47:03', 'submission_id': '1gksmdm'}
{'comment': 'Project 2025 has no connection to Trump. It’s a manifesto by a Christian think tank. You’ve been fear mongered.', 'created': '2024-11-06 08:21:36', 'submission_id': '1gksmdm'}
{'comment': 'If there is a next time.', 'created': '2024-11-06 08:21:06', 'submission_id': '1gksmdm'}
{'comment': "What happened to governing for all of the citizens, regardless of who they voted for?\n\nJust say it, you're down with fascism. 👎", 'created': '2024-11-06 08:19:22', 'submission_id': '1gksmdm'}
{'comment': "Let's be real, trump will probably be dead before his term is over so will be interesting watching a president die of obesity and old age in office.", 'created': '2024-11-06 08:14:06', 'submission_id': '1gksmdm'}
{'comment': 'Her body, her choice.', 'created': '2024-11-06 08:54:25', 'submission_id': '1gksmdm'}
{'comment': "So you're saying I'm entitled to your organs if I need one?", 'created': '2024-11-06 09:18:26', 'submission_id': '1gksmdm'}
{'comment': 'Probably true', 'created': '2024-11-06 08:16:25', 'submission_id': '1gksmdm'}
{'comment': 'At this point I don’t even know if I would prefer that. He’s sleezy but not impulsive. He was a never trumper to an always trumper. When trump is gone if he steps up I could def see him stepping a bit center to try and appease the middle since he won’t have trumps cult following.', 'created': '2024-11-06 16:10:19', 'submission_id': '1gksmdm'}
{'comment': 'I mean if he tried that but..he ain’t FDR and there ain’t no war US officially fighting. Hopefully im right on this, please.', 'created': '2024-11-06 08:32:27', 'submission_id': '1gksmdm'}
{'comment': "He's gotta die eventually. He's a monster, but he's still technically human, and all humans will die at some point.", 'created': '2024-11-06 10:03:04', 'submission_id': '1gksmdm'}
{'comment': 'It could be vance after,\xa0 which would be at least as bad.', 'created': '2024-11-06 17:57:30', 'submission_id': '1gksmdm'}
{'comment': None, 'created': '2024-11-06 20:34:23', 'submission_id': '1gksmdm'}
{'comment': 'Yeah the EPA is dead for sure.', 'created': '2024-11-06 09:09:53', 'submission_id': '1gksmdm'}
{'comment': "there is no possible way the dems would let that happen even if they're the minority in congress. no possible way. yes presidents are immune to criminal prosecution and trump has packed the courts with his people but to overturn an amendment like that would completely flip this country on its face, it would cause as much ruckus as ridding women's rights to vote. even if not the majority, democrats still exist. on the state level, and they sit with the gop. filibuster.", 'created': '2024-11-06 09:20:06', 'submission_id': '1gksmdm'}
{'comment': 'you’re reaching', 'created': '2024-11-06 11:16:42', 'submission_id': '1gksmdm'}
{'comment': 'I would rather have a pot smoking monkey or Carrot Top on LSD', 'created': '2024-11-06 08:27:56', 'submission_id': '1gksmdm'}
{'comment': 'i can’t believe you’re getting downvoted for this when it’s just simply the truth, mexico, which is pretty socially conservative, just elected its first woman president, it’s not about the gender or race people', 'created': '2024-11-06 11:31:34', 'submission_id': '1gksmdm'}
{'comment': 'Wow.', 'created': '2024-11-06 08:22:20', 'submission_id': '1gksmdm'}
{'comment': '🤮', 'created': '2024-11-06 08:18:33', 'submission_id': '1gksmdm'}
{'comment': "They'll just praise his greatness and stroke his ego, and he'll sign whatever they want.", 'created': '2024-11-06 08:37:00', 'submission_id': '1gksmdm'}
{'comment': 'Oh I know, hope is all I can cling to now. No matter how delusional it is lol', 'created': '2024-11-06 08:10:08', 'submission_id': '1gksmdm'}
{'comment': "Seriously, anyone who thinks they're going to be ok because they're not in the US is in for some surprises. The US is a superpower that's about to regress heavily in science and education and that's going to cause ripple effects around the world.", 'created': '2024-11-06 10:26:01', 'submission_id': '1gksmdm'}
{'comment': 'Here we go', 'created': '2024-11-06 08:25:57', 'submission_id': '1gksmdm'}
{'comment': 'How is this funny?', 'created': '2024-11-06 08:37:32', 'submission_id': '1gksmdm'}
{'comment': '<3\xa0yeahhh', 'created': '2024-11-06 08:38:46', 'submission_id': '1gksmdm'}
{'comment': "Because they're going to take BC away. Where have you been?", 'created': '2024-11-06 08:58:31', 'submission_id': '1gksmdm'}
{'comment': 'Go do flips and shit.\xa0', 'created': '2024-11-06 08:29:12', 'submission_id': '1gksmdm'}
{'comment': 'It’s not your place to meddle with natural selection. Let them cook.', 'created': '2024-11-06 13:03:56', 'submission_id': '1gksmdm'}
{'comment': 'i’m still a dependent and my parents make too much for me to get really any financial aid. i’m paying for school completely out of pocket/on loan by myself and i’m going to be easily in $200k debt by the time i graduate. i am not seeing very many positives', 'created': '2024-11-06 08:09:28', 'submission_id': '1gksmdm'}
{'comment': 'NEVER did i say i wanted other people to pay my loans. by having stafford loans have interest WHILE IM IN SCHOOL they increase meaning i have more debt. please tell me where I said i wanted others to pay my loans?', 'created': '2024-11-06 08:35:57', 'submission_id': '1gksmdm'}
{'comment': 'i have full responsibility of my loans hence why i said i am paying them off MYSELF. please learn what a stafford loan is before commenting something so stupid.', 'created': '2024-11-06 08:36:45', 'submission_id': '1gksmdm'}
{'comment': 'To be fair we should have stood up for ourselves like... 60 years ago', 'created': '2024-11-06 16:15:44', 'submission_id': '1gksmdm'}
{'comment': 'Good point. Vote every race. \n\nRegardless, I am more motivated tonight than I have been since we lost in 2004 and started a chapter of the Young Democrats of America within a week thereafter.', 'created': '2024-11-06 08:58:56', 'submission_id': '1gksmdm'}
{'comment': 'She lost the previous primary because she had no funds at all. As a sitting VP with Biden’s backing, she would’ve had more than enough funds to be competitive within the primary. Either way, Biden cheated us out of having a normal primary and democrat ticket all because he cared more about his own legacy.', 'created': '2024-11-06 08:30:39', 'submission_id': '1gksmdm'}
{'comment': "He won the popular vote this time. Half the country is straight up garbage. We aren't going to recover from that", 'created': '2024-11-06 08:25:33', 'submission_id': '1gksmdm'}
{'comment': "A) may be our last free election B) in retrospect, he'd probably have won 2020 (EC) if he hadn't killed so many of his own voters with COVID. \n\nTHIS is what our country wants. I don't understand why, but I get the message", 'created': '2024-11-06 08:50:17', 'submission_id': '1gksmdm'}
{'comment': '[removed]', 'created': '2024-11-06 08:46:27', 'submission_id': '1gksmdm'}
{'comment': 'Totally agree with you. Im sorry, on their behalf. Thanks for trying to spread positively when you yourself might be down.', 'created': '2024-11-06 08:31:07', 'submission_id': '1gksmdm'}
{'comment': 'CNN can call whatever it wants to, doesn’t make it fact', 'created': '2024-11-06 08:15:04', 'submission_id': '1gksmdm'}
{'comment': 'I’m not taking any advice from a sex worker', 'created': '2024-11-06 08:37:27', 'submission_id': '1gksmdm'}
{'comment': 'Elaborate', 'created': '2024-11-06 08:24:37', 'submission_id': '1gksmdm'}
{'comment': 'Why would he, though?', 'created': '2024-11-06 08:27:35', 'submission_id': '1gksmdm'}
{'comment': 'Be real man.', 'created': '2024-11-06 08:14:05', 'submission_id': '1gksmdm'}
{'comment': 'You never spent a day at the camps why speak on something you know nothing about ?', 'created': '2024-11-06 08:15:00', 'submission_id': '1gksmdm'}
{'comment': 'Be real man', 'created': '2024-11-06 08:14:32', 'submission_id': '1gksmdm'}
{'comment': 'If you need someone to talk to my dms are open.', 'created': '2024-11-06 08:50:00', 'submission_id': '1gksmdm'}
{'comment': 'To suggest that he has no connection to the Heritage Foundation or P2025 is just factually incorrect. He has already a proven track record of following past Heritage Foundation policies and suggestions. He might not have been involved in creating Project 2025, but he certainly will be following their policy suggestions as he did in the past. \n\nDuring his previous term, he supported 2/3 of The Heritage Foundation’s policy recommendations. Multiple of his previous cabinet appointments were Heritage Foundation members. Three of the co-authors of the Project 2025 document were high ranking former members of his previous administration. \n\nSince he only has “concepts of plans”, you can almost be assured that they will spoon feed him with the garbage in that guidebook.', 'created': '2024-11-06 08:34:05', 'submission_id': '1gksmdm'}
{'comment': 'JD Vance wrote the foreword for the new book the leader of project 2025 wrote.\n\nHe’s closely tied to the project.\n\nLet’s be real here. The senate is red. The house is heavily trending red. Trump won.\n\nThe future of America is red. Women are bleeding out and dying of sepsis from his abortion bans. It’s not going to get better.\n\nMaybe project 2025 is real, maybe it’s not. But my rights have already started being stripped, and he’s not even really the president yet.\n\nI’m a single mom. Tariffs are going to cause inflation. I cannot buy a house. Where does that leave me, and so many people that are in the same boat? We’ll be bleeding out. \n\nAnd people are telling me my fears aren’t real.', 'created': '2024-11-06 08:34:42', 'submission_id': '1gksmdm'}
{'comment': 'This guy knows.', 'created': '2024-11-06 08:24:12', 'submission_id': '1gksmdm'}
{'comment': 'stop being so dramatic bruh this isn’t emperor palpatine rising to power 4 years from now we’re going to have another election that will follow the 22nd amendment', 'created': '2024-11-06 11:22:34', 'submission_id': '1gksmdm'}
{'comment': 'Given his tendencies, it will be more terrifying than interesting.', 'created': '2024-11-06 08:20:53', 'submission_id': '1gksmdm'}
{'comment': 'I hope you’re right.', 'created': '2024-11-07 17:07:24', 'submission_id': '1gksmdm'}
{'comment': '>I mean if he tried that\n\nWhat do you mean "if?" Did you miss the January 6th coup attempt?', 'created': '2024-11-06 08:39:27', 'submission_id': '1gksmdm'}
{'comment': "Trump dying doesn't necessarily open the US back up for truly democratic elections.", 'created': '2024-11-06 12:45:19', 'submission_id': '1gksmdm'}
{'comment': "It doesn't revert back to free elections just because Trump dies. lol", 'created': '2024-11-06 20:38:55', 'submission_id': '1gksmdm'}
{'comment': 'Well, and all those weapons our giant defense industry is permitted to sell to our democratic allies?\n\nNow they may be going to any authoritarian government that wants some.', 'created': '2024-11-06 12:43:21', 'submission_id': '1gksmdm'}
{'comment': '🫡', 'created': '2024-11-06 08:30:37', 'submission_id': '1gksmdm'}
{'comment': 'This is one of those scenarios where you have to make your own positives. I’m betting there is about to be a huge wave of people who are re-energized and ready to protest and continue fighting when the time comes. I’m hoping you’re willing to join us.', 'created': '2024-11-06 08:26:36', 'submission_id': '1gksmdm'}
{'comment': 'Why did you then bring that up lol? Random', 'created': '2024-11-06 08:37:10', 'submission_id': '1gksmdm'}
{'comment': 'I was just asking!', 'created': '2024-11-06 08:48:31', 'submission_id': '1gksmdm'}
{'comment': 'They called it due to the fact that it’s mathematically impossible at this point…Numbers don’t lie.', 'created': '2024-11-06 08:18:00', 'submission_id': '1gksmdm'}
{'comment': '🤣', 'created': '2024-11-06 08:16:14', 'submission_id': '1gksmdm'}
{'comment': 'Did you not hear him call his opponents "enemies from within" who should be "handled by the military" if he deems it necessary?', 'created': '2024-11-06 08:32:21', 'submission_id': '1gksmdm'}
{'comment': 'Thats… not very reassuring.\n\n“Come on man, he’ll *never* do that…”', 'created': '2024-11-06 08:19:34', 'submission_id': '1gksmdm'}
{'comment': 'So nothing?', 'created': '2024-11-06 08:20:58', 'submission_id': '1gksmdm'}
{'comment': 'I grew up in Germany, have visited several concentration camps, and have talked to numerous Holocaust survivors throughout my life. I know a fascist when I see one.', 'created': '2024-11-06 08:17:14', 'submission_id': '1gksmdm'}
{'comment': 'yeah 2,000 dumbass trumpers ain’t gonna overthrow the 22nd amendment buddy', 'created': '2024-11-06 11:26:10', 'submission_id': '1gksmdm'}
{'comment': None, 'created': '2024-11-06 21:47:19', 'submission_id': '1gksmdm'}
{'comment': 'wow reading must be so difficult for you. a stafford loan is government federal aid. which you have to pay back upon completing school. interest accrues when you graduate, which means it costs more. having the interest accrue while im IN SCHOOL means i am going to have more to pay back.', 'created': '2024-11-06 08:38:25', 'submission_id': '1gksmdm'}
{'comment': 'can you do me a favor though? please tell me what part of my post asked for others to pay for my loans? not seeing that.', 'created': '2024-11-06 08:39:42', 'submission_id': '1gksmdm'}
{'comment': 'nevermind upon viewing your profile it doesn’t even look like you’re from the united states. have a nice day! my dads been to qatar a few times. sorry for judging your reading comprehension, it appears english is not your first language which is why it may be difficult to understand.', 'created': '2024-11-06 08:41:57', 'submission_id': '1gksmdm'}
{'comment': "And im just saying straight it up if y'all truly believe project 2025 has \n\n1 a danger to multiple generations and could lead to the down fall of American \n\n2 a real possibility of being passed in anyway shape or from \n\n\nY'all need to put the phones down turn off the laptops go to your local mayor, representative or governor and voice your concerns \n\n\nProtests make your voice heard and make noise by informing others \n\nBitching about it on the internet won't do shit. and if that is all you all are willing to do then it's obviously isn't that big of idea to begin with", 'created': '2024-11-06 08:55:19', 'submission_id': '1gksmdm'}
{'comment': "I wouldn't count on Vance being less dangerous. He is pretty smart.", 'created': '2024-11-06 21:56:01', 'submission_id': '1gksmdm'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 07:51:14', 'submission_id': '1gksfnh'}
{'comment': 'He belongs in the jail house, not the white house!', 'created': '2024-11-06 07:53:44', 'submission_id': '1gksfnh'}
{'comment': None, 'created': '2024-11-06 08:08:37', 'submission_id': '1gksfnh'}
{'comment': 'This is insane, what protections are there if he goes ahead and starts dismantling our government, or becoming a dictator?.. I am just baffled after the Jan 6 riots and other things, that people want more of that?..', 'created': '2024-11-06 08:02:45', 'submission_id': '1gksfnh'}
{'comment': 'This is nuts', 'created': '2024-11-06 08:00:37', 'submission_id': '1gksfnh'}
{'comment': 'He’s going to pardon and commute the sentences of all the Jan 6 seditionists.', 'created': '2024-11-06 08:57:17', 'submission_id': '1gksfnh'}
{'comment': 'I hate that man with all of me, I swear if he disappeared from the face of earth in the most cruel way it would be a relief. Idc about morals at this point i’m pissed at fascism. Also he’s a rapist and orange. Who tf does his make up', 'created': '2024-11-06 08:06:53', 'submission_id': '1gksfnh'}
{'comment': 'Democracy is only fair when I win, and I am actually smarter than the majority of America!!!', 'created': '2024-11-06 08:01:16', 'submission_id': '1gksfnh'}
{'comment': 'Cope take the anti depressants', 'created': '2024-11-06 08:28:25', 'submission_id': '1gksfnh'}
{'comment': 'Now you’re just malding', 'created': '2024-11-06 08:21:12', 'submission_id': '1gksfnh'}
{'comment': 'Drumpf owned. Walls closing in', 'created': '2024-11-06 07:55:43', 'submission_id': '1gksfnh'}
{'comment': 'Cope, seethe, and take your antidepressants.', 'created': '2024-11-06 08:19:02', 'submission_id': '1gksfnh'}
{'comment': 'he can pardon himself \n\n', 'created': '2024-11-06 08:36:12', 'submission_id': '1gksfnh'}
{'comment': 'Well thats not how a president gets inaugurated!', 'created': '2024-11-06 07:56:38', 'submission_id': '1gksfnh'}
{'comment': '[removed]', 'created': '2024-11-06 07:55:00', 'submission_id': '1gksfnh'}
{'comment': '[removed]', 'created': '2024-11-06 07:58:46', 'submission_id': '1gksfnh'}
{'comment': '[removed]', 'created': '2024-11-06 08:15:22', 'submission_id': '1gksfnh'}
{'comment': 'He can pardon himself as president sorry bud', 'created': '2024-11-06 08:06:24', 'submission_id': '1gksfnh'}
{'comment': 'The constitution is a pretty big one\n\nIt takes 2/3rds to amend and GL getting that even with a slight majority', 'created': '2024-11-06 08:11:59', 'submission_id': '1gksfnh'}
{'comment': "Oof that's rough bud", 'created': '2024-11-06 08:17:12', 'submission_id': '1gksfnh'}
{'comment': "You ain't gonna pretend like MAGA clowns weren't posting the exact same stuff", 'created': '2024-11-06 07:55:50', 'submission_id': '1gksfnh'}
{'comment': "It couldn't be that a convicted rapist deserves prison time, right? Gasp.", 'created': '2024-11-06 07:55:43', 'submission_id': '1gksfnh'}
{'comment': 'He is a felon. He deserves to serve time. What is inaccurate bout the post?', 'created': '2024-11-06 07:59:16', 'submission_id': '1gksfnh'}
{'comment': 'don’t act like they didn’t reject Kamala for being a woman of color', 'created': '2024-11-06 07:58:52', 'submission_id': '1gksfnh'}
{'comment': '🎉🎉my man 🍻', 'created': '2024-11-06 08:18:23', 'submission_id': '1gksfnh'}
{'comment': 'not necessarily', 'created': '2024-11-06 08:07:26', 'submission_id': '1gksfnh'}
{'comment': 'He would be king, Supreme Court deemed it so….anything is possible, he way less coherent than last time.', 'created': '2024-11-06 08:24:00', 'submission_id': '1gksfnh'}
{'comment': 'When you’re trying to understand to rid of the core issue, empathy helps xD', 'created': '2024-11-06 07:59:35', 'submission_id': '1gksfnh'}
{'comment': 'And being a woman', 'created': '2024-11-06 12:08:10', 'submission_id': '1gksfnh'}
{'comment': 'Cheers brother 😉🇺🇸🍻', 'created': '2024-11-06 08:19:31', 'submission_id': '1gksfnh'}
{'comment': None, 'created': '2024-11-06 08:21:42', 'submission_id': '1gksfnh'}
{'comment': 'He will try', 'created': '2024-11-06 08:08:08', 'submission_id': '1gksfnh'}
{'comment': 'Empathy also helps you not become a convicted felon and rapist but pop off i guess', 'created': '2024-11-06 08:00:23', 'submission_id': '1gksfnh'}
{'comment': '[removed]', 'created': '2024-11-06 08:42:25', 'submission_id': '1gksfnh'}
{'comment': 'No one’s talking about him. We’re talking about understanding how people can vote for someone like Trump but I mean keep assuming “pop off” 💀💀', 'created': '2024-11-06 08:13:11', 'submission_id': '1gksfnh'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 07:46:03', 'submission_id': '1gkscvq'}
{'comment': 'Well at least something good came from Pennsylvania this election.', 'created': '2024-11-06 07:56:19', 'submission_id': '1gkscvq'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 07:43:16', 'submission_id': '1gksbfb'}
{'comment': None, 'created': '2024-11-06 07:45:21', 'submission_id': '1gksbfb'}
{'comment': 'Well there goes Obergefell 😳', 'created': '2024-11-06 07:47:27', 'submission_id': '1gksbfb'}
{'comment': 'We lost because we focused on beating a person not on proving and showing why kh was the one to lead. We played his game and lost. She tried to out troll donald you just cant. Take the high road don’t play his games and kill then with kindness as they say. She got destroyed in the voting from every demographic it’s downright embarrassing', 'created': '2024-11-06 08:02:28', 'submission_id': '1gksbfb'}
{'comment': 'As a member of the LGBTQIAP I can confirm this is not a real thing', 'created': '2024-11-06 07:45:20', 'submission_id': '1gksbfb'}
{'comment': 'I mean there are transgenders for Trump.\n\n...\n\nYeah, I have nothing else to say.', 'created': '2024-11-06 09:29:14', 'submission_id': '1gksbfb'}
{'comment': 'Many gays are wealthy white men.\n\nThey are usually the most misogynistic people I know.', 'created': '2024-11-06 07:55:07', 'submission_id': '1gksbfb'}
{'comment': 'Biden can stop the election', 'created': '2024-11-06 08:01:20', 'submission_id': '1gksbfb'}
{'comment': 'WELCOME\n\nTO\n\nTHE SECOND\n\nS C O O P\n\nhttps://preview.redd.it/5n543580a8zd1.jpeg?width=2938&format=pjpg&auto=webp&s=1700df8fb0d0b629c9a3517994da7e8add6b3f1c', 'created': '2024-11-06 07:47:45', 'submission_id': '1gksbfb'}
{'comment': 'I wonder what this will do to the red states if we’ll see a lot of people leave Florida , Texas and other undesirable states especially for women . \n\nThe tourism on those states could probably take a big hit .', 'created': '2024-11-06 08:08:05', 'submission_id': '1gksbfb'}
{'comment': 'This will be unpleasant to hear, however, my neighbors, gay couple (men), with a daughter, voted Trump as well.', 'created': '2024-11-06 07:48:03', 'submission_id': '1gksbfb'}
{'comment': '[removed]', 'created': '2024-11-06 07:44:30', 'submission_id': '1gksbfb'}
{'comment': "Because the gay's just want to be left alone and not used as a political tool. \nEvery gay guy in AZ I know voted trump as well.", 'created': '2024-11-06 07:45:11', 'submission_id': '1gksbfb'}
{'comment': None, 'created': '2024-11-06 07:52:40', 'submission_id': '1gksbfb'}
{'comment': '[removed]', 'created': '2024-11-06 07:48:07', 'submission_id': '1gksbfb'}
{'comment': 'The polls showed Harris had a little better chance to win and Trump won this election most of the polls this time around were way off. I do not ever remember a election year were most of the polls were this far off.', 'created': '2024-11-06 09:12:13', 'submission_id': '1gksbfb'}
{'comment': 'Man just ran the greatest media campaign in human history. From getting arrested, shot, working in McDonalds, speaking on every famous podcast, and driving a garbage truck. Truly, he knows how to play the game.', 'created': '2024-11-06 07:48:11', 'submission_id': '1gksbfb'}
{'comment': 'stop giving him any credit. The fact is, Americans are just stupid, racist, and want fascism', 'created': '2024-11-06 11:29:32', 'submission_id': '1gksbfb'}
{'comment': 'Made promises?', 'created': '2024-11-06 07:47:03', 'submission_id': '1gksbfb'}
{'comment': 'that and some old ass men did not want a woman as president and thought he could lower prices and you have those dbasses who believe in the conspiracy theories that she was controling the weather and what not just abunch of dumbass stuff', 'created': '2024-11-06 13:00:39', 'submission_id': '1gksbfb'}
{'comment': 'The two biggest MAGA people I know are a gay couple.\xa0', 'created': '2024-11-06 07:47:47', 'submission_id': '1gksbfb'}
{'comment': 'lol my gay brother voted for trump and my trans gay one for Kamala maybe your sexuality and identity aren’t linked\nGays can be rednecks too', 'created': '2024-11-06 08:25:02', 'submission_id': '1gksbfb'}
{'comment': 'No he can’t', 'created': '2024-11-06 19:11:53', 'submission_id': '1gksbfb'}
{'comment': 'actually, those states are experiencing the highest increases in population gain, whereas solid blue states like Massachusetts are not growing or even losing population', 'created': '2024-11-06 11:31:29', 'submission_id': '1gksbfb'}
{'comment': 'Cows voting for steakhouses', 'created': '2024-11-06 08:04:04', 'submission_id': '1gksbfb'}
{'comment': "See if they feel that way when they lose all thier constitutional rights when control over their own bodies is taken from them (women) when they're drug out of their homes and ethnically cleansed when being gay or trans becomes a capital offense prehaps they'll have a different tune then.", 'created': '2024-11-06 07:50:39', 'submission_id': '1gksbfb'}
{'comment': "This isn't about the screenshot, I just used it as a filler attachment", 'created': '2024-11-06 07:45:58', 'submission_id': '1gksbfb'}
{'comment': 'Bull. I know too many people who believe Trump in the White House means grocery prices will suddenly return to what they were in 2018. That is a fundamental misunderstanding of how the economy works. It’s ignorance.', 'created': '2024-11-06 08:37:52', 'submission_id': '1gksbfb'}
{'comment': 'Say it louder.', 'created': '2024-11-06 08:15:38', 'submission_id': '1gksbfb'}
{'comment': 'I don’t see what makes trump diverse though. Maybe being a billionaire fulfills DEI? What about being a pedophile? I don’t know anyone who is either of those things so I guess he is a DEI hire.', 'created': '2024-11-06 07:52:54', 'submission_id': '1gksbfb'}
{'comment': 'Or the majority of Americans are just goddamn stupid', 'created': '2024-11-06 08:24:38', 'submission_id': '1gksbfb'}
{'comment': 'Modern day Americans truly are just flat out dumb..none of those things were particularly inspiring. "LOL Trump worked Da Friez he\'z da GOAT LOL1./!#?" thats America in a nutshell. A nation of morons, addicted to videogames, tiktok bimbos, trash tv, trash music, fast food and ancient aliens. The truth in the matter is America is a garbage nation -- I spoke with someone today who didn\'t know what MAGA was. a 50 something year old woman, clueless about only the biggest radical right wing movement in decades that\'s affected every facet of our lives for the past 8 years. That\'s America. Dumb and clueless.', 'created': '2024-11-06 07:55:46', 'submission_id': '1gksbfb'}
{'comment': 'Compared to the giggles and meaningless platitudes from Kamala, no contest.', 'created': '2024-11-06 08:09:33', 'submission_id': '1gksbfb'}
{'comment': 'I also know several Gay Magas. One even worked on the campaign.', 'created': '2024-11-06 07:49:30', 'submission_id': '1gksbfb'}
{'comment': 'Elon, and T boi?', 'created': '2024-11-06 07:56:56', 'submission_id': '1gksbfb'}
{'comment': 'Why do you lie like that?', 'created': '2024-11-06 07:48:31', 'submission_id': '1gksbfb'}
{'comment': 'Get off the ledge. Come back to real life and do some research. You survived the first four years. Sun will rise tomorrow.', 'created': '2024-11-06 07:54:33', 'submission_id': '1gksbfb'}
{'comment': "You literally said image semi-related, and I commented on it. The rest is history and just look at the numbers. I mean, call it what you want, but that's what it is. \n\nhttps://preview.redd.it/kpp733yz98zd1.png?width=1526&format=png&auto=webp&s=fa579875dff7f8a2377ad5ec1078518b94edefa5", 'created': '2024-11-06 07:47:53', 'submission_id': '1gksbfb'}
{'comment': "Couldn't agree more. Imagine being mislead by a compulsive liar, pedo rapist and convicted felon. I will admit that he is entertaining and charismatic, which is part of the reason why people got brainwashed by him, but that has no business in politics.", 'created': '2024-11-06 08:13:50', 'submission_id': '1gksbfb'}
{'comment': 'I wished I lived my life with the same level of ignorance as that lady sometimes. Life is probably a lot simpler that way lol', 'created': '2024-11-06 08:01:23', 'submission_id': '1gksbfb'}
{'comment': 'We told y’all we cared about the border and trans in girls sports and bathrooms. We told y’all.', 'created': '2024-11-06 08:13:20', 'submission_id': '1gksbfb'}
{'comment': 'Dude. Log off and touch some fucking grass.', 'created': '2024-11-06 08:00:07', 'submission_id': '1gksbfb'}
{'comment': 'The binding of Isaac?', 'created': '2024-11-06 08:00:28', 'submission_id': '1gksbfb'}
{'comment': "Why don't you believe it? It isn't a big number, but they're out there. Literally every group Trump targets has some number of Trump voters in it.", 'created': '2024-11-06 07:50:14', 'submission_id': '1gksbfb'}
{'comment': "You understand 67M+ people have voted for him, you don't think there are gay people within that group?", 'created': '2024-11-06 07:52:55', 'submission_id': '1gksbfb'}
{'comment': "Project 2025 says differently, also im a white straight male I already know ill be fine it's easy when your in a position of privilege other groups right-wingers and trumpist hate on the other hand....", 'created': '2024-11-06 07:55:15', 'submission_id': '1gksbfb'}
{'comment': "This isn't 2016, if he gets control of the house, senate, and supreme court and enacts project 2025, america will become very different, sure he might start deporting the illegals, then your friends, maybe the gays will be next, maybe anyone who disagrees with him will be next, you see where I'm going with this, that's even to say there will be a democracy left in america after all of this.. it's scary times my friend..", 'created': '2024-11-06 10:49:36', 'submission_id': '1gksbfb'}
{'comment': 'Yeah semi-related, I just wanted to show proof of Americans being stupid.', 'created': '2024-11-06 07:48:49', 'submission_id': '1gksbfb'}
{'comment': "She was freaking out because she just now, today, learned about project 2025 and what that may entail. At one point she said she thought Trump was good because Kid Rock likes him..these people vote, and it affects us all. Bit of a hot take here, but firmly believe the internet in alot of ways is to blame..alot of right wing influence rotted the brains of Americans through social media. Worst thing that ever happened to this country as far as I'm concerned..We would truly be better off as a nation cutting the cord, just my two cents.", 'created': '2024-11-06 08:10:24', 'submission_id': '1gksbfb'}
{'comment': 'Mad? Did I strike a nerve?', 'created': '2024-11-06 08:02:22', 'submission_id': '1gksbfb'}
{'comment': "Because Trump has worked against the community his entire life and will literally put LGBTQIAP members in concentration camps. There isn't a single one and if someone claims they are then they aren't LGBTQIAP it's that fucking simple.", 'created': '2024-11-06 07:52:03', 'submission_id': '1gksbfb'}
{'comment': '[removed]', 'created': '2024-11-06 07:56:44', 'submission_id': '1gksbfb'}
{'comment': 'Nah but you may want to cope rn', 'created': '2024-11-06 08:19:51', 'submission_id': '1gksbfb'}
{'comment': 'To think no gay people voted for Trump is so wild.', 'created': '2024-11-06 07:52:53', 'submission_id': '1gksbfb'}
{'comment': 'Where do u get that Trump will put them into concentration camp?', 'created': '2024-11-06 07:54:20', 'submission_id': '1gksbfb'}
{'comment': "Wait what is the IAP part now? That's new?", 'created': '2024-11-06 08:17:25', 'submission_id': '1gksbfb'}
{'comment': 'This take is so insane. Take a step back man, to not see how gay people could vote for Trump AT ALL is a little crazy', 'created': '2024-11-06 07:55:26', 'submission_id': '1gksbfb'}
{'comment': "Yeah, I don't remember him doing that during his time as president.", 'created': '2024-11-06 08:04:03', 'submission_id': '1gksbfb'}
{'comment': 'You are funny, Greg.', 'created': '2024-11-06 07:54:40', 'submission_id': '1gksbfb'}
{'comment': 'He literally won’t put anyone in a concentration camp 🙄', 'created': '2024-11-06 07:55:07', 'submission_id': '1gksbfb'}
{'comment': "There is a good amount of gays who aren't a fan of the lgbtqiap+ group, they just wanted the right to love who they wanted and left alone and feel like the current part doesn't align with that. Also it is disingenuous to say trump was anti gay his whole life, being Republican is his new thing.", 'created': '2024-11-06 08:35:39', 'submission_id': '1gksbfb'}
{'comment': "You're a very gullible person he was straight up lying and not even convincingly his agenda 47 isn't much different give it a couple months and you'll see soon enough hope you're not a woman or a minority.", 'created': '2024-11-06 07:59:54', 'submission_id': '1gksbfb'}
{'comment': 'Intersex, Asexual, Pansexual its been part of it for a while now', 'created': '2024-11-07 03:54:22', 'submission_id': '1gksbfb'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 07:39:09', 'submission_id': '1gks93z'}
{'comment': "Biden would've lost by a whole lot more than Harris would.", 'created': '2024-11-06 07:40:48', 'submission_id': '1gks93z'}
{'comment': 'It’s not an unpopular opinion', 'created': '2024-11-06 07:40:03', 'submission_id': '1gks93z'}
{'comment': 'Biden’s 2024 vote count would’ve been lower. Biden’s presidency was not popular and exit polling showed today that only 40%ish of citizens approved of him. \n\nKamala was tied to Biden and that was her downfall.', 'created': '2024-11-06 07:41:16', 'submission_id': '1gks93z'}
{'comment': "America has spoken: it doesn't want a woman president.\n\nThis time, expect to die on that hill.", 'created': '2024-11-06 07:41:37', 'submission_id': '1gks93z'}
{'comment': 'This is what happens when Dems believe shill media hype that abortion is a great vote getter.\n\n"It\'s always the economy stupid."\n\nWant to be a two term Dem? Hike taxes in your first term.', 'created': '2024-11-06 07:42:19', 'submission_id': '1gks93z'}
{'comment': 'Unfortunately true', 'created': '2024-11-06 07:40:06', 'submission_id': '1gks93z'}
{'comment': 'This is what happens when your candidate wasn’t chosen by her party members', 'created': '2024-11-06 07:41:03', 'submission_id': '1gks93z'}
{'comment': 'You’re absolutely right on point 1: there should have been a primary within the Democratic Party, perhaps during the DNC convention. The people would have had transparency of democracy.\n\nRegarding point 2, I believe the country is ready for a female president. However, neither Kamala Harris nor Hillary Clinton had or has demonstrated the leadership ability or experience to gain broad public confidence for the highest office. Many people I’ve spoken with—both Republicans and Democrats—feel that the strongest female candidate would be someone with a background in governance, such as a governor or a military leader.\n\nCurrently, the only two Democratic female politicians who would resonate as authentic leaders, rather than appearing fake or power grabbing, would be Gretchen Whitmer and Tulsi Gabbard. Unfortunately, Gabbard left the Democratic Party because of the extreme shift, but she likely would have been the strongest female contender for the presidency and I believe may have beat Trump. \n\n*I am neither a Dem nor Rep and did not vote this election cycle.', 'created': '2024-11-06 08:03:29', 'submission_id': '1gks93z'}
{'comment': 'I think it boils down to the way Kamala was seemingly propped up.', 'created': '2024-11-06 07:40:31', 'submission_id': '1gks93z'}
{'comment': 'Absolutely agree. \nWe needed a strong candidate a while back. This was sadly too late. Unfortunately it’s also true that women face a tougher battle still.', 'created': '2024-11-06 07:43:14', 'submission_id': '1gks93z'}
{'comment': 'She was very loyal to him and only distanced herself at the last moment.', 'created': '2024-11-06 07:42:29', 'submission_id': '1gks93z'}
{'comment': 'Her flaw was being loyal to her boss, it’s sad but true. Her flaw was also that Americans seem to be more interested in feeding their worst emotions rather than hoping for a brighter future', 'created': '2024-11-06 07:43:54', 'submission_id': '1gks93z'}
{'comment': 'She unlikable.', 'created': '2024-11-06 07:42:16', 'submission_id': '1gks93z'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 07:39:07', 'submission_id': '1gks938'}
{'comment': "DecisionDeskHQ has called PA for Trump, putting him at 270 EV's. Also projecting the House for the GOP at 218 seats.\n\nThis is the worst possible of all election outcomes. The GOP controls all elected branches of federal government and the SCOTUS. On top of that they probably have a 1 vote margin in the House, all but ensuring the most vocal, radical members will exercise control since the Senate is no longer a barrier. Expect the Freedom Caucus to wrap Project 2025 into legislation. \n\nThe only hope is if the Senate holds onto the filibuster, but they will be under extreme pressure to abandon it. Expect the more moderate GOP Senators to step aside.\n\nWe are F\\*\\*ked", 'created': '2024-11-06 07:49:21', 'submission_id': '1gks938'}
{'comment': "We're fucked! We're fucked beyond all belief now! That undeserving bastard is gonna get to waltz in there, establish a guardrail free cabinet, undo all the progress we've made, embarrass us on the world stage, and destroy our democracy. We're fucked!", 'created': '2024-11-06 07:44:51', 'submission_id': '1gks938'}
{'comment': 'PA is mathematically impossible to win at this point \n\nIt’s over and it wasn’t really close', 'created': '2024-11-06 07:43:31', 'submission_id': '1gks938'}
{'comment': "It's done. There's no chance in hell she catches up in Pennsylvania. Trump might sweep the swing states. I don't get it. Truly don't\xa0", 'created': '2024-11-06 07:42:23', 'submission_id': '1gks938'}
{'comment': 'It’s over. I’m devastated.', 'created': '2024-11-06 07:40:39', 'submission_id': '1gks938'}
{'comment': 'It’s over.', 'created': '2024-11-06 07:39:52', 'submission_id': '1gks938'}
{'comment': None, 'created': '2024-11-06 09:05:55', 'submission_id': '1gks938'}
{'comment': "There goes Alan Lichtman's entire legacy. Fuck my life.", 'created': '2024-11-06 12:32:53', 'submission_id': '1gks938'}
{'comment': "Don't hate me but the moment I heard Shapiro wasn't running with her, my heart physically dropped. She underperforms by a lot so even with Shapiro, the numbers wouldn't be great. It's unfortunate but I don't think it's a close call this time.", 'created': '2024-11-06 07:43:31', 'submission_id': '1gks938'}
{'comment': 'PA is Trump.\n\nThey failed to campaign in counties where they could have changed minds of independents and they failed to get women on board by not speaking enough about the economy to them.\n\nIndependent women voters were economy voters.\xa0\n\nDNC should have hired me.', 'created': '2024-11-06 07:47:25', 'submission_id': '1gks938'}
{'comment': 'It’s over unfortunately.', 'created': '2024-11-06 07:41:10', 'submission_id': '1gks938'}
{'comment': 'Little disappointed in the Harris team. I’ve been bombarded hundreds of times a day for my support, which I did gladly and now it’s been complete silence.', 'created': '2024-11-06 14:52:43', 'submission_id': '1gks938'}
{'comment': "It's over 😋 (and I don't mean that to mock and certainly not to gloat, believe you me lol). Myself, I'm looking forward to the DNCs postmortem *and* I hope they take it to heart 👍\n\nOn the bright side, Trump's an automatic Lame Duck 👍\n\nTwo years until Midterms 👍", 'created': '2024-11-06 09:29:35', 'submission_id': '1gks938'}
{'comment': "Faux news.... don't believe anything they post.... It's not over", 'created': '2024-11-06 07:46:49', 'submission_id': '1gks938'}
{'comment': 'The minorities, immigrants and youth that fell for their pitch of lies will probably feel the brunt of what they have just done. I don’t know how I will feel towards assisting them now.', 'created': '2024-11-06 14:56:11', 'submission_id': '1gks938'}
{'comment': "And the democrats won't do anything about it", 'created': '2024-11-06 08:03:03', 'submission_id': '1gks938'}
{'comment': 'Yeah! Just like last time! Oh wait', 'created': '2024-11-06 07:45:59', 'submission_id': '1gks938'}
{'comment': 'Is that true? Mathematically impossible?', 'created': '2024-11-06 07:44:46', 'submission_id': '1gks938'}
{'comment': "I'm not. I actually thought they'd win the blue wall, but I had my reservations about the campaign.\n\nPulling 25k people in an urban city isn't hard.\n\nThey needed to pull 25k in the middle of the state.", 'created': '2024-11-06 07:49:11', 'submission_id': '1gks938'}
{'comment': 'It had nothing to do with not picking Shapiro', 'created': '2024-11-06 15:58:37', 'submission_id': '1gks938'}
{'comment': 'If we can keep our heads above water - 2 years until mid-terms.\n\nI was thinking about this today and you are more right than people are giving you credit for.\n\nTrump is only going to be here for 4 years, the people in the House and Senate are trying to stay as long as possible, so they are going to be more limited in what they will do for Trump since he is, FINALLY, irrelevant to their re-election next cycle.\n\nThey know they have to face voters again, and without Trump going into the White House, they have to campaign on their own merits.\n\n2026 cannot get here quick enough.', 'created': '2024-11-06 17:09:10', 'submission_id': '1gks938'}
{'comment': 'You have to face reality at some point.', 'created': '2024-11-06 07:52:32', 'submission_id': '1gks938'}
{'comment': 'Can’t* do anything about it now.', 'created': '2024-11-06 08:13:14', 'submission_id': '1gks938'}
{'comment': "Last time was pretty bad. And this time will be worse.\n\nHe won't tolerate normies in the cabinet or on his staff.\n\nI just don't get people like you. Do you really want the end of NATO? Do you really want your gay friends targeted? Do you really want the EPA to be folded?\n\nIf so...just admit it...but none of that shit is good.", 'created': '2024-11-06 07:53:34', 'submission_id': '1gks938'}
{'comment': 'Yes.', 'created': '2024-11-06 07:50:05', 'submission_id': '1gks938'}
{'comment': '25k = 25k', 'created': '2024-11-06 07:51:54', 'submission_id': '1gks938'}
{'comment': 'I will but not by getting anything from Faux news. The fact that you believe them shows how low your IQ is', 'created': '2024-11-06 07:53:27', 'submission_id': '1gks938'}
{'comment': 'I want the IRS gutted', 'created': '2024-11-06 07:56:35', 'submission_id': '1gks938'}
{'comment': 'Republicans got mad last time Fox called Arizona for Biden. Fox has a good history of making the right calls in elections. It’s over.', 'created': '2024-11-06 07:58:54', 'submission_id': '1gks938'}
{'comment': 'CNN called it too so', 'created': '2024-11-06 08:33:17', 'submission_id': '1gks938'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 07:35:15', 'submission_id': '1gks72b'}
{'comment': 'Do we still support packing the Supreme Court? Should trump add more judges? What about the filibuster? If republicans wins all three branches are we still ok with all of this?', 'created': '2024-11-06 07:53:34', 'submission_id': '1gks72b'}
{'comment': 'Praise Joe Manchin for stopping Democrats from getting rid of the filibuster.', 'created': '2024-11-06 08:34:52', 'submission_id': '1gks72b'}
{'comment': '[removed]', 'created': '2024-11-06 07:44:33', 'submission_id': '1gks72b'}
{'comment': 'Yes I fully support it because TRUMP will be given free reign anyway and the only way to fix it is to completely dismantle everything they do', 'created': '2024-11-06 07:56:51', 'submission_id': '1gks72b'}
{'comment': "I do now. It looks like they won the popular vote and all branches of government. So I fully support them doing what the Democrats were too feckless to do.\n\nLosing the popular vote means that Democratic voter turnout was low. Which means that many Democratic voters are fine with what's about to happen. They have no right to complain.\n\nSo I say, give them what they asked for.", 'created': '2024-11-06 08:11:43', 'submission_id': '1gks72b'}
{'comment': "Yes. I don't compromise my principles because of who’s in power.", 'created': '2024-11-06 13:44:30', 'submission_id': '1gks72b'}
{'comment': "No right at all. If people wanted that then take it. I hope latinos, puertoricans, gays, transgenders, all who voted for him, accept all thats coming to them.\nI'll be saying from afar, well deserved.", 'created': '2024-11-06 10:13:44', 'submission_id': '1gks72b'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 07:34:12', 'submission_id': '1gks6hq'}
{'comment': 'Canada essentially just halted immigration for the next 3 years because the systems are buckling (healthcare, social services and housing) with a large influx of immigration post covid\n\nEdit for link on info: https://youtu.be/PqNF7hF5u3E?si=e5FR_l5c6tVrIYak', 'created': '2024-11-06 07:46:09', 'submission_id': '1gks6hq'}
{'comment': 'Canada is lowering immigration targets, houses cost over $1 million, and rent is like $2.4K/m…have lived in Toronto, there’s zero jobs left and quality of life has tanked since 2020.', 'created': '2024-11-06 07:45:22', 'submission_id': '1gks6hq'}
{'comment': "we're slashing our immigration targets, fast. you're on your own, chief - gotta fix yer own country first.", 'created': '2024-11-06 08:00:51', 'submission_id': '1gks6hq'}
{'comment': 'Honestly I think China or Russia is the blueprint for how we’re going to look when all the damage is done — everyone will go on with their lives, eventually the smart ones and dissenters weeded out or silenced to the point where everyone is entirely unaware of the corruption and thievery happening at the top until it affects them, but by then it will be too late for anyone to do anything about it.', 'created': '2024-11-06 07:42:46', 'submission_id': '1gks6hq'}
{'comment': 'If they take away gay marriage I’ll just find a latina housewife & play the cards I was dealt 😪', 'created': '2024-11-06 07:39:00', 'submission_id': '1gks6hq'}
{'comment': 'Find a remote job and the cheapest housing you can', 'created': '2024-11-06 07:34:54', 'submission_id': '1gks6hq'}
{'comment': 'The solution is to stop overreacting, Canadian economy is bad too, don’t recommend it', 'created': '2024-11-06 07:54:41', 'submission_id': '1gks6hq'}
{'comment': None, 'created': '2024-11-06 07:38:05', 'submission_id': '1gks6hq'}
{'comment': 'Are you a superstar in your vocation? Do you have tens of millions to invest in the Canadian economy? If the answer to these is “no,” then you can’t. \nOther industrialized nations (like Canada) have strict immigration requirements. They don’t just let you move there. Sorry.', 'created': '2024-11-06 07:49:31', 'submission_id': '1gks6hq'}
{'comment': '[removed]', 'created': '2024-11-06 07:36:39', 'submission_id': '1gks6hq'}
{'comment': 'Go north', 'created': '2024-11-06 07:34:36', 'submission_id': '1gks6hq'}
{'comment': 'Yes...a fascist Trump is the same as the man who liberated working class people from feudalism, industrialized a non-industrial country, and then ended fascism in western europe....', 'created': '2024-11-06 08:07:56', 'submission_id': '1gks6hq'}
{'comment': 'Honestly stop right there. In Canada we have the same problem. And we need to get rid of that Justin Trudeau guy.', 'created': '2024-11-06 08:25:47', 'submission_id': '1gks6hq'}
{'comment': 'Is it over. Fox News already said trump victory but none of the blue wall states or Pennsylvania have been called yet', 'created': '2024-11-06 07:57:11', 'submission_id': '1gks6hq'}
{'comment': 'didn’t stalin kill tens of millions?', 'created': '2024-11-06 07:58:17', 'submission_id': '1gks6hq'}
{'comment': '[removed]', 'created': '2024-11-06 07:58:18', 'submission_id': '1gks6hq'}
{'comment': 'I think mexico is accepting', 'created': '2024-11-06 08:01:07', 'submission_id': '1gks6hq'}
{'comment': 'I mean, he was already president and he was not "stallin"', 'created': '2024-11-06 08:34:22', 'submission_id': '1gks6hq'}
{'comment': None, 'created': '2024-11-06 07:36:55', 'submission_id': '1gks6hq'}
{'comment': 'I thought he was Hitler?', 'created': '2024-11-06 07:37:46', 'submission_id': '1gks6hq'}
{'comment': 'Walking', 'created': '2024-11-06 07:38:56', 'submission_id': '1gks6hq'}
{'comment': 'Well it is very hard to become a citizen in Canada. They have stricter an immigration system than we do. Plus do you have about 200k to move to Canada?', 'created': '2024-11-06 07:45:06', 'submission_id': '1gks6hq'}
{'comment': '[removed]', 'created': '2024-11-06 07:35:42', 'submission_id': '1gks6hq'}
{'comment': "Nah stay the hell out of Canada. We don't need american political culture here", 'created': '2024-11-06 07:37:29', 'submission_id': '1gks6hq'}
{'comment': 'Canada has a legal immigration process that you have to follow.', 'created': '2024-11-06 07:37:40', 'submission_id': '1gks6hq'}
{'comment': 'Isn’t Stalin canonised on this application?', 'created': '2024-11-06 07:37:44', 'submission_id': '1gks6hq'}
{'comment': '[removed]', 'created': '2024-11-06 07:47:10', 'submission_id': '1gks6hq'}
{'comment': 'Stalin? Trump as stalin? What.', 'created': '2024-11-06 07:57:28', 'submission_id': '1gks6hq'}
{'comment': "Calm down, it didn't happen in 2016 it won't happen now. \n\nIt'll be ok\n\nCool? Cool.", 'created': '2024-11-06 08:13:57', 'submission_id': '1gks6hq'}
{'comment': 'Canadian here. We dont want you marxists.', 'created': '2024-11-06 08:14:44', 'submission_id': '1gks6hq'}
{'comment': "I'll give you my Canadian citizenship if you give me your american citizenship", 'created': '2024-11-06 08:26:23', 'submission_id': '1gks6hq'}
{'comment': '[removed]', 'created': '2024-11-06 07:34:47', 'submission_id': '1gks6hq'}
{'comment': 'Liberal party has fucked up canada more than it has here. Might wanna start doing your research on politics', 'created': '2024-11-06 07:35:20', 'submission_id': '1gks6hq'}
{'comment': 'It didn’t happen last time he was President it won’t happen this time. Quit over reacting, y’all are insufferable.', 'created': '2024-11-06 07:46:01', 'submission_id': '1gks6hq'}
{'comment': 'https://preview.redd.it/oggioh2588zd1.jpeg?width=2048&format=pjpg&auto=webp&s=685912335a1396dfe5c07ea215a0b7dfcd167017', 'created': '2024-11-06 07:37:17', 'submission_id': '1gks6hq'}
{'comment': 'We don’t want you up here.', 'created': '2024-11-06 07:57:05', 'submission_id': '1gks6hq'}
{'comment': 'Goo', 'created': '2024-11-06 07:46:16', 'submission_id': '1gks6hq'}
{'comment': "why do you want to move to another capitalist white majority country? why don't you move to Mexico? i heard guns are illegal there. it's hilarious these white haters wants to move to another white majority country", 'created': '2024-11-06 07:44:02', 'submission_id': '1gks6hq'}
{'comment': "Best bet for anyone who hopes to migrate to Canada is the Express Entry program: \n\n[https://www.canada.ca/en/immigration-refugees-citizenship/services/immigrate-canada/express-entry.html](https://www.canada.ca/en/immigration-refugees-citizenship/services/immigrate-canada/express-entry.html)\n\nJust realize it takes time and money. So you need to be committed to get through it all, and there's no guarantee you will (check the calculator for how many points you might get, then check the points required for the past draws).\n\nAnd as Plane-Buyer said, it's harder now due to the upcoming changes to immigration.", 'created': '2024-11-06 14:18:17', 'submission_id': '1gks6hq'}
{'comment': None, 'created': '2024-11-06 07:49:36', 'submission_id': '1gks6hq'}
{'comment': 'What’s even funnier is I heard Republicans saying they were going to move to Canada if they lost this election. One also said Russia but that’s teenagers from Kansas in a nutshell', 'created': '2024-11-06 08:27:30', 'submission_id': '1gks6hq'}
{'comment': 'I’m going to find my way to Canada. One way or another. Get used to it.', 'created': '2024-11-07 01:10:11', 'submission_id': '1gks6hq'}
{'comment': '[removed]', 'created': '2024-11-06 07:43:50', 'submission_id': '1gks6hq'}
{'comment': 'Cheap housing and Canada are 3 words that do not mix', 'created': '2024-11-06 07:50:58', 'submission_id': '1gks6hq'}
{'comment': 'Literally already interviewing for remote jobs and gonna digital nomad it in Europe/Asia for awhile. This election result has only sped that process up even more.', 'created': '2024-11-06 07:56:35', 'submission_id': '1gks6hq'}
{'comment': 'I am practically writing out my suicide note as we speak.', 'created': '2024-11-06 07:39:36', 'submission_id': '1gks6hq'}
{'comment': 'Than?', 'created': '2024-11-06 07:40:04', 'submission_id': '1gks6hq'}
{'comment': 'I would if I could', 'created': '2024-11-06 08:25:55', 'submission_id': '1gks6hq'}
{'comment': 'Its over he needs Pennsylvania and he got it', 'created': '2024-11-06 08:11:58', 'submission_id': '1gks6hq'}
{'comment': 'I’m right now working on my last will and testament in case I can’t leave the country.', 'created': '2024-11-06 08:00:31', 'submission_id': '1gks6hq'}
{'comment': 'I don’t want to live in another authoritarian system. After abusive parents and two new religious movements, I value democracy. More than anything else.', 'created': '2024-11-06 07:43:09', 'submission_id': '1gks6hq'}
{'comment': "He's more like his boyfriend Putin IMO", 'created': '2024-11-06 07:40:07', 'submission_id': '1gks6hq'}
{'comment': 'WH, Senate, House, and Supreme Court...all GOP dominated. Yea, this time is just going to be sooo like his first 4 years.', 'created': '2024-11-06 07:38:40', 'submission_id': '1gks6hq'}
{'comment': 'The last time, Trump had some buffers. This time, the buffers will be gone.', 'created': '2024-11-06 07:44:04', 'submission_id': '1gks6hq'}
{'comment': 'I’m not convinced it’s not going to be worse this time.', 'created': '2024-11-06 07:39:06', 'submission_id': '1gks6hq'}
{'comment': 'No no somehow this time he will actually be a dictator/s', 'created': '2024-11-06 07:38:30', 'submission_id': '1gks6hq'}
{'comment': 'Bro lmfao it’s already there', 'created': '2024-11-06 07:39:40', 'submission_id': '1gks6hq'}
{'comment': 'what you don’t understand is that we are normal unlike the republicans', 'created': '2024-11-06 07:45:58', 'submission_id': '1gks6hq'}
{'comment': '1. I’m not really a Marxist. 2. What is your issue?', 'created': '2024-11-06 08:23:55', 'submission_id': '1gks6hq'}
{'comment': 'Gladly', 'created': '2024-11-07 01:10:35', 'submission_id': '1gks6hq'}
{'comment': "u see how we're making posts on the internet expressing our disapproval rather than raiding the capitol of the free world ?", 'created': '2024-11-06 07:36:36', 'submission_id': '1gks6hq'}
{'comment': "All the branches weren't red when he was President. Have you taken a Civics class?", 'created': '2024-11-06 07:49:16', 'submission_id': '1gks6hq'}
{'comment': 'You heard wrong. México is one of only a handful of countries that have the right to own firearms in their constitution. \n\nFirearms are legal to obtain.\n\nBesides, it is difficult for an American to legally immigrate their without a job/connection/wealth etc.', 'created': '2024-11-06 07:47:11', 'submission_id': '1gks6hq'}
{'comment': 'Isn’t it from 2025-2027? Hasn’t even begun yet, and was just announced weeks ago', 'created': '2024-11-06 07:50:51', 'submission_id': '1gks6hq'}
{'comment': 'Trump is on board with Project 2025', 'created': '2024-11-06 07:50:23', 'submission_id': '1gks6hq'}
{'comment': 'the senators you are electing voted against a bill which protected gay marriage.\n\nhttps://www.newsweek.com/senate-passes-respect-marriage-act-1763282', 'created': '2024-11-06 07:46:47', 'submission_id': '1gks6hq'}
{'comment': 'whT', 'created': '2024-11-06 07:45:30', 'submission_id': '1gks6hq'}
{'comment': 'Exactly', 'created': '2024-11-06 07:54:19', 'submission_id': '1gks6hq'}
{'comment': 'austrailia', 'created': '2024-11-06 09:52:23', 'submission_id': '1gks6hq'}
{'comment': '👍👍', 'created': '2024-11-06 07:57:15', 'submission_id': '1gks6hq'}
{'comment': 'Yup MSNBC called it. It’s over 🥺', 'created': '2024-11-06 08:15:23', 'submission_id': '1gks6hq'}
{'comment': '[removed]', 'created': '2024-11-06 08:04:39', 'submission_id': '1gks6hq'}
{'comment': None, 'created': '2024-11-06 07:52:06', 'submission_id': '1gks6hq'}
{'comment': 'This is a democracy. People are voting for trump', 'created': '2024-11-06 07:46:51', 'submission_id': '1gks6hq'}
{'comment': '2016-2020 was authoritarian? must be delusional', 'created': '2024-11-06 07:46:00', 'submission_id': '1gks6hq'}
{'comment': 'My issue is that you are calling a former American President and the New American President a Stalin 2.0.\n\nHave you no shame. \n\nWhat a despicable and disgusting and offensive thing to say. Stalin was responsible for the brutal killing and deaths of over 80 million people. \n\nThis is so low, this is why he won. The majority of the country got tired of these sorts of radical attacks. \n\nAbsolutely disgusting.', 'created': '2024-11-06 08:26:40', 'submission_id': '1gks6hq'}
{'comment': 'Talking about the Stalin 2.0 comment you mouth breather.', 'created': '2024-11-06 07:50:34', 'submission_id': '1gks6hq'}
{'comment': 'I want to thrive. Not just survive. There are Vietnam vets right now who are homeless and struggling with the illness of drug abuse. They survived Vietnam, but they’re not thriving.', 'created': '2024-11-06 08:06:12', 'submission_id': '1gks6hq'}
{'comment': 'What am I supposed to do? I have enough problems of my own in this hellscape of an existence.', 'created': '2024-11-06 07:53:11', 'submission_id': '1gks6hq'}
{'comment': 'And he will no doubt take away the right to vote. He said, “Vote for me, and you’ll never have to vote again. We’ll have it taken care of to where you won’t have to.”', 'created': '2024-11-06 07:47:46', 'submission_id': '1gks6hq'}
{'comment': 'Won’t be anymore', 'created': '2024-11-06 07:47:59', 'submission_id': '1gks6hq'}
{'comment': 'It’ll be the last vote. Russia moves on Europe and China and North Korea move on South Korea and Taiwan. Look at the ten nearest people you see tomorrow. 9 of them will die in a nuclear holocaust.', 'created': '2024-11-06 07:51:39', 'submission_id': '1gks6hq'}
{'comment': 'Delusionals will downvote this because they don’t want to face the facts', 'created': '2024-11-06 07:48:47', 'submission_id': '1gks6hq'}
{'comment': 'I emphasized abusive parents and two new religious movements. Those were authoritarian.', 'created': '2024-11-06 07:46:59', 'submission_id': '1gks6hq'}
{'comment': 'Well what do you call someone who says that the issue is with the enemy within and intimates sending the military after people who criticize them? That’s what Stalin did. And Hitler. George Bush never said anything like this and he deemed one of the worst presidents.', 'created': '2024-11-06 08:28:04', 'submission_id': '1gks6hq'}
{'comment': "You're the mouth breather considering the fact you can't tell the difference between the 2016 win and this one. All I can say is wait and see. The leopards are about to eat some faces soon.", 'created': '2024-11-07 13:09:18', 'submission_id': '1gks6hq'}
{'comment': None, 'created': '2024-11-06 07:57:34', 'submission_id': '1gks6hq'}
{'comment': 'Well at least we don’t have to deal with voting again on the bright side. This was stressful', 'created': '2024-11-06 07:51:07', 'submission_id': '1gks6hq'}
{'comment': 'You’re delusional, Jesus Christ', 'created': '2024-11-06 08:11:32', 'submission_id': '1gks6hq'}
{'comment': 'Where did he say this? Please link?', 'created': '2024-11-06 07:48:21', 'submission_id': '1gks6hq'}
{'comment': '[removed]', 'created': '2024-11-06 07:47:39', 'submission_id': '1gks6hq'}
{'comment': 'This is such lazy pathetic thinking. \n\nThis is literally why Dems lost. There was no critical thinking. Just throw all the bs at him, call him names, and use MSM to repeat it enough times that low thinking voters will parrot it and hopefully we win. \n\nTaking sentences out of context and exaggerating them a billion fold to make comparisons to some of the worst ppl of modern history is so disgusting. \n\nWhy do that, he was in office for 4 yrs. Where was this "Stalin 2.0"? \n\nAnd guess what, 4 yrs are gonna go by and he will be remembered as another president, good or bad, and there will be no dictator. And hopefully in 4 yrs, you rmbr all that they\'ve force fed you in order to scare you into voting for them and see it for what it is when it happens again next election, and the election after. \n\nDo your own research and thinking. Smh', 'created': '2024-11-06 08:32:53', 'submission_id': '1gks6hq'}
{'comment': 'I no longer have faith.', 'created': '2024-11-06 07:58:08', 'submission_id': '1gks6hq'}
{'comment': 'https://youtu.be/gE7xoHJkgvE?si=uHw0B8oLGwHq7R0U', 'created': '2024-11-06 07:49:13', 'submission_id': '1gks6hq'}
{'comment': 'Thankfully no. Our buffers were still in place.', 'created': '2024-11-06 07:48:13', 'submission_id': '1gks6hq'}
{'comment': 'I did my research. And historical research. And btw, he started with the name calling. I still remember Sleepy Joe, Crooked Joe, etc.', 'created': '2024-11-06 08:37:57', 'submission_id': '1gks6hq'}
{'comment': 'Um he said he would fix the country so well you wouldn’t need to vote again as in you won’t need to think twice or ever need to vote for another party? I’m missing the part where he was going to take away the right to vote.', 'created': '2024-11-06 07:51:15', 'submission_id': '1gks6hq'}
{'comment': 'That’s what he means. And also, in all likelihood, he will undo the 22nd Amendment.', 'created': '2024-11-06 07:52:10', 'submission_id': '1gks6hq'}
{'comment': 'Then why didn’t he do it last time he was president?', 'created': '2024-11-06 07:53:27', 'submission_id': '1gks6hq'}
{'comment': 'There were buffers in place.', 'created': '2024-11-06 07:54:59', 'submission_id': '1gks6hq'}
{'comment': 'There are buffers now? Seems like you are blowing things way out of proportion. There are pros and cons to both sides. All we can do is make the best of it.', 'created': '2024-11-06 07:56:07', 'submission_id': '1gks6hq'}
{'comment': 'You’re overreacting buddy', 'created': '2024-11-06 07:58:31', 'submission_id': '1gks6hq'}
{'comment': 'If this was 2016, I would believe that.', 'created': '2024-11-06 07:59:42', 'submission_id': '1gks6hq'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 07:25:25', 'submission_id': '1gks1jf'}
{'comment': 'Truthfully, I don’t think it’s an elitist issue. Listening to trumps rhetoric, it almost sounds like the people voting for him just want to be lied to. I don’t understand how you can hear his economic plan and logically piece out how it will work. 70% of what he says is hate or fear based claims. He has 94 counts of felony charges, tried to overturn an election, 20+ sexual assault accusations, and speaks at a 6 or 7th grade reading level. They just love this guy. \n\nHas the erosion of public education and critical thinking finally caught up to America. There is also a massive distrust among voters towards federal government, and the right feeds into that. \n\nI truly cannot see a way to be more popular other than throwing away morality and ethics. People are going to blame Kamala and Dems strategies, and they should be studied and evaluated, but what if it’s just Americans are not intelligent enough to discern a clear lie/con.', 'created': '2024-11-06 07:37:41', 'submission_id': '1gks1jf'}
{'comment': "lets see Trump fix America's problems.. he has no excuse.. people are going to have to learn it the hard way", 'created': '2024-11-06 08:59:07', 'submission_id': '1gks1jf'}
{'comment': "I have said it all along - We fight fire with tissue paper. \n\nWe have to fight their fire with a nuclear weapon. We have the potential to do huge things. We could, in theory, create our own social media network that's full of utter nonsense. We could, in theory, find a candidate who is WHACKY and makes MTG and Boobert look sane. \n\nBut what do we do? We ignore it. \n\nWell, not anymore. It's time we step up and fight the crazy with our own special brand.", 'created': '2024-11-06 09:27:47', 'submission_id': '1gks1jf'}
{'comment': "Personally, I am done. The absolute lowest denominator in a candidate was Trump. If we can't beat him..? This is like losing to Glass Joe. Time to concentrate on other stuff in life that's more important and let the world land where it may. Good luck.", 'created': '2024-11-06 11:55:33', 'submission_id': '1gks1jf'}
{'comment': 'At a certain point, isn’t a democracy only as good as its voters? Democracy may be the most fair way to govern but it is not inherently going to produce good results. Hitler was democratically elected by one of the most advanced cultures in western society less than a century ago. I think the Democratic Party obviously needs to get its shit together, but at a certain point when do we just say it looks like this is what the majority of Americans wanted? Their bills are too high, they think Trump will make them lower. They’re wrong, but what do we do about it', 'created': '2024-11-06 09:10:56', 'submission_id': '1gks1jf'}
{'comment': 'Ooooor how bout we address how now the majority of Americans support a scumbag pos no matter what they do?? That\'s the bigger issue, not how dems"fucked up" this country Is on a path to hell, willingly', 'created': '2024-11-06 08:32:39', 'submission_id': '1gks1jf'}
{'comment': "If you can't beat an 80 year old rapist, lecher, felon, pedo, insurrectionist then it's time to burn the whole thing down.", 'created': '2024-11-06 16:01:19', 'submission_id': '1gks1jf'}
{'comment': 'The cause of this loss is multifaceted, but before you address the ineffectiveness of the Democratic leadership (which is nothing new) you have to understand your electorate.\n\nTrump *crushed it* with the Latino vote. It’s baffling on the surface level, but we gotta admit some unfortunate truths about the American population before we can talk about how to best address it/campaign it effectively.', 'created': '2024-11-06 15:38:51', 'submission_id': '1gks1jf'}
{'comment': 'This is why conservatives should NOT be allowed to vote or hold public office.\n\n\n\nWe already know they are less intelligent.\n\n\n\nWe already know they are anti Science.\n\n\n\nWe already know they are more religious.\n\n\n\nThey are regressive. And evil.\n\n\n\nWe do not defer to children for advice on important matters. So why do we include regressives?\n\n\n\nWe do not consult the taliban for advise on quantum physics. So why do we include regressives on genuinely important social issues?\n\n\n\nThey want to drag us back to the bronze age.', 'created': '2024-11-06 15:15:12', 'submission_id': '1gks1jf'}
{'comment': 'Can we take a beat and maybe blame the people who continue to CHOOSE this? The goddamn voters?', 'created': '2024-11-06 13:30:20', 'submission_id': '1gks1jf'}
{'comment': 'People who voted for Trump have become addicted to the endorphins and adrenaline that comes from being angry. We need to find a way to reign that in.\n\nOr, less ideal, find a way to make them angry in our favor.', 'created': '2024-11-06 13:34:06', 'submission_id': '1gks1jf'}
{'comment': 'I guess you could if you want to troll yourself. But I\'d rather have a discussion about the bigotry of the slim majority of the electorate that was ok with "They\'re eating the dogs!" and "the garbage island of Puerto Rico."\n\nBeating up good people who were beaten by bad people because there were more bad people than good hardly seems productive.\n\nAmong other things, we ran on civil rights. An unabashedly good thing. Would it be better if we ditched civil rights to appeal to more of the racist electorate?\n\nWe are good people. We stand for good things. We lost not because we don\'t stand for good things, or because we don\'t message well, or because we\'re arrogant or elite.\n\nWe lost because the good things we stand for weren\'t important enough to the majority of the electorate.\n\nThe last thing we have to cling to in these dark times is to know we fought the good fight for good reasons. I would never take that away from us.', 'created': '2024-11-06 14:40:19', 'submission_id': '1gks1jf'}
{'comment': "Dems lost due to inflation. Look at the voting patterns across the country and you will see that Trump fared better in almost every state and every county. That says a lot about the sentiment of the general population. What's the point in blaming it on the party?\n\nEveryone is pissed because Trump won, but I think if it was someone else, we would have possibly lost by even bigger margin. I think the Dems should just step back and let GOP do whatever the fuck they want. Make sure they don't get blamed for shit.", 'created': '2024-11-06 09:28:14', 'submission_id': '1gks1jf'}
{'comment': "Our party needs to understand the average person does not care about your social issues if they can't afford groceries. Everything else is a luxury belief.", 'created': '2024-11-06 07:30:32', 'submission_id': '1gks1jf'}
{'comment': 'Our officials, judges, prosecutors, corporate media, etc. are just as much to blame. They are all either spineless or corrupt. Trump should have been jailed on January 7, 2021 and should not have been allowed to run again. He did exactly what he said he was going to do and stole this election.', 'created': '2024-11-06 12:20:16', 'submission_id': '1gks1jf'}
{'comment': "I think I've had enough of celebrities as a part of the campaign, it's probably the thing that disconnects people from the party the most.", 'created': '2024-11-06 10:16:46', 'submission_id': '1gks1jf'}
{'comment': 'I think it’s time to clean how or abandon the Democratic Party and build a progressive party. Americans have proven that they don’t want a centrist, centrism doesn’t work, big Liz Cheney doesn’t work. Americans aren’t stupid they know when things aren’t adding up.\n\nThe Democratic leadership didn’t offer a clear vision for the future instead they chose to focus group every position. Americans have shown twice now that they see through that, they don’t like that. They are willing to go to the extremes if it means there is a clear vision of the future and tangible actions taken. It’s time everyone stop listening to MSNBC, NBC, and CNN and demand an unapologetic progressive platform ala FDR.\n\n2022 Democrats won when they ran away from Biden and a lot of progressives won, Andy Beshear won in Kentucky and he tells Republicans to go fuck themselves when they go after trans kids. It’s time to abandon the party leadership, abandon Obama, and abandon the Clintons. They have proven they would rather lose and force march us to fascism rather than give up power to a popular progressive movement. It’s this or we continue losing.', 'created': '2024-11-06 14:29:18', 'submission_id': '1gks1jf'}
{'comment': 'Democrats scolding black men because they thought they would break for Trump was certainly a low point. They’ve lost what used to be their core base, working class people, and have no plan to get them back.\xa0', 'created': '2024-11-06 10:23:46', 'submission_id': '1gks1jf'}
{'comment': 'Nope. The blame rests at the end on the voters. If they want fascism let them deal with it.', 'created': '2024-11-06 20:26:10', 'submission_id': '1gks1jf'}
{'comment': 'DNC needs to stop running on emotions and cater to the progressive liberals who make up a small fraction of the population.\n\n\xa0Instead they should focus on real problems the majority of us face. Housing, cost of living, safety of the Americans living here. Put Americans needs first over whatever crisis happening elsewhere in the world.', 'created': '2024-11-06 08:00:17', 'submission_id': '1gks1jf'}
{'comment': 'Do you think there’s a way to better reach out to moderates (and maybe even some would-be-Trump voters) and ask how we can better represent them?\n\nAlso, just like in 2016, curious how much, if at all, this is the result of some backlash to “woke-ism”? (Though I hate using that term.) \n\nIs the answer reaching more moderates? Rather than “playing dirty”? I don’t know.', 'created': '2024-11-06 07:35:26', 'submission_id': '1gks1jf'}
{'comment': 'Depending on Taylor and Beyonce to save us will never work.', 'created': '2024-11-06 14:49:47', 'submission_id': '1gks1jf'}
{'comment': 'The Dems need to regain focus on people and not programs used to enrich themselves', 'created': '2024-11-06 21:05:30', 'submission_id': '1gks1jf'}
{'comment': 'No quote summarizes Obama-era failures better than that. Obama did not fight for his plans but made concessions. He also did not put his foot up McConnell’s ass when it came to judicial vacancies. AG Garland played nice and did not prosecute Trump for the insurrection. We went high alright.', 'created': '2024-11-06 21:48:30', 'submission_id': '1gks1jf'}
{'comment': 'Idk the anti white male rhetoric might be a big issue too', 'created': '2024-11-06 08:05:02', 'submission_id': '1gks1jf'}
{'comment': 'Democrats need to pick better candidates. This election was lost when Biden picked Harris as his running mate. He was the oldest candidate in history, there was a very high chance he wouldn’t be running for a second term. But his natural successor couldn’t even hit 1% in the fucking primary. The voting populace does not care about policy or plans, they care about vibes. Harris unfortunately doesn’t seem super comfortable when talking off the cuff. Obama was amazing at this and that’s why he comfortably won twice. Same with Bill Clinton. We can talk about how Trump sounds like a crazy idiot all day long but he somehow connects with people.', 'created': '2024-11-06 07:46:50', 'submission_id': '1gks1jf'}
{'comment': 'They could have held a real primary', 'created': '2024-11-06 07:32:33', 'submission_id': '1gks1jf'}
{'comment': 'You really are buying into the nonsense the Republicans say about the Democrats. \n\nElitism? Trump and the richest man in the world are going against elitists?', 'created': '2024-11-06 15:44:54', 'submission_id': '1gks1jf'}
{'comment': 'IVE BEEN SAYING THIS. \n\nBut by all means keep having celebrity endorsements. \n\nThis country is innately conservative but the party keeps going left. \n\nNot gonna win that way', 'created': '2024-11-06 07:33:41', 'submission_id': '1gks1jf'}
{'comment': "Hillary Clinton , Joe Biden, and Kamala Harris all ran, consecutively, flawless campaigns. But, as in life, you can do everything right, and still lose: Because you can't logic people out of a position they didn't logic themselves into and stupid is as stupid does \n\nTrump, it appears, despite having run a campaign of truly staggering mendacity, did no better or worse than 2020, that is to say there is no red wave. \n\nAs of right now, however, the popular vote stands at about 17 million fewer voters overall. It appears that a lot of people who voted Biden in 2020 didn't vote at all in 2024. They didn't switch, or flip, or do anything... They just sat it out.\n\nIn this day and age, strange as it may seem, many Americans still can't pull that lever for a woman... no matter how many people tell them it's ok to do so.... Or however much are highlighted the consequences of failing to do so.... or how many people begged, pleaded for them to do it. Stupid is as stupid does. \n\nI'm proud of Kamala. She ran a flawless campaign of sanity and goodness, in a country full of insane people.", 'created': '2024-11-06 14:44:11', 'submission_id': '1gks1jf'}
{'comment': None, 'created': '2024-11-06 07:48:23', 'submission_id': '1gks1jf'}
{'comment': 'They\'re dealing with a pretty impossible set of cards.\xa0 Polarized two party system, electoral college,\xa0 citizens united, Supreme Court,\xa0 terrible "news" stations.\n\n\nThis country is set up to fail', 'created': '2024-11-06 14:24:05', 'submission_id': '1gks1jf'}
{'comment': 'If you think the lesson here is that you need to fight dirtier you are living in a bubble. Sincerely.', 'created': '2024-11-06 08:03:08', 'submission_id': '1gks1jf'}
{'comment': 'I agree, but this is just another example of how entitled the dem. party thinks they are.', 'created': '2024-11-06 11:46:10', 'submission_id': '1gks1jf'}
{'comment': 'From now on, when they go low, I knee them in the teeth. I’m done playing nice. They are beyond political enemies. They are now the enemies of democracy and the supporters of fascism. They are my life and death enemies.', 'created': '2024-11-06 13:19:51', 'submission_id': '1gks1jf'}
{'comment': 'I cannot believe we are all just accepting this as if it’s legitimate! The KING of projection has claimed cheating for years……and as soon as he gets a slam dunk win with the popular vote, the electoral college, the senate, etc…being as unpopular as he is, and we all just accept it as if it’s totally legitimate before all of the votes are counted? What if it comes down to like a mere few hundred votes in each state?!?', 'created': '2024-11-06 14:38:34', 'submission_id': '1gks1jf'}
{'comment': "Arrogance? Tim Waltz would have been America's dad.", 'created': '2024-11-06 14:38:41', 'submission_id': '1gks1jf'}
{'comment': 'The removal of fairness doctrine right wing radio and rise of Fox News has never been addressed. The party needs a new way and it ain’t the center of the right.', 'created': '2024-11-06 14:47:42', 'submission_id': '1gks1jf'}
{'comment': '"But PLEASE give us more money to help continue the fight!" We don\'t have any more this was our last chance and things are about to become even MORE expensive, just to exist. There will be no more free elections, and almost everyone with more than two brain cells is going into survival mode right now. The idea that we could somehow come out of this, is gone. *we will not get another chance in our lifetime, America is dead.*', 'created': '2024-11-06 16:12:54', 'submission_id': '1gks1jf'}
{'comment': "We need another Obama-esque candidate that is strong and resilient and embodies all the ideas that America ideally stands for. I liked Harrison and I voted for her, and would do so again. It doesn't seem that she is capable of inspiring people to get out and vote (dem turnout was lower than in 2020 but the MAGAts made sure to vote).", 'created': '2024-11-06 17:42:19', 'submission_id': '1gks1jf'}
{'comment': "I used to share that belief. Then someone tried to shoot Trump and missed. If we get dirty we only empower them to get dirtier. Then people die. People who don't deserve to die will die. And it will happen quickly. We must stay strong. We must maintain our morals. Because the moment we sacrifice those, we become no better than them, and that's when we lose.", 'created': '2024-11-06 18:15:20', 'submission_id': '1gks1jf'}
{'comment': 'Doesn’t matter. I fought this fight since 2007 when I first volunteered for the Obama campaign and the Hope is now gone (remember that? Hope?). I am literally leaving on a plane and won’t be back. The difference is the Nazis in Germany were not beaten internally, domestically, or even politically. There were crushed externally physically and militarily. There hasn’t been another playbook where it wasn’t this way except for Spain and that took many decades. There is no longer any hope here - get out while you can.', 'created': '2024-11-06 20:36:08', 'submission_id': '1gks1jf'}
{'comment': 'Is Harry Truman still around?', 'created': '2024-11-06 23:02:50', 'submission_id': '1gks1jf'}
{'comment': 'We don’t have a propaganda arm. For all the bullshit the right speed about mainstream media, they are inept and not respected or listened to the way the right is. I truly think the Democratic Party is going to have to reinvent itself entirely in order to win in 2028. Full anti corporate populism. Trump will let the corporations run wild, we will need to shove that in everyone’s face and then run not against Trump but against the corporations that made him possible.', 'created': '2024-11-06 23:40:57', 'submission_id': '1gks1jf'}
{'comment': 'Shoulda had had a real primary', 'created': '2024-11-07 04:55:14', 'submission_id': '1gks1jf'}
{'comment': 'Keep in mind that incumbents around the world are losing their reelection bids due to fallout from inflation. Harris turned Biden’s summer deficit against Trump into a coin toss in just 100 days. She ran a nearly flawless campaign but the headwinds were against the incumbent party. You can argue about strategy but this was always going to be a long shot. Looking at it another way, had the GOP candidate been anyone other than Trump it may not have even been *this* close. Voters voted for him even though they have a more negative view of him compared with Harris.', 'created': '2024-11-07 07:31:02', 'submission_id': '1gks1jf'}
{'comment': '> They need to fight dirty. \n\nNo. They just need to find an earnest and effective message with a focus on the fundamentals.', 'created': '2024-11-06 07:57:10', 'submission_id': '1gks1jf'}
{'comment': 'I definitely feel like one of the biggest issues is an unwillingness to back away from some of the most unpopular radical agenda items I have ever seen in my life', 'created': '2024-11-06 16:31:42', 'submission_id': '1gks1jf'}
{'comment': '"they need to fight dirty" NO it should NEVER come to this. banning ID at California voting is already shady enough, and proves that dems are as bad as people think they already are. We should believe that democrats can believe on a fair playing field. Fighting dirty to win when playing with our government is a scary quality', 'created': '2024-11-06 07:28:12', 'submission_id': '1gks1jf'}
{'comment': 'Need to fight dirty hmmm maybe they could be the first administration to weaponize their DOJ to persecute their political rival that could be effective', 'created': '2024-11-06 07:31:51', 'submission_id': '1gks1jf'}
{'comment': None, 'created': '2024-11-06 07:27:26', 'submission_id': '1gks1jf'}
{'comment': "This post is idiotic. I will not try to recruit immoral trump fanboys just so I can have power. This country showed us what it is. There's really no going back. Millions will be hurt in our country and abroad. AMERICA's sheep have FAFO'd. Good luck.", 'created': '2024-11-06 16:09:58', 'submission_id': '1gks1jf'}
{'comment': "It's not dem elitism and arrogance, it's America's 77million low information, low education, Americans who are indifferent to anything that doesn't directly impact them, those who only care about the cost of gas.", 'created': '2024-11-06 17:31:57', 'submission_id': '1gks1jf'}
{'comment': None, 'created': '2024-11-06 07:34:45', 'submission_id': '1gks1jf'}
{'comment': 'No lets just watch them blame young men, latinos and black people.', 'created': '2024-11-06 07:26:59', 'submission_id': '1gks1jf'}
{'comment': '"They need to fight dirty" \n\nWow.\n\nPathetic', 'created': '2024-11-06 08:15:38', 'submission_id': '1gks1jf'}
{'comment': 'Democracy is only fair when I win, and I am actually smarter than the majority of America!!!', 'created': '2024-11-06 08:02:05', 'submission_id': '1gks1jf'}
{'comment': 'kept going woke and lgbtq+ in your face 24/7 for the last 4 years, continuous cancel culture. all these nonsense. the silent majority just got fed up real fast and just kept quiet and bide their time.\n\n\ndemocrats reaped what they sow today. not surprising.', 'created': '2024-11-06 08:04:22', 'submission_id': '1gks1jf'}
{'comment': "It's important to recognize that Democrats and Republicans have had a equal time in the presidency for the last little while. In an ideal system where both parties play politics competently, or at least equally competently, that will be the case.", 'created': '2024-11-06 08:22:30', 'submission_id': '1gks1jf'}
{'comment': "I'm done with them. I'm not voting anymore. This is it.\n\nEdit: downvote all you want. 20 million of them fucked us. ALL of us. Enjoy the future.", 'created': '2024-11-06 07:32:26', 'submission_id': '1gks1jf'}
{'comment': "I wouldn't worry too much, Trump is a once-in-a-lifetime, once-in-a-blue moon, lightning-in-a-bottle candidate. \n\nTrump's ability to get away with anything and still win votes is paradoxically what allows him to win even more votes... \n\nAll men have been bullied, scandalized and had to fight the system and were broken by it... told to be in their places. \n\nTrump somehow doesn't have this limitation, it's like someone walking on water... or floating in the air. You can't help but be amazed even if they're a terrible person. \n\nHe wins, because somehow he keeps winning. No one else in America can do this.\n\nI voted blue all my life but just this once I voted for Trump... I'll probably vote blue again next time. \n\n,", 'created': '2024-11-06 08:16:52', 'submission_id': '1gks1jf'}
{'comment': 'All the news is talking about exit polling and "economy" and "border control" are the major things. \n\nAnd one side believes every last thing told to them by America\'s Most Watched News Channel and has no understanding of actual economics. People have no concept that the economy doesn\'t instantly change on January 20th based on the current President\'s party affiliation. Or how one party gets blocked by the other side even if the actions are good for the American people because we can\'t let the other team have a win. Or how tariffs will cost us more. Or how much of inflation was caused by money that was printed and handed out during Trumps presidency (much of which they removed all oversight on so certain groups could just pocket millions.)\n\nAnd the border... the boogeyman largely fabricated by Fox News. It\'s mostly lies. There\'s a billion things more important in our country. The dems tried to pass border policy that is everything Republicans have ever asked for and Trump asked Republicans to block legislation so it could continue being a problem.', 'created': '2024-11-06 07:50:24', 'submission_id': '1gks1jf'}
{'comment': "I saw another post about the family dynamics of this. I wish I could find it, but essentially, it came down to while we need the uber talented Aunt, we are going for the abusive Step Daddy. \n\nIt's horrifying.", 'created': '2024-11-06 09:25:19', 'submission_id': '1gks1jf'}
{'comment': "Its incredibly simple\n\nthere is an (R) next to Trump's name, so if he says it, it must be the truth\n\nWhy bother thinking", 'created': '2024-11-06 08:52:21', 'submission_id': '1gks1jf'}
{'comment': 'You hit the nail right on the head. Well said. Fear mongering is such a powerful tool among the vulnerable and gullible.\xa0', 'created': '2024-11-06 07:44:55', 'submission_id': '1gks1jf'}
{'comment': 'The people supporting this are addicted to the adrenaline and endorphins they get from listening to Fox News.\n\nWe need to find a way to reign that in, without removing freedom of the press.', 'created': '2024-11-06 13:31:52', 'submission_id': '1gks1jf'}
{'comment': 'Seems like making education more accessible might be part of the solution... but what do I know!', 'created': '2024-11-06 08:08:37', 'submission_id': '1gks1jf'}
{'comment': 'Everything you said after your first sentence shows why it is an elitist issue.\n\nHis entire appeal is that he gives shit to elites all the time, non stop. People don’t care about anything else. His policies are idiotic and he’s going senile. It doesn’t matter. He is a full time attack dog on liberal elites. That is all his voters want.', 'created': '2024-11-06 08:39:37', 'submission_id': '1gks1jf'}
{'comment': '15 million more people were stupid enough in 2020 to vote for Biden but not for Harris in 2024. 4 million people who voted for Trump in 2020 were intelligent enough to not vote for him this time around. \n\nThis HAS to be blamed on the Democratic Party’s strict desire to maintain a stranglehold on their party. This is a direct result of undemocratically pushing out fantastic candidates such as Bernie Sanders. Until they accept that this is who their base will support, they will continue to lose easy elections.\n\nI honestly think Biden wouldve had a better chance purely due to the extreme lack of turnout. This quite clearly shows that they did not do enough during the presidency to sure up their base. Additionally, if Biden had dropped out and let there be an actual primary then she may have actually had a chance because many people saw her candidacy as undemocratic.', 'created': '2024-11-06 19:59:30', 'submission_id': '1gks1jf'}
{'comment': 'What economic plan? I heard some of his speeches and didn’t hear any real plan to speak of.', 'created': '2024-11-06 23:13:43', 'submission_id': '1gks1jf'}
{'comment': 'Exactly this. Whenever I ask anyone to tell me what Trump’s plans are they have no idea and are 100% fine with that. On the Dem side, we actually have to be convinced of a plan’s effectiveness and if there is 1 tiny part of the plan that isn’t perfect it’ll get ripped to shreds by various contingencies within the base as well as all news outlets. The bar is the sky for democrats and it’s the floor for republicans.', 'created': '2024-11-07 02:14:37', 'submission_id': '1gks1jf'}
{'comment': 'This whole fucking comment embodies why Dems lost today.\n\nEdit: downvote me if you like but this holier than thou attitude obviously hasn’t worked. We can’t talk down to a large swath of this country and then expect them to vote our way. Dismiss them, call them uneducated or dumb, whatever you want … but we need to win elections and their votes weigh the same as ours. The core of the Democratic voter base is withering away. Be more inclusive, not less.', 'created': '2024-11-06 14:05:19', 'submission_id': '1gks1jf'}
{'comment': 'Yup, George Clooney and pelosi bullying Biden into quitting definitely doesn’t reek of elitism, right?', 'created': '2024-11-06 08:59:22', 'submission_id': '1gks1jf'}
{'comment': None, 'created': '2024-11-06 07:59:49', 'submission_id': '1gks1jf'}
{'comment': "oh, he'll have an excuse. don't you worry about that.", 'created': '2024-11-06 14:18:06', 'submission_id': '1gks1jf'}
{'comment': "Trump left his first term failing to live up to numerous promises and yet people still claim he's the best president they've had in their lifetimes. It doesn't matter how bad this second term is, they will think the exact same thing.", 'created': '2024-11-06 22:33:44', 'submission_id': '1gks1jf'}
{'comment': 'Exactly! Trump should have been jailed a long time ago. He and his cronies have done exactly what they said they would do: steal the election. Something doesn’t add up and it needs to be thoroughly investigated, but we already know it won’t be.', 'created': '2024-11-06 12:22:51', 'submission_id': '1gks1jf'}
{'comment': ">We could, in theory, find a candidate who is WHACKY\n\nWe need to just start straight up running puppet celebrity candidates. Chris Evans is my suggestion. Doesn't matter if he doesn't know shit about politics, has no experience. He was Captain America, it's a free win.", 'created': '2024-11-07 01:14:35', 'submission_id': '1gks1jf'}
{'comment': 'This was my thought too. I’m tired of fighting. Let him tear the country apart. Let him destroy the livelihoods and families of the people who backed him. \n\nI’ll sit back and eat my popcorn living in ignorance.', 'created': '2024-11-06 15:55:32', 'submission_id': '1gks1jf'}
{'comment': "This is where I am at. I used to vote and then just not pay attention to politics. This is where I have to get back to. This election consumed my life for the past 3 months. Even today I feel like I've done literally nothing but be consumed by this shit. \n\nThe sad reality is that no matter who wins or loses, we are all just a single voter subject to whatever the hell government wants to do. Nothing we can do but exactly what you said, move on and focus on other stuff in my life that's important and just adapt to whatever the world brings my way.", 'created': '2024-11-06 22:36:58', 'submission_id': '1gks1jf'}
{'comment': "No you're not. You say that now, but, you're gonna feel differently in a few weeks and months.", 'created': '2024-11-06 15:20:59', 'submission_id': '1gks1jf'}
{'comment': 'I spent months knocking doors, getting petitions signed and spreading the good word only to have a complete wipe out down here in Florida because the national party has utterly abandoned us. They’re more than happy to have the Sunshine State be their MAGA honeypot while they sanctimoniously deride all Floridians from their safe blue bubbles.\n\nI’m not nearly wealthy enough to play this game in the gilded age of *Citizens United*.\xa0This is the fourth election in a row we’ve been shellacked and I’ve just got nothing left. We were the good guys defending classical liberalism. We did everything as we should, and yet we let the Right win through their perfidious institutions.\xa0', 'created': '2024-11-06 23:02:53', 'submission_id': '1gks1jf'}
{'comment': "What the Democrats need to do isn't so much about their direct campaigning, it's about the insidious campaign tactics. The Republicans bought up AM radio and local rural news affiliates all over the country and have been serving nonstop Republican propaganda for the last 50 years. Probably more than half of these people have never met a gay or trans person, and they may not have ever met a black or latino person. ...but what they see and hear on their local media tells them that their lives about to be destroyed by them.\n\nElon Musk and his invisible partners bought twitter exactly to interfere with this election. $44 Billion was a bargain for Putin to buy control of the US government.", 'created': '2024-11-06 14:24:25', 'submission_id': '1gks1jf'}
{'comment': '"A republic, if you can keep it."', 'created': '2024-11-06 15:08:43', 'submission_id': '1gks1jf'}
{'comment': 'Yes, let’s address that. Because I’d really like to understand how Jan 6 & all the court cases & general character didn’t disqualify him for 80 million voters', 'created': '2024-11-06 13:11:34', 'submission_id': '1gks1jf'}
{'comment': 'If you give an addict a choice between black tar heroin and a glass of water—and they choose the heroin, it’s not the fault of the person who poured the water…', 'created': '2024-11-06 13:24:46', 'submission_id': '1gks1jf'}
{'comment': "Fuck it. Let's bring back Al Franken! It doesn't matter anymore!", 'created': '2024-11-06 14:58:34', 'submission_id': '1gks1jf'}
{'comment': "The majority of Americans just do not care. They didn't vote", 'created': '2024-11-06 15:47:08', 'submission_id': '1gks1jf'}
{'comment': "It's less about how bad he is and how racist and misogynistic America is. Rural white Americans came out strongly to vote against a black woman.", 'created': '2024-11-06 16:53:00', 'submission_id': '1gks1jf'}
{'comment': 'I’m not saying they fucked up this country. Biden has been the most progressive president in decades… I’m saying the Democratic Party is terrible at running campaigns and is arrogant. They should have forced Biden to primary last year. \n\nAgain, I’m not saying that Democrats are bad at governing. They’re great at governing but terrible at campaigning.', 'created': '2024-11-06 08:34:27', 'submission_id': '1gks1jf'}
{'comment': 'And the places where Harris improved were rich areas like Ozaukee', 'created': '2024-11-06 10:44:29', 'submission_id': '1gks1jf'}
{'comment': 'Yep, it was the economy and immigration. \n\nIf the economy had been strong this time, Harris would’ve had a better chance. Maybe even win.', 'created': '2024-11-06 13:54:19', 'submission_id': '1gks1jf'}
{'comment': "Unfortunately, I can't conscience just letting people be hurt.", 'created': '2024-11-06 15:52:47', 'submission_id': '1gks1jf'}
{'comment': "Yep, time to let Trump and the GOP fix all of America's problems. Have at it, fellas.", 'created': '2024-11-06 16:55:42', 'submission_id': '1gks1jf'}
{'comment': "sure.\xa0 \xa0but I don't think you can say she didn't try to address those financial concerns.\xa0 \xa0half the nation just didn't want to hear it.\xa0 they wanted the self pity and the grievance and hate.\xa0\xa0", 'created': '2024-11-06 08:00:20', 'submission_id': '1gks1jf'}
{'comment': 'Yep. Everyone who cares about the social issues will find your position on them. You don\'t need to campaign on that. Economics are the only thing that matters to the average voter. "It\'s the economy, stupid."', 'created': '2024-11-06 08:29:23', 'submission_id': '1gks1jf'}
{'comment': "Totally agree. If the democrats want to flip voters and red states, they need to focus on the economy and anything else that affects the cost of living. [23 Nobel Prize-winning economists](https://www.cnn.com/2024/10/23/politics/nobel-prize-economists-harris-economic-plan/index.html) heavily favored her policies over Trump's, and yet we heard almost nothing about any of that in her campaign messaging.", 'created': '2024-11-06 18:17:00', 'submission_id': '1gks1jf'}
{'comment': "Agreed. Im from the rust belt and I live in LA. The people in LA are so out of touch with what real people care about back home. They cannot fathom why or how people would support Trump but, as a previous Bernie supporter who is even further left than 90% of the democratic party, I 100% understand how people can support him. It's a huge disconnect by the democratic elite.", 'created': '2024-11-06 07:35:27', 'submission_id': '1gks1jf'}
{'comment': 'Exactly. \n\nAll the focus on LGBTQ and abortion pales in comparison to the rampant inflation and overwhelming immigration the average Joes are facing daily\n\nThe Dems need to get their head out of their ass and understand the wants of the man on the street', 'created': '2024-11-06 07:33:40', 'submission_id': '1gks1jf'}
{'comment': 'Hell, he should’ve been in prison long before even sniffing the presidency the first time. He did too good of a job making friends with corrupt politicians in both parties for decades.', 'created': '2024-11-06 16:23:46', 'submission_id': '1gks1jf'}
{'comment': 'The insane part is that we’re such a small percentage of the population when it is actually white women who have been helping to get Trump elected. Black men tend to vote overwhelmingly blue so instead of beating us down because Harris was polling lower than usual, they should have been focusing on capturing the demographic that would actually swing the election.', 'created': '2024-11-06 13:18:52', 'submission_id': '1gks1jf'}
{'comment': 'They already did that. And that\'s not what won MAGA to Trump\'s side. What we need is to combat the massive misinformation and propaganda pumped out by every right wing "news" network. Not a single Trump supporter could tell you a single thing about the economy or how Trump will do anything about it. They\'ve been scared into voting against their own interests.', 'created': '2024-11-06 11:59:04', 'submission_id': '1gks1jf'}
{'comment': 'I\'m black. I\'m "progressive" just for wanting to be treated the same as a white person.', 'created': '2024-11-06 13:44:25', 'submission_id': '1gks1jf'}
{'comment': "You fire every single person that works for the DNC and you go out and hire people specifically from state schools from the Rust Belt and Sun Belt. You abandon the coastal elite and harvard/ivy league grads. \n\nI think the answer isnt moderates versus liberals. I think it's legit just focusing on working class people. I live in LA and im from the Rust Belt and I legitimately cannot get over how out of touch people are here. Talking about reparations while people in the midwest still live in some of the most impoverished communities in the country.", 'created': '2024-11-06 07:41:09', 'submission_id': '1gks1jf'}
{'comment': 'The problem with wokeism is: "We, the people need more housing, for everyone, including for black people". Elites: "oh, forget your housing problem, we have this black elf for you". Seriously, the "woke-ism" in the media was pure irresponsability, because the real necessities of this "represented" communities were been ignored. Housing, education, food prices. Latino and black communities were suffering with this, but the establishment was trying to selling us a fantasy through mass media. But that feed the culture wars and contributed to the radicalization of young men. \nAnd Jeff Bezos, the guy who was promoting "wokeism" in his streaming service, supported Trump in the end. This is the problem with progressivism: people become blind by the sensation of "oh, i\'m being represented in Hollywood now", and this generated complacency.', 'created': '2024-11-06 08:36:02', 'submission_id': '1gks1jf'}
{'comment': None, 'created': '2024-11-06 08:05:36', 'submission_id': '1gks1jf'}
{'comment': "I really hope we can address this now, I feel like yesterday was a tipping point. We need to throw young men a bone, the issue is with their grandparents, but they get lumped in. Scholarships, jobs program that isn't the military, and obviously not just for white men, but something that they can have a piece of, too, and feel some hope. And the constant side-eying us is frustrating to rationalize.", 'created': '2024-11-06 18:33:23', 'submission_id': '1gks1jf'}
{'comment': 'Sorry, you’re gonna have to explain how alienating the largest voting block is a bad idea.', 'created': '2024-11-06 15:59:16', 'submission_id': '1gks1jf'}
{'comment': ">\xa0He was the oldest candidate in history\n\nIt's time to stop being polite and face our gerontocracy problem. RBG, Feinstein, Biden. Every Democratic elected official over the age of 70 needs to step aside in 2026. The Boomers and Silents continue their stranglehold on power thanks to incumbent inertia. We may have our first Millennial president (Vance) before having elected anyone from Generation X. \n\nThe decision for Biden to step aside and have Harris as our candidate was a self-imposed crisis. Not a single primary vote was cast for her. We need Democratic leadership that supports open, fair, and transparent primaries instead of coronating their choice and then we all fall in line. Our support for democracy is hollow if we don't follow it ourselves.", 'created': '2024-11-06 08:15:59', 'submission_id': '1gks1jf'}
{'comment': 'Over the summer with four months until the election? That’s not happening.\n\nThe time for primaries was in 2023 but old Joe just could not put his ego aside.\xa0', 'created': '2024-11-06 23:07:31', 'submission_id': '1gks1jf'}
{'comment': 'I’m a progressive from the rust belt living in LA… the coast elite BS is 100% true. Never felt represented back in the rust belt by democrats but still vote for them cause I’m not dumb but all the rich democratic assholes on the coast who just call the rust belt fly over country and don’t understand the issues we face are why we’ve lost.', 'created': '2024-11-06 17:53:40', 'submission_id': '1gks1jf'}
{'comment': "only going left socially.. they're still conservative with corporate policy.", 'created': '2024-11-06 07:42:15', 'submission_id': '1gks1jf'}
{'comment': 'The party is NOT going left', 'created': '2024-11-06 12:02:14', 'submission_id': '1gks1jf'}
{'comment': 'This has nothing to do with sex. The polls ended up being accurate and more people voted for Kamala than would have Biden. Stop falling into the blame game that democrats are known for. This is what I meant by this post and the ineffectiveness.\n\nAnd I’d argue that Clinton’s campaign was well, Biden got lucky off of the post pandemic mail in vote, and Kamala’s campaign was screwed over by Biden dropping out late. Saying their campaigns was perfect is a stretch', 'created': '2024-11-06 17:56:44', 'submission_id': '1gks1jf'}
{'comment': "I agree but we have two options, right? Play dirty and have a fighting chance of protecting democracy and human rights or pretending life is a Disney movie and playing everything by being mature and losing slowly but surely (where we currently are). You'd rather continue to lose then fight and take money out of politics, protect voting rights, etc. \n\nNot saying you're wrong but what are the options?", 'created': '2024-11-06 08:13:54', 'submission_id': '1gks1jf'}
{'comment': 'I’d argue Tim would have won if it was him instead of Kamala. I voted for Kamala but she was a bad candidate since she dropped out of the primary early years ago.', 'created': '2024-11-06 17:58:11', 'submission_id': '1gks1jf'}
{'comment': 'Haven’t people died under and directly due to Trump’s actions? I think at this point it’s about limiting harm as much as possible, and more could and will take place under him.', 'created': '2024-11-06 18:16:27', 'submission_id': '1gks1jf'}
{'comment': 'I’m not even a Kamala fan and I would argue she did the best she could. She did a great job in the 100 days she was given. My comment is on the Democratic Party. They screwed her over by not pushing Biden out earlier. He should have been a 1 term president and voluntarily left earlier than he did.', 'created': '2024-11-07 07:42:56', 'submission_id': '1gks1jf'}
{'comment': 'They need to send Seal Team 6 and rely on that immunity ruling.', 'created': '2024-11-06 13:45:51', 'submission_id': '1gks1jf'}
{'comment': 'Messaging is useless without a platform. That’s the biggest problem Democrats faced and continue to face. Maybe it was inevitable with the way capitalism works, but Democrats got outflanked on the media front again. Much like conservatives previously buying up AM radio and creating alternate news networks to push their agenda while spreading the lie of “liberal mainstream media bias”, they’ve done the same with social media.', 'created': '2024-11-06 16:43:09', 'submission_id': '1gks1jf'}
{'comment': 'Like?', 'created': '2024-11-06 17:20:04', 'submission_id': '1gks1jf'}
{'comment': "I agree but we have two options, right? Play dirty and have a fighting chance of protecting democracy and human rights or pretending life is a Disney movie and playing everything by being mature and losing slowly but surely (where we currently are). You'd rather continue to lose then fight and take money out of politics, protect voting rights, etc", 'created': '2024-11-06 07:32:23', 'submission_id': '1gks1jf'}
{'comment': 'Joe was going to lose too. The best option is if Biden committed to being a one term candidate then we primaried for a real candidate.', 'created': '2024-11-06 07:31:01', 'submission_id': '1gks1jf'}
{'comment': 'Id argue both were bad. The polls for Kamala were 100% accurate. Both Biden and Kamal would have lost. We needed someone else or a real primary last year.', 'created': '2024-11-06 07:28:08', 'submission_id': '1gks1jf'}
{'comment': "And I sure as fuck aren't going to vote for Jill Stein or other tankies.\n\nhttps://preview.redd.it/9xf10y9p8czd1.jpeg?width=474&format=pjpg&auto=webp&s=ecb07d54b69c97e87d8f60df15b07a754904430c", 'created': '2024-11-06 21:07:35', 'submission_id': '1gks1jf'}
{'comment': 'This is why democrats will continue to lose. You’re the issue. All 66,000,000 who voted for Trump aren’t racist lmao\n\nAdditionally, she did better than Biden would have so that proves it has nothing to do with sex or race since she outperformed a white male (per poll numbers, which turned out to be right).', 'created': '2024-11-06 17:49:04', 'submission_id': '1gks1jf'}
{'comment': 'You serious? The _world’s richest man_ is on Trump’s team. Trump himself is wealthy. “Common” people didn’t mind apparently.', 'created': '2024-11-06 08:46:04', 'submission_id': '1gks1jf'}
{'comment': 'Yup when we need to legitimately clean house in the democratic party. They are useless.', 'created': '2024-11-06 07:28:39', 'submission_id': '1gks1jf'}
{'comment': 'Has what we’ve been doing been working? Genuine question.', 'created': '2024-11-06 08:35:06', 'submission_id': '1gks1jf'}
{'comment': 'Continuous cancel culture? You’re STILL saying woke? None of that is or was real. You got duped into believing this BS and now we’re all going to pay - literally and figuratively.', 'created': '2024-11-06 12:08:31', 'submission_id': '1gks1jf'}
{'comment': 'Why? Because the failure of dems with the economy, or only because of his charisma?', 'created': '2024-11-06 08:42:30', 'submission_id': '1gks1jf'}
{'comment': 'You see it as I do, I’m wondering if I’m crazy but I’ve heard enough trump supporters list proven lie after proven lie then say I need to get my head out of the sand. Education is the only way to grow as a nation but did we just vote out the department of education tonight?', 'created': '2024-11-06 08:15:08', 'submission_id': '1gks1jf'}
{'comment': '"Border Control" and "Immigration" and "The economy" (Inflation was bad in Weimar Germany, but as with us it was just starting to come under control) when Hitler became Supreme Chancellor.\n\nYou can say all you want that maybe the economy as at fault, or that the other side should have messaged better. But in the end their democracy voted in people who were fine exterminating the Jews, and the electorate was good with it until the Allies conquered them.', 'created': '2024-11-06 14:42:42', 'submission_id': '1gks1jf'}
{'comment': 'Agree. idk about fighting dirty but unilaterally disarming is never an awesome winning strategy', 'created': '2024-11-06 11:56:01', 'submission_id': '1gks1jf'}
{'comment': 'The economy is great right now, so when fat face gets in there he will take credit for it, and all the lemmings will go see we told you!!!!!', 'created': '2024-11-07 20:15:21', 'submission_id': '1gks1jf'}
{'comment': "There's a billion things more important than the border? How out of touch can you be? It directly impacts the economy, housing costs, safety, and more. This administration let in more illegals than 4 years of Trump and 8 years of Obama combined. And you still don't see how that's an issue? \n\nDo you think America is a country with cultures and values that should be preserved or is it just an economic zone for people to exploit for their own personal gain? Look at these landslide results we are seeing and you still have your head in the sand that everyone else is wrong. Have you ever stopped and thought maybe you're the one who is brainwashed?", 'created': '2024-11-06 16:35:30', 'submission_id': '1gks1jf'}
{'comment': 'Rs dont don’t do well unless trump is on the ticket. Look at non presidential elections and special elections. It’s a cult and he’s their leader.', 'created': '2024-11-06 09:16:30', 'submission_id': '1gks1jf'}
{'comment': 'Before the election I was at Target in FL and the self checkout operator randomly told me that Kamala was going to turn the US into Venezuela. That’s a new one for me, and I honestly have no clue who is spreading that lie.', 'created': '2024-11-07 03:03:31', 'submission_id': '1gks1jf'}
{'comment': 'Like trump is hitler?', 'created': '2024-11-06 08:35:17', 'submission_id': '1gks1jf'}
{'comment': 'Trump has said he will get rid of department of education. And red states are turning to private education and vouchers to reduce public funding for public education.', 'created': '2024-11-06 08:56:28', 'submission_id': '1gks1jf'}
{'comment': "I agree with this. The irony is the Silicon Valley elites represented by the world's richest man pinned their mast to Trump. After Trump's promises to take on the elite, the reality he is part of the elite. When he rails against the mainstream media, he conveniently forgets that Fox News is the most mainstream of mainstream media (most watched amongst the cable networks). \n\nThe Hollywood endorsements didn't help Harris, they tied her more to Trump's definition of the elite, so the Democrats were unable to shatter the perception and cast it back on him.", 'created': '2024-11-06 11:05:18', 'submission_id': '1gks1jf'}
{'comment': 'So regress and throw away morals and ethics. Congrats you’re the gop?', 'created': '2024-11-06 08:43:26', 'submission_id': '1gks1jf'}
{'comment': 'So, for democrats to be not elitist, the aim would be to just start talking trash?', 'created': '2024-11-06 13:28:13', 'submission_id': '1gks1jf'}
{'comment': 'And, no way in hell America is going to vote for a woman president. Especially a black one.', 'created': '2024-11-06 16:51:51', 'submission_id': '1gks1jf'}
{'comment': 'He doesn’t have policies… he has concepts of policies', 'created': '2024-11-07 00:49:26', 'submission_id': '1gks1jf'}
{'comment': 'Biden had a favorability rating at historically low levels before pulling out. I agree Kamala in hindsight was a bad choice and they should have gone with Gavin, Shapiro, or Gretchen to distance themselves from Biden horrific favorability. But she ran a fine campaign, momentum was on her side from favorability. She won the debates easily, she didn’t embarrass herself in interviews and seemed to have momentum. Biden fucked us by not getting out of the race earlier, and it’s sad to say because I think he’s done outstanding in most other areas. \n\nTruth is if inflation was low Kamala would have had a better chance at winning this election. What shocked me is woman’s reproductive rights was not enough to get people out to vote and the right is voting for a fear and hate based party. I thought they were smarter than that, this really isn’t a Democrat problem, this is a gop has gone crazy problem. Trump should not have even been on that ballot, they have lost their damn minds.', 'created': '2024-11-06 20:10:28', 'submission_id': '1gks1jf'}
{'comment': 'Then you didn’t try to listen or only caught clips from whatever news source you used. She wanted to increase small business owners borrowing ability up to 50k, offer first time home buyers 25k, redistribute wealth by increasing tax rates to upper class and lowering taxes for most Americans. The plan was rated by Goldman, Moodys, UPenn, and many more as a better growth economy than trumps. All things she brought up in interviews and the debate. \n\nTrumps plan was I’m going to lower corporate tax rate and replace that revenue with tariffs. If he does what he says the economy is going to jump off a cliff and inflation will skyrocket.', 'created': '2024-11-07 15:15:03', 'submission_id': '1gks1jf'}
{'comment': "You can think that if you want, but Less people voted for Trump than 2020. Yall didn't magically gain voters out of ... beaten dog syndrome or whatever you're describing. \n\nSignificantly less people voted for Harris than Biden. It was Democrats who stayed home out of apathy or nihilism that did it to themselves. It was suicide. Not murder by moping.", 'created': '2024-11-07 01:13:05', 'submission_id': '1gks1jf'}
{'comment': 'You mean Biden that had an approval rating below 30% and couldn’t put a coherent sentence together during the debate?', 'created': '2024-11-06 09:14:55', 'submission_id': '1gks1jf'}
{'comment': 'How is that "elitism"? 🤔', 'created': '2024-11-06 14:38:26', 'submission_id': '1gks1jf'}
{'comment': 'What part of trump campaign? Most of his ads, his speeches were. The left are letting in millions of illegals that are raping and taking over apartment complex or eating cats and dogs. Tariffs are the answer., if we get his tariffs we are fucked. \n\nWhat did he really run on other than inflation is Biden’s fault (little to do with Biden) and crime is up (which it isn’t) economy is worse (better than almost every other country), everyone wanted roe overturned, guess he was right there. Like what did he run on that got him votes? I listened to his speeches, it’s mostly the same bullshit he’s been saying for 8 years now.', 'created': '2024-11-06 08:09:59', 'submission_id': '1gks1jf'}
{'comment': 'Yep it’s called immigrants', 'created': '2024-11-06 14:32:41', 'submission_id': '1gks1jf'}
{'comment': 'Yep. He\'ll be like "The dems left the country in such a state it\'s going to hurt while we fix it."', 'created': '2024-11-06 17:33:59', 'submission_id': '1gks1jf'}
{'comment': 'Exactly! I said we need a daddy. Gavin came to mind because he is a politician - but like, seriously. Chris!?!? Amazing!!!', 'created': '2024-11-07 01:15:51', 'submission_id': '1gks1jf'}
{'comment': "You get it, my friend. Let's just hope the MAGA morons learn to at least be low key. Yeah... sure.", 'created': '2024-11-06 22:48:35', 'submission_id': '1gks1jf'}
{'comment': 'Btw, is your birthday October 10th?', 'created': '2024-11-06 22:49:06', 'submission_id': '1gks1jf'}
{'comment': 'Maybe, but until then I am going to see what they are going to do now that they have everything they want. I am going to live my life as best I can, and just watch.', 'created': '2024-11-06 15:44:53', 'submission_id': '1gks1jf'}
{'comment': "Except it's been proven time and time again we cannot replicate their tactics. We've tried. Voters who would vote for us aren't interested in 24/7 propaganda networks, etc.", 'created': '2024-11-06 16:19:36', 'submission_id': '1gks1jf'}
{'comment': "Forced Biden to primary? Yea you aren't a serious person", 'created': '2024-11-06 08:37:55', 'submission_id': '1gks1jf'}
{'comment': 'The economy is very strong right now. People are mad any the inflation', 'created': '2024-11-06 15:51:45', 'submission_id': '1gks1jf'}
{'comment': 'And racism. A white man would have done better. The rural white vote came out against a black woman.', 'created': '2024-11-06 16:55:03', 'submission_id': '1gks1jf'}
{'comment': "> half the nation just didn't want to hear it. they wanted the self pity and the grievance and hate. \n\nThis rhetoric is exactly how we got Trump in 2016.\n\nThere's only so much she can say about financial concerns when she's been in office for the past four years during rampant inflation.", 'created': '2024-11-06 08:01:57', 'submission_id': '1gks1jf'}
{'comment': 'That’s what I’ve been saying! Abortion wasn’t a top issue for voters. It sucks to say it. But that’s what the polling showed.\n\nThe Clinton campaign in the 1990s got it correct: its the economy, stupid.\n\nHave a strong economy and the average voter won’t give a damn about anything else.', 'created': '2024-11-06 13:58:35', 'submission_id': '1gks1jf'}
{'comment': 'WINNER WINNER CHICKEN DINNER!\n\nI was a huge Bernie supporter. If the Dims ( not a typo after allowing Trump 2.0 ) had went WITH the peoples choice Bernie versus the corporate owned puppets the Dims would have won 2016 & 2020and Trump would be a gorgotten fotenote in political history!', 'created': '2024-11-06 08:16:32', 'submission_id': '1gks1jf'}
{'comment': 'Exactly! I’ve never understood his appeal. He always seemed like a slime bag and con artist to me.', 'created': '2024-11-06 16:51:28', 'submission_id': '1gks1jf'}
{'comment': "I'm kind of a little fed up of people arguing the Democrats need to stop running on charisma and start running on real problems.\n\nSolutions to real problems are passing as ballot measures all across the nation. Florida passed a $15/hr minimum wage via ballot measure some elections passed. That same election, FL voted unconditionally for the GOP.\n\nThe Democrats (as a collective entity) can run a flawless, year-long campaign and it will probably not be sufficient. Nothing they do will ever be sufficient. Individual politicians caucusing under the Democrats' ticket can be competitive, but not the Democrats. \n\nAlthough, honestly if you told me the US nationally is just sexist I would probably be convinced by that too.", 'created': '2024-11-06 13:43:48', 'submission_id': '1gks1jf'}
{'comment': 'If it was this simple it wouldn’t result in a red tsunami that gave republicans not only the executive branch but the full legislative as well.\xa0\n\nFear never gives people enthusiasm to go above and beyond the bare minimum. But fury and excitement do. Many more people voted for Trump who aren’t MAGA which means it wasn’t out of fear.', 'created': '2024-11-06 14:43:10', 'submission_id': '1gks1jf'}
{'comment': "Indeed. And the white nationalists get incensed when they're compared to Nazis when the go AGAINST that particular thing you want (we want, I'm also black).", 'created': '2024-11-06 19:50:07', 'submission_id': '1gks1jf'}
{'comment': 'Politicians cannot change the way people treat you. They can make sure the system doesn’t treat you differently but this has already been done many years ago. You have exactly the same rights as the white folks.\xa0\n\nAsk yourself the key question. For as long as you’ve been on the left, have you personally felt improvement in how you’ve been treated?', 'created': '2024-11-06 14:50:48', 'submission_id': '1gks1jf'}
{'comment': 'seriously, I am a data scientist, have an IQ over 132 -- yet the stereotype is I\'m complete trash and it\'s my fault that dems lost when there\'s a cascade message ad nauseum that men are what\'s wrong with America. Also cancel "The View" that show is cognitive cancer.', 'created': '2024-11-06 07:46:51', 'submission_id': '1gks1jf'}
{'comment': 'At least on Reddit, most of what I see from the left is ridiculing Republicans. \n\nEvery time I make the point, I get “oh, so now you’re defending Republicans??” *To be clear, I’m not arguing that Republicans are undeserving of criticism/ridicule.* I’m arguing it’s a *bad strategy*. I wonder if there are moderates who are looking for stability, sanity, maturity. Trump certainly didn’t offer that. I think we offered that more than he did. But all the childishness from our side socially doesn’t help.', 'created': '2024-11-06 08:13:39', 'submission_id': '1gks1jf'}
{'comment': 'You still dont get it - "the issue is with their grandparents" No, those grandparents built and fought for this country. The exact problem is you thinking that those foundational Americans are the issue.', 'created': '2024-11-06 18:41:23', 'submission_id': '1gks1jf'}
{'comment': "I am from Michigan and live in Florida. There's a reason Tim was chosen as the running mate. \n\nAnd if the coastal elite thing had anything to do with it, how is that not Trump/Musk?", 'created': '2024-11-06 18:04:50', 'submission_id': '1gks1jf'}
{'comment': "You are the one playing the blame game. \n\n\nElections aren't the meritocracy you want them to be.", 'created': '2024-11-06 18:13:25', 'submission_id': '1gks1jf'}
{'comment': 'The problem with liberals is exactly living their lives thinking about reality as a disney movie. But was not about playing dirty. Was about convincing people. When you only preach for other liberals, you are losing millions of people. Movements like feminism failed because we refuse to talk to men, because "they have the moral obligation". But with the current strategy what do we got? Majority of men becoming isolated, alienated and being captivated by far right discourse. Maybe we need to try other strategy, but maybe is too late now.', 'created': '2024-11-06 08:40:11', 'submission_id': '1gks1jf'}
{'comment': 'That was the dirty option. "Weird" was going low.', 'created': '2024-11-06 12:20:18', 'submission_id': '1gks1jf'}
{'comment': 'If we want to limit as much harm as possible, then playing dirty is the last thing we should do, because it gives them the last thing they need to retaliate and use force without consequence. Yes people have died because of him, but by upholding our morals and not becoming like them, we can save many more lives than if we were to stoop to their atrociously low level.', 'created': '2024-11-06 18:25:00', 'submission_id': '1gks1jf'}
{'comment': 'Yeah, I would agree with that assessment.', 'created': '2024-11-07 22:45:58', 'submission_id': '1gks1jf'}
{'comment': 'I guess things like gender, reassignment surgery for minors… Illegal immigrant prisoners…\nOpen borders, Defunding the police, normalizing people with penises in women’s locker rooms bathrooms, and on women’s sports teams.\xa0\n\nThings like this are getting pinned on Democrats and they are wildly unpopular with the majority of Americans', 'created': '2024-11-06 17:23:38', 'submission_id': '1gks1jf'}
{'comment': "I'll say it. All the trans stuff.\n\nKeep marginal stuff on the margins. It's totally counter productive.", 'created': '2024-11-06 19:27:06', 'submission_id': '1gks1jf'}
{'comment': 'Do you hear yourself? Fighting dirty just to hold your place wrongfully in office is circumventing democracy, "fuck the vote of the American people" democracy is not going anywhere, but fighting dirty would be the first rock thrown. This honestly sounds like what Trump tried by telling his supporters to rally at the white house,', 'created': '2024-11-06 07:37:27', 'submission_id': '1gks1jf'}
{'comment': 'I wish Michelle Obama was in consideration. Maybe would have had a chance with her.', 'created': '2024-11-06 08:05:32', 'submission_id': '1gks1jf'}
{'comment': "OK Now I've calmed down a bit, I will agree, it's not racism or homophobia. It's just indifference. \n\nIf it doesn't affect them, they just don't care. He can do whatever he wants as long as it doesn't affect them or it makes them a little better off.\n\nWhen it does start to impact their lives, that's when they will start to care. By then it will be too late.", 'created': '2024-11-06 21:20:39', 'submission_id': '1gks1jf'}
{'comment': "Glad you find this funny. We don't.", 'created': '2024-11-06 20:53:04', 'submission_id': '1gks1jf'}
{'comment': "Yeah but it was a bit hard for Harris to out Trump's elite arguments back on him when she was raking in all these Hollywood endorsements.", 'created': '2024-11-06 11:09:57', 'submission_id': '1gks1jf'}
{'comment': "Yes, actually, we did. It was revenge for an earlier SCOTUS ruling you couldn't lead prayer in school.", 'created': '2024-11-06 14:43:21', 'submission_id': '1gks1jf'}
{'comment': 'Pretty much. I see this as decades of failure at addressing major festering problems biting us in the ass.', 'created': '2024-11-06 17:01:17', 'submission_id': '1gks1jf'}
{'comment': 'Found the racist, y’all…', 'created': '2024-11-06 23:15:33', 'submission_id': '1gks1jf'}
{'comment': 'Yes there are plenty of things like Social Security, health care, inflation, corporate greed, domestic terrorism, transportation, tax evasion, education that could so benefit over "the border."\n\n>It directly impacts the economy, housing costs, safety, and more\n\nAside from giving you an erection every time it gets brought on Fox News please tell me how this impacts American lives significantly. \nSo you think there are so many illegal immigrants they\'re buying up all the houses and driving housing prices up? Safety... the demographics that voted for Trump are more likely to do violent crimes. Immigrants and especially illegal ones have some of the lowest crime rates because they don\'t want to be deported. Please tell me how illegals are ruining your life? \n\nAnd your little dog whistle of "cultures and values to preserve". Aka you\'re scared of all the non white people and racist.\n\nWhat about the border control policies that were every single thing Republicans have asked for that they refused to vote for because it would make Biden look good? Republicans only care about winning, not actually improving this country. Trump lied his ass off about his performance on the border. He lied about Mexico paying for the wall. The wall he built was a tiny fraction and the contracts went to friends of his campaign. They were built horribly. Portions of it now are already (4 years after his presidency) falling apart. But none of that was a grift by a shitty person at all. Or the never ending "migrant caravans" "news" when democrats are in office. But Trump said he "fixed the border" so yea everything was perfect and then Biden personally went down to Mexico and started carrying migrants through the desert.\n\n>Have you ever stopped and thought maybe you\'re the one who is brainwashed?\n\nYea that horrible lying liberal media you all complain about ruined me... except I don\'t watch cable news... nevermind that somehow the liberal media supposedly controls the narrative and is fake news but Fox News is literally the "most watched cable news" and "the highest rated" but yea they speak the truth (tm) and are totally the small underdog fighting for the American people. Nevermind the history of how Fox came to be, or how CNN is now owned by a republican billionaire, or that Fox in their legal arguments stated no one should believe Tucker Carlson for the extreme views he portrays.', 'created': '2024-11-06 18:57:48', 'submission_id': '1gks1jf'}
{'comment': "I agree with that sentiment. The elite thing is BS and Kamala couldn't have run a better campaign in the time she had. Its Drumpf 100%.", 'created': '2024-11-06 13:45:00', 'submission_id': '1gks1jf'}
{'comment': "I can't talk politics with you, when there are more important things on the menu right now\n\nIf I was to ask you, Tom Bombadil, who are you? How would you respond?", 'created': '2024-11-06 09:23:35', 'submission_id': '1gks1jf'}
{'comment': 'You mean what JD Vance said?', 'created': '2024-11-06 08:50:16', 'submission_id': '1gks1jf'}
{'comment': 'I’m just the messenger telling you why Trump is popular. I imagine you don’t have a problem with elites, but his supporters do.', 'created': '2024-11-06 09:06:03', 'submission_id': '1gks1jf'}
{'comment': 'not everyone has the same definition of "morals and ethics."\xa0 to a lot of people - maybe most of us - the definition is often no more complex than "whatever I want."\xa0 \xa0\n\n\nI try to say that without snobbery.\xa0 I\'ve had plenty of arguments in the past year with pro-democratic people who want what they want and are openly frustrated with inconveniently punctilious public figures standing in the way of whatever it is.\xa0 \xa0', 'created': '2024-11-06 10:29:45', 'submission_id': '1gks1jf'}
{'comment': 'That probably would not be effective. This is Trump’s singular skill. It is very hard to be better at it than him.', 'created': '2024-11-06 14:13:24', 'submission_id': '1gks1jf'}
{'comment': 'We can’t always rely on 2020’s record breaking turnout to get us wins. \n\nBut if we are MORE condescending then maybe that’ll work lmfao', 'created': '2024-11-07 03:02:34', 'submission_id': '1gks1jf'}
{'comment': "And that Biden beat Trump by 8 million votes whilst the establishment candidate Kamala lost to trump by 5 million. Even Hillary was more popular. Kamala got less than 1% in 2020 primaries. The DNC spat on the faces of the 80 million people who voted for Biden by pulling that Clooney, pelosi stunt and the American people gave an appropriate reply.\n\nAnd you're still quoting opinion polls. Will y'all never learn?", 'created': '2024-11-06 09:18:17', 'submission_id': '1gks1jf'}
{'comment': 'Rich party insiders and supporters calling the shots instead of regular voters through primaries?', 'created': '2024-11-06 14:49:12', 'submission_id': '1gks1jf'}
{'comment': None, 'created': '2024-11-06 09:06:00', 'submission_id': '1gks1jf'}
{'comment': 'Indeed', 'created': '2024-11-07 00:30:16', 'submission_id': '1gks1jf'}
{'comment': "Yeah, it can't be a propaganda network. ...my vision is something like AM sports talk radio stations where the hosts are genuinely hilarious and knowledgeable, but they're also all liberal slanted. And they would talk about completely non-political topics like 95% of the time.", 'created': '2024-11-06 17:45:51', 'submission_id': '1gks1jf'}
{'comment': "Then maybe it's time to start creating voters who would. Fox News has had 30 years to brainwash people so it's time to fight fire with fire.", 'created': '2024-11-06 17:15:42', 'submission_id': '1gks1jf'}
{'comment': 'Why? Biden was losing the polls and then Kamala was also losing.. what would you have done?', 'created': '2024-11-06 08:38:29', 'submission_id': '1gks1jf'}
{'comment': 'For layman those terms are one and the same. If anything, the people get more hurt if they see glorious economic numbers but no tangible benefits.', 'created': '2024-11-06 15:58:18', 'submission_id': '1gks1jf'}
{'comment': 'Yeah and the average person sees that as bad economy. Polling shows most voters were unhappy with the economy, believe it or not. \n\nWhether right or wrong, the average American was dissatisfied with the economy.', 'created': '2024-11-06 15:53:58', 'submission_id': '1gks1jf'}
{'comment': 'Inflation rates around the world right now\n\nAfrica: 20.3\n\nAsia and Pacific: 4.4\n\nAustralia and New Zealand: 3.2\n\nCaribbean: 6.9\n\nCentral America: 2.6\n\nCentral Asia and the Caucasus: 38.7\n\nEast Asia: 0.9\n\nEastern Europe: 6\n\nEurope: 3.5\n\nMiddle East: 9.2\n\nNorth Africa: 20.8\n\nNorth America: 3.1\n\nPacific Islands: 4.5\n\nSouth Asia: 6.3\n\nSoutheast Asia: 3.1\n\nWestern Europe: 2.4', 'created': '2024-11-06 08:32:47', 'submission_id': '1gks1jf'}
{'comment': 'There is a question: why the FED doesnt hike the interest rates one year before? Democrats knew about the problem, but FED aldo knew. The Biden administration and the FED really doesnt made the correct things between 2021-22.', 'created': '2024-11-06 08:22:32', 'submission_id': '1gks1jf'}
{'comment': "It's not simple, but it's highly effective and motivating. Fear and scapegoating is how we got Nazi fascistic fervor. It's why people vote for a bigot and a strongman authoritarian. It's how we got McCarthyism, the Red Scare, Satanic Panic, and internment camps for the Japanese. Fear has always been an extremely effective motivator.", 'created': '2024-11-06 19:07:58', 'submission_id': '1gks1jf'}
{'comment': 'No I agree. I have a Masters and conservatives look at me like im an idiot and criticize it. I work for a nonprofit affordable housing developer building housing for the homeless and conservatives questions me daily...', 'created': '2024-11-06 07:50:47', 'submission_id': '1gks1jf'}
{'comment': 'You said democrats did everything perfectly. We lost.', 'created': '2024-11-06 18:14:03', 'submission_id': '1gks1jf'}
{'comment': 'This is what Germans did when nazis walked people to gas chambers. Sorry I won’t sit by even though we’re not at that point yet. Assuming the best from them will do nothing.', 'created': '2024-11-06 18:57:49', 'submission_id': '1gks1jf'}
{'comment': "So more like pinning stuff on them versus their actual agenda. You're not a democrat. You're just a troll visiting the sub.", 'created': '2024-11-06 17:24:22', 'submission_id': '1gks1jf'}
{'comment': "So my questions stands. If those are the options - you're choosing to continue to lose? \n\nAnd for the record, im not saying right now lol We lost fair and square. Im talking about over the course of the next 2-4 years. They need to fight on the ground and ditch the bullshit.", 'created': '2024-11-06 07:42:32', 'submission_id': '1gks1jf'}
{'comment': 'Absolutely not. We would have been slaughtered', 'created': '2024-11-06 12:03:42', 'submission_id': '1gks1jf'}
{'comment': 'Eh I don’t know really. I just think a primary would have been great. I don’t know how would have worked.', 'created': '2024-11-06 08:35:55', 'submission_id': '1gks1jf'}
{'comment': 'Yup. I totally agree. I just want us to win and calling half the country racists is just going to screw us over even more.', 'created': '2024-11-06 21:21:28', 'submission_id': '1gks1jf'}
{'comment': 'Are you saying public schools should indoctrinate kids into a specific religion?', 'created': '2024-11-06 15:46:23', 'submission_id': '1gks1jf'}
{'comment': 'Jesus dude you are so lost it\'s scary. \n\n"And your little dog whistle of "cultures and values to preserve". Aka you\'re scared of all the non white people and racist."\n\nSo you clearly don\'t think we should preserve our culture and values? Why do you hate white people so much? \n\nYou live in a country that was founded by and for white people. If you hate white people so much why don\'t you go live in one of the majority non white countries in the world of which there are many. Why is erasing the culture of the people who founded and built this country so important to you? \n\nIf a non white country was being overwhelmed with immigrants from white countries and erasing their culture, values, and traditions would you still think it\'s a good thing? You are far more racist than I could ever be as I dont advocate for the erasure of non white countries and their cultures.', 'created': '2024-11-06 19:08:30', 'submission_id': '1gks1jf'}
{'comment': 'What’s an elite?', 'created': '2024-11-06 16:55:37', 'submission_id': '1gks1jf'}
{'comment': "That's not what morals are.\xa0Also, definitions are objective, not subjective.", 'created': '2024-11-06 15:02:35', 'submission_id': '1gks1jf'}
{'comment': 'What would be the right language?', 'created': '2024-11-06 15:13:14', 'submission_id': '1gks1jf'}
{'comment': "Nah it's not going to work. But it's actually not all about your ego is what I'm saying. More people didn't vote for trump, less Democrats voted *at all* \\- is what the objective, mathematical numbers show.\n\nBut I mean if you think your feelings are what did it - I expect that's very important to you.", 'created': '2024-11-07 04:17:36', 'submission_id': '1gks1jf'}
{'comment': 'This was my biggest issue when people mentioned HRC. SHE WAS FUCKING POPULAR. SHE LITERALLY WON THE POPULAR VOTE. \n\nLike, what in gods name is wrong with people?', 'created': '2024-11-06 09:28:39', 'submission_id': '1gks1jf'}
{'comment': 'It was a long shot attempt at salvaging a doomed effort. Obviously didn’t work. Harris was a Hail Mary where sticking with Biden would’ve essentially been giving up entirely.', 'created': '2024-11-06 16:48:58', 'submission_id': '1gks1jf'}
{'comment': 'My original theory is letting education fall from our priority over the last 60 years created generations of people with low critical thinking skills that have trouble differentiating a lie from truth. Maybe this is just the bed we made and now have to lie in it and it doesn’t really matter who/how/what the democrats do. Trump is probably the worst and oldest president in US history, he campaigned on lies and is going to win the popular vote. I don’t think it’s a democratic problem, I think it’s a full blown cult and it’s growing.', 'created': '2024-11-06 09:11:42', 'submission_id': '1gks1jf'}
{'comment': 'Me too, and I am from Texas. Happy belated!', 'created': '2024-11-07 00:48:38', 'submission_id': '1gks1jf'}
{'comment': "It's been tried by dude. It's been tried.", 'created': '2024-11-06 17:46:26', 'submission_id': '1gks1jf'}
{'comment': "That comment shows you're unaware of history. They repeatedly tried to create left wing versions of fox and talk radio.\n\nIt doesn't work. People who might vote left don't want to listen to propaganda. It's psychology of politics. You can't just magically create liberals. You have to breed them - higher birth rates in urban environments with good education", 'created': '2024-11-06 17:19:51', 'submission_id': '1gks1jf'}
{'comment': 'A primary would have been a guaranteed Democratic loss, as the primary contest would have given Trump all the ammunition to go after the eventual nominee.', 'created': '2024-11-06 13:19:43', 'submission_id': '1gks1jf'}
{'comment': "Tangible benefits like wages outpacing inflation for the last two years? You don't have to keep explaining that people are not intellectually curious to me. That's exactly the same point I was making", 'created': '2024-11-06 17:42:23', 'submission_id': '1gks1jf'}
{'comment': 'Yes, I understand that people are uneducated and lack critical thinking skills', 'created': '2024-11-06 15:54:44', 'submission_id': '1gks1jf'}
{'comment': 'The average person does not care about inflation *today* when the damage is already done.', 'created': '2024-11-06 08:35:13', 'submission_id': '1gks1jf'}
{'comment': "That's right... Which means the election was decided not on what Democrats did or did not do, but on something else entirely.\n\nWhat part of perfect can't fix stupid do you not understand??", 'created': '2024-11-06 18:19:06', 'submission_id': '1gks1jf'}
{'comment': "Maintaining our morals isn't assuming the best from them. But it is making sure they don't have a reason to use force yet. If they use force unnecessarily, people might see that they're evil and turn against them, but if we retaliate and attack first, then it will confirm all the bad, and currently untrue, things Republicans say about us. We need to let them make the first move, otherwise we lose.", 'created': '2024-11-06 19:11:42', 'submission_id': '1gks1jf'}
{'comment': 'Hey, I voted Democrat… But you’re right I’m probably not a Democrat, but I’m probably one of the least left persons that is gonna vote for Democrats so you might wanna learn my opinion.\xa0\n\nI don’t feel like I’m being a troll… I’m bringing up real issues that have been part of Democrats ideology for sometime now \xa0', 'created': '2024-11-06 17:26:46', 'submission_id': '1gks1jf'}
{'comment': "YES if you lose, you lose and the transfer of power be peaceful. It's not worth fighting dirty and holding massive power, creating a back door for corrupt politicians to enter in and corrupt that party, it needs to be balanced. People shouldn't even be democrat or republican like football teams, it should be based on the individual representing that party. January 6th was bad but long term fraud is scary.", 'created': '2024-11-06 07:49:42', 'submission_id': '1gks1jf'}
{'comment': "why are you acting like there's two choices lol. america has skeletons in a very deep closet that needs cleaning, fighting dirty is just circumventing that work. not doing that work is how we got here. it's why we're stuck here.", 'created': '2024-11-06 07:46:44', 'submission_id': '1gks1jf'}
{'comment': 'That’s what republicans have wanted for decades. Pretty sure able isn’t advocating for it.', 'created': '2024-11-06 19:08:02', 'submission_id': '1gks1jf'}
{'comment': 'Jesus. I keep wondering how this could happen to our country, then someone like you shows up, and I completely understand. Fuck you for existing.', 'created': '2024-11-06 20:22:54', 'submission_id': '1gks1jf'}
{'comment': 'There it is! Thanks for confirming your major concern is your racism. What culture are you so worried about protecting? I\'m white. My culture isn\'t threatened by any of this. I go to work, I go home, I go out and have a good time and restaurants and shopping and the park and hiking and traveling this country and the world. The fact that there are some people who exist different from me in no way negatively impacts my life or destroys my traditions. Did your pastor violate federal tax exempt law and tell you all those filthy immigrants are destroying this beautiful Christian nation? Or was it just Fox News?\n\n"Overwhelmed with immigrants" [citation needed]\nAre these immigrants in the room with you right now? Did they break into your house and rape you and steal your house? Aside from rhetoric in the media you consume what actual illegal immigrants have you encountered and what problems have they caused you? (Nevermind that you\'d probably claim all the legal Latinos you see are illegal.)\n\nI\'d love to protect some of the values of this country. Like our founders called out the disaster of a 2 party system and expected far more change in the government to help it adapt. They also founded this country explicitly as not religious. But certain groups have rewritten our collective history as a Christian nation and influence politics heavily and illegally with their bullshit. I\'d like to protect this country from Constitutional violations yea.', 'created': '2024-11-06 19:22:43', 'submission_id': '1gks1jf'}
{'comment': 'You’ve got a lot to learn', 'created': '2024-11-06 21:17:10', 'submission_id': '1gks1jf'}
{'comment': 'You are thinking there’s some easy answer that can be posted in a random Reddit comment. \n\nIt is difficult but my point is this is the work that needs to be done. Which means you have to be willing to engage in this work, instead of flippantly using this exercise as a way to just prove that these people are racists and not worth the effort.', 'created': '2024-11-06 16:45:01', 'submission_id': '1gks1jf'}
{'comment': 'Luckiest day of the year!', 'created': '2024-11-07 01:31:01', 'submission_id': '1gks1jf'}
{'comment': 'Fuck, this comment made me realize there’s truly nothing we can do', 'created': '2024-11-06 19:38:16', 'submission_id': '1gks1jf'}
{'comment': None, 'created': '2024-11-06 18:33:41', 'submission_id': '1gks1jf'}
{'comment': 'What? You could say this about any primary. That’s the POINT. You’re VETTING candidates publicly. I disagree with this 100%.', 'created': '2024-11-06 18:08:43', 'submission_id': '1gks1jf'}
{'comment': 'Bingo!', 'created': '2024-11-06 16:41:57', 'submission_id': '1gks1jf'}
{'comment': 'My point is inflation is up around the globe due to the pandemic fallout. \n\nTrump won’t change that. Trust me, the only thing Trump is going to do for 4 years is enrich himself.', 'created': '2024-11-06 08:56:47', 'submission_id': '1gks1jf'}
{'comment': 'The fact that if we were perfect we would have won. Google the definition of perfect. Christ.', 'created': '2024-11-06 18:20:46', 'submission_id': '1gks1jf'}
{'comment': "Then you'd know that stuff wasn't even true. I guess you aren't really following the issues then.", 'created': '2024-11-06 17:27:51', 'submission_id': '1gks1jf'}
{'comment': "It's hard to tell if he's saying it's justified revenge. Fair though", 'created': '2024-11-06 19:08:51', 'submission_id': '1gks1jf'}
{'comment': 'Just know that there are far more people like me in this country than people like you. Your only solution is to move to Africa or whatever 3rd world country you prefer. Then you can finally be free from white supremacy.\n\nI on the other hand will continue to be a rich white male living a beautiful life in this amazing country that my ancestors built and left for me.', 'created': '2024-11-06 20:38:57', 'submission_id': '1gks1jf'}
{'comment': "I get it, but I hate when people say democrats are being elitist, but can't actually describe what's so elitist about them. It feels like a buzz word and the real reason people don't vote for democrats has nothing to do with democrats claiming superiority. It's not like Trump doesn't claim superiority over democrats.", 'created': '2024-11-06 16:47:42', 'submission_id': '1gks1jf'}
{'comment': 'And the only angry white good ol boys are right wingers.', 'created': '2024-11-06 18:34:24', 'submission_id': '1gks1jf'}
{'comment': 'When an incumbent president has to go through a contested primary, it shows they are weak, pretty much guaranteeing a loss.', 'created': '2024-11-06 18:13:58', 'submission_id': '1gks1jf'}
{'comment': 'My point is the average person does not care, hence the defeat.', 'created': '2024-11-06 09:51:59', 'submission_id': '1gks1jf'}
{'comment': "That's not how elections work. Perfect doesn't guarantee success. Michael Jordan once scored 63 points in a game his team lost. \n\nLemne turn it around on ya: Trump did everything wrong...He was a manifestly awful, breathtakingly mendacious,mean-spirited, whiny, and petty, not to mention borderline psychotic, candidate, and he still won.\n\nTherefore, again, it wasn't what he did or did not do, that 'won' him the election... \n\nIt's a scary thought, but it's true, perfect isn't good enough and terrible isn't bad enough.", 'created': '2024-11-06 18:32:21', 'submission_id': '1gks1jf'}
{'comment': 'Which of the things that I mentioned has not been supported by Democrats', 'created': '2024-11-06 17:29:31', 'submission_id': '1gks1jf'}
{'comment': 'To me this is extremely obvious.\n\nThe Democratic Party has become one which puts “elites” in the center. Educated professionals and those who have good jobs are at the center of the party. \n\nOthers who didn’t benefit from this are left out. These people resent the “elites” because they aren’t beneficiaries of the current economy.\n\nSo Trump created a movement in which the people who were left out are now at the center. It is an identity issue. And they direct their ire at the elites.\n\nAnd now we think we can put some lipstick on a few phrases and think we can change that. It is t going to work. The exercise to bring these voters back into the fold is much more complex.', 'created': '2024-11-06 17:01:54', 'submission_id': '1gks1jf'}
{'comment': None, 'created': '2024-11-06 18:35:46', 'submission_id': '1gks1jf'}
{'comment': 'Guaranteeing a loss for the incumbent yet if someone unseats them through the primary then we get a stronger candidate..', 'created': '2024-11-06 18:15:31', 'submission_id': '1gks1jf'}
{'comment': "Democrats don't support gender reassignment surgery for minors, defund the police isn't even supported by Biden. People with penises in women's sports and locker rooms? Now you're just repeating far right talking points. Stop lying you're just a sealion. Go fuck yourself.", 'created': '2024-11-06 17:30:16', 'submission_id': '1gks1jf'}
{'comment': 'What does that mean put them at the center of the party? Like they put forth policies that specifically are for benefiting educated professionals? Or that they listen to experts in their field to guide policy? Or that they talk like educated profressionals?', 'created': '2024-11-06 17:05:48', 'submission_id': '1gks1jf'}
{'comment': "It can't be lead the direction you want it to. This is you just not understanding political psychology.\n\nPeople like you always want the left to exploit tactics of the right without understanding why those tactics are the tactics of the right. \n\nBECAUSE THEY'RE INTRINSICALLY TIED TO RIGHT WINGER POLITICAL IDEAS AND CANNOT BE SEPARATED for actual fucking human psychology reasons.\n\n\nYou want to see an angry liberal white man? I'm right here. I'm tired of your ignorant shit, it's really annoying and I'm tired of having to explain this over and over", 'created': '2024-11-06 18:42:03', 'submission_id': '1gks1jf'}
{'comment': 'How many times has that worked?', 'created': '2024-11-06 19:02:34', 'submission_id': '1gks1jf'}
{'comment': 'No I think he has a point. Although mainstream dems didn’t support it, some on the far left did (especially defund the police) and republicans were able to stick that to us. I’m not saying we as democrats do all of that but there needs to be a better way of distancing ourselves from those ideas so it’s not incorrectly assumed that we support them.', 'created': '2024-11-06 17:51:26', 'submission_id': '1gks1jf'}
{'comment': 'It means that the candidate paints a vision of the future of the country where their needs are in the center. It means that there is alignment between how the candidate sees the country and how they see the country. It is an approach that engenders trust and a sense of shared identity.', 'created': '2024-11-06 21:20:30', 'submission_id': '1gks1jf'}
{'comment': None, 'created': '2024-11-06 18:43:09', 'submission_id': '1gks1jf'}
{'comment': 'When have we been in this situation?', 'created': '2024-11-06 19:03:22', 'submission_id': '1gks1jf'}
{'comment': "You can't because no matter how far you run, you'll always be seen as supporting it. If you so much as appear supportive of trans people they'll say it.", 'created': '2024-11-06 17:52:32', 'submission_id': '1gks1jf'}
{'comment': 'I think I understand.', 'created': '2024-11-06 21:40:07', 'submission_id': '1gks1jf'}
{'comment': "Yes, your ignorant shit. You're in here blaming the left for not using tactics *that cannot use because they inherently will never work for the left*.", 'created': '2024-11-06 18:46:52', 'submission_id': '1gks1jf'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 07:24:21', 'submission_id': '1gks0yr'}
{'comment': 'That is the darkest humor, thank you, I needed that.', 'created': '2024-11-06 13:31:46', 'submission_id': '1gks0yr'}
{'comment': 'Grand Moff Tarkin is like trump lol. Or Putin. Or emporer Palpatine is trump.\n\nhttps://preview.redd.it/11a3iaipt9zd1.jpeg?width=400&format=pjpg&auto=webp&s=d90a7fc66854bf7b5aac24078f87f0fbcfe0b114', 'created': '2024-11-06 13:00:03', 'submission_id': '1gks0yr'}
{'comment': '“This is how liberty dies, with thunderous applause.”', 'created': '2024-11-07 00:21:02', 'submission_id': '1gks0yr'}
{'comment': 'Darth Vader is a badass mother fucker, I like him.', 'created': '2024-11-06 08:15:36', 'submission_id': '1gks0yr'}
{'comment': "Technically Darth Vader didn't blow up any planets, Grand Moff Tarkin did.", 'created': '2024-11-06 07:45:51', 'submission_id': '1gks0yr'}
{'comment': "She ain't a princess tho", 'created': '2024-11-06 07:30:07', 'submission_id': '1gks0yr'}
{'comment': 'What planet did he blow up', 'created': '2024-11-06 07:33:15', 'submission_id': '1gks0yr'}
{'comment': 'https://preview.redd.it/710t33lhbdzd1.jpeg?width=1179&format=pjpg&auto=webp&s=19eca260568fa01197ae990e40a0c66bf0339834', 'created': '2024-11-07 00:44:57', 'submission_id': '1gks0yr'}
{'comment': 'Alderaan', 'created': '2024-11-06 14:06:56', 'submission_id': '1gks0yr'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 07:16:59', 'submission_id': '1gkrwyx'}
{'comment': 'Doesn’t matter when they’re going to have a national abortion ban soon. I can’t believe this idiot is going to be president again', 'created': '2024-11-06 07:20:49', 'submission_id': '1gkrwyx'}
{'comment': "Yeah, just not for Florida.\n\n\nRegardless, the national abortion ban is incoming shortly, so none of this even matters. (Unless Dems pulls of a miracle pass with the House, but atm it's not looking good).", 'created': '2024-11-06 09:31:51', 'submission_id': '1gkrwyx'}
{'comment': "Unfortunately that may have played a part in Trump's victory", 'created': '2024-11-06 07:18:16', 'submission_id': '1gkrwyx'}
{'comment': "Republicans DO rig the game. \n\nIt takes 60% of voters to win on abortion and marijuana legalization? Wouldn't democracy be nice someday.", 'created': '2024-11-07 01:19:40', 'submission_id': '1gkrwyx'}
{'comment': "I want whatever drugs you're doing this evening there bongo", 'created': '2024-11-06 07:19:03', 'submission_id': '1gkrwyx'}
{'comment': 'They literally aren’t.', 'created': '2024-11-06 07:23:32', 'submission_id': '1gkrwyx'}
{'comment': "This dude doesn't even understand the legal precedents. This is whats wrong with the party. Even if Harris wins you cannot overturn a ruling (overturn of Roe) within the last 2 years. Each state has its own legislation that the majority in the state can vote on. You can have abortion if you want. I voted trump and voted abortion -- power to the states. People don't get that when the majority becomes the minority and if the federal government has power, this is what leads to the very fascism they abhorrently hate.", 'created': '2024-11-06 07:51:27', 'submission_id': '1gkrwyx'}
{'comment': 'My point exactly. Women’s rights were never nor were they going to be taken away, they were just made an inconvenience to some. If you need a fucking abortion, drive to a state who offers it. Mainstream propaganda is so bad.', 'created': '2024-11-06 07:58:33', 'submission_id': '1gkrwyx'}
{'comment': "> If you need a fucking abortion, drive to a state who offers it\n\nBecause that's so easy for anyone to just do", 'created': '2024-11-06 08:12:18', 'submission_id': '1gkrwyx'}
{'comment': "It's painful to see POC vote for red as a POC myself. Trump does not have our best interests in mind", 'created': '2024-11-06 07:34:31', 'submission_id': '1gkrv8b'}
{'comment': None, 'created': '2024-11-06 07:43:29', 'submission_id': '1gkrv8b'}
{'comment': 'If it’s any consolation you don’t need to worry about a Russian invasion any time soon. They’re not capable of invading their next door neighbor.', 'created': '2024-11-06 09:38:23', 'submission_id': '1gkrv8b'}
{'comment': 'Our media is a large part of the problem. This was basically a coup driven by media and the super rich.', 'created': '2024-11-06 17:48:08', 'submission_id': '1gkrv8b'}
{'comment': "As a Democrat, if Europe pulled their own weight in the defense sector, they wouldn't have to worry about a rogue nation like Russia invading them. I do unfortunately think a Russian invasion of the EU was going to happen regardless of the election result.", 'created': '2024-11-06 07:40:22', 'submission_id': '1gkrv8b'}
{'comment': 'The agnst & fear is palpable!! He will be marching thru Europe, aided by DT.', 'created': '2024-11-06 17:04:47', 'submission_id': '1gkrv8b'}
{'comment': 'Russia isnt going to do shit calm down', 'created': '2024-11-06 07:20:04', 'submission_id': '1gkrv8b'}
{'comment': 'Obama: Russia invaded Crimea\nTrump: Russia does nothing\nBiden: Russia full on invasion of Ukraine\n\nBut yes, it’s Trump that will cause this', 'created': '2024-11-06 07:26:06', 'submission_id': '1gkrv8b'}
{'comment': "Stop fear mongering, Russia doesn't give a damn about your little European state, they're busy stopping Ukraine from murdering ethnic Russians in the border regions. Cope about it.", 'created': '2024-11-06 07:40:06', 'submission_id': '1gkrv8b'}
{'comment': 'Stop overreacting bro, 4 years of trump is not a dictatorship, it’ll eventually pass for ya’ll, and Russia isn’t stupid enough to attempt a whole european invasion, we’re not in the 20th century no more, just calm down bro', 'created': '2024-11-06 07:57:16', 'submission_id': '1gkrv8b'}
{'comment': 'It’s only a dictatorship when my candidate loses </3', 'created': '2024-11-06 07:24:30', 'submission_id': '1gkrv8b'}
{'comment': 'You consume so much propaganda you don’t even know the truth anymore. Putin is scared of trump. With trump In office Putin will sit like a little baby.', 'created': '2024-11-06 07:20:15', 'submission_id': '1gkrv8b'}
{'comment': "If you look at history it's always been horrible. We've all just been deluding ourselves thinking things could be better.", 'created': '2024-11-06 08:38:02', 'submission_id': '1gkrv8b'}
{'comment': 'The Russian invader will be in the White House.', 'created': '2024-11-06 12:51:09', 'submission_id': '1gkrv8b'}
{'comment': 'Do you live in narnia?', 'created': '2024-11-06 08:04:10', 'submission_id': '1gkrv8b'}
{'comment': 'For real. If they touch a NATO state (which is most of Europe) they declare war on about 30 countries. Never happening', 'created': '2024-11-06 07:24:29', 'submission_id': '1gkrv8b'}
{'comment': "Why don't you go fight for Daddy Putin on the front lines, then? I don't see you being man enough to do so.", 'created': '2024-11-06 17:06:08', 'submission_id': '1gkrv8b'}
{'comment': 'Nope but 4 years of Trump is all it took to propel the anti-science/vaccine movement and in conjunction with Fox News bullshit and fake news to turn my parents into flat earthers (previously an engineer and high school teacher). It is not ok for him to be back in office.', 'created': '2024-11-06 08:11:51', 'submission_id': '1gkrv8b'}
{'comment': 'you realise that Vladimir Putin is an ex trained kgb agent, trained for combat, fluent in multiple languages and a lunatic with no regard for (some) human life right?\n\ntrump on the other hand fucks prostitutes because he got rich off daddy and looks like a character that would shit his pants in an Austin powers movie while talking funny. \n\nputin does not have a single ounce of respect for trump in any part of his body', 'created': '2024-11-06 07:26:49', 'submission_id': '1gkrv8b'}
{'comment': 'You assume Trump will not pull us out of NATO as threatened.', 'created': '2024-11-06 10:00:15', 'submission_id': '1gkrv8b'}
{'comment': 'Dude, Russia has its own allies...', 'created': '2024-11-06 12:52:21', 'submission_id': '1gkrv8b'}
{'comment': 'Damn, your engineer father is a flat-earther? How?', 'created': '2024-11-06 10:00:57', 'submission_id': '1gkrv8b'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 07:10:16', 'submission_id': '1gkrt6u'}
{'comment': 'Robert was supposed to be removed from the ballot. I can’t believe people wasted their votes on third-party candidates.', 'created': '2024-11-06 07:14:17', 'submission_id': '1gkrt6u'}
{'comment': 'I am so sorry my young friend that this country is scary right now. Right now, peace to you. \n\nTake a breath, take a walk tomorrow rain or shine. \n\nHonestly, regroup and then start making any critical assessments later - tonight is not the night. \n Source: a scared parent with kids your age who believes you are our future.', 'created': '2024-11-06 07:14:03', 'submission_id': '1gkrt6u'}
{'comment': 'Resist. Persist. Vote.', 'created': '2024-11-06 07:12:41', 'submission_id': '1gkrt6u'}
{'comment': 'The long course of history bends toward justice. We are living in volatile, historic times. It is easy to lose hope because we are living in the day-to-day struggle. I had friends die of COVID when Trump was president. I don’t speak to a family member because of the racist jokes they have said about immigrants. We have to speak out and resist in the ways we can. It is exhausting.\n\nBut there is progress even now. Think back to 2004 and where we were on abortion and LGBTQ rights. What about women in leadership or religious representation? The country *is* more inclusive. Some people may not like it, and indeed, I think what we’re seeing is the aftershocks of the Obama days. We nominated a black, Asian woman married to a divorced Jewish guy. Do you think that was possible in the 90s? Or take a longer view and think about how Kamala herself was part of a wave of kids who desegregated her school district? That wasn’t so long ago.\n\nKamala got asked recently why Dems sometimes offer ideas and legislature that they know won’t get passed. She said something like that the battles aren’t won or lost in a single vote or with a single attempt. A movement takes time, but it doesn’t mean that it’s not worth picking ourselves up and fighting again. \n\nWe are on the right side of history. Kamala is on the right side of history.', 'created': '2024-11-06 07:37:29', 'submission_id': '1gkrt6u'}
{'comment': 'Finish your semester. Keep your ears open. I don’t believe for a second trump will be able to implement project 2025. If it truly looks bad start researching and move out.', 'created': '2024-11-06 07:15:30', 'submission_id': '1gkrt6u'}
{'comment': 'Stay and fight to live tomorrow! We will not give up on our country!', 'created': '2024-11-06 07:16:14', 'submission_id': '1gkrt6u'}
{'comment': 'Breathe', 'created': '2024-11-06 07:47:44', 'submission_id': '1gkrt6u'}
{'comment': 'It’ll be 4 years of dealing with him and then we will vote him out again. He will be 82 and even more crazy by then. We will survive until then.\n\nIn 2 years we can hopefully take the senate back.', 'created': '2024-11-06 07:17:36', 'submission_id': '1gkrt6u'}
{'comment': 'Flee the country. Before he’s sworn in', 'created': '2024-11-06 07:15:28', 'submission_id': '1gkrt6u'}
{'comment': 'The country will still be here two years from now and four years from now; take a breath 👍', 'created': '2024-11-06 07:13:15', 'submission_id': '1gkrt6u'}
{'comment': '[removed]', 'created': '2024-11-06 07:22:42', 'submission_id': '1gkrt6u'}
{'comment': "Nothing's going to happen to you. You'll be fine.", 'created': '2024-11-06 07:33:26', 'submission_id': '1gkrt6u'}
{'comment': 'Be grumpy about the results, but ultimately accept them.', 'created': '2024-11-06 07:13:05', 'submission_id': '1gkrt6u'}
{'comment': "I'm sorry that recent media has you so clearly anxious. Things are going to be ok and you're going to be safe. Just get some rest, take it day by day with your loved ones. Things aren't going to change as much or as quickly as you fear.", 'created': '2024-11-06 07:13:08', 'submission_id': '1gkrt6u'}
{'comment': "Sorry you're upset, I do think you'll be fine. As for your partner, if they're in this country legally... I don't see an issue there either.", 'created': '2024-11-06 07:15:43', 'submission_id': '1gkrt6u'}
{'comment': None, 'created': '2024-11-06 07:15:02', 'submission_id': '1gkrt6u'}
{'comment': 'Nothing.', 'created': '2024-11-06 07:22:04', 'submission_id': '1gkrt6u'}
{'comment': 'you’re not going to die. Just go to bed wake up tomorrow and live your life, some of the overreactions here are hilarious', 'created': '2024-11-06 07:12:23', 'submission_id': '1gkrt6u'}
{'comment': 'Go to work tomorrow just like if Harris had won\n\nIt’s bad but it’s not change your life bad. They will pass some stupid laws and make life worse but it’s not the end of the world\n\nIt is what it is', 'created': '2024-11-06 07:35:52', 'submission_id': '1gkrt6u'}
{'comment': "Live your life normally? You think trump will actually force you to stop being queer? Just stop worrying about it, you're fine", 'created': '2024-11-06 07:12:52', 'submission_id': '1gkrt6u'}
{'comment': '*when', 'created': '2024-11-06 07:11:03', 'submission_id': '1gkrt6u'}
{'comment': 'Seriously, if you’re at all serious about controlling your country’s politics, vote for someone who actually stands a chance at winning, don’t try to make a point by voting for 3rd party candidates. Talking about Stein voters.', 'created': '2024-11-06 07:25:10', 'submission_id': '1gkrt6u'}
{'comment': 'Vote for whatever shit candidate the democrats choose for you next time, and you’ll like it. We need a new party.', 'created': '2024-11-06 07:18:52', 'submission_id': '1gkrt6u'}
{'comment': "Vote for what, it makes no change, I ain't wasting my time anymore, vote and then your vote does not count anyways with this electoral college.", 'created': '2024-11-06 10:17:38', 'submission_id': '1gkrt6u'}
{'comment': "It's hard to see the forest for the trees when one is mired within the dark undergrowth. \n\nI echo the sentiment that people should keep their wits about them, but even a non-zero chance the forest will be destroyed is sufficiently unsettling.\n\nSmall groups, local communities, and the like have generally trended to being more progressive and inclusive, but those fabrics of life simply aren't enough to patchwork out the national collective consciousness. It was already threadbare before and I shudder at the thought of it now.\n\nIn the grand, long-term view of things, it'll be at best tolerable, but it won't be good, and for some slices of the population, it'll be downright terrifying. Sadly there's no way round to make that sound better.", 'created': '2024-11-06 09:04:36', 'submission_id': '1gkrt6u'}
{'comment': 'Congress belongs to the GOP. The entirety of those running our government are going to be fascists. Project 2025 is coming.', 'created': '2024-11-06 07:23:54', 'submission_id': '1gkrt6u'}
{'comment': "Who says you'll get to vote?", 'created': '2024-11-06 07:24:38', 'submission_id': '1gkrt6u'}
{'comment': 'The next 4 years are largely about grooming JD Vance to the position of the next president, Trump can’t serve more than one term. Thought you hated Make America Great Again? Just wait for AdVANCE America lmao', 'created': '2024-11-06 07:22:03', 'submission_id': '1gkrt6u'}
{'comment': '>vote him out again\n\nSo how much do you understand about the 22nd Amendment?', 'created': '2024-11-06 07:22:52', 'submission_id': '1gkrt6u'}
{'comment': 'he can’t run for President again after this', 'created': '2024-11-06 07:23:38', 'submission_id': '1gkrt6u'}
{'comment': 'He said he wanted to run for more than four years.', 'created': '2024-11-06 07:32:41', 'submission_id': '1gkrt6u'}
{'comment': 'Is it? I’m going to be a teacher, a queer one at that, and I will have to spend every day of my career wondering if I’m going to be shot and killed. Or watch someone I care about. How does that make this the best country?', 'created': '2024-11-06 07:19:24', 'submission_id': '1gkrt6u'}
{'comment': "Not when we're all priced out of everything and have shit for medical benefits. It's coming.", 'created': '2024-11-06 07:25:36', 'submission_id': '1gkrt6u'}
{'comment': 'They’ll get rid of the 19th Amendment, I believe that to my soul as a woman.', 'created': '2024-11-06 16:08:54', 'submission_id': '1gkrt6u'}
{'comment': 'You do realize he said he wanted to run for more than four years, and they could easily make that possible', 'created': '2024-11-06 07:33:22', 'submission_id': '1gkrt6u'}
{'comment': 'Next election will be a Trump v Obama finale', 'created': '2024-11-06 07:49:37', 'submission_id': '1gkrt6u'}
{'comment': 'He says a lot of nonsense during his campaigns and then spends all of his time in office golfing.', 'created': '2024-11-06 07:53:03', 'submission_id': '1gkrt6u'}
{'comment': 'The subreddit is overrun with Republicans doing what they do best: ignoring problems.', 'created': '2024-11-06 07:21:12', 'submission_id': '1gkrt6u'}
{'comment': None, 'created': '2024-11-06 13:57:23', 'submission_id': '1gkrt6u'}
{'comment': 'No kidding. I hate the idea that I might not be able to get married and settle down with a wife and adopted kids. That’s all I want.\n\nAnd to not get shot at the job I’ve been working toward for 5 years. Or be afraid to go into work every day', 'created': '2024-11-06 07:22:11', 'submission_id': '1gkrt6u'}
{'comment': 'Rest in peace everyone', 'created': '2024-11-06 13:57:47', 'submission_id': '1gkrt6u'}
{'comment': "This is more like 2016 than 2020 and all of the ramifications of another Trump term won't be realized for years. The Vice President has been saying we're not going back but unfortunately that's exactly where we're going. I can only hope that he's not able to enact all of the terrible policies he's been spewing...", 'created': '2024-11-06 07:15:54', 'submission_id': '1gkronz'}
{'comment': "At this rate the Republicans don't need pennsylvania to win", 'created': '2024-11-06 07:11:39', 'submission_id': '1gkronz'}
{'comment': 'this ain’t the covid era buddy', 'created': '2024-11-06 07:04:17', 'submission_id': '1gkronz'}
{'comment': 'They’ve been counting mail ins with normal votes. She’s lost. The needle is at 95%+', 'created': '2024-11-06 07:14:39', 'submission_id': '1gkronz'}
{'comment': 'PA will take days to count', 'created': '2024-11-06 07:11:01', 'submission_id': '1gkronz'}
{'comment': 'Bud she’s not even leading any of these other states she needs lol', 'created': '2024-11-06 07:06:30', 'submission_id': '1gkronz'}
{'comment': None, 'created': '2024-11-06 07:16:22', 'submission_id': '1gkronz'}
{'comment': 'Mail in is largely already counted.', 'created': '2024-11-06 07:07:29', 'submission_id': '1gkronz'}
{'comment': 'Biden was 8 point behind Trump this summer had he stayed in the race, we would have LOST SO MUCH MORE, we should thank him and her. right now in states Trump won the Democratic in the senate held on to their seats, as of today the house is still in play, and if it goes it will be by 5-8 seats. Trump should have won in 2020 and today we would be celebrating a Democrat Victory similar to 2008 ; Inflation was a forgone conclusion in the spring of 2020, high prices were necessary to get us out of COVID, We lost , but this is a WAR, and today was merely one battle and a battle where we live to fight another day REMEBER THAT!', 'created': '2024-11-07 00:50:20', 'submission_id': '1gkronz'}
{'comment': 'It’s over', 'created': '2024-11-06 07:55:29', 'submission_id': '1gkronz'}
{'comment': None, 'created': '2024-11-06 07:13:38', 'submission_id': '1gkronz'}
{'comment': "Are you denying the election results? That's a threat to democracy!", 'created': '2024-11-06 07:41:16', 'submission_id': '1gkronz'}
{'comment': 'Plenty of people still vote by mail.', 'created': '2024-11-06 07:07:18', 'submission_id': '1gkronz'}
{'comment': "78% or so in Philly and she's ahead in Philly by 484,000 to about 100,000.", 'created': '2024-11-06 07:27:12', 'submission_id': '1gkronz'}
{'comment': 'Too late', 'created': '2024-11-06 09:32:53', 'submission_id': '1gkronz'}
{'comment': "Turnout was down vs. 2020 everywhere. I'll dig into tomorrow but I think that was the difference. Dems needed more people to show up.", 'created': '2024-11-06 08:11:27', 'submission_id': '1gkronz'}
{'comment': 'This is pretty delusional. In an election against an incumbent who had lost a great deal of appeal to his base and who had Covid staining his tenure, he only managed to win in a tortuous drawn out affair. Now that he was the incumbent with pretty low approval ratings, his own stains on his tenure, and an inability to perform during the debate, you think he was the better option than Harris? Honestly, she might have even been better off this election if she had never been his VP.', 'created': '2024-11-06 07:35:09', 'submission_id': '1gkronz'}
{'comment': 'I wanted Jamie Raskin to take Bidens place he would have won easily a lot of people do not want another black person as president and they are still not ready for a women as president two big negatives for Harris. DNC is 105% of the hook the the 2nd loss in 3 presidential elections. If the DNC picked a better candidate this person would be Trump 10 out of 10 times. I want DNC to allow the voters to pick their candidates from now on not the top 4 to 6 people that run the DNC.', 'created': '2024-11-06 07:28:30', 'submission_id': '1gkronz'}
{'comment': "Except they're from both sides now. Trump told Republicans not to mail in and vote early in 2020. He did the opposite this year. We can't count on 600,000 blue votes in those late mail-ins anymore.", 'created': '2024-11-06 07:48:09', 'submission_id': '1gkronz'}
{'comment': 'Nah that’s over with. This ain’t Covid no more.', 'created': '2024-11-06 07:10:20', 'submission_id': '1gkronz'}
{'comment': 'What are you saying? There are 400k votes left, trump is up 200k, she would need more than 300k of those 400k which is not going to happen.', 'created': '2024-11-06 07:37:03', 'submission_id': '1gkronz'}
{'comment': 'It is becoming way too hard to get Democrats to the polls.', 'created': '2024-11-06 08:57:01', 'submission_id': '1gkronz'}
{'comment': "He's not up by 200,000 in Philly my friend. He was up over 600,000 in PA in 2020 before Philly count came in and he lost PA btw. No lead is safe here.", 'created': '2024-11-06 07:45:10', 'submission_id': '1gkronz'}
{'comment': 'Fox News also already called it for him', 'created': '2024-11-06 07:50:01', 'submission_id': '1gkronz'}
{'comment': 'How stupid can you be? He is up 3,368,595 to Kamala’s 3,175,583 with 383k votes left to count. Just give it up he has one she has lost', 'created': '2024-11-06 07:49:17', 'submission_id': '1gkronz'}
{'comment': 'Fox News would have called it 3 days ago if they could.', 'created': '2024-11-06 07:56:25', 'submission_id': '1gkronz'}
{'comment': 'Man you’re just breathing delusion, she lost unsurprisingly, no point arguing with you but enjoy trump for the next 4 years', 'created': '2024-11-06 08:20:17', 'submission_id': '1gkronz'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 07:01:10', 'submission_id': '1gkro7a'}
{'comment': 'This is so much worse than 2016.\xa0', 'created': '2024-11-06 07:20:19', 'submission_id': '1gkro7a'}
{'comment': 'Turnout seems lower than 2020 overall. Never good for Dems. I’ll have to look more closely tomorrow.', 'created': '2024-11-06 07:33:58', 'submission_id': '1gkro7a'}
{'comment': "What I don't understand is why didn't we cheat this time? I mean, if it was easy to cheat in 2020, surely we would have been even better at it now. Trump even said there was some massive cheating going on in PA. \n\nWhat gives?", 'created': '2024-11-06 08:01:52', 'submission_id': '1gkro7a'}
{'comment': "No, we don't. We were shocked last time. This time we're disgusted and angry, but not surprised at all because we know you.", 'created': '2024-11-06 16:00:21', 'submission_id': '1gkro7a'}
{'comment': 'All those celebrity endorsements, all the money, door knocking. All of it for nothing.', 'created': '2024-11-06 10:58:09', 'submission_id': '1gkro7a'}
{'comment': 'It’s worse. So much worse.', 'created': '2024-11-07 01:53:15', 'submission_id': '1gkro7a'}
{'comment': "This is the campaigns fault, they shifted to the right each and everyday. This is no one's but the democrats fault.", 'created': '2024-11-06 07:02:41', 'submission_id': '1gkro7a'}
{'comment': 'Agreed. We didn’t really know what we were getting in 2016. We do today and still did it. And Vance is way more terrifying than Pence.', 'created': '2024-11-06 15:27:12', 'submission_id': '1gkro7a'}
{'comment': 'Cue maury meme.', 'created': '2024-11-06 10:57:02', 'submission_id': '1gkro7a'}
{'comment': 'Hate "Trumps" all.', 'created': '2024-11-06 19:51:28', 'submission_id': '1gkro7a'}
{'comment': 'They had to if they wanted to peel RINO voters.', 'created': '2024-11-06 07:25:31', 'submission_id': '1gkro7a'}
{'comment': 'The Democrat party has proven themselves to be a right leaning party.', 'created': '2024-11-06 07:12:14', 'submission_id': '1gkro7a'}
{'comment': 'that never works out.', 'created': '2024-11-06 09:02:30', 'submission_id': '1gkro7a'}
{'comment': 'Those people were never going to vote for a black woman.', 'created': '2024-11-06 19:52:54', 'submission_id': '1gkro7a'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 06:54:11', 'submission_id': '1gkrkaj'}
{'comment': 'Kamala and Biden dropped the ball big time not bringing him along.', 'created': '2024-11-06 07:01:46', 'submission_id': '1gkrkaj'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 06:52:15', 'submission_id': '1gkrj8g'}
{'comment': 'And Project 2025, here we come. America voted for this.', 'created': '2024-11-06 07:42:39', 'submission_id': '1gkrj8g'}
{'comment': '', 'created': '2024-11-06 06:58:31', 'submission_id': '1gkrj8g'}
{'comment': None, 'created': '2024-11-06 06:59:32', 'submission_id': '1gkrj8g'}
{'comment': 'Actually people didn’t vote for a candidate they never got to pick. Kamala was inserted. Don’t have short memories. Nobody like Kamala just back in June 2024. How this is a shock is what’s shocking.', 'created': '2024-11-06 07:45:02', 'submission_id': '1gkrj8g'}
{'comment': 'Ahahahaha my dog was doing exactly the same.\nI suppose next time she poops near a trump sign I will have to leave the poop there as a reminder.', 'created': '2024-11-06 09:44:25', 'submission_id': '1gkrj8g'}
{'comment': 'i voted for womens right to autonomy, equality with better higher paying jobs, environental change, cutting costs etc and stopping the hatred racism and bigotry\n\ni want people including the poor to rise and raise there standard of living\n\nbut people think a person that lies and steals only for himself cares about the poor people and voted for that\n\nall i can do is shrug my shoulders i did what i could america as a country is going to be very depressing for a loong time \n\nyou cant fight the indoctrinated maga supporters who are openly racist and dont care for a civil discussion anymore\n\nmy family has gone down that rabbit hole...\nill never get them out of no matter what\n\nthey spew hatred and racism blaming everyone else sad to see', 'created': '2024-11-07 00:23:05', 'submission_id': '1gkrj8g'}
{'comment': 'Doctors confirmed >20 years ago that playing tackle football causes brain damage and then football just became even more popular\n\nPolitics feels like that rn', 'created': '2024-11-11 17:28:17', 'submission_id': '1gkrj8g'}
{'comment': 'It’s the same people who voted for him last time (fewer actually at last time). The problem is that the people who voted for Biden didn’t show up to vote for Harris. Successful voter suppression probably played some kind of roll as well.', 'created': '2024-11-06 17:23:23', 'submission_id': '1gkrj8g'}
{'comment': "Maybe if you didn't stay on Reddit all day you'd realize that a lot of people actually sorta like Trump and you shouldn't have treated this like he was destined to lose.", 'created': '2024-11-06 07:07:41', 'submission_id': '1gkrj8g'}
{'comment': '[removed]', 'created': '2024-11-06 06:54:17', 'submission_id': '1gkrj8g'}
{'comment': "The Middle East became a powder keg under the Biden/Harris administration same with the Russia/Ukraine war. I mean it's unfair and a lie to continue saying that Trump will be this big war-mongering dictator when clearly we saw how no new wars started under his administration. I don't care how much you hate him but what I said is true.", 'created': '2024-11-06 07:01:59', 'submission_id': '1gkrj8g'}
{'comment': 'Palpatine= Trump.', 'created': '2024-11-06 14:26:40', 'submission_id': '1gkrj8g'}
{'comment': 'I was so mad that Biden said that.', 'created': '2024-11-06 07:18:34', 'submission_id': '1gkrj8g'}
{'comment': 'You’re a silly person.', 'created': '2024-11-06 06:54:58', 'submission_id': '1gkrj8g'}
{'comment': 'https://preview.redd.it/uewoqs2p08zd1.jpeg?width=1284&format=pjpg&auto=webp&s=0544fd72719e0169ec2ebceafe5272f181ba5768', 'created': '2024-11-06 06:55:33', 'submission_id': '1gkrj8g'}
{'comment': '[removed]', 'created': '2024-11-06 06:55:09', 'submission_id': '1gkrj8g'}
{'comment': "We'll see what happens when he gives Ukraine to Putin, and things escalate between Russia and Europe.\xa0 Trump will break NATO.\xa0 This isn't going to be a peaceful next couple years, but if you're a good maga drone maybe you'll manage to stay standing for awhile, at least till the need to suffer for them in some way.\xa0", 'created': '2024-11-06 07:07:07', 'submission_id': '1gkrj8g'}
{'comment': "Election's over, you can turn off the braindead propaganda unless you really are that stupid.", 'created': '2024-11-06 07:05:38', 'submission_id': '1gkrj8g'}
{'comment': 'I voted for Trump purely on his track record with international diplomacy. Goes to show democrats don’t know anything besides anti Trump rhetoric and no other identity', 'created': '2024-11-06 07:03:56', 'submission_id': '1gkrj8g'}
{'comment': None, 'created': '2024-11-06 07:39:13', 'submission_id': '1gkrj8g'}
{'comment': 'Well, I guess over half of America is silly then', 'created': '2024-11-06 06:58:24', 'submission_id': '1gkrj8g'}
{'comment': '♥️', 'created': '2024-11-06 06:55:25', 'submission_id': '1gkrj8g'}
{'comment': '[removed]', 'created': '2024-11-06 06:57:19', 'submission_id': '1gkrj8g'}
{'comment': 'I’m going to sit out politics. I’m not going to keep fighting for groups that don’t vote when it counts.', 'created': '2024-11-06 07:19:32', 'submission_id': '1gkrj8g'}
{'comment': 'I have quite a few Trump people in my life that I care for a lot. So it made me mad, also didn’t help anything', 'created': '2024-11-06 08:09:41', 'submission_id': '1gkrj8g'}
{'comment': 'Silly’s the wrong word. Uneducated. But yes, some people are just pure silly.', 'created': '2024-11-06 06:59:30', 'submission_id': '1gkrj8g'}
{'comment': 'https://preview.redd.it/5zxzx9bv18zd1.jpeg?width=1284&format=pjpg&auto=webp&s=7d1ca373cb07768323f74d7d4669888774d35a8f', 'created': '2024-11-06 07:02:08', 'submission_id': '1gkrj8g'}
{'comment': "This is absolutely where I'm at, as well. I'm going to continue to work towards leaving the US and otherwise not be involved. I can't anymore. I have fought too much and it's done nothing against people who want to destroy my rights.", 'created': '2024-11-06 07:22:25', 'submission_id': '1gkrj8g'}
{'comment': 'I mean leave the US and go where? If it truly goes as bad as people think and NATO breaks, Europe is next after Ukraine. Middle East would be out of the question for liberal minded folks, China, Japan and SK are homogenous societies with a massive cultural difference. India is overpopulated and about 40-50 years away where all the cultural issues get sorted out.', 'created': '2024-11-06 08:23:22', 'submission_id': '1gkrj8g'}
{'comment': 'Going to New Zealand. Started working on it a year ago.', 'created': '2024-11-06 08:24:01', 'submission_id': '1gkrj8g'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 06:46:05', 'submission_id': '1gkrfsr'}
{'comment': 'It all comes down to Pennsylvania. Whichever way that state goes, so does the country. And Pennsylvania is looking real dicey right now. \n\nIt’s looking likely that Trump wins, republicans take over senate and democrats maybe keep the house. \n\nBut the presidential race is on a knife’s edge over Pennsylvania.', 'created': '2024-11-06 06:50:10', 'submission_id': '1gkrfsr'}
{'comment': 'Just barely, the Pennsylvania votes have to start breaking for us hard. The math is getting tenuous.', 'created': '2024-11-06 06:48:10', 'submission_id': '1gkrfsr'}
{'comment': 'Even if it somehow turns around for her, Senate is lost and the House could potentially be too. Better than nothing but still not a happy outcome.', 'created': '2024-11-06 06:52:14', 'submission_id': '1gkrfsr'}
{'comment': 'I am watching the live Kamala rally at Howard and everyone is leaving. 😫', 'created': '2024-11-06 06:47:27', 'submission_id': '1gkrfsr'}
{'comment': 'I think it’s over honestly the treads have shown all night that more people showed up for him than her. He’s going to win the popular vote. I don’t want to fucking be here anymore.', 'created': '2024-11-06 06:52:43', 'submission_id': '1gkrfsr'}
{'comment': 'Damn this turned out completely different from what anyone here expected. Leading in all initial polls but people went out, voted the red side. Interesting.', 'created': '2024-11-06 06:49:24', 'submission_id': '1gkrfsr'}
{'comment': 'HOPE.. I miss Obama', 'created': '2024-11-06 06:53:02', 'submission_id': '1gkrfsr'}
{'comment': 'Time to dust off that passport..', 'created': '2024-11-06 06:48:31', 'submission_id': '1gkrfsr'}
{'comment': 'She needs WI MI PA, assuming she gets MN ME NH, she doesn’t need AZ, GA, NC or NV. So she has to get the big three.', 'created': '2024-11-06 06:52:00', 'submission_id': '1gkrfsr'}
{'comment': 'Its still on the table, everyone', 'created': '2024-11-06 06:47:46', 'submission_id': '1gkrfsr'}
{'comment': 'Steve on MSNBC said thats highly unlikely', 'created': '2024-11-06 06:47:30', 'submission_id': '1gkrfsr'}
{'comment': 'Are you watching the same election results I am watching?', 'created': '2024-11-06 06:51:23', 'submission_id': '1gkrfsr'}
{'comment': "She just cancelled her speech at Howard University. It's over.", 'created': '2024-11-06 06:53:00', 'submission_id': '1gkrfsr'}
{'comment': 'Thanks for the mood booster <3 This is helpful', 'created': '2024-11-06 06:47:16', 'submission_id': '1gkrfsr'}
{'comment': 'I have a really nice igloo in Dubai to sell you', 'created': '2024-11-06 06:50:02', 'submission_id': '1gkrfsr'}
{'comment': 'I need her to get the blue wall. I’m literally nauseous', 'created': '2024-11-06 06:51:17', 'submission_id': '1gkrfsr'}
{'comment': "It's over.", 'created': '2024-11-06 06:54:10', 'submission_id': '1gkrfsr'}
{'comment': "Here's how Bernie can still win", 'created': '2024-11-06 06:58:16', 'submission_id': '1gkrfsr'}
{'comment': 'I am cooking up some tendies just in case', 'created': '2024-11-06 06:47:28', 'submission_id': '1gkrfsr'}
{'comment': 'It’s gonna be repeat of 2016 again. Kamala Harris was unlucky that she served under an unpopular president.', 'created': '2024-11-06 06:54:34', 'submission_id': '1gkrfsr'}
{'comment': '92% of all ballots have been counted in Pennsylvania and Trump is leading by about 4%, unfortunately.', 'created': '2024-11-06 06:59:06', 'submission_id': '1gkrfsr'}
{'comment': 'U wish', 'created': '2024-11-06 07:24:42', 'submission_id': '1gkrfsr'}
{'comment': 'They predicted a landslide, they were right. Just picked the wrong side.', 'created': '2024-11-06 07:28:09', 'submission_id': '1gkrfsr'}
{'comment': 'When will meltdown begin?', 'created': '2024-11-06 06:48:48', 'submission_id': '1gkrfsr'}
{'comment': '[removed]', 'created': '2024-11-06 06:50:36', 'submission_id': '1gkrfsr'}
{'comment': 'Rut row raggy!', 'created': '2024-11-06 06:51:06', 'submission_id': '1gkrfsr'}
{'comment': "well time to start booking flights..✈️.. if she's not the winner the T-rump and crew no way...I'm dealing with this...again", 'created': '2024-11-06 07:01:35', 'submission_id': '1gkrfsr'}
{'comment': 'I want to thank every Democrat that didn\'t vote because "reasons" for sentencing the LGBTQIA community to death. I want to thank you for giving them the power to destroy the agencies that protect us from greedy corporations. There will never be a nationwide law protecting women\'s reproductive health. You can say goodbye to Social Security and Medicare. Get ready for the enshrinement of Christianity as a protected religion. Interracial marriage will be sent back to the states to decide. I won\'t be going quietly on to the camps but I know you won\'t speak up for me because it doesn\'t affect you. Remember, Hitler was elected. SCOTUS has given Trump a blank ticket to do whatever he wants as long as it is an "official act." You threw the world away because she wasn\'t the perfect candidate.', 'created': '2024-11-06 07:02:16', 'submission_id': '1gkrfsr'}
{'comment': 'No, no she can’t😖', 'created': '2024-11-06 07:03:55', 'submission_id': '1gkrfsr'}
{'comment': 'I could also win the lottery, yes. \n\nHonestly doesn’t matter at this point. They have the Senate. Alito and Thomas will probably retire, SCOTUS will be basically the Spanish Inquisition until the college kids of today have their own college kids. \n\nTrump’s got it. But not really. He won’t make it a full year before they invoke the 25th. \n\nThe most powerful man in the country will be JD Vance. For 8+ years.', 'created': '2024-11-06 07:05:06', 'submission_id': '1gkrfsr'}
{'comment': 'Not gonna happen. Too many idiots.', 'created': '2024-11-06 07:07:29', 'submission_id': '1gkrfsr'}
{'comment': 'I wish', 'created': '2024-11-06 07:36:24', 'submission_id': '1gkrfsr'}
{'comment': '', 'created': '2024-11-06 07:44:53', 'submission_id': '1gkrfsr'}
{'comment': 'Actually not a shot. Do the math.', 'created': '2024-11-06 07:47:00', 'submission_id': '1gkrfsr'}
{'comment': 'Harris couldn’t survive a primary process. This was is her only chance. She’ll be a distant memory by inauguration. Who’s going to be the standard bearer for the party?', 'created': '2024-11-06 07:54:39', 'submission_id': '1gkrfsr'}
{'comment': 'Nope', 'created': '2024-11-06 07:58:21', 'submission_id': '1gkrfsr'}
{'comment': 'Its over', 'created': '2024-11-06 08:22:28', 'submission_id': '1gkrfsr'}
{'comment': 'Nope. It’s going to be a dreary morning.', 'created': '2024-11-06 08:53:01', 'submission_id': '1gkrfsr'}
{'comment': 'Oh no no kamala xisters', 'created': '2024-11-06 06:48:09', 'submission_id': '1gkrfsr'}
{'comment': 'It’s over', 'created': '2024-11-06 06:58:51', 'submission_id': '1gkrfsr'}
{'comment': 'Abortion and a vague definition of Democracy are not strong campaign pillars.', 'created': '2024-11-06 07:07:52', 'submission_id': '1gkrfsr'}
{'comment': '[removed]', 'created': '2024-11-06 06:50:28', 'submission_id': '1gkrfsr'}
{'comment': '[removed]', 'created': '2024-11-06 06:47:27', 'submission_id': '1gkrfsr'}
{'comment': 'I am nit american, but this feels like big copium tbh', 'created': '2024-11-06 06:50:55', 'submission_id': '1gkrfsr'}
{'comment': 'She can but the chances are not looking good. It looks decent for the Dems to take the House and if Trump wins Project 2025 will never happen nothing will get done and the economy will stall with a small recession at the end of his last term.', 'created': '2024-11-06 07:00:09', 'submission_id': '1gkrfsr'}
{'comment': "She lost.\n\n\nShould have ran a better candidate. She's not good or liked. Hillary 2.0.", 'created': '2024-11-06 06:55:01', 'submission_id': '1gkrfsr'}
{'comment': 'The copium here is insane', 'created': '2024-11-06 06:55:03', 'submission_id': '1gkrfsr'}
{'comment': "Even Kamala doesn't believe it. She canceled the speech. Coward.", 'created': '2024-11-06 06:58:45', 'submission_id': '1gkrfsr'}
{'comment': 'Who would’ve thought a neocon would struggle so mightily 🤣 maybe hold a primary next time', 'created': '2024-11-06 06:50:10', 'submission_id': '1gkrfsr'}
{'comment': 'The GOP now has control over the House and Senate, plus the Supreme Court.', 'created': '2024-11-06 07:15:47', 'submission_id': '1gkrfsr'}
{'comment': 'Our country is super done for if the house wins\n\nTrump will ruin our country if the republicans win the house which is looking very likely sadly', 'created': '2024-11-06 07:06:05', 'submission_id': '1gkrfsr'}
{'comment': 'But if AZ turns red, she needs to win PA, MI, and WS - all three.', 'created': '2024-11-06 07:01:19', 'submission_id': '1gkrfsr'}
{'comment': 'Its really not for one Trump is just simply winning PA and for two even if he didnt the election is still going his way. The democrats constantly coping is just funny', 'created': '2024-11-06 06:57:25', 'submission_id': '1gkrfsr'}
{'comment': 'She’s needs 66% to have a shot last I checked.', 'created': '2024-11-06 07:01:39', 'submission_id': '1gkrfsr'}
{'comment': 'Because a representative came out and said that she won’t be speaking tonight, votes are still being counted and it’s not over yet.', 'created': '2024-11-06 06:49:11', 'submission_id': '1gkrfsr'}
{'comment': '[removed]', 'created': '2024-11-06 07:01:05', 'submission_id': '1gkrfsr'}
{'comment': '💙💙💙 stay calm', 'created': '2024-11-06 07:10:03', 'submission_id': '1gkrfsr'}
{'comment': '👋', 'created': '2024-11-06 07:01:17', 'submission_id': '1gkrfsr'}
{'comment': '👋', 'created': '2024-11-06 07:02:26', 'submission_id': '1gkrfsr'}
{'comment': '👋', 'created': '2024-11-06 07:06:26', 'submission_id': '1gkrfsr'}
{'comment': 'Were you one of the ones that said you’d move to Canada in 2016?', 'created': '2024-11-06 07:12:42', 'submission_id': '1gkrfsr'}
{'comment': '👋', 'created': '2024-11-06 06:59:23', 'submission_id': '1gkrfsr'}
{'comment': 'The only thing that would make this better is if all of the unpatriotic democrats left the country', 'created': '2024-11-06 07:10:40', 'submission_id': '1gkrfsr'}
{'comment': 'I think the Harris campaign completely undervalued the vote of the white guys aged 18-28. All they listen to are these podcasts.', 'created': '2024-11-06 06:56:28', 'submission_id': '1gkrfsr'}
{'comment': 'It smells like a lot of men lied about who they were voting for, when we thought it was women doing that in the opposite direction', 'created': '2024-11-06 06:55:58', 'submission_id': '1gkrfsr'}
{'comment': 'Ask yourself why and try not to use any words ending in "ism".', 'created': '2024-11-06 06:52:22', 'submission_id': '1gkrfsr'}
{'comment': "You're in a bubble. You weren't even leading in polls, it was pretty even (which is horrible for Kamala). Trump was losing against Hillary in polls but still won in the end, so to be even against Kamala is pretty horrible.\n\nHow do you pick a candidate that loses to a felon?", 'created': '2024-11-06 06:56:37', 'submission_id': '1gkrfsr'}
{'comment': 'Leading in mainstream media polls? its time you wake up and realize its all a lie and the media is controlled by the dems. All they do is lie.', 'created': '2024-11-06 07:06:03', 'submission_id': '1gkrfsr'}
{'comment': 'Obama fucking sucked lol, and this is coming from a democrat', 'created': '2024-11-06 07:30:15', 'submission_id': '1gkrfsr'}
{'comment': 'And go where? No being a smart ass I mean that legitimately, where do I go? I don’t have a criminal record but I also don’t have a college degree or a good job, can I just up and leave? Will any other country have me? For real.', 'created': '2024-11-06 06:54:46', 'submission_id': '1gkrfsr'}
{'comment': "Other countries don't want Americans, they like us as paying tourists, but they don't want US. We'd just be the refugees.", 'created': '2024-11-06 07:01:55', 'submission_id': '1gkrfsr'}
{'comment': 'Absolutely!', 'created': '2024-11-06 06:51:42', 'submission_id': '1gkrfsr'}
{'comment': 'Couldn’t follow through in 2016?', 'created': '2024-11-06 07:18:03', 'submission_id': '1gkrfsr'}
{'comment': 'Please leave', 'created': '2024-11-06 06:59:43', 'submission_id': '1gkrfsr'}
{'comment': "It's over. They're starting to call PA for Trump. Also looking like he will win WI and MI.", 'created': '2024-11-06 07:22:42', 'submission_id': '1gkrfsr'}
{'comment': 'Oh.. im so sorry..', 'created': '2024-11-06 06:56:04', 'submission_id': '1gkrfsr'}
{'comment': 'Ocean front property in Denver Colorado too?', 'created': '2024-11-06 06:53:10', 'submission_id': '1gkrfsr'}
{'comment': 'Unfortunately that blue wall is probably going to be demolished by a red wrecking ball.', 'created': '2024-11-06 06:54:08', 'submission_id': '1gkrfsr'}
{'comment': 'I needed this laugh.', 'created': '2024-11-06 07:04:16', 'submission_id': '1gkrfsr'}
{'comment': 'He was the most popular president in history last election… I just don’t think people went out to vote. I don’t understand why not.', 'created': '2024-11-06 07:11:15', 'submission_id': '1gkrfsr'}
{'comment': 'Currently', 'created': '2024-11-06 06:52:41', 'submission_id': '1gkrfsr'}
{'comment': 'What do you think happened when he was president before? Is there something I missed? Why would we expect anything too different from what we saw last time? Genuine question.', 'created': '2024-11-06 06:54:27', 'submission_id': '1gkrfsr'}
{'comment': "I'm sure Buddy. LMAO", 'created': '2024-11-06 07:08:17', 'submission_id': '1gkrfsr'}
{'comment': 'Okay too much gloom :(', 'created': '2024-11-06 07:25:04', 'submission_id': '1gkrfsr'}
{'comment': 'You’ll be alright. Toughen up kid', 'created': '2024-11-06 07:03:36', 'submission_id': '1gkrfsr'}
{'comment': 'The LGB are fine lol', 'created': '2024-11-06 07:42:11', 'submission_id': '1gkrfsr'}
{'comment': 'yea tf how could you leave your crew hanging like that bruh', 'created': '2024-11-06 06:54:19', 'submission_id': '1gkrfsr'}
{'comment': 'Of course people are trying to cope. Who wants a fucking felon in office?', 'created': '2024-11-06 06:54:30', 'submission_id': '1gkrfsr'}
{'comment': 'How are you sure that Project 2025 will never happen?', 'created': '2024-11-06 07:05:54', 'submission_id': '1gkrfsr'}
{'comment': 'Better then a notorious pedophile. Like you can’t get worse then that', 'created': '2024-11-06 07:00:52', 'submission_id': '1gkrfsr'}
{'comment': 'It’s way more complicated than that. There were no actual primaries, she only had 107 days to campaign, etc.', 'created': '2024-11-06 07:01:08', 'submission_id': '1gkrfsr'}
{'comment': "It's unreal that they keep picking these Karen-like women as candidates, a woman candidate can be so powerful but they pick these weak ladies, obviously they're gonna lose.", 'created': '2024-11-06 06:58:39', 'submission_id': '1gkrfsr'}
{'comment': 'Threat to democracy tho! BLA bla bla!!! LMAO LFG BABY. USA is saved!', 'created': '2024-11-06 07:09:15', 'submission_id': '1gkrfsr'}
{'comment': 'And soon presidency. This is going to be a very effective republican party the next few years.', 'created': '2024-11-06 07:30:33', 'submission_id': '1gkrfsr'}
{'comment': 'It’s like 1am there, right? Why do we always do this to ourselves! Haha. Elections need to be on a Friday and everyone counts votes overnight, but no results until 9am the next day.', 'created': '2024-11-06 06:51:44', 'submission_id': '1gkrfsr'}
{'comment': 'Yeah it’s over lol just accept it', 'created': '2024-11-06 07:09:45', 'submission_id': '1gkrfsr'}
{'comment': 'Dude that isn’t how you lead a country into the future. Showing the door to people who don’t think like you and protecting your individual freedoms at the expense of the welfare of a community is a plan for the present, not a plan for the next 20 years. Unfortunately, the policies that are put in place now DO affect the next 20 years. We’ll reap what we sow.', 'created': '2024-11-06 07:04:57', 'submission_id': '1gkrfsr'}
{'comment': 'It’s literally over It’s time to go to bed', 'created': '2024-11-06 07:11:22', 'submission_id': '1gkrfsr'}
{'comment': 'I would move to a fucking cave in Afganistán to get away from the MAGAt trash at this point.', 'created': '2024-11-06 07:13:27', 'submission_id': '1gkrfsr'}
{'comment': 'How can you blame men lol? Wtf', 'created': '2024-11-06 07:20:23', 'submission_id': '1gkrfsr'}
{'comment': 'Maybe it’s this kind of constant misandry that hurts the Democratic Party.', 'created': '2024-11-06 07:10:00', 'submission_id': '1gkrfsr'}
{'comment': "No, we just dont say anything because its none of your business. All my friends, and my girlfriend voted for trump. And im korean. \n\nWe don't want some politically correct liberal screaming in our ear how we're racists for voting trump. Rather just work, enjoy life, and have peace.", 'created': '2024-11-06 07:04:28', 'submission_id': '1gkrfsr'}
{'comment': None, 'created': '2024-11-06 06:54:33', 'submission_id': '1gkrfsr'}
{'comment': 'What I’ve been saying too, Trump isn’t even a strong candidate. A better candidate albeit, but Kamala is incredibly weak', 'created': '2024-11-06 07:09:21', 'submission_id': '1gkrfsr'}
{'comment': 'Gave up watching msm back in 2016. They are just living in a delusion', 'created': '2024-11-06 07:09:36', 'submission_id': '1gkrfsr'}
{'comment': 'That’s just something people say. Unless you have tons of money or a very unique skill set that any country would happily hand out a work visa to you, it’s hard to just pack up and leave. It’s definitely possible, but not more practical than getting involved. I’m seriously considering getting involved with my local Democratic Party branch/division. I just can’t sit by and watch this country crumble apart anymore.', 'created': '2024-11-06 07:05:54', 'submission_id': '1gkrfsr'}
{'comment': "I did the 'ol marry a European and am happily living in Berlin. I'm not saying you need to become a mail order bride, but I'm also not not saying it.", 'created': '2024-11-06 07:16:33', 'submission_id': '1gkrfsr'}
{'comment': 'so dramatic', 'created': '2024-11-06 06:56:44', 'submission_id': '1gkrfsr'}
{'comment': 'must be so sad being born American, really.', 'created': '2024-11-06 07:06:37', 'submission_id': '1gkrfsr'}
{'comment': 'What part of “we fucking want to” do you have a hard time understanding? Which of those 4 words do you need explained to you?', 'created': '2024-11-06 07:00:42', 'submission_id': '1gkrfsr'}
{'comment': 'People hate him lol. As soon as he dropped out Dems went for his throat.', 'created': '2024-11-06 07:44:13', 'submission_id': '1gkrfsr'}
{'comment': 'A lot of people are still in denial. It is going to be an interesting Wednesday', 'created': '2024-11-06 06:55:34', 'submission_id': '1gkrfsr'}
{'comment': 'Jan 6, 2021', 'created': '2024-11-06 06:57:14', 'submission_id': '1gkrfsr'}
{'comment': "It won't be nearly as sinister as the internet would make it out to be, but regardless he learned a lot of lessons the first go-around. It won't be the same general senile confusion as he tried to figure out the office in his first term. All the people who were the general stopgaps in the room are gone and will be replaced by people who will have a lot less to say. Anything is possible.", 'created': '2024-11-06 06:59:52', 'submission_id': '1gkrfsr'}
{'comment': "Clearly, you haven't been paying attention to the rest of the groundwork that's been laid. Congress belongs to the fascists, the SC is fascist dominated, and now he's going to be president. Nothing is going to stop him from elevating him or Vance to full Hitler status.", 'created': '2024-11-06 07:10:40', 'submission_id': '1gkrfsr'}
{'comment': 'Almost 900 pages of Project 2025 is the GOP plan going forward.', 'created': '2024-11-06 07:24:12', 'submission_id': '1gkrfsr'}
{'comment': 'All the angry losers are down voting me!!!', 'created': '2024-11-06 06:54:53', 'submission_id': '1gkrfsr'}
{'comment': 'People who liked the fact that their guy gave them the courage to be douchebags in public.', 'created': '2024-11-06 07:01:16', 'submission_id': '1gkrfsr'}
{'comment': "It's ok, we won't have a felon in office. He will just pardon himself and there won't be a felon in office anymore.", 'created': '2024-11-06 07:02:20', 'submission_id': '1gkrfsr'}
{'comment': 'More people want a felon than Kamala it seems. By a lot.', 'created': '2024-11-06 06:57:51', 'submission_id': '1gkrfsr'}
{'comment': 'Did I show them the door? Did I tell them to leave? I simply said if they don’t want to be here that there is no one stopping them.', 'created': '2024-11-06 07:08:52', 'submission_id': '1gkrfsr'}
{'comment': 'Byeee!', 'created': '2024-11-06 07:28:21', 'submission_id': '1gkrfsr'}
{'comment': 'Do it', 'created': '2024-11-06 07:13:56', 'submission_id': '1gkrfsr'}
{'comment': 'Watch the results, men did this to us because they want a rapist in the White House. They want it more than a woman that’s for damn sure.', 'created': '2024-11-06 07:21:10', 'submission_id': '1gkrfsr'}
{'comment': None, 'created': '2024-11-06 07:09:07', 'submission_id': '1gkrfsr'}
{'comment': 'Oh, but you do want WWIII when Putin has his way with Europe after Trump dissolves NATO? Do you think Donald actually cares for anyone but himself?', 'created': '2024-11-06 07:16:10', 'submission_id': '1gkrfsr'}
{'comment': 'Exactly this, polls really don’t mean shit unless Harris’s is winning by at least a 7 point margin.', 'created': '2024-11-06 07:08:21', 'submission_id': '1gkrfsr'}
{'comment': "A tale as old as time, now we'll have to pick up the pieces yet again in four years.", 'created': '2024-11-06 06:56:46', 'submission_id': '1gkrfsr'}
{'comment': "it's literally this, 30% of voters voted on that issue according to NBC. when you look at overall issues that is massive.", 'created': '2024-11-06 06:58:35', 'submission_id': '1gkrfsr'}
{'comment': 'No, it’s because we don’t agree with the soy boys who voted blue 🤣 red embraces masculinity, blue diminishes it', 'created': '2024-11-06 07:09:45', 'submission_id': '1gkrfsr'}
{'comment': 'Trump is literally a sore loser, a shady schemer and an old fuck, and he still beats this boring, personality-less, dull candidate. Tragic really.', 'created': '2024-11-06 07:13:04', 'submission_id': '1gkrfsr'}
{'comment': 'Saw all the truth on X miles ahead.', 'created': '2024-11-06 07:13:21', 'submission_id': '1gkrfsr'}
{'comment': 'Go fascism 🙌', 'created': '2024-11-06 07:19:42', 'submission_id': '1gkrfsr'}
{'comment': 'That’s exactly what I mean. I would LOVE to leave this country. It’s a 3rd world country with no redeeming factors, but it’s not as simple as that. Contrary to what the right believes it’s not as simple as crossing a boarder and setting up shop.', 'created': '2024-11-06 07:08:58', 'submission_id': '1gkrfsr'}
{'comment': 'Googles “how to be a mail order bride when you’re a fat American”', 'created': '2024-11-06 07:22:12', 'submission_id': '1gkrfsr'}
{'comment': 'I don’t want to fucking be here any more. I hate that I live in a place surrounded by men who voted in a \npedophile and a rapist this is a third world country and I want out. Yall keep telling us if we don’t like it to leave. I am not safe here and I want to leave.', 'created': '2024-11-06 06:58:55', 'submission_id': '1gkrfsr'}
{'comment': "It's not like we have a choice where we're born or to whom.", 'created': '2024-11-06 07:08:54', 'submission_id': '1gkrfsr'}
{'comment': 'So moody.', 'created': '2024-11-06 07:10:45', 'submission_id': '1gkrfsr'}
{'comment': 'I haven’t been paying attention, I don’t follow politics or watch the news. It just seems like the original comment was a bit overblown. I guess we’ll see how the next four years pan out.', 'created': '2024-11-06 08:16:29', 'submission_id': '1gkrfsr'}
{'comment': 'Thank you for the laugh. Yes, it’s terrible.', 'created': '2024-11-06 07:06:46', 'submission_id': '1gkrfsr'}
{'comment': 'Which is insane.', 'created': '2024-11-06 06:58:21', 'submission_id': '1gkrfsr'}
{'comment': 'People are stupid. If they think things are expensive now, just wait til those tariffs hit, and all the cheap labor gets deported.', 'created': '2024-11-06 07:06:31', 'submission_id': '1gkrfsr'}
{'comment': 'i.e. “There’s the door.”', 'created': '2024-11-06 07:09:28', 'submission_id': '1gkrfsr'}
{'comment': '[removed]', 'created': '2024-11-06 07:14:10', 'submission_id': '1gkrfsr'}
{'comment': "Men didn't do anything to you, the country or the polls. Get a grip and get over yourself.", 'created': '2024-11-06 08:36:05', 'submission_id': '1gkrfsr'}
{'comment': 'when and where did i mention a woman? you good bro?', 'created': '2024-11-06 07:16:30', 'submission_id': '1gkrfsr'}
{'comment': 'that\'s not this person\'s point. their point is that the democratic party has put most of their resources into fear mongering, while most people would just like to have a peaceful base. i am well aware trump\'s rhetoric is much worse, but that doesn\'t make the democrats correct here. i\'m sure saying "trump will end democracy," although possibly true, likely hurt harris\'s campaign.', 'created': '2024-11-06 07:21:22', 'submission_id': '1gkrfsr'}
{'comment': 'You’re r worded if you think NATO is going to be dissolved lmao', 'created': '2024-11-06 07:36:13', 'submission_id': '1gkrfsr'}
{'comment': "And then they'll blame us again. Part of me wants Republicans to have control for 8 years to show that it's not the dems fault we are suffering.\n\nPart of me likes staying alive as well, though.", 'created': '2024-11-06 07:00:28', 'submission_id': '1gkrfsr'}
{'comment': "If he's in control with no guard rails? My dude, democracy is over.", 'created': '2024-11-06 07:01:57', 'submission_id': '1gkrfsr'}
{'comment': 'Wait, you mean to tell me that transgender and abortion rights aren’t the number one issue for Americans? How odd!', 'created': '2024-11-06 07:08:30', 'submission_id': '1gkrfsr'}
{'comment': "If you need a political party to validate your masculinity, you have very little self confidence. Don't worry, I felt the same way before I joined the military as well - it's not you, it's society.", 'created': '2024-11-06 07:14:44', 'submission_id': '1gkrfsr'}
{'comment': 'Not tragic, beautiful!', 'created': '2024-11-06 07:19:10', 'submission_id': '1gkrfsr'}
{'comment': 'yea sure, anyone who is not Woke are hitlers lmao.', 'created': '2024-11-06 07:52:12', 'submission_id': '1gkrfsr'}
{'comment': 'Lol', 'created': '2024-11-06 07:02:43', 'submission_id': '1gkrfsr'}
{'comment': "Why? She's insanely uninteresting, a Hillary 2.0, a dull Karen-type aunt. A woman candidate could be so powerful, but she seems so weak all-around.", 'created': '2024-11-06 07:00:01', 'submission_id': '1gkrfsr'}
{'comment': "The ''economy'' is just one part of why she lost. Her being extremely boring with 0 personality is probably the biggest one.", 'created': '2024-11-06 07:13:54', 'submission_id': '1gkrfsr'}
{'comment': "Okay, but reject the option because it dwells too much on fear mongering in favor of the alternative? The guy openly talks of getting rid of the Constitution, reappointing himself as the unending leader of the country, weaponizing the justice system to go after political opponents and even private citizens, and giving a world leader the go ahead to invade anything and everything and this guy thinks he's just going to live in peace? I think that's a bit naive and selfish.", 'created': '2024-11-06 07:39:41', 'submission_id': '1gkrfsr'}
{'comment': "Huh? Not sure what you mean by worded, but I have no doubts he'll pull the US out of NATO or secure its demise in other ways and appease Putin in every way possible just based on the last 4 years of his years in office.", 'created': '2024-11-06 07:50:20', 'submission_id': '1gkrfsr'}
{'comment': 'It\'s a hard line to tiptoe, isn\'t it? It\'s astronomically difficult to pretend you don\'t want it all to fail in the highest fucking metrics just to say "lmao see what happens when...." it\'s fucking exhausting, man.', 'created': '2024-11-06 07:03:12', 'submission_id': '1gkrfsr'}
{'comment': "I don't disagree, but he'll shit in his diaper for the last time in the next few years, probably best to direct attention at the MAGA heir-apparent.", 'created': '2024-11-06 07:05:34', 'submission_id': '1gkrfsr'}
{'comment': 'Democracy isn’t over it is in action, do you know what an election is?', 'created': '2024-11-06 07:07:42', 'submission_id': '1gkrfsr'}
{'comment': 'You\'ve got to be living in a bubble if you go around listening to that guy all day and not see the traits and behaviors of an autocrat. He literally tells you he\'s planning to be leader for life and get rid of the Constitution, be like the other "great" dictators of today out there, and you\'re trying to tell me he\'s not? I have a secret for you - not everyone who is trying to just live a normal life is "woke."', 'created': '2024-11-06 08:02:31', 'submission_id': '1gkrfsr'}
{'comment': '[removed]', 'created': '2024-11-06 07:03:50', 'submission_id': '1gkrfsr'}
{'comment': 'I’m not pro Kamala. I’m not a Democrat. But Trump is a threat to democracy and has show TIME AND TIME again he’s a horrible person. I agree there could have been a far better candidate, but nearly anyone is better then trump.', 'created': '2024-11-06 07:01:34', 'submission_id': '1gkrfsr'}
{'comment': 'Oh, sure. I always choose fascist over boring. I wish someone put it to me that way this morning.', 'created': '2024-11-06 07:16:10', 'submission_id': '1gkrfsr'}
{'comment': 'The copium is just absolutely delicious rn', 'created': '2024-11-06 07:07:01', 'submission_id': '1gkrfsr'}
{'comment': 'you got to look at the context, what he said was "if the election in 2020 was a massive fraud, then all rules should be abolished even if they were in the constitution". He never said anything about being leader for life, thats completely false. Stop getting your information from biased sources. Of course, that message was very controversial but you are obviously exaggerating things. \nAnother secret for you, not everyone who dont vote for the Democrats or believe in MSM are facists :) and that includes around 50% of the population. \nIf anything, i will consider myself a democrat before 2016 but not anymore.', 'created': '2024-11-06 08:12:40', 'submission_id': '1gkrfsr'}
{'comment': "I don't care about Trump, he's a horrible candidate, but objectively Kamala is even worse and that's why she is projected to have 6-8 million less total votes than Trump.", 'created': '2024-11-06 07:06:05', 'submission_id': '1gkrfsr'}
{'comment': "You mean like having someone run for president without being properly elected as their party's nominee? Literally PLANTED on the ballot. Open your eyes...", 'created': '2024-11-06 07:11:43', 'submission_id': '1gkrfsr'}
{'comment': 'Morons like you is why democrats get made fun of.', 'created': '2024-11-06 07:43:26', 'submission_id': '1gkrfsr'}
{'comment': "Copium? Hardly. Anyone with a brain knew this was a possibility. Just sad it's due to people who have a hard time gathering a few brain cells to rub together on a great day showing up in force.", 'created': '2024-11-06 07:12:39', 'submission_id': '1gkrfsr'}
{'comment': '\'Chinese President Xi Jinping recently consolidated power. Trump told the gathering: "He\'s now president for life. President for life. And he\'s great." Trump added, "I think it\'s great. Maybe we\'ll give that a shot someday."\'\n\nThe idea of a rigged election was all in his head. It was never substantiated, just fabricated by him and his innumerable cronies, stories of ballot dumping and people casting ballots of dead people, etc.\n\nThese are telltale signs of a person who wants to remain in power, and his messaging to his followers to hate everyone who aren\'t like them and follow his movement over country is fascism. All you have to do is look through the pages of history books to see people who were just like him. I am not sure what fatal crime democrats committed to make you abandon that ideology, but they still believe in the peaceful transfer of power and a republic and treating people respectfully. The signals Donald Trump gives off are nothing of a statesman espousing democracy and service to country.', 'created': '2024-11-06 08:37:32', 'submission_id': '1gkrfsr'}
{'comment': 'Please tell me how Kamala is worse, genuinely curious.', 'created': '2024-11-06 07:07:39', 'submission_id': '1gkrfsr'}
{'comment': 'My eyes are wide open. I’d rather vote for a rushed candidate that was planted then a felon. Why is this even an argument.', 'created': '2024-11-06 07:13:37', 'submission_id': '1gkrfsr'}
{'comment': "Morons that actually read project 2025, who don't have to resort to ad hominem attacks to make their point? Your defensiveness belies the fragility of your position.", 'created': '2024-11-06 08:03:09', 'submission_id': '1gkrfsr'}
{'comment': 'Like I said the copium is DELICIOUS', 'created': '2024-11-06 07:17:30', 'submission_id': '1gkrfsr'}
{'comment': "I'm not saying she's a ''worse person'' or whatever, just the worse candidate, which she obviously is. I'm pretty left but as a candidate, Kamala was one of the worst choices I've ever seen. Absolutely no personality, fake smiles 24/7, trained by the DNC or whoever, to be the most milk-toast person imaginable. Absolutely tragic.\n\nNot to mention a rushed choice, Joe should have gotten the boot 3 months earlier than he did, he was obviously not in the state to be president then (let alone run again for 4 more years), no idea why it hasn't been done, America is kind of a joke country at this point.", 'created': '2024-11-06 07:10:40', 'submission_id': '1gkrfsr'}
{'comment': "34 Felonies! LMAO. It's literally right in front of your face. I'm glad most of us see it. Holy...", 'created': '2024-11-06 07:15:03', 'submission_id': '1gkrfsr'}
{'comment': "Hey man, happy to help any way I can. Good luck on your fourth try on the GED test, by the way. You've got it this time champ, I believe in you.", 'created': '2024-11-06 07:32:53', 'submission_id': '1gkrfsr'}
{'comment': 'What are you saying? Hey I’m going to hold your hand when I ask this. Do you have a mental disability?', 'created': '2024-11-06 07:16:29', 'submission_id': '1gkrfsr'}
{'comment': 'Actually a proud college graduate, cum laude UNT 2024. Majored in geography. Shit was a joke 😊', 'created': '2024-11-06 07:34:10', 'submission_id': '1gkrfsr'}
{'comment': None, 'created': '2024-11-06 07:30:24', 'submission_id': '1gkrfsr'}
{'comment': 'Clear enough for ya champ? LMAO time to close the border and make crime illegal again.', 'created': '2024-11-06 07:31:33', 'submission_id': '1gkrfsr'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 06:35:53', 'submission_id': '1gkra4u'}
{'comment': 'Yes. The majority prefers fascism', 'created': '2024-11-06 06:39:42', 'submission_id': '1gkra4u'}
{'comment': 'Because we live among ignorant scum...', 'created': '2024-11-06 06:39:12', 'submission_id': '1gkra4u'}
{'comment': "Because A) Misogyny runs strong in this country \nand B) the propaganda machine was strong this election cycle.\n\nI've kind of resigned myself and am going to bed fully expecting to wake up to 2016-esque results.", 'created': '2024-11-06 06:41:06', 'submission_id': '1gkra4u'}
{'comment': 'He is a criminal, wtf is going on', 'created': '2024-11-06 06:36:59', 'submission_id': '1gkra4u'}
{'comment': 'https://preview.redd.it/z61uhguh48zd1.jpeg?width=960&format=pjpg&auto=webp&s=adecf325b93b3ff927bdbc0c478d996a2041800c\n\nPeople like voting against their own interests', 'created': '2024-11-06 07:16:59', 'submission_id': '1gkra4u'}
{'comment': 'Say goodbye to many immigrants you know. They’re going away.', 'created': '2024-11-06 08:54:22', 'submission_id': '1gkra4u'}
{'comment': 'https://preview.redd.it/cv04la0yy8zd1.png?width=653&format=png&auto=webp&s=e30335f46efa2e295353120c99fb826fd1e80507', 'created': '2024-11-06 10:07:34', 'submission_id': '1gkra4u'}
{'comment': 'Georgia called for trump. Idk what to do with myself', 'created': '2024-11-06 06:36:35', 'submission_id': '1gkra4u'}
{'comment': 'Georgia called for trump its over', 'created': '2024-11-06 06:37:25', 'submission_id': '1gkra4u'}
{'comment': 'The people have spoken, and now they must live with their choices...', 'created': '2024-11-06 07:41:54', 'submission_id': '1gkra4u'}
{'comment': 'Welcome your new president: Vladimir Putin', 'created': '2024-11-06 16:02:01', 'submission_id': '1gkra4u'}
{'comment': 'The MAGATS made their bed, now they gotta lay in it. I wish nothing but the worst for them.', 'created': '2024-11-06 17:22:35', 'submission_id': '1gkra4u'}
{'comment': None, 'created': '2024-11-06 06:37:33', 'submission_id': '1gkra4u'}
{'comment': "I've never seen a thread with every comment deleted before. LOL", 'created': '2024-11-06 19:20:24', 'submission_id': '1gkra4u'}
{'comment': 'No matter how much I try I just can’t understand how anyone could prefer him. He’s just so terrible in every way.', 'created': '2024-11-06 19:38:26', 'submission_id': '1gkra4u'}
{'comment': 'If there’s anything that Americans hate more than republicans, it’s democrats.', 'created': '2024-11-06 20:03:48', 'submission_id': '1gkra4u'}
{'comment': 'Here is a strange idea.... Trump is more liked than Kamala, the most unpopular VP in history', 'created': '2024-11-06 06:38:21', 'submission_id': '1gkra4u'}
{'comment': "Take it from a former Democrat - the media has propagandized you.\n\nThey have lied to you.\n\nThey do not want to tell you the truth.\n\nThey just want to make you a rabid Democrat supporter, regardless of how terrible the candidate is, so they can control you.\n\nThey want your attention. That's it. They don't want to make you smarter or more informed.\n\nThey want to control you.\n\nToday is a chance to break free of their chains.\n\nStart by recognizing that it is not your fault. Their grip is very strong. They've been doing this for decades. It is a corrupt system.\n\nDo not let other people think on your behalf.\n\nDo not outsource your intelligence.\n\nDo not let others control your mind.\n\nIt's yours.\n\nDo not be afraid to trust your gut. Do not be afraid to question everything. Do not be afraid to speak out.\n\nWe are all Americans. We love each other. We are building this country together.\n\nBut we cannot do this effectively if we let others think on our behalf.\n\nDo not support a party just because others have told you to.\n\nDo not hate a person just because others have told you to.\n\nOnly you get to decide, on your own merit.\n\nNo one else.", 'created': '2024-11-06 07:10:59', 'submission_id': '1gkra4u'}
{'comment': "Maybe its time to question these misconceptions you are fed. Either everyone is stupid and you are enlightened, or you're misinformed. If you are democratic, then you believe in the majority, and the media could be lying to you.", 'created': '2024-11-06 06:42:42', 'submission_id': '1gkra4u'}
{'comment': "The Democrats have ignored black voters (black men in particular) for sixty years I'm not surprised that young black men aren't going to vote for the Democrat party to received nothing in return, The Democrat party took them for granted expecting them to just show up at the polls for them to the tune of 80-90% again.", 'created': '2024-11-06 06:52:33', 'submission_id': '1gkra4u'}
{'comment': 'My guess is they felt better under Trump than Biden. A BLM leader said something along those lines.', 'created': '2024-11-06 06:37:34', 'submission_id': '1gkra4u'}
{'comment': 'Maybe bc trump is just more favorable than Kalamazoo', 'created': '2024-11-06 06:36:42', 'submission_id': '1gkra4u'}
{'comment': '[removed]', 'created': '2024-11-06 06:39:57', 'submission_id': '1gkra4u'}
{'comment': 'This is what’s so hard to believe. Especially after the MSG rally. How could anyone vote for that', 'created': '2024-11-06 06:42:52', 'submission_id': '1gkra4u'}
{'comment': "As long as it's not socialism. /s", 'created': '2024-11-06 06:47:10', 'submission_id': '1gkra4u'}
{'comment': "The hate makes them feel protected. They've been convinced by Fox News that everything is hell and the only way out is Trump.", 'created': '2024-11-06 11:12:10', 'submission_id': '1gkra4u'}
{'comment': 'Or maybe...the majority sees something you dont. Try to open your mind and see the possibilities for what they could be, and not for what they are taught to be. Smh', 'created': '2024-11-06 08:22:15', 'submission_id': '1gkra4u'}
{'comment': 'Literally tossed Biden out for this failure rn', 'created': '2024-11-06 06:42:46', 'submission_id': '1gkra4u'}
{'comment': 'Two kinds of Republicans, the poor and uneducated and the wealthy ones that take advantage of them.', 'created': '2024-11-06 16:55:08', 'submission_id': '1gkra4u'}
{'comment': 'I am disappointed but I can\'t think of my other Americans that way. It doesn\'t change their mind and only causes them to double down. I will do everything in my power to introduce democratic ideas into my MAGA family and other neighbors. I can\'t hate them. They wouldn\'t kill anyone themselves. \n\nMaybe a "man, I wish DJT would actually fix social security, that would be nice" or "abortion is a big tent of things that aren\'t all the same" then we can evolve their ideas to "IVF is prochoice" to see if they can move forward. \n\nHating and calling them names do not help. Leading them to democratic ideas does.', 'created': '2024-11-06 16:03:27', 'submission_id': '1gkra4u'}
{'comment': 'Elon Musk won trump this election imo', 'created': '2024-11-06 07:25:21', 'submission_id': '1gkra4u'}
{'comment': "Yeah I'm just glad I'm in NC and we voted in Stein who can defend us a bit", 'created': '2024-11-06 06:44:21', 'submission_id': '1gkra4u'}
{'comment': 'Same. It felt like dejavu all over again. 😭', 'created': '2024-11-06 13:12:21', 'submission_id': '1gkra4u'}
{'comment': 'This is exactly my analysis. Exactly.', 'created': '2024-11-06 10:59:46', 'submission_id': '1gkra4u'}
{'comment': 'You skipped B. \n\nHow did you skip from A to C?', 'created': '2024-11-06 06:44:44', 'submission_id': '1gkra4u'}
{'comment': 'And a rapist', 'created': '2024-11-06 06:38:53', 'submission_id': '1gkra4u'}
{'comment': 'Not yet but most likely over🥲', 'created': '2024-11-06 06:37:58', 'submission_id': '1gkra4u'}
{'comment': 'Harris doesn’t need GA to win.', 'created': '2024-11-06 06:38:49', 'submission_id': '1gkra4u'}
{'comment': 'https://preview.redd.it/i4864yse98zd1.jpeg?width=960&format=pjpg&auto=webp&s=150f7ee2c0aa79ec7a7aed93c9c1775954c88490', 'created': '2024-11-06 07:44:23', 'submission_id': '1gkra4u'}
{'comment': 'They really did a terrible job getting across that the inflation started under Trump and Biden is getting it back down.', 'created': '2024-11-06 06:39:01', 'submission_id': '1gkra4u'}
{'comment': 'But it’s not that. The facts prove that the Democrats are unequivocally better for the economy. It’s not even close. The real crux is that ever since 2008, hell even 2001, we’ve been told how horrible the economy is. Even after the Great Recession ended, even after Biden has added millions of new jobs and inflation has stalled, even as our economy is growing, as we produce more oil than any other country on the planet, Americans are told “the economy is bad.” And as long as that’s the narrative, the GOP will always win because GOP = low taxes pro-business and the Democrats = culture wars and high taxes. That’s all there is to it. \n\nAmericans don’t think. We’re in a post-truth, post-fact, post-reality era.', 'created': '2024-11-06 06:44:42', 'submission_id': '1gkra4u'}
{'comment': 'and a lot of people want project 2025… don’t forget that', 'created': '2024-11-06 06:41:28', 'submission_id': '1gkra4u'}
{'comment': 'I mean, apparently you’re right. I thought it was pretty obvious he’s a vile, hateful, rapist but I guess nobody cares.', 'created': '2024-11-06 06:44:07', 'submission_id': '1gkra4u'}
{'comment': 'And that makes me sad for America.', 'created': '2024-11-06 07:12:20', 'submission_id': '1gkra4u'}
{'comment': 'RIGHT!!maybe just maybe… OPS opinion is wrong', 'created': '2024-11-06 06:41:31', 'submission_id': '1gkra4u'}
{'comment': 'The media wants to make people Democrats so they can control them? And how exactly does that work? And what makes you think the media mind control works only on Democrats, but not on Republicans or third parties?', 'created': '2024-11-06 07:27:10', 'submission_id': '1gkra4u'}
{'comment': 'Is this something from flat earther’s subreddit?', 'created': '2024-11-06 07:33:45', 'submission_id': '1gkra4u'}
{'comment': 'Hey, maybe you’re right, maybe I am misinformed. Would you be so kind as to point me towards a credible source of information?', 'created': '2024-11-06 06:49:59', 'submission_id': '1gkra4u'}
{'comment': 'Maybe. And that needs to change. But what does trump offer?', 'created': '2024-11-06 11:23:15', 'submission_id': '1gkra4u'}
{'comment': 'What about him is more likeable? Honestly curious because a lot of America loves him and I can’t see why. So what is it about him you love? That can make you skip over everything he has said and done?', 'created': '2024-11-06 07:15:16', 'submission_id': '1gkra4u'}
{'comment': 'Kalamity', 'created': '2024-11-06 06:37:47', 'submission_id': '1gkra4u'}
{'comment': 'Your friend is an idiot', 'created': '2024-11-06 06:43:18', 'submission_id': '1gkra4u'}
{'comment': 'Bad Bunny, who is basically the Taylor Swift of the Latino world came out in support for Harris. \n\nLiterally Taylor Swift supported Harris. Beyoncé. Oprah. Obama. \n\nIt seems people had their minds already made up. They just cared about one thing and one thing only - the economy. Even though Trump isn’t actually going to be good for the economy. People are just too emotional and not thinking logically.', 'created': '2024-11-06 07:13:15', 'submission_id': '1gkra4u'}
{'comment': 'So Canada and most of Europe are democratic socialists, what exactly do you see as the problem with this? Low heath care costs, free colleges, 6 week vacations, one year off for having a baby. Yes, their taxes are higher but if you include what we pay in health care, they’re paying much less.', 'created': '2024-11-10 14:53:52', 'submission_id': '1gkra4u'}
{'comment': "We saw once before and didn't like Mr I have a concept. You my friend are in for a big surprise... get ready!", 'created': '2024-11-06 11:07:55', 'submission_id': '1gkra4u'}
{'comment': "What is it? Cuz, I don't see it. Never have w this guy.", 'created': '2024-11-07 00:40:10', 'submission_id': '1gkra4u'}
{'comment': 'Yes, explain to me what I’m missing. Rn, I’m afraid for my daughter if she has an unviable pregnancy. Will I lose her? I’m really afraid for this planet. He rolled back climate initiatives last time. Will I lose my social security benefits? With more tariffs and less immigrants in the work force, will the economy crash? Most importantly WILL HE BE A DICTATOR ON DAY ONE like he said and will our democracy be destroyed', 'created': '2024-11-10 14:49:48', 'submission_id': '1gkra4u'}
{'comment': 'Idiot.', 'created': '2024-11-06 11:37:27', 'submission_id': '1gkra4u'}
{'comment': "Yeah, so you see how well that has worked, don't you?", 'created': '2024-11-06 16:05:09', 'submission_id': '1gkra4u'}
{'comment': 'Elon wants to be president. I think has now has a chance.', 'created': '2024-11-06 16:21:02', 'submission_id': '1gkra4u'}
{'comment': 'Pending the Supreme Court seat race, NC had a pretty good night. Holding the Governor, AG, and Sec. of State seats, flipping the Lt. Gov and Superintendent seats, and breaking the super majority. I just wish these big accomplishments didn’t feel like consolation prizes.', 'created': '2024-11-07 00:06:41', 'submission_id': '1gkra4u'}
{'comment': "Small mercies. I'm terrified for my kids.", 'created': '2024-11-06 16:26:54', 'submission_id': '1gkra4u'}
{'comment': 'We’re in WI so at least Evers can somewhat shield us.', 'created': '2024-11-06 08:40:57', 'submission_id': '1gkra4u'}
{'comment': "Fluke. Fixed it. I'm not in my right mind right now.", 'created': '2024-11-06 07:06:48', 'submission_id': '1gkra4u'}
{'comment': 'And a traitor', 'created': '2024-11-06 06:45:32', 'submission_id': '1gkra4u'}
{'comment': 'which is the worst type of criminal 😢', 'created': '2024-11-06 06:40:32', 'submission_id': '1gkra4u'}
{'comment': 'rapists are criminals, there was no need for this distinction', 'created': '2024-11-06 07:44:41', 'submission_id': '1gkra4u'}
{'comment': 'It’s over lmao', 'created': '2024-11-06 06:41:39', 'submission_id': '1gkra4u'}
{'comment': 'He is at 98% for the Election… stop being delusional', 'created': '2024-11-06 06:40:35', 'submission_id': '1gkra4u'}
{'comment': 'They did such a terrible job, they overemphasized abortion and trumps character, EVERYONE KNOWS! most voters just dont understand shit abt how the president relates to the economy, and that Biden was good for the economy if they went deeper into that they could have won.', 'created': '2024-11-06 06:44:42', 'submission_id': '1gkra4u'}
{'comment': "I'm pretty sure that's a bot modeled after ayn rand", 'created': '2024-11-06 07:34:45', 'submission_id': '1gkra4u'}
{'comment': "I am not claiming anything. Notice the maybe I added at the start. I am not trying to change your mind. I am simply asking you to question why 64 Million people so far don't believe the things you've been told to believe. You might be 100% right. 64 Million people could be brainwashed. I am just asking you to question what led them to this.", 'created': '2024-11-06 06:53:21', 'submission_id': '1gkra4u'}
{'comment': 'The economy is not going to get better with Trump .. they are in for a rude awakening', 'created': '2024-11-06 07:14:05', 'submission_id': '1gkra4u'}
{'comment': 'Nonsense. They are voting for him because they are in a cult of personality. He gave them a reason to rise above their unhappy, unthinking lives. PERIOD.', 'created': '2024-11-06 15:57:04', 'submission_id': '1gkra4u'}
{'comment': 'It felt like literally all of these incredibly popular (I think BB has like, 30? 40? Million followers?) did not a fucking thing.\n\nLike, it was almost the opposite. I don’t get it. People are so hyper obsessed with these celebs… HOW?', 'created': '2024-11-06 10:30:36', 'submission_id': '1gkra4u'}
{'comment': "Half the country voted before many of that happened. Don't endorse a candidate right at the end.", 'created': '2024-11-06 18:57:26', 'submission_id': '1gkra4u'}
{'comment': 'The dems have been better for the economy in the ladt 50 years. But for some reason, they never brought that up in the campaign. I think thats what tanked Harris.\xa0', 'created': '2024-11-07 03:46:48', 'submission_id': '1gkra4u'}
{'comment': 'I don\'t see a problem with it at all, hence the "/s", indicating my sarcasm because Republicans detest the idea of socialism and favor the "pull yourself up by the bootstraps" approach. 🙂', 'created': '2024-11-10 18:18:32', 'submission_id': '1gkra4u'}
{'comment': 'According to the constitution, he can’t. And why bother when you have a useful idiot like Trump under your thumb?', 'created': '2024-11-06 23:37:03', 'submission_id': '1gkra4u'}
{'comment': "Oh shit, I didn't know the supermajority got broken! I was busy being pissed that cotham won by like .4%", 'created': '2024-11-07 00:42:40', 'submission_id': '1gkra4u'}
{'comment': "The moment karnacki said the black turnout was down in rural but blue eastern NC counties, I gave up. You can't win NC without those types of voters!", 'created': '2024-11-06 07:43:34', 'submission_id': '1gkra4u'}
{'comment': 'Why did Hitler have a majority? Don’t be ridiculous, man.', 'created': '2024-11-06 07:06:47', 'submission_id': '1gkra4u'}
{'comment': 'That’s what I’m doing, I’m questioning. I’m asking if you would point me in the right direction, so I can understand where you’re coming from.', 'created': '2024-11-06 06:57:52', 'submission_id': '1gkra4u'}
{'comment': 'My silver lining is I am looking forward to rubbing this in their face at every opportunity. I’m going to get some Trump “I did that“ stickers to put on all the expensive stuff.', 'created': '2024-11-06 17:51:43', 'submission_id': '1gkra4u'}
{'comment': 'Reality will hit them hard. The folks at Jonestown eventually had to make a decision. We saw which way that cult went.', 'created': '2024-11-06 16:18:42', 'submission_id': '1gkra4u'}
{'comment': "I think that explains MAGA, I don't know if that explains the rest of his voters.", 'created': '2024-11-07 06:04:03', 'submission_id': '1gkra4u'}
{'comment': 'Thanks for the /s schooling! Was wondering what that meant 😀', 'created': '2024-11-10 18:59:04', 'submission_id': '1gkra4u'}
{'comment': 'Do you really believe the Constitution will have any value in 2-3 years?', 'created': '2024-11-06 23:52:43', 'submission_id': '1gkra4u'}
{'comment': 'Yup, I don’t know which chamber and I think it was only one or two seats that flipped, so as long as there isn’t another Cotham like turncoat, Stein’s veto is protected.', 'created': '2024-11-07 01:51:21', 'submission_id': '1gkra4u'}
{'comment': "Every argument finds its way to Hitler. I am not saying who is good or bad. I am asking you to question what you believe, and why 65 Million don't believe in it. I am asking you to talk to the guys you might have cut off because of their views. Ask them why they don't hate trump. Ask women why they vote against abortion. Try to walk a mile in their shoes.", 'created': '2024-11-06 07:09:45', 'submission_id': '1gkra4u'}
{'comment': 'That’s my point. Hitler had support. Why? Well, we know why. Much of the same reasons that Trump has support. Misinformation, propaganda, people prioritizing the economy over morality.', 'created': '2024-11-06 07:11:18', 'submission_id': '1gkra4u'}
{'comment': "What do you think is more likely? \n\n1. Most of these voters share a mindset with Nazis and want to enslave themselves by the rule of trump. (I am not trying to strawman you, correct this statement as you see fit).\n\n2. The voters are not stupid, they don't see Trump as Hitler, they see him as a good leader. They liked his rule previously and want 4 more years of trump economy rather than the status quo.", 'created': '2024-11-06 07:13:17', 'submission_id': '1gkra4u'}
{'comment': 'Most of the voters don’t share a mindset with nazis. They share a mindset with people who voted for nazis. \n\nWhat do you want me to say, man? Do you want me to pull some numbers showing that the economy was worse under Trump? Do you want me to pull up the videos of him speaking sexually about his daughter, praising dictators, saying he wants to be one, saying he wants to use the government to go after people? \n\nDo you want me to tell you about his Nazi rhetoric of calling his opposition “vermin, and poisoning the blood of our country?” Would you prefer I show you the video of him having peaceful protestors shot at with rubber bullets? \n\nOr do you want me to pull up his list of convicted felonies, or his lost lawsuit found guilty of sexual abuse? Would you like me to show you how it was the GOP surrounding Trump’s case that put into law that the president has officially immunity for “executive acts”? \n\nShould I send you links to his college scheme, or his bankruptcies? Should I tell you about the Alien Enemies act of 1798, and show you how Mr. Trump wants to bring it back, an Act that would allow the president to go after migrants(yes, not immigrants, MIGRANTS) and deport them or jail them? \n\nWhat else do you want? Do you want me to pull up the video where he said that the real threat to America are the people from within, us liberal democrats, and that he stated if necessary, he wants to use the military to clean it up? \n\nDo you want me to show you the endless hateful divisive rhetoric that he spews? \n\nWhy do people support someone like that? Because they’re idiots. Point blank period. They are idiots.', 'created': '2024-11-06 07:22:37', 'submission_id': '1gkra4u'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 06:33:22', 'submission_id': '1gkr8qx'}
{'comment': 'I couldn’t sleep if I tried. Anxiety has taken control trip.', 'created': '2024-11-06 06:34:58', 'submission_id': '1gkr8qx'}
{'comment': "Non-american here and it's almost 7AM, wide awake right now. Can someone light some hope that what we're seeing is a presumably red mirage. Like mail in ballots gets counted after the in person votes? Will we see blue shifts? I'm freaking out already and i haven't had breakfast.", 'created': '2024-11-06 06:35:35', 'submission_id': '1gkr8qx'}
{'comment': '63 million morons.... Lets regress a hundred years I guess.', 'created': '2024-11-06 06:37:39', 'submission_id': '1gkr8qx'}
{'comment': "I have a bottle of New Amsterdam, I'm ready to not touch grass for at least the next week.", 'created': '2024-11-06 06:36:00', 'submission_id': '1gkr8qx'}
{'comment': 'I have the same question', 'created': '2024-11-06 06:34:28', 'submission_id': '1gkr8qx'}
{'comment': 'Still waiting on Georgia and PA', 'created': '2024-11-06 06:34:37', 'submission_id': '1gkr8qx'}
{'comment': 'Georgia should be done counting soon. Very doubtful that Kamala wins the last 2 counties so trump takes Georgia. If he gets PA it’s pretty much over.', 'created': '2024-11-06 06:34:59', 'submission_id': '1gkr8qx'}
{'comment': 'i’m going to bed. i have an appointment to make in the morning and genuinely just want to be offline so my anxiety can ease. if she can manage to get PA and AZ i’d say there’s hope, but it looks slim right now.', 'created': '2024-11-06 06:38:41', 'submission_id': '1gkr8qx'}
{'comment': 'Anyone else just numb?', 'created': '2024-11-06 06:41:29', 'submission_id': '1gkr8qx'}
{'comment': "It is bed time friend :) Likely, we are not going to know the outcome tonight.\n\nI tell you it is bed time hoping that I will listen to my own advice and be able to sleep some. Anyhow, wishing you get a good night's rest!", 'created': '2024-11-06 06:38:07', 'submission_id': '1gkr8qx'}
{'comment': 'Steve on msnbc pretty much said nope.', 'created': '2024-11-06 06:40:55', 'submission_id': '1gkr8qx'}
{'comment': 'Bed time', 'created': '2024-11-06 06:36:43', 'submission_id': '1gkr8qx'}
{'comment': None, 'created': '2024-11-06 06:35:40', 'submission_id': '1gkr8qx'}
{'comment': 'Not getting a PA result tonight', 'created': '2024-11-06 06:40:46', 'submission_id': '1gkr8qx'}
{'comment': 'Because 2020 was so close, they will not call MI, WI, PA, NV, and AZ until all the votes are counted.', 'created': '2024-11-06 06:57:39', 'submission_id': '1gkr8qx'}
{'comment': 'This would be the miracle of all miracles.\n\nIt’s all but over.', 'created': '2024-11-06 06:57:54', 'submission_id': '1gkr8qx'}
{'comment': 'Night night', 'created': '2024-11-06 06:34:43', 'submission_id': '1gkr8qx'}
{'comment': 'Its literally over. Go to bed.', 'created': '2024-11-06 06:36:40', 'submission_id': '1gkr8qx'}
{'comment': 'Go to bed, Trump won when Biden dropped out.', 'created': '2024-11-06 06:40:55', 'submission_id': '1gkr8qx'}
{'comment': 'Nope, libs..you lost.\n\nhttps://preview.redd.it/x55od6ew18zd1.jpeg?width=1072&format=pjpg&auto=webp&s=edafac3ad2e044a5de594f1aed127b13946bf391', 'created': '2024-11-06 07:02:18', 'submission_id': '1gkr8qx'}
{'comment': 'I feel that. We can’t do anything more at this point, so might as well rest? Easier said than done.', 'created': '2024-11-06 06:35:31', 'submission_id': '1gkr8qx'}
{'comment': "just take 20 minutes and accept its over, like I've done. I've expected nothing less from this country", 'created': '2024-11-06 06:37:11', 'submission_id': '1gkr8qx'}
{'comment': 'Its over, GOP won. Just go to bed, and prepare for tomorrow.', 'created': '2024-11-06 06:37:00', 'submission_id': '1gkr8qx'}
{'comment': "Short answer is we don't know right now. There's a ton of people and bots freaking out and calling results but nothing is determined yet, there's still big cities that take a long time to be counted.", 'created': '2024-11-06 06:38:41', 'submission_id': '1gkr8qx'}
{'comment': 'Not all the votes have been counted and not enough has been determined to call who won. Relax. Harris will win. Mail-In votes are overwhelmingly blue.', 'created': '2024-11-06 06:37:37', 'submission_id': '1gkr8qx'}
{'comment': 'the odds of her winning is ~10% according to nyt', 'created': '2024-11-06 06:36:49', 'submission_id': '1gkr8qx'}
{'comment': "You are correct, but it depends on the state. Pennsylvania doesn't count mail in until afterwards, but I'm not sure about the others.", 'created': '2024-11-06 06:38:18', 'submission_id': '1gkr8qx'}
{'comment': 'Russia did to us what we did to south america. The propaganda worked. “Best economy in the history of the world!” They said that shit enough times and this stupid ass country bought it. Total shame.', 'created': '2024-11-06 07:11:54', 'submission_id': '1gkr8qx'}
{'comment': "It's over. There's no votes left lol.\n\n\nJust better to prepare. The country didn't show up.", 'created': '2024-11-06 07:13:49', 'submission_id': '1gkr8qx'}
{'comment': '[removed]', 'created': '2024-11-06 06:38:07', 'submission_id': '1gkr8qx'}
{'comment': 'No kidding. I’m an 18 year old LGBTQ female in a red state and I hate it', 'created': '2024-11-06 06:39:57', 'submission_id': '1gkr8qx'}
{'comment': 'He won Georgia', 'created': '2024-11-06 06:36:14', 'submission_id': '1gkr8qx'}
{'comment': 'But PA isn’t going to be done soon, will it?', 'created': '2024-11-06 06:34:57', 'submission_id': '1gkr8qx'}
{'comment': 'CNN just called Georgia for Trump', 'created': '2024-11-06 06:36:40', 'submission_id': '1gkr8qx'}
{'comment': 'CNN called Georgia for Trump', 'created': '2024-11-06 06:37:03', 'submission_id': '1gkr8qx'}
{'comment': 'Keep waiting\n\nhttps://preview.redd.it/bpvlagezy7zd1.jpeg?width=1440&format=pjpg&auto=webp&s=d52ffcc6594c941137e28626512994201cd151e4', 'created': '2024-11-06 06:45:56', 'submission_id': '1gkr8qx'}
{'comment': "CNN just said there's not enough ballots left for harris to take Georgia", 'created': '2024-11-06 06:37:01', 'submission_id': '1gkr8qx'}
{'comment': 'ABC called GA so not looking good for Harris', 'created': '2024-11-06 06:37:41', 'submission_id': '1gkr8qx'}
{'comment': 'NBC just called Georgia', 'created': '2024-11-06 06:39:01', 'submission_id': '1gkr8qx'}
{'comment': 'CNN just called Georgia for Trump', 'created': '2024-11-06 06:36:48', 'submission_id': '1gkr8qx'}
{'comment': 'Georgia just called for trump. Idk what to do with myself rn', 'created': '2024-11-06 06:37:16', 'submission_id': '1gkr8qx'}
{'comment': 'Trump just won Georgia. It’s over', 'created': '2024-11-06 06:38:26', 'submission_id': '1gkr8qx'}
{'comment': 'What are the last two counties? And would you mind sharing where you are seeing what counties votes have been realeased, i cant find anything', 'created': '2024-11-06 06:36:38', 'submission_id': '1gkr8qx'}
{'comment': 'Right. Probably for the best to go to bed', 'created': '2024-11-06 06:40:36', 'submission_id': '1gkr8qx'}
{'comment': 'Yup. I offered the idea to my roommate that Trump might not be that bad, and she told me I’m crazy. Just trying to work with what we’ve got…', 'created': '2024-11-06 06:42:39', 'submission_id': '1gkr8qx'}
{'comment': 'You too!', 'created': '2024-11-06 06:40:11', 'submission_id': '1gkr8qx'}
{'comment': 'Sounds good. Thank you', 'created': '2024-11-06 06:41:20', 'submission_id': '1gkr8qx'}
{'comment': 'Probably for the best. Can’t do anything now', 'created': '2024-11-06 06:36:23', 'submission_id': '1gkr8qx'}
{'comment': 'Just called it for Trump', 'created': '2024-11-06 07:48:02', 'submission_id': '1gkr8qx'}
{'comment': 'Trying to be optimistic, but that is what it looks like', 'created': '2024-11-06 06:37:24', 'submission_id': '1gkr8qx'}
{'comment': '"Mr. Stark, we lost..."', 'created': '2024-11-06 06:42:49', 'submission_id': '1gkr8qx'}
{'comment': 'The AI photos are weird…', 'created': '2024-11-06 07:03:31', 'submission_id': '1gkr8qx'}
{'comment': 'Prepare for 4 years of unravelling our institutions?\n\nhttps://preview.redd.it/chhoq4e538zd1.png?width=828&format=png&auto=webp&s=443c683c1716a13d9e0e9b7156aafbadb3865db6', 'created': '2024-11-06 07:09:19', 'submission_id': '1gkr8qx'}
{'comment': "It's over", 'created': '2024-11-06 07:13:25', 'submission_id': '1gkr8qx'}
{'comment': 'Yes but they also had Hilary winning at %95, I’m not sure myself', 'created': '2024-11-06 06:51:39', 'submission_id': '1gkr8qx'}
{'comment': 'Oof.. Sad ☹️.', 'created': '2024-11-06 06:38:20', 'submission_id': '1gkr8qx'}
{'comment': 'Jup, PA is done for.. What a sad day in history', 'created': '2024-11-06 07:42:45', 'submission_id': '1gkr8qx'}
{'comment': 'Yep. It’s over.', 'created': '2024-11-06 06:51:24', 'submission_id': '1gkr8qx'}
{'comment': '[removed]', 'created': '2024-11-06 06:43:05', 'submission_id': '1gkr8qx'}
{'comment': 'Yea, its over.', 'created': '2024-11-06 06:37:45', 'submission_id': '1gkr8qx'}
{'comment': 'Shoot.', 'created': '2024-11-06 06:38:53', 'submission_id': '1gkr8qx'}
{'comment': "Overnight, maybe. I'd go to bed.", 'created': '2024-11-06 06:35:29', 'submission_id': '1gkr8qx'}
{'comment': 'It probably won’t be done tonight but they’re going to have better projections for the Philly area soon. If you’re tired, I’d probably just go to bed lol. I’m too anxious to sleep', 'created': '2024-11-06 06:35:42', 'submission_id': '1gkr8qx'}
{'comment': 'Ive been refreshing watching all the votes coming in. It’s like you get excited and see he still has a lead. Help us all.', 'created': '2024-11-06 06:36:24', 'submission_id': '1gkr8qx'}
{'comment': "PA is done. They isn't enough votes left for the state. \n\nWe lost.", 'created': '2024-11-06 06:37:30', 'submission_id': '1gkr8qx'}
{'comment': 'Wait some more 🤣\n\nhttps://preview.redd.it/dpzldr61z7zd1.jpeg?width=1440&format=pjpg&auto=webp&s=ede8331c146fc165184f56561632dd16a64c448e', 'created': '2024-11-06 06:46:13', 'submission_id': '1gkr8qx'}
{'comment': '[removed]', 'created': '2024-11-06 06:47:18', 'submission_id': '1gkr8qx'}
{'comment': 'News app on iOS. AP just called that he took Georgia so yeah. It’s a wrap. GG\n\nhttps://preview.redd.it/eetj630ix7zd1.jpeg?width=1179&format=pjpg&auto=webp&s=57884c075c4d1ba9fd830df463a77d5cb315ef71', 'created': '2024-11-06 06:37:39', 'submission_id': '1gkr8qx'}
{'comment': 'Yea. I feel you.\n\n\nSucks. Oh well. Prep for tomorrow\xa0', 'created': '2024-11-06 06:41:02', 'submission_id': '1gkr8qx'}
{'comment': 'https://preview.redd.it/fhffngt828zd1.jpeg?width=1024&format=pjpg&auto=webp&s=a53a353a04d39f3c8f377fc56b67821c5a3c0b86\n\nGovernment should not have killed Peanut the Squirrel', 'created': '2024-11-06 07:04:30', 'submission_id': '1gkr8qx'}
{'comment': 'Stop doom posting and get off reddit ffs.', 'created': '2024-11-06 07:21:23', 'submission_id': '1gkr8qx'}
{'comment': 'not at this stage of the game. her path is *very* narrow. like me getting into the NBA narrow.', 'created': '2024-11-06 06:57:45', 'submission_id': '1gkr8qx'}
{'comment': "It's just crazy how wrong we were.\n\n\nWe lost everything. Just all of it.", 'created': '2024-11-06 07:43:34', 'submission_id': '1gkr8qx'}
{'comment': 'Alright. Thank you', 'created': '2024-11-06 06:35:58', 'submission_id': '1gkr8qx'}
{'comment': 'I don’t know if I’d be able to sleep, but it might be worth a shot', 'created': '2024-11-06 06:36:51', 'submission_id': '1gkr8qx'}
{'comment': 'I figured.', 'created': '2024-11-06 06:38:09', 'submission_id': '1gkr8qx'}
{'comment': 'I have a job. Are you talking about your boy Donny who’s bankrupted 6 different companies?', 'created': '2024-11-06 06:56:15', 'submission_id': '1gkr8qx'}
{'comment': 'This doesn’t even feel real, man. I’m 18 and LGBTQ in a red state. I feel screwed', 'created': '2024-11-06 06:41:56', 'submission_id': '1gkr8qx'}
{'comment': 'Uhhh… okay. Have fun with that', 'created': '2024-11-06 07:04:59', 'submission_id': '1gkr8qx'}
{'comment': 'Nope.', 'created': '2024-11-06 07:22:39', 'submission_id': '1gkr8qx'}
{'comment': 'PA is going to be counting votes through the morning. This happened in 2020 as well- I doubt anything will change. I’d try to sleep personally', 'created': '2024-11-06 06:41:53', 'submission_id': '1gkr8qx'}
{'comment': 'Yea. I mean surround yourself with like minded people. Stay off media. And focus on your goals.\n\n\nLeave when you can. But for now just head down and do the work.', 'created': '2024-11-06 06:44:12', 'submission_id': '1gkr8qx'}
{'comment': 'Appreciate it 🫡', 'created': '2024-11-06 06:42:53', 'submission_id': '1gkr8qx'}
{'comment': 'Philly counted for like 4 days last time. This time it will only take another 10 hours or so.', 'created': '2024-11-06 07:13:22', 'submission_id': '1gkr8qx'}
{'comment': 'I’m more worried about the education system going forward. I’m planning to be a teacher, and I can’t imagine not being able to mention a future wife. I’ve wanted to run a foster home my entire life. I want to get married and settle down with adopted kids. I shouldn’t have to leave the country to have basic rights.', 'created': '2024-11-06 06:46:35', 'submission_id': '1gkr8qx'}
{'comment': 'Come to the West coast.', 'created': '2024-11-06 07:07:58', 'submission_id': '1gkr8qx'}
{'comment': 'I wish, but I couldn’t leave my loved ones. Maybe someday', 'created': '2024-11-06 07:08:27', 'submission_id': '1gkr8qx'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 06:29:49', 'submission_id': '1gkr6qp'}
{'comment': 'Do you have 1.3 million for a 2-bedroom apartment?', 'created': '2024-11-06 06:30:32', 'submission_id': '1gkr6qp'}
{'comment': "Yeah Canada is about to elect hard conservatives in their next election. It's not gonna help to move.", 'created': '2024-11-06 06:32:00', 'submission_id': '1gkr6qp'}
{'comment': 'This reads like 2016 all over again', 'created': '2024-11-06 06:30:45', 'submission_id': '1gkr6qp'}
{'comment': "As a Canadian, I'm not sure you are aware how unpopular Trudeau has become in Canada. Likely to have a Conservative majority in the next 12 months.", 'created': '2024-11-06 06:36:51', 'submission_id': '1gkr6qp'}
{'comment': 'Canada is about to have a huge Conservative swing as well. The grass is not always greener.', 'created': '2024-11-06 06:32:11', 'submission_id': '1gkr6qp'}
{'comment': "I am not because we aren't losing this election seriously just stop", 'created': '2024-11-06 06:31:51', 'submission_id': '1gkr6qp'}
{'comment': 'Imagine thinking canada is better', 'created': '2024-11-06 06:31:49', 'submission_id': '1gkr6qp'}
{'comment': 'Well your USD will go a little farther', 'created': '2024-11-06 06:38:49', 'submission_id': '1gkr6qp'}
{'comment': 'Guide to move to Canada:\n\n# 1. Find the Right Residency Path\n\n* **Express Entry**: Main program for skilled workers, using points based on skills, experience, etc.\n* **Provincial Nominee Program (PNP)**: Each province has its own criteria, so check which province best fits your skills.\n* **Family Sponsorship**: Have family in Canada? They might be able to sponsor you.\n* **Business/Investor Visa**: Entrepreneurs can apply for the Start-Up Visa.\n\n# 2. Prepare Your Documents\n\n* **Education and Work Proof**: Get your credentials assessed.\n* **Language Test**: Required for English (IELTS) or French (TEF).\n* **Financial Proof**: Bank statements showing funds.\n\n# 3. Apply for Permanent Residency (PR)\n\n* Eligible? Apply through **Express Entry** or **PNP**.\n* Track your **CRS score** to see your invitation chances.\n\n# 4. Temporary Move Options\n\n* Can’t wait? Look into a **Work Permit** (if you have a job offer) or a **Student Visa** (if you plan to study).\n\n# 5. Settling in Canada\n\n* Research banking, housing, healthcare, and understand dual tax obligations.\n\n# 6. Apply for Citizenship\n\n* After **3 years of PR** (within a 5-year window), you can apply. Pass the test, show language proficiency, and you’re on your way.', 'created': '2024-11-06 06:30:10', 'submission_id': '1gkr6qp'}
{'comment': 'Yes, leave instead of fighting for your country, Rome wasn’t built in a day.', 'created': '2024-11-06 06:31:05', 'submission_id': '1gkr6qp'}
{'comment': 'At least in Canada everyone has healthcare. This country doesn’t care about us.', 'created': '2024-11-06 06:34:52', 'submission_id': '1gkr6qp'}
{'comment': 'Well on the bright side at least the cost of living will go down\xa0', 'created': '2024-11-06 06:37:02', 'submission_id': '1gkr6qp'}
{'comment': '\n\nAs a Canadian;', 'created': '2024-11-06 06:45:58', 'submission_id': '1gkr6qp'}
{'comment': 'with the housing crisis there probably not', 'created': '2024-11-06 06:49:00', 'submission_id': '1gkr6qp'}
{'comment': "Bet you won't :)", 'created': '2024-11-06 07:00:45', 'submission_id': '1gkr6qp'}
{'comment': None, 'created': '2024-11-06 07:33:38', 'submission_id': '1gkr6qp'}
{'comment': 'Trudeau only accepts Indians. Good luck', 'created': '2024-11-06 06:30:37', 'submission_id': '1gkr6qp'}
{'comment': 'Def no one who is serious', 'created': '2024-11-06 06:31:11', 'submission_id': '1gkr6qp'}
{'comment': None, 'created': '2024-11-06 06:43:56', 'submission_id': '1gkr6qp'}
{'comment': 'Can I have to honor to sponser your ticket? DM me.\n\nhttps://preview.redd.it/pnvj3n6z18zd1.jpeg?width=2700&format=pjpg&auto=webp&s=1cd564e326855ce41c79143c372361acb3f542e9', 'created': '2024-11-06 07:02:44', 'submission_id': '1gkr6qp'}
{'comment': None, 'created': '2024-11-06 06:32:46', 'submission_id': '1gkr6qp'}
{'comment': '[removed]', 'created': '2024-11-06 06:37:18', 'submission_id': '1gkr6qp'}
{'comment': "We don't want you", 'created': '2024-11-06 06:41:25', 'submission_id': '1gkr6qp'}
{'comment': 'Ahh yes abandon your country over an election.', 'created': '2024-11-06 06:32:02', 'submission_id': '1gkr6qp'}
{'comment': 'it\'s always a shocker for people who are like "I\'m going to move to canada/sweden/wherever" when they realize that the same things you need here to succeed (money+education+employment prospects) are the things other countries require.', 'created': '2024-11-06 06:40:09', 'submission_id': '1gkr6qp'}
{'comment': 'America would be there soon with Kamala in office.', 'created': '2024-11-06 06:36:15', 'submission_id': '1gkr6qp'}
{'comment': 'Move your ass to mexico! Hahahahahaha', 'created': '2024-11-06 06:42:13', 'submission_id': '1gkr6qp'}
{'comment': 'Yes that’s true, I live in Canada', 'created': '2024-11-06 06:33:02', 'submission_id': '1gkr6qp'}
{'comment': "She's already lost bro snap out of it", 'created': '2024-11-06 07:08:00', 'submission_id': '1gkr6qp'}
{'comment': 'Kamala has lost.', 'created': '2024-11-06 06:42:06', 'submission_id': '1gkr6qp'}
{'comment': "Seriously, I moved to Canada from the States (husband is Canadian, had nothing to do with politics) and there are some better things, but Canada is suffering hardcore. Our housing is insane. Food prices are insane. The country is jampack full of immigrants already. AND we have Poilievre, Trump's Canadian twin, running for PM next year with a high chance he'll win because everyone is disappointed in Trudeau's lack of action to take care of the country.\n\nExpress Entry barely draws for people anymore except in specific job categories. You're unlikely to get a good enough score for it anyways unless you're fluent in French, working in the medical field, or have previous Canadian job experience.", 'created': '2024-11-06 06:39:26', 'submission_id': '1gkr6qp'}
{'comment': "Be grateful at least you don't live in Mexico if you don't have money you won't be seen by a dr even if you're bleeding to death", 'created': '2024-11-06 06:37:17', 'submission_id': '1gkr6qp'}
{'comment': 'Then leave 🤣', 'created': '2024-11-06 07:12:49', 'submission_id': '1gkr6qp'}
{'comment': "Where's the joke? And how is this a joke anyways?", 'created': '2024-11-06 06:31:58', 'submission_id': '1gkr6qp'}
{'comment': 'lol', 'created': '2024-11-06 06:31:14', 'submission_id': '1gkr6qp'}
{'comment': None, 'created': '2024-11-06 06:38:22', 'submission_id': '1gkr6qp'}
{'comment': 'I hear Afghanistan does.', 'created': '2024-11-06 06:50:54', 'submission_id': '1gkr6qp'}
{'comment': "No she hasn't seriously stop", 'created': '2024-11-06 07:44:27', 'submission_id': '1gkr6qp'}
{'comment': "No she hasn't seriously stop", 'created': '2024-11-06 07:44:42', 'submission_id': '1gkr6qp'}
{'comment': None, 'created': '2024-11-06 06:41:55', 'submission_id': '1gkr6qp'}
{'comment': 'Say it again', 'created': '2024-11-06 07:57:01', 'submission_id': '1gkr6qp'}
{'comment': "Cope more.\n\nDonald J Trump is the 47th President of the United States.\n\nYou'll be alright. Just stop buying into MSM bullshit.", 'created': '2024-11-06 14:47:50', 'submission_id': '1gkr6qp'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 06:22:41', 'submission_id': '1gkr2u3'}
{'comment': None, 'created': '2024-11-06 06:29:21', 'submission_id': '1gkr2u3'}
{'comment': 'If Harris loses Wisconsin she can still win Arizona to make up for it. Absolutely needs PA, Michigan, and Minnesota though', 'created': '2024-11-06 06:30:13', 'submission_id': '1gkr2u3'}
{'comment': 'Republicans have an 0.3 advantage. There is still a possibility', 'created': '2024-11-06 06:26:06', 'submission_id': '1gkr2u3'}
{'comment': 'We got this.', 'created': '2024-11-06 06:32:40', 'submission_id': '1gkr2u3'}
{'comment': 'Friendly reminder that 0% of these states have been called except NC and all broke for Biden', 'created': '2024-11-06 06:27:19', 'submission_id': '1gkr2u3'}
{'comment': "It's (prolly) gonna end up 306 to 232, looks like, assuming no big power-shifts.", 'created': '2024-11-06 06:26:19', 'submission_id': '1gkr2u3'}
{'comment': 'The race is done. Looks like Pennsylvania and Wisconsin is basically Trump’s.', 'created': '2024-11-06 06:27:37', 'submission_id': '1gkr2u3'}
{'comment': "I just don't think the odds are in Harris' favour to win PA, WI and NV...", 'created': '2024-11-06 06:27:41', 'submission_id': '1gkr2u3'}
{'comment': 'What website is this?', 'created': '2024-11-06 06:23:50', 'submission_id': '1gkr2u3'}
{'comment': 'Wis leans red, its over', 'created': '2024-11-06 06:31:46', 'submission_id': '1gkr2u3'}
{'comment': None, 'created': '2024-11-06 06:24:25', 'submission_id': '1gkr2u3'}
{'comment': 'they did not count the mail in votes.', 'created': '2024-11-06 06:32:37', 'submission_id': '1gkr2u3'}
{'comment': "Assuming you're not just lying, I cant fathom being that upset over politics. Likely nothing will change regardless of who wins", 'created': '2024-11-06 06:41:59', 'submission_id': '1gkr2u3'}
{'comment': 'Michigan and Minnesota look okay I think. PA though yikes', 'created': '2024-11-06 06:33:07', 'submission_id': '1gkr2u3'}
{'comment': '', 'created': '2024-11-06 07:09:52', 'submission_id': '1gkr2u3'}
{'comment': 'RemindMe! 12 hours', 'created': '2024-11-06 07:21:38', 'submission_id': '1gkr2u3'}
{'comment': 'Kamala is underperforming Biden in all of the states that matter', 'created': '2024-11-06 06:29:43', 'submission_id': '1gkr2u3'}
{'comment': 'Harris? Looks like by what measure?', 'created': '2024-11-06 06:29:35', 'submission_id': '1gkr2u3'}
{'comment': "PA doesn't count any early ballots until it's all over. Those usually lean left, and it's over a million ballots.", 'created': '2024-11-06 06:32:10', 'submission_id': '1gkr2u3'}
{'comment': '💯', 'created': '2024-11-06 06:29:12', 'submission_id': '1gkr2u3'}
{'comment': 'Maybe NV. The Dems should have had a primary or a run off. But I bet they knew Harris wouldn’t win and it would look bad, but I honestly think this is a lot worse.', 'created': '2024-11-06 06:33:36', 'submission_id': '1gkr2u3'}
{'comment': 'not yet.', 'created': '2024-11-06 06:33:31', 'submission_id': '1gkr2u3'}
{'comment': '“patriots” spamming this comment every 5 mins really think they doing something 😴', 'created': '2024-11-06 06:29:51', 'submission_id': '1gkr2u3'}
{'comment': 'How did you know? /genq', 'created': '2024-11-06 06:33:27', 'submission_id': '1gkr2u3'}
{'comment': '[removed]', 'created': '2024-11-06 06:34:45', 'submission_id': '1gkr2u3'}
{'comment': 'I won’t disagree that this person is probably being overly dramatic, but i want to live your life if this won’t affect you. It will affect a lot of people. I’m a gay guy who’s been with my husband 20 years. SCOTUS has already signaled they’d be willing to revisit marriage rights. Sounds unlikely, but so did Roe getting undone. Not to mention I have a trans nephew who the other side has completely villainized and politicized. There are people depending on the ACA. It’s frankly ignorant to think this won’t affect anyone, no disrespect intended.', 'created': '2024-11-06 06:50:49', 'submission_id': '1gkr2u3'}
{'comment': 'Everyone thought the US would completely collapse when he got into office in 2016. Didn’t happen.\n\nEveryone thought the US would completely collapse when Biden got into office in 2020. Didn’t happen.\n\nEveryone thinks the US will completely collapse if Trump wins this election. It won’t happen.\n\nIt never does. The theatrical bullshit fearmongering will always come but the justification never does.', 'created': '2024-11-06 06:51:16', 'submission_id': '1gkr2u3'}
{'comment': 'Did I say it was likely? Or do you disagree with facts', 'created': '2024-11-06 07:11:58', 'submission_id': '1gkr2u3'}
{'comment': 'This is the real issue.', 'created': '2024-11-06 06:30:42', 'submission_id': '1gkr2u3'}
{'comment': 'so far but mail in votes have not been counted.', 'created': '2024-11-06 06:33:10', 'submission_id': '1gkr2u3'}
{'comment': 'Imagination', 'created': '2024-11-06 06:37:10', 'submission_id': '1gkr2u3'}
{'comment': 'Yeah not this year. They changed it and most of the early and mail in ballots have been counted in Pennsylvania. That’s why you saw Harris with a huge lead early on. That was mostly all of the early ballots already counted. This fucking sucks but Trump has won and Republicans have retaken the Senate. Get ready for Alito and Thomas to retire and a 6-3 conservative SC to be locked in for generations. This is absolutely the worst case scenario right now.', 'created': '2024-11-06 06:44:05', 'submission_id': '1gkr2u3'}
{'comment': '[removed]', 'created': '2024-11-06 06:35:43', 'submission_id': '1gkr2u3'}
{'comment': 'nope.', 'created': '2024-11-06 06:33:17', 'submission_id': '1gkr2u3'}
{'comment': None, 'created': '2024-11-06 06:30:22', 'submission_id': '1gkr2u3'}
{'comment': "PA has a frustrating rule where they don't count their mail in ballots until election day itself, leading to a backlog of mail in ballots that need to be processed. [https://www.usatoday.com/story/news/politics/elections/2024/11/03/pennsylvania-wisconsin-ballot-counting/75812999007/](https://www.usatoday.com/story/news/politics/elections/2024/11/03/pennsylvania-wisconsin-ballot-counting/75812999007/)", 'created': '2024-11-06 06:35:46', 'submission_id': '1gkr2u3'}
{'comment': 'I think they don’t count mail in votes until all in person voting is completed.', 'created': '2024-11-06 06:34:29', 'submission_id': '1gkr2u3'}
{'comment': 'How is your source saying they were counted when PA doesn’t even count mail in votes until day of? Methinks your source is feeding you BS.', 'created': '2024-11-06 06:37:55', 'submission_id': '1gkr2u3'}
{'comment': 'This a bot. It was made 28 days ago.', 'created': '2024-11-06 06:43:33', 'submission_id': '1gkr2u3'}
{'comment': "I really doubt and hope that scotus doesn't revisit gay marriage, but I suppose it's not off the table. Im pretty bitter about scotus as a whole for a lot of reasons, one being rbg not stepping down while Obama was in office. There was no reason for her to stay other than for her own personal reasons. My opinion is she could've prevented the abortion thing happening. On the bright side, a few red states have already voted to legalize abortion in their states. Florida was surprising\n\n\n\nI wish the best for you and your family", 'created': '2024-11-06 07:23:51', 'submission_id': '1gkr2u3'}
{'comment': 'It did collapse in 2016. He purposely ignored covid because he thought it would kill more people that voted against him than for him', 'created': '2024-11-06 08:01:14', 'submission_id': '1gkr2u3'}
{'comment': 'Okay I concede to that, however unlikely it is', 'created': '2024-11-06 07:16:45', 'submission_id': '1gkr2u3'}
{'comment': 'Are we sure about that?', 'created': '2024-11-06 06:46:22', 'submission_id': '1gkr2u3'}
{'comment': 'Pipe dream at this point', 'created': '2024-11-06 07:00:04', 'submission_id': '1gkr2u3'}
{'comment': 'We are all fucked. Idiocracy was prophecy.', 'created': '2024-11-06 07:02:42', 'submission_id': '1gkr2u3'}
{'comment': "Bro Kamala went home, it's over lol", 'created': '2024-11-06 06:50:36', 'submission_id': '1gkr2u3'}
{'comment': 'go play some more little nightmares lil bro you got school tomorrow', 'created': '2024-11-06 06:33:40', 'submission_id': '1gkr2u3'}
{'comment': 'Do they release that result all at once though?', 'created': '2024-11-06 07:13:25', 'submission_id': '1gkr2u3'}
{'comment': '[removed]', 'created': '2024-11-06 06:40:51', 'submission_id': '1gkr2u3'}
{'comment': None, 'created': '2024-11-06 06:47:05', 'submission_id': '1gkr2u3'}
{'comment': '[removed]', 'created': '2024-11-06 06:50:58', 'submission_id': '1gkr2u3'}
{'comment': 'nope;', 'created': '2024-11-06 06:51:17', 'submission_id': '1gkr2u3'}
{'comment': "Not sure; last time I dug into it was during the 2020 election; if my memory serves, the results kind of trickle in as they are counted, but I wouldn't take a statement from my memory without a heaping helping of salt to crust it over.", 'created': '2024-11-06 07:20:27', 'submission_id': '1gkr2u3'}
{'comment': "Counties in PA all do shit different. That's why it's so complicated, and they call so damn late. Your cousin is bullshitting you. Assuming that's remotely true.", 'created': '2024-11-06 06:45:27', 'submission_id': '1gkr2u3'}
{'comment': 'Do you have any actual publicly released figures on this, like some state elections website or something', 'created': '2024-11-06 06:44:27', 'submission_id': '1gkr2u3'}
{'comment': 'good joke.', 'created': '2024-11-06 07:04:12', 'submission_id': '1gkr2u3'}
{'comment': 'Idk but it posts two comments and was just made. Maybe because there are some people that want to stir shit up no matter who wins', 'created': '2024-11-06 06:48:37', 'submission_id': '1gkr2u3'}
{'comment': '[removed]', 'created': '2024-11-06 06:51:43', 'submission_id': '1gkr2u3'}
{'comment': 'But... your cousin at MSNBC...', 'created': '2024-11-06 06:52:29', 'submission_id': '1gkr2u3'}
{'comment': '**Take action:**\n\n**[Voter Assistance Hotline info](https://www.reddit.com/r/KamalaHarris/wiki/resources/hotline)**\n\n**Join:**\n\n* /r/KamalaHarris\n\n* /r/TimWalz\n\n* /r/democrats\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/democrats) if you have any questions or concerns.*', 'created': '2024-11-06 06:16:37', 'submission_id': '1gkqyza'}
{'comment': 'What is it about Trump that people love so much?\n\nI see nothing but negativity about him. \n\nHe doesn’t appear to have a single redeeming quality. \n\nCould someone ELI5?', 'created': '2024-11-06 06:17:42', 'submission_id': '1gkqyza'}
{'comment': 'People who think the President is in control of the price of eggs.', 'created': '2024-11-06 07:37:09', 'submission_id': '1gkqyza'}
{'comment': "The younger generation talked a big game but didn't show up in the booth.", 'created': '2024-11-06 06:58:32', 'submission_id': '1gkqyza'}
{'comment': 'Trump has several million less votes than 2020.\n\nWe just got fucked by Democratic apathy again.', 'created': '2024-11-06 08:24:09', 'submission_id': '1gkqyza'}
{'comment': 'While I still have a seed of hope to be proven wrong, I think we’re seeing that hate and fear really are a bigger motivation than hope and change. It’s sad but I think we’re seeing the truth, that America is too easily manipulated into our worst emotions. As a first time voter I am very disappointed and saddened by the results thus far', 'created': '2024-11-06 07:16:36', 'submission_id': '1gkqyza'}
{'comment': "people don't understand inflation and they are very mad at it. \n\nnobody explained it well and the press decided it was no longer their business to inform the electorate.", 'created': '2024-11-06 07:34:00', 'submission_id': '1gkqyza'}
{'comment': "America has become a puppet state. It has long lost its respected place in the world, and now, it will be led by a senile old pedophile criminal because America elected him back into office. \n\nShould he not outlive his term, America's looking at President Vance.", 'created': '2024-11-06 06:25:17', 'submission_id': '1gkqyza'}
{'comment': 'There’s a massive swath of American voters who are under-informed, and that’s a big part of it. They look at the price of goods and then immediately blame whichever party is in the Oval Office. In reality, it’s much more complicated than that, but when you only get your news info from Facebook, twitter algorithms, and Fox News, your info is without a doubt limited. \n\nPresidents don’t set the price of goods, the billionaires who own the companies do. Which party benefits those specific people more…? The people who own the grocery stores also own media companies, contribute or run PAC’s, etc etc you get the gist of it.', 'created': '2024-11-06 07:26:03', 'submission_id': '1gkqyza'}
{'comment': None, 'created': '2024-11-06 06:30:12', 'submission_id': '1gkqyza'}
{'comment': 'I’ve never had this sense of truly wanting to just end it before. Is this real? Am I still in the Trump fucking nightmare? I wanted a reason to fight cancer but it’s going to be super hard to fight to live in a world with such incredibly ignorant countrymen. Not sure I’ll care anymore. What a bunch of idiots !!! DISGUSTED !!!!!!!!!', 'created': '2024-11-06 08:38:59', 'submission_id': '1gkqyza'}
{'comment': "Having mostly been on Reddit and Facebook over the past weeks and months (never Twitter or TikTok though) I never once felt Harris was going to 'resoundingly win', but I am still shocked that it has not even been close.\n\nThat it seems to be such a massive win for Trump across the board is a truly disturbing failure of both polling and analysis.", 'created': '2024-11-06 07:49:55', 'submission_id': '1gkqyza'}
{'comment': 'I grew up Republican, going to a private religious school.\n\nTrump is everything they\'ve always wanted. They constantly complained about the establishment Republicans for not being "tough" enough. And by that, they meant constantly whining and not compromising, which was their fantasy pathway to making all their hopes and dreams finally come true.', 'created': '2024-11-06 09:11:06', 'submission_id': '1gkqyza'}
{'comment': 'If you have followed 2016 you would know social media and reddit is not really a reflection of reality. At best it was going to be close. Resounding win is too far fetched.\xa0', 'created': '2024-11-06 06:23:37', 'submission_id': '1gkqyza'}
{'comment': 'America, a psychological case study.\xa0', 'created': '2024-11-06 07:29:47', 'submission_id': '1gkqyza'}
{'comment': 'The US is still a country dominated by a rednek mentality. Exists in Canada as well but not near the extent of the US. Feel for Ukraine. Putin will be salivating.', 'created': '2024-11-06 06:58:14', 'submission_id': '1gkqyza'}
{'comment': 'Latino voters and some younger voters fucked us. (When you knock doors, they tell you.)', 'created': '2024-11-06 07:53:44', 'submission_id': '1gkqyza'}
{'comment': "Men of color swung from Biden to Trump. Should be a fun ride for them with him in charge the next 4 years. Maybe he'll die in office and Vance will surprise everyone and he does a political 180 showing he was just MAGA'ing out to win power.", 'created': '2024-11-06 06:24:23', 'submission_id': '1gkqyza'}
{'comment': 'Reddit is one of the most left wing social media sites. CNN and MSNBC’s polls were slightly biased towards Kamala. By now it’s obvious that polls mean quite literally nothing at all', 'created': '2024-11-06 06:21:24', 'submission_id': '1gkqyza'}
{'comment': 'Don’t ever trust social media, or the media. They don’t represent most people.', 'created': '2024-11-06 06:24:50', 'submission_id': '1gkqyza'}
{'comment': "I don't feel duped by social media. Not really. \n\nI feel duped by fiction. \n\nEvil isn't supposed to win, right? Good is supposed to triumph. Darkness will be beaten and all that!\n\nI feel lied to by the stories I took so much comfort in. And she lost the popular vote. I thought, I really thought, even if she loses, we will get the popular vote. We will be able to show that more people like her and that the others are wrong. \n\nBut...she lost...\n\nShe lost. \n\nI just...I hate people.", 'created': '2024-11-06 12:33:16', 'submission_id': '1gkqyza'}
{'comment': 'Young. White. Male. Rage.', 'created': '2024-11-06 07:07:46', 'submission_id': '1gkqyza'}
{'comment': 'tRUmP WaS beTtEr fOR tHE ecONoMy', 'created': '2024-11-06 07:03:21', 'submission_id': '1gkqyza'}
{'comment': 'It becauase they believe democrats are the devil. That gender issues are the forefront of problems. Abortions are murder and a trans man competitng in womens sports is more important that the future of our democracy.', 'created': '2024-11-06 07:23:14', 'submission_id': '1gkqyza'}
{'comment': 'Misogyny', 'created': '2024-11-06 06:17:25', 'submission_id': '1gkqyza'}
{'comment': "I don't think anywhere predicted a 'resounding' win. \n\nBut - a hyperconnected and unregulated world promotes a bunker mentality, and a democracy cannot - apparently - function under such constraints.", 'created': '2024-11-06 07:38:29', 'submission_id': '1gkqyza'}
{'comment': 'It is currently H 210 | T 230\n\nHave no clue to why America is so divided on this', 'created': '2024-11-06 06:18:39', 'submission_id': '1gkqyza'}
{'comment': 'Trump is the greatest conman ever. He was ultimately right and most of us failed and will deserve the consequences.', 'created': '2024-11-06 07:02:48', 'submission_id': '1gkqyza'}
{'comment': "Turn out is the determining factor. Republicans only win when democrats don't turn out to the polls to vote, this is why Republicans go out of their way to make voting as hard and cumbersome as possible. They close/limit voting places, forbid water to be handed out to those in line to vote, commit voter intimidation when they can, and block most forms of mail in voting while also opposing compulsory voting (if the government can make you show up to jury duty, they should be able to make you show up to vote).", 'created': '2024-11-06 10:52:23', 'submission_id': '1gkqyza'}
{'comment': 'Darkest timeline', 'created': '2024-11-06 08:15:37', 'submission_id': '1gkqyza'}
{'comment': 'He tried to overthrow the government.. but hey let’s do it again said no sane person ever.', 'created': '2024-11-06 09:28:26', 'submission_id': '1gkqyza'}
{'comment': 'America is Russia and China’s success story on how to take down a country from within. You firehose people with conspiracies and misinformation. You empower the billionaires to buy off judges and politicians. You stoke every fear imaginable particularly those around race and class. Uneducated, uninformed, and resentments are powerful drivers pushing people to find what they think they want in the cult of one man. He is propped up by those seeking power over others and their fortunes. He is nothing but a black soul, a weapon, a vessel to be used to destroy what we are. Congratulations America. You can no longer point the finger at others for being less. You have become part of the darkness that is swallowing the earth. You have surrendered to your worst instincts. You silenced your better angels when you walked into the voting booth. As we enter into an era of lost rights and dictatorship, I think of men like Novalny. I don’t have many years left and despair at what is coming. You will never get back what has been lost. It was precious but not valued enough to fight for it.', 'created': '2024-11-06 11:20:45', 'submission_id': '1gkqyza'}
{'comment': 'The US has always been extremely right of center, racist af, and generally unkind in every way. How is this surprising to anyone.', 'created': '2024-11-06 11:28:03', 'submission_id': '1gkqyza'}
{'comment': 'Him winning enough electoral votes is sad but the fact that he won the popular vote literally breaks my fucking heart.', 'created': '2024-11-06 12:19:12', 'submission_id': '1gkqyza'}
{'comment': 'We were fools to think we Americans would finally understand how horrible Trump is. The reality is that he is what America wants. We are spinning into complete failure. It will take the western world with it.', 'created': '2024-11-06 11:19:07', 'submission_id': '1gkqyza'}
{'comment': 'as an american citizen i feel like not only duped but sucker punched. utter disgust at the country right now. i’m embarrassed to say im from america.', 'created': '2024-11-06 12:29:55', 'submission_id': '1gkqyza'}
{'comment': 'After Jan 6th and before Jan 20th we progressives demanded Biden pack the courts, get statehood for PR and DC, and arrest Trump for treason. We begged you, told you need to do this, but oh no we can’t be locking up other people because of their politics, you can if they commit fucking treason.', 'created': '2024-11-06 15:08:09', 'submission_id': '1gkqyza'}
{'comment': 'Big tent coalition it seems. \n\nHe rallied rural voters and dug into inner city votes. They clearly understood our party and our weaknesses way more than we understood theirs.', 'created': '2024-11-06 06:22:33', 'submission_id': '1gkqyza'}
{'comment': 'I hope the US collapses fuck this country', 'created': '2024-11-06 07:16:29', 'submission_id': '1gkqyza'}
{'comment': 'I underestimated Americans! Clearly, America is not yet ready for for a black, woman president!', 'created': '2024-11-06 06:21:36', 'submission_id': '1gkqyza'}
{'comment': 'I lowkey think he could be cheating the election. There’s no way people are this stupid', 'created': '2024-11-06 07:12:21', 'submission_id': '1gkqyza'}
{'comment': 'Idiots, primarily', 'created': '2024-11-06 08:01:58', 'submission_id': '1gkqyza'}
{'comment': 'I hope the dems are going to love the new man in charge. A criminal with major mental health issues. What is the matter with America.', 'created': '2024-11-06 08:39:54', 'submission_id': '1gkqyza'}
{'comment': 'One question is the exit poll in Georgia:\n\nDo you think the money from FEMA is reaching hurricane victims?\n47% YES\n51% NO\n\nThis was before the polls closed in Georgia. And then I said in my group that Trump will win Georgia 51+ vs 47.\n\nFinal Georgia numbers. Trump wins 51%-48%', 'created': '2024-11-06 09:10:48', 'submission_id': '1gkqyza'}
{'comment': "I can't see how he won with out election interference", 'created': '2024-11-06 11:54:50', 'submission_id': '1gkqyza'}
{'comment': "How the FUCK did this happen?!? Geez, I'm so depressed now...", 'created': '2024-11-06 12:02:13', 'submission_id': '1gkqyza'}
{'comment': 'I want some hand recounts in Republican controlled counties. I smell a coup.', 'created': '2024-11-06 12:05:29', 'submission_id': '1gkqyza'}
{'comment': '“A disastrous revelation about what the US really is.” - Susan Glassner, the New Yorker', 'created': '2024-11-06 12:07:24', 'submission_id': '1gkqyza'}
{'comment': "They've brainwashed just enough people in just enough states. Sorry, not even most sane Americans can explain this one away.", 'created': '2024-11-06 14:03:49', 'submission_id': '1gkqyza'}
{'comment': 'Just think of the dumbest person you know. Half of them in the US are dumber then that. (Sorry)\n\nAmerican is also a teenager growing up. Throwing fits may happen but have hope. \n\nAlso religious people think trump is the anti-christ. Will bring Jesus down or something wierd..so they want that..', 'created': '2024-11-06 06:56:01', 'submission_id': '1gkqyza'}
{'comment': 'They come from stupid people. And no one will change my mind. I’ve met them and known some of them for years. And they are all dumb as rocks.', 'created': '2024-11-06 09:00:37', 'submission_id': '1gkqyza'}
{'comment': 'Where do Trump votes come from? Racism, arrogant ignorance, and misogyny. \nI guess we have more of these groups than do most other wealthy nations.', 'created': '2024-11-06 08:03:23', 'submission_id': '1gkqyza'}
{'comment': '', 'created': '2024-11-06 14:25:03', 'submission_id': '1gkqyza'}
{'comment': 'It makes zero sense and we need to demand a recount. Starting with pa and swing states.', 'created': '2024-11-06 18:27:06', 'submission_id': '1gkqyza'}
{'comment': 'A lot of people had better emigrate while there is still a possibility of escaping the coming fascist country.', 'created': '2024-11-06 07:37:20', 'submission_id': '1gkqyza'}
{'comment': 'Racists misogynists, that’s who. I think it’s as simple as “she’s a black woman.”', 'created': '2024-11-06 08:17:15', 'submission_id': '1gkqyza'}
{'comment': 'He’s a con man with a silver tung, and he’s managed to make half of America so angry and so falsely scared that he will win even if everyone warns them he is not who he says he is. \n\nAmerican politics do that, they like the candidates that make them the most angry.', 'created': '2024-11-06 06:23:59', 'submission_id': '1gkqyza'}
{'comment': 'People(for some stupid reason) thought that Trumps streak of overperforming the polls would end..', 'created': '2024-11-06 07:00:37', 'submission_id': '1gkqyza'}
{'comment': 'As a Texan I also feel duped.', 'created': '2024-11-06 12:22:16', 'submission_id': '1gkqyza'}
{'comment': 'atm its 224 to 277. at least on the bright side..Trump can never be president ever again', 'created': '2024-11-06 12:23:12', 'submission_id': '1gkqyza'}
{'comment': 'PUTIN WON', 'created': '2024-11-06 16:55:55', 'submission_id': '1gkqyza'}
{'comment': 'They came from our fathers and brothers and brainwashed aunts. \n\nIt hurts.', 'created': '2024-11-06 17:07:38', 'submission_id': '1gkqyza'}
{'comment': 'We are a largely uneducated nation', 'created': '2024-11-06 17:23:23', 'submission_id': '1gkqyza'}
{'comment': 'We greatly underestimated just how weak American men are.', 'created': '2024-11-06 17:28:50', 'submission_id': '1gkqyza'}
{'comment': 'Misogyny at the end of the day. Black and Hispanic men voted for fucking Trump. I’m resigning myself to that and bailing out of the fight by creating a bubble. It’s all too toxic to my old ass nervous system.', 'created': '2024-11-06 18:01:37', 'submission_id': '1gkqyza'}
{'comment': 'Why did we have 15+ million votes LESS this time than in 2020? We know there were millions of newly registered voters just based on things like Taylor Swift\'s impact. \n\nWhy did they tell us that it would take days or weeks to know the results and then call it last night?\n\nWhat was the "secret" trump and Johnson were talking about and why were they telling their base that they don\'t even need to vote?\n\nWhat about all the votes that were mailed in yesterday and the day before? They\'re still in the mail.', 'created': '2024-11-06 20:52:18', 'submission_id': '1gkqyza'}
{'comment': "The comparison to 2020 tallies explain it. Trump kept his base support, while Harris and the Democrats base didn't show up. So 2 big assumptions (largely pushed by the media and also what you think would be human decency) were wrong this cycle 1. Trump's controversies (Jan 6, classified documents case, defaming/sexual assault conviction etc) would decrease his votes and support (it did NOT) and 2 Harris nomination would energized the Democratic party and increase base turnout, as shown through her packed rallies/events (it did NOT).\n\nSo Trump was right in what he said years ago, he could shoot his supporters and not lose votes (not a significant amount anyway). His 2020 and 2024 voter numbers are pretty similar, he lost a little support but really not that much (especially considering all the corruption he's pulled). The difference in 2020 was Biden was able to increase Democratic turnout by just enough to win. So the assumption in this election was Harris would keep Biden's numbers and actually increase, but in the case she didn't increase Biden's numbers, Trump's support had decline so much that she would still win anyway. That's the parts they were wrong about, and honestly it shouldn't be a surprise considering we were dealing with a cult.\n\nSo yeah those are the two major take aways 1 Trump can't seem to lose voters no matter what he does and 2 Harris couldn't keep Biden's number for some reason (despite having an even more progressive platform). Some take aways from this election cycle is, truth didn't matter, facts didn't matter, record didn't matter and even what voters said was important (age of candidate, immigration, economy) didn't matter. Trump's old af, people still voted for him. His immigration and economic platforms are gonna cause chaos and increase prices and white male rural voters don't give af. White male rural voters wanted to put a white male guy that can do and say whatever he wants without consequences into the White House. Hate to say it, but Democrats probably need to get a charismatic young white guy from the midwest or south to run in 2028. A woman or a minority ain't got a shot at the White House for a few decades at least.", 'created': '2024-11-07 00:12:33', 'submission_id': '1gkqyza'}
{'comment': 'Something doesn’t seem right. Trump has been saying all along he had something up his sleeve to win. Of course, nothing will be investigated.', 'created': '2024-11-06 08:52:55', 'submission_id': '1gkqyza'}
{'comment': 'We Americans deserve everything we are going to get the next 4 years. I am so done with this… my voice is silenced. Every non Christian and person of color… watch out. They are coming for you.', 'created': '2024-11-06 07:56:10', 'submission_id': '1gkqyza'}
{'comment': "The same as it was during Clinton's election. People lie on polls because they don't want to admit they're voting for Trump", 'created': '2024-11-06 07:11:57', 'submission_id': '1gkqyza'}
{'comment': "Ignorant Maga's who believe the lies they are being told by Trump, their peers, their pastor, etc. Regarding abortion, transgenders, immigration, economy, tariffs, voter fraud etc.", 'created': '2024-11-06 09:04:20', 'submission_id': '1gkqyza'}
{'comment': "Don't heed the mainstream, past paying attention to what each network/platform is saying, just so you know what they're up to. Do your own research, not that Google or any of the other big search-engines makes that easy. Gotta dig to learn anything worth knowing anymore.", 'created': '2024-11-06 06:36:21', 'submission_id': '1gkqyza'}
{'comment': 'Young men broke for him and actually voted this year', 'created': '2024-11-06 11:05:23', 'submission_id': '1gkqyza'}
{'comment': '70+ million dipshits Gen Z males.', 'created': '2024-11-06 12:40:48', 'submission_id': '1gkqyza'}
{'comment': 'More than half this country would rather their daughters get raped and murdered than have their daughters voted into office.', 'created': '2024-11-06 13:42:27', 'submission_id': '1gkqyza'}
{'comment': "The country voted, 30% tariffs will crash the economy, women will be 2nd class citizens, social security and Medicare wi be cut to nothing. Obamacare gone. Russia will control Europe, we'll pull out of NATO. Total and complete disaster", 'created': '2024-11-06 14:21:35', 'submission_id': '1gkqyza'}
{'comment': 'I do wonder if the "big massive dumps" and "widespread fraud" things Trump said in 2020 weren\'t, in fact, projection. How hard would it be to just say some number of people who didn\'t vote actually voted for Trump? Who would even check?', 'created': '2024-11-06 16:34:05', 'submission_id': '1gkqyza'}
{'comment': "Trump's voters came from the same place they did in 2020. The real question is where all of Biden's voters disappeared to. Harris is down about 15 million votes from Biden and it doesn't look like they flipped to Trump. They're just not there at all.", 'created': '2024-11-06 16:38:50', 'submission_id': '1gkqyza'}
{'comment': 'Racism and misogyny won', 'created': '2024-11-06 16:53:32', 'submission_id': '1gkqyza'}
{'comment': "I can only say what I'm personally hearing from people. I work in construction in Alabama. And I've heard more black and Hispanic guys talk about voting for Trump than any Republican in my life. None have says anything about a Kamala being a woman. \n\nLiterally the only issue I've heard brought up by minority males is transgenders. Maybe it's religion, maybe it's the machismo culture. Honestly it's probably burn. But they have stopped caring about why other issues.\n\nGay marriage isn't even a settled issue. Theres a good chance the current Supreme Court will probably end up overturning it. Where we saw is winning the war, the right saw themselves as losing a battle. And they came back hard, while we moved on to the next civil rights issue. \n\nI'm all for anyone living their lives however they want. But pushing transgender issues has given us a second round of Trump. I fucking hate to say it, but it's what I'm hearing from people who've probably never voted Republican in their lives. \n\nAnd the Republicans know how to push a narrative regardless of truth. And I don't know how to combat that. I sure as hell don't want to see discrimination occur anywhere. But while I hate it, it's 100% being used to bring us towards fascism. The same thing happened during the Weimar Republic in Germany. Germany was super liberal before the Nazis. And fascists know how to rile people up. \n\nThe pendulum swung too far to the left, too fast. Sustaining cultural changes don't occur quickly. Force things too quickly, and people reject them.\n\nLook how long before black people gained civil rights and enslavement. It took decades, and there's still a shitload of racists out there. It took people actually meeting and getting to know black people before changes began to occur.\n\nLook how long it took for a majority of the population to accept gay people. It took decades, and only happened as people came out, and homophobic people realized how many loved ones were gay. They realized that gay people are people just like themselves. \n\nI feel bad for transgendered people, because they have a difficult life, full of hate and discrimination. But making identify politics a central tenant is killing Democrats, and could destroy the party.", 'created': '2024-11-06 17:39:40', 'submission_id': '1gkqyza'}
{'comment': 'People who think the president controls gas prices.', 'created': '2024-11-06 18:44:44', 'submission_id': '1gkqyza'}
{'comment': 'I just find it VERY odd that 20 million less democrats voted this election compared to last election especially with record number voter registrations and voting lines longer than usual. They coined the phrase "too big to rig" for a reason. If they rigged the election at such a high number, would make believing it was rigged even less believable. There is a reason Trump said he didn\'t need their vote and his little secret with Mike Johnson, and it\'s no secret the biggest tech guy supports him.', 'created': '2024-11-06 18:46:20', 'submission_id': '1gkqyza'}
{'comment': 'There are millions of votes missing. Mostly from black districts. He had a plan all along it would seem', 'created': '2024-11-06 18:57:40', 'submission_id': '1gkqyza'}
{'comment': 'Big GOP turnout was surprisingly high for non-college educated white men. Also, the billionaires who own the media showed that there is no “liberal media“ or at least journalism allowed in this country.', 'created': '2024-11-06 21:49:51', 'submission_id': '1gkqyza'}
{'comment': 'And over 15 millions registered democrats did not vote. Fuckers', 'created': '2024-11-06 22:54:27', 'submission_id': '1gkqyza'}
{'comment': 'Guys. I hate to say this on every post but it could’ve been rigged. Musk was buying votes. Trump is a convicted fraudster. Do you really believe he wouldn’t try to cheat at an election?', 'created': '2024-11-06 23:27:11', 'submission_id': '1gkqyza'}
{'comment': 'It’s the church. The evangelical.\n\nTrump took advantage of that group.', 'created': '2024-11-06 23:59:47', 'submission_id': '1gkqyza'}
{'comment': 'Trump is an angry barroom brawler, "tough guy" con artist who is vulgar and openly racist and sees women as objects for his entertainment. Male voters make up the majority of voters. They LOVE that persona and will vote for it no matter what he does. The same is true for Hispanic or Latino men. They idolize that pesona. This is why they also voted for him in record numbers, even while he mocks immigrants and threatens them. They would vote for him if he shot someone on live TV and he\'s even said as much. They vote for the persona you rightfully see as disgusting. They LOVE it, truly and yearn to be what he is or pretends to be. \n\nThe only reason Biden won was because he was a "scrappy kid from Scranton," who talked tough, and was also a white male. He also had a lifelong career in politics so had a considerable history with an enormous connection and had been Obama\'s VP (two men). \n\nNow Americans can watch their civil rights be taken away, immigrants harassed if not worse, the Dept. of Education be dismantled, the CDC and Health services be dismantled, the economy go in a tailspin, other countries laugh at our childish shallow vain leader, and gleefully love it while those of us with brains must endure.', 'created': '2024-11-07 01:01:11', 'submission_id': '1gkqyza'}
{'comment': "I'm an American in CA & wondering the same....", 'created': '2024-11-07 03:50:13', 'submission_id': '1gkqyza'}
{'comment': 'He bet on the worst of America and it was right. He is going to destroy this country and we are going to deserve it.', 'created': '2024-11-06 09:22:14', 'submission_id': '1gkqyza'}
{'comment': 'They come from idiots', 'created': '2024-11-06 09:40:03', 'submission_id': '1gkqyza'}
{'comment': 'The voters when polled agreed alot more with the policy positions of Harris than Trump. The reason she lost is because some groups won’t vote for a woman especially a black woman for President. If the Dems want to win again (if there are elections) they need to run a man at the top of the ticket.', 'created': '2024-11-06 14:39:25', 'submission_id': '1gkqyza'}
{'comment': 'We have no f-ing clue either. Dear God, this is a nightmare. I’m embarrassed to be a US citizen.', 'created': '2024-11-06 15:52:07', 'submission_id': '1gkqyza'}
{'comment': 'First off these numbers aren’t real. The gap isn’t even remotely that far off. Also everyone I know said the raise was going to be VERU close, like within a margin', 'created': '2024-11-06 06:17:46', 'submission_id': '1gkqyza'}
{'comment': 'Clearly not reddit....', 'created': '2024-11-06 06:17:19', 'submission_id': '1gkqyza'}
{'comment': '[Red Mirage / Blue Shift](https://en.wikipedia.org/wiki/Blue_shift_(politics))', 'created': '2024-11-06 07:13:41', 'submission_id': '1gkqyza'}
{'comment': 'I want to ask the same thing. Something seems fishy, but then again, maybe most people deep down are just racist or closet supporters', 'created': '2024-11-06 09:36:04', 'submission_id': '1gkqyza'}
{'comment': 'A world exists outside of Reddit', 'created': '2024-11-06 08:02:07', 'submission_id': '1gkqyza'}
{'comment': 'Same??', 'created': '2024-11-06 06:59:45', 'submission_id': '1gkqyza'}
{'comment': 'Democrats not voting.', 'created': '2024-11-06 10:51:23', 'submission_id': '1gkqyza'}
{'comment': 'Closed racist and misogynistic bipeds with the right to vote. Oh, and they don’t mind an ass clown as the head of our health system.', 'created': '2024-11-06 11:03:50', 'submission_id': '1gkqyza'}
{'comment': 'If he follows through, he will deport those that supported him, I dont get it. We had this, what happened? Is this an alternate universe? Dear God, What Have They Done ?', 'created': '2024-11-06 12:43:07', 'submission_id': '1gkqyza'}
{'comment': 'I’m in Colorado, and this is the outcome I was expecting, and really really hoping I was wrong.', 'created': '2024-11-06 13:00:06', 'submission_id': '1gkqyza'}
{'comment': 'From Gerrymandering.', 'created': '2024-11-06 13:27:31', 'submission_id': '1gkqyza'}
{'comment': 'No idea. I did not expect this at all. Losing maybe, not this way.', 'created': '2024-11-06 13:28:55', 'submission_id': '1gkqyza'}
{'comment': 'Tricked by the media. Trump is popular and Harris didn’t run a strong campaign.', 'created': '2024-11-06 13:49:21', 'submission_id': '1gkqyza'}
{'comment': 'I hear all the time that my city is a lawless hellhole. Everyday I wake up and take a beautiful drive to work in a beautiful, highly walkable section of town. Then I make stops all over the city and meet the people who live here. My relatives check in to make sure I haven’t been eating by roving gangs of dirt bikers.', 'created': '2024-11-06 13:57:06', 'submission_id': '1gkqyza'}
{'comment': "Just looking at the guy let alone with everything he says, I don't know how anyone voted for him. Especially Republicans.", 'created': '2024-11-06 14:25:19', 'submission_id': '1gkqyza'}
{'comment': 'It wasn’t that he pulled out lots of votes, it’s the 100 MILLION AMERICANS THAT DIDNT VOTE.', 'created': '2024-11-06 15:19:21', 'submission_id': '1gkqyza'}
{'comment': "Dems didn't vote. Between 15 - 20mil, in fact. Why? That's hard to say. It could boil down to misogyny, Kamala not externalizing problems and promising solutions (which is something Trump is very good at), the IsraelPalestine conflict...I mean there are several factors but at the end of the day, conservatives came out to vote, dems didn't.", 'created': '2024-11-06 16:48:40', 'submission_id': '1gkqyza'}
{'comment': 'I do not mean to sound like a judgmental ass, but here I go…\n\nFirst, people are lazy, if they can get away with it. They don’t want to take the time to read, research or understand how the economic structure here works. If you don’t understand it, then you don’t know when people are deceitful. \n\nAnd misogyny-list of people think a woman will not be respected as president and won’t look “tough” in negotiations. Final one, and the one I am most reluctant to bring up- but racism played a big part. VP Harris is black and South Asian. That is a strike to many people. Those same people do think anyone that is not white is somehow not as “good”. Also, women will make bad decisions regarding bodily autonomy. \n\nJust my opinion. Sometimes looking like a sweet, old white lady encourages other white people to talk about “those kind of people” or “ruin the value of their homes” or “taking jobs”, or “cost us extra in taxes”, “they use govt services they don’t deserve”.', 'created': '2024-11-06 17:26:29', 'submission_id': '1gkqyza'}
{'comment': 'Yes, you were duped. I never saw anything that legitimately called for a resounding Harris win.', 'created': '2024-11-06 18:06:06', 'submission_id': '1gkqyza'}
{'comment': 'My algorithm on X was nothing but Kamala is winning and Trump is losing big time. Maybe there was some false hope online that was meant to keep potential voters away.', 'created': '2024-11-06 18:09:49', 'submission_id': '1gkqyza'}
{'comment': 'This sadly was not a question of more votes for Trump, though he did increase his overall voter turnout a bit. But huge loses in voter turnout for Harris. The number of people who just didn’t vote compared to 2020 is massive.', 'created': '2024-11-06 18:20:55', 'submission_id': '1gkqyza'}
{'comment': "It's less votes for Trump because he lost 3 million votes from the last election, democrats however lost 15 million votes", 'created': '2024-11-06 19:45:35', 'submission_id': '1gkqyza'}
{'comment': 'More people didn’t vote than voted for either one that is the power of the manipulation', 'created': '2024-11-06 20:48:04', 'submission_id': '1gkqyza'}
{'comment': 'I wonder how many of our seniors are going to be on the street after Trump gets rid of Social Security. I wonder the same about disabled people. He will get rid of SSD. I remember last time he was in they had people going around taking pictures of people that were on disability and kicking them off because they didn’t look disabled.', 'created': '2024-11-06 20:52:07', 'submission_id': '1gkqyza'}
{'comment': 'Fox News and court system that wouldn’t jail someone because he happened to be running for president.', 'created': '2024-11-06 21:02:15', 'submission_id': '1gkqyza'}
{'comment': 'The economy trended toward a historic 50 year high under Biden. It’s going to be a bumpy four years ahead for this dumb country of ours.', 'created': '2024-11-06 21:50:21', 'submission_id': '1gkqyza'}
{'comment': 'Russia', 'created': '2024-11-07 01:28:35', 'submission_id': '1gkqyza'}
{'comment': 'We don’t know where the fucking votes came from either. My thoughts are: white men that cannot handle the thought of a black woman, let alone ANY, women being in control over them.', 'created': '2024-11-07 02:52:13', 'submission_id': '1gkqyza'}
{'comment': 'Education will probably be suppressed now that this demon is in power so it’ll get worse', 'created': '2024-11-07 03:10:51', 'submission_id': '1gkqyza'}
{'comment': 'I don’t even know how he won the popular vote, I can understand him winning the EC and losing the popular vote, but he won the popular vote by 1%. So fucking odd, I myself claim Russian, Chinese, and North Korean interference in penn state, Wisconsin and partially in Iowa', 'created': '2024-11-07 03:39:17', 'submission_id': '1gkqyza'}
{'comment': 'I’m reluctantly replying to this post, not expecting my message to make much difference. My concerns with the DNC as a whole stem from the perception that they often dismiss voters who lean Republican as “uneducated” or uninformed. This attitude is not only insulting but also seems out of touch with a significant part of the American population, most of whom did not attend college. This approach alienates a large number of potential voters and makes the party seem disconnected from their realities.\n\nAnother issue is the heavy emphasis on certain identity factors—such as being a woman or a person of color—in selecting a candidate. While diversity is important, these characteristics shouldn’t be the primary reasons to support or oppose a candidate. When they become the focal point, it can feel forced and divisive.\n\nThe way Kamala Harris was positioned as a candidate without a primary selection also felt mismanaged. Voters didn’t get a say, and this top-down approach was a missed opportunity to build trust. Many felt alienated by being told they were “dumb, racist, or sexist” for not supporting a candidate who seemed “installed” rather than chosen by the people. This loss of trust cost the party support and power.\n\nI hope lessons will be learned in the next election cycle, though I worry they won’t be.', 'created': '2024-11-10 06:50:30', 'submission_id': '1gkqyza'}
{'comment': 'I think the average person said FU to the democrats', 'created': '2024-11-06 07:09:55', 'submission_id': '1gkqyza'}
{'comment': "White men. White men want their power back. Simple as that. They're afraid of everyone else leaving them nothing.", 'created': '2024-11-06 08:36:18', 'submission_id': '1gkqyza'}
{'comment': 'Someone called Trump the winner already as he gets Pennsylvania.', 'created': '2024-11-06 07:31:01', 'submission_id': '1gkqyza'}
{'comment': 'I hate everything about this', 'created': '2024-11-06 09:43:22', 'submission_id': '1gkqyza'}
{'comment': 'I don’t mean this in a mean way but How were you duped ? Every and yes I said every poll said it was within a razors edge and her best chance was taking Wisconsin Michigan and Pennsylvania. If you learn anything from this maybe it’s to discern information you consume', 'created': '2024-11-06 10:24:14', 'submission_id': '1gkqyza'}
{'comment': 'Unless we see some sort of power-shift--a county upsetting a state, it\'ll prolly come out "Trump 306 | 232 Harris".\n\nA few of the states are *shockingly* split.\n\nUnless Arizona ekes out or Minnesota or Nevada astonish, I figure it\'ll look like this:\n\nhttps://preview.redd.it/enqfbc8ay7zd1.png?width=1219&format=png&auto=webp&s=530567fd68841b619d611233504bcbd7b28cd2a4', 'created': '2024-11-06 06:43:37', 'submission_id': '1gkqyza'}
{'comment': 'Fascism enablers and democracy destroyers.', 'created': '2024-11-06 09:19:42', 'submission_id': '1gkqyza'}
{'comment': "F'ing electoral college.", 'created': '2024-11-06 08:19:37', 'submission_id': '1gkqyza'}
{'comment': 'We were all duped. Especially by that nonsense Seltzer pole. \nI knew something was up when at least two dozen Trump signs went up around my neighborhood. And in 2020 there were none.', 'created': '2024-11-06 09:08:44', 'submission_id': '1gkqyza'}
{'comment': 'Low propensity, low information voters.\n\nPeople who don’t talk politics, don’t think about politics, probably never get polled, but go “yeah, I was better off when Trump was President” and vote accordingly. \n\nDemocrats assume that Trump supporters agree with every nonsensical word that comes out of his mouth. Most don’t. They just see him as a successful businessman who had a good economy before the pandemic.', 'created': '2024-11-06 14:22:24', 'submission_id': '1gkqyza'}
{'comment': 'Social media hubs like Reddit are left leaning, and not a good place to glean public sentiment. (No, i did not vote Trump).', 'created': '2024-11-06 15:21:13', 'submission_id': '1gkqyza'}
{'comment': "We're as baffled as you are.", 'created': '2024-11-06 15:45:51', 'submission_id': '1gkqyza'}
{'comment': 'They come from very sad and hateful people, unfortunately.', 'created': '2024-11-06 15:53:06', 'submission_id': '1gkqyza'}
{'comment': 'Russia', 'created': '2024-11-06 16:01:27', 'submission_id': '1gkqyza'}
{'comment': 'Russia.\n\nThey came from Russia.', 'created': '2024-11-06 16:18:13', 'submission_id': '1gkqyza'}
{'comment': 'We’re doomed as a country. Taken over by someone who never had to answer to the crimes that were committed. Who will hand over Ukraine to Russia and it will cause the Middle East to collapse. \nWe can say goodbye to our beautiful state parks, history will be erased even more and our children will be the victims of schools that will be privatized and there will no more free education. Health care will not exist for everyone and might as well forget about retirement. The elderly will be forgotten and with all the f+cking tariffs, we will be paying more for goods than we are now. Houses will skyrocket and so will insurance. And if you live in a hurricane area there will be no help as fema will be gutted. Forget about your union jobs and OSHA protections.', 'created': '2024-11-06 10:38:48', 'submission_id': '1gkqyza'}
{'comment': '[removed]', 'created': '2024-11-06 06:19:49', 'submission_id': '1gkqyza'}
{'comment': 'Results now:\n\nhttps://preview.redd.it/ag7hcjj358zd1.jpeg?width=1640&format=pjpg&auto=webp&s=0ef102cea4c5c56a5c9f1e74be72cfc52695e283', 'created': '2024-11-06 07:20:16', 'submission_id': '1gkqyza'}
{'comment': 'https://preview.redd.it/0ls6wmoga8zd1.jpeg?width=1179&format=pjpg&auto=webp&s=612460a75661af5e18ba54e71e458376f3dfda76', 'created': '2024-11-06 07:50:19', 'submission_id': '1gkqyza'}
{'comment': "It's hard to know who these Trump voters are because I don't have any of them in my immediate family - at least none who admitted it.", 'created': '2024-11-06 09:15:35', 'submission_id': '1gkqyza'}
{'comment': "It's 200,000 votes in Pennsylvania that tipped the balance.", 'created': '2024-11-06 10:09:45', 'submission_id': '1gkqyza'}
{'comment': 'Biden was down 700,000 votes when polls closed last time. it does look bleak though.', 'created': '2024-11-06 10:29:31', 'submission_id': '1gkqyza'}
{'comment': '', 'created': '2024-11-06 11:05:20', 'submission_id': '1gkqyza'}
{'comment': 'Can you adopt me?', 'created': '2024-11-06 11:16:57', 'submission_id': '1gkqyza'}
{'comment': "You are virtually the only one I know of who believed Harris was going to win resoundingly. Virtually ***everyone Else*** thought it was way too close to call. That's what we were told all along.", 'created': '2024-11-06 11:24:45', 'submission_id': '1gkqyza'}
{'comment': 'Literally all the media has said it was tied or within the margin of error for months.', 'created': '2024-11-06 11:26:37', 'submission_id': '1gkqyza'}
{'comment': 'Should I start considering moving to Canada?', 'created': '2024-11-06 11:34:28', 'submission_id': '1gkqyza'}
{'comment': 'Never assume either candidate will win resoundingly', 'created': '2024-11-06 11:59:56', 'submission_id': '1gkqyza'}
{'comment': 'Russia.', 'created': '2024-11-06 12:18:52', 'submission_id': '1gkqyza'}
{'comment': 'Reddit has been Harris . All the other social media sights have been have been pro trump. Who knows how much was another disinformation campaign with bots and trolls but it worked. Along with other factors.', 'created': '2024-11-06 12:21:25', 'submission_id': '1gkqyza'}
{'comment': 'From what I believe this, what is called the red marge.\n\nhttps://youtu.be/5XEQ_7zZ-bw?si=84EDZAJbJbgtafVl', 'created': '2024-11-06 12:59:17', 'submission_id': '1gkqyza'}
{'comment': 'from shitty people', 'created': '2024-11-06 13:20:12', 'submission_id': '1gkqyza'}
{'comment': 'Not a joke. It’s a cult', 'created': '2024-11-06 13:22:12', 'submission_id': '1gkqyza'}
{'comment': 'Most Americans are selfish, and have rasict tendencies. Trump provide false solutions to problems they were never their.', 'created': '2024-11-06 13:27:10', 'submission_id': '1gkqyza'}
{'comment': 'People voted incongruously. For example, 57% in Florida voted for the amendment to codify abortion rights, but only voted for Harris at 43%. 14% of voters thought Donald Trump wasn’t going to allow a national abortion ban. Baffling.\n\nUnion labor in some states like Wisconsin, who were literally employed because of Biden’s Infrastructure Reinvestment Act were going to vote for Trump.\n\nSplit tickets like Arizona where Ruben Gallego is likely going to beat Kari Lake but Trump is going to win the state also didn’t help her.\n\nWeird cognitive dissonance happened all over the country and I think, once again, the polls vastly undercounted Trump voters.', 'created': '2024-11-06 13:30:35', 'submission_id': '1gkqyza'}
{'comment': 'I’m american and I’ll never understand why anyone would vote for him. He’s an idiot, and they are too. Whenever I tried to ask someone why Trump, they can’t even answer the question with something other than “other countries won’t respect a women” that’s it.', 'created': '2024-11-06 13:39:03', 'submission_id': '1gkqyza'}
{'comment': "I'm american and I feel the same way", 'created': '2024-11-06 13:51:00', 'submission_id': '1gkqyza'}
{'comment': 'Uneducated young people.', 'created': '2024-11-06 14:01:54', 'submission_id': '1gkqyza'}
{'comment': 'The biggest thing I take from this, as a Canadian, is this is what happens when a person is allowed to lie about everything to the public; leading people to believe ‘facts’ that are not in any way related to the truth, there has to be a limit to freedom of speech when it can do this unchecked.', 'created': '2024-11-06 14:03:35', 'submission_id': '1gkqyza'}
{'comment': "Every faction has its own media silo and, for the most part, pays attention only to those sources for their news and opinion. Right wing media actually told them that Trump was protecting democracy. When asked why they voted for Trump they said they were protecting democracy. Extend that to the rest of the issues and it shines a light on the motivation. \n\nI don't think they're stupid or racists necessarily. Just duped.", 'created': '2024-11-06 14:29:54', 'submission_id': '1gkqyza'}
{'comment': 'That is so true almost everyone else I can think of something positive. Oh fake tan selling out? The taxes on it will be high he might skip it?', 'created': '2024-11-06 14:55:28', 'submission_id': '1gkqyza'}
{'comment': '>I’ve been duped by social media and Reddit into thinking that Harris was going to resoundingly win this election.\n\nWhat are you talking about? The media kept saying right up until election day that it was going to be very close.', 'created': '2024-11-06 14:58:29', 'submission_id': '1gkqyza'}
{'comment': 'It’s time to move to Texas and Republican states. These states will get so much benefit check and emergency relief.', 'created': '2024-11-06 15:29:41', 'submission_id': '1gkqyza'}
{'comment': 'I am a lifelong democrat. Never voted republican. I’m as devoted to democrat ideals as it gets. But what I saw on Reddit leading up to this election was pure delusion. All those electoral maps with Florida and Texas blue were absolutely ridiculous. Democrats have some serious soul searching to do. Toxic positivity is a thing and most democrats succumbed to it.', 'created': '2024-11-06 16:42:38', 'submission_id': '1gkqyza'}
{'comment': 'I blame the mainstream media for the most part. Low information voters often get their only information about candidates from a few minutes of TV news shows before they switch to something more exciting. In those few minutes, they heard all this year and last that Joe Biden was too old BUT they never said the same about Trump who is definitely too old. They repeatedly sane-washed him, always worked hard to polish Trump so he would falsely appear rational and intelligible. I hate ABC, NBC, CBS & PBS for playing the stupid “both sides” game. This country just lost.', 'created': '2024-11-06 16:50:36', 'submission_id': '1gkqyza'}
{'comment': 'The average American is even dumber than you think', 'created': '2024-11-06 16:53:23', 'submission_id': '1gkqyza'}
{'comment': 'Dems have underperformed by roughly 14 million. \n\nRepublicans added a million. \n\nA net loss of 15 million is absolutely insane.', 'created': '2024-11-06 17:03:50', 'submission_id': '1gkqyza'}
{'comment': 'I think Kamala lost more than Trump won. Her vote counts were awful compared to Biden. He ended up with fewer votes than last time but still won because she’s down like 15M votes', 'created': '2024-11-06 17:09:23', 'submission_id': '1gkqyza'}
{'comment': 'I don’t think there were too many people who said it was going to be a “resounding” victory. The overwhelming majority of sources I saw said it was going to be close, and based on swing states.', 'created': '2024-11-06 17:18:33', 'submission_id': '1gkqyza'}
{'comment': 'When you figure it out let me know...', 'created': '2024-11-06 18:02:31', 'submission_id': '1gkqyza'}
{'comment': 'As an American I think I was overly optimistic because of all of the people posting on Reddit that they are voting for Harris even though they are Republican (I have only been on Reddit for a year or two). But also there were enough neighbors that I spoke with that were happy to see our Harris sign so I thought that what I saw online was translating to reality. I live in rural Florida however and there were Trump people next door and across the street too. When we went to early vote the place was packed more than I had ever seen it. However fewer people voted in this election? It makes absolutely no sense. I am just thankful we didn’t have kids to leave this fucked up place to.', 'created': '2024-11-06 18:06:28', 'submission_id': '1gkqyza'}
{'comment': "TFG got roughly the same number of votes as he did in 2020. The problem is that \\~15M Dems just didn't vote.", 'created': '2024-11-06 18:16:54', 'submission_id': '1gkqyza'}
{'comment': "Trump got less votes than last time, the problem is Harris got even less. She simply didn't excite Democrats to vote", 'created': '2024-11-06 18:43:37', 'submission_id': '1gkqyza'}
{'comment': 'Maybe Retardicans and Trumpanzees are right, the news media does skew heavily left. So, we get lefty headlines. Silent majority has spoken. Americans want wild and extreme, they are going to get wild and extreme.', 'created': '2024-11-06 19:36:32', 'submission_id': '1gkqyza'}
{'comment': 'https://preview.redd.it/3u22aewz7czd1.png?width=1080&format=pjpg&auto=webp&s=b0e14a0ccca7212a848f71d8b28175030b99a5f9', 'created': '2024-11-06 21:03:35', 'submission_id': '1gkqyza'}
{'comment': 'Kamala is at about 67 million votes which pales compared to Biden’s 81 million in 2020.\n\nDonald got 74 million in 2020 and 72 million this election.\n\nWhile the popular vote is not an indication of a victor due to the electoral college, it’s clear that Democrats didn’t show up to vote. It’s a repeat of 2016. \n\nIs it voter apathy? Misinformation campaigns? A potential for a female president not sitting well with the public? Is it because the general public thinks having Donald in office is gonna save them $1 off a carton of eggs? Probably a Frankenstein combination of those and then some. \n\nBut this is it and it’s what we have to deal with for the next 4 years, unfortunately.', 'created': '2024-11-06 21:35:31', 'submission_id': '1gkqyza'}
{'comment': 'From what I’m hearing, if we had run anyone else we would have done better. Should have been Pete I guess', 'created': '2024-11-06 21:37:03', 'submission_id': '1gkqyza'}
{'comment': 'Not trying to be rude, but I need those of you who come from other countries to stop acting like you don’t know what bigotry looks like and how it affects elections.', 'created': '2024-11-06 22:21:33', 'submission_id': '1gkqyza'}
{'comment': 'Trump didn’t get more votes this time than he did last time. In fact he got about 3 million fewer. Unfortunately, Kamala got even fewer than he did. \n\nAt this point I’m seeing two possibilities: either Dems didn’t turn out in the numbers expected or there was vote tampering. Since I’m not into conspiracy theorising I’m going to say it was Dems not turning out in sufficient numbers.', 'created': '2024-11-06 22:47:19', 'submission_id': '1gkqyza'}
{'comment': 'Is what I was wondering (also Canadian)', 'created': '2024-11-06 23:18:42', 'submission_id': '1gkqyza'}
{'comment': 'I think we blame Republicans too much. I accept responsibility too. It was the Democrats job to make sure the electorate was well informed. Instead there were hundreds of thousands of Democrats that choose to protest vote. It will be exactly those voters who will pay the price first. But Republicans voted against themselves also, and they\'ll be the next to pay. Did these people believe that Trump wouldn\'t start mass deportations on Day one? 16% of Texas is Latino. I don\'t think we can stop him. I\'m not Muslim or Latino. Blacks would probably be next, I\'m not black. They want a white America and America just said "he\'ll yeah". Maybe playing nice, playing fair, and taking the high road is the real reason we lose our democracy.', 'created': '2024-11-06 23:46:49', 'submission_id': '1gkqyza'}
{'comment': 'He’s a terrible person and fantastic con man.', 'created': '2024-11-07 01:09:45', 'submission_id': '1gkqyza'}
{'comment': "Be prepared to lose the usd world reserve currency status. Lawlessness and the inability to pay huge fed deficit will undo the global economy.\n\nPeople talk about the decline of us empire. This is it.\n\nThe reasons why other countries' currencies are not the world reserves currencies due to lack of legitimate legal system and size of economy.\n\nChina lacks the law.\n\nJapan, Europe, and South Korea lack the economy.\n\nWe will have a multipolar economy and possibly back to a basket of currencies and gold to replace usd world reserve currency status", 'created': '2024-11-07 01:12:44', 'submission_id': '1gkqyza'}
{'comment': '15 million dems stayed home.', 'created': '2024-11-07 01:34:52', 'submission_id': '1gkqyza'}
{'comment': 'Mark my words there will be another pandemic in the next 4 years', 'created': '2024-11-07 01:37:05', 'submission_id': '1gkqyza'}
{'comment': 'Something seems super fishy:\n\n1. Trump said multiple times in the last week something like “ I dont need the votes, we’re going to win” \n2. Trump rallies were notably small and Harris/Walz had huge turnouts at all their rallies\n3. Polls showed this as a close race and had Kamala projected to win more states \n4. Biden got more votes in 2020, Trump got about the same in 2020\n5. Kamala barely did better Biden in a majority of counties, yet she had a higher approval and trust factor in exit polls than Trump \n6. She lost the Muslim vote which doesn’t make sense at all. \n\nI wish she wouldn’t of conceded so early, something is definitely going on. We have two months to figure out before we install a dictator. At the very least Kamala shouldn’t certify the election until we get to the bottom of this\n\nWelcome any commentary but something’s not right', 'created': '2024-11-07 01:55:04', 'submission_id': '1gkqyza'}
{'comment': "Cheating. We'll find out how. I hope we do it prior to certification.", 'created': '2024-11-07 01:57:29', 'submission_id': '1gkqyza'}
{'comment': 'This is Actually a very weird calculation bc this is even fewer votes than he had with Biden. Pretty sus tbh, and quite a low number for her', 'created': '2024-11-07 02:02:59', 'submission_id': '1gkqyza'}
{'comment': 'White men and white women.', 'created': '2024-11-07 02:19:16', 'submission_id': '1gkqyza'}
{'comment': 'Ask all the Americans who did not vote.', 'created': '2024-11-07 02:34:10', 'submission_id': '1gkqyza'}
{'comment': 'This happened because we obviously are surrounded by white Christian nationalists. It’s a sad realization.', 'created': '2024-11-07 02:43:55', 'submission_id': '1gkqyza'}
{'comment': "It's more about the ~15 million people that didn't show up this time. Trump got about the same number of votes as 2020, Harris got significantly less.", 'created': '2024-11-07 02:49:19', 'submission_id': '1gkqyza'}
{'comment': '[removed]', 'created': '2024-11-07 04:41:33', 'submission_id': '1gkqyza'}
{'comment': 'Trump has a rabid fanbase, Kamala doesn’t (outside of Reddit.) It isn’t as complicated as people think. Also, many people are financially desperate, and their vote went to Trump as they weren’t as desperate 2016-2019.', 'created': '2024-11-07 04:57:42', 'submission_id': '1gkqyza'}
{'comment': 'It seems like Trumps emotional plea and Harris dropping a lot of the core values we were looking for halfway through the campaign ended with many people not trusting or caring. Harris took money from Bill Gates, among others, and immediately dropped the "tax the rich," again among others. This along with extra media coverage of Trump along with known Russian media interference and less media covwrage on Harris... It just makes people lose faith, get angry, and then forget about her.\n\nThere\'s a lot of potential reasons, but it\'s still insane how people would rather take a for-certain bad decision over an unknown one.', 'created': '2024-11-07 05:23:45', 'submission_id': '1gkqyza'}
{'comment': "You'll have to go to that other subreddit to find your answers. We are just as clueless as you. I will no longer be watching any news with mention of his name or likeness. I stopped last night at 267. No more! I will change channels, change pages, change stations, leave the room, sit in absolute silence. I will not see his orange glow or listen to his voice anymore.", 'created': '2024-11-07 06:16:45', 'submission_id': '1gkqyza'}
{'comment': 'Men mostly. And I say that as a man myself.', 'created': '2024-11-07 07:27:37', 'submission_id': '1gkqyza'}
{'comment': " This country is fucked and I'm God damn pissed about it. These people who voted for him have no idea what they have done. Trump will cut taxes for the rich once again and will put us so far in debt, China will own us. Thank you very much you Republican fucktards. And let us not forget the tariffs.", 'created': '2024-11-07 09:27:17', 'submission_id': '1gkqyza'}
{'comment': "I can't even answer this at the moment, but I do found this so maybe this can help a bit?\n\n \n[https://www.bbc.com/news/articles/cly2818j7rko](https://www.bbc.com/news/articles/cly2818j7rko)", 'created': '2024-11-07 14:50:39', 'submission_id': '1gkqyza'}
{'comment': 'He IS nothing but Negative. \nI question the validity of his election. Especially because he became increasingly negative and\nVile. As though he didn’t think he was winning either. He really has Zero presidential qualities or qualifications. Harris has ALL & more than required. \nTrump barely has a school of Business degree. Who took his exams FOR him?\nWhy wouldn’t we question likely interference by his cronies?\n( orbahn, Putin , N korea,China )any or all could and would help him where possible.).\nHe simply BOUGHT the White House.', 'created': '2024-11-07 16:39:42', 'submission_id': '1gkqyza'}
{'comment': 'All it takes for evil to flourish is for good men to do nothing.', 'created': '2024-11-07 17:54:51', 'submission_id': '1gkqyza'}
{'comment': 'We can’t do anything but wait for it to get worse under him. The people will have to see evidence in their daily lives of things getting worse to see Their Emperor with no clothes showing his disdain for them and have their basic needs being torn away.', 'created': '2024-11-07 18:38:45', 'submission_id': '1gkqyza'}
{'comment': 'I don\'t think Kamala was able to separate herself from her VP role. What was her overt advantage over Trump? Other than repeating that "We\'re not going back" ? \n\nThere wasn\'t clear messaging on certain issues. \n\nI was hopeful for her to win, but I\'ve been reading into the more. It was tough to get away from the post COVID economy she and Biden inherited. And one that left people frustrated.', 'created': '2024-11-06 08:27:46', 'submission_id': '1gkqyza'}
{'comment': 'Well you know every accusation is a confession. He & Elon probably registered illegal immigrants and paid them to vote trump.', 'created': '2024-11-06 10:21:14', 'submission_id': '1gkqyza'}
{'comment': 'From voters that watched Biden fail', 'created': '2024-11-06 12:09:59', 'submission_id': '1gkqyza'}
{'comment': 'People are misogynistic, but keep it to themselves until it’s time to vote.', 'created': '2024-11-06 14:57:46', 'submission_id': '1gkqyza'}
{'comment': 'Boomers', 'created': '2024-11-06 15:51:30', 'submission_id': '1gkqyza'}
{'comment': 'The white nationalist movement has overwhelmingly elected and embraced a racist extreme right wing ideology that they believe is good for America but it’s not fckng good for America!', 'created': '2024-11-06 16:09:02', 'submission_id': '1gkqyza'}
{'comment': 'Illegal immigration is the driver', 'created': '2024-11-06 16:20:57', 'submission_id': '1gkqyza'}
{'comment': "The media is one sided. If you are not on the ground with everyday people, you'd have no idea that trumps policies actually align much closer with the American people than kamalas", 'created': '2024-11-06 17:09:08', 'submission_id': '1gkqyza'}
{'comment': 'Fucking idiots', 'created': '2024-11-06 10:13:32', 'submission_id': '1gkqyza'}
{'comment': 'Hi Canadian im a Brit we all have no idea of anything pleasant about him,', 'created': '2024-11-06 15:35:23', 'submission_id': '1gkqyza'}
{'comment': "There's just so many people voting less democratic", 'created': '2024-11-06 18:26:06', 'submission_id': '1gkqyza'}
{'comment': 'Simply put: people are mad at the entire political system and Trump promises to set it on fire, and smash it to pieces.\n\n> I see nothing but negativity about him.\n\nYou see, that\'s precisely what\'s so attractive about him.\n\nA vote for Trump is a big fat "fuck you!" to centrist politics.\n\nThe Democratic party elite have lost touch and completely underestimated the sentiment against them. They barely won in 2020 with a candidate who was already not fit for office. When that finally became clear to them they switched him out, in a panic move, for another unpopular darling of the establishment who promised (in different words this time) that "fundamentally nothing will change".\n\nWhen Obama won it was on promises of "change" and "hope". Not that he was able to deliver much of that change but at least it was a message that many people still wanted to believe in.', 'created': '2024-11-06 18:41:54', 'submission_id': '1gkqyza'}
{'comment': 'It’s not so much who voted FOR Trump as who DIDN’T or WOULDN’T vote for Harris.', 'created': '2024-11-06 21:20:04', 'submission_id': '1gkqyza'}
{'comment': 'There was clearly astro turfing by the Harris Campaign on Reddit.', 'created': '2024-11-06 06:30:58', 'submission_id': '1gkqyza'}
{'comment': "Did you get your info from this reddit page? Then, yes you would be correct, you were duped. \nIf you stay on social media, you would believe that Trump was the second coming of Adolf himself. While most Americans in the real world can see past the media narrative and were ready for a change and voted as such. \nBesides what you see on social media, has anyone listened to her over the past month? She panders and comes across as fabricated when talking to different voter groups. She acts like she has it together until pressed on key issues, then regurgitates some talking point. . People are waking up, Now she's gone, for four more years at least", 'created': '2024-11-06 11:04:20', 'submission_id': '1gkqyza'}
{'comment': 'People we now need to call out in public.', 'created': '2024-11-06 10:11:35', 'submission_id': '1gkqyza'}
{'comment': '[removed]', 'created': '2024-11-06 09:07:05', 'submission_id': '1gkqyza'}
{'comment': 'Run 2 fucking women against Trump and get fucked both times. FUCK you democrats, I blame YOU for the shitstorm to come', 'created': '2024-11-06 07:58:51', 'submission_id': '1gkqyza'}
{'comment': 'We are all scratching our collective heads just as much as you are. I feel like we are living in the upside down after tonight.', 'created': '2024-11-06 07:42:05', 'submission_id': '1gkqyza'}
{'comment': 'Racism, ignorance and propaganda. Fox has poisoned this country. It started with "fake news" and getting their viewers to discount any information that didn\'t come from right wing media. Once that was effective, all they had to do was skew (or outright lie) about current events and there is nothing to combat that. Trump emboldened the uneducated racists to not be afraid to say the quiet part out loud. His base became more focused on preventing liberals from winning than actual progress.', 'created': '2024-11-06 06:24:50', 'submission_id': '1gkqyza'}
{'comment': 'America is very racist and stupid', 'created': '2024-11-06 07:25:05', 'submission_id': '1gkqyza'}
{'comment': 'There is a _vast_ swath of people who are completely ignorant of basic economics. They believe inflation is still high(it’s not) and don’t realize we need deflation(very bad) to return prices to 2019 levels. \n\nBasically, prices are still high. People think because Trump was president when prices were lower, they will lower once he becomes POTUS again. If it sounds laughably simplistic, it’s because it is.\n\nThere’s also nastier stuff at play, such as Harris’s gender disadvantage. She had to run a flawless campaign(and just about did) while Trump did not have to.', 'created': '2024-11-06 11:03:55', 'submission_id': '1gkqyza'}
{'comment': "People have this weird belief that businessmen make good politics. They've also fed into the cult and live in societies that cut out everything else", 'created': '2024-11-06 07:13:22', 'submission_id': '1gkqyza'}
{'comment': 'https://preview.redd.it/ek6ldl0dm8zd1.jpeg?width=1058&format=pjpg&auto=webp&s=c462511e2e3ce495c2d9a16f7eeb019175581125', 'created': '2024-11-06 08:56:59', 'submission_id': '1gkqyza'}
{'comment': 'they have unchecked use of propaganda and psyops that seem to very super effective.. selling news and lies as truth.. it is a cult.. Scientology is still going strong ... MAGAts are no different than Jonestown fools who drink kool aid', 'created': '2024-11-06 07:05:09', 'submission_id': '1gkqyza'}
{'comment': "He appeals to the hate inside of people. The thing people keep hidden. His supporters want a dictator they want someone to publicly be racist and sexist. They forgive him being an idiot they forgive his incompetence because it feels so good to have the president say horrible things against anyone who isn't a white male. They also love that he is vengeful. They want to see his enemies punished.", 'created': '2024-11-06 06:22:20', 'submission_id': '1gkqyza'}
{'comment': 'I truly hate him so much, I don’t see any redeeming qualities anywhere', 'created': '2024-11-06 09:58:26', 'submission_id': '1gkqyza'}
{'comment': 'As an American, I ask myself the same thing all the time. I see him for the ignorant, racist, fascist that he is but MAGA has been great at disseminating misinformation and painting this conman as some sort of folk hero. It defies comprehension, but this is the result of deprioritizing education and a right wing troll buying a social media company to further their agenda...', 'created': '2024-11-06 07:39:34', 'submission_id': '1gkqyza'}
{'comment': 'He discussed his "beautiful White skin." He reflects the sense of superiority that some want to keep.', 'created': '2024-11-06 07:41:31', 'submission_id': '1gkqyza'}
{'comment': "It's the steady decline of education for at least 40 years paired with the rise of missinformation during the past decades.", 'created': '2024-11-06 10:54:47', 'submission_id': '1gkqyza'}
{'comment': 'Americans are fucking stupid and bigoted. There’s nothing to it really.', 'created': '2024-11-06 07:55:44', 'submission_id': '1gkqyza'}
{'comment': 'Watch FOX, and ignore everything else. \n\nThey believe that reality, and believe everything opposing it is fake.', 'created': '2024-11-06 07:55:30', 'submission_id': '1gkqyza'}
{'comment': 'Well I think people are much more secretly sexist than they admit to.', 'created': '2024-11-06 07:24:14', 'submission_id': '1gkqyza'}
{'comment': 'He employs brainwashing tactics in his manner of speaking. Seriously.', 'created': '2024-11-06 07:03:03', 'submission_id': '1gkqyza'}
{'comment': 'Same as the nazis, that they are the superior ones ordained by God and he is their Savior who is here to bring them to power.', 'created': '2024-11-06 07:11:08', 'submission_id': '1gkqyza'}
{'comment': 'He is a reflection of the people of America. He is who we are.', 'created': '2024-11-06 07:32:42', 'submission_id': '1gkqyza'}
{'comment': "Nope. That's not possible. He's a piece of shit and people love that he makes it okay for them to be too.", 'created': '2024-11-06 06:21:01', 'submission_id': '1gkqyza'}
{'comment': 'These are features now flaws to the American public', 'created': '2024-11-06 07:13:39', 'submission_id': '1gkqyza'}
{'comment': 'Inflation not being addressed in a what most voters deemed acceptable and the democrats trying to elect the first woman president while overestimating how progressive Americans are when it comes to women.\n\nIn the first point of inflation; I also think that people don’t understand that we had global inflation and the US actually performed better than other countries on that front.', 'created': '2024-11-06 10:49:53', 'submission_id': '1gkqyza'}
{'comment': 'Hate is a stronger unifier than love/unity. It just fizzles out faster. The republicans are always finding new things to hate to keep fueling their fire. One day there will be nothing left to hate and the fire will turn to ash. When that day comes there will be no more heat and an empty cold will consume everything and everyone.', 'created': '2024-11-06 08:30:18', 'submission_id': '1gkqyza'}
{'comment': 'Edgelords love him', 'created': '2024-11-06 08:15:27', 'submission_id': '1gkqyza'}
{'comment': None, 'created': '2024-11-06 06:22:53', 'submission_id': '1gkqyza'}
{'comment': 'According to exit polls, mostly: the economy - inflation, high(er) gas prices, high housing costs; and immigration/the border. \n\nI don’t think this election was really swayed by either candidate themselves. This was about issues people felt were personally effecting them.', 'created': '2024-11-06 10:48:20', 'submission_id': '1gkqyza'}
{'comment': "Like many nations coming out of Covid-19 the people looked to a new direction. Biden's admin did a decent job but at the pocketbook level of the average person they didnt feel like they were doing better. It was going to be a losing job and the people wanted a change in Administration that promised them a return to prosperity and trump said he would do that.", 'created': '2024-11-06 09:28:21', 'submission_id': '1gkqyza'}
{'comment': 'I’ve been trying to understand for damn near a decade and I just don’t know. I do not understand at all.', 'created': '2024-11-06 10:20:51', 'submission_id': '1gkqyza'}
{'comment': 'Ignorance and fear got him elected.', 'created': '2024-11-06 09:18:26', 'submission_id': '1gkqyza'}
{'comment': 'He tells people what they want to hear', 'created': '2024-11-06 09:22:33', 'submission_id': '1gkqyza'}
{'comment': 'It\'s easy.\n\nSomeone sees increased inflation, and it\'s easy to just point at someone and say, "they did it" because learning about the causes is complicated and that is what the news sources tell them. They boil it down to a couple talking points.\n\nThis is easier than trying to understand economics.\n\n\nSomeone sees people doing things that make them uncomfortable. They see someone who looks attractive and then realize they are looking at someone transgender. They feel offended, they are angry and feel tricked. And so they dislike that person for being that way.\n\nThis is easier than reflecting to themselves why they feel angry and if it matters.\n\n\nSomeone hears someone that says something they disagree with. It\'s easier to say they are dumb, uninformed, or unintelligent. It\'s easier to say they are snobby, weak, and full of shit.\n\nIt\'s easier to put someone that disagrees down than to understand their perspective.\n\n\n\nIt\'s always easier to be angry, it\'s easier to deflect, it\'s easier to hate. It\'s hard to self-reflect, it\'s hard to change, it\'s hard to learn new things. \n\n\nPeople will always take the easy route if they can.', 'created': '2024-11-06 17:39:41', 'submission_id': '1gkqyza'}
{'comment': "I can't understand it myself. It could be that some have the attitude, 'sometimes you have to think about number one'. Trump does mean a better tax cut but it's at the cost of social programs like WIC which feeds poor infants.", 'created': '2024-11-06 08:40:10', 'submission_id': '1gkqyza'}
{'comment': 'This is in large part due to how much the Republicans strongly dislike the Far Left agenda. \nAnd social media algorithms…', 'created': '2024-11-06 11:25:30', 'submission_id': '1gkqyza'}
{'comment': "I think it has to do with the economy. I feel it when I buy food and basic services. Granted he won't make this better with his proposed policies but I think people look back to pre pandemic and feel they had more money. The Democrats are terrible at messaging, or people tuned out their message.", 'created': '2024-11-06 11:34:40', 'submission_id': '1gkqyza'}
{'comment': "When women and minorities sound the alarm, the white male elite come out in full force that they couldn't exhaust i 294949 million lifetimes\xa0", 'created': '2024-11-06 13:36:37', 'submission_id': '1gkqyza'}
{'comment': "If I had to pick a good quality of Trump, it would be that he stays sober; he is against children drinking and smoking and even does not do it himself as an adult.\n\nBut yeah, overall Trump is awful and it's really really dumb that Americans elected him.", 'created': '2024-11-06 13:41:09', 'submission_id': '1gkqyza'}
{'comment': 'People never get to see Trump. They only see second hand Trump.\xa0 They see Trump as filtered by smarter people summarizing what he says and taking clips of him. Most people didn\'t watch the debates they just waited for a summary after.\n\n\nWhen he was asked about child care costs, he doges the question and started talking about "we have the best numbers" without telling what he was talking about. And then he pivoted to the single talking point he has "with the tariff we\'ll be taxing other countries for such big numbers you\'ve never heard of before"\n\n\nHow did the AP (a neutral source) translate this? "Trump pitches unconventional plan that import tax might ripple down to help fix daily expenses." They do this because they don\'t want to appear politically biased and because his words are not good content.\n\n\nThe video of his response is clipped and shortened because no news outlet wants to air 3 minutes of incoherent messages... so they just cut to he part that is the closest to being considered an answer.\n\n\nBut no, he didn\'t say anything like that. Google "trump on childcare" and then IGNORE THE NEWS and look for the actual direct unedited response. Then compare what you heard with the news that I told you to ignore. Even the critical papers paint his response as much more coherent than it was.', 'created': '2024-11-06 13:54:30', 'submission_id': '1gkqyza'}
{'comment': 'I wish I understood.', 'created': '2024-11-06 14:09:26', 'submission_id': '1gkqyza'}
{'comment': 'The country seems to be aligning about whether or not you have a college education. Trump and Elon have bachelor’s degrees, but the people doing their jobs usually have at least one Master’s degree. \n\nSo they’re very much symbols of telling men that they can succeed without college. \nAnd Dems make arguments for their position in terms, and numbers, that are easy for college educated people to understand but can be harder for folks who didn’t get more schooling because the reading and numbers were hard. \n\nI don’t mean to talk down. But Trump’s tax cuts with Paul Ryan were a tax hike for lower income workers. Trump’s tariffs raised prices. Trump’s mishandling of the Covid pandemic raised prices. The pain of all those bad policies has come home under Joe Biden. So unless you remember the news from 4-8 years ago it feels like Biden’s fault.', 'created': '2024-11-06 14:36:38', 'submission_id': '1gkqyza'}
{'comment': "Propaganda works. You haven't watched the media that they watch. The people who love him don't see the negative things about him, they have been sheltered from them and told that everyone who doesn't say good things about Trump is just a liar. They think what the TV told them to think and looked no further into the topics shown to them.", 'created': '2024-11-06 15:27:16', 'submission_id': '1gkqyza'}
{'comment': 'Mostly Fox News building him up to be some sort of perfect human being. If that’s the only news ecosystem you inhabit, then you’ll never see or hear about his well documented flaws and overall ineptitudes because they won’t cover it. \n\nThe Republican Party in the US solely serves the interests of ultra high net worth individuals and corporations, yet they have aligned themselves with religion and those that tend to be less educated or less self-reflective/empathetic to then convince them to vote against their self interest. \n\nThey have also mastered simplifying complex issues into mini soundbites and their base (usually less educated) does not push for more details or substance. A Dem says “I’m going to lower the cost of your grocery bill” and the electorate + news media will rightly ask how and through what means. A Republican says the same thing and there’s no follow-up required because Fox won’t press them on it and as a result neither will their core base of